Current count: {{ currentCount }}
+ +==================================Form============================
+ +{{userMessageModel | json}}
{{cform | json}}+
{{ userMessageFields | circularJson }}+
{{userOptions | circularJson}}diff --git a/ClientApp/app/containers/counter/counter.component.ts b/ClientApp/app/containers/counter/counter.component.ts index 69de17d9..2786b959 100644 --- a/ClientApp/app/containers/counter/counter.component.ts +++ b/ClientApp/app/containers/counter/counter.component.ts @@ -1,7 +1,9 @@ import { Component } from '@angular/core'; +import { FormGroup } from '@angular/forms'; +import { FormlyFieldConfig } from '@ngx-formly/core'; @Component({ - selector: 'counter', + selector: 'app-counter', templateUrl: './counter.component.html' }) export class CounterComponent { @@ -10,4 +12,49 @@ export class CounterComponent { public incrementCounter() { this.currentCount++; } + + cform = new FormGroup({}); + + userMessageModel: any = {}; // { Email: "", Comment: "", Name: "", Id: 1 }; + + userOptions = { + formState: { + myState: 'State' + } + }; + + userMessageFields: Array
- Enjoy the latest features from .NET Core & Angular 4.0! + Enjoy the latest features from .NET Core & Angular 5.0!+ +
For more info check the repo here: AspNetCore-Angular2-Universal repo
diff --git a/ClientApp/app/containers/not-found/not-found.component.ts b/ClientApp/app/containers/not-found/not-found.component.ts index e39faa05..c59a5f8f 100644 --- a/ClientApp/app/containers/not-found/not-found.component.ts +++ b/ClientApp/app/containers/not-found/not-found.component.ts @@ -1,7 +1,7 @@ import { Component, OnInit } from '@angular/core'; @Component({ - selector: 'not-found', + selector: 'app-not-found', templateUrl: './not-found.component.html' }) export class NotFoundComponent implements OnInit { diff --git a/ClientApp/app/containers/users/users.component.html b/ClientApp/app/containers/users/users.component.html index 5bb77691..1e661476 100644 --- a/ClientApp/app/containers/users/users.component.html +++ b/ClientApp/app/containers/users/users.component.html @@ -26,4 +26,4 @@Users
-+ diff --git a/ClientApp/app/containers/users/users.component.ts b/ClientApp/app/containers/users/users.component.ts index 9dd28781..35cc8517 100644 --- a/ClientApp/app/containers/users/users.component.ts +++ b/ClientApp/app/containers/users/users.component.ts @@ -7,7 +7,7 @@ import { IUser } from '../../models/User'; import { UserService } from '../../shared/user.service'; @Component({ - selector: 'users', + selector: 'app-users', templateUrl: './users.component.html', styleUrls: ['./users.component.css'], animations: [ @@ -31,15 +31,16 @@ export class UsersComponent implements OnInit { selectedUser: IUser; // Use "constructor"s only for dependency injection - constructor(private userService: UserService) { } + constructor( + private userService: UserService + ) { } // Here you want to handle anything with @Input()'s @Output()'s // Data retrieval / etc - this is when the Component is "ready" and wired up ngOnInit() { this.userService.getUsers().subscribe(result => { - console.log('Get user result: ', result); - console.log('TransferHttp [GET] /api/users/allresult', result); - this.users = result as IUser[]; + console.log('HttpClient [GET] /api/users/allresult', result); + this.users = result; }); } @@ -50,10 +51,8 @@ export class UsersComponent implements OnInit { deleteUser(user) { this.userService.deleteUser(user).subscribe(result => { console.log('Delete user result: ', result); - if (result.ok) { - let position = this.users.indexOf(user); - this.users.splice(position, 1); - } + let position = this.users.indexOf(user); + this.users.splice(position, 1); }, error => { console.log(`There was an issue. ${error._body}.`); }); @@ -62,9 +61,7 @@ export class UsersComponent implements OnInit { addUser(newUserName) { this.userService.addUser(newUserName).subscribe(result => { console.log('Post user result: ', result); - if (result.ok) { - this.users.push(result.json()); - } + this.users.push(result); }, error => { console.log(`There was an issue. ${error._body}.`); }); diff --git a/ClientApp/app/css/animate.scss b/ClientApp/app/css/animate.scss new file mode 100644 index 00000000..d4b92d9c --- /dev/null +++ b/ClientApp/app/css/animate.scss @@ -0,0 +1,3591 @@ +.animated.delay-01 { + animation-delay: 0s; + -webkit-animation-delay: 0s; + -moz-animation-delay: 0s; + -o-animation-delay: 0s; +} + +.animated.delay-02 { + animation-delay: 0.5s; + -webkit-animation-delay: 0.5s; + -moz-animation-delay: 0.5s; + -o-animation-delay: 0.5s; +} + +.animated.delay-03 { + animation-delay: 1s; + -webkit-animation-delay: 1s; + -moz-animation-delay: 1s; + -o-animation-delay: 1s; +} + +.animated.delay-04 { + animation-delay: 1.5s; + -webkit-animation-delay: 1.5s; + -moz-animation-delay: 1.5s; + -o-animation-delay: 1.5s; +} + +.animated.delay-05 { + animation-delay: 2s; + -webkit-animation-delay: 2s; + -moz-animation-delay: 2s; + -o-animation-delay: 2s; +} + +.animated.delay-06 { + animation-delay: 2.5s; + -webkit-animation-delay: 2.5s; + -moz-animation-delay: 2.5s; + -o-animation-delay: 2.5s; +} + +.animated.delay-07 { + animation-delay: 3s; + -webkit-animation-delay: 3s; + -moz-animation-delay: 3s; + -o-animation-delay: 3s; +} + +.animated.delay-08 { + animation-delay: 3.5s; + -webkit-animation-delay: 3.5s; + -moz-animation-delay: 3.5s; + -o-animation-delay: 3.5s; +} + +.animated.delay-09 { + animation-delay: 4s; + -webkit-animation-delay: 4s; + -moz-animation-delay: 4s; + -o-animation-delay: 4s; +} + +.animated.delay-10 { + animation-delay: 4.5s; + -webkit-animation-delay: 4.5s; + -moz-animation-delay: 4.5s; + -o-animation-delay: 4.5s; +} + +.animated.delay-11 { + animation-delay: 5s; + -webkit-animation-delay: 5s; + -moz-animation-delay: 5s; + -o-animation-delay: 5s; +} + +.animated.delay-12 { + animation-delay: 5.5s; + -webkit-animation-delay: 5.5s; + -moz-animation-delay: 5.5s; + -o-animation-delay: 5.5s; +} + +.animated.delay-13 { + animation-delay: 6s; + -webkit-animation-delay: 6s; + -moz-animation-delay: 6s; + -o-animation-delay: 6s; +} + +.animated.delay-14 { + animation-delay: 6.5s; + -webkit-animation-delay: 6.5s; + -moz-animation-delay: 6.5s; + -o-animation-delay: 6.5s; +} + +.animated.delay-15 { + animation-delay: 7s; + -webkit-animation-delay: 7s; + -moz-animation-delay: 7s; + -o-animation-delay: 7s; +} + +.animated.delay-16 { + animation-delay: 7.5s; + -webkit-animation-delay: 7.5s; + -moz-animation-delay: 7.5s; + -o-animation-delay: 7.5s; +} + +.animated.delay-17 { + animation-delay: 8s; + -webkit-animation-delay: 8s; + -moz-animation-delay: 8s; + -o-animation-delay: 8s; +} + +.animated.delay-18 { + animation-delay: 8.5s; + -webkit-animation-delay: 8.5s; + -moz-animation-delay: 8.5s; + -o-animation-delay: 8.5s; +} + +.animated.delay-19 { + animation-delay: 9s; + -webkit-animation-delay: 9s; + -moz-animation-delay: 9s; + -o-animation-delay: 9s; +} + +.animated.delay-20 { + animation-delay: 9.5s; + -webkit-animation-delay: 9.5s; + -moz-animation-delay: 9.5s; + -o-animation-delay: 9.5s; +} + +.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; + -ms-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) translateZ(0) rotateY(0) scale(1); + -webkit-animation-timing-function: ease-out; + } + 40% { + -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1); + -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) translateZ(0) rotateY(360deg) scale(.95); + -webkit-animation-timing-function: ease-in; + } + 100% { + -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1); + -webkit-animation-timing-function: ease-in; + } +} +@-moz-keyframes flip { + 0% { + -moz-transform: perspective(400px) translateZ(0) rotateY(0) scale(1); + -moz-animation-timing-function: ease-out; + } + 40% { + -moz-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1); + -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) translateZ(0) rotateY(360deg) scale(.95); + -moz-animation-timing-function: ease-in; + } + 100% { + -moz-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1); + -moz-animation-timing-function: ease-in; + } +} +@-o-keyframes flip { + 0% { + -o-transform: perspective(400px) translateZ(0) rotateY(0) scale(1); + -o-animation-timing-function: ease-out; + } + 40% { + -o-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1); + -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) translateZ(0) rotateY(360deg) scale(.95); + -o-animation-timing-function: ease-in; + } + 100% { + -o-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1); + -o-animation-timing-function: ease-in; + } +} +@keyframes flip { + 0% { + transform: perspective(400px) translateZ(0) rotateY(0) scale(1); + animation-timing-function: ease-out; + } + 40% { + transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1); + animation-timing-function: ease-out; + } + 50% { + transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1); + animation-timing-function: ease-in; + } + 80% { + transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95); + animation-timing-function: ease-in; + } + 100% { + transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1); + animation-timing-function: ease-in; + } +} + +.animated.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 slideInDown { + 0% { + opacity: 0; + -webkit-transform: translateY(-2000px); + } + + 100% { + -webkit-transform: translateY(0); + } +} + +@-moz-keyframes slideInDown { + 0% { + opacity: 0; + -moz-transform: translateY(-2000px); + } + + 100% { + -moz-transform: translateY(0); + } +} + +@-o-keyframes slideInDown { + 0% { + opacity: 0; + -o-transform: translateY(-2000px); + } + + 100% { + -o-transform: translateY(0); + } +} + +@keyframes slideInDown { + 0% { + opacity: 0; + transform: translateY(-2000px); + } + + 100% { + transform: translateY(0); + } +} + +.slideInDown { + -webkit-animation-name: slideInDown; + -moz-animation-name: slideInDown; + -o-animation-name: slideInDown; + animation-name: slideInDown; +} +@-webkit-keyframes slideInLeft { + 0% { + opacity: 0; + -webkit-transform: translateX(-2000px); + } + + 100% { + -webkit-transform: translateX(0); + } +} + +@-moz-keyframes slideInLeft { + 0% { + opacity: 0; + -moz-transform: translateX(-2000px); + } + + 100% { + -moz-transform: translateX(0); + } +} + +@-o-keyframes slideInLeft { + 0% { + opacity: 0; + -o-transform: translateX(-2000px); + } + + 100% { + -o-transform: translateX(0); + } +} + +@keyframes slideInLeft { + 0% { + opacity: 0; + transform: translateX(-2000px); + } + + 100% { + transform: translateX(0); + } +} + +.slideInLeft { + -webkit-animation-name: slideInLeft; + -moz-animation-name: slideInLeft; + -o-animation-name: slideInLeft; + animation-name: slideInLeft; +} +@-webkit-keyframes slideInRight { + 0% { + opacity: 0; + -webkit-transform: translateX(2000px); + } + + 100% { + -webkit-transform: translateX(0); + } +} + +@-moz-keyframes slideInRight { + 0% { + opacity: 0; + -moz-transform: translateX(2000px); + } + + 100% { + -moz-transform: translateX(0); + } +} + +@-o-keyframes slideInRight { + 0% { + opacity: 0; + -o-transform: translateX(2000px); + } + + 100% { + -o-transform: translateX(0); + } +} + +@keyframes slideInRight { + 0% { + opacity: 0; + transform: translateX(2000px); + } + + 100% { + transform: translateX(0); + } +} + +.slideInRight { + -webkit-animation-name: slideInRight; + -moz-animation-name: slideInRight; + -o-animation-name: slideInRight; + animation-name: slideInRight; +} +@-webkit-keyframes slideOutUp { + 0% { + -webkit-transform: translateY(0); + } + + 100% { + opacity: 0; + -webkit-transform: translateY(-2000px); + } +} + +@-moz-keyframes slideOutUp { + 0% { + -moz-transform: translateY(0); + } + + 100% { + opacity: 0; + -moz-transform: translateY(-2000px); + } +} + +@-o-keyframes slideOutUp { + 0% { + -o-transform: translateY(0); + } + + 100% { + opacity: 0; + -o-transform: translateY(-2000px); + } +} + +@keyframes slideOutUp { + 0% { + transform: translateY(0); + } + + 100% { + opacity: 0; + transform: translateY(-2000px); + } +} + +.slideOutUp { + -webkit-animation-name: slideOutUp; + -moz-animation-name: slideOutUp; + -o-animation-name: slideOutUp; + animation-name: slideOutUp; +} +@-webkit-keyframes slideOutLeft { + 0% { + -webkit-transform: translateX(0); + } + + 100% { + opacity: 0; + -webkit-transform: translateX(-2000px); + } +} + +@-moz-keyframes slideOutLeft { + 0% { + -moz-transform: translateX(0); + } + + 100% { + opacity: 0; + -moz-transform: translateX(-2000px); + } +} + +@-o-keyframes slideOutLeft { + 0% { + -o-transform: translateX(0); + } + + 100% { + opacity: 0; + -o-transform: translateX(-2000px); + } +} + +@keyframes slideOutLeft { + 0% { + transform: translateX(0); + } + + 100% { + opacity: 0; + transform: translateX(-2000px); + } +} + +.slideOutLeft { + -webkit-animation-name: slideOutLeft; + -moz-animation-name: slideOutLeft; + -o-animation-name: slideOutLeft; + animation-name: slideOutLeft; +} +@-webkit-keyframes slideOutRight { + 0% { + -webkit-transform: translateX(0); + } + + 100% { + opacity: 0; + -webkit-transform: translateX(2000px); + } +} + +@-moz-keyframes slideOutRight { + 0% { + -moz-transform: translateX(0); + } + + 100% { + opacity: 0; + -moz-transform: translateX(2000px); + } +} + +@-o-keyframes slideOutRight { + 0% { + -o-transform: translateX(0); + } + + 100% { + opacity: 0; + -o-transform: translateX(2000px); + } +} + +@keyframes slideOutRight { + 0% { + transform: translateX(0); + } + + 100% { + opacity: 0; + transform: translateX(2000px); + } +} + +.slideOutRight { + -webkit-animation-name: slideOutRight; + -moz-animation-name: slideOutRight; + -o-animation-name: slideOutRight; + animation-name: slideOutRight; +} +@-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 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; +} +@-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; +} +@-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; +} diff --git a/ClientApp/app/css/assets/arrow_large_left.png b/ClientApp/app/css/assets/arrow_large_left.png new file mode 100644 index 00000000..d0e0f427 Binary files /dev/null and b/ClientApp/app/css/assets/arrow_large_left.png differ diff --git a/ClientApp/app/css/assets/arrow_large_right.png b/ClientApp/app/css/assets/arrow_large_right.png new file mode 100644 index 00000000..c1c23e3e Binary files /dev/null and b/ClientApp/app/css/assets/arrow_large_right.png differ diff --git a/ClientApp/app/css/assets/arrow_left.png b/ClientApp/app/css/assets/arrow_left.png new file mode 100644 index 00000000..b71957fa Binary files /dev/null and b/ClientApp/app/css/assets/arrow_left.png differ diff --git a/ClientApp/app/css/assets/arrow_left2.png b/ClientApp/app/css/assets/arrow_left2.png new file mode 100644 index 00000000..b5694484 Binary files /dev/null and b/ClientApp/app/css/assets/arrow_left2.png differ diff --git a/ClientApp/app/css/assets/arrow_right.png b/ClientApp/app/css/assets/arrow_right.png new file mode 100644 index 00000000..76f81f51 Binary files /dev/null and b/ClientApp/app/css/assets/arrow_right.png differ diff --git a/ClientApp/app/css/assets/arrow_right2.png b/ClientApp/app/css/assets/arrow_right2.png new file mode 100644 index 00000000..c6a27262 Binary files /dev/null and b/ClientApp/app/css/assets/arrow_right2.png differ diff --git a/ClientApp/app/css/assets/arrowleft.png b/ClientApp/app/css/assets/arrowleft.png new file mode 100644 index 00000000..2e7daf8e Binary files /dev/null and b/ClientApp/app/css/assets/arrowleft.png differ diff --git a/ClientApp/app/css/assets/arrowright.png b/ClientApp/app/css/assets/arrowright.png new file mode 100644 index 00000000..0702b883 Binary files /dev/null and b/ClientApp/app/css/assets/arrowright.png differ diff --git a/ClientApp/app/css/assets/arrows.psd b/ClientApp/app/css/assets/arrows.psd new file mode 100644 index 00000000..ade2810a Binary files /dev/null and b/ClientApp/app/css/assets/arrows.psd differ diff --git a/ClientApp/app/css/assets/black50.png b/ClientApp/app/css/assets/black50.png new file mode 100644 index 00000000..01e9141d Binary files /dev/null and b/ClientApp/app/css/assets/black50.png differ diff --git a/ClientApp/app/css/assets/boxed_bgtile.png b/ClientApp/app/css/assets/boxed_bgtile.png new file mode 100644 index 00000000..7068133b Binary files /dev/null and b/ClientApp/app/css/assets/boxed_bgtile.png differ diff --git a/ClientApp/app/css/assets/bullet.png b/ClientApp/app/css/assets/bullet.png new file mode 100644 index 00000000..1203f8ad Binary files /dev/null and b/ClientApp/app/css/assets/bullet.png differ diff --git a/ClientApp/app/css/assets/bullet_boxed.png b/ClientApp/app/css/assets/bullet_boxed.png new file mode 100644 index 00000000..7e28118f Binary files /dev/null and b/ClientApp/app/css/assets/bullet_boxed.png differ diff --git a/ClientApp/app/css/assets/bullets.png b/ClientApp/app/css/assets/bullets.png new file mode 100644 index 00000000..eca59779 Binary files /dev/null and b/ClientApp/app/css/assets/bullets.png differ diff --git a/ClientApp/app/css/assets/bullets.psd b/ClientApp/app/css/assets/bullets.psd new file mode 100644 index 00000000..181523b6 Binary files /dev/null and b/ClientApp/app/css/assets/bullets.psd differ diff --git a/ClientApp/app/css/assets/bullets2.png b/ClientApp/app/css/assets/bullets2.png new file mode 100644 index 00000000..bf3c7f21 Binary files /dev/null and b/ClientApp/app/css/assets/bullets2.png differ diff --git a/ClientApp/app/css/assets/coloredbg.png b/ClientApp/app/css/assets/coloredbg.png new file mode 100644 index 00000000..db75b7a1 Binary files /dev/null and b/ClientApp/app/css/assets/coloredbg.png differ diff --git a/ClientApp/app/css/assets/grain.png b/ClientApp/app/css/assets/grain.png new file mode 100644 index 00000000..d892efe4 Binary files /dev/null and b/ClientApp/app/css/assets/grain.png differ diff --git a/ClientApp/app/css/assets/gridtile.png b/ClientApp/app/css/assets/gridtile.png new file mode 100644 index 00000000..b07e3964 Binary files /dev/null and b/ClientApp/app/css/assets/gridtile.png differ diff --git a/ClientApp/app/css/assets/gridtile_3x3.png b/ClientApp/app/css/assets/gridtile_3x3.png new file mode 100644 index 00000000..6f2c31d5 Binary files /dev/null and b/ClientApp/app/css/assets/gridtile_3x3.png differ diff --git a/ClientApp/app/css/assets/gridtile_3x3_white.png b/ClientApp/app/css/assets/gridtile_3x3_white.png new file mode 100644 index 00000000..a8830fcb Binary files /dev/null and b/ClientApp/app/css/assets/gridtile_3x3_white.png differ diff --git a/ClientApp/app/css/assets/gridtile_white.png b/ClientApp/app/css/assets/gridtile_white.png new file mode 100644 index 00000000..7f2599ef Binary files /dev/null and b/ClientApp/app/css/assets/gridtile_white.png differ diff --git a/ClientApp/app/css/assets/large_left.png b/ClientApp/app/css/assets/large_left.png new file mode 100644 index 00000000..896d084f Binary files /dev/null and b/ClientApp/app/css/assets/large_left.png differ diff --git a/ClientApp/app/css/assets/large_right.png b/ClientApp/app/css/assets/large_right.png new file mode 100644 index 00000000..43db6f67 Binary files /dev/null and b/ClientApp/app/css/assets/large_right.png differ diff --git a/ClientApp/app/css/assets/loader.gif b/ClientApp/app/css/assets/loader.gif new file mode 100644 index 00000000..53dd589f Binary files /dev/null and b/ClientApp/app/css/assets/loader.gif differ diff --git a/ClientApp/app/css/assets/loader2.gif b/ClientApp/app/css/assets/loader2.gif new file mode 100644 index 00000000..4ec1dda3 Binary files /dev/null and b/ClientApp/app/css/assets/loader2.gif differ diff --git a/ClientApp/app/css/assets/navigdots.png b/ClientApp/app/css/assets/navigdots.png new file mode 100644 index 00000000..3c0ea2f5 Binary files /dev/null and b/ClientApp/app/css/assets/navigdots.png differ diff --git a/ClientApp/app/css/assets/navigdots_bgtile.png b/ClientApp/app/css/assets/navigdots_bgtile.png new file mode 100644 index 00000000..84f1c287 Binary files /dev/null and b/ClientApp/app/css/assets/navigdots_bgtile.png differ diff --git a/ClientApp/app/css/assets/shadow1.png b/ClientApp/app/css/assets/shadow1.png new file mode 100644 index 00000000..55293a19 Binary files /dev/null and b/ClientApp/app/css/assets/shadow1.png differ diff --git a/ClientApp/app/css/assets/shadow2.png b/ClientApp/app/css/assets/shadow2.png new file mode 100644 index 00000000..8d0f298b Binary files /dev/null and b/ClientApp/app/css/assets/shadow2.png differ diff --git a/ClientApp/app/css/assets/shadow3.png b/ClientApp/app/css/assets/shadow3.png new file mode 100644 index 00000000..2ceccf84 Binary files /dev/null and b/ClientApp/app/css/assets/shadow3.png differ diff --git a/ClientApp/app/css/assets/small_arrows.psd b/ClientApp/app/css/assets/small_arrows.psd new file mode 100644 index 00000000..5a60813e Binary files /dev/null and b/ClientApp/app/css/assets/small_arrows.psd differ diff --git a/ClientApp/app/css/assets/small_left.png b/ClientApp/app/css/assets/small_left.png new file mode 100644 index 00000000..0fb36a64 Binary files /dev/null and b/ClientApp/app/css/assets/small_left.png differ diff --git a/ClientApp/app/css/assets/small_left_boxed.png b/ClientApp/app/css/assets/small_left_boxed.png new file mode 100644 index 00000000..59cd3bc0 Binary files /dev/null and b/ClientApp/app/css/assets/small_left_boxed.png differ diff --git a/ClientApp/app/css/assets/small_right.png b/ClientApp/app/css/assets/small_right.png new file mode 100644 index 00000000..b83563a4 Binary files /dev/null and b/ClientApp/app/css/assets/small_right.png differ diff --git a/ClientApp/app/css/assets/small_right_boxed.png b/ClientApp/app/css/assets/small_right_boxed.png new file mode 100644 index 00000000..d89a0954 Binary files /dev/null and b/ClientApp/app/css/assets/small_right_boxed.png differ diff --git a/ClientApp/app/css/assets/timer.png b/ClientApp/app/css/assets/timer.png new file mode 100644 index 00000000..8e2ee79a Binary files /dev/null and b/ClientApp/app/css/assets/timer.png differ diff --git a/ClientApp/app/css/assets/timerdot.png b/ClientApp/app/css/assets/timerdot.png new file mode 100644 index 00000000..0174d3d6 Binary files /dev/null and b/ClientApp/app/css/assets/timerdot.png differ diff --git a/ClientApp/app/css/assets/transparent.jpg b/ClientApp/app/css/assets/transparent.jpg new file mode 100644 index 00000000..f0e511b2 Binary files /dev/null and b/ClientApp/app/css/assets/transparent.jpg differ diff --git a/ClientApp/app/css/assets/white50.png b/ClientApp/app/css/assets/white50.png new file mode 100644 index 00000000..32426051 Binary files /dev/null and b/ClientApp/app/css/assets/white50.png differ diff --git a/ClientApp/app/css/browser.styles.scss b/ClientApp/app/css/browser.styles.scss new file mode 100644 index 00000000..1002cb35 --- /dev/null +++ b/ClientApp/app/css/browser.styles.scss @@ -0,0 +1,7 @@ +/*@import "./gts-nav-wizard.css";*/ +@import "./settings"; +@import "./style"; +@import "./responsive"; +@import "./animate"; +@import "./colors/blue"; +@import "./fontello"; diff --git a/ClientApp/app/css/carousel/owl.carousel.theme.css b/ClientApp/app/css/carousel/owl.carousel.theme.css new file mode 100644 index 00000000..3530917f --- /dev/null +++ b/ClientApp/app/css/carousel/owl.carousel.theme.css @@ -0,0 +1,242 @@ +/* +* Owl Carousel Owl Theme +*/ + +.owl-theme { + text-align: center; +} + +/* Styling Next and Prev buttons */ + +.touch-slider .owl-nav div { + position: absolute; + top: 50%; + height: 60px; + line-height: 60px; + display: inline-block; + zoom: 1; + padding: 0 1px; + *display: inline; + border-radius: 50%; + -webkit-border-radius: 50%; + -moz-border-radius: 50%; + -o-border-radius: 50%; + background: #444; + filter: Alpha(Opacity=60); + opacity: 0.6; + margin-top: -30px; + transition: all 0.4s ease-in-out; + -moz-transition: all 0.4s ease-in-out; + -webkit-transition: all 0.4s ease-in-out; + -o-transition: all 0.4s ease-in-out; +} + +.touch-slider:hover .owl-nav div { + filter: Alpha(Opacity=100); + opacity: 1; +} + +.touch-slider .owl-nav div.owl-prev { + left: 0; + border-radius: 0 3px 3px 0; + -webkit-border-radius: 0 3px 3px 0; + -moz-border-radius: 0 3px 3px 0; + -o-border-radius: 0 3px 3px 0; +} + +.touch-slider .owl-nav div.owl-next { + right: 0; + border-radius: 3px 0 0 3px; + -webkit-border-radius: 3px 0 0 3px; + -moz-border-radius: 3px 0 0 3px; + -o-border-radius: 3px 0 0 3px; +} + +.touch-slider .owl-nav div i { + font-size: 1.8em; + color: #fff; +} + +.touch-slider .owl-nav div:hover { + background-color: #00afd1; +} + +.touch-carousel .owl-nav { + position: absolute; + top: -50px; + right: 2px; +} + +.touch-carousel.projects-carousel .owl-nav { + right: 12px; +} + +.touch-carousel.navigation-2 .owl-nav { + position: relative; + top: 0; + right: 0; +} + +.touch-carousel.navigation-2.clients-carousel .owl-nav { + top: -8px; +} + +.touch-carousel.navigation-2 .owl-nav div, .touch-carousel.navigation-3 .owl-nav div { + background-color: #f2f2f2; +} + +.touch-carousel.navigation-2 .owl-nav div i, .touch-carousel.navigation-3 .owl-nav div i { + color: #666; +} + +.touch-carousel.navigation-3 { + padding-top: 45px; +} + +.touch-carousel.navigation-3.clients-carousel { + padding-top: 25px; +} + +.touch-carousel.navigation-3 .owl-nav { + position: absolute; + top: 0; + right: 0; + width: 100%; +} + +.touch-carousel.navigation-2 .owl-nav div, .touch-carousel.navigation-3 .owl-nav div { + width: 28px; + height: 28px; + line-height: 28px; + border-radius: 50%; + -webkit-border-radius: 50%; + -moz-border-radius: 50%; + -o-border-radius: 50%; +} + +.touch-carousel.navigation-3.projects-carousel .owl-nav { + right: 9px; +} + +.touch-carousel .owl-nav div, .testimonials-carousel .owl-nav div { + height: 22px; + width: 22px; + line-height: 22px; + display: inline-block; + zoom: 1; + *display: inline; + -webkit-border-radius: 2px; + -moz-border-radius: 2px; + -o-border-radius: 2px; + border-radius: 2px; + background-color: #fff; + margin-left: 4px; + transition: all 0.4s ease-in-out; + -moz-transition: all 0.4s ease-in-out; + -webkit-transition: all 0.4s ease-in-out; + -o-transition: all 0.4s ease-in-out; +} + +.touch-carousel .owl-nav div i, .testimonials-carousel .owl-nav div i { + font-size: 1.2em; + color: #ccc; + text-shadow: 0 1px 1px rgba(0,0,0,.2); + transition: all 0.4s ease-in-out; + -moz-transition: all 0.4s ease-in-out; + -webkit-transition: all 0.4s ease-in-out; + -o-transition: all 0.4s ease-in-out; +} + +.testimonials-carousel .owl-nav div i { + color: #fff; +} + +.touch-carousel .owl-nav div:hover i { + color: #fff; + text-shadow: 0 1px 1px rgba(0,0,0,.3); +} + +.testimonials-carousel .owl-nav div:hover { + background-color: #fff; + box-shadow: 0 1px 1px rgba(0,0,0,.2); +} + + +/* Styling Pagination*/ + +.owl-dots { + position: absolute; + width: 100%; + left: 0; + bottom: 5px; +} + +.owl-theme .owl-dot { + display: inline-block; + zoom: 1; + *display: inline; +} + +.owl-theme .owl-dot span { + display: block; + width: 16px; + height: 16px; + margin: 2px 4px; + filter: Alpha(Opacity=50); + opacity: 0.5; + -webkit-border-radius: 50%; + -moz-border-radius: 50%; + -o-border-radius: 50%; + border-radius: 50%; + border: 3px solid #444; + transition: all 0.4s ease-in-out; + -moz-transition: all 0.4s ease-in-out; + -webkit-transition: all 0.4s ease-in-out; + -o-transition: all 0.4s ease-in-out; +} + +.touch-slider:hover .owl-dot span { + filter: Alpha(Opacity=100); + opacity: 1; +} + +.owl-theme .owl-dot.active span, +.owl-theme .owl-dot:hover span { + border-color: #0A95D8; +} + +/* If PaginationNumbers is true */ +.owl-theme .owl-dot span.owl-numbers { + height: auto; + width: auto; + color: #FFF; + padding: 2px 10px; + font-size: 12px; + -webkit-border-radius: 30px; + -moz-border-radius: 30px; + -o-border-radius: 30px; + border-radius: 30px; +} + +/* +#bar { + width: 0%; + max-width: 100%; + height: 4px; + background: #444; + filter: Alpha(Opacity=50); + opacity: 0.5; +} + +#progressBar { + position: absolute; + top: 0; + z-index: 99; + width: 100%; +}*/ + +/* preloading images */ +/*.owl-item.loading { + min-height: 150px; + background: url(./css/images/icons/ajaxloader.gif) no-repeat center center +}*/ diff --git a/ClientApp/app/css/colors/beige.css b/ClientApp/app/css/colors/beige.css new file mode 100644 index 00000000..eee537c1 --- /dev/null +++ b/ClientApp/app/css/colors/beige.css @@ -0,0 +1,309 @@ +a { + color: #fdb655; +} + +.accent-color { + color: #fdb655; +} + +.accent-color-bg { + background-color: #fdb655; +} + +.top-bar a:hover { + color: #fdb655; +} + +.section-overlay { + background-color: #fdb655; +} + +.top-bar.color-bar { + background-color: #fdb655; +} + +.service-box .read-more { + color: #fdb655; +} + +a.main-button, input[type="submit"] { + background-color: #fdb655; +} + +.navbar-default .navbar-nav > li:hover > a, +.navbar-default .navbar-nav > li.active-menu > a { + color: #fdb655; +} + +.dropdown > li:hover > a, .sup-dropdown li:hover > a { + color: #fdb655; +} + +.navbar-default .navbar-nav > li > a:after { + background-color: #fdb655; +} + +.navbar-default .navbar-nav > li.active-menu > a, .navbar-default .navbar-nav > li:hover > a { + border-color: #fdb655; +} + +.dropdown li a.active, .sup-dropdown li a.active { + color: #fdb655; +} + +ul.breadcrumbs li a:hover { + color: #fdb655; +} + +.full-width-recent-projects .portfolio-item:hover .portfolio-thumb .thumb-overlay { + background-color: #fdb655; +} + +.tp-caption.color-bg { + background-color: #fdb655; +} + +.team-member .member-socail a.mail:hover i { + background-color: #fdb655; +} + +.post-share a.mail:hover { + background-color: #fdb655; +} + +.progress .progress-bar.progress-bar-primary { + background-color: #fdb655; +} + +.latest-posts-classic .left-meta-post .post-type i { + background-color: #fdb655; +} + +.latest-posts-classic .post-title a:hover { + color: #fdb655; +} + +.latest-posts-classic .read-more { + color: #fdb655; +} + +.panel-title a { + color: #fdb655; +} + +.panel-title a:hover { + color: #fdb655; +} + +.milestone-block .milestone-icon { + background-color: #fdb655; +} + +.milestone-block .milestone-icon:after { + background-color: #fdb655; +} + +.milestone-block .milestone-number { + color: #fdb655; +} + +.pricing-tables .pricing-table.highlight-plan .plan-name h3 { + color: #fdb655; +} + +.btn-system { + background-color: #fdb655; +} + +.btn-system.border-btn { + border-color: #fdb655; + color: #fdb655; +} + +.btn-system.border-btn:hover { + background-color: #fdb655; +} + +.btn-system.border-btn.btn-wite:hover { + color: #fdb655; +} + +.btn-system.btn-wite{ + color: #fdb655; +} + +ul.icons-list li i { + color: #fdb655; +} + +.nav-tabs > li > a:hover, .nav-tabs > li > a:focus { + background-color: #fdb655; +} + +.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover { + color: #fdb655; +} + +.icon-small { + text-shadow: 0 0 0 #fdb655; +} + +.icon-small:hover, .service-box:hover .icon-small { + color: #fdb655; +} +.icon-medium { + text-shadow: 0 0 0 #fdb655; +} + +.icon-medium:hover, .service-box:hover .icon-medium { + color: #fdb655; +} + +.icon-large { + text-shadow: 0 0 0 #fdb655; +} + +.icon-large:hover, .service-box:hover .icon-large { + color: #fdb655; +} + +.icon-effect-1 { + box-shadow: 0 0 0 3px #fdb655; + -o-box-shadow: 0 0 0 3px #fdb655; + -moz-box-shadow: 0 0 0 3px #fdb655; + -webkit-box-shadow: 0 0 0 3px #fdb655; +} + +.icon-effect-1:after { + background-color: #fdb655; +} + +.icon-effect-1:hover, .service-box:hover .icon-effect-1 { + color: #fdb655; +} + +.icon-effect-2 { + color: #fdb655; + box-shadow: 0 0 0 3px #fdb655; + -o-box-shadow: 0 0 0 3px #fdb655; + -moz-box-shadow: 0 0 0 3px #fdb655; + -webkit-box-shadow: 0 0 0 3px #fdb655; +} + +.icon-effect-2:after { + background-color: #fdb655; +} + +.icon-effect-3 { + color: #fdb655; + box-shadow: 0 0 0 3px #fdb655; + -o-box-shadow: 0 0 0 3px #fdb655; + -moz-box-shadow: 0 0 0 3px #fdb655; + -webkit-box-shadow: 0 0 0 3px #fdb655; +} + +.icon-effect-4 { + color: #fdb655; + box-shadow: 0 0 0 3px #fdb655; + -o-box-shadow: 0 0 0 3px #fdb655; + -moz-box-shadow: 0 0 0 3px #fdb655; + -webkit-box-shadow: 0 0 0 3px #fdb655; +} + +.icon-effect-5 { + color: #fdb655; + box-shadow: 0 0 0 3px #fdb655; + -o-box-shadow: 0 0 0 3px #fdb655; + -moz-box-shadow: 0 0 0 3px #fdb655; + -webkit-box-shadow: 0 0 0 3px #fdb655; +} + +.icon-effect-6 { + color: #fdb655; + box-shadow: 0 0 0 3px #fdb655; + -o-box-shadow: 0 0 0 3px #fdb655; + -moz-box-shadow: 0 0 0 3px #fdb655; + -webkit-box-shadow: 0 0 0 3px #fdb655; +} + +.team-member .member-photo .member-name span { + background-color: #fdb655; +} + +.classic-title span { + border-bottom-color: #fdb655; +} + +.portfolio-filter li a:hover { + color: #fdb655; +} + +.portfolio-filter li a.selected { + border-color: #fdb655; + background-color: #fdb655; +} + +.portfolio-item:hover .portfolio-details h4 { + color: #fdb655; +} + +.project-content h4 span { + border-bottom-color: #fdb655; +} + +.recent-projects h4.title span { + border-bottom-color: #fdb655; +} + +ul.post-meta li a:hover { + color: #fdb655; +} + +#pagination span.current { + border-color: #fdb655; + background-color: #fdb655; +} + +#pagination a:hover { + color: #fdb655; +} + +.post-tags-list a:hover { + background-color: #fdb655; +} + +.post-share a.mail { + background-color: #fdb655; +} + +.sidebar a:hover { + color: #fdb655; +} + +.widget-search .search-btn { + background-color: #fdb655; +} + +.sidebar .tagcloud a:hover { + background-color: #fdb655; +} + +.back-to-top:hover i { + background-color: #fdb655; +} + +.touch-slider .owl-controls.clickable .owl-buttons div:hover { + background-color: #fdb655; +} + +.touch-carousel .owl-controls.clickable .owl-buttons div:hover { + background-color: #fdb655; +} + +.testimonials-carousel .owl-controls.clickable .owl-buttons div { + background-color: #fdb655; +} + +.testimonials-carousel .owl-controls.clickable .owl-buttons div:hover i { + color: #fdb655; +} diff --git a/ClientApp/app/css/colors/blue.scss b/ClientApp/app/css/colors/blue.scss new file mode 100644 index 00000000..78115e72 --- /dev/null +++ b/ClientApp/app/css/colors/blue.scss @@ -0,0 +1,309 @@ +a { + color: #00afd1; +} + +.accent-color { + color: #00afd1; +} + +.accent-color-bg { + background-color: #00afd1; +} + +.top-bar a:hover { + color: #00afd1; +} + +.section-overlay { + background-color: #00afd1; +} + +.top-bar.color-bar { + background-color: #00afd1; +} + +.service-box .read-more { + color: #00afd1; +} + +a.main-button, input[type="submit"] { + background-color: #00afd1; +} + +.navbar-default .navbar-nav > li:hover > a, +.navbar-default .navbar-nav > li.active-menu > a { + color: #00afd1; +} + +.dropdown > li:hover > a, .sup-dropdown li:hover > a { + color: #00afd1; +} + +.navbar-default .navbar-nav > li > a:after { + background-color: #00afd1; +} + +.navbar-default .navbar-nav > li.active-menu > a, .navbar-default .navbar-nav > li:hover > a { + border-color: #00afd1; +} + +.dropdown li a.active, .sup-dropdown li a.active { + color: #00afd1; +} + +ul.breadcrumbs li a:hover { + color: #00afd1; +} + +.full-width-recent-projects .portfolio-item:hover .portfolio-thumb .thumb-overlay { + background-color: #00afd1; +} + +.tp-caption.color-bg { + background-color: #00afd1; +} + +.team-member .member-socail a.mail:hover i { + background-color: #00afd1; +} + +.post-share a.mail:hover { + background-color: #00afd1; +} + +.progress .progress-bar.progress-bar-primary { + background-color: #00afd1; +} + +.latest-posts-classic .left-meta-post .post-type i { + background-color: #00afd1; +} + +.latest-posts-classic .post-title a:hover { + color: #00afd1; +} + +.latest-posts-classic .read-more { + color: #00afd1; +} + +.panel-title a { + color: #00afd1; +} + +.panel-title a:hover { + color: #00afd1; +} + +.milestone-block .milestone-icon { + background-color: #00afd1; +} + +.milestone-block .milestone-icon:after { + background-color: #00afd1; +} + +.milestone-block .milestone-number { + color: #00afd1; +} + +.pricing-tables .pricing-table.highlight-plan .plan-name h3 { + color: #00afd1; +} + +.btn-system { + background-color: #00afd1; +} + +.btn-system.border-btn { + border-color: #00afd1; + color: #00afd1; +} + +.btn-system.border-btn:hover { + background-color: #00afd1; +} + +.btn-system.border-btn.btn-wite:hover { + color: #00afd1; +} + +.btn-system.btn-wite{ + color: #00afd1; +} + +ul.icons-list li i { + color: #00afd1; +} + +.nav-tabs > li > a:hover, .nav-tabs > li > a:focus { + background-color: #00afd1; +} + +.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover { + color: #00afd1; +} + +.icon-small { + text-shadow: 0 0 0 #00afd1; +} + +.icon-small:hover, .service-box:hover .icon-small { + color: #00afd1; +} +.icon-medium { + text-shadow: 0 0 0 #00afd1; +} + +.icon-medium:hover, .service-box:hover .icon-medium { + color: #00afd1; +} + +.icon-large { + text-shadow: 0 0 0 #00afd1; +} + +.icon-large:hover, .service-box:hover .icon-large { + color: #00afd1; +} + +.icon-effect-1 { + box-shadow: 0 0 0 3px #00afd1; + -o-box-shadow: 0 0 0 3px #00afd1; + -moz-box-shadow: 0 0 0 3px #00afd1; + -webkit-box-shadow: 0 0 0 3px #00afd1; +} + +.icon-effect-1:after { + background-color: #00afd1; +} + +.icon-effect-1:hover, .service-box:hover .icon-effect-1 { + color: #00afd1; +} + +.icon-effect-2 { + color: #00afd1; + box-shadow: 0 0 0 3px #00afd1; + -o-box-shadow: 0 0 0 3px #00afd1; + -moz-box-shadow: 0 0 0 3px #00afd1; + -webkit-box-shadow: 0 0 0 3px #00afd1; +} + +.icon-effect-2:after { + background-color: #00afd1; +} + +.icon-effect-3 { + color: #00afd1; + box-shadow: 0 0 0 3px #00afd1; + -o-box-shadow: 0 0 0 3px #00afd1; + -moz-box-shadow: 0 0 0 3px #00afd1; + -webkit-box-shadow: 0 0 0 3px #00afd1; +} + +.icon-effect-4 { + color: #00afd1; + box-shadow: 0 0 0 3px #00afd1; + -o-box-shadow: 0 0 0 3px #00afd1; + -moz-box-shadow: 0 0 0 3px #00afd1; + -webkit-box-shadow: 0 0 0 3px #00afd1; +} + +.icon-effect-5 { + color: #00afd1; + box-shadow: 0 0 0 3px #00afd1; + -o-box-shadow: 0 0 0 3px #00afd1; + -moz-box-shadow: 0 0 0 3px #00afd1; + -webkit-box-shadow: 0 0 0 3px #00afd1; +} + +.icon-effect-6 { + color: #00afd1; + box-shadow: 0 0 0 3px #00afd1; + -o-box-shadow: 0 0 0 3px #00afd1; + -moz-box-shadow: 0 0 0 3px #00afd1; + -webkit-box-shadow: 0 0 0 3px #00afd1; +} + +.team-member .member-photo .member-name span { + background-color: #00afd1; +} + +.classic-title span { + border-bottom-color: #00afd1; +} + +.portfolio-filter li a:hover { + color: #00afd1; +} + +.portfolio-filter li a.selected { + border-color: #00afd1; + background-color: #00afd1; +} + +.portfolio-item:hover .portfolio-details h4 { + color: #00afd1; +} + +.project-content h4 span { + border-bottom-color: #00afd1; +} + +.recent-projects h4.title span { + border-bottom-color: #00afd1; +} + +ul.post-meta li a:hover { + color: #00afd1; +} + +#pagination span.current { + border-color: #00afd1; + background-color: #00afd1; +} + +#pagination a:hover { + color: #00afd1; +} + +.post-tags-list a:hover { + background-color: #00afd1; +} + +.post-share a.mail { + background-color: #00afd1; +} + +.sidebar a:hover { + color: #00afd1; +} + +.widget-search .search-btn { + background-color: #00afd1; +} + +.sidebar .tagcloud a:hover { + background-color: #00afd1; +} + +.back-to-top:hover i { + background-color: #00afd1; +} + +.touch-slider .owl-nav div:hover { + background-color: #00afd1; +} + +.touch-carousel .owl-nav div:hover { + background-color: #00afd1; +} + +.testimonials-carousel .owl-nav div { + background-color: #00afd1; +} + +.testimonials-carousel .owl-nav div:hover i { + color: #00afd1; +} diff --git a/ClientApp/app/css/colors/cyan.css b/ClientApp/app/css/colors/cyan.css new file mode 100644 index 00000000..dec2dcd9 --- /dev/null +++ b/ClientApp/app/css/colors/cyan.css @@ -0,0 +1,309 @@ +a { + color: #27bebe; +} + +.accent-color { + color: #27bebe; +} + +.accent-color-bg { + background-color: #27bebe; +} + +.top-bar a:hover { + color: #27bebe; +} + +.section-overlay { + background-color: #27bebe; +} + +.top-bar.color-bar { + background-color: #27bebe; +} + +.service-box .read-more { + color: #27bebe; +} + +a.main-button, input[type="submit"] { + background-color: #27bebe; +} + +.navbar-default .navbar-nav > li:hover > a, +.navbar-default .navbar-nav > li.active-menu > a { + color: #27bebe; +} + +.dropdown > li:hover > a, .sup-dropdown li:hover > a { + color: #27bebe; +} + +.navbar-default .navbar-nav > li > a:after { + background-color: #27bebe; +} + +.navbar-default .navbar-nav > li.active-menu > a, .navbar-default .navbar-nav > li:hover > a { + border-color: #27bebe; +} + +.dropdown li a.active, .sup-dropdown li a.active { + color: #27bebe; +} + +ul.breadcrumbs li a:hover { + color: #27bebe; +} + +.full-width-recent-projects .portfolio-item:hover .portfolio-thumb .thumb-overlay { + background-color: #27bebe; +} + +.tp-caption.color-bg { + background-color: #27bebe; +} + +.team-member .member-socail a.mail:hover i { + background-color: #27bebe; +} + +.post-share a.mail:hover { + background-color: #27bebe; +} + +.progress .progress-bar.progress-bar-primary { + background-color: #27bebe; +} + +.latest-posts-classic .left-meta-post .post-type i { + background-color: #27bebe; +} + +.latest-posts-classic .post-title a:hover { + color: #27bebe; +} + +.latest-posts-classic .read-more { + color: #27bebe; +} + +.panel-title a { + color: #27bebe; +} + +.panel-title a:hover { + color: #27bebe; +} + +.milestone-block .milestone-icon { + background-color: #27bebe; +} + +.milestone-block .milestone-icon:after { + background-color: #27bebe; +} + +.milestone-block .milestone-number { + color: #27bebe; +} + +.pricing-tables .pricing-table.highlight-plan .plan-name h3 { + color: #27bebe; +} + +.btn-system { + background-color: #27bebe; +} + +.btn-system.border-btn { + border-color: #27bebe; + color: #27bebe; +} + +.btn-system.border-btn:hover { + background-color: #27bebe; +} + +.btn-system.border-btn.btn-wite:hover { + color: #27bebe; +} + +.btn-system.btn-wite{ + color: #27bebe; +} + +ul.icons-list li i { + color: #27bebe; +} + +.nav-tabs > li > a:hover, .nav-tabs > li > a:focus { + background-color: #27bebe; +} + +.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover { + color: #27bebe; +} + +.icon-small { + text-shadow: 0 0 0 #27bebe; +} + +.icon-small:hover, .service-box:hover .icon-small { + color: #27bebe; +} +.icon-medium { + text-shadow: 0 0 0 #27bebe; +} + +.icon-medium:hover, .service-box:hover .icon-medium { + color: #27bebe; +} + +.icon-large { + text-shadow: 0 0 0 #27bebe; +} + +.icon-large:hover, .service-box:hover .icon-large { + color: #27bebe; +} + +.icon-effect-1 { + box-shadow: 0 0 0 3px #27bebe; + -o-box-shadow: 0 0 0 3px #27bebe; + -moz-box-shadow: 0 0 0 3px #27bebe; + -webkit-box-shadow: 0 0 0 3px #27bebe; +} + +.icon-effect-1:after { + background-color: #27bebe; +} + +.icon-effect-1:hover, .service-box:hover .icon-effect-1 { + color: #27bebe; +} + +.icon-effect-2 { + color: #27bebe; + box-shadow: 0 0 0 3px #27bebe; + -o-box-shadow: 0 0 0 3px #27bebe; + -moz-box-shadow: 0 0 0 3px #27bebe; + -webkit-box-shadow: 0 0 0 3px #27bebe; +} + +.icon-effect-2:after { + background-color: #27bebe; +} + +.icon-effect-3 { + color: #27bebe; + box-shadow: 0 0 0 3px #27bebe; + -o-box-shadow: 0 0 0 3px #27bebe; + -moz-box-shadow: 0 0 0 3px #27bebe; + -webkit-box-shadow: 0 0 0 3px #27bebe; +} + +.icon-effect-4 { + color: #27bebe; + box-shadow: 0 0 0 3px #27bebe; + -o-box-shadow: 0 0 0 3px #27bebe; + -moz-box-shadow: 0 0 0 3px #27bebe; + -webkit-box-shadow: 0 0 0 3px #27bebe; +} + +.icon-effect-5 { + color: #27bebe; + box-shadow: 0 0 0 3px #27bebe; + -o-box-shadow: 0 0 0 3px #27bebe; + -moz-box-shadow: 0 0 0 3px #27bebe; + -webkit-box-shadow: 0 0 0 3px #27bebe; +} + +.icon-effect-6 { + color: #27bebe; + box-shadow: 0 0 0 3px #27bebe; + -o-box-shadow: 0 0 0 3px #27bebe; + -moz-box-shadow: 0 0 0 3px #27bebe; + -webkit-box-shadow: 0 0 0 3px #27bebe; +} + +.team-member .member-photo .member-name span { + background-color: #27bebe; +} + +.classic-title span { + border-bottom-color: #27bebe; +} + +.portfolio-filter li a:hover { + color: #27bebe; +} + +.portfolio-filter li a.selected { + border-color: #27bebe; + background-color: #27bebe; +} + +.portfolio-item:hover .portfolio-details h4 { + color: #27bebe; +} + +.project-content h4 span { + border-bottom-color: #27bebe; +} + +.recent-projects h4.title span { + border-bottom-color: #27bebe; +} + +ul.post-meta li a:hover { + color: #27bebe; +} + +#pagination span.current { + border-color: #27bebe; + background-color: #27bebe; +} + +#pagination a:hover { + color: #27bebe; +} + +.post-tags-list a:hover { + background-color: #27bebe; +} + +.post-share a.mail { + background-color: #27bebe; +} + +.sidebar a:hover { + color: #27bebe; +} + +.widget-search .search-btn { + background-color: #27bebe; +} + +.sidebar .tagcloud a:hover { + background-color: #27bebe; +} + +.back-to-top:hover i { + background-color: #27bebe; +} + +.touch-slider .owl-controls.clickable .owl-buttons div:hover { + background-color: #27bebe; +} + +.touch-carousel .owl-controls.clickable .owl-buttons div:hover { + background-color: #27bebe; +} + +.testimonials-carousel .owl-controls.clickable .owl-buttons div { + background-color: #27bebe; +} + +.testimonials-carousel .owl-controls.clickable .owl-buttons div:hover i { + color: #27bebe; +} diff --git a/ClientApp/app/css/colors/green.css b/ClientApp/app/css/colors/green.css new file mode 100644 index 00000000..c0cf645d --- /dev/null +++ b/ClientApp/app/css/colors/green.css @@ -0,0 +1,309 @@ +a { + color: #94c523; +} + +.accent-color { + color: #94c523; +} + +.accent-color-bg { + background-color: #94c523; +} + +.top-bar a:hover { + color: #94c523; +} + +.section-overlay { + background-color: #94c523; +} + +.top-bar.color-bar { + background-color: #94c523; +} + +.service-box .read-more { + color: #94c523; +} + +a.main-button, input[type="submit"] { + background-color: #94c523; +} + +.navbar-default .navbar-nav > li:hover > a, +.navbar-default .navbar-nav > li.active-menu > a { + color: #94c523; +} + +.dropdown > li:hover > a, .sup-dropdown li:hover > a { + color: #94c523; +} + +.navbar-default .navbar-nav > li > a:after { + background-color: #94c523; +} + +.navbar-default .navbar-nav > li.active-menu > a, .navbar-default .navbar-nav > li:hover > a { + border-color: #94c523; +} + +.dropdown li a.active, .sup-dropdown li a.active { + color: #94c523; +} + +ul.breadcrumbs li a:hover { + color: #94c523; +} + +.full-width-recent-projects .portfolio-item:hover .portfolio-thumb .thumb-overlay { + background-color: #94c523; +} + +.tp-caption.color-bg { + background-color: #94c523; +} + +.team-member .member-socail a.mail:hover i { + background-color: #94c523; +} + +.post-share a.mail:hover { + background-color: #94c523; +} + +.progress .progress-bar.progress-bar-primary { + background-color: #94c523; +} + +.latest-posts-classic .left-meta-post .post-type i { + background-color: #94c523; +} + +.latest-posts-classic .post-title a:hover { + color: #94c523; +} + +.latest-posts-classic .read-more { + color: #94c523; +} + +.panel-title a { + color: #94c523; +} + +.panel-title a:hover { + color: #94c523; +} + +.milestone-block .milestone-icon { + background-color: #94c523; +} + +.milestone-block .milestone-icon:after { + background-color: #94c523; +} + +.milestone-block .milestone-number { + color: #94c523; +} + +.pricing-tables .pricing-table.highlight-plan .plan-name h3 { + color: #94c523; +} + +.btn-system { + background-color: #94c523; +} + +.btn-system.border-btn { + border-color: #94c523; + color: #94c523; +} + +.btn-system.border-btn:hover { + background-color: #94c523; +} + +.btn-system.border-btn.btn-wite:hover { + color: #94c523; +} + +.btn-system.btn-wite{ + color: #94c523; +} + +ul.icons-list li i { + color: #94c523; +} + +.nav-tabs > li > a:hover, .nav-tabs > li > a:focus { + background-color: #94c523; +} + +.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover { + color: #94c523; +} + +.icon-small { + text-shadow: 0 0 0 #94c523; +} + +.icon-small:hover, .service-box:hover .icon-small { + color: #94c523; +} +.icon-medium { + text-shadow: 0 0 0 #94c523; +} + +.icon-medium:hover, .service-box:hover .icon-medium { + color: #94c523; +} + +.icon-large { + text-shadow: 0 0 0 #94c523; +} + +.icon-large:hover, .service-box:hover .icon-large { + color: #94c523; +} + +.icon-effect-1 { + box-shadow: 0 0 0 3px #94c523; + -o-box-shadow: 0 0 0 3px #94c523; + -moz-box-shadow: 0 0 0 3px #94c523; + -webkit-box-shadow: 0 0 0 3px #94c523; +} + +.icon-effect-1:after { + background-color: #94c523; +} + +.icon-effect-1:hover, .service-box:hover .icon-effect-1 { + color: #94c523; +} + +.icon-effect-2 { + color: #94c523; + box-shadow: 0 0 0 3px #94c523; + -o-box-shadow: 0 0 0 3px #94c523; + -moz-box-shadow: 0 0 0 3px #94c523; + -webkit-box-shadow: 0 0 0 3px #94c523; +} + +.icon-effect-2:after { + background-color: #94c523; +} + +.icon-effect-3 { + color: #94c523; + box-shadow: 0 0 0 3px #94c523; + -o-box-shadow: 0 0 0 3px #94c523; + -moz-box-shadow: 0 0 0 3px #94c523; + -webkit-box-shadow: 0 0 0 3px #94c523; +} + +.icon-effect-4 { + color: #94c523; + box-shadow: 0 0 0 3px #94c523; + -o-box-shadow: 0 0 0 3px #94c523; + -moz-box-shadow: 0 0 0 3px #94c523; + -webkit-box-shadow: 0 0 0 3px #94c523; +} + +.icon-effect-5 { + color: #94c523; + box-shadow: 0 0 0 3px #94c523; + -o-box-shadow: 0 0 0 3px #94c523; + -moz-box-shadow: 0 0 0 3px #94c523; + -webkit-box-shadow: 0 0 0 3px #94c523; +} + +.icon-effect-6 { + color: #94c523; + box-shadow: 0 0 0 3px #94c523; + -o-box-shadow: 0 0 0 3px #94c523; + -moz-box-shadow: 0 0 0 3px #94c523; + -webkit-box-shadow: 0 0 0 3px #94c523; +} + +.team-member .member-photo .member-name span { + background-color: #94c523; +} + +.classic-title span { + border-bottom-color: #94c523; +} + +.portfolio-filter li a:hover { + color: #94c523; +} + +.portfolio-filter li a.selected { + border-color: #94c523; + background-color: #94c523; +} + +.portfolio-item:hover .portfolio-details h4 { + color: #94c523; +} + +.project-content h4 span { + border-bottom-color: #94c523; +} + +.recent-projects h4.title span { + border-bottom-color: #94c523; +} + +ul.post-meta li a:hover { + color: #94c523; +} + +#pagination span.current { + border-color: #94c523; + background-color: #94c523; +} + +#pagination a:hover { + color: #94c523; +} + +.post-tags-list a:hover { + background-color: #94c523; +} + +.post-share a.mail { + background-color: #94c523; +} + +.sidebar a:hover { + color: #94c523; +} + +.widget-search .search-btn { + background-color: #94c523; +} + +.sidebar .tagcloud a:hover { + background-color: #94c523; +} + +.back-to-top:hover i { + background-color: #94c523; +} + +.touch-slider .owl-controls.clickable .owl-buttons div:hover { + background-color: #94c523; +} + +.touch-carousel .owl-controls.clickable .owl-buttons div:hover { + background-color: #94c523; +} + +.testimonials-carousel .owl-controls.clickable .owl-buttons div { + background-color: #94c523; +} + +.testimonials-carousel .owl-controls.clickable .owl-buttons div:hover i { + color: #94c523; +} diff --git a/ClientApp/app/css/colors/jade.css b/ClientApp/app/css/colors/jade.css new file mode 100644 index 00000000..1e3bbbf6 --- /dev/null +++ b/ClientApp/app/css/colors/jade.css @@ -0,0 +1,309 @@ +a { + color: #0bb586; +} + +.accent-color { + color: #0bb586; +} + +.accent-color-bg { + background-color: #0bb586; +} + +.top-bar a:hover { + color: #0bb586; +} + +.section-overlay { + background-color: #0bb586; +} + +.top-bar.color-bar { + background-color: #0bb586; +} + +.service-box .read-more { + color: #0bb586; +} + +a.main-button, input[type="submit"] { + background-color: #0bb586; +} + +.navbar-default .navbar-nav > li:hover > a, +.navbar-default .navbar-nav > li.active-menu > a { + color: #0bb586; +} + +.dropdown > li:hover > a, .sup-dropdown li:hover > a { + color: #0bb586; +} + +.navbar-default .navbar-nav > li > a:after { + background-color: #0bb586; +} + +.navbar-default .navbar-nav > li.active-menu > a, .navbar-default .navbar-nav > li:hover > a { + border-color: #0bb586; +} + +.dropdown li a.active, .sup-dropdown li a.active { + color: #0bb586; +} + +ul.breadcrumbs li a:hover { + color: #0bb586; +} + +.full-width-recent-projects .portfolio-item:hover .portfolio-thumb .thumb-overlay { + background-color: #0bb586; +} + +.tp-caption.color-bg { + background-color: #0bb586; +} + +.team-member .member-socail a.mail:hover i { + background-color: #0bb586; +} + +.post-share a.mail:hover { + background-color: #0bb586; +} + +.progress .progress-bar.progress-bar-primary { + background-color: #0bb586; +} + +.latest-posts-classic .left-meta-post .post-type i { + background-color: #0bb586; +} + +.latest-posts-classic .post-title a:hover { + color: #0bb586; +} + +.latest-posts-classic .read-more { + color: #0bb586; +} + +.panel-title a { + color: #0bb586; +} + +.panel-title a:hover { + color: #0bb586; +} + +.milestone-block .milestone-icon { + background-color: #0bb586; +} + +.milestone-block .milestone-icon:after { + background-color: #0bb586; +} + +.milestone-block .milestone-number { + color: #0bb586; +} + +.pricing-tables .pricing-table.highlight-plan .plan-name h3 { + color: #0bb586; +} + +.btn-system { + background-color: #0bb586; +} + +.btn-system.border-btn { + border-color: #0bb586; + color: #0bb586; +} + +.btn-system.border-btn:hover { + background-color: #0bb586; +} + +.btn-system.border-btn.btn-wite:hover { + color: #0bb586; +} + +.btn-system.btn-wite{ + color: #0bb586; +} + +ul.icons-list li i { + color: #0bb586; +} + +.nav-tabs > li > a:hover, .nav-tabs > li > a:focus { + background-color: #0bb586; +} + +.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover { + color: #0bb586; +} + +.icon-small { + text-shadow: 0 0 0 #0bb586; +} + +.icon-small:hover, .service-box:hover .icon-small { + color: #0bb586; +} +.icon-medium { + text-shadow: 0 0 0 #0bb586; +} + +.icon-medium:hover, .service-box:hover .icon-medium { + color: #0bb586; +} + +.icon-large { + text-shadow: 0 0 0 #0bb586; +} + +.icon-large:hover, .service-box:hover .icon-large { + color: #0bb586; +} + +.icon-effect-1 { + box-shadow: 0 0 0 3px #0bb586; + -o-box-shadow: 0 0 0 3px #0bb586; + -moz-box-shadow: 0 0 0 3px #0bb586; + -webkit-box-shadow: 0 0 0 3px #0bb586; +} + +.icon-effect-1:after { + background-color: #0bb586; +} + +.icon-effect-1:hover, .service-box:hover .icon-effect-1 { + color: #0bb586; +} + +.icon-effect-2 { + color: #0bb586; + box-shadow: 0 0 0 3px #0bb586; + -o-box-shadow: 0 0 0 3px #0bb586; + -moz-box-shadow: 0 0 0 3px #0bb586; + -webkit-box-shadow: 0 0 0 3px #0bb586; +} + +.icon-effect-2:after { + background-color: #0bb586; +} + +.icon-effect-3 { + color: #0bb586; + box-shadow: 0 0 0 3px #0bb586; + -o-box-shadow: 0 0 0 3px #0bb586; + -moz-box-shadow: 0 0 0 3px #0bb586; + -webkit-box-shadow: 0 0 0 3px #0bb586; +} + +.icon-effect-4 { + color: #0bb586; + box-shadow: 0 0 0 3px #0bb586; + -o-box-shadow: 0 0 0 3px #0bb586; + -moz-box-shadow: 0 0 0 3px #0bb586; + -webkit-box-shadow: 0 0 0 3px #0bb586; +} + +.icon-effect-5 { + color: #0bb586; + box-shadow: 0 0 0 3px #0bb586; + -o-box-shadow: 0 0 0 3px #0bb586; + -moz-box-shadow: 0 0 0 3px #0bb586; + -webkit-box-shadow: 0 0 0 3px #0bb586; +} + +.icon-effect-6 { + color: #0bb586; + box-shadow: 0 0 0 3px #0bb586; + -o-box-shadow: 0 0 0 3px #0bb586; + -moz-box-shadow: 0 0 0 3px #0bb586; + -webkit-box-shadow: 0 0 0 3px #0bb586; +} + +.team-member .member-photo .member-name span { + background-color: #0bb586; +} + +.classic-title span { + border-bottom-color: #0bb586; +} + +.portfolio-filter li a:hover { + color: #0bb586; +} + +.portfolio-filter li a.selected { + border-color: #0bb586; + background-color: #0bb586; +} + +.portfolio-item:hover .portfolio-details h4 { + color: #0bb586; +} + +.project-content h4 span { + border-bottom-color: #0bb586; +} + +.recent-projects h4.title span { + border-bottom-color: #0bb586; +} + +ul.post-meta li a:hover { + color: #0bb586; +} + +#pagination span.current { + border-color: #0bb586; + background-color: #0bb586; +} + +#pagination a:hover { + color: #0bb586; +} + +.post-tags-list a:hover { + background-color: #0bb586; +} + +.post-share a.mail { + background-color: #0bb586; +} + +.sidebar a:hover { + color: #0bb586; +} + +.widget-search .search-btn { + background-color: #0bb586; +} + +.sidebar .tagcloud a:hover { + background-color: #0bb586; +} + +.back-to-top:hover i { + background-color: #0bb586; +} + +.touch-slider .owl-controls.clickable .owl-buttons div:hover { + background-color: #0bb586; +} + +.touch-carousel .owl-controls.clickable .owl-buttons div:hover { + background-color: #0bb586; +} + +.testimonials-carousel .owl-controls.clickable .owl-buttons div { + background-color: #0bb586; +} + +.testimonials-carousel .owl-controls.clickable .owl-buttons div:hover i { + color: #0bb586; +} diff --git a/ClientApp/app/css/colors/orange.css b/ClientApp/app/css/colors/orange.css new file mode 100644 index 00000000..a86f3157 --- /dev/null +++ b/ClientApp/app/css/colors/orange.css @@ -0,0 +1,309 @@ +a { + color: #f36510; +} + +.accent-color { + color: #f36510; +} + +.accent-color-bg { + background-color: #f36510; +} + +.top-bar a:hover { + color: #f36510; +} + +.section-overlay { + background-color: #f36510; +} + +.top-bar.color-bar { + background-color: #f36510; +} + +.service-box .read-more { + color: #f36510; +} + +a.main-button, input[type="submit"] { + background-color: #f36510; +} + +.navbar-default .navbar-nav > li:hover > a, +.navbar-default .navbar-nav > li.active-menu > a { + color: #f36510; +} + +.dropdown > li:hover > a, .sup-dropdown li:hover > a { + color: #f36510; +} + +.navbar-default .navbar-nav > li > a:after { + background-color: #f36510; +} + +.navbar-default .navbar-nav > li.active-menu > a, .navbar-default .navbar-nav > li:hover > a { + border-color: #f36510; +} + +.dropdown li a.active, .sup-dropdown li a.active { + color: #f36510; +} + +ul.breadcrumbs li a:hover { + color: #f36510; +} + +.full-width-recent-projects .portfolio-item:hover .portfolio-thumb .thumb-overlay { + background-color: #f36510; +} + +.tp-caption.color-bg { + background-color: #f36510; +} + +.team-member .member-socail a.mail:hover i { + background-color: #f36510; +} + +.post-share a.mail:hover { + background-color: #f36510; +} + +.progress .progress-bar.progress-bar-primary { + background-color: #f36510; +} + +.latest-posts-classic .left-meta-post .post-type i { + background-color: #f36510; +} + +.latest-posts-classic .post-title a:hover { + color: #f36510; +} + +.latest-posts-classic .read-more { + color: #f36510; +} + +.panel-title a { + color: #f36510; +} + +.panel-title a:hover { + color: #f36510; +} + +.milestone-block .milestone-icon { + background-color: #f36510; +} + +.milestone-block .milestone-icon:after { + background-color: #f36510; +} + +.milestone-block .milestone-number { + color: #f36510; +} + +.pricing-tables .pricing-table.highlight-plan .plan-name h3 { + color: #f36510; +} + +.btn-system { + background-color: #f36510; +} + +.btn-system.border-btn { + border-color: #f36510; + color: #f36510; +} + +.btn-system.border-btn:hover { + background-color: #f36510; +} + +.btn-system.border-btn.btn-wite:hover { + color: #f36510; +} + +.btn-system.btn-wite{ + color: #f36510; +} + +ul.icons-list li i { + color: #f36510; +} + +.nav-tabs > li > a:hover, .nav-tabs > li > a:focus { + background-color: #f36510; +} + +.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover { + color: #f36510; +} + +.icon-small { + text-shadow: 0 0 0 #f36510; +} + +.icon-small:hover, .service-box:hover .icon-small { + color: #f36510; +} +.icon-medium { + text-shadow: 0 0 0 #f36510; +} + +.icon-medium:hover, .service-box:hover .icon-medium { + color: #f36510; +} + +.icon-large { + text-shadow: 0 0 0 #f36510; +} + +.icon-large:hover, .service-box:hover .icon-large { + color: #f36510; +} + +.icon-effect-1 { + box-shadow: 0 0 0 3px #f36510; + -o-box-shadow: 0 0 0 3px #f36510; + -moz-box-shadow: 0 0 0 3px #f36510; + -webkit-box-shadow: 0 0 0 3px #f36510; +} + +.icon-effect-1:after { + background-color: #f36510; +} + +.icon-effect-1:hover, .service-box:hover .icon-effect-1 { + color: #f36510; +} + +.icon-effect-2 { + color: #f36510; + box-shadow: 0 0 0 3px #f36510; + -o-box-shadow: 0 0 0 3px #f36510; + -moz-box-shadow: 0 0 0 3px #f36510; + -webkit-box-shadow: 0 0 0 3px #f36510; +} + +.icon-effect-2:after { + background-color: #f36510; +} + +.icon-effect-3 { + color: #f36510; + box-shadow: 0 0 0 3px #f36510; + -o-box-shadow: 0 0 0 3px #f36510; + -moz-box-shadow: 0 0 0 3px #f36510; + -webkit-box-shadow: 0 0 0 3px #f36510; +} + +.icon-effect-4 { + color: #f36510; + box-shadow: 0 0 0 3px #f36510; + -o-box-shadow: 0 0 0 3px #f36510; + -moz-box-shadow: 0 0 0 3px #f36510; + -webkit-box-shadow: 0 0 0 3px #f36510; +} + +.icon-effect-5 { + color: #f36510; + box-shadow: 0 0 0 3px #f36510; + -o-box-shadow: 0 0 0 3px #f36510; + -moz-box-shadow: 0 0 0 3px #f36510; + -webkit-box-shadow: 0 0 0 3px #f36510; +} + +.icon-effect-6 { + color: #f36510; + box-shadow: 0 0 0 3px #f36510; + -o-box-shadow: 0 0 0 3px #f36510; + -moz-box-shadow: 0 0 0 3px #f36510; + -webkit-box-shadow: 0 0 0 3px #f36510; +} + +.team-member .member-photo .member-name span { + background-color: #f36510; +} + +.classic-title span { + border-bottom-color: #f36510; +} + +.portfolio-filter li a:hover { + color: #f36510; +} + +.portfolio-filter li a.selected { + border-color: #f36510; + background-color: #f36510; +} + +.portfolio-item:hover .portfolio-details h4 { + color: #f36510; +} + +.project-content h4 span { + border-bottom-color: #f36510; +} + +.recent-projects h4.title span { + border-bottom-color: #f36510; +} + +ul.post-meta li a:hover { + color: #f36510; +} + +#pagination span.current { + border-color: #f36510; + background-color: #f36510; +} + +#pagination a:hover { + color: #f36510; +} + +.post-tags-list a:hover { + background-color: #f36510; +} + +.post-share a.mail { + background-color: #f36510; +} + +.sidebar a:hover { + color: #f36510; +} + +.widget-search .search-btn { + background-color: #f36510; +} + +.sidebar .tagcloud a:hover { + background-color: #f36510; +} + +.back-to-top:hover i { + background-color: #f36510; +} + +.touch-slider .owl-controls.clickable .owl-buttons div:hover { + background-color: #f36510; +} + +.touch-carousel .owl-controls.clickable .owl-buttons div:hover { + background-color: #f36510; +} + +.testimonials-carousel .owl-controls.clickable .owl-buttons div { + background-color: #f36510; +} + +.testimonials-carousel .owl-controls.clickable .owl-buttons div:hover i { + color: #f36510; +} diff --git a/ClientApp/app/css/colors/peach.css b/ClientApp/app/css/colors/peach.css new file mode 100644 index 00000000..af28dbd7 --- /dev/null +++ b/ClientApp/app/css/colors/peach.css @@ -0,0 +1,309 @@ +a { + color: #f49237; +} + +.accent-color { + color: #f49237; +} + +.accent-color-bg { + background-color: #f49237; +} + +.top-bar a:hover { + color: #f49237; +} + +.section-overlay { + background-color: #f49237; +} + +.top-bar.color-bar { + background-color: #f49237; +} + +.service-box .read-more { + color: #f49237; +} + +a.main-button, input[type="submit"] { + background-color: #f49237; +} + +.navbar-default .navbar-nav > li:hover > a, +.navbar-default .navbar-nav > li.active-menu > a { + color: #f49237; +} + +.dropdown > li:hover > a, .sup-dropdown li:hover > a { + color: #f49237; +} + +.navbar-default .navbar-nav > li > a:after { + background-color: #f49237; +} + +.navbar-default .navbar-nav > li.active-menu > a, .navbar-default .navbar-nav > li:hover > a { + border-color: #f49237; +} + +.dropdown li a.active, .sup-dropdown li a.active { + color: #f49237; +} + +ul.breadcrumbs li a:hover { + color: #f49237; +} + +.full-width-recent-projects .portfolio-item:hover .portfolio-thumb .thumb-overlay { + background-color: #f49237; +} + +.tp-caption.color-bg { + background-color: #f49237; +} + +.team-member .member-socail a.mail:hover i { + background-color: #f49237; +} + +.post-share a.mail:hover { + background-color: #f49237; +} + +.progress .progress-bar.progress-bar-primary { + background-color: #f49237; +} + +.latest-posts-classic .left-meta-post .post-type i { + background-color: #f49237; +} + +.latest-posts-classic .post-title a:hover { + color: #f49237; +} + +.latest-posts-classic .read-more { + color: #f49237; +} + +.panel-title a { + color: #f49237; +} + +.panel-title a:hover { + color: #f49237; +} + +.milestone-block .milestone-icon { + background-color: #f49237; +} + +.milestone-block .milestone-icon:after { + background-color: #f49237; +} + +.milestone-block .milestone-number { + color: #f49237; +} + +.pricing-tables .pricing-table.highlight-plan .plan-name h3 { + color: #f49237; +} + +.btn-system { + background-color: #f49237; +} + +.btn-system.border-btn { + border-color: #f49237; + color: #f49237; +} + +.btn-system.border-btn:hover { + background-color: #f49237; +} + +.btn-system.border-btn.btn-wite:hover { + color: #f49237; +} + +.btn-system.btn-wite{ + color: #f49237; +} + +ul.icons-list li i { + color: #f49237; +} + +.nav-tabs > li > a:hover, .nav-tabs > li > a:focus { + background-color: #f49237; +} + +.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover { + color: #f49237; +} + +.icon-small { + text-shadow: 0 0 0 #f49237; +} + +.icon-small:hover, .service-box:hover .icon-small { + color: #f49237; +} +.icon-medium { + text-shadow: 0 0 0 #f49237; +} + +.icon-medium:hover, .service-box:hover .icon-medium { + color: #f49237; +} + +.icon-large { + text-shadow: 0 0 0 #f49237; +} + +.icon-large:hover, .service-box:hover .icon-large { + color: #f49237; +} + +.icon-effect-1 { + box-shadow: 0 0 0 3px #f49237; + -o-box-shadow: 0 0 0 3px #f49237; + -moz-box-shadow: 0 0 0 3px #f49237; + -webkit-box-shadow: 0 0 0 3px #f49237; +} + +.icon-effect-1:after { + background-color: #f49237; +} + +.icon-effect-1:hover, .service-box:hover .icon-effect-1 { + color: #f49237; +} + +.icon-effect-2 { + color: #f49237; + box-shadow: 0 0 0 3px #f49237; + -o-box-shadow: 0 0 0 3px #f49237; + -moz-box-shadow: 0 0 0 3px #f49237; + -webkit-box-shadow: 0 0 0 3px #f49237; +} + +.icon-effect-2:after { + background-color: #f49237; +} + +.icon-effect-3 { + color: #f49237; + box-shadow: 0 0 0 3px #f49237; + -o-box-shadow: 0 0 0 3px #f49237; + -moz-box-shadow: 0 0 0 3px #f49237; + -webkit-box-shadow: 0 0 0 3px #f49237; +} + +.icon-effect-4 { + color: #f49237; + box-shadow: 0 0 0 3px #f49237; + -o-box-shadow: 0 0 0 3px #f49237; + -moz-box-shadow: 0 0 0 3px #f49237; + -webkit-box-shadow: 0 0 0 3px #f49237; +} + +.icon-effect-5 { + color: #f49237; + box-shadow: 0 0 0 3px #f49237; + -o-box-shadow: 0 0 0 3px #f49237; + -moz-box-shadow: 0 0 0 3px #f49237; + -webkit-box-shadow: 0 0 0 3px #f49237; +} + +.icon-effect-6 { + color: #f49237; + box-shadow: 0 0 0 3px #f49237; + -o-box-shadow: 0 0 0 3px #f49237; + -moz-box-shadow: 0 0 0 3px #f49237; + -webkit-box-shadow: 0 0 0 3px #f49237; +} + +.team-member .member-photo .member-name span { + background-color: #f49237; +} + +.classic-title span { + border-bottom-color: #f49237; +} + +.portfolio-filter li a:hover { + color: #f49237; +} + +.portfolio-filter li a.selected { + border-color: #f49237; + background-color: #f49237; +} + +.portfolio-item:hover .portfolio-details h4 { + color: #f49237; +} + +.project-content h4 span { + border-bottom-color: #f49237; +} + +.recent-projects h4.title span { + border-bottom-color: #f49237; +} + +ul.post-meta li a:hover { + color: #f49237; +} + +#pagination span.current { + border-color: #f49237; + background-color: #f49237; +} + +#pagination a:hover { + color: #f49237; +} + +.post-tags-list a:hover { + background-color: #f49237; +} + +.post-share a.mail { + background-color: #f49237; +} + +.sidebar a:hover { + color: #f49237; +} + +.widget-search .search-btn { + background-color: #f49237; +} + +.sidebar .tagcloud a:hover { + background-color: #f49237; +} + +.back-to-top:hover i { + background-color: #f49237; +} + +.touch-slider .owl-controls.clickable .owl-buttons div:hover { + background-color: #f49237; +} + +.touch-carousel .owl-controls.clickable .owl-buttons div:hover { + background-color: #f49237; +} + +.testimonials-carousel .owl-controls.clickable .owl-buttons div { + background-color: #f49237; +} + +.testimonials-carousel .owl-controls.clickable .owl-buttons div:hover i { + color: #f49237; +} diff --git a/ClientApp/app/css/colors/pink.css b/ClientApp/app/css/colors/pink.css new file mode 100644 index 00000000..135720ec --- /dev/null +++ b/ClientApp/app/css/colors/pink.css @@ -0,0 +1,309 @@ +a { + color: #f1505b; +} + +.accent-color { + color: #f1505b; +} + +.accent-color-bg { + background-color: #f1505b; +} + +.top-bar a:hover { + color: #f1505b; +} + +.section-overlay { + background-color: #f1505b; +} + +.top-bar.color-bar { + background-color: #f1505b; +} + +.service-box .read-more { + color: #f1505b; +} + +a.main-button, input[type="submit"] { + background-color: #f1505b; +} + +.navbar-default .navbar-nav > li:hover > a, +.navbar-default .navbar-nav > li.active-menu > a { + color: #f1505b; +} + +.dropdown > li:hover > a, .sup-dropdown li:hover > a { + color: #f1505b; +} + +.navbar-default .navbar-nav > li > a:after { + background-color: #f1505b; +} + +.navbar-default .navbar-nav > li.active-menu > a, .navbar-default .navbar-nav > li:hover > a { + border-color: #f1505b; +} + +.dropdown li a.active, .sup-dropdown li a.active { + color: #f1505b; +} + +ul.breadcrumbs li a:hover { + color: #f1505b; +} + +.full-width-recent-projects .portfolio-item:hover .portfolio-thumb .thumb-overlay { + background-color: #f1505b; +} + +.tp-caption.color-bg { + background-color: #f1505b; +} + +.team-member .member-socail a.mail:hover i { + background-color: #f1505b; +} + +.post-share a.mail:hover { + background-color: #f1505b; +} + +.progress .progress-bar.progress-bar-primary { + background-color: #f1505b; +} + +.latest-posts-classic .left-meta-post .post-type i { + background-color: #f1505b; +} + +.latest-posts-classic .post-title a:hover { + color: #f1505b; +} + +.latest-posts-classic .read-more { + color: #f1505b; +} + +.panel-title a { + color: #f1505b; +} + +.panel-title a:hover { + color: #f1505b; +} + +.milestone-block .milestone-icon { + background-color: #f1505b; +} + +.milestone-block .milestone-icon:after { + background-color: #f1505b; +} + +.milestone-block .milestone-number { + color: #f1505b; +} + +.pricing-tables .pricing-table.highlight-plan .plan-name h3 { + color: #f1505b; +} + +.btn-system { + background-color: #f1505b; +} + +.btn-system.border-btn { + border-color: #f1505b; + color: #f1505b; +} + +.btn-system.border-btn:hover { + background-color: #f1505b; +} + +.btn-system.border-btn.btn-wite:hover { + color: #f1505b; +} + +.btn-system.btn-wite{ + color: #f1505b; +} + +ul.icons-list li i { + color: #f1505b; +} + +.nav-tabs > li > a:hover, .nav-tabs > li > a:focus { + background-color: #f1505b; +} + +.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover { + color: #f1505b; +} + +.icon-small { + text-shadow: 0 0 0 #f1505b; +} + +.icon-small:hover, .service-box:hover .icon-small { + color: #f1505b; +} +.icon-medium { + text-shadow: 0 0 0 #f1505b; +} + +.icon-medium:hover, .service-box:hover .icon-medium { + color: #f1505b; +} + +.icon-large { + text-shadow: 0 0 0 #f1505b; +} + +.icon-large:hover, .service-box:hover .icon-large { + color: #f1505b; +} + +.icon-effect-1 { + box-shadow: 0 0 0 3px #f1505b; + -o-box-shadow: 0 0 0 3px #f1505b; + -moz-box-shadow: 0 0 0 3px #f1505b; + -webkit-box-shadow: 0 0 0 3px #f1505b; +} + +.icon-effect-1:after { + background-color: #f1505b; +} + +.icon-effect-1:hover, .service-box:hover .icon-effect-1 { + color: #f1505b; +} + +.icon-effect-2 { + color: #f1505b; + box-shadow: 0 0 0 3px #f1505b; + -o-box-shadow: 0 0 0 3px #f1505b; + -moz-box-shadow: 0 0 0 3px #f1505b; + -webkit-box-shadow: 0 0 0 3px #f1505b; +} + +.icon-effect-2:after { + background-color: #f1505b; +} + +.icon-effect-3 { + color: #f1505b; + box-shadow: 0 0 0 3px #f1505b; + -o-box-shadow: 0 0 0 3px #f1505b; + -moz-box-shadow: 0 0 0 3px #f1505b; + -webkit-box-shadow: 0 0 0 3px #f1505b; +} + +.icon-effect-4 { + color: #f1505b; + box-shadow: 0 0 0 3px #f1505b; + -o-box-shadow: 0 0 0 3px #f1505b; + -moz-box-shadow: 0 0 0 3px #f1505b; + -webkit-box-shadow: 0 0 0 3px #f1505b; +} + +.icon-effect-5 { + color: #f1505b; + box-shadow: 0 0 0 3px #f1505b; + -o-box-shadow: 0 0 0 3px #f1505b; + -moz-box-shadow: 0 0 0 3px #f1505b; + -webkit-box-shadow: 0 0 0 3px #f1505b; +} + +.icon-effect-6 { + color: #f1505b; + box-shadow: 0 0 0 3px #f1505b; + -o-box-shadow: 0 0 0 3px #f1505b; + -moz-box-shadow: 0 0 0 3px #f1505b; + -webkit-box-shadow: 0 0 0 3px #f1505b; +} + +.team-member .member-photo .member-name span { + background-color: #f1505b; +} + +.classic-title span { + border-bottom-color: #f1505b; +} + +.portfolio-filter li a:hover { + color: #f1505b; +} + +.portfolio-filter li a.selected { + border-color: #f1505b; + background-color: #f1505b; +} + +.portfolio-item:hover .portfolio-details h4 { + color: #f1505b; +} + +.project-content h4 span { + border-bottom-color: #f1505b; +} + +.recent-projects h4.title span { + border-bottom-color: #f1505b; +} + +ul.post-meta li a:hover { + color: #f1505b; +} + +#pagination span.current { + border-color: #f1505b; + background-color: #f1505b; +} + +#pagination a:hover { + color: #f1505b; +} + +.post-tags-list a:hover { + background-color: #f1505b; +} + +.post-share a.mail { + background-color: #f1505b; +} + +.sidebar a:hover { + color: #f1505b; +} + +.widget-search .search-btn { + background-color: #f1505b; +} + +.sidebar .tagcloud a:hover { + background-color: #f1505b; +} + +.back-to-top:hover i { + background-color: #f1505b; +} + +.touch-slider .owl-controls.clickable .owl-buttons div:hover { + background-color: #f1505b; +} + +.touch-carousel .owl-controls.clickable .owl-buttons div:hover { + background-color: #f1505b; +} + +.testimonials-carousel .owl-controls.clickable .owl-buttons div { + background-color: #f1505b; +} + +.testimonials-carousel .owl-controls.clickable .owl-buttons div:hover i { + color: #f1505b; +} diff --git a/ClientApp/app/css/colors/purple.css b/ClientApp/app/css/colors/purple.css new file mode 100644 index 00000000..21b46c63 --- /dev/null +++ b/ClientApp/app/css/colors/purple.css @@ -0,0 +1,309 @@ +a { + color: #6a3da3; +} + +.accent-color { + color: #6a3da3; +} + +.accent-color-bg { + background-color: #6a3da3; +} + +.top-bar a:hover { + color: #6a3da3; +} + +.section-overlay { + background-color: #6a3da3; +} + +.top-bar.color-bar { + background-color: #6a3da3; +} + +.service-box .read-more { + color: #6a3da3; +} + +a.main-button, input[type="submit"] { + background-color: #6a3da3; +} + +.navbar-default .navbar-nav > li:hover > a, +.navbar-default .navbar-nav > li.active-menu > a { + color: #6a3da3; +} + +.dropdown > li:hover > a, .sup-dropdown li:hover > a { + color: #6a3da3; +} + +.navbar-default .navbar-nav > li > a:after { + background-color: #6a3da3; +} + +.navbar-default .navbar-nav > li.active-menu > a, .navbar-default .navbar-nav > li:hover > a { + border-color: #6a3da3; +} + +.dropdown li a.active, .sup-dropdown li a.active { + color: #6a3da3; +} + +ul.breadcrumbs li a:hover { + color: #6a3da3; +} + +.full-width-recent-projects .portfolio-item:hover .portfolio-thumb .thumb-overlay { + background-color: #6a3da3; +} + +.tp-caption.color-bg { + background-color: #6a3da3; +} + +.team-member .member-socail a.mail:hover i { + background-color: #6a3da3; +} + +.post-share a.mail:hover { + background-color: #6a3da3; +} + +.progress .progress-bar.progress-bar-primary { + background-color: #6a3da3; +} + +.latest-posts-classic .left-meta-post .post-type i { + background-color: #6a3da3; +} + +.latest-posts-classic .post-title a:hover { + color: #6a3da3; +} + +.latest-posts-classic .read-more { + color: #6a3da3; +} + +.panel-title a { + color: #6a3da3; +} + +.panel-title a:hover { + color: #6a3da3; +} + +.milestone-block .milestone-icon { + background-color: #6a3da3; +} + +.milestone-block .milestone-icon:after { + background-color: #6a3da3; +} + +.milestone-block .milestone-number { + color: #6a3da3; +} + +.pricing-tables .pricing-table.highlight-plan .plan-name h3 { + color: #6a3da3; +} + +.btn-system { + background-color: #6a3da3; +} + +.btn-system.border-btn { + border-color: #6a3da3; + color: #6a3da3; +} + +.btn-system.border-btn:hover { + background-color: #6a3da3; +} + +.btn-system.border-btn.btn-wite:hover { + color: #6a3da3; +} + +.btn-system.btn-wite{ + color: #6a3da3; +} + +ul.icons-list li i { + color: #6a3da3; +} + +.nav-tabs > li > a:hover, .nav-tabs > li > a:focus { + background-color: #6a3da3; +} + +.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover { + color: #6a3da3; +} + +.icon-small { + text-shadow: 0 0 0 #6a3da3; +} + +.icon-small:hover, .service-box:hover .icon-small { + color: #6a3da3; +} +.icon-medium { + text-shadow: 0 0 0 #6a3da3; +} + +.icon-medium:hover, .service-box:hover .icon-medium { + color: #6a3da3; +} + +.icon-large { + text-shadow: 0 0 0 #6a3da3; +} + +.icon-large:hover, .service-box:hover .icon-large { + color: #6a3da3; +} + +.icon-effect-1 { + box-shadow: 0 0 0 3px #6a3da3; + -o-box-shadow: 0 0 0 3px #6a3da3; + -moz-box-shadow: 0 0 0 3px #6a3da3; + -webkit-box-shadow: 0 0 0 3px #6a3da3; +} + +.icon-effect-1:after { + background-color: #6a3da3; +} + +.icon-effect-1:hover, .service-box:hover .icon-effect-1 { + color: #6a3da3; +} + +.icon-effect-2 { + color: #6a3da3; + box-shadow: 0 0 0 3px #6a3da3; + -o-box-shadow: 0 0 0 3px #6a3da3; + -moz-box-shadow: 0 0 0 3px #6a3da3; + -webkit-box-shadow: 0 0 0 3px #6a3da3; +} + +.icon-effect-2:after { + background-color: #6a3da3; +} + +.icon-effect-3 { + color: #6a3da3; + box-shadow: 0 0 0 3px #6a3da3; + -o-box-shadow: 0 0 0 3px #6a3da3; + -moz-box-shadow: 0 0 0 3px #6a3da3; + -webkit-box-shadow: 0 0 0 3px #6a3da3; +} + +.icon-effect-4 { + color: #6a3da3; + box-shadow: 0 0 0 3px #6a3da3; + -o-box-shadow: 0 0 0 3px #6a3da3; + -moz-box-shadow: 0 0 0 3px #6a3da3; + -webkit-box-shadow: 0 0 0 3px #6a3da3; +} + +.icon-effect-5 { + color: #6a3da3; + box-shadow: 0 0 0 3px #6a3da3; + -o-box-shadow: 0 0 0 3px #6a3da3; + -moz-box-shadow: 0 0 0 3px #6a3da3; + -webkit-box-shadow: 0 0 0 3px #6a3da3; +} + +.icon-effect-6 { + color: #6a3da3; + box-shadow: 0 0 0 3px #6a3da3; + -o-box-shadow: 0 0 0 3px #6a3da3; + -moz-box-shadow: 0 0 0 3px #6a3da3; + -webkit-box-shadow: 0 0 0 3px #6a3da3; +} + +.team-member .member-photo .member-name span { + background-color: #6a3da3; +} + +.classic-title span { + border-bottom-color: #6a3da3; +} + +.portfolio-filter li a:hover { + color: #6a3da3; +} + +.portfolio-filter li a.selected { + border-color: #6a3da3; + background-color: #6a3da3; +} + +.portfolio-item:hover .portfolio-details h4 { + color: #6a3da3; +} + +.project-content h4 span { + border-bottom-color: #6a3da3; +} + +.recent-projects h4.title span { + border-bottom-color: #6a3da3; +} + +ul.post-meta li a:hover { + color: #6a3da3; +} + +#pagination span.current { + border-color: #6a3da3; + background-color: #6a3da3; +} + +#pagination a:hover { + color: #6a3da3; +} + +.post-tags-list a:hover { + background-color: #6a3da3; +} + +.post-share a.mail { + background-color: #6a3da3; +} + +.sidebar a:hover { + color: #6a3da3; +} + +.widget-search .search-btn { + background-color: #6a3da3; +} + +.sidebar .tagcloud a:hover { + background-color: #6a3da3; +} + +.back-to-top:hover i { + background-color: #6a3da3; +} + +.touch-slider .owl-controls.clickable .owl-buttons div:hover { + background-color: #6a3da3; +} + +.touch-carousel .owl-controls.clickable .owl-buttons div:hover { + background-color: #6a3da3; +} + +.testimonials-carousel .owl-controls.clickable .owl-buttons div { + background-color: #6a3da3; +} + +.testimonials-carousel .owl-controls.clickable .owl-buttons div:hover i { + color: #6a3da3; +} diff --git a/ClientApp/app/css/colors/red.css b/ClientApp/app/css/colors/red.css new file mode 100644 index 00000000..492d3612 --- /dev/null +++ b/ClientApp/app/css/colors/red.css @@ -0,0 +1,309 @@ +a { + color: #ee3733; +} + +.accent-color { + color: #ee3733; +} + +.accent-color-bg { + background-color: #ee3733; +} + +.top-bar a:hover { + color: #ee3733; +} + +.section-overlay { + background-color: #ee3733; +} + +.top-bar.color-bar { + background-color: #ee3733; +} + +.service-box .read-more { + color: #ee3733; +} + +a.main-button, input[type="submit"] { + background-color: #ee3733; +} + +.navbar-default .navbar-nav > li:hover > a, +.navbar-default .navbar-nav > li.active-menu > a { + color: #ee3733; +} + +.dropdown > li:hover > a, .sup-dropdown li:hover > a { + color: #ee3733; +} + +.navbar-default .navbar-nav > li > a:after { + background-color: #ee3733; +} + +.navbar-default .navbar-nav > li.active-menu > a, .navbar-default .navbar-nav > li:hover > a { + border-color: #ee3733; +} + +.dropdown li a.active, .sup-dropdown li a.active { + color: #ee3733; +} + +ul.breadcrumbs li a:hover { + color: #ee3733; +} + +.full-width-recent-projects .portfolio-item:hover .portfolio-thumb .thumb-overlay { + background-color: #ee3733; +} + +.tp-caption.color-bg { + background-color: #ee3733; +} + +.team-member .member-socail a.mail:hover i { + background-color: #ee3733; +} + +.post-share a.mail:hover { + background-color: #ee3733; +} + +.progress .progress-bar.progress-bar-primary { + background-color: #ee3733; +} + +.latest-posts-classic .left-meta-post .post-type i { + background-color: #ee3733; +} + +.latest-posts-classic .post-title a:hover { + color: #ee3733; +} + +.latest-posts-classic .read-more { + color: #ee3733; +} + +.panel-title a { + color: #ee3733; +} + +.panel-title a:hover { + color: #ee3733; +} + +.milestone-block .milestone-icon { + background-color: #ee3733; +} + +.milestone-block .milestone-icon:after { + background-color: #ee3733; +} + +.milestone-block .milestone-number { + color: #ee3733; +} + +.pricing-tables .pricing-table.highlight-plan .plan-name h3 { + color: #ee3733; +} + +.btn-system { + background-color: #ee3733; +} + +.btn-system.border-btn { + border-color: #ee3733; + color: #ee3733; +} + +.btn-system.border-btn:hover { + background-color: #ee3733; +} + +.btn-system.border-btn.btn-wite:hover { + color: #ee3733; +} + +.btn-system.btn-wite{ + color: #ee3733; +} + +ul.icons-list li i { + color: #ee3733; +} + +.nav-tabs > li > a:hover, .nav-tabs > li > a:focus { + background-color: #ee3733; +} + +.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover { + color: #ee3733; +} + +.icon-small { + text-shadow: 0 0 0 #ee3733; +} + +.icon-small:hover, .service-box:hover .icon-small { + color: #ee3733; +} +.icon-medium { + text-shadow: 0 0 0 #ee3733; +} + +.icon-medium:hover, .service-box:hover .icon-medium { + color: #ee3733; +} + +.icon-large { + text-shadow: 0 0 0 #ee3733; +} + +.icon-large:hover, .service-box:hover .icon-large { + color: #ee3733; +} + +.icon-effect-1 { + box-shadow: 0 0 0 3px #ee3733; + -o-box-shadow: 0 0 0 3px #ee3733; + -moz-box-shadow: 0 0 0 3px #ee3733; + -webkit-box-shadow: 0 0 0 3px #ee3733; +} + +.icon-effect-1:after { + background-color: #ee3733; +} + +.icon-effect-1:hover, .service-box:hover .icon-effect-1 { + color: #ee3733; +} + +.icon-effect-2 { + color: #ee3733; + box-shadow: 0 0 0 3px #ee3733; + -o-box-shadow: 0 0 0 3px #ee3733; + -moz-box-shadow: 0 0 0 3px #ee3733; + -webkit-box-shadow: 0 0 0 3px #ee3733; +} + +.icon-effect-2:after { + background-color: #ee3733; +} + +.icon-effect-3 { + color: #ee3733; + box-shadow: 0 0 0 3px #ee3733; + -o-box-shadow: 0 0 0 3px #ee3733; + -moz-box-shadow: 0 0 0 3px #ee3733; + -webkit-box-shadow: 0 0 0 3px #ee3733; +} + +.icon-effect-4 { + color: #ee3733; + box-shadow: 0 0 0 3px #ee3733; + -o-box-shadow: 0 0 0 3px #ee3733; + -moz-box-shadow: 0 0 0 3px #ee3733; + -webkit-box-shadow: 0 0 0 3px #ee3733; +} + +.icon-effect-5 { + color: #ee3733; + box-shadow: 0 0 0 3px #ee3733; + -o-box-shadow: 0 0 0 3px #ee3733; + -moz-box-shadow: 0 0 0 3px #ee3733; + -webkit-box-shadow: 0 0 0 3px #ee3733; +} + +.icon-effect-6 { + color: #ee3733; + box-shadow: 0 0 0 3px #ee3733; + -o-box-shadow: 0 0 0 3px #ee3733; + -moz-box-shadow: 0 0 0 3px #ee3733; + -webkit-box-shadow: 0 0 0 3px #ee3733; +} + +.team-member .member-photo .member-name span { + background-color: #ee3733; +} + +.classic-title span { + border-bottom-color: #ee3733; +} + +.portfolio-filter li a:hover { + color: #ee3733; +} + +.portfolio-filter li a.selected { + border-color: #ee3733; + background-color: #ee3733; +} + +.portfolio-item:hover .portfolio-details h4 { + color: #ee3733; +} + +.project-content h4 span { + border-bottom-color: #ee3733; +} + +.recent-projects h4.title span { + border-bottom-color: #ee3733; +} + +ul.post-meta li a:hover { + color: #ee3733; +} + +#pagination span.current { + border-color: #ee3733; + background-color: #ee3733; +} + +#pagination a:hover { + color: #ee3733; +} + +.post-tags-list a:hover { + background-color: #ee3733; +} + +.post-share a.mail { + background-color: #ee3733; +} + +.sidebar a:hover { + color: #ee3733; +} + +.widget-search .search-btn { + background-color: #ee3733; +} + +.sidebar .tagcloud a:hover { + background-color: #ee3733; +} + +.back-to-top:hover i { + background-color: #ee3733; +} + +.touch-slider .owl-controls.clickable .owl-buttons div:hover { + background-color: #ee3733; +} + +.touch-carousel .owl-controls.clickable .owl-buttons div:hover { + background-color: #ee3733; +} + +.testimonials-carousel .owl-controls.clickable .owl-buttons div { + background-color: #ee3733; +} + +.testimonials-carousel .owl-controls.clickable .owl-buttons div:hover i { + color: #ee3733; +} diff --git a/ClientApp/app/css/colors/sky-blue.css b/ClientApp/app/css/colors/sky-blue.css new file mode 100644 index 00000000..842512b4 --- /dev/null +++ b/ClientApp/app/css/colors/sky-blue.css @@ -0,0 +1,309 @@ +a { + color: #38cbcb; +} + +.accent-color { + color: #38cbcb; +} + +.accent-color-bg { + background-color: #38cbcb; +} + +.top-bar a:hover { + color: #38cbcb; +} + +.section-overlay { + background-color: #38cbcb; +} + +.top-bar.color-bar { + background-color: #38cbcb; +} + +.service-box .read-more { + color: #38cbcb; +} + +a.main-button, input[type="submit"] { + background-color: #38cbcb; +} + +.navbar-default .navbar-nav > li:hover > a, +.navbar-default .navbar-nav > li.active-menu > a { + color: #38cbcb; +} + +.dropdown > li:hover > a, .sup-dropdown li:hover > a { + color: #38cbcb; +} + +.navbar-default .navbar-nav > li > a:after { + background-color: #38cbcb; +} + +.navbar-default .navbar-nav > li.active-menu > a, .navbar-default .navbar-nav > li:hover > a { + border-color: #38cbcb; +} + +.dropdown li a.active, .sup-dropdown li a.active { + color: #38cbcb; +} + +ul.breadcrumbs li a:hover { + color: #38cbcb; +} + +.full-width-recent-projects .portfolio-item:hover .portfolio-thumb .thumb-overlay { + background-color: #38cbcb; +} + +.tp-caption.color-bg { + background-color: #38cbcb; +} + +.team-member .member-socail a.mail:hover i { + background-color: #38cbcb; +} + +.post-share a.mail:hover { + background-color: #38cbcb; +} + +.progress .progress-bar.progress-bar-primary { + background-color: #38cbcb; +} + +.latest-posts-classic .left-meta-post .post-type i { + background-color: #38cbcb; +} + +.latest-posts-classic .post-title a:hover { + color: #38cbcb; +} + +.latest-posts-classic .read-more { + color: #38cbcb; +} + +.panel-title a { + color: #38cbcb; +} + +.panel-title a:hover { + color: #38cbcb; +} + +.milestone-block .milestone-icon { + background-color: #38cbcb; +} + +.milestone-block .milestone-icon:after { + background-color: #38cbcb; +} + +.milestone-block .milestone-number { + color: #38cbcb; +} + +.pricing-tables .pricing-table.highlight-plan .plan-name h3 { + color: #38cbcb; +} + +.btn-system { + background-color: #38cbcb; +} + +.btn-system.border-btn { + border-color: #38cbcb; + color: #38cbcb; +} + +.btn-system.border-btn:hover { + background-color: #38cbcb; +} + +.btn-system.border-btn.btn-wite:hover { + color: #38cbcb; +} + +.btn-system.btn-wite{ + color: #38cbcb; +} + +ul.icons-list li i { + color: #38cbcb; +} + +.nav-tabs > li > a:hover, .nav-tabs > li > a:focus { + background-color: #38cbcb; +} + +.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover { + color: #38cbcb; +} + +.icon-small { + text-shadow: 0 0 0 #38cbcb; +} + +.icon-small:hover, .service-box:hover .icon-small { + color: #38cbcb; +} +.icon-medium { + text-shadow: 0 0 0 #38cbcb; +} + +.icon-medium:hover, .service-box:hover .icon-medium { + color: #38cbcb; +} + +.icon-large { + text-shadow: 0 0 0 #38cbcb; +} + +.icon-large:hover, .service-box:hover .icon-large { + color: #38cbcb; +} + +.icon-effect-1 { + box-shadow: 0 0 0 3px #38cbcb; + -o-box-shadow: 0 0 0 3px #38cbcb; + -moz-box-shadow: 0 0 0 3px #38cbcb; + -webkit-box-shadow: 0 0 0 3px #38cbcb; +} + +.icon-effect-1:after { + background-color: #38cbcb; +} + +.icon-effect-1:hover, .service-box:hover .icon-effect-1 { + color: #38cbcb; +} + +.icon-effect-2 { + color: #38cbcb; + box-shadow: 0 0 0 3px #38cbcb; + -o-box-shadow: 0 0 0 3px #38cbcb; + -moz-box-shadow: 0 0 0 3px #38cbcb; + -webkit-box-shadow: 0 0 0 3px #38cbcb; +} + +.icon-effect-2:after { + background-color: #38cbcb; +} + +.icon-effect-3 { + color: #38cbcb; + box-shadow: 0 0 0 3px #38cbcb; + -o-box-shadow: 0 0 0 3px #38cbcb; + -moz-box-shadow: 0 0 0 3px #38cbcb; + -webkit-box-shadow: 0 0 0 3px #38cbcb; +} + +.icon-effect-4 { + color: #38cbcb; + box-shadow: 0 0 0 3px #38cbcb; + -o-box-shadow: 0 0 0 3px #38cbcb; + -moz-box-shadow: 0 0 0 3px #38cbcb; + -webkit-box-shadow: 0 0 0 3px #38cbcb; +} + +.icon-effect-5 { + color: #38cbcb; + box-shadow: 0 0 0 3px #38cbcb; + -o-box-shadow: 0 0 0 3px #38cbcb; + -moz-box-shadow: 0 0 0 3px #38cbcb; + -webkit-box-shadow: 0 0 0 3px #38cbcb; +} + +.icon-effect-6 { + color: #38cbcb; + box-shadow: 0 0 0 3px #38cbcb; + -o-box-shadow: 0 0 0 3px #38cbcb; + -moz-box-shadow: 0 0 0 3px #38cbcb; + -webkit-box-shadow: 0 0 0 3px #38cbcb; +} + +.team-member .member-photo .member-name span { + background-color: #38cbcb; +} + +.classic-title span { + border-bottom-color: #38cbcb; +} + +.portfolio-filter li a:hover { + color: #38cbcb; +} + +.portfolio-filter li a.selected { + border-color: #38cbcb; + background-color: #38cbcb; +} + +.portfolio-item:hover .portfolio-details h4 { + color: #38cbcb; +} + +.project-content h4 span { + border-bottom-color: #38cbcb; +} + +.recent-projects h4.title span { + border-bottom-color: #38cbcb; +} + +ul.post-meta li a:hover { + color: #38cbcb; +} + +#pagination span.current { + border-color: #38cbcb; + background-color: #38cbcb; +} + +#pagination a:hover { + color: #38cbcb; +} + +.post-tags-list a:hover { + background-color: #38cbcb; +} + +.post-share a.mail { + background-color: #38cbcb; +} + +.sidebar a:hover { + color: #38cbcb; +} + +.widget-search .search-btn { + background-color: #38cbcb; +} + +.sidebar .tagcloud a:hover { + background-color: #38cbcb; +} + +.back-to-top:hover i { + background-color: #38cbcb; +} + +.touch-slider .owl-controls.clickable .owl-buttons div:hover { + background-color: #38cbcb; +} + +.touch-carousel .owl-controls.clickable .owl-buttons div:hover { + background-color: #38cbcb; +} + +.testimonials-carousel .owl-controls.clickable .owl-buttons div { + background-color: #38cbcb; +} + +.testimonials-carousel .owl-controls.clickable .owl-buttons div:hover i { + color: #38cbcb; +} diff --git a/ClientApp/app/css/colors/yellow.css b/ClientApp/app/css/colors/yellow.css new file mode 100644 index 00000000..d9f0987a --- /dev/null +++ b/ClientApp/app/css/colors/yellow.css @@ -0,0 +1,309 @@ +a { + color: #f8ba01; +} + +.accent-color { + color: #f8ba01; +} + +.accent-color-bg { + background-color: #f8ba01; +} + +.top-bar a:hover { + color: #f8ba01; +} + +.section-overlay { + background-color: #f8ba01; +} + +.top-bar.color-bar { + background-color: #f8ba01; +} + +.service-box .read-more { + color: #f8ba01; +} + +a.main-button, input[type="submit"] { + background-color: #f8ba01; +} + +.navbar-default .navbar-nav > li:hover > a, +.navbar-default .navbar-nav > li.active-menu > a { + color: #f8ba01; +} + +.dropdown > li:hover > a, .sup-dropdown li:hover > a { + color: #f8ba01; +} + +.navbar-default .navbar-nav > li > a:after { + background-color: #f8ba01; +} + +.navbar-default .navbar-nav > li.active-menu > a, .navbar-default .navbar-nav > li:hover > a { + border-color: #f8ba01; +} + +.dropdown li a.active, .sup-dropdown li a.active { + color: #f8ba01; +} + +ul.breadcrumbs li a:hover { + color: #f8ba01; +} + +.full-width-recent-projects .portfolio-item:hover .portfolio-thumb .thumb-overlay { + background-color: #f8ba01; +} + +.tp-caption.color-bg { + background-color: #f8ba01; +} + +.team-member .member-socail a.mail:hover i { + background-color: #f8ba01; +} + +.post-share a.mail:hover { + background-color: #f8ba01; +} + +.progress .progress-bar.progress-bar-primary { + background-color: #f8ba01; +} + +.latest-posts-classic .left-meta-post .post-type i { + background-color: #f8ba01; +} + +.latest-posts-classic .post-title a:hover { + color: #f8ba01; +} + +.latest-posts-classic .read-more { + color: #f8ba01; +} + +.panel-title a { + color: #f8ba01; +} + +.panel-title a:hover { + color: #f8ba01; +} + +.milestone-block .milestone-icon { + background-color: #f8ba01; +} + +.milestone-block .milestone-icon:after { + background-color: #f8ba01; +} + +.milestone-block .milestone-number { + color: #f8ba01; +} + +.pricing-tables .pricing-table.highlight-plan .plan-name h3 { + color: #f8ba01; +} + +.btn-system { + background-color: #f8ba01; +} + +.btn-system.border-btn { + border-color: #f8ba01; + color: #f8ba01; +} + +.btn-system.border-btn:hover { + background-color: #f8ba01; +} + +.btn-system.border-btn.btn-wite:hover { + color: #f8ba01; +} + +.btn-system.btn-wite{ + color: #f8ba01; +} + +ul.icons-list li i { + color: #f8ba01; +} + +.nav-tabs > li > a:hover, .nav-tabs > li > a:focus { + background-color: #f8ba01; +} + +.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover { + color: #f8ba01; +} + +.icon-small { + text-shadow: 0 0 0 #f8ba01; +} + +.icon-small:hover, .service-box:hover .icon-small { + color: #f8ba01; +} +.icon-medium { + text-shadow: 0 0 0 #f8ba01; +} + +.icon-medium:hover, .service-box:hover .icon-medium { + color: #f8ba01; +} + +.icon-large { + text-shadow: 0 0 0 #f8ba01; +} + +.icon-large:hover, .service-box:hover .icon-large { + color: #f8ba01; +} + +.icon-effect-1 { + box-shadow: 0 0 0 3px #f8ba01; + -o-box-shadow: 0 0 0 3px #f8ba01; + -moz-box-shadow: 0 0 0 3px #f8ba01; + -webkit-box-shadow: 0 0 0 3px #f8ba01; +} + +.icon-effect-1:after { + background-color: #f8ba01; +} + +.icon-effect-1:hover, .service-box:hover .icon-effect-1 { + color: #f8ba01; +} + +.icon-effect-2 { + color: #f8ba01; + box-shadow: 0 0 0 3px #f8ba01; + -o-box-shadow: 0 0 0 3px #f8ba01; + -moz-box-shadow: 0 0 0 3px #f8ba01; + -webkit-box-shadow: 0 0 0 3px #f8ba01; +} + +.icon-effect-2:after { + background-color: #f8ba01; +} + +.icon-effect-3 { + color: #f8ba01; + box-shadow: 0 0 0 3px #f8ba01; + -o-box-shadow: 0 0 0 3px #f8ba01; + -moz-box-shadow: 0 0 0 3px #f8ba01; + -webkit-box-shadow: 0 0 0 3px #f8ba01; +} + +.icon-effect-4 { + color: #f8ba01; + box-shadow: 0 0 0 3px #f8ba01; + -o-box-shadow: 0 0 0 3px #f8ba01; + -moz-box-shadow: 0 0 0 3px #f8ba01; + -webkit-box-shadow: 0 0 0 3px #f8ba01; +} + +.icon-effect-5 { + color: #f8ba01; + box-shadow: 0 0 0 3px #f8ba01; + -o-box-shadow: 0 0 0 3px #f8ba01; + -moz-box-shadow: 0 0 0 3px #f8ba01; + -webkit-box-shadow: 0 0 0 3px #f8ba01; +} + +.icon-effect-6 { + color: #f8ba01; + box-shadow: 0 0 0 3px #f8ba01; + -o-box-shadow: 0 0 0 3px #f8ba01; + -moz-box-shadow: 0 0 0 3px #f8ba01; + -webkit-box-shadow: 0 0 0 3px #f8ba01; +} + +.team-member .member-photo .member-name span { + background-color: #f8ba01; +} + +.classic-title span { + border-bottom-color: #f8ba01; +} + +.portfolio-filter li a:hover { + color: #f8ba01; +} + +.portfolio-filter li a.selected { + border-color: #f8ba01; + background-color: #f8ba01; +} + +.portfolio-item:hover .portfolio-details h4 { + color: #f8ba01; +} + +.project-content h4 span { + border-bottom-color: #f8ba01; +} + +.recent-projects h4.title span { + border-bottom-color: #f8ba01; +} + +ul.post-meta li a:hover { + color: #f8ba01; +} + +#pagination span.current { + border-color: #f8ba01; + background-color: #f8ba01; +} + +#pagination a:hover { + color: #f8ba01; +} + +.post-tags-list a:hover { + background-color: #f8ba01; +} + +.post-share a.mail { + background-color: #f8ba01; +} + +.sidebar a:hover { + color: #f8ba01; +} + +.widget-search .search-btn { + background-color: #f8ba01; +} + +.sidebar .tagcloud a:hover { + background-color: #f8ba01; +} + +.back-to-top:hover i { + background-color: #f8ba01; +} + +.touch-slider .owl-controls.clickable .owl-buttons div:hover { + background-color: #f8ba01; +} + +.touch-carousel .owl-controls.clickable .owl-buttons div:hover { + background-color: #f8ba01; +} + +.testimonials-carousel .owl-controls.clickable .owl-buttons div { + background-color: #f8ba01; +} + +.testimonials-carousel .owl-controls.clickable .owl-buttons div:hover i { + color: #f8ba01; +} diff --git a/ClientApp/app/css/font/fontello.eot b/ClientApp/app/css/font/fontello.eot new file mode 100644 index 00000000..71180fa5 Binary files /dev/null and b/ClientApp/app/css/font/fontello.eot differ diff --git a/ClientApp/app/css/font/fontello.svg b/ClientApp/app/css/font/fontello.svg new file mode 100644 index 00000000..bcf27807 --- /dev/null +++ b/ClientApp/app/css/font/fontello.svg @@ -0,0 +1,1019 @@ + + + \ No newline at end of file diff --git a/ClientApp/app/css/font/fontello.ttf b/ClientApp/app/css/font/fontello.ttf new file mode 100644 index 00000000..f4353a20 Binary files /dev/null and b/ClientApp/app/css/font/fontello.ttf differ diff --git a/ClientApp/app/css/font/fontello.woff b/ClientApp/app/css/font/fontello.woff new file mode 100644 index 00000000..dd3b7188 Binary files /dev/null and b/ClientApp/app/css/font/fontello.woff differ diff --git a/ClientApp/app/css/font/revicons.eot b/ClientApp/app/css/font/revicons.eot new file mode 100644 index 00000000..955dc3f1 Binary files /dev/null and b/ClientApp/app/css/font/revicons.eot differ diff --git a/ClientApp/app/css/font/revicons.svg b/ClientApp/app/css/font/revicons.svg new file mode 100644 index 00000000..2ec696b5 --- /dev/null +++ b/ClientApp/app/css/font/revicons.svg @@ -0,0 +1,54 @@ + + + \ No newline at end of file diff --git a/ClientApp/app/css/font/revicons.ttf b/ClientApp/app/css/font/revicons.ttf new file mode 100644 index 00000000..4e8df989 Binary files /dev/null and b/ClientApp/app/css/font/revicons.ttf differ diff --git a/ClientApp/app/css/font/revicons.woff b/ClientApp/app/css/font/revicons.woff new file mode 100644 index 00000000..6d3ea4d9 Binary files /dev/null and b/ClientApp/app/css/font/revicons.woff differ diff --git a/ClientApp/app/css/fontello-ie7.css b/ClientApp/app/css/fontello-ie7.css new file mode 100644 index 00000000..72b06547 --- /dev/null +++ b/ClientApp/app/css/fontello-ie7.css @@ -0,0 +1,1020 @@ +[class^="icon-"], [class*=" icon-"] { + font-family: 'fontello'; + font-style: normal; + font-weight: normal; + + /* fix buttons height */ + line-height: 1em; + + /* you can be more comfortable with increased icons size */ + /* font-size: 120%; */ +} + +.icon-glass { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-wallet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-search-4 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-mail-4 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-mail-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-heart-4 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-heart-empty-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-star-4 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-star-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-star-half { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-star-half-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-user-4 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-users-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-male { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-female { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-video-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-videocam-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-picture-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-camera-4 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-camera-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-th-large-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-th-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-th-list-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-ok-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-ok-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-ok-circled2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-ok-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-cancel-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-cancel-circled-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-cancel-circled2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-plus-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-plus-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-plus-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-plus-squared-small { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-minus-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-minus-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-minus-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-minus-squared-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-minus-squared-small { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-help-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-help-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-info-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-info-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-home-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-link-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-unlink { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-link-ext { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-link-ext-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-attach-4 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-lock-4 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-lock-open-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-lock-open-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-pin-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-eye-4 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-eye-off { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-tag-4 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-tags-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-bookmark-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-bookmark-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-flag-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-flag-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-flag-checkered { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-thumbs-up-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-thumbs-down-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-thumbs-up-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-thumbs-down-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-download-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-upload-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-download-cloud-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-upload-cloud-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-reply-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-reply-all { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-forward-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-quote-left-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-quote-right-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-code-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-export-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-export-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-pencil-4 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-pencil-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-edit-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-print-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-retweet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-keyboard { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-gamepad { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-comment-4 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-chat-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-comment-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-chat-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-bell-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-bell-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-attention-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-attention-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-attention-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-location-4 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-direction-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-compass-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-trash-4 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-doc-4 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-docs { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-doc-text-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-doc-inv-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-doc-text-inv { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-folder-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-folder-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-folder-empty-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-folder-open-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-box-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-rss-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-rss-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-phone-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-phone-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-menu-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-cog-4 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-cog-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-wrench-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-basket-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-calendar-4 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-calendar-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-login { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-logout { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-mic-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-mute { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-volume-off-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-volume-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-volume-up-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-headphones-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-clock-4 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-lightbulb-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-block-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-resize-full-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-resize-full-alt-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-resize-small-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-resize-vertical-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-resize-horizontal-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-move-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-zoom-in-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-zoom-out-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-down-circled2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-up-circled2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-left-circled2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-right-circled2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-down-dir { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-up-dir { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-left-dir { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-right-dir { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-down-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-left-open-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-right-open-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-up-open { *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-angle-circled-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-angle-circled-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-angle-circled-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-angle-circled-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-angle-double-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-angle-double-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-angle-double-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-angle-double-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-down-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-left-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-right-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-up-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-down-big { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-left-big { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-right-big { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-up-big { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-right-hand { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-left-hand { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-up-hand { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-down-hand { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-left-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-right-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-up-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-down-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-cw-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-ccw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-arrows-cw-1 { *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-shuffle-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-exchange-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-collapse { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-collapse-top { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-expand { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-collapse-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-play-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-play-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-play-circled2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-stop-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-pause-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-to-end-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-to-end-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-to-start-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-to-start-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-fast-fw-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-fast-bw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-eject-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-target-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-signal-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-award-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-desktop-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-laptop-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-tablet-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-mobile-4 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-inbox { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-globe-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-sun-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-cloud-4 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-flash-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-moon-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-umbrella-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-flight { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-fighter-jet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-leaf-2 { *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-2 { *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-list-bullet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-list-numbered { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-strike { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-underline { *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-table { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-columns { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-crop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-scissors-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-paste { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-briefcase-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-suitcase { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-ellipsis { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-ellipsis-vert { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-off { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-road { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-list-alt { *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-book-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-ajust { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-tint { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-check-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-check-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-circle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-circle-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-dot-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-asterisk { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-gift-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-fire { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-magnet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-chart-bar-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-ticket-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-credit-card-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-floppy { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-megaphone { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-hdd { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-key-4 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-fork { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-rocket { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-bug { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-certificate-1 { *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-beaker { *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-money { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-euro { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-pound { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-dollar { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-rupee { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-yen { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-renminbi { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-try { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-won { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-bitcoin { *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-sort-alt-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-sort-alt-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-sort-name-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-sort-name-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-sort-number-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-sort-number-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-hammer { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-gauge { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-sitemap { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-spinner { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-coffee-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-food { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-beer-1 { *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-ambulance { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-medkit { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-h-sigh { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-hospital { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-building { *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-anchor-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-terminal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-eraser { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-puzzle-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-shield { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-extinguisher { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-bullseye { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-wheelchair { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-adn { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-android { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-apple { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-bitbucket { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-bitbucket-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-css3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-dribbble-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-dropbox { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-facebook-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-facebook-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-flickr-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-foursquare { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-github-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-github-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-github-circled-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-gittip { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-gplus-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-gplus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-html5 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-instagramm { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-linkedin-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-linux { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-linkedin-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-maxcdn { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-pagelines { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-pinterest-circled-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-pinterest-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-renren { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-skype-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-stackexchange { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-stackoverflow { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-trello { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-tumblr { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-tumblr-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-twitter-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-twitter-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-vimeo-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-vkontakte { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-weibo { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-windows { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-xing { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-xing-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-youtube { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-youtube-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-youtube-play { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-blank { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-lemon { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-note { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-note-beamed { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-music-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-search-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-flashlight { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-mail-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-heart-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-heart-empty-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-star-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-star-empty-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-user-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-users-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-user-add { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-video-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-picture-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-camera-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-layout { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-menu-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-check-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-cancel-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-cancel-circled-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-cancel-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-plus-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-plus-circled-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-plus-squared-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-minus-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-minus-circled-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-minus-squared-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-help-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-help-circled-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-info-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-info-circled-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-back { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-home-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-link-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-attach-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-lock-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-lock-open-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-eye-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-tag-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-bookmark-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-bookmarks { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-flag-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-thumbs-up-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-thumbs-down-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-download-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-upload-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-upload-cloud-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-reply-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-reply-all-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-forward-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-quote { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-code-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-export-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-pencil-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-feather { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-print-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-retweet-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-keyboard-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-comment-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-chat-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-bell-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-attention-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-alert { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-vcard { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-address { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-location-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-map { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-direction-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-compass-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-cup { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-trash-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-doc-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-docs-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-doc-landscape { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-doc-text-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-doc-text-inv-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-newspaper { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-book-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-book-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-folder-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-archive { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-box-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-rss-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-phone-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-cog-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-tools { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-share { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-shareable { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-basket-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-bag { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-calendar-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-login-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-mic-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-mute-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-sound { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-volume { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-clock-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-hourglass { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-lamp { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-light-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-light-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-adjust { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-block-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-resize-full-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-resize-small-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-popup { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-publish { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-window { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-arrow-combo { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-down-circled-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-left-circled-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-right-circled-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-up-circled-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-down-open-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-left-open-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-right-open-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-up-open-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-down-open-mini { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-left-open-mini { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-right-open-mini { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-up-open-mini { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-down-open-big { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-left-open-big { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-right-open-big { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-up-open-big { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-down-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-left-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-right-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-up-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-down-dir-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-left-dir-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-right-dir-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-up-dir-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-down-bold { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-left-bold { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-right-bold { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-up-bold { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-down-thin { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-left-thin { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-right-thin { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-up-thin { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-ccw-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-cw-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-arrows-ccw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-level-down-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-level-up-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-shuffle-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-loop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-switch { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-play-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-stop-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-pause-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-record { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-to-end-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-to-start-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-fast-forward { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-fast-backward { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-progress-0 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-progress-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-progress-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-progress-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-target-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-palette { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-list-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-list-add { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-signal-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-trophy { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-battery { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-back-in-time { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-monitor { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-mobile-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-network { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-cd { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-inbox-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-install { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-globe-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-cloud-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-cloud-thunder { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-flash-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-moon-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-flight-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-paper-plane { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-leaf-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-lifebuoy { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-mouse { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-briefcase-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-suitcase-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-dot { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-dot-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-dot-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-brush { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-magnet-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-infinity { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-erase { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-chart-pie { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-chart-line { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-chart-bar-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-chart-area { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-tape { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-graduation-cap { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-language { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-ticket-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-water { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-droplet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-air { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-credit-card-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-floppy-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-clipboard { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-megaphone-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-database { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-drive { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-bucket { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-thermometer { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-key-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-flow-cascade { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-flow-branch { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-flow-tree { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-flow-line { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-flow-parallel { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-rocket-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-gauge-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-traffic-cone { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-cc { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-cc-by { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-cc-nc { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-cc-nc-eu { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-cc-nc-jp { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-cc-sa { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-cc-nd { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-cc-pd { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-cc-zero { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-music-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-cc-remix { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-github-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-github-circled-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-flickr-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-flickr-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-vimeo { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-vimeo-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-twitter-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-twitter-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-facebook-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-facebook-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-facebook-squared-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-gplus-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-gplus-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-pinterest { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-pinterest-circled-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-tumblr-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-tumblr-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-linkedin-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-linkedin-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-dribbble-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-dribbble-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-stumbleupon { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-stumbleupon-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-lastfm { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-lastfm-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-rdio { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-rdio-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-spotify { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-spotify-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-qq { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-instagram { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-dropbox-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-evernote { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-flattr { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-skype-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-skype-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-renren-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-sina-weibo { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-paypal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-picasa { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-soundcloud { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-mixi { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-behance { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-google-circles { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-vkontakte-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-smashing { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-sweden { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-db-shape { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-logo-db { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-music-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-music { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-search-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-search { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-mail { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-heart { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-heart-filled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-star { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-star-filled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-user-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-user { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-users-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-users { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-user-add-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-user-add-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-user-delete-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-user-delete { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-video { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-videocam-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-videocam { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-picture-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-picture { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-camera-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-camera { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-th-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-th { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-th-large-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-th-large { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-th-list-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-th-list { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-ok-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-ok { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-cancel-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-cancel { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-cancel-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-cancel-alt-filled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-cancel-circled-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-cancel-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-plus-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-plus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-minus-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-minus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-divide-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-divide { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-eq-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-eq { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-info-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-info { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-home-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-home { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-link-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-link { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-attach-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-attach { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-lock { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-lock-filled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-lock-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-lock-open-filled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-pin-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-pin { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-eye-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-eye { *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-bookmark { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-flag { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-flag-filled { *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-download-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-download { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-upload-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-upload { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-upload-cloud-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-upload-cloud { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-reply-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-reply { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-forward-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-forward { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-code-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-code { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-export-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-export { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-pencil { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-pen { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-feather-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-edit { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-print { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-comment { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-chat { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-chat-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-bell { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-attention { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-attention-filled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-warning-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-warning { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-contacts { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-vcard-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-address-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-location-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-location { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-map-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-direction-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-direction { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-compass { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-trash { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-doc { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-doc-text { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-doc-add { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-doc-remove { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-news { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-folder { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-folder-add { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-folder-delete { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-archive-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-box { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-rss-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-rss { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-phone-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-phone { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-menu-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-menu { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-cog-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-cog { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-wrench-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-wrench { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-basket { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-calendar-outlilne { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-calendar { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-mic-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-mic { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-volume-off { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-volume-low { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-volume-middle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-volume-high { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-headphones { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-clock { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-wristwatch { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-stopwatch { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-lightbulb { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-block-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-block { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-resize-full-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-resize-full { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-resize-normal-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-resize-normal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-move-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-move { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-popup-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-zoom-in-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-zoom-in { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-zoom-out-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-zoom-out { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-popup-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-left-open-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-left-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-right-open-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-right-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-down-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-left-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-right-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-up-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-down-small { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-left-small { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-right-small { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-up-small { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-cw-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-cw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-arrows-cw-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-arrows-cw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-loop-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-loop-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-loop-alt-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-loop-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-shuffle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-play-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-play { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-stop-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-stop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-pause-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-pause { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-fast-fw-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-fast-fw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-rewind-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-rewind { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-record-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-record-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-eject-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-eject { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-eject-alt-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-eject-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-bat1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-bat2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-bat3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-bat4 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-bat-charge { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-plug { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-target-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-target { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-wifi-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-wifi { *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 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-contrast { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-globe-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-globe { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-globe-alt-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-globe-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-sun { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-sun-filled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-cloud { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-flash-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-flash { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-moon { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-waves-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-waves { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-rain { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-cloud-sun { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-drizzle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-snow { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-cloud-flash { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-cloud-wind { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-wind { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-plane-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-plane { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-leaf { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-lifebuoy-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-briefcase { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-brush-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-pipette { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-power-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-power { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-check-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-check { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-gift { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-temperatire { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-chart-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-chart { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-chart-alt-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-chart-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-chart-bar-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-chart-bar { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-chart-pie-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-chart-pie-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-ticket { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-credit-card { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-clipboard-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-database-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-key-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-key { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-flow-split { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-flow-merge { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-flow-parallel-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-flow-cross { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-certificate-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-certificate { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-scissors-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-scissors { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-flask { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-wine { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-coffee { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-beer { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-anchor-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-anchor { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-puzzle-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-puzzle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-tree { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-calculator { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-infinity-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-infinity-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-pi-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-pi { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-at { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-at-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-looped-square-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-looped-square-interest { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-sort-alphabet-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-sort-alphabet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-sort-numeric-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-sort-numeric { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-dribbble-circled-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-dribbble { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-facebook-circled-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-facebook { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-flickr-circled-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-flickr { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-github-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-github { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-lastfm-circled-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-lastfm-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-linkedin-circled-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-linkedin { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-pinterest-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-pinterest-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-skype-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-skype { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-tumbler-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-tumbler { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-twitter-circled-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-twitter { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-vimeo-circled-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-vimeo-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-music-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-search-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-mail-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-heart-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-star-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-user-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-videocam-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-camera-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-photo { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-attach-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-lock-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-eye-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-tag-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-thumbs-up-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-pencil-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-comment-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-location-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-cup-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-trash-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-doc-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-note-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-cog-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-params { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-calendar-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-sound-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-clock-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-lightbulb-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-tv { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-desktop-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-mobile-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-cd-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-inbox-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-globe-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-cloud-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-paper-plane-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-fire-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-graduation-cap-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-megaphone-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-database-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-key-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-beaker-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-truck-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-money-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-food-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-shop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-diamond { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-t-shirt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } +.icon-cc-share { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } \ No newline at end of file diff --git a/ClientApp/app/css/fontello-ie7.min.css b/ClientApp/app/css/fontello-ie7.min.css new file mode 100644 index 00000000..2e812879 --- /dev/null +++ b/ClientApp/app/css/fontello-ie7.min.css @@ -0,0 +1 @@ +[class^="icon-"],[class*=" icon-"]{font-family:'fontello';font-style:normal;font-weight:normal;line-height:1em}.icon-glass{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-wallet{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-search-4{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-mail-4{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-mail-alt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-heart-4{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-heart-empty-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-star-4{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-star-empty{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-star-half{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-star-half-alt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-user-4{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-users-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-male{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-female{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-video-3{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-videocam-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-picture-3{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-camera-4{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-camera-alt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-th-large-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-th-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-th-list-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-ok-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-ok-circled{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-ok-circled2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-ok-squared{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-cancel-3{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-cancel-circled-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-cancel-circled2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-plus-3{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-plus-circled{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-plus-squared{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-plus-squared-small{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-minus-3{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-minus-circled{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-minus-squared{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-minus-squared-alt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-minus-squared-small{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-help-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-help-circled{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-info-circled{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-info-3{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-home-3{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-link-3{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-unlink{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-link-ext{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-link-ext-alt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-attach-4{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-lock-4{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-lock-open-3{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-lock-open-alt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-pin-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-eye-4{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-eye-off{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-tag-4{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-tags-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-bookmark-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-bookmark-empty{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-flag-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-flag-empty{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-flag-checkered{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-thumbs-up-3{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-thumbs-down-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-thumbs-up-alt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-thumbs-down-alt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-download-3{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-upload-3{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-download-cloud-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-upload-cloud-3{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-reply-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-reply-all{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-forward-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-quote-left-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-quote-right-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-code-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-export-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-export-alt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-pencil-4{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-pencil-squared{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-edit-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-print-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-retweet{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-keyboard{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-gamepad{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-comment-4{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-chat-3{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-comment-empty{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-chat-empty{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-bell-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-bell-alt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-attention-alt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-attention-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-attention-circled{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-location-4{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-direction-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-compass-3{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-trash-4{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-doc-4{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-docs{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-doc-text-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-doc-inv-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-doc-text-inv{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-folder-3{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-folder-open{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-folder-empty-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-folder-open-empty{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-box-3{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-rss-3{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-rss-squared{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-phone-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-phone-squared{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-menu-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-cog-4{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-cog-alt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-wrench-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-basket-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-calendar-4{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-calendar-empty{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-login{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-logout{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-mic-3{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-mute{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-volume-off-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-volume-down{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-volume-up-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-headphones-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-clock-4{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-lightbulb-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-block-3{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-resize-full-3{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-resize-full-alt-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-resize-small-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-resize-vertical-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-resize-horizontal-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-move-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-zoom-in-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-zoom-out-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-down-circled2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-up-circled2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-left-circled2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-right-circled2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-down-dir{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-up-dir{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-left-dir{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-right-dir{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-down-open{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-left-open-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-right-open-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-up-open{*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-angle-circled-left{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-angle-circled-right{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-angle-circled-up{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-angle-circled-down{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-angle-double-left{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-angle-double-right{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-angle-double-up{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-angle-double-down{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-down-3{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-left-3{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-right-3{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-up-3{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-down-big{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-left-big{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-right-big{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-up-big{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-right-hand{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-left-hand{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-up-hand{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-down-hand{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-left-circled{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-right-circled{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-up-circled{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-down-circled{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-cw-3{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-ccw{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-arrows-cw-1{*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-shuffle-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-exchange-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-collapse{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-collapse-top{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-expand{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-collapse-left{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-play-3{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-play-circled{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-play-circled2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-stop-3{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-pause-3{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-to-end-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-to-end-alt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-to-start-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-to-start-alt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-fast-fw-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-fast-bw{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-eject-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-target-3{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-signal-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-award-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-desktop-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-laptop-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-tablet-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-mobile-4{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-inbox{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-globe-3{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-sun-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-cloud-4{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-flash-3{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-moon-3{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-umbrella-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-flight{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-fighter-jet{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-leaf-2{*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-2{*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-list-bullet{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-list-numbered{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-strike{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-underline{*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-table{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-columns{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-crop{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-scissors-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-paste{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-briefcase-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-suitcase{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-ellipsis{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-ellipsis-vert{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-off{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-road{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-list-alt{*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-book-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-ajust{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-tint{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-check-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-check-empty{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-circle{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-circle-empty{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-dot-circled{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-asterisk{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-gift-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-fire{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-magnet{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-chart-bar-3{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-ticket-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-credit-card-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-floppy{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-megaphone{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-hdd{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-key-4{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-fork{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-rocket{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-bug{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-certificate-1{*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-beaker{*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-money{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-euro{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-pound{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-dollar{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-rupee{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-yen{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-renminbi{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-try{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-won{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-bitcoin{*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-sort-alt-up{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-sort-alt-down{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-sort-name-up{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-sort-name-down{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-sort-number-up{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-sort-number-down{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-hammer{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-gauge{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-sitemap{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-spinner{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-coffee-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-food{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-beer-1{*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-ambulance{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-medkit{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-h-sigh{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-hospital{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-building{*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-anchor-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-terminal{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-eraser{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-puzzle-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-shield{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-extinguisher{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-bullseye{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-wheelchair{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-adn{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-android{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-apple{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-bitbucket{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-bitbucket-squared{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-css3{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-dribbble-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-dropbox{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-facebook-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-facebook-squared{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-flickr-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-foursquare{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-github-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-github-squared{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-github-circled-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-gittip{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-gplus-squared{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-gplus{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-html5{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-instagramm{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-linkedin-squared{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-linux{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-linkedin-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-maxcdn{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-pagelines{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-pinterest-circled-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-pinterest-squared{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-renren{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-skype-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-stackexchange{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-stackoverflow{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-trello{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-tumblr{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-tumblr-squared{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-twitter-squared{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-twitter-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-vimeo-squared{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-vkontakte{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-weibo{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-windows{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-xing{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-xing-squared{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-youtube{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-youtube-squared{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-youtube-play{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-blank{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-lemon{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-note{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-note-beamed{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-music-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-search-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-flashlight{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-mail-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-heart-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-heart-empty-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-star-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-star-empty-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-user-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-users-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-user-add{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-video-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-picture-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-camera-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-layout{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-menu-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-check-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-cancel-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-cancel-circled-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-cancel-squared{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-plus-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-plus-circled-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-plus-squared-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-minus-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-minus-circled-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-minus-squared-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-help-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-help-circled-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-info-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-info-circled-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-back{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-home-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-link-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-attach-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-lock-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-lock-open-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-eye-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-tag-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-bookmark-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-bookmarks{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-flag-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-thumbs-up-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-thumbs-down-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-download-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-upload-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-upload-cloud-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-reply-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-reply-all-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-forward-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-quote{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-code-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-export-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-pencil-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-feather{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-print-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-retweet-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-keyboard-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-comment-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-chat-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-bell-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-attention-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-alert{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-vcard{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-address{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-location-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-map{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-direction-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-compass-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-cup{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-trash-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-doc-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-docs-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-doc-landscape{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-doc-text-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-doc-text-inv-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-newspaper{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-book-open{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-book-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-folder-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-archive{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-box-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-rss-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-phone-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-cog-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-tools{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-share{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-shareable{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-basket-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-bag{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-calendar-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-login-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-mic-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-mute-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-sound{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-volume{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-clock-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-hourglass{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-lamp{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-light-down{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-light-up{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-adjust{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-block-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-resize-full-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-resize-small-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-popup{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-publish{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-window{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-arrow-combo{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-down-circled-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-left-circled-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-right-circled-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-up-circled-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-down-open-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-left-open-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-right-open-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-up-open-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-down-open-mini{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-left-open-mini{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-right-open-mini{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-up-open-mini{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-down-open-big{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-left-open-big{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-right-open-big{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-up-open-big{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-down-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-left-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-right-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-up-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-down-dir-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-left-dir-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-right-dir-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-up-dir-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-down-bold{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-left-bold{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-right-bold{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-up-bold{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-down-thin{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-left-thin{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-right-thin{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-up-thin{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-ccw-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-cw-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-arrows-ccw{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-level-down-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-level-up-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-shuffle-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-loop{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-switch{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-play-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-stop-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-pause-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-record{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-to-end-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-to-start-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-fast-forward{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-fast-backward{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-progress-0{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-progress-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-progress-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-progress-3{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-target-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-palette{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-list-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-list-add{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-signal-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-trophy{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-battery{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-back-in-time{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-monitor{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-mobile-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-network{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-cd{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-inbox-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-install{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-globe-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-cloud-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-cloud-thunder{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-flash-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-moon-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-flight-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-paper-plane{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-leaf-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-lifebuoy{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-mouse{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-briefcase-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-suitcase-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-dot{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-dot-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-dot-3{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-brush{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-magnet-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-infinity{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-erase{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-chart-pie{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-chart-line{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-chart-bar-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-chart-area{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-tape{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-graduation-cap{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-language{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-ticket-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-water{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-droplet{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-air{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-credit-card-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-floppy-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-clipboard{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-megaphone-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-database{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-drive{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-bucket{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-thermometer{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-key-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-flow-cascade{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-flow-branch{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-flow-tree{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-flow-line{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-flow-parallel{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-rocket-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-gauge-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-traffic-cone{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-cc{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-cc-by{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-cc-nc{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-cc-nc-eu{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-cc-nc-jp{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-cc-sa{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-cc-nd{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-cc-pd{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-cc-zero{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-music-3{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-cc-remix{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-github-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-github-circled-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-flickr-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-flickr-circled{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-vimeo{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-vimeo-circled{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-twitter-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-twitter-circled{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-facebook-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-facebook-circled{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-facebook-squared-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-gplus-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-gplus-circled{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-pinterest{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-pinterest-circled-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-tumblr-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-tumblr-circled{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-linkedin-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-linkedin-circled{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-dribbble-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-dribbble-circled{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-stumbleupon{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-stumbleupon-circled{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-lastfm{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-lastfm-circled{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-rdio{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-rdio-circled{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-spotify{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-spotify-circled{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-qq{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-instagram{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-dropbox-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-evernote{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-flattr{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-skype-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-skype-circled{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-renren-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-sina-weibo{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-paypal{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-picasa{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-soundcloud{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-mixi{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-behance{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-google-circles{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-vkontakte-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-smashing{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-sweden{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-db-shape{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-logo-db{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-music-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-music{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-search-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-search{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-mail{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-heart{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-heart-filled{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-star{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-star-filled{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-user-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-user{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-users-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-users{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-user-add-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-user-add-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-user-delete-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-user-delete{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-video{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-videocam-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-videocam{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-picture-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-picture{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-camera-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-camera{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-th-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-th{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-th-large-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-th-large{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-th-list-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-th-list{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-ok-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-ok{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-cancel-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-cancel{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-cancel-alt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-cancel-alt-filled{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-cancel-circled-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-cancel-circled{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-plus-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-plus{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-minus-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-minus{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-divide-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-divide{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-eq-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-eq{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-info-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-info{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-home-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-home{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-link-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-link{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-attach-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-attach{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-lock{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-lock-filled{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-lock-open{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-lock-open-filled{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-pin-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-pin{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-eye-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-eye{*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-bookmark{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-flag{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-flag-filled{*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-download-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-download{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-upload-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-upload{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-upload-cloud-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-upload-cloud{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-reply-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-reply{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-forward-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-forward{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-code-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-code{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-export-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-export{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-pencil{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-pen{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-feather-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-edit{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-print{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-comment{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-chat{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-chat-alt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-bell{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-attention{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-attention-filled{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-warning-empty{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-warning{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-contacts{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-vcard-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-address-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-location-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-location{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-map-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-direction-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-direction{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-compass{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-trash{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-doc{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-doc-text{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-doc-add{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-doc-remove{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-news{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-folder{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-folder-add{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-folder-delete{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-archive-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-box{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-rss-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-rss{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-phone-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-phone{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-menu-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-menu{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-cog-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-cog{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-wrench-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-wrench{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-basket{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-calendar-outlilne{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-calendar{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-mic-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-mic{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-volume-off{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-volume-low{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-volume-middle{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-volume-high{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-headphones{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-clock{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-wristwatch{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-stopwatch{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-lightbulb{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-block-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-block{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-resize-full-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-resize-full{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-resize-normal-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-resize-normal{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-move-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-move{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-popup-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-zoom-in-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-zoom-in{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-zoom-out-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-zoom-out{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-popup-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-left-open-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-left-open{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-right-open-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-right-open{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-down{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-left{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-right{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-up{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-down-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-left-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-right-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-up-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-down-small{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-left-small{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-right-small{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-up-small{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-cw-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-cw{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-arrows-cw-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-arrows-cw{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-loop-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-loop-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-loop-alt-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-loop-alt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-shuffle{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-play-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-play{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-stop-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-stop{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-pause-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-pause{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-fast-fw-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-fast-fw{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-rewind-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-rewind{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-record-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-record-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-eject-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-eject{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-eject-alt-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-eject-alt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-bat1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-bat2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-bat3{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-bat4{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-bat-charge{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-plug{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-target-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-target{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-wifi-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-wifi{*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{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-contrast{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-globe-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-globe{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-globe-alt-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-globe-alt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-sun{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-sun-filled{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-cloud{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-flash-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-flash{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-moon{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-waves-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-waves{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-rain{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-cloud-sun{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-drizzle{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-snow{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-cloud-flash{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-cloud-wind{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-wind{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-plane-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-plane{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-leaf{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-lifebuoy-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-briefcase{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-brush-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-pipette{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-power-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-power{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-check-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-check{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-gift{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-temperatire{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-chart-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-chart{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-chart-alt-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-chart-alt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-chart-bar-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-chart-bar{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-chart-pie-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-chart-pie-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-ticket{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-credit-card{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-clipboard-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-database-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-key-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-key{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-flow-split{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-flow-merge{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-flow-parallel-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-flow-cross{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-certificate-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-certificate{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-scissors-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-scissors{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-flask{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-wine{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-coffee{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-beer{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-anchor-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-anchor{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-puzzle-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-puzzle{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-tree{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-calculator{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-infinity-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-infinity-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-pi-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-pi{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-at{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-at-circled{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-looped-square-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-looped-square-interest{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-sort-alphabet-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-sort-alphabet{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-sort-numeric-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-sort-numeric{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-dribbble-circled-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-dribbble{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-facebook-circled-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-facebook{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-flickr-circled-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-flickr{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-github-circled{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-github{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-lastfm-circled-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-lastfm-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-linkedin-circled-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-linkedin{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-pinterest-circled{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-pinterest-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-skype-outline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-skype{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-tumbler-circled{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-tumbler{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-twitter-circled-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-twitter{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-vimeo-circled-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-vimeo-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-music-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-search-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-mail-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-heart-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-star-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-user-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-videocam-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-camera-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-photo{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-attach-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-lock-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-eye-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-tag-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-thumbs-up-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-pencil-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-comment-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-location-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-cup-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-trash-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-doc-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-note-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-cog-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-params{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-calendar-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-sound-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-clock-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-lightbulb-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-tv{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-desktop-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-mobile-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-cd-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-inbox-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-globe-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-cloud-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-paper-plane-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-fire-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-graduation-cap-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-megaphone-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-database-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-key-2{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-beaker-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-truck-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-money-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-food-1{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-shop{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-diamond{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-t-shirt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')}.icon-cc-share{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ')} diff --git a/ClientApp/app/css/fontello.scss b/ClientApp/app/css/fontello.scss new file mode 100644 index 00000000..c04009dd --- /dev/null +++ b/ClientApp/app/css/fontello.scss @@ -0,0 +1,1060 @@ +@font-face { + font-family: 'fontello'; + src: url('./css/font/fontello.eot?99886049'); + src: url('./css/font/fontello.eot?99886049#iefix') format('embedded-opentype'), + url('./css/font/fontello.woff?99886049') format('woff'), + url('./css/font/fontello.ttf?99886049') format('truetype'), + url('./css/font/fontello.svg?99886049#fontello') format('svg'); + font-weight: normal; + font-style: normal; +} +/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */ +/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */ +/* +@media screen and (-webkit-min-device-pixel-ratio:0) { + @font-face { + font-family: 'fontello'; + src: url('./font/fontello.svg?99886049#fontello') format('svg'); + } +} +*/ + + [class^="icon-"]:before, [class*=" icon-"]:before { + font-family: "fontello"; + font-style: normal; + font-weight: normal; + speak: none; + + display: inline-block; + text-decoration: inherit; + width: 1em; + margin-right: .2em; + text-align: center; + /* opacity: .8; */ + + /* For safety - reset parent styles, that can break glyph codes*/ + font-variant: normal; + text-transform: none; + + /* fix buttons height, for twitter bootstrap */ + line-height: 1em; + + /* Animation center compensation - margins should be symmetric */ + /* remove if not needed */ + margin-left: .2em; + + /* you can be more comfortable with increased icons size */ + /* font-size: 120%; */ + + /* Uncomment for 3D effect */ + /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ +} + +.icon-glass:before { content: '\e800'; } /* '' */ +.icon-wallet:before { content: '\e949'; } /* '' */ +.icon-search-4:before { content: '\e91d'; } /* '' */ +.icon-mail-4:before { content: '\e91e'; } /* '' */ +.icon-mail-alt:before { content: '\e91f'; } /* '' */ +.icon-heart-4:before { content: '\e920'; } /* '' */ +.icon-heart-empty-2:before { content: '\e921'; } /* '' */ +.icon-star-4:before { content: '\e922'; } /* '' */ +.icon-star-empty:before { content: '\e923'; } /* '' */ +.icon-star-half:before { content: '\e924'; } /* '' */ +.icon-star-half-alt:before { content: '\e925'; } /* '' */ +.icon-user-4:before { content: '\e926'; } /* '' */ +.icon-users-2:before { content: '\e927'; } /* '' */ +.icon-male:before { content: '\e928'; } /* '' */ +.icon-female:before { content: '\e929'; } /* '' */ +.icon-video-3:before { content: '\e92a'; } /* '' */ +.icon-videocam-2:before { content: '\e92b'; } /* '' */ +.icon-picture-3:before { content: '\e92c'; } /* '' */ +.icon-camera-4:before { content: '\e92d'; } /* '' */ +.icon-camera-alt:before { content: '\e92e'; } /* '' */ +.icon-th-large-1:before { content: '\e95f'; } /* '' */ +.icon-th-1:before { content: '\e960'; } /* '' */ +.icon-th-list-1:before { content: '\e961'; } /* '' */ +.icon-ok-2:before { content: '\e962'; } /* '' */ +.icon-ok-circled:before { content: '\e963'; } /* '' */ +.icon-ok-circled2:before { content: '\e964'; } /* '' */ +.icon-ok-squared:before { content: '\e965'; } /* '' */ +.icon-cancel-3:before { content: '\e966'; } /* '' */ +.icon-cancel-circled-2:before { content: '\e967'; } /* '' */ +.icon-cancel-circled2:before { content: '\e968'; } /* '' */ +.icon-plus-3:before { content: '\eb34'; } /* '' */ +.icon-plus-circled:before { content: '\eb35'; } /* '' */ +.icon-plus-squared:before { content: '\eb36'; } /* '' */ +.icon-plus-squared-small:before { content: '\eb37'; } /* '' */ +.icon-minus-3:before { content: '\eb38'; } /* '' */ +.icon-minus-circled:before { content: '\eb39'; } /* '' */ +.icon-minus-squared:before { content: '\eb3a'; } /* '' */ +.icon-minus-squared-alt:before { content: '\eb3b'; } /* '' */ +.icon-minus-squared-small:before { content: '\eb3c'; } /* '' */ +.icon-help-2:before { content: '\eb3d'; } /* '' */ +.icon-help-circled:before { content: '\eb3e'; } /* '' */ +.icon-info-circled:before { content: '\eb3f'; } /* '' */ +.icon-info-3:before { content: '\eb40'; } /* '' */ +.icon-home-3:before { content: '\eb41'; } /* '' */ +.icon-link-3:before { content: '\eb42'; } /* '' */ +.icon-unlink:before { content: '\eb43'; } /* '' */ +.icon-link-ext:before { content: '\eb44'; } /* '' */ +.icon-link-ext-alt:before { content: '\eb45'; } /* '' */ +.icon-attach-4:before { content: '\eb46'; } /* '' */ +.icon-lock-4:before { content: '\eb47'; } /* '' */ +.icon-lock-open-3:before { content: '\eb48'; } /* '' */ +.icon-lock-open-alt:before { content: '\eb49'; } /* '' */ +.icon-pin-2:before { content: '\eb4a'; } /* '' */ +.icon-eye-4:before { content: '\eb4b'; } /* '' */ +.icon-eye-off:before { content: '\eb4c'; } /* '' */ +.icon-tag-4:before { content: '\eb4d'; } /* '' */ +.icon-tags-1:before { content: '\eb4e'; } /* '' */ +.icon-bookmark-2:before { content: '\eb4f'; } /* '' */ +.icon-bookmark-empty:before { content: '\eb50'; } /* '' */ +.icon-flag-2:before { content: '\eb51'; } /* '' */ +.icon-flag-empty:before { content: '\eb52'; } /* '' */ +.icon-flag-checkered:before { content: '\eb53'; } /* '' */ +.icon-thumbs-up-3:before { content: '\eb54'; } /* '' */ +.icon-thumbs-down-2:before { content: '\eb55'; } /* '' */ +.icon-thumbs-up-alt:before { content: '\eb56'; } /* '' */ +.icon-thumbs-down-alt:before { content: '\eb57'; } /* '' */ +.icon-download-3:before { content: '\eb58'; } /* '' */ +.icon-upload-3:before { content: '\eb59'; } /* '' */ +.icon-download-cloud-1:before { content: '\eb5a'; } /* '' */ +.icon-upload-cloud-3:before { content: '\eb5b'; } /* '' */ +.icon-reply-2:before { content: '\eb5c'; } /* '' */ +.icon-reply-all:before { content: '\eb5d'; } /* '' */ +.icon-forward-2:before { content: '\eb5e'; } /* '' */ +.icon-quote-left-1:before { content: '\eb5f'; } /* '' */ +.icon-quote-right-1:before { content: '\eb60'; } /* '' */ +.icon-code-2:before { content: '\eb61'; } /* '' */ +.icon-export-2:before { content: '\eb62'; } /* '' */ +.icon-export-alt:before { content: '\eb63'; } /* '' */ +.icon-pencil-4:before { content: '\eb64'; } /* '' */ +.icon-pencil-squared:before { content: '\eb65'; } /* '' */ +.icon-edit-1:before { content: '\eb66'; } /* '' */ +.icon-print-2:before { content: '\eb67'; } /* '' */ +.icon-retweet:before { content: '\eb68'; } /* '' */ +.icon-keyboard:before { content: '\eb69'; } /* '' */ +.icon-gamepad:before { content: '\eb6a'; } /* '' */ +.icon-comment-4:before { content: '\eb6b'; } /* '' */ +.icon-chat-3:before { content: '\eb6c'; } /* '' */ +.icon-comment-empty:before { content: '\eb6d'; } /* '' */ +.icon-chat-empty:before { content: '\eb6e'; } /* '' */ +.icon-bell-2:before { content: '\eb6f'; } /* '' */ +.icon-bell-alt:before { content: '\eb70'; } /* '' */ +.icon-attention-alt:before { content: '\eb71'; } /* '' */ +.icon-attention-2:before { content: '\eb72'; } /* '' */ +.icon-attention-circled:before { content: '\eb73'; } /* '' */ +.icon-location-4:before { content: '\eb74'; } /* '' */ +.icon-direction-2:before { content: '\eb75'; } /* '' */ +.icon-compass-3:before { content: '\eb76'; } /* '' */ +.icon-trash-4:before { content: '\eb77'; } /* '' */ +.icon-doc-4:before { content: '\eb78'; } /* '' */ +.icon-docs:before { content: '\eb79'; } /* '' */ +.icon-doc-text-2:before { content: '\eb7a'; } /* '' */ +.icon-doc-inv-1:before { content: '\eb7b'; } /* '' */ +.icon-doc-text-inv:before { content: '\eb7c'; } /* '' */ +.icon-folder-3:before { content: '\eb7d'; } /* '' */ +.icon-folder-open:before { content: '\eb7e'; } /* '' */ +.icon-folder-empty-1:before { content: '\eb7f'; } /* '' */ +.icon-folder-open-empty:before { content: '\eb80'; } /* '' */ +.icon-box-3:before { content: '\eb81'; } /* '' */ +.icon-rss-3:before { content: '\eb82'; } /* '' */ +.icon-rss-squared:before { content: '\eb83'; } /* '' */ +.icon-phone-2:before { content: '\eb84'; } /* '' */ +.icon-phone-squared:before { content: '\eb85'; } /* '' */ +.icon-menu-2:before { content: '\eb86'; } /* '' */ +.icon-cog-4:before { content: '\eb87'; } /* '' */ +.icon-cog-alt:before { content: '\eb88'; } /* '' */ +.icon-wrench-2:before { content: '\eb89'; } /* '' */ +.icon-basket-2:before { content: '\eb8a'; } /* '' */ +.icon-calendar-4:before { content: '\eb8b'; } /* '' */ +.icon-calendar-empty:before { content: '\eb8c'; } /* '' */ +.icon-login:before { content: '\eb8d'; } /* '' */ +.icon-logout:before { content: '\eb8e'; } /* '' */ +.icon-mic-3:before { content: '\eb8f'; } /* '' */ +.icon-mute:before { content: '\eb90'; } /* '' */ +.icon-volume-off-2:before { content: '\eb91'; } /* '' */ +.icon-volume-down:before { content: '\eb92'; } /* '' */ +.icon-volume-up-1:before { content: '\eb93'; } /* '' */ +.icon-headphones-2:before { content: '\eb94'; } /* '' */ +.icon-clock-4:before { content: '\eb95'; } /* '' */ +.icon-lightbulb-2:before { content: '\eb96'; } /* '' */ +.icon-block-3:before { content: '\eb97'; } /* '' */ +.icon-resize-full-3:before { content: '\eb98'; } /* '' */ +.icon-resize-full-alt-1:before { content: '\eb99'; } /* '' */ +.icon-resize-small-2:before { content: '\eb9a'; } /* '' */ +.icon-resize-vertical-1:before { content: '\eb9b'; } /* '' */ +.icon-resize-horizontal-1:before { content: '\eb9c'; } /* '' */ +.icon-move-2:before { content: '\eb9d'; } /* '' */ +.icon-zoom-in-1:before { content: '\eb9e'; } /* '' */ +.icon-zoom-out-1:before { content: '\eb9f'; } /* '' */ +.icon-down-circled2:before { content: '\eba0'; } /* '' */ +.icon-up-circled2:before { content: '\eba1'; } /* '' */ +.icon-left-circled2:before { content: '\eba2'; } /* '' */ +.icon-right-circled2:before { content: '\eba3'; } /* '' */ +.icon-down-dir:before { content: '\eba4'; } /* '' */ +.icon-up-dir:before { content: '\eba5'; } /* '' */ +.icon-left-dir:before { content: '\eba6'; } /* '' */ +.icon-right-dir:before { content: '\eba7'; } /* '' */ +.icon-down-open:before { content: '\eba8'; } /* '' */ +.icon-left-open-2:before { content: '\eba9'; } /* '' */ +.icon-right-open-2:before { content: '\ebaa'; } /* '' */ +.icon-up-open:before { content: '\ebab'; } /* '' */ +.icon-angle-left:before { content: '\ebac'; } /* '' */ +.icon-angle-right:before { content: '\ebad'; } /* '' */ +.icon-angle-up:before { content: '\ebae'; } /* '' */ +.icon-angle-down:before { content: '\ebaf'; } /* '' */ +.icon-angle-circled-left:before { content: '\ebb0'; } /* '' */ +.icon-angle-circled-right:before { content: '\ebb1'; } /* '' */ +.icon-angle-circled-up:before { content: '\ebb2'; } /* '' */ +.icon-angle-circled-down:before { content: '\ebb3'; } /* '' */ +.icon-angle-double-left:before { content: '\ebb4'; } /* '' */ +.icon-angle-double-right:before { content: '\ebb5'; } /* '' */ +.icon-angle-double-up:before { content: '\ebb6'; } /* '' */ +.icon-angle-double-down:before { content: '\ebb7'; } /* '' */ +.icon-down-3:before { content: '\ebb8'; } /* '' */ +.icon-left-3:before { content: '\ebb9'; } /* '' */ +.icon-right-3:before { content: '\ebba'; } /* '' */ +.icon-up-3:before { content: '\ebbb'; } /* '' */ +.icon-down-big:before { content: '\ebbc'; } /* '' */ +.icon-left-big:before { content: '\ebbd'; } /* '' */ +.icon-right-big:before { content: '\ebbe'; } /* '' */ +.icon-up-big:before { content: '\ebbf'; } /* '' */ +.icon-right-hand:before { content: '\ebc0'; } /* '' */ +.icon-left-hand:before { content: '\ebc1'; } /* '' */ +.icon-up-hand:before { content: '\ebc2'; } /* '' */ +.icon-down-hand:before { content: '\ebc3'; } /* '' */ +.icon-left-circled:before { content: '\ebc4'; } /* '' */ +.icon-right-circled:before { content: '\ebc5'; } /* '' */ +.icon-up-circled:before { content: '\ebc6'; } /* '' */ +.icon-down-circled:before { content: '\ebc7'; } /* '' */ +.icon-cw-3:before { content: '\ebc8'; } /* '' */ +.icon-ccw:before { content: '\ebc9'; } /* '' */ +.icon-arrows-cw-1:before { content: '\ebca'; } /* '' */ +.icon-level-up:before { content: '\ebcb'; } /* '' */ +.icon-level-down:before { content: '\ebcc'; } /* '' */ +.icon-shuffle-2:before { content: '\ebcd'; } /* '' */ +.icon-exchange-1:before { content: '\ebce'; } /* '' */ +.icon-collapse:before { content: '\ebcf'; } /* '' */ +.icon-collapse-top:before { content: '\ebd0'; } /* '' */ +.icon-expand:before { content: '\ebd1'; } /* '' */ +.icon-collapse-left:before { content: '\ebd2'; } /* '' */ +.icon-play-3:before { content: '\ebd3'; } /* '' */ +.icon-play-circled:before { content: '\ebd4'; } /* '' */ +.icon-play-circled2:before { content: '\ebd5'; } /* '' */ +.icon-stop-3:before { content: '\ebd6'; } /* '' */ +.icon-pause-3:before { content: '\ebd7'; } /* '' */ +.icon-to-end-2:before { content: '\ebd8'; } /* '' */ +.icon-to-end-alt:before { content: '\ebd9'; } /* '' */ +.icon-to-start-2:before { content: '\ebda'; } /* '' */ +.icon-to-start-alt:before { content: '\ebdb'; } /* '' */ +.icon-fast-fw-1:before { content: '\ebdc'; } /* '' */ +.icon-fast-bw:before { content: '\ebdd'; } /* '' */ +.icon-eject-2:before { content: '\ebde'; } /* '' */ +.icon-target-3:before { content: '\ebdf'; } /* '' */ +.icon-signal-2:before { content: '\ebe0'; } /* '' */ +.icon-award-1:before { content: '\ebe1'; } /* '' */ +.icon-desktop-2:before { content: '\ebe2'; } /* '' */ +.icon-laptop-1:before { content: '\ebe3'; } /* '' */ +.icon-tablet-1:before { content: '\ebe4'; } /* '' */ +.icon-mobile-4:before { content: '\ebe5'; } /* '' */ +.icon-inbox:before { content: '\ebe6'; } /* '' */ +.icon-globe-3:before { content: '\ebe7'; } /* '' */ +.icon-sun-2:before { content: '\ebe8'; } /* '' */ +.icon-cloud-4:before { content: '\ebe9'; } /* '' */ +.icon-flash-3:before { content: '\ebea'; } /* '' */ +.icon-moon-3:before { content: '\ebeb'; } /* '' */ +.icon-umbrella-1:before { content: '\ebec'; } /* '' */ +.icon-flight:before { content: '\ebed'; } /* '' */ +.icon-fighter-jet:before { content: '\ebee'; } /* '' */ +.icon-leaf-2:before { content: '\ebef'; } /* '' */ +.icon-font:before { content: '\ebf0'; } /* '' */ +.icon-bold:before { content: '\ebf1'; } /* '' */ +.icon-italic:before { content: '\ebf2'; } /* '' */ +.icon-text-height:before { content: '\ebf3'; } /* '' */ +.icon-text-width:before { content: '\ebf4'; } /* '' */ +.icon-align-left:before { content: '\ebf5'; } /* '' */ +.icon-align-center:before { content: '\ebf6'; } /* '' */ +.icon-align-right:before { content: '\ebf7'; } /* '' */ +.icon-align-justify:before { content: '\ebf8'; } /* '' */ +.icon-list-2:before { content: '\ebf9'; } /* '' */ +.icon-indent-left:before { content: '\ebfa'; } /* '' */ +.icon-indent-right:before { content: '\ebfb'; } /* '' */ +.icon-list-bullet:before { content: '\ebfc'; } /* '' */ +.icon-list-numbered:before { content: '\ebfd'; } /* '' */ +.icon-strike:before { content: '\ebfe'; } /* '' */ +.icon-underline:before { content: '\ebff'; } /* '' */ +.icon-superscript:before { content: '\ec00'; } /* '' */ +.icon-subscript:before { content: '\ec01'; } /* '' */ +.icon-table:before { content: '\ec02'; } /* '' */ +.icon-columns:before { content: '\ec03'; } /* '' */ +.icon-crop:before { content: '\ec04'; } /* '' */ +.icon-scissors-1:before { content: '\ec05'; } /* '' */ +.icon-paste:before { content: '\ec06'; } /* '' */ +.icon-briefcase-2:before { content: '\ec07'; } /* '' */ +.icon-suitcase:before { content: '\ec08'; } /* '' */ +.icon-ellipsis:before { content: '\ec09'; } /* '' */ +.icon-ellipsis-vert:before { content: '\ec0a'; } /* '' */ +.icon-off:before { content: '\ec0b'; } /* '' */ +.icon-road:before { content: '\ec0c'; } /* '' */ +.icon-list-alt:before { content: '\ec0d'; } /* '' */ +.icon-qrcode:before { content: '\ec0e'; } /* '' */ +.icon-barcode:before { content: '\ec0f'; } /* '' */ +.icon-book-2:before { content: '\ec10'; } /* '' */ +.icon-ajust:before { content: '\ec11'; } /* '' */ +.icon-tint:before { content: '\ec12'; } /* '' */ +.icon-check-2:before { content: '\ec13'; } /* '' */ +.icon-check-empty:before { content: '\ec14'; } /* '' */ +.icon-circle:before { content: '\ec15'; } /* '' */ +.icon-circle-empty:before { content: '\ec16'; } /* '' */ +.icon-dot-circled:before { content: '\ec17'; } /* '' */ +.icon-asterisk:before { content: '\ec18'; } /* '' */ +.icon-gift-1:before { content: '\ec19'; } /* '' */ +.icon-fire:before { content: '\ec1a'; } /* '' */ +.icon-magnet:before { content: '\ec1b'; } /* '' */ +.icon-chart-bar-3:before { content: '\ec1c'; } /* '' */ +.icon-ticket-2:before { content: '\ec1d'; } /* '' */ +.icon-credit-card-2:before { content: '\ec1e'; } /* '' */ +.icon-floppy:before { content: '\ec1f'; } /* '' */ +.icon-megaphone:before { content: '\ec20'; } /* '' */ +.icon-hdd:before { content: '\ec21'; } /* '' */ +.icon-key-4:before { content: '\ec22'; } /* '' */ +.icon-fork:before { content: '\ec23'; } /* '' */ +.icon-rocket:before { content: '\ec24'; } /* '' */ +.icon-bug:before { content: '\ec25'; } /* '' */ +.icon-certificate-1:before { content: '\ec26'; } /* '' */ +.icon-tasks:before { content: '\ec27'; } /* '' */ +.icon-filter:before { content: '\ec28'; } /* '' */ +.icon-beaker:before { content: '\ec29'; } /* '' */ +.icon-magic:before { content: '\ec2a'; } /* '' */ +.icon-truck:before { content: '\ec2b'; } /* '' */ +.icon-money:before { content: '\ec2c'; } /* '' */ +.icon-euro:before { content: '\ec2d'; } /* '' */ +.icon-pound:before { content: '\ec2e'; } /* '' */ +.icon-dollar:before { content: '\ec2f'; } /* '' */ +.icon-rupee:before { content: '\ec30'; } /* '' */ +.icon-yen:before { content: '\ec31'; } /* '' */ +.icon-renminbi:before { content: '\ec32'; } /* '' */ +.icon-try:before { content: '\ec33'; } /* '' */ +.icon-won:before { content: '\ec34'; } /* '' */ +.icon-bitcoin:before { content: '\ec35'; } /* '' */ +.icon-sort:before { content: '\ec36'; } /* '' */ +.icon-sort-down:before { content: '\ec37'; } /* '' */ +.icon-sort-up:before { content: '\ec38'; } /* '' */ +.icon-sort-alt-up:before { content: '\ec39'; } /* '' */ +.icon-sort-alt-down:before { content: '\ec3a'; } /* '' */ +.icon-sort-name-up:before { content: '\ec3b'; } /* '' */ +.icon-sort-name-down:before { content: '\ec3c'; } /* '' */ +.icon-sort-number-up:before { content: '\ec3d'; } /* '' */ +.icon-sort-number-down:before { content: '\ec3e'; } /* '' */ +.icon-hammer:before { content: '\ec3f'; } /* '' */ +.icon-gauge:before { content: '\ec40'; } /* '' */ +.icon-sitemap:before { content: '\ec41'; } /* '' */ +.icon-spinner:before { content: '\ec42'; } /* '' */ +.icon-coffee-1:before { content: '\ec43'; } /* '' */ +.icon-food:before { content: '\ec44'; } /* '' */ +.icon-beer-1:before { content: '\ec45'; } /* '' */ +.icon-user-md:before { content: '\ec46'; } /* '' */ +.icon-stethoscope:before { content: '\ec47'; } /* '' */ +.icon-ambulance:before { content: '\ec48'; } /* '' */ +.icon-medkit:before { content: '\ec49'; } /* '' */ +.icon-h-sigh:before { content: '\ec4a'; } /* '' */ +.icon-hospital:before { content: '\ec4b'; } /* '' */ +.icon-building:before { content: '\ec4c'; } /* '' */ +.icon-smile:before { content: '\ec4d'; } /* '' */ +.icon-frown:before { content: '\ec4e'; } /* '' */ +.icon-meh:before { content: '\ec4f'; } /* '' */ +.icon-anchor-1:before { content: '\ec50'; } /* '' */ +.icon-terminal:before { content: '\ec51'; } /* '' */ +.icon-eraser:before { content: '\ec52'; } /* '' */ +.icon-puzzle-1:before { content: '\ec53'; } /* '' */ +.icon-shield:before { content: '\ec54'; } /* '' */ +.icon-extinguisher:before { content: '\ec55'; } /* '' */ +.icon-bullseye:before { content: '\ec56'; } /* '' */ +.icon-wheelchair:before { content: '\ec57'; } /* '' */ +.icon-adn:before { content: '\ec58'; } /* '' */ +.icon-android:before { content: '\ec59'; } /* '' */ +.icon-apple:before { content: '\ec5a'; } /* '' */ +.icon-bitbucket:before { content: '\ec5b'; } /* '' */ +.icon-bitbucket-squared:before { content: '\ec5c'; } /* '' */ +.icon-css3:before { content: '\ec5d'; } /* '' */ +.icon-dribbble-2:before { content: '\ec5e'; } /* '' */ +.icon-dropbox:before { content: '\ec5f'; } /* '' */ +.icon-facebook-2:before { content: '\ec60'; } /* '' */ +.icon-facebook-squared:before { content: '\ec61'; } /* '' */ +.icon-flickr-2:before { content: '\ec62'; } /* '' */ +.icon-foursquare:before { content: '\ec63'; } /* '' */ +.icon-github-2:before { content: '\ec64'; } /* '' */ +.icon-github-squared:before { content: '\ec65'; } /* '' */ +.icon-github-circled-2:before { content: '\ec66'; } /* '' */ +.icon-gittip:before { content: '\ec67'; } /* '' */ +.icon-gplus-squared:before { content: '\ec68'; } /* '' */ +.icon-gplus:before { content: '\ec69'; } /* '' */ +.icon-html5:before { content: '\ec6a'; } /* '' */ +.icon-instagramm:before { content: '\ec6b'; } /* '' */ +.icon-linkedin-squared:before { content: '\ec6c'; } /* '' */ +.icon-linux:before { content: '\ec6d'; } /* '' */ +.icon-linkedin-2:before { content: '\ec6e'; } /* '' */ +.icon-maxcdn:before { content: '\ec6f'; } /* '' */ +.icon-pagelines:before { content: '\ec70'; } /* '' */ +.icon-pinterest-circled-2:before { content: '\ec71'; } /* '' */ +.icon-pinterest-squared:before { content: '\ec72'; } /* '' */ +.icon-renren:before { content: '\ec73'; } /* '' */ +.icon-skype-2:before { content: '\ec74'; } /* '' */ +.icon-stackexchange:before { content: '\ec75'; } /* '' */ +.icon-stackoverflow:before { content: '\ec76'; } /* '' */ +.icon-trello:before { content: '\ec77'; } /* '' */ +.icon-tumblr:before { content: '\ec78'; } /* '' */ +.icon-tumblr-squared:before { content: '\ec79'; } /* '' */ +.icon-twitter-squared:before { content: '\ec7a'; } /* '' */ +.icon-twitter-2:before { content: '\ec7b'; } /* '' */ +.icon-vimeo-squared:before { content: '\ec7c'; } /* '' */ +.icon-vkontakte:before { content: '\ec7d'; } /* '' */ +.icon-weibo:before { content: '\ec7e'; } /* '' */ +.icon-windows:before { content: '\ec7f'; } /* '' */ +.icon-xing:before { content: '\ec80'; } /* '' */ +.icon-xing-squared:before { content: '\ec81'; } /* '' */ +.icon-youtube:before { content: '\ec82'; } /* '' */ +.icon-youtube-squared:before { content: '\ec83'; } /* '' */ +.icon-youtube-play:before { content: '\ec84'; } /* '' */ +.icon-blank:before { content: '\ec85'; } /* '' */ +.icon-lemon:before { content: '\ec86'; } /* '' */ +.icon-note:before { content: '\e813'; } /* '' */ +.icon-note-beamed:before { content: '\e812'; } /* '' */ +.icon-music-1:before { content: '\e811'; } /* '' */ +.icon-search-1:before { content: '\e810'; } /* '' */ +.icon-flashlight:before { content: '\e80f'; } /* '' */ +.icon-mail-1:before { content: '\e80e'; } /* '' */ +.icon-heart-1:before { content: '\e80d'; } /* '' */ +.icon-heart-empty-1:before { content: '\e80c'; } /* '' */ +.icon-star-1:before { content: '\e80b'; } /* '' */ +.icon-star-empty-1:before { content: '\e80a'; } /* '' */ +.icon-user-1:before { content: '\e809'; } /* '' */ +.icon-users-1:before { content: '\e826'; } /* '' */ +.icon-user-add:before { content: '\e808'; } /* '' */ +.icon-video-1:before { content: '\e807'; } /* '' */ +.icon-picture-1:before { content: '\e806'; } /* '' */ +.icon-camera-1:before { content: '\e804'; } /* '' */ +.icon-layout:before { content: '\e805'; } /* '' */ +.icon-menu-1:before { content: '\e803'; } /* '' */ +.icon-check-1:before { content: '\e802'; } /* '' */ +.icon-cancel-1:before { content: '\e801'; } /* '' */ +.icon-cancel-circled-1:before { content: '\e83e'; } /* '' */ +.icon-cancel-squared:before { content: '\e83f'; } /* '' */ +.icon-plus-1:before { content: '\e840'; } /* '' */ +.icon-plus-circled-1:before { content: '\e841'; } /* '' */ +.icon-plus-squared-1:before { content: '\e842'; } /* '' */ +.icon-minus-1:before { content: '\e843'; } /* '' */ +.icon-minus-circled-1:before { content: '\e844'; } /* '' */ +.icon-minus-squared-1:before { content: '\e845'; } /* '' */ +.icon-help-1:before { content: '\e846'; } /* '' */ +.icon-help-circled-1:before { content: '\e847'; } /* '' */ +.icon-info-1:before { content: '\e848'; } /* '' */ +.icon-info-circled-1:before { content: '\e827'; } /* '' */ +.icon-back:before { content: '\e828'; } /* '' */ +.icon-home-1:before { content: '\e829'; } /* '' */ +.icon-link-1:before { content: '\e825'; } /* '' */ +.icon-attach-1:before { content: '\e824'; } /* '' */ +.icon-lock-1:before { content: '\e81e'; } /* '' */ +.icon-lock-open-1:before { content: '\e81c'; } /* '' */ +.icon-eye-1:before { content: '\e81b'; } /* '' */ +.icon-tag-1:before { content: '\e814'; } /* '' */ +.icon-bookmark-1:before { content: '\e870'; } /* '' */ +.icon-bookmarks:before { content: '\e86f'; } /* '' */ +.icon-flag-1:before { content: '\e86e'; } /* '' */ +.icon-thumbs-up-1:before { content: '\e86d'; } /* '' */ +.icon-thumbs-down-1:before { content: '\e867'; } /* '' */ +.icon-download-1:before { content: '\e868'; } /* '' */ +.icon-upload-1:before { content: '\e869'; } /* '' */ +.icon-upload-cloud-1:before { content: '\e86a'; } /* '' */ +.icon-reply-1:before { content: '\e86b'; } /* '' */ +.icon-reply-all-1:before { content: '\e86c'; } /* '' */ +.icon-forward-1:before { content: '\e849'; } /* '' */ +.icon-quote:before { content: '\e84a'; } /* '' */ +.icon-code-1:before { content: '\e84b'; } /* '' */ +.icon-export-1:before { content: '\e82a'; } /* '' */ +.icon-pencil-1:before { content: '\e82d'; } /* '' */ +.icon-feather:before { content: '\e82e'; } /* '' */ +.icon-print-1:before { content: '\e81f'; } /* '' */ +.icon-retweet-1:before { content: '\e81d'; } /* '' */ +.icon-keyboard-1:before { content: '\e81a'; } /* '' */ +.icon-comment-1:before { content: '\e815'; } /* '' */ +.icon-chat-1:before { content: '\e871'; } /* '' */ +.icon-bell-1:before { content: '\e876'; } /* '' */ +.icon-attention-1:before { content: '\e877'; } /* '' */ +.icon-alert:before { content: '\e87c'; } /* '' */ +.icon-vcard:before { content: '\e866'; } /* '' */ +.icon-address:before { content: '\e863'; } /* '' */ +.icon-location-1:before { content: '\e862'; } /* '' */ +.icon-map:before { content: '\e85f'; } /* '' */ +.icon-direction-1:before { content: '\e85e'; } /* '' */ +.icon-compass-1:before { content: '\e85c'; } /* '' */ +.icon-cup:before { content: '\e859'; } /* '' */ +.icon-trash-1:before { content: '\e858'; } /* '' */ +.icon-doc-1:before { content: '\e84c'; } /* '' */ +.icon-docs-1:before { content: '\e82b'; } /* '' */ +.icon-doc-landscape:before { content: '\e82c'; } /* '' */ +.icon-doc-text-1:before { content: '\e82f'; } /* '' */ +.icon-doc-text-inv-1:before { content: '\e820'; } /* '' */ +.icon-newspaper:before { content: '\e823'; } /* '' */ +.icon-book-open:before { content: '\e819'; } /* '' */ +.icon-book-1:before { content: '\e816'; } /* '' */ +.icon-folder-1:before { content: '\e872'; } /* '' */ +.icon-archive:before { content: '\e875'; } /* '' */ +.icon-box-1:before { content: '\e878'; } /* '' */ +.icon-rss-1:before { content: '\e87b'; } /* '' */ +.icon-phone-1:before { content: '\e865'; } /* '' */ +.icon-cog-1:before { content: '\e864'; } /* '' */ +.icon-tools:before { content: '\e861'; } /* '' */ +.icon-share:before { content: '\e860'; } /* '' */ +.icon-shareable:before { content: '\e85d'; } /* '' */ +.icon-basket-1:before { content: '\e85b'; } /* '' */ +.icon-bag:before { content: '\e85a'; } /* '' */ +.icon-calendar-1:before { content: '\e857'; } /* '' */ +.icon-login-1:before { content: '\e84d'; } /* '' */ +.icon-mic-1:before { content: '\e831'; } /* '' */ +.icon-mute-1:before { content: '\e830'; } /* '' */ +.icon-sound:before { content: '\e821'; } /* '' */ +.icon-volume:before { content: '\e822'; } /* '' */ +.icon-clock-1:before { content: '\e818'; } /* '' */ +.icon-hourglass:before { content: '\e817'; } /* '' */ +.icon-lamp:before { content: '\e873'; } /* '' */ +.icon-light-down:before { content: '\e874'; } /* '' */ +.icon-light-up:before { content: '\e879'; } /* '' */ +.icon-adjust:before { content: '\e87a'; } /* '' */ +.icon-block-1:before { content: '\e87d'; } /* '' */ +.icon-resize-full-1:before { content: '\e87e'; } /* '' */ +.icon-resize-small-1:before { content: '\e87f'; } /* '' */ +.icon-popup:before { content: '\e886'; } /* '' */ +.icon-publish:before { content: '\e885'; } /* '' */ +.icon-window:before { content: '\e887'; } /* '' */ +.icon-arrow-combo:before { content: '\e888'; } /* '' */ +.icon-down-circled-1:before { content: '\e856'; } /* '' */ +.icon-left-circled-1:before { content: '\e84e'; } /* '' */ +.icon-right-circled-1:before { content: '\e851'; } /* '' */ +.icon-up-circled-1:before { content: '\e832'; } /* '' */ +.icon-down-open-1:before { content: '\e833'; } /* '' */ +.icon-left-open-1:before { content: '\e834'; } /* '' */ +.icon-right-open-1:before { content: '\e835'; } /* '' */ +.icon-up-open-1:before { content: '\e836'; } /* '' */ +.icon-down-open-mini:before { content: '\e837'; } /* '' */ +.icon-left-open-mini:before { content: '\e892'; } /* '' */ +.icon-right-open-mini:before { content: '\e893'; } /* '' */ +.icon-up-open-mini:before { content: '\e894'; } /* '' */ +.icon-down-open-big:before { content: '\e895'; } /* '' */ +.icon-left-open-big:before { content: '\e896'; } /* '' */ +.icon-right-open-big:before { content: '\e897'; } /* '' */ +.icon-up-open-big:before { content: '\e880'; } /* '' */ +.icon-down-1:before { content: '\e883'; } /* '' */ +.icon-left-1:before { content: '\e884'; } /* '' */ +.icon-right-1:before { content: '\e88c'; } /* '' */ +.icon-up-1:before { content: '\e889'; } /* '' */ +.icon-down-dir-1:before { content: '\e855'; } /* '' */ +.icon-left-dir-1:before { content: '\e84f'; } /* '' */ +.icon-right-dir-1:before { content: '\e850'; } /* '' */ +.icon-up-dir-1:before { content: '\e83d'; } /* '' */ +.icon-down-bold:before { content: '\e83c'; } /* '' */ +.icon-left-bold:before { content: '\e83b'; } /* '' */ +.icon-right-bold:before { content: '\e83a'; } /* '' */ +.icon-up-bold:before { content: '\e839'; } /* '' */ +.icon-down-thin:before { content: '\e838'; } /* '' */ +.icon-left-thin:before { content: '\e891'; } /* '' */ +.icon-right-thin:before { content: '\e890'; } /* '' */ +.icon-up-thin:before { content: '\e899'; } /* '' */ +.icon-ccw-1:before { content: '\e88f'; } /* '' */ +.icon-cw-1:before { content: '\e898'; } /* '' */ +.icon-arrows-ccw:before { content: '\e88e'; } /* '' */ +.icon-level-down-1:before { content: '\e881'; } /* '' */ +.icon-level-up-1:before { content: '\e882'; } /* '' */ +.icon-shuffle-1:before { content: '\e88d'; } /* '' */ +.icon-loop:before { content: '\e88b'; } /* '' */ +.icon-switch:before { content: '\e88a'; } /* '' */ +.icon-play-1:before { content: '\e854'; } /* '' */ +.icon-stop-1:before { content: '\e853'; } /* '' */ +.icon-pause-1:before { content: '\e852'; } /* '' */ +.icon-record:before { content: '\e8ab'; } /* '' */ +.icon-to-end-1:before { content: '\e8aa'; } /* '' */ +.icon-to-start-1:before { content: '\e8a9'; } /* '' */ +.icon-fast-forward:before { content: '\e8a8'; } /* '' */ +.icon-fast-backward:before { content: '\e8a1'; } /* '' */ +.icon-progress-0:before { content: '\e8a2'; } /* '' */ +.icon-progress-1:before { content: '\e8ef'; } /* '' */ +.icon-progress-2:before { content: '\e8ee'; } /* '' */ +.icon-progress-3:before { content: '\e8ed'; } /* '' */ +.icon-target-1:before { content: '\e8ec'; } /* '' */ +.icon-palette:before { content: '\e8eb'; } /* '' */ +.icon-list-1:before { content: '\e8ea'; } /* '' */ +.icon-list-add:before { content: '\e8e9'; } /* '' */ +.icon-signal-1:before { content: '\e8e8'; } /* '' */ +.icon-trophy:before { content: '\e8b2'; } /* '' */ +.icon-battery:before { content: '\e8bd'; } /* '' */ +.icon-back-in-time:before { content: '\e8b0'; } /* '' */ +.icon-monitor:before { content: '\e8af'; } /* '' */ +.icon-mobile-1:before { content: '\e8ae'; } /* '' */ +.icon-network:before { content: '\e8ad'; } /* '' */ +.icon-cd:before { content: '\e8ac'; } /* '' */ +.icon-inbox-1:before { content: '\e8c1'; } /* '' */ +.icon-install:before { content: '\e8c2'; } /* '' */ +.icon-globe-1:before { content: '\e8c3'; } /* '' */ +.icon-cloud-1:before { content: '\e8a0'; } /* '' */ +.icon-cloud-thunder:before { content: '\e8a3'; } /* '' */ +.icon-flash-1:before { content: '\e8f0'; } /* '' */ +.icon-moon-1:before { content: '\e8f5'; } /* '' */ +.icon-flight-1:before { content: '\e8f6'; } /* '' */ +.icon-paper-plane:before { content: '\e8f7'; } /* '' */ +.icon-leaf-1:before { content: '\e8f8'; } /* '' */ +.icon-lifebuoy:before { content: '\e8ff'; } /* '' */ +.icon-mouse:before { content: '\e901'; } /* '' */ +.icon-briefcase-1:before { content: '\e902'; } /* '' */ +.icon-suitcase-1:before { content: '\e8b3'; } /* '' */ +.icon-dot:before { content: '\e8b1'; } /* '' */ +.icon-dot-2:before { content: '\e8bc'; } /* '' */ +.icon-dot-3:before { content: '\e8be'; } /* '' */ +.icon-brush:before { content: '\e8bf'; } /* '' */ +.icon-magnet-1:before { content: '\e8c0'; } /* '' */ +.icon-infinity:before { content: '\e8c7'; } /* '' */ +.icon-erase:before { content: '\e8c6'; } /* '' */ +.icon-chart-pie:before { content: '\e8c5'; } /* '' */ +.icon-chart-line:before { content: '\e8c4'; } /* '' */ +.icon-chart-bar-1:before { content: '\e89f'; } /* '' */ +.icon-chart-area:before { content: '\e8a4'; } /* '' */ +.icon-tape:before { content: '\e8f1'; } /* '' */ +.icon-graduation-cap:before { content: '\e8f4'; } /* '' */ +.icon-language:before { content: '\e8fb'; } /* '' */ +.icon-ticket-1:before { content: '\e8fa'; } /* '' */ +.icon-water:before { content: '\e8f9'; } /* '' */ +.icon-droplet:before { content: '\e8fe'; } /* '' */ +.icon-air:before { content: '\e904'; } /* '' */ +.icon-credit-card-1:before { content: '\e903'; } /* '' */ +.icon-floppy-1:before { content: '\e8b4'; } /* '' */ +.icon-clipboard:before { content: '\e8bb'; } /* '' */ +.icon-megaphone-1:before { content: '\e8d8'; } /* '' */ +.icon-database:before { content: '\e8df'; } /* '' */ +.icon-drive:before { content: '\e8e0'; } /* '' */ +.icon-bucket:before { content: '\e8e1'; } /* '' */ +.icon-thermometer:before { content: '\e8c8'; } /* '' */ +.icon-key-1:before { content: '\e8cf'; } /* '' */ +.icon-flow-cascade:before { content: '\e8d0'; } /* '' */ +.icon-flow-branch:before { content: '\e8d1'; } /* '' */ +.icon-flow-tree:before { content: '\e89e'; } /* '' */ +.icon-flow-line:before { content: '\e8a6'; } /* '' */ +.icon-flow-parallel:before { content: '\e8f2'; } /* '' */ +.icon-rocket-1:before { content: '\e8f3'; } /* '' */ +.icon-gauge-1:before { content: '\e8fc'; } /* '' */ +.icon-traffic-cone:before { content: '\e900'; } /* '' */ +.icon-cc:before { content: '\e8fd'; } /* '' */ +.icon-cc-by:before { content: '\e905'; } /* '' */ +.icon-cc-nc:before { content: '\e906'; } /* '' */ +.icon-cc-nc-eu:before { content: '\e907'; } /* '' */ +.icon-cc-nc-jp:before { content: '\e8b5'; } /* '' */ +.icon-cc-sa:before { content: '\e8ba'; } /* '' */ +.icon-cc-nd:before { content: '\e8d9'; } /* '' */ +.icon-cc-pd:before { content: '\e8de'; } /* '' */ +.icon-cc-zero:before { content: '\e8e7'; } /* '' */ +.icon-music-3:before { content: '\e91c'; } /* '' */ +.icon-cc-remix:before { content: '\e8c9'; } /* '' */ +.icon-github-1:before { content: '\e8ce'; } /* '' */ +.icon-github-circled-1:before { content: '\e8d3'; } /* '' */ +.icon-flickr-1:before { content: '\e8d2'; } /* '' */ +.icon-flickr-circled:before { content: '\e89d'; } /* '' */ +.icon-vimeo:before { content: '\e8a7'; } /* '' */ +.icon-vimeo-circled:before { content: '\e915'; } /* '' */ +.icon-twitter-1:before { content: '\e916'; } /* '' */ +.icon-twitter-circled:before { content: '\e917'; } /* '' */ +.icon-facebook-1:before { content: '\e918'; } /* '' */ +.icon-facebook-circled:before { content: '\e90e'; } /* '' */ +.icon-facebook-squared-1:before { content: '\e90d'; } /* '' */ +.icon-gplus-1:before { content: '\e90a'; } /* '' */ +.icon-gplus-circled:before { content: '\e909'; } /* '' */ +.icon-pinterest:before { content: '\e8b6'; } /* '' */ +.icon-pinterest-circled-1:before { content: '\e8b9'; } /* '' */ +.icon-tumblr-1:before { content: '\e8da'; } /* '' */ +.icon-tumblr-circled:before { content: '\e8dd'; } /* '' */ +.icon-linkedin-1:before { content: '\e8e6'; } /* '' */ +.icon-linkedin-circled:before { content: '\e8e3'; } /* '' */ +.icon-dribbble-1:before { content: '\e8ca'; } /* '' */ +.icon-dribbble-circled:before { content: '\e8cd'; } /* '' */ +.icon-stumbleupon:before { content: '\e8d4'; } /* '' */ +.icon-stumbleupon-circled:before { content: '\e8d7'; } /* '' */ +.icon-lastfm:before { content: '\e89c'; } /* '' */ +.icon-lastfm-circled:before { content: '\e8a5'; } /* '' */ +.icon-rdio:before { content: '\e914'; } /* '' */ +.icon-rdio-circled:before { content: '\e91a'; } /* '' */ +.icon-spotify:before { content: '\e919'; } /* '' */ +.icon-spotify-circled:before { content: '\e910'; } /* '' */ +.icon-qq:before { content: '\e90f'; } /* '' */ +.icon-instagram:before { content: '\e90c'; } /* '' */ +.icon-dropbox-1:before { content: '\e90b'; } /* '' */ +.icon-evernote:before { content: '\e908'; } /* '' */ +.icon-flattr:before { content: '\e8b7'; } /* '' */ +.icon-skype-1:before { content: '\e8b8'; } /* '' */ +.icon-skype-circled:before { content: '\e8db'; } /* '' */ +.icon-renren-1:before { content: '\e8dc'; } /* '' */ +.icon-sina-weibo:before { content: '\e8e5'; } /* '' */ +.icon-paypal:before { content: '\e8e4'; } /* '' */ +.icon-picasa:before { content: '\e8cb'; } /* '' */ +.icon-soundcloud:before { content: '\e8cc'; } /* '' */ +.icon-mixi:before { content: '\e8d5'; } /* '' */ +.icon-behance:before { content: '\e8d6'; } /* '' */ +.icon-google-circles:before { content: '\e89b'; } /* '' */ +.icon-vkontakte-1:before { content: '\e89a'; } /* '' */ +.icon-smashing:before { content: '\e913'; } /* '' */ +.icon-sweden:before { content: '\e912'; } /* '' */ +.icon-db-shape:before { content: '\e91b'; } /* '' */ +.icon-logo-db:before { content: '\e911'; } /* '' */ +.icon-music-outline:before { content: '\e969'; } /* '' */ +.icon-music:before { content: '\e96a'; } /* '' */ +.icon-search-outline:before { content: '\e96b'; } /* '' */ +.icon-search:before { content: '\e96c'; } /* '' */ +.icon-mail:before { content: '\e96d'; } /* '' */ +.icon-heart:before { content: '\e96e'; } /* '' */ +.icon-heart-filled:before { content: '\e96f'; } /* '' */ +.icon-star:before { content: '\e970'; } /* '' */ +.icon-star-filled:before { content: '\e971'; } /* '' */ +.icon-user-outline:before { content: '\e972'; } /* '' */ +.icon-user:before { content: '\e973'; } /* '' */ +.icon-users-outline:before { content: '\e974'; } /* '' */ +.icon-users:before { content: '\e975'; } /* '' */ +.icon-user-add-outline:before { content: '\e976'; } /* '' */ +.icon-user-add-1:before { content: '\e977'; } /* '' */ +.icon-user-delete-outline:before { content: '\e978'; } /* '' */ +.icon-user-delete:before { content: '\e979'; } /* '' */ +.icon-video:before { content: '\e97a'; } /* '' */ +.icon-videocam-outline:before { content: '\e97b'; } /* '' */ +.icon-videocam:before { content: '\e97c'; } /* '' */ +.icon-picture-outline:before { content: '\e97d'; } /* '' */ +.icon-picture:before { content: '\e97e'; } /* '' */ +.icon-camera-outline:before { content: '\e97f'; } /* '' */ +.icon-camera:before { content: '\e980'; } /* '' */ +.icon-th-outline:before { content: '\e981'; } /* '' */ +.icon-th:before { content: '\e982'; } /* '' */ +.icon-th-large-outline:before { content: '\e983'; } /* '' */ +.icon-th-large:before { content: '\e984'; } /* '' */ +.icon-th-list-outline:before { content: '\e985'; } /* '' */ +.icon-th-list:before { content: '\e986'; } /* '' */ +.icon-ok-outline:before { content: '\e987'; } /* '' */ +.icon-ok:before { content: '\e988'; } /* '' */ +.icon-cancel-outline:before { content: '\e989'; } /* '' */ +.icon-cancel:before { content: '\e98a'; } /* '' */ +.icon-cancel-alt:before { content: '\e98b'; } /* '' */ +.icon-cancel-alt-filled:before { content: '\e98c'; } /* '' */ +.icon-cancel-circled-outline:before { content: '\e98d'; } /* '' */ +.icon-cancel-circled:before { content: '\e98e'; } /* '' */ +.icon-plus-outline:before { content: '\e98f'; } /* '' */ +.icon-plus:before { content: '\e990'; } /* '' */ +.icon-minus-outline:before { content: '\e991'; } /* '' */ +.icon-minus:before { content: '\e992'; } /* '' */ +.icon-divide-outline:before { content: '\e993'; } /* '' */ +.icon-divide:before { content: '\e994'; } /* '' */ +.icon-eq-outline:before { content: '\e995'; } /* '' */ +.icon-eq:before { content: '\e996'; } /* '' */ +.icon-info-outline:before { content: '\e997'; } /* '' */ +.icon-info:before { content: '\e998'; } /* '' */ +.icon-home-outline:before { content: '\e999'; } /* '' */ +.icon-home:before { content: '\e99a'; } /* '' */ +.icon-link-outline:before { content: '\e99b'; } /* '' */ +.icon-link:before { content: '\e99c'; } /* '' */ +.icon-attach-outline:before { content: '\e99d'; } /* '' */ +.icon-attach:before { content: '\e99e'; } /* '' */ +.icon-lock:before { content: '\e99f'; } /* '' */ +.icon-lock-filled:before { content: '\e9a0'; } /* '' */ +.icon-lock-open:before { content: '\e9a1'; } /* '' */ +.icon-lock-open-filled:before { content: '\e9a2'; } /* '' */ +.icon-pin-outline:before { content: '\e9a3'; } /* '' */ +.icon-pin:before { content: '\e9a4'; } /* '' */ +.icon-eye-outline:before { content: '\e9a5'; } /* '' */ +.icon-eye:before { content: '\e9a6'; } /* '' */ +.icon-tag:before { content: '\e9a7'; } /* '' */ +.icon-tags:before { content: '\e9a8'; } /* '' */ +.icon-bookmark:before { content: '\e9a9'; } /* '' */ +.icon-flag:before { content: '\e9aa'; } /* '' */ +.icon-flag-filled:before { content: '\e9ab'; } /* '' */ +.icon-thumbs-up:before { content: '\e9ac'; } /* '' */ +.icon-thumbs-down:before { content: '\e9ad'; } /* '' */ +.icon-download-outline:before { content: '\e9ae'; } /* '' */ +.icon-download:before { content: '\e9af'; } /* '' */ +.icon-upload-outline:before { content: '\e9b0'; } /* '' */ +.icon-upload:before { content: '\e9b1'; } /* '' */ +.icon-upload-cloud-outline:before { content: '\e9b2'; } /* '' */ +.icon-upload-cloud:before { content: '\e9b3'; } /* '' */ +.icon-reply-outline:before { content: '\e9b4'; } /* '' */ +.icon-reply:before { content: '\e9b5'; } /* '' */ +.icon-forward-outline:before { content: '\e9b6'; } /* '' */ +.icon-forward:before { content: '\e9b7'; } /* '' */ +.icon-code-outline:before { content: '\e9b8'; } /* '' */ +.icon-code:before { content: '\e9b9'; } /* '' */ +.icon-export-outline:before { content: '\e9ba'; } /* '' */ +.icon-export:before { content: '\e9bb'; } /* '' */ +.icon-pencil:before { content: '\e9bc'; } /* '' */ +.icon-pen:before { content: '\e9bd'; } /* '' */ +.icon-feather-1:before { content: '\e9be'; } /* '' */ +.icon-edit:before { content: '\e9bf'; } /* '' */ +.icon-print:before { content: '\e9c0'; } /* '' */ +.icon-comment:before { content: '\e9c1'; } /* '' */ +.icon-chat:before { content: '\e9c2'; } /* '' */ +.icon-chat-alt:before { content: '\e9c3'; } /* '' */ +.icon-bell:before { content: '\e9c4'; } /* '' */ +.icon-attention:before { content: '\e9c5'; } /* '' */ +.icon-attention-filled:before { content: '\e9c6'; } /* '' */ +.icon-warning-empty:before { content: '\e9c7'; } /* '' */ +.icon-warning:before { content: '\e9c8'; } /* '' */ +.icon-contacts:before { content: '\e9c9'; } /* '' */ +.icon-vcard-1:before { content: '\e9ca'; } /* '' */ +.icon-address-1:before { content: '\e9cb'; } /* '' */ +.icon-location-outline:before { content: '\e9cc'; } /* '' */ +.icon-location:before { content: '\e9cd'; } /* '' */ +.icon-map-1:before { content: '\e9ce'; } /* '' */ +.icon-direction-outline:before { content: '\e9cf'; } /* '' */ +.icon-direction:before { content: '\e9d0'; } /* '' */ +.icon-compass:before { content: '\e9d1'; } /* '' */ +.icon-trash:before { content: '\e9d2'; } /* '' */ +.icon-doc:before { content: '\e9d3'; } /* '' */ +.icon-doc-text:before { content: '\e9d4'; } /* '' */ +.icon-doc-add:before { content: '\e9d5'; } /* '' */ +.icon-doc-remove:before { content: '\e9d6'; } /* '' */ +.icon-news:before { content: '\e9d7'; } /* '' */ +.icon-folder:before { content: '\e9d8'; } /* '' */ +.icon-folder-add:before { content: '\e9d9'; } /* '' */ +.icon-folder-delete:before { content: '\e9da'; } /* '' */ +.icon-archive-1:before { content: '\e9db'; } /* '' */ +.icon-box:before { content: '\e9dc'; } /* '' */ +.icon-rss-outline:before { content: '\e9dd'; } /* '' */ +.icon-rss:before { content: '\e9de'; } /* '' */ +.icon-phone-outline:before { content: '\e9df'; } /* '' */ +.icon-phone:before { content: '\e9e0'; } /* '' */ +.icon-menu-outline:before { content: '\e9e1'; } /* '' */ +.icon-menu:before { content: '\e9e2'; } /* '' */ +.icon-cog-outline:before { content: '\e9e3'; } /* '' */ +.icon-cog:before { content: '\e9e4'; } /* '' */ +.icon-wrench-outline:before { content: '\e9e5'; } /* '' */ +.icon-wrench:before { content: '\e9e6'; } /* '' */ +.icon-basket:before { content: '\e9e7'; } /* '' */ +.icon-calendar-outlilne:before { content: '\e9e8'; } /* '' */ +.icon-calendar:before { content: '\e9e9'; } /* '' */ +.icon-mic-outline:before { content: '\e9ea'; } /* '' */ +.icon-mic:before { content: '\e9eb'; } /* '' */ +.icon-volume-off:before { content: '\e9ec'; } /* '' */ +.icon-volume-low:before { content: '\e9ed'; } /* '' */ +.icon-volume-middle:before { content: '\e9ee'; } /* '' */ +.icon-volume-high:before { content: '\e9ef'; } /* '' */ +.icon-headphones:before { content: '\e9f0'; } /* '' */ +.icon-clock:before { content: '\e9f1'; } /* '' */ +.icon-wristwatch:before { content: '\e9f2'; } /* '' */ +.icon-stopwatch:before { content: '\e9f3'; } /* '' */ +.icon-lightbulb:before { content: '\e9f4'; } /* '' */ +.icon-block-outline:before { content: '\e9f5'; } /* '' */ +.icon-block:before { content: '\e9f6'; } /* '' */ +.icon-resize-full-outline:before { content: '\e9f7'; } /* '' */ +.icon-resize-full:before { content: '\e9f8'; } /* '' */ +.icon-resize-normal-outline:before { content: '\e9f9'; } /* '' */ +.icon-resize-normal:before { content: '\e9fa'; } /* '' */ +.icon-move-outline:before { content: '\e9fb'; } /* '' */ +.icon-move:before { content: '\e9fc'; } /* '' */ +.icon-popup-1:before { content: '\e9fd'; } /* '' */ +.icon-zoom-in-outline:before { content: '\e9fe'; } /* '' */ +.icon-zoom-in:before { content: '\e9ff'; } /* '' */ +.icon-zoom-out-outline:before { content: '\ea00'; } /* '' */ +.icon-zoom-out:before { content: '\ea01'; } /* '' */ +.icon-popup-2:before { content: '\ea02'; } /* '' */ +.icon-left-open-outline:before { content: '\ea03'; } /* '' */ +.icon-left-open:before { content: '\ea04'; } /* '' */ +.icon-right-open-outline:before { content: '\ea05'; } /* '' */ +.icon-right-open:before { content: '\ea06'; } /* '' */ +.icon-down:before { content: '\ea07'; } /* '' */ +.icon-left:before { content: '\ea08'; } /* '' */ +.icon-right:before { content: '\ea09'; } /* '' */ +.icon-up:before { content: '\ea0a'; } /* '' */ +.icon-down-outline:before { content: '\ea0b'; } /* '' */ +.icon-left-outline:before { content: '\ea0c'; } /* '' */ +.icon-right-outline:before { content: '\ea0d'; } /* '' */ +.icon-up-outline:before { content: '\ea0e'; } /* '' */ +.icon-down-small:before { content: '\ea0f'; } /* '' */ +.icon-left-small:before { content: '\ea10'; } /* '' */ +.icon-right-small:before { content: '\ea11'; } /* '' */ +.icon-up-small:before { content: '\ea12'; } /* '' */ +.icon-cw-outline:before { content: '\ea13'; } /* '' */ +.icon-cw:before { content: '\ea14'; } /* '' */ +.icon-arrows-cw-outline:before { content: '\ea15'; } /* '' */ +.icon-arrows-cw:before { content: '\ea16'; } /* '' */ +.icon-loop-outline:before { content: '\ea17'; } /* '' */ +.icon-loop-1:before { content: '\ea18'; } /* '' */ +.icon-loop-alt-outline:before { content: '\ea19'; } /* '' */ +.icon-loop-alt:before { content: '\ea1a'; } /* '' */ +.icon-shuffle:before { content: '\ea1b'; } /* '' */ +.icon-play-outline:before { content: '\ea1c'; } /* '' */ +.icon-play:before { content: '\ea1d'; } /* '' */ +.icon-stop-outline:before { content: '\ea1e'; } /* '' */ +.icon-stop:before { content: '\ea1f'; } /* '' */ +.icon-pause-outline:before { content: '\ea20'; } /* '' */ +.icon-pause:before { content: '\ea21'; } /* '' */ +.icon-fast-fw-outline:before { content: '\ea22'; } /* '' */ +.icon-fast-fw:before { content: '\ea23'; } /* '' */ +.icon-rewind-outline:before { content: '\ea24'; } /* '' */ +.icon-rewind:before { content: '\ea25'; } /* '' */ +.icon-record-outline:before { content: '\ea26'; } /* '' */ +.icon-record-1:before { content: '\ea27'; } /* '' */ +.icon-eject-outline:before { content: '\ea28'; } /* '' */ +.icon-eject:before { content: '\ea29'; } /* '' */ +.icon-eject-alt-outline:before { content: '\ea2a'; } /* '' */ +.icon-eject-alt:before { content: '\ea2b'; } /* '' */ +.icon-bat1:before { content: '\ea2c'; } /* '' */ +.icon-bat2:before { content: '\ea2d'; } /* '' */ +.icon-bat3:before { content: '\ea2e'; } /* '' */ +.icon-bat4:before { content: '\ea2f'; } /* '' */ +.icon-bat-charge:before { content: '\ea30'; } /* '' */ +.icon-plug:before { content: '\ea31'; } /* '' */ +.icon-target-outline:before { content: '\ea32'; } /* '' */ +.icon-target:before { content: '\ea33'; } /* '' */ +.icon-wifi-outline:before { content: '\ea34'; } /* '' */ +.icon-wifi:before { content: '\ea35'; } /* '' */ +.icon-desktop:before { content: '\ea36'; } /* '' */ +.icon-laptop:before { content: '\ea37'; } /* '' */ +.icon-tablet:before { content: '\ea38'; } /* '' */ +.icon-mobile:before { content: '\ea39'; } /* '' */ +.icon-contrast:before { content: '\ea3a'; } /* '' */ +.icon-globe-outline:before { content: '\ea3b'; } /* '' */ +.icon-globe:before { content: '\ea3c'; } /* '' */ +.icon-globe-alt-outline:before { content: '\ea3d'; } /* '' */ +.icon-globe-alt:before { content: '\ea3e'; } /* '' */ +.icon-sun:before { content: '\ea3f'; } /* '' */ +.icon-sun-filled:before { content: '\ea40'; } /* '' */ +.icon-cloud:before { content: '\ea41'; } /* '' */ +.icon-flash-outline:before { content: '\ea42'; } /* '' */ +.icon-flash:before { content: '\ea43'; } /* '' */ +.icon-moon:before { content: '\ea44'; } /* '' */ +.icon-waves-outline:before { content: '\ea45'; } /* '' */ +.icon-waves:before { content: '\ea46'; } /* '' */ +.icon-rain:before { content: '\ea47'; } /* '' */ +.icon-cloud-sun:before { content: '\ea48'; } /* '' */ +.icon-drizzle:before { content: '\ea49'; } /* '' */ +.icon-snow:before { content: '\ea4a'; } /* '' */ +.icon-cloud-flash:before { content: '\ea4b'; } /* '' */ +.icon-cloud-wind:before { content: '\ea4c'; } /* '' */ +.icon-wind:before { content: '\ea4d'; } /* '' */ +.icon-plane-outline:before { content: '\ea4e'; } /* '' */ +.icon-plane:before { content: '\ea4f'; } /* '' */ +.icon-leaf:before { content: '\ea50'; } /* '' */ +.icon-lifebuoy-1:before { content: '\ea51'; } /* '' */ +.icon-briefcase:before { content: '\ea52'; } /* '' */ +.icon-brush-1:before { content: '\ea53'; } /* '' */ +.icon-pipette:before { content: '\ea54'; } /* '' */ +.icon-power-outline:before { content: '\ea55'; } /* '' */ +.icon-power:before { content: '\ea56'; } /* '' */ +.icon-check-outline:before { content: '\ea57'; } /* '' */ +.icon-check:before { content: '\ea58'; } /* '' */ +.icon-gift:before { content: '\ea59'; } /* '' */ +.icon-temperatire:before { content: '\ea5a'; } /* '' */ +.icon-chart-outline:before { content: '\ea5b'; } /* '' */ +.icon-chart:before { content: '\ea5c'; } /* '' */ +.icon-chart-alt-outline:before { content: '\ea5d'; } /* '' */ +.icon-chart-alt:before { content: '\ea5e'; } /* '' */ +.icon-chart-bar-outline:before { content: '\ea5f'; } /* '' */ +.icon-chart-bar:before { content: '\ea60'; } /* '' */ +.icon-chart-pie-outline:before { content: '\ea61'; } /* '' */ +.icon-chart-pie-1:before { content: '\ea62'; } /* '' */ +.icon-ticket:before { content: '\ea63'; } /* '' */ +.icon-credit-card:before { content: '\ea64'; } /* '' */ +.icon-clipboard-1:before { content: '\ea65'; } /* '' */ +.icon-database-2:before { content: '\ea66'; } /* '' */ +.icon-key-outline:before { content: '\ea67'; } /* '' */ +.icon-key:before { content: '\ea68'; } /* '' */ +.icon-flow-split:before { content: '\ea69'; } /* '' */ +.icon-flow-merge:before { content: '\ea6a'; } /* '' */ +.icon-flow-parallel-1:before { content: '\ea6b'; } /* '' */ +.icon-flow-cross:before { content: '\ea6c'; } /* '' */ +.icon-certificate-outline:before { content: '\ea6d'; } /* '' */ +.icon-certificate:before { content: '\ea6e'; } /* '' */ +.icon-scissors-outline:before { content: '\ea6f'; } /* '' */ +.icon-scissors:before { content: '\ea70'; } /* '' */ +.icon-flask:before { content: '\ea71'; } /* '' */ +.icon-wine:before { content: '\ea72'; } /* '' */ +.icon-coffee:before { content: '\ea73'; } /* '' */ +.icon-beer:before { content: '\ea74'; } /* '' */ +.icon-anchor-outline:before { content: '\ea75'; } /* '' */ +.icon-anchor:before { content: '\ea76'; } /* '' */ +.icon-puzzle-outline:before { content: '\ea77'; } /* '' */ +.icon-puzzle:before { content: '\ea78'; } /* '' */ +.icon-tree:before { content: '\ea79'; } /* '' */ +.icon-calculator:before { content: '\ea7a'; } /* '' */ +.icon-infinity-outline:before { content: '\ea7b'; } /* '' */ +.icon-infinity-1:before { content: '\ea7c'; } /* '' */ +.icon-pi-outline:before { content: '\ea7d'; } /* '' */ +.icon-pi:before { content: '\ea7e'; } /* '' */ +.icon-at:before { content: '\ea7f'; } /* '' */ +.icon-at-circled:before { content: '\ea80'; } /* '' */ +.icon-looped-square-outline:before { content: '\ea81'; } /* '' */ +.icon-looped-square-interest:before { content: '\ea82'; } /* '' */ +.icon-sort-alphabet-outline:before { content: '\ea83'; } /* '' */ +.icon-sort-alphabet:before { content: '\ea84'; } /* '' */ +.icon-sort-numeric-outline:before { content: '\ea85'; } /* '' */ +.icon-sort-numeric:before { content: '\ea86'; } /* '' */ +.icon-dribbble-circled-1:before { content: '\ea87'; } /* '' */ +.icon-dribbble:before { content: '\ea88'; } /* '' */ +.icon-facebook-circled-1:before { content: '\ea89'; } /* '' */ +.icon-facebook:before { content: '\ea8a'; } /* '' */ +.icon-flickr-circled-1:before { content: '\ea8b'; } /* '' */ +.icon-flickr:before { content: '\ea8c'; } /* '' */ +.icon-github-circled:before { content: '\ea8d'; } /* '' */ +.icon-github:before { content: '\ea8e'; } /* '' */ +.icon-lastfm-circled-1:before { content: '\ea8f'; } /* '' */ +.icon-lastfm-1:before { content: '\ea90'; } /* '' */ +.icon-linkedin-circled-1:before { content: '\ea91'; } /* '' */ +.icon-linkedin:before { content: '\ea92'; } /* '' */ +.icon-pinterest-circled:before { content: '\ea93'; } /* '' */ +.icon-pinterest-1:before { content: '\ea94'; } /* '' */ +.icon-skype-outline:before { content: '\ea95'; } /* '' */ +.icon-skype:before { content: '\ea96'; } /* '' */ +.icon-tumbler-circled:before { content: '\ea97'; } /* '' */ +.icon-tumbler:before { content: '\ea98'; } /* '' */ +.icon-twitter-circled-1:before { content: '\ea99'; } /* '' */ +.icon-twitter:before { content: '\ea9a'; } /* '' */ +.icon-vimeo-circled-1:before { content: '\ea9b'; } /* '' */ +.icon-vimeo-1:before { content: '\ea9c'; } /* '' */ +.icon-music-2:before { content: '\e95e'; } /* '' */ +.icon-search-2:before { content: '\e959'; } /* '' */ +.icon-mail-2:before { content: '\e958'; } /* '' */ +.icon-heart-2:before { content: '\e953'; } /* '' */ +.icon-star-2:before { content: '\e952'; } /* '' */ +.icon-user-2:before { content: '\e94d'; } /* '' */ +.icon-videocam-1:before { content: '\e94c'; } /* '' */ +.icon-camera-2:before { content: '\e947'; } /* '' */ +.icon-photo:before { content: '\e946'; } /* '' */ +.icon-attach-2:before { content: '\e943'; } /* '' */ +.icon-lock-2:before { content: '\e942'; } /* '' */ +.icon-eye-2:before { content: '\e93f'; } /* '' */ +.icon-tag-2:before { content: '\e93e'; } /* '' */ +.icon-thumbs-up-2:before { content: '\e93b'; } /* '' */ +.icon-pencil-2:before { content: '\e93a'; } /* '' */ +.icon-comment-2:before { content: '\e937'; } /* '' */ +.icon-location-2:before { content: '\e936'; } /* '' */ +.icon-cup-1:before { content: '\e933'; } /* '' */ +.icon-trash-2:before { content: '\e932'; } /* '' */ +.icon-doc-2:before { content: '\e92f'; } /* '' */ +.icon-note-1:before { content: '\e95d'; } /* '' */ +.icon-cog-2:before { content: '\e95a'; } /* '' */ +.icon-params:before { content: '\e957'; } /* '' */ +.icon-calendar-2:before { content: '\e954'; } /* '' */ +.icon-sound-1:before { content: '\e951'; } /* '' */ +.icon-clock-2:before { content: '\e94e'; } /* '' */ +.icon-lightbulb-1:before { content: '\e94b'; } /* '' */ +.icon-tv:before { content: '\e948'; } /* '' */ +.icon-desktop-1:before { content: '\e945'; } /* '' */ +.icon-mobile-2:before { content: '\e944'; } /* '' */ +.icon-cd-1:before { content: '\e941'; } /* '' */ +.icon-inbox-2:before { content: '\e940'; } /* '' */ +.icon-globe-2:before { content: '\e93d'; } /* '' */ +.icon-cloud-2:before { content: '\e93c'; } /* '' */ +.icon-paper-plane-1:before { content: '\e939'; } /* '' */ +.icon-fire-1:before { content: '\e938'; } /* '' */ +.icon-graduation-cap-1:before { content: '\e935'; } /* '' */ +.icon-megaphone-2:before { content: '\e934'; } /* '' */ +.icon-database-1:before { content: '\e931'; } /* '' */ +.icon-key-2:before { content: '\e930'; } /* '' */ +.icon-beaker-1:before { content: '\e95c'; } /* '' */ +.icon-truck-1:before { content: '\e95b'; } /* '' */ +.icon-money-1:before { content: '\e956'; } /* '' */ +.icon-food-1:before { content: '\e955'; } /* '' */ +.icon-shop:before { content: '\e950'; } /* '' */ +.icon-diamond:before { content: '\e94f'; } /* '' */ +.icon-t-shirt:before { content: '\e94a'; } /* '' */ +.icon-cc-share:before { content: '\e8e2'; } /* '' */ diff --git a/ClientApp/app/css/gts-nav-wizard.css b/ClientApp/app/css/gts-nav-wizard.css new file mode 100644 index 00000000..d42ea6d6 --- /dev/null +++ b/ClientApp/app/css/gts-nav-wizard.css @@ -0,0 +1,207 @@ +ul.nav-wizard { + background-color: #f9f9f9; + border: 1px solid #d4d4d4; + -webkit-border-radius: 6px; + -moz-border-radius: 6px; + border-radius: 6px; + *zoom: 1; + position: relative; + overflow: hidden; + padding: 0; +} +ul.nav-wizard:before { + display: block; + position: absolute; + left: 0px; + right: 0px; + top: 46px; + height: 47px; + border-top: 1px solid #d4d4d4; + border-bottom: 1px solid #d4d4d4; + z-index: 11; + content: " "; +} +ul.nav-wizard:after { + display: block; + position: absolute; + left: 0px; + right: 0px; + top: 138px; + height: 47px; + border-top: 1px solid #d4d4d4; + border-bottom: 1px solid #d4d4d4; + z-index: 11; + content: " "; +} +ul.nav-wizard li { + position: relative; + float: left; + height: 46px; + display: inline-block; + text-align: middle; + padding: 0; /*0 20px 0 30px;*/ + margin: 0; + font-size: 16px; + line-height: 46px; +} +ul.nav-wizard li a { + color: #468847; + /*background-color: #dff0d8;*/ + padding: 0; + padding: 0 20px 0 25px; +} +ul.nav-wizard li a:hover { + background-color: transparent; +} +ul.nav-wizard li.done a { + background-color: #dff0d8 !important; +} + +ul.nav-wizard li.done a:hover { + background-color: #dfe9d8 !important; +} + +ul.nav-wizard li:not(:last-child):before { + position: absolute; + display: block; + border: 24px solid transparent; + border-left: 16px solid #d4d4d4; + border-right: 0; + top: -1px; + z-index: 10; + content: ''; + right: -16px; +} +ul.nav-wizard li:not(:last-child):after { + position: absolute; + display: block; + border: 24px solid transparent; + /*border-left: 16px solid #dff0d8;*/ + border-left: 16px solid #ededed; + border-right: 0; + top: -1px; + z-index: 10; + content: ''; + right: -15px; +} +ul.nav-wizard li.done:not(:last-child):after { + border-left: 16px solid #dff0d8; +} +ul.nav-wizard li:hover:not(:last-child):after { + border-left: 16px solid #dfe9d8; +} + +ul.nav-wizard li.editing { + color: #3a87ad; + background: #d9edf7; +} +ul.nav-wizard li.editing:not(:last-child):after { + border-left: 16px solid #d9edf7; +} +ul.nav-wizard li.editing a, +ul.nav-wizard li.editing a:active, +ul.nav-wizard li.editing a:visited, +ul.nav-wizard li.editing a:focus { + color: #3a87ad; + background: #d9edf7; +} +ul.nav-wizard .editing ~ li { + color: #999999; + background: #ededed; +} +/*ul.nav-wizard .editing ~ li:not(:last-child):after { + border-left: 16px solid #ededed; +}*/ +ul.nav-wizard .editing ~ li:hover:not(:last-child):after { + border-left: 16px solid #dfe9d8; +} +ul.nav-wizard .editing ~ li a, +ul.nav-wizard .editing ~ li a:active, +ul.nav-wizard .editing ~ li a:visited, +ul.nav-wizard .editing ~ li a:focus { + color: #999999; + background: #ededed; +} + +ul.nav-wizard.nav-wizard-backnav li:hover { + color: #468847; + background: #f6fbfd; +} +ul.nav-wizard.nav-wizard-backnav li:not(:last-child):hover:after { + border-left: 16px solid #f6fbfd; +} +ul.nav-wizard.nav-wizard-backnav li:hover a, +ul.nav-wizard.nav-wizard-backnav li:hover a:active, +ul.nav-wizard.nav-wizard-backnav li:hover a:visited, +ul.nav-wizard.nav-wizard-backnav li:hover a:focus { + color: #468847; + background: #f6fbfd; +} + +ul.nav-wizard.nav-wizard-backnav .editing ~ li { + color: #999999; + background: #ededed; +} +ul.nav-wizard.nav-wizard-backnav .editing ~ li:not(:last-child):after { + border-left: 16px solid #ededed; +} +ul.nav-wizard.nav-wizard-backnav .editing ~ li a, +ul.nav-wizard.nav-wizard-backnav .editing ~ li a:active, +ul.nav-wizard.nav-wizard-backnav .editing ~ li a:visited, +ul.nav-wizard.nav-wizard-backnav .editing ~ li a:focus { + color: #999999; + background: #ededed; +} + + +/*set current selection styles*/ + +ul.nav-wizard li.current { + color: #3a87ad; + background: #d9edf7; +} +ul.nav-wizard li.current:not(:last-child):after { + border-left: 16px solid #d9edf7; +} +ul.nav-wizard li.current a, +ul.nav-wizard li.current a:active, +ul.nav-wizard li.current a:visited, +ul.nav-wizard li.current a:focus { + color: #3a87ad; + background: #d9edf7; +} +ul.nav-wizard .current ~ li { + color: #999999; + background: #ededed; +} +ul.nav-wizard .current ~ li:not(:last-child):after { + border-left: 16px solid #ededed; +} +ul.nav-wizard .current ~ li a, +ul.nav-wizard .current ~ li a:active, +ul.nav-wizard .current ~ li a:visited, +ul.nav-wizard .current ~ li a:focus { + color: #999999; + background: #ededed; +} +ul.nav-wizard.nav-wizard-backnav .current ~ li { + color: #999999; + background: #ededed; +} +ul.nav-wizard.nav-wizard-backnav .current ~ li:not(:last-child):after { + border-left: 16px solid #ededed; +} +ul.nav-wizard.nav-wizard-backnav .current ~ li a, +ul.nav-wizard.nav-wizard-backnav .current ~ li a:active, +ul.nav-wizard.nav-wizard-backnav .current ~ li a:visited, +ul.nav-wizard.nav-wizard-backnav .current ~ li a:focus { + color: #999999; + background: #ededed; +} +/*END set current selection styles*/ + +/*stop events content default. ng-click stop to work for that items*/ +.steps-indicator li.default { + pointer-events: none; +} +/*END stop events content default*/ \ No newline at end of file diff --git a/ClientApp/app/css/images/1920x500-bg.png b/ClientApp/app/css/images/1920x500-bg.png new file mode 100644 index 00000000..e0de40fe Binary files /dev/null and b/ClientApp/app/css/images/1920x500-bg.png differ diff --git a/ClientApp/app/css/images/aboutus-1.jpg b/ClientApp/app/css/images/aboutus-1.jpg new file mode 100644 index 00000000..59dc9d05 Binary files /dev/null and b/ClientApp/app/css/images/aboutus-1.jpg differ diff --git a/ClientApp/app/css/images/aboutus-2.jpg b/ClientApp/app/css/images/aboutus-2.jpg new file mode 100644 index 00000000..6766213e Binary files /dev/null and b/ClientApp/app/css/images/aboutus-2.jpg differ diff --git a/ClientApp/app/css/images/aboutus-3.jpg b/ClientApp/app/css/images/aboutus-3.jpg new file mode 100644 index 00000000..a53f28d4 Binary files /dev/null and b/ClientApp/app/css/images/aboutus-3.jpg differ diff --git a/ClientApp/app/css/images/au-itr.jpg b/ClientApp/app/css/images/au-itr.jpg new file mode 100644 index 00000000..51cd7a88 Binary files /dev/null and b/ClientApp/app/css/images/au-itr.jpg differ diff --git a/ClientApp/app/css/images/au-itr_large.jpg b/ClientApp/app/css/images/au-itr_large.jpg new file mode 100644 index 00000000..6d145c83 Binary files /dev/null and b/ClientApp/app/css/images/au-itr_large.jpg differ diff --git a/ClientApp/app/css/images/au_abn.jpg b/ClientApp/app/css/images/au_abn.jpg new file mode 100644 index 00000000..5849b16e Binary files /dev/null and b/ClientApp/app/css/images/au_abn.jpg differ diff --git a/ClientApp/app/css/images/au_abn_large.jpg b/ClientApp/app/css/images/au_abn_large.jpg new file mode 100644 index 00000000..f0e4e23b Binary files /dev/null and b/ClientApp/app/css/images/au_abn_large.jpg differ diff --git a/ClientApp/app/css/images/au_superannuation.jpg b/ClientApp/app/css/images/au_superannuation.jpg new file mode 100644 index 00000000..b6fd498d Binary files /dev/null and b/ClientApp/app/css/images/au_superannuation.jpg differ diff --git a/ClientApp/app/css/images/au_superannuation2.jpg b/ClientApp/app/css/images/au_superannuation2.jpg new file mode 100644 index 00000000..2f150830 Binary files /dev/null and b/ClientApp/app/css/images/au_superannuation2.jpg differ diff --git a/ClientApp/app/css/images/au_superannuation2_large.jpg b/ClientApp/app/css/images/au_superannuation2_large.jpg new file mode 100644 index 00000000..7fcfda62 Binary files /dev/null and b/ClientApp/app/css/images/au_superannuation2_large.jpg differ diff --git a/ClientApp/app/css/images/au_superannuation_large.jpg b/ClientApp/app/css/images/au_superannuation_large.jpg new file mode 100644 index 00000000..d5bb2a17 Binary files /dev/null and b/ClientApp/app/css/images/au_superannuation_large.jpg differ diff --git a/ClientApp/app/css/images/au_tfn.jpg b/ClientApp/app/css/images/au_tfn.jpg new file mode 100644 index 00000000..cde5908a Binary files /dev/null and b/ClientApp/app/css/images/au_tfn.jpg differ diff --git a/ClientApp/app/css/images/au_tfn_large.jpg b/ClientApp/app/css/images/au_tfn_large.jpg new file mode 100644 index 00000000..4c8bdafa Binary files /dev/null and b/ClientApp/app/css/images/au_tfn_large.jpg differ diff --git a/ClientApp/app/css/images/australia_fluttering_flag_64.png b/ClientApp/app/css/images/australia_fluttering_flag_64.png new file mode 100644 index 00000000..5c70e63b Binary files /dev/null and b/ClientApp/app/css/images/australia_fluttering_flag_64.png differ diff --git a/ClientApp/app/css/images/browser.png b/ClientApp/app/css/images/browser.png new file mode 100644 index 00000000..f7afd9ed Binary files /dev/null and b/ClientApp/app/css/images/browser.png differ diff --git a/ClientApp/app/css/images/c1.png b/ClientApp/app/css/images/c1.png new file mode 100644 index 00000000..21278682 Binary files /dev/null and b/ClientApp/app/css/images/c1.png differ diff --git a/ClientApp/app/css/images/c2.png b/ClientApp/app/css/images/c2.png new file mode 100644 index 00000000..9e08763a Binary files /dev/null and b/ClientApp/app/css/images/c2.png differ diff --git a/ClientApp/app/css/images/c3.png b/ClientApp/app/css/images/c3.png new file mode 100644 index 00000000..13d0bdc1 Binary files /dev/null and b/ClientApp/app/css/images/c3.png differ diff --git a/ClientApp/app/css/images/c4.png b/ClientApp/app/css/images/c4.png new file mode 100644 index 00000000..f9c738e5 Binary files /dev/null and b/ClientApp/app/css/images/c4.png differ diff --git a/ClientApp/app/css/images/c5.png b/ClientApp/app/css/images/c5.png new file mode 100644 index 00000000..f3537fdf Binary files /dev/null and b/ClientApp/app/css/images/c5.png differ diff --git a/ClientApp/app/css/images/c6.png b/ClientApp/app/css/images/c6.png new file mode 100644 index 00000000..397a618d Binary files /dev/null and b/ClientApp/app/css/images/c6.png differ diff --git a/ClientApp/app/css/images/c7.png b/ClientApp/app/css/images/c7.png new file mode 100644 index 00000000..4f0e5f2d Binary files /dev/null and b/ClientApp/app/css/images/c7.png differ diff --git a/ClientApp/app/css/images/c8.png b/ClientApp/app/css/images/c8.png new file mode 100644 index 00000000..3ebfc3b2 Binary files /dev/null and b/ClientApp/app/css/images/c8.png differ diff --git a/ClientApp/app/css/images/company_logo.png b/ClientApp/app/css/images/company_logo.png new file mode 100644 index 00000000..a816a343 Binary files /dev/null and b/ClientApp/app/css/images/company_logo.png differ diff --git a/ClientApp/app/css/images/decor_inside.png b/ClientApp/app/css/images/decor_inside.png new file mode 100644 index 00000000..02f3321e Binary files /dev/null and b/ClientApp/app/css/images/decor_inside.png differ diff --git a/ClientApp/app/css/images/decor_inside_white.png b/ClientApp/app/css/images/decor_inside_white.png new file mode 100644 index 00000000..a3679f14 Binary files /dev/null and b/ClientApp/app/css/images/decor_inside_white.png differ diff --git a/ClientApp/app/css/images/decor_testimonial.png b/ClientApp/app/css/images/decor_testimonial.png new file mode 100644 index 00000000..949e5644 Binary files /dev/null and b/ClientApp/app/css/images/decor_testimonial.png differ diff --git a/ClientApp/app/css/images/favicon.png b/ClientApp/app/css/images/favicon.png new file mode 100644 index 00000000..985a53c9 Binary files /dev/null and b/ClientApp/app/css/images/favicon.png differ diff --git a/ClientApp/app/css/images/gettaxsolutions_logo2.png b/ClientApp/app/css/images/gettaxsolutions_logo2.png new file mode 100644 index 00000000..8c097bd9 Binary files /dev/null and b/ClientApp/app/css/images/gettaxsolutions_logo2.png differ diff --git a/ClientApp/app/css/images/gradient/g30.png b/ClientApp/app/css/images/gradient/g30.png new file mode 100644 index 00000000..48595b75 Binary files /dev/null and b/ClientApp/app/css/images/gradient/g30.png differ diff --git a/ClientApp/app/css/images/gradient/g40.png b/ClientApp/app/css/images/gradient/g40.png new file mode 100644 index 00000000..d82af00c Binary files /dev/null and b/ClientApp/app/css/images/gradient/g40.png differ diff --git a/ClientApp/app/css/images/hands-on-kb.jpg b/ClientApp/app/css/images/hands-on-kb.jpg new file mode 100644 index 00000000..99668547 Binary files /dev/null and b/ClientApp/app/css/images/hands-on-kb.jpg differ diff --git a/ClientApp/app/css/images/icons/ajaxloader.gif b/ClientApp/app/css/images/icons/ajaxloader.gif new file mode 100644 index 00000000..3c329ffe Binary files /dev/null and b/ClientApp/app/css/images/icons/ajaxloader.gif differ diff --git a/ClientApp/app/css/images/icons/grabbing.png b/ClientApp/app/css/images/icons/grabbing.png new file mode 100644 index 00000000..85491df0 Binary files /dev/null and b/ClientApp/app/css/images/icons/grabbing.png differ diff --git a/ClientApp/app/css/images/icons/loader.gif b/ClientApp/app/css/images/icons/loader.gif new file mode 100644 index 00000000..53dd589f Binary files /dev/null and b/ClientApp/app/css/images/icons/loader.gif differ diff --git a/ClientApp/app/css/images/laptop-with-blank-screen-on-white.jpg b/ClientApp/app/css/images/laptop-with-blank-screen-on-white.jpg new file mode 100644 index 00000000..bcb06147 Binary files /dev/null and b/ClientApp/app/css/images/laptop-with-blank-screen-on-white.jpg differ diff --git a/ClientApp/app/css/images/laptop111.png b/ClientApp/app/css/images/laptop111.png new file mode 100644 index 00000000..a880e5e4 Binary files /dev/null and b/ClientApp/app/css/images/laptop111.png differ diff --git a/ClientApp/app/css/images/lightbox/close.png b/ClientApp/app/css/images/lightbox/close.png new file mode 100644 index 00000000..e802c69d Binary files /dev/null and b/ClientApp/app/css/images/lightbox/close.png differ diff --git a/ClientApp/app/css/images/lightbox/close@2x.png b/ClientApp/app/css/images/lightbox/close@2x.png new file mode 100644 index 00000000..60b37fa2 Binary files /dev/null and b/ClientApp/app/css/images/lightbox/close@2x.png differ diff --git a/ClientApp/app/css/images/lightbox/loading.GIF b/ClientApp/app/css/images/lightbox/loading.GIF new file mode 100644 index 00000000..a1789564 Binary files /dev/null and b/ClientApp/app/css/images/lightbox/loading.GIF differ diff --git a/ClientApp/app/css/images/lightbox/loading@2x.GIF b/ClientApp/app/css/images/lightbox/loading@2x.GIF new file mode 100644 index 00000000..c866f881 Binary files /dev/null and b/ClientApp/app/css/images/lightbox/loading@2x.GIF differ diff --git a/ClientApp/app/css/images/lightbox/next.png b/ClientApp/app/css/images/lightbox/next.png new file mode 100644 index 00000000..462b64e4 Binary files /dev/null and b/ClientApp/app/css/images/lightbox/next.png differ diff --git a/ClientApp/app/css/images/lightbox/next@2x.png b/ClientApp/app/css/images/lightbox/next@2x.png new file mode 100644 index 00000000..f246ae93 Binary files /dev/null and b/ClientApp/app/css/images/lightbox/next@2x.png differ diff --git a/ClientApp/app/css/images/lightbox/prev.png b/ClientApp/app/css/images/lightbox/prev.png new file mode 100644 index 00000000..eda62a7e Binary files /dev/null and b/ClientApp/app/css/images/lightbox/prev.png differ diff --git a/ClientApp/app/css/images/lightbox/prev@2x.png b/ClientApp/app/css/images/lightbox/prev@2x.png new file mode 100644 index 00000000..49a2e4d6 Binary files /dev/null and b/ClientApp/app/css/images/lightbox/prev@2x.png differ diff --git a/ClientApp/app/css/images/loader.gif b/ClientApp/app/css/images/loader.gif new file mode 100644 index 00000000..7746bd30 Binary files /dev/null and b/ClientApp/app/css/images/loader.gif differ diff --git a/ClientApp/app/css/images/logo-icon.png b/ClientApp/app/css/images/logo-icon.png new file mode 100644 index 00000000..44e331e4 Binary files /dev/null and b/ClientApp/app/css/images/logo-icon.png differ diff --git a/ClientApp/app/css/images/macbook.png b/ClientApp/app/css/images/macbook.png new file mode 100644 index 00000000..1649df27 Binary files /dev/null and b/ClientApp/app/css/images/macbook.png differ diff --git a/ClientApp/app/css/images/map.png b/ClientApp/app/css/images/map.png new file mode 100644 index 00000000..2d1687cb Binary files /dev/null and b/ClientApp/app/css/images/map.png differ diff --git a/ClientApp/app/css/images/marker.png b/ClientApp/app/css/images/marker.png new file mode 100644 index 00000000..8325f1c1 Binary files /dev/null and b/ClientApp/app/css/images/marker.png differ diff --git a/ClientApp/app/css/images/new_zealand_fluttering_flag_64.png b/ClientApp/app/css/images/new_zealand_fluttering_flag_64.png new file mode 100644 index 00000000..afab4ed5 Binary files /dev/null and b/ClientApp/app/css/images/new_zealand_fluttering_flag_64.png differ diff --git a/ClientApp/app/css/images/nz-ird.jpg b/ClientApp/app/css/images/nz-ird.jpg new file mode 100644 index 00000000..ca6b737e Binary files /dev/null and b/ClientApp/app/css/images/nz-ird.jpg differ diff --git a/ClientApp/app/css/images/nz-ird2.jpg b/ClientApp/app/css/images/nz-ird2.jpg new file mode 100644 index 00000000..7e67ed6d Binary files /dev/null and b/ClientApp/app/css/images/nz-ird2.jpg differ diff --git a/ClientApp/app/css/images/nz-ird2_large.jpg b/ClientApp/app/css/images/nz-ird2_large.jpg new file mode 100644 index 00000000..89df8306 Binary files /dev/null and b/ClientApp/app/css/images/nz-ird2_large.jpg differ diff --git a/ClientApp/app/css/images/nz-ird_large.jpg b/ClientApp/app/css/images/nz-ird_large.jpg new file mode 100644 index 00000000..fd4fe38b Binary files /dev/null and b/ClientApp/app/css/images/nz-ird_large.jpg differ diff --git a/ClientApp/app/css/images/nz-itr.jpg b/ClientApp/app/css/images/nz-itr.jpg new file mode 100644 index 00000000..01c6459c Binary files /dev/null and b/ClientApp/app/css/images/nz-itr.jpg differ diff --git a/ClientApp/app/css/images/nz-itr_large.jpg b/ClientApp/app/css/images/nz-itr_large.jpg new file mode 100644 index 00000000..5712e153 Binary files /dev/null and b/ClientApp/app/css/images/nz-itr_large.jpg differ diff --git a/ClientApp/app/css/images/patterns/1.png b/ClientApp/app/css/images/patterns/1.png new file mode 100644 index 00000000..37fcd078 Binary files /dev/null and b/ClientApp/app/css/images/patterns/1.png differ diff --git a/ClientApp/app/css/images/patterns/10.png b/ClientApp/app/css/images/patterns/10.png new file mode 100644 index 00000000..8c6bb568 Binary files /dev/null and b/ClientApp/app/css/images/patterns/10.png differ diff --git a/ClientApp/app/css/images/patterns/11.png b/ClientApp/app/css/images/patterns/11.png new file mode 100644 index 00000000..e19a7a60 Binary files /dev/null and b/ClientApp/app/css/images/patterns/11.png differ diff --git a/ClientApp/app/css/images/patterns/12.png b/ClientApp/app/css/images/patterns/12.png new file mode 100644 index 00000000..6e01b3d6 Binary files /dev/null and b/ClientApp/app/css/images/patterns/12.png differ diff --git a/ClientApp/app/css/images/patterns/13.png b/ClientApp/app/css/images/patterns/13.png new file mode 100644 index 00000000..20922820 Binary files /dev/null and b/ClientApp/app/css/images/patterns/13.png differ diff --git a/ClientApp/app/css/images/patterns/14.png b/ClientApp/app/css/images/patterns/14.png new file mode 100644 index 00000000..0557b66e Binary files /dev/null and b/ClientApp/app/css/images/patterns/14.png differ diff --git a/ClientApp/app/css/images/patterns/2.png b/ClientApp/app/css/images/patterns/2.png new file mode 100644 index 00000000..fcc321d7 Binary files /dev/null and b/ClientApp/app/css/images/patterns/2.png differ diff --git a/ClientApp/app/css/images/patterns/3.png b/ClientApp/app/css/images/patterns/3.png new file mode 100644 index 00000000..fe1a40d7 Binary files /dev/null and b/ClientApp/app/css/images/patterns/3.png differ diff --git a/ClientApp/app/css/images/patterns/4.png b/ClientApp/app/css/images/patterns/4.png new file mode 100644 index 00000000..ca28fcf8 Binary files /dev/null and b/ClientApp/app/css/images/patterns/4.png differ diff --git a/ClientApp/app/css/images/patterns/5.png b/ClientApp/app/css/images/patterns/5.png new file mode 100644 index 00000000..a8f2a852 Binary files /dev/null and b/ClientApp/app/css/images/patterns/5.png differ diff --git a/ClientApp/app/css/images/patterns/6.png b/ClientApp/app/css/images/patterns/6.png new file mode 100644 index 00000000..66464831 Binary files /dev/null and b/ClientApp/app/css/images/patterns/6.png differ diff --git a/ClientApp/app/css/images/patterns/7.png b/ClientApp/app/css/images/patterns/7.png new file mode 100644 index 00000000..f135b782 Binary files /dev/null and b/ClientApp/app/css/images/patterns/7.png differ diff --git a/ClientApp/app/css/images/patterns/8.png b/ClientApp/app/css/images/patterns/8.png new file mode 100644 index 00000000..d54e8899 Binary files /dev/null and b/ClientApp/app/css/images/patterns/8.png differ diff --git a/ClientApp/app/css/images/patterns/9.png b/ClientApp/app/css/images/patterns/9.png new file mode 100644 index 00000000..fc037113 Binary files /dev/null and b/ClientApp/app/css/images/patterns/9.png differ diff --git a/ClientApp/app/css/images/portfolio-01.jpg b/ClientApp/app/css/images/portfolio-01.jpg new file mode 100644 index 00000000..1cf4fbc4 Binary files /dev/null and b/ClientApp/app/css/images/portfolio-01.jpg differ diff --git a/ClientApp/app/css/images/portfolio-02.jpg b/ClientApp/app/css/images/portfolio-02.jpg new file mode 100644 index 00000000..d5497584 Binary files /dev/null and b/ClientApp/app/css/images/portfolio-02.jpg differ diff --git a/ClientApp/app/css/images/portfolio-03.jpg b/ClientApp/app/css/images/portfolio-03.jpg new file mode 100644 index 00000000..524c9fbe Binary files /dev/null and b/ClientApp/app/css/images/portfolio-03.jpg differ diff --git a/ClientApp/app/css/images/portfolio-04.jpg b/ClientApp/app/css/images/portfolio-04.jpg new file mode 100644 index 00000000..2e9ddc65 Binary files /dev/null and b/ClientApp/app/css/images/portfolio-04.jpg differ diff --git a/ClientApp/app/css/images/portfolio-05.jpg b/ClientApp/app/css/images/portfolio-05.jpg new file mode 100644 index 00000000..d3557a25 Binary files /dev/null and b/ClientApp/app/css/images/portfolio-05.jpg differ diff --git a/ClientApp/app/css/images/portfolio-06.jpg b/ClientApp/app/css/images/portfolio-06.jpg new file mode 100644 index 00000000..8e7ac17d Binary files /dev/null and b/ClientApp/app/css/images/portfolio-06.jpg differ diff --git a/ClientApp/app/css/images/portfolio-07.jpg b/ClientApp/app/css/images/portfolio-07.jpg new file mode 100644 index 00000000..9c88969c Binary files /dev/null and b/ClientApp/app/css/images/portfolio-07.jpg differ diff --git a/ClientApp/app/css/images/portfolio-08.jpg b/ClientApp/app/css/images/portfolio-08.jpg new file mode 100644 index 00000000..019427f9 Binary files /dev/null and b/ClientApp/app/css/images/portfolio-08.jpg differ diff --git a/ClientApp/app/css/images/portfolio-09.jpg b/ClientApp/app/css/images/portfolio-09.jpg new file mode 100644 index 00000000..632d52ae Binary files /dev/null and b/ClientApp/app/css/images/portfolio-09.jpg differ diff --git a/ClientApp/app/css/images/service-ABN.jpg b/ClientApp/app/css/images/service-ABN.jpg new file mode 100644 index 00000000..096556b5 Binary files /dev/null and b/ClientApp/app/css/images/service-ABN.jpg differ diff --git a/ClientApp/app/css/images/service-Australian Income.jpg b/ClientApp/app/css/images/service-Australian Income.jpg new file mode 100644 index 00000000..bc3fca90 Binary files /dev/null and b/ClientApp/app/css/images/service-Australian Income.jpg differ diff --git a/ClientApp/app/css/images/service-IRD Number.jpg b/ClientApp/app/css/images/service-IRD Number.jpg new file mode 100644 index 00000000..e3ff7e5e Binary files /dev/null and b/ClientApp/app/css/images/service-IRD Number.jpg differ diff --git a/ClientApp/app/css/images/service-NZ Income.jpg b/ClientApp/app/css/images/service-NZ Income.jpg new file mode 100644 index 00000000..de2b27d2 Binary files /dev/null and b/ClientApp/app/css/images/service-NZ Income.jpg differ diff --git a/ClientApp/app/css/images/service-Superannuation.jpg b/ClientApp/app/css/images/service-Superannuation.jpg new file mode 100644 index 00000000..a53c69dc Binary files /dev/null and b/ClientApp/app/css/images/service-Superannuation.jpg differ diff --git a/ClientApp/app/css/images/service-TFN.jpg b/ClientApp/app/css/images/service-TFN.jpg new file mode 100644 index 00000000..1f3ec9e0 Binary files /dev/null and b/ClientApp/app/css/images/service-TFN.jpg differ diff --git a/ClientApp/app/css/images/slide-01-bg.jpg b/ClientApp/app/css/images/slide-01-bg.jpg new file mode 100644 index 00000000..6a1914c6 Binary files /dev/null and b/ClientApp/app/css/images/slide-01-bg.jpg differ diff --git a/ClientApp/app/css/images/slide-01-image-01.png b/ClientApp/app/css/images/slide-01-image-01.png new file mode 100644 index 00000000..c989a8ab Binary files /dev/null and b/ClientApp/app/css/images/slide-01-image-01.png differ diff --git a/ClientApp/app/css/images/slide-01-image-02.png b/ClientApp/app/css/images/slide-01-image-02.png new file mode 100644 index 00000000..25e18b3f Binary files /dev/null and b/ClientApp/app/css/images/slide-01-image-02.png differ diff --git a/ClientApp/app/css/images/slide-02-bg.jpg b/ClientApp/app/css/images/slide-02-bg.jpg new file mode 100644 index 00000000..22b398e1 Binary files /dev/null and b/ClientApp/app/css/images/slide-02-bg.jpg differ diff --git a/ClientApp/app/css/images/slide-02-bg_large.jpg b/ClientApp/app/css/images/slide-02-bg_large.jpg new file mode 100644 index 00000000..268e9ad8 Binary files /dev/null and b/ClientApp/app/css/images/slide-02-bg_large.jpg differ diff --git a/ClientApp/app/css/images/slide-02-image-01.png b/ClientApp/app/css/images/slide-02-image-01.png new file mode 100644 index 00000000..4c5b5d90 Binary files /dev/null and b/ClientApp/app/css/images/slide-02-image-01.png differ diff --git a/ClientApp/app/css/images/slide-03-bg.jpg b/ClientApp/app/css/images/slide-03-bg.jpg new file mode 100644 index 00000000..7f87da04 Binary files /dev/null and b/ClientApp/app/css/images/slide-03-bg.jpg differ diff --git a/ClientApp/app/css/images/slide-03-image-01.png b/ClientApp/app/css/images/slide-03-image-01.png new file mode 100644 index 00000000..ce14d667 Binary files /dev/null and b/ClientApp/app/css/images/slide-03-image-01.png differ diff --git a/ClientApp/app/css/images/slide-03-image-02.png b/ClientApp/app/css/images/slide-03-image-02.png new file mode 100644 index 00000000..ee3c523a Binary files /dev/null and b/ClientApp/app/css/images/slide-03-image-02.png differ diff --git a/ClientApp/app/css/images/under-construction.gif b/ClientApp/app/css/images/under-construction.gif new file mode 100644 index 00000000..dede0eba Binary files /dev/null and b/ClientApp/app/css/images/under-construction.gif differ diff --git a/ClientApp/app/css/images/vella-pic.png b/ClientApp/app/css/images/vella-pic.png new file mode 100644 index 00000000..8072aa52 Binary files /dev/null and b/ClientApp/app/css/images/vella-pic.png differ diff --git a/ClientApp/app/css/images/vella.png b/ClientApp/app/css/images/vella.png new file mode 100644 index 00000000..29f4356c Binary files /dev/null and b/ClientApp/app/css/images/vella.png differ diff --git a/ClientApp/app/css/images/vella2.png b/ClientApp/app/css/images/vella2.png new file mode 100644 index 00000000..f6a764ca Binary files /dev/null and b/ClientApp/app/css/images/vella2.png differ diff --git a/ClientApp/app/css/images/video/flashmediaelement.swf b/ClientApp/app/css/images/video/flashmediaelement.swf new file mode 100644 index 00000000..c5d205a0 Binary files /dev/null and b/ClientApp/app/css/images/video/flashmediaelement.swf differ diff --git a/ClientApp/app/css/images/video/poster.gif b/ClientApp/app/css/images/video/poster.gif new file mode 100644 index 00000000..96712480 Binary files /dev/null and b/ClientApp/app/css/images/video/poster.gif differ diff --git a/ClientApp/app/css/images/video/poster.jpg b/ClientApp/app/css/images/video/poster.jpg new file mode 100644 index 00000000..72839127 Binary files /dev/null and b/ClientApp/app/css/images/video/poster.jpg differ diff --git a/ClientApp/app/css/images/video/video.mp4 b/ClientApp/app/css/images/video/video.mp4 new file mode 100644 index 00000000..c4ff59a7 Binary files /dev/null and b/ClientApp/app/css/images/video/video.mp4 differ diff --git a/ClientApp/app/css/images/video/video.ogv b/ClientApp/app/css/images/video/video.ogv new file mode 100644 index 00000000..ea4c68d4 Binary files /dev/null and b/ClientApp/app/css/images/video/video.ogv differ diff --git a/ClientApp/app/css/images/video/video.webm b/ClientApp/app/css/images/video/video.webm new file mode 100644 index 00000000..368fdbf2 Binary files /dev/null and b/ClientApp/app/css/images/video/video.webm differ diff --git a/ClientApp/app/css/responsive.scss b/ClientApp/app/css/responsive.scss new file mode 100644 index 00000000..770e37d2 --- /dev/null +++ b/ClientApp/app/css/responsive.scss @@ -0,0 +1,321 @@ +@media (max-width: 1200px) { + + .navbar-default .navbar-toggle, .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus { + background: #fff; + padding: 8px 5px 6px 5px; + } + + .navbar-default .navbar-toggle i { + color: #bbb; + font-size: 2em; + } + + .quote-buttons span { + margin: 0 2px; + } + + .flickr-widget ul li { + margin-left: 0px; + margin-right: 7px; + } + + .subscribe-widget form input[type="text"] { + margin-bottom: 10px; + } + + .history-content p { + max-height: 36px; + line-height: 20px; + overflow: hidden; + } + + .projects-carousel { + width: 950px!important; + } +} + +@media (max-width: 991px) { + + .boxed-page, .boxed-page header { + width: 100%; + } + + .tp-caption a.btn-system { + font-size: 6px; + padding: 2px 4px; + } + + .navbar-brand { + padding-top: 8px !important; + padding-bottom: 8px !important; /*padding: 25px 15px;*/ + width: 75% !important; + } + + .navbar-default .navbar-nav { + margin: 0 !important; + top: 0; + } + + ul.social-list { + float: none !important; + text-align: center; + } + + ul.social-list li { + float: none !important; + display: inline-block; + } + + .quote-buttons { + text-align: center; + } + + .copyright-section { + text-align: center; + } + + ul.footer-nav { + float: none !important; + text-align: center; + margin-top: 10px; + } + + .page-banner { + text-align: center; + } + + ul.breadcrumbs { + float: none; + } + + ul.breadcrumbs li { + float: none; + display: inline-block; + float: left; + } + + .portfolio-4 .portfolio-item { + width: 49.99%!important; + padding-left: 15px; + padding-right: 15px; + margin-bottom: 30px; + } + + .projects-carousel { + width: 100% !important; + } + + .pricing-tables .pricing-table { + width: 50% !important; + margin-bottom: 15px; + } + + .pricing-tables .highlight-plan { + margin: 0; + } + + .pricing-tables .pricing-table.highlight-plan .plan-name { + padding: 15px 0; + } + + .pricing-tables .pricing-table.highlight-plan .plan-signup { + padding:25px 0; + } + + .pricing-tables .pricing-table:hover { + top: 0; + } + +} + +@media (max-width: 768px) { + + .contact-details { + display: none; + } + + .tp-leftarrow, + .tp-rightarrow { + display: none!important; + } + + .tp-caption a.btn-system { + display: none; + } + + .history-box img { + float: none; + width: 100%; + } + + .history-content { + float: none; + width: 100% !important; + } + + .history-box span.history-date { + right: inherit; + left: 15px; + } + + .portfolio-filter li { + margin-bottom: 8px; + } + + .portfolio-4 .portfolio-item { + width: 100%!important; + padding-left: 15px; + padding-right: 15px; + margin-bottom: 20px; + } + + .milestone-block { + margin-bottom: 20px; + margin-right: 45px; + } + +} +@media only screen and (max-width: 479px) { + + .top-bar { + text-align: center; + } + + .navbar-default .navbar-nav { + padding: 15px 0; + } + + .show-search, .search-form { + display: none; + } + + ul.social-list li { + margin: 0 3px; + } + + ul.social-list li a i { + font-size: 0.9em; + display: block; + width: auto; + line-height: 30px; + border: none!important; + } + + ul.social-list li a:hover { + background-color: transparent!important; + } + + ul.social-list li a.facebook:hover { + color: #507CBE; + } + + ul.social-list li a.twitter:hover { + color: #63CDF1; + } + + ul.social-list li a.google:hover { + color: #F16261; + } + + ul.social-list li a.dribbble:hover { + color: #E46387; + } + + ul.social-list li a.linkdin:hover { + color: #90CADD; + } + + ul.social-list li a.tumblr:hover { + color: #4D7EA3; + } + + ul.social-list li a.flickr:hover { + color: #E474AF; + } + + ul.social-list li a.instgram:hover { + color: #4D4F54; + } + + ul.social-list li a.vimeo:hover { + color: #87D3E0; + } + + ul.social-list li a.skype:hover { + color: #36C4F3 + } + + .navbar-default .navbar-toggle { + margin-top: 15px; + outline: none; + } + + .navbar-default .navbar-nav > li > a { + border: none; + padding: 5px 10px; + display: block; + border: none !important; + padding-right: 0; + } + + .navbar-default .navbar-nav > li > a:after { + display: none; + } + + .navbar-default .navbar-nav > li > a:hover { + opacity: 0.7; + } + + .navbar-default .navbar-nav > li { + margin-left: 0; + display: block; + margin-bottom: 5px; + width: 100% + } + + .navbar-default .navbar-nav > li.drop > a { + padding-right: 10px; + } + + .navbar-default .navbar-nav > li.drop > a { + border-radius: 2px; + } + + ul.dropdown, ul.sup-dropdown { + opacity: 1!important; + position: relative !important; + visibility: visible !important; + width: 100% !important; + top: inherit !important; + left: 0 !important; + margin-top: 0 !important; + background: #fff !important; + padding-left: 20px !important; + box-shadow: none !important; + } + + ul.dropdown li, ul.sup-dropdown li { + border-top: none; + } + + .milestone-block { + display: block; + clear: left; + margin-right: 0; + } + + .btn-system { + margin-bottom: 10px; + } + + .easyPieChart { + font-size: 24px; + font-weight: 400; + position: relative; + text-align: center; + display: inline-block; + margin: 0 0 20px 0; + overflow: hidden; + } + +} diff --git a/ClientApp/app/css/settings.scss b/ClientApp/app/css/settings.scss new file mode 100644 index 00000000..6a0f2af2 --- /dev/null +++ b/ClientApp/app/css/settings.scss @@ -0,0 +1,1389 @@ +/*----------------------------------------------------------------------------- + + - Revolution Slider 4.1 Captions - + + Screen Stylesheet + +version: 1.4.5 +date: 27/11/13 +author: themepunch +email: info@themepunch.com +website: http://www.themepunch.com +-----------------------------------------------------------------------------*/ + + + +/************************* + - CAPTIONS - +**************************/ + +.tp-hide-revslider,.tp-caption.tp-hidden-caption { visibility:hidden !important; display:none !important;} + + +.tp-caption { z-index:1;} + +.tp-caption-demo .tp-caption { position:relative !important; display:inline-block; margin-bottom:10px; margin-right:20px !important;} + +.tp-caption.medium_grey { +position:absolute; +color:#fff; +text-shadow:0px 2px 5px rgba(0, 0, 0, 0.5); +font-weight:700; +font-size:20px; +line-height:20px; +font-family:Arial; +padding:2px 4px; +margin:0px; +border-width:0px; +border-style:none; +background-color:#888; +white-space:nowrap; +} + +.tp-caption.small_text { +position:absolute; +color:#fff; +text-shadow:0px 2px 5px rgba(0, 0, 0, 0.5); +font-weight:700; +font-size:14px; +line-height:20px; +font-family:Arial; +margin:0px; +border-width:0px; +border-style:none; +white-space:nowrap; +} + +.tp-caption.medium_text { +position:absolute; +color:#fff; +text-shadow:0px 2px 5px rgba(0, 0, 0, 0.5); +font-weight:700; +font-size:20px; +line-height:20px; +font-family:Arial; +margin:0px; +border-width:0px; +border-style:none; +white-space:nowrap; +} + + +.tp-caption.large_bold_white_25 { +font-size:55px; +line-height:65px; +font-weight:700; +font-family:"Open Sans"; +color:#fff; +text-decoration:none; +background-color:transparent; +text-align:center; +text-shadow:#000 0px 5px 10px; +border-width:0px; +border-color:rgb(255, 255, 255); +border-style:none; +} + +.tp-caption.medium_text_shadow { +font-size:25px; +line-height:25px; +font-weight:600; +font-family:"Open Sans"; +color:#fff; +text-decoration:none; +background-color:transparent; +text-align:center; +text-shadow:#000 0px 5px 10px; +border-width:0px; +border-color:rgb(255, 255, 255); +border-style:none; +} + +.tp-caption.large_text { +position:absolute; +color:#fff; +text-shadow:0px 2px 5px rgba(0, 0, 0, 0.5); +font-weight:700; +font-size:40px; +line-height:40px; +font-family:Arial; +margin:0px; +border-width:0px; +border-style:none; +white-space:nowrap; +} + +.tp-caption.very_large_text { +position:absolute; +color:#fff; +text-shadow:0px 2px 5px rgba(0, 0, 0, 0.5); +font-weight:700; +font-size:60px; +line-height:60px; +font-family:Arial; +margin:0px; +border-width:0px; +border-style:none; +white-space:nowrap; +letter-spacing:-2px; +} + +.tp-caption.very_big_white { +position:absolute; +color:#fff; +text-shadow:none; +font-weight:800; +font-size:60px; +line-height:60px; +font-family:Arial; +margin:0px; +border-width:0px; +border-style:none; +white-space:nowrap; +padding:0px 4px; +padding-top:1px; +background-color:#000; +} + +.tp-caption.very_big_black { +position:absolute; +color:#000; +text-shadow:none; +font-weight:700; +font-size:60px; +line-height:60px; +font-family:Arial; +margin:0px; +border-width:0px; +border-style:none; +white-space:nowrap; +padding:0px 4px; +padding-top:1px; +background-color:#fff; +} + +.tp-caption.modern_medium_fat { +position:absolute; +color:#000; +text-shadow:none; +font-weight:800; +font-size:24px; +line-height:20px; +font-family:"Open Sans", sans-serif; +margin:0px; +border-width:0px; +border-style:none; +white-space:nowrap; +} + +.tp-caption.modern_medium_fat_white { +position:absolute; +color:#fff; +text-shadow:none; +font-weight:800; +font-size:24px; +line-height:20px; +font-family:"Open Sans", sans-serif; +margin:0px; +border-width:0px; +border-style:none; +white-space:nowrap; +} + +.tp-caption.modern_medium_light { +position:absolute; +color:#000; +text-shadow:none; +font-weight:300; +font-size:24px; +line-height:20px; +font-family:"Open Sans", sans-serif; +margin:0px; +border-width:0px; +border-style:none; +white-space:nowrap; +} + +.tp-caption.modern_big_bluebg { +position:absolute; +color:#fff; +text-shadow:none; +font-weight:800; +font-size:30px; +line-height:36px; +font-family:"Open Sans", sans-serif; +padding:3px 10px; +margin:0px; +border-width:0px; +border-style:none; +background-color:#4e5b6c; +letter-spacing:0; +} + +.tp-caption.modern_big_redbg { +position:absolute; +color:#fff; +text-shadow:none; +font-weight:300; +font-size:30px; +line-height:36px; +font-family:"Open Sans", sans-serif; +padding:3px 10px; +padding-top:1px; +margin:0px; +border-width:0px; +border-style:none; +background-color:#de543e; +letter-spacing:0; +} + +.tp-caption.modern_small_text_dark { +position:absolute; +color:#555; +text-shadow:none; +font-size:14px; +line-height:22px; +font-family:Arial; +margin:0px; +border-width:0px; +border-style:none; +white-space:nowrap; +} + +.tp-caption.boxshadow { +-moz-box-shadow:0px 0px 20px rgba(0, 0, 0, 0.5); +-webkit-box-shadow:0px 0px 20px rgba(0, 0, 0, 0.5); +box-shadow:0px 0px 20px rgba(0, 0, 0, 0.5); +} + +.tp-caption.black { +color:#000; +text-shadow:none; +} + +.tp-caption.noshadow { +text-shadow:none; +} + + +.tp-caption.thinheadline_dark { +position:absolute; +color:rgba(0,0,0,0.85); +text-shadow:none; +font-weight:300; +font-size:30px; +line-height:30px; +font-family:"Open Sans"; +background-color:transparent; +} + +.tp-caption.thintext_dark { +position:absolute; +color:rgba(0,0,0,0.85); +text-shadow:none; +font-weight:300; +font-size:16px; +line-height:26px; +font-family:"Open Sans"; +background-color:transparent; +} + +.tp-caption.medium_bg_red a { + color: #fff; + text-decoration: none; +} + +.tp-caption.medium_bg_red a:hover { + color: #fff; + text-decoration: underline; +} + +.tp-caption.smoothcircle { +font-size:30px; +line-height:75px; +font-weight:800; +font-family:"Open Sans"; +color:rgb(255, 255, 255); +text-decoration:none; +background-color:rgb(0, 0, 0); +background-color:rgba(0, 0, 0, 0.498039); +padding:50px 25px; +text-align:center; +border-radius:500px 500px 500px 500px; +border-width:0px; +border-color:rgb(0, 0, 0); +border-style:none; +} + +.tp-caption.largeblackbg { +font-size:50px; +line-height:70px; +font-weight:300; +font-family:"Open Sans"; +color:rgb(255, 255, 255); +text-decoration:none; +background-color:rgb(0, 0, 0); +padding:0px 20px 5px; +text-shadow:none; +border-width:0px; +border-color:rgb(255, 255, 255); +border-style:none; +} + +.tp-caption.largepinkbg { +position:absolute; +color:#fff; +text-shadow:none; +font-weight:300; +font-size:50px; +line-height:70px; +font-family:"Open Sans"; +background-color:#db4360; +padding:0px 20px; +-webkit-border-radius:0px; +-moz-border-radius:0px; +border-radius:0px; +} + +.tp-caption.largewhitebg { +position:absolute; +color:#000; +text-shadow:none; +font-weight:300; +font-size:50px; +line-height:70px; +font-family:"Open Sans"; +background-color:#fff; +padding:0px 20px; +-webkit-border-radius:0px; +-moz-border-radius:0px; +border-radius:0px; +} + +.tp-caption.largegreenbg { +position:absolute; +color:#fff; +text-shadow:none; +font-weight:300; +font-size:50px; +line-height:70px; +font-family:"Open Sans"; +background-color:#67ae73; +padding:0px 20px; +-webkit-border-radius:0px; +-moz-border-radius:0px; +border-radius:0px; +} + +.tp-caption.excerpt { +font-size:36px; +line-height:36px; +font-weight:700; +font-family:Arial; +color:#ffffff; +text-decoration:none; +background-color:rgba(0, 0, 0, 1); +text-shadow:none; +margin:0px; +letter-spacing:-1.5px; +padding:1px 4px 0px 4px; +width:150px; +white-space:normal !important; +height:auto; +border-width:0px; +border-color:rgb(255, 255, 255); +border-style:none; +} + +.tp-caption.large_bold_grey { +font-size:60px; +line-height:60px; +font-weight:800; +font-family:"Open Sans"; +color:rgb(102, 102, 102); +text-decoration:none; +background-color:transparent; +text-shadow:none; +margin:0px; +padding:1px 4px 0px; +border-width:0px; +border-color:rgb(255, 214, 88); +border-style:none; +} + +.tp-caption.medium_thin_grey { +font-size:34px; +line-height:30px; +font-weight:300; +font-family:"Open Sans"; +color:rgb(102, 102, 102); +text-decoration:none; +background-color:transparent; +padding:1px 4px 0px; +text-shadow:none; +margin:0px; +border-width:0px; +border-color:rgb(255, 214, 88); +border-style:none; +} + +.tp-caption.small_thin_grey { +font-size:18px; +line-height:26px; +font-weight:300; +font-family:"Open Sans"; +color:rgb(117, 117, 117); +text-decoration:none; +background-color:transparent; +padding:1px 4px 0px; +text-shadow:none; +margin:0px; +border-width:0px; +border-color:rgb(255, 214, 88); +border-style:none; +} + +.tp-caption.lightgrey_divider { +text-decoration:none; +background-color:rgba(235, 235, 235, 1); +width:370px; +height:3px; +background-position:initial initial; +background-repeat:initial initial; +border-width:0px; +border-color:rgb(34, 34, 34); +border-style:none; +} + +.tp-caption.large_bold_darkblue { +font-size:58px; +line-height:60px; +font-weight:800; +font-family:"Open Sans"; +color:rgb(52, 73, 94); +text-decoration:none; +background-color:transparent; +border-width:0px; +border-color:rgb(255, 214, 88); +border-style:none; +} + +.tp-caption.medium_bg_darkblue { +font-size:20px; +line-height:20px; +font-weight:800; +font-family:"Open Sans"; +color:rgb(255, 255, 255); +text-decoration:none; +background-color:rgb(52, 73, 94); +padding:10px; +border-width:0px; +border-color:rgb(255, 214, 88); +border-style:none; +} + +.tp-caption.medium_bold_red { +font-size:24px; +line-height:30px; +font-weight:800; +font-family:"Open Sans"; +color:rgb(227, 58, 12); +text-decoration:none; +background-color:transparent; +padding:0px; +border-width:0px; +border-color:rgb(255, 214, 88); +border-style:none; +} + +.tp-caption.medium_light_red { +font-size:21px; +line-height:26px; +font-weight:300; +font-family:"Open Sans"; +color:rgb(227, 58, 12); +text-decoration:none; +background-color:transparent; +padding:0px; +border-width:0px; +border-color:rgb(255, 214, 88); +border-style:none; +} + +.tp-caption.medium_bg_red { +font-size:20px; +line-height:20px; +font-weight:800; +font-family:"Open Sans"; +color:rgb(255, 255, 255); +text-decoration:none; +background-color:rgb(227, 58, 12); +padding:10px; +border-width:0px; +border-color:rgb(255, 214, 88); +border-style:none; +} + +.tp-caption.medium_bold_orange { +font-size:24px; +line-height:30px; +font-weight:800; +font-family:"Open Sans"; +color:rgb(243, 156, 18); +text-decoration:none; +background-color:transparent; +border-width:0px; +border-color:rgb(255, 214, 88); +border-style:none; +} + +.tp-caption.medium_bg_orange { +font-size:20px; +line-height:20px; +font-weight:800; +font-family:"Open Sans"; +color:rgb(255, 255, 255); +text-decoration:none; +background-color:rgb(243, 156, 18); +padding:10px; +border-width:0px; +border-color:rgb(255, 214, 88); +border-style:none; +} + +.tp-caption.grassfloor { +text-decoration:none; +background-color:rgba(160, 179, 151, 1); +width:4000px; +height:150px; +border-width:0px; +border-color:rgb(34, 34, 34); +border-style:none; +} + +.tp-caption.large_bold_white { +font-size:58px; +line-height:60px; +font-weight:800; +font-family:"Open Sans"; +color:rgb(255, 255, 255); +text-decoration:none; +background-color:transparent; +border-width:0px; +border-color:rgb(255, 214, 88); +border-style:none; +} + +.tp-caption.medium_light_white { +font-size:30px; +line-height:36px; +font-weight:300; +font-family:"Open Sans"; +color:rgb(255, 255, 255); +text-decoration:none; +background-color:transparent; +padding:0px; +border-width:0px; +border-color:rgb(255, 214, 88); +border-style:none; +} + +.tp-caption.mediumlarge_light_white { +font-size:34px; +line-height:40px; +font-weight:300; +font-family:"Open Sans"; +color:rgb(255, 255, 255); +text-decoration:none; +background-color:transparent; +padding:0px; +border-width:0px; +border-color:rgb(255, 214, 88); +border-style:none; +} + +.tp-caption.mediumlarge_light_white_center { +font-size:34px; +line-height:40px; +font-weight:300; +font-family:"Open Sans"; +color:#ffffff; +text-decoration:none; +background-color:transparent; +padding:0px 0px 0px 0px; +text-align:center; +border-width:0px; +border-color:rgb(255, 214, 88); +border-style:none; +} + +.tp-caption.medium_bg_asbestos { +font-size:20px; +line-height:20px; +font-weight:800; +font-family:"Open Sans"; +color:rgb(255, 255, 255); +text-decoration:none; +background-color:rgb(127, 140, 141); +padding:10px; +border-width:0px; +border-color:rgb(255, 214, 88); +border-style:none; +} + +.tp-caption.medium_light_black { +font-size:30px; +line-height:36px; +font-weight:300; +font-family:"Open Sans"; +color:rgb(0, 0, 0); +text-decoration:none; +background-color:transparent; +padding:0px; +border-width:0px; +border-color:rgb(255, 214, 88); +border-style:none; +} + +.tp-caption.large_bold_black { +font-size:58px; +line-height:60px; +font-weight:800; +font-family:"Open Sans"; +color:rgb(0, 0, 0); +text-decoration:none; +background-color:transparent; +border-width:0px; +border-color:rgb(255, 214, 88); +border-style:none; +} + +.tp-caption.mediumlarge_light_darkblue { +font-size:34px; +line-height:40px; +font-weight:300; +font-family:"Open Sans"; +color:rgb(52, 73, 94); +text-decoration:none; +background-color:transparent; +padding:0px; +border-width:0px; +border-color:rgb(255, 214, 88); +border-style:none; +} + +.tp-caption.small_light_white { +font-size:17px; +line-height:28px; +font-weight:300; +font-family:"Open Sans"; +color:rgb(255, 255, 255); +text-decoration:none; +background-color:transparent; +padding:0px; +border-width:0px; +border-color:rgb(255, 214, 88); +border-style:none; +} + +.tp-caption.roundedimage { +border-width:0px; +border-color:rgb(34, 34, 34); +border-style:none; +} + +.tp-caption.large_bg_black { +font-size:40px; +line-height:40px; +font-weight:800; +font-family:"Open Sans"; +color:rgb(255, 255, 255); +text-decoration:none; +background-color:rgb(0, 0, 0); +padding:10px 20px 15px; +border-width:0px; +border-color:rgb(255, 214, 88); +border-style:none; +} + +.tp-caption.mediumwhitebg { +font-size:30px; +line-height:30px; +font-weight:300; +font-family:"Open Sans"; +color:rgb(0, 0, 0); +text-decoration:none; +background-color:rgb(255, 255, 255); +padding:5px 15px 10px; +text-shadow:none; +border-width:0px; +border-color:rgb(0, 0, 0); +border-style:none; +} + +.tp-caption.medium_bg_orange_new1 { +font-size:20px; +line-height:20px; +font-weight:800; +font-family:"Open Sans"; +color:rgb(255, 255, 255); +text-decoration:none; +background-color:rgb(243, 156, 18); +padding:10px; +border-width:0px; +border-color:rgb(255, 214, 88); +border-style:none; +} + + + +.tp-caption.boxshadow{ + -moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5); + -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5); + box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5); + } + +.tp-caption.black{ + color: #000; + text-shadow: none; + font-weight: 300; + font-size: 19px; + line-height: 19px; + font-family: 'Open Sans', sans; + } + +.tp-caption.noshadow { + text-shadow: none; + } + + +.tp_inner_padding { box-sizing:border-box; + -webkit-box-sizing:border-box; + -moz-box-sizing:border-box; + max-height:none !important; } + + +/*.tp-caption { transform:none !important}*/ + + +/********************************* + - SPECIAL TP CAPTIONS - +**********************************/ +.tp-caption .frontcorner { + width: 0; + height: 0; + border-left: 40px solid transparent; + border-right: 0px solid transparent; + border-top: 40px solid #00A8FF; + position: absolute;left:-40px;top:0px; + } + +.tp-caption .backcorner { + width: 0; + height: 0; + border-left: 0px solid transparent; + border-right: 40px solid transparent; + border-bottom: 40px solid #00A8FF; + position: absolute;right:0px;top:0px; + } + +.tp-caption .frontcornertop { + width: 0; + height: 0; + border-left: 40px solid transparent; + border-right: 0px solid transparent; + border-bottom: 40px solid #00A8FF; + position: absolute;left:-40px;top:0px; + } + +.tp-caption .backcornertop { + width: 0; + height: 0; + border-left: 0px solid transparent; + border-right: 40px solid transparent; + border-top: 40px solid #00A8FF; + position: absolute;right:0px;top:0px; + } + +/****************************** + - BUTTONS - +*******************************/ + +.tp-simpleresponsive .button { padding:6px 13px 5px; border-radius: 3px; -moz-border-radius: 3px; -webkit-border-radius: 3px; height:30px; + cursor:pointer; + color:#fff !important; text-shadow:0px 1px 1px rgba(0, 0, 0, 0.6) !important; font-size:15px; line-height:45px !important; + background:url(./css/images/gradient/g30.png) repeat-x top; font-family: arial, sans-serif; font-weight: bold; letter-spacing: -1px; + } + +.tp-simpleresponsive .button.big { color:#fff; text-shadow:0px 1px 1px rgba(0, 0, 0, 0.6); font-weight:bold; padding:9px 20px; font-size:19px; line-height:57px !important; background:url(./css/images/gradient/g40.png) repeat-x top;} + + +.tp-simpleresponsive .purchase:hover, +.tp-simpleresponsive .button:hover, +.tp-simpleresponsive .button.big:hover { background-position:bottom, 15px 11px;} + + + + @media only screen and (min-width: 768px) and (max-width: 959px) { + + } + + + + @media only screen and (min-width: 480px) and (max-width: 767px) { + .tp-simpleresponsive .button { padding:4px 8px 3px; line-height:25px !important; font-size:11px !important;font-weight:normal; } + .tp-simpleresponsive a.button { -webkit-transition: none; -moz-transition: none; -o-transition: none; -ms-transition: none; } + + + } + + @media only screen and (min-width: 0px) and (max-width: 479px) { + .tp-simpleresponsive .button { padding:2px 5px 2px; line-height:20px !important; font-size:10px !important;} + .tp-simpleresponsive a.button { -webkit-transition: none; -moz-transition: none; -o-transition: none; -ms-transition: none; } + } + + + + + +/* BUTTON COLORS */ + + + +.tp-simpleresponsive .button.green, .tp-simpleresponsive .button:hover.green, +.tp-simpleresponsive .purchase.green, .tp-simpleresponsive .purchase:hover.green { background-color:#21a117; -webkit-box-shadow: 0px 3px 0px 0px #104d0b; -moz-box-shadow: 0px 3px 0px 0px #104d0b; box-shadow: 0px 3px 0px 0px #104d0b; } + + +.tp-simpleresponsive .button.blue, .tp-simpleresponsive .button:hover.blue, +.tp-simpleresponsive .purchase.blue, .tp-simpleresponsive .purchase:hover.blue { background-color:#1d78cb; -webkit-box-shadow: 0px 3px 0px 0px #0f3e68; -moz-box-shadow: 0px 3px 0px 0px #0f3e68; box-shadow: 0px 3px 0px 0px #0f3e68;} + + +.tp-simpleresponsive .button.red, .tp-simpleresponsive .button:hover.red, +.tp-simpleresponsive .purchase.red, .tp-simpleresponsive .purchase:hover.red { background-color:#cb1d1d; -webkit-box-shadow: 0px 3px 0px 0px #7c1212; -moz-box-shadow: 0px 3px 0px 0px #7c1212; box-shadow: 0px 3px 0px 0px #7c1212;} + +.tp-simpleresponsive .button.orange, .tp-simpleresponsive .button:hover.orange, +.tp-simpleresponsive .purchase.orange, .tp-simpleresponsive .purchase:hover.orange { background-color:#ff7700; -webkit-box-shadow: 0px 3px 0px 0px #a34c00; -moz-box-shadow: 0px 3px 0px 0px #a34c00; box-shadow: 0px 3px 0px 0px #a34c00;} + +.tp-simpleresponsive .button.darkgrey, .tp-simpleresponsive .button.grey, +.tp-simpleresponsive .button:hover.darkgrey, .tp-simpleresponsive .button:hover.grey, +.tp-simpleresponsive .purchase.darkgrey, .tp-simpleresponsive .purchase:hover.darkgrey { background-color:#555; -webkit-box-shadow: 0px 3px 0px 0px #222; -moz-box-shadow: 0px 3px 0px 0px #222; box-shadow: 0px 3px 0px 0px #222;} + +.tp-simpleresponsive .button.lightgrey, .tp-simpleresponsive .button:hover.lightgrey, +.tp-simpleresponsive .purchase.lightgrey, .tp-simpleresponsive .purchase:hover.lightgrey { background-color:#888; -webkit-box-shadow: 0px 3px 0px 0px #555; -moz-box-shadow: 0px 3px 0px 0px #555; box-shadow: 0px 3px 0px 0px #555;} + + + +/**************************************************************** + + - SET THE ANIMATION EVEN MORE SMOOTHER ON ANDROID - + +******************************************************************/ + +/*.tp-simpleresponsive { -webkit-perspective: 1500px; + -moz-perspective: 1500px; + -o-perspective: 1500px; + -ms-perspective: 1500px; + perspective: 1500px; + }*/ + + + + +/********************************************** + - FULLSCREEN AND FULLWIDHT CONTAINERS - +**********************************************/ + +.fullscreen-container { + width:100%; + position:relative; + padding:0; +} + + + +.fullwidthbanner-container{ + width:100%; + position:relative; + padding:0; + overflow:hidden; +} + +.fullwidthbanner-container .fullwidthbanner{ + width:100%; + position:relative; +} + + + +/************************************************ + - SOME CAPTION MODIFICATION AT START - +*************************************************/ +.tp-simpleresponsive .caption, +.tp-simpleresponsive .tp-caption { + /*-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; -moz-opacity: 0; -khtml-opacity: 0; opacity: 0; */ + position:absolute;visibility: hidden; + -webkit-font-smoothing: antialiased !important; +} + + +.tp-simpleresponsive img { max-width:none;} + + + +/****************************** + - IE8 HACKS - +*******************************/ +.noFilterClass { + filter:none !important; +} + + +/****************************** + - SHADOWS - +******************************/ +.tp-bannershadow { + position:absolute; + + margin-left:auto; + margin-right:auto; + -moz-user-select: none; + -khtml-user-select: none; + -webkit-user-select: none; + -o-user-select: none; + } + +.tp-bannershadow.tp-shadow1 { background:url(./css/assets/shadow1.png) no-repeat; background-size:100% 100%; width:890px; height:60px; bottom:-60px;} +.tp-bannershadow.tp-shadow2 { background:url(./css/assets/shadow2.png) no-repeat; background-size:100% 100%; width:890px; height:60px;bottom:-60px;} +.tp-bannershadow.tp-shadow3 { background:url(./css/assets/shadow3.png) no-repeat; background-size:100% 100%; width:890px; height:60px;bottom:-60px;} + + +/******************************** + - FULLSCREEN VIDEO - +*********************************/ +.caption.fullscreenvideo { left:0px; top:0px; position:absolute;width:100%;height:100%;} +.caption.fullscreenvideo iframe, +.caption.fullscreenvideo video { width:100% !important; height:100% !important; display: none} + +.tp-caption.fullscreenvideo { left:0px; top:0px; position:absolute;width:100%;height:100%;} +.tp-caption.fullscreenvideo iframe, +.tp-caption.fullscreenvideo iframe video { width:100% !important; height:100% !important; display: none;} + + +.fullscreenvideo .vjs-loading-spinner { visibility:none;display:none !important; width:0px;height:0px;} +.fullscreenvideo .vjs-control-bar.vjs-fade-out, +.fullscreenvideo .vjs-control-bar.vjs-fade-in, +.fullscreenvideo .vjs-control-bar.vjs-fade-out.vjs-lock-showing, +.fullscreenvideo .vjs-control-bar.vjs-fade-in.vjs-lock-showing { visibility: hidden !important; opacity: 0 !important;display:none !important;width:0px;height:0px;overflow: hidden;} + +.fullcoveredvideo.video-js, +.fullcoveredvideo video { background: transparent !important;} + +.fullcoveredvideo .vjs-poster { background-position: center center;background-size: cover;width:100%;height:100%;top:0px;left:0px;} + +/******************************** + - DOTTED OVERLAYS - +*********************************/ +.tp-dottedoverlay { background-repeat:repeat;width:100%;height:100%;position:absolute;top:0px;left:0px;z-index:1;} +.tp-dottedoverlay.twoxtwo { background:url(./css/assets/gridtile.png)} +.tp-dottedoverlay.twoxtwowhite { background:url(./css/assets/gridtile_white.png)} +.tp-dottedoverlay.threexthree { background:url(./css/assets/gridtile_3x3.png)} +.tp-dottedoverlay.threexthreewhite { background:url(./css/assets/gridtile_3x3_white.png)} +/******************************** + - DOTTED OVERLAYS ENDS - +*********************************/ + + +/************************ + - NAVIGATION - +*************************/ + +/** BULLETS **/ + +.tpclear { clear:both;} + + +.tp-bullets { z-index:1000; position:absolute; + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; + -moz-opacity: 1; + -khtml-opacity: 1; + opacity: 1; + -webkit-transition: opacity 0.2s ease-out; -moz-transition: opacity 0.2s ease-out; -o-transition: opacity 0.2s ease-out; -ms-transition: opacity 0.2s ease-out;-webkit-transform: translateZ(5px); + } +.tp-bullets.hidebullets { + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; + -moz-opacity: 0; + -khtml-opacity: 0; + opacity: 0; + } + + +.tp-bullets.simplebullets.navbar { border:1px solid #666; border-bottom:1px solid #444; background:url(./css/assets/boxed_bgtile.png); height:40px; padding:0px 10px; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px ;} + +.tp-bullets.simplebullets.navbar-old { background:url(./css/assets/navigdots_bgtile.png); height:35px; padding:0px 10px; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px ;} + + +.tp-bullets.simplebullets.round .bullet { cursor:pointer; position:relative; background:url(./css/assets/bullet.png) no-Repeat top left; width:20px; height:20px; margin-right:0px; float:left; margin-top:0px; margin-left:3px;} +.tp-bullets.simplebullets.round .bullet.last { margin-right:3px;} + +.tp-bullets.simplebullets.round-old .bullet { cursor:pointer; position:relative; background:url(./css/assets/bullets.png) no-Repeat bottom left; width:23px; height:23px; margin-right:0px; float:left; margin-top:0px;} +.tp-bullets.simplebullets.round-old .bullet.last { margin-right:0px;} + + +/** SQUARE BULLETS **/ +.tp-bullets.simplebullets.square .bullet { cursor:pointer; position:relative; background:url(./css/assets/bullets2.png) no-Repeat bottom left; width:19px; height:19px; margin-right:0px; float:left; margin-top:0px;} +.tp-bullets.simplebullets.square .bullet.last { margin-right:0px;} + + +/** SQUARE BULLETS **/ +.tp-bullets.simplebullets.square-old .bullet { cursor:pointer; position:relative; background:url(./css/assets/bullets2.png) no-Repeat bottom left; width:19px; height:19px; margin-right:0px; float:left; margin-top:0px;} +.tp-bullets.simplebullets.square-old .bullet.last { margin-right:0px;} + + +/** navbar NAVIGATION VERSION **/ +.tp-bullets.simplebullets.navbar .bullet { cursor:pointer; position:relative; background:url(./css/assets/bullet_boxed.png) no-Repeat top left; width:18px; height:19px; margin-right:5px; float:left; margin-top:0px;} + +.tp-bullets.simplebullets.navbar .bullet.first { margin-left:0px !important;} +.tp-bullets.simplebullets.navbar .bullet.last { margin-right:0px !important;} + + + +/** navbar NAVIGATION VERSION **/ +.tp-bullets.simplebullets.navbar-old .bullet { cursor:pointer; position:relative; background:url(./css/assets/navigdots.png) no-Repeat bottom left; width:15px; height:15px; margin-left:5px !important; margin-right:5px !important;float:left; margin-top:10px;} +.tp-bullets.simplebullets.navbar-old .bullet.first { margin-left:0px !important;} +.tp-bullets.simplebullets.navbar-old .bullet.last { margin-right:0px !important;} + + +.tp-bullets.simplebullets .bullet:hover, +.tp-bullets.simplebullets .bullet.selected { background-position:top left; } + +.tp-bullets.simplebullets.round .bullet:hover, +.tp-bullets.simplebullets.round .bullet.selected, +.tp-bullets.simplebullets.navbar .bullet:hover, +.tp-bullets.simplebullets.navbar .bullet.selected { background-position:bottom left; } + + + +/************************************* + - TP ARROWS - +**************************************/ +.tparrows { -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; + -moz-opacity: 1; + -khtml-opacity: 1; + opacity: 1; + -webkit-transition: opacity 0.2s ease-out; -moz-transition: opacity 0.2s ease-out; -o-transition: opacity 0.2s ease-out; -ms-transition: opacity 0.2s ease-out; -webkit-transform: translateZ(5px); + + } +.tparrows.hidearrows { + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; + -moz-opacity: 0; + -khtml-opacity: 0; + opacity: 0; + } +.tp-leftarrow { z-index:100;cursor:pointer; position:relative; background:url(./css/assets/large_left.png) no-Repeat top left; width:40px; height:40px; } +.tp-rightarrow { z-index:100;cursor:pointer; position:relative; background:url(./css/assets/large_right.png) no-Repeat top left; width:40px; height:40px; } + + +.tp-leftarrow.round { z-index:100;cursor:pointer; position:relative; background:url(./css/assets/small_left.png) no-Repeat top left; width:19px; height:14px; margin-right:0px; float:left; margin-top:0px; } +.tp-rightarrow.round { z-index:100;cursor:pointer; position:relative; background:url(./css/assets/small_right.png) no-Repeat top left; width:19px; height:14px; margin-right:0px; float:left; margin-top:0px;} + + +.tp-leftarrow.round-old { z-index:100;cursor:pointer; position:relative; background:url(./css/assets/arrow_left.png) no-Repeat top left; width:26px; height:26px; margin-right:0px; float:left; margin-top:0px; } +.tp-rightarrow.round-old { z-index:100;cursor:pointer; position:relative; background:url(./css/assets/arrow_right.png) no-Repeat top left; width:26px; height:26px; margin-right:0px; float:left; margin-top:0px;} + + +.tp-leftarrow.navbar { z-index:100;cursor:pointer; position:relative; background:url(./css/assets/small_left_boxed.png) no-Repeat top left; width:20px; height:15px; float:left; margin-right:6px; margin-top:12px;} +.tp-rightarrow.navbar { z-index:100;cursor:pointer; position:relative; background:url(./css/assets/small_right_boxed.png) no-Repeat top left; width:20px; height:15px; float:left; margin-left:6px; margin-top:12px;} + + +.tp-leftarrow.navbar-old { z-index:100;cursor:pointer; position:relative; background:url(./css/assets/arrowleft.png) no-Repeat top left; width:9px; height:16px; float:left; margin-right:6px; margin-top:10px;} +.tp-rightarrow.navbar-old { z-index:100;cursor:pointer; position:relative; background:url(./css/assets/arrowright.png) no-Repeat top left; width:9px; height:16px; float:left; margin-left:6px; margin-top:10px;} + +.tp-leftarrow.navbar-old.thumbswitharrow { margin-right:10px; } +.tp-rightarrow.navbar-old.thumbswitharrow { margin-left:0px; } + +.tp-leftarrow.square { z-index:100;cursor:pointer; position:relative; background:url(./css/assets/arrow_left2.png) no-Repeat top left; width:12px; height:17px; float:left; margin-right:0px; margin-top:0px;} +.tp-rightarrow.square { z-index:100;cursor:pointer; position:relative; background:url(./css/assets/arrow_right2.png) no-Repeat top left; width:12px; height:17px; float:left; margin-left:0px; margin-top:0px;} + + +.tp-leftarrow.square-old { z-index:100;cursor:pointer; position:relative; background:url(./css/assets/arrow_left2.png) no-Repeat top left; width:12px; height:17px; float:left; margin-right:0px; margin-top:0px;} +.tp-rightarrow.square-old { z-index:100;cursor:pointer; position:relative; background:url(./css/assets/arrow_right2.png) no-Repeat top left; width:12px; height:17px; float:left; margin-left:0px; margin-top:0px;} + + +.tp-leftarrow.default { z-index:100;cursor:pointer; position:relative; background:url(./css/assets/large_left.png) no-Repeat 0 0; width:40px; height:40px; + + } +.tp-rightarrow.default { z-index:100;cursor:pointer; position:relative; background:url(./css/assets/large_right.png) no-Repeat 0 0; width:40px; height:40px; + + } + + + + +.tp-leftarrow:hover, +.tp-rightarrow:hover { background-position:bottom left; } + + + + + + +/**************************************************************************************************** + - TP THUMBS - +***************************************************************************************************** + + - tp-thumbs & tp-mask Width is the width of the basic Thumb Container (500px basic settings) + + - .bullet width & height is the dimension of a simple Thumbnail (basic 100px x 50px) + + *****************************************************************************************************/ + + +.tp-bullets.tp-thumbs { z-index:1000; position:absolute; padding:3px;background-color:#fff; + width:500px;height:50px; /* THE DIMENSIONS OF THE THUMB CONTAINER */ + margin-top:-50px; + } + + +.fullwidthbanner-container .tp-thumbs { padding:3px;} + +.tp-bullets.tp-thumbs .tp-mask { width:500px; height:50px; /* THE DIMENSIONS OF THE THUMB CONTAINER */ + overflow:hidden; position:relative;} + + +.tp-bullets.tp-thumbs .tp-mask .tp-thumbcontainer { width:5000px; position:absolute;} + +.tp-bullets.tp-thumbs .bullet { width:100px; height:50px; /* THE DIMENSION OF A SINGLE THUMB */ + cursor:pointer; overflow:hidden;background:none;margin:0;float:left; + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; + /*filter: alpha(opacity=50); */ + -moz-opacity: 0.5; + -khtml-opacity: 0.5; + opacity: 0.5; + + -webkit-transition: all 0.2s ease-out; -moz-transition: all 0.2s ease-out; -o-transition: all 0.2s ease-out; -ms-transition: all 0.2s ease-out; + } + + +.tp-bullets.tp-thumbs .bullet:hover, +.tp-bullets.tp-thumbs .bullet.selected { -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; + + -moz-opacity: 1; + -khtml-opacity: 1; + opacity: 1; + } +.tp-thumbs img { width:100%; } + + +/************************************ + - TP BANNER TIMER - +*************************************/ +.tp-bannertimer { width:100%; height:10px; background:url(./css/assets/timer.png);position:absolute; z-index:200;top:0px;} +.tp-bannertimer.tp-bottom { bottom:0px;height:5px; top:auto;} + + + + +/*************************************** + - RESPONSIVE SETTINGS - +****************************************/ + + + + + @media only screen and (min-width: 0px) and (max-width: 479px) { + .responsive .tp-bullets { display:none} + .responsive .tparrows { display:none;} + } + + +/****************************** + - HTML5 VIDEO SETTINGS - +********************************/ + +.vjs-tech { margin-top:1px} + +.tp-caption .vjs-default-skin .vjs-big-play-button { left: 50%; +top: 50%; +margin-left: -20px; +margin-top: -20px; +width: 40px; +height: 40px; +border-radius: 5px; +-moz-border-radius: 5px; +-webkit-border-radius: 5px; +border: none; +box-shadow: none; +text-shadow: none; +line-height: 30px; +vertical-align: top; +padding: 0px; +} + +.tp-caption .vjs-default-skin .vjs-big-play-button:before { + position:absolute; + top:0px; left:0px; + line-height:40px; + text-shadow: none !important; + color:#fff; + font-size:18px; + +} + +.tp-caption .vjs-default-skin:hover .vjs-big-play-button, .vjs-default-skin .vjs-big-play-button:focus { + + box-shadow:none; + -webkit-box-shadow:none; + +} + + + +/********************************************* + + - BASIC SETTINGS FOR THE BANNER - + +***********************************************/ + + .tp-simpleresponsive img { + -moz-user-select: none; + -khtml-user-select: none; + -webkit-user-select: none; + -o-user-select: none; +} + + + +.tp-simpleresponsive a{ text-decoration:none;} + +.tp-simpleresponsive ul { + list-style:none; + padding:0; + margin:0; +} + +.tp-simpleresponsive >ul >li{ + list-stye:none; + position:absolute; + visibility:hidden; +} +/* CAPTION SLIDELINK **/ +.caption.slidelink a div, +.tp-caption.slidelink a div { width:3000px; height:1500px; background:url(./css/assets/coloredbg.png) repeat;} + +.tp-loader { background:url(./css/images/icons/loader.gif) no-repeat 10px 10px; background-color:#fff; margin:-22px -22px; top:50%; left:50%; z-index:10000; position:absolute;width:44px;height:44px; + border-radius: 3px; + -moz-border-radius: 3px; + -webkit-border-radius: 3px; + } + + +.tp-transparentimg { content:"url(./css/assets/transparent.png)"} +.tp-3d { -webkit-transform-style: preserve-3d; + -webkit-transform-origin: 50% 50%; + } + + + +.tp-caption img { +background: transparent; +-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF)"; +filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF); +zoom: 1; +} + + +@font-face { + font-family: 'revicons'; + src: url('./css/font/revicons.eot?5510888'); + src: url('./css/font/revicons.eot?5510888#iefix') format('embedded-opentype'), + url('./css/font/revicons.woff?5510888') format('woff'), + url('./css/font/revicons.ttf?5510888') format('truetype'), + url('./css/font/revicons.svg?5510888#revicons') format('svg'); + font-weight: normal; + font-style: normal; +} +/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */ +/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */ +/* +@media screen and (-webkit-min-device-pixel-ratio:0) { + @font-face { + font-family: 'revicons'; + src: url('./css/font/revicons.svg?5510888#revicons') format('svg'); + } +} +*/ + + [class^="revicon-"]:before, [class*=" revicon-"]:before { + font-family: "revicons"; + font-style: normal; + font-weight: normal; + speak: none; + + display: inline-block; + text-decoration: inherit; + width: 1em; + margin-right: .2em; + text-align: center; + /* opacity: .8; */ + + /* For safety - reset parent styles, that can break glyph codes*/ + font-variant: normal; + text-transform: none; + + /* fix buttons height, for twitter bootstrap */ + line-height: 1em; + + /* Animation center compensation - margins should be symmetric */ + /* remove if not needed */ + margin-left: .2em; + + /* you can be more comfortable with increased icons size */ + /* font-size: 120%; */ + + /* Uncomment for 3D effect */ + /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ +} + +.revicon-search-1:before { content: '\e802'; } /* '' */ +.revicon-pencil-1:before { content: '\e831'; } /* '' */ +.revicon-picture-1:before { content: '\e803'; } /* '' */ +.revicon-cancel:before { content: '\e80a'; } /* '' */ +.revicon-info-circled:before { content: '\e80f'; } /* '' */ +.revicon-trash:before { content: '\e801'; } /* '' */ +.revicon-left-dir:before { content: '\e817'; } /* '' */ +.revicon-right-dir:before { content: '\e818'; } /* '' */ +.revicon-down-open:before { content: '\e83b'; } /* '' */ +.revicon-left-open:before { content: '\e819'; } /* '' */ +.revicon-right-open:before { content: '\e81a'; } /* '' */ +.revicon-angle-left:before { content: '\e820'; } /* '' */ +.revicon-angle-right:before { content: '\e81d'; } /* '' */ +.revicon-left-big:before { content: '\e81f'; } /* '' */ +.revicon-right-big:before { content: '\e81e'; } /* '' */ +.revicon-magic:before { content: '\e807'; } /* '' */ +.revicon-picture:before { content: '\e800'; } /* '' */ +.revicon-export:before { content: '\e80b'; } /* '' */ +.revicon-cog:before { content: '\e832'; } /* '' */ +.revicon-login:before { content: '\e833'; } /* '' */ +.revicon-logout:before { content: '\e834'; } /* '' */ +.revicon-video:before { content: '\e805'; } /* '' */ +.revicon-arrow-combo:before { content: '\e827'; } /* '' */ +.revicon-left-open-1:before { content: '\e82a'; } /* '' */ +.revicon-right-open-1:before { content: '\e82b'; } /* '' */ +.revicon-left-open-mini:before { content: '\e822'; } /* '' */ +.revicon-right-open-mini:before { content: '\e823'; } /* '' */ +.revicon-left-open-big:before { content: '\e824'; } /* '' */ +.revicon-right-open-big:before { content: '\e825'; } /* '' */ +.revicon-left:before { content: '\e836'; } /* '' */ +.revicon-right:before { content: '\e826'; } /* '' */ +.revicon-ccw:before { content: '\e808'; } /* '' */ +.revicon-arrows-ccw:before { content: '\e806'; } /* '' */ +.revicon-palette:before { content: '\e829'; } /* '' */ +.revicon-list-add:before { content: '\e80c'; } /* '' */ +.revicon-doc:before { content: '\e809'; } /* '' */ +.revicon-left-open-outline:before { content: '\e82e'; } /* '' */ +.revicon-left-open-2:before { content: '\e82c'; } /* '' */ +.revicon-right-open-outline:before { content: '\e82f'; } /* '' */ +.revicon-right-open-2:before { content: '\e82d'; } /* '' */ +.revicon-equalizer:before { content: '\e83a'; } /* '' */ +.revicon-layers-alt:before { content: '\e804'; } /* '' */ +.revicon-popup:before { content: '\e828'; } /* '' */ diff --git a/ClientApp/app/css/style.scss b/ClientApp/app/css/style.scss new file mode 100644 index 00000000..5029e853 --- /dev/null +++ b/ClientApp/app/css/style.scss @@ -0,0 +1,5916 @@ +/* CSS Document */ + +/* + Theme Name: Venda + Description: Venda - Responsive Template + Version: 1.0 + Author: ZoOm-Arts + Website: http://zoom-arts.com +*/ + +/* ------------------------------------------ */ +/* TABLE OF CONTENTS +/* ------------------------------------------ */ +/* 01 - General & Basic Styles */ +/* 02 - Header & Navigation */ +/* 03 - Main Page Elements */ +/* 04 - Revolution Slider */ +/* 05 - Shortcodes Elements */ +/* 06 - Portfolio Styles */ +/* 07 - Single Project Styles */ +/* 08 - Blog Styles */ +/* 09 - Single post Styles */ +/* 10 - Sidebar Styles */ +/* 11 - Footer Styles */ +/* 12 - Plugins Styles */ + + + + + +@import url(https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800); +@import url(https://fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic); + + + + + +/*------------------------------------------*/ +/* 01 - General & Basic Styles +/*------------------------------------------*/ +body { + font-family: 'Open Sans', sans-serif; + font-size: 13px; + line-height: 21px; + font-weight: 300; + color: #888; + background: url(./css/images/patterns/1.png) fixed repeat; +} +strong, b { + font-weight: 600; +} + +img { + max-width: 100%; + height: auto; +} + +ul, ol { + list-style: none; +} + +ul { + padding: 0; + margin: 0; +} + +a { + transition: color 0.2s ease-in-out; + -moz-transition: color 0.2s ease-in-out; + -webkit-transition: color 0.2s ease-in-out; + -o-transition: color 0.2s ease-in-out; +} + +a:hover { + color: #444; +} + +a, a:hover { + text-decoration: none; +} + +i { + font-size: 1.1em; +} + +h1, h2, h3, h4, h5, h6 { + font-family: 'Open Sans', sans-serif; + font-weight: 600; + margin: 0; + color: #444; +} + +h1 { + font-size: 24px; + line-height: 30px; +} + +h2 { + font-size: 22px; + line-height: 28px; +} + +h3 { + font-size: 18px; + line-height: 24px; +} + +h4 { + font-size: 16px; + line-height: 22px; +} + +h5 { + font-size: 14px; + line-height: 20px; +} + +h6 { + font-size: 12px; + line-height: 18px; +} + +p { + color: #888; + font-size: 13px; + font-family: 'Open Sans', sans-serif; + line-height: 22px; + margin: 0; +} + +p strong { + font-weight: 600; +} + +.fittext { + font-size: 38px; + font-weight: 300; + line-height: 46px; + color: rgba(0,0,0, 0.8); +} + +.fittext strong { + font-weight: 700; +} + +.page-content p { + margin-bottom: 15px; +} + +.wite-text { + color: #fff; +} + +.uppercase { + text-transform: uppercase; +} + +.image-text { + margin-right: 10px; +} + +a.main-button, input[type="submit"] { + display: inline-block; + text-decoration: none; + color: #fff; + font-size: 12px; + font-family: 'Open Sans', sans-serif; + font-weight: 300; + text-transform: uppercase; + padding: 6px 16px; + border-radius: 3px; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + -o-border-radius: 3px; + transition: all 0.2s ease-in-out; + -moz-transition: all 0.2s ease-in-out; + -webkit-transition: all 0.2s ease-in-out; + -o-transition: all 0.2s ease-in-out; +} + +a.main-button:hover, input[type="submit"]:hover { + background: #444; + color: #fff; +} + +input[type="submit"][disabled='disabled'] { + background-color: #D6D6D6; +} + +a.main-button i { + font-size: 1.2em; +} + +input[type="submit"] { + border: none; +} + +.tooltip .tooltip-inner { + border-radius: 2px; + -webkit-border-radius: 2px; + -moz-border-radius: 2px; + -o-border-radius: 2px; +} + +#content { + padding: 50px 0; +} + +#content.full-sections { + padding: 0; +} + +.section { + position: relative; + /*overflow: hidden;*/ + background-repeat: no-repeat; + background-position: center center; + -webkit-background-size: cover !important; + -moz-background-size: cover !important; + -o-background-size: cover !important; + background-size: cover !important; +} + +.keyboard-module .section { + overflow: hidden; +} + +.section.repeat-bg { + background-repeat: repeat; + -webkit-background-size: auto !important; + -moz-background-size: auto !important; + -o-background-size: auto !important; + background-size: auto !important; +} + +.bg-parallax { + background-attachment: fixed; +} + +.section-video { + position: absolute; + z-index: 33; + left: 0; + top: -100px; + width: 100%; + height: auto; + min-height: 100%; +} + +.section-video-content { + z-index: 35; + position: relative; + opacity: 0.98; +} + +.section-overlay { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + z-index: 34; + opacity: 0.7; +} + +.light-section { + color: #fff; +} + +.light-section .testimonials { + color: #aaa; +} + +.light-section .testimonials .testimonial-content p { + color: #c4c4c4; +} + +#container { + background-color: #fff; +} + +.boxed-page { + position: relative; + width: 1220px; + margin: 0 auto; + background-color: #fff; + -webkit-box-shadow:0 0 10px rgba(0,0,0,0.3); + -moz-box-shadow: 0 0 10px rgba(0,0,0,0.3); + -o-box-shadow: 0 0 10px rgba(0,0,0,0.3); + box-shadow: 0 0 10px rgba(0,0,0,0.3); +} + +.boxed-page header { + width: 1220px; +} + +#loader { + position: fixed; + top: 0; + left: 0; + width: 100%; + height: 100%; + background: #fff; + z-index: 9999999999; +} + +.spinner { + position: absolute; + width: 40px; + height: 40px; + top: 50%; + left: 50%; + margin-left: -40px; + margin-top: -40px; + -webkit-animation: rotatee 2.0s infinite linear; + animation: rotatee 2.0s infinite linear; +} + +.dot1, .dot2 { + width: 60%; + height: 60%; + display: inline-block; + position: absolute; + top: 0; + background-color: #0a9fd8; + border-radius: 100%; + -webkit-animation: bouncee 2.0s infinite ease-in-out; + animation: bouncee 2.0s infinite ease-in-out; +} + +.dot2 { + top: auto; + bottom: 0px; + -webkit-animation-delay: -1.0s; + animation-delay: -1.0s; +} + +@-webkit-keyframes rotatee { 100% { -webkit-transform: rotate(360deg) }} +@keyframes rotatee { + 100% { + transform: rotate(360deg); + -webkit-transform: rotate(360deg); + } +} + +@-webkit-keyframes bouncee { + 0%, 100% { -webkit-transform: scale(0.0) } + 50% { -webkit-transform: scale(1.0) } +} + +@keyframes bouncee { + 0%, 100% { + transform: scale(0.0); + -webkit-transform: scale(0.0); + } 50% { + transform: scale(1.0); + -webkit-transform: scale(1.0); + } +} + + + + + + +/*------------------------------------------*/ +/* 02 - Header & Navigation +/*------------------------------------------*/ + +header { + /*position: fixed;*/ + top: 0; + width: 100%; + z-index: 9999999; + transition: all 0.4s ease-in-out; + -moz-transition: all 0.4s ease-in-out; + -webkit-transition: all 0.4s ease-in-out; + -o-transition: all 0.4s ease-in-out; +} + +.fixed-header { + opacity: 0.95; + box-shadow: 0 3px 3px -3px rgba(0, 0, 0, 0.2); + -o-box-shadow: 0 3px 3px -3px rgba(0, 0, 0, 0.2); + -moz-box-shadow: 0 3px 3px -3px rgba(0, 0, 0, 0.2); + -webkit-box-shadow: 0 3px 3px -3px rgba(0, 0, 0, 0.2); +} + +.top-bar { + background-color: #fff; + border-bottom: 1px solid #f2f2f2; +} + +.top-bar.color-bar { + border-bottom: 0; +} + +.top-bar.color-bar a { + color: rgba(255,255,255,.6); +} + +.top-bar.color-bar a:hover { + color: rgba(255,255,255,1) !important; +} + +.top-bar.color-bar ul.social-list li a i { + border-left: 1px solid rgba(255,255,255,.1); +} + +.top-bar.color-bar ul.social-list li:last-child a i { + border-right: 1px solid rgba(255,255,255,.1); +} + +.top-bar.color-bar .contact-details li a:before { + color: rgba(255,255,255,.2); +} + +.top-bar.dark-bar { + background-color: #444; + border-bottom: 0; +} + +.top-bar.dark-bar a { + color: rgba(255,255,255,.4); +} + +.top-bar.dark-bar a:hover { + color: rgba(255,255,255,1) !important; +} + +.top-bar.dark-bar .topLoginPanel a { + color:#444; +} + +.top-bar.dark-bar .topLoginPanel a:hover { + color: #444 !important; +} + +.top-bar.dark-bar ul.social-list li a i { + border-left: 1px solid rgba(255,255,255,.08); +} + +.top-bar.dark-bar ul.social-list li:last-child a i { + border-right: 1px solid rgba(255,255,255,.08); +} + +.top-bar.dark-bar .contact-details li a:before { + color: rgba(255,255,255,.2); +} + +.top-bar a { + color: #aaa; +} + +.top-bar .contact-details li { + display: inline-block; +} + +.top-bar .contact-details li a:before { + position: relative; + content: "|"; + font-size: 13px; + margin: 0 3px; + top: -1px; + color: #ddd; +} + +.top-bar .contact-details li a:before { + color: #aaa; +} + +.top-bar .contact-details li:first-child a:before, + .top-bar .contact-details li:nth-of-type(1) a:before { + display: none; +} + +.top-bar .contact-details li a { + font-size: 12px; + display: block; + line-height: 32px; +} + +ul.social-list { + float: right; +} + +ul.social-list li { + float: left; +} + +ul.social-list .topLoginPanel li { + width:100%; +} + + +ul.social-list li a { + display: inline-block; + transition: all 0.2s ease-in-out; + -moz-transition: all 0.2s ease-in-out; + -webkit-transition: all 0.2s ease-in-out; + -o-transition: all 0.2s ease-in-out; +} + +ul.social-list li a:hover { + color: #fff; +} + +ul.social-list li a.facebook:hover { + background-color: #507CBE; +} + +ul.social-list li a.twitter:hover { + background-color: #63CDF1; +} + +ul.social-list li a.google:hover { + background-color: #F16261; +} + +ul.social-list li a.dribbble:hover { + background-color: #E46387; +} + +ul.social-list li a.linkdin:hover { + background-color: #90CADD; +} + +ul.social-list li a.tumblr:hover { + background-color: #4D7EA3; +} + +ul.social-list li a.flickr:hover { + background-color: #E474AF; +} + +ul.social-list li a.instgram:hover { + background-color: #4D4F54; +} + +ul.social-list li a.vimeo:hover { + background-color: #87D3E0; +} + +ul.social-list li a.skype:hover { + background-color: #36C4F3 +} + +ul.social-list li a i { + font-size: 1em; + display: block; + width: 34px; + height: 33px; + line-height: 33px; + text-align: center; + border-left: 1px solid #f2f2f2; +} + +ul.social-list li:last-child a i { + border-right: 1px solid #f2f2f2; +} + +top-nav-menu { + width: 100%; + display:flex; +} + +.navbar { + margin-bottom: 0; + padding: 0; + background: #fff; + border: none; + border-radius: 0; + -webkit-border-radius: 0; + -moz-border-radius: 0; + -o-border-radius: 0; +} + +.navbar-brand { + position: relative; + /*padding: 27px 0;*/ + margin: 0!important; + transition: all 0.3s ease-in-out; + -moz-transition: all 0.3s ease-in-out; + -webkit-transition: all 0.3s ease-in-out; + -o-transition: all 0.3s ease-in-out; +} + +.navbar-default .navbar-nav { + margin-right: 10px!important; + position: relative; + transition: all 0.4s ease-in-out; + -moz-transition: all 0.4s ease-in-out; + -webkit-transition: all 0.4s ease-in-out; + -o-transition: all 0.4s ease-in-out; +} + +.navbar-default .navbar-nav > li { + margin-left: 6px; +} + +.navbar-default .navbar-nav > li:first-child { + margin-left: 0; +} + +.navbar-default .navbar-nav > li > a { + color: #999; + display: block; + font-size: 14px; + font-weight: 300; + padding: 28px 15px 28px 15px; + overflow: hidden; + transition: all 0.3s ease-in-out; + -moz-transition: all 0.3s ease-in-out; + -webkit-transition: all 0.3s ease-in-out; + -o-transition: all 0.3s ease-in-out; +} + +.navbar-default .navbar-nav > li.active-menu > a, .navbar-default .navbar-nav > li:hover > a { + border-bottom: 2px solid; +} + +.navbar-default .navbar-nav > li > a i { + margin: 0 -2px 0 -5px; +} + +.navbar-default .navbar-nav > li > a:after { + position: absolute; + bottom: 0; + content: ''; + left: 50%; + display: block; + height: 5px; + width: 5px; + opacity: 0; + margin: 0 0 -3px -2px; + -webkit-transform: rotate(45deg); + -moz-transform: rotate(45deg); + -ms-transform: rotate(45deg); + -o-transform: rotate(45deg); + transform: rotate(45deg); + position: absolute; +} + +.navbar-default .navbar-nav > li.active-menu > a:after { + opacity: 1; +} + +.navbar-default .navbar-nav .dropdown { + position: absolute; + left: 0; + top: 100%; + width: 100%; + /*width: 180px;*/ + background-color: #fff; + /*visibility: hidden;*/ + display:none; + z-index: 2; + opacity: 0; + transition: opacity 0.3s ease-in-out; + -moz-transition: opacity 0.3s ease-in-out; + -webkit-transition: opacity 0.3s ease-in-out; + -o-transition: opacity 0.3s ease-in-out; + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); + -o-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); + -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); + -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); +} + +.navbar-default .navbar-nav > li.drop:hover .dropdown { + /*visibility: visible;*/ + display:block; + opacity: 1; +} + +.dropdown li, .sup-dropdown li { + position: relative; + border-top: 1px solid rgba(0, 0, 0, 0.04); +} + +.dropdown li:first-child, .sup-dropdown li:first-child { + border-top: none; +} + +.dropdown li a, .sup-dropdown li a { + display: block; + color: #aaa; + font-size: 12px; + font-family: 'Open Sans', sans-serif; + padding: 9px 14px; + text-decoration: none; + text-transform: capitalize; + transition: padding 0.2s ease-in-out; + -moz-transition: padding 0.2s ease-in-out; + -webkit-transition: padding 0.2s ease-in-out; + -o-transition: padding 0.2s ease-in-out; +} + + +.dropdown > li:hover > a, .sup-dropdown li:hover > a { + padding-left: 18px; +} + +.dropdown li a i { + margin: 0 0 0 -4px; +} + +.navbar-default .navbar-nav .sup-dropdown { + position: absolute; + left: 100%; + top: 0; + width: 180px; + background-color: #fff; + margin-top: 10px; + transition: margin-top 0.2s ease-in-out; + -moz-transition: margin-top 0.2s ease-in-out; + -webkit-transition: margin-top 0.2s ease-in-out; + -o-transition: margin-top 0.2s ease-in-out; + visibility: hidden; + z-index: 3; + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); + -o-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); + -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); + -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); +} + +.navbar-default .navbar-nav li.drop .dropdown li:hover .sup-dropdown { + visibility: visible; + margin-top: 0; +} + +.search-side { + position: relative; + float: right; + top: 19px; + right: -15px; + transition: all 0.3s ease-in-out; + -moz-transition: all 0.3s ease-in-out; + -webkit-transition: all 0.3s ease-in-out; + -o-transition: all 0.3s ease-in-out; +} + +.show-search { + position: relative; + display: block; + float: right; +} + +.show-search i { + font-size: 1.2em !important; + display: block; + color: #aaa; + width: 36px; + height: 36px; + border-radius: 2px; + -webkit-border-radius: 2px; + -moz-border-radius: 2px; + -o-border-radius: 2px; + line-height: 36px; + text-align: center; + background-color: #f2f2f2; + transition: all 0.2s ease-in-out; + -moz-transition: all 0.2s ease-in-out; + -webkit-transition: all 0.2s ease-in-out; + -o-transition: all 0.2s ease-in-out; +} + +.show-search:hover i { + color: #888; +} + +.navbar .search-form { + position: absolute; + right: 0; + z-index: 20; + float: right; + display: none; + top: 40px; +} + +.navbar .search-form:before { + background-color: #ccc; + top: -2px; + content: ''; + display: block; + height: 4px; + width: 4px; + z-index: 20; + right: 15px; + -webkit-transform: rotate(45deg); + -moz-transform: rotate(45deg); + -ms-transform: rotate(45deg); + -o-transform: rotate(45deg); + transform: rotate(45deg); + position: absolute; +} + +.navbar .search-form form input { + border: 2px solid #ccc; + border-radius: 3px; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + -o-border-radius: 3px; + padding: 5px 14px; + z-index: 22; + color: #9d9d9d; + box-shadow: none; + -o-box-shadow: none; + -moz-box-shadow: none; + -webkit-box-shadow: none; + outline: none; + box-shadow: none; +} + +.navbar .search-form form { + position: absolute; + right: 0; + top: 0; + z-index: 20; +} + + + + + + +/*------------------------------------------*/ +/* 03 - Main Page Elements +/*------------------------------------------*/ + +.page-banner { + padding: 30px 0; + background: #f6f6f6; + border-bottom: 1px solid #eee; +} + +.page-banner h2 { + font-weight: 500; + text-transform: uppercase; +} + +.page-banner p { + font-weight: 300; +} + +ul.breadcrumbs { + float: right; + margin-top: 15px; +} + +.no-subtitle ul.breadcrumbs { + margin-top: 4px; +} + +ul.breadcrumbs li { + font-family: 'Open Sans', sans-serif; + font-size: 13px; + font-weight: 300; + margin-left: 3px; + color: #999; + float: left; +} + +ul.breadcrumbs li:before { + content: '/'; + margin: 0 4px 0 2px; + color: #bbb; +} + +ul.breadcrumbs li:first-child { + margin: 0; +} + +ul.breadcrumbs li:first-child:before { + content: ''; + margin: 0; +} + +ul.breadcrumbs li a { + color: #888; + font-weight: 600; + transition: all 0.2s ease-in-out; + -moz-transition: all 0.2s ease-in-out; + -webkit-transition: all 0.2s ease-in-out; + -o-transition: all 0.2s ease-in-out; +} + +label { + font-size: 13px; + color: #aaa; + font-weight: 300; + cursor: pointer; +} + +label .required { + color: #ED2C3A; + margin-left: 2px; +} + +input[type="submit"] { + outline: none; +} + +.widget-search input[type="search"], +#contact-form input[type="text"], +#contact-form textarea, +#respond input[type="text"], +#respond textarea { + color: #aaafb5; + font-size: 13px; + font-family: 'Open Sans', sans-serif; + border: 1px solid #eee; + border-radius: 2px; + -webkit-border-radius: 2px; + -moz-border-radius: 2px; + -o-border-radius: 2px; + outline: none; + width: 100%; + padding: 7px 14px; + display: block; + margin-bottom: 10px; + transition: all 0.4s ease-in-out; + -moz-transition: all 0.4s ease-in-out; + -webkit-transition: all 0.4s ease-in-out; + -o-transition: all 0.4s ease-in-out; +} + +.widget-search input[type="search"]:focus, +#contact-form input[type="text"]:focus, +#contact-form textarea:focus, +#respond input[type="text"]:focus, +#respond textarea:focus { + border-color: #ddd; + box-shadow: 0 0 3px #eee; + -o-box-shadow: 0 0 3px #eee; + -moz-box-shadow: 0 0 3px #eee; + -webkit-box-shadow: 0 0 3px #eee; +} + +.mail_response { + border-bottom: 1px solid #eee; + padding-bottom: 15px; + margin-bottom: 15px; +} + +.name-missing, .email-missing, .message-missing { + opacity: 0; + color: #ED2C3A; + margin-left: 10px; + transition: all 0.4s ease-in-out; + -moz-transition: all 0.4s ease-in-out; + -webkit-transition: all 0.4s ease-in-out; + -o-transition: all 0.4s ease-in-out; +} + +.error-page { + padding: 90px 0; + text-align: center; +} + +.error-page h1 { + font-size: 160px; + line-height: 140px; + font-weight: 700; + color: #333; +} + +.error-page h3 { + font-size: 64px; + line-height: 70px; + font-weight: 300; +} + +.error-page p { + font-size: 22px; + line-height: 28px; + color: #aaa; + margin-bottom: 25px +} + +#map { + position: relative; + height: 350px; + width: 100%; +} + + + + + + +/*------------------------------------------*/ +/* 04 - Revolution Slider +/*------------------------------------------*/ + +.tp-bannertimer { + background:#777 !important; + background:rgba(0,0,0,0.1) !important; + height:5px !important; +} + +.tparrows:before { + font-family: "fontello"; + font-style: normal; + font-weight: normal; + speak: none; + display: inline-block; + text-decoration: inherit; + text-align: center; + font-size: 1.5em; + color: #444; + font-variant: normal; + text-transform: none; + transition: all 0.2s ease-in-out; + -moz-transition: all 0.2s ease-in-out; + -webkit-transition: all 0.2s ease-in-out; + -o-transition: all 0.2s ease-in-out; +} + +.tparrows { + cursor: pointer; + background: #fff!important; + border-radius: 2px; + -webkit-border-radius: 2px; + -moz-border-radius: 2px; + -o-border-radius: 2px; + width: 40px !important; + height: 40px !important; + line-height: 40px; + text-align: center; +} + +.tp-leftarrow:before { + content: '\e896'; +} + +.tp-rightarrow:before { + content: '\e897'; +} + +.tparrows.tp-rightarrow:before { + margin-left: 1px; +} + + +/******** Custom Captions ********/ +.tp-caption.big_font_size { + font-size: 36px; + line-height: 36px; +} + +.tp-caption.medium_font_size { + font-size: 24px; + line-height: 28px; +} + +.tp-caption.small_font_size { + font-size: 18px; + line-height: 24px; +} + +.tp-caption.mini_font_size { + font-size: 14px; + line-height: 22px; +} + +.tp-caption.boldest_font_weight { + font-weight: 900; +} + +.tp-caption.bold_font_weight { + font-weight: 700; +} + +.tp-caption.regular_font_weight { + font-weight: 500; +} + +.tp-caption.light_font_weight { + font-weight: 300; +} + +.tp-caption.dark_font_color { + color: #444; +} + +.tp-caption.black_font_color { + color: #111; +} + +.tp-caption.gray_font_color { + color: #888; +} + +.tp-caption.wite_font_color { + color: #fff; +} + +.tp-caption.wite_bg { + background-color: #fff; + padding: 6px 12px; + border-radius: 3px; +} + +.tp-caption.gray_bg { + background-color: #444; + color: #fff; + padding: 6px 12px; + border-radius: 3px; +} + +.tp-caption.color-bg { + color: #fff; + padding: 6px 12px; + border-radius: 3px; +} + + + + + + +/*------------------------------------------*/ +/* 05 - Shortcodes Elements +/*------------------------------------------*/ + +/*************** Dividers ***************/ + +.hr1 { + height: 1px; +} + +.hr2 { + height: 0; + border-bottom: 1px solid #eee; +} + +.hr3 { + height: 0; + border-bottom: 1px dotted #eee; +} + +.hr4 { + height: 0; + border-bottom: 1px dashed #eee; +} + +.hr5 { + height: 1px; + background-image: -webkit-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.15), rgba(0,0,0,0)); + background-image: -moz-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.15), rgba(0,0,0,0)); + background-image: -ms-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.15), rgba(0,0,0,0)); + background-image: -o-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.15), rgba(0,0,0,0)); +} + + + +/*************** Clients Carousel ***************/ + +.clients-carousel .client-item a { + display: block; + padding: 12px 0; + text-align: center; +} + +.clients-carousel .client-item a img { + -webkit-filter: grayscale(100%); + transition: all 0.4s ease-in-out; + -moz-transition: all 0.4s ease-in-out; + -webkit-transition: all 0.4s ease-in-out; + -o-transition: all 0.4s ease-in-out; +} + +.clients-carousel:hover .client-item a img { + opacity: 0.6; +} + +.clients-carousel:hover .client-item a:hover img { + -webkit-filter: grayscale(0); + opacity: 1; +} + + + +/*************** Progress Bars ***************/ + +.progress-label { + font-size: 13px; + color: #444; + margin-bottom: 2px; + font-weight: 600; +} + +.progress { + border-radius: 24px; + -webkit-border-radius: 24px; + -moz-border-radius: 24px; + -o-border-radius: 24px; + height: 24px; + border: 4px solid #eee; + background-color: #fff; + box-shadow: none; + -o-box-shadow: none; + -moz-box-shadow: none; + -webkit-box-shadow: none; + margin-bottom: 10px; +} + +.progress .progress-bar { + border-radius: 8px; + -webkit-border-radius: 8px; + -moz-border-radius: 8px; + -o-border-radius: 8px; + box-shadow: none; + -o-box-shadow: none; + -moz-box-shadow: none; + -webkit-box-shadow: none; + text-align: right; + transition: width 2s ease-in-out; + -moz-transition: width 2s ease-in-out; + -webkit-transition: width 2s ease-in-out; + -o-transition: width 2s ease-in-out; +} + +.progress.stacked .progress-bar { + border-radius: 0; + -webkit-border-radius: 0; + -moz-border-radius: 0; + -o-border-radius: 0; +} + +.progress.stacked .progress-bar:first-child { + border-radius: 8px 0 0 8px; + -webkit-border-radius: 8px 0 0 8px; + -moz-border-radius: 8px 0 0 8px; + -o-border-radius: 8px 0 0 8px; +} + +.progress.stacked .progress-bar:last-child { + border-radius: 0 8px 8px 0; + -webkit-border-radius: 0 8px 8px 0; + -moz-border-radius: 0 8px 8px 0; + -o-border-radius: 0 8px 8px 0; +} + +.progress .progress-bar .percentage { + position: relative; + top: -3px; + font-size: 11px; + letter-spacing: 1px; + margin-right: 10px; +} + + + +/*************** Call To Action ***************/ + +.call-action-boxed { + padding: 30px 40px; +} + +.call-action.no-descripton h2.primary { + margin-top: 4px; +} + +.call-action h2.primary { + font-weight: 500; +} + +.call-action h2.primary strong { + font-weight: 700; +} + +.call-action p { + font-size: 14px; + margin-bottom: 0; +} + +.call-action h2 + p { + margin-top: 4px; +} + +.call-action .button-side { + float: right; +} + +.call-action-style1 { + border: 1px solid #e8e8e8; + box-shadow: 0 0 25px rgba(0,0,0,.04) inset; + -o-box-shadow: 0 0 25px rgba(0,0,0,.04) inset; + -moz-box-shadow: 0 0 25px rgba(0,0,0,.04) inset; + -webkit-box-shadow: 0 0 25px rgba(0,0,0,.04) inset; +} + +.call-action-style2 { + background: #f2f2f2; +} + +.call-action-style3 { + background: #444; +} + +.call-action-style3 h2.primary { + color: #fff; +} + +.call-action-style3 p { + color: #bbb; +} + + + +/*************** Custom Carousel ***************/ + +.custom-carousel .item { + padding-right: 20px; +} + +.custom-carousel.show-one-slide .item { + padding-right: 0; +} + + + +/*************** Latest News ***************/ + +.latest-posts-classic .post-row { + margin-bottom: 20px; +} + +.latest-posts-classic .left-meta-post { + float: left; + text-align: center; + margin-right: 12px; + margin-bottom: 0; + border-radius: 3px; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + -o-border-radius: 3px; + overflow: hidden; +} + +.latest-posts-classic .left-meta-post .post-date { + padding: 8px 0; + width: 42px; + background-color: #444; + color: #fff; +} + +.latest-posts-classic .left-meta-post .post-date .day { + font-size: 20px; + font-weight: 700; + display: block; + letter-spacing: 1px; +} + +.latest-posts-classic .left-meta-post .post-date .month { + display: block; + text-transform: uppercase; + line-height: 14px; + font-size: 11px; + letter-spacing: 1px; +} + +.latest-posts-classic .left-meta-post .post-type i { + display: block; + height: 40px; + line-height: 39px; + width: 42px; + color: #fff; + font-size: 1.4em; +} + +.latest-posts-classic .post-title { + margin-bottom: 5px; +} + +.latest-posts-classic .post-title a { + color: #444; + transition: all 0.4s ease-in-out; + -moz-transition: all 0.4s ease-in-out; + -webkit-transition: all 0.4s ease-in-out; + -o-transition: all 0.4s ease-in-out; +} + +.latest-posts-classic .read-more { + transition: all 0.4s ease-in-out; + -moz-transition: all 0.4s ease-in-out; + -webkit-transition: all 0.4s ease-in-out; + -o-transition: all 0.4s ease-in-out; +} + +.latest-posts-classic .read-more:hover { + color: #444; +} + + + +/*************** Toggles & Accordion ***************/ + +.panel-default > .panel-heading { + background-color: #fff; +} + +.panel-group .panel { + border-radius: 2px; + -webkit-border-radius: 2px; + -moz-border-radius: 2px; + -o-border-radius: 2px; +} + +.panel-default { + border-color: #e8e8e8; +} + +.panel-important-info { + border-color: #1abc9c; +} +.panel-important-info > .panel-heading { + background: #1abc9c; +} + +.white-text { + color: white; +} + +.green-text { + color: #1abc9c !important; +} + +.panel-body { + padding: 4px 15px 10px 15px; +} + +.panel-heading { + padding: 0; +} + +.panel-title { + font-size: 13px; + font-weight: 700; +} + +.panel-title a { + position: relative; + display: block; + padding: 6px 12px; + background-color: #fff; + box-shadow: none; + -o-box-shadow: none; + -moz-box-shadow: none; + -webkit-box-shadow: none; + transition: all 0.2s ease-in-out; + -moz-transition: all 0.2s ease-in-out; + -webkit-transition: all 0.2s ease-in-out; + -o-transition: all 0.2s ease-in-out; +} + +.panel-title a.collapsed { + color: #444; + box-shadow: 0 0 15px rgba(0,0,0,.04) inset; + -o-box-shadow: 0 0 15px rgba(0,0,0,.04) inset; + -moz-box-shadow: 0 0 15px rgba(0,0,0,.04) inset; + -webkit-box-shadow: 0 0 15px rgba(0,0,0,.04) inset; +} + +.panel-title a.collapsed:hover { + color: #666; +} + +.panel-title a .control-icon { + position: absolute; + top: 50%; + right: 10px; + margin-top: -11px; + transition: all 0.2s ease-in-out; + -moz-transition: all 0.2s ease-in-out; + -webkit-transition: all 0.2s ease-in-out; + -o-transition: all 0.2s ease-in-out; +} + +.panel-title a.collapsed .control-icon { + -webkit-transform: rotate(-180deg); + -moz-transform: rotate(-180deg); + -ms-transform: rotate(-180deg); + -o-transform: rotate(-180deg); +} + +.panel-title a i { + font-size: 1.2em; +} + +.panel-default > .panel-heading + .panel-collapse .panel-body { + border-top: none; +} + + + +/*************** Dropcaps ***************/ + +.dropcap { + display: block; + float: left; + font-size: 40px; + line-height: 34px; + color: #444; + margin: 6px 8px 0 0; +} + +.dropcap.border-dropcap { + border: 2px solid #444; + width: 46px; + height: 46px; + font-size: 28px; + font-weight: 500; + line-height: 42px; + text-align: center; + border-radius: 2px; + -webkit-border-radius: 2px; + -moz-border-radius: 2px; + -o-border-radius: 2px; + margin: 8px 12px 0 0; +} + +.dropcap.bg-dropcap { + background-color: #444; + color: #fff; + width: 48px; + height: 48px; + font-size: 28px; + font-weight: 500; + line-height: 48px; + text-align: center; + border-radius: 2px; + -webkit-border-radius: 2px; + -moz-border-radius: 2px; + -o-border-radius: 2px; + margin: 8px 12px 0 0; +} + +.dropcap.circle-dropcap { + border-radius: 50%; + -webkit-border-radius: 50%; + -moz-border-radius: 50%; + -o-border-radius: 50%; +} + + + +/*************** Milestone ***************/ + +.milestone-block { + display: inline-block; + margin-bottom: 25px; + margin-right: 50px; +} + +.milestone-block:last-child { + margin-right: 0; +} + +.milestone-block .milestone-icon { + float: left; + width: 48px; + height: 48px; + line-height: 48px; + text-align: center; + margin-right: 9px; + margin-bottom: 4px; + border-radius: 2px; + -webkit-border-radius: 2px; + -moz-border-radius: 2px; + -o-border-radius: 2px; + position: relative; +} + +.milestone-block .milestone-icon:after { + content: ""; + display: block; + width: 8px; + height: 8px; + position: absolute; + top: 21px; + right: -2px; + -webkit-transform: rotate(-45deg); + -moz-transform: rotate(-45deg); + -ms-transform: rotate(-45deg); + -o-transform: rotate(-45deg); +} + +.milestone-block .milestone-icon i { + font-size: 2em; + color: #fff; +} + +.milestone-block .milestone-right { + float: left; + text-align: left; +} + +.milestone-block .milestone-number { + font-size: 26px; + line-height: 28px; + font-weight: 500; +} + +.milestone-block .milestone-text { + font-size: 18px; + color: #444; +} + + + +/*************** Pricing Tables ***************/ + +.pricing-tables { + padding: 25px 0; +} + +.pricing-tables .pricing-table { + float: left; + margin-right: -1px; +} + +.pricing-tables.grid-2 .pricing-table { + width: 50%; +} + +.pricing-tables.grid-3 .pricing-table { + width: 33.3332%; +} + +.pricing-tables.grid-4 .pricing-table { + width: 25%; +} + +.pricing-tables.grid-5 .pricing-table { + width: 20%; +} + +.pricing-tables .pricing-table { + border: 1px solid #e4e4e4; + text-align: center; + position: relative; + background-color: #fff; + transition: all 0.2s ease-in-out; + -moz-transition: all 0.2s ease-in-out; + -webkit-transition: all 0.2s ease-in-out; + -o-transition: all 0.2s ease-in-out; +} + +.pricing-tables .pricing-table:hover { + z-index: 2; + top: -3px; + box-shadow: 0 0 8px rgba(0,0,0,0.1); + -moz-box-shadow: 0 0 8px rgba(0,0,0,0.1); + -webkit-box-shadow: 0 0 8px rgba(0,0,0,0.1); + -o-box-shadow: 0 0 8px rgba(0,0,0,0.1); +} + +.pricing-tables .highlight-plan { + margin: -15px 0; + margin-right: -1px; + z-index: 1; + box-shadow: 0 0 6px rgba(0,0,0,0.06); + -moz-box-shadow: 0 0 6px rgba(0,0,0,0.06); + -webkit-box-shadow: 0 0 6px rgba(0,0,0,0.06); + -o-box-shadow: 0 0 6px rgba(0,0,0,0.06); +} + +.pricing-tables .pricing-table.highlight-plan .plan-name { + padding: 25px 0; +} + +.pricing-tables .pricing-table.highlight-plan .plan-signup { + padding: 30px 0; +} + +.pricing-table .plan-name { + padding: 15px 0; + box-shadow: 0 0 20px rgba(0,0,0,.04) inset; + -o-box-shadow: 0 0 20px rgba(0,0,0,.04) inset; + -moz-box-shadow: 0 0 20px rgba(0,0,0,.04) inset; + -webkit-box-shadow: 0 0 20px rgba(0,0,0,.04) inset; + border-bottom: 1px solid #eee; +} + +.pricing-table .plan-name h3 { + font-weight: 700; + color: #888; +} + +.pricing-table .plan-price { + padding: 25px 0; +} + +.pricing-table .plan-price .price-value { + font-size: 38px; + line-height: 40px; + font-weight: 600; + color: #444; +} + +.pricing-table .plan-price .price-value span { + font-size: 18px; + font-weight: 300; + line-height: 18px; +} + +.pricing-table .plan-price .interval { + line-height: 14px; +} + +.pricing-table .plan-list li { + padding: 8px; + font-size: 12px; + border-bottom: 1px solid #eee; +} + +.pricing-table .plan-list li:first-child { + border-top: 1px solid #eee; +} + +.pricing-table .plan-signup { + padding: 25px 0; + box-shadow: 0 0 20px rgba(0,0,0,.06) inset; + -o-box-shadow: 0 0 20px rgba(0,0,0,.06) inset; + -moz-box-shadow: 0 0 20px rgba(0,0,0,.06) inset; + -webkit-box-shadow: 0 0 20px rgba(0,0,0,.06) inset; +} + +.pricing-table .plan-signup a { + text-transform: uppercase; +} + + + +/*************** Buttons ***************/ + +.btn { + border-radius: 3px; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + -o-border-radius: 3px; + transition: all 0.2s ease-in-out; + -moz-transition: all 0.2s ease-in-out; + -webkit-transition: all 0.2s ease-in-out; + -o-transition: all 0.2s ease-in-out; +} + +.btn-system { + display: inline-block; + color: #fff; + margin-right: 5px; + font-weight: 300; + border-radius: 3px; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + -o-border-radius: 3px; + transition: all 0.3s ease-in-out; + -moz-transition: all 0.3s ease-in-out; + -webkit-transition: all 0.3s ease-in-out; + -o-transition: all 0.3s ease-in-out; + text-shadow: 1px 1px 2px rgba(0,0,0,.2); + box-shadow: 0 4px 0 rgba(0,0,0,0.1) inset; + -o-box-shadow: 0 4px 0 rgba(0,0,0,0.1) inset; + -moz-box-shadow: 0 4px 0 rgba(0,0,0,0.1) inset; + -webkit-box-shadow: 0 4px 0 rgba(0,0,0,0.1) inset; +} + +.btn-system:last-child { + margin-right: 0; +} + +.btn-system { + font-size: 1em; + width: auto; +} + +.btn-system.border-btn { + background-color: transparent; + border: 1px solid; + box-shadow: none; + -o-box-shadow: none; + -moz-box-shadow: none; + -webkit-box-shadow: none; +} + +.btn-system:hover { + color: #fff; + opacity: 0.8; +} + +.btn-system.border-btn:hover { + opacity: 1; + color: #fff; +} + +.btn-system.border-btn.btn-gray:hover { + background-color: #444; + color: #fff; +} + +.btn-system.border-btn.btn-black:hover { + background-color: #111; + color: #fff; +} + +.btn-system.border-btn.btn-wite:hover { + background-color: #fff; +} + +.btn-system.btn-gray { + background-color: #444; +} + +.btn-system.btn-black { + background-color: #111; +} + +.btn-system.btn-wite{ + background-color: #fff; +} + +.btn-system.border-btn.btn-gray { + background-color: transparent; + border: 1px solid #444; + color: #444; +} + +.btn-system.border-btn.btn-black { + background-color: transparent; + border: 1px solid #111; + color: #111; +} + +.btn-system.border-btn.btn-wite { + background-color: transparent; + border: 1px solid #fff; + color: #fff; +} + +.btn-large { + font-size: 14px; + padding: 9px 22px; +} + +.btn-medium { + font-size: 14px; + padding: 7px 18px; +} + +.btn-small { + padding: 5px 15px; +} + +.btn-mini { + padding: 3px 12px; +} + +.btn-large.border-btn { + padding: 8px 22px; +} + +.btn-medium.border-btn { + padding: 6px 18px; +} + +.btn-small.border-btn { + padding: 4px 15px; +} + +.btn-mini.border-btn { + padding: 2px 12px; +} + + + +/*************** Alerts ***************/ + +.alert { +} + +.alert-success p { + color: #468847; +} + +.alert-info p { + color: #3a87ad; +} + +.alert-warning p { + color: #c09853; +} + +.alert-danger p { + color: #a94442; +} + +.alert h4 { + margin-bottom: 10px; +} + +.alert strong { + font-weight: 700; +} + + + +/*************** Pie Charts ***************/ + +.easyPieChart { + font-size: 24px; + font-weight: 400; + position: relative; + text-align: center; + display: inline-block; + margin: 0 80px 20px 0; + overflow: hidden; +} + +.easyPieChart:last-child { + margin-right: 0; +} + +.easyPieChart span { + color: #888; + line-height: 20px; + font-size: 13px; + font-weight: 700 +} + +.easyPieChart i { + position: absolute; + width: 100%; + top: -2px; + right: 0; + display: block; + font-size: 3.5em; + color: rgba(0,0,0,.05); + text-align: center; +} + +.easyPieChart canvas { + position: absolute; + top: 0; + left: 0; +} + + + +/*************** Lists ***************/ + +ul.icons-list { + margin-bottom: 6px; +} + +ul.icons-list li, ul.list-unstyled li { + margin-bottom: 4px; +} + +ul.icons-list li i { + font-size: 14px; + margin-right: 4px; +} + + + +/*************** Tabs ***************/ + +.nav-tabs { + border-color: #eee; +} + +.nav-tabs > li > a { + font-weight: 700; + color: #444; + padding: 8px 14px; + border-radius: 3px 3px 0 0; + -webkit-border-radius: 3px 3px 0 0; + -moz-border-radius: 3px 3px 0 0; + -o-border-radius: 3px 3px 0 0; + border: 1px solid #eee; + border-bottom: none; + box-shadow: 0 0 15px rgba(0,0,0,.04) inset; + -o-box-shadow: 0 0 15px rgba(0,0,0,.04) inset; + -moz-box-shadow: 0 0 15px rgba(0,0,0,.04) inset; + -webkit-box-shadow: 0 0 15px rgba(0,0,0,.04) inset; + transition: all 0.2s ease-in-out; + -moz-transition: all 0.2s ease-in-out; + -webkit-transition: all 0.2s ease-in-out; + -o-transition: all 0.2s ease-in-out; +} + +.nav-tabs > li > a i { + margin-right: 1px; +} + +.nav-tabs > li > a:hover, .nav-tabs > li > a:focus { + color: #fff; + border-color: #fff; + box-shadow: 0 0 15px rgba(0,0,0,.1) inset; + -o-box-shadow: 0 0 15px rgba(0,0,0,.1) inset; + -moz-box-shadow: 0 0 15px rgba(0,0,0,.1) inset; + -webkit-box-shadow: 0 0 15px rgba(0,0,0,.1) inset; +} + +.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus { + border-color: #eee; + border-bottom-color: #fff; +} + +.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover { + box-shadow: 0 0 0 rgba(0,0,0,.1) inset; + -o-box-shadow: 0 0 0 rgba(0,0,0,.1) inset; + -moz-box-shadow: 0 0 0 rgba(0,0,0,.1) inset; + -webkit-box-shadow: 0 0 0 rgba(0,0,0,.1) inset; +} + +.tab-content { + border: 1px solid #eee; + border-top: none; + padding: 12px 16px; +} + +.tab-content p { + margin-bottom: 15px; +} + +.tab-content p:last-child { + margin-bottom: 0; +} + + + +/*************** Icons ***************/ + +.icon-small { + font-size: 2em; + color: #444; + transition: all 0.4s ease-in-out; + -moz-transition: all 0.4s ease-in-out; + -webkit-transition: all 0.4s ease-in-out; + -o-transition: all 0.4s ease-in-out; +} + +.icon-small:hover, .service-box:hover .icon-small { + text-shadow: 5px 5px 2px rgba(255,255,255,0); +} + +.icon-medium { + font-size: 3em; + color: #444; + transition: all 0.4s ease-in-out; + -moz-transition: all 0.4s ease-in-out; + -webkit-transition: all 0.4s ease-in-out; + -o-transition: all 0.4s ease-in-out; +} + +.icon-medium:hover, .service-box:hover .icon-medium { + text-shadow: 5px 5px 2px rgba(255,255,255,0); +} + +.icon-large { + font-size: 4em; + color: #444; + transition: all 0.4s ease-in-out; + -moz-transition: all 0.4s ease-in-out; + -webkit-transition: all 0.4s ease-in-out; + -o-transition: all 0.4s ease-in-out; +} + +.icon-large:hover, .service-box:hover .icon-large { + text-shadow: 5px 5px 2px rgba(255,255,255,0); +} + +.icon-mini-effect { + position: relative; + display: block; + z-index: 1; + font-size: 1.2em; + color: #fff; + top: 4px; + width: 32px; + height: 32px; + line-height: 32px; + text-align: center; + margin: 0; + border-radius: 50%; + -webkit-border-radius: 50%; + -moz-border-radius: 50%; + -o-border-radius: 50%; + transition: all 0.4s ease-in-out; + -moz-transition: all 0.4s ease-in-out; + -webkit-transition: all 0.4s ease-in-out; + -o-transition: all 0.4s ease-in-out; +} + +.icon-medium-effect { + position: relative; + display: block; + z-index: 1; + font-size: 2em; + color: #fff; + width: 64px; + height: 64px; + line-height: 64px; + text-align: center; + margin: 0; + border-radius: 50%; + -webkit-border-radius: 50%; + -moz-border-radius: 50%; + -o-border-radius: 50%; + transition: all 0.4s ease-in-out; + -moz-transition: all 0.4s ease-in-out; + -webkit-transition: all 0.4s ease-in-out; + -o-transition: all 0.4s ease-in-out; +} + +.icon-large-effect { + position: relative; + display: block; + z-index: 1; + font-size: 2.6em; + color: #fff; + width: 80px; + height: 80px; + line-height: 80px; + text-align: center; + margin: 0; + border-radius: 50%; + -webkit-border-radius: 50%; + -moz-border-radius: 50%; + -o-border-radius: 50%; + transition: all 0.4s ease-in-out; + -moz-transition: all 0.4s ease-in-out; + -webkit-transition: all 0.4s ease-in-out; + -o-transition: all 0.4s ease-in-out; +} + +.icon-mini-effect:after, .icon-medium-effect:after, .icon-large-effect:after { + pointer-events: none; + position: absolute; + width: 100%; + height: 100%; + border-radius: 50%; + -webkit-border-radius: 50%; + -moz-border-radius: 50%; + -o-border-radius: 50%; + content: ''; + -webkit-box-sizing: content-box; + -moz-box-sizing: content-box; + box-sizing: content-box; +} + +/*First Icon Effect */ +.icon-effect-1 { + background-color: #fff; + -webkit-transition: color 0.4s; + -moz-transition: color 0.4s; + transition: color 0.4s; +} + +.gray-icon.icon-effect-1 { + box-shadow: 0 0 0 3px #444; + -o-box-shadow: 0 0 0 3px #444; + -moz-box-shadow: 0 0 0 3px #444; + -webkit-box-shadow: 0 0 0 3px #444; +} + +.icon-effect-1:after { + top: -2px; + left: -2px; + padding: 2px; + z-index: -1; + -webkit-transition: -webkit-transform 0.4s, opacity 0.4s; + -moz-transition: -moz-transform 0.4s, opacity 0.4s; + transition: transform 0.4s, opacity 0.4s; +} + +.gray-icon.icon-effect-1:after { + background: #444; +} + +.icon-effect-1.gray-icon:hover, .service-box:hover .gray-icon.icon-effect-1 { + color: #444; +} + +.icon-effect-1:hover:after, .service-box:hover .icon-effect-1:after { + -webkit-transform: scale(1.3); + -moz-transform: scale(1.3); + -ms-transform: scale(1.3); + transform: scale(1.3); + opacity: 0; +} + +/*Seconed Icon Effect */ +.icon-effect-2 { + background: #fff; + -webkit-transition: color 0.4s; + -moz-transition: color 0.4s; + transition: color 0.4s; +} + +.gray-icon.icon-effect-2 { + color: #444; + box-shadow: 0 0 0 3px #444; + -o-box-shadow: 0 0 0 3px #444; + -moz-box-shadow: 0 0 0 3px #444; + -webkit-box-shadow: 0 0 0 3px #444; +} + +.icon-effect-2:after { + top: -2px; + left: -2px; + padding: 2px; + z-index: -1; + -webkit-transform: scale(1.3); + -moz-transform: scale(1.3); + -ms-transform: scale(1.3); + transform: scale(1.3); + opacity: 0; + -webkit-transition: -webkit-transform 0.4s, opacity 0.4s; + -moz-transition: -moz-transform 0.4s, opacity 0.4s; + transition: transform 0.4s, opacity 0.4s; +} + +.gray-icon.icon-effect-2:after { + background: #444; +} + +.icon-effect-2:hover, .service-box:hover .icon-effect-2, .icon-effect-2.gray-icon:hover, .service-box:hover .gray-icon.icon-effect-2 { + color: #fff; +} + +.icon-effect-2:hover:after, .service-box:hover .icon-effect-2:after { + -webkit-transform: scale(1); + -moz-transform: scale(1); + -ms-transform: scale(1); + transform: scale(1); + opacity: 1; +} + +/*Third Icon Effect */ +.icon-effect-3 { + background: #fff; +} + +.gray-icon.icon-effect-3 { + color: #444; + box-shadow: 0 0 0 3px #444; + -o-box-shadow: 0 0 0 3px #444; + -moz-box-shadow: 0 0 0 3px #444; + -webkit-box-shadow: 0 0 0 3px #444; +} + +.icon-effect-3:hover:before, .service-box:hover .icon-effect-3:before { + -webkit-animation: toRightFromLeft 0.4s forwards; + -moz-animation: toRightFromLeft 0.4s forwards; + animation: toRightFromLeft 0.4s forwards; +} + +@-webkit-keyframes toRightFromLeft { + 49% { + -webkit-transform: translate(100%); + } + 50% { + opacity: 0; + -webkit-transform: translate(-100%); + } + 51% { + opacity: 1; + } +} +@-moz-keyframes toRightFromLeft { + 49% { + -moz-transform: translate(100%); + } + 50% { + opacity: 0; + -moz-transform: translate(-100%); + } + 51% { + opacity: 1; + } +} +@keyframes toRightFromLeft { + 49% { + transform: translate(100%); + } + 50% { + opacity: 0; + transform: translate(-100%); + } + 51% { + opacity: 1; + } +} + +/*Fourth Icon Effect */ +.icon-effect-4 { + background: #fff; +} + +.gray-icon.icon-effect-4 { + color: #444; + box-shadow: 0 0 0 3px #444; + -o-box-shadow: 0 0 0 3px #444; + -moz-box-shadow: 0 0 0 3px #444; + -webkit-box-shadow: 0 0 0 3px #444; +} + +.icon-effect-4:hover:before, .service-box:hover .icon-effect-4:before { + -webkit-animation: toLeftFromRight 0.4s forwards; + -moz-animation: toLeftFromRight 0.4s forwards; + animation: toLeftFromRight 0.4s forwards; +} + +@-webkit-keyframes toLeftFromRight { + 49% { + -webkit-transform: translate(-100%); + } + 50% { + opacity: 0; + -webkit-transform: translate(100%); + } + 51% { + opacity: 1; + } +} +@-moz-keyframes toLeftFromRight { + 49% { + -moz-transform: translate(-100%); + } + 50% { + opacity: 0; + -moz-transform: translate(100%); + } + 51% { + opacity: 1; + } +} +@keyframes toLeftFromRight { + 49% { + transform: translate(-100%); + } + 50% { + opacity: 0; + transform: translate(100%); + } + 51% { + opacity: 1; + } +} + +/*Fifth Icon Effect */ +.icon-effect-5 { + background: #fff; +} + +.gray-icon.icon-effect-5 { + color: #444; + box-shadow: 0 0 0 3px #444; + -o-box-shadow: 0 0 0 3px #444; + -moz-box-shadow: 0 0 0 3px #444; + -webkit-box-shadow: 0 0 0 3px #444; +} + +.icon-effect-5:hover:before, .service-box:hover .icon-effect-5:before { + -webkit-animation: toTopFromBottom 0.4s forwards; + -moz-animation: toTopFromBottom 0.4s forwards; + animation: toTopFromBottom 0.4s forwards; +} + +@-webkit-keyframes toTopFromBottom { + 49% { + -webkit-transform: translateY(-100%); + } + 50% { + opacity: 0; + -webkit-transform: translateY(100%); + } + 51% { + opacity: 1; + } +} +@-moz-keyframes toTopFromBottom { + 49% { + -moz-transform: translateY(-100%); + } + 50% { + opacity: 0; + -moz-transform: translateY(100%); + } + 51% { + opacity: 1; + } +} +@keyframes toTopFromBottom { + 49% { + transform: translateY(-100%); + } + 50% { + opacity: 0; + transform: translateY(100%); + } + 51% { + opacity: 1; + } +} + +/*six Icon Effect */ +.icon-effect-6 { + background: #fff; +} + +.gray-icon.icon-effect-6 { + color: #444; + box-shadow: 0 0 0 3px #444; + -o-box-shadow: 0 0 0 3px #444; + -moz-box-shadow: 0 0 0 3px #444; + -webkit-box-shadow: 0 0 0 3px #444; +} + +.icon-effect-6:hover:before, .service-box:hover .icon-effect-6:before { + -webkit-animation: toBottomFromTop 0.4s forwards; + -moz-animation: toBottomFromTop 0.4s forwards; + animation: toBottomFromTop 0.4s forwards; +} + +@-webkit-keyframes toBottomFromTop { + 49% { + -webkit-transform: translateY(100%); + } + 50% { + opacity: 0; + -webkit-transform: translateY(-100%); + } + 51% { + opacity: 1; + } +} +@-moz-keyframes toBottomFromTop { + 49% { + -moz-transform: translateY(100%); + } + 50% { + opacity: 0; + -moz-transform: translateY(-100%); + } + 51% { + opacity: 1; + } +} +@keyframes toBottomFromTop { + 49% { + transform: translateY(100%); + } + 50% { + opacity: 0; + transform: translateY(-100%); + } + 51% { + opacity: 1; + } +} + + + +/*************** Service Box ***************/ + +.service-box .read-more { + margin-top: 4px; + font-weight: 500; + margin-left: 2px; +} + +.service-box .read-more i { + display: inline-block; + position: relative; + top: 1px; +} + +.image-service-box img { + margin-bottom: 14px; +} + +.image-service-box h4 { + margin-bottom: 8px; + padding: 0 10px; +} + +.image-service-box p { + padding: 0 10px; +} + +.service-box { + margin-bottom: 35px; +} + +.service-center { + text-align: center; +} + +.service-icon-left .service-icon { + float: left; +} + +.service-icon-left .service-content { + padding-left: 45px; +} + +.service-icon-left-more .service-icon { + float: left; +} + +.service-icon-left-more .service-content { + padding-left: 60px; +} + +.service-center .service-icon { + margin-bottom: 14px; +} + +.service-center .service-content h4 { + margin-bottom: 6px; +} + +.service-center .service-icon i { + display: inline-block; +} + +.service-box h4 { + margin-bottom: 5px; +} + +.service-box > div:first-child { + padding: 0; +} + +.service-boxed { + margin-top: 30px; + padding: 0 15px 20px 15px !important; + border: 1px solid #eee; + border-radius: 4px; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + -o-border-radius: 4px; + transition: all 0.4s ease-in-out; + -moz-transition: all 0.4s ease-in-out; + -webkit-transition: all 0.4s ease-in-out; + -o-transition: all 0.4s ease-in-out; +} + +.service-boxed:hover { + border-color: #e2e2e2; + box-shadow: 0 0 6px rgba(0,0,0,.1); + -o-box-shadow: 0 0 6px rgba(0,0,0,.1); + -moz-box-shadow: 0 0 6px rgba(0,0,0,.1); + -webkit-box-shadow: 0 0 6px rgba(0,0,0,.1); +} + +.service-boxed p { + margin-bottom: 0; +} + + + +/*************** Testimonials ***************/ + +.testimonials { + padding-top: 8px; + text-align: center; + position: relative; +} + +.testimonials:after { + font-family: "fontello"; + content: '\eb5f'; + font-size: 6em; + line-height: 70px; + display: block; + position: absolute; + top: 0; + left: 50%; + margin-left: -32px; + color: rgba(255,255,255,.06); +} + +.testimonials .testimonial-content p { + font-family: 'Lora', serif; + font-size: 24px; + line-height: 36px; + font-style: italic; + font-weight: 400; + color: #444; +} + +.testimonials .testimonial-content { + position: relative; +} + +.testimonials .testimonial-content p::before { + content: open-quote; + margin-right: 6px; +} + +.testimonials .testimonial-content p::after { + content: close-quote; + margin-left: 6px; +} + +.testimonials .testimonial-author { + padding: 8px; + margin-bottom: 10px; +} + +.classic-testimonials .testimonial-content { + position: relative; + padding: 14px 18px; + border-radius: 3px; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + -o-border-radius: 3px; + margin-bottom: 10px; + border: 1px solid #e8e8e8; + box-shadow: 0 0 20px rgba(0,0,0,.04) inset; + -o-box-shadow: 0 0 20px rgba(0,0,0,.04) inset; + -moz-box-shadow: 0 0 20px rgba(0,0,0,.04) inset; + -webkit-box-shadow: 0 0 20px rgba(0,0,0,.04) inset; +} + +.classic-testimonials .testimonial-content:before { + content: "\201C"; + font-weight: 300; + position: absolute; + font-size: 30px; + opacity: 0.5; + top: 8px; + left: 6px; +} + +.classic-testimonials .testimonial-content:after { + font-family: "fontello"; + content: '\eba4'; + font-size: 2em; + height: 8px; + line-height: 0; + display: block; + position: absolute; + bottom: -8px; + left: 33px; + color: #fff; + text-shadow: 0 2px 0 #eee; +} + +.classic-testimonials .testimonial-author { + margin-left: 10px; +} + +.classic-testimonials .testimonial-author span { + font-weight: 600; +} + + + +/*************** Team Members ***************/ + +.team-member { + padding: 3px; + position: relative; +} + +.team-member .member-photo { + padding: 3px; + border: 1px solid #eee; + border-radius: 3px; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + -o-border-radius: 3px; + position: relative; + transition: all 0.2s ease-in-out; + -moz-transition: all 0.2s ease-in-out; + -webkit-transition: all 0.2s ease-in-out; + -o-transition: all 0.2s ease-in-out; +} + +.team-member .member-photo .member-name { + position: absolute; + bottom: 12px; + right: 10px; + color: #fff; + font-size: 14px; + font-weight: 700; + padding: 5px 14px; + border-radius: 2px; + -webkit-border-radius: 2px; + -moz-border-radius: 2px; + -o-border-radius: 2px; + background-color: #444; + z-index: 9994; +} + +.team-member .member-photo .member-name span { + position: absolute; + top: 90%; + right: 0; + color: #fff; + font-size: 13px; + font-weight: 300; + padding: 1px 10px; + border-radius: 2px; + -webkit-border-radius: 2px; + -moz-border-radius: 2px; + -o-border-radius: 2px; +} + +.team-member .member-info { + padding: 15px 6px 12px 6px; +} + +.team-member .member-socail { + text-align: center; +} + +.team-member .member-socail a i { + color: #fff; + width: 28px; + height: 28px; + line-height: 28px; + text-align: center; + border-radius: 2px; + -webkit-border-radius: 2px; + -moz-border-radius: 2px; + -o-border-radius: 2px; + display: inline-block; + background-color: #d2d2d2; + transition: all 0.2s ease-in-out; + -moz-transition: all 0.2s ease-in-out; + -webkit-transition: all 0.2s ease-in-out; + -o-transition: all 0.2s ease-in-out; +} + +.team-member .member-socail a.facebook:hover i { + background-color: #507CBE; +} + +.team-member .member-socail a.twitter:hover i { + background-color: #63CDF1; +} + +.team-member .member-socail a.gplus:hover i { + background-color: #F16261; +} + +.team-member .member-socail a.dribbble:hover i { + background-color: #E46387; +} + +.team-member .member-socail a.linkedin:hover i { + background-color: #90CADD; +} + +.team-member .member-socail a.flickr:hover i { + background-color: #E474AF; +} + +.team-member .member-socail a.instagramm:hover i { + background-color: #4D4F54; +} + +.team-member.modern .member-info { + padding: 14px 0; +} + +.team-member.modern .member-photo { + position: relative; + padding: 0px; + border: none; + border-radius: 0; + -webkit-border-radius: 0; + -moz-border-radius: 0; + -o-border-radius: 0; +} + +.team-member.modern .member-photo:after { + content: ""; + display: block; + width: 100%; + height: calc(100% + 1px); + opacity: 0; + position: absolute; + border-radius: 50%; + -webkit-border-radius: 50%; + -moz-border-radius: 50%; + -o-border-radius: 50%; + top: 5%; + left: 0; + z-index: 9993; + background-color: #fff; + transition: all 0.6s ease-in-out; + -moz-transition: all 0.6s ease-in-out; + -webkit-transition: all 0.6s ease-in-out; + -o-transition: all 0.6s ease-in-out; + + -webkit-transform: rotate(45deg); + -moz-transform: rotate(45deg); + -ms-transform: rotate(45deg); + -o-transform: rotate(45deg); + transform: rotate(45deg); +} + +.team-member.modern:hover .member-photo:after { + top: 10%; + opacity: 0.2; + width: 80%; + height: calc(80% + 1px); + left: 10%; +} + +.team-member.modern .progress { + height: 6px; + border-width: 2px; + margin-bottom: 6px; +} + +.team-member.modern .progress-label { + font-size: 11px; + line-height: 16px; +} + +.team-member.modern .progress span { + display: none; +} + +.team-member.modern .member-socail { + margin-top: 15px; +} + +.team-member.modern .member-socail a i { + background-color: transparent; + color: #aaa; +} + +.team-member.modern .member-socail a:hover i { + color: #fff; +} + + + +/*************** Heading Titles ***************/ + +.classic-title { + margin-bottom: 16px; + padding-bottom: 8px; + border-bottom: 1px solid #eee; +} + +.classic-title span { + padding-bottom: 8px; + border-bottom: 1px solid; +} + +.big-title { + margin-bottom: 20px; +} + +.big-title h1, .big-title h2 { + font-size: 26px; + line-height: 32px; + font-weight: 400; +} + +.big-title h1 strong, .big-title h2 strong { + font-weight: 800; +} + +.big-title .title-desc { + font-size: 16px; + line-height: 22px; + color: #888; +} + +.big-title h2 + .title-desc, .big-title h1 + .title-desc { + margin-top: 4px; +} + + + + + + +/*------------------------------------------*/ +/* 06 - Portfolio Styles +/*------------------------------------------*/ + +.portfolio-filter { + margin-bottom: 30px; +} + +.portfolio-filter li { + display: inline-block; + margin-right: 2px; +} + +.portfolio-filter li a { + color: #888; + display: inline-block; + padding: 5px 14px; + border: 1px solid #eee; + border-radius: 2px; + -webkit-border-radius: 2px; + -moz-border-radius: 2px; + -o-border-radius: 2px; + transition: all 0.3s ease-in-out; + -moz-transition: all 0.3s ease-in-out; + -webkit-transition: all 0.3s ease-in-out; + -o-transition: all 0.3s ease-in-out; +} + +.portfolio-filter li a:hover { + border-color: #ddd; +} + +.portfolio-filter li a.selected, .portfolio-filter li a.selected:hover { + color: #fff; +} + +.portfolio-item { + margin-bottom: 30px; +} + +.portfolio-4 { + margin-left: 5px; +} + +.portfolio-4 .portfolio-item { + width: 24.99%!important; + padding-left: 10px; + padding-right: 10px; + margin-bottom: 22px; +} + +.portfolio-item .portfolio-border { + padding: 3px; + border: 1px solid #eee; + border-radius: 3px; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + -o-border-radius: 3px; + overflow: hidden; + transition: all 0.3s ease-in-out; + -moz-transition: all 0.3s ease-in-out; + -webkit-transition: all 0.3s ease-in-out; + -o-transition: all 0.3s ease-in-out; +} + +.portfolio-item:hover .portfolio-border { + box-shadow: 0 1px 3px #f8f8f8; + -o-box-shadow: 0 1px 3px #f8f8f8; + -moz-box-shadow: 0 1px 3px #f8f8f8; + -webkit-box-shadow: 0 1px 3px #f8f8f8; +} + +.portfolio-item .portfolio-thumb { + position: relative; + overflow: hidden; +} + +.portfolio-item .portfolio-thumb .thumb-overlay { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + background: rgba(255,255,255,0); + transition: all 0.3s ease-in-out; + -moz-transition: all 0.3s ease-in-out; + -webkit-transition: all 0.3s ease-in-out; + -o-transition: all 0.3s ease-in-out; + z-index: 1; +} + +.portfolio-item:hover .portfolio-thumb .thumb-overlay { + background: rgba(255,255,255,0.5); +} + +.portfolio-item .portfolio-thumb .thumb-overlay i { + color: rgba(255,255,255,0); + position: absolute; + top: 42%; + left: 50%; + display: block; + margin-left: -27px; + margin-top: -19px; + font-size: 3em; + transition: all 0.3s ease-in-out; + -moz-transition: all 0.3s ease-in-out; + -webkit-transition: all 0.3s ease-in-out; + -o-transition: all 0.3s ease-in-out; +} + +.portfolio-item:hover .portfolio-thumb .thumb-overlay i { + top: 50%; + color: #444; +} + +.portfolio-item .portfolio-details { + position: relative; + padding: 9px 12px 6px 12px; +} + +.portfolio-item .portfolio-details .like-link { + position: absolute; + right: 8px; + top: 50%; + margin-top: -9px; +} + +.portfolio-item .portfolio-details .like-link i, .portfolio-item .portfolio-details .like-link span { + color: #aaa; + transition: all 0.3s ease-in-out; + -moz-transition: all 0.3s ease-in-out; + -webkit-transition: all 0.3s ease-in-out; + -o-transition: all 0.3s ease-in-out; +} + +.portfolio-item .portfolio-details .like-link:hover i, .portfolio-item .portfolio-details .like-link:hover span { + color: #F54B5C; +} + +.portfolio-item .portfolio-details h4 { + transition: all 0.3s ease-in-out; + -moz-transition: all 0.3s ease-in-out; + -webkit-transition: all 0.3s ease-in-out; + -o-transition: all 0.3s ease-in-out; +} + +.portfolio-item .portfolio-details a span { + color: #888; +} + +.portfolio-item .portfolio-details span:after { + content: ", "; + margin-right: 2px; +} + +.portfolio-item .portfolio-details span:last-child:after { + content: ""; +} + + +/*---- Isotope filtering ----*/ +.isotope-item { + z-index: 2; +} +.isotope-hidden.isotope-item { + pointer-events: none; + z-index: 1; +} +.isotope, .isotope .isotope-item {/* change duration value to whatever you like */ + -webkit-transition-duration: 0.8s; + -moz-transition-duration: 0.8s; + transition-duration: 0.8s; +} +.isotope { + -webkit-transition-property: height, width; + -moz-transition-property: height, width; + transition-property: height, width; +} +.isotope .isotope-item { + -webkit-transition-property: -webkit-transform, opacity; + -moz-transition-property:-moz-transform, opacity; + transition-property:transform, opacity; +} + + + + + + +/*------------------------------------------*/ +/* 07 - Single Project Styles +/*------------------------------------------*/ + +.project-page { + margin-bottom: 50px; +} + +.project-slider { + position: relative; +} + +.project-slider img { + border-radius: 4px; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + -o-border-radius: 4px; +} + +.project-slider .thumb-overlay { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + border-radius: 4px; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + -o-border-radius: 4px; + background-color: rgba(0,0,0,0); + transition: all 0.4s ease-in-out; + -moz-transition: all 0.4s ease-in-out; + -webkit-transition: all 0.4s ease-in-out; + -o-transition: all 0.4s ease-in-out; +} + +.project-slider:hover .thumb-overlay { + background: rgba(255,255,255,0.5); +} + +.project-slider .thumb-overlay i { + font-size: 3em; + color: rgba(0,0,0,0); + position: absolute; + left: 50%; + top: 42%; + margin-left: -27px; + margin-top: -19px; + transition: all 0.4s ease-in-out; + -moz-transition: all 0.4s ease-in-out; + -webkit-transition: all 0.4s ease-in-out; + -o-transition: all 0.4s ease-in-out; +} + +.project-slider:hover .thumb-overlay i { + top: 50%; + color: #444; +} + +.project-content h4 { + margin-bottom: 12px; + padding-bottom: 8px; + border-bottom: 1px solid #eee; +} + +.project-content h4 span { + padding-bottom: 8px; + border-bottom: 1px solid; +} + +.project-content p, .project-content ul { + margin-bottom: 30px; +} + +.project-content ul li { + margin-bottom: 5px; +} + + +.recent-projects h4.title { + margin-bottom: 16px; + padding-bottom: 8px; + border-bottom: 1px solid #eee; +} + +.recent-projects h4.title span { + padding-bottom: 8px; + border-bottom: 1px solid; +} + +.projects-carousel { + width: 1150px !important; +} + +.projects-carousel .item { + margin-right: 15px; + margin-bottom: 0; +} + +.full-width-recent-projects .projects-carousel { + width: 100% !important; +} + +.full-width-recent-projects .projects-carousel .item { + margin: 0; +} + +.full-width-recent-projects .portfolio-item .portfolio-border { + padding: 0; + border: 0; + border-radius: 0; + box-shadow: none; +} + +.full-width-recent-projects .portfolio-item:hover .portfolio-thumb .thumb-overlay { + opacity: 0.65; + z-index: 9994; +} + +.full-width-recent-projects .portfolio-item .portfolio-thumb .thumb-overlay i { + top: 25%; +} + +.full-width-recent-projects .portfolio-item:hover .portfolio-thumb .thumb-overlay i { + color: #fff; + top: 45%; +} + +.full-width-recent-projects .portfolio-item .portfolio-details { + position: absolute; + bottom: -10px; + opacity: 0; + width: 100%; + z-index: 9995; + padding: 0 20px; + transition: all 0.4s ease-in-out; + -moz-transition: all 0.4s ease-in-out; + -webkit-transition: all 0.4s ease-in-out; + -o-transition: all 0.4s ease-in-out; +} + +.full-width-recent-projects .portfolio-item:hover .portfolio-details { + bottom: 10px; + opacity: 1; +} + +.full-width-recent-projects .portfolio-item:hover .portfolio-details h4 { + color: rgba(255,255,255,.9); +} + +.full-width-recent-projects .portfolio-item .portfolio-details a span { + color: rgba(255,255,255,.8); +} + +.full-width-recent-projects .portfolio-item .portfolio-details .like-link i, .full-width-recent-projects .portfolio-item .portfolio-details .like-link span { + color: #fff; +} + + + + + + +/*------------------------------------------*/ +/* 08 - Blog Styles +/*------------------------------------------*/ + +.blog-post { + margin-bottom: 40px; + padding-bottom: 40px; + border-bottom: 1px solid #eee; +} + +.blog-post .post-head { + overflow: hidden; + position: relative; + margin-bottom: 16px; +} + +.blog-post .post-head .thumb-overlay { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + border-radius: 4px; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + -o-border-radius: 4px; + background-color: rgba(0,0,0,0); + transition: all 0.4s ease-in-out; + -moz-transition: all 0.4s ease-in-out; + -webkit-transition: all 0.4s ease-in-out; + -o-transition: all 0.4s ease-in-out; +} + +.blog-post .post-head:hover .thumb-overlay { + background-color: rgba(255,255,255,0.4); +} + +.blog-post .post-head .thumb-overlay i { + font-size: 3em; + color: rgba(0,0,0,0); + position: absolute; + left: 50%; + top: 42%; + margin-left: -27px; + margin-top: -19px; + transition: all 0.4s ease-in-out; + -moz-transition: all 0.4s ease-in-out; + -webkit-transition: all 0.4s ease-in-out; + -o-transition: all 0.4s ease-in-out; +} + +.blog-post .post-head:hover .thumb-overlay i { + color: #444; + top: 50%; +} + +.blog-post .post-head img { + max-width: 100%; + height: auto; + border-radius: 4px; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + -o-border-radius: 4px; +} + +.blog-post .post-content { + padding-left: 54px; + position: relative; +} + +.blog-post .post-type { + position: absolute; + left: 0; + top: 5px; + width: 36px; + height: 36px; + line-height: 36px; + text-align: center; + background-color: #444; + border-radius: 2px; + -webkit-border-radius: 2px; + -moz-border-radius: 2px; + -o-border-radius: 2px; +} + +.blog-post .post-type i { + font-size: 1.2em; + color: #fff; +} + +.blog-post.quote-post .post-type { + top: 0; +} + +.post-content h2 { + margin-bottom: 4px; +} + +.post-content h2 a { + color: #444; + font-weight: 500; + transition: all 0.2s ease-in-out; + -moz-transition: all 0.2s ease-in-out; + -webkit-transition: all 0.2s ease-in-out; + -o-transition: all 0.2s ease-in-out; +} + +.blog-post.quote-post .qoute-box { + background: #444; + border-radius: 2px; + -webkit-border-radius: 2px; + -moz-border-radius: 2px; + -o-border-radius: 2px; + padding: 20px 25px; + color: #fff; + margin-bottom: 10px; +} + +.blog-post.quote-post .qoute-box a { + color: #999; +} + +.blog-post.quote-post .qoute-box h2 { + font-family: 'Lora', serif; + font-size: 18px; + line-height: 26px; + font-style: italic; + font-weight: 400; + color: #fff; + margin-bottom: 10px; +} + +.blog-post.quote-post .qoute-box .qoute-author { + margin-left: 5px; +} + +.blog-post.quote-post .qoute-box .qoute-author:before, .blog-post.quote-post .qoute-box .qoute-author:after { + content: " - " +} + +.blog-post .post-slider { + position: relative; +} + +ul.post-meta { + margin-bottom: 10px; +} + +ul.post-meta li { + display: inline-block; +} + +ul.post-meta li:after { + content: "-"; + margin: 0 8px 0 8px; +} + +ul.post-meta li:last-child:after { + content: ""; + margin: 0; +} + +ul.post-meta li, ul.post-meta li a { + color: #666; + transition: all 0.2s ease-in-out; + -moz-transition: all 0.2s ease-in-out; + -webkit-transition: all 0.2s ease-in-out; + -o-transition: all 0.2s ease-in-out; +} + +.post-content p { + margin-bottom: 15px; +} + +/*Pagination*/ +#pagination span, #pagination a { + display: inline-block; + text-align: center; + height: 34px; + width: 34px; + color: #888; + line-height: 33px; + border: 1px solid #eee; + border-radius: 2px; + -webkit-border-radius: 2px; + -moz-border-radius: 2px; + -o-border-radius: 2px; + transition: all 0.2s ease-in-out; + -moz-transition: all 0.2s ease-in-out; + -webkit-transition: all 0.2s ease-in-out; + -o-transition: all 0.2s ease-in-out; +} + +#pagination span.current { + color: #fff; +} + +#pagination a:hover { + border-color: #ddd; +} + +#pagination .all-pages, #pagination .next-page { + width: auto; + padding: 0 14px; +} + + + + + + +/*------------------------------------------*/ +/* 09 - Single post Styles +/*------------------------------------------*/ + +.blog-page, .blog-post-page { + padding-top: 5px; +} + +.blog-post-page .blog-post { + margin-bottom: 30px; + padding-bottom: 15px; + border-bottom: 1px solid #eee; +} + +.blog-post-page ul.post-meta { + margin-bottom: 12px; +} + +.post-content h2 { + font-weight: 500; +} + +.post-bottom { + padding: 20px 0; + margin-bottom: 20px; + border-bottom: 1px solid #f6f6f6; +} + +.post-tags-list { + float: right; + padding-top: 6px; +} + +.post-tags-list a { + display: inline-block; + color: #888; + font-size: 12px; + padding: 2px 8px; + background: #eee; + margin-bottom: 4px; + border-radius: 2px; + -webkit-border-radius: 2px; + -moz-border-radius: 2px; + -o-border-radius: 2px; + transition: all 0.2s ease-in-out; + -moz-transition: all 0.2s ease-in-out; + -webkit-transition: all 0.2s ease-in-out; + -o-transition: all 0.2s ease-in-out; +} + +.post-tags-list a:hover { + color: #fff; +} + +.post-share { + float: left; +} + +.post-share span { + margin-right: 4px; + font-size: 13px; + color: #888; +} + +.post-share a { + display: inline-block; + border-radius: 2px; + -webkit-border-radius: 2px; + -moz-border-radius: 2px; + -o-border-radius: 2px; + transition: all 0.2s ease-in-out; + -moz-transition: all 0.2s ease-in-out; + -webkit-transition: all 0.2s ease-in-out; + -o-transition: all 0.2s ease-in-out; +} + +.post-share a.facebook { + background-color: #507CBE; +} + +.post-share a.facebook:hover { + background-color: #3E68A8; +} + +.post-share a.twitter { + background-color: #63CDF1; +} + +.post-share a.twitter:hover { + background-color: #36BFED; +} + +.post-share a.gplus { + background-color: #F16261; +} + +.post-share a.gplus:hover { + background-color: #EF4545; +} + +.post-share a.linkedin { + background-color: #90CADD; +} + +.post-share a.linkedin:hover { + background-color: #72BBD3; +} + +.post-share a i { + width: 32px; + height: 32px; + line-height: 32px; + text-align: center; + display: block; + color: #fff; + font-size: 1em; +} + +.blog-post .author-info { + display: block; + margin-bottom: 10px; +} + +.blog-post .author-info .author-image { + float: left; +} + +.blog-post .author-info .author-image img { + width: 70px; + height: 70px; + border-radius: 3px; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + -o-border-radius: 3px; + border: 4px solid #eee; +} + +.blog-post .author-info .author-bio { + padding-left: 85px; +} + +.blog-post .author-info h4 { + margin-bottom: 4px; +} + +.blog-post .author-info p:last-child { + margin: 0; +} + +#comments .comments-list { + padding: 0; + margin: 0 0 35px 0; +} + +#comments .comments-title { + font-weight: 500; + margin-bottom: 20px; +} + +#comments .comments-list li .comment-box { + padding: 20px; + border-radius: 3px; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + -o-border-radius: 3px; + margin-bottom: 20px; + border: 1px solid #e8e8e8; + box-shadow: 0 0 20px rgba(0,0,0,.04) inset; + -o-box-shadow: 0 0 20px rgba(0,0,0,.04) inset; + -moz-box-shadow: 0 0 20px rgba(0,0,0,.04) inset; + -webkit-box-shadow: 0 0 20px rgba(0,0,0,.04) inset; +} + +#comments .comments-list li ul { + padding-left: 80px; +} + +#comments .avatar { + float: left; +} + +#comments .avatar img { + width: 60px; + height: 60px; + padding: 3px; + border-radius: 3px; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + -o-border-radius: 3px; + border: 1px solid #e8e8e8; +} + +#comments .comment-content { + padding-left: 72px; +} + +#comments .comment-content .comment-meta { + margin-bottom: 5px; +} + +.comment-content .comment-meta span:after { + content: "-"; + margin: 0 5px; + font-weight: 100; + color: #888; +} + +.comment-content .comment-meta span:last-child:after { + content: ""; + margin: 0; +} + +.comment-content .comment-meta .comment-by { + font-weight: 700; + color: #444; +} + +.comment-content .comment-meta .comment-date { + color: #888; +} + +#respond .respond-title { + font-weight: 500; + margin-bottom: 15px; +} + + + + + + +/*------------------------------------------*/ +/* 10 - SideBar Styles +/*------------------------------------------*/ + +.sidebar { + margin-bottom: 30px; +} + +.sidebar a { + color: #888; +} + +.sidebar .widget { + overflow: hidden; + margin-bottom: 50px; +} + +.sidebar .widget ul { + margin: 0; +} + +.widget-search input[type="search"] { + position: relative; + margin: 0; + float: left; + width: calc(100% - 38px); + border-right: none; + border-radius: 2px 0 0 2px; + -webkit-border-radius: 2px 0 0 2px; + -moz-border-radius: 2px 0 0 2px; + -o-border-radius: 2px 0 0 2px; +} + +.widget-search .search-btn { + display: inline-block; + width: 38px; + height: 37px; + border: none; + color: #fff; + font-size: 1.2em; + line-height: 36px; + text-align: center; + border-radius: 0 2px 2px 0; + -webkit-border-radius: 0 2px 2px 0; + -moz-border-radius: 0 2px 2px 0; + -o-border-radius: 0 2px 2px 0; + transition: all 0.2s ease-in-out; + -moz-transition: all 0.2s ease-in-out; + -webkit-transition: all 0.2s ease-in-out; + -o-transition: all 0.2s ease-in-out; +} + +.widget-search .search-btn:hover { + background-color: #444; +} + +.sidebar .widget h4 { + text-transform: uppercase; + padding-bottom: 8px; + margin-bottom: 16px; + font-size: 14px; + font-weight: 700; + position: relative; +} + +.sidebar .widget h4 .head-line { + position: absolute; + bottom: 0; + left: 0; + display: block; + width: 50px; + height: 3px; + background-color: #ddd; + margin: 0; +} + +.widget-categories ul li a { + padding: 8px 0; + text-decoration: none; + display: block; + border-bottom: 1px solid #eee; + transition: all 0.2s ease-in-out; + -moz-transition: all 0.2s ease-in-out; + -webkit-transition: all 0.2s ease-in-out; + -o-transition: all 0.2s ease-in-out; +} + +.widget-categories ul li:first-child a { + padding-top: 0; +} + +.widget-categories ul li a:hover { + padding-left: 8px; +} + +.sidebar .widget-popular-posts li { + margin-bottom: 12px; + padding-bottom: 12px; + border-bottom: 1px solid #eee; +} + +.sidebar .widget-popular-posts li:last-child { + margin: 0; + padding: 0; + border: none; +} + +.sidebar .widget-popular-posts .widget-thumb { + float: left; + margin-right: 8px; + border: 3px solid #eee; + border-radius: 2px; + -webkit-border-radius: 2px; + -moz-border-radius: 2px; + -o-border-radius: 2px; +} + +.sidebar .widget-popular-posts .widget-thumb img { + width: 65px; + height: 65px; + opacity: 1; + transition: all 0.2s ease-in-out; + -moz-transition: all 0.2s ease-in-out; + -webkit-transition: all 0.2s ease-in-out; + -o-transition: all 0.2s ease-in-out; +} + +.sidebar .widget-popular-posts .widget-thumb:hover img { + opacity: 0.7; +} + +.sidebar .widget-popular-posts .widget-content h5 { + font-size: 13px; + line-height: 19px; + margin-bottom: 5px; + font-weight: 300; +} + +.sidebar .widget-popular-posts .widget-content span { + color: #bbb; + font-size: 12px; +} + +.sidebar .tagcloud a { + display: inline-block; + color: #888; + font-size: 12px; + padding: 4px 10px; + background: #eee; + margin-bottom: 4px; + border-radius: 2px; + -webkit-border-radius: 2px; + -moz-border-radius: 2px; + -o-border-radius: 2px; + transition: all 0.2s ease-in-out; + -moz-transition: all 0.2s ease-in-out; + -webkit-transition: all 0.2s ease-in-out; + -o-transition: all 0.2s ease-in-out; +} + +.sidebar .tagcloud a:hover { + color: #fff; +} + + + + + + +/*------------------------------------------*/ +/* 11 - Footer Styles +/*------------------------------------------*/ + +footer { + background-color: #222; + padding-top: 60px; + border-top: 4px solid #555; + color: #ccc; +} + +footer p { + color: #ccc; +} + +footer a { + color: #aaa; +} + +footer a:hover { + color: #aaa; + text-decoration: underline; +} + +.footer-widget { + margin-bottom: 45px; +} + +.footer-widget h4 { + color: #eee; + text-transform: uppercase; + padding-bottom: 8px; + margin-bottom: 20px; + font-size: 14px; + font-weight: 700; + position: relative; +} + +.footer-widget h4 .head-line { + position: absolute; + bottom: 0; + left: 0; + display: block; + width: 50px; + height: 3px; + background-color: #333; + margin: 0; +} + +.social-widget ul.social-icons li { + display: inline-block; + margin-right: 4px; + margin-bottom: 4px; +} + +.social-widget ul.social-icons li a i { + font-size: 1.4em; + width: 36px; + height: 36px; + color: #fff; + line-height: 36px; + text-align: center; + display: block; + border-radius: 2px; + -webkit-border-radius: 2px; + -moz-border-radius: 2px; + -o-border-radius: 2px; + transition: all 0.2s ease-in-out; + -moz-transition: all 0.2s ease-in-out; + -webkit-transition: all 0.2s ease-in-out; + -o-transition: all 0.2s ease-in-out; +} + +.social-widget ul.social-icons li a.facebook:hover i { + background-color: #507CBE; +} + +.social-widget ul.social-icons li a.twitter:hover i { + background-color: #63CDF1; +} + +.social-widget ul.social-icons li a.google:hover i { + background-color: #F16261; +} + +.social-widget ul.social-icons li a.dribbble:hover i { + background-color: #E46387; +} + +.social-widget ul.social-icons li a.linkdin:hover i { + background-color: #90CADD; +} + +.social-widget ul.social-icons li a.tumblr:hover i { + background-color: #4D7EA3; +} + +.social-widget ul.social-icons li a.flickr:hover i { + background-color: #E474AF; +} + +.social-widget ul.social-icons li a.instgram:hover i { + background-color: #4D4F54; +} + +.social-widget ul.social-icons li a.vimeo:hover i { + background-color: #87D3E0; +} + +.social-widget ul.social-icons li a.skype:hover i { + background-color: #36C4F3 +} + +.contact-widget { + background: url(./css/images/map.png) center bottom no-repeat; +} + +.contact-widget span { + font-weight: 700; +} + +.contact-widget ul li { + margin-bottom: 12px; +} + +.contact-widget ul li p a { + color: #bbb; +} + +.twitter-widget a { + color: #43B9CD; +} + +.twitter-widget a:hover { + color: #43B9CD; + text-decoration: underline; +} + +.twitter-widget ul li { + margin-bottom: 20px; +} + +.twitter-widget ul li span { + color: #888; +} + +.flickr-widget ul { + overflow: hidden; +} + +.flickr-widget ul li { + float: left; + margin-left: 8px; + margin-bottom: 8px; +} + +.flickr-widget ul li:nth-child(3n+1) { + margin-left: 0; +} + +.flickr-widget ul li a { + display: inline-block; + width: 80px; + opacity: 0.6; + border-radius: 2px; + -webkit-border-radius: 2px; + -moz-border-radius: 2px; + -o-border-radius: 2px; + border: 4px solid #333; + transition: all 0.2s ease-in-out; + -moz-transition: all 0.2s ease-in-out; + -webkit-transition: all 0.2s ease-in-out; + -o-transition: all 0.2s ease-in-out; +} + +.flickr-widget ul li a img { + width: 100%; + height: 65px; +} + +.flickr-widget ul li a:hover { + opacity: 1; +} + +.mail-subscribe-widget form { + margin-top: 15px; + margin-bottom: 20px; +} + +.mail-subscribe-widget form input[type="text"] { + outline: none; + color: #888; + font-size: 12px; + padding: 6px 12px; + border: none; + background: #fff; + border-radius: 2px; + -webkit-border-radius: 2px; + -moz-border-radius: 2px; + -o-border-radius: 2px; + outline: none; +} + +.copyright-section { + padding: 15px 0; + font-size: 11px; + letter-spacing: 0.5px; + border-top: 1px solid rgba(255,255,255,.06); +} + +.copyright-section p { + font-size: 11px; + text-transform: uppercase; +} + +ul.footer-nav { + float: right; +} + +ul.footer-nav li { + display: inline-block; + float: left; + margin-left: 15px; +} + +ul.footer-nav li:first-child { + margin-left: 0; +} + +ul.footer-nav li a { + display: inline-block; + text-transform: uppercase; + text-decoration: none; + transition: all 0.2s ease-in-out; + -moz-transition: all 0.2s ease-in-out; + -webkit-transition: all 0.2s ease-in-out; + -o-transition: all 0.2s ease-in-out; +} + +ul.footer-nav li a:hover { + color: #fff; +} + +.back-to-top { + display: none; + position: fixed; + bottom: 18px; + right: 15px; +} + +.back-to-top i { + display: block; + width: 36px; + height: 36px; + line-height: 36px; + color: #fff; + border-radius: 2px; + -webkit-border-radius: 2px; + -moz-border-radius: 2px; + -o-border-radius: 2px; + text-align: center; + background-color: #444; + transition: all 0.2s ease-in-out; + -moz-transition: all 0.2s ease-in-out; + -webkit-transition: all 0.2s ease-in-out; + -o-transition: all 0.2s ease-in-out; +} + + + + + + +/*------------------------------------------*/ +/* 12 - Plugins Styles +/*------------------------------------------*/ + + +/* + * Nivo Lightbox v1.0 + * http://dev7studios.com/nivo-lightbox + * + * Copyright 2013, Dev7studios + * Free to use and abuse under the MIT license. + * http://www.opensource.org/licenses/mit-license.php + */ + +.nivo-lightbox-overlay { + position: fixed; + top: 0; + left: 0; + z-index: 99999999; + width: 100%; + height: 100%; + overflow: hidden; + visibility: hidden; + opacity: 0; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} +.nivo-lightbox-overlay.nivo-lightbox-open { + visibility: visible; + opacity: 1; +} +.nivo-lightbox-wrap { + position: absolute; + top: 10%; + bottom: 10%; + left: 10%; + right: 10%; +} +.nivo-lightbox-content { + width: 100%; + height: 100%; +} +.nivo-lightbox-title-wrap { + position: absolute; + bottom: 0; + left: 0; + width: 100%; + z-index: 99999; + text-align: center; +} +.nivo-lightbox-nav { display: none; } +.nivo-lightbox-prev { + position: absolute; + top: 50%; + left: 0; +} +.nivo-lightbox-next { + position: absolute; + top: 50%; + right: 0; +} +.nivo-lightbox-close { + position: absolute; + top: 2%; + right: 2%; +} + +.nivo-lightbox-image { text-align: center; } +.nivo-lightbox-image img { + max-width: 100%; + max-height: 100%; + width: auto; + height: auto; + vertical-align: middle; +} +.nivo-lightbox-content iframe { + width: 100%; + height: 100%; +} +.nivo-lightbox-ajax { + max-height: 100%; + overflow: auto; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + /* https://bugzilla.mozilla.org/show_bug.cgi?id=308801 */ +} +.nivo-lightbox-error { + display: table; + text-align: center; + width: 100%; + height: 100%; + color: #fff; + text-shadow: 0 1px 1px #000; +} +.nivo-lightbox-error p { + display: table-cell; + vertical-align: middle; +} + +/* Effects + **********************************************/ +.nivo-lightbox-effect-fade, +.nivo-lightbox-effect-fadeScale, +.nivo-lightbox-effect-slideLeft, +.nivo-lightbox-effect-slideRight, +.nivo-lightbox-effect-slideUp, +.nivo-lightbox-effect-slideDown, +.nivo-lightbox-effect-fall { + -webkit-transition: all 0.2s ease-in-out; + -moz-transition: all 0.2s ease-in-out; + -ms-transition: all 0.2s ease-in-out; + -o-transition: all 0.2s ease-in-out; + transition: all 0.2s ease-in-out; +} + +/* fadeScale */ +.nivo-lightbox-effect-fadeScale .nivo-lightbox-wrap { + -webkit-transition: all 0.3s; + -moz-transition: all 0.3s; + -ms-transition: all 0.3s; + -o-transition: all 0.3s; + transition: all 0.3s; + -webkit-transform: scale(0.7); + -moz-transform: scale(0.7); + -ms-transform: scale(0.7); + transform: scale(0.7); +} +.nivo-lightbox-effect-fadeScale.nivo-lightbox-open .nivo-lightbox-wrap { + -webkit-transform: scale(1); + -moz-transform: scale(1); + -ms-transform: scale(1); + transform: scale(1); +} + +/* slideLeft / slideRight / slideUp / slideDown */ +.nivo-lightbox-effect-slideLeft .nivo-lightbox-wrap, +.nivo-lightbox-effect-slideRight .nivo-lightbox-wrap, +.nivo-lightbox-effect-slideUp .nivo-lightbox-wrap, +.nivo-lightbox-effect-slideDown .nivo-lightbox-wrap { + -webkit-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9); + -moz-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9); + -ms-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9); + -o-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9); + transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9); +} +.nivo-lightbox-effect-slideLeft .nivo-lightbox-wrap { + -webkit-transform: translateX(-10%); + -moz-transform: translateX(-10%); + -ms-transform: translateX(-10%); + transform: translateX(-10%); +} +.nivo-lightbox-effect-slideRight .nivo-lightbox-wrap { + -webkit-transform: translateX(10%); + -moz-transform: translateX(10%); + -ms-transform: translateX(10%); + transform: translateX(10%); +} +.nivo-lightbox-effect-slideLeft.nivo-lightbox-open .nivo-lightbox-wrap, +.nivo-lightbox-effect-slideRight.nivo-lightbox-open .nivo-lightbox-wrap { + -webkit-transform: translateX(0); + -moz-transform: translateX(0); + -ms-transform: translateX(0); + transform: translateX(0); +} +.nivo-lightbox-effect-slideDown .nivo-lightbox-wrap { + -webkit-transform: translateY(-10%); + -moz-transform: translateY(-10%); + -ms-transform: translateY(-10%); + transform: translateY(-10%); +} +.nivo-lightbox-effect-slideUp .nivo-lightbox-wrap { + -webkit-transform: translateY(10%); + -moz-transform: translateY(10%); + -ms-transform: translateY(10%); + transform: translateY(10%); +} +.nivo-lightbox-effect-slideUp.nivo-lightbox-open .nivo-lightbox-wrap, +.nivo-lightbox-effect-slideDown.nivo-lightbox-open .nivo-lightbox-wrap { + -webkit-transform: translateY(0); + -moz-transform: translateY(0); + -ms-transform: translateY(0); + transform: translateY(0); +} + +/* fall */ +.nivo-lightbox-body-effect-fall .nivo-lightbox-effect-fall { + -webkit-perspective: 1000px; + -moz-perspective: 1000px; + perspective: 1000px; +} +.nivo-lightbox-effect-fall .nivo-lightbox-wrap { + -webkit-transition: all 0.3s ease-out; + -moz-transition: all 0.3s ease-out; + -ms-transition: all 0.3s ease-out; + -o-transition: all 0.3s ease-out; + transition: all 0.3s ease-out; + -webkit-transform: translateZ(300px); + -moz-transform: translateZ(300px); + -ms-transform: translateZ(300px); + transform: translateZ(300px); +} +.nivo-lightbox-effect-fall.nivo-lightbox-open .nivo-lightbox-wrap { + -webkit-transform: translateZ(0); + -moz-transform: translateZ(0); + -ms-transform: translateZ(0); + transform: translateZ(0); +} + +/* + * Nivo Lightbox Default Theme v1.0 + * http://dev7studios.com/nivo-lightbox + */ + +.nivo-lightbox-theme-default.nivo-lightbox-overlay { + background: #666; + background: rgba(0,0,0,0.8); +} +.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading { background: url(./css/images/lightbox/loading.gif) no-repeat 50% 50%; } + +.nivo-lightbox-theme-default .nivo-lightbox-nav { + top: 10%; + width: 8%; + height: 80%; + text-indent: -9999px; + background-repeat: no-repeat; + background-position: 50% 50%; + opacity: 0.5; + transition: all 0.2s ease-in-out; + -moz-transition: all 0.2s ease-in-out; + -webkit-transition: all 0.2s ease-in-out; + -o-transition: all 0.2s ease-in-out; +} +.nivo-lightbox-theme-default .nivo-lightbox-nav:hover { + opacity: 1; + background-color: rgba(0,0,0,0.5); +} +.nivo-lightbox-theme-default .nivo-lightbox-prev { + background-image: url(./css/images/lightbox/prev.png); + border-radius: 0 3px 3px 0; + -webkit-border-radius: 0 3px 3px 0; + -moz-border-radius: 0 3px 3px 0; + -o-border-radius: 0 3px 3px 0; +} +.nivo-lightbox-theme-default .nivo-lightbox-next { + background-image: url(./css/images/lightbox/next.png); + border-radius: 3px 0 0 3px; + -webkit-border-radius: 3px 0 0 3px; + -moz-border-radius: 3px 0 0 3px; + -o-border-radius: 3px 0 0 3px; + +} + +.nivo-lightbox-theme-default .nivo-lightbox-close { + display: block; + background: url(./css/images/lightbox/close.png) no-repeat 5px 5px; + width: 16px; + height: 16px; + text-indent: -9999px; + padding: 5px; + opacity: 0.5; +} +.nivo-lightbox-theme-default .nivo-lightbox-close:hover { opacity: 1; } + +.nivo-lightbox-theme-default .nivo-lightbox-title-wrap { bottom: -7%; } +.nivo-lightbox-theme-default .nivo-lightbox-title { + font: 14px/20px 'Helvetica Neue', Helvetica, Arial, sans-serif; + font-style: normal; + font-weight: normal; + background: #000; + color: #fff; + padding: 7px 15px; + border-radius: 3px; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + -o-border-radius: 3px; +} + +.nivo-lightbox-theme-default .nivo-lightbox-image img { + background: #fff; + box-shadow: 0 0 8px rgba(0,0,0,0.5); + -o-box-shadow: 0 0 8px rgba(0,0,0,0.5); + -moz-box-shadow: 0 0 8px rgba(0,0,0,0.5); + -webkit-box-shadow: 0 0 8px rgba(0,0,0,0.5); +} +.nivo-lightbox-theme-default .nivo-lightbox-ajax, +.nivo-lightbox-theme-default .nivo-lightbox-inline { + background: #fff; + padding: 40px; + box-shadow: 0 0 8px rgba(0,0,0,0.5); + -o-box-shadow: 0 0 8px rgba(0,0,0,0.5); + -moz-box-shadow: 0 0 8px rgba(0,0,0,0.5); + -webkit-box-shadow: 0 0 8px rgba(0,0,0,0.5); +} + +@media (-webkit-min-device-pixel-ratio: 1.3), + (-o-min-device-pixel-ratio: 2.6/2), + (min--moz-device-pixel-ratio: 1.3), + (min-device-pixel-ratio: 1.3), + (min-resolution: 1.3dppx) { + + .nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading { + background-image: url(./css/images/lightbox/loading@2x.gif); + background-size: 32px 32px; + } + .nivo-lightbox-theme-default .nivo-lightbox-prev { + background-image: url(./css/images/lightbox/prev@2x.png); + background-size: 48px 48px; + } + .nivo-lightbox-theme-default .nivo-lightbox-next { + background-image: url(./css/images/lightbox/next@2x.png); + background-size: 48px 48px; + } + .nivo-lightbox-theme-default .nivo-lightbox-close { + background-image: url(./css/images/lightbox/close@2x.png); + background-size: 16px 16px; + } + +} + + +/******* Style Switcher *******/ +.switcher-box { + width: 212px; + position: fixed; + left: -212px; + top: 160px; + text-align: center; + z-index: 99999999999; + background-color: #fff; + border-radius: 0 0 2px 0; + border-radius: 0 5px 5px 0; + -webkit-box-shadow: 0 0 6px rgba(0,0,0,0.2); + -moz-box-shadow: 0 0 5px rgba(0,0,0,0.2); + box-shadow: 0 0 5px rgba(0,0,0,0.2); + transition: all 0.4s ease-in-out; + -moz-transition: all 0.4s ease-in-out; + -webkit-transition: all 0.4s ease-in-out; + -o-transition: all 0.4s ease-in-out; +} +.switcher-box h4 { + display: block; + height: 40px; + line-height: 42px; + font-size: 14px; + font-weight: 700; + color: #fff; + background-color: #333; + margin-bottom: 10px; +} +.switcher-box span { + display: block; + padding: 5px 20px; + text-align: left; +} +.switcher-box .colors-list { + padding: 0 18px 0 18px; + margin-bottom: 8px; + line-height: 20px; +} +.switcher-box .colors-list li { + display: inline-block; + margin-right: 2px; +} +.switcher-box .colors-list li a { + display: block; + width: 24px; + height: 18px; + cursor: pointer; +} +.switcher-box .colors-list li a.blue { + background-color: #0a9fd8; +} +.switcher-box .colors-list li a.cyan { + background-color: #27bebe; +} +.switcher-box .colors-list li a.jade { + background-color: #0bb586; +} +.switcher-box .colors-list li a.red { + background-color: #ee3733; +} +.switcher-box .colors-list li a.peach { + background-color: #f49237; +} +.switcher-box .colors-list li a.sky-blue { + background-color: #38cbcb; +} +.switcher-box .colors-list li a.yellow { + background-color: #f8ba01; +} +.switcher-box .colors-list li a.green { + background-color: #94c523; +} +.switcher-box .colors-list li a.orange { + background-color: #f36510; +} +.switcher-box .colors-list li a.pink { + background-color: #f1505b; +} +.switcher-box .colors-list li a.purple { + background-color: #6a3da3; +} +.switcher-box .colors-list li a.beige { + background-color: #fdb655; +} +.switcher-box .layout-style, .switcher-box .topbar-style { + width: 172px; + padding: 6px 9px; + outline: none; + display: block; + background: #fff; + border-radius: 3px; + padding: 4px 6px; + color: #888; + cursor: pointer; + border-radius: 2px; + font-size: 12px; + margin: 0 0 12px 20px; + border: 1px solid #ddd; + -webkit-box-shadow: inset 1px 1px 3px 0px rgba(0, 0, 0, 0.06); + box-shadow: inset 1px 1px 3px 0px rgba(0, 0, 0, 0.06); +} +.switcher-box .bg-list { + padding: 0 18px 0 18px; + margin-bottom: 18px; +} +.switcher-box .bg-list li { + display: inline-block; + margin-right: 2px; +} +.switcher-box .bg-list li a { + display: block; + width: 20px; + height: 20px; +} +.switcher-box .bg-list li a.bg1 { + background: url(./css/images/patterns/1.png) repeat; +} +.switcher-box .bg-list li a.bg2 { + background: url(./css/images/patterns/2.png) repeat; +} +.switcher-box .bg-list li a.bg3 { + background: url(./css/images/patterns/3.png) repeat; +} +.switcher-box .bg-list li a.bg4 { + background: url(./css/images/patterns/4.png) repeat; +} +.switcher-box .bg-list li a.bg5 { + background: url(./css/images/patterns/5.png) repeat; +} +.switcher-box .bg-list li a.bg6 { + background: url(./css/images/patterns/6.png) repeat; +} +.switcher-box .bg-list li a.bg7 { + background: url(./css/images/patterns/7.png) repeat; +} +.switcher-box .bg-list li a.bg8 { + background: url(./css/images/patterns/8.png) repeat; +} +.switcher-box .bg-list li a.bg9 { + background: url(./css/images/patterns/9.png) repeat; +} +.switcher-box .bg-list li a.bg10 { + background: url(./css/images/patterns/10.png) repeat; +} +.switcher-box .bg-list li a.bg11 { + background: url(./css/images/patterns/11.png) repeat; +} +.switcher-box .bg-list li a.bg12 { + background: url(./css/images/patterns/12.png) repeat; +} +.switcher-box .bg-list li a.bg13 { + background: url(./css/images/patterns/13.png) repeat; +} +.switcher-box .bg-list li a.bg14 { + background: url(./css/images/patterns/14.png) repeat; +} + +.switcher-box .open-switcher { + width: 40px; + height: 40px; + display: block; + position: absolute; + top: 0; + left: 100%; + border-radius: 0 2px 2px 0; + /*background: url(./css/images/icons/switcher.png) #444 center no-repeat;*/ + -webkit-box-shadow: 0 0 4px rgba(0,0,0,0.2); + -moz-box-shadow: 0 0 4px rgba(0,0,0,0.2); + box-shadow: 0 0 4px rgba(0,0,0,0.2); +} +.switcher-box .open-switcher i { + display: none; +} + + +/*Bootstrap override*/ +#btnLogin { + margin-right:10px; + min-width: 100px; +} + +.topLoginItem { + line-height: 28px; + height: 33px; +} + +.topLoginPanel { + display: inline-block; + vertical-align: middle; +} + +@media (max-width: 768px) { + .btn-responsive { + padding:2px 4px; + font-size:80%; + line-height: 1; + border-radius:3px; + } +} + +@media (min-width: 769px) and (max-width: 992px) { + .btn-responsive { + padding:4px 9px; + font-size:90%; + line-height: 1.2; + } +} + +.modal { + z-index: 99999999 !important; +} + +/* Old Site.css*/ + +/*animate ng-view when routing*/ +.view-animate-container { + position: relative; + min-height: 100px !important; + background: white; + overflow: hidden; +} + +.view-animate { + padding: 10px; +} + +.view-animate.ng-enter { + transition: all cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.5s; + display: block; + width: 100%; + border-left: 1px solid #f6f6f6; + position: relative; + top: 0; + left: 0; + right: 0; + bottom: 0; + padding: 10px; +} + +view-animate.ng-leave { + transition: all cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.5s; + display: block; + width: 100%; + border-left: 1px solid #f6f6f6; + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; + padding: 10px; +} + +.view-animate.ng-enter { + left: 100%; +} + +.view-animate.ng-enter.ng-enter-active { + left: 0; +} + +.view-animate.ng-leave.ng-leave-active { + left: -100%; +} + +.noAnimate { + -webkit-transition: none !important; + transition: none !important; +} +/*END animate ng-view when routing*/ + +.formly-field { + margin-bottom: 16px; +} + + + +/* messages fanciness */ +.my-messages { + position: relative; +} + +.my-messages, .validation-message { + opacity: 1; + transition: .2s linear all; +} + +formly-validation-message, .validation-message { + font-size: .8em; + position: absolute; + width: 100%; + color: #a94442; + line-height: initial; +} + +.my-messages.ng-enter.ng-enter-active, +.validation-message.ng-enter.ng-enter-active { + opacity: 1; + top: 0; +} + +.my-messages.ng-enter, +.validation-message.ng-enter { + opacity: 0; + top: -10px; +} + +.my-messages.ng-leave, +.validation-message.ng-leave { + opacity: 1; + top: 0; +} + +.my-messages.ng-leave-active, +.validation-message.ng-leave-active { + opacity: 0; + top: -10px; +} + +.has-error .control-label, +.has-error .form-control-label { + font-weight: bold; + margin-bottom: 0; +} + +label { + margin-bottom: 0; +} + +.panel-primary > .panel-heading { + padding: 5px 10px; +} + +.formly .panel-body { + padding: 0; +} + +.formly .formly-field { + margin-bottom: 0; + padding: 0 10px; +} + +.formly .row { + padding: 0; + margin: 0; +} + + + +/*Payment styles*/ +/*-------------------- +Shared Variables +--------------------*/ + +/*$small-screen: 476px; +$grey: #111; +$blue: #5db6e8; +$darkBlue: #282c37; +$red: #E53A40; +$green: #8CD790; +$white: #fff; +$radius: 4px; +$bouncy: cubic-bezier(.20, 1.3, .7, 1);*/ + +/*-------------------- +General +--------------------*/ + +/*// Position form at the center of the page +html, +body { + font-size: 100%; + height: 100%; + color: $darkBlue; + font-family: sans-serif; + padding: 0; + margin: 0; +} + +header { + z-index: 2; + transform: translate(0, 5.5em); + transition: all .5s ease; + &.header-slide { + transform: translate(0, 0); + } +} + +h1 { + font-weight: 100; + font-size: 1.4em; + display: block; +}*/ + +/*.form-container { + display: flex; + background-color: #EEE; + justify-content: center; + align-items: center; + height: 100%; + flex-direction: column; + border: 1em solid #fff; + box-sizing: border-box; + position: relative; + + @media (max-width: $small-screen) { + border: none; + } +} + +.cardinfo-wrapper { + display: flex; + justify-content: space-around; +} + +.bg-illustration { + position: absolute; + bottom: 0; + left: 0; + z-index: 0; + svg { + width: 100%; + } +} + +.card-shape { + border-radius: 6px; + padding: 2em 2em 1em; + + @media (max-width: $small-screen) { + padding: 2em 1.5em 1em; + } +} + +#my-sample-form { + background-color: #FFF; + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12); + padding: 8em 3em 2em; + width: 20em; + margin-bottom: 2em; + transition: all 600ms $bouncy; + animation: cardIntro 500ms $bouncy; + z-index: 1; + + &:hover { + box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06); + } + + @media (max-width: $small-screen) { + box-sizing: border-box; + padding: 7em 2em 2em; + width: 100%; + } + // Change background color based on the card type + &.visa { + @extend .card-shape; + color: $white; + background-color: #0D4AA2; + } + &.master-card { + @extend .card-shape; + color: $white; + background-color: #363636; + background: linear-gradient(115deg,#d82332, #d82332 50%, #f1ad3d 50%, #f1ad3d); + } + &.maestro { + @extend .card-shape; + color: $white; + background-color: #363636; + background: linear-gradient(115deg,#009ddd, #009ddd 50%, #ed1c2e 50%, #ed1c2e); + } + &.american-express { + @extend .card-shape; + color: $white; + background-color: #007CC3; + } + &.discover { + @extend .card-shape; + color: $white; + background-color: #ff6000; + background: linear-gradient(#d14310, #f7961e); + } + &.unionpay, &.jcb, &.diners-club { + @extend .card-shape; + color: $white; + background-color: #363636; + } +} + +.cardinfo-label { + display: block; + font-size: 11px; + margin-bottom: 0.5em; + text-transform: uppercase; +} + +.cardinfo-exp-date { + margin-right: 1em; + width: 100%; +} + +.cardinfo-cvv { + width: 100%; +} + +#button-pay { + cursor: pointer; + width: 16em; + font-size: 15px; + border: 0; + padding: 1.2em 1em; + color: #fff; + background: #282c37; + border-radius: $radius; + z-index: 0; + transform: translateY(-100px); + transition: all 500ms $bouncy; + opacity: 0; + -webkit-appearance: none; + + &:hover { + background: lighten(#282c37, 20%); + } + &:active { + animation: cardIntro 200ms $bouncy; + } + &.show-button { + transform: translateY(0); + opacity: 1; + } +} + +.cardinfo-card-number { + position: relative; +} + +#card-image { + position: absolute; + top: 2em; + right: 1em; + width: 44px; + height: 28px; + background-image: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/346994/card_sprite.png); + background-size: 86px 458px; + border-radius: $radius; + background-position: -100px 0; + background-repeat: no-repeat; + margin-bottom: 1em; + &.visa { + background-position: 0 -398px; + } + &.master-card { + background-position: 0 -281px; + } + &.american-express { + background-position: 0 -370px; + } + &.discover { + background-position: 0 -163px; + } + &.maestro { + background-position: 0 -251px; + } + &.jcb { + background-position: 0 -221px; + } + &.diners-club { + background-position: 0 -133px; + } +}*/ + +/*-------------------- +Inputs +--------------------*/ + +/*// Styling for input wrappers, internal font styles are handled in javascript*/ +/*.input-wrapper { + border-radius: 2px; + background: rgba(255, 255, 255, 0.86); + height: 2.75em; + border: 1px solid #eee; + box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.06); + padding: 5px 10px; + margin-bottom: 1em; +} + +.cardinfo-card-number, +.cardinfo-exp-date, +.cardinfo-cvv { + transition: transform 0.3s; +}*/ + +/*// Change styles of the input wrappers using Braintree's provided classes. +// Styles the wrapper of the focused input*/ +/*.braintree-hosted-fields-focused { + border-color: $blue; +} + +// Styles the wrapper of the invalid input +.braintree-hosted-fields-invalid { + border-color: $red; + animation: shake 500ms $bouncy both; + transform: translate3d(0, 0, 0); + backface-visibility: hidden; + perspective: 1000px; +}*/ + + +/*-------------------- +Animations +--------------------*/ + +/*@keyframes cardIntro { + 0% { + transform: scale(0.8) translate(0, 0); + opacity: 0; + } + 100% { + transform: scale(1) translate(0, 0); + opacity: 1; + } +} + +@keyframes shake { + 10%, + 90% { + transform: translate3d(-1px, 0, 0); + } + 20%, + 80% { + transform: translate3d(1px, 0, 0); + } + 30%, + 50%, + 70% { + transform: translate3d(-3px, 0, 0); + } + 40%, + 60% { + transform: translate3d(3px, 0, 0); + } +}*/ +.payment-container { + padding: 15px; + text-align: center; +} + +.payment-container section { + text-align: initial; +} + +/*End payment styles*/ + +#dropzone { + margin-bottom: 3rem; +} + +.dropzone { + border: 2px dashed #0087F7; + border-radius: 5px; + background: white; +} + +.dropzone .dz-message { + font-weight: 400; +} + +.dropzone .dz-message .note { + font-size: 0.8em; + font-weight: 200; + display: block; + margin-top: 1.4rem; +} + + +/* The MIT License */ +.dropzone, +.dropzone *, +.dropzone-previews, +.dropzone-previews * { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} + +.dropzone { + position: relative; + background: rgba(0,0,0,0.02); + padding: 1em; +} + +.dropzone.dz-clickable { + cursor: pointer; +} + +.dropzone.dz-clickable .dz-message, +.dropzone.dz-clickable .dz-message span { + cursor: pointer; +} + +.dropzone.dz-clickable * { + cursor: default; +} + +.dropzone .dz-message { + opacity: 1; + -ms-filter: none; + filter: none; +} + +.dropzone.dz-drag-hover { + border-color: rgba(0,0,0,0.15); + background: rgba(0,0,0,0.04); +} + +.dropzone.dz-started .dz-message { + display: none; +} + +.dropzone .dz-preview, +.dropzone-previews .dz-preview { + background: rgba(255,255,255,0.8); + position: relative; + display: inline-block; + margin: 5px; + vertical-align: top; + border: 1px solid #acacac; + padding: 2px; +} + +.dropzone .dz-preview.dz-file-preview [data-dz-thumbnail], +.dropzone-previews .dz-preview.dz-file-preview [data-dz-thumbnail] { + display: none; +} + +.dropzone .dz-preview .dz-details, +.dropzone-previews .dz-preview .dz-details { + width: 100px; + /*height: 100px;*/ + position: relative; + background: #ebebeb; + padding: 5px; + margin-bottom: 22px; + display: none; +} + +.dropzone .dz-preview .dz-details .dz-filename, +.dropzone-previews .dz-preview .dz-details .dz-filename { + overflow: hidden; + height: 100%; +} + +.dropzone .dz-preview .dz-details img, +.dropzone-previews .dz-preview .dz-details img { + position: absolute; + top: 0; + left: 0; + width: 100px; + height: 100px; +} + +.dropzone .dz-preview .dz-details .dz-size, +.dropzone-previews .dz-preview .dz-details .dz-size { + position: absolute; + bottom: -28px; + left: 3px; + height: 28px; + line-height: 28px; +} + +.dropzone .dz-preview.dz-error .dz-error-mark, +.dropzone-previews .dz-preview.dz-error .dz-error-mark { + display: block; +} + +.dropzone .dz-preview.dz-success .dz-success-mark, +.dropzone-previews .dz-preview.dz-success .dz-success-mark { + display: block; +} + +.dropzone .dz-preview:hover .dz-details img, +.dropzone-previews .dz-preview:hover .dz-details img { + display: none; +} + +.dropzone .dz-preview .dz-success-mark, +.dropzone-previews .dz-preview .dz-success-mark, +.dropzone .dz-preview .dz-error-mark, +.dropzone-previews .dz-preview .dz-error-mark { + display: none; + position: absolute; + width: 40px; + height: 40px; + font-size: 30px; + text-align: center; + right: -10px; + top: -10px; +} + +.dropzone .dz-preview .dz-success-mark, +.dropzone-previews .dz-preview .dz-success-mark { + color: #8cc657; +} + +.dropzone .dz-preview .dz-error-mark, +.dropzone-previews .dz-preview .dz-error-mark { + color: #ee162d; +} + +.dropzone .dz-preview .dz-progress, +.dropzone-previews .dz-preview .dz-progress { + position: absolute; + top: 100px; + left: 6px; + right: 6px; + height: 6px; + background: #d7d7d7; + display: none; +} + +.dropzone .dz-preview .dz-progress .dz-upload, +.dropzone-previews .dz-preview .dz-progress .dz-upload { + display: block; + position: absolute; + top: 0; + bottom: 0; + left: 0; + width: 0%; + background-color: #8cc657; +} + +.dropzone .dz-preview.dz-processing .dz-progress, +.dropzone-previews .dz-preview.dz-processing .dz-progress { + display: block; +} + +.dropzone .dz-preview .dz-error-message, +.dropzone-previews .dz-preview .dz-error-message { + display: none; + position: absolute; + top: -5px; + left: -20px; + background: rgba(245,245,245,0.8); + padding: 8px 10px; + color: #800; + min-width: 140px; + max-width: 500px; + z-index: 500; +} + +.dropzone .dz-preview:hover.dz-error .dz-error-message, +.dropzone-previews .dz-preview:hover.dz-error .dz-error-message { + display: block; +} + +.dropzone { + min-height: 60px; + -webkit-border-radius: 3px; + border-radius: 3px; + background: rgba(0,0,0,0.03); + padding: 3px; + margin-bottom: 5px; +} + +.dropzone .dz-default.dz-message { + opacity: 1; + -ms-filter: none; + filter: none; + -webkit-transition: opacity 0.3s ease-in-out; + -moz-transition: opacity 0.3s ease-in-out; + -o-transition: opacity 0.3s ease-in-out; + -ms-transition: opacity 0.3s ease-in-out; + transition: opacity 0.3s ease-in-out; + /*background-image: url("./css/images/spritemap.png");*/ + background-repeat: no-repeat; + background-position: 0 0; + position: absolute; + width: 428px; + height: 123px; + margin-left: -214px; + margin-top: -61.5px; + top: 50%; + left: 50%; +} + +@media all and (-webkit-min-device-pixel-ratio:1.5),(min--moz-device-pixel-ratio:1.5),(-o-min-device-pixel-ratio:1.5/1),(min-device-pixel-ratio:1.5),(min-resolution:138dpi),(min-resolution:1.5dppx) { + .dropzone .dz-default.dz-message { + /*background-image: url("./css/images/spritemap@2x.png");*/ + -webkit-background-size: 428px 406px; + -moz-background-size: 428px 406px; + background-size: 428px 406px; + } +} + +.dropzone .dz-default.dz-message span { + display: none; +} + +.dropzone.dz-square .dz-default.dz-message { + background-position: 0 -123px; + width: 268px; + margin-left: -134px; + height: 174px; + margin-top: -87px; +} + +.dropzone.dz-drag-hover .dz-message { + opacity: 0.15; + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=15)"; + filter: alpha(opacity=15); +} + +.dropzone.dz-started .dz-message { + display: block; + height: 1px; + opacity: 0; + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; + filter: alpha(opacity=0); +} + +.dropzone .dz-preview, +.dropzone-previews .dz-preview { + -webkit-box-shadow: 1px 1px 4px rgba(0,0,0,0.16); + box-shadow: 1px 1px 4px rgba(0,0,0,0.16); + font-size: 14px; +} + +.dropzone .dz-preview.dz-image-preview:hover .dz-details img, +.dropzone-previews .dz-preview.dz-image-preview:hover .dz-details img { + display: block; + opacity: 0.1; + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=10)"; + filter: alpha(opacity=10); +} + +.dropzone .dz-preview.dz-success .dz-success-mark, +.dropzone-previews .dz-preview.dz-success .dz-success-mark { + opacity: 1; + -ms-filter: none; + filter: none; +} + +.dropzone .dz-preview.dz-error .dz-error-mark, +.dropzone-previews .dz-preview.dz-error .dz-error-mark { + opacity: 1; + -ms-filter: none; + filter: none; +} + +.dropzone .dz-preview.dz-error .dz-progress .dz-upload, +.dropzone-previews .dz-preview.dz-error .dz-progress .dz-upload { + background: #ee1e2d; +} + +.dropzone .dz-preview .dz-error-mark, +.dropzone-previews .dz-preview .dz-error-mark, +.dropzone .dz-preview .dz-success-mark, +.dropzone-previews .dz-preview .dz-success-mark { + display: block; + opacity: 0; + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; + filter: alpha(opacity=0); + -webkit-transition: opacity 0.4s ease-in-out; + -moz-transition: opacity 0.4s ease-in-out; + -o-transition: opacity 0.4s ease-in-out; + -ms-transition: opacity 0.4s ease-in-out; + transition: opacity 0.4s ease-in-out; + /*background-image: url("./css/images/spritemap.png");*/ + background-repeat: no-repeat; +} + +@media all and (-webkit-min-device-pixel-ratio:1.5),(min--moz-device-pixel-ratio:1.5),(-o-min-device-pixel-ratio:1.5/1),(min-device-pixel-ratio:1.5),(min-resolution:138dpi),(min-resolution:1.5dppx) { + .dropzone .dz-preview .dz-error-mark, + .dropzone-previews .dz-preview .dz-error-mark, + .dropzone .dz-preview .dz-success-mark, + .dropzone-previews .dz-preview .dz-success-mark { + /*background-image: url("./css/images/spritemap@2x.png");*/ + -webkit-background-size: 428px 406px; + -moz-background-size: 428px 406px; + background-size: 428px 406px; + } +} + +.dropzone .dz-preview .dz-error-mark span, +.dropzone-previews .dz-preview .dz-error-mark span, +.dropzone .dz-preview .dz-success-mark span, +.dropzone-previews .dz-preview .dz-success-mark span { + display: none; +} + +.dropzone .dz-preview .dz-error-mark, +.dropzone-previews .dz-preview .dz-error-mark { + background-position: -268px -123px; +} + +.dropzone .dz-preview .dz-success-mark, +.dropzone-previews .dz-preview .dz-success-mark { + background-position: -268px -163px; +} + +.dropzone .dz-preview .dz-progress .dz-upload, +.dropzone-previews .dz-preview .dz-progress .dz-upload { + -webkit-animation: loading 0.4s linear infinite; + -moz-animation: loading 0.4s linear infinite; + -o-animation: loading 0.4s linear infinite; + -ms-animation: loading 0.4s linear infinite; + animation: loading 0.4s linear infinite; + -webkit-transition: width 0.3s ease-in-out; + -moz-transition: width 0.3s ease-in-out; + -o-transition: width 0.3s ease-in-out; + -ms-transition: width 0.3s ease-in-out; + transition: width 0.3s ease-in-out; + -webkit-border-radius: 2px; + border-radius: 2px; + position: absolute; + top: 0; + left: 0; + width: 0%; + height: 100%; + /*background-image: url("./css/images/spritemap.png");*/ + background-repeat: repeat-x; + background-position: 0px -400px; +} + +@media all and (-webkit-min-device-pixel-ratio:1.5),(min--moz-device-pixel-ratio:1.5),(-o-min-device-pixel-ratio:1.5/1),(min-device-pixel-ratio:1.5),(min-resolution:138dpi),(min-resolution:1.5dppx) { + .dropzone .dz-preview .dz-progress .dz-upload, + .dropzone-previews .dz-preview .dz-progress .dz-upload { + /*background-image: url("./css/images/spritemap@2x.png");*/ + -webkit-background-size: 428px 406px; + -moz-background-size: 428px 406px; + background-size: 428px 406px; + } +} + +.dropzone .dz-preview.dz-success .dz-progress, +.dropzone-previews .dz-preview.dz-success .dz-progress { + display: block; + opacity: 0; + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; + filter: alpha(opacity=0); + -webkit-transition: opacity 0.4s ease-in-out; + -moz-transition: opacity 0.4s ease-in-out; + -o-transition: opacity 0.4s ease-in-out; + -ms-transition: opacity 0.4s ease-in-out; + transition: opacity 0.4s ease-in-out; +} + +.dropzone .dz-preview .dz-error-message, +.dropzone-previews .dz-preview .dz-error-message { + display: block; + opacity: 0; + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; + filter: alpha(opacity=0); + -webkit-transition: opacity 0.3s ease-in-out; + -moz-transition: opacity 0.3s ease-in-out; + -o-transition: opacity 0.3s ease-in-out; + -ms-transition: opacity 0.3s ease-in-out; + transition: opacity 0.3s ease-in-out; +} + +.dropzone .dz-preview:hover.dz-error .dz-error-message, +.dropzone-previews .dz-preview:hover.dz-error .dz-error-message { + opacity: 1; + -ms-filter: none; + filter: none; +} + +.dropzone a.dz-remove, +.dropzone-previews a.dz-remove { + background-image: -webkit-linear-gradient(top, #fafafa, #eee); + background-image: -moz-linear-gradient(top, #fafafa, #eee); + background-image: -o-linear-gradient(top, #fafafa, #eee); + background-image: -ms-linear-gradient(top, #fafafa, #eee); + background-image: linear-gradient(to bottom, #fafafa, #eee); + -webkit-border-radius: 2px; + border-radius: 2px; + border: 1px solid #eee; + text-decoration: none; + display: block; + padding: 4px 5px; + text-align: center; + color: #aaa; + margin-top: 6px; +} + +.dropzone a.dz-remove:hover, +.dropzone-previews a.dz-remove:hover { + color: #666; +} + +@-moz-keyframes loading { + from { + background-position: 0 -400px; + } + + to { + background-position: -7px -400px; + } +} + +@-webkit-keyframes loading { + from { + background-position: 0 -400px; + } + + to { + background-position: -7px -400px; + } +} + +@-o-keyframes loading { + from { + background-position: 0 -400px; + } + + to { + background-position: -7px -400px; + } +} + +@keyframes loading { + from { + background-position: 0 -400px; + } + + to { + background-position: -7px -400px; + } +} + +/*PayPal button styles*/ +.paypal-button-logo { + display: inline-block; + border: 1px solid #aaa; + border-right: 0; + border-radius: 3px 0 0 3px; + vertical-align: top; + box-sizing: content-box !important; +} + +.paypal-button-logo { + width: 24px; + height: 24px; +} + +.paypal-style-checkout .paypal-button-logo { + display: none; +} + +.paypal-button.paypal-size-medium .paypal-button-logo { + width: 30px; + height: 30px; +} + +.paypal-button-content img { + width: 63px; + height: 16px; + margin: 1px 0 0 1px; +} + +.paypal-button-content img { + vertical-align: middle; + padding: 0 !important; + display: inline !important; + background: none !important; + border: none !important; + box-sizing: content-box !important; +} + +.paypal-button.paypal-style-checkout.paypal-size-medium .paypal-button-content img { + height: 24px; + line-height: 34px; + margin-top: -4px; + margin-right: 4px; + padding-right: 0; +} + +.paypal-button.paypal-size-medium .paypal-button-content img { + width: 71px; + height: 19px; + margin: 2px 0 0 1px; +} + + +.paypal-button { + white-space: nowrap; + overflow: hidden; + margin: 0; + padding: 0; + background: 0; + border: 0; + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important; + text-transform: none; + font-weight: 500; + -webkit-font-smoothing: antialiased; + font-smoothing: antialiased; + cursor: pointer; + z-index: 0; +} + +.paypal-button-content { + height: 16px; + display: inline-block; + font-size: 9.5px !important; + line-height: 16px !important; +} + +.paypal-button { + white-space: nowrap; + overflow: hidden; + margin: 0; + padding: 0; + background: 0; + border: 0; + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important; + text-transform: none; + font-weight: 500; + -webkit-font-smoothing: antialiased; + font-smoothing: antialiased; + cursor: pointer; + z-index: 0; +} + +.paypal-button:disabled { + opacity: 0.6; +} + +.paypal-button.paypal-style-checkout.paypal-size-medium { + max-width: 230px !important; + width: auto; + margin-top: 10px; +} + +.paypal-button.paypal-style-checkout.paypal-size-medium .paypal-button-content { + height: 30px !important; + max-height: 30px !important; + padding-left: 6px; + padding-right: 6px; + margin-left: 2px; + margin-top: 2px; + margin-right: 2px; + width: 210px; + display: inline-block; + overflow: visible; + border-top-left-radius: 15px; + border-bottom-left-radius: 15px; + border-top-right-radius: 15px; + border-bottom-right-radius: 15px; + border: none; + font-size: 12px !important; + line-height: 34px !important; + vertical-align: middle; +} + +.paypal-button.paypal-style-checkout.paypal-color-gold .paypal-button-content { + background: #ffc439; + color: #000; + text-shadow: 0px 1px 0 #ffdc88; +} + +.paypal-button.paypal-size-medium .paypal-button-content { + height: 19px; + font-size: 10px !important; + line-height: 19px !important; + padding: 5px 8px 6px; + min-width: 71px !important; +} + +.paypal-button-content { + padding: 4px 8px 4px; + border: 1px solid transparent; + border-radius: 0 3px 3px 0; + min-width: 57px !important; + box-sizing: content-box !important; +} + +.paypal-button.paypal-style-checkout.paypal-size-medium .paypal-button-content { + height: 30px !important; + max-height: 30px !important; + padding-left: 6px; + padding-right: 6px; + margin-left: 2px; + margin-top: 2px; + margin-right: 2px; + width: 210px; + display: inline-block; + overflow: visible; + border-top-left-radius: 15px; + border-bottom-left-radius: 15px; + border-top-right-radius: 15px; + border-bottom-right-radius: 15px; + border: none; + font-size: 12px !important; + line-height: 34px !important; + vertical-align: middle; +} + +.paypal-button.paypal-style-checkout.paypal-color-gold .paypal-button-content { + background: #ffc439; + color: #000; + text-shadow: 0px 1px 0 #ffdc88; +} + +.paypal-button.paypal-size-medium .paypal-button-content { + height: 19px; + font-size: 10px !important; + line-height: 19px !important; + padding: 5px 8px 6px; + min-width: 71px !important; +} + +.paypal-button.paypal-style-checkout .paypal-button-content { + padding-top: 0; + padding-bottom: 0; + position: relative; +} + +.paypal-button.paypal-style-checkout.paypal-size-medium .paypal-button-content::before { + content: ""; + padding: 2px; + top: -2px; + left: -2px; + position: absolute; + z-index: -1; + width: 100%; + height: 100%; + border-top-left-radius: 17px; + border-bottom-left-radius: 17px; + border-top-right-radius: 17px; + border-bottom-right-radius: 17px; +} + +.paypal-button.paypal-style-checkout.paypal-color-gold .paypal-button-content::before { + background: -webkit-gradient(linear, 0 0, 0 100%, from(#ffdc88), to(#d9a630)) 0 100%; + background: -webkit-linear-gradient(#ffdc88, #d9a630) 0 100%; + background: -moz-linear-gradient(#ffdc88, #d9a630) 0 100%; + background: -o-linear-gradient(#ffdc88, #d9a630) 0 100%; + background: linear-gradient(to bottom, #ffdc88, #d9a630) 0 100%; +} + +#paypal-img { + background: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNi4wLjQsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB3aWR0aD0iMjM1cHgiIGhlaWdodD0iNjBweCIgdmlld0JveD0iMCAwIDIzNSA2MCIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMjM1IDYwIiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxnPg0KCTxnPg0KCQk8Zz4NCgkJCTxwYXRoIGZpbGw9IiNGRkZGRkYiIGQ9Ik0xNzkuMjU1LDE0Ljc2NWgtMTMuMjFjLTAuOTAzLDAtMS42NzEsMC42NTMtMS44MSwxLjU0NWwtNS4zMzksMzMuODU5DQoJCQkJYy0wLjEwMywwLjY2NSwwLjQwOSwxLjI3NiwxLjA5LDEuMjc2aDYuNzdjMC42MzEsMCwxLjE3Mi0wLjQ2NywxLjI3LTEuMDg5bDEuNTEyLTkuNTk4YzAuMTQ0LTAuODg2LDAuOTExLTEuNTQ3LDEuODE0LTEuNTQ3DQoJCQkJaDQuMTc3YzguNjk2LDAsMTMuNzE1LTQuMjA5LDE1LjAyOC0xMi41NThjMC41ODgtMy42NDIsMC4wMTktNi41MTItMS42ODUtOC41MTlDMTg2Ljk5OCwxNS45MywxODMuNjY0LDE0Ljc2NSwxNzkuMjU1LDE0Ljc2NXoNCgkJCQkgTTE4MC43NzYsMjcuMTI3Yy0wLjcyMSw0Ljc0LTQuMzQ2LDQuNzQtNy44NDYsNC43NGgtMS45OTFsMS40LTguODQ5YzAuMDgyLTAuNTMxLDAuNTQ4LTAuOTI0LDEuMDg0LTAuOTI0aDAuOTEyDQoJCQkJYzIuMzg1LDAsNC42NCwwLDUuODAzLDEuMzQ4QzE4MC44MjYsMjQuMjU5LDE4MS4wNCwyNS40NjQsMTgwLjc3NiwyNy4xMjd6Ii8+DQoJCQk8cGF0aCBmaWxsPSIjRkZGRkZGIiBkPSJNODUuMDc3LDE0Ljc2NUg3MS44NjhjLTAuOTAzLDAtMS42NzEsMC42NTMtMS44MSwxLjU0NWwtNS4zMzUsMzMuODU5DQoJCQkJYy0wLjExMSwwLjY2NSwwLjQwNSwxLjI3NiwxLjA4NiwxLjI3Nmg2LjMwNGMwLjg5NiwwLDEuNjY3LTAuNjYxLDEuODExLTEuNTU1bDEuNDQzLTkuMTMyYzAuMTM4LTAuODg2LDAuOTA1LTEuNTQ3LDEuODA5LTEuNTQ3DQoJCQkJaDQuMThjOC42OTgsMCwxMy43MTUtNC4yMDksMTUuMDI3LTEyLjU1OGMwLjU4NC0zLjY0MiwwLjAyNS02LjUxMi0xLjY4MS04LjUxOUM5Mi44MjMsMTUuOTMsODkuNDksMTQuNzY1LDg1LjA3NywxNC43NjV6DQoJCQkJIE04Ni42MDEsMjcuMTI3Yy0wLjcyNCw0Ljc0LTQuMzQ2LDQuNzQtNy44NDEsNC43NGgtMS45OThsMS40MDItOC44NDljMC4wODItMC41MzEsMC41MzktMC45MjQsMS4wODMtMC45MjRoMC45MTUNCgkJCQljMi4zODMsMCw0LjYzOCwwLDUuNzksMS4zNDhDODYuNjQ3LDI0LjI1OSw4Ni44NTUsMjUuNDY0LDg2LjYwMSwyNy4xMjd6Ii8+DQoJCQk8cGF0aCBmaWxsPSIjRkZGRkZGIiBkPSJNMTI0LjU0LDI2Ljk3N2gtNi4zMTdjLTAuNTQ2LDAtMS4wMDgsMC4zOTYtMS4wOSwwLjkzMmwtMC4yODEsMS43NjZsLTAuNDQzLTAuNjM5DQoJCQkJYy0xLjM2OC0xLjk4Ni00LjQxOS0yLjY1My03LjQ2Ny0yLjY1M2MtNi45ODMsMC0xMi45NTEsNS4yOS0xNC4xMTIsMTIuNzIzYy0wLjYwOSwzLjY5OCwwLjI1Miw3LjI0MSwyLjM1Myw5LjcwOQ0KCQkJCWMxLjkyOSwyLjI3Miw0LjY4NiwzLjIxMiw3Ljk2MywzLjIxMmM1LjYzMywwLDguNzUyLTMuNjEzLDguNzUyLTMuNjEzbC0wLjI3OSwxLjc1N2MtMC4xMDgsMC42NjUsMC40MDksMS4yNzYsMS4wODMsMS4yNzZoNS42OTcNCgkJCQljMC45MDEsMCwxLjY2Ny0wLjY2MSwxLjgxMi0xLjU1NWwzLjQyLTIxLjY0NEMxMjUuNzMzLDI3LjU4LDEyNS4yMjIsMjYuOTc3LDEyNC41NCwyNi45Nzd6IE0xMTUuNzMsMzkuMjg0DQoJCQkJYy0wLjYxMywzLjYxMy0zLjQ4MSw2LjAzOC03LjE0LDYuMDM4Yy0xLjgyNywwLTMuMjk4LTAuNTg4LTQuMjQ1LTEuNzA3Yy0wLjkzNi0xLjEwNS0xLjI4My0yLjY4NS0wLjk5My00LjQ0MQ0KCQkJCWMwLjU3MS0zLjU3OCwzLjQ4NS02LjA4OCw3LjA4OC02LjA4OGMxLjgwMSwwLDMuMjU2LDAuNTk2LDQuMjExLDEuNzI5QzExNS42MjUsMzUuOTQ3LDExNi4wMDUsMzcuNTMxLDExNS43MywzOS4yODR6Ii8+DQoJCQk8cGF0aCBmaWxsPSIjRkZGRkZGIiBkPSJNMjE4LjcxNywyNi45NzdoLTYuMzI0Yy0wLjU0MywwLTEuMDAxLDAuMzk2LTEuMDg5LDAuOTMybC0wLjI3NSwxLjc2NmwtMC40NDItMC42MzkNCgkJCQljLTEuMzcxLTEuOTg2LTQuNDE5LTIuNjUzLTcuNDY3LTIuNjUzYy02Ljk4NSwwLTEyLjk1MSw1LjI5LTE0LjExMiwxMi43MjNjLTAuNjA0LDMuNjk4LDAuMjU2LDcuMjQxLDIuMzUzLDkuNzA5DQoJCQkJYzEuOTI5LDIuMjcyLDQuNjgzLDMuMjEyLDcuOTU5LDMuMjEyYzUuNjM0LDAsOC43NTgtMy42MTMsOC43NTgtMy42MTNsLTAuMjgyLDEuNzU3Yy0wLjEwNywwLjY2NSwwLjQwOCwxLjI3NiwxLjA4NSwxLjI3Nmg1LjY5OA0KCQkJCWMwLjkwMSwwLDEuNjY1LTAuNjYxLDEuODEtMS41NTVsMy40MjMtMjEuNjQ0QzIxOS45MTIsMjcuNTgsMjE5LjM5NiwyNi45NzcsMjE4LjcxNywyNi45Nzd6IE0yMDkuOTA2LDM5LjI4NA0KCQkJCWMtMC42MTEsMy42MTMtMy40NzYsNi4wMzgtNy4xMzksNi4wMzhjLTEuODMzLDAtMy4zLTAuNTg4LTQuMjQzLTEuNzA3Yy0wLjkzOS0xLjEwNS0xLjI4Ny0yLjY4NS0wLjk4OS00LjQ0MQ0KCQkJCWMwLjU2OS0zLjU3OCwzLjQ3Ni02LjA4OCw3LjA4MS02LjA4OGMxLjgwMywwLDMuMjU4LDAuNTk2LDQuMjIxLDEuNzI5QzIwOS44MDMsMzUuOTQ3LDIxMC4xODEsMzcuNTMxLDIwOS45MDYsMzkuMjg0eiIvPg0KCQkJPHBhdGggZmlsbD0iI0ZGRkZGRiIgZD0iTTE1OC4yMTYsMjYuOTc3aC02LjM1N2MtMC42MDcsMC0xLjE3MiwwLjMwMi0xLjUxNCwwLjgwNGwtOC43NjksMTIuOTEzbC0zLjcxNi0xMi40MQ0KCQkJCWMtMC4yMzMtMC43NzUtMC45NDUtMS4zMDctMS43NTMtMS4zMDdoLTYuMjUyYy0wLjc1NCwwLTEuMjc4LDAuNzM5LTEuMDQxLDEuNDU2bDYuOTk5LDIwLjUzN2wtNi41NzksOS4yODkNCgkJCQljLTAuNTE5LDAuNzI5LDAsMS43NDEsMC44OTIsMS43NDFoNi4zNTJjMC41OTgsMCwxLjE2NS0wLjMwMiwxLjUwOC0wLjc5MWwyMS4xMzQtMzAuNTA0DQoJCQkJQzE1OS42MjcsMjcuOTc0LDE1OS4xMDQsMjYuOTc3LDE1OC4yMTYsMjYuOTc3eiIvPg0KCQkJPHBhdGggZmlsbD0iI0ZGRkZGRiIgZD0iTTIyNi4xNjgsMTUuNjg5bC01LjQxOSwzNC40OGMtMC4xMDQsMC42NjUsMC40MTMsMS4yNzYsMS4wODgsMS4yNzZoNS40NQ0KCQkJCWMwLjkwNSwwLDEuNjczLTAuNjYxLDEuODExLTEuNTU1bDUuMzUxLTMzLjg1NmMwLjEwNC0wLjY2OC0wLjQxNi0xLjI3LTEuMDkyLTEuMjdoLTYuMQ0KCQkJCUMyMjYuNzE1LDE0Ljc2NSwyMjYuMjU2LDE1LjE2LDIyNi4xNjgsMTUuNjg5eiIvPg0KCQk8L2c+DQoJPC9nPg0KCTxnPg0KCQk8cGF0aCBmaWxsPSIjRkZGRkZGIiBkPSJNMzkuMjE4LDIwLjQ2NWMwLjYyOC0zLjk5My0wLjAwNi02LjcxLTIuMTY2LTkuMTcxYy0yLjM4LTIuNzEtNi42NzYtMy44NzItMTIuMTc2LTMuODcySDguOTINCgkJCWMtMS4xMjYsMC0yLjA4LDAuODE3LTIuMjU4LDEuOTI5TDAuMDE3LDUxLjQ4N2MtMC4xMzIsMC44MzIsMC41MTQsMS41ODUsMS4zNTIsMS41ODVoOS44NTRsLTAuNjgyLDQuMzEyDQoJCQljLTAuMTE0LDAuNzI5LDAuNDUzLDEuMzgzLDEuMTg0LDEuMzgzaDguMzA3YzAuOTgzLDAsMS44MTgtMC43MTEsMS45NzMtMS42ODVsMC4wODItMC40MjRsMS41NjQtOS45MTlsMC4wOTktMC41NDINCgkJCWMwLjE1MS0wLjk3LDAuOTkzLTEuNjg4LDEuOTczLTEuNjg4aDEuMjQ3YzguMDQsMCwxNC4zNDMtMy4yNjksMTYuMTc4LTEyLjcyNmMwLjc3NS0zLjk1MywwLjM3My03LjI0NS0xLjY1NS05LjU2Mg0KCQkJQzQwLjg3NSwyMS41MTksNDAuMTA3LDIwLjkzOCwzOS4yMTgsMjAuNDY1TDM5LjIxOCwyMC40NjUiLz4NCgkJPHBhdGggZmlsbD0iI0ZGRkZGRiIgZD0iTTM5LjIxOCwyMC40NjVjMC42MjgtMy45OTMtMC4wMDYtNi43MS0yLjE2Ni05LjE3MWMtMi4zOC0yLjcxLTYuNjc2LTMuODcyLTEyLjE3Ni0zLjg3Mkg4LjkyDQoJCQljLTEuMTI2LDAtMi4wOCwwLjgxNy0yLjI1OCwxLjkyOUwwLjAxNyw1MS40ODdjLTAuMTMyLDAuODMyLDAuNTE0LDEuNTg1LDEuMzUyLDEuNTg1aDkuODU0bDIuNDczLTE1LjY4OWwtMC4wNzksMC40ODgNCgkJCWMwLjE3OS0xLjExMSwxLjEyNi0xLjkyOSwyLjI1MS0xLjkyOWg0LjY4M2M5LjE5NCwwLDE2LjM5NC0zLjczOSwxOC41MDItMTQuNTQzQzM5LjExMSwyMS4wODIsMzkuMTY0LDIwLjc3MSwzOS4yMTgsMjAuNDY1Ii8+DQoJCTxwYXRoIGZpbGw9IiNGRkZGRkYiIGQ9Ik0xNi4zNTcsMjAuNTIxYzAuMTAzLTAuNjcyLDAuNTMzLTEuMjE3LDEuMTExLTEuNDkyYzAuMjYyLTAuMTIyLDAuNTUyLTAuMTksMC44NTktMC4xOWgxMi41MQ0KCQkJYzEuNDgyLDAsMi44NjcsMC4wOTQsNC4xMjcsMC4yOThjMC4zNTgsMC4wNTQsMC43MSwwLjEyNiwxLjA1NSwwLjE5N2MwLjM0MSwwLjA3OCwwLjY3NCwwLjE2MywwLjk5LDAuMjU4DQoJCQljMC4xNjQsMC4wNDQsMC4zMjMsMC4wOTQsMC40NzUsMC4xNDNjMC42MjEsMC4yMDgsMS4xOTksMC40NTMsMS43MzIsMC43MzFjMC42MjgtMy45OTMtMC4wMDYtNi43MS0yLjE2Ni05LjE3MQ0KCQkJYy0yLjM4LTIuNzEtNi42NzYtMy44NzItMTIuMTc2LTMuODcySDguOTJjLTEuMTI2LDAtMi4wOCwwLjgxNy0yLjI1OCwxLjkyOUwwLjAxNyw1MS40ODdjLTAuMTMyLDAuODMyLDAuNTE0LDEuNTg1LDEuMzUyLDEuNTg1DQoJCQloOS44NTRsMi40NzMtMTUuNjg5TDE2LjM1NywyMC41MjF6Ii8+DQoJPC9nPg0KCTxnPg0KCQk8cGF0aCBmaWxsPSIjMDA5Q0RFIiBkPSJNMTc5LjI1NSwxMS4wOTJoLTEzLjIxYy0wLjkwMywwLTEuNjcxLDAuNjUzLTEuODEsMS41NDdsLTUuMzM5LDMzLjg1Ng0KCQkJYy0wLjEwMywwLjY2OCwwLjQwOSwxLjI3OSwxLjA5LDEuMjc5aDYuNzdjMC42MzEsMCwxLjE3Mi0wLjQ2NiwxLjI3LTEuMDkybDEuNTEyLTkuNTk1YzAuMTQ0LTAuODksMC45MTEtMS41NSwxLjgxNC0xLjU1aDQuMTc3DQoJCQljOC42OTYsMCwxMy43MTUtNC4yMSwxNS4wMjgtMTIuNTU1YzAuNTg4LTMuNjQzLDAuMDE5LTYuNTExLTEuNjg1LTguNTIxQzE4Ni45OTgsMTIuMjU5LDE4My42NjQsMTEuMDkyLDE3OS4yNTUsMTEuMDkyeg0KCQkJIE0xODAuNzc2LDIzLjQ1NmMtMC43MjEsNC43NDItNC4zNDYsNC43NDItNy44NDYsNC43NDJoLTEuOTkxbDEuNC04Ljg0N2MwLjA4Mi0wLjUzNCwwLjU0OC0wLjkyOSwxLjA4NC0wLjkyOWgwLjkxMg0KCQkJYzIuMzg1LDAsNC42NCwwLDUuODAzLDEuMzUyQzE4MC44MjYsMjAuNTg3LDE4MS4wNCwyMS43OTIsMTgwLjc3NiwyMy40NTZ6Ii8+DQoJCTxwYXRoIGZpbGw9IiMwMDMwODciIGQ9Ik04NS4wNzcsMTEuMDkySDcxLjg2OGMtMC45MDMsMC0xLjY3MSwwLjY1My0xLjgxLDEuNTQ3bC01LjMzNSwzMy44NTYNCgkJCWMtMC4xMTEsMC42NjgsMC40MDUsMS4yNzksMS4wODYsMS4yNzloNi4zMDRjMC44OTYsMCwxLjY2Ny0wLjY2LDEuODExLTEuNTU5bDEuNDQzLTkuMTI4YzAuMTM4LTAuODksMC45MDUtMS41NSwxLjgwOS0xLjU1aDQuMTgNCgkJCWM4LjY5OCwwLDEzLjcxNS00LjIxLDE1LjAyNy0xMi41NTVjMC41ODQtMy42NDMsMC4wMjUtNi41MTEtMS42ODEtOC41MjFDOTIuODIzLDEyLjI1OSw4OS40OSwxMS4wOTIsODUuMDc3LDExLjA5MnoNCgkJCSBNODYuNjAxLDIzLjQ1NmMtMC43MjQsNC43NDItNC4zNDYsNC43NDItNy44NDEsNC43NDJoLTEuOTk4bDEuNDAyLTguODQ3YzAuMDgyLTAuNTM0LDAuNTM5LTAuOTI5LDEuMDgzLTAuOTI5aDAuOTE1DQoJCQljMi4zODMsMCw0LjYzOCwwLDUuNzksMS4zNTJDODYuNjQ3LDIwLjU4Nyw4Ni44NTUsMjEuNzkyLDg2LjYwMSwyMy40NTZ6Ii8+DQoJCTxwYXRoIGZpbGw9IiMwMDMwODciIGQ9Ik0xMjQuNTQsMjMuMzA2aC02LjMxN2MtMC41NDYsMC0xLjAwOCwwLjM5NC0xLjA5LDAuOTMzbC0wLjI4MSwxLjc2M2wtMC40NDMtMC42MzgNCgkJCWMtMS4zNjgtMS45ODYtNC40MTktMi42NTItNy40NjctMi42NTJjLTYuOTgzLDAtMTIuOTUxLDUuMjkyLTE0LjExMiwxMi43MmMtMC42MDksMy43MDEsMC4yNTIsNy4yNDUsMi4zNTMsOS43MTMNCgkJCWMxLjkyOSwyLjI3Miw0LjY4NiwzLjIxMiw3Ljk2MywzLjIxMmM1LjYzMywwLDguNzUyLTMuNjE3LDguNzUyLTMuNjE3bC0wLjI3OSwxLjc1N2MtMC4xMDgsMC42NjgsMC40MDksMS4yNzksMS4wODMsMS4yNzloNS42OTcNCgkJCWMwLjkwMSwwLDEuNjY3LTAuNjYsMS44MTItMS41NTlsMy40Mi0yMS42NDFDMTI1LjczMywyMy45MDgsMTI1LjIyMiwyMy4zMDYsMTI0LjU0LDIzLjMwNnogTTExNS43MywzNS42MQ0KCQkJYy0wLjYxMywzLjYxNy0zLjQ4MSw2LjAzOC03LjE0LDYuMDM4Yy0xLjgyNywwLTMuMjk4LTAuNTg4LTQuMjQ1LTEuNzA3Yy0wLjkzNi0xLjEwNC0xLjI4My0yLjY4Mi0wLjk5My00LjQzOA0KCQkJYzAuNTcxLTMuNTc4LDMuNDg1LTYuMDg3LDcuMDg4LTYuMDg3YzEuODAxLDAsMy4yNTYsMC41OTYsNC4yMTEsMS43MjdDMTE1LjYyNSwzMi4yNzUsMTE2LjAwNSwzMy44NjEsMTE1LjczLDM1LjYxeiIvPg0KCQk8cGF0aCBmaWxsPSIjMDA5Q0RFIiBkPSJNMjE4LjcxNywyMy4zMDZoLTYuMzI0Yy0wLjU0MywwLTEuMDAxLDAuMzk0LTEuMDg5LDAuOTMzbC0wLjI3NSwxLjc2M2wtMC40NDItMC42MzgNCgkJCWMtMS4zNzEtMS45ODYtNC40MTktMi42NTItNy40NjctMi42NTJjLTYuOTg1LDAtMTIuOTUxLDUuMjkyLTE0LjExMiwxMi43MmMtMC42MDQsMy43MDEsMC4yNTYsNy4yNDUsMi4zNTMsOS43MTMNCgkJCWMxLjkyOSwyLjI3Miw0LjY4MywzLjIxMiw3Ljk1OSwzLjIxMmM1LjYzNCwwLDguNzU4LTMuNjE3LDguNzU4LTMuNjE3bC0wLjI4MiwxLjc1N2MtMC4xMDcsMC42NjgsMC40MDgsMS4yNzksMS4wODUsMS4yNzloNS42OTgNCgkJCWMwLjkwMSwwLDEuNjY1LTAuNjYsMS44MS0xLjU1OWwzLjQyMy0yMS42NDFDMjE5LjkxMiwyMy45MDgsMjE5LjM5NiwyMy4zMDYsMjE4LjcxNywyMy4zMDZ6IE0yMDkuOTA2LDM1LjYxDQoJCQljLTAuNjExLDMuNjE3LTMuNDc2LDYuMDM4LTcuMTM5LDYuMDM4Yy0xLjgzMywwLTMuMy0wLjU4OC00LjI0My0xLjcwN2MtMC45MzktMS4xMDQtMS4yODctMi42ODItMC45ODktNC40MzgNCgkJCWMwLjU2OS0zLjU3OCwzLjQ3Ni02LjA4Nyw3LjA4MS02LjA4N2MxLjgwMywwLDMuMjU4LDAuNTk2LDQuMjIxLDEuNzI3QzIwOS44MDMsMzIuMjc1LDIxMC4xODEsMzMuODYxLDIwOS45MDYsMzUuNjF6Ii8+DQoJCTxwYXRoIGZpbGw9IiMwMDMwODciIGQ9Ik0xNTguMjE2LDIzLjMwNmgtNi4zNTdjLTAuNjA3LDAtMS4xNzIsMC4zMDEtMS41MTQsMC44MDNsLTguNzY5LDEyLjkxNWwtMy43MTYtMTIuNDEzDQoJCQljLTAuMjMzLTAuNzc1LTAuOTQ1LTEuMzA1LTEuNzUzLTEuMzA1aC02LjI1MmMtMC43NTQsMC0xLjI3OCwwLjczOC0xLjA0MSwxLjQ1Nmw2Ljk5OSwyMC41MzhsLTYuNTc5LDkuMjg0DQoJCQljLTAuNTE5LDAuNzMzLDAsMS43NDYsMC44OTIsMS43NDZoNi4zNTJjMC41OTgsMCwxLjE2NS0wLjMwMiwxLjUwOC0wLjc5MWwyMS4xMzQtMzAuNTA1DQoJCQlDMTU5LjYyNywyNC4zMDIsMTU5LjEwNCwyMy4zMDYsMTU4LjIxNiwyMy4zMDZ6Ii8+DQoJCTxwYXRoIGZpbGw9IiMwMDlDREUiIGQ9Ik0yMjYuMTY4LDEyLjAxOWwtNS40MTksMzQuNDc3Yy0wLjEwNCwwLjY2OCwwLjQxMywxLjI3OSwxLjA4OCwxLjI3OWg1LjQ1YzAuOTA1LDAsMS42NzMtMC42NiwxLjgxMS0xLjU1OQ0KCQkJbDUuMzUxLTMzLjg1NGMwLjEwNC0wLjY2Ny0wLjQxNi0xLjI3LTEuMDkyLTEuMjdoLTYuMUMyMjYuNzE1LDExLjA5MiwyMjYuMjU2LDExLjQ4OCwyMjYuMTY4LDEyLjAxOXoiLz4NCgk8L2c+DQoJPHBhdGggZmlsbD0iIzAwOUNERSIgZD0iTTM5LjIxOCwxNi43OTVjMC42MjgtMy45OTUtMC4wMDYtNi43MTItMi4xNjYtOS4xNzJjLTIuMzgtMi43MTEtNi42NzYtMy44NzMtMTIuMTc2LTMuODczSDguOTINCgkJYy0xLjEyNiwwLTIuMDgsMC44MTctMi4yNTgsMS45MjlMMC4wMTcsNDcuODE2Yy0wLjEzMiwwLjgzMywwLjUxNCwxLjU4NSwxLjM1MiwxLjU4NWg5Ljg1NGwtMC42ODIsNC4zMDkNCgkJYy0wLjExNCwwLjczMywwLjQ1MywxLjM4NiwxLjE4NCwxLjM4Nmg4LjMwN2MwLjk4MywwLDEuODE4LTAuNzEsMS45NzMtMS42ODhsMC4wODItMC40MmwxLjU2NC05LjkxOWwwLjA5OS0wLjU0Ng0KCQljMC4xNTEtMC45NjcsMC45OTMtMS42ODUsMS45NzMtMS42ODVoMS4yNDdjOC4wNCwwLDE0LjM0My0zLjI3LDE2LjE3OC0xMi43MjljMC43NzUtMy45NTIsMC4zNzMtNy4yNDMtMS42NTUtOS41NTkNCgkJQzQwLjg3NSwxNy44NDksNDAuMTA3LDE3LjI2OCwzOS4yMTgsMTYuNzk1TDM5LjIxOCwxNi43OTUiLz4NCgk8cGF0aCBmaWxsPSIjMDEyMTY5IiBkPSJNMzkuMjE4LDE2Ljc5NWMwLjYyOC0zLjk5NS0wLjAwNi02LjcxMi0yLjE2Ni05LjE3MmMtMi4zOC0yLjcxMS02LjY3Ni0zLjg3My0xMi4xNzYtMy44NzNIOC45Mg0KCQljLTEuMTI2LDAtMi4wOCwwLjgxNy0yLjI1OCwxLjkyOUwwLjAxNyw0Ny44MTZjLTAuMTMyLDAuODMzLDAuNTE0LDEuNTg1LDEuMzUyLDEuNTg1aDkuODU0bDIuNDczLTE1LjY4OWwtMC4wNzksMC40ODUNCgkJYzAuMTc5LTEuMTExLDEuMTI2LTEuOTI5LDIuMjUxLTEuOTI5aDQuNjgzYzkuMTk0LDAsMTYuMzk0LTMuNzM1LDE4LjUwMi0xNC41NDJDMzkuMTExLDE3LjQxMiwzOS4xNjQsMTcuMDk4LDM5LjIxOCwxNi43OTUiLz4NCgk8cGF0aCBmaWxsPSIjMDAzMDg3IiBkPSJNMTYuMzU3LDE2Ljg0OGMwLjEwMy0wLjY3LDAuNTMzLTEuMjE2LDEuMTExLTEuNDkxYzAuMjYyLTAuMTIzLDAuNTUyLTAuMTkxLDAuODU5LTAuMTkxaDEyLjUxDQoJCWMxLjQ4MiwwLDIuODY3LDAuMDk0LDQuMTI3LDAuMjk4YzAuMzU4LDAuMDUzLDAuNzEsMC4xMjYsMS4wNTUsMC4xOTZjMC4zNDEsMC4wODEsMC42NzQsMC4xNjMsMC45OSwwLjI2DQoJCWMwLjE2NCwwLjA0MiwwLjMyMywwLjA5MiwwLjQ3NSwwLjE0NGMwLjYyMSwwLjIwOCwxLjE5OSwwLjQ1MSwxLjczMiwwLjczMWMwLjYyOC0zLjk5NS0wLjAwNi02LjcxMi0yLjE2Ni05LjE3Mg0KCQljLTIuMzgtMi43MTEtNi42NzYtMy44NzMtMTIuMTc2LTMuODczSDguOTJjLTEuMTI2LDAtMi4wOCwwLjgxNy0yLjI1OCwxLjkyOUwwLjAxNyw0Ny44MTZjLTAuMTMyLDAuODMzLDAuNTE0LDEuNTg1LDEuMzUyLDEuNTg1DQoJCWg5Ljg1NGwyLjQ3My0xNS42ODlMMTYuMzU3LDE2Ljg0OHoiLz4NCjwvZz4NCjwvc3ZnPg0K") no-repeat !important; + /*background-image: url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIzIDcuMjUgMzUuNSAzNS41IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPg0KCTxnIGZpbGw9IiMwMDJmODYiPg0KCQk8cGF0aCBkPSJtMzIuNDE4IDEwLjAyYy0xLjY3Mi0xLjkxLTQuNjk5LTIuNzI3LTguNTctMi43MjdoLTExLjIzNGMtLjc5MyAwLTEuNDY1LjU3NC0xLjU5IDEuMzU1bC00LjY4IDI5LjY3MmMtLjA5LjU4Mi4zNjMgMS4xMTMuOTUzIDEuMTEzaDYuOTM4bDEuNzQyLTExLjA1LS4wNTUuMzQ4Yy4xMjUtLjc4MS43OTMtMS4zNTUgMS41ODItMS4zNTVoMy4yOTdjNi40NzcgMCAxMS41NDctMi42MzMgMTMuMDMtMTAuMjM4LjA0My0uMjI3LjA4Mi0uNDQ1LjExMy0uNjYuNDQxLTIuODEzIDAtNC43MjctMS41MjMtNi40NTciLz4NCgkJPHBhdGggZD0ibTE3Ljg0OCAxNi41MTZjLjA3NC0uNDczLjM3OS0uODU1Ljc4NS0xLjA1MS4xODQtLjA5LjM5MS0uMTM3LjYwNS0uMTM3aDguODA5YzEuMDQzIDAgMi4wMi4wNjYgMi45MDIuMjExLjI1OC4wMzkuNTA0LjA4Ni43NDIuMTQxLjI0Mi4wNTUuNDczLjExMy42OTkuMTguMTEzLjAzNS4yMjcuMDY2LjMzNi4xMDIuNDM0LjE0OC44NDQuMzE2IDEuMjE1LjUxNi40NDEtMi44MTMgMC00LjcyNy0xLjUyMy02LjQ1Ny0xLjY3Ni0xLjkxLTQuNjk5LTIuNzI3LTguNTctMi43MjdoLTExLjIzNGMtLjc5MyAwLTEuNDY1LjU3NC0xLjU5IDEuMzU1bC00LjY3NiAyOS42NjhjLS4wOTQuNTg2LjM1OSAxLjExNy45NDkgMS4xMTdoNi45MzhsMS43NDItMTEuMDVaIi8+DQoJPC9nPg0KCTxwYXRoIGQ9Im0zMy45NDEgMTYuNDc3Yy0uMDMxLjIxNS0uMDcuNDM0LS4xMTMuNjYtMS40OCA3LjYwNS02LjU1MSAxMC4yMzgtMTMuMDMgMTAuMjM4aC0zLjI5N2MtLjc4OSAwLTEuNDU3LjU3NC0xLjU4MiAxLjM1NWwtMS42ODggMTAuNzAzLS40NzcgMy4wMzVjLS4wODIuNTEyLjMxMy45NzcuODMyLjk3N2g1Ljg0OGMuNjkxIDAgMS4yODEtLjUwNCAxLjM4Ny0xLjE4OGwuMDU5LS4yOTcgMS4xMDItNi45ODQuMDctLjM4N2MuMTA5LS42ODQuNjk1LTEuMTg4IDEuMzkxLTEuMTg4aC44NzVjNS42NjQgMCAxMC4xLTIuMzAxIDExLjM5NS04Ljk1Ny41MzktMi43ODEuMjYyLTUuMTAyLTEuMTcyLTYuNzM0LS40MzQtLjQ5Mi0uOTczLS45MDItMS42MDItMS4yMzQiIGZpbGw9IiMwMDljZGUiLz4NCgk8cGF0aCBkPSJtMzIuMzkxIDE1Ljg1OWMtLjIyMy0uMDY2LS40NTctLjEyNS0uNjk5LS4xOC0uMjM4LS4wNTEtLjQ4NC0uMDk4LS43MzgtLjE0MS0uODkxLS4xNDUtMS44NjMtLjIxMS0yLjkwNi0uMjExaC04LjgwOWMtLjIxOSAwLS40MjIuMDQ3LS42MDUuMTM3LS40MS4xOTUtLjcxMS41NzgtLjc4NSAxLjA1MWwtMS44NzEgMTEuODY3LS4wNTUuMzQ4Yy4xMjUtLjc4MS43OTMtMS4zNTUgMS41ODItMS4zNTVoMy4yOTdjNi40NzcgMCAxMS41NDctMi42MzMgMTMuMDMtMTAuMjM4LjA0My0uMjI3LjA4Mi0uNDQ1LjExMy0uNjYtLjM3NS0uMTk1LS43NzctLjM2Ny0xLjIxNS0uNTEyLS4xMDktLjAzOS0uMjIzLS4wNzQtLjMzNi0uMTA1IiBmaWxsPSIjMDEyMDY5Ii8+DQo8L3N2Zz4=") !important;*/ + -webkit-background-size: c 100% 100% !important; + -moz-background-size: 100% 100% !important; + -o-background-size: 100% 100% !important; + background-size: 100% 100% !important; + height: 24px; + line-height: 34px; + /*margin-top: -4px; + margin-right: 4px;*/ + width: 71px; + margin: 4px 0 0 39px; + vertical-align: middle; + padding: 0 !important; + display: block !important; + /*background: none !important;*/ + border: none !important; + box-sizing: content-box !important; + float: left; +} + +#checkout-label { + float: left; + margin-left: 7px; +} + +.paypal-button.paypal-style-checkout.paypal-size-medium .paypal-button-tag-content { + line-height: 12px; + font-size: 10px; + margin-top: 4px; + color: #003366; + display: block; + text-align: center; + width: auto; +} + +.paypal-button-tag-content { + line-height: 10px; + width: 100%; + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; + font-weight: normal; + font-size: 9.25px; + color: #003366; + display: inline-block; + width: 80%; + margin-top: -1px; + margin-top: -1px; +} + +#paypal-button-container.disabled, #paypal-button-container[disabled] { + cursor: default; + opacity: 0.45; + filter: alpha(opacity=65); + box-shadow: none; + pointer-events: none; +} + + +/* CSS for Credit Card Payment form */ +.credit-card-box .panel-title { + display: inline; + font-weight: bold; +} + +.credit-card-box.panel-default > .panel-heading { + background-color: #f5f5f5 !important; + width: 100% !important; +} + +.credit-card-box .form-control.error { + border-color: red; + outline: 0; + box-shadow: inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(255,0,0,0.6); +} + +.credit-card-box label.error { + font-weight: bold; + color: red; + padding: 2px 8px; + margin-top: 2px; +} + +.credit-card-box .payment-errors { + font-weight: bold; + color: red; + padding: 2px 8px; + margin-top: 2px; +} + +.credit-card-box label { + display: block; +} +/* The old "center div vertically" hack */ +.credit-card-box .display-table { + display: table; +} + +.credit-card-box .display-tr { + display: table-row; +} + +.credit-card-box .display-td { + display: table-cell; + vertical-align: middle; + width: 50%; +} +/* Just looks nicer */ +.credit-card-box .panel-heading img { + min-width: 180px; +} + +#card-container { + height: 260px; + margin-top: 40px; +} + +#content-gplus { + position: relative; + float: left; + margin: 0 10px; +} + +.back-to-top, .cc-window { + z-index: 9999999999; +} +/* End Old Site.css*/ diff --git a/ClientApp/app/jquery.plugins/contact.form.js b/ClientApp/app/jquery.plugins/contact.form.js new file mode 100644 index 00000000..2cc4b0b3 --- /dev/null +++ b/ClientApp/app/jquery.plugins/contact.form.js @@ -0,0 +1,44 @@ +$(document).ready(function(){ + + //submission scripts + $('.contactForm').submit( function(){ + //statements to validate the form + var filter = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/; + var email = document.getElementById('e-mail'); + if (!filter.test(email.value)) { + $('.email-missing').css({'opacity': 1 }); + } else {$('.email-missing').css({'opacity': 0 });} + if (document.cform.name.value == "") { + $('.name-missing').css({'opacity': 1 }); + } else {$('.name-missing').css({'opacity': 0 });} + if (document.cform.message.value == "") { + $('.message-missing').css({'opacity': 1 }); + } else {$('.message-missing').css({'opacity': 0 });} + if ((document.cform.name.value == "") || (!filter.test(email.value)) || (document.cform.message.value == "")){ + return false; + } + + if ((document.cform.name.value != "") && (filter.test(email.value)) && (document.cform.message.value != "")) { + + //show the loading bar + $('.loader').append(); + + ////send the ajax request + //$.post('mail.php',{name:$('#name').val(), + // email:$('#e-mail').val(), + // message:$('#message').val()}, + + ////return the data + //function(data){ + // //hide the graphic + // $('.loader').append(data).slideDown(800); + //}); + + //waits 2000, then closes the form and fades out + setTimeout('$(".mail_response").slideUp(800)', 6000); + + //stay on the page + return false; + } + }); +}); \ No newline at end of file diff --git a/ClientApp/app/jquery.plugins/count-to.js b/ClientApp/app/jquery.plugins/count-to.js new file mode 100644 index 00000000..594698ae --- /dev/null +++ b/ClientApp/app/jquery.plugins/count-to.js @@ -0,0 +1,80 @@ +(function ($) { + $.fn.countTo = function (options) { + options = options || {}; + + return $(this).each(function () { + // set options for current element + var settings = $.extend({}, $.fn.countTo.defaults, { + from: $(this).data('from'), + to: $(this).data('to'), + speed: $(this).data('speed'), + refreshInterval: $(this).data('refresh-interval'), + decimals: $(this).data('decimals') + }, options); + + // how many times to update the value, and how much to increment the value on each update + var loops = Math.ceil(settings.speed / settings.refreshInterval), + increment = (settings.to - settings.from) / loops; + + // references & variables that will change with each update + var self = this, + $self = $(this), + loopCount = 0, + value = settings.from, + data = $self.data('countTo') || {}; + + $self.data('countTo', data); + + // if an existing interval can be found, clear it first + if (data.interval) { + clearInterval(data.interval); + } + data.interval = setInterval(updateTimer, settings.refreshInterval); + + // initialize the element with the starting value + render(value); + + function updateTimer() { + value += increment; + loopCount++; + + render(value); + + if (typeof(settings.onUpdate) == 'function') { + settings.onUpdate.call(self, value); + } + + if (loopCount >= loops) { + // remove the interval + $self.removeData('countTo'); + clearInterval(data.interval); + value = settings.to; + + if (typeof(settings.onComplete) == 'function') { + settings.onComplete.call(self, value); + } + } + } + + function render(value) { + var formattedValue = settings.formatter.call(self, value, settings); + $self.html(formattedValue); + } + }); + }; + + $.fn.countTo.defaults = { + from: 0, // the number the element should start at + to: 0, // the number the element should end at + speed: 1000, // how long it should take to count between the target numbers + refreshInterval: 100, // how often the element should be updated + decimals: 0, // the number of decimal places to show + formatter: formatter, // handler for formatting the value before rendering + onUpdate: null, // callback method for every time the element is updated + onComplete: null // callback method for when the element finishes updating + }; + + function formatter(value, settings) { + return value.toFixed(settings.decimals); + } +}(jQuery)); \ No newline at end of file diff --git a/ClientApp/app/jquery.plugins/init.revolution.main-slider.js b/ClientApp/app/jquery.plugins/init.revolution.main-slider.js new file mode 100644 index 00000000..82bed988 --- /dev/null +++ b/ClientApp/app/jquery.plugins/init.revolution.main-slider.js @@ -0,0 +1,54 @@ + var revapi; + jQuery(document).ready(function () { + alert('test'); + + revapi = jQuery('.fullwidthbanner').revolution({ + + delay: 9000, + startwidth: 1140, + startheight: 450, + hideThumbs: 200, + + thumbWidth: 100, + thumbHeight: 50, + thumbAmount: 3, + + navigationType: "none", + navigationArrows: "solo", + navigationStyle: "round", + + touchenabled: "on", + onHoverStop: "on", + + navigationHAlign: "center", + navigationVAlign: "bottom", + navigationHOffset: 0, + navigationVOffset: 20, + + soloArrowLeftHalign: "left", + soloArrowLeftValign: "center", + soloArrowLeftHOffset: 20, + soloArrowLeftVOffset: 0, + + soloArrowRightHalign: "right", + soloArrowRightValign: "center", + soloArrowRightHOffset: 20, + soloArrowRightVOffset: 0, + + shadow: 0, + fullWidth: "on", + fullScreen: "off", + lazyLoad: "on", + + stopLoop: "off", + stopAfterLoops: -1, + stopAtSlide: -1, + + shuffle: "off", + + hideSliderAtLimit: 0, + hideCaptionAtLimit: 0, + hideAllCaptionAtLilmit: 0, + startWithSlide: 0, + }); + }); \ No newline at end of file diff --git a/ClientApp/app/jquery.plugins/jquery.appear.js b/ClientApp/app/jquery.plugins/jquery.appear.js new file mode 100644 index 00000000..ecc5001a --- /dev/null +++ b/ClientApp/app/jquery.plugins/jquery.appear.js @@ -0,0 +1,150 @@ +/* + * jQuery.appear + * https://github.com/bas2k/jquery.appear/ + * http://code.google.com/p/jquery-appear/ + * + * Copyright (c) 2009 Michael Hixson + * Copyright (c) 2012 Alexander Brovikov + * Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php) + */ +(function($) { + $.fn.appear = function(fn, options) { + + var settings = $.extend({ + + //arbitrary data to pass to fn + data: undefined, + + //call fn only on the first appear? + one: true, + + // X & Y accuracy + accX: 0, + accY: 0 + + }, options); + + return this.each(function() { + + var t = $(this); + + //whether the element is currently visible + t.appeared = false; + + if (!fn) { + + //trigger the custom event + t.trigger('appear', settings.data); + return; + } + + var w = $(window); + + //fires the appear event when appropriate + var check = function() { + + //is the element hidden? + if (!t.is(':visible')) { + + //it became hidden + t.appeared = false; + return; + } + + //is the element inside the visible window? + var a = w.scrollLeft(); + var b = w.scrollTop(); + var o = t.offset(); + var x = o.left; + var y = o.top; + + var ax = settings.accX; + var ay = settings.accY; + var th = t.height(); + var wh = w.height(); + var tw = t.width(); + var ww = w.width(); + + if (y + th + ay >= b && + y <= b + wh + ay && + x + tw + ax >= a && + x <= a + ww + ax) { + + //trigger the custom event + if (!t.appeared) t.trigger('appear', settings.data); + + } else { + + //it scrolled out of view + t.appeared = false; + } + }; + + //create a modified fn with some additional logic + var modifiedFn = function() { + + //mark the element as visible + t.appeared = true; + + //is this supposed to happen only once? + if (settings.one) { + + //remove the check + w.unbind('scroll', check); + var i = $.inArray(check, $.fn.appear.checks); + if (i >= 0) $.fn.appear.checks.splice(i, 1); + } + + //trigger the original fn + fn.apply(this, arguments); + }; + + //bind the modified fn to the element + if (settings.one) t.one('appear', settings.data, modifiedFn); + else t.bind('appear', settings.data, modifiedFn); + + //check whenever the window scrolls + w.scroll(check); + + //check whenever the dom changes + $.fn.appear.checks.push(check); + + //check now + (check)(); + }); + }; + + //keep a queue of appearance checks + $.extend($.fn.appear, { + + checks: [], + timeout: null, + + //process the queue + checkAll: function() { + var length = $.fn.appear.checks.length; + if (length > 0) while (length--) ($.fn.appear.checks[length])(); + }, + + //check the queue asynchronously + run: function() { + if ($.fn.appear.timeout) clearTimeout($.fn.appear.timeout); + $.fn.appear.timeout = setTimeout($.fn.appear.checkAll, 20); + } + }); + + //run checks when these methods are called + $.each(['append', 'prepend', 'after', 'before', 'attr', + 'removeAttr', 'addClass', 'removeClass', 'toggleClass', + 'remove', 'css', 'show', 'hide'], function(i, n) { + var old = $.fn[n]; + if (old) { + $.fn[n] = function() { + var r = old.apply(this, arguments); + $.fn.appear.run(); + return r; + } + } + }); + +})(jQuery); \ No newline at end of file diff --git a/ClientApp/app/jquery.plugins/jquery.easypiechart.min.js b/ClientApp/app/jquery.plugins/jquery.easypiechart.min.js new file mode 100644 index 00000000..22906726 --- /dev/null +++ b/ClientApp/app/jquery.plugins/jquery.easypiechart.min.js @@ -0,0 +1,190 @@ +// Generated by CoffeeScript 1.6.3 +/* +Easy pie chart is a jquery plugin to display simple animated pie charts for only one value + +Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php) +and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses. + +Built on top of the jQuery library (http://jquery.com) + +@source: http://github.com/rendro/easy-pie-chart/ +@autor: Robert Fleischmann +@version: 1.2.2 + +Inspired by: http://dribbble.com/shots/631074-Simple-Pie-Charts-II?list=popular&offset=210 +Thanks to Philip Thrasher for the jquery plugin boilerplate for coffee script +*/ + +(function($) { + $.easyPieChart = function(el, options) { + var addScaleLine, animateLine, drawLine, easeInOutQuad, rAF, renderBackground, renderScale, renderTrack, + _this = this; + this.el = el; + this.$el = $(el); + this.$el.data("easyPieChart", this); + this.init = function() { + var percent, scaleBy; + _this.options = $.extend({}, $.easyPieChart.defaultOptions, options); + percent = parseInt(_this.$el.data('percent'), 10); + _this.percentage = 0; + _this.canvas = $("").get(0); + _this.$el.append(_this.canvas); + if (typeof G_vmlCanvasManager !== "undefined" && G_vmlCanvasManager !== null) { + G_vmlCanvasManager.initElement(_this.canvas); + } + _this.ctx = _this.canvas.getContext('2d'); + if (window.devicePixelRatio > 1) { + scaleBy = window.devicePixelRatio; + $(_this.canvas).css({ + width: _this.options.size, + height: _this.options.size + }); + _this.canvas.width *= scaleBy; + _this.canvas.height *= scaleBy; + _this.ctx.scale(scaleBy, scaleBy); + } + _this.ctx.translate(_this.options.size / 2, _this.options.size / 2); + _this.ctx.rotate(_this.options.rotate * Math.PI / 180); + _this.$el.addClass('easyPieChart'); + _this.$el.css({ + width: _this.options.size, + height: _this.options.size, + lineHeight: "" + _this.options.size + "px" + }); + _this.update(percent); + return _this; + }; + this.update = function(percent) { + percent = parseFloat(percent) || 0; + if (_this.options.animate === false) { + drawLine(percent); + } else { + animateLine(_this.percentage, percent); + } + return _this; + }; + renderScale = function() { + var i, _i, _results; + _this.ctx.fillStyle = _this.options.scaleColor; + _this.ctx.lineWidth = 1; + _results = []; + for (i = _i = 0; _i <= 24; i = ++_i) { + _results.push(addScaleLine(i)); + } + return _results; + }; + addScaleLine = function(i) { + var offset; + offset = i % 6 === 0 ? 0 : _this.options.size * 0.017; + _this.ctx.save(); + _this.ctx.rotate(i * Math.PI / 12); + _this.ctx.fillRect(_this.options.size / 2 - offset, 0, -_this.options.size * 0.05 + offset, 1); + _this.ctx.restore(); + }; + renderTrack = function() { + var offset; + offset = _this.options.size / 2 - _this.options.lineWidth / 2; + if (_this.options.scaleColor !== false) { + offset -= _this.options.size * 0.08; + } + _this.ctx.beginPath(); + _this.ctx.arc(0, 0, offset, 0, Math.PI * 2, true); + _this.ctx.closePath(); + _this.ctx.strokeStyle = _this.options.trackColor; + _this.ctx.lineWidth = _this.options.lineWidth; + _this.ctx.stroke(); + }; + renderBackground = function() { + if (_this.options.scaleColor !== false) { + renderScale(); + } + if (_this.options.trackColor !== false) { + renderTrack(); + } + }; + drawLine = function(percent) { + var offset; + renderBackground(); + _this.ctx.strokeStyle = $.isFunction(_this.options.barColor) ? _this.options.barColor(percent) : _this.options.barColor; + _this.ctx.lineCap = _this.options.lineCap; + _this.ctx.lineWidth = _this.options.lineWidth; + offset = _this.options.size / 2 - _this.options.lineWidth / 2; + if (_this.options.scaleColor !== false) { + offset -= _this.options.size * 0.08; + } + _this.ctx.save(); + _this.ctx.rotate(-Math.PI / 2); + _this.ctx.beginPath(); + _this.ctx.arc(0, 0, offset, 0, Math.PI * 2 * percent / 100, false); + _this.ctx.stroke(); + _this.ctx.restore(); + }; + rAF = (function() { + return window.requestAnimationFrame || window.webkitRequestAnimationFrame || window.mozRequestAnimationFrame || function(callback) { + return window.setTimeout(callback, 1000 / 60); + }; + })(); + animateLine = function(from, to) { + var anim, startTime; + _this.options.onStart.call(_this); + _this.percentage = to; + startTime = Date.now(); + anim = function() { + var currentValue, process; + process = Date.now() - startTime; + if (process < _this.options.animate) { + rAF(anim); + } + _this.ctx.clearRect(-_this.options.size / 2, -_this.options.size / 2, _this.options.size, _this.options.size); + renderBackground.call(_this); + currentValue = [easeInOutQuad(process, from, to - from, _this.options.animate)]; + _this.options.onStep.call(_this, currentValue); + drawLine.call(_this, currentValue); + if (process >= _this.options.animate) { + return _this.options.onStop.call(_this, currentValue, to); + } + }; + rAF(anim); + }; + easeInOutQuad = function(t, b, c, d) { + var easeIn, easing; + easeIn = function(t) { + return Math.pow(t, 2); + }; + easing = function(t) { + if (t < 1) { + return easeIn(t); + } else { + return 2 - easeIn((t / 2) * -2 + 2); + } + }; + t /= d / 2; + return c / 2 * easing(t) + b; + }; + return this.init(); + }; + $.easyPieChart.defaultOptions = { + barColor: '#ef1e25', + trackColor: '#f2f2f2', + scaleColor: '#dfe0e0', + lineCap: 'round', + rotate: 0, + size: 110, + lineWidth: 3, + animate: false, + onStart: $.noop, + onStop: $.noop, + onStep: $.noop + }; + $.fn.easyPieChart = function(options) { + return $.each(this, function(i, el) { + var $el, instanceOptions; + $el = $(el); + if (!$el.data('easyPieChart')) { + instanceOptions = $.extend({}, options, $el.data()); + return $el.data('easyPieChart', new $.easyPieChart(el, instanceOptions)); + } + }); + }; + return void 0; +})(jQuery); \ No newline at end of file diff --git a/ClientApp/app/jquery.plugins/jquery.fitvids.js b/ClientApp/app/jquery.plugins/jquery.fitvids.js new file mode 100644 index 00000000..a8551f6e --- /dev/null +++ b/ClientApp/app/jquery.plugins/jquery.fitvids.js @@ -0,0 +1,74 @@ +/*global jQuery */ +/*jshint multistr:true browser:true */ +/*! +* FitVids 1.0.3 +* +* Copyright 2013, 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( $ ){ + + "use strict"; + + $.fn.fitVids = function( options ) { + var settings = { + customSelector: null + }; + + if(!document.getElementById('fit-vids-style')) { + + var div = document.createElement('div'), + ref = document.getElementsByTagName('base')[0] || document.getElementsByTagName('script')[0], + cssStyles = ''; + + div.className = 'fit-vids-style'; + div.id = 'fit-vids-style'; + div.style.display = 'none'; + div.innerHTML = cssStyles; + + ref.parentNode.insertBefore(div,ref); + + } + + if ( options ) { + $.extend( settings, options ); + } + + return this.each(function(){ + var selectors = [ + "iframe[src*='player.vimeo.com']", + "iframe[src*='youtube.com']", + "iframe[src*='youtube-nocookie.com']", + "iframe[src*='kickstarter.com'][src*='video.html']", + "object", + "embed" + ]; + + if (settings.customSelector) { + selectors.push(settings.customSelector); + } + + var $allVideos = $(this).find(selectors.join(',')); + $allVideos = $allVideos.not("object object"); // SwfObj conflict patch + + $allVideos.each(function(){ + var $this = $(this); + if (this.tagName.toLowerCase() === 'embed' && $this.parent('object').length || $this.parent('.fluid-width-video-wrapper').length) { return; } + var height = ( this.tagName.toLowerCase() === 'object' || ($this.attr('height') && !isNaN(parseInt($this.attr('height'), 10))) ) ? parseInt($this.attr('height'), 10) : $this.height(), + width = !isNaN(parseInt($this.attr('width'), 10)) ? parseInt($this.attr('width'), 10) : $this.width(), + aspectRatio = height / width; + if(!$this.attr('id')){ + var videoID = 'fitvid' + Math.floor(Math.random()*999999); + $this.attr('id', videoID); + } + $this.wrap('').parent('.fluid-width-video-wrapper').css('padding-top', (aspectRatio * 100)+"%"); + $this.removeAttr('height').removeAttr('width'); + }); + }); + }; +// Works with either jQuery or Zepto +})( window.jQuery || window.Zepto ); diff --git a/ClientApp/app/jquery.plugins/jquery.isotope.min.js b/ClientApp/app/jquery.plugins/jquery.isotope.min.js new file mode 100644 index 00000000..c5edd575 --- /dev/null +++ b/ClientApp/app/jquery.plugins/jquery.isotope.min.js @@ -0,0 +1,13 @@ +/** + * Isotope v1.5.05 + * An exquisite jQuery plugin for magical layouts + * http://isotope.metafizzy.co + * + * Commercial use requires one-time license fee + * http://metafizzy.co/#licenses + * + * Copyright 2011 David DeSandro / Metafizzy + */ +/*jshint curly: true, eqeqeq: true, forin: false, immed: false, newcap: true, noempty: true, undef: true */ +/*global Modernizr: true, jQuery: true */ +(function(a,b,c){"use strict";var d=function(a){return a.charAt(0).toUpperCase()+a.slice(1)},e="Moz Webkit Khtml O Ms".split(" "),f=function(a){var b=document.documentElement.style,c;if(typeof b[a]=="string")return a;a=d(a);for(var f=0,g=e.length;f "+d+"{#modernizr{height:3px}}"+"").appendTo("head"),g=b('').appendTo("html");a=g.height()===3,g.remove(),e.remove()}return a},csstransitions:function(){return!!h}};if(a.Modernizr)for(var j in i)Modernizr.hasOwnProperty(j)||Modernizr.addTest(j,i[j]);else a.Modernizr=function(){var a={_version:"1.6ish: miniModernizr for Isotope"},c=" ",d,e;for(e in i)d=i[e](),a[e]=d,c+=" "+(d?"":"no-")+e;b("html").addClass(c);return a}();if(Modernizr.csstransforms){var k=Modernizr.csstransforms3d?{translate:function(a){return"translate3d("+a[0]+"px, "+a[1]+"px, 0) "},scale:function(a){return"scale3d("+a+", "+a+", 1) "}}:{translate:function(a){return"translate("+a[0]+"px, "+a[1]+"px) "},scale:function(a){return"scale("+a+") "}},l=function(a,c,d){var e=b.data(a,"isoTransform")||{},f={},h,i={},j;f[c]=d,b.extend(e,f);for(h in e)j=e[h],i[h]=k[h](j);var l=i.translate||"",m=i.scale||"",n=l+m;b.data(a,"isoTransform",e),a.style[g]=n};b.cssNumber.scale=!0,b.cssHooks.scale={set:function(a,b){l(a,"scale",b)},get:function(a,c){var d=b.data(a,"isoTransform");return d&&d.scale?d.scale:1}},b.fx.step.scale=function(a){b.cssHooks.scale.set(a.elem,a.now+a.unit)},b.cssNumber.translate=!0,b.cssHooks.translate={set:function(a,b){l(a,"translate",b)},get:function(a,c){var d=b.data(a,"isoTransform");return d&&d.translate?d.translate:[0,0]}}}var m,n;Modernizr.csstransitions&&(m={WebkitTransitionProperty:"webkitTransitionEnd",MozTransitionProperty:"transitionend",OTransitionProperty:"oTransitionEnd",transitionProperty:"transitionEnd"}[h],n=f("transitionDuration"));var o=b.event,p;o.special.smartresize={setup:function(){b(this).bind("resize",o.special.smartresize.handler)},teardown:function(){b(this).unbind("resize",o.special.smartresize.handler)},handler:function(a,b){var c=this,d=arguments;a.type="smartresize",p&&clearTimeout(p),p=setTimeout(function(){jQuery.event.handle.apply(c,d)},b==="execAsap"?0:100)}},b.fn.smartresize=function(a){return a?this.bind("smartresize",a):this.trigger("smartresize",["execAsap"])},b.Isotope=function(a,c,d){this.element=b(c),this._create(a),this._init(d)};var q=["overflow","position","width","height"];b.Isotope.settings={resizable:!0,layoutMode:"masonry",containerClass:"isotope",itemClass:"isotope-item",hiddenClass:"isotope-hidden",hiddenStyle:{opacity:0,scale:.001},visibleStyle:{opacity:1,scale:1},animationEngine:"best-available",animationOptions:{queue:!1,duration:800},sortBy:"original-order",sortAscending:!0,resizesContainer:!0,transformsEnabled:!b.browser.opera,itemPositionDataEnabled:!1},b.Isotope.prototype={_create:function(c){this.options=b.extend({},b.Isotope.settings,c),this.styleQueue=[],this.elemCount=0;var d=this.element[0].style;this.originalStyle={};for(var e=0,f=q.length;e g?1:f 0&&(g=function(a,b){b.$el[d](b.style,e).one(m,i)},h=!1)}}b.each(this.styleQueue,g),h&&i(),this.styleQueue=[]},resize:function(){this["_"+this.options.layoutMode+"ResizeChanged"]()&&this.reLayout()},reLayout:function(a){this["_"+this.options.layoutMode+"Reset"](),this.layout(this.$filteredAtoms,a)},addItems:function(a,b){var c=this._getAtoms(a);this.$allAtoms=this.$allAtoms.add(c),b&&b(c)},insert:function(a,b){this.element.append(a);var c=this;this.addItems(a,function(a){var d=c._filter(a,!0);c._addHideAppended(d),c._sort(),c.reLayout(),c._revealAppended(d,b)})},appended:function(a,b){var c=this;this.addItems(a,function(a){c._addHideAppended(a),c.layout(a),c._revealAppended(a,b)})},_addHideAppended:function(a){this.$filteredAtoms=this.$filteredAtoms.add(a),a.addClass("no-transition"),this._isInserting=!0,this.styleQueue.push({$el:a,style:this.options.hiddenStyle})},_revealAppended:function(a,b){var c=this;setTimeout(function(){a.removeClass("no-transition"),c.styleQueue.push({$el:a,style:c.options.visibleStyle}),c._isInserting=!1,c._processStyleQueue(a,b)},10)},reloadItems:function(){this.$allAtoms=this._getAtoms(this.element.children())},remove:function(a){var b=this,c=function(){b.$allAtoms=b.$allAtoms.not(a),a.remove()};a.filter(":not(."+this.options.hiddenClass+")").length?(this.styleQueue.push({$el:a,style:this.options.hiddenStyle}),this.$filteredAtoms=this.$filteredAtoms.not(a),this._sort(),this.reLayout(c)):c()},shuffle:function(a){this.updateSortData(this.$allAtoms),this.options.sortBy="random",this._sort(),this.reLayout(a)},destroy:function(){var c=this.usingTransforms;this.$allAtoms.removeClass(this.options.hiddenClass+" "+this.options.itemClass).each(function(){this.style.position="",this.style.top="",this.style.left="",this.style.opacity="",c&&(this.style[g]="")});var d=this.element[0].style;for(var e=0,f=q.length;e d&&(e.x=0,e.y=e.height),c._pushPosition(a,e.x,e.y),e.height=Math.max(e.y+g,e.height),e.x+=f})},_fitRowsGetContainerSize:function(){return{height:this.fitRows.height}},_fitRowsResizeChanged:function(){return!0},_cellsByRowReset:function(){this.cellsByRow={index:0},this._getSegments(),this._getSegments(!0)},_cellsByRowLayout:function(a){var c=this,d=this.cellsByRow;a.each(function(){var a=b(this),e=d.index%d.cols,f=Math.floor(d.index/d.cols),g=Math.round((e+.5)*d.columnWidth-a.outerWidth(!0)/2),h=Math.round((f+.5)*d.rowHeight-a.outerHeight(!0)/2);c._pushPosition(a,g,h),d.index++})},_cellsByRowGetContainerSize:function(){return{height:Math.ceil(this.$filteredAtoms.length/this.cellsByRow.cols)*this.cellsByRow.rowHeight+this.offset.top}},_cellsByRowResizeChanged:function(){return this._checkIfSegmentsChanged()},_straightDownReset:function(){this.straightDown={y:0}},_straightDownLayout:function(a){var c=this;a.each(function(a){var d=b(this);c._pushPosition(d,0,c.straightDown.y),c.straightDown.y+=d.outerHeight(!0)})},_straightDownGetContainerSize:function(){return{height:this.straightDown.y}},_straightDownResizeChanged:function(){return!0},_masonryHorizontalReset:function(){this.masonryHorizontal={},this._getSegments(!0);var a=this.masonryHorizontal.rows;this.masonryHorizontal.rowXs=[];while(a--)this.masonryHorizontal.rowXs.push(0)},_masonryHorizontalLayout:function(a){var c=this,d=c.masonryHorizontal;a.each(function(){var a=b(this),e=Math.ceil(a.outerHeight(!0)/d.rowHeight);e=Math.min(e,d.rows);if(e===1)c._masonryHorizontalPlaceBrick(a,d.rowXs);else{var f=d.rows+1-e,g=[],h,i;for(i=0;i d&&(e.x=e.width,e.y=0),c._pushPosition(a,e.x,e.y),e.width=Math.max(e.x+f,e.width),e.y+=g})},_fitColumnsGetContainerSize:function(){return{width:this.fitColumns.width}},_fitColumnsResizeChanged:function(){return!0},_cellsByColumnReset:function(){this.cellsByColumn={index:0},this._getSegments(),this._getSegments(!0)},_cellsByColumnLayout:function(a){var c=this,d=this.cellsByColumn;a.each(function(){var a=b(this),e=Math.floor(d.index/d.rows),f=d.index%d.rows,g=Math.round((e+.5)*d.columnWidth-a.outerWidth(!0)/2),h=Math.round((f+.5)*d.rowHeight-a.outerHeight(!0)/2);c._pushPosition(a,g,h),d.index++})},_cellsByColumnGetContainerSize:function(){return{width:Math.ceil(this.$filteredAtoms.length/this.cellsByColumn.rows)*this.cellsByColumn.columnWidth}},_cellsByColumnResizeChanged:function(){return this._checkIfSegmentsChanged(!0)},_straightAcrossReset:function(){this.straightAcross={x:0}},_straightAcrossLayout:function(a){var c=this;a.each(function(a){var d=b(this);c._pushPosition(d,c.straightAcross.x,0),c.straightAcross.x+=d.outerWidth(!0)})},_straightAcrossGetContainerSize:function(){return{width:this.straightAcross.x}},_straightAcrossResizeChanged:function(){return!0}},b.fn.imagesLoaded=function(a){function h(a){--e<=0&&a.target.src!==f&&(setTimeout(g),d.unbind("load error",h))}function g(){a.call(b,d)}var b=this,d=b.find("img").add(b.filter("img")),e=d.length,f="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///ywAAAAAAQABAAACAUwAOw==";e||g(),d.bind("load error",h).each(function(){if(this.complete||this.complete===c){var a=this.src;this.src=f,this.src=a}});return b};var r=function(b){a.console&&a.console.error(b)};b.fn.isotope=function(a,c){if(typeof a=="string"){var d=Array.prototype.slice.call(arguments,1);this.each(function(){var c=b.data(this,"isotope");if(!c)r("cannot call methods on isotope prior to initialization; attempted to call method '"+a+"'");else{if(!b.isFunction(c[a])||a.charAt(0)==="_"){r("no such method '"+a+"' for isotope instance");return}c[a].apply(c,d)}})}else this.each(function(){var d=b.data(this,"isotope");d?(d.option(a),d._init(c)):b.data(this,"isotope",new b.Isotope(a,this,c))});return this}})(window,jQuery); diff --git a/ClientApp/app/jquery.plugins/jquery.lettering.js b/ClientApp/app/jquery.plugins/jquery.lettering.js new file mode 100644 index 00000000..4515590c --- /dev/null +++ b/ClientApp/app/jquery.plugins/jquery.lettering.js @@ -0,0 +1,66 @@ +/*global jQuery */ +/*! +* Lettering.JS 0.6.1 +* +* Copyright 2010, Dave Rupert http://daverupert.com +* Released under the WTFPL license +* http://sam.zoy.org/wtfpl/ +* +* Thanks to Paul Irish - http://paulirish.com - for the feedback. +* +* Date: Mon Sep 20 17:14:00 2010 -0600 +*/ +(function($){ + function injector(t, splitter, klass, after) { + var a = t.text().split(splitter), inject = ''; + if (a.length) { + $(a).each(function(i, item) { + inject += ''+item+''+after; + }); + t.empty().append(inject); + } + } + + var methods = { + init : function() { + + return this.each(function() { + injector($(this), '', 'char', ''); + }); + + }, + + words : function() { + + return this.each(function() { + injector($(this), ' ', 'word', ' '); + }); + + }, + + lines : function() { + + return this.each(function() { + var r = "eefec303079ad17405c889e092e105b0"; + // Because it's hard to split a
tag consistently across browsers, + // (*ahem* IE *ahem*), we replaces all
instances with an md5 hash + // (of the word "split"). If you're trying to use this plugin on that + // md5 hash string, it will fail because you're being ridiculous. + injector($(this).children("br").replaceWith(r).end(), r, 'line', ''); + }); + + } + }; + + $.fn.lettering = function( method ) { + // Method calling logic + if ( method && methods[method] ) { + return methods[ method ].apply( this, [].slice.call( arguments, 1 )); + } else if ( method === 'letters' || ! method ) { + return methods.init.apply( this, [].slice.call( arguments, 0 ) ); // always pass an array + } + $.error( 'Method ' + method + ' does not exist on jQuery.lettering' ); + return this; + }; + +})(jQuery); \ No newline at end of file diff --git a/ClientApp/app/jquery.plugins/jquery.migrate.js b/ClientApp/app/jquery.plugins/jquery.migrate.js new file mode 100644 index 00000000..aca4d8fe --- /dev/null +++ b/ClientApp/app/jquery.plugins/jquery.migrate.js @@ -0,0 +1,498 @@ +/*! + * jQuery Migrate - v1.0.0 - 2013-01-14 + * https://github.com/jquery/jquery-migrate + * Copyright 2005, 2013 jQuery Foundation, Inc. and other contributors; Licensed MIT + */ +(function( jQuery, window, undefined ) { +"use strict"; + + +var warnedAbout = {}; + +// List of warnings already given; public read only +jQuery.migrateWarnings = []; + +// Set to true to prevent console output; migrateWarnings still maintained +// jQuery.migrateMute = false; + +// Forget any warnings we've already given; public +jQuery.migrateReset = function() { + warnedAbout = {}; + jQuery.migrateWarnings.length = 0; +}; + +function migrateWarn( msg) { + if ( !warnedAbout[ msg ] ) { + warnedAbout[ msg ] = true; + jQuery.migrateWarnings.push( msg ); + if ( window.console && console.warn && !jQuery.migrateMute ) { + + } + } +} + +function migrateWarnProp( obj, prop, value, msg ) { + if ( Object.defineProperty ) { + // On ES5 browsers (non-oldIE), warn if the code tries to get prop; + // allow property to be overwritten in case some other plugin wants it + try { + Object.defineProperty( obj, prop, { + configurable: true, + enumerable: true, + get: function() { + migrateWarn( msg ); + return value; + }, + set: function( newValue ) { + migrateWarn( msg ); + value = newValue; + } + }); + return; + } catch( err ) { + // IE8 is a dope about Object.defineProperty, can't warn there + } + } + + // Non-ES5 (or broken) browser; just set the property + jQuery._definePropertyBroken = true; + obj[ prop ] = value; +} + +if ( document.compatMode === "BackCompat" ) { + // jQuery has never supported or tested Quirks Mode + migrateWarn( "jQuery is not compatible with Quirks Mode" ); +} + + +var attrFn = {}, + attr = jQuery.attr, + valueAttrGet = jQuery.attrHooks.value && jQuery.attrHooks.value.get || + function() { return null; }, + valueAttrSet = jQuery.attrHooks.value && jQuery.attrHooks.value.set || + function() { return undefined; }, + rnoType = /^(?:input|button)$/i, + rnoAttrNodeType = /^[238]$/, + rboolean = /^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i, + ruseDefault = /^(?:checked|selected)$/i; + +// jQuery.attrFn +migrateWarnProp( jQuery, "attrFn", attrFn, "jQuery.attrFn is deprecated" ); + +jQuery.attr = function( elem, name, value, pass ) { + var lowerName = name.toLowerCase(), + nType = elem && elem.nodeType; + + if ( pass ) { + migrateWarn("jQuery.fn.attr( props, pass ) is deprecated"); + if ( elem && !rnoAttrNodeType.test( nType ) && jQuery.isFunction( jQuery.fn[ name ] ) ) { + return jQuery( elem )[ name ]( value ); + } + } + + // Warn if user tries to set `type` since it breaks on IE 6/7/8 + if ( name === "type" && value !== undefined && rnoType.test( elem.nodeName ) ) { + migrateWarn("Can't change the 'type' of an input or button in IE 6/7/8"); + } + + // Restore boolHook for boolean property/attribute synchronization + if ( !jQuery.attrHooks[ lowerName ] && rboolean.test( lowerName ) ) { + jQuery.attrHooks[ lowerName ] = { + get: function( elem, name ) { + // Align boolean attributes with corresponding properties + // Fall back to attribute presence where some booleans are not supported + var attrNode, + property = jQuery.prop( elem, name ); + return property === true || typeof property !== "boolean" && + ( attrNode = elem.getAttributeNode(name) ) && attrNode.nodeValue !== false ? + + name.toLowerCase() : + undefined; + }, + set: function( elem, value, name ) { + var propName; + if ( value === false ) { + // Remove boolean attributes when set to false + jQuery.removeAttr( elem, name ); + } else { + // value is true since we know at this point it's type boolean and not false + // Set boolean attributes to the same name and set the DOM property + propName = jQuery.propFix[ name ] || name; + if ( propName in elem ) { + // Only set the IDL specifically if it already exists on the element + elem[ propName ] = true; + } + + elem.setAttribute( name, name.toLowerCase() ); + } + return name; + } + }; + + // Warn only for attributes that can remain distinct from their properties post-1.9 + if ( ruseDefault.test( lowerName ) ) { + migrateWarn( "jQuery.fn.attr(" + lowerName + ") may use property instead of attribute" ); + } + } + + return attr.call( jQuery, elem, name, value ); +}; + +// attrHooks: value +jQuery.attrHooks.value = { + get: function( elem, name ) { + var nodeName = ( elem.nodeName || "" ).toLowerCase(); + if ( nodeName === "button" ) { + return valueAttrGet.apply( this, arguments ); + } + if ( nodeName !== "input" && nodeName !== "option" ) { + migrateWarn("property-based jQuery.fn.attr('value') is deprecated"); + } + return name in elem ? + elem.value : + null; + }, + set: function( elem, value ) { + var nodeName = ( elem.nodeName || "" ).toLowerCase(); + if ( nodeName === "button" ) { + return valueAttrSet.apply( this, arguments ); + } + if ( nodeName !== "input" && nodeName !== "option" ) { + migrateWarn("property-based jQuery.fn.attr('value', val) is deprecated"); + } + // Does not return so that setAttribute is also used + elem.value = value; + } +}; + + +var matched, browser, + oldInit = jQuery.fn.init, + // Note this does NOT include the # XSS fix from 1.7! + rquickExpr = /^(?:.*(<[\w\W]+>)[^>]*|#([\w\-]*))$/; + +// $(html) "looks like html" rule change +jQuery.fn.init = function( selector, context, rootjQuery ) { + var match; + + if ( selector && typeof selector === "string" && !jQuery.isPlainObject( context ) && + (match = rquickExpr.exec( selector )) && match[1] ) { + // This is an HTML string according to the "old" rules; is it still? + if ( selector.charAt( 0 ) !== "<" ) { + migrateWarn("$(html) HTML strings must start with '<' character"); + } + // Now process using loose rules; let pre-1.8 play too + if ( context && context.context ) { + // jQuery object as context; parseHTML expects a DOM object + context = context.context; + } + if ( jQuery.parseHTML ) { + return oldInit.call( this, jQuery.parseHTML( jQuery.trim(selector), context, true ), + context, rootjQuery ); + } + } + return oldInit.apply( this, arguments ); +}; +jQuery.fn.init.prototype = jQuery.fn; + +jQuery.uaMatch = function( ua ) { + ua = ua.toLowerCase(); + + var match = /(chrome)[ \/]([\w.]+)/.exec( ua ) || + /(webkit)[ \/]([\w.]+)/.exec( ua ) || + /(opera)(?:.*version|)[ \/]([\w.]+)/.exec( ua ) || + /(msie) ([\w.]+)/.exec( ua ) || + ua.indexOf("compatible") < 0 && /(mozilla)(?:.*? rv:([\w.]+)|)/.exec( ua ) || + []; + + return { + browser: match[ 1 ] || "", + version: match[ 2 ] || "0" + }; +}; + +matched = jQuery.uaMatch( navigator.userAgent ); +browser = {}; + +if ( matched.browser ) { + browser[ matched.browser ] = true; + browser.version = matched.version; +} + +// Chrome is Webkit, but Webkit is also Safari. +if ( browser.chrome ) { + browser.webkit = true; +} else if ( browser.webkit ) { + browser.safari = true; +} + +jQuery.browser = browser; + +// Warn if the code tries to get jQuery.browser +migrateWarnProp( jQuery, "browser", browser, "jQuery.browser is deprecated" ); + +jQuery.sub = function() { + function jQuerySub( selector, context ) { + return new jQuerySub.fn.init( selector, context ); + } + jQuery.extend( true, jQuerySub, this ); + jQuerySub.superclass = this; + jQuerySub.fn = jQuerySub.prototype = this(); + jQuerySub.fn.constructor = jQuerySub; + jQuerySub.sub = this.sub; + jQuerySub.fn.init = function init( selector, context ) { + if ( context && context instanceof jQuery && !(context instanceof jQuerySub) ) { + context = jQuerySub( context ); + } + + return jQuery.fn.init.call( this, selector, context, rootjQuerySub ); + }; + jQuerySub.fn.init.prototype = jQuerySub.fn; + var rootjQuerySub = jQuerySub(document); + migrateWarn( "jQuery.sub() is deprecated" ); + return jQuerySub; +}; + + +var oldFnData = jQuery.fn.data; + +jQuery.fn.data = function( name ) { + var ret, evt, + elem = this[0]; + + // Handles 1.7 which has this behavior and 1.8 which doesn't + if ( elem && name === "events" && arguments.length === 1 ) { + ret = jQuery.data( elem, name ); + evt = jQuery._data( elem, name ); + if ( ( ret === undefined || ret === evt ) && evt !== undefined ) { + migrateWarn("Use of jQuery.fn.data('events') is deprecated"); + return evt; + } + } + return oldFnData.apply( this, arguments ); +}; + + +var rscriptType = /\/(java|ecma)script/i, + oldSelf = jQuery.fn.andSelf || jQuery.fn.addBack, + oldFragment = jQuery.buildFragment; + +jQuery.fn.andSelf = function() { + migrateWarn("jQuery.fn.andSelf() replaced by jQuery.fn.addBack()"); + return oldSelf.apply( this, arguments ); +}; + +// Since jQuery.clean is used internally on older versions, we only shim if it's missing +if ( !jQuery.clean ) { + jQuery.clean = function( elems, context, fragment, scripts ) { + // Set context per 1.8 logic + context = context || document; + context = !context.nodeType && context[0] || context; + context = context.ownerDocument || context; + + migrateWarn("jQuery.clean() is deprecated"); + + var i, elem, handleScript, jsTags, + ret = []; + + jQuery.merge( ret, jQuery.buildFragment( elems, context ).childNodes ); + + // Complex logic lifted directly from jQuery 1.8 + if ( fragment ) { + // Special handling of each script element + handleScript = function( elem ) { + // Check if we consider it executable + if ( !elem.type || rscriptType.test( elem.type ) ) { + // Detach the script and store it in the scripts array (if provided) or the fragment + // Return truthy to indicate that it has been handled + return scripts ? + scripts.push( elem.parentNode ? elem.parentNode.removeChild( elem ) : elem ) : + fragment.appendChild( elem ); + } + }; + + for ( i = 0; (elem = ret[i]) != null; i++ ) { + // Check if we're done after handling an executable script + if ( !( jQuery.nodeName( elem, "script" ) && handleScript( elem ) ) ) { + // Append to fragment and handle embedded scripts + fragment.appendChild( elem ); + if ( typeof elem.getElementsByTagName !== "undefined" ) { + // handleScript alters the DOM, so use jQuery.merge to ensure snapshot iteration + jsTags = jQuery.grep( jQuery.merge( [], elem.getElementsByTagName("script") ), handleScript ); + + // Splice the scripts into ret after their former ancestor and advance our index beyond them + ret.splice.apply( ret, [i + 1, 0].concat( jsTags ) ); + i += jsTags.length; + } + } + } + } + + return ret; + }; +} + +jQuery.buildFragment = function( elems, context, scripts, selection ) { + var ret, + warning = "jQuery.buildFragment() is deprecated"; + + // Set context per 1.8 logic + context = context || document; + context = !context.nodeType && context[0] || context; + context = context.ownerDocument || context; + + try { + ret = oldFragment.call( jQuery, elems, context, scripts, selection ); + + // jQuery < 1.8 required arrayish context; jQuery 1.9 fails on it + } catch( x ) { + ret = oldFragment.call( jQuery, elems, context.nodeType ? [ context ] : context[ 0 ], scripts, selection ); + + // Success from tweaking context means buildFragment was called by the user + migrateWarn( warning ); + } + + // jQuery < 1.9 returned an object instead of the fragment itself + if ( !ret.fragment ) { + migrateWarnProp( ret, "fragment", ret, warning ); + migrateWarnProp( ret, "cacheable", false, warning ); + } + + return ret; +}; + +var eventAdd = jQuery.event.add, + eventRemove = jQuery.event.remove, + eventTrigger = jQuery.event.trigger, + oldToggle = jQuery.fn.toggle, + oldLive = jQuery.fn.live, + oldDie = jQuery.fn.die, + ajaxEvents = "ajaxStart|ajaxStop|ajaxSend|ajaxComplete|ajaxError|ajaxSuccess", + rajaxEvent = new RegExp( "\\b(?:" + ajaxEvents + ")\\b" ), + rhoverHack = /(?:^|\s)hover(\.\S+|)\b/, + hoverHack = function( events ) { + if ( typeof( events ) != "string" || jQuery.event.special.hover ) { + return events; + } + if ( rhoverHack.test( events ) ) { + migrateWarn("'hover' pseudo-event is deprecated, use 'mouseenter mouseleave'"); + } + return events && events.replace( rhoverHack, "mouseenter$1 mouseleave$1" ); + }; + +// Event props removed in 1.9, put them back if needed; no practical way to warn them +if ( jQuery.event.props && jQuery.event.props[ 0 ] !== "attrChange" ) { + jQuery.event.props.unshift( "attrChange", "attrName", "relatedNode", "srcElement" ); +} + +// Undocumented jQuery.event.handle was "deprecated" in jQuery 1.7 +migrateWarnProp( jQuery.event, "handle", jQuery.event.dispatch, "jQuery.event.handle is undocumented and deprecated" ); + +// Support for 'hover' pseudo-event and ajax event warnings +jQuery.event.add = function( elem, types, handler, data, selector ){ + if ( elem !== document && rajaxEvent.test( types ) ) { + migrateWarn( "AJAX events should be attached to document: " + types ); + } + eventAdd.call( this, elem, hoverHack( types || "" ), handler, data, selector ); +}; +jQuery.event.remove = function( elem, types, handler, selector, mappedTypes ){ + eventRemove.call( this, elem, hoverHack( types ) || "", handler, selector, mappedTypes ); +}; + +jQuery.fn.error = function() { + var args = Array.prototype.slice.call( arguments, 0); + migrateWarn("jQuery.fn.error() is deprecated"); + args.splice( 0, 0, "error" ); + if ( arguments.length ) { + return this.bind.apply( this, args ); + } + // error event should not bubble to window, although it does pre-1.7 + this.triggerHandler.apply( this, args ); + return this; +}; + +jQuery.fn.toggle = function( fn, fn2 ) { + + // Don't mess with animation or css toggles + if ( !jQuery.isFunction( fn ) || !jQuery.isFunction( fn2 ) ) { + return oldToggle.apply( this, arguments ); + } + migrateWarn("jQuery.fn.toggle(handler, handler...) is deprecated"); + + // Save reference to arguments for access in closure + var args = arguments, + guid = fn.guid || jQuery.guid++, + i = 0, + toggler = function( event ) { + // Figure out which function to execute + var lastToggle = ( jQuery._data( this, "lastToggle" + fn.guid ) || 0 ) % i; + jQuery._data( this, "lastToggle" + fn.guid, lastToggle + 1 ); + + // Make sure that clicks stop + event.preventDefault(); + + // and execute the function + return args[ lastToggle ].apply( this, arguments ) || false; + }; + + // link all the functions, so any of them can unbind this click handler + toggler.guid = guid; + while ( i < args.length ) { + args[ i++ ].guid = guid; + } + + return this.click( toggler ); +}; + +jQuery.fn.live = function( types, data, fn ) { + migrateWarn("jQuery.fn.live() is deprecated"); + if ( oldLive ) { + return oldLive.apply( this, arguments ); + } + jQuery( this.context ).on( types, this.selector, data, fn ); + return this; +}; + +jQuery.fn.die = function( types, fn ) { + migrateWarn("jQuery.fn.die() is deprecated"); + if ( oldDie ) { + return oldDie.apply( this, arguments ); + } + jQuery( this.context ).off( types, this.selector || "**", fn ); + return this; +}; + +// Turn global events into document-triggered events +jQuery.event.trigger = function( event, data, elem, onlyHandlers ){ + if ( !elem & !rajaxEvent.test( event ) ) { + migrateWarn( "Global events are undocumented and deprecated" ); + } + return eventTrigger.call( this, event, data, elem || document, onlyHandlers ); +}; +jQuery.each( ajaxEvents.split("|"), + function( _, name ) { + jQuery.event.special[ name ] = { + setup: function() { + var elem = this; + + // The document needs no shimming; must be !== for oldIE + if ( elem !== document ) { + jQuery.event.add( document, name + "." + jQuery.guid, function() { + jQuery.event.trigger( name, null, elem, true ); + }); + jQuery._data( this, name, jQuery.guid++ ); + } + return false; + }, + teardown: function() { + if ( this !== document ) { + jQuery.event.remove( document, name + "." + jQuery._data( this, name ) ); + } + return false; + } + }; + } +); + + +})( jQuery, window ); \ No newline at end of file diff --git a/ClientApp/app/jquery.plugins/jquery.min.js b/ClientApp/app/jquery.plugins/jquery.min.js new file mode 100644 index 00000000..76d21a46 --- /dev/null +++ b/ClientApp/app/jquery.plugins/jquery.min.js @@ -0,0 +1,6 @@ +/*! jQuery v1.10.2 | (c) 2005, 2013 jQuery Foundation, Inc. | jquery.org/license +//@ sourceMappingURL=jquery-1.10.2.min.map +*/ +(function(e,t){var n,r,i=typeof t,o=e.location,a=e.document,s=a.documentElement,l=e.jQuery,u=e.$,c={},p=[],f="1.10.2",d=p.concat,h=p.push,g=p.slice,m=p.indexOf,y=c.toString,v=c.hasOwnProperty,b=f.trim,x=function(e,t){return new x.fn.init(e,t,r)},w=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,T=/\S+/g,C=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,N=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,k=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,E=/^[\],:{}\s]*$/,S=/(?:^|:|,)(?:\s*\[)+/g,A=/\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g,j=/"[^"\\\r\n]*"|true|false|null|-?(?:\d+\.|)\d+(?:[eE][+-]?\d+|)/g,D=/^-ms-/,L=/-([\da-z])/gi,H=function(e,t){return t.toUpperCase()},q=function(e){(a.addEventListener||"load"===e.type||"complete"===a.readyState)&&(_(),x.ready())},_=function(){a.addEventListener?(a.removeEventListener("DOMContentLoaded",q,!1),e.removeEventListener("load",q,!1)):(a.detachEvent("onreadystatechange",q),e.detachEvent("onload",q))};x.fn=x.prototype={jquery:f,constructor:x,init:function(e,n,r){var i,o;if(!e)return this;if("string"==typeof e){if(i="<"===e.charAt(0)&&">"===e.charAt(e.length-1)&&e.length>=3?[null,e,null]:N.exec(e),!i||!i[1]&&n)return!n||n.jquery?(n||r).find(e):this.constructor(n).find(e);if(i[1]){if(n=n instanceof x?n[0]:n,x.merge(this,x.parseHTML(i[1],n&&n.nodeType?n.ownerDocument||n:a,!0)),k.test(i[1])&&x.isPlainObject(n))for(i in n)x.isFunction(this[i])?this[i](n[i]):this.attr(i,n[i]);return this}if(o=a.getElementById(i[2]),o&&o.parentNode){if(o.id!==i[2])return r.find(e);this.length=1,this[0]=o}return this.context=a,this.selector=e,this}return e.nodeType?(this.context=this[0]=e,this.length=1,this):x.isFunction(e)?r.ready(e):(e.selector!==t&&(this.selector=e.selector,this.context=e.context),x.makeArray(e,this))},selector:"",length:0,toArray:function(){return g.call(this)},get:function(e){return null==e?this.toArray():0>e?this[this.length+e]:this[e]},pushStack:function(e){var t=x.merge(this.constructor(),e);return t.prevObject=this,t.context=this.context,t},each:function(e,t){return x.each(this,e,t)},ready:function(e){return x.ready.promise().done(e),this},slice:function(){return this.pushStack(g.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(e){var t=this.length,n=+e+(0>e?t:0);return this.pushStack(n>=0&&t>n?[this[n]]:[])},map:function(e){return this.pushStack(x.map(this,function(t,n){return e.call(t,n,t)}))},end:function(){return this.prevObject||this.constructor(null)},push:h,sort:[].sort,splice:[].splice},x.fn.init.prototype=x.fn,x.extend=x.fn.extend=function(){var e,n,r,i,o,a,s=arguments[0]||{},l=1,u=arguments.length,c=!1;for("boolean"==typeof s&&(c=s,s=arguments[1]||{},l=2),"object"==typeof s||x.isFunction(s)||(s={}),u===l&&(s=this,--l);u>l;l++)if(null!=(o=arguments[l]))for(i in o)e=s[i],r=o[i],s!==r&&(c&&r&&(x.isPlainObject(r)||(n=x.isArray(r)))?(n?(n=!1,a=e&&x.isArray(e)?e:[]):a=e&&x.isPlainObject(e)?e:{},s[i]=x.extend(c,a,r)):r!==t&&(s[i]=r));return s},x.extend({expando:"jQuery"+(f+Math.random()).replace(/\D/g,""),noConflict:function(t){return e.$===x&&(e.$=u),t&&e.jQuery===x&&(e.jQuery=l),x},isReady:!1,readyWait:1,holdReady:function(e){e?x.readyWait++:x.ready(!0)},ready:function(e){if(e===!0?!--x.readyWait:!x.isReady){if(!a.body)return setTimeout(x.ready);x.isReady=!0,e!==!0&&--x.readyWait>0||(n.resolveWith(a,[x]),x.fn.trigger&&x(a).trigger("ready").off("ready"))}},isFunction:function(e){return"function"===x.type(e)},isArray:Array.isArray||function(e){return"array"===x.type(e)},isWindow:function(e){return null!=e&&e==e.window},isNumeric:function(e){return!isNaN(parseFloat(e))&&isFinite(e)},type:function(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?c[y.call(e)]||"object":typeof e},isPlainObject:function(e){var n;if(!e||"object"!==x.type(e)||e.nodeType||x.isWindow(e))return!1;try{if(e.constructor&&!v.call(e,"constructor")&&!v.call(e.constructor.prototype,"isPrototypeOf"))return!1}catch(r){return!1}if(x.support.ownLast)for(n in e)return v.call(e,n);for(n in e);return n===t||v.call(e,n)},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},error:function(e){throw Error(e)},parseHTML:function(e,t,n){if(!e||"string"!=typeof e)return null;"boolean"==typeof t&&(n=t,t=!1),t=t||a;var r=k.exec(e),i=!n&&[];return r?[t.createElement(r[1])]:(r=x.buildFragment([e],t,i),i&&x(i).remove(),x.merge([],r.childNodes))},parseJSON:function(n){return e.JSON&&e.JSON.parse?e.JSON.parse(n):null===n?n:"string"==typeof n&&(n=x.trim(n),n&&E.test(n.replace(A,"@").replace(j,"]").replace(S,"")))?Function("return "+n)():(x.error("Invalid JSON: "+n),t)},parseXML:function(n){var r,i;if(!n||"string"!=typeof n)return null;try{e.DOMParser?(i=new DOMParser,r=i.parseFromString(n,"text/xml")):(r=new ActiveXObject("Microsoft.XMLDOM"),r.async="false",r.loadXML(n))}catch(o){r=t}return r&&r.documentElement&&!r.getElementsByTagName("parsererror").length||x.error("Invalid XML: "+n),r},noop:function(){},globalEval:function(t){t&&x.trim(t)&&(e.execScript||function(t){e.eval.call(e,t)})(t)},camelCase:function(e){return e.replace(D,"ms-").replace(L,H)},nodeName:function(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()},each:function(e,t,n){var r,i=0,o=e.length,a=M(e);if(n){if(a){for(;o>i;i++)if(r=t.apply(e[i],n),r===!1)break}else for(i in e)if(r=t.apply(e[i],n),r===!1)break}else if(a){for(;o>i;i++)if(r=t.call(e[i],i,e[i]),r===!1)break}else for(i in e)if(r=t.call(e[i],i,e[i]),r===!1)break;return e},trim:b&&!b.call("\ufeff\u00a0")?function(e){return null==e?"":b.call(e)}:function(e){return null==e?"":(e+"").replace(C,"")},makeArray:function(e,t){var n=t||[];return null!=e&&(M(Object(e))?x.merge(n,"string"==typeof e?[e]:e):h.call(n,e)),n},inArray:function(e,t,n){var r;if(t){if(m)return m.call(t,e,n);for(r=t.length,n=n?0>n?Math.max(0,r+n):n:0;r>n;n++)if(n in t&&t[n]===e)return n}return-1},merge:function(e,n){var r=n.length,i=e.length,o=0;if("number"==typeof r)for(;r>o;o++)e[i++]=n[o];else while(n[o]!==t)e[i++]=n[o++];return e.length=i,e},grep:function(e,t,n){var r,i=[],o=0,a=e.length;for(n=!!n;a>o;o++)r=!!t(e[o],o),n!==r&&i.push(e[o]);return i},map:function(e,t,n){var r,i=0,o=e.length,a=M(e),s=[];if(a)for(;o>i;i++)r=t(e[i],i,n),null!=r&&(s[s.length]=r);else for(i in e)r=t(e[i],i,n),null!=r&&(s[s.length]=r);return d.apply([],s)},guid:1,proxy:function(e,n){var r,i,o;return"string"==typeof n&&(o=e[n],n=e,e=o),x.isFunction(e)?(r=g.call(arguments,2),i=function(){return e.apply(n||this,r.concat(g.call(arguments)))},i.guid=e.guid=e.guid||x.guid++,i):t},access:function(e,n,r,i,o,a,s){var l=0,u=e.length,c=null==r;if("object"===x.type(r)){o=!0;for(l in r)x.access(e,n,l,r[l],!0,a,s)}else if(i!==t&&(o=!0,x.isFunction(i)||(s=!0),c&&(s?(n.call(e,i),n=null):(c=n,n=function(e,t,n){return c.call(x(e),n)})),n))for(;u>l;l++)n(e[l],r,s?i:i.call(e[l],l,n(e[l],r)));return o?e:c?n.call(e):u?n(e[0],r):a},now:function(){return(new Date).getTime()},swap:function(e,t,n,r){var i,o,a={};for(o in t)a[o]=e.style[o],e.style[o]=t[o];i=n.apply(e,r||[]);for(o in t)e.style[o]=a[o];return i}}),x.ready.promise=function(t){if(!n)if(n=x.Deferred(),"complete"===a.readyState)setTimeout(x.ready);else if(a.addEventListener)a.addEventListener("DOMContentLoaded",q,!1),e.addEventListener("load",q,!1);else{a.attachEvent("onreadystatechange",q),e.attachEvent("onload",q);var r=!1;try{r=null==e.frameElement&&a.documentElement}catch(i){}r&&r.doScroll&&function o(){if(!x.isReady){try{r.doScroll("left")}catch(e){return setTimeout(o,50)}_(),x.ready()}}()}return n.promise(t)},x.each("Boolean Number String Function Array Date RegExp Object Error".split(" "),function(e,t){c["[object "+t+"]"]=t.toLowerCase()});function M(e){var t=e.length,n=x.type(e);return x.isWindow(e)?!1:1===e.nodeType&&t?!0:"array"===n||"function"!==n&&(0===t||"number"==typeof t&&t>0&&t-1 in e)}r=x(a),function(e,t){var n,r,i,o,a,s,l,u,c,p,f,d,h,g,m,y,v,b="sizzle"+-new Date,w=e.document,T=0,C=0,N=st(),k=st(),E=st(),S=!1,A=function(e,t){return e===t?(S=!0,0):0},j=typeof t,D=1<<31,L={}.hasOwnProperty,H=[],q=H.pop,_=H.push,M=H.push,O=H.slice,F=H.indexOf||function(e){var t=0,n=this.length;for(;n>t;t++)if(this[t]===e)return t;return-1},B="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",P="[\\x20\\t\\r\\n\\f]",R="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",W=R.replace("w","w#"),$="\\["+P+"*("+R+")"+P+"*(?:([*^$|!~]?=)"+P+"*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|("+W+")|)|)"+P+"*\\]",I=":("+R+")(?:\\(((['\"])((?:\\\\.|[^\\\\])*?)\\3|((?:\\\\.|[^\\\\()[\\]]|"+$.replace(3,8)+")*)|.*)\\)|)",z=RegExp("^"+P+"+|((?:^|[^\\\\])(?:\\\\.)*)"+P+"+$","g"),X=RegExp("^"+P+"*,"+P+"*"),U=RegExp("^"+P+"*([>+~]|"+P+")"+P+"*"),V=RegExp(P+"*[+~]"),Y=RegExp("="+P+"*([^\\]'\"]*)"+P+"*\\]","g"),J=RegExp(I),G=RegExp("^"+W+"$"),Q={ID:RegExp("^#("+R+")"),CLASS:RegExp("^\\.("+R+")"),TAG:RegExp("^("+R.replace("w","w*")+")"),ATTR:RegExp("^"+$),PSEUDO:RegExp("^"+I),CHILD:RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+P+"*(even|odd|(([+-]|)(\\d*)n|)"+P+"*(?:([+-]|)"+P+"*(\\d+)|))"+P+"*\\)|)","i"),bool:RegExp("^(?:"+B+")$","i"),needsContext:RegExp("^"+P+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+P+"*((?:-\\d)?\\d*)"+P+"*\\)|)(?=[^-]|$)","i")},K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,et=/^(?:input|select|textarea|button)$/i,tt=/^h\d$/i,nt=/'|\\/g,rt=RegExp("\\\\([\\da-f]{1,6}"+P+"?|("+P+")|.)","ig"),it=function(e,t,n){var r="0x"+t-65536;return r!==r||n?t:0>r?String.fromCharCode(r+65536):String.fromCharCode(55296|r>>10,56320|1023&r)};try{M.apply(H=O.call(w.childNodes),w.childNodes),H[w.childNodes.length].nodeType}catch(ot){M={apply:H.length?function(e,t){_.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function at(e,t,n,i){var o,a,s,l,u,c,d,m,y,x;if((t?t.ownerDocument||t:w)!==f&&p(t),t=t||f,n=n||[],!e||"string"!=typeof e)return n;if(1!==(l=t.nodeType)&&9!==l)return[];if(h&&!i){if(o=Z.exec(e))if(s=o[1]){if(9===l){if(a=t.getElementById(s),!a||!a.parentNode)return n;if(a.id===s)return n.push(a),n}else if(t.ownerDocument&&(a=t.ownerDocument.getElementById(s))&&v(t,a)&&a.id===s)return n.push(a),n}else{if(o[2])return M.apply(n,t.getElementsByTagName(e)),n;if((s=o[3])&&r.getElementsByClassName&&t.getElementsByClassName)return M.apply(n,t.getElementsByClassName(s)),n}if(r.qsa&&(!g||!g.test(e))){if(m=d=b,y=t,x=9===l&&e,1===l&&"object"!==t.nodeName.toLowerCase()){c=mt(e),(d=t.getAttribute("id"))?m=d.replace(nt,"\\$&"):t.setAttribute("id",m),m="[id='"+m+"'] ",u=c.length;while(u--)c[u]=m+yt(c[u]);y=V.test(e)&&t.parentNode||t,x=c.join(",")}if(x)try{return M.apply(n,y.querySelectorAll(x)),n}catch(T){}finally{d||t.removeAttribute("id")}}}return kt(e.replace(z,"$1"),t,n,i)}function st(){var e=[];function t(n,r){return e.push(n+=" ")>o.cacheLength&&delete t[e.shift()],t[n]=r}return t}function lt(e){return e[b]=!0,e}function ut(e){var t=f.createElement("div");try{return!!e(t)}catch(n){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function ct(e,t){var n=e.split("|"),r=e.length;while(r--)o.attrHandle[n[r]]=t}function pt(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&(~t.sourceIndex||D)-(~e.sourceIndex||D);if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function ft(e){return function(t){var n=t.nodeName.toLowerCase();return"input"===n&&t.type===e}}function dt(e){return function(t){var n=t.nodeName.toLowerCase();return("input"===n||"button"===n)&&t.type===e}}function ht(e){return lt(function(t){return t=+t,lt(function(n,r){var i,o=e([],n.length,t),a=o.length;while(a--)n[i=o[a]]&&(n[i]=!(r[i]=n[i]))})})}s=at.isXML=function(e){var t=e&&(e.ownerDocument||e).documentElement;return t?"HTML"!==t.nodeName:!1},r=at.support={},p=at.setDocument=function(e){var n=e?e.ownerDocument||e:w,i=n.defaultView;return n!==f&&9===n.nodeType&&n.documentElement?(f=n,d=n.documentElement,h=!s(n),i&&i.attachEvent&&i!==i.top&&i.attachEvent("onbeforeunload",function(){p()}),r.attributes=ut(function(e){return e.className="i",!e.getAttribute("className")}),r.getElementsByTagName=ut(function(e){return e.appendChild(n.createComment("")),!e.getElementsByTagName("*").length}),r.getElementsByClassName=ut(function(e){return e.innerHTML="",e.firstChild.className="i",2===e.getElementsByClassName("i").length}),r.getById=ut(function(e){return d.appendChild(e).id=b,!n.getElementsByName||!n.getElementsByName(b).length}),r.getById?(o.find.ID=function(e,t){if(typeof t.getElementById!==j&&h){var n=t.getElementById(e);return n&&n.parentNode?[n]:[]}},o.filter.ID=function(e){var t=e.replace(rt,it);return function(e){return e.getAttribute("id")===t}}):(delete o.find.ID,o.filter.ID=function(e){var t=e.replace(rt,it);return function(e){var n=typeof e.getAttributeNode!==j&&e.getAttributeNode("id");return n&&n.value===t}}),o.find.TAG=r.getElementsByTagName?function(e,n){return typeof n.getElementsByTagName!==j?n.getElementsByTagName(e):t}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},o.find.CLASS=r.getElementsByClassName&&function(e,n){return typeof n.getElementsByClassName!==j&&h?n.getElementsByClassName(e):t},m=[],g=[],(r.qsa=K.test(n.querySelectorAll))&&(ut(function(e){e.innerHTML="",e.querySelectorAll("[selected]").length||g.push("\\["+P+"*(?:value|"+B+")"),e.querySelectorAll(":checked").length||g.push(":checked")}),ut(function(e){var t=n.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("t",""),e.querySelectorAll("[t^='']").length&&g.push("[*^$]="+P+"*(?:''|\"\")"),e.querySelectorAll(":enabled").length||g.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),g.push(",.*:")})),(r.matchesSelector=K.test(y=d.webkitMatchesSelector||d.mozMatchesSelector||d.oMatchesSelector||d.msMatchesSelector))&&ut(function(e){r.disconnectedMatch=y.call(e,"div"),y.call(e,"[s!='']:x"),m.push("!=",I)}),g=g.length&&RegExp(g.join("|")),m=m.length&&RegExp(m.join("|")),v=K.test(d.contains)||d.compareDocumentPosition?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},A=d.compareDocumentPosition?function(e,t){if(e===t)return S=!0,0;var i=t.compareDocumentPosition&&e.compareDocumentPosition&&e.compareDocumentPosition(t);return i?1&i||!r.sortDetached&&t.compareDocumentPosition(e)===i?e===n||v(w,e)?-1:t===n||v(w,t)?1:c?F.call(c,e)-F.call(c,t):0:4&i?-1:1:e.compareDocumentPosition?-1:1}:function(e,t){var r,i=0,o=e.parentNode,a=t.parentNode,s=[e],l=[t];if(e===t)return S=!0,0;if(!o||!a)return e===n?-1:t===n?1:o?-1:a?1:c?F.call(c,e)-F.call(c,t):0;if(o===a)return pt(e,t);r=e;while(r=r.parentNode)s.unshift(r);r=t;while(r=r.parentNode)l.unshift(r);while(s[i]===l[i])i++;return i?pt(s[i],l[i]):s[i]===w?-1:l[i]===w?1:0},n):f},at.matches=function(e,t){return at(e,null,null,t)},at.matchesSelector=function(e,t){if((e.ownerDocument||e)!==f&&p(e),t=t.replace(Y,"='$1']"),!(!r.matchesSelector||!h||m&&m.test(t)||g&&g.test(t)))try{var n=y.call(e,t);if(n||r.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(i){}return at(t,f,null,[e]).length>0},at.contains=function(e,t){return(e.ownerDocument||e)!==f&&p(e),v(e,t)},at.attr=function(e,n){(e.ownerDocument||e)!==f&&p(e);var i=o.attrHandle[n.toLowerCase()],a=i&&L.call(o.attrHandle,n.toLowerCase())?i(e,n,!h):t;return a===t?r.attributes||!h?e.getAttribute(n):(a=e.getAttributeNode(n))&&a.specified?a.value:null:a},at.error=function(e){throw Error("Syntax error, unrecognized expression: "+e)},at.uniqueSort=function(e){var t,n=[],i=0,o=0;if(S=!r.detectDuplicates,c=!r.sortStable&&e.slice(0),e.sort(A),S){while(t=e[o++])t===e[o]&&(i=n.push(o));while(i--)e.splice(n[i],1)}return e},a=at.getText=function(e){var t,n="",r=0,i=e.nodeType;if(i){if(1===i||9===i||11===i){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=a(e)}else if(3===i||4===i)return e.nodeValue}else for(;t=e[r];r++)n+=a(t);return n},o=at.selectors={cacheLength:50,createPseudo:lt,match:Q,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(rt,it),e[3]=(e[4]||e[5]||"").replace(rt,it),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||at.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&at.error(e[0]),e},PSEUDO:function(e){var n,r=!e[5]&&e[2];return Q.CHILD.test(e[0])?null:(e[3]&&e[4]!==t?e[2]=e[4]:r&&J.test(r)&&(n=mt(r,!0))&&(n=r.indexOf(")",r.length-n)-r.length)&&(e[0]=e[0].slice(0,n),e[2]=r.slice(0,n)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(rt,it).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=N[e+" "];return t||(t=RegExp("(^|"+P+")"+e+"("+P+"|$)"))&&N(e,function(e){return t.test("string"==typeof e.className&&e.className||typeof e.getAttribute!==j&&e.getAttribute("class")||"")})},ATTR:function(e,t,n){return function(r){var i=at.attr(r,e);return null==i?"!="===t:t?(i+="","="===t?i===n:"!="===t?i!==n:"^="===t?n&&0===i.indexOf(n):"*="===t?n&&i.indexOf(n)>-1:"$="===t?n&&i.slice(-n.length)===n:"~="===t?(" "+i+" ").indexOf(n)>-1:"|="===t?i===n||i.slice(0,n.length+1)===n+"-":!1):!0}},CHILD:function(e,t,n,r,i){var o="nth"!==e.slice(0,3),a="last"!==e.slice(-4),s="of-type"===t;return 1===r&&0===i?function(e){return!!e.parentNode}:function(t,n,l){var u,c,p,f,d,h,g=o!==a?"nextSibling":"previousSibling",m=t.parentNode,y=s&&t.nodeName.toLowerCase(),v=!l&&!s;if(m){if(o){while(g){p=t;while(p=p[g])if(s?p.nodeName.toLowerCase()===y:1===p.nodeType)return!1;h=g="only"===e&&!h&&"nextSibling"}return!0}if(h=[a?m.firstChild:m.lastChild],a&&v){c=m[b]||(m[b]={}),u=c[e]||[],d=u[0]===T&&u[1],f=u[0]===T&&u[2],p=d&&m.childNodes[d];while(p=++d&&p&&p[g]||(f=d=0)||h.pop())if(1===p.nodeType&&++f&&p===t){c[e]=[T,d,f];break}}else if(v&&(u=(t[b]||(t[b]={}))[e])&&u[0]===T)f=u[1];else while(p=++d&&p&&p[g]||(f=d=0)||h.pop())if((s?p.nodeName.toLowerCase()===y:1===p.nodeType)&&++f&&(v&&((p[b]||(p[b]={}))[e]=[T,f]),p===t))break;return f-=i,f===r||0===f%r&&f/r>=0}}},PSEUDO:function(e,t){var n,r=o.pseudos[e]||o.setFilters[e.toLowerCase()]||at.error("unsupported pseudo: "+e);return r[b]?r(t):r.length>1?(n=[e,e,"",t],o.setFilters.hasOwnProperty(e.toLowerCase())?lt(function(e,n){var i,o=r(e,t),a=o.length;while(a--)i=F.call(e,o[a]),e[i]=!(n[i]=o[a])}):function(e){return r(e,0,n)}):r}},pseudos:{not:lt(function(e){var t=[],n=[],r=l(e.replace(z,"$1"));return r[b]?lt(function(e,t,n,i){var o,a=r(e,null,i,[]),s=e.length;while(s--)(o=a[s])&&(e[s]=!(t[s]=o))}):function(e,i,o){return t[0]=e,r(t,null,o,n),!n.pop()}}),has:lt(function(e){return function(t){return at(e,t).length>0}}),contains:lt(function(e){return function(t){return(t.textContent||t.innerText||a(t)).indexOf(e)>-1}}),lang:lt(function(e){return G.test(e||"")||at.error("unsupported lang: "+e),e=e.replace(rt,it).toLowerCase(),function(t){var n;do if(n=h?t.lang:t.getAttribute("xml:lang")||t.getAttribute("lang"))return n=n.toLowerCase(),n===e||0===n.indexOf(e+"-");while((t=t.parentNode)&&1===t.nodeType);return!1}}),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===d},focus:function(e){return e===f.activeElement&&(!f.hasFocus||f.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:function(e){return e.disabled===!1},disabled:function(e){return e.disabled===!0},checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,e.selected===!0},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeName>"@"||3===e.nodeType||4===e.nodeType)return!1;return!0},parent:function(e){return!o.pseudos.empty(e)},header:function(e){return tt.test(e.nodeName)},input:function(e){return et.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||t.toLowerCase()===e.type)},first:ht(function(){return[0]}),last:ht(function(e,t){return[t-1]}),eq:ht(function(e,t,n){return[0>n?n+t:n]}),even:ht(function(e,t){var n=0;for(;t>n;n+=2)e.push(n);return e}),odd:ht(function(e,t){var n=1;for(;t>n;n+=2)e.push(n);return e}),lt:ht(function(e,t,n){var r=0>n?n+t:n;for(;--r>=0;)e.push(r);return e}),gt:ht(function(e,t,n){var r=0>n?n+t:n;for(;t>++r;)e.push(r);return e})}},o.pseudos.nth=o.pseudos.eq;for(n in{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})o.pseudos[n]=ft(n);for(n in{submit:!0,reset:!0})o.pseudos[n]=dt(n);function gt(){}gt.prototype=o.filters=o.pseudos,o.setFilters=new gt;function mt(e,t){var n,r,i,a,s,l,u,c=k[e+" "];if(c)return t?0:c.slice(0);s=e,l=[],u=o.preFilter;while(s){(!n||(r=X.exec(s)))&&(r&&(s=s.slice(r[0].length)||s),l.push(i=[])),n=!1,(r=U.exec(s))&&(n=r.shift(),i.push({value:n,type:r[0].replace(z," ")}),s=s.slice(n.length));for(a in o.filter)!(r=Q[a].exec(s))||u[a]&&!(r=u[a](r))||(n=r.shift(),i.push({value:n,type:a,matches:r}),s=s.slice(n.length));if(!n)break}return t?s.length:s?at.error(e):k(e,l).slice(0)}function yt(e){var t=0,n=e.length,r="";for(;n>t;t++)r+=e[t].value;return r}function vt(e,t,n){var r=t.dir,o=n&&"parentNode"===r,a=C++;return t.first?function(t,n,i){while(t=t[r])if(1===t.nodeType||o)return e(t,n,i)}:function(t,n,s){var l,u,c,p=T+" "+a;if(s){while(t=t[r])if((1===t.nodeType||o)&&e(t,n,s))return!0}else while(t=t[r])if(1===t.nodeType||o)if(c=t[b]||(t[b]={}),(u=c[r])&&u[0]===p){if((l=u[1])===!0||l===i)return l===!0}else if(u=c[r]=[p],u[1]=e(t,n,s)||i,u[1]===!0)return!0}}function bt(e){return e.length>1?function(t,n,r){var i=e.length;while(i--)if(!e[i](t,n,r))return!1;return!0}:e[0]}function xt(e,t,n,r,i){var o,a=[],s=0,l=e.length,u=null!=t;for(;l>s;s++)(o=e[s])&&(!n||n(o,r,i))&&(a.push(o),u&&t.push(s));return a}function wt(e,t,n,r,i,o){return r&&!r[b]&&(r=wt(r)),i&&!i[b]&&(i=wt(i,o)),lt(function(o,a,s,l){var u,c,p,f=[],d=[],h=a.length,g=o||Nt(t||"*",s.nodeType?[s]:s,[]),m=!e||!o&&t?g:xt(g,f,e,s,l),y=n?i||(o?e:h||r)?[]:a:m;if(n&&n(m,y,s,l),r){u=xt(y,d),r(u,[],s,l),c=u.length;while(c--)(p=u[c])&&(y[d[c]]=!(m[d[c]]=p))}if(o){if(i||e){if(i){u=[],c=y.length;while(c--)(p=y[c])&&u.push(m[c]=p);i(null,y=[],u,l)}c=y.length;while(c--)(p=y[c])&&(u=i?F.call(o,p):f[c])>-1&&(o[u]=!(a[u]=p))}}else y=xt(y===a?y.splice(h,y.length):y),i?i(null,a,y,l):M.apply(a,y)})}function Tt(e){var t,n,r,i=e.length,a=o.relative[e[0].type],s=a||o.relative[" "],l=a?1:0,c=vt(function(e){return e===t},s,!0),p=vt(function(e){return F.call(t,e)>-1},s,!0),f=[function(e,n,r){return!a&&(r||n!==u)||((t=n).nodeType?c(e,n,r):p(e,n,r))}];for(;i>l;l++)if(n=o.relative[e[l].type])f=[vt(bt(f),n)];else{if(n=o.filter[e[l].type].apply(null,e[l].matches),n[b]){for(r=++l;i>r;r++)if(o.relative[e[r].type])break;return wt(l>1&&bt(f),l>1&&yt(e.slice(0,l-1).concat({value:" "===e[l-2].type?"*":""})).replace(z,"$1"),n,r>l&&Tt(e.slice(l,r)),i>r&&Tt(e=e.slice(r)),i>r&&yt(e))}f.push(n)}return bt(f)}function Ct(e,t){var n=0,r=t.length>0,a=e.length>0,s=function(s,l,c,p,d){var h,g,m,y=[],v=0,b="0",x=s&&[],w=null!=d,C=u,N=s||a&&o.find.TAG("*",d&&l.parentNode||l),k=T+=null==C?1:Math.random()||.1;for(w&&(u=l!==f&&l,i=n);null!=(h=N[b]);b++){if(a&&h){g=0;while(m=e[g++])if(m(h,l,c)){p.push(h);break}w&&(T=k,i=++n)}r&&((h=!m&&h)&&v--,s&&x.push(h))}if(v+=b,r&&b!==v){g=0;while(m=t[g++])m(x,y,l,c);if(s){if(v>0)while(b--)x[b]||y[b]||(y[b]=q.call(p));y=xt(y)}M.apply(p,y),w&&!s&&y.length>0&&v+t.length>1&&at.uniqueSort(p)}return w&&(T=k,u=C),x};return r?lt(s):s}l=at.compile=function(e,t){var n,r=[],i=[],o=E[e+" "];if(!o){t||(t=mt(e)),n=t.length;while(n--)o=Tt(t[n]),o[b]?r.push(o):i.push(o);o=E(e,Ct(i,r))}return o};function Nt(e,t,n){var r=0,i=t.length;for(;i>r;r++)at(e,t[r],n);return n}function kt(e,t,n,i){var a,s,u,c,p,f=mt(e);if(!i&&1===f.length){if(s=f[0]=f[0].slice(0),s.length>2&&"ID"===(u=s[0]).type&&r.getById&&9===t.nodeType&&h&&o.relative[s[1].type]){if(t=(o.find.ID(u.matches[0].replace(rt,it),t)||[])[0],!t)return n;e=e.slice(s.shift().value.length)}a=Q.needsContext.test(e)?0:s.length;while(a--){if(u=s[a],o.relative[c=u.type])break;if((p=o.find[c])&&(i=p(u.matches[0].replace(rt,it),V.test(s[0].type)&&t.parentNode||t))){if(s.splice(a,1),e=i.length&&yt(s),!e)return M.apply(n,i),n;break}}}return l(e,f)(i,t,!h,n,V.test(e)),n}r.sortStable=b.split("").sort(A).join("")===b,r.detectDuplicates=S,p(),r.sortDetached=ut(function(e){return 1&e.compareDocumentPosition(f.createElement("div"))}),ut(function(e){return e.innerHTML="","#"===e.firstChild.getAttribute("href")})||ct("type|href|height|width",function(e,n,r){return r?t:e.getAttribute(n,"type"===n.toLowerCase()?1:2)}),r.attributes&&ut(function(e){return e.innerHTML="",e.firstChild.setAttribute("value",""),""===e.firstChild.getAttribute("value")})||ct("value",function(e,n,r){return r||"input"!==e.nodeName.toLowerCase()?t:e.defaultValue}),ut(function(e){return null==e.getAttribute("disabled")})||ct(B,function(e,n,r){var i;return r?t:(i=e.getAttributeNode(n))&&i.specified?i.value:e[n]===!0?n.toLowerCase():null}),x.find=at,x.expr=at.selectors,x.expr[":"]=x.expr.pseudos,x.unique=at.uniqueSort,x.text=at.getText,x.isXMLDoc=at.isXML,x.contains=at.contains}(e);var O={};function F(e){var t=O[e]={};return x.each(e.match(T)||[],function(e,n){t[n]=!0}),t}x.Callbacks=function(e){e="string"==typeof e?O[e]||F(e):x.extend({},e);var n,r,i,o,a,s,l=[],u=!e.once&&[],c=function(t){for(r=e.memory&&t,i=!0,a=s||0,s=0,o=l.length,n=!0;l&&o>a;a++)if(l[a].apply(t[0],t[1])===!1&&e.stopOnFalse){r=!1;break}n=!1,l&&(u?u.length&&c(u.shift()):r?l=[]:p.disable())},p={add:function(){if(l){var t=l.length;(function i(t){x.each(t,function(t,n){var r=x.type(n);"function"===r?e.unique&&p.has(n)||l.push(n):n&&n.length&&"string"!==r&&i(n)})})(arguments),n?o=l.length:r&&(s=t,c(r))}return this},remove:function(){return l&&x.each(arguments,function(e,t){var r;while((r=x.inArray(t,l,r))>-1)l.splice(r,1),n&&(o>=r&&o--,a>=r&&a--)}),this},has:function(e){return e?x.inArray(e,l)>-1:!(!l||!l.length)},empty:function(){return l=[],o=0,this},disable:function(){return l=u=r=t,this},disabled:function(){return!l},lock:function(){return u=t,r||p.disable(),this},locked:function(){return!u},fireWith:function(e,t){return!l||i&&!u||(t=t||[],t=[e,t.slice?t.slice():t],n?u.push(t):c(t)),this},fire:function(){return p.fireWith(this,arguments),this},fired:function(){return!!i}};return p},x.extend({Deferred:function(e){var t=[["resolve","done",x.Callbacks("once memory"),"resolved"],["reject","fail",x.Callbacks("once memory"),"rejected"],["notify","progress",x.Callbacks("memory")]],n="pending",r={state:function(){return n},always:function(){return i.done(arguments).fail(arguments),this},then:function(){var e=arguments;return x.Deferred(function(n){x.each(t,function(t,o){var a=o[0],s=x.isFunction(e[t])&&e[t];i[o[1]](function(){var e=s&&s.apply(this,arguments);e&&x.isFunction(e.promise)?e.promise().done(n.resolve).fail(n.reject).progress(n.notify):n[a+"With"](this===r?n.promise():this,s?[e]:arguments)})}),e=null}).promise()},promise:function(e){return null!=e?x.extend(e,r):r}},i={};return r.pipe=r.then,x.each(t,function(e,o){var a=o[2],s=o[3];r[o[1]]=a.add,s&&a.add(function(){n=s},t[1^e][2].disable,t[2][2].lock),i[o[0]]=function(){return i[o[0]+"With"](this===i?r:this,arguments),this},i[o[0]+"With"]=a.fireWith}),r.promise(i),e&&e.call(i,i),i},when:function(e){var t=0,n=g.call(arguments),r=n.length,i=1!==r||e&&x.isFunction(e.promise)?r:0,o=1===i?e:x.Deferred(),a=function(e,t,n){return function(r){t[e]=this,n[e]=arguments.length>1?g.call(arguments):r,n===s?o.notifyWith(t,n):--i||o.resolveWith(t,n)}},s,l,u;if(r>1)for(s=Array(r),l=Array(r),u=Array(r);r>t;t++)n[t]&&x.isFunction(n[t].promise)?n[t].promise().done(a(t,u,n)).fail(o.reject).progress(a(t,l,s)):--i;return i||o.resolveWith(u,n),o.promise()}}),x.support=function(t){var n,r,o,s,l,u,c,p,f,d=a.createElement("div");if(d.setAttribute("className","t"),d.innerHTML="a",n=d.getElementsByTagName("*")||[],r=d.getElementsByTagName("a")[0],!r||!r.style||!n.length)return t;s=a.createElement("select"),u=s.appendChild(a.createElement("option")),o=d.getElementsByTagName("input")[0],r.style.cssText="top:1px;float:left;opacity:.5",t.getSetAttribute="t"!==d.className,t.leadingWhitespace=3===d.firstChild.nodeType,t.tbody=!d.getElementsByTagName("tbody").length,t.htmlSerialize=!!d.getElementsByTagName("link").length,t.style=/top/.test(r.getAttribute("style")),t.hrefNormalized="/a"===r.getAttribute("href"),t.opacity=/^0.5/.test(r.style.opacity),t.cssFloat=!!r.style.cssFloat,t.checkOn=!!o.value,t.optSelected=u.selected,t.enctype=!!a.createElement("form").enctype,t.html5Clone="<:nav>"!==a.createElement("nav").cloneNode(!0).outerHTML,t.inlineBlockNeedsLayout=!1,t.shrinkWrapBlocks=!1,t.pixelPosition=!1,t.deleteExpando=!0,t.noCloneEvent=!0,t.reliableMarginRight=!0,t.boxSizingReliable=!0,o.checked=!0,t.noCloneChecked=o.cloneNode(!0).checked,s.disabled=!0,t.optDisabled=!u.disabled;try{delete d.test}catch(h){t.deleteExpando=!1}o=a.createElement("input"),o.setAttribute("value",""),t.input=""===o.getAttribute("value"),o.value="t",o.setAttribute("type","radio"),t.radioValue="t"===o.value,o.setAttribute("checked","t"),o.setAttribute("name","t"),l=a.createDocumentFragment(),l.appendChild(o),t.appendChecked=o.checked,t.checkClone=l.cloneNode(!0).cloneNode(!0).lastChild.checked,d.attachEvent&&(d.attachEvent("onclick",function(){t.noCloneEvent=!1}),d.cloneNode(!0).click());for(f in{submit:!0,change:!0,focusin:!0})d.setAttribute(c="on"+f,"t"),t[f+"Bubbles"]=c in e||d.attributes[c].expando===!1;d.style.backgroundClip="content-box",d.cloneNode(!0).style.backgroundClip="",t.clearCloneStyle="content-box"===d.style.backgroundClip;for(f in x(t))break;return t.ownLast="0"!==f,x(function(){var n,r,o,s="padding:0;margin:0;border:0;display:block;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;",l=a.getElementsByTagName("body")[0];l&&(n=a.createElement("div"),n.style.cssText="border:0;width:0;height:0;position:absolute;top:0;left:-9999px;margin-top:1px",l.appendChild(n).appendChild(d),d.innerHTML="
",o=d.getElementsByTagName("td"),o[0].style.cssText="padding:0;margin:0;border:0;display:none",p=0===o[0].offsetHeight,o[0].style.display="",o[1].style.display="none",t.reliableHiddenOffsets=p&&0===o[0].offsetHeight,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%;",x.swap(l,null!=l.style.zoom?{zoom:1}:{},function(){t.boxSizing=4===d.offsetWidth}),e.getComputedStyle&&(t.pixelPosition="1%"!==(e.getComputedStyle(d,null)||{}).top,t.boxSizingReliable="4px"===(e.getComputedStyle(d,null)||{width:"4px"}).width,r=d.appendChild(a.createElement("div")),r.style.cssText=d.style.cssText=s,r.style.marginRight=r.style.width="0",d.style.width="1px",t.reliableMarginRight=!parseFloat((e.getComputedStyle(r,null)||{}).marginRight)),typeof d.style.zoom!==i&&(d.innerHTML="",d.style.cssText=s+"width:1px;padding:1px;display:inline;zoom:1",t.inlineBlockNeedsLayout=3===d.offsetWidth,d.style.display="block",d.innerHTML="",d.firstChild.style.width="5px",t.shrinkWrapBlocks=3!==d.offsetWidth,t.inlineBlockNeedsLayout&&(l.style.zoom=1)),l.removeChild(n),n=d=o=r=null)}),n=s=l=u=r=o=null,t +}({});var B=/(?:\{[\s\S]*\}|\[[\s\S]*\])$/,P=/([A-Z])/g;function R(e,n,r,i){if(x.acceptData(e)){var o,a,s=x.expando,l=e.nodeType,u=l?x.cache:e,c=l?e[s]:e[s]&&s;if(c&&u[c]&&(i||u[c].data)||r!==t||"string"!=typeof n)return c||(c=l?e[s]=p.pop()||x.guid++:s),u[c]||(u[c]=l?{}:{toJSON:x.noop}),("object"==typeof n||"function"==typeof n)&&(i?u[c]=x.extend(u[c],n):u[c].data=x.extend(u[c].data,n)),a=u[c],i||(a.data||(a.data={}),a=a.data),r!==t&&(a[x.camelCase(n)]=r),"string"==typeof n?(o=a[n],null==o&&(o=a[x.camelCase(n)])):o=a,o}}function W(e,t,n){if(x.acceptData(e)){var r,i,o=e.nodeType,a=o?x.cache:e,s=o?e[x.expando]:x.expando;if(a[s]){if(t&&(r=n?a[s]:a[s].data)){x.isArray(t)?t=t.concat(x.map(t,x.camelCase)):t in r?t=[t]:(t=x.camelCase(t),t=t in r?[t]:t.split(" ")),i=t.length;while(i--)delete r[t[i]];if(n?!I(r):!x.isEmptyObject(r))return}(n||(delete a[s].data,I(a[s])))&&(o?x.cleanData([e],!0):x.support.deleteExpando||a!=a.window?delete a[s]:a[s]=null)}}}x.extend({cache:{},noData:{applet:!0,embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"},hasData:function(e){return e=e.nodeType?x.cache[e[x.expando]]:e[x.expando],!!e&&!I(e)},data:function(e,t,n){return R(e,t,n)},removeData:function(e,t){return W(e,t)},_data:function(e,t,n){return R(e,t,n,!0)},_removeData:function(e,t){return W(e,t,!0)},acceptData:function(e){if(e.nodeType&&1!==e.nodeType&&9!==e.nodeType)return!1;var t=e.nodeName&&x.noData[e.nodeName.toLowerCase()];return!t||t!==!0&&e.getAttribute("classid")===t}}),x.fn.extend({data:function(e,n){var r,i,o=null,a=0,s=this[0];if(e===t){if(this.length&&(o=x.data(s),1===s.nodeType&&!x._data(s,"parsedAttrs"))){for(r=s.attributes;r.length>a;a++)i=r[a].name,0===i.indexOf("data-")&&(i=x.camelCase(i.slice(5)),$(s,i,o[i]));x._data(s,"parsedAttrs",!0)}return o}return"object"==typeof e?this.each(function(){x.data(this,e)}):arguments.length>1?this.each(function(){x.data(this,e,n)}):s?$(s,e,x.data(s,e)):null},removeData:function(e){return this.each(function(){x.removeData(this,e)})}});function $(e,n,r){if(r===t&&1===e.nodeType){var i="data-"+n.replace(P,"-$1").toLowerCase();if(r=e.getAttribute(i),"string"==typeof r){try{r="true"===r?!0:"false"===r?!1:"null"===r?null:+r+""===r?+r:B.test(r)?x.parseJSON(r):r}catch(o){}x.data(e,n,r)}else r=t}return r}function I(e){var t;for(t in e)if(("data"!==t||!x.isEmptyObject(e[t]))&&"toJSON"!==t)return!1;return!0}x.extend({queue:function(e,n,r){var i;return e?(n=(n||"fx")+"queue",i=x._data(e,n),r&&(!i||x.isArray(r)?i=x._data(e,n,x.makeArray(r)):i.push(r)),i||[]):t},dequeue:function(e,t){t=t||"fx";var n=x.queue(e,t),r=n.length,i=n.shift(),o=x._queueHooks(e,t),a=function(){x.dequeue(e,t)};"inprogress"===i&&(i=n.shift(),r--),i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,a,o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return x._data(e,n)||x._data(e,n,{empty:x.Callbacks("once memory").add(function(){x._removeData(e,t+"queue"),x._removeData(e,n)})})}}),x.fn.extend({queue:function(e,n){var r=2;return"string"!=typeof e&&(n=e,e="fx",r--),r>arguments.length?x.queue(this[0],e):n===t?this:this.each(function(){var t=x.queue(this,e,n);x._queueHooks(this,e),"fx"===e&&"inprogress"!==t[0]&&x.dequeue(this,e)})},dequeue:function(e){return this.each(function(){x.dequeue(this,e)})},delay:function(e,t){return e=x.fx?x.fx.speeds[e]||e:e,t=t||"fx",this.queue(t,function(t,n){var r=setTimeout(t,e);n.stop=function(){clearTimeout(r)}})},clearQueue:function(e){return this.queue(e||"fx",[])},promise:function(e,n){var r,i=1,o=x.Deferred(),a=this,s=this.length,l=function(){--i||o.resolveWith(a,[a])};"string"!=typeof e&&(n=e,e=t),e=e||"fx";while(s--)r=x._data(a[s],e+"queueHooks"),r&&r.empty&&(i++,r.empty.add(l));return l(),o.promise(n)}});var z,X,U=/[\t\r\n\f]/g,V=/\r/g,Y=/^(?:input|select|textarea|button|object)$/i,J=/^(?:a|area)$/i,G=/^(?:checked|selected)$/i,Q=x.support.getSetAttribute,K=x.support.input;x.fn.extend({attr:function(e,t){return x.access(this,x.attr,e,t,arguments.length>1)},removeAttr:function(e){return this.each(function(){x.removeAttr(this,e)})},prop:function(e,t){return x.access(this,x.prop,e,t,arguments.length>1)},removeProp:function(e){return e=x.propFix[e]||e,this.each(function(){try{this[e]=t,delete this[e]}catch(n){}})},addClass:function(e){var t,n,r,i,o,a=0,s=this.length,l="string"==typeof e&&e;if(x.isFunction(e))return this.each(function(t){x(this).addClass(e.call(this,t,this.className))});if(l)for(t=(e||"").match(T)||[];s>a;a++)if(n=this[a],r=1===n.nodeType&&(n.className?(" "+n.className+" ").replace(U," "):" ")){o=0;while(i=t[o++])0>r.indexOf(" "+i+" ")&&(r+=i+" ");n.className=x.trim(r)}return this},removeClass:function(e){var t,n,r,i,o,a=0,s=this.length,l=0===arguments.length||"string"==typeof e&&e;if(x.isFunction(e))return this.each(function(t){x(this).removeClass(e.call(this,t,this.className))});if(l)for(t=(e||"").match(T)||[];s>a;a++)if(n=this[a],r=1===n.nodeType&&(n.className?(" "+n.className+" ").replace(U," "):"")){o=0;while(i=t[o++])while(r.indexOf(" "+i+" ")>=0)r=r.replace(" "+i+" "," ");n.className=e?x.trim(r):""}return this},toggleClass:function(e,t){var n=typeof e;return"boolean"==typeof t&&"string"===n?t?this.addClass(e):this.removeClass(e):x.isFunction(e)?this.each(function(n){x(this).toggleClass(e.call(this,n,this.className,t),t)}):this.each(function(){if("string"===n){var t,r=0,o=x(this),a=e.match(T)||[];while(t=a[r++])o.hasClass(t)?o.removeClass(t):o.addClass(t)}else(n===i||"boolean"===n)&&(this.className&&x._data(this,"__className__",this.className),this.className=this.className||e===!1?"":x._data(this,"__className__")||"")})},hasClass:function(e){var t=" "+e+" ",n=0,r=this.length;for(;r>n;n++)if(1===this[n].nodeType&&(" "+this[n].className+" ").replace(U," ").indexOf(t)>=0)return!0;return!1},val:function(e){var n,r,i,o=this[0];{if(arguments.length)return i=x.isFunction(e),this.each(function(n){var o;1===this.nodeType&&(o=i?e.call(this,n,x(this).val()):e,null==o?o="":"number"==typeof o?o+="":x.isArray(o)&&(o=x.map(o,function(e){return null==e?"":e+""})),r=x.valHooks[this.type]||x.valHooks[this.nodeName.toLowerCase()],r&&"set"in r&&r.set(this,o,"value")!==t||(this.value=o))});if(o)return r=x.valHooks[o.type]||x.valHooks[o.nodeName.toLowerCase()],r&&"get"in r&&(n=r.get(o,"value"))!==t?n:(n=o.value,"string"==typeof n?n.replace(V,""):null==n?"":n)}}}),x.extend({valHooks:{option:{get:function(e){var t=x.find.attr(e,"value");return null!=t?t:e.text}},select:{get:function(e){var t,n,r=e.options,i=e.selectedIndex,o="select-one"===e.type||0>i,a=o?null:[],s=o?i+1:r.length,l=0>i?s:o?i:0;for(;s>l;l++)if(n=r[l],!(!n.selected&&l!==i||(x.support.optDisabled?n.disabled:null!==n.getAttribute("disabled"))||n.parentNode.disabled&&x.nodeName(n.parentNode,"optgroup"))){if(t=x(n).val(),o)return t;a.push(t)}return a},set:function(e,t){var n,r,i=e.options,o=x.makeArray(t),a=i.length;while(a--)r=i[a],(r.selected=x.inArray(x(r).val(),o)>=0)&&(n=!0);return n||(e.selectedIndex=-1),o}}},attr:function(e,n,r){var o,a,s=e.nodeType;if(e&&3!==s&&8!==s&&2!==s)return typeof e.getAttribute===i?x.prop(e,n,r):(1===s&&x.isXMLDoc(e)||(n=n.toLowerCase(),o=x.attrHooks[n]||(x.expr.match.bool.test(n)?X:z)),r===t?o&&"get"in o&&null!==(a=o.get(e,n))?a:(a=x.find.attr(e,n),null==a?t:a):null!==r?o&&"set"in o&&(a=o.set(e,r,n))!==t?a:(e.setAttribute(n,r+""),r):(x.removeAttr(e,n),t))},removeAttr:function(e,t){var n,r,i=0,o=t&&t.match(T);if(o&&1===e.nodeType)while(n=o[i++])r=x.propFix[n]||n,x.expr.match.bool.test(n)?K&&Q||!G.test(n)?e[r]=!1:e[x.camelCase("default-"+n)]=e[r]=!1:x.attr(e,n,""),e.removeAttribute(Q?n:r)},attrHooks:{type:{set:function(e,t){if(!x.support.radioValue&&"radio"===t&&x.nodeName(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},propFix:{"for":"htmlFor","class":"className"},prop:function(e,n,r){var i,o,a,s=e.nodeType;if(e&&3!==s&&8!==s&&2!==s)return a=1!==s||!x.isXMLDoc(e),a&&(n=x.propFix[n]||n,o=x.propHooks[n]),r!==t?o&&"set"in o&&(i=o.set(e,r,n))!==t?i:e[n]=r:o&&"get"in o&&null!==(i=o.get(e,n))?i:e[n]},propHooks:{tabIndex:{get:function(e){var t=x.find.attr(e,"tabindex");return t?parseInt(t,10):Y.test(e.nodeName)||J.test(e.nodeName)&&e.href?0:-1}}}}),X={set:function(e,t,n){return t===!1?x.removeAttr(e,n):K&&Q||!G.test(n)?e.setAttribute(!Q&&x.propFix[n]||n,n):e[x.camelCase("default-"+n)]=e[n]=!0,n}},x.each(x.expr.match.bool.source.match(/\w+/g),function(e,n){var r=x.expr.attrHandle[n]||x.find.attr;x.expr.attrHandle[n]=K&&Q||!G.test(n)?function(e,n,i){var o=x.expr.attrHandle[n],a=i?t:(x.expr.attrHandle[n]=t)!=r(e,n,i)?n.toLowerCase():null;return x.expr.attrHandle[n]=o,a}:function(e,n,r){return r?t:e[x.camelCase("default-"+n)]?n.toLowerCase():null}}),K&&Q||(x.attrHooks.value={set:function(e,n,r){return x.nodeName(e,"input")?(e.defaultValue=n,t):z&&z.set(e,n,r)}}),Q||(z={set:function(e,n,r){var i=e.getAttributeNode(r);return i||e.setAttributeNode(i=e.ownerDocument.createAttribute(r)),i.value=n+="","value"===r||n===e.getAttribute(r)?n:t}},x.expr.attrHandle.id=x.expr.attrHandle.name=x.expr.attrHandle.coords=function(e,n,r){var i;return r?t:(i=e.getAttributeNode(n))&&""!==i.value?i.value:null},x.valHooks.button={get:function(e,n){var r=e.getAttributeNode(n);return r&&r.specified?r.value:t},set:z.set},x.attrHooks.contenteditable={set:function(e,t,n){z.set(e,""===t?!1:t,n)}},x.each(["width","height"],function(e,n){x.attrHooks[n]={set:function(e,r){return""===r?(e.setAttribute(n,"auto"),r):t}}})),x.support.hrefNormalized||x.each(["href","src"],function(e,t){x.propHooks[t]={get:function(e){return e.getAttribute(t,4)}}}),x.support.style||(x.attrHooks.style={get:function(e){return e.style.cssText||t},set:function(e,t){return e.style.cssText=t+""}}),x.support.optSelected||(x.propHooks.selected={get:function(e){var t=e.parentNode;return t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex),null}}),x.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){x.propFix[this.toLowerCase()]=this}),x.support.enctype||(x.propFix.enctype="encoding"),x.each(["radio","checkbox"],function(){x.valHooks[this]={set:function(e,n){return x.isArray(n)?e.checked=x.inArray(x(e).val(),n)>=0:t}},x.support.checkOn||(x.valHooks[this].get=function(e){return null===e.getAttribute("value")?"on":e.value})});var Z=/^(?:input|select|textarea)$/i,et=/^key/,tt=/^(?:mouse|contextmenu)|click/,nt=/^(?:focusinfocus|focusoutblur)$/,rt=/^([^.]*)(?:\.(.+)|)$/;function it(){return!0}function ot(){return!1}function at(){try{return a.activeElement}catch(e){}}x.event={global:{},add:function(e,n,r,o,a){var s,l,u,c,p,f,d,h,g,m,y,v=x._data(e);if(v){r.handler&&(c=r,r=c.handler,a=c.selector),r.guid||(r.guid=x.guid++),(l=v.events)||(l=v.events={}),(f=v.handle)||(f=v.handle=function(e){return typeof x===i||e&&x.event.triggered===e.type?t:x.event.dispatch.apply(f.elem,arguments)},f.elem=e),n=(n||"").match(T)||[""],u=n.length;while(u--)s=rt.exec(n[u])||[],g=y=s[1],m=(s[2]||"").split(".").sort(),g&&(p=x.event.special[g]||{},g=(a?p.delegateType:p.bindType)||g,p=x.event.special[g]||{},d=x.extend({type:g,origType:y,data:o,handler:r,guid:r.guid,selector:a,needsContext:a&&x.expr.match.needsContext.test(a),namespace:m.join(".")},c),(h=l[g])||(h=l[g]=[],h.delegateCount=0,p.setup&&p.setup.call(e,o,m,f)!==!1||(e.addEventListener?e.addEventListener(g,f,!1):e.attachEvent&&e.attachEvent("on"+g,f))),p.add&&(p.add.call(e,d),d.handler.guid||(d.handler.guid=r.guid)),a?h.splice(h.delegateCount++,0,d):h.push(d),x.event.global[g]=!0);e=null}},remove:function(e,t,n,r,i){var o,a,s,l,u,c,p,f,d,h,g,m=x.hasData(e)&&x._data(e);if(m&&(c=m.events)){t=(t||"").match(T)||[""],u=t.length;while(u--)if(s=rt.exec(t[u])||[],d=g=s[1],h=(s[2]||"").split(".").sort(),d){p=x.event.special[d]||{},d=(r?p.delegateType:p.bindType)||d,f=c[d]||[],s=s[2]&&RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),l=o=f.length;while(o--)a=f[o],!i&&g!==a.origType||n&&n.guid!==a.guid||s&&!s.test(a.namespace)||r&&r!==a.selector&&("**"!==r||!a.selector)||(f.splice(o,1),a.selector&&f.delegateCount--,p.remove&&p.remove.call(e,a));l&&!f.length&&(p.teardown&&p.teardown.call(e,h,m.handle)!==!1||x.removeEvent(e,d,m.handle),delete c[d])}else for(d in c)x.event.remove(e,d+t[u],n,r,!0);x.isEmptyObject(c)&&(delete m.handle,x._removeData(e,"events"))}},trigger:function(n,r,i,o){var s,l,u,c,p,f,d,h=[i||a],g=v.call(n,"type")?n.type:n,m=v.call(n,"namespace")?n.namespace.split("."):[];if(u=f=i=i||a,3!==i.nodeType&&8!==i.nodeType&&!nt.test(g+x.event.triggered)&&(g.indexOf(".")>=0&&(m=g.split("."),g=m.shift(),m.sort()),l=0>g.indexOf(":")&&"on"+g,n=n[x.expando]?n:new x.Event(g,"object"==typeof n&&n),n.isTrigger=o?2:3,n.namespace=m.join("."),n.namespace_re=n.namespace?RegExp("(^|\\.)"+m.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,n.result=t,n.target||(n.target=i),r=null==r?[n]:x.makeArray(r,[n]),p=x.event.special[g]||{},o||!p.trigger||p.trigger.apply(i,r)!==!1)){if(!o&&!p.noBubble&&!x.isWindow(i)){for(c=p.delegateType||g,nt.test(c+g)||(u=u.parentNode);u;u=u.parentNode)h.push(u),f=u;f===(i.ownerDocument||a)&&h.push(f.defaultView||f.parentWindow||e)}d=0;while((u=h[d++])&&!n.isPropagationStopped())n.type=d>1?c:p.bindType||g,s=(x._data(u,"events")||{})[n.type]&&x._data(u,"handle"),s&&s.apply(u,r),s=l&&u[l],s&&x.acceptData(u)&&s.apply&&s.apply(u,r)===!1&&n.preventDefault();if(n.type=g,!o&&!n.isDefaultPrevented()&&(!p._default||p._default.apply(h.pop(),r)===!1)&&x.acceptData(i)&&l&&i[g]&&!x.isWindow(i)){f=i[l],f&&(i[l]=null),x.event.triggered=g;try{i[g]()}catch(y){}x.event.triggered=t,f&&(i[l]=f)}return n.result}},dispatch:function(e){e=x.event.fix(e);var n,r,i,o,a,s=[],l=g.call(arguments),u=(x._data(this,"events")||{})[e.type]||[],c=x.event.special[e.type]||{};if(l[0]=e,e.delegateTarget=this,!c.preDispatch||c.preDispatch.call(this,e)!==!1){s=x.event.handlers.call(this,e,u),n=0;while((o=s[n++])&&!e.isPropagationStopped()){e.currentTarget=o.elem,a=0;while((i=o.handlers[a++])&&!e.isImmediatePropagationStopped())(!e.namespace_re||e.namespace_re.test(i.namespace))&&(e.handleObj=i,e.data=i.data,r=((x.event.special[i.origType]||{}).handle||i.handler).apply(o.elem,l),r!==t&&(e.result=r)===!1&&(e.preventDefault(),e.stopPropagation()))}return c.postDispatch&&c.postDispatch.call(this,e),e.result}},handlers:function(e,n){var r,i,o,a,s=[],l=n.delegateCount,u=e.target;if(l&&u.nodeType&&(!e.button||"click"!==e.type))for(;u!=this;u=u.parentNode||this)if(1===u.nodeType&&(u.disabled!==!0||"click"!==e.type)){for(o=[],a=0;l>a;a++)i=n[a],r=i.selector+" ",o[r]===t&&(o[r]=i.needsContext?x(r,this).index(u)>=0:x.find(r,this,null,[u]).length),o[r]&&o.push(i);o.length&&s.push({elem:u,handlers:o})}return n.length>l&&s.push({elem:this,handlers:n.slice(l)}),s},fix:function(e){if(e[x.expando])return e;var t,n,r,i=e.type,o=e,s=this.fixHooks[i];s||(this.fixHooks[i]=s=tt.test(i)?this.mouseHooks:et.test(i)?this.keyHooks:{}),r=s.props?this.props.concat(s.props):this.props,e=new x.Event(o),t=r.length;while(t--)n=r[t],e[n]=o[n];return e.target||(e.target=o.srcElement||a),3===e.target.nodeType&&(e.target=e.target.parentNode),e.metaKey=!!e.metaKey,s.filter?s.filter(e,o):e},props:"altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(e,t){return null==e.which&&(e.which=null!=t.charCode?t.charCode:t.keyCode),e}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(e,n){var r,i,o,s=n.button,l=n.fromElement;return null==e.pageX&&null!=n.clientX&&(i=e.target.ownerDocument||a,o=i.documentElement,r=i.body,e.pageX=n.clientX+(o&&o.scrollLeft||r&&r.scrollLeft||0)-(o&&o.clientLeft||r&&r.clientLeft||0),e.pageY=n.clientY+(o&&o.scrollTop||r&&r.scrollTop||0)-(o&&o.clientTop||r&&r.clientTop||0)),!e.relatedTarget&&l&&(e.relatedTarget=l===e.target?n.toElement:l),e.which||s===t||(e.which=1&s?1:2&s?3:4&s?2:0),e}},special:{load:{noBubble:!0},focus:{trigger:function(){if(this!==at()&&this.focus)try{return this.focus(),!1}catch(e){}},delegateType:"focusin"},blur:{trigger:function(){return this===at()&&this.blur?(this.blur(),!1):t},delegateType:"focusout"},click:{trigger:function(){return x.nodeName(this,"input")&&"checkbox"===this.type&&this.click?(this.click(),!1):t},_default:function(e){return x.nodeName(e.target,"a")}},beforeunload:{postDispatch:function(e){e.result!==t&&(e.originalEvent.returnValue=e.result)}}},simulate:function(e,t,n,r){var i=x.extend(new x.Event,n,{type:e,isSimulated:!0,originalEvent:{}});r?x.event.trigger(i,null,t):x.event.dispatch.call(t,i),i.isDefaultPrevented()&&n.preventDefault()}},x.removeEvent=a.removeEventListener?function(e,t,n){e.removeEventListener&&e.removeEventListener(t,n,!1)}:function(e,t,n){var r="on"+t;e.detachEvent&&(typeof e[r]===i&&(e[r]=null),e.detachEvent(r,n))},x.Event=function(e,n){return this instanceof x.Event?(e&&e.type?(this.originalEvent=e,this.type=e.type,this.isDefaultPrevented=e.defaultPrevented||e.returnValue===!1||e.getPreventDefault&&e.getPreventDefault()?it:ot):this.type=e,n&&x.extend(this,n),this.timeStamp=e&&e.timeStamp||x.now(),this[x.expando]=!0,t):new x.Event(e,n)},x.Event.prototype={isDefaultPrevented:ot,isPropagationStopped:ot,isImmediatePropagationStopped:ot,preventDefault:function(){var e=this.originalEvent;this.isDefaultPrevented=it,e&&(e.preventDefault?e.preventDefault():e.returnValue=!1)},stopPropagation:function(){var e=this.originalEvent;this.isPropagationStopped=it,e&&(e.stopPropagation&&e.stopPropagation(),e.cancelBubble=!0)},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=it,this.stopPropagation()}},x.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(e,t){x.event.special[e]={delegateType:t,bindType:t,handle:function(e){var n,r=this,i=e.relatedTarget,o=e.handleObj;return(!i||i!==r&&!x.contains(r,i))&&(e.type=o.origType,n=o.handler.apply(this,arguments),e.type=t),n}}}),x.support.submitBubbles||(x.event.special.submit={setup:function(){return x.nodeName(this,"form")?!1:(x.event.add(this,"click._submit keypress._submit",function(e){var n=e.target,r=x.nodeName(n,"input")||x.nodeName(n,"button")?n.form:t;r&&!x._data(r,"submitBubbles")&&(x.event.add(r,"submit._submit",function(e){e._submit_bubble=!0}),x._data(r,"submitBubbles",!0))}),t)},postDispatch:function(e){e._submit_bubble&&(delete e._submit_bubble,this.parentNode&&!e.isTrigger&&x.event.simulate("submit",this.parentNode,e,!0))},teardown:function(){return x.nodeName(this,"form")?!1:(x.event.remove(this,"._submit"),t)}}),x.support.changeBubbles||(x.event.special.change={setup:function(){return Z.test(this.nodeName)?(("checkbox"===this.type||"radio"===this.type)&&(x.event.add(this,"propertychange._change",function(e){"checked"===e.originalEvent.propertyName&&(this._just_changed=!0)}),x.event.add(this,"click._change",function(e){this._just_changed&&!e.isTrigger&&(this._just_changed=!1),x.event.simulate("change",this,e,!0)})),!1):(x.event.add(this,"beforeactivate._change",function(e){var t=e.target;Z.test(t.nodeName)&&!x._data(t,"changeBubbles")&&(x.event.add(t,"change._change",function(e){!this.parentNode||e.isSimulated||e.isTrigger||x.event.simulate("change",this.parentNode,e,!0)}),x._data(t,"changeBubbles",!0))}),t)},handle:function(e){var n=e.target;return this!==n||e.isSimulated||e.isTrigger||"radio"!==n.type&&"checkbox"!==n.type?e.handleObj.handler.apply(this,arguments):t},teardown:function(){return x.event.remove(this,"._change"),!Z.test(this.nodeName)}}),x.support.focusinBubbles||x.each({focus:"focusin",blur:"focusout"},function(e,t){var n=0,r=function(e){x.event.simulate(t,e.target,x.event.fix(e),!0)};x.event.special[t]={setup:function(){0===n++&&a.addEventListener(e,r,!0)},teardown:function(){0===--n&&a.removeEventListener(e,r,!0)}}}),x.fn.extend({on:function(e,n,r,i,o){var a,s;if("object"==typeof e){"string"!=typeof n&&(r=r||n,n=t);for(a in e)this.on(a,n,r,e[a],o);return this}if(null==r&&null==i?(i=n,r=n=t):null==i&&("string"==typeof n?(i=r,r=t):(i=r,r=n,n=t)),i===!1)i=ot;else if(!i)return this;return 1===o&&(s=i,i=function(e){return x().off(e),s.apply(this,arguments)},i.guid=s.guid||(s.guid=x.guid++)),this.each(function(){x.event.add(this,e,i,r,n)})},one:function(e,t,n,r){return this.on(e,t,n,r,1)},off:function(e,n,r){var i,o;if(e&&e.preventDefault&&e.handleObj)return i=e.handleObj,x(e.delegateTarget).off(i.namespace?i.origType+"."+i.namespace:i.origType,i.selector,i.handler),this;if("object"==typeof e){for(o in e)this.off(o,n,e[o]);return this}return(n===!1||"function"==typeof n)&&(r=n,n=t),r===!1&&(r=ot),this.each(function(){x.event.remove(this,e,r,n)})},trigger:function(e,t){return this.each(function(){x.event.trigger(e,t,this)})},triggerHandler:function(e,n){var r=this[0];return r?x.event.trigger(e,n,r,!0):t}});var st=/^.[^:#\[\.,]*$/,lt=/^(?:parents|prev(?:Until|All))/,ut=x.expr.match.needsContext,ct={children:!0,contents:!0,next:!0,prev:!0};x.fn.extend({find:function(e){var t,n=[],r=this,i=r.length;if("string"!=typeof e)return this.pushStack(x(e).filter(function(){for(t=0;i>t;t++)if(x.contains(r[t],this))return!0}));for(t=0;i>t;t++)x.find(e,r[t],n);return n=this.pushStack(i>1?x.unique(n):n),n.selector=this.selector?this.selector+" "+e:e,n},has:function(e){var t,n=x(e,this),r=n.length;return this.filter(function(){for(t=0;r>t;t++)if(x.contains(this,n[t]))return!0})},not:function(e){return this.pushStack(ft(this,e||[],!0))},filter:function(e){return this.pushStack(ft(this,e||[],!1))},is:function(e){return!!ft(this,"string"==typeof e&&ut.test(e)?x(e):e||[],!1).length},closest:function(e,t){var n,r=0,i=this.length,o=[],a=ut.test(e)||"string"!=typeof e?x(e,t||this.context):0;for(;i>r;r++)for(n=this[r];n&&n!==t;n=n.parentNode)if(11>n.nodeType&&(a?a.index(n)>-1:1===n.nodeType&&x.find.matchesSelector(n,e))){n=o.push(n);break}return this.pushStack(o.length>1?x.unique(o):o)},index:function(e){return e?"string"==typeof e?x.inArray(this[0],x(e)):x.inArray(e.jquery?e[0]:e,this):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){var n="string"==typeof e?x(e,t):x.makeArray(e&&e.nodeType?[e]:e),r=x.merge(this.get(),n);return this.pushStack(x.unique(r))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}});function pt(e,t){do e=e[t];while(e&&1!==e.nodeType);return e}x.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return x.dir(e,"parentNode")},parentsUntil:function(e,t,n){return x.dir(e,"parentNode",n)},next:function(e){return pt(e,"nextSibling")},prev:function(e){return pt(e,"previousSibling")},nextAll:function(e){return x.dir(e,"nextSibling")},prevAll:function(e){return x.dir(e,"previousSibling")},nextUntil:function(e,t,n){return x.dir(e,"nextSibling",n)},prevUntil:function(e,t,n){return x.dir(e,"previousSibling",n)},siblings:function(e){return x.sibling((e.parentNode||{}).firstChild,e)},children:function(e){return x.sibling(e.firstChild)},contents:function(e){return x.nodeName(e,"iframe")?e.contentDocument||e.contentWindow.document:x.merge([],e.childNodes)}},function(e,t){x.fn[e]=function(n,r){var i=x.map(this,t,n);return"Until"!==e.slice(-5)&&(r=n),r&&"string"==typeof r&&(i=x.filter(r,i)),this.length>1&&(ct[e]||(i=x.unique(i)),lt.test(e)&&(i=i.reverse())),this.pushStack(i)}}),x.extend({filter:function(e,t,n){var r=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===r.nodeType?x.find.matchesSelector(r,e)?[r]:[]:x.find.matches(e,x.grep(t,function(e){return 1===e.nodeType}))},dir:function(e,n,r){var i=[],o=e[n];while(o&&9!==o.nodeType&&(r===t||1!==o.nodeType||!x(o).is(r)))1===o.nodeType&&i.push(o),o=o[n];return i},sibling:function(e,t){var n=[];for(;e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n}});function ft(e,t,n){if(x.isFunction(t))return x.grep(e,function(e,r){return!!t.call(e,r,e)!==n});if(t.nodeType)return x.grep(e,function(e){return e===t!==n});if("string"==typeof t){if(st.test(t))return x.filter(t,e,n);t=x.filter(t,e)}return x.grep(e,function(e){return x.inArray(e,t)>=0!==n})}function dt(e){var t=ht.split("|"),n=e.createDocumentFragment();if(n.createElement)while(t.length)n.createElement(t.pop());return n}var ht="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",gt=/ jQuery\d+="(?:null|\d+)"/g,mt=RegExp("<(?:"+ht+")[\\s/>]","i"),yt=/^\s+/,vt=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,bt=/<([\w:]+)/,xt=/\s*$/g,At={option:[1,""],legend:[1,""],area:[1,""],param:[1,""],thead:[1,"
t ","
"],tr:[2,"","
"],col:[2,""],td:[3,"
"," "],_default:x.support.htmlSerialize?[0,"",""]:[1,"X
"," ",""]},jt=dt(a),Dt=jt.appendChild(a.createElement("div"));At.optgroup=At.option,At.tbody=At.tfoot=At.colgroup=At.caption=At.thead,At.th=At.td,x.fn.extend({text:function(e){return x.access(this,function(e){return e===t?x.text(this):this.empty().append((this[0]&&this[0].ownerDocument||a).createTextNode(e))},null,e,arguments.length)},append:function(){return this.domManip(arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=Lt(this,e);t.appendChild(e)}})},prepend:function(){return this.domManip(arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=Lt(this,e);t.insertBefore(e,t.firstChild)}})},before:function(){return this.domManip(arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return this.domManip(arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},remove:function(e,t){var n,r=e?x.filter(e,this):this,i=0;for(;null!=(n=r[i]);i++)t||1!==n.nodeType||x.cleanData(Ft(n)),n.parentNode&&(t&&x.contains(n.ownerDocument,n)&&_t(Ft(n,"script")),n.parentNode.removeChild(n));return this},empty:function(){var e,t=0;for(;null!=(e=this[t]);t++){1===e.nodeType&&x.cleanData(Ft(e,!1));while(e.firstChild)e.removeChild(e.firstChild);e.options&&x.nodeName(e,"select")&&(e.options.length=0)}return this},clone:function(e,t){return e=null==e?!1:e,t=null==t?e:t,this.map(function(){return x.clone(this,e,t)})},html:function(e){return x.access(this,function(e){var n=this[0]||{},r=0,i=this.length;if(e===t)return 1===n.nodeType?n.innerHTML.replace(gt,""):t;if(!("string"!=typeof e||Tt.test(e)||!x.support.htmlSerialize&&mt.test(e)||!x.support.leadingWhitespace&&yt.test(e)||At[(bt.exec(e)||["",""])[1].toLowerCase()])){e=e.replace(vt,"<$1>$2>");try{for(;i>r;r++)n=this[r]||{},1===n.nodeType&&(x.cleanData(Ft(n,!1)),n.innerHTML=e);n=0}catch(o){}}n&&this.empty().append(e)},null,e,arguments.length)},replaceWith:function(){var e=x.map(this,function(e){return[e.nextSibling,e.parentNode]}),t=0;return this.domManip(arguments,function(n){var r=e[t++],i=e[t++];i&&(r&&r.parentNode!==i&&(r=this.nextSibling),x(this).remove(),i.insertBefore(n,r))},!0),t?this:this.remove()},detach:function(e){return this.remove(e,!0)},domManip:function(e,t,n){e=d.apply([],e);var r,i,o,a,s,l,u=0,c=this.length,p=this,f=c-1,h=e[0],g=x.isFunction(h);if(g||!(1>=c||"string"!=typeof h||x.support.checkClone)&&Nt.test(h))return this.each(function(r){var i=p.eq(r);g&&(e[0]=h.call(this,r,i.html())),i.domManip(e,t,n)});if(c&&(l=x.buildFragment(e,this[0].ownerDocument,!1,!n&&this),r=l.firstChild,1===l.childNodes.length&&(l=r),r)){for(a=x.map(Ft(l,"script"),Ht),o=a.length;c>u;u++)i=l,u!==f&&(i=x.clone(i,!0,!0),o&&x.merge(a,Ft(i,"script"))),t.call(this[u],i,u);if(o)for(s=a[a.length-1].ownerDocument,x.map(a,qt),u=0;o>u;u++)i=a[u],kt.test(i.type||"")&&!x._data(i,"globalEval")&&x.contains(s,i)&&(i.src?x._evalUrl(i.src):x.globalEval((i.text||i.textContent||i.innerHTML||"").replace(St,"")));l=r=null}return this}});function Lt(e,t){return x.nodeName(e,"table")&&x.nodeName(1===t.nodeType?t:t.firstChild,"tr")?e.getElementsByTagName("tbody")[0]||e.appendChild(e.ownerDocument.createElement("tbody")):e}function Ht(e){return e.type=(null!==x.find.attr(e,"type"))+"/"+e.type,e}function qt(e){var t=Et.exec(e.type);return t?e.type=t[1]:e.removeAttribute("type"),e}function _t(e,t){var n,r=0;for(;null!=(n=e[r]);r++)x._data(n,"globalEval",!t||x._data(t[r],"globalEval"))}function Mt(e,t){if(1===t.nodeType&&x.hasData(e)){var n,r,i,o=x._data(e),a=x._data(t,o),s=o.events;if(s){delete a.handle,a.events={};for(n in s)for(r=0,i=s[n].length;i>r;r++)x.event.add(t,n,s[n][r])}a.data&&(a.data=x.extend({},a.data))}}function Ot(e,t){var n,r,i;if(1===t.nodeType){if(n=t.nodeName.toLowerCase(),!x.support.noCloneEvent&&t[x.expando]){i=x._data(t);for(r in i.events)x.removeEvent(t,r,i.handle);t.removeAttribute(x.expando)}"script"===n&&t.text!==e.text?(Ht(t).text=e.text,qt(t)):"object"===n?(t.parentNode&&(t.outerHTML=e.outerHTML),x.support.html5Clone&&e.innerHTML&&!x.trim(t.innerHTML)&&(t.innerHTML=e.innerHTML)):"input"===n&&Ct.test(e.type)?(t.defaultChecked=t.checked=e.checked,t.value!==e.value&&(t.value=e.value)):"option"===n?t.defaultSelected=t.selected=e.defaultSelected:("input"===n||"textarea"===n)&&(t.defaultValue=e.defaultValue)}}x.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(e,t){x.fn[e]=function(e){var n,r=0,i=[],o=x(e),a=o.length-1;for(;a>=r;r++)n=r===a?this:this.clone(!0),x(o[r])[t](n),h.apply(i,n.get());return this.pushStack(i)}});function Ft(e,n){var r,o,a=0,s=typeof e.getElementsByTagName!==i?e.getElementsByTagName(n||"*"):typeof e.querySelectorAll!==i?e.querySelectorAll(n||"*"):t;if(!s)for(s=[],r=e.childNodes||e;null!=(o=r[a]);a++)!n||x.nodeName(o,n)?s.push(o):x.merge(s,Ft(o,n));return n===t||n&&x.nodeName(e,n)?x.merge([e],s):s}function Bt(e){Ct.test(e.type)&&(e.defaultChecked=e.checked)}x.extend({clone:function(e,t,n){var r,i,o,a,s,l=x.contains(e.ownerDocument,e);if(x.support.html5Clone||x.isXMLDoc(e)||!mt.test("<"+e.nodeName+">")?o=e.cloneNode(!0):(Dt.innerHTML=e.outerHTML,Dt.removeChild(o=Dt.firstChild)),!(x.support.noCloneEvent&&x.support.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||x.isXMLDoc(e)))for(r=Ft(o),s=Ft(e),a=0;null!=(i=s[a]);++a)r[a]&&Ot(i,r[a]);if(t)if(n)for(s=s||Ft(e),r=r||Ft(o),a=0;null!=(i=s[a]);a++)Mt(i,r[a]);else Mt(e,o);return r=Ft(o,"script"),r.length>0&&_t(r,!l&&Ft(e,"script")),r=s=i=null,o},buildFragment:function(e,t,n,r){var i,o,a,s,l,u,c,p=e.length,f=dt(t),d=[],h=0;for(;p>h;h++)if(o=e[h],o||0===o)if("object"===x.type(o))x.merge(d,o.nodeType?[o]:o);else if(wt.test(o)){s=s||f.appendChild(t.createElement("div")),l=(bt.exec(o)||["",""])[1].toLowerCase(),c=At[l]||At._default,s.innerHTML=c[1]+o.replace(vt,"<$1>$2>")+c[2],i=c[0];while(i--)s=s.lastChild;if(!x.support.leadingWhitespace&&yt.test(o)&&d.push(t.createTextNode(yt.exec(o)[0])),!x.support.tbody){o="table"!==l||xt.test(o)?""!==c[1]||xt.test(o)?0:s:s.firstChild,i=o&&o.childNodes.length;while(i--)x.nodeName(u=o.childNodes[i],"tbody")&&!u.childNodes.length&&o.removeChild(u)}x.merge(d,s.childNodes),s.textContent="";while(s.firstChild)s.removeChild(s.firstChild);s=f.lastChild}else d.push(t.createTextNode(o));s&&f.removeChild(s),x.support.appendChecked||x.grep(Ft(d,"input"),Bt),h=0;while(o=d[h++])if((!r||-1===x.inArray(o,r))&&(a=x.contains(o.ownerDocument,o),s=Ft(f.appendChild(o),"script"),a&&_t(s),n)){i=0;while(o=s[i++])kt.test(o.type||"")&&n.push(o)}return s=null,f},cleanData:function(e,t){var n,r,o,a,s=0,l=x.expando,u=x.cache,c=x.support.deleteExpando,f=x.event.special;for(;null!=(n=e[s]);s++)if((t||x.acceptData(n))&&(o=n[l],a=o&&u[o])){if(a.events)for(r in a.events)f[r]?x.event.remove(n,r):x.removeEvent(n,r,a.handle); +u[o]&&(delete u[o],c?delete n[l]:typeof n.removeAttribute!==i?n.removeAttribute(l):n[l]=null,p.push(o))}},_evalUrl:function(e){return x.ajax({url:e,type:"GET",dataType:"script",async:!1,global:!1,"throws":!0})}}),x.fn.extend({wrapAll:function(e){if(x.isFunction(e))return this.each(function(t){x(this).wrapAll(e.call(this,t))});if(this[0]){var t=x(e,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){var e=this;while(e.firstChild&&1===e.firstChild.nodeType)e=e.firstChild;return e}).append(this)}return this},wrapInner:function(e){return x.isFunction(e)?this.each(function(t){x(this).wrapInner(e.call(this,t))}):this.each(function(){var t=x(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)})},wrap:function(e){var t=x.isFunction(e);return this.each(function(n){x(this).wrapAll(t?e.call(this,n):e)})},unwrap:function(){return this.parent().each(function(){x.nodeName(this,"body")||x(this).replaceWith(this.childNodes)}).end()}});var Pt,Rt,Wt,$t=/alpha\([^)]*\)/i,It=/opacity\s*=\s*([^)]*)/,zt=/^(top|right|bottom|left)$/,Xt=/^(none|table(?!-c[ea]).+)/,Ut=/^margin/,Vt=RegExp("^("+w+")(.*)$","i"),Yt=RegExp("^("+w+")(?!px)[a-z%]+$","i"),Jt=RegExp("^([+-])=("+w+")","i"),Gt={BODY:"block"},Qt={position:"absolute",visibility:"hidden",display:"block"},Kt={letterSpacing:0,fontWeight:400},Zt=["Top","Right","Bottom","Left"],en=["Webkit","O","Moz","ms"];function tn(e,t){if(t in e)return t;var n=t.charAt(0).toUpperCase()+t.slice(1),r=t,i=en.length;while(i--)if(t=en[i]+n,t in e)return t;return r}function nn(e,t){return e=t||e,"none"===x.css(e,"display")||!x.contains(e.ownerDocument,e)}function rn(e,t){var n,r,i,o=[],a=0,s=e.length;for(;s>a;a++)r=e[a],r.style&&(o[a]=x._data(r,"olddisplay"),n=r.style.display,t?(o[a]||"none"!==n||(r.style.display=""),""===r.style.display&&nn(r)&&(o[a]=x._data(r,"olddisplay",ln(r.nodeName)))):o[a]||(i=nn(r),(n&&"none"!==n||!i)&&x._data(r,"olddisplay",i?n:x.css(r,"display"))));for(a=0;s>a;a++)r=e[a],r.style&&(t&&"none"!==r.style.display&&""!==r.style.display||(r.style.display=t?o[a]||"":"none"));return e}x.fn.extend({css:function(e,n){return x.access(this,function(e,n,r){var i,o,a={},s=0;if(x.isArray(n)){for(o=Rt(e),i=n.length;i>s;s++)a[n[s]]=x.css(e,n[s],!1,o);return a}return r!==t?x.style(e,n,r):x.css(e,n)},e,n,arguments.length>1)},show:function(){return rn(this,!0)},hide:function(){return rn(this)},toggle:function(e){return"boolean"==typeof e?e?this.show():this.hide():this.each(function(){nn(this)?x(this).show():x(this).hide()})}}),x.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=Wt(e,"opacity");return""===n?"1":n}}}},cssNumber:{columnCount:!0,fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":x.support.cssFloat?"cssFloat":"styleFloat"},style:function(e,n,r,i){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var o,a,s,l=x.camelCase(n),u=e.style;if(n=x.cssProps[l]||(x.cssProps[l]=tn(u,l)),s=x.cssHooks[n]||x.cssHooks[l],r===t)return s&&"get"in s&&(o=s.get(e,!1,i))!==t?o:u[n];if(a=typeof r,"string"===a&&(o=Jt.exec(r))&&(r=(o[1]+1)*o[2]+parseFloat(x.css(e,n)),a="number"),!(null==r||"number"===a&&isNaN(r)||("number"!==a||x.cssNumber[l]||(r+="px"),x.support.clearCloneStyle||""!==r||0!==n.indexOf("background")||(u[n]="inherit"),s&&"set"in s&&(r=s.set(e,r,i))===t)))try{u[n]=r}catch(c){}}},css:function(e,n,r,i){var o,a,s,l=x.camelCase(n);return n=x.cssProps[l]||(x.cssProps[l]=tn(e.style,l)),s=x.cssHooks[n]||x.cssHooks[l],s&&"get"in s&&(a=s.get(e,!0,r)),a===t&&(a=Wt(e,n,i)),"normal"===a&&n in Kt&&(a=Kt[n]),""===r||r?(o=parseFloat(a),r===!0||x.isNumeric(o)?o||0:a):a}}),e.getComputedStyle?(Rt=function(t){return e.getComputedStyle(t,null)},Wt=function(e,n,r){var i,o,a,s=r||Rt(e),l=s?s.getPropertyValue(n)||s[n]:t,u=e.style;return s&&(""!==l||x.contains(e.ownerDocument,e)||(l=x.style(e,n)),Yt.test(l)&&Ut.test(n)&&(i=u.width,o=u.minWidth,a=u.maxWidth,u.minWidth=u.maxWidth=u.width=l,l=s.width,u.width=i,u.minWidth=o,u.maxWidth=a)),l}):a.documentElement.currentStyle&&(Rt=function(e){return e.currentStyle},Wt=function(e,n,r){var i,o,a,s=r||Rt(e),l=s?s[n]:t,u=e.style;return null==l&&u&&u[n]&&(l=u[n]),Yt.test(l)&&!zt.test(n)&&(i=u.left,o=e.runtimeStyle,a=o&&o.left,a&&(o.left=e.currentStyle.left),u.left="fontSize"===n?"1em":l,l=u.pixelLeft+"px",u.left=i,a&&(o.left=a)),""===l?"auto":l});function on(e,t,n){var r=Vt.exec(t);return r?Math.max(0,r[1]-(n||0))+(r[2]||"px"):t}function an(e,t,n,r,i){var o=n===(r?"border":"content")?4:"width"===t?1:0,a=0;for(;4>o;o+=2)"margin"===n&&(a+=x.css(e,n+Zt[o],!0,i)),r?("content"===n&&(a-=x.css(e,"padding"+Zt[o],!0,i)),"margin"!==n&&(a-=x.css(e,"border"+Zt[o]+"Width",!0,i))):(a+=x.css(e,"padding"+Zt[o],!0,i),"padding"!==n&&(a+=x.css(e,"border"+Zt[o]+"Width",!0,i)));return a}function sn(e,t,n){var r=!0,i="width"===t?e.offsetWidth:e.offsetHeight,o=Rt(e),a=x.support.boxSizing&&"border-box"===x.css(e,"boxSizing",!1,o);if(0>=i||null==i){if(i=Wt(e,t,o),(0>i||null==i)&&(i=e.style[t]),Yt.test(i))return i;r=a&&(x.support.boxSizingReliable||i===e.style[t]),i=parseFloat(i)||0}return i+an(e,t,n||(a?"border":"content"),r,o)+"px"}function ln(e){var t=a,n=Gt[e];return n||(n=un(e,t),"none"!==n&&n||(Pt=(Pt||x("").css("cssText","display:block !important")).appendTo(t.documentElement),t=(Pt[0].contentWindow||Pt[0].contentDocument).document,t.write(""),t.close(),n=un(e,t),Pt.detach()),Gt[e]=n),n}function un(e,t){var n=x(t.createElement(e)).appendTo(t.body),r=x.css(n[0],"display");return n.remove(),r}x.each(["height","width"],function(e,n){x.cssHooks[n]={get:function(e,r,i){return r?0===e.offsetWidth&&Xt.test(x.css(e,"display"))?x.swap(e,Qt,function(){return sn(e,n,i)}):sn(e,n,i):t},set:function(e,t,r){var i=r&&Rt(e);return on(e,t,r?an(e,n,r,x.support.boxSizing&&"border-box"===x.css(e,"boxSizing",!1,i),i):0)}}}),x.support.opacity||(x.cssHooks.opacity={get:function(e,t){return It.test((t&&e.currentStyle?e.currentStyle.filter:e.style.filter)||"")?.01*parseFloat(RegExp.$1)+"":t?"1":""},set:function(e,t){var n=e.style,r=e.currentStyle,i=x.isNumeric(t)?"alpha(opacity="+100*t+")":"",o=r&&r.filter||n.filter||"";n.zoom=1,(t>=1||""===t)&&""===x.trim(o.replace($t,""))&&n.removeAttribute&&(n.removeAttribute("filter"),""===t||r&&!r.filter)||(n.filter=$t.test(o)?o.replace($t,i):o+" "+i)}}),x(function(){x.support.reliableMarginRight||(x.cssHooks.marginRight={get:function(e,n){return n?x.swap(e,{display:"inline-block"},Wt,[e,"marginRight"]):t}}),!x.support.pixelPosition&&x.fn.position&&x.each(["top","left"],function(e,n){x.cssHooks[n]={get:function(e,r){return r?(r=Wt(e,n),Yt.test(r)?x(e).position()[n]+"px":r):t}}})}),x.expr&&x.expr.filters&&(x.expr.filters.hidden=function(e){return 0>=e.offsetWidth&&0>=e.offsetHeight||!x.support.reliableHiddenOffsets&&"none"===(e.style&&e.style.display||x.css(e,"display"))},x.expr.filters.visible=function(e){return!x.expr.filters.hidden(e)}),x.each({margin:"",padding:"",border:"Width"},function(e,t){x.cssHooks[e+t]={expand:function(n){var r=0,i={},o="string"==typeof n?n.split(" "):[n];for(;4>r;r++)i[e+Zt[r]+t]=o[r]||o[r-2]||o[0];return i}},Ut.test(e)||(x.cssHooks[e+t].set=on)});var cn=/%20/g,pn=/\[\]$/,fn=/\r?\n/g,dn=/^(?:submit|button|image|reset|file)$/i,hn=/^(?:input|select|textarea|keygen)/i;x.fn.extend({serialize:function(){return x.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var e=x.prop(this,"elements");return e?x.makeArray(e):this}).filter(function(){var e=this.type;return this.name&&!x(this).is(":disabled")&&hn.test(this.nodeName)&&!dn.test(e)&&(this.checked||!Ct.test(e))}).map(function(e,t){var n=x(this).val();return null==n?null:x.isArray(n)?x.map(n,function(e){return{name:t.name,value:e.replace(fn,"\r\n")}}):{name:t.name,value:n.replace(fn,"\r\n")}}).get()}}),x.param=function(e,n){var r,i=[],o=function(e,t){t=x.isFunction(t)?t():null==t?"":t,i[i.length]=encodeURIComponent(e)+"="+encodeURIComponent(t)};if(n===t&&(n=x.ajaxSettings&&x.ajaxSettings.traditional),x.isArray(e)||e.jquery&&!x.isPlainObject(e))x.each(e,function(){o(this.name,this.value)});else for(r in e)gn(r,e[r],n,o);return i.join("&").replace(cn,"+")};function gn(e,t,n,r){var i;if(x.isArray(t))x.each(t,function(t,i){n||pn.test(e)?r(e,i):gn(e+"["+("object"==typeof i?t:"")+"]",i,n,r)});else if(n||"object"!==x.type(t))r(e,t);else for(i in t)gn(e+"["+i+"]",t[i],n,r)}x.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(e,t){x.fn[t]=function(e,n){return arguments.length>0?this.on(t,null,e,n):this.trigger(t)}}),x.fn.extend({hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)},bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)}});var mn,yn,vn=x.now(),bn=/\?/,xn=/#.*$/,wn=/([?&])_=[^&]*/,Tn=/^(.*?):[ \t]*([^\r\n]*)\r?$/gm,Cn=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,Nn=/^(?:GET|HEAD)$/,kn=/^\/\//,En=/^([\w.+-]+:)(?:\/\/([^\/?#:]*)(?::(\d+)|)|)/,Sn=x.fn.load,An={},jn={},Dn="*/".concat("*");try{yn=o.href}catch(Ln){yn=a.createElement("a"),yn.href="",yn=yn.href}mn=En.exec(yn.toLowerCase())||[];function Hn(e){return function(t,n){"string"!=typeof t&&(n=t,t="*");var r,i=0,o=t.toLowerCase().match(T)||[];if(x.isFunction(n))while(r=o[i++])"+"===r[0]?(r=r.slice(1)||"*",(e[r]=e[r]||[]).unshift(n)):(e[r]=e[r]||[]).push(n)}}function qn(e,n,r,i){var o={},a=e===jn;function s(l){var u;return o[l]=!0,x.each(e[l]||[],function(e,l){var c=l(n,r,i);return"string"!=typeof c||a||o[c]?a?!(u=c):t:(n.dataTypes.unshift(c),s(c),!1)}),u}return s(n.dataTypes[0])||!o["*"]&&s("*")}function _n(e,n){var r,i,o=x.ajaxSettings.flatOptions||{};for(i in n)n[i]!==t&&((o[i]?e:r||(r={}))[i]=n[i]);return r&&x.extend(!0,e,r),e}x.fn.load=function(e,n,r){if("string"!=typeof e&&Sn)return Sn.apply(this,arguments);var i,o,a,s=this,l=e.indexOf(" ");return l>=0&&(i=e.slice(l,e.length),e=e.slice(0,l)),x.isFunction(n)?(r=n,n=t):n&&"object"==typeof n&&(a="POST"),s.length>0&&x.ajax({url:e,type:a,dataType:"html",data:n}).done(function(e){o=arguments,s.html(i?x("
").append(x.parseHTML(e)).find(i):e)}).complete(r&&function(e,t){s.each(r,o||[e.responseText,t,e])}),this},x.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){x.fn[t]=function(e){return this.on(t,e)}}),x.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:yn,type:"GET",isLocal:Cn.test(mn[1]),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Dn,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":x.parseJSON,"text xml":x.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?_n(_n(e,x.ajaxSettings),t):_n(x.ajaxSettings,e)},ajaxPrefilter:Hn(An),ajaxTransport:Hn(jn),ajax:function(e,n){"object"==typeof e&&(n=e,e=t),n=n||{};var r,i,o,a,s,l,u,c,p=x.ajaxSetup({},n),f=p.context||p,d=p.context&&(f.nodeType||f.jquery)?x(f):x.event,h=x.Deferred(),g=x.Callbacks("once memory"),m=p.statusCode||{},y={},v={},b=0,w="canceled",C={readyState:0,getResponseHeader:function(e){var t;if(2===b){if(!c){c={};while(t=Tn.exec(a))c[t[1].toLowerCase()]=t[2]}t=c[e.toLowerCase()]}return null==t?null:t},getAllResponseHeaders:function(){return 2===b?a:null},setRequestHeader:function(e,t){var n=e.toLowerCase();return b||(e=v[n]=v[n]||e,y[e]=t),this},overrideMimeType:function(e){return b||(p.mimeType=e),this},statusCode:function(e){var t;if(e)if(2>b)for(t in e)m[t]=[m[t],e[t]];else C.always(e[C.status]);return this},abort:function(e){var t=e||w;return u&&u.abort(t),k(0,t),this}};if(h.promise(C).complete=g.add,C.success=C.done,C.error=C.fail,p.url=((e||p.url||yn)+"").replace(xn,"").replace(kn,mn[1]+"//"),p.type=n.method||n.type||p.method||p.type,p.dataTypes=x.trim(p.dataType||"*").toLowerCase().match(T)||[""],null==p.crossDomain&&(r=En.exec(p.url.toLowerCase()),p.crossDomain=!(!r||r[1]===mn[1]&&r[2]===mn[2]&&(r[3]||("http:"===r[1]?"80":"443"))===(mn[3]||("http:"===mn[1]?"80":"443")))),p.data&&p.processData&&"string"!=typeof p.data&&(p.data=x.param(p.data,p.traditional)),qn(An,p,n,C),2===b)return C;l=p.global,l&&0===x.active++&&x.event.trigger("ajaxStart"),p.type=p.type.toUpperCase(),p.hasContent=!Nn.test(p.type),o=p.url,p.hasContent||(p.data&&(o=p.url+=(bn.test(o)?"&":"?")+p.data,delete p.data),p.cache===!1&&(p.url=wn.test(o)?o.replace(wn,"$1_="+vn++):o+(bn.test(o)?"&":"?")+"_="+vn++)),p.ifModified&&(x.lastModified[o]&&C.setRequestHeader("If-Modified-Since",x.lastModified[o]),x.etag[o]&&C.setRequestHeader("If-None-Match",x.etag[o])),(p.data&&p.hasContent&&p.contentType!==!1||n.contentType)&&C.setRequestHeader("Content-Type",p.contentType),C.setRequestHeader("Accept",p.dataTypes[0]&&p.accepts[p.dataTypes[0]]?p.accepts[p.dataTypes[0]]+("*"!==p.dataTypes[0]?", "+Dn+"; q=0.01":""):p.accepts["*"]);for(i in p.headers)C.setRequestHeader(i,p.headers[i]);if(p.beforeSend&&(p.beforeSend.call(f,C,p)===!1||2===b))return C.abort();w="abort";for(i in{success:1,error:1,complete:1})C[i](p[i]);if(u=qn(jn,p,n,C)){C.readyState=1,l&&d.trigger("ajaxSend",[C,p]),p.async&&p.timeout>0&&(s=setTimeout(function(){C.abort("timeout")},p.timeout));try{b=1,u.send(y,k)}catch(N){if(!(2>b))throw N;k(-1,N)}}else k(-1,"No Transport");function k(e,n,r,i){var c,y,v,w,T,N=n;2!==b&&(b=2,s&&clearTimeout(s),u=t,a=i||"",C.readyState=e>0?4:0,c=e>=200&&300>e||304===e,r&&(w=Mn(p,C,r)),w=On(p,w,C,c),c?(p.ifModified&&(T=C.getResponseHeader("Last-Modified"),T&&(x.lastModified[o]=T),T=C.getResponseHeader("etag"),T&&(x.etag[o]=T)),204===e||"HEAD"===p.type?N="nocontent":304===e?N="notmodified":(N=w.state,y=w.data,v=w.error,c=!v)):(v=N,(e||!N)&&(N="error",0>e&&(e=0))),C.status=e,C.statusText=(n||N)+"",c?h.resolveWith(f,[y,N,C]):h.rejectWith(f,[C,N,v]),C.statusCode(m),m=t,l&&d.trigger(c?"ajaxSuccess":"ajaxError",[C,p,c?y:v]),g.fireWith(f,[C,N]),l&&(d.trigger("ajaxComplete",[C,p]),--x.active||x.event.trigger("ajaxStop")))}return C},getJSON:function(e,t,n){return x.get(e,t,n,"json")},getScript:function(e,n){return x.get(e,t,n,"script")}}),x.each(["get","post"],function(e,n){x[n]=function(e,r,i,o){return x.isFunction(r)&&(o=o||i,i=r,r=t),x.ajax({url:e,type:n,dataType:o,data:r,success:i})}});function Mn(e,n,r){var i,o,a,s,l=e.contents,u=e.dataTypes;while("*"===u[0])u.shift(),o===t&&(o=e.mimeType||n.getResponseHeader("Content-Type"));if(o)for(s in l)if(l[s]&&l[s].test(o)){u.unshift(s);break}if(u[0]in r)a=u[0];else{for(s in r){if(!u[0]||e.converters[s+" "+u[0]]){a=s;break}i||(i=s)}a=a||i}return a?(a!==u[0]&&u.unshift(a),r[a]):t}function On(e,t,n,r){var i,o,a,s,l,u={},c=e.dataTypes.slice();if(c[1])for(a in e.converters)u[a.toLowerCase()]=e.converters[a];o=c.shift();while(o)if(e.responseFields[o]&&(n[e.responseFields[o]]=t),!l&&r&&e.dataFilter&&(t=e.dataFilter(t,e.dataType)),l=o,o=c.shift())if("*"===o)o=l;else if("*"!==l&&l!==o){if(a=u[l+" "+o]||u["* "+o],!a)for(i in u)if(s=i.split(" "),s[1]===o&&(a=u[l+" "+s[0]]||u["* "+s[0]])){a===!0?a=u[i]:u[i]!==!0&&(o=s[0],c.unshift(s[1]));break}if(a!==!0)if(a&&e["throws"])t=a(t);else try{t=a(t)}catch(p){return{state:"parsererror",error:a?p:"No conversion from "+l+" to "+o}}}return{state:"success",data:t}}x.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/(?:java|ecma)script/},converters:{"text script":function(e){return x.globalEval(e),e}}}),x.ajaxPrefilter("script",function(e){e.cache===t&&(e.cache=!1),e.crossDomain&&(e.type="GET",e.global=!1)}),x.ajaxTransport("script",function(e){if(e.crossDomain){var n,r=a.head||x("head")[0]||a.documentElement;return{send:function(t,i){n=a.createElement("script"),n.async=!0,e.scriptCharset&&(n.charset=e.scriptCharset),n.src=e.url,n.onload=n.onreadystatechange=function(e,t){(t||!n.readyState||/loaded|complete/.test(n.readyState))&&(n.onload=n.onreadystatechange=null,n.parentNode&&n.parentNode.removeChild(n),n=null,t||i(200,"success"))},r.insertBefore(n,r.firstChild)},abort:function(){n&&n.onload(t,!0)}}}});var Fn=[],Bn=/(=)\?(?=&|$)|\?\?/;x.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Fn.pop()||x.expando+"_"+vn++;return this[e]=!0,e}}),x.ajaxPrefilter("json jsonp",function(n,r,i){var o,a,s,l=n.jsonp!==!1&&(Bn.test(n.url)?"url":"string"==typeof n.data&&!(n.contentType||"").indexOf("application/x-www-form-urlencoded")&&Bn.test(n.data)&&"data");return l||"jsonp"===n.dataTypes[0]?(o=n.jsonpCallback=x.isFunction(n.jsonpCallback)?n.jsonpCallback():n.jsonpCallback,l?n[l]=n[l].replace(Bn,"$1"+o):n.jsonp!==!1&&(n.url+=(bn.test(n.url)?"&":"?")+n.jsonp+"="+o),n.converters["script json"]=function(){return s||x.error(o+" was not called"),s[0]},n.dataTypes[0]="json",a=e[o],e[o]=function(){s=arguments},i.always(function(){e[o]=a,n[o]&&(n.jsonpCallback=r.jsonpCallback,Fn.push(o)),s&&x.isFunction(a)&&a(s[0]),s=a=t}),"script"):t});var Pn,Rn,Wn=0,$n=e.ActiveXObject&&function(){var e;for(e in Pn)Pn[e](t,!0)};function In(){try{return new e.XMLHttpRequest}catch(t){}}function zn(){try{return new e.ActiveXObject("Microsoft.XMLHTTP")}catch(t){}}x.ajaxSettings.xhr=e.ActiveXObject?function(){return!this.isLocal&&In()||zn()}:In,Rn=x.ajaxSettings.xhr(),x.support.cors=!!Rn&&"withCredentials"in Rn,Rn=x.support.ajax=!!Rn,Rn&&x.ajaxTransport(function(n){if(!n.crossDomain||x.support.cors){var r;return{send:function(i,o){var a,s,l=n.xhr();if(n.username?l.open(n.type,n.url,n.async,n.username,n.password):l.open(n.type,n.url,n.async),n.xhrFields)for(s in n.xhrFields)l[s]=n.xhrFields[s];n.mimeType&&l.overrideMimeType&&l.overrideMimeType(n.mimeType),n.crossDomain||i["X-Requested-With"]||(i["X-Requested-With"]="XMLHttpRequest");try{for(s in i)l.setRequestHeader(s,i[s])}catch(u){}l.send(n.hasContent&&n.data||null),r=function(e,i){var s,u,c,p;try{if(r&&(i||4===l.readyState))if(r=t,a&&(l.onreadystatechange=x.noop,$n&&delete Pn[a]),i)4!==l.readyState&&l.abort();else{p={},s=l.status,u=l.getAllResponseHeaders(),"string"==typeof l.responseText&&(p.text=l.responseText);try{c=l.statusText}catch(f){c=""}s||!n.isLocal||n.crossDomain?1223===s&&(s=204):s=p.text?200:404}}catch(d){i||o(-1,d)}p&&o(s,c,p,u)},n.async?4===l.readyState?setTimeout(r):(a=++Wn,$n&&(Pn||(Pn={},x(e).unload($n)),Pn[a]=r),l.onreadystatechange=r):r()},abort:function(){r&&r(t,!0)}}}});var Xn,Un,Vn=/^(?:toggle|show|hide)$/,Yn=RegExp("^(?:([+-])=|)("+w+")([a-z%]*)$","i"),Jn=/queueHooks$/,Gn=[nr],Qn={"*":[function(e,t){var n=this.createTween(e,t),r=n.cur(),i=Yn.exec(t),o=i&&i[3]||(x.cssNumber[e]?"":"px"),a=(x.cssNumber[e]||"px"!==o&&+r)&&Yn.exec(x.css(n.elem,e)),s=1,l=20;if(a&&a[3]!==o){o=o||a[3],i=i||[],a=+r||1;do s=s||".5",a/=s,x.style(n.elem,e,a+o);while(s!==(s=n.cur()/r)&&1!==s&&--l)}return i&&(a=n.start=+a||+r||0,n.unit=o,n.end=i[1]?a+(i[1]+1)*i[2]:+i[2]),n}]};function Kn(){return setTimeout(function(){Xn=t}),Xn=x.now()}function Zn(e,t,n){var r,i=(Qn[t]||[]).concat(Qn["*"]),o=0,a=i.length;for(;a>o;o++)if(r=i[o].call(n,t,e))return r}function er(e,t,n){var r,i,o=0,a=Gn.length,s=x.Deferred().always(function(){delete l.elem}),l=function(){if(i)return!1;var t=Xn||Kn(),n=Math.max(0,u.startTime+u.duration-t),r=n/u.duration||0,o=1-r,a=0,l=u.tweens.length;for(;l>a;a++)u.tweens[a].run(o);return s.notifyWith(e,[u,o,n]),1>o&&l?n:(s.resolveWith(e,[u]),!1)},u=s.promise({elem:e,props:x.extend({},t),opts:x.extend(!0,{specialEasing:{}},n),originalProperties:t,originalOptions:n,startTime:Xn||Kn(),duration:n.duration,tweens:[],createTween:function(t,n){var r=x.Tween(e,u.opts,t,n,u.opts.specialEasing[t]||u.opts.easing);return u.tweens.push(r),r},stop:function(t){var n=0,r=t?u.tweens.length:0;if(i)return this;for(i=!0;r>n;n++)u.tweens[n].run(1);return t?s.resolveWith(e,[u,t]):s.rejectWith(e,[u,t]),this}}),c=u.props;for(tr(c,u.opts.specialEasing);a>o;o++)if(r=Gn[o].call(u,e,c,u.opts))return r;return x.map(c,Zn,u),x.isFunction(u.opts.start)&&u.opts.start.call(e,u),x.fx.timer(x.extend(l,{elem:e,anim:u,queue:u.opts.queue})),u.progress(u.opts.progress).done(u.opts.done,u.opts.complete).fail(u.opts.fail).always(u.opts.always)}function tr(e,t){var n,r,i,o,a;for(n in e)if(r=x.camelCase(n),i=t[r],o=e[n],x.isArray(o)&&(i=o[1],o=e[n]=o[0]),n!==r&&(e[r]=o,delete e[n]),a=x.cssHooks[r],a&&"expand"in a){o=a.expand(o),delete e[r];for(n in o)n in e||(e[n]=o[n],t[n]=i)}else t[r]=i}x.Animation=x.extend(er,{tweener:function(e,t){x.isFunction(e)?(t=e,e=["*"]):e=e.split(" ");var n,r=0,i=e.length;for(;i>r;r++)n=e[r],Qn[n]=Qn[n]||[],Qn[n].unshift(t)},prefilter:function(e,t){t?Gn.unshift(e):Gn.push(e)}});function nr(e,t,n){var r,i,o,a,s,l,u=this,c={},p=e.style,f=e.nodeType&&nn(e),d=x._data(e,"fxshow");n.queue||(s=x._queueHooks(e,"fx"),null==s.unqueued&&(s.unqueued=0,l=s.empty.fire,s.empty.fire=function(){s.unqueued||l()}),s.unqueued++,u.always(function(){u.always(function(){s.unqueued--,x.queue(e,"fx").length||s.empty.fire()})})),1===e.nodeType&&("height"in t||"width"in t)&&(n.overflow=[p.overflow,p.overflowX,p.overflowY],"inline"===x.css(e,"display")&&"none"===x.css(e,"float")&&(x.support.inlineBlockNeedsLayout&&"inline"!==ln(e.nodeName)?p.zoom=1:p.display="inline-block")),n.overflow&&(p.overflow="hidden",x.support.shrinkWrapBlocks||u.always(function(){p.overflow=n.overflow[0],p.overflowX=n.overflow[1],p.overflowY=n.overflow[2]}));for(r in t)if(i=t[r],Vn.exec(i)){if(delete t[r],o=o||"toggle"===i,i===(f?"hide":"show"))continue;c[r]=d&&d[r]||x.style(e,r)}if(!x.isEmptyObject(c)){d?"hidden"in d&&(f=d.hidden):d=x._data(e,"fxshow",{}),o&&(d.hidden=!f),f?x(e).show():u.done(function(){x(e).hide()}),u.done(function(){var t;x._removeData(e,"fxshow");for(t in c)x.style(e,t,c[t])});for(r in c)a=Zn(f?d[r]:0,r,u),r in d||(d[r]=a.start,f&&(a.end=a.start,a.start="width"===r||"height"===r?1:0))}}function rr(e,t,n,r,i){return new rr.prototype.init(e,t,n,r,i)}x.Tween=rr,rr.prototype={constructor:rr,init:function(e,t,n,r,i,o){this.elem=e,this.prop=n,this.easing=i||"swing",this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=o||(x.cssNumber[n]?"":"px")},cur:function(){var e=rr.propHooks[this.prop];return e&&e.get?e.get(this):rr.propHooks._default.get(this)},run:function(e){var t,n=rr.propHooks[this.prop];return this.pos=t=this.options.duration?x.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):rr.propHooks._default.set(this),this}},rr.prototype.init.prototype=rr.prototype,rr.propHooks={_default:{get:function(e){var t;return null==e.elem[e.prop]||e.elem.style&&null!=e.elem.style[e.prop]?(t=x.css(e.elem,e.prop,""),t&&"auto"!==t?t:0):e.elem[e.prop]},set:function(e){x.fx.step[e.prop]?x.fx.step[e.prop](e):e.elem.style&&(null!=e.elem.style[x.cssProps[e.prop]]||x.cssHooks[e.prop])?x.style(e.elem,e.prop,e.now+e.unit):e.elem[e.prop]=e.now}}},rr.propHooks.scrollTop=rr.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},x.each(["toggle","show","hide"],function(e,t){var n=x.fn[t];x.fn[t]=function(e,r,i){return null==e||"boolean"==typeof e?n.apply(this,arguments):this.animate(ir(t,!0),e,r,i)}}),x.fn.extend({fadeTo:function(e,t,n,r){return this.filter(nn).css("opacity",0).show().end().animate({opacity:t},e,n,r)},animate:function(e,t,n,r){var i=x.isEmptyObject(e),o=x.speed(t,n,r),a=function(){var t=er(this,x.extend({},e),o);(i||x._data(this,"finish"))&&t.stop(!0)};return a.finish=a,i||o.queue===!1?this.each(a):this.queue(o.queue,a)},stop:function(e,n,r){var i=function(e){var t=e.stop;delete e.stop,t(r)};return"string"!=typeof e&&(r=n,n=e,e=t),n&&e!==!1&&this.queue(e||"fx",[]),this.each(function(){var t=!0,n=null!=e&&e+"queueHooks",o=x.timers,a=x._data(this);if(n)a[n]&&a[n].stop&&i(a[n]);else for(n in a)a[n]&&a[n].stop&&Jn.test(n)&&i(a[n]);for(n=o.length;n--;)o[n].elem!==this||null!=e&&o[n].queue!==e||(o[n].anim.stop(r),t=!1,o.splice(n,1));(t||!r)&&x.dequeue(this,e)})},finish:function(e){return e!==!1&&(e=e||"fx"),this.each(function(){var t,n=x._data(this),r=n[e+"queue"],i=n[e+"queueHooks"],o=x.timers,a=r?r.length:0;for(n.finish=!0,x.queue(this,e,[]),i&&i.stop&&i.stop.call(this,!0),t=o.length;t--;)o[t].elem===this&&o[t].queue===e&&(o[t].anim.stop(!0),o.splice(t,1));for(t=0;a>t;t++)r[t]&&r[t].finish&&r[t].finish.call(this);delete n.finish})}});function ir(e,t){var n,r={height:e},i=0;for(t=t?1:0;4>i;i+=2-t)n=Zt[i],r["margin"+n]=r["padding"+n]=e;return t&&(r.opacity=r.width=e),r}x.each({slideDown:ir("show"),slideUp:ir("hide"),slideToggle:ir("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(e,t){x.fn[e]=function(e,n,r){return this.animate(t,e,n,r)}}),x.speed=function(e,t,n){var r=e&&"object"==typeof e?x.extend({},e):{complete:n||!n&&t||x.isFunction(e)&&e,duration:e,easing:n&&t||t&&!x.isFunction(t)&&t};return r.duration=x.fx.off?0:"number"==typeof r.duration?r.duration:r.duration in x.fx.speeds?x.fx.speeds[r.duration]:x.fx.speeds._default,(null==r.queue||r.queue===!0)&&(r.queue="fx"),r.old=r.complete,r.complete=function(){x.isFunction(r.old)&&r.old.call(this),r.queue&&x.dequeue(this,r.queue)},r},x.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2}},x.timers=[],x.fx=rr.prototype.init,x.fx.tick=function(){var e,n=x.timers,r=0;for(Xn=x.now();n.length>r;r++)e=n[r],e()||n[r]!==e||n.splice(r--,1);n.length||x.fx.stop(),Xn=t},x.fx.timer=function(e){e()&&x.timers.push(e)&&x.fx.start()},x.fx.interval=13,x.fx.start=function(){Un||(Un=setInterval(x.fx.tick,x.fx.interval))},x.fx.stop=function(){clearInterval(Un),Un=null},x.fx.speeds={slow:600,fast:200,_default:400},x.fx.step={},x.expr&&x.expr.filters&&(x.expr.filters.animated=function(e){return x.grep(x.timers,function(t){return e===t.elem}).length}),x.fn.offset=function(e){if(arguments.length)return e===t?this:this.each(function(t){x.offset.setOffset(this,e,t)});var n,r,o={top:0,left:0},a=this[0],s=a&&a.ownerDocument;if(s)return n=s.documentElement,x.contains(n,a)?(typeof a.getBoundingClientRect!==i&&(o=a.getBoundingClientRect()),r=or(s),{top:o.top+(r.pageYOffset||n.scrollTop)-(n.clientTop||0),left:o.left+(r.pageXOffset||n.scrollLeft)-(n.clientLeft||0)}):o},x.offset={setOffset:function(e,t,n){var r=x.css(e,"position");"static"===r&&(e.style.position="relative");var i=x(e),o=i.offset(),a=x.css(e,"top"),s=x.css(e,"left"),l=("absolute"===r||"fixed"===r)&&x.inArray("auto",[a,s])>-1,u={},c={},p,f;l?(c=i.position(),p=c.top,f=c.left):(p=parseFloat(a)||0,f=parseFloat(s)||0),x.isFunction(t)&&(t=t.call(e,n,o)),null!=t.top&&(u.top=t.top-o.top+p),null!=t.left&&(u.left=t.left-o.left+f),"using"in t?t.using.call(e,u):i.css(u)}},x.fn.extend({position:function(){if(this[0]){var e,t,n={top:0,left:0},r=this[0];return"fixed"===x.css(r,"position")?t=r.getBoundingClientRect():(e=this.offsetParent(),t=this.offset(),x.nodeName(e[0],"html")||(n=e.offset()),n.top+=x.css(e[0],"borderTopWidth",!0),n.left+=x.css(e[0],"borderLeftWidth",!0)),{top:t.top-n.top-x.css(r,"marginTop",!0),left:t.left-n.left-x.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent||s;while(e&&!x.nodeName(e,"html")&&"static"===x.css(e,"position"))e=e.offsetParent;return e||s})}}),x.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(e,n){var r=/Y/.test(n);x.fn[e]=function(i){return x.access(this,function(e,i,o){var a=or(e);return o===t?a?n in a?a[n]:a.document.documentElement[i]:e[i]:(a?a.scrollTo(r?x(a).scrollLeft():o,r?o:x(a).scrollTop()):e[i]=o,t)},e,i,arguments.length,null)}});function or(e){return x.isWindow(e)?e:9===e.nodeType?e.defaultView||e.parentWindow:!1}x.each({Height:"height",Width:"width"},function(e,n){x.each({padding:"inner"+e,content:n,"":"outer"+e},function(r,i){x.fn[i]=function(i,o){var a=arguments.length&&(r||"boolean"!=typeof i),s=r||(i===!0||o===!0?"margin":"border");return x.access(this,function(n,r,i){var o;return x.isWindow(n)?n.document.documentElement["client"+e]:9===n.nodeType?(o=n.documentElement,Math.max(n.body["scroll"+e],o["scroll"+e],n.body["offset"+e],o["offset"+e],o["client"+e])):i===t?x.css(n,r,s):x.style(n,r,i,s)},n,a?i:t,a,null)}})}),x.fn.size=function(){return this.length},x.fn.andSelf=x.fn.addBack,"object"==typeof module&&module&&"object"==typeof module.exports?module.exports=x:(e.jQuery=e.$=x,"function"==typeof define&&define.amd&&define("jquery",[],function(){return x}))})(window); \ No newline at end of file diff --git a/ClientApp/app/jquery.plugins/jquery.nicescroll.min.js b/ClientApp/app/jquery.plugins/jquery.nicescroll.min.js new file mode 100644 index 00000000..6cdaffa5 --- /dev/null +++ b/ClientApp/app/jquery.plugins/jquery.nicescroll.min.js @@ -0,0 +1,114 @@ +/* jquery.nicescroll 3.5.4 InuYaksa*2013 MIT http://areaaperta.com/nicescroll */(function(e){"function"===typeof define&&define.amd?define(["jquery"],e):e(jQuery)})(function(e){var y=!1,C=!1,J=5E3,K=2E3,x=0,F=["ms","moz","webkit","o"],s=window.requestAnimationFrame||!1,v=window.cancelAnimationFrame||!1;if(!s)for(var L in F){var D=F[L];s||(s=window[D+"RequestAnimationFrame"]);v||(v=window[D+"CancelAnimationFrame"]||window[D+"CancelRequestAnimationFrame"])}var z=window.MutationObserver||window.WebKitMutationObserver||!1,G={zindex:"auto",cursoropacitymin:0,cursoropacitymax:1,cursorcolor:"#424242", +cursorwidth:"5px",cursorborder:"1px solid #fff",cursorborderradius:"5px",scrollspeed:60,mousescrollstep:24,touchbehavior:!1,hwacceleration:!0,usetransition:!0,boxzoom:!1,dblclickzoom:!0,gesturezoom:!0,grabcursorenabled:!0,autohidemode:!0,background:"",iframeautoresize:!0,cursorminheight:32,preservenativescrolling:!0,railoffset:!1,bouncescroll:!0,spacebarenabled:!0,railpadding:{top:0,right:0,left:0,bottom:0},disableoutline:!0,horizrailenabled:!0,railalign:"right",railvalign:"bottom",enabletranslate3d:!0, +enablemousewheel:!0,enablekeyboard:!0,smoothscroll:!0,sensitiverail:!0,enablemouselockapi:!0,cursorfixedheight:!1,directionlockdeadzone:6,hidecursordelay:400,nativeparentscrolling:!0,enablescrollonselection:!0,overflowx:!0,overflowy:!0,cursordragspeed:0.3,rtlmode:"auto",cursordragontouch:!1,oneaxismousemode:"auto",scriptpath:function(){var e=document.getElementsByTagName("script"),e=e[e.length-1].src.split("?")[0];return 0");if(a!=t&&f!=t)TweenLite.set(s.find(".slot").last(),{rotationZ:f});if(o(8)){s.find(".slot ").last().find(".slotslide").append('+d){if(a.getScrollTop()>=a.page.maxh)return!0}else if(0>=a.getScrollTop())return!0;a.scrollmom&&a.scrollmom.stop();a.lastdeltay+=d;a.debounced("mousewheely",function(){var c=a.lastdeltay;a.lastdeltay=0;a.rail.drag||a.doScrollBy(c)},15)}c.stopImmediatePropagation();return c.preventDefault()}var a=this;this.version="3.5.4";this.name="nicescroll";this.me=b;this.opt={doc:e("body"),win:!1};e.extend(this.opt,G);this.opt.snapbackspeed=80;if(g)for(var p in a.opt)"undefined"!=typeof g[p]&&(a.opt[p]=g[p]);this.iddoc= +(this.doc=a.opt.doc)&&this.doc[0]?this.doc[0].id||"":"";this.ispage=/^BODY|HTML/.test(a.opt.win?a.opt.win[0].nodeName:this.doc[0].nodeName);this.haswrapper=!1!==a.opt.win;this.win=a.opt.win||(this.ispage?e(window):this.doc);this.docscroll=this.ispage&&!this.haswrapper?e(window):this.win;this.body=e("body");this.iframe=this.isfixed=this.viewport=!1;this.isiframe="IFRAME"==this.doc[0].nodeName&&"IFRAME"==this.win[0].nodeName;this.istextarea="TEXTAREA"==this.win[0].nodeName;this.forcescreen=!1;this.canshowonmouseevent= +"scroll"!=a.opt.autohidemode;this.page=this.view=this.onzoomout=this.onzoomin=this.onscrollcancel=this.onscrollend=this.onscrollstart=this.onclick=this.ongesturezoom=this.onkeypress=this.onmousewheel=this.onmousemove=this.onmouseup=this.onmousedown=!1;this.scroll={x:0,y:0};this.scrollratio={x:0,y:0};this.cursorheight=20;this.scrollvaluemax=0;this.observerremover=this.observer=this.scrollmom=this.scrollrunning=this.isrtlmode=!1;do this.id="ascrail"+K++;while(document.getElementById(this.id));this.hasmousefocus= +this.hasfocus=this.zoomactive=this.zoom=this.selectiondrag=this.cursorfreezed=this.cursor=this.rail=!1;this.visibility=!0;this.hidden=this.locked=!1;this.cursoractive=!0;this.wheelprevented=!1;this.overflowx=a.opt.overflowx;this.overflowy=a.opt.overflowy;this.nativescrollingarea=!1;this.checkarea=0;this.events=[];this.saved={};this.delaylist={};this.synclist={};this.lastdeltay=this.lastdeltax=0;this.detected=M();var d=e.extend({},this.detected);this.ishwscroll=(this.canhwscroll=d.hastransform&&a.opt.hwacceleration)&& +a.haswrapper;this.istouchcapable=!1;d.cantouch&&(d.ischrome&&!d.isios&&!d.isandroid)&&(this.istouchcapable=!0,d.cantouch=!1);d.cantouch&&(d.ismozilla&&!d.isios&&!d.isandroid)&&(this.istouchcapable=!0,d.cantouch=!1);a.opt.enablemouselockapi||(d.hasmousecapture=!1,d.haspointerlock=!1);this.delayed=function(c,b,f,e){var d=a.delaylist[c],h=(new Date).getTime();if(!e&&d&&d.tt)return!1;d&&d.tt&&clearTimeout(d.tt);if(d&&d.last+f>h&&!d.tt)a.delaylist[c]={last:h+f,tt:setTimeout(function(){a&&(a.delaylist[c].tt= +0,b.call())},f)};else if(!d||!d.tt)a.delaylist[c]={last:h,tt:0},setTimeout(function(){b.call()},0)};this.debounced=function(c,b,f){var d=a.delaylist[c];(new Date).getTime();a.delaylist[c]=b;d||setTimeout(function(){var b=a.delaylist[c];a.delaylist[c]=!1;b.call()},f)};var r=!1;this.synched=function(c,b){a.synclist[c]=b;(function(){r||(s(function(){r=!1;for(c in a.synclist){var b=a.synclist[c];b&&b.call(a);a.synclist[c]=!1}}),r=!0)})();return c};this.unsynched=function(c){a.synclist[c]&&(a.synclist[c]= +!1)};this.css=function(c,b){for(var f in b)a.saved.css.push([c,f,c.css(f)]),c.css(f,b[f])};this.scrollTop=function(c){return"undefined"==typeof c?a.getScrollTop():a.setScrollTop(c)};this.scrollLeft=function(c){return"undefined"==typeof c?a.getScrollLeft():a.setScrollLeft(c)};BezierClass=function(a,b,f,d,e,h,k){this.st=a;this.ed=b;this.spd=f;this.p1=d||0;this.p2=e||1;this.p3=h||0;this.p4=k||1;this.ts=(new Date).getTime();this.df=this.ed-this.st};BezierClass.prototype={B2:function(a){return 3*a*a*(1- +a)},B3:function(a){return 3*a*(1-a)*(1-a)},B4:function(a){return(1-a)*(1-a)*(1-a)},getNow:function(){var a=1-((new Date).getTime()-this.ts)/this.spd,b=this.B2(a)+this.B3(a)+this.B4(a);return 0>a?this.ed:this.st+Math.round(this.df*b)},update:function(a,b){this.st=this.getNow();this.ed=a;this.spd=b;this.ts=(new Date).getTime();this.df=this.ed-this.st;return this}};if(this.ishwscroll){this.doc.translate={x:0,y:0,tx:"0px",ty:"0px"};d.hastranslate3d&&d.isios&&this.doc.css("-webkit-backface-visibility", +"hidden");var t=function(){var c=a.doc.css(d.trstyle);return c&&"matrix"==c.substr(0,6)?c.replace(/^.*\((.*)\)$/g,"$1").replace(/px/g,"").split(/, +/):!1};this.getScrollTop=function(c){if(!c){if(c=t())return 16==c.length?-c[13]:-c[5];if(a.timerscroll&&a.timerscroll.bz)return a.timerscroll.bz.getNow()}return a.doc.translate.y};this.getScrollLeft=function(c){if(!c){if(c=t())return 16==c.length?-c[12]:-c[4];if(a.timerscroll&&a.timerscroll.bh)return a.timerscroll.bh.getNow()}return a.doc.translate.x}; +this.notifyScrollEvent=document.createEvent?function(a){var b=document.createEvent("UIEvents");b.initUIEvent("scroll",!1,!0,window,1);a.dispatchEvent(b)}:document.fireEvent?function(a){var b=document.createEventObject();a.fireEvent("onscroll");b.cancelBubble=!0}:function(a,b){};d.hastranslate3d&&a.opt.enabletranslate3d?(this.setScrollTop=function(c,b){a.doc.translate.y=c;a.doc.translate.ty=-1*c+"px";a.doc.css(d.trstyle,"translate3d("+a.doc.translate.tx+","+a.doc.translate.ty+",0px)");b||a.notifyScrollEvent(a.win[0])}, +this.setScrollLeft=function(c,b){a.doc.translate.x=c;a.doc.translate.tx=-1*c+"px";a.doc.css(d.trstyle,"translate3d("+a.doc.translate.tx+","+a.doc.translate.ty+",0px)");b||a.notifyScrollEvent(a.win[0])}):(this.setScrollTop=function(c,b){a.doc.translate.y=c;a.doc.translate.ty=-1*c+"px";a.doc.css(d.trstyle,"translate("+a.doc.translate.tx+","+a.doc.translate.ty+")");b||a.notifyScrollEvent(a.win[0])},this.setScrollLeft=function(c,b){a.doc.translate.x=c;a.doc.translate.tx=-1*c+"px";a.doc.css(d.trstyle, +"translate("+a.doc.translate.tx+","+a.doc.translate.ty+")");b||a.notifyScrollEvent(a.win[0])})}else this.getScrollTop=function(){return a.docscroll.scrollTop()},this.setScrollTop=function(c){return a.docscroll.scrollTop(c)},this.getScrollLeft=function(){return a.docscroll.scrollLeft()},this.setScrollLeft=function(c){return a.docscroll.scrollLeft(c)};this.getTarget=function(a){return!a?!1:a.target?a.target:a.srcElement?a.srcElement:!1};this.hasParent=function(a,b){if(!a)return!1;for(var f=a.target|| +a.srcElement||a||!1;f&&f.id!=b;)f=f.parentNode||!1;return!1!==f};var w={thin:1,medium:3,thick:5};this.getOffset=function(){if(a.isfixed)return{top:parseFloat(a.win.css("top")),left:parseFloat(a.win.css("left"))};if(!a.viewport)return a.win.offset();var c=a.win.offset(),b=a.viewport.offset();return{top:c.top-b.top+a.viewport.scrollTop(),left:c.left-b.left+a.viewport.scrollLeft()}};this.updateScrollBar=function(c){if(a.ishwscroll)a.rail.css({height:a.win.innerHeight()}),a.railh&&a.railh.css({width:a.win.innerWidth()}); +else{var b=a.getOffset(),f=b.top,d=b.left,f=f+k(a.win,"border-top-width",!0);a.win.outerWidth();a.win.innerWidth();var d=d+(a.rail.align?a.win.outerWidth()-k(a.win,"border-right-width")-a.rail.width:k(a.win,"border-left-width")),e=a.opt.railoffset;e&&(e.top&&(f+=e.top),a.rail.align&&e.left&&(d+=e.left));a.locked||a.rail.css({top:f,left:d,height:c?c.h:a.win.innerHeight()});a.zoom&&a.zoom.css({top:f+1,left:1==a.rail.align?d-20:d+a.rail.width+4});a.railh&&!a.locked&&(f=b.top,d=b.left,c=a.railh.align? +f+k(a.win,"border-top-width",!0)+a.win.innerHeight()-a.railh.height:f+k(a.win,"border-top-width",!0),d+=k(a.win,"border-left-width"),a.railh.css({top:c,left:d,width:a.railh.width}))}};this.doRailClick=function(c,b,f){var d;a.locked||(a.cancelEvent(c),b?(b=f?a.doScrollLeft:a.doScrollTop,d=f?(c.pageX-a.railh.offset().left-a.cursorwidth/2)*a.scrollratio.x:(c.pageY-a.rail.offset().top-a.cursorheight/2)*a.scrollratio.y,b(d)):(b=f?a.doScrollLeftBy:a.doScrollBy,d=f?a.scroll.x:a.scroll.y,c=f?c.pageX-a.railh.offset().left: +c.pageY-a.rail.offset().top,f=f?a.view.w:a.view.h,d>=c?b(f):b(-f)))};a.hasanimationframe=s;a.hascancelanimationframe=v;a.hasanimationframe?a.hascancelanimationframe||(v=function(){a.cancelAnimationFrame=!0}):(s=function(a){return setTimeout(a,15-Math.floor(+new Date/1E3)%16)},v=clearInterval);this.init=function(){a.saved.css=[];if(d.isie7mobile||d.isoperamini)return!0;d.hasmstouch&&a.css(a.ispage?e("html"):a.win,{"-ms-touch-action":"none"});a.zindex="auto";a.zindex=!a.ispage&&"auto"==a.opt.zindex? +h()||"auto":a.opt.zindex;!a.ispage&&"auto"!=a.zindex&&a.zindex>x&&(x=a.zindex);a.isie&&(0==a.zindex&&"auto"==a.opt.zindex)&&(a.zindex="auto");if(!a.ispage||!d.cantouch&&!d.isieold&&!d.isie9mobile){var c=a.docscroll;a.ispage&&(c=a.haswrapper?a.win:a.doc);d.isie9mobile||a.css(c,{"overflow-y":"hidden"});a.ispage&&d.isie7&&("BODY"==a.doc[0].nodeName?a.css(e("html"),{"overflow-y":"hidden"}):"HTML"==a.doc[0].nodeName&&a.css(e("body"),{"overflow-y":"hidden"}));d.isios&&(!a.ispage&&!a.haswrapper)&&a.css(e("body"), +{"-webkit-overflow-scrolling":"touch"});var b=e(document.createElement("div"));b.css({position:"relative",top:0,"float":"right",width:a.opt.cursorwidth,height:"0px","background-color":a.opt.cursorcolor,border:a.opt.cursorborder,"background-clip":"padding-box","-webkit-border-radius":a.opt.cursorborderradius,"-moz-border-radius":a.opt.cursorborderradius,"border-radius":a.opt.cursorborderradius});b.hborder=parseFloat(b.outerHeight()-b.innerHeight());a.cursor=b;var f=e(document.createElement("div")); +f.attr("id",a.id);f.addClass("nicescroll-rails");var u,k,g=["left","right"],l;for(l in g)k=g[l],(u=a.opt.railpadding[k])?f.css("padding-"+k,u+"px"):a.opt.railpadding[k]=0;f.append(b);f.width=Math.max(parseFloat(a.opt.cursorwidth),b.outerWidth())+a.opt.railpadding.left+a.opt.railpadding.right;f.css({width:f.width+"px",zIndex:a.zindex,background:a.opt.background,cursor:"default"});f.visibility=!0;f.scrollable=!0;f.align="left"==a.opt.railalign?0:1;a.rail=f;b=a.rail.drag=!1;a.opt.boxzoom&&(!a.ispage&& +!d.isieold)&&(b=document.createElement("div"),a.bind(b,"click",a.doZoom),a.zoom=e(b),a.zoom.css({cursor:"pointer","z-index":a.zindex,backgroundImage:"url("+a.opt.scriptpath+"zoomico.png)",height:18,width:18,backgroundPosition:"0px 0px"}),a.opt.dblclickzoom&&a.bind(a.win,"dblclick",a.doZoom),d.cantouch&&a.opt.gesturezoom&&(a.ongesturezoom=function(c){1.5 c.scale&&a.doZoomOut(c);return a.cancelEvent(c)},a.bind(a.win,"gestureend",a.ongesturezoom)));a.railh=!1;if(a.opt.horizrailenabled){a.css(c, +{"overflow-x":"hidden"});b=e(document.createElement("div"));b.css({position:"relative",top:0,height:a.opt.cursorwidth,width:"0px","background-color":a.opt.cursorcolor,border:a.opt.cursorborder,"background-clip":"padding-box","-webkit-border-radius":a.opt.cursorborderradius,"-moz-border-radius":a.opt.cursorborderradius,"border-radius":a.opt.cursorborderradius});b.wborder=parseFloat(b.outerWidth()-b.innerWidth());a.cursorh=b;var m=e(document.createElement("div"));m.attr("id",a.id+"-hr");m.addClass("nicescroll-rails"); +m.height=Math.max(parseFloat(a.opt.cursorwidth),b.outerHeight());m.css({height:m.height+"px",zIndex:a.zindex,background:a.opt.background});m.append(b);m.visibility=!0;m.scrollable=!0;m.align="top"==a.opt.railvalign?0:1;a.railh=m;a.railh.drag=!1}a.ispage?(f.css({position:"fixed",top:"0px",height:"100%"}),f.align?f.css({right:"0px"}):f.css({left:"0px"}),a.body.append(f),a.railh&&(m.css({position:"fixed",left:"0px",width:"100%"}),m.align?m.css({bottom:"0px"}):m.css({top:"0px"}),a.body.append(m))):(a.ishwscroll? +("static"==a.win.css("position")&&a.css(a.win,{position:"relative"}),c="HTML"==a.win[0].nodeName?a.body:a.win,a.zoom&&(a.zoom.css({position:"absolute",top:1,right:0,"margin-right":f.width+4}),c.append(a.zoom)),f.css({position:"absolute",top:0}),f.align?f.css({right:0}):f.css({left:0}),c.append(f),m&&(m.css({position:"absolute",left:0,bottom:0}),m.align?m.css({bottom:0}):m.css({top:0}),c.append(m))):(a.isfixed="fixed"==a.win.css("position"),c=a.isfixed?"fixed":"absolute",a.isfixed||(a.viewport=a.getViewport(a.win[0])), +a.viewport&&(a.body=a.viewport,!1==/fixed|relative|absolute/.test(a.viewport.css("position"))&&a.css(a.viewport,{position:"relative"})),f.css({position:c}),a.zoom&&a.zoom.css({position:c}),a.updateScrollBar(),a.body.append(f),a.zoom&&a.body.append(a.zoom),a.railh&&(m.css({position:c}),a.body.append(m))),d.isios&&a.css(a.win,{"-webkit-tap-highlight-color":"rgba(0,0,0,0)","-webkit-touch-callout":"none"}),d.isie&&a.opt.disableoutline&&a.win.attr("hideFocus","true"),d.iswebkit&&a.opt.disableoutline&& +a.win.css({outline:"none"}));!1===a.opt.autohidemode?(a.autohidedom=!1,a.rail.css({opacity:a.opt.cursoropacitymax}),a.railh&&a.railh.css({opacity:a.opt.cursoropacitymax})):!0===a.opt.autohidemode||"leave"===a.opt.autohidemode?(a.autohidedom=e().add(a.rail),d.isie8&&(a.autohidedom=a.autohidedom.add(a.cursor)),a.railh&&(a.autohidedom=a.autohidedom.add(a.railh)),a.railh&&d.isie8&&(a.autohidedom=a.autohidedom.add(a.cursorh))):"scroll"==a.opt.autohidemode?(a.autohidedom=e().add(a.rail),a.railh&&(a.autohidedom= +a.autohidedom.add(a.railh))):"cursor"==a.opt.autohidemode?(a.autohidedom=e().add(a.cursor),a.railh&&(a.autohidedom=a.autohidedom.add(a.cursorh))):"hidden"==a.opt.autohidemode&&(a.autohidedom=!1,a.hide(),a.locked=!1);if(d.isie9mobile)a.scrollmom=new H(a),a.onmangotouch=function(c){c=a.getScrollTop();var b=a.getScrollLeft();if(c==a.scrollmom.lastscrolly&&b==a.scrollmom.lastscrollx)return!0;var f=c-a.mangotouch.sy,d=b-a.mangotouch.sx;if(0!=Math.round(Math.sqrt(Math.pow(d,2)+Math.pow(f,2)))){var n=0> +f?-1:1,e=0>d?-1:1,h=+new Date;a.mangotouch.lazy&&clearTimeout(a.mangotouch.lazy);80 g?g=Math.round(g/2):g>a.page.maxh&&(g=a.page.maxh+Math.round((g-a.page.maxh)/2)):(0>g&&(h=g=0),g>a.page.maxh&&(g=a.page.maxh,h=0));if(a.railh&&a.railh.scrollable){var l=a.rail.drag.sl-u;a.ishwscroll&&a.opt.bouncescroll?0>l?l=Math.round(l/2):l>a.page.maxw&&(l=a.page.maxw+Math.round((l-a.page.maxw)/ +2)):(0>l&&(k=l=0),l>a.page.maxw&&(l=a.page.maxw,k=0))}f=!1;if(a.rail.drag.dl)f=!0,"v"==a.rail.drag.dl?l=a.rail.drag.sl:"h"==a.rail.drag.dl&&(g=a.rail.drag.st);else{var n=Math.abs(n),u=Math.abs(u),m=a.opt.directionlockdeadzone;if("v"==a.rail.drag.ck){if(n>m&&u<=0.3*n)return a.rail.drag=!1,!0;u>m&&(a.rail.drag.dl="f",e("body").scrollTop(e("body").scrollTop()))}else if("h"==a.rail.drag.ck){if(u>m&&n<=0.3*u)return a.rail.drag=!1,!0;n>m&&(a.rail.drag.dl="f",e("body").scrollLeft(e("body").scrollLeft()))}}a.synched("touchmove", +function(){a.rail.drag&&2==a.rail.drag.pt&&(a.prepareTransition&&a.prepareTransition(0),a.rail.scrollable&&a.setScrollTop(g),a.scrollmom.update(k,h),a.railh&&a.railh.scrollable?(a.setScrollLeft(l),a.showCursor(g,l)):a.showCursor(g),d.isie10&&document.selection.clear())});d.ischrome&&a.istouchcapable&&(f=!1);if(f)return a.cancelEvent(c)}}}a.onmousedown=function(c,b){if(!(a.rail.drag&&1!=a.rail.drag.pt)){if(a.locked)return a.cancelEvent(c);a.cancelScroll();a.rail.drag={x:c.clientX,y:c.clientY,sx:a.scroll.x, +sy:a.scroll.y,pt:1,hr:!!b};var f=a.getTarget(c);!a.ispage&&d.hasmousecapture&&f.setCapture();a.isiframe&&!d.hasmousecapture&&(a.saved.csspointerevents=a.doc.css("pointer-events"),a.css(a.doc,{"pointer-events":"none"}));a.hasmoving=!1;return a.cancelEvent(c)}};a.onmouseup=function(c){if(a.rail.drag&&(d.hasmousecapture&&document.releaseCapture(),a.isiframe&&!d.hasmousecapture&&a.doc.css("pointer-events",a.saved.csspointerevents),1==a.rail.drag.pt))return a.rail.drag=!1,a.hasmoving&&a.triggerScrollEnd(), +a.cancelEvent(c)};a.onmousemove=function(c){if(a.rail.drag&&1==a.rail.drag.pt){if(d.ischrome&&0==c.which)return a.onmouseup(c);a.cursorfreezed=!0;a.hasmoving=!0;if(a.rail.drag.hr){a.scroll.x=a.rail.drag.sx+(c.clientX-a.rail.drag.x);0>a.scroll.x&&(a.scroll.x=0);var b=a.scrollvaluemaxw;a.scroll.x>b&&(a.scroll.x=b)}else a.scroll.y=a.rail.drag.sy+(c.clientY-a.rail.drag.y),0>a.scroll.y&&(a.scroll.y=0),b=a.scrollvaluemax,a.scroll.y>b&&(a.scroll.y=b);a.synched("mousemove",function(){a.rail.drag&&1==a.rail.drag.pt&& +(a.showCursor(),a.rail.drag.hr?a.doScrollLeft(Math.round(a.scroll.x*a.scrollratio.x),a.opt.cursordragspeed):a.doScrollTop(Math.round(a.scroll.y*a.scrollratio.y),a.opt.cursordragspeed))});return a.cancelEvent(c)}};if(d.cantouch||a.opt.touchbehavior)a.onpreventclick=function(c){if(a.preventclick)return a.preventclick.tg.onclick=a.preventclick.click,a.preventclick=!1,a.cancelEvent(c)},a.bind(a.win,"mousedown",a.ontouchstart),a.onclick=d.isios?!1:function(c){return a.lastmouseup?(a.lastmouseup=!1,a.cancelEvent(c)): +!0},a.opt.grabcursorenabled&&d.cursorgrabvalue&&(a.css(a.ispage?a.doc:a.win,{cursor:d.cursorgrabvalue}),a.css(a.rail,{cursor:d.cursorgrabvalue}));else{var p=function(c){if(a.selectiondrag){if(c){var b=a.win.outerHeight();c=c.pageY-a.selectiondrag.top;0 =b&&(c-=b);a.selectiondrag.df=c}0!=a.selectiondrag.df&&(a.doScrollBy(2*-Math.floor(a.selectiondrag.df/6)),a.debounced("doselectionscroll",function(){p()},50))}};a.hasTextSelected="getSelection"in document?function(){return 0 a.page.maxh?a.doScrollTop(a.page.maxh):(a.scroll.y=Math.round(a.getScrollTop()*(1/a.scrollratio.y)),a.scroll.x=Math.round(a.getScrollLeft()*(1/a.scrollratio.x)),a.cursoractive&&a.noticeCursor());a.scroll.y&&0==a.getScrollTop()&&a.doScrollTo(Math.floor(a.scroll.y*a.scrollratio.y));return a};this.resize=a.onResize;this.lazyResize=function(c){c=isNaN(c)?30:c;a.delayed("resize",a.resize, +c);return a};this._bind=function(c,b,f,d){a.events.push({e:c,n:b,f:f,b:d,q:!1});c.addEventListener?c.addEventListener(b,f,d||!1):c.attachEvent?c.attachEvent("on"+b,f):c["on"+b]=f};this.jqbind=function(c,b,f){a.events.push({e:c,n:b,f:f,q:!0});e(c).bind(b,f)};this.bind=function(c,b,f,e){var h="jquery"in c?c[0]:c;"mousewheel"==b?"onwheel"in a.win?a._bind(h,"wheel",f,e||!1):(c="undefined"!=typeof document.onmousewheel?"mousewheel":"DOMMouseScroll",l(h,c,f,e||!1),"DOMMouseScroll"==c&&l(h,"MozMousePixelScroll", +f,e||!1)):h.addEventListener?(d.cantouch&&/mouseup|mousedown|mousemove/.test(b)&&a._bind(h,"mousedown"==b?"touchstart":"mouseup"==b?"touchend":"touchmove",function(a){if(a.touches){if(2>a.touches.length){var c=a.touches.length?a.touches[0]:a;c.original=a;f.call(this,c)}}else a.changedTouches&&(c=a.changedTouches[0],c.original=a,f.call(this,c))},e||!1),a._bind(h,b,f,e||!1),d.cantouch&&"mouseup"==b&&a._bind(h,"touchcancel",f,e||!1)):a._bind(h,b,function(c){if((c=c||window.event||!1)&&c.srcElement)c.target= +c.srcElement;"pageY"in c||(c.pageX=c.clientX+document.documentElement.scrollLeft,c.pageY=c.clientY+document.documentElement.scrollTop);return!1===f.call(h,c)||!1===e?a.cancelEvent(c):!0})};this._unbind=function(a,b,f,d){a.removeEventListener?a.removeEventListener(b,f,d):a.detachEvent?a.detachEvent("on"+b,f):a["on"+b]=!1};this.unbindAll=function(){for(var c=0;c (a.newscrolly-h)*(e-h)||0>(a.newscrollx-g)*(b-g))&&a.cancelScroll();!1==a.opt.bouncescroll&&(0>e?e=0:e>a.page.maxh&&(e=a.page.maxh),0>b?b=0:b>a.page.maxw&&(b=a.page.maxw)); +if(a.scrollrunning&&b==a.newscrollx&&e==a.newscrolly)return!1;a.newscrolly=e;a.newscrollx=b;a.newscrollspeed=f||!1;if(a.timer)return!1;a.timer=setTimeout(function(){var f=a.getScrollTop(),h=a.getScrollLeft(),g,k;g=b-h;k=e-f;g=Math.round(Math.sqrt(Math.pow(g,2)+Math.pow(k,2)));g=a.newscrollspeed&&1 =a.newscrollspeed&&(g*=a.newscrollspeed);a.prepareTransition(g,!0);a.timerscroll&&a.timerscroll.tm&&clearInterval(a.timerscroll.tm); +0 b?b=0:b>a.page.maxh&&(b=a.page.maxh);0>e?e=0:e>a.page.maxw&&(e=a.page.maxw);if(b!=a.newscrolly||e!=a.newscrollx)return a.doScrollPos(e,b,a.opt.snapbackspeed);a.onscrollend&&a.scrollrunning&&a.triggerScrollEnd();a.scrollrunning=!1}):(this.doScrollLeft=function(b,d){var f=a.scrollrunning?a.newscrolly:a.getScrollTop();a.doScrollPos(b,f,d)},this.doScrollTop=function(b,d){var f= +a.scrollrunning?a.newscrollx:a.getScrollLeft();a.doScrollPos(f,b,d)},this.doScrollPos=function(b,d,f){function e(){if(a.cancelAnimationFrame)return!0;a.scrollrunning=!0;if(p=1-p)return a.timer=s(e)||1;var b=0,c=sy=a.getScrollTop();if(a.dst.ay){var c=a.bzscroll?a.dst.py+a.bzscroll.getNow()*a.dst.ay:a.newscrolly,f=c-sy;if(0>f&&c a.newscrolly)c=a.newscrolly;a.setScrollTop(c);c==a.newscrolly&&(b=1)}else b=1;var d=sx=a.getScrollLeft();if(a.dst.ax){d=a.bzscroll?a.dst.px+a.bzscroll.getNow()* +a.dst.ax:a.newscrollx;f=d-sx;if(0>f&&d a.newscrollx)d=a.newscrollx;a.setScrollLeft(d);d==a.newscrollx&&(b+=1)}else b+=1;2==b?(a.timer=0,a.cursorfreezed=!1,a.bzscroll=!1,a.scrollrunning=!1,0>c?c=0:c>a.page.maxh&&(c=a.page.maxh),0>d?d=0:d>a.page.maxw&&(d=a.page.maxw),d!=a.newscrollx||c!=a.newscrolly?a.doScrollPos(d,c):a.onscrollend&&a.triggerScrollEnd()):a.timer=s(e)||1}d="undefined"==typeof d||!1===d?a.getScrollTop(!0):d;if(a.timer&&a.newscrolly==d&&a.newscrollx==b)return!0;a.timer&& +v(a.timer);a.timer=0;var h=a.getScrollTop(),g=a.getScrollLeft();(0>(a.newscrolly-h)*(d-h)||0>(a.newscrollx-g)*(b-g))&&a.cancelScroll();a.newscrolly=d;a.newscrollx=b;if(!a.bouncescroll||!a.rail.visibility)0>a.newscrolly?a.newscrolly=0:a.newscrolly>a.page.maxh&&(a.newscrolly=a.page.maxh);if(!a.bouncescroll||!a.railh.visibility)0>a.newscrollx?a.newscrollx=0:a.newscrollx>a.page.maxw&&(a.newscrollx=a.page.maxw);a.dst={};a.dst.x=b-g;a.dst.y=d-h;a.dst.px=g;a.dst.py=h;var k=Math.round(Math.sqrt(Math.pow(a.dst.x, +2)+Math.pow(a.dst.y,2)));a.dst.ax=a.dst.x/k;a.dst.ay=a.dst.y/k;var l=0,q=k;0==a.dst.x?(l=h,q=d,a.dst.ay=1,a.dst.py=0):0==a.dst.y&&(l=g,q=b,a.dst.ax=1,a.dst.px=0);k=a.getTransitionSpeed(k);f&&1>=f&&(k*=f);a.bzscroll=0 =a.page.maxh||g==a.page.maxw&&b>=a.page.maxw)&&a.checkContentSize();var p=1;a.cancelAnimationFrame=!1;a.timer=1;a.onscrollstart&&!a.scrollrunning&&a.onscrollstart.call(a,{type:"scrollstart", +current:{x:g,y:h},request:{x:b,y:d},end:{x:a.newscrollx,y:a.newscrolly},speed:k});e();(h==a.page.maxh&&d>=h||g==a.page.maxw&&b>=g)&&a.checkContentSize();a.noticeCursor()}},this.cancelScroll=function(){a.timer&&v(a.timer);a.timer=0;a.bzscroll=!1;a.scrollrunning=!1;return a}):(this.doScrollLeft=function(b,d){var f=a.getScrollTop();a.doScrollPos(b,f,d)},this.doScrollTop=function(b,d){var f=a.getScrollLeft();a.doScrollPos(f,b,d)},this.doScrollPos=function(b,d,f){var e=b>a.page.maxw?a.page.maxw:b;0>e&& +(e=0);var h=d>a.page.maxh?a.page.maxh:d;0>h&&(h=0);a.synched("scroll",function(){a.setScrollTop(h);a.setScrollLeft(e)})},this.cancelScroll=function(){});this.doScrollBy=function(b,d){var f=0,f=d?Math.floor((a.scroll.y-b)*a.scrollratio.y):(a.timer?a.newscrolly:a.getScrollTop(!0))-b;if(a.bouncescroll){var e=Math.round(a.view.h/2);f<-e?f=-e:f>a.page.maxh+e&&(f=a.page.maxh+e)}a.cursorfreezed=!1;py=a.getScrollTop(!0);if(0>f&&0>=py)return a.noticeCursor();if(f>a.page.maxh&&py>=a.page.maxh)return a.checkContentSize(), +a.noticeCursor();a.doScrollTop(f)};this.doScrollLeftBy=function(b,d){var f=0,f=d?Math.floor((a.scroll.x-b)*a.scrollratio.x):(a.timer?a.newscrollx:a.getScrollLeft(!0))-b;if(a.bouncescroll){var e=Math.round(a.view.w/2);f<-e?f=-e:f>a.page.maxw+e&&(f=a.page.maxw+e)}a.cursorfreezed=!1;px=a.getScrollLeft(!0);if(0>f&&0>=px||f>a.page.maxw&&px>=a.page.maxw)return a.noticeCursor();a.doScrollLeft(f)};this.doScrollTo=function(b,d){d&&Math.round(b*a.scrollratio.y);a.cursorfreezed=!1;a.doScrollTop(b)};this.checkContentSize= +function(){var b=a.getContentSize();(b.h!=a.page.h||b.w!=a.page.w)&&a.resize(!1,b)};a.onscroll=function(b){a.rail.drag||a.cursorfreezed||a.synched("scroll",function(){a.scroll.y=Math.round(a.getScrollTop()*(1/a.scrollratio.y));a.railh&&(a.scroll.x=Math.round(a.getScrollLeft()*(1/a.scrollratio.x)));a.noticeCursor()})};a.bind(a.docscroll,"scroll",a.onscroll);this.doZoomIn=function(b){if(!a.zoomactive){a.zoomactive=!0;a.zoomrestore={style:{}};var h="position top left zIndex backgroundColor marginTop marginBottom marginLeft marginRight".split(" "), +f=a.win[0].style,g;for(g in h){var k=h[g];a.zoomrestore.style[k]="undefined"!=typeof f[k]?f[k]:""}a.zoomrestore.style.width=a.win.css("width");a.zoomrestore.style.height=a.win.css("height");a.zoomrestore.padding={w:a.win.outerWidth()-a.win.width(),h:a.win.outerHeight()-a.win.height()};d.isios4&&(a.zoomrestore.scrollTop=e(window).scrollTop(),e(window).scrollTop(0));a.win.css({position:d.isios4?"absolute":"fixed",top:0,left:0,"z-index":x+100,margin:"0px"});h=a.win.css("backgroundColor");(""==h||/transparent|rgba\(0, 0, 0, 0\)|rgba\(0,0,0,0\)/.test(h))&& +a.win.css("backgroundColor","#fff");a.rail.css({"z-index":x+101});a.zoom.css({"z-index":x+102});a.zoom.css("backgroundPosition","0px -18px");a.resizeZoom();a.onzoomin&&a.onzoomin.call(a);return a.cancelEvent(b)}};this.doZoomOut=function(b){if(a.zoomactive)return a.zoomactive=!1,a.win.css("margin",""),a.win.css(a.zoomrestore.style),d.isios4&&e(window).scrollTop(a.zoomrestore.scrollTop),a.rail.css({"z-index":a.zindex}),a.zoom.css({"z-index":a.zindex}),a.zoomrestore=!1,a.zoom.css("backgroundPosition", +"0px 0px"),a.onResize(),a.onzoomout&&a.onzoomout.call(a),a.cancelEvent(b)};this.doZoom=function(b){return a.zoomactive?a.doZoomOut(b):a.doZoomIn(b)};this.resizeZoom=function(){if(a.zoomactive){var b=a.getScrollTop();a.win.css({width:e(window).width()-a.zoomrestore.padding.w+"px",height:e(window).height()-a.zoomrestore.padding.h+"px"});a.onResize();a.setScrollTop(Math.min(a.page.maxh,b))}};this.init();e.nicescroll.push(this)},H=function(e){var b=this;this.nc=e;this.steptime=this.lasttime=this.speedy= +this.speedx=this.lasty=this.lastx=0;this.snapy=this.snapx=!1;this.demuly=this.demulx=0;this.lastscrolly=this.lastscrollx=-1;this.timer=this.chky=this.chkx=0;this.time=function(){return+new Date};this.reset=function(e,g){b.stop();var l=b.time();b.steptime=0;b.lasttime=l;b.speedx=0;b.speedy=0;b.lastx=e;b.lasty=g;b.lastscrollx=-1;b.lastscrolly=-1};this.update=function(e,g){var l=b.time();b.steptime=l-b.lasttime;b.lasttime=l;var l=g-b.lasty,q=e-b.lastx,a=b.nc.getScrollTop(),p=b.nc.getScrollLeft(),a=a+ +l,p=p+q;b.snapx=0>p||p>b.nc.page.maxw;b.snapy=0>a||a>b.nc.page.maxh;b.speedx=q;b.speedy=l;b.lastx=e;b.lasty=g};this.stop=function(){b.nc.unsynched("domomentum2d");b.timer&&clearTimeout(b.timer);b.timer=0;b.lastscrollx=-1;b.lastscrolly=-1};this.doSnapy=function(e,g){var l=!1;0>g?(g=0,l=!0):g>b.nc.page.maxh&&(g=b.nc.page.maxh,l=!0);0>e?(e=0,l=!0):e>b.nc.page.maxw&&(e=b.nc.page.maxw,l=!0);l?b.nc.doScrollPos(e,g,b.nc.opt.snapbackspeed):b.nc.triggerScrollEnd()};this.doMomentum=function(e){var g=b.time(), +l=e?g+e:b.lasttime;e=b.nc.getScrollLeft();var q=b.nc.getScrollTop(),a=b.nc.page.maxh,p=b.nc.page.maxw;b.speedx=0 =g-l;if(0>q||q>a||0>e||e>p)l=!1;e=b.speedx&&l?b.speedx:!1;if(b.speedy&&l&&b.speedy||e){var d=Math.max(16,b.steptime);50
r||r>p))c=0.1;if(b.speedy&&(t=Math.floor(b.lastscrolly-b.speedy*(1-b.demulxy)),b.lastscrolly=t,0>t||t>a))c=0.1;b.demulxy=Math.min(1,b.demulxy+c);b.nc.synched("domomentum2d",function(){b.speedx&&(b.nc.getScrollLeft()!=b.chkx&&b.stop(),b.chkx=r,b.nc.setScrollLeft(r));b.speedy&&(b.nc.getScrollTop()!=b.chky&&b.stop(),b.chky=t,b.nc.setScrollTop(t));b.timer||(b.nc.hideCursor(), +b.doSnapy(r,t))});1>b.demulxy?b.timer=setTimeout(s,d):(b.stop(),b.nc.hideCursor(),b.doSnapy(r,t))};s()}else b.doSnapy(b.nc.getScrollLeft(),b.nc.getScrollTop())}},w=e.fn.scrollTop;e.cssHooks.pageYOffset={get:function(g,b,h){return(b=e.data(g,"__nicescroll")||!1)&&b.ishwscroll?b.getScrollTop():w.call(g)},set:function(g,b){var h=e.data(g,"__nicescroll")||!1;h&&h.ishwscroll?h.setScrollTop(parseInt(b)):w.call(g,b);return this}};e.fn.scrollTop=function(g){if("undefined"==typeof g){var b=this[0]?e.data(this[0], +"__nicescroll")||!1:!1;return b&&b.ishwscroll?b.getScrollTop():w.call(this)}return this.each(function(){var b=e.data(this,"__nicescroll")||!1;b&&b.ishwscroll?b.setScrollTop(parseInt(g)):w.call(e(this),g)})};var A=e.fn.scrollLeft;e.cssHooks.pageXOffset={get:function(g,b,h){return(b=e.data(g,"__nicescroll")||!1)&&b.ishwscroll?b.getScrollLeft():A.call(g)},set:function(g,b){var h=e.data(g,"__nicescroll")||!1;h&&h.ishwscroll?h.setScrollLeft(parseInt(b)):A.call(g,b);return this}};e.fn.scrollLeft=function(g){if("undefined"== +typeof g){var b=this[0]?e.data(this[0],"__nicescroll")||!1:!1;return b&&b.ishwscroll?b.getScrollLeft():A.call(this)}return this.each(function(){var b=e.data(this,"__nicescroll")||!1;b&&b.ishwscroll?b.setScrollLeft(parseInt(g)):A.call(e(this),g)})};var B=function(g){var b=this;this.length=0;this.name="nicescrollarray";this.each=function(e){for(var g=0,a=0;g pos + windowHeight) { + return; + } + + $this.css('backgroundPosition', xpos + " " + Math.round((firstTop - pos) * speedFactor) + "px"); + }); + } + + $window.bind('scroll', update).resize(update); + update(); + }; +})(jQuery); diff --git a/ClientApp/app/jquery.plugins/jquery.textillate.js b/ClientApp/app/jquery.plugins/jquery.textillate.js new file mode 100644 index 00000000..129e07af --- /dev/null +++ b/ClientApp/app/jquery.plugins/jquery.textillate.js @@ -0,0 +1,265 @@ +/* + * textillate.js + * http://jschr.github.com/textillate + * MIT licensed + * + * Copyright (C) 2012-2013 Jordan Schroter + */ + +(function ($) { + "use strict"; + + function isInEffect (effect) { + return /In/.test(effect) || $.inArray(effect, $.fn.textillate.defaults.inEffects) >= 0; + }; + + function isOutEffect (effect) { + return /Out/.test(effect) || $.inArray(effect, $.fn.textillate.defaults.outEffects) >= 0; + }; + + // custom get data api method + function getData (node) { + var attrs = node.attributes || [] + , data = {}; + + if (!attrs.length) return data; + + $.each(attrs, function (i, attr) { + if (/^data-in-*/.test(attr.nodeName)) { + data.in = data.in || {}; + data.in[attr.nodeName.replace(/data-in-/, '')] = attr.nodeValue; + } else if (/^data-out-*/.test(attr.nodeName)) { + data.out = data.out || {}; + data.out[attr.nodeName.replace(/data-out-/, '')] = attr.nodeValue; + } else if (/^data-*/.test(attr.nodeName)) { + data[attr.nodeName] = attr.nodeValue; + } + }) + + return data; + } + + function shuffle (o) { + for (var j, x, i = o.length; i; j = parseInt(Math.random() * i), x = o[--i], o[i] = o[j], o[j] = x); + return o; + } + + function animate ($c, effect, cb) { + $c.addClass('animated ' + effect) + .css('visibility', 'visible') + .show(); + + $c.one('animationend webkitAnimationEnd oAnimationEnd', function () { + $c.removeClass('animated ' + effect); + cb && cb(); + }); + } + + function animateChars ($chars, options, cb) { + var that = this + , count = $chars.length; + + if (!count) { + cb && cb(); + return; + } + + if (options.shuffle) $chars = shuffle($chars); + if (options.reverse) $chars = $chars.toArray().reverse(); + + $.each($chars, function (i, c) { + var $char = $(c); + + function complete () { + if (isInEffect(options.effect)) { + $char.css('visibility', 'visible'); + } else if (isOutEffect(options.effect)) { + $char.css('visibility', 'hidden'); + } + count -= 1; + if (!count && cb) cb(); + } + + var delay = options.sync ? options.delay : options.delay * i * options.delayScale; + + $char.text() ? + setTimeout(function () { animate($char, options.effect, complete) }, delay) : + complete(); + }); + }; + + var Textillate = function (element, options) { + var base = this + , $element = $(element); + + base.init = function () { + base.$texts = $element.find(options.selector); + + if (!base.$texts.length) { + base.$texts = $(' '); + $element.html(base.$texts); + } + + base.$texts.hide(); + + base.$current = $('') + .text(base.$texts.find(':first-child').html()) + .prependTo($element); + + if (isInEffect(options.effect)) { + base.$current.css('visibility', 'hidden'); + } else if (isOutEffect(options.effect)) { + base.$current.css('visibility', 'visible'); + } + + base.setOptions(options); + + setTimeout(function () { + base.options.autoStart && base.start(); + }, base.options.initialDelay) + }; + + base.setOptions = function (options) { + base.options = options; + }; + + base.triggerEvent = function (name) { + var e = $.Event(name + '.tlt'); + $element.trigger(e, base); + return e; + }; + + base.in = function (index, cb) { + index = index || 0; + + var $elem = base.$texts.find(':nth-child(' + (index + 1) + ')') + , options = $.extend({}, base.options, getData($elem)) + , $chars; + + $elem.addClass('current'); + + base.triggerEvent('inAnimationBegin'); + + base.$current + .text($elem.html()) + .lettering('words'); + + base.$current.find('[class^="word"]') + .css({ + 'display': 'inline-block', + // fix for poor ios performance + '-webkit-transform': 'translate3d(0,0,0)', + '-moz-transform': 'translate3d(0,0,0)', + '-o-transform': 'translate3d(0,0,0)', + 'transform': 'translate3d(0,0,0)' + }) + .each(function () { $(this).lettering() }); + + $chars = base.$current + .find('[class^="char"]') + .css('display', 'inline-block'); + + if (isInEffect(options.in.effect)) { + $chars.css('visibility', 'hidden'); + } else if (isOutEffect(options.in.effect)) { + $chars.css('visibility', 'visible'); + } + + base.currentIndex = index; + + animateChars($chars, options.in, function () { + base.triggerEvent('inAnimationEnd'); + if (options.in.callback) options.in.callback(); + if (cb) cb(base); + }); + }; + + base.out = function (cb) { + var $elem = base.$texts.find(':nth-child(' + (base.currentIndex + 1) + ')') + , $chars = base.$current.find('[class^="char"]') + , options = $.extend({}, base.options, getData($elem)); + + base.triggerEvent('outAnimationBegin'); + + animateChars($chars, options.out, function () { + $elem.removeClass('current'); + base.triggerEvent('outAnimationEnd'); + if (options.out.callback) options.out.callback(); + if (cb) cb(base); + }); + }; + + base.start = function (index) { + base.triggerEvent('start'); + + (function run (index) { + base.in(index, function () { + var length = base.$texts.children().length; + + index += 1; + + if (!base.options.loop && index >= length) { + if (base.options.callback) base.options.callback(); + base.triggerEvent('end'); + } else { + index = index % length; + + setTimeout(function () { + base.out(function () { + run(index) + }); + }, base.options.minDisplayTime); + } + }); + }(index || 0)); + }; + + base.init(); + } + + $.fn.textillate = function (settings, args) { + return this.each(function () { + var $this = $(this) + , data = $this.data('textillate') + , options = $.extend(true, {}, $.fn.textillate.defaults, getData(this), typeof settings === 'object' && settings); + + if (!data) { + $this.data('textillate', (data = new Textillate(this, options))); + } else if (typeof settings === 'string') { + data[settings].apply(data, [].concat(args)); + } else { + data.setOptions.call(data, options); + } + }) + }; + + $.fn.textillate.defaults = { + selector: '.texts', + loop: false, + minDisplayTime: 2000, + initialDelay: 0, + in: { + effect: 'fadeInLeftBig', + delayScale: 1.5, + delay: 50, + sync: false, + reverse: false, + shuffle: false, + callback: function () {} + }, + out: { + effect: 'hinge', + delayScale: 1.5, + delay: 50, + sync: false, + reverse: false, + shuffle: false, + callback: function () {} + }, + autoStart: true, + inEffects: [], + outEffects: [ 'hinge' ], + callback: function () {} + }; + +}(jQuery)); diff --git a/ClientApp/app/jquery.plugins/jquery.themepunch.plugins.4.1.1.min.js b/ClientApp/app/jquery.plugins/jquery.themepunch.plugins.4.1.1.min.js new file mode 100644 index 00000000..51c3272d --- /dev/null +++ b/ClientApp/app/jquery.plugins/jquery.themepunch.plugins.4.1.1.min.js @@ -0,0 +1,43 @@ + + +/******************************************** + - THEMEPUNCH TOOLS Ver. 1.0 - + Last Update of Tools 09.10.2013 +*********************************************/ + + + + +/*! + * VERSION: 1.11.2 + * DATE: 2013-11-20 + * UPDATES AND DOCS AT: http://www.greensock.com + * + * @license Copyright (c) 2008-2013, GreenSock. All rights reserved. + * This work is subject to the terms at http://www.greensock.com/terms_of_use.html or for + * Club GreenSock members, the software agreement that was issued with your membership. + * + * @author: Jack Doyle, jack@greensock.com + */ +(function(t){"use strict";var e=t.GreenSockGlobals||t;if(!e.TweenLite){var i,s,r,n,a,o=function(t){var i,s=t.split("."),r=e;for(i=0;s.length>i;i++)r[s[i]]=r=r[s[i]]||{};return r},l=o("com.greensock"),h=1e-10,_=[].slice,u=function(){},m=function(){var t=Object.prototype.toString,e=t.call([]);return function(i){return i instanceof Array||"object"==typeof i&&!!i.push&&t.call(i)===e}}(),f={},p=function(i,s,r,n){this.sc=f[i]?f[i].sc:[],f[i]=this,this.gsClass=null,this.func=r;var a=[];this.check=function(l){for(var h,_,u,m,c=s.length,d=c;--c>-1;)(h=f[s[c]]||new p(s[c],[])).gsClass?(a[c]=h.gsClass,d--):l&&h.sc.push(this);if(0===d&&r)for(_=("com.greensock."+i).split("."),u=_.pop(),m=o(_.join("."))[u]=this.gsClass=r.apply(r,a),n&&(e[u]=m,"function"==typeof define&&define.amd?define((t.GreenSockAMDPath?t.GreenSockAMDPath+"/":"")+i.split(".").join("/"),[],function(){return m}):"undefined"!=typeof module&&module.exports&&(module.exports=m)),c=0;this.sc.length>c;c++)this.sc[c].check()},this.check(!0)},c=t._gsDefine=function(t,e,i,s){return new p(t,e,i,s)},d=l._class=function(t,e,i){return e=e||function(){},c(t,[],function(){return e},i),e};c.globals=e;var v=[0,0,1,1],g=[],T=d("easing.Ease",function(t,e,i,s){this._func=t,this._type=i||0,this._power=s||0,this._params=e?v.concat(e):v},!0),w=T.map={},P=T.register=function(t,e,i,s){for(var r,n,a,o,h=e.split(","),_=h.length,u=(i||"easeIn,easeOut,easeInOut").split(",");--_>-1;)for(n=h[_],r=s?d("easing."+n,null,!0):l.easing[n]||{},a=u.length;--a>-1;)o=u[a],w[n+"."+o]=w[o+n]=r[o]=t.getRatio?t:t[o]||new t};for(r=T.prototype,r._calcEnd=!1,r.getRatio=function(t){if(this._func)return this._params[0]=t,this._func.apply(null,this._params);var e=this._type,i=this._power,s=1===e?1-t:2===e?t:.5>t?2*t:2*(1-t);return 1===i?s*=s:2===i?s*=s*s:3===i?s*=s*s*s:4===i&&(s*=s*s*s*s),1===e?1-s:2===e?s:.5>t?s/2:1-s/2},i=["Linear","Quad","Cubic","Quart","Quint,Strong"],s=i.length;--s>-1;)r=i[s]+",Power"+s,P(new T(null,null,1,s),r,"easeOut",!0),P(new T(null,null,2,s),r,"easeIn"+(0===s?",easeNone":"")),P(new T(null,null,3,s),r,"easeInOut");w.linear=l.easing.Linear.easeIn,w.swing=l.easing.Quad.easeInOut;var y=d("events.EventDispatcher",function(t){this._listeners={},this._eventTarget=t||this});r=y.prototype,r.addEventListener=function(t,e,i,s,r){r=r||0;var o,l,h=this._listeners[t],_=0;for(null==h&&(this._listeners[t]=h=[]),l=h.length;--l>-1;)o=h[l],o.c===e&&o.s===i?h.splice(l,1):0===_&&r>o.pr&&(_=l+1);h.splice(_,0,{c:e,s:i,up:s,pr:r}),this!==n||a||n.wake()},r.removeEventListener=function(t,e){var i,s=this._listeners[t];if(s)for(i=s.length;--i>-1;)if(s[i].c===e)return s.splice(i,1),void 0},r.dispatchEvent=function(t){var e,i,s,r=this._listeners[t];if(r)for(e=r.length,i=this._eventTarget;--e>-1;)s=r[e],s.up?s.c.call(s.s||i,{type:t,target:i}):s.c.call(s.s||i)};var b=t.requestAnimationFrame,k=t.cancelAnimationFrame,A=Date.now||function(){return(new Date).getTime()},S=A();for(i=["ms","moz","webkit","o"],s=i.length;--s>-1&&!b;)b=t[i[s]+"RequestAnimationFrame"],k=t[i[s]+"CancelAnimationFrame"]||t[i[s]+"CancelRequestAnimationFrame"];d("Ticker",function(t,e){var i,s,r,o,l,h=this,_=A(),m=e!==!1&&b,f=function(t){S=A(),h.time=(S-_)/1e3;var e,n=h.time-l;(!i||n>0||t===!0)&&(h.frame++,l+=n+(n>=o?.004:o-n),e=!0),t!==!0&&(r=s(f)),e&&h.dispatchEvent("tick")};y.call(h),h.time=h.frame=0,h.tick=function(){f(!0)},h.sleep=function(){null!=r&&(m&&k?k(r):clearTimeout(r),s=u,r=null,h===n&&(a=!1))},h.wake=function(){null!==r&&h.sleep(),s=0===i?u:m&&b?b:function(t){return setTimeout(t,0|1e3*(l-h.time)+1)},h===n&&(a=!0),f(2)},h.fps=function(t){return arguments.length?(i=t,o=1/(i||60),l=this.time+o,h.wake(),void 0):i},h.useRAF=function(t){return arguments.length?(h.sleep(),m=t,h.fps(i),void 0):m},h.fps(t),setTimeout(function(){m&&(!r||5>h.frame)&&h.useRAF(!1)},1500)}),r=l.Ticker.prototype=new l.events.EventDispatcher,r.constructor=l.Ticker;var x=d("core.Animation",function(t,e){if(this.vars=e=e||{},this._duration=this._totalDuration=t||0,this._delay=Number(e.delay)||0,this._timeScale=1,this._active=e.immediateRender===!0,this.data=e.data,this._reversed=e.reversed===!0,Q){a||n.wake();var i=this.vars.useFrames?G:Q;i.add(this,i._time),this.vars.paused&&this.paused(!0)}});n=x.ticker=new l.Ticker,r=x.prototype,r._dirty=r._gc=r._initted=r._paused=!1,r._totalTime=r._time=0,r._rawPrevTime=-1,r._next=r._last=r._onUpdate=r._timeline=r.timeline=null,r._paused=!1;var C=function(){a&&A()-S>2e3&&n.wake(),setTimeout(C,2e3)};C(),r.play=function(t,e){return arguments.length&&this.seek(t,e),this.reversed(!1).paused(!1)},r.pause=function(t,e){return arguments.length&&this.seek(t,e),this.paused(!0)},r.resume=function(t,e){return arguments.length&&this.seek(t,e),this.paused(!1)},r.seek=function(t,e){return this.totalTime(Number(t),e!==!1)},r.restart=function(t,e){return this.reversed(!1).paused(!1).totalTime(t?-this._delay:0,e!==!1,!0)},r.reverse=function(t,e){return arguments.length&&this.seek(t||this.totalDuration(),e),this.reversed(!0).paused(!1)},r.render=function(){},r.invalidate=function(){return this},r.isActive=function(){var t,e=this._timeline,i=this._startTime;return!e||!this._gc&&!this._paused&&e.isActive()&&(t=e.rawTime())>=i&&i+this.totalDuration()/this._timeScale>t},r._enabled=function(t,e){return a||n.wake(),this._gc=!t,this._active=this.isActive(),e!==!0&&(t&&!this.timeline?this._timeline.add(this,this._startTime-this._delay):!t&&this.timeline&&this._timeline._remove(this,!0)),!1},r._kill=function(){return this._enabled(!1,!1)},r.kill=function(t,e){return this._kill(t,e),this},r._uncache=function(t){for(var e=t?this:this.timeline;e;)e._dirty=!0,e=e.timeline;return this},r._swapSelfInParams=function(t){for(var e=t.length,i=t.concat();--e>-1;)"{self}"===t[e]&&(i[e]=this);return i},r.eventCallback=function(t,e,i,s){if("on"===(t||"").substr(0,2)){var r=this.vars;if(1===arguments.length)return r[t];null==e?delete r[t]:(r[t]=e,r[t+"Params"]=m(i)&&-1!==i.join("").indexOf("{self}")?this._swapSelfInParams(i):i,r[t+"Scope"]=s),"onUpdate"===t&&(this._onUpdate=e)}return this},r.delay=function(t){return arguments.length?(this._timeline.smoothChildTiming&&this.startTime(this._startTime+t-this._delay),this._delay=t,this):this._delay},r.duration=function(t){return arguments.length?(this._duration=this._totalDuration=t,this._uncache(!0),this._timeline.smoothChildTiming&&this._time>0&&this._time
- ' + $element.html() + '
this._duration?this._duration:t,e)):this._time},r.totalTime=function(t,e,i){if(a||n.wake(),!arguments.length)return this._totalTime;if(this._timeline){if(0>t&&!i&&(t+=this.totalDuration()),this._timeline.smoothChildTiming){this._dirty&&this.totalDuration();var s=this._totalDuration,r=this._timeline;if(t>s&&!i&&(t=s),this._startTime=(this._paused?this._pauseTime:r._time)-(this._reversed?s-t:t)/this._timeScale,r._dirty||this._uncache(!1),r._timeline)for(;r._timeline;)r._timeline._time!==(r._startTime+r._totalTime)/r._timeScale&&r.totalTime(r._totalTime,!0),r=r._timeline}this._gc&&this._enabled(!0,!1),(this._totalTime!==t||0===this._duration)&&this.render(t,e,!1)}return this},r.progress=r.totalProgress=function(t,e){return arguments.length?this.totalTime(this.duration()*t,e):this._time/this.duration()},r.startTime=function(t){return arguments.length?(t!==this._startTime&&(this._startTime=t,this.timeline&&this.timeline._sortChildren&&this.timeline.add(this,t-this._delay)),this):this._startTime},r.timeScale=function(t){if(!arguments.length)return this._timeScale;if(t=t||h,this._timeline&&this._timeline.smoothChildTiming){var e=this._pauseTime,i=e||0===e?e:this._timeline.totalTime();this._startTime=i-(i-this._startTime)*this._timeScale/t}return this._timeScale=t,this._uncache(!1)},r.reversed=function(t){return arguments.length?(t!=this._reversed&&(this._reversed=t,this.totalTime(this._totalTime,!0)),this):this._reversed},r.paused=function(t){if(!arguments.length)return this._paused;if(t!=this._paused&&this._timeline){a||t||n.wake();var e=this._timeline,i=e.rawTime(),s=i-this._pauseTime;!t&&e.smoothChildTiming&&(this._startTime+=s,this._uncache(!1)),this._pauseTime=t?i:null,this._paused=t,this._active=this.isActive(),!t&&0!==s&&this._initted&&this.duration()&&this.render(e.smoothChildTiming?this._totalTime:(i-this._startTime)/this._timeScale,!0,!0)}return this._gc&&!t&&this._enabled(!0,!1),this};var R=d("core.SimpleTimeline",function(t){x.call(this,0,t),this.autoRemoveChildren=this.smoothChildTiming=!0});r=R.prototype=new x,r.constructor=R,r.kill()._gc=!1,r._first=r._last=null,r._sortChildren=!1,r.add=r.insert=function(t,e){var i,s;if(t._startTime=Number(e||0)+t._delay,t._paused&&this!==t._timeline&&(t._pauseTime=t._startTime+(this.rawTime()-t._startTime)/t._timeScale),t.timeline&&t.timeline._remove(t,!0),t.timeline=t._timeline=this,t._gc&&t._enabled(!0,!0),i=this._last,this._sortChildren)for(s=t._startTime;i&&i._startTime>s;)i=i._prev;return i?(t._next=i._next,i._next=t):(t._next=this._first,this._first=t),t._next?t._next._prev=t:this._last=t,t._prev=i,this._timeline&&this._uncache(!0),this},r._remove=function(t,e){return t.timeline===this&&(e||t._enabled(!1,!0),t.timeline=null,t._prev?t._prev._next=t._next:this._first===t&&(this._first=t._next),t._next?t._next._prev=t._prev:this._last===t&&(this._last=t._prev),this._timeline&&this._uncache(!0)),this},r.render=function(t,e,i){var s,r=this._first;for(this._totalTime=this._time=this._rawPrevTime=t;r;)s=r._next,(r._active||t>=r._startTime&&!r._paused)&&(r._reversed?r.render((r._dirty?r.totalDuration():r._totalDuration)-(t-r._startTime)*r._timeScale,e,i):r.render((t-r._startTime)*r._timeScale,e,i)),r=s},r.rawTime=function(){return a||n.wake(),this._totalTime};var D=d("TweenLite",function(e,i,s){if(x.call(this,i,s),this.render=D.prototype.render,null==e)throw"Cannot tween a null target.";this.target=e="string"!=typeof e?e:D.selector(e)||e;var r,n,a,o=e.jquery||e.length&&e!==t&&e[0]&&(e[0]===t||e[0].nodeType&&e[0].style&&!e.nodeType),l=this.vars.overwrite;if(this._overwrite=l=null==l?j[D.defaultOverwrite]:"number"==typeof l?l>>0:j[l],(o||e instanceof Array||e.push&&m(e))&&"number"!=typeof e[0])for(this._targets=a=_.call(e,0),this._propLookup=[],this._siblings=[],r=0;a.length>r;r++)n=a[r],n?"string"!=typeof n?n.length&&n!==t&&n[0]&&(n[0]===t||n[0].nodeType&&n[0].style&&!n.nodeType)?(a.splice(r--,1),this._targets=a=a.concat(_.call(n,0))):(this._siblings[r]=B(n,this,!1),1===l&&this._siblings[r].length>1&&q(n,this,null,1,this._siblings[r])):(n=a[r--]=D.selector(n),"string"==typeof n&&a.splice(r+1,1)):a.splice(r--,1);else this._propLookup={},this._siblings=B(e,this,!1),1===l&&this._siblings.length>1&&q(e,this,null,1,this._siblings);(this.vars.immediateRender||0===i&&0===this._delay&&this.vars.immediateRender!==!1)&&this.render(-this._delay,!1,!0)},!0),E=function(e){return e.length&&e!==t&&e[0]&&(e[0]===t||e[0].nodeType&&e[0].style&&!e.nodeType)},I=function(t,e){var i,s={};for(i in t)F[i]||i in e&&"x"!==i&&"y"!==i&&"width"!==i&&"height"!==i&&"className"!==i&&"border"!==i||!(!N[i]||N[i]&&N[i]._autoCSS)||(s[i]=t[i],delete t[i]);t.css=s};r=D.prototype=new x,r.constructor=D,r.kill()._gc=!1,r.ratio=0,r._firstPT=r._targets=r._overwrittenProps=r._startAt=null,r._notifyPluginsOfEnabled=!1,D.version="1.11.2",D.defaultEase=r._ease=new T(null,null,1,1),D.defaultOverwrite="auto",D.ticker=n,D.autoSleep=!0,D.selector=t.$||t.jQuery||function(e){return t.$?(D.selector=t.$,t.$(e)):t.document?t.document.getElementById("#"===e.charAt(0)?e.substr(1):e):e};var O=D._internals={isArray:m,isSelector:E},N=D._plugins={},L=D._tweenLookup={},U=0,F=O.reservedProps={ease:1,delay:1,overwrite:1,onComplete:1,onCompleteParams:1,onCompleteScope:1,useFrames:1,runBackwards:1,startAt:1,onUpdate:1,onUpdateParams:1,onUpdateScope:1,onStart:1,onStartParams:1,onStartScope:1,onReverseComplete:1,onReverseCompleteParams:1,onReverseCompleteScope:1,onRepeat:1,onRepeatParams:1,onRepeatScope:1,easeParams:1,yoyo:1,immediateRender:1,repeat:1,repeatDelay:1,data:1,paused:1,reversed:1,autoCSS:1},j={none:0,all:1,auto:2,concurrent:3,allOnStart:4,preexisting:5,"true":1,"false":0},G=x._rootFramesTimeline=new R,Q=x._rootTimeline=new R;Q._startTime=n.time,G._startTime=n.frame,Q._active=G._active=!0,x._updateRoot=function(){if(Q.render((n.time-Q._startTime)*Q._timeScale,!1,!1),G.render((n.frame-G._startTime)*G._timeScale,!1,!1),!(n.frame%120)){var t,e,i;for(i in L){for(e=L[i].tweens,t=e.length;--t>-1;)e[t]._gc&&e.splice(t,1);0===e.length&&delete L[i]}if(i=Q._first,(!i||i._paused)&&D.autoSleep&&!G._first&&1===n._listeners.tick.length){for(;i&&i._paused;)i=i._next;i||n.sleep()}}},n.addEventListener("tick",x._updateRoot);var B=function(t,e,i){var s,r,n=t._gsTweenID;if(L[n||(t._gsTweenID=n="t"+U++)]||(L[n]={target:t,tweens:[]}),e&&(s=L[n].tweens,s[r=s.length]=e,i))for(;--r>-1;)s[r]===e&&s.splice(r,1);return L[n].tweens},q=function(t,e,i,s,r){var n,a,o,l;if(1===s||s>=4){for(l=r.length,n=0;l>n;n++)if((o=r[n])!==e)o._gc||o._enabled(!1,!1)&&(a=!0);else if(5===s)break;return a}var _,u=e._startTime+h,m=[],f=0,p=0===e._duration;for(n=r.length;--n>-1;)(o=r[n])===e||o._gc||o._paused||(o._timeline!==e._timeline?(_=_||$(e,0,p),0===$(o,_,p)&&(m[f++]=o)):u>=o._startTime&&o._startTime+o.totalDuration()/o._timeScale+h>u&&((p||!o._initted)&&2e-10>=u-o._startTime||(m[f++]=o)));for(n=f;--n>-1;)o=m[n],2===s&&o._kill(i,t)&&(a=!0),(2!==s||!o._firstPT&&o._initted)&&o._enabled(!1,!1)&&(a=!0);return a},$=function(t,e,i){for(var s=t._timeline,r=s._timeScale,n=t._startTime;s._timeline;){if(n+=s._startTime,r*=s._timeScale,s._paused)return-100;s=s._timeline}return n/=r,n>e?n-e:i&&n===e||!t._initted&&2*h>n-e?h:(n+=t.totalDuration()/t._timeScale/r)>e+h?0:n-e-h};r._init=function(){var t,e,i,s,r=this.vars,n=this._overwrittenProps,a=this._duration,o=r.immediateRender,l=r.ease;if(r.startAt){if(this._startAt&&this._startAt.render(-1,!0),r.startAt.overwrite=0,r.startAt.immediateRender=!0,this._startAt=D.to(this.target,0,r.startAt),o)if(this._time>0)this._startAt=null;else if(0!==a)return}else if(r.runBackwards&&0!==a)if(this._startAt)this._startAt.render(-1,!0),this._startAt=null;else{i={};for(s in r)F[s]&&"autoCSS"!==s||(i[s]=r[s]);if(i.overwrite=0,i.data="isFromStart",this._startAt=D.to(this.target,0,i),r.immediateRender){if(0===this._time)return}else this._startAt.render(-1,!0)}if(this._ease=l?l instanceof T?r.easeParams instanceof Array?l.config.apply(l,r.easeParams):l:"function"==typeof l?new T(l,r.easeParams):w[l]||D.defaultEase:D.defaultEase,this._easeType=this._ease._type,this._easePower=this._ease._power,this._firstPT=null,this._targets)for(t=this._targets.length;--t>-1;)this._initProps(this._targets[t],this._propLookup[t]={},this._siblings[t],n?n[t]:null)&&(e=!0);else e=this._initProps(this.target,this._propLookup,this._siblings,n);if(e&&D._onPluginEvent("_onInitAllProps",this),n&&(this._firstPT||"function"!=typeof this.target&&this._enabled(!1,!1)),r.runBackwards)for(i=this._firstPT;i;)i.s+=i.c,i.c=-i.c,i=i._next;this._onUpdate=r.onUpdate,this._initted=!0},r._initProps=function(e,i,s,r){var n,a,o,l,h,_;if(null==e)return!1;this.vars.css||e.style&&e!==t&&e.nodeType&&N.css&&this.vars.autoCSS!==!1&&I(this.vars,e);for(n in this.vars){if(_=this.vars[n],F[n])_&&(_ instanceof Array||_.push&&m(_))&&-1!==_.join("").indexOf("{self}")&&(this.vars[n]=_=this._swapSelfInParams(_,this));else if(N[n]&&(l=new N[n])._onInitTween(e,this.vars[n],this)){for(this._firstPT=h={_next:this._firstPT,t:l,p:"setRatio",s:0,c:1,f:!0,n:n,pg:!0,pr:l._priority},a=l._overwriteProps.length;--a>-1;)i[l._overwriteProps[a]]=this._firstPT;(l._priority||l._onInitAllProps)&&(o=!0),(l._onDisable||l._onEnable)&&(this._notifyPluginsOfEnabled=!0)}else this._firstPT=i[n]=h={_next:this._firstPT,t:e,p:n,f:"function"==typeof e[n],n:n,pg:!1,pr:0},h.s=h.f?e[n.indexOf("set")||"function"!=typeof e["get"+n.substr(3)]?n:"get"+n.substr(3)]():parseFloat(e[n]),h.c="string"==typeof _&&"="===_.charAt(1)?parseInt(_.charAt(0)+"1",10)*Number(_.substr(2)):Number(_)-h.s||0;h&&h._next&&(h._next._prev=h)}return r&&this._kill(r,e)?this._initProps(e,i,s,r):this._overwrite>1&&this._firstPT&&s.length>1&&q(e,this,i,this._overwrite,s)?(this._kill(i,e),this._initProps(e,i,s,r)):o},r.render=function(t,e,i){var s,r,n,a,o=this._time,l=this._duration;if(t>=l)this._totalTime=this._time=l,this.ratio=this._ease._calcEnd?this._ease.getRatio(1):1,this._reversed||(s=!0,r="onComplete"),0===l&&(a=this._rawPrevTime,(0===t||0>a||a===h)&&a!==t&&(i=!0,a>h&&(r="onReverseComplete")),this._rawPrevTime=a=!e||t?t:h);else if(1e-7>t)this._totalTime=this._time=0,this.ratio=this._ease._calcEnd?this._ease.getRatio(0):0,(0!==o||0===l&&this._rawPrevTime>h)&&(r="onReverseComplete",s=this._reversed),0>t?(this._active=!1,0===l&&(this._rawPrevTime>=0&&(i=!0),this._rawPrevTime=a=!e||t?t:h)):this._initted||(i=!0);else if(this._totalTime=this._time=t,this._easeType){var _=t/l,u=this._easeType,m=this._easePower;(1===u||3===u&&_>=.5)&&(_=1-_),3===u&&(_*=2),1===m?_*=_:2===m?_*=_*_:3===m?_*=_*_*_:4===m&&(_*=_*_*_*_),this.ratio=1===u?1-_:2===u?_:.5>t/l?_/2:1-_/2}else this.ratio=this._ease.getRatio(t/l);if(this._time!==o||i){if(!this._initted){if(this._init(),!this._initted||this._gc)return;this._time&&!s?this.ratio=this._ease.getRatio(this._time/l):s&&this._ease._calcEnd&&(this.ratio=this._ease.getRatio(0===this._time?0:1))}for(this._active||!this._paused&&this._time!==o&&t>=0&&(this._active=!0),0===o&&(this._startAt&&(t>=0?this._startAt.render(t,e,i):r||(r="_dummyGS")),this.vars.onStart&&(0!==this._time||0===l)&&(e||this.vars.onStart.apply(this.vars.onStartScope||this,this.vars.onStartParams||g))),n=this._firstPT;n;)n.f?n.t[n.p](n.c*this.ratio+n.s):n.t[n.p]=n.c*this.ratio+n.s,n=n._next;this._onUpdate&&(0>t&&this._startAt&&this._startTime&&this._startAt.render(t,e,i),e||i&&0===this._time&&0===o||this._onUpdate.apply(this.vars.onUpdateScope||this,this.vars.onUpdateParams||g)),r&&(this._gc||(0>t&&this._startAt&&!this._onUpdate&&this._startTime&&this._startAt.render(t,e,i),s&&(this._timeline.autoRemoveChildren&&this._enabled(!1,!1),this._active=!1),!e&&this.vars[r]&&this.vars[r].apply(this.vars[r+"Scope"]||this,this.vars[r+"Params"]||g),0===l&&this._rawPrevTime===h&&a!==h&&(this._rawPrevTime=0)))}},r._kill=function(t,e){if("all"===t&&(t=null),null==t&&(null==e||e===this.target))return this._enabled(!1,!1);e="string"!=typeof e?e||this._targets||this.target:D.selector(e)||e;var i,s,r,n,a,o,l,h;if((m(e)||E(e))&&"number"!=typeof e[0])for(i=e.length;--i>-1;)this._kill(t,e[i])&&(o=!0);else{if(this._targets){for(i=this._targets.length;--i>-1;)if(e===this._targets[i]){a=this._propLookup[i]||{},this._overwrittenProps=this._overwrittenProps||[],s=this._overwrittenProps[i]=t?this._overwrittenProps[i]||{}:"all";break}}else{if(e!==this.target)return!1;a=this._propLookup,s=this._overwrittenProps=t?this._overwrittenProps||{}:"all"}if(a){l=t||a,h=t!==s&&"all"!==s&&t!==a&&("object"!=typeof t||!t._tempKill);for(r in l)(n=a[r])&&(n.pg&&n.t._kill(l)&&(o=!0),n.pg&&0!==n.t._overwriteProps.length||(n._prev?n._prev._next=n._next:n===this._firstPT&&(this._firstPT=n._next),n._next&&(n._next._prev=n._prev),n._next=n._prev=null),delete a[r]),h&&(s[r]=1);!this._firstPT&&this._initted&&this._enabled(!1,!1)}}return o},r.invalidate=function(){return this._notifyPluginsOfEnabled&&D._onPluginEvent("_onDisable",this),this._firstPT=null,this._overwrittenProps=null,this._onUpdate=null,this._startAt=null,this._initted=this._active=this._notifyPluginsOfEnabled=!1,this._propLookup=this._targets?{}:[],this},r._enabled=function(t,e){if(a||n.wake(),t&&this._gc){var i,s=this._targets;if(s)for(i=s.length;--i>-1;)this._siblings[i]=B(s[i],this,!0);else this._siblings=B(this.target,this,!0)}return x.prototype._enabled.call(this,t,e),this._notifyPluginsOfEnabled&&this._firstPT?D._onPluginEvent(t?"_onEnable":"_onDisable",this):!1},D.to=function(t,e,i){return new D(t,e,i)},D.from=function(t,e,i){return i.runBackwards=!0,i.immediateRender=0!=i.immediateRender,new D(t,e,i)},D.fromTo=function(t,e,i,s){return s.startAt=i,s.immediateRender=0!=s.immediateRender&&0!=i.immediateRender,new D(t,e,s)},D.delayedCall=function(t,e,i,s,r){return new D(e,0,{delay:t,onComplete:e,onCompleteParams:i,onCompleteScope:s,onReverseComplete:e,onReverseCompleteParams:i,onReverseCompleteScope:s,immediateRender:!1,useFrames:r,overwrite:0})},D.set=function(t,e){return new D(t,0,e)},D.getTweensOf=function(t,e){if(null==t)return[];t="string"!=typeof t?t:D.selector(t)||t;var i,s,r,n;if((m(t)||E(t))&&"number"!=typeof t[0]){for(i=t.length,s=[];--i>-1;)s=s.concat(D.getTweensOf(t[i],e));for(i=s.length;--i>-1;)for(n=s[i],r=i;--r>-1;)n===s[r]&&s.splice(i,1)}else for(s=B(t).concat(),i=s.length;--i>-1;)(s[i]._gc||e&&!s[i].isActive())&&s.splice(i,1);return s},D.killTweensOf=D.killDelayedCallsTo=function(t,e,i){"object"==typeof e&&(i=e,e=!1);for(var s=D.getTweensOf(t,e),r=s.length;--r>-1;)s[r]._kill(i,t)};var M=d("plugins.TweenPlugin",function(t,e){this._overwriteProps=(t||"").split(","),this._propName=this._overwriteProps[0],this._priority=e||0,this._super=M.prototype},!0);if(r=M.prototype,M.version="1.10.1",M.API=2,r._firstPT=null,r._addTween=function(t,e,i,s,r,n){var a,o;return null!=s&&(a="number"==typeof s||"="!==s.charAt(1)?Number(s)-i:parseInt(s.charAt(0)+"1",10)*Number(s.substr(2)))?(this._firstPT=o={_next:this._firstPT,t:t,p:e,s:i,c:a,f:"function"==typeof t[e],n:r||e,r:n},o._next&&(o._next._prev=o),o):void 0},r.setRatio=function(t){for(var e,i=this._firstPT,s=1e-6;i;)e=i.c*t+i.s,i.r?e=0|e+(e>0?.5:-.5):s>e&&e>-s&&(e=0),i.f?i.t[i.p](e):i.t[i.p]=e,i=i._next},r._kill=function(t){var e,i=this._overwriteProps,s=this._firstPT;if(null!=t[this._propName])this._overwriteProps=[];else for(e=i.length;--e>-1;)null!=t[i[e]]&&i.splice(e,1);for(;s;)null!=t[s.n]&&(s._next&&(s._next._prev=s._prev),s._prev?(s._prev._next=s._next,s._prev=null):this._firstPT===s&&(this._firstPT=s._next)),s=s._next;return!1},r._roundProps=function(t,e){for(var i=this._firstPT;i;)(t[this._propName]||null!=i.n&&t[i.n.split(this._propName+"_").join("")])&&(i.r=e),i=i._next},D._onPluginEvent=function(t,e){var i,s,r,n,a,o=e._firstPT;if("_onInitAllProps"===t){for(;o;){for(a=o._next,s=r;s&&s.pr>o.pr;)s=s._next;(o._prev=s?s._prev:n)?o._prev._next=o:r=o,(o._next=s)?s._prev=o:n=o,o=a}o=e._firstPT=r}for(;o;)o.pg&&"function"==typeof o.t[t]&&o.t[t]()&&(i=!0),o=o._next;return i},M.activate=function(t){for(var e=t.length;--e>-1;)t[e].API===M.API&&(N[(new t[e])._propName]=t[e]);return!0},c.plugin=function(t){if(!(t&&t.propName&&t.init&&t.API))throw"illegal plugin definition.";var e,i=t.propName,s=t.priority||0,r=t.overwriteProps,n={init:"_onInitTween",set:"setRatio",kill:"_kill",round:"_roundProps",initAll:"_onInitAllProps"},a=d("plugins."+i.charAt(0).toUpperCase()+i.substr(1)+"Plugin",function(){M.call(this,i,s),this._overwriteProps=r||[]},t.global===!0),o=a.prototype=new M(i);o.constructor=a,a.API=t.API;for(e in n)"function"==typeof t[e]&&(o[n[e]]=t[e]);return a.version=t.version,M.activate([a]),a},i=t._gsQueue){for(s=0;i.length>s;s++)i[s]();for(r in f)f[r].func||t.console.log("GSAP encountered missing dependency: com.greensock."+r)}a=!1}})(window); +(window._gsQueue||(window._gsQueue=[])).push(function(){"use strict";window._gsDefine("easing.Back",["easing.Ease"],function(t){var e,i,s,r=window.GreenSockGlobals||window,n=r.com.greensock,a=2*Math.PI,o=Math.PI/2,h=n._class,l=function(e,i){var s=h("easing."+e,function(){},!0),r=s.prototype=new t;return r.constructor=s,r.getRatio=i,s},_=t.register||function(){},u=function(t,e,i,s){var r=h("easing."+t,{easeOut:new e,easeIn:new i,easeInOut:new s},!0);return _(r,t),r},c=function(t,e,i){this.t=t,this.v=e,i&&(this.next=i,i.prev=this,this.c=i.v-e,this.gap=i.t-t)},p=function(e,i){var s=h("easing."+e,function(t){this._p1=t||0===t?t:1.70158,this._p2=1.525*this._p1},!0),r=s.prototype=new t;return r.constructor=s,r.getRatio=i,r.config=function(t){return new s(t)},s},f=u("Back",p("BackOut",function(t){return(t-=1)*t*((this._p1+1)*t+this._p1)+1}),p("BackIn",function(t){return t*t*((this._p1+1)*t-this._p1)}),p("BackInOut",function(t){return 1>(t*=2)?.5*t*t*((this._p2+1)*t-this._p2):.5*((t-=2)*t*((this._p2+1)*t+this._p2)+2)})),m=h("easing.SlowMo",function(t,e,i){e=e||0===e?e:.7,null==t?t=.7:t>1&&(t=1),this._p=1!==t?e:0,this._p1=(1-t)/2,this._p2=t,this._p3=this._p1+this._p2,this._calcEnd=i===!0},!0),d=m.prototype=new t;return d.constructor=m,d.getRatio=function(t){var e=t+(.5-t)*this._p;return this._p1>t?this._calcEnd?1-(t=1-t/this._p1)*t:e-(t=1-t/this._p1)*t*t*t*e:t>this._p3?this._calcEnd?1-(t=(t-this._p3)/this._p1)*t:e+(t-e)*(t=(t-this._p3)/this._p1)*t*t*t:this._calcEnd?1:e},m.ease=new m(.7,.7),d.config=m.config=function(t,e,i){return new m(t,e,i)},e=h("easing.SteppedEase",function(t){t=t||1,this._p1=1/t,this._p2=t+1},!0),d=e.prototype=new t,d.constructor=e,d.getRatio=function(t){return 0>t?t=0:t>=1&&(t=.999999999),(this._p2*t>>0)*this._p1},d.config=e.config=function(t){return new e(t)},i=h("easing.RoughEase",function(e){e=e||{};for(var i,s,r,n,a,o,h=e.taper||"none",l=[],_=0,u=0|(e.points||20),p=u,f=e.randomize!==!1,m=e.clamp===!0,d=e.template instanceof t?e.template:null,g="number"==typeof e.strength?.4*e.strength:.4;--p>-1;)i=f?Math.random():1/u*p,s=d?d.getRatio(i):i,"none"===h?r=g:"out"===h?(n=1-i,r=n*n*g):"in"===h?r=i*i*g:.5>i?(n=2*i,r=.5*n*n*g):(n=2*(1-i),r=.5*n*n*g),f?s+=Math.random()*r-.5*r:p%2?s+=.5*r:s-=.5*r,m&&(s>1?s=1:0>s&&(s=0)),l[_++]={x:i,y:s};for(l.sort(function(t,e){return t.x-e.x}),o=new c(1,1,null),p=u;--p>-1;)a=l[p],o=new c(a.x,a.y,o);this._prev=new c(0,0,0!==o.t?o:o.next)},!0),d=i.prototype=new t,d.constructor=i,d.getRatio=function(t){var e=this._prev;if(t>e.t){for(;e.next&&t>=e.t;)e=e.next;e=e.prev}else for(;e.prev&&e.t>=t;)e=e.prev;return this._prev=e,e.v+(t-e.t)/e.gap*e.c},d.config=function(t){return new i(t)},i.ease=new i,u("Bounce",l("BounceOut",function(t){return 1/2.75>t?7.5625*t*t:2/2.75>t?7.5625*(t-=1.5/2.75)*t+.75:2.5/2.75>t?7.5625*(t-=2.25/2.75)*t+.9375:7.5625*(t-=2.625/2.75)*t+.984375}),l("BounceIn",function(t){return 1/2.75>(t=1-t)?1-7.5625*t*t:2/2.75>t?1-(7.5625*(t-=1.5/2.75)*t+.75):2.5/2.75>t?1-(7.5625*(t-=2.25/2.75)*t+.9375):1-(7.5625*(t-=2.625/2.75)*t+.984375)}),l("BounceInOut",function(t){var e=.5>t;return t=e?1-2*t:2*t-1,t=1/2.75>t?7.5625*t*t:2/2.75>t?7.5625*(t-=1.5/2.75)*t+.75:2.5/2.75>t?7.5625*(t-=2.25/2.75)*t+.9375:7.5625*(t-=2.625/2.75)*t+.984375,e?.5*(1-t):.5*t+.5})),u("Circ",l("CircOut",function(t){return Math.sqrt(1-(t-=1)*t)}),l("CircIn",function(t){return-(Math.sqrt(1-t*t)-1)}),l("CircInOut",function(t){return 1>(t*=2)?-.5*(Math.sqrt(1-t*t)-1):.5*(Math.sqrt(1-(t-=2)*t)+1)})),s=function(e,i,s){var r=h("easing."+e,function(t,e){this._p1=t||1,this._p2=e||s,this._p3=this._p2/a*(Math.asin(1/this._p1)||0)},!0),n=r.prototype=new t;return n.constructor=r,n.getRatio=i,n.config=function(t,e){return new r(t,e)},r},u("Elastic",s("ElasticOut",function(t){return this._p1*Math.pow(2,-10*t)*Math.sin((t-this._p3)*a/this._p2)+1},.3),s("ElasticIn",function(t){return-(this._p1*Math.pow(2,10*(t-=1))*Math.sin((t-this._p3)*a/this._p2))},.3),s("ElasticInOut",function(t){return 1>(t*=2)?-.5*this._p1*Math.pow(2,10*(t-=1))*Math.sin((t-this._p3)*a/this._p2):.5*this._p1*Math.pow(2,-10*(t-=1))*Math.sin((t-this._p3)*a/this._p2)+1},.45)),u("Expo",l("ExpoOut",function(t){return 1-Math.pow(2,-10*t)}),l("ExpoIn",function(t){return Math.pow(2,10*(t-1))-.001}),l("ExpoInOut",function(t){return 1>(t*=2)?.5*Math.pow(2,10*(t-1)):.5*(2-Math.pow(2,-10*(t-1)))})),u("Sine",l("SineOut",function(t){return Math.sin(t*o)}),l("SineIn",function(t){return-Math.cos(t*o)+1}),l("SineInOut",function(t){return-.5*(Math.cos(Math.PI*t)-1)})),h("easing.EaseLookup",{find:function(e){return t.map[e]}},!0),_(r.SlowMo,"SlowMo","ease,"),_(i,"RoughEase","ease,"),_(e,"SteppedEase","ease,"),f},!0)}),window._gsDefine&&window._gsQueue.pop()(); +(window._gsQueue||(window._gsQueue=[])).push(function(){"use strict";window._gsDefine("plugins.CSSPlugin",["plugins.TweenPlugin","TweenLite"],function(t,e){var i,s,r,n,a=function(){t.call(this,"css"),this._overwriteProps.length=0,this.setRatio=a.prototype.setRatio},o={},l=a.prototype=new t("css");l.constructor=a,a.version="1.11.2",a.API=2,a.defaultTransformPerspective=0,l="px",a.suffixMap={top:l,right:l,bottom:l,left:l,width:l,height:l,fontSize:l,padding:l,margin:l,perspective:l};var h,u,_,p,f,c,d=/(?:\d|\-\d|\.\d|\-\.\d)+/g,m=/(?:\d|\-\d|\.\d|\-\.\d|\+=\d|\-=\d|\+=.\d|\-=\.\d)+/g,g=/(?:\+=|\-=|\-|\b)[\d\-\.]+[a-zA-Z0-9]*(?:%|\b)/gi,v=/[^\d\-\.]/g,y=/(?:\d|\-|\+|=|#|\.)*/g,T=/opacity *= *([^)]*)/,x=/opacity:([^;]*)/,w=/alpha\(opacity *=.+?\)/i,b=/^(rgb|hsl)/,P=/([A-Z])/g,S=/-([a-z])/gi,R=/(^(?:url\(\"|url\())|(?:(\"\))$|\)$)/gi,k=function(t,e){return e.toUpperCase()},C=/(?:Left|Right|Width)/i,A=/(M11|M12|M21|M22)=[\d\-\.e]+/gi,O=/progid\:DXImageTransform\.Microsoft\.Matrix\(.+?\)/i,D=/,(?=[^\)]*(?:\(|$))/gi,M=Math.PI/180,L=180/Math.PI,N={},X=document,F=X.createElement("div"),I=X.createElement("img"),E=a._internals={_specialProps:o},Y=navigator.userAgent,z=function(){var t,e=Y.indexOf("Android"),i=X.createElement("div");return _=-1!==Y.indexOf("Safari")&&-1===Y.indexOf("Chrome")&&(-1===e||Number(Y.substr(e+8,1))>3),f=_&&6>Number(Y.substr(Y.indexOf("Version/")+8,1)),p=-1!==Y.indexOf("Firefox"),/MSIE ([0-9]{1,}[\.0-9]{0,})/.exec(Y),c=parseFloat(RegExp.$1),i.innerHTML="a",t=i.getElementsByTagName("a")[0],t?/^0.55/.test(t.style.opacity):!1}(),U=function(t){return T.test("string"==typeof t?t:(t.currentStyle?t.currentStyle.filter:t.style.filter)||"")?parseFloat(RegExp.$1)/100:1},B=function(t){window.console&&console.log(t)},j="",V="",q=function(t,e){e=e||F;var i,s,r=e.style;if(void 0!==r[t])return t;for(t=t.charAt(0).toUpperCase()+t.substr(1),i=["O","Moz","ms","Ms","Webkit"],s=5;--s>-1&&void 0===r[i[s]+t];);return s>=0?(V=3===s?"ms":i[s],j="-"+V.toLowerCase()+"-",V+t):null},W=X.defaultView?X.defaultView.getComputedStyle:function(){},Q=a.getStyle=function(t,e,i,s,r){var n;return z||"opacity"!==e?(!s&&t.style[e]?n=t.style[e]:(i=i||W(t,null))?(t=i.getPropertyValue(e.replace(P,"-$1").toLowerCase()),n=t||i.length?t:i[e]):t.currentStyle&&(n=t.currentStyle[e]),null==r||n&&"none"!==n&&"auto"!==n&&"auto auto"!==n?n:r):U(t)},Z=function(t,e,i,s,r){if("px"===s||!s)return i;if("auto"===s||!i)return 0;var n,a=C.test(e),o=t,l=F.style,h=0>i;return h&&(i=-i),"%"===s&&-1!==e.indexOf("border")?n=i/100*(a?t.clientWidth:t.clientHeight):(l.cssText="border:0 solid red;position:"+Q(t,"position")+";line-height:0;","%"!==s&&o.appendChild?l[a?"borderLeftWidth":"borderTopWidth"]=i+s:(o=t.parentNode||X.body,l[a?"width":"height"]=i+s),o.appendChild(F),n=parseFloat(F[a?"offsetWidth":"offsetHeight"]),o.removeChild(F),0!==n||r||(n=Z(t,e,i,s,!0))),h?-n:n},H=function(t,e,i){if("absolute"!==Q(t,"position",i))return 0;var s="left"===e?"Left":"Top",r=Q(t,"margin"+s,i);return t["offset"+s]-(Z(t,e,parseFloat(r),r.replace(y,""))||0)},$=function(t,e){var i,s,r={};if(e=e||W(t,null))if(i=e.length)for(;--i>-1;)r[e[i].replace(S,k)]=e.getPropertyValue(e[i]);else for(i in e)r[i]=e[i];else if(e=t.currentStyle||t.style)for(i in e)"string"==typeof i&&void 0!==r[i]&&(r[i.replace(S,k)]=e[i]);return z||(r.opacity=U(t)),s=be(t,e,!1),r.rotation=s.rotation,r.skewX=s.skewX,r.scaleX=s.scaleX,r.scaleY=s.scaleY,r.x=s.x,r.y=s.y,we&&(r.z=s.z,r.rotationX=s.rotationX,r.rotationY=s.rotationY,r.scaleZ=s.scaleZ),r.filters&&delete r.filters,r},G=function(t,e,i,s,r){var n,a,o,l={},h=t.style;for(a in i)"cssText"!==a&&"length"!==a&&isNaN(a)&&(e[a]!==(n=i[a])||r&&r[a])&&-1===a.indexOf("Origin")&&("number"==typeof n||"string"==typeof n)&&(l[a]="auto"!==n||"left"!==a&&"top"!==a?""!==n&&"auto"!==n&&"none"!==n||"string"!=typeof e[a]||""===e[a].replace(v,"")?n:0:H(t,a),void 0!==h[a]&&(o=new _e(h,a,h[a],o)));if(s)for(a in s)"className"!==a&&(l[a]=s[a]);return{difs:l,firstMPT:o}},K={width:["Left","Right"],height:["Top","Bottom"]},J=["marginLeft","marginRight","marginTop","marginBottom"],te=function(t,e,i){var s=parseFloat("width"===e?t.offsetWidth:t.offsetHeight),r=K[e],n=r.length;for(i=i||W(t,null);--n>-1;)s-=parseFloat(Q(t,"padding"+r[n],i,!0))||0,s-=parseFloat(Q(t,"border"+r[n]+"Width",i,!0))||0;return s},ee=function(t,e){(null==t||""===t||"auto"===t||"auto auto"===t)&&(t="0 0");var i=t.split(" "),s=-1!==t.indexOf("left")?"0%":-1!==t.indexOf("right")?"100%":i[0],r=-1!==t.indexOf("top")?"0%":-1!==t.indexOf("bottom")?"100%":i[1];return null==r?r="0":"center"===r&&(r="50%"),("center"===s||isNaN(parseFloat(s))&&-1===(s+"").indexOf("="))&&(s="50%"),e&&(e.oxp=-1!==s.indexOf("%"),e.oyp=-1!==r.indexOf("%"),e.oxr="="===s.charAt(1),e.oyr="="===r.charAt(1),e.ox=parseFloat(s.replace(v,"")),e.oy=parseFloat(r.replace(v,""))),s+" "+r+(i.length>2?" "+i[2]:"")},ie=function(t,e){return"string"==typeof t&&"="===t.charAt(1)?parseInt(t.charAt(0)+"1",10)*parseFloat(t.substr(2)):parseFloat(t)-parseFloat(e)},se=function(t,e){return null==t?e:"string"==typeof t&&"="===t.charAt(1)?parseInt(t.charAt(0)+"1",10)*Number(t.substr(2))+e:parseFloat(t)},re=function(t,e,i,s){var r,n,a,o,l=1e-6;return null==t?o=e:"number"==typeof t?o=t:(r=360,n=t.split("_"),a=Number(n[0].replace(v,""))*(-1===t.indexOf("rad")?1:L)-("="===t.charAt(1)?0:e),n.length&&(s&&(s[i]=e+a),-1!==t.indexOf("short")&&(a%=r,a!==a%(r/2)&&(a=0>a?a+r:a-r)),-1!==t.indexOf("_cw")&&0>a?a=(a+9999999999*r)%r-(0|a/r)*r:-1!==t.indexOf("ccw")&&a>0&&(a=(a-9999999999*r)%r-(0|a/r)*r)),o=e+a),l>o&&o>-l&&(o=0),o},ne={aqua:[0,255,255],lime:[0,255,0],silver:[192,192,192],black:[0,0,0],maroon:[128,0,0],teal:[0,128,128],blue:[0,0,255],navy:[0,0,128],white:[255,255,255],fuchsia:[255,0,255],olive:[128,128,0],yellow:[255,255,0],orange:[255,165,0],gray:[128,128,128],purple:[128,0,128],green:[0,128,0],red:[255,0,0],pink:[255,192,203],cyan:[0,255,255],transparent:[255,255,255,0]},ae=function(t,e,i){return t=0>t?t+1:t>1?t-1:t,0|255*(1>6*t?e+6*(i-e)*t:.5>t?i:2>3*t?e+6*(i-e)*(2/3-t):e)+.5},oe=function(t){var e,i,s,r,n,a;return t&&""!==t?"number"==typeof t?[t>>16,255&t>>8,255&t]:(","===t.charAt(t.length-1)&&(t=t.substr(0,t.length-1)),ne[t]?ne[t]:"#"===t.charAt(0)?(4===t.length&&(e=t.charAt(1),i=t.charAt(2),s=t.charAt(3),t="#"+e+e+i+i+s+s),t=parseInt(t.substr(1),16),[t>>16,255&t>>8,255&t]):"hsl"===t.substr(0,3)?(t=t.match(d),r=Number(t[0])%360/360,n=Number(t[1])/100,a=Number(t[2])/100,i=.5>=a?a*(n+1):a+n-a*n,e=2*a-i,t.length>3&&(t[3]=Number(t[3])),t[0]=ae(r+1/3,e,i),t[1]=ae(r,e,i),t[2]=ae(r-1/3,e,i),t):(t=t.match(d)||ne.transparent,t[0]=Number(t[0]),t[1]=Number(t[1]),t[2]=Number(t[2]),t.length>3&&(t[3]=Number(t[3])),t)):ne.black},le="(?:\\b(?:(?:rgb|rgba|hsl|hsla)\\(.+?\\))|\\B#.+?\\b";for(l in ne)le+="|"+l+"\\b";le=RegExp(le+")","gi");var he=function(t,e,i,s){if(null==t)return function(t){return t};var r,n=e?(t.match(le)||[""])[0]:"",a=t.split(n).join("").match(g)||[],o=t.substr(0,t.indexOf(a[0])),l=")"===t.charAt(t.length-1)?")":"",h=-1!==t.indexOf(" ")?" ":",",u=a.length,_=u>0?a[0].replace(d,""):"";return u?r=e?function(t){var e,p,f,c;if("number"==typeof t)t+=_;else if(s&&D.test(t)){for(c=t.replace(D,"|").split("|"),f=0;c.length>f;f++)c[f]=r(c[f]);return c.join(",")}if(e=(t.match(le)||[n])[0],p=t.split(e).join("").match(g)||[],f=p.length,u>f--)for(;u>++f;)p[f]=i?p[0|(f-1)/2]:a[f];return o+p.join(h)+h+e+l+(-1!==t.indexOf("inset")?" inset":"")}:function(t){var e,n,p;if("number"==typeof t)t+=_;else if(s&&D.test(t)){for(n=t.replace(D,"|").split("|"),p=0;n.length>p;p++)n[p]=r(n[p]);return n.join(",")}if(e=t.match(g)||[],p=e.length,u>p--)for(;u>++p;)e[p]=i?e[0|(p-1)/2]:a[p];return o+e.join(h)+l}:function(t){return t}},ue=function(t){return t=t.split(","),function(e,i,s,r,n,a,o){var l,h=(i+"").split(" ");for(o={},l=0;4>l;l++)o[t[l]]=h[l]=h[l]||h[(l-1)/2>>0];return r.parse(e,o,n,a)}},_e=(E._setPluginRatio=function(t){this.plugin.setRatio(t);for(var e,i,s,r,n=this.data,a=n.proxy,o=n.firstMPT,l=1e-6;o;)e=a[o.v],o.r?e=e>0?0|e+.5:0|e-.5:l>e&&e>-l&&(e=0),o.t[o.p]=e,o=o._next;if(n.autoRotate&&(n.autoRotate.rotation=a.rotation),1===t)for(o=n.firstMPT;o;){if(i=o.t,i.type){if(1===i.type){for(r=i.xs0+i.s+i.xs1,s=1;i.l>s;s++)r+=i["xn"+s]+i["xs"+(s+1)];i.e=r}}else i.e=i.s+i.xs0;o=o._next}},function(t,e,i,s,r){this.t=t,this.p=e,this.v=i,this.r=r,s&&(s._prev=this,this._next=s)}),pe=(E._parseToProxy=function(t,e,i,s,r,n){var a,o,l,h,u,_=s,p={},f={},c=i._transform,d=N;for(i._transform=null,N=e,s=u=i.parse(t,e,s,r),N=d,n&&(i._transform=c,_&&(_._prev=null,_._prev&&(_._prev._next=null)));s&&s!==_;){if(1>=s.type&&(o=s.p,f[o]=s.s+s.c,p[o]=s.s,n||(h=new _e(s,"s",o,h,s.r),s.c=0),1===s.type))for(a=s.l;--a>0;)l="xn"+a,o=s.p+"_"+l,f[o]=s.data[l],p[o]=s[l],n||(h=new _e(s,l,o,h,s.rxp[l]));s=s._next}return{proxy:p,end:f,firstMPT:h,pt:u}},E.CSSPropTween=function(t,e,s,r,a,o,l,h,u,_,p){this.t=t,this.p=e,this.s=s,this.c=r,this.n=l||e,t instanceof pe||n.push(this.n),this.r=h,this.type=o||0,u&&(this.pr=u,i=!0),this.b=void 0===_?s:_,this.e=void 0===p?s+r:p,a&&(this._next=a,a._prev=this)}),fe=a.parseComplex=function(t,e,i,s,r,n,a,o,l,u){i=i||n||"",a=new pe(t,e,0,0,a,u?2:1,null,!1,o,i,s),s+="";var _,p,f,c,g,v,y,T,x,w,P,S,R=i.split(", ").join(",").split(" "),k=s.split(", ").join(",").split(" "),C=R.length,A=h!==!1;for((-1!==s.indexOf(",")||-1!==i.indexOf(","))&&(R=R.join(" ").replace(D,", ").split(" "),k=k.join(" ").replace(D,", ").split(" "),C=R.length),C!==k.length&&(R=(n||"").split(" "),C=R.length),a.plugin=l,a.setRatio=u,_=0;C>_;_++)if(c=R[_],g=k[_],T=parseFloat(c),T||0===T)a.appendXtra("",T,ie(g,T),g.replace(m,""),A&&-1!==g.indexOf("px"),!0);else if(r&&("#"===c.charAt(0)||ne[c]||b.test(c)))S=","===g.charAt(g.length-1)?"),":")",c=oe(c),g=oe(g),x=c.length+g.length>6,x&&!z&&0===g[3]?(a["xs"+a.l]+=a.l?" transparent":"transparent",a.e=a.e.split(k[_]).join("transparent")):(z||(x=!1),a.appendXtra(x?"rgba(":"rgb(",c[0],g[0]-c[0],",",!0,!0).appendXtra("",c[1],g[1]-c[1],",",!0).appendXtra("",c[2],g[2]-c[2],x?",":S,!0),x&&(c=4>c.length?1:c[3],a.appendXtra("",c,(4>g.length?1:g[3])-c,S,!1)));else if(v=c.match(d)){if(y=g.match(m),!y||y.length!==v.length)return a;for(f=0,p=0;v.length>p;p++)P=v[p],w=c.indexOf(P,f),a.appendXtra(c.substr(f,w-f),Number(P),ie(y[p],P),"",A&&"px"===c.substr(w+P.length,2),0===p),f=w+P.length;a["xs"+a.l]+=c.substr(f)}else a["xs"+a.l]+=a.l?" "+c:c;if(-1!==s.indexOf("=")&&a.data){for(S=a.xs0+a.data.s,_=1;a.l>_;_++)S+=a["xs"+_]+a.data["xn"+_];a.e=S+a["xs"+_]}return a.l||(a.type=-1,a.xs0=a.e),a.xfirst||a},ce=9;for(l=pe.prototype,l.l=l.pr=0;--ce>0;)l["xn"+ce]=0,l["xs"+ce]="";l.xs0="",l._next=l._prev=l.xfirst=l.data=l.plugin=l.setRatio=l.rxp=null,l.appendXtra=function(t,e,i,s,r,n){var a=this,o=a.l;return a["xs"+o]+=n&&o?" "+t:t||"",i||0===o||a.plugin?(a.l++,a.type=a.setRatio?2:1,a["xs"+a.l]=s||"",o>0?(a.data["xn"+o]=e+i,a.rxp["xn"+o]=r,a["xn"+o]=e,a.plugin||(a.xfirst=new pe(a,"xn"+o,e,i,a.xfirst||a,0,a.n,r,a.pr),a.xfirst.xs0=0),a):(a.data={s:e+i},a.rxp={},a.s=e,a.c=i,a.r=r,a)):(a["xs"+o]+=e+(s||""),a)};var de=function(t,e){e=e||{},this.p=e.prefix?q(t)||t:t,o[t]=o[this.p]=this,this.format=e.formatter||he(e.defaultValue,e.color,e.collapsible,e.multi),e.parser&&(this.parse=e.parser),this.clrs=e.color,this.multi=e.multi,this.keyword=e.keyword,this.dflt=e.defaultValue,this.pr=e.priority||0},me=E._registerComplexSpecialProp=function(t,e,i){"object"!=typeof e&&(e={parser:i});var s,r,n=t.split(","),a=e.defaultValue;for(i=i||[a],s=0;n.length>s;s++)e.prefix=0===s&&e.prefix,e.defaultValue=i[s]||a,r=new de(n[s],e)},ge=function(t){if(!o[t]){var e=t.charAt(0).toUpperCase()+t.substr(1)+"Plugin";me(t,{parser:function(t,i,s,r,n,a,l){var h=(window.GreenSockGlobals||window).com.greensock.plugins[e];return h?(h._cssRegister(),o[s].parse(t,i,s,r,n,a,l)):(B("Error: "+e+" js file not loaded."),n)}})}};l=de.prototype,l.parseComplex=function(t,e,i,s,r,n){var a,o,l,h,u,_,p=this.keyword;if(this.multi&&(D.test(i)||D.test(e)?(o=e.replace(D,"|").split("|"),l=i.replace(D,"|").split("|")):p&&(o=[e],l=[i])),l){for(h=l.length>o.length?l.length:o.length,a=0;h>a;a++)e=o[a]=o[a]||this.dflt,i=l[a]=l[a]||this.dflt,p&&(u=e.indexOf(p),_=i.indexOf(p),u!==_&&(i=-1===_?l:o,i[a]+=" "+p));e=o.join(", "),i=l.join(", ")}return fe(t,this.p,e,i,this.clrs,this.dflt,s,this.pr,r,n)},l.parse=function(t,e,i,s,n,a){return this.parseComplex(t.style,this.format(Q(t,this.p,r,!1,this.dflt)),this.format(e),n,a)},a.registerSpecialProp=function(t,e,i){me(t,{parser:function(t,s,r,n,a,o){var l=new pe(t,r,0,0,a,2,r,!1,i);return l.plugin=o,l.setRatio=e(t,s,n._tween,r),l},priority:i})};var ve="scaleX,scaleY,scaleZ,x,y,z,skewX,rotation,rotationX,rotationY,perspective".split(","),ye=q("transform"),Te=j+"transform",xe=q("transformOrigin"),we=null!==q("perspective"),be=function(t,e,i,s){if(t._gsTransform&&i&&!s)return t._gsTransform;var r,n,o,l,h,u,_,p,f,c,d,m,g,v=i?t._gsTransform||{skewY:0}:{skewY:0},y=0>v.scaleX,T=2e-5,x=1e5,w=179.99,b=w*M,P=we?parseFloat(Q(t,xe,e,!1,"0 0 0").split(" ")[2])||v.zOrigin||0:0;for(ye?r=Q(t,Te,e,!0):t.currentStyle&&(r=t.currentStyle.filter.match(A),r=r&&4===r.length?[r[0].substr(4),Number(r[2].substr(4)),Number(r[1].substr(4)),r[3].substr(4),v.x||0,v.y||0].join(","):""),n=(r||"").match(/(?:\-|\b)[\d\-\.e]+\b/gi)||[],o=n.length;--o>-1;)l=Number(n[o]),n[o]=(h=l-(l|=0))?(0|h*x+(0>h?-.5:.5))/x+l:l;if(16===n.length){var S=n[8],R=n[9],k=n[10],C=n[12],O=n[13],D=n[14];if(v.zOrigin&&(D=-v.zOrigin,C=S*D-n[12],O=R*D-n[13],D=k*D+v.zOrigin-n[14]),!i||s||null==v.rotationX){var N,X,F,I,E,Y,z,U=n[0],B=n[1],j=n[2],V=n[3],q=n[4],W=n[5],Z=n[6],H=n[7],$=n[11],G=Math.atan2(Z,k),K=-b>G||G>b;v.rotationX=G*L,G&&(I=Math.cos(-G),E=Math.sin(-G),N=q*I+S*E,X=W*I+R*E,F=Z*I+k*E,S=q*-E+S*I,R=W*-E+R*I,k=Z*-E+k*I,$=H*-E+$*I,q=N,W=X,Z=F),G=Math.atan2(S,U),v.rotationY=G*L,G&&(Y=-b>G||G>b,I=Math.cos(-G),E=Math.sin(-G),N=U*I-S*E,X=B*I-R*E,F=j*I-k*E,R=B*E+R*I,k=j*E+k*I,$=V*E+$*I,U=N,B=X,j=F),G=Math.atan2(B,W),v.rotation=G*L,G&&(z=-b>G||G>b,I=Math.cos(-G),E=Math.sin(-G),U=U*I+q*E,X=B*I+W*E,W=B*-E+W*I,Z=j*-E+Z*I,B=X),z&&K?v.rotation=v.rotationX=0:z&&Y?v.rotation=v.rotationY=0:Y&&K&&(v.rotationY=v.rotationX=0),v.scaleX=(0|Math.sqrt(U*U+B*B)*x+.5)/x,v.scaleY=(0|Math.sqrt(W*W+R*R)*x+.5)/x,v.scaleZ=(0|Math.sqrt(Z*Z+k*k)*x+.5)/x,v.skewX=0,v.perspective=$?1/(0>$?-$:$):0,v.x=C,v.y=O,v.z=D}}else if(!(we&&!s&&n.length&&v.x===n[4]&&v.y===n[5]&&(v.rotationX||v.rotationY)||void 0!==v.x&&"none"===Q(t,"display",e))){var J=n.length>=6,te=J?n[0]:1,ee=n[1]||0,ie=n[2]||0,se=J?n[3]:1;v.x=n[4]||0,v.y=n[5]||0,u=Math.sqrt(te*te+ee*ee),_=Math.sqrt(se*se+ie*ie),p=te||ee?Math.atan2(ee,te)*L:v.rotation||0,f=ie||se?Math.atan2(ie,se)*L+p:v.skewX||0,c=u-Math.abs(v.scaleX||0),d=_-Math.abs(v.scaleY||0),Math.abs(f)>90&&270>Math.abs(f)&&(y?(u*=-1,f+=0>=p?180:-180,p+=0>=p?180:-180):(_*=-1,f+=0>=f?180:-180)),m=(p-v.rotation)%180,g=(f-v.skewX)%180,(void 0===v.skewX||c>T||-T>c||d>T||-T>d||m>-w&&w>m&&false|m*x||g>-w&&w>g&&false|g*x)&&(v.scaleX=u,v.scaleY=_,v.rotation=p,v.skewX=f),we&&(v.rotationX=v.rotationY=v.z=0,v.perspective=parseFloat(a.defaultTransformPerspective)||0,v.scaleZ=1)}v.zOrigin=P;for(o in v)T>v[o]&&v[o]>-T&&(v[o]=0);return i&&(t._gsTransform=v),v},Pe=function(t){var e,i,s=this.data,r=-s.rotation*M,n=r+s.skewX*M,a=1e5,o=(0|Math.cos(r)*s.scaleX*a)/a,l=(0|Math.sin(r)*s.scaleX*a)/a,h=(0|Math.sin(n)*-s.scaleY*a)/a,u=(0|Math.cos(n)*s.scaleY*a)/a,_=this.t.style,p=this.t.currentStyle;if(p){i=l,l=-h,h=-i,e=p.filter,_.filter="";var f,d,m=this.t.offsetWidth,g=this.t.offsetHeight,v="absolute"!==p.position,x="progid:DXImageTransform.Microsoft.Matrix(M11="+o+", M12="+l+", M21="+h+", M22="+u,w=s.x,b=s.y;if(null!=s.ox&&(f=(s.oxp?.01*m*s.ox:s.ox)-m/2,d=(s.oyp?.01*g*s.oy:s.oy)-g/2,w+=f-(f*o+d*l),b+=d-(f*h+d*u)),v?(f=m/2,d=g/2,x+=", Dx="+(f-(f*o+d*l)+w)+", Dy="+(d-(f*h+d*u)+b)+")"):x+=", sizingMethod='auto expand')",_.filter=-1!==e.indexOf("DXImageTransform.Microsoft.Matrix(")?e.replace(O,x):x+" "+e,(0===t||1===t)&&1===o&&0===l&&0===h&&1===u&&(v&&-1===x.indexOf("Dx=0, Dy=0")||T.test(e)&&100!==parseFloat(RegExp.$1)||-1===e.indexOf("gradient("&&e.indexOf("Alpha"))&&_.removeAttribute("filter")),!v){var P,S,R,k=8>c?1:-1;for(f=s.ieOffsetX||0,d=s.ieOffsetY||0,s.ieOffsetX=Math.round((m-((0>o?-o:o)*m+(0>l?-l:l)*g))/2+w),s.ieOffsetY=Math.round((g-((0>u?-u:u)*g+(0>h?-h:h)*m))/2+b),ce=0;4>ce;ce++)S=J[ce],P=p[S],i=-1!==P.indexOf("px")?parseFloat(P):Z(this.t,S,parseFloat(P),P.replace(y,""))||0,R=i!==s[S]?2>ce?-s.ieOffsetX:-s.ieOffsetY:2>ce?f-s.ieOffsetX:d-s.ieOffsetY,_[S]=(s[S]=Math.round(i-R*(0===ce||2===ce?1:k)))+"px"}}},Se=function(){var t,e,i,s,r,n,a,o,l,h,u,_,f,c,d,m,g,v,y,T,x,w,b,P,S,R,k=this.data,C=this.t.style,A=k.rotation*M,O=k.scaleX,D=k.scaleY,L=k.scaleZ,N=k.perspective;if(p&&(P=C.top?"top":C.bottom?"bottom":parseFloat(Q(this.t,"top",null,!1))?"bottom":"top",T=Q(this.t,P,null,!1),S=parseFloat(T)||0,R=T.substr((S+"").length)||"px",k._ffFix=!k._ffFix,C[P]=(k._ffFix?S+.05:S-.05)+R,S=1e-4,S>O&&O>-S&&(O=L=2e-5),S>D&&D>-S&&(D=L=2e-5)),A||k.skewX)v=Math.cos(A),y=Math.sin(A),t=v,r=y,k.skewX&&(A-=k.skewX*M,v=Math.cos(A),y=Math.sin(A)),e=-y,n=v;else{if(!(k.rotationY||k.rotationX||1!==L||N))return C[ye]="translate3d("+k.x+"px,"+k.y+"px,"+k.z+"px)"+(1!==O||1!==D?" scale("+O+","+D+")":""),void 0;t=n=1,e=r=0}u=1,i=s=a=o=l=h=_=f=c=0,d=N?-1/N:0,m=k.zOrigin,g=1e5,A=k.rotationY*M,A&&(v=Math.cos(A),y=Math.sin(A),l=u*-y,f=d*-y,i=t*y,a=r*y,u*=v,d*=v,t*=v,r*=v),A=k.rotationX*M,A&&(v=Math.cos(A),y=Math.sin(A),T=e*v+i*y,x=n*v+a*y,w=h*v+u*y,b=c*v+d*y,i=e*-y+i*v,a=n*-y+a*v,u=h*-y+u*v,d=c*-y+d*v,e=T,n=x,h=w,c=b),1!==L&&(i*=L,a*=L,u*=L,d*=L),1!==D&&(e*=D,n*=D,h*=D,c*=D),1!==O&&(t*=O,r*=O,l*=O,f*=O),m&&(_-=m,s=i*_,o=a*_,_=u*_+m),s=(T=(s+=k.x)-(s|=0))?(0|T*g+(0>T?-.5:.5))/g+s:s,o=(T=(o+=k.y)-(o|=0))?(0|T*g+(0>T?-.5:.5))/g+o:o,_=(T=(_+=k.z)-(_|=0))?(0|T*g+(0>T?-.5:.5))/g+_:_,C[ye]="matrix3d("+[(0|t*g)/g,(0|r*g)/g,(0|l*g)/g,(0|f*g)/g,(0|e*g)/g,(0|n*g)/g,(0|h*g)/g,(0|c*g)/g,(0|i*g)/g,(0|a*g)/g,(0|u*g)/g,(0|d*g)/g,s,o,_,N?1+-_/N:1].join(",")+")"},Re=function(){var t,e,i,s,r,n,a,o,l,h=this.data,u=this.t,_=u.style;p&&(t=_.top?"top":_.bottom?"bottom":parseFloat(Q(u,"top",null,!1))?"bottom":"top",e=Q(u,t,null,!1),i=parseFloat(e)||0,s=e.substr((i+"").length)||"px",h._ffFix=!h._ffFix,_[t]=(h._ffFix?i+.05:i-.05)+s),h.rotation||h.skewX?(r=h.rotation*M,n=r-h.skewX*M,a=1e5,o=h.scaleX*a,l=h.scaleY*a,_[ye]="matrix("+(0|Math.cos(r)*o)/a+","+(0|Math.sin(r)*o)/a+","+(0|Math.sin(n)*-l)/a+","+(0|Math.cos(n)*l)/a+","+h.x+","+h.y+")"):_[ye]="matrix("+h.scaleX+",0,0,"+h.scaleY+","+h.x+","+h.y+")"};me("transform,scale,scaleX,scaleY,scaleZ,x,y,z,rotation,rotationX,rotationY,rotationZ,skewX,skewY,shortRotation,shortRotationX,shortRotationY,shortRotationZ,transformOrigin,transformPerspective,directionalRotation,parseTransform,force3D",{parser:function(t,e,i,s,n,a,o){if(s._transform)return n;var l,h,u,_,p,f,c,d=s._transform=be(t,r,!0,o.parseTransform),m=t.style,g=1e-6,v=ve.length,y=o,T={};if("string"==typeof y.transform&&ye)u=m.cssText,m[ye]=y.transform,m.display="block",l=be(t,null,!1),m.cssText=u;else if("object"==typeof y){if(l={scaleX:se(null!=y.scaleX?y.scaleX:y.scale,d.scaleX),scaleY:se(null!=y.scaleY?y.scaleY:y.scale,d.scaleY),scaleZ:se(null!=y.scaleZ?y.scaleZ:y.scale,d.scaleZ),x:se(y.x,d.x),y:se(y.y,d.y),z:se(y.z,d.z),perspective:se(y.transformPerspective,d.perspective)},c=y.directionalRotation,null!=c)if("object"==typeof c)for(u in c)y[u]=c[u];else y.rotation=c;l.rotation=re("rotation"in y?y.rotation:"shortRotation"in y?y.shortRotation+"_short":"rotationZ"in y?y.rotationZ:d.rotation,d.rotation,"rotation",T),we&&(l.rotationX=re("rotationX"in y?y.rotationX:"shortRotationX"in y?y.shortRotationX+"_short":d.rotationX||0,d.rotationX,"rotationX",T),l.rotationY=re("rotationY"in y?y.rotationY:"shortRotationY"in y?y.shortRotationY+"_short":d.rotationY||0,d.rotationY,"rotationY",T)),l.skewX=null==y.skewX?d.skewX:re(y.skewX,d.skewX),l.skewY=null==y.skewY?d.skewY:re(y.skewY,d.skewY),(h=l.skewY-d.skewY)&&(l.skewX+=h,l.rotation+=h)}for(null!=y.force3D&&(d.force3D=y.force3D,f=!0),p=d.force3D||d.z||d.rotationX||d.rotationY||l.z||l.rotationX||l.rotationY||l.perspective,p||null==y.scale||(l.scaleZ=1);--v>-1;)i=ve[v],_=l[i]-d[i],(_>g||-g>_||null!=N[i])&&(f=!0,n=new pe(d,i,d[i],_,n),i in T&&(n.e=T[i]),n.xs0=0,n.plugin=a,s._overwriteProps.push(n.n));return _=y.transformOrigin,(_||we&&p&&d.zOrigin)&&(ye?(f=!0,i=xe,_=(_||Q(t,i,r,!1,"50% 50%"))+"",n=new pe(m,i,0,0,n,-1,"transformOrigin"),n.b=m[i],n.plugin=a,we?(u=d.zOrigin,_=_.split(" "),d.zOrigin=(_.length>2&&(0===u||"0px"!==_[2])?parseFloat(_[2]):u)||0,n.xs0=n.e=m[i]=_[0]+" "+(_[1]||"50%")+" 0px",n=new pe(d,"zOrigin",0,0,n,-1,n.n),n.b=u,n.xs0=n.e=d.zOrigin):n.xs0=n.e=m[i]=_):ee(_+"",d)),f&&(s._transformType=p||3===this._transformType?3:2),n},prefix:!0}),me("boxShadow",{defaultValue:"0px 0px 0px 0px #999",prefix:!0,color:!0,multi:!0,keyword:"inset"}),me("borderRadius",{defaultValue:"0px",parser:function(t,e,i,n,a){e=this.format(e);var o,l,h,u,_,p,f,c,d,m,g,v,y,T,x,w,b=["borderTopLeftRadius","borderTopRightRadius","borderBottomRightRadius","borderBottomLeftRadius"],P=t.style;for(d=parseFloat(t.offsetWidth),m=parseFloat(t.offsetHeight),o=e.split(" "),l=0;b.length>l;l++)this.p.indexOf("border")&&(b[l]=q(b[l])),_=u=Q(t,b[l],r,!1,"0px"),-1!==_.indexOf(" ")&&(u=_.split(" "),_=u[0],u=u[1]),p=h=o[l],f=parseFloat(_),v=_.substr((f+"").length),y="="===p.charAt(1),y?(c=parseInt(p.charAt(0)+"1",10),p=p.substr(2),c*=parseFloat(p),g=p.substr((c+"").length-(0>c?1:0))||""):(c=parseFloat(p),g=p.substr((c+"").length)),""===g&&(g=s[i]||v),g!==v&&(T=Z(t,"borderLeft",f,v),x=Z(t,"borderTop",f,v),"%"===g?(_=100*(T/d)+"%",u=100*(x/m)+"%"):"em"===g?(w=Z(t,"borderLeft",1,"em"),_=T/w+"em",u=x/w+"em"):(_=T+"px",u=x+"px"),y&&(p=parseFloat(_)+c+g,h=parseFloat(u)+c+g)),a=fe(P,b[l],_+" "+u,p+" "+h,!1,"0px",a);return a},prefix:!0,formatter:he("0px 0px 0px 0px",!1,!0)}),me("backgroundPosition",{defaultValue:"0 0",parser:function(t,e,i,s,n,a){var o,l,h,u,_,p,f="background-position",d=r||W(t,null),m=this.format((d?c?d.getPropertyValue(f+"-x")+" "+d.getPropertyValue(f+"-y"):d.getPropertyValue(f):t.currentStyle.backgroundPositionX+" "+t.currentStyle.backgroundPositionY)||"0 0"),g=this.format(e);if(-1!==m.indexOf("%")!=(-1!==g.indexOf("%"))&&(p=Q(t,"backgroundImage").replace(R,""),p&&"none"!==p)){for(o=m.split(" "),l=g.split(" "),I.setAttribute("src",p),h=2;--h>-1;)m=o[h],u=-1!==m.indexOf("%"),u!==(-1!==l[h].indexOf("%"))&&(_=0===h?t.offsetWidth-I.width:t.offsetHeight-I.height,o[h]=u?parseFloat(m)/100*_+"px":100*(parseFloat(m)/_)+"%");m=o.join(" ")}return this.parseComplex(t.style,m,g,n,a)},formatter:ee}),me("backgroundSize",{defaultValue:"0 0",formatter:ee}),me("perspective",{defaultValue:"0px",prefix:!0}),me("perspectiveOrigin",{defaultValue:"50% 50%",prefix:!0}),me("transformStyle",{prefix:!0}),me("backfaceVisibility",{prefix:!0}),me("userSelect",{prefix:!0}),me("margin",{parser:ue("marginTop,marginRight,marginBottom,marginLeft")}),me("padding",{parser:ue("paddingTop,paddingRight,paddingBottom,paddingLeft")}),me("clip",{defaultValue:"rect(0px,0px,0px,0px)",parser:function(t,e,i,s,n,a){var o,l,h;return 9>c?(l=t.currentStyle,h=8>c?" ":",",o="rect("+l.clipTop+h+l.clipRight+h+l.clipBottom+h+l.clipLeft+")",e=this.format(e).split(",").join(h)):(o=this.format(Q(t,this.p,r,!1,this.dflt)),e=this.format(e)),this.parseComplex(t.style,o,e,n,a)}}),me("textShadow",{defaultValue:"0px 0px 0px #999",color:!0,multi:!0}),me("autoRound,strictUnits",{parser:function(t,e,i,s,r){return r}}),me("border",{defaultValue:"0px solid #000",parser:function(t,e,i,s,n,a){return this.parseComplex(t.style,this.format(Q(t,"borderTopWidth",r,!1,"0px")+" "+Q(t,"borderTopStyle",r,!1,"solid")+" "+Q(t,"borderTopColor",r,!1,"#000")),this.format(e),n,a)},color:!0,formatter:function(t){var e=t.split(" ");return e[0]+" "+(e[1]||"solid")+" "+(t.match(le)||["#000"])[0]}}),me("float,cssFloat,styleFloat",{parser:function(t,e,i,s,r){var n=t.style,a="cssFloat"in n?"cssFloat":"styleFloat";return new pe(n,a,0,0,r,-1,i,!1,0,n[a],e)}});var ke=function(t){var e,i=this.t,s=i.filter||Q(this.data,"filter"),r=0|this.s+this.c*t;100===r&&(-1===s.indexOf("atrix(")&&-1===s.indexOf("radient(")&&-1===s.indexOf("oader(")?(i.removeAttribute("filter"),e=!Q(this.data,"filter")):(i.filter=s.replace(w,""),e=!0)),e||(this.xn1&&(i.filter=s=s||"alpha(opacity="+r+")"),-1===s.indexOf("opacity")?0===r&&this.xn1||(i.filter=s+" alpha(opacity="+r+")"):i.filter=s.replace(T,"opacity="+r))};me("opacity,alpha,autoAlpha",{defaultValue:"1",parser:function(t,e,i,s,n,a){var o=parseFloat(Q(t,"opacity",r,!1,"1")),l=t.style,h="autoAlpha"===i;return"string"==typeof e&&"="===e.charAt(1)&&(e=("-"===e.charAt(0)?-1:1)*parseFloat(e.substr(2))+o),h&&1===o&&"hidden"===Q(t,"visibility",r)&&0!==e&&(o=0),z?n=new pe(l,"opacity",o,e-o,n):(n=new pe(l,"opacity",100*o,100*(e-o),n),n.xn1=h?1:0,l.zoom=1,n.type=2,n.b="alpha(opacity="+n.s+")",n.e="alpha(opacity="+(n.s+n.c)+")",n.data=t,n.plugin=a,n.setRatio=ke),h&&(n=new pe(l,"visibility",0,0,n,-1,null,!1,0,0!==o?"inherit":"hidden",0===e?"hidden":"inherit"),n.xs0="inherit",s._overwriteProps.push(n.n),s._overwriteProps.push(i)),n}});var Ce=function(t,e){e&&(t.removeProperty?t.removeProperty(e.replace(P,"-$1").toLowerCase()):t.removeAttribute(e))},Ae=function(t){if(this.t._gsClassPT=this,1===t||0===t){this.t.className=0===t?this.b:this.e;for(var e=this.data,i=this.t.style;e;)e.v?i[e.p]=e.v:Ce(i,e.p),e=e._next;1===t&&this.t._gsClassPT===this&&(this.t._gsClassPT=null)}else this.t.className!==this.e&&(this.t.className=this.e)};me("className",{parser:function(t,e,s,n,a,o,l){var h,u,_,p,f,c=t.className,d=t.style.cssText;if(a=n._classNamePT=new pe(t,s,0,0,a,2),a.setRatio=Ae,a.pr=-11,i=!0,a.b=c,u=$(t,r),_=t._gsClassPT){for(p={},f=_.data;f;)p[f.p]=1,f=f._next;_.setRatio(1)}return t._gsClassPT=a,a.e="="!==e.charAt(1)?e:c.replace(RegExp("\\s*\\b"+e.substr(2)+"\\b"),"")+("+"===e.charAt(0)?" "+e.substr(2):""),n._tween._duration&&(t.className=a.e,h=G(t,u,$(t),l,p),t.className=c,a.data=h.firstMPT,t.style.cssText=d,a=a.xfirst=n.parse(t,h.difs,a,o)),a}});var Oe=function(t){if((1===t||0===t)&&this.data._totalTime===this.data._totalDuration&&"isFromStart"!==this.data.data){var e,i,s,r,n=this.t.style,a=o.transform.parse;if("all"===this.e)n.cssText="",r=!0;else for(e=this.e.split(","),s=e.length;--s>-1;)i=e[s],o[i]&&(o[i].parse===a?r=!0:i="transformOrigin"===i?xe:o[i].p),Ce(n,i);r&&(Ce(n,ye),this.t._gsTransform&&delete this.t._gsTransform)}};for(me("clearProps",{parser:function(t,e,s,r,n){return n=new pe(t,s,0,0,n,2),n.setRatio=Oe,n.e=e,n.pr=-10,n.data=r._tween,i=!0,n}}),l="bezier,throwProps,physicsProps,physics2D".split(","),ce=l.length;ce--;)ge(l[ce]);l=a.prototype,l._firstPT=null,l._onInitTween=function(t,e,o){if(!t.nodeType)return!1;this._target=t,this._tween=o,this._vars=e,h=e.autoRound,i=!1,s=e.suffixMap||a.suffixMap,r=W(t,""),n=this._overwriteProps;var l,p,c,d,m,g,v,y,T,w=t.style;if(u&&""===w.zIndex&&(l=Q(t,"zIndex",r),("auto"===l||""===l)&&(w.zIndex=0)),"string"==typeof e&&(d=w.cssText,l=$(t,r),w.cssText=d+";"+e,l=G(t,l,$(t)).difs,!z&&x.test(e)&&(l.opacity=parseFloat(RegExp.$1)),e=l,w.cssText=d),this._firstPT=p=this.parse(t,e,null),this._transformType){for(T=3===this._transformType,ye?_&&(u=!0,""===w.zIndex&&(v=Q(t,"zIndex",r),("auto"===v||""===v)&&(w.zIndex=0)),f&&(w.WebkitBackfaceVisibility=this._vars.WebkitBackfaceVisibility||(T?"visible":"hidden"))):w.zoom=1,c=p;c&&c._next;)c=c._next;y=new pe(t,"transform",0,0,null,2),this._linkCSSP(y,null,c),y.setRatio=T&&we?Se:ye?Re:Pe,y.data=this._transform||be(t,r,!0),n.pop()}if(i){for(;p;){for(g=p._next,c=d;c&&c.pr>p.pr;)c=c._next;(p._prev=c?c._prev:m)?p._prev._next=p:d=p,(p._next=c)?c._prev=p:m=p,p=g}this._firstPT=d}return!0},l.parse=function(t,e,i,n){var a,l,u,_,p,f,c,d,m,g,v=t.style;for(a in e)f=e[a],l=o[a],l?i=l.parse(t,f,a,this,i,n,e):(p=Q(t,a,r)+"",m="string"==typeof f,"color"===a||"fill"===a||"stroke"===a||-1!==a.indexOf("Color")||m&&b.test(f)?(m||(f=oe(f),f=(f.length>3?"rgba(":"rgb(")+f.join(",")+")"),i=fe(v,a,p,f,!0,"transparent",i,0,n)):!m||-1===f.indexOf(" ")&&-1===f.indexOf(",")?(u=parseFloat(p),c=u||0===u?p.substr((u+"").length):"",(""===p||"auto"===p)&&("width"===a||"height"===a?(u=te(t,a,r),c="px"):"left"===a||"top"===a?(u=H(t,a,r),c="px"):(u="opacity"!==a?0:1,c="")),g=m&&"="===f.charAt(1),g?(_=parseInt(f.charAt(0)+"1",10),f=f.substr(2),_*=parseFloat(f),d=f.replace(y,"")):(_=parseFloat(f),d=m?f.substr((_+"").length)||"":""),""===d&&(d=s[a]||c),f=_||0===_?(g?_+u:_)+d:e[a],c!==d&&""!==d&&(_||0===_)&&(u||0===u)&&(u=Z(t,a,u,c),"%"===d?(u/=Z(t,a,100,"%")/100,u>100&&(u=100),e.strictUnits!==!0&&(p=u+"%")):"em"===d?u/=Z(t,a,1,"em"):(_=Z(t,a,_,d),d="px"),g&&(_||0===_)&&(f=_+u+d)),g&&(_+=u),!u&&0!==u||!_&&0!==_?void 0!==v[a]&&(f||"NaN"!=f+""&&null!=f)?(i=new pe(v,a,_||u||0,0,i,-1,a,!1,0,p,f),i.xs0="none"!==f||"display"!==a&&-1===a.indexOf("Style")?f:p):B("invalid "+a+" tween value: "+e[a]):(i=new pe(v,a,u,_-u,i,0,a,h!==!1&&("px"===d||"zIndex"===a),0,p,f),i.xs0=d)):i=fe(v,a,p,f,!0,null,i,0,n)),n&&i&&!i.plugin&&(i.plugin=n);return i},l.setRatio=function(t){var e,i,s,r=this._firstPT,n=1e-6;if(1!==t||this._tween._time!==this._tween._duration&&0!==this._tween._time)if(t||this._tween._time!==this._tween._duration&&0!==this._tween._time||this._tween._rawPrevTime===-1e-6)for(;r;){if(e=r.c*t+r.s,r.r?e=e>0?0|e+.5:0|e-.5:n>e&&e>-n&&(e=0),r.type)if(1===r.type)if(s=r.l,2===s)r.t[r.p]=r.xs0+e+r.xs1+r.xn1+r.xs2;else if(3===s)r.t[r.p]=r.xs0+e+r.xs1+r.xn1+r.xs2+r.xn2+r.xs3;else if(4===s)r.t[r.p]=r.xs0+e+r.xs1+r.xn1+r.xs2+r.xn2+r.xs3+r.xn3+r.xs4;else if(5===s)r.t[r.p]=r.xs0+e+r.xs1+r.xn1+r.xs2+r.xn2+r.xs3+r.xn3+r.xs4+r.xn4+r.xs5;else{for(i=r.xs0+e+r.xs1,s=1;r.l>s;s++)i+=r["xn"+s]+r["xs"+(s+1)];r.t[r.p]=i}else-1===r.type?r.t[r.p]=r.xs0:r.setRatio&&r.setRatio(t);else r.t[r.p]=e+r.xs0;r=r._next}else for(;r;)2!==r.type?r.t[r.p]=r.b:r.setRatio(t),r=r._next;else for(;r;)2!==r.type?r.t[r.p]=r.e:r.setRatio(t),r=r._next},l._enableTransforms=function(t){this._transformType=t||3===this._transformType?3:2,this._transform=this._transform||be(this._target,r,!0)},l._linkCSSP=function(t,e,i,s){return t&&(e&&(e._prev=t),t._next&&(t._next._prev=t._prev),t._prev?t._prev._next=t._next:this._firstPT===t&&(this._firstPT=t._next,s=!0),i?i._next=t:s||null!==this._firstPT||(this._firstPT=t),t._next=e,t._prev=i),t},l._kill=function(e){var i,s,r,n=e;if(e.autoAlpha||e.alpha){n={};for(s in e)n[s]=e[s];n.opacity=1,n.autoAlpha&&(n.visibility=1)}return e.className&&(i=this._classNamePT)&&(r=i.xfirst,r&&r._prev?this._linkCSSP(r._prev,i._next,r._prev._prev):r===this._firstPT&&(this._firstPT=i._next),i._next&&this._linkCSSP(i._next,i._next._next,r._prev),this._classNamePT=null),t.prototype._kill.call(this,n)};var De=function(t,e,i){var s,r,n,a;if(t.slice)for(r=t.length;--r>-1;)De(t[r],e,i);else for(s=t.childNodes,r=s.length;--r>-1;)n=s[r],a=n.type,n.style&&(e.push($(n)),i&&i.push(n)),1!==a&&9!==a&&11!==a||!n.childNodes.length||De(n,e,i)};return a.cascadeTo=function(t,i,s){var r,n,a,o=e.to(t,i,s),l=[o],h=[],u=[],_=[],p=e._internals.reservedProps;for(t=o._targets||o.target,De(t,h,_),o.render(i,!0),De(t,u),o.render(0,!0),o._enabled(!0),r=_.length;--r>-1;)if(n=G(_[r],h[r],u[r]),n.firstMPT){n=n.difs;for(a in s)p[a]&&(n[a]=s[a]);l.push(e.to(_[r],i,n))}return l},t.activate([a]),a},!0)}),window._gsDefine&&window._gsQueue.pop()(); + +// WAIT FOR IMAGES +/* + * waitForImages 1.4 + * ----------------- + * Provides a callback when all images have loaded in your given selector. + * http://www.alexanderdickson.com/ + * + * + * Copyright (c) 2011 Alex Dickson + * Licensed under the MIT licenses. + * See website for more info. + * + */ + +(function(e,t){ + e.waitForImages={hasImageProperties:["backgroundImage","listStyleImage","borderImage","borderCornerImage"]};e.expr[":"].uncached=function(t){var n=document.createElement("img");n.src=t.src;return e(t).is('img[src!=""]')&&!n.complete};e.fn.waitForImages=function(t,n,r){if(e.isPlainObject(arguments[0])){n=t.each;r=t.waitForAll;t=t.finished}t=t||e.noop;n=n||e.noop;r=!!r;if(!e.isFunction(t)||!e.isFunction(n)){throw new TypeError("An invalid callback was supplied.")}return this.each(function(){var i=e(this),s=[];if(r){var o=e.waitForImages.hasImageProperties||[],u=/url\((['"]?)(.*?)\1\)/g;i.find("*").each(function(){var t=e(this);if(t.is("img:uncached")){s.push({src:t.attr("src"),element:t[0]})}e.each(o,function(e,n){var r=t.css(n);if(!r){return true}var i;while(i=u.exec(r)){s.push({src:i[2],element:t[0]})}})})}else{i.find("img:uncached").each(function(){s.push({src:this.src,element:this})})}var f=s.length,l=0;if(f==0){t.call(i[0])}e.each(s,function(r,s){var o=new Image;e(o).bind("load error",function(e){l++;n.call(s.element,l,f,e.type=="load");if(l==f){t.call(i[0]);return false}});o.src=s.src})})}; + e.fn.swipe=function(t){if(!this)return false;var n={fingers:1,threshold:75,swipe:null,swipeLeft:null,swipeRight:null,swipeUp:null,swipeDown:null,swipeStatus:null,click:null,triggerOnTouchEnd:true,allowPageScroll:"auto"};var r="left";var i="right";var s="up";var o="down";var u="none";var f="horizontal";var l="vertical";var c="auto";var h="start";var p="move";var d="end";var v="cancel";var m="ontouchstart"in window,g=m?"touchstart":"mousedown",y=m?"touchmove":"mousemove",b=m?"touchend":"mouseup",w="touchcancel";var E="start";if(t.allowPageScroll==undefined&&(t.swipe!=undefined||t.swipeStatus!=undefined))t.allowPageScroll=u;if(t)e.extend(n,t);return this.each(function(){function t(){var e=S();if(e<=45&&e>=0)return r;else if(e<=360&&e>=315)return r;else if(e>=135&&e<=225)return i;else if(e>45&&e<135)return o;else return s}function S(){var e=H.x-B.x;var t=B.y-H.y;var n=Math.atan2(t,e);var r=Math.round(n*180/Math.PI);if(r<0)r=360-Math.abs(r);return r}function x(){return Math.round(Math.sqrt(Math.pow(B.x-H.x,2)+Math.pow(B.y-H.y,2)))}function T(e,t){if(n.allowPageScroll==u){e.preventDefault()}else{var a=n.allowPageScroll==c;switch(t){case r:if(n.swipeLeft&&a||!a&&n.allowPageScroll!=f)e.preventDefault();break;case i:if(n.swipeRight&&a||!a&&n.allowPageScroll!=f)e.preventDefault();break;case s:if(n.swipeUp&&a||!a&&n.allowPageScroll!=l)e.preventDefault();break;case o:if(n.swipeDown&&a||!a&&n.allowPageScroll!=l)e.preventDefault();break}}}function N(e,t){if(n.swipeStatus)n.swipeStatus.call(_,e,t,direction||null,distance||0);if(t==v){if(n.click&&(P==1||!m)&&(isNaN(distance)||distance==0))n.click.call(_,e,e.target)}if(t==d){if(n.swipe){n.swipe.call(_,e,direction,distance)}switch(direction){case r:if(n.swipeLeft)n.swipeLeft.call(_,e,direction,distance);break;case i:if(n.swipeRight)n.swipeRight.call(_,e,direction,distance);break;case s:if(n.swipeUp)n.swipeUp.call(_,e,direction,distance);break;case o:if(n.swipeDown)n.swipeDown.call(_,e,direction,distance);break}}}function C(e){P=0;H.x=0;H.y=0;B.x=0;B.y=0;F.x=0;F.y=0}function L(e){e.preventDefault();distance=x();direction=t();if(n.triggerOnTouchEnd){E=d;if((P==n.fingers||!m)&&B.x!=0){if(distance>=n.threshold){N(e,E);C(e)}else{E=v;N(e,E);C(e)}}else{E=v;N(e,E);C(e)}}else if(E==p){E=v;N(e,E);C(e)}M.removeEventListener(y,A,false);M.removeEventListener(b,L,false)}function A(e){if(E==d||E==v)return;var r=m?e.touches[0]:e;B.x=r.pageX;B.y=r.pageY;direction=t();if(m){P=e.touches.length}E=p;T(e,direction);if(P==n.fingers||!m){distance=x();if(n.swipeStatus)N(e,E,direction,distance);if(!n.triggerOnTouchEnd){if(distance>=n.threshold){E=d;N(e,E);C(e)}}}else{E=v;N(e,E);C(e)}}function O(e){var t=m?e.touches[0]:e;E=h;if(m){P=e.touches.length}distance=0;direction=null;if(P==n.fingers||!m){H.x=B.x=t.pageX;H.y=B.y=t.pageY;if(n.swipeStatus)N(e,E)}else{C(e)}M.addEventListener(y,A,false);M.addEventListener(b,L,false)}var M=this;var _=e(this);var D=null;var P=0;var H={x:0,y:0};var B={x:0,y:0};var F={x:0,y:0};try{this.addEventListener(g,O,false);this.addEventListener(w,C)}catch(I){}})} +})(jQuery) diff --git a/ClientApp/app/jquery.plugins/jquery.themepunch.plugins.4.3.6.min.js b/ClientApp/app/jquery.plugins/jquery.themepunch.plugins.4.3.6.min.js new file mode 100644 index 00000000..18ce1729 --- /dev/null +++ b/ClientApp/app/jquery.plugins/jquery.themepunch.plugins.4.3.6.min.js @@ -0,0 +1,89 @@ + + +/******************************************** + - THEMEPUNCH TOOLS Ver. 1.0 - + Last Update of Tools 22.01.2013 +*********************************************/ + +/*! Hammer.JS - v1.0.5 - 2013-04-07 + * http://eightmedia.github.com/hammer.js + * + * Copyright (c) 2013 Jorik Tangelder ; + * Licensed under the MIT license */ + +(function(t,e){"use strict";function n(){if(!i.READY){i.event.determineEventTypes();for(var t in i.gestures)i.gestures.hasOwnProperty(t)&&i.detection.register(i.gestures[t]);i.event.onTouch(i.DOCUMENT,i.EVENT_MOVE,i.detection.detect),i.event.onTouch(i.DOCUMENT,i.EVENT_END,i.detection.detect),i.READY=!0}}var i=function(t,e){return new i.Instance(t,e||{})};i.defaults={stop_browser_behavior:{userSelect:"none",touchAction:"none",touchCallout:"none",contentZooming:"none",userDrag:"none",tapHighlightColor:"rgba(0,0,0,0)"}},i.HAS_POINTEREVENTS=navigator.pointerEnabled||navigator.msPointerEnabled,i.HAS_TOUCHEVENTS="ontouchstart"in t,i.MOBILE_REGEX=/mobile|tablet|ip(ad|hone|od)|android/i,i.NO_MOUSEEVENTS=i.HAS_TOUCHEVENTS&&navigator.userAgent.match(i.MOBILE_REGEX),i.EVENT_TYPES={},i.DIRECTION_DOWN="down",i.DIRECTION_LEFT="left",i.DIRECTION_UP="up",i.DIRECTION_RIGHT="right",i.POINTER_MOUSE="mouse",i.POINTER_TOUCH="touch",i.POINTER_PEN="pen",i.EVENT_START="start",i.EVENT_MOVE="move",i.EVENT_END="end",i.DOCUMENT=document,i.plugins={},i.READY=!1,i.Instance=function(t,e){var r=this;return n(),this.element=t,this.enabled=!0,this.options=i.utils.extend(i.utils.extend({},i.defaults),e||{}),this.options.stop_browser_behavior&&i.utils.stopDefaultBrowserBehavior(this.element,this.options.stop_browser_behavior),i.event.onTouch(t,i.EVENT_START,function(t){r.enabled&&i.detection.startDetect(r,t)}),this},i.Instance.prototype={on:function(t,e){for(var n=t.split(" "),i=0;n.length>i;i++)this.element.addEventListener(n[i],e,!1);return this},off:function(t,e){for(var n=t.split(" "),i=0;n.length>i;i++)this.element.removeEventListener(n[i],e,!1);return this},trigger:function(t,e){var n=i.DOCUMENT.createEvent("Event");n.initEvent(t,!0,!0),n.gesture=e;var r=this.element;return i.utils.hasParent(e.target,r)&&(r=e.target),r.dispatchEvent(n),this},enable:function(t){return this.enabled=t,this}};var r=null,o=!1,s=!1;i.event={bindDom:function(t,e,n){for(var i=e.split(" "),r=0;i.length>r;r++)t.addEventListener(i[r],n,!1)},onTouch:function(t,e,n){var a=this;this.bindDom(t,i.EVENT_TYPES[e],function(c){var u=c.type.toLowerCase();if(!u.match(/mouse/)||!s){(u.match(/touch/)||u.match(/pointerdown/)||u.match(/mouse/)&&1===c.which)&&(o=!0),u.match(/touch|pointer/)&&(s=!0);var h=0;o&&(i.HAS_POINTEREVENTS&&e!=i.EVENT_END?h=i.PointerEvent.updatePointer(e,c):u.match(/touch/)?h=c.touches.length:s||(h=u.match(/up/)?0:1),h>0&&e==i.EVENT_END?e=i.EVENT_MOVE:h||(e=i.EVENT_END),h||null===r?r=c:c=r,n.call(i.detection,a.collectEventData(t,e,c)),i.HAS_POINTEREVENTS&&e==i.EVENT_END&&(h=i.PointerEvent.updatePointer(e,c))),h||(r=null,o=!1,s=!1,i.PointerEvent.reset())}})},determineEventTypes:function(){var t;t=i.HAS_POINTEREVENTS?i.PointerEvent.getEvents():i.NO_MOUSEEVENTS?["touchstart","touchmove","touchend touchcancel"]:["touchstart mousedown","touchmove mousemove","touchend touchcancel mouseup"],i.EVENT_TYPES[i.EVENT_START]=t[0],i.EVENT_TYPES[i.EVENT_MOVE]=t[1],i.EVENT_TYPES[i.EVENT_END]=t[2]},getTouchList:function(t){return i.HAS_POINTEREVENTS?i.PointerEvent.getTouchList():t.touches?t.touches:[{identifier:1,pageX:t.pageX,pageY:t.pageY,target:t.target}]},collectEventData:function(t,e,n){var r=this.getTouchList(n,e),o=i.POINTER_TOUCH;return(n.type.match(/mouse/)||i.PointerEvent.matchType(i.POINTER_MOUSE,n))&&(o=i.POINTER_MOUSE),{center:i.utils.getCenter(r),timeStamp:(new Date).getTime(),target:n.target,touches:r,eventType:e,pointerType:o,srcEvent:n,preventDefault:function(){this.srcEvent.preventManipulation&&this.srcEvent.preventManipulation(),this.srcEvent.preventDefault&&this.srcEvent.preventDefault()},stopPropagation:function(){this.srcEvent.stopPropagation()},stopDetect:function(){return i.detection.stopDetect()}}}},i.PointerEvent={pointers:{},getTouchList:function(){var t=this,e=[];return Object.keys(t.pointers).sort().forEach(function(n){e.push(t.pointers[n])}),e},updatePointer:function(t,e){return t==i.EVENT_END?this.pointers={}:(e.identifier=e.pointerId,this.pointers[e.pointerId]=e),Object.keys(this.pointers).length},matchType:function(t,e){if(!e.pointerType)return!1;var n={};return n[i.POINTER_MOUSE]=e.pointerType==e.MSPOINTER_TYPE_MOUSE||e.pointerType==i.POINTER_MOUSE,n[i.POINTER_TOUCH]=e.pointerType==e.MSPOINTER_TYPE_TOUCH||e.pointerType==i.POINTER_TOUCH,n[i.POINTER_PEN]=e.pointerType==e.MSPOINTER_TYPE_PEN||e.pointerType==i.POINTER_PEN,n[t]},getEvents:function(){return["pointerdown MSPointerDown","pointermove MSPointerMove","pointerup pointercancel MSPointerUp MSPointerCancel"]},reset:function(){this.pointers={}}},i.utils={extend:function(t,n,i){for(var r in n)t[r]!==e&&i||(t[r]=n[r]);return t},hasParent:function(t,e){for(;t;){if(t==e)return!0;t=t.parentNode}return!1},getCenter:function(t){for(var e=[],n=[],i=0,r=t.length;r>i;i++)e.push(t[i].pageX),n.push(t[i].pageY);return{pageX:(Math.min.apply(Math,e)+Math.max.apply(Math,e))/2,pageY:(Math.min.apply(Math,n)+Math.max.apply(Math,n))/2}},getVelocity:function(t,e,n){return{x:Math.abs(e/t)||0,y:Math.abs(n/t)||0}},getAngle:function(t,e){var n=e.pageY-t.pageY,i=e.pageX-t.pageX;return 180*Math.atan2(n,i)/Math.PI},getDirection:function(t,e){var n=Math.abs(t.pageX-e.pageX),r=Math.abs(t.pageY-e.pageY);return n>=r?t.pageX-e.pageX>0?i.DIRECTION_LEFT:i.DIRECTION_RIGHT:t.pageY-e.pageY>0?i.DIRECTION_UP:i.DIRECTION_DOWN},getDistance:function(t,e){var n=e.pageX-t.pageX,i=e.pageY-t.pageY;return Math.sqrt(n*n+i*i)},getScale:function(t,e){return t.length>=2&&e.length>=2?this.getDistance(e[0],e[1])/this.getDistance(t[0],t[1]):1},getRotation:function(t,e){return t.length>=2&&e.length>=2?this.getAngle(e[1],e[0])-this.getAngle(t[1],t[0]):0},isVertical:function(t){return t==i.DIRECTION_UP||t==i.DIRECTION_DOWN},stopDefaultBrowserBehavior:function(t,e){var n,i=["webkit","khtml","moz","ms","o",""];if(e&&t.style){for(var r=0;i.length>r;r++)for(var o in e)e.hasOwnProperty(o)&&(n=o,i[r]&&(n=i[r]+n.substring(0,1).toUpperCase()+n.substring(1)),t.style[n]=e[o]);"none"==e.userSelect&&(t.onselectstart=function(){return!1})}}},i.detection={gestures:[],current:null,previous:null,stopped:!1,startDetect:function(t,e){this.current||(this.stopped=!1,this.current={inst:t,startEvent:i.utils.extend({},e),lastEvent:!1,name:""},this.detect(e))},detect:function(t){if(this.current&&!this.stopped){t=this.extendEventData(t);for(var e=this.current.inst.options,n=0,r=this.gestures.length;r>n;n++){var o=this.gestures[n];if(!this.stopped&&e[o.name]!==!1&&o.handler.call(o,t,this.current.inst)===!1){this.stopDetect();break}}return this.current&&(this.current.lastEvent=t),t.eventType==i.EVENT_END&&!t.touches.length-1&&this.stopDetect(),t}},stopDetect:function(){this.previous=i.utils.extend({},this.current),this.current=null,this.stopped=!0},extendEventData:function(t){var e=this.current.startEvent;if(e&&(t.touches.length!=e.touches.length||t.touches===e.touches)){e.touches=[];for(var n=0,r=t.touches.length;r>n;n++)e.touches.push(i.utils.extend({},t.touches[n]))}var o=t.timeStamp-e.timeStamp,s=t.center.pageX-e.center.pageX,a=t.center.pageY-e.center.pageY,c=i.utils.getVelocity(o,s,a);return i.utils.extend(t,{deltaTime:o,deltaX:s,deltaY:a,velocityX:c.x,velocityY:c.y,distance:i.utils.getDistance(e.center,t.center),angle:i.utils.getAngle(e.center,t.center),direction:i.utils.getDirection(e.center,t.center),scale:i.utils.getScale(e.touches,t.touches),rotation:i.utils.getRotation(e.touches,t.touches),startEvent:e}),t},register:function(t){var n=t.defaults||{};return n[t.name]===e&&(n[t.name]=!0),i.utils.extend(i.defaults,n,!0),t.index=t.index||1e3,this.gestures.push(t),this.gestures.sort(function(t,e){return t.index e.index?1:0}),this.gestures}},i.gestures=i.gestures||{},i.gestures.Hold={name:"hold",index:10,defaults:{hold_timeout:500,hold_threshold:1},timer:null,handler:function(t,e){switch(t.eventType){case i.EVENT_START:clearTimeout(this.timer),i.detection.current.name=this.name,this.timer=setTimeout(function(){"hold"==i.detection.current.name&&e.trigger("hold",t)},e.options.hold_timeout);break;case i.EVENT_MOVE:t.distance>e.options.hold_threshold&&clearTimeout(this.timer);break;case i.EVENT_END:clearTimeout(this.timer)}}},i.gestures.Tap={name:"tap",index:100,defaults:{tap_max_touchtime:250,tap_max_distance:10,tap_always:!0,doubletap_distance:20,doubletap_interval:300},handler:function(t,e){if(t.eventType==i.EVENT_END){var n=i.detection.previous,r=!1;if(t.deltaTime>e.options.tap_max_touchtime||t.distance>e.options.tap_max_distance)return;n&&"tap"==n.name&&t.timeStamp-n.lastEvent.timeStamp 0&&t.touches.length>e.options.swipe_max_touches)return;(t.velocityX>e.options.swipe_velocity||t.velocityY>e.options.swipe_velocity)&&(e.trigger(this.name,t),e.trigger(this.name+t.direction,t))}}},i.gestures.Drag={name:"drag",index:50,defaults:{drag_min_distance:10,drag_max_touches:1,drag_block_horizontal:!1,drag_block_vertical:!1,drag_lock_to_axis:!1,drag_lock_min_distance:25},triggered:!1,handler:function(t,n){if(i.detection.current.name!=this.name&&this.triggered)return n.trigger(this.name+"end",t),this.triggered=!1,e;if(!(n.options.drag_max_touches>0&&t.touches.length>n.options.drag_max_touches))switch(t.eventType){case i.EVENT_START:this.triggered=!1;break;case i.EVENT_MOVE:if(t.distance t.deltaY?i.DIRECTION_UP:i.DIRECTION_DOWN:0>t.deltaX?i.DIRECTION_LEFT:i.DIRECTION_RIGHT),this.triggered||(n.trigger(this.name+"start",t),this.triggered=!0),n.trigger(this.name,t),n.trigger(this.name+t.direction,t),(n.options.drag_block_vertical&&i.utils.isVertical(t.direction)||n.options.drag_block_horizontal&&!i.utils.isVertical(t.direction))&&t.preventDefault();break;case i.EVENT_END:this.triggered&&n.trigger(this.name+"end",t),this.triggered=!1}}},i.gestures.Transform={name:"transform",index:45,defaults:{transform_min_scale:.01,transform_min_rotation:1,transform_always_block:!1},triggered:!1,handler:function(t,n){if(i.detection.current.name!=this.name&&this.triggered)return n.trigger(this.name+"end",t),this.triggered=!1,e;if(!(2>t.touches.length))switch(n.options.transform_always_block&&t.preventDefault(),t.eventType){case i.EVENT_START:this.triggered=!1;break;case i.EVENT_MOVE:var r=Math.abs(1-t.scale),o=Math.abs(t.rotation);if(n.options.transform_min_scale>r&&n.options.transform_min_rotation>o)return;i.detection.current.name=this.name,this.triggered||(n.trigger(this.name+"start",t),this.triggered=!0),n.trigger(this.name,t),o>n.options.transform_min_rotation&&n.trigger("rotate",t),r>n.options.transform_min_scale&&(n.trigger("pinch",t),n.trigger("pinch"+(1>t.scale?"in":"out"),t));break;case i.EVENT_END:this.triggered&&n.trigger(this.name+"end",t),this.triggered=!1}}},i.gestures.Touch={name:"touch",index:-1/0,defaults:{prevent_default:!1,prevent_mouseevents:!1},handler:function(t,n){return n.options.prevent_mouseevents&&t.pointerType==i.POINTER_MOUSE?(t.stopDetect(),e):(n.options.prevent_default&&t.preventDefault(),t.eventType==i.EVENT_START&&n.trigger(this.name,t),e)}},i.gestures.Release={name:"release",index:1/0,handler:function(t,e){t.eventType==i.EVENT_END&&e.trigger(this.name,t)}},"object"==typeof module&&"object"==typeof module.exports?module.exports=i:(t.Hammer=i,"function"==typeof t.define&&t.define.amd&&t.define("hammer",[],function(){return i}))})(this),function(t,e){"use strict";t!==e&&(Hammer.event.bindDom=function(n,i,r){t(n).on(i,function(t){var n=t.originalEvent||t;n.pageX===e&&(n.pageX=t.pageX,n.pageY=t.pageY),n.target||(n.target=t.target),n.which===e&&(n.which=n.button),n.preventDefault||(n.preventDefault=t.preventDefault),n.stopPropagation||(n.stopPropagation=t.stopPropagation),r.call(this,n)})},Hammer.Instance.prototype.on=function(e,n){return t(this.element).on(e,n)},Hammer.Instance.prototype.off=function(e,n){return t(this.element).off(e,n)},Hammer.Instance.prototype.trigger=function(e,n){var i=t(this.element);return i.has(n.target).length&&(i=t(n.target)),i.trigger({type:e,gesture:n})},t.fn.hammer=function(e){return this.each(function(){var n=t(this),i=n.data("hammer");i?i&&e&&Hammer.utils.extend(i.options,e):n.data("hammer",new Hammer(this,e||{}))})})}(window.jQuery||window.Zepto); + + +/*! + * VERSION: 1.11.5 + * DATE: 2014-02-20 + * UPDATES AND DOCS AT: http://www.greensock.com + * + * @license Copyright (c) 2008-2014, GreenSock. All rights reserved. + * This work is subject to the terms at http://www.greensock.com/terms_of_use.html or for + * Club GreenSock members, the software agreement that was issued with your membership. + * + * @author: Jack Doyle, jack@greensock.com + */ +(function(t){"use strict";var e=t.GreenSockGlobals||t;if(!e.TweenLite){var i,s,r,n,a,o=function(t){var i,s=t.split("."),r=e;for(i=0;s.length>i;i++)r[s[i]]=r=r[s[i]]||{};return r},l=o("com.greensock"),h=1e-10,_=[].slice,u=function(){},m=function(){var t=Object.prototype.toString,e=t.call([]);return function(i){return null!=i&&(i instanceof Array||"object"==typeof i&&!!i.push&&t.call(i)===e)}}(),f={},p=function(i,s,r,n){this.sc=f[i]?f[i].sc:[],f[i]=this,this.gsClass=null,this.func=r;var a=[];this.check=function(l){for(var h,_,u,m,c=s.length,d=c;--c>-1;)(h=f[s[c]]||new p(s[c],[])).gsClass?(a[c]=h.gsClass,d--):l&&h.sc.push(this);if(0===d&&r)for(_=("com.greensock."+i).split("."),u=_.pop(),m=o(_.join("."))[u]=this.gsClass=r.apply(r,a),n&&(e[u]=m,"function"==typeof define&&define.amd?define((t.GreenSockAMDPath?t.GreenSockAMDPath+"/":"")+i.split(".").join("/"),[],function(){return m}):"undefined"!=typeof module&&module.exports&&(module.exports=m)),c=0;this.sc.length>c;c++)this.sc[c].check()},this.check(!0)},c=t._gsDefine=function(t,e,i,s){return new p(t,e,i,s)},d=l._class=function(t,e,i){return e=e||function(){},c(t,[],function(){return e},i),e};c.globals=e;var v=[0,0,1,1],g=[],T=d("easing.Ease",function(t,e,i,s){this._func=t,this._type=i||0,this._power=s||0,this._params=e?v.concat(e):v},!0),w=T.map={},P=T.register=function(t,e,i,s){for(var r,n,a,o,h=e.split(","),_=h.length,u=(i||"easeIn,easeOut,easeInOut").split(",");--_>-1;)for(n=h[_],r=s?d("easing."+n,null,!0):l.easing[n]||{},a=u.length;--a>-1;)o=u[a],w[n+"."+o]=w[o+n]=r[o]=t.getRatio?t:t[o]||new t};for(r=T.prototype,r._calcEnd=!1,r.getRatio=function(t){if(this._func)return this._params[0]=t,this._func.apply(null,this._params);var e=this._type,i=this._power,s=1===e?1-t:2===e?t:.5>t?2*t:2*(1-t);return 1===i?s*=s:2===i?s*=s*s:3===i?s*=s*s*s:4===i&&(s*=s*s*s*s),1===e?1-s:2===e?s:.5>t?s/2:1-s/2},i=["Linear","Quad","Cubic","Quart","Quint,Strong"],s=i.length;--s>-1;)r=i[s]+",Power"+s,P(new T(null,null,1,s),r,"easeOut",!0),P(new T(null,null,2,s),r,"easeIn"+(0===s?",easeNone":"")),P(new T(null,null,3,s),r,"easeInOut");w.linear=l.easing.Linear.easeIn,w.swing=l.easing.Quad.easeInOut;var y=d("events.EventDispatcher",function(t){this._listeners={},this._eventTarget=t||this});r=y.prototype,r.addEventListener=function(t,e,i,s,r){r=r||0;var o,l,h=this._listeners[t],_=0;for(null==h&&(this._listeners[t]=h=[]),l=h.length;--l>-1;)o=h[l],o.c===e&&o.s===i?h.splice(l,1):0===_&&r>o.pr&&(_=l+1);h.splice(_,0,{c:e,s:i,up:s,pr:r}),this!==n||a||n.wake()},r.removeEventListener=function(t,e){var i,s=this._listeners[t];if(s)for(i=s.length;--i>-1;)if(s[i].c===e)return s.splice(i,1),void 0},r.dispatchEvent=function(t){var e,i,s,r=this._listeners[t];if(r)for(e=r.length,i=this._eventTarget;--e>-1;)s=r[e],s.up?s.c.call(s.s||i,{type:t,target:i}):s.c.call(s.s||i)};var b=t.requestAnimationFrame,k=t.cancelAnimationFrame,A=Date.now||function(){return(new Date).getTime()},S=A();for(i=["ms","moz","webkit","o"],s=i.length;--s>-1&&!b;)b=t[i[s]+"RequestAnimationFrame"],k=t[i[s]+"CancelAnimationFrame"]||t[i[s]+"CancelRequestAnimationFrame"];d("Ticker",function(t,e){var i,s,r,o,l,h=this,_=A(),m=e!==!1&&b,f=function(t){S=A(),h.time=(S-_)/1e3;var e,n=h.time-l;(!i||n>0||t===!0)&&(h.frame++,l+=n+(n>=o?.004:o-n),e=!0),t!==!0&&(r=s(f)),e&&h.dispatchEvent("tick")};y.call(h),h.time=h.frame=0,h.tick=function(){f(!0)},h.sleep=function(){null!=r&&(m&&k?k(r):clearTimeout(r),s=u,r=null,h===n&&(a=!1))},h.wake=function(){null!==r&&h.sleep(),s=0===i?u:m&&b?b:function(t){return setTimeout(t,0|1e3*(l-h.time)+1)},h===n&&(a=!0),f(2)},h.fps=function(t){return arguments.length?(i=t,o=1/(i||60),l=this.time+o,h.wake(),void 0):i},h.useRAF=function(t){return arguments.length?(h.sleep(),m=t,h.fps(i),void 0):m},h.fps(t),setTimeout(function(){m&&(!r||5>h.frame)&&h.useRAF(!1)},1500)}),r=l.Ticker.prototype=new l.events.EventDispatcher,r.constructor=l.Ticker;var x=d("core.Animation",function(t,e){if(this.vars=e=e||{},this._duration=this._totalDuration=t||0,this._delay=Number(e.delay)||0,this._timeScale=1,this._active=e.immediateRender===!0,this.data=e.data,this._reversed=e.reversed===!0,Q){a||n.wake();var i=this.vars.useFrames?G:Q;i.add(this,i._time),this.vars.paused&&this.paused(!0)}});n=x.ticker=new l.Ticker,r=x.prototype,r._dirty=r._gc=r._initted=r._paused=!1,r._totalTime=r._time=0,r._rawPrevTime=-1,r._next=r._last=r._onUpdate=r._timeline=r.timeline=null,r._paused=!1;var C=function(){a&&A()-S>2e3&&n.wake(),setTimeout(C,2e3)};C(),r.play=function(t,e){return arguments.length&&this.seek(t,e),this.reversed(!1).paused(!1)},r.pause=function(t,e){return arguments.length&&this.seek(t,e),this.paused(!0)},r.resume=function(t,e){return arguments.length&&this.seek(t,e),this.paused(!1)},r.seek=function(t,e){return this.totalTime(Number(t),e!==!1)},r.restart=function(t,e){return this.reversed(!1).paused(!1).totalTime(t?-this._delay:0,e!==!1,!0)},r.reverse=function(t,e){return arguments.length&&this.seek(t||this.totalDuration(),e),this.reversed(!0).paused(!1)},r.render=function(){},r.invalidate=function(){return this},r.isActive=function(){var t,e=this._timeline,i=this._startTime;return!e||!this._gc&&!this._paused&&e.isActive()&&(t=e.rawTime())>=i&&i+this.totalDuration()/this._timeScale>t},r._enabled=function(t,e){return a||n.wake(),this._gc=!t,this._active=this.isActive(),e!==!0&&(t&&!this.timeline?this._timeline.add(this,this._startTime-this._delay):!t&&this.timeline&&this._timeline._remove(this,!0)),!1},r._kill=function(){return this._enabled(!1,!1)},r.kill=function(t,e){return this._kill(t,e),this},r._uncache=function(t){for(var e=t?this:this.timeline;e;)e._dirty=!0,e=e.timeline;return this},r._swapSelfInParams=function(t){for(var e=t.length,i=t.concat();--e>-1;)"{self}"===t[e]&&(i[e]=this);return i},r.eventCallback=function(t,e,i,s){if("on"===(t||"").substr(0,2)){var r=this.vars;if(1===arguments.length)return r[t];null==e?delete r[t]:(r[t]=e,r[t+"Params"]=m(i)&&-1!==i.join("").indexOf("{self}")?this._swapSelfInParams(i):i,r[t+"Scope"]=s),"onUpdate"===t&&(this._onUpdate=e)}return this},r.delay=function(t){return arguments.length?(this._timeline.smoothChildTiming&&this.startTime(this._startTime+t-this._delay),this._delay=t,this):this._delay},r.duration=function(t){return arguments.length?(this._duration=this._totalDuration=t,this._uncache(!0),this._timeline.smoothChildTiming&&this._time>0&&this._time this._duration?this._duration:t,e)):this._time},r.totalTime=function(t,e,i){if(a||n.wake(),!arguments.length)return this._totalTime;if(this._timeline){if(0>t&&!i&&(t+=this.totalDuration()),this._timeline.smoothChildTiming){this._dirty&&this.totalDuration();var s=this._totalDuration,r=this._timeline;if(t>s&&!i&&(t=s),this._startTime=(this._paused?this._pauseTime:r._time)-(this._reversed?s-t:t)/this._timeScale,r._dirty||this._uncache(!1),r._timeline)for(;r._timeline;)r._timeline._time!==(r._startTime+r._totalTime)/r._timeScale&&r.totalTime(r._totalTime,!0),r=r._timeline}this._gc&&this._enabled(!0,!1),(this._totalTime!==t||0===this._duration)&&this.render(t,e,!1)}return this},r.progress=r.totalProgress=function(t,e){return arguments.length?this.totalTime(this.duration()*t,e):this._time/this.duration()},r.startTime=function(t){return arguments.length?(t!==this._startTime&&(this._startTime=t,this.timeline&&this.timeline._sortChildren&&this.timeline.add(this,t-this._delay)),this):this._startTime},r.timeScale=function(t){if(!arguments.length)return this._timeScale;if(t=t||h,this._timeline&&this._timeline.smoothChildTiming){var e=this._pauseTime,i=e||0===e?e:this._timeline.totalTime();this._startTime=i-(i-this._startTime)*this._timeScale/t}return this._timeScale=t,this._uncache(!1)},r.reversed=function(t){return arguments.length?(t!=this._reversed&&(this._reversed=t,this.totalTime(this._timeline&&!this._timeline.smoothChildTiming?this.totalDuration()-this._totalTime:this._totalTime,!0)),this):this._reversed},r.paused=function(t){if(!arguments.length)return this._paused;if(t!=this._paused&&this._timeline){a||t||n.wake();var e=this._timeline,i=e.rawTime(),s=i-this._pauseTime;!t&&e.smoothChildTiming&&(this._startTime+=s,this._uncache(!1)),this._pauseTime=t?i:null,this._paused=t,this._active=this.isActive(),!t&&0!==s&&this._initted&&this.duration()&&this.render(e.smoothChildTiming?this._totalTime:(i-this._startTime)/this._timeScale,!0,!0)}return this._gc&&!t&&this._enabled(!0,!1),this};var R=d("core.SimpleTimeline",function(t){x.call(this,0,t),this.autoRemoveChildren=this.smoothChildTiming=!0});r=R.prototype=new x,r.constructor=R,r.kill()._gc=!1,r._first=r._last=null,r._sortChildren=!1,r.add=r.insert=function(t,e){var i,s;if(t._startTime=Number(e||0)+t._delay,t._paused&&this!==t._timeline&&(t._pauseTime=t._startTime+(this.rawTime()-t._startTime)/t._timeScale),t.timeline&&t.timeline._remove(t,!0),t.timeline=t._timeline=this,t._gc&&t._enabled(!0,!0),i=this._last,this._sortChildren)for(s=t._startTime;i&&i._startTime>s;)i=i._prev;return i?(t._next=i._next,i._next=t):(t._next=this._first,this._first=t),t._next?t._next._prev=t:this._last=t,t._prev=i,this._timeline&&this._uncache(!0),this},r._remove=function(t,e){return t.timeline===this&&(e||t._enabled(!1,!0),t.timeline=null,t._prev?t._prev._next=t._next:this._first===t&&(this._first=t._next),t._next?t._next._prev=t._prev:this._last===t&&(this._last=t._prev),this._timeline&&this._uncache(!0)),this},r.render=function(t,e,i){var s,r=this._first;for(this._totalTime=this._time=this._rawPrevTime=t;r;)s=r._next,(r._active||t>=r._startTime&&!r._paused)&&(r._reversed?r.render((r._dirty?r.totalDuration():r._totalDuration)-(t-r._startTime)*r._timeScale,e,i):r.render((t-r._startTime)*r._timeScale,e,i)),r=s},r.rawTime=function(){return a||n.wake(),this._totalTime};var D=d("TweenLite",function(e,i,s){if(x.call(this,i,s),this.render=D.prototype.render,null==e)throw"Cannot tween a null target.";this.target=e="string"!=typeof e?e:D.selector(e)||e;var r,n,a,o=e.jquery||e.length&&e!==t&&e[0]&&(e[0]===t||e[0].nodeType&&e[0].style&&!e.nodeType),l=this.vars.overwrite;if(this._overwrite=l=null==l?j[D.defaultOverwrite]:"number"==typeof l?l>>0:j[l],(o||e instanceof Array||e.push&&m(e))&&"number"!=typeof e[0])for(this._targets=a=_.call(e,0),this._propLookup=[],this._siblings=[],r=0;a.length>r;r++)n=a[r],n?"string"!=typeof n?n.length&&n!==t&&n[0]&&(n[0]===t||n[0].nodeType&&n[0].style&&!n.nodeType)?(a.splice(r--,1),this._targets=a=a.concat(_.call(n,0))):(this._siblings[r]=B(n,this,!1),1===l&&this._siblings[r].length>1&&q(n,this,null,1,this._siblings[r])):(n=a[r--]=D.selector(n),"string"==typeof n&&a.splice(r+1,1)):a.splice(r--,1);else this._propLookup={},this._siblings=B(e,this,!1),1===l&&this._siblings.length>1&&q(e,this,null,1,this._siblings);(this.vars.immediateRender||0===i&&0===this._delay&&this.vars.immediateRender!==!1)&&this.render(-this._delay,!1,!0)},!0),E=function(e){return e.length&&e!==t&&e[0]&&(e[0]===t||e[0].nodeType&&e[0].style&&!e.nodeType)},I=function(t,e){var i,s={};for(i in t)F[i]||i in e&&"x"!==i&&"y"!==i&&"width"!==i&&"height"!==i&&"className"!==i&&"border"!==i||!(!N[i]||N[i]&&N[i]._autoCSS)||(s[i]=t[i],delete t[i]);t.css=s};r=D.prototype=new x,r.constructor=D,r.kill()._gc=!1,r.ratio=0,r._firstPT=r._targets=r._overwrittenProps=r._startAt=null,r._notifyPluginsOfEnabled=!1,D.version="1.11.5",D.defaultEase=r._ease=new T(null,null,1,1),D.defaultOverwrite="auto",D.ticker=n,D.autoSleep=!0,D.selector=t.$||t.jQuery||function(e){return t.$?(D.selector=t.$,t.$(e)):t.document?t.document.getElementById("#"===e.charAt(0)?e.substr(1):e):e};var O=D._internals={isArray:m,isSelector:E},N=D._plugins={},L=D._tweenLookup={},U=0,F=O.reservedProps={ease:1,delay:1,overwrite:1,onComplete:1,onCompleteParams:1,onCompleteScope:1,useFrames:1,runBackwards:1,startAt:1,onUpdate:1,onUpdateParams:1,onUpdateScope:1,onStart:1,onStartParams:1,onStartScope:1,onReverseComplete:1,onReverseCompleteParams:1,onReverseCompleteScope:1,onRepeat:1,onRepeatParams:1,onRepeatScope:1,easeParams:1,yoyo:1,immediateRender:1,repeat:1,repeatDelay:1,data:1,paused:1,reversed:1,autoCSS:1},j={none:0,all:1,auto:2,concurrent:3,allOnStart:4,preexisting:5,"true":1,"false":0},G=x._rootFramesTimeline=new R,Q=x._rootTimeline=new R;Q._startTime=n.time,G._startTime=n.frame,Q._active=G._active=!0,x._updateRoot=function(){if(Q.render((n.time-Q._startTime)*Q._timeScale,!1,!1),G.render((n.frame-G._startTime)*G._timeScale,!1,!1),!(n.frame%120)){var t,e,i;for(i in L){for(e=L[i].tweens,t=e.length;--t>-1;)e[t]._gc&&e.splice(t,1);0===e.length&&delete L[i]}if(i=Q._first,(!i||i._paused)&&D.autoSleep&&!G._first&&1===n._listeners.tick.length){for(;i&&i._paused;)i=i._next;i||n.sleep()}}},n.addEventListener("tick",x._updateRoot);var B=function(t,e,i){var s,r,n=t._gsTweenID;if(L[n||(t._gsTweenID=n="t"+U++)]||(L[n]={target:t,tweens:[]}),e&&(s=L[n].tweens,s[r=s.length]=e,i))for(;--r>-1;)s[r]===e&&s.splice(r,1);return L[n].tweens},q=function(t,e,i,s,r){var n,a,o,l;if(1===s||s>=4){for(l=r.length,n=0;l>n;n++)if((o=r[n])!==e)o._gc||o._enabled(!1,!1)&&(a=!0);else if(5===s)break;return a}var _,u=e._startTime+h,m=[],f=0,p=0===e._duration;for(n=r.length;--n>-1;)(o=r[n])===e||o._gc||o._paused||(o._timeline!==e._timeline?(_=_||$(e,0,p),0===$(o,_,p)&&(m[f++]=o)):u>=o._startTime&&o._startTime+o.totalDuration()/o._timeScale>u&&((p||!o._initted)&&2e-10>=u-o._startTime||(m[f++]=o)));for(n=f;--n>-1;)o=m[n],2===s&&o._kill(i,t)&&(a=!0),(2!==s||!o._firstPT&&o._initted)&&o._enabled(!1,!1)&&(a=!0);return a},$=function(t,e,i){for(var s=t._timeline,r=s._timeScale,n=t._startTime;s._timeline;){if(n+=s._startTime,r*=s._timeScale,s._paused)return-100;s=s._timeline}return n/=r,n>e?n-e:i&&n===e||!t._initted&&2*h>n-e?h:(n+=t.totalDuration()/t._timeScale/r)>e+h?0:n-e-h};r._init=function(){var t,e,i,s,r=this.vars,n=this._overwrittenProps,a=this._duration,o=r.immediateRender,l=r.ease;if(r.startAt){if(this._startAt&&this._startAt.render(-1,!0),r.startAt.overwrite=0,r.startAt.immediateRender=!0,this._startAt=D.to(this.target,0,r.startAt),o)if(this._time>0)this._startAt=null;else if(0!==a)return}else if(r.runBackwards&&0!==a)if(this._startAt)this._startAt.render(-1,!0),this._startAt=null;else{i={};for(s in r)F[s]&&"autoCSS"!==s||(i[s]=r[s]);if(i.overwrite=0,i.data="isFromStart",this._startAt=D.to(this.target,0,i),r.immediateRender){if(0===this._time)return}else this._startAt.render(-1,!0)}if(this._ease=l?l instanceof T?r.easeParams instanceof Array?l.config.apply(l,r.easeParams):l:"function"==typeof l?new T(l,r.easeParams):w[l]||D.defaultEase:D.defaultEase,this._easeType=this._ease._type,this._easePower=this._ease._power,this._firstPT=null,this._targets)for(t=this._targets.length;--t>-1;)this._initProps(this._targets[t],this._propLookup[t]={},this._siblings[t],n?n[t]:null)&&(e=!0);else e=this._initProps(this.target,this._propLookup,this._siblings,n);if(e&&D._onPluginEvent("_onInitAllProps",this),n&&(this._firstPT||"function"!=typeof this.target&&this._enabled(!1,!1)),r.runBackwards)for(i=this._firstPT;i;)i.s+=i.c,i.c=-i.c,i=i._next;this._onUpdate=r.onUpdate,this._initted=!0},r._initProps=function(e,i,s,r){var n,a,o,l,h,_;if(null==e)return!1;this.vars.css||e.style&&e!==t&&e.nodeType&&N.css&&this.vars.autoCSS!==!1&&I(this.vars,e);for(n in this.vars){if(_=this.vars[n],F[n])_&&(_ instanceof Array||_.push&&m(_))&&-1!==_.join("").indexOf("{self}")&&(this.vars[n]=_=this._swapSelfInParams(_,this));else if(N[n]&&(l=new N[n])._onInitTween(e,this.vars[n],this)){for(this._firstPT=h={_next:this._firstPT,t:l,p:"setRatio",s:0,c:1,f:!0,n:n,pg:!0,pr:l._priority},a=l._overwriteProps.length;--a>-1;)i[l._overwriteProps[a]]=this._firstPT;(l._priority||l._onInitAllProps)&&(o=!0),(l._onDisable||l._onEnable)&&(this._notifyPluginsOfEnabled=!0)}else this._firstPT=i[n]=h={_next:this._firstPT,t:e,p:n,f:"function"==typeof e[n],n:n,pg:!1,pr:0},h.s=h.f?e[n.indexOf("set")||"function"!=typeof e["get"+n.substr(3)]?n:"get"+n.substr(3)]():parseFloat(e[n]),h.c="string"==typeof _&&"="===_.charAt(1)?parseInt(_.charAt(0)+"1",10)*Number(_.substr(2)):Number(_)-h.s||0;h&&h._next&&(h._next._prev=h)}return r&&this._kill(r,e)?this._initProps(e,i,s,r):this._overwrite>1&&this._firstPT&&s.length>1&&q(e,this,i,this._overwrite,s)?(this._kill(i,e),this._initProps(e,i,s,r)):o},r.render=function(t,e,i){var s,r,n,a,o=this._time,l=this._duration;if(t>=l)this._totalTime=this._time=l,this.ratio=this._ease._calcEnd?this._ease.getRatio(1):1,this._reversed||(s=!0,r="onComplete"),0===l&&(a=this._rawPrevTime,(0===t||0>a||a===h)&&a!==t&&(i=!0,a>h&&(r="onReverseComplete")),this._rawPrevTime=a=!e||t||0===a?t:h);else if(1e-7>t)this._totalTime=this._time=0,this.ratio=this._ease._calcEnd?this._ease.getRatio(0):0,(0!==o||0===l&&this._rawPrevTime>h)&&(r="onReverseComplete",s=this._reversed),0>t?(this._active=!1,0===l&&(this._rawPrevTime>=0&&(i=!0),this._rawPrevTime=a=!e||t||0===this._rawPrevTime?t:h)):this._initted||(i=!0);else if(this._totalTime=this._time=t,this._easeType){var _=t/l,u=this._easeType,m=this._easePower;(1===u||3===u&&_>=.5)&&(_=1-_),3===u&&(_*=2),1===m?_*=_:2===m?_*=_*_:3===m?_*=_*_*_:4===m&&(_*=_*_*_*_),this.ratio=1===u?1-_:2===u?_:.5>t/l?_/2:1-_/2}else this.ratio=this._ease.getRatio(t/l);if(this._time!==o||i){if(!this._initted){if(this._init(),!this._initted||this._gc)return;this._time&&!s?this.ratio=this._ease.getRatio(this._time/l):s&&this._ease._calcEnd&&(this.ratio=this._ease.getRatio(0===this._time?0:1))}for(this._active||!this._paused&&this._time!==o&&t>=0&&(this._active=!0),0===o&&(this._startAt&&(t>=0?this._startAt.render(t,e,i):r||(r="_dummyGS")),this.vars.onStart&&(0!==this._time||0===l)&&(e||this.vars.onStart.apply(this.vars.onStartScope||this,this.vars.onStartParams||g))),n=this._firstPT;n;)n.f?n.t[n.p](n.c*this.ratio+n.s):n.t[n.p]=n.c*this.ratio+n.s,n=n._next;this._onUpdate&&(0>t&&this._startAt&&this._startTime&&this._startAt.render(t,e,i),e||(this._time!==o||s)&&this._onUpdate.apply(this.vars.onUpdateScope||this,this.vars.onUpdateParams||g)),r&&(this._gc||(0>t&&this._startAt&&!this._onUpdate&&this._startTime&&this._startAt.render(t,e,i),s&&(this._timeline.autoRemoveChildren&&this._enabled(!1,!1),this._active=!1),!e&&this.vars[r]&&this.vars[r].apply(this.vars[r+"Scope"]||this,this.vars[r+"Params"]||g),0===l&&this._rawPrevTime===h&&a!==h&&(this._rawPrevTime=0)))}},r._kill=function(t,e){if("all"===t&&(t=null),null==t&&(null==e||e===this.target))return this._enabled(!1,!1);e="string"!=typeof e?e||this._targets||this.target:D.selector(e)||e;var i,s,r,n,a,o,l,h;if((m(e)||E(e))&&"number"!=typeof e[0])for(i=e.length;--i>-1;)this._kill(t,e[i])&&(o=!0);else{if(this._targets){for(i=this._targets.length;--i>-1;)if(e===this._targets[i]){a=this._propLookup[i]||{},this._overwrittenProps=this._overwrittenProps||[],s=this._overwrittenProps[i]=t?this._overwrittenProps[i]||{}:"all";break}}else{if(e!==this.target)return!1;a=this._propLookup,s=this._overwrittenProps=t?this._overwrittenProps||{}:"all"}if(a){l=t||a,h=t!==s&&"all"!==s&&t!==a&&("object"!=typeof t||!t._tempKill);for(r in l)(n=a[r])&&(n.pg&&n.t._kill(l)&&(o=!0),n.pg&&0!==n.t._overwriteProps.length||(n._prev?n._prev._next=n._next:n===this._firstPT&&(this._firstPT=n._next),n._next&&(n._next._prev=n._prev),n._next=n._prev=null),delete a[r]),h&&(s[r]=1);!this._firstPT&&this._initted&&this._enabled(!1,!1)}}return o},r.invalidate=function(){return this._notifyPluginsOfEnabled&&D._onPluginEvent("_onDisable",this),this._firstPT=null,this._overwrittenProps=null,this._onUpdate=null,this._startAt=null,this._initted=this._active=this._notifyPluginsOfEnabled=!1,this._propLookup=this._targets?{}:[],this},r._enabled=function(t,e){if(a||n.wake(),t&&this._gc){var i,s=this._targets;if(s)for(i=s.length;--i>-1;)this._siblings[i]=B(s[i],this,!0);else this._siblings=B(this.target,this,!0)}return x.prototype._enabled.call(this,t,e),this._notifyPluginsOfEnabled&&this._firstPT?D._onPluginEvent(t?"_onEnable":"_onDisable",this):!1},D.to=function(t,e,i){return new D(t,e,i)},D.from=function(t,e,i){return i.runBackwards=!0,i.immediateRender=0!=i.immediateRender,new D(t,e,i)},D.fromTo=function(t,e,i,s){return s.startAt=i,s.immediateRender=0!=s.immediateRender&&0!=i.immediateRender,new D(t,e,s)},D.delayedCall=function(t,e,i,s,r){return new D(e,0,{delay:t,onComplete:e,onCompleteParams:i,onCompleteScope:s,onReverseComplete:e,onReverseCompleteParams:i,onReverseCompleteScope:s,immediateRender:!1,useFrames:r,overwrite:0})},D.set=function(t,e){return new D(t,0,e)},D.getTweensOf=function(t,e){if(null==t)return[];t="string"!=typeof t?t:D.selector(t)||t;var i,s,r,n;if((m(t)||E(t))&&"number"!=typeof t[0]){for(i=t.length,s=[];--i>-1;)s=s.concat(D.getTweensOf(t[i],e));for(i=s.length;--i>-1;)for(n=s[i],r=i;--r>-1;)n===s[r]&&s.splice(i,1)}else for(s=B(t).concat(),i=s.length;--i>-1;)(s[i]._gc||e&&!s[i].isActive())&&s.splice(i,1);return s},D.killTweensOf=D.killDelayedCallsTo=function(t,e,i){"object"==typeof e&&(i=e,e=!1);for(var s=D.getTweensOf(t,e),r=s.length;--r>-1;)s[r]._kill(i,t)};var M=d("plugins.TweenPlugin",function(t,e){this._overwriteProps=(t||"").split(","),this._propName=this._overwriteProps[0],this._priority=e||0,this._super=M.prototype},!0);if(r=M.prototype,M.version="1.10.1",M.API=2,r._firstPT=null,r._addTween=function(t,e,i,s,r,n){var a,o;return null!=s&&(a="number"==typeof s||"="!==s.charAt(1)?Number(s)-i:parseInt(s.charAt(0)+"1",10)*Number(s.substr(2)))?(this._firstPT=o={_next:this._firstPT,t:t,p:e,s:i,c:a,f:"function"==typeof t[e],n:r||e,r:n},o._next&&(o._next._prev=o),o):void 0},r.setRatio=function(t){for(var e,i=this._firstPT,s=1e-6;i;)e=i.c*t+i.s,i.r?e=0|e+(e>0?.5:-.5):s>e&&e>-s&&(e=0),i.f?i.t[i.p](e):i.t[i.p]=e,i=i._next},r._kill=function(t){var e,i=this._overwriteProps,s=this._firstPT;if(null!=t[this._propName])this._overwriteProps=[];else for(e=i.length;--e>-1;)null!=t[i[e]]&&i.splice(e,1);for(;s;)null!=t[s.n]&&(s._next&&(s._next._prev=s._prev),s._prev?(s._prev._next=s._next,s._prev=null):this._firstPT===s&&(this._firstPT=s._next)),s=s._next;return!1},r._roundProps=function(t,e){for(var i=this._firstPT;i;)(t[this._propName]||null!=i.n&&t[i.n.split(this._propName+"_").join("")])&&(i.r=e),i=i._next},D._onPluginEvent=function(t,e){var i,s,r,n,a,o=e._firstPT;if("_onInitAllProps"===t){for(;o;){for(a=o._next,s=r;s&&s.pr>o.pr;)s=s._next;(o._prev=s?s._prev:n)?o._prev._next=o:r=o,(o._next=s)?s._prev=o:n=o,o=a}o=e._firstPT=r}for(;o;)o.pg&&"function"==typeof o.t[t]&&o.t[t]()&&(i=!0),o=o._next;return i},M.activate=function(t){for(var e=t.length;--e>-1;)t[e].API===M.API&&(N[(new t[e])._propName]=t[e]);return!0},c.plugin=function(t){if(!(t&&t.propName&&t.init&&t.API))throw"illegal plugin definition.";var e,i=t.propName,s=t.priority||0,r=t.overwriteProps,n={init:"_onInitTween",set:"setRatio",kill:"_kill",round:"_roundProps",initAll:"_onInitAllProps"},a=d("plugins."+i.charAt(0).toUpperCase()+i.substr(1)+"Plugin",function(){M.call(this,i,s),this._overwriteProps=r||[]},t.global===!0),o=a.prototype=new M(i);o.constructor=a,a.API=t.API;for(e in n)"function"==typeof t[e]&&(o[n[e]]=t[e]);return a.version=t.version,M.activate([a]),a},i=t._gsQueue){for(s=0;i.length>s;s++)i[s]();for(r in f)f[r].func||t.console.log("GSAP encountered missing dependency: com.greensock."+r)}a=!1}})(window); + + +/*! + * VERSION: 1.11.5 + * DATE: 2014-02-20 + * UPDATES AND DOCS AT: http://www.greensock.com + * + * @license Copyright (c) 2008-2014, GreenSock. All rights reserved. + * This work is subject to the terms at http://www.greensock.com/terms_of_use.html or for + * Club GreenSock members, the software agreement that was issued with your membership. + * + * @author: Jack Doyle, jack@greensock.com + */ +(window._gsQueue||(window._gsQueue=[])).push(function(){"use strict";window._gsDefine("TimelineLite",["core.Animation","core.SimpleTimeline","TweenLite"],function(t,e,i){var s=function(t){e.call(this,t),this._labels={},this.autoRemoveChildren=this.vars.autoRemoveChildren===!0,this.smoothChildTiming=this.vars.smoothChildTiming===!0,this._sortChildren=!0,this._onUpdate=this.vars.onUpdate;var i,s,r=this.vars;for(s in r)i=r[s],a(i)&&-1!==i.join("").indexOf("{self}")&&(r[s]=this._swapSelfInParams(i));a(r.tweens)&&this.add(r.tweens,0,r.align,r.stagger)},r=1e-10,n=i._internals.isSelector,a=i._internals.isArray,o=[],h=function(t){var e,i={};for(e in t)i[e]=t[e];return i},l=function(t,e,i,s){t._timeline.pause(t._startTime),e&&e.apply(s||t._timeline,i||o)},_=o.slice,u=s.prototype=new e;return s.version="1.11.5",u.constructor=s,u.kill()._gc=!1,u.to=function(t,e,s,r){return e?this.add(new i(t,e,s),r):this.set(t,s,r)},u.from=function(t,e,s,r){return this.add(i.from(t,e,s),r)},u.fromTo=function(t,e,s,r,n){return e?this.add(i.fromTo(t,e,s,r),n):this.set(t,r,n)},u.staggerTo=function(t,e,r,a,o,l,u,p){var f,c=new s({onComplete:l,onCompleteParams:u,onCompleteScope:p,smoothChildTiming:this.smoothChildTiming});for("string"==typeof t&&(t=i.selector(t)||t),n(t)&&(t=_.call(t,0)),a=a||0,f=0;t.length>f;f++)r.startAt&&(r.startAt=h(r.startAt)),c.to(t[f],e,h(r),f*a);return this.add(c,o)},u.staggerFrom=function(t,e,i,s,r,n,a,o){return i.immediateRender=0!=i.immediateRender,i.runBackwards=!0,this.staggerTo(t,e,i,s,r,n,a,o)},u.staggerFromTo=function(t,e,i,s,r,n,a,o,h){return s.startAt=i,s.immediateRender=0!=s.immediateRender&&0!=i.immediateRender,this.staggerTo(t,e,s,r,n,a,o,h)},u.call=function(t,e,s,r){return this.add(i.delayedCall(0,t,e,s),r)},u.set=function(t,e,s){return s=this._parseTimeOrLabel(s,0,!0),null==e.immediateRender&&(e.immediateRender=s===this._time&&!this._paused),this.add(new i(t,0,e),s)},s.exportRoot=function(t,e){t=t||{},null==t.smoothChildTiming&&(t.smoothChildTiming=!0);var r,n,a=new s(t),o=a._timeline;for(null==e&&(e=!0),o._remove(a,!0),a._startTime=0,a._rawPrevTime=a._time=a._totalTime=o._time,r=o._first;r;)n=r._next,e&&r instanceof i&&r.target===r.vars.onComplete||a.add(r,r._startTime-r._delay),r=n;return o.add(a,0),a},u.add=function(r,n,o,h){var l,_,u,p,f,c;if("number"!=typeof n&&(n=this._parseTimeOrLabel(n,0,!0,r)),!(r instanceof t)){if(r instanceof Array||r&&r.push&&a(r)){for(o=o||"normal",h=h||0,l=n,_=r.length,u=0;_>u;u++)a(p=r[u])&&(p=new s({tweens:p})),this.add(p,l),"string"!=typeof p&&"function"!=typeof p&&("sequence"===o?l=p._startTime+p.totalDuration()/p._timeScale:"start"===o&&(p._startTime-=p.delay())),l+=h;return this._uncache(!0)}if("string"==typeof r)return this.addLabel(r,n);if("function"!=typeof r)throw"Cannot add "+r+" into the timeline; it is not a tween, timeline, function, or string.";r=i.delayedCall(0,r)}if(e.prototype.add.call(this,r,n),(this._gc||this._time===this._duration)&&!this._paused&&this._duration r._startTime;f._timeline;)c&&f._timeline.smoothChildTiming?f.totalTime(f._totalTime,!0):f._gc&&f._enabled(!0,!1),f=f._timeline;return this},u.remove=function(e){if(e instanceof t)return this._remove(e,!1);if(e instanceof Array||e&&e.push&&a(e)){for(var i=e.length;--i>-1;)this.remove(e[i]);return this}return"string"==typeof e?this.removeLabel(e):this.kill(null,e)},u._remove=function(t,i){e.prototype._remove.call(this,t,i);var s=this._last;return s?this._time>s._startTime+s._totalDuration/s._timeScale&&(this._time=this.duration(),this._totalTime=this._totalDuration):this._time=this._totalTime=this._duration=this._totalDuration=0,this},u.append=function(t,e){return this.add(t,this._parseTimeOrLabel(null,e,!0,t))},u.insert=u.insertMultiple=function(t,e,i,s){return this.add(t,e||0,i,s)},u.appendMultiple=function(t,e,i,s){return this.add(t,this._parseTimeOrLabel(null,e,!0,t),i,s)},u.addLabel=function(t,e){return this._labels[t]=this._parseTimeOrLabel(e),this},u.addPause=function(t,e,i,s){return this.call(l,["{self}",e,i,s],this,t)},u.removeLabel=function(t){return delete this._labels[t],this},u.getLabelTime=function(t){return null!=this._labels[t]?this._labels[t]:-1},u._parseTimeOrLabel=function(e,i,s,r){var n;if(r instanceof t&&r.timeline===this)this.remove(r);else if(r&&(r instanceof Array||r.push&&a(r)))for(n=r.length;--n>-1;)r[n]instanceof t&&r[n].timeline===this&&this.remove(r[n]);if("string"==typeof i)return this._parseTimeOrLabel(i,s&&"number"==typeof e&&null==this._labels[i]?e-this.duration():0,s);if(i=i||0,"string"!=typeof e||!isNaN(e)&&null==this._labels[e])null==e&&(e=this.duration());else{if(n=e.indexOf("="),-1===n)return null==this._labels[e]?s?this._labels[e]=this.duration()+i:i:this._labels[e]+i;i=parseInt(e.charAt(n-1)+"1",10)*Number(e.substr(n+1)),e=n>1?this._parseTimeOrLabel(e.substr(0,n-1),0,s):this.duration()}return Number(e)+i},u.seek=function(t,e){return this.totalTime("number"==typeof t?t:this._parseTimeOrLabel(t),e!==!1)},u.stop=function(){return this.paused(!0)},u.gotoAndPlay=function(t,e){return this.play(t,e)},u.gotoAndStop=function(t,e){return this.pause(t,e)},u.render=function(t,e,i){this._gc&&this._enabled(!0,!1);var s,n,a,h,l,_=this._dirty?this.totalDuration():this._totalDuration,u=this._time,p=this._startTime,f=this._timeScale,c=this._paused;if(t>=_?(this._totalTime=this._time=_,this._reversed||this._hasPausedChild()||(n=!0,h="onComplete",0===this._duration&&(0===t||0>this._rawPrevTime||this._rawPrevTime===r)&&this._rawPrevTime!==t&&this._first&&(l=!0,this._rawPrevTime>r&&(h="onReverseComplete"))),this._rawPrevTime=this._duration||!e||t||0===this._rawPrevTime?t:r,t=_+1e-4):1e-7>t?(this._totalTime=this._time=0,(0!==u||0===this._duration&&(this._rawPrevTime>r||0>t&&this._rawPrevTime>=0))&&(h="onReverseComplete",n=this._reversed),0>t?(this._active=!1,0===this._duration&&this._rawPrevTime>=0&&this._first&&(l=!0),this._rawPrevTime=t):(this._rawPrevTime=this._duration||!e||t||0===this._rawPrevTime?t:r,t=0,this._initted||(l=!0))):this._totalTime=this._time=this._rawPrevTime=t,this._time!==u&&this._first||i||l){if(this._initted||(this._initted=!0),this._active||!this._paused&&this._time!==u&&t>0&&(this._active=!0),0===u&&this.vars.onStart&&0!==this._time&&(e||this.vars.onStart.apply(this.vars.onStartScope||this,this.vars.onStartParams||o)),this._time>=u)for(s=this._first;s&&(a=s._next,!this._paused||c);)(s._active||s._startTime<=this._time&&!s._paused&&!s._gc)&&(s._reversed?s.render((s._dirty?s.totalDuration():s._totalDuration)-(t-s._startTime)*s._timeScale,e,i):s.render((t-s._startTime)*s._timeScale,e,i)),s=a;else for(s=this._last;s&&(a=s._prev,!this._paused||c);)(s._active||u>=s._startTime&&!s._paused&&!s._gc)&&(s._reversed?s.render((s._dirty?s.totalDuration():s._totalDuration)-(t-s._startTime)*s._timeScale,e,i):s.render((t-s._startTime)*s._timeScale,e,i)),s=a;this._onUpdate&&(e||this._onUpdate.apply(this.vars.onUpdateScope||this,this.vars.onUpdateParams||o)),h&&(this._gc||(p===this._startTime||f!==this._timeScale)&&(0===this._time||_>=this.totalDuration())&&(n&&(this._timeline.autoRemoveChildren&&this._enabled(!1,!1),this._active=!1),!e&&this.vars[h]&&this.vars[h].apply(this.vars[h+"Scope"]||this,this.vars[h+"Params"]||o)))}},u._hasPausedChild=function(){for(var t=this._first;t;){if(t._paused||t instanceof s&&t._hasPausedChild())return!0;t=t._next}return!1},u.getChildren=function(t,e,s,r){r=r||-9999999999;for(var n=[],a=this._first,o=0;a;)r>a._startTime||(a instanceof i?e!==!1&&(n[o++]=a):(s!==!1&&(n[o++]=a),t!==!1&&(n=n.concat(a.getChildren(!0,e,s)),o=n.length))),a=a._next;return n},u.getTweensOf=function(t,e){for(var s=i.getTweensOf(t),r=s.length,n=[],a=0;--r>-1;)(s[r].timeline===this||e&&this._contains(s[r]))&&(n[a++]=s[r]);return n},u._contains=function(t){for(var e=t.timeline;e;){if(e===this)return!0;e=e.timeline}return!1},u.shiftChildren=function(t,e,i){i=i||0;for(var s,r=this._first,n=this._labels;r;)r._startTime>=i&&(r._startTime+=t),r=r._next;if(e)for(s in n)n[s]>=i&&(n[s]+=t);return this._uncache(!0)},u._kill=function(t,e){if(!t&&!e)return this._enabled(!1,!1);for(var i=e?this.getTweensOf(e):this.getChildren(!0,!0,!1),s=i.length,r=!1;--s>-1;)i[s]._kill(t,e)&&(r=!0);return r},u.clear=function(t){var e=this.getChildren(!1,!0,!0),i=e.length;for(this._time=this._totalTime=0;--i>-1;)e[i]._enabled(!1,!1);return t!==!1&&(this._labels={}),this._uncache(!0)},u.invalidate=function(){for(var t=this._first;t;)t.invalidate(),t=t._next;return this},u._enabled=function(t,i){if(t===this._gc)for(var s=this._first;s;)s._enabled(t,!0),s=s._next;return e.prototype._enabled.call(this,t,i)},u.duration=function(t){return arguments.length?(0!==this.duration()&&0!==t&&this.timeScale(this._duration/t),this):(this._dirty&&this.totalDuration(),this._duration)},u.totalDuration=function(t){if(!arguments.length){if(this._dirty){for(var e,i,s=0,r=this._last,n=999999999999;r;)e=r._prev,r._dirty&&r.totalDuration(),r._startTime>n&&this._sortChildren&&!r._paused?this.add(r,r._startTime-r._delay):n=r._startTime,0>r._startTime&&!r._paused&&(s-=r._startTime,this._timeline.smoothChildTiming&&(this._startTime+=r._startTime/this._timeScale),this.shiftChildren(-r._startTime,!1,-9999999999),n=0),i=r._startTime+r._totalDuration/r._timeScale,i>s&&(s=i),r=e;this._duration=this._totalDuration=s,this._dirty=!1}return this._totalDuration}return 0!==this.totalDuration()&&0!==t&&this.timeScale(this._totalDuration/t),this},u.usesFrames=function(){for(var e=this._timeline;e._timeline;)e=e._timeline;return e===t._rootFramesTimeline},u.rawTime=function(){return this._paused?this._totalTime:(this._timeline.rawTime()-this._startTime)*this._timeScale},s},!0)}),window._gsDefine&&window._gsQueue.pop()(); + + + +/*! + * VERSION: beta 1.9.3 + * DATE: 2013-04-02 + * UPDATES AND DOCS AT: http://www.greensock.com + * + * @license Copyright (c) 2008-2014, GreenSock. All rights reserved. + * This work is subject to the terms at http://www.greensock.com/terms_of_use.html or for + * Club GreenSock members, the software agreement that was issued with your membership. + * + * @author: Jack Doyle, jack@greensock.com + **/ +(window._gsQueue||(window._gsQueue=[])).push(function(){"use strict";window._gsDefine("easing.Back",["easing.Ease"],function(t){var e,i,s,r=window.GreenSockGlobals||window,n=r.com.greensock,a=2*Math.PI,o=Math.PI/2,h=n._class,l=function(e,i){var s=h("easing."+e,function(){},!0),r=s.prototype=new t;return r.constructor=s,r.getRatio=i,s},_=t.register||function(){},u=function(t,e,i,s){var r=h("easing."+t,{easeOut:new e,easeIn:new i,easeInOut:new s},!0);return _(r,t),r},c=function(t,e,i){this.t=t,this.v=e,i&&(this.next=i,i.prev=this,this.c=i.v-e,this.gap=i.t-t)},p=function(e,i){var s=h("easing."+e,function(t){this._p1=t||0===t?t:1.70158,this._p2=1.525*this._p1},!0),r=s.prototype=new t;return r.constructor=s,r.getRatio=i,r.config=function(t){return new s(t)},s},f=u("Back",p("BackOut",function(t){return(t-=1)*t*((this._p1+1)*t+this._p1)+1}),p("BackIn",function(t){return t*t*((this._p1+1)*t-this._p1)}),p("BackInOut",function(t){return 1>(t*=2)?.5*t*t*((this._p2+1)*t-this._p2):.5*((t-=2)*t*((this._p2+1)*t+this._p2)+2)})),m=h("easing.SlowMo",function(t,e,i){e=e||0===e?e:.7,null==t?t=.7:t>1&&(t=1),this._p=1!==t?e:0,this._p1=(1-t)/2,this._p2=t,this._p3=this._p1+this._p2,this._calcEnd=i===!0},!0),d=m.prototype=new t;return d.constructor=m,d.getRatio=function(t){var e=t+(.5-t)*this._p;return this._p1>t?this._calcEnd?1-(t=1-t/this._p1)*t:e-(t=1-t/this._p1)*t*t*t*e:t>this._p3?this._calcEnd?1-(t=(t-this._p3)/this._p1)*t:e+(t-e)*(t=(t-this._p3)/this._p1)*t*t*t:this._calcEnd?1:e},m.ease=new m(.7,.7),d.config=m.config=function(t,e,i){return new m(t,e,i)},e=h("easing.SteppedEase",function(t){t=t||1,this._p1=1/t,this._p2=t+1},!0),d=e.prototype=new t,d.constructor=e,d.getRatio=function(t){return 0>t?t=0:t>=1&&(t=.999999999),(this._p2*t>>0)*this._p1},d.config=e.config=function(t){return new e(t)},i=h("easing.RoughEase",function(e){e=e||{};for(var i,s,r,n,a,o,h=e.taper||"none",l=[],_=0,u=0|(e.points||20),p=u,f=e.randomize!==!1,m=e.clamp===!0,d=e.template instanceof t?e.template:null,g="number"==typeof e.strength?.4*e.strength:.4;--p>-1;)i=f?Math.random():1/u*p,s=d?d.getRatio(i):i,"none"===h?r=g:"out"===h?(n=1-i,r=n*n*g):"in"===h?r=i*i*g:.5>i?(n=2*i,r=.5*n*n*g):(n=2*(1-i),r=.5*n*n*g),f?s+=Math.random()*r-.5*r:p%2?s+=.5*r:s-=.5*r,m&&(s>1?s=1:0>s&&(s=0)),l[_++]={x:i,y:s};for(l.sort(function(t,e){return t.x-e.x}),o=new c(1,1,null),p=u;--p>-1;)a=l[p],o=new c(a.x,a.y,o);this._prev=new c(0,0,0!==o.t?o:o.next)},!0),d=i.prototype=new t,d.constructor=i,d.getRatio=function(t){var e=this._prev;if(t>e.t){for(;e.next&&t>=e.t;)e=e.next;e=e.prev}else for(;e.prev&&e.t>=t;)e=e.prev;return this._prev=e,e.v+(t-e.t)/e.gap*e.c},d.config=function(t){return new i(t)},i.ease=new i,u("Bounce",l("BounceOut",function(t){return 1/2.75>t?7.5625*t*t:2/2.75>t?7.5625*(t-=1.5/2.75)*t+.75:2.5/2.75>t?7.5625*(t-=2.25/2.75)*t+.9375:7.5625*(t-=2.625/2.75)*t+.984375}),l("BounceIn",function(t){return 1/2.75>(t=1-t)?1-7.5625*t*t:2/2.75>t?1-(7.5625*(t-=1.5/2.75)*t+.75):2.5/2.75>t?1-(7.5625*(t-=2.25/2.75)*t+.9375):1-(7.5625*(t-=2.625/2.75)*t+.984375)}),l("BounceInOut",function(t){var e=.5>t;return t=e?1-2*t:2*t-1,t=1/2.75>t?7.5625*t*t:2/2.75>t?7.5625*(t-=1.5/2.75)*t+.75:2.5/2.75>t?7.5625*(t-=2.25/2.75)*t+.9375:7.5625*(t-=2.625/2.75)*t+.984375,e?.5*(1-t):.5*t+.5})),u("Circ",l("CircOut",function(t){return Math.sqrt(1-(t-=1)*t)}),l("CircIn",function(t){return-(Math.sqrt(1-t*t)-1)}),l("CircInOut",function(t){return 1>(t*=2)?-.5*(Math.sqrt(1-t*t)-1):.5*(Math.sqrt(1-(t-=2)*t)+1)})),s=function(e,i,s){var r=h("easing."+e,function(t,e){this._p1=t||1,this._p2=e||s,this._p3=this._p2/a*(Math.asin(1/this._p1)||0)},!0),n=r.prototype=new t;return n.constructor=r,n.getRatio=i,n.config=function(t,e){return new r(t,e)},r},u("Elastic",s("ElasticOut",function(t){return this._p1*Math.pow(2,-10*t)*Math.sin((t-this._p3)*a/this._p2)+1},.3),s("ElasticIn",function(t){return-(this._p1*Math.pow(2,10*(t-=1))*Math.sin((t-this._p3)*a/this._p2))},.3),s("ElasticInOut",function(t){return 1>(t*=2)?-.5*this._p1*Math.pow(2,10*(t-=1))*Math.sin((t-this._p3)*a/this._p2):.5*this._p1*Math.pow(2,-10*(t-=1))*Math.sin((t-this._p3)*a/this._p2)+1},.45)),u("Expo",l("ExpoOut",function(t){return 1-Math.pow(2,-10*t)}),l("ExpoIn",function(t){return Math.pow(2,10*(t-1))-.001}),l("ExpoInOut",function(t){return 1>(t*=2)?.5*Math.pow(2,10*(t-1)):.5*(2-Math.pow(2,-10*(t-1)))})),u("Sine",l("SineOut",function(t){return Math.sin(t*o)}),l("SineIn",function(t){return-Math.cos(t*o)+1}),l("SineInOut",function(t){return-.5*(Math.cos(Math.PI*t)-1)})),h("easing.EaseLookup",{find:function(e){return t.map[e]}},!0),_(r.SlowMo,"SlowMo","ease,"),_(i,"RoughEase","ease,"),_(e,"SteppedEase","ease,"),f},!0)}),window._gsDefine&&window._gsQueue.pop()(); + + +/*! + * VERSION: 1.11.5 + * DATE: 2014-02-20 + * UPDATES AND DOCS AT: http://www.greensock.com + * + * @license Copyright (c) 2008-2014, GreenSock. All rights reserved. + * This work is subject to the terms at http://www.greensock.com/terms_of_use.html or for + * Club GreenSock members, the software agreement that was issued with your membership. + * + * @author: Jack Doyle, jack@greensock.com + */ +(window._gsQueue||(window._gsQueue=[])).push(function(){"use strict";window._gsDefine("plugins.CSSPlugin",["plugins.TweenPlugin","TweenLite"],function(t,e){var i,r,s,n,a=function(){t.call(this,"css"),this._overwriteProps.length=0,this.setRatio=a.prototype.setRatio},o={},l=a.prototype=new t("css");l.constructor=a,a.version="1.11.5",a.API=2,a.defaultTransformPerspective=0,l="px",a.suffixMap={top:l,right:l,bottom:l,left:l,width:l,height:l,fontSize:l,padding:l,margin:l,perspective:l,lineHeight:""};var h,u,_,p,f,c,d=/(?:\d|\-\d|\.\d|\-\.\d)+/g,m=/(?:\d|\-\d|\.\d|\-\.\d|\+=\d|\-=\d|\+=.\d|\-=\.\d)+/g,g=/(?:\+=|\-=|\-|\b)[\d\-\.]+[a-zA-Z0-9]*(?:%|\b)/gi,v=/[^\d\-\.]/g,y=/(?:\d|\-|\+|=|#|\.)*/g,T=/opacity *= *([^)]*)/,x=/opacity:([^;]*)/,w=/alpha\(opacity *=.+?\)/i,b=/^(rgb|hsl)/,P=/([A-Z])/g,S=/-([a-z])/gi,R=/(^(?:url\(\"|url\())|(?:(\"\))$|\)$)/gi,k=function(t,e){return e.toUpperCase()},C=/(?:Left|Right|Width)/i,A=/(M11|M12|M21|M22)=[\d\-\.e]+/gi,O=/progid\:DXImageTransform\.Microsoft\.Matrix\(.+?\)/i,D=/,(?=[^\)]*(?:\(|$))/gi,M=Math.PI/180,L=180/Math.PI,N={},X=document,I=X.createElement("div"),E=X.createElement("img"),F=a._internals={_specialProps:o},Y=navigator.userAgent,z=function(){var t,e=Y.indexOf("Android"),i=X.createElement("div");return _=-1!==Y.indexOf("Safari")&&-1===Y.indexOf("Chrome")&&(-1===e||Number(Y.substr(e+8,1))>3),f=_&&6>Number(Y.substr(Y.indexOf("Version/")+8,1)),p=-1!==Y.indexOf("Firefox"),/MSIE ([0-9]{1,}[\.0-9]{0,})/.exec(Y)&&(c=parseFloat(RegExp.$1)),i.innerHTML="a",t=i.getElementsByTagName("a")[0],t?/^0.55/.test(t.style.opacity):!1}(),U=function(t){return T.test("string"==typeof t?t:(t.currentStyle?t.currentStyle.filter:t.style.filter)||"")?parseFloat(RegExp.$1)/100:1},B=function(t){window.console&&console.log(t)},j="",W="",V=function(t,e){e=e||I;var i,r,s=e.style;if(void 0!==s[t])return t;for(t=t.charAt(0).toUpperCase()+t.substr(1),i=["O","Moz","ms","Ms","Webkit"],r=5;--r>-1&&void 0===s[i[r]+t];);return r>=0?(W=3===r?"ms":i[r],j="-"+W.toLowerCase()+"-",W+t):null},q=X.defaultView?X.defaultView.getComputedStyle:function(){},H=a.getStyle=function(t,e,i,r,s){var n;return z||"opacity"!==e?(!r&&t.style[e]?n=t.style[e]:(i=i||q(t,null))?(t=i.getPropertyValue(e.replace(P,"-$1").toLowerCase()),n=t||i.length?t:i[e]):t.currentStyle&&(n=t.currentStyle[e]),null==s||n&&"none"!==n&&"auto"!==n&&"auto auto"!==n?n:s):U(t)},Q=function(t,e,i,r,s){if("px"===r||!r)return i;if("auto"===r||!i)return 0;var n,a=C.test(e),o=t,l=I.style,h=0>i;return h&&(i=-i),"%"===r&&-1!==e.indexOf("border")?n=i/100*(a?t.clientWidth:t.clientHeight):(l.cssText="border:0 solid red;position:"+H(t,"position")+";line-height:0;","%"!==r&&o.appendChild?l[a?"borderLeftWidth":"borderTopWidth"]=i+r:(o=t.parentNode||X.body,l[a?"width":"height"]=i+r),o.appendChild(I),n=parseFloat(I[a?"offsetWidth":"offsetHeight"]),o.removeChild(I),0!==n||s||(n=Q(t,e,i,r,!0))),h?-n:n},Z=function(t,e,i){if("absolute"!==H(t,"position",i))return 0;var r="left"===e?"Left":"Top",s=H(t,"margin"+r,i);return t["offset"+r]-(Q(t,e,parseFloat(s),s.replace(y,""))||0)},$=function(t,e){var i,r,s={};if(e=e||q(t,null))if(i=e.length)for(;--i>-1;)s[e[i].replace(S,k)]=e.getPropertyValue(e[i]);else for(i in e)s[i]=e[i];else if(e=t.currentStyle||t.style)for(i in e)"string"==typeof i&&void 0===s[i]&&(s[i.replace(S,k)]=e[i]);return z||(s.opacity=U(t)),r=be(t,e,!1),s.rotation=r.rotation,s.skewX=r.skewX,s.scaleX=r.scaleX,s.scaleY=r.scaleY,s.x=r.x,s.y=r.y,we&&(s.z=r.z,s.rotationX=r.rotationX,s.rotationY=r.rotationY,s.scaleZ=r.scaleZ),s.filters&&delete s.filters,s},G=function(t,e,i,r,s){var n,a,o,l={},h=t.style;for(a in i)"cssText"!==a&&"length"!==a&&isNaN(a)&&(e[a]!==(n=i[a])||s&&s[a])&&-1===a.indexOf("Origin")&&("number"==typeof n||"string"==typeof n)&&(l[a]="auto"!==n||"left"!==a&&"top"!==a?""!==n&&"auto"!==n&&"none"!==n||"string"!=typeof e[a]||""===e[a].replace(v,"")?n:0:Z(t,a),void 0!==h[a]&&(o=new _e(h,a,h[a],o)));if(r)for(a in r)"className"!==a&&(l[a]=r[a]);return{difs:l,firstMPT:o}},K={width:["Left","Right"],height:["Top","Bottom"]},J=["marginLeft","marginRight","marginTop","marginBottom"],te=function(t,e,i){var r=parseFloat("width"===e?t.offsetWidth:t.offsetHeight),s=K[e],n=s.length;for(i=i||q(t,null);--n>-1;)r-=parseFloat(H(t,"padding"+s[n],i,!0))||0,r-=parseFloat(H(t,"border"+s[n]+"Width",i,!0))||0;return r},ee=function(t,e){(null==t||""===t||"auto"===t||"auto auto"===t)&&(t="0 0");var i=t.split(" "),r=-1!==t.indexOf("left")?"0%":-1!==t.indexOf("right")?"100%":i[0],s=-1!==t.indexOf("top")?"0%":-1!==t.indexOf("bottom")?"100%":i[1];return null==s?s="0":"center"===s&&(s="50%"),("center"===r||isNaN(parseFloat(r))&&-1===(r+"").indexOf("="))&&(r="50%"),e&&(e.oxp=-1!==r.indexOf("%"),e.oyp=-1!==s.indexOf("%"),e.oxr="="===r.charAt(1),e.oyr="="===s.charAt(1),e.ox=parseFloat(r.replace(v,"")),e.oy=parseFloat(s.replace(v,""))),r+" "+s+(i.length>2?" "+i[2]:"")},ie=function(t,e){return"string"==typeof t&&"="===t.charAt(1)?parseInt(t.charAt(0)+"1",10)*parseFloat(t.substr(2)):parseFloat(t)-parseFloat(e)},re=function(t,e){return null==t?e:"string"==typeof t&&"="===t.charAt(1)?parseInt(t.charAt(0)+"1",10)*Number(t.substr(2))+e:parseFloat(t)},se=function(t,e,i,r){var s,n,a,o,l=1e-6;return null==t?o=e:"number"==typeof t?o=t:(s=360,n=t.split("_"),a=Number(n[0].replace(v,""))*(-1===t.indexOf("rad")?1:L)-("="===t.charAt(1)?0:e),n.length&&(r&&(r[i]=e+a),-1!==t.indexOf("short")&&(a%=s,a!==a%(s/2)&&(a=0>a?a+s:a-s)),-1!==t.indexOf("_cw")&&0>a?a=(a+9999999999*s)%s-(0|a/s)*s:-1!==t.indexOf("ccw")&&a>0&&(a=(a-9999999999*s)%s-(0|a/s)*s)),o=e+a),l>o&&o>-l&&(o=0),o},ne={aqua:[0,255,255],lime:[0,255,0],silver:[192,192,192],black:[0,0,0],maroon:[128,0,0],teal:[0,128,128],blue:[0,0,255],navy:[0,0,128],white:[255,255,255],fuchsia:[255,0,255],olive:[128,128,0],yellow:[255,255,0],orange:[255,165,0],gray:[128,128,128],purple:[128,0,128],green:[0,128,0],red:[255,0,0],pink:[255,192,203],cyan:[0,255,255],transparent:[255,255,255,0]},ae=function(t,e,i){return t=0>t?t+1:t>1?t-1:t,0|255*(1>6*t?e+6*(i-e)*t:.5>t?i:2>3*t?e+6*(i-e)*(2/3-t):e)+.5},oe=function(t){var e,i,r,s,n,a;return t&&""!==t?"number"==typeof t?[t>>16,255&t>>8,255&t]:(","===t.charAt(t.length-1)&&(t=t.substr(0,t.length-1)),ne[t]?ne[t]:"#"===t.charAt(0)?(4===t.length&&(e=t.charAt(1),i=t.charAt(2),r=t.charAt(3),t="#"+e+e+i+i+r+r),t=parseInt(t.substr(1),16),[t>>16,255&t>>8,255&t]):"hsl"===t.substr(0,3)?(t=t.match(d),s=Number(t[0])%360/360,n=Number(t[1])/100,a=Number(t[2])/100,i=.5>=a?a*(n+1):a+n-a*n,e=2*a-i,t.length>3&&(t[3]=Number(t[3])),t[0]=ae(s+1/3,e,i),t[1]=ae(s,e,i),t[2]=ae(s-1/3,e,i),t):(t=t.match(d)||ne.transparent,t[0]=Number(t[0]),t[1]=Number(t[1]),t[2]=Number(t[2]),t.length>3&&(t[3]=Number(t[3])),t)):ne.black},le="(?:\\b(?:(?:rgb|rgba|hsl|hsla)\\(.+?\\))|\\B#.+?\\b";for(l in ne)le+="|"+l+"\\b";le=RegExp(le+")","gi");var he=function(t,e,i,r){if(null==t)return function(t){return t};var s,n=e?(t.match(le)||[""])[0]:"",a=t.split(n).join("").match(g)||[],o=t.substr(0,t.indexOf(a[0])),l=")"===t.charAt(t.length-1)?")":"",h=-1!==t.indexOf(" ")?" ":",",u=a.length,_=u>0?a[0].replace(d,""):"";return u?s=e?function(t){var e,p,f,c;if("number"==typeof t)t+=_;else if(r&&D.test(t)){for(c=t.replace(D,"|").split("|"),f=0;c.length>f;f++)c[f]=s(c[f]);return c.join(",")}if(e=(t.match(le)||[n])[0],p=t.split(e).join("").match(g)||[],f=p.length,u>f--)for(;u>++f;)p[f]=i?p[0|(f-1)/2]:a[f];return o+p.join(h)+h+e+l+(-1!==t.indexOf("inset")?" inset":"")}:function(t){var e,n,p;if("number"==typeof t)t+=_;else if(r&&D.test(t)){for(n=t.replace(D,"|").split("|"),p=0;n.length>p;p++)n[p]=s(n[p]);return n.join(",")}if(e=t.match(g)||[],p=e.length,u>p--)for(;u>++p;)e[p]=i?e[0|(p-1)/2]:a[p];return o+e.join(h)+l}:function(t){return t}},ue=function(t){return t=t.split(","),function(e,i,r,s,n,a,o){var l,h=(i+"").split(" ");for(o={},l=0;4>l;l++)o[t[l]]=h[l]=h[l]||h[(l-1)/2>>0];return s.parse(e,o,n,a)}},_e=(F._setPluginRatio=function(t){this.plugin.setRatio(t);for(var e,i,r,s,n=this.data,a=n.proxy,o=n.firstMPT,l=1e-6;o;)e=a[o.v],o.r?e=e>0?0|e+.5:0|e-.5:l>e&&e>-l&&(e=0),o.t[o.p]=e,o=o._next;if(n.autoRotate&&(n.autoRotate.rotation=a.rotation),1===t)for(o=n.firstMPT;o;){if(i=o.t,i.type){if(1===i.type){for(s=i.xs0+i.s+i.xs1,r=1;i.l>r;r++)s+=i["xn"+r]+i["xs"+(r+1)];i.e=s}}else i.e=i.s+i.xs0;o=o._next}},function(t,e,i,r,s){this.t=t,this.p=e,this.v=i,this.r=s,r&&(r._prev=this,this._next=r)}),pe=(F._parseToProxy=function(t,e,i,r,s,n){var a,o,l,h,u,_=r,p={},f={},c=i._transform,d=N;for(i._transform=null,N=e,r=u=i.parse(t,e,r,s),N=d,n&&(i._transform=c,_&&(_._prev=null,_._prev&&(_._prev._next=null)));r&&r!==_;){if(1>=r.type&&(o=r.p,f[o]=r.s+r.c,p[o]=r.s,n||(h=new _e(r,"s",o,h,r.r),r.c=0),1===r.type))for(a=r.l;--a>0;)l="xn"+a,o=r.p+"_"+l,f[o]=r.data[l],p[o]=r[l],n||(h=new _e(r,l,o,h,r.rxp[l]));r=r._next}return{proxy:p,end:f,firstMPT:h,pt:u}},F.CSSPropTween=function(t,e,r,s,a,o,l,h,u,_,p){this.t=t,this.p=e,this.s=r,this.c=s,this.n=l||e,t instanceof pe||n.push(this.n),this.r=h,this.type=o||0,u&&(this.pr=u,i=!0),this.b=void 0===_?r:_,this.e=void 0===p?r+s:p,a&&(this._next=a,a._prev=this)}),fe=a.parseComplex=function(t,e,i,r,s,n,a,o,l,u){i=i||n||"",a=new pe(t,e,0,0,a,u?2:1,null,!1,o,i,r),r+="";var _,p,f,c,g,v,y,T,x,w,P,S,R=i.split(", ").join(",").split(" "),k=r.split(", ").join(",").split(" "),C=R.length,A=h!==!1;for((-1!==r.indexOf(",")||-1!==i.indexOf(","))&&(R=R.join(" ").replace(D,", ").split(" "),k=k.join(" ").replace(D,", ").split(" "),C=R.length),C!==k.length&&(R=(n||"").split(" "),C=R.length),a.plugin=l,a.setRatio=u,_=0;C>_;_++)if(c=R[_],g=k[_],T=parseFloat(c),T||0===T)a.appendXtra("",T,ie(g,T),g.replace(m,""),A&&-1!==g.indexOf("px"),!0);else if(s&&("#"===c.charAt(0)||ne[c]||b.test(c)))S=","===g.charAt(g.length-1)?"),":")",c=oe(c),g=oe(g),x=c.length+g.length>6,x&&!z&&0===g[3]?(a["xs"+a.l]+=a.l?" transparent":"transparent",a.e=a.e.split(k[_]).join("transparent")):(z||(x=!1),a.appendXtra(x?"rgba(":"rgb(",c[0],g[0]-c[0],",",!0,!0).appendXtra("",c[1],g[1]-c[1],",",!0).appendXtra("",c[2],g[2]-c[2],x?",":S,!0),x&&(c=4>c.length?1:c[3],a.appendXtra("",c,(4>g.length?1:g[3])-c,S,!1)));else if(v=c.match(d)){if(y=g.match(m),!y||y.length!==v.length)return a;for(f=0,p=0;v.length>p;p++)P=v[p],w=c.indexOf(P,f),a.appendXtra(c.substr(f,w-f),Number(P),ie(y[p],P),"",A&&"px"===c.substr(w+P.length,2),0===p),f=w+P.length;a["xs"+a.l]+=c.substr(f)}else a["xs"+a.l]+=a.l?" "+c:c;if(-1!==r.indexOf("=")&&a.data){for(S=a.xs0+a.data.s,_=1;a.l>_;_++)S+=a["xs"+_]+a.data["xn"+_];a.e=S+a["xs"+_]}return a.l||(a.type=-1,a.xs0=a.e),a.xfirst||a},ce=9;for(l=pe.prototype,l.l=l.pr=0;--ce>0;)l["xn"+ce]=0,l["xs"+ce]="";l.xs0="",l._next=l._prev=l.xfirst=l.data=l.plugin=l.setRatio=l.rxp=null,l.appendXtra=function(t,e,i,r,s,n){var a=this,o=a.l;return a["xs"+o]+=n&&o?" "+t:t||"",i||0===o||a.plugin?(a.l++,a.type=a.setRatio?2:1,a["xs"+a.l]=r||"",o>0?(a.data["xn"+o]=e+i,a.rxp["xn"+o]=s,a["xn"+o]=e,a.plugin||(a.xfirst=new pe(a,"xn"+o,e,i,a.xfirst||a,0,a.n,s,a.pr),a.xfirst.xs0=0),a):(a.data={s:e+i},a.rxp={},a.s=e,a.c=i,a.r=s,a)):(a["xs"+o]+=e+(r||""),a)};var de=function(t,e){e=e||{},this.p=e.prefix?V(t)||t:t,o[t]=o[this.p]=this,this.format=e.formatter||he(e.defaultValue,e.color,e.collapsible,e.multi),e.parser&&(this.parse=e.parser),this.clrs=e.color,this.multi=e.multi,this.keyword=e.keyword,this.dflt=e.defaultValue,this.pr=e.priority||0},me=F._registerComplexSpecialProp=function(t,e,i){"object"!=typeof e&&(e={parser:i});var r,s,n=t.split(","),a=e.defaultValue;for(i=i||[a],r=0;n.length>r;r++)e.prefix=0===r&&e.prefix,e.defaultValue=i[r]||a,s=new de(n[r],e)},ge=function(t){if(!o[t]){var e=t.charAt(0).toUpperCase()+t.substr(1)+"Plugin";me(t,{parser:function(t,i,r,s,n,a,l){var h=(window.GreenSockGlobals||window).com.greensock.plugins[e];return h?(h._cssRegister(),o[r].parse(t,i,r,s,n,a,l)):(B("Error: "+e+" js file not loaded."),n)}})}};l=de.prototype,l.parseComplex=function(t,e,i,r,s,n){var a,o,l,h,u,_,p=this.keyword;if(this.multi&&(D.test(i)||D.test(e)?(o=e.replace(D,"|").split("|"),l=i.replace(D,"|").split("|")):p&&(o=[e],l=[i])),l){for(h=l.length>o.length?l.length:o.length,a=0;h>a;a++)e=o[a]=o[a]||this.dflt,i=l[a]=l[a]||this.dflt,p&&(u=e.indexOf(p),_=i.indexOf(p),u!==_&&(i=-1===_?l:o,i[a]+=" "+p));e=o.join(", "),i=l.join(", ")}return fe(t,this.p,e,i,this.clrs,this.dflt,r,this.pr,s,n)},l.parse=function(t,e,i,r,n,a){return this.parseComplex(t.style,this.format(H(t,this.p,s,!1,this.dflt)),this.format(e),n,a)},a.registerSpecialProp=function(t,e,i){me(t,{parser:function(t,r,s,n,a,o){var l=new pe(t,s,0,0,a,2,s,!1,i);return l.plugin=o,l.setRatio=e(t,r,n._tween,s),l},priority:i})};var ve="scaleX,scaleY,scaleZ,x,y,z,skewX,rotation,rotationX,rotationY,perspective".split(","),ye=V("transform"),Te=j+"transform",xe=V("transformOrigin"),we=null!==V("perspective"),be=function(t,e,i,r){if(t._gsTransform&&i&&!r)return t._gsTransform;var s,n,o,l,h,u,_,p,f,c,d,m,g,v=i?t._gsTransform||{skewY:0}:{skewY:0},y=0>v.scaleX,T=2e-5,x=1e5,w=179.99,b=w*M,P=we?parseFloat(H(t,xe,e,!1,"0 0 0").split(" ")[2])||v.zOrigin||0:0;for(ye?s=H(t,Te,e,!0):t.currentStyle&&(s=t.currentStyle.filter.match(A),s=s&&4===s.length?[s[0].substr(4),Number(s[2].substr(4)),Number(s[1].substr(4)),s[3].substr(4),v.x||0,v.y||0].join(","):""),n=(s||"").match(/(?:\-|\b)[\d\-\.e]+\b/gi)||[],o=n.length;--o>-1;)l=Number(n[o]),n[o]=(h=l-(l|=0))?(0|h*x+(0>h?-.5:.5))/x+l:l;if(16===n.length){var S=n[8],R=n[9],k=n[10],C=n[12],O=n[13],D=n[14];if(v.zOrigin&&(D=-v.zOrigin,C=S*D-n[12],O=R*D-n[13],D=k*D+v.zOrigin-n[14]),!i||r||null==v.rotationX){var N,X,I,E,F,Y,z,U=n[0],B=n[1],j=n[2],W=n[3],V=n[4],q=n[5],Q=n[6],Z=n[7],$=n[11],G=Math.atan2(Q,k),K=-b>G||G>b;v.rotationX=G*L,G&&(E=Math.cos(-G),F=Math.sin(-G),N=V*E+S*F,X=q*E+R*F,I=Q*E+k*F,S=V*-F+S*E,R=q*-F+R*E,k=Q*-F+k*E,$=Z*-F+$*E,V=N,q=X,Q=I),G=Math.atan2(S,U),v.rotationY=G*L,G&&(Y=-b>G||G>b,E=Math.cos(-G),F=Math.sin(-G),N=U*E-S*F,X=B*E-R*F,I=j*E-k*F,R=B*F+R*E,k=j*F+k*E,$=W*F+$*E,U=N,B=X,j=I),G=Math.atan2(B,q),v.rotation=G*L,G&&(z=-b>G||G>b,E=Math.cos(-G),F=Math.sin(-G),U=U*E+V*F,X=B*E+q*F,q=B*-F+q*E,Q=j*-F+Q*E,B=X),z&&K?v.rotation=v.rotationX=0:z&&Y?v.rotation=v.rotationY=0:Y&&K&&(v.rotationY=v.rotationX=0),v.scaleX=(0|Math.sqrt(U*U+B*B)*x+.5)/x,v.scaleY=(0|Math.sqrt(q*q+R*R)*x+.5)/x,v.scaleZ=(0|Math.sqrt(Q*Q+k*k)*x+.5)/x,v.skewX=0,v.perspective=$?1/(0>$?-$:$):0,v.x=C,v.y=O,v.z=D}}else if(!(we&&!r&&n.length&&v.x===n[4]&&v.y===n[5]&&(v.rotationX||v.rotationY)||void 0!==v.x&&"none"===H(t,"display",e))){var J=n.length>=6,te=J?n[0]:1,ee=n[1]||0,ie=n[2]||0,re=J?n[3]:1;v.x=n[4]||0,v.y=n[5]||0,u=Math.sqrt(te*te+ee*ee),_=Math.sqrt(re*re+ie*ie),p=te||ee?Math.atan2(ee,te)*L:v.rotation||0,f=ie||re?Math.atan2(ie,re)*L+p:v.skewX||0,c=u-Math.abs(v.scaleX||0),d=_-Math.abs(v.scaleY||0),Math.abs(f)>90&&270>Math.abs(f)&&(y?(u*=-1,f+=0>=p?180:-180,p+=0>=p?180:-180):(_*=-1,f+=0>=f?180:-180)),m=(p-v.rotation)%180,g=(f-v.skewX)%180,(void 0===v.skewX||c>T||-T>c||d>T||-T>d||m>-w&&w>m&&false|m*x||g>-w&&w>g&&false|g*x)&&(v.scaleX=u,v.scaleY=_,v.rotation=p,v.skewX=f),we&&(v.rotationX=v.rotationY=v.z=0,v.perspective=parseFloat(a.defaultTransformPerspective)||0,v.scaleZ=1)}v.zOrigin=P;for(o in v)T>v[o]&&v[o]>-T&&(v[o]=0);return i&&(t._gsTransform=v),v},Pe=function(t){var e,i,r=this.data,s=-r.rotation*M,n=s+r.skewX*M,a=1e5,o=(0|Math.cos(s)*r.scaleX*a)/a,l=(0|Math.sin(s)*r.scaleX*a)/a,h=(0|Math.sin(n)*-r.scaleY*a)/a,u=(0|Math.cos(n)*r.scaleY*a)/a,_=this.t.style,p=this.t.currentStyle;if(p){i=l,l=-h,h=-i,e=p.filter,_.filter="";var f,d,m=this.t.offsetWidth,g=this.t.offsetHeight,v="absolute"!==p.position,x="progid:DXImageTransform.Microsoft.Matrix(M11="+o+", M12="+l+", M21="+h+", M22="+u,w=r.x,b=r.y;if(null!=r.ox&&(f=(r.oxp?.01*m*r.ox:r.ox)-m/2,d=(r.oyp?.01*g*r.oy:r.oy)-g/2,w+=f-(f*o+d*l),b+=d-(f*h+d*u)),v?(f=m/2,d=g/2,x+=", Dx="+(f-(f*o+d*l)+w)+", Dy="+(d-(f*h+d*u)+b)+")"):x+=", sizingMethod='auto expand')",_.filter=-1!==e.indexOf("DXImageTransform.Microsoft.Matrix(")?e.replace(O,x):x+" "+e,(0===t||1===t)&&1===o&&0===l&&0===h&&1===u&&(v&&-1===x.indexOf("Dx=0, Dy=0")||T.test(e)&&100!==parseFloat(RegExp.$1)||-1===e.indexOf("gradient("&&e.indexOf("Alpha"))&&_.removeAttribute("filter")),!v){var P,S,R,k=8>c?1:-1;for(f=r.ieOffsetX||0,d=r.ieOffsetY||0,r.ieOffsetX=Math.round((m-((0>o?-o:o)*m+(0>l?-l:l)*g))/2+w),r.ieOffsetY=Math.round((g-((0>u?-u:u)*g+(0>h?-h:h)*m))/2+b),ce=0;4>ce;ce++)S=J[ce],P=p[S],i=-1!==P.indexOf("px")?parseFloat(P):Q(this.t,S,parseFloat(P),P.replace(y,""))||0,R=i!==r[S]?2>ce?-r.ieOffsetX:-r.ieOffsetY:2>ce?f-r.ieOffsetX:d-r.ieOffsetY,_[S]=(r[S]=Math.round(i-R*(0===ce||2===ce?1:k)))+"px"}}},Se=function(){var t,e,i,r,s,n,a,o,l,h,u,_,f,c,d,m,g,v,y,T,x,w,b,P=this.data,S=this.t.style,R=P.rotation*M,k=P.scaleX,C=P.scaleY,A=P.scaleZ,O=P.perspective;if(p){var D=1e-4;D>k&&k>-D&&(k=A=2e-5),D>C&&C>-D&&(C=A=2e-5),!O||P.z||P.rotationX||P.rotationY||(O=0)}if(R||P.skewX)v=Math.cos(R),y=Math.sin(R),t=v,s=y,P.skewX&&(R-=P.skewX*M,v=Math.cos(R),y=Math.sin(R)),e=-y,n=v;else{if(!(P.rotationY||P.rotationX||1!==A||O))return S[ye]="translate3d("+P.x+"px,"+P.y+"px,"+P.z+"px)"+(1!==k||1!==C?" scale("+k+","+C+")":""),void 0;t=n=1,e=s=0}u=1,i=r=a=o=l=h=_=f=c=0,d=O?-1/O:0,m=P.zOrigin,g=1e5,R=P.rotationY*M,R&&(v=Math.cos(R),y=Math.sin(R),l=u*-y,f=d*-y,i=t*y,a=s*y,u*=v,d*=v,t*=v,s*=v),R=P.rotationX*M,R&&(v=Math.cos(R),y=Math.sin(R),T=e*v+i*y,x=n*v+a*y,w=h*v+u*y,b=c*v+d*y,i=e*-y+i*v,a=n*-y+a*v,u=h*-y+u*v,d=c*-y+d*v,e=T,n=x,h=w,c=b),1!==A&&(i*=A,a*=A,u*=A,d*=A),1!==C&&(e*=C,n*=C,h*=C,c*=C),1!==k&&(t*=k,s*=k,l*=k,f*=k),m&&(_-=m,r=i*_,o=a*_,_=u*_+m),r=(T=(r+=P.x)-(r|=0))?(0|T*g+(0>T?-.5:.5))/g+r:r,o=(T=(o+=P.y)-(o|=0))?(0|T*g+(0>T?-.5:.5))/g+o:o,_=(T=(_+=P.z)-(_|=0))?(0|T*g+(0>T?-.5:.5))/g+_:_,S[ye]="matrix3d("+[(0|t*g)/g,(0|s*g)/g,(0|l*g)/g,(0|f*g)/g,(0|e*g)/g,(0|n*g)/g,(0|h*g)/g,(0|c*g)/g,(0|i*g)/g,(0|a*g)/g,(0|u*g)/g,(0|d*g)/g,r,o,_,O?1+-_/O:1].join(",")+")"},Re=function(t){var e,i,r,s,n,a=this.data,o=this.t,l=o.style;return a.rotationX||a.rotationY||a.z||a.force3D?(this.setRatio=Se,Se.call(this,t),void 0):(a.rotation||a.skewX?(e=a.rotation*M,i=e-a.skewX*M,r=1e5,s=a.scaleX*r,n=a.scaleY*r,l[ye]="matrix("+(0|Math.cos(e)*s)/r+","+(0|Math.sin(e)*s)/r+","+(0|Math.sin(i)*-n)/r+","+(0|Math.cos(i)*n)/r+","+a.x+","+a.y+")"):l[ye]="matrix("+a.scaleX+",0,0,"+a.scaleY+","+a.x+","+a.y+")",void 0)};me("transform,scale,scaleX,scaleY,scaleZ,x,y,z,rotation,rotationX,rotationY,rotationZ,skewX,skewY,shortRotation,shortRotationX,shortRotationY,shortRotationZ,transformOrigin,transformPerspective,directionalRotation,parseTransform,force3D",{parser:function(t,e,i,r,n,a,o){if(r._transform)return n;var l,h,u,_,p,f,c,d=r._transform=be(t,s,!0,o.parseTransform),m=t.style,g=1e-6,v=ve.length,y=o,T={};if("string"==typeof y.transform&&ye)u=m.cssText,m[ye]=y.transform,m.display="block",l=be(t,null,!1),m.cssText=u;else if("object"==typeof y){if(l={scaleX:re(null!=y.scaleX?y.scaleX:y.scale,d.scaleX),scaleY:re(null!=y.scaleY?y.scaleY:y.scale,d.scaleY),scaleZ:re(y.scaleZ,d.scaleZ),x:re(y.x,d.x),y:re(y.y,d.y),z:re(y.z,d.z),perspective:re(y.transformPerspective,d.perspective)},c=y.directionalRotation,null!=c)if("object"==typeof c)for(u in c)y[u]=c[u];else y.rotation=c;l.rotation=se("rotation"in y?y.rotation:"shortRotation"in y?y.shortRotation+"_short":"rotationZ"in y?y.rotationZ:d.rotation,d.rotation,"rotation",T),we&&(l.rotationX=se("rotationX"in y?y.rotationX:"shortRotationX"in y?y.shortRotationX+"_short":d.rotationX||0,d.rotationX,"rotationX",T),l.rotationY=se("rotationY"in y?y.rotationY:"shortRotationY"in y?y.shortRotationY+"_short":d.rotationY||0,d.rotationY,"rotationY",T)),l.skewX=null==y.skewX?d.skewX:se(y.skewX,d.skewX),l.skewY=null==y.skewY?d.skewY:se(y.skewY,d.skewY),(h=l.skewY-d.skewY)&&(l.skewX+=h,l.rotation+=h)}for(we&&null!=y.force3D&&(d.force3D=y.force3D,f=!0),p=d.force3D||d.z||d.rotationX||d.rotationY||l.z||l.rotationX||l.rotationY||l.perspective,p||null==y.scale||(l.scaleZ=1);--v>-1;)i=ve[v],_=l[i]-d[i],(_>g||-g>_||null!=N[i])&&(f=!0,n=new pe(d,i,d[i],_,n),i in T&&(n.e=T[i]),n.xs0=0,n.plugin=a,r._overwriteProps.push(n.n));return _=y.transformOrigin,(_||we&&p&&d.zOrigin)&&(ye?(f=!0,i=xe,_=(_||H(t,i,s,!1,"50% 50%"))+"",n=new pe(m,i,0,0,n,-1,"transformOrigin"),n.b=m[i],n.plugin=a,we?(u=d.zOrigin,_=_.split(" "),d.zOrigin=(_.length>2&&(0===u||"0px"!==_[2])?parseFloat(_[2]):u)||0,n.xs0=n.e=m[i]=_[0]+" "+(_[1]||"50%")+" 0px",n=new pe(d,"zOrigin",0,0,n,-1,n.n),n.b=u,n.xs0=n.e=d.zOrigin):n.xs0=n.e=m[i]=_):ee(_+"",d)),f&&(r._transformType=p||3===this._transformType?3:2),n},prefix:!0}),me("boxShadow",{defaultValue:"0px 0px 0px 0px #999",prefix:!0,color:!0,multi:!0,keyword:"inset"}),me("borderRadius",{defaultValue:"0px",parser:function(t,e,i,n,a){e=this.format(e);var o,l,h,u,_,p,f,c,d,m,g,v,y,T,x,w,b=["borderTopLeftRadius","borderTopRightRadius","borderBottomRightRadius","borderBottomLeftRadius"],P=t.style;for(d=parseFloat(t.offsetWidth),m=parseFloat(t.offsetHeight),o=e.split(" "),l=0;b.length>l;l++)this.p.indexOf("border")&&(b[l]=V(b[l])),_=u=H(t,b[l],s,!1,"0px"),-1!==_.indexOf(" ")&&(u=_.split(" "),_=u[0],u=u[1]),p=h=o[l],f=parseFloat(_),v=_.substr((f+"").length),y="="===p.charAt(1),y?(c=parseInt(p.charAt(0)+"1",10),p=p.substr(2),c*=parseFloat(p),g=p.substr((c+"").length-(0>c?1:0))||""):(c=parseFloat(p),g=p.substr((c+"").length)),""===g&&(g=r[i]||v),g!==v&&(T=Q(t,"borderLeft",f,v),x=Q(t,"borderTop",f,v),"%"===g?(_=100*(T/d)+"%",u=100*(x/m)+"%"):"em"===g?(w=Q(t,"borderLeft",1,"em"),_=T/w+"em",u=x/w+"em"):(_=T+"px",u=x+"px"),y&&(p=parseFloat(_)+c+g,h=parseFloat(u)+c+g)),a=fe(P,b[l],_+" "+u,p+" "+h,!1,"0px",a);return a},prefix:!0,formatter:he("0px 0px 0px 0px",!1,!0)}),me("backgroundPosition",{defaultValue:"0 0",parser:function(t,e,i,r,n,a){var o,l,h,u,_,p,f="background-position",d=s||q(t,null),m=this.format((d?c?d.getPropertyValue(f+"-x")+" "+d.getPropertyValue(f+"-y"):d.getPropertyValue(f):t.currentStyle.backgroundPositionX+" "+t.currentStyle.backgroundPositionY)||"0 0"),g=this.format(e);if(-1!==m.indexOf("%")!=(-1!==g.indexOf("%"))&&(p=H(t,"backgroundImage").replace(R,""),p&&"none"!==p)){for(o=m.split(" "),l=g.split(" "),E.setAttribute("src",p),h=2;--h>-1;)m=o[h],u=-1!==m.indexOf("%"),u!==(-1!==l[h].indexOf("%"))&&(_=0===h?t.offsetWidth-E.width:t.offsetHeight-E.height,o[h]=u?parseFloat(m)/100*_+"px":100*(parseFloat(m)/_)+"%");m=o.join(" ")}return this.parseComplex(t.style,m,g,n,a)},formatter:ee}),me("backgroundSize",{defaultValue:"0 0",formatter:ee}),me("perspective",{defaultValue:"0px",prefix:!0}),me("perspectiveOrigin",{defaultValue:"50% 50%",prefix:!0}),me("transformStyle",{prefix:!0}),me("backfaceVisibility",{prefix:!0}),me("userSelect",{prefix:!0}),me("margin",{parser:ue("marginTop,marginRight,marginBottom,marginLeft")}),me("padding",{parser:ue("paddingTop,paddingRight,paddingBottom,paddingLeft")}),me("clip",{defaultValue:"rect(0px,0px,0px,0px)",parser:function(t,e,i,r,n,a){var o,l,h;return 9>c?(l=t.currentStyle,h=8>c?" ":",",o="rect("+l.clipTop+h+l.clipRight+h+l.clipBottom+h+l.clipLeft+")",e=this.format(e).split(",").join(h)):(o=this.format(H(t,this.p,s,!1,this.dflt)),e=this.format(e)),this.parseComplex(t.style,o,e,n,a)}}),me("textShadow",{defaultValue:"0px 0px 0px #999",color:!0,multi:!0}),me("autoRound,strictUnits",{parser:function(t,e,i,r,s){return s}}),me("border",{defaultValue:"0px solid #000",parser:function(t,e,i,r,n,a){return this.parseComplex(t.style,this.format(H(t,"borderTopWidth",s,!1,"0px")+" "+H(t,"borderTopStyle",s,!1,"solid")+" "+H(t,"borderTopColor",s,!1,"#000")),this.format(e),n,a)},color:!0,formatter:function(t){var e=t.split(" ");return e[0]+" "+(e[1]||"solid")+" "+(t.match(le)||["#000"])[0]}}),me("borderWidth",{parser:ue("borderTopWidth,borderRightWidth,borderBottomWidth,borderLeftWidth")}),me("float,cssFloat,styleFloat",{parser:function(t,e,i,r,s){var n=t.style,a="cssFloat"in n?"cssFloat":"styleFloat";return new pe(n,a,0,0,s,-1,i,!1,0,n[a],e)}});var ke=function(t){var e,i=this.t,r=i.filter||H(this.data,"filter"),s=0|this.s+this.c*t;100===s&&(-1===r.indexOf("atrix(")&&-1===r.indexOf("radient(")&&-1===r.indexOf("oader(")?(i.removeAttribute("filter"),e=!H(this.data,"filter")):(i.filter=r.replace(w,""),e=!0)),e||(this.xn1&&(i.filter=r=r||"alpha(opacity="+s+")"),-1===r.indexOf("opacity")?0===s&&this.xn1||(i.filter=r+" alpha(opacity="+s+")"):i.filter=r.replace(T,"opacity="+s))};me("opacity,alpha,autoAlpha",{defaultValue:"1",parser:function(t,e,i,r,n,a){var o=parseFloat(H(t,"opacity",s,!1,"1")),l=t.style,h="autoAlpha"===i;return"string"==typeof e&&"="===e.charAt(1)&&(e=("-"===e.charAt(0)?-1:1)*parseFloat(e.substr(2))+o),h&&1===o&&"hidden"===H(t,"visibility",s)&&0!==e&&(o=0),z?n=new pe(l,"opacity",o,e-o,n):(n=new pe(l,"opacity",100*o,100*(e-o),n),n.xn1=h?1:0,l.zoom=1,n.type=2,n.b="alpha(opacity="+n.s+")",n.e="alpha(opacity="+(n.s+n.c)+")",n.data=t,n.plugin=a,n.setRatio=ke),h&&(n=new pe(l,"visibility",0,0,n,-1,null,!1,0,0!==o?"inherit":"hidden",0===e?"hidden":"inherit"),n.xs0="inherit",r._overwriteProps.push(n.n),r._overwriteProps.push(i)),n}});var Ce=function(t,e){e&&(t.removeProperty?t.removeProperty(e.replace(P,"-$1").toLowerCase()):t.removeAttribute(e))},Ae=function(t){if(this.t._gsClassPT=this,1===t||0===t){this.t.className=0===t?this.b:this.e;for(var e=this.data,i=this.t.style;e;)e.v?i[e.p]=e.v:Ce(i,e.p),e=e._next;1===t&&this.t._gsClassPT===this&&(this.t._gsClassPT=null)}else this.t.className!==this.e&&(this.t.className=this.e)};me("className",{parser:function(t,e,r,n,a,o,l){var h,u,_,p,f,c=t.className,d=t.style.cssText;if(a=n._classNamePT=new pe(t,r,0,0,a,2),a.setRatio=Ae,a.pr=-11,i=!0,a.b=c,u=$(t,s),_=t._gsClassPT){for(p={},f=_.data;f;)p[f.p]=1,f=f._next;_.setRatio(1)}return t._gsClassPT=a,a.e="="!==e.charAt(1)?e:c.replace(RegExp("\\s*\\b"+e.substr(2)+"\\b"),"")+("+"===e.charAt(0)?" "+e.substr(2):""),n._tween._duration&&(t.className=a.e,h=G(t,u,$(t),l,p),t.className=c,a.data=h.firstMPT,t.style.cssText=d,a=a.xfirst=n.parse(t,h.difs,a,o)),a}});var Oe=function(t){if((1===t||0===t)&&this.data._totalTime===this.data._totalDuration&&"isFromStart"!==this.data.data){var e,i,r,s,n=this.t.style,a=o.transform.parse;if("all"===this.e)n.cssText="",s=!0;else for(e=this.e.split(","),r=e.length;--r>-1;)i=e[r],o[i]&&(o[i].parse===a?s=!0:i="transformOrigin"===i?xe:o[i].p),Ce(n,i);s&&(Ce(n,ye),this.t._gsTransform&&delete this.t._gsTransform)}};for(me("clearProps",{parser:function(t,e,r,s,n){return n=new pe(t,r,0,0,n,2),n.setRatio=Oe,n.e=e,n.pr=-10,n.data=s._tween,i=!0,n}}),l="bezier,throwProps,physicsProps,physics2D".split(","),ce=l.length;ce--;)ge(l[ce]);l=a.prototype,l._firstPT=null,l._onInitTween=function(t,e,o){if(!t.nodeType)return!1;this._target=t,this._tween=o,this._vars=e,h=e.autoRound,i=!1,r=e.suffixMap||a.suffixMap,s=q(t,""),n=this._overwriteProps;var l,p,c,d,m,g,v,y,T,w=t.style;if(u&&""===w.zIndex&&(l=H(t,"zIndex",s),("auto"===l||""===l)&&(w.zIndex=0)),"string"==typeof e&&(d=w.cssText,l=$(t,s),w.cssText=d+";"+e,l=G(t,l,$(t)).difs,!z&&x.test(e)&&(l.opacity=parseFloat(RegExp.$1)),e=l,w.cssText=d),this._firstPT=p=this.parse(t,e,null),this._transformType){for(T=3===this._transformType,ye?_&&(u=!0,""===w.zIndex&&(v=H(t,"zIndex",s),("auto"===v||""===v)&&(w.zIndex=0)),f&&(w.WebkitBackfaceVisibility=this._vars.WebkitBackfaceVisibility||(T?"visible":"hidden"))):w.zoom=1,c=p;c&&c._next;)c=c._next;y=new pe(t,"transform",0,0,null,2),this._linkCSSP(y,null,c),y.setRatio=T&&we?Se:ye?Re:Pe,y.data=this._transform||be(t,s,!0),n.pop()}if(i){for(;p;){for(g=p._next,c=d;c&&c.pr>p.pr;)c=c._next;(p._prev=c?c._prev:m)?p._prev._next=p:d=p,(p._next=c)?c._prev=p:m=p,p=g}this._firstPT=d}return!0},l.parse=function(t,e,i,n){var a,l,u,_,p,f,c,d,m,g,v=t.style;for(a in e)f=e[a],l=o[a],l?i=l.parse(t,f,a,this,i,n,e):(p=H(t,a,s)+"",m="string"==typeof f,"color"===a||"fill"===a||"stroke"===a||-1!==a.indexOf("Color")||m&&b.test(f)?(m||(f=oe(f),f=(f.length>3?"rgba(":"rgb(")+f.join(",")+")"),i=fe(v,a,p,f,!0,"transparent",i,0,n)):!m||-1===f.indexOf(" ")&&-1===f.indexOf(",")?(u=parseFloat(p),c=u||0===u?p.substr((u+"").length):"",(""===p||"auto"===p)&&("width"===a||"height"===a?(u=te(t,a,s),c="px"):"left"===a||"top"===a?(u=Z(t,a,s),c="px"):(u="opacity"!==a?0:1,c="")),g=m&&"="===f.charAt(1),g?(_=parseInt(f.charAt(0)+"1",10),f=f.substr(2),_*=parseFloat(f),d=f.replace(y,"")):(_=parseFloat(f),d=m?f.substr((_+"").length)||"":""),""===d&&(d=a in r?r[a]:c),f=_||0===_?(g?_+u:_)+d:e[a],c!==d&&""!==d&&(_||0===_)&&(u||0===u)&&(u=Q(t,a,u,c),"%"===d?(u/=Q(t,a,100,"%")/100,e.strictUnits!==!0&&(p=u+"%")):"em"===d?u/=Q(t,a,1,"em"):(_=Q(t,a,_,d),d="px"),g&&(_||0===_)&&(f=_+u+d)),g&&(_+=u),!u&&0!==u||!_&&0!==_?void 0!==v[a]&&(f||"NaN"!=f+""&&null!=f)?(i=new pe(v,a,_||u||0,0,i,-1,a,!1,0,p,f),i.xs0="none"!==f||"display"!==a&&-1===a.indexOf("Style")?f:p):B("invalid "+a+" tween value: "+e[a]):(i=new pe(v,a,u,_-u,i,0,a,h!==!1&&("px"===d||"zIndex"===a),0,p,f),i.xs0=d)):i=fe(v,a,p,f,!0,null,i,0,n)),n&&i&&!i.plugin&&(i.plugin=n);return i},l.setRatio=function(t){var e,i,r,s=this._firstPT,n=1e-6;if(1!==t||this._tween._time!==this._tween._duration&&0!==this._tween._time)if(t||this._tween._time!==this._tween._duration&&0!==this._tween._time||this._tween._rawPrevTime===-1e-6)for(;s;){if(e=s.c*t+s.s,s.r?e=e>0?0|e+.5:0|e-.5:n>e&&e>-n&&(e=0),s.type)if(1===s.type)if(r=s.l,2===r)s.t[s.p]=s.xs0+e+s.xs1+s.xn1+s.xs2;else if(3===r)s.t[s.p]=s.xs0+e+s.xs1+s.xn1+s.xs2+s.xn2+s.xs3;else if(4===r)s.t[s.p]=s.xs0+e+s.xs1+s.xn1+s.xs2+s.xn2+s.xs3+s.xn3+s.xs4;else if(5===r)s.t[s.p]=s.xs0+e+s.xs1+s.xn1+s.xs2+s.xn2+s.xs3+s.xn3+s.xs4+s.xn4+s.xs5;else{for(i=s.xs0+e+s.xs1,r=1;s.l>r;r++)i+=s["xn"+r]+s["xs"+(r+1)];s.t[s.p]=i}else-1===s.type?s.t[s.p]=s.xs0:s.setRatio&&s.setRatio(t);else s.t[s.p]=e+s.xs0;s=s._next}else for(;s;)2!==s.type?s.t[s.p]=s.b:s.setRatio(t),s=s._next;else for(;s;)2!==s.type?s.t[s.p]=s.e:s.setRatio(t),s=s._next},l._enableTransforms=function(t){this._transformType=t||3===this._transformType?3:2,this._transform=this._transform||be(this._target,s,!0)},l._linkCSSP=function(t,e,i,r){return t&&(e&&(e._prev=t),t._next&&(t._next._prev=t._prev),t._prev?t._prev._next=t._next:this._firstPT===t&&(this._firstPT=t._next,r=!0),i?i._next=t:r||null!==this._firstPT||(this._firstPT=t),t._next=e,t._prev=i),t},l._kill=function(e){var i,r,s,n=e;if(e.autoAlpha||e.alpha){n={};for(r in e)n[r]=e[r];n.opacity=1,n.autoAlpha&&(n.visibility=1)}return e.className&&(i=this._classNamePT)&&(s=i.xfirst,s&&s._prev?this._linkCSSP(s._prev,i._next,s._prev._prev):s===this._firstPT&&(this._firstPT=i._next),i._next&&this._linkCSSP(i._next,i._next._next,s._prev),this._classNamePT=null),t.prototype._kill.call(this,n)};var De=function(t,e,i){var r,s,n,a;if(t.slice)for(s=t.length;--s>-1;)De(t[s],e,i);else for(r=t.childNodes,s=r.length;--s>-1;)n=r[s],a=n.type,n.style&&(e.push($(n)),i&&i.push(n)),1!==a&&9!==a&&11!==a||!n.childNodes.length||De(n,e,i)};return a.cascadeTo=function(t,i,r){var s,n,a,o=e.to(t,i,r),l=[o],h=[],u=[],_=[],p=e._internals.reservedProps;for(t=o._targets||o.target,De(t,h,_),o.render(i,!0),De(t,u),o.render(0,!0),o._enabled(!0),s=_.length;--s>-1;)if(n=G(_[s],h[s],u[s]),n.firstMPT){n=n.difs;for(a in r)p[a]&&(n[a]=r[a]);l.push(e.to(_[s],i,n))}return l},t.activate([a]),a},!0)}),window._gsDefine&&window._gsQueue.pop()(); + +// WAIT FOR IMAGES +/* + * waitForImages 1.4 + * ----------------- + * Provides a callback when all images have loaded in your given selector. + * http://www.alexanderdickson.com/ + * + * + * Copyright (c) 2011 Alex Dickson + * Licensed under the MIT licenses. + * See website for more info. + * + */ + +(function(e,t){ + e.waitForImages={hasImageProperties:["backgroundImage","listStyleImage","borderImage","borderCornerImage"]};e.expr[":"].uncached=function(t){var n=document.createElement("img");n.src=t.src;return e(t).is('img[src!=""]')&&!n.complete};e.fn.waitForImages=function(t,n,r){if(e.isPlainObject(arguments[0])){n=t.each;r=t.waitForAll;t=t.finished}t=t||e.noop;n=n||e.noop;r=!!r;if(!e.isFunction(t)||!e.isFunction(n)){throw new TypeError("An invalid callback was supplied.")}return this.each(function(){var i=e(this),s=[];if(r){var o=e.waitForImages.hasImageProperties||[],u=/url\((['"]?)(.*?)\1\)/g;i.find("*").each(function(){var t=e(this);if(t.is("img:uncached")){s.push({src:t.attr("src"),element:t[0]})}e.each(o,function(e,n){var r=t.css(n);if(!r){return true}var i;while(i=u.exec(r)){s.push({src:i[2],element:t[0]})}})})}else{i.find("img:uncached").each(function(){s.push({src:this.src,element:this})})}var f=s.length,l=0;if(f==0){t.call(i[0])}e.each(s,function(r,s){var o=new Image;e(o).bind("load error",function(e){l++;n.call(s.element,l,f,e.type=="load");if(l==f){t.call(i[0]);return false}});o.src=s.src})})}; +})(jQuery) diff --git a/ClientApp/app/jquery.plugins/jquery.themepunch.plugins.min.js b/ClientApp/app/jquery.plugins/jquery.themepunch.plugins.min.js new file mode 100644 index 00000000..51c3272d --- /dev/null +++ b/ClientApp/app/jquery.plugins/jquery.themepunch.plugins.min.js @@ -0,0 +1,43 @@ + + +/******************************************** + - THEMEPUNCH TOOLS Ver. 1.0 - + Last Update of Tools 09.10.2013 +*********************************************/ + + + + +/*! + * VERSION: 1.11.2 + * DATE: 2013-11-20 + * UPDATES AND DOCS AT: http://www.greensock.com + * + * @license Copyright (c) 2008-2013, GreenSock. All rights reserved. + * This work is subject to the terms at http://www.greensock.com/terms_of_use.html or for + * Club GreenSock members, the software agreement that was issued with your membership. + * + * @author: Jack Doyle, jack@greensock.com + */ +(function(t){"use strict";var e=t.GreenSockGlobals||t;if(!e.TweenLite){var i,s,r,n,a,o=function(t){var i,s=t.split("."),r=e;for(i=0;s.length>i;i++)r[s[i]]=r=r[s[i]]||{};return r},l=o("com.greensock"),h=1e-10,_=[].slice,u=function(){},m=function(){var t=Object.prototype.toString,e=t.call([]);return function(i){return i instanceof Array||"object"==typeof i&&!!i.push&&t.call(i)===e}}(),f={},p=function(i,s,r,n){this.sc=f[i]?f[i].sc:[],f[i]=this,this.gsClass=null,this.func=r;var a=[];this.check=function(l){for(var h,_,u,m,c=s.length,d=c;--c>-1;)(h=f[s[c]]||new p(s[c],[])).gsClass?(a[c]=h.gsClass,d--):l&&h.sc.push(this);if(0===d&&r)for(_=("com.greensock."+i).split("."),u=_.pop(),m=o(_.join("."))[u]=this.gsClass=r.apply(r,a),n&&(e[u]=m,"function"==typeof define&&define.amd?define((t.GreenSockAMDPath?t.GreenSockAMDPath+"/":"")+i.split(".").join("/"),[],function(){return m}):"undefined"!=typeof module&&module.exports&&(module.exports=m)),c=0;this.sc.length>c;c++)this.sc[c].check()},this.check(!0)},c=t._gsDefine=function(t,e,i,s){return new p(t,e,i,s)},d=l._class=function(t,e,i){return e=e||function(){},c(t,[],function(){return e},i),e};c.globals=e;var v=[0,0,1,1],g=[],T=d("easing.Ease",function(t,e,i,s){this._func=t,this._type=i||0,this._power=s||0,this._params=e?v.concat(e):v},!0),w=T.map={},P=T.register=function(t,e,i,s){for(var r,n,a,o,h=e.split(","),_=h.length,u=(i||"easeIn,easeOut,easeInOut").split(",");--_>-1;)for(n=h[_],r=s?d("easing."+n,null,!0):l.easing[n]||{},a=u.length;--a>-1;)o=u[a],w[n+"."+o]=w[o+n]=r[o]=t.getRatio?t:t[o]||new t};for(r=T.prototype,r._calcEnd=!1,r.getRatio=function(t){if(this._func)return this._params[0]=t,this._func.apply(null,this._params);var e=this._type,i=this._power,s=1===e?1-t:2===e?t:.5>t?2*t:2*(1-t);return 1===i?s*=s:2===i?s*=s*s:3===i?s*=s*s*s:4===i&&(s*=s*s*s*s),1===e?1-s:2===e?s:.5>t?s/2:1-s/2},i=["Linear","Quad","Cubic","Quart","Quint,Strong"],s=i.length;--s>-1;)r=i[s]+",Power"+s,P(new T(null,null,1,s),r,"easeOut",!0),P(new T(null,null,2,s),r,"easeIn"+(0===s?",easeNone":"")),P(new T(null,null,3,s),r,"easeInOut");w.linear=l.easing.Linear.easeIn,w.swing=l.easing.Quad.easeInOut;var y=d("events.EventDispatcher",function(t){this._listeners={},this._eventTarget=t||this});r=y.prototype,r.addEventListener=function(t,e,i,s,r){r=r||0;var o,l,h=this._listeners[t],_=0;for(null==h&&(this._listeners[t]=h=[]),l=h.length;--l>-1;)o=h[l],o.c===e&&o.s===i?h.splice(l,1):0===_&&r>o.pr&&(_=l+1);h.splice(_,0,{c:e,s:i,up:s,pr:r}),this!==n||a||n.wake()},r.removeEventListener=function(t,e){var i,s=this._listeners[t];if(s)for(i=s.length;--i>-1;)if(s[i].c===e)return s.splice(i,1),void 0},r.dispatchEvent=function(t){var e,i,s,r=this._listeners[t];if(r)for(e=r.length,i=this._eventTarget;--e>-1;)s=r[e],s.up?s.c.call(s.s||i,{type:t,target:i}):s.c.call(s.s||i)};var b=t.requestAnimationFrame,k=t.cancelAnimationFrame,A=Date.now||function(){return(new Date).getTime()},S=A();for(i=["ms","moz","webkit","o"],s=i.length;--s>-1&&!b;)b=t[i[s]+"RequestAnimationFrame"],k=t[i[s]+"CancelAnimationFrame"]||t[i[s]+"CancelRequestAnimationFrame"];d("Ticker",function(t,e){var i,s,r,o,l,h=this,_=A(),m=e!==!1&&b,f=function(t){S=A(),h.time=(S-_)/1e3;var e,n=h.time-l;(!i||n>0||t===!0)&&(h.frame++,l+=n+(n>=o?.004:o-n),e=!0),t!==!0&&(r=s(f)),e&&h.dispatchEvent("tick")};y.call(h),h.time=h.frame=0,h.tick=function(){f(!0)},h.sleep=function(){null!=r&&(m&&k?k(r):clearTimeout(r),s=u,r=null,h===n&&(a=!1))},h.wake=function(){null!==r&&h.sleep(),s=0===i?u:m&&b?b:function(t){return setTimeout(t,0|1e3*(l-h.time)+1)},h===n&&(a=!0),f(2)},h.fps=function(t){return arguments.length?(i=t,o=1/(i||60),l=this.time+o,h.wake(),void 0):i},h.useRAF=function(t){return arguments.length?(h.sleep(),m=t,h.fps(i),void 0):m},h.fps(t),setTimeout(function(){m&&(!r||5>h.frame)&&h.useRAF(!1)},1500)}),r=l.Ticker.prototype=new l.events.EventDispatcher,r.constructor=l.Ticker;var x=d("core.Animation",function(t,e){if(this.vars=e=e||{},this._duration=this._totalDuration=t||0,this._delay=Number(e.delay)||0,this._timeScale=1,this._active=e.immediateRender===!0,this.data=e.data,this._reversed=e.reversed===!0,Q){a||n.wake();var i=this.vars.useFrames?G:Q;i.add(this,i._time),this.vars.paused&&this.paused(!0)}});n=x.ticker=new l.Ticker,r=x.prototype,r._dirty=r._gc=r._initted=r._paused=!1,r._totalTime=r._time=0,r._rawPrevTime=-1,r._next=r._last=r._onUpdate=r._timeline=r.timeline=null,r._paused=!1;var C=function(){a&&A()-S>2e3&&n.wake(),setTimeout(C,2e3)};C(),r.play=function(t,e){return arguments.length&&this.seek(t,e),this.reversed(!1).paused(!1)},r.pause=function(t,e){return arguments.length&&this.seek(t,e),this.paused(!0)},r.resume=function(t,e){return arguments.length&&this.seek(t,e),this.paused(!1)},r.seek=function(t,e){return this.totalTime(Number(t),e!==!1)},r.restart=function(t,e){return this.reversed(!1).paused(!1).totalTime(t?-this._delay:0,e!==!1,!0)},r.reverse=function(t,e){return arguments.length&&this.seek(t||this.totalDuration(),e),this.reversed(!0).paused(!1)},r.render=function(){},r.invalidate=function(){return this},r.isActive=function(){var t,e=this._timeline,i=this._startTime;return!e||!this._gc&&!this._paused&&e.isActive()&&(t=e.rawTime())>=i&&i+this.totalDuration()/this._timeScale>t},r._enabled=function(t,e){return a||n.wake(),this._gc=!t,this._active=this.isActive(),e!==!0&&(t&&!this.timeline?this._timeline.add(this,this._startTime-this._delay):!t&&this.timeline&&this._timeline._remove(this,!0)),!1},r._kill=function(){return this._enabled(!1,!1)},r.kill=function(t,e){return this._kill(t,e),this},r._uncache=function(t){for(var e=t?this:this.timeline;e;)e._dirty=!0,e=e.timeline;return this},r._swapSelfInParams=function(t){for(var e=t.length,i=t.concat();--e>-1;)"{self}"===t[e]&&(i[e]=this);return i},r.eventCallback=function(t,e,i,s){if("on"===(t||"").substr(0,2)){var r=this.vars;if(1===arguments.length)return r[t];null==e?delete r[t]:(r[t]=e,r[t+"Params"]=m(i)&&-1!==i.join("").indexOf("{self}")?this._swapSelfInParams(i):i,r[t+"Scope"]=s),"onUpdate"===t&&(this._onUpdate=e)}return this},r.delay=function(t){return arguments.length?(this._timeline.smoothChildTiming&&this.startTime(this._startTime+t-this._delay),this._delay=t,this):this._delay},r.duration=function(t){return arguments.length?(this._duration=this._totalDuration=t,this._uncache(!0),this._timeline.smoothChildTiming&&this._time>0&&this._time this._duration?this._duration:t,e)):this._time},r.totalTime=function(t,e,i){if(a||n.wake(),!arguments.length)return this._totalTime;if(this._timeline){if(0>t&&!i&&(t+=this.totalDuration()),this._timeline.smoothChildTiming){this._dirty&&this.totalDuration();var s=this._totalDuration,r=this._timeline;if(t>s&&!i&&(t=s),this._startTime=(this._paused?this._pauseTime:r._time)-(this._reversed?s-t:t)/this._timeScale,r._dirty||this._uncache(!1),r._timeline)for(;r._timeline;)r._timeline._time!==(r._startTime+r._totalTime)/r._timeScale&&r.totalTime(r._totalTime,!0),r=r._timeline}this._gc&&this._enabled(!0,!1),(this._totalTime!==t||0===this._duration)&&this.render(t,e,!1)}return this},r.progress=r.totalProgress=function(t,e){return arguments.length?this.totalTime(this.duration()*t,e):this._time/this.duration()},r.startTime=function(t){return arguments.length?(t!==this._startTime&&(this._startTime=t,this.timeline&&this.timeline._sortChildren&&this.timeline.add(this,t-this._delay)),this):this._startTime},r.timeScale=function(t){if(!arguments.length)return this._timeScale;if(t=t||h,this._timeline&&this._timeline.smoothChildTiming){var e=this._pauseTime,i=e||0===e?e:this._timeline.totalTime();this._startTime=i-(i-this._startTime)*this._timeScale/t}return this._timeScale=t,this._uncache(!1)},r.reversed=function(t){return arguments.length?(t!=this._reversed&&(this._reversed=t,this.totalTime(this._totalTime,!0)),this):this._reversed},r.paused=function(t){if(!arguments.length)return this._paused;if(t!=this._paused&&this._timeline){a||t||n.wake();var e=this._timeline,i=e.rawTime(),s=i-this._pauseTime;!t&&e.smoothChildTiming&&(this._startTime+=s,this._uncache(!1)),this._pauseTime=t?i:null,this._paused=t,this._active=this.isActive(),!t&&0!==s&&this._initted&&this.duration()&&this.render(e.smoothChildTiming?this._totalTime:(i-this._startTime)/this._timeScale,!0,!0)}return this._gc&&!t&&this._enabled(!0,!1),this};var R=d("core.SimpleTimeline",function(t){x.call(this,0,t),this.autoRemoveChildren=this.smoothChildTiming=!0});r=R.prototype=new x,r.constructor=R,r.kill()._gc=!1,r._first=r._last=null,r._sortChildren=!1,r.add=r.insert=function(t,e){var i,s;if(t._startTime=Number(e||0)+t._delay,t._paused&&this!==t._timeline&&(t._pauseTime=t._startTime+(this.rawTime()-t._startTime)/t._timeScale),t.timeline&&t.timeline._remove(t,!0),t.timeline=t._timeline=this,t._gc&&t._enabled(!0,!0),i=this._last,this._sortChildren)for(s=t._startTime;i&&i._startTime>s;)i=i._prev;return i?(t._next=i._next,i._next=t):(t._next=this._first,this._first=t),t._next?t._next._prev=t:this._last=t,t._prev=i,this._timeline&&this._uncache(!0),this},r._remove=function(t,e){return t.timeline===this&&(e||t._enabled(!1,!0),t.timeline=null,t._prev?t._prev._next=t._next:this._first===t&&(this._first=t._next),t._next?t._next._prev=t._prev:this._last===t&&(this._last=t._prev),this._timeline&&this._uncache(!0)),this},r.render=function(t,e,i){var s,r=this._first;for(this._totalTime=this._time=this._rawPrevTime=t;r;)s=r._next,(r._active||t>=r._startTime&&!r._paused)&&(r._reversed?r.render((r._dirty?r.totalDuration():r._totalDuration)-(t-r._startTime)*r._timeScale,e,i):r.render((t-r._startTime)*r._timeScale,e,i)),r=s},r.rawTime=function(){return a||n.wake(),this._totalTime};var D=d("TweenLite",function(e,i,s){if(x.call(this,i,s),this.render=D.prototype.render,null==e)throw"Cannot tween a null target.";this.target=e="string"!=typeof e?e:D.selector(e)||e;var r,n,a,o=e.jquery||e.length&&e!==t&&e[0]&&(e[0]===t||e[0].nodeType&&e[0].style&&!e.nodeType),l=this.vars.overwrite;if(this._overwrite=l=null==l?j[D.defaultOverwrite]:"number"==typeof l?l>>0:j[l],(o||e instanceof Array||e.push&&m(e))&&"number"!=typeof e[0])for(this._targets=a=_.call(e,0),this._propLookup=[],this._siblings=[],r=0;a.length>r;r++)n=a[r],n?"string"!=typeof n?n.length&&n!==t&&n[0]&&(n[0]===t||n[0].nodeType&&n[0].style&&!n.nodeType)?(a.splice(r--,1),this._targets=a=a.concat(_.call(n,0))):(this._siblings[r]=B(n,this,!1),1===l&&this._siblings[r].length>1&&q(n,this,null,1,this._siblings[r])):(n=a[r--]=D.selector(n),"string"==typeof n&&a.splice(r+1,1)):a.splice(r--,1);else this._propLookup={},this._siblings=B(e,this,!1),1===l&&this._siblings.length>1&&q(e,this,null,1,this._siblings);(this.vars.immediateRender||0===i&&0===this._delay&&this.vars.immediateRender!==!1)&&this.render(-this._delay,!1,!0)},!0),E=function(e){return e.length&&e!==t&&e[0]&&(e[0]===t||e[0].nodeType&&e[0].style&&!e.nodeType)},I=function(t,e){var i,s={};for(i in t)F[i]||i in e&&"x"!==i&&"y"!==i&&"width"!==i&&"height"!==i&&"className"!==i&&"border"!==i||!(!N[i]||N[i]&&N[i]._autoCSS)||(s[i]=t[i],delete t[i]);t.css=s};r=D.prototype=new x,r.constructor=D,r.kill()._gc=!1,r.ratio=0,r._firstPT=r._targets=r._overwrittenProps=r._startAt=null,r._notifyPluginsOfEnabled=!1,D.version="1.11.2",D.defaultEase=r._ease=new T(null,null,1,1),D.defaultOverwrite="auto",D.ticker=n,D.autoSleep=!0,D.selector=t.$||t.jQuery||function(e){return t.$?(D.selector=t.$,t.$(e)):t.document?t.document.getElementById("#"===e.charAt(0)?e.substr(1):e):e};var O=D._internals={isArray:m,isSelector:E},N=D._plugins={},L=D._tweenLookup={},U=0,F=O.reservedProps={ease:1,delay:1,overwrite:1,onComplete:1,onCompleteParams:1,onCompleteScope:1,useFrames:1,runBackwards:1,startAt:1,onUpdate:1,onUpdateParams:1,onUpdateScope:1,onStart:1,onStartParams:1,onStartScope:1,onReverseComplete:1,onReverseCompleteParams:1,onReverseCompleteScope:1,onRepeat:1,onRepeatParams:1,onRepeatScope:1,easeParams:1,yoyo:1,immediateRender:1,repeat:1,repeatDelay:1,data:1,paused:1,reversed:1,autoCSS:1},j={none:0,all:1,auto:2,concurrent:3,allOnStart:4,preexisting:5,"true":1,"false":0},G=x._rootFramesTimeline=new R,Q=x._rootTimeline=new R;Q._startTime=n.time,G._startTime=n.frame,Q._active=G._active=!0,x._updateRoot=function(){if(Q.render((n.time-Q._startTime)*Q._timeScale,!1,!1),G.render((n.frame-G._startTime)*G._timeScale,!1,!1),!(n.frame%120)){var t,e,i;for(i in L){for(e=L[i].tweens,t=e.length;--t>-1;)e[t]._gc&&e.splice(t,1);0===e.length&&delete L[i]}if(i=Q._first,(!i||i._paused)&&D.autoSleep&&!G._first&&1===n._listeners.tick.length){for(;i&&i._paused;)i=i._next;i||n.sleep()}}},n.addEventListener("tick",x._updateRoot);var B=function(t,e,i){var s,r,n=t._gsTweenID;if(L[n||(t._gsTweenID=n="t"+U++)]||(L[n]={target:t,tweens:[]}),e&&(s=L[n].tweens,s[r=s.length]=e,i))for(;--r>-1;)s[r]===e&&s.splice(r,1);return L[n].tweens},q=function(t,e,i,s,r){var n,a,o,l;if(1===s||s>=4){for(l=r.length,n=0;l>n;n++)if((o=r[n])!==e)o._gc||o._enabled(!1,!1)&&(a=!0);else if(5===s)break;return a}var _,u=e._startTime+h,m=[],f=0,p=0===e._duration;for(n=r.length;--n>-1;)(o=r[n])===e||o._gc||o._paused||(o._timeline!==e._timeline?(_=_||$(e,0,p),0===$(o,_,p)&&(m[f++]=o)):u>=o._startTime&&o._startTime+o.totalDuration()/o._timeScale+h>u&&((p||!o._initted)&&2e-10>=u-o._startTime||(m[f++]=o)));for(n=f;--n>-1;)o=m[n],2===s&&o._kill(i,t)&&(a=!0),(2!==s||!o._firstPT&&o._initted)&&o._enabled(!1,!1)&&(a=!0);return a},$=function(t,e,i){for(var s=t._timeline,r=s._timeScale,n=t._startTime;s._timeline;){if(n+=s._startTime,r*=s._timeScale,s._paused)return-100;s=s._timeline}return n/=r,n>e?n-e:i&&n===e||!t._initted&&2*h>n-e?h:(n+=t.totalDuration()/t._timeScale/r)>e+h?0:n-e-h};r._init=function(){var t,e,i,s,r=this.vars,n=this._overwrittenProps,a=this._duration,o=r.immediateRender,l=r.ease;if(r.startAt){if(this._startAt&&this._startAt.render(-1,!0),r.startAt.overwrite=0,r.startAt.immediateRender=!0,this._startAt=D.to(this.target,0,r.startAt),o)if(this._time>0)this._startAt=null;else if(0!==a)return}else if(r.runBackwards&&0!==a)if(this._startAt)this._startAt.render(-1,!0),this._startAt=null;else{i={};for(s in r)F[s]&&"autoCSS"!==s||(i[s]=r[s]);if(i.overwrite=0,i.data="isFromStart",this._startAt=D.to(this.target,0,i),r.immediateRender){if(0===this._time)return}else this._startAt.render(-1,!0)}if(this._ease=l?l instanceof T?r.easeParams instanceof Array?l.config.apply(l,r.easeParams):l:"function"==typeof l?new T(l,r.easeParams):w[l]||D.defaultEase:D.defaultEase,this._easeType=this._ease._type,this._easePower=this._ease._power,this._firstPT=null,this._targets)for(t=this._targets.length;--t>-1;)this._initProps(this._targets[t],this._propLookup[t]={},this._siblings[t],n?n[t]:null)&&(e=!0);else e=this._initProps(this.target,this._propLookup,this._siblings,n);if(e&&D._onPluginEvent("_onInitAllProps",this),n&&(this._firstPT||"function"!=typeof this.target&&this._enabled(!1,!1)),r.runBackwards)for(i=this._firstPT;i;)i.s+=i.c,i.c=-i.c,i=i._next;this._onUpdate=r.onUpdate,this._initted=!0},r._initProps=function(e,i,s,r){var n,a,o,l,h,_;if(null==e)return!1;this.vars.css||e.style&&e!==t&&e.nodeType&&N.css&&this.vars.autoCSS!==!1&&I(this.vars,e);for(n in this.vars){if(_=this.vars[n],F[n])_&&(_ instanceof Array||_.push&&m(_))&&-1!==_.join("").indexOf("{self}")&&(this.vars[n]=_=this._swapSelfInParams(_,this));else if(N[n]&&(l=new N[n])._onInitTween(e,this.vars[n],this)){for(this._firstPT=h={_next:this._firstPT,t:l,p:"setRatio",s:0,c:1,f:!0,n:n,pg:!0,pr:l._priority},a=l._overwriteProps.length;--a>-1;)i[l._overwriteProps[a]]=this._firstPT;(l._priority||l._onInitAllProps)&&(o=!0),(l._onDisable||l._onEnable)&&(this._notifyPluginsOfEnabled=!0)}else this._firstPT=i[n]=h={_next:this._firstPT,t:e,p:n,f:"function"==typeof e[n],n:n,pg:!1,pr:0},h.s=h.f?e[n.indexOf("set")||"function"!=typeof e["get"+n.substr(3)]?n:"get"+n.substr(3)]():parseFloat(e[n]),h.c="string"==typeof _&&"="===_.charAt(1)?parseInt(_.charAt(0)+"1",10)*Number(_.substr(2)):Number(_)-h.s||0;h&&h._next&&(h._next._prev=h)}return r&&this._kill(r,e)?this._initProps(e,i,s,r):this._overwrite>1&&this._firstPT&&s.length>1&&q(e,this,i,this._overwrite,s)?(this._kill(i,e),this._initProps(e,i,s,r)):o},r.render=function(t,e,i){var s,r,n,a,o=this._time,l=this._duration;if(t>=l)this._totalTime=this._time=l,this.ratio=this._ease._calcEnd?this._ease.getRatio(1):1,this._reversed||(s=!0,r="onComplete"),0===l&&(a=this._rawPrevTime,(0===t||0>a||a===h)&&a!==t&&(i=!0,a>h&&(r="onReverseComplete")),this._rawPrevTime=a=!e||t?t:h);else if(1e-7>t)this._totalTime=this._time=0,this.ratio=this._ease._calcEnd?this._ease.getRatio(0):0,(0!==o||0===l&&this._rawPrevTime>h)&&(r="onReverseComplete",s=this._reversed),0>t?(this._active=!1,0===l&&(this._rawPrevTime>=0&&(i=!0),this._rawPrevTime=a=!e||t?t:h)):this._initted||(i=!0);else if(this._totalTime=this._time=t,this._easeType){var _=t/l,u=this._easeType,m=this._easePower;(1===u||3===u&&_>=.5)&&(_=1-_),3===u&&(_*=2),1===m?_*=_:2===m?_*=_*_:3===m?_*=_*_*_:4===m&&(_*=_*_*_*_),this.ratio=1===u?1-_:2===u?_:.5>t/l?_/2:1-_/2}else this.ratio=this._ease.getRatio(t/l);if(this._time!==o||i){if(!this._initted){if(this._init(),!this._initted||this._gc)return;this._time&&!s?this.ratio=this._ease.getRatio(this._time/l):s&&this._ease._calcEnd&&(this.ratio=this._ease.getRatio(0===this._time?0:1))}for(this._active||!this._paused&&this._time!==o&&t>=0&&(this._active=!0),0===o&&(this._startAt&&(t>=0?this._startAt.render(t,e,i):r||(r="_dummyGS")),this.vars.onStart&&(0!==this._time||0===l)&&(e||this.vars.onStart.apply(this.vars.onStartScope||this,this.vars.onStartParams||g))),n=this._firstPT;n;)n.f?n.t[n.p](n.c*this.ratio+n.s):n.t[n.p]=n.c*this.ratio+n.s,n=n._next;this._onUpdate&&(0>t&&this._startAt&&this._startTime&&this._startAt.render(t,e,i),e||i&&0===this._time&&0===o||this._onUpdate.apply(this.vars.onUpdateScope||this,this.vars.onUpdateParams||g)),r&&(this._gc||(0>t&&this._startAt&&!this._onUpdate&&this._startTime&&this._startAt.render(t,e,i),s&&(this._timeline.autoRemoveChildren&&this._enabled(!1,!1),this._active=!1),!e&&this.vars[r]&&this.vars[r].apply(this.vars[r+"Scope"]||this,this.vars[r+"Params"]||g),0===l&&this._rawPrevTime===h&&a!==h&&(this._rawPrevTime=0)))}},r._kill=function(t,e){if("all"===t&&(t=null),null==t&&(null==e||e===this.target))return this._enabled(!1,!1);e="string"!=typeof e?e||this._targets||this.target:D.selector(e)||e;var i,s,r,n,a,o,l,h;if((m(e)||E(e))&&"number"!=typeof e[0])for(i=e.length;--i>-1;)this._kill(t,e[i])&&(o=!0);else{if(this._targets){for(i=this._targets.length;--i>-1;)if(e===this._targets[i]){a=this._propLookup[i]||{},this._overwrittenProps=this._overwrittenProps||[],s=this._overwrittenProps[i]=t?this._overwrittenProps[i]||{}:"all";break}}else{if(e!==this.target)return!1;a=this._propLookup,s=this._overwrittenProps=t?this._overwrittenProps||{}:"all"}if(a){l=t||a,h=t!==s&&"all"!==s&&t!==a&&("object"!=typeof t||!t._tempKill);for(r in l)(n=a[r])&&(n.pg&&n.t._kill(l)&&(o=!0),n.pg&&0!==n.t._overwriteProps.length||(n._prev?n._prev._next=n._next:n===this._firstPT&&(this._firstPT=n._next),n._next&&(n._next._prev=n._prev),n._next=n._prev=null),delete a[r]),h&&(s[r]=1);!this._firstPT&&this._initted&&this._enabled(!1,!1)}}return o},r.invalidate=function(){return this._notifyPluginsOfEnabled&&D._onPluginEvent("_onDisable",this),this._firstPT=null,this._overwrittenProps=null,this._onUpdate=null,this._startAt=null,this._initted=this._active=this._notifyPluginsOfEnabled=!1,this._propLookup=this._targets?{}:[],this},r._enabled=function(t,e){if(a||n.wake(),t&&this._gc){var i,s=this._targets;if(s)for(i=s.length;--i>-1;)this._siblings[i]=B(s[i],this,!0);else this._siblings=B(this.target,this,!0)}return x.prototype._enabled.call(this,t,e),this._notifyPluginsOfEnabled&&this._firstPT?D._onPluginEvent(t?"_onEnable":"_onDisable",this):!1},D.to=function(t,e,i){return new D(t,e,i)},D.from=function(t,e,i){return i.runBackwards=!0,i.immediateRender=0!=i.immediateRender,new D(t,e,i)},D.fromTo=function(t,e,i,s){return s.startAt=i,s.immediateRender=0!=s.immediateRender&&0!=i.immediateRender,new D(t,e,s)},D.delayedCall=function(t,e,i,s,r){return new D(e,0,{delay:t,onComplete:e,onCompleteParams:i,onCompleteScope:s,onReverseComplete:e,onReverseCompleteParams:i,onReverseCompleteScope:s,immediateRender:!1,useFrames:r,overwrite:0})},D.set=function(t,e){return new D(t,0,e)},D.getTweensOf=function(t,e){if(null==t)return[];t="string"!=typeof t?t:D.selector(t)||t;var i,s,r,n;if((m(t)||E(t))&&"number"!=typeof t[0]){for(i=t.length,s=[];--i>-1;)s=s.concat(D.getTweensOf(t[i],e));for(i=s.length;--i>-1;)for(n=s[i],r=i;--r>-1;)n===s[r]&&s.splice(i,1)}else for(s=B(t).concat(),i=s.length;--i>-1;)(s[i]._gc||e&&!s[i].isActive())&&s.splice(i,1);return s},D.killTweensOf=D.killDelayedCallsTo=function(t,e,i){"object"==typeof e&&(i=e,e=!1);for(var s=D.getTweensOf(t,e),r=s.length;--r>-1;)s[r]._kill(i,t)};var M=d("plugins.TweenPlugin",function(t,e){this._overwriteProps=(t||"").split(","),this._propName=this._overwriteProps[0],this._priority=e||0,this._super=M.prototype},!0);if(r=M.prototype,M.version="1.10.1",M.API=2,r._firstPT=null,r._addTween=function(t,e,i,s,r,n){var a,o;return null!=s&&(a="number"==typeof s||"="!==s.charAt(1)?Number(s)-i:parseInt(s.charAt(0)+"1",10)*Number(s.substr(2)))?(this._firstPT=o={_next:this._firstPT,t:t,p:e,s:i,c:a,f:"function"==typeof t[e],n:r||e,r:n},o._next&&(o._next._prev=o),o):void 0},r.setRatio=function(t){for(var e,i=this._firstPT,s=1e-6;i;)e=i.c*t+i.s,i.r?e=0|e+(e>0?.5:-.5):s>e&&e>-s&&(e=0),i.f?i.t[i.p](e):i.t[i.p]=e,i=i._next},r._kill=function(t){var e,i=this._overwriteProps,s=this._firstPT;if(null!=t[this._propName])this._overwriteProps=[];else for(e=i.length;--e>-1;)null!=t[i[e]]&&i.splice(e,1);for(;s;)null!=t[s.n]&&(s._next&&(s._next._prev=s._prev),s._prev?(s._prev._next=s._next,s._prev=null):this._firstPT===s&&(this._firstPT=s._next)),s=s._next;return!1},r._roundProps=function(t,e){for(var i=this._firstPT;i;)(t[this._propName]||null!=i.n&&t[i.n.split(this._propName+"_").join("")])&&(i.r=e),i=i._next},D._onPluginEvent=function(t,e){var i,s,r,n,a,o=e._firstPT;if("_onInitAllProps"===t){for(;o;){for(a=o._next,s=r;s&&s.pr>o.pr;)s=s._next;(o._prev=s?s._prev:n)?o._prev._next=o:r=o,(o._next=s)?s._prev=o:n=o,o=a}o=e._firstPT=r}for(;o;)o.pg&&"function"==typeof o.t[t]&&o.t[t]()&&(i=!0),o=o._next;return i},M.activate=function(t){for(var e=t.length;--e>-1;)t[e].API===M.API&&(N[(new t[e])._propName]=t[e]);return!0},c.plugin=function(t){if(!(t&&t.propName&&t.init&&t.API))throw"illegal plugin definition.";var e,i=t.propName,s=t.priority||0,r=t.overwriteProps,n={init:"_onInitTween",set:"setRatio",kill:"_kill",round:"_roundProps",initAll:"_onInitAllProps"},a=d("plugins."+i.charAt(0).toUpperCase()+i.substr(1)+"Plugin",function(){M.call(this,i,s),this._overwriteProps=r||[]},t.global===!0),o=a.prototype=new M(i);o.constructor=a,a.API=t.API;for(e in n)"function"==typeof t[e]&&(o[n[e]]=t[e]);return a.version=t.version,M.activate([a]),a},i=t._gsQueue){for(s=0;i.length>s;s++)i[s]();for(r in f)f[r].func||t.console.log("GSAP encountered missing dependency: com.greensock."+r)}a=!1}})(window); +(window._gsQueue||(window._gsQueue=[])).push(function(){"use strict";window._gsDefine("easing.Back",["easing.Ease"],function(t){var e,i,s,r=window.GreenSockGlobals||window,n=r.com.greensock,a=2*Math.PI,o=Math.PI/2,h=n._class,l=function(e,i){var s=h("easing."+e,function(){},!0),r=s.prototype=new t;return r.constructor=s,r.getRatio=i,s},_=t.register||function(){},u=function(t,e,i,s){var r=h("easing."+t,{easeOut:new e,easeIn:new i,easeInOut:new s},!0);return _(r,t),r},c=function(t,e,i){this.t=t,this.v=e,i&&(this.next=i,i.prev=this,this.c=i.v-e,this.gap=i.t-t)},p=function(e,i){var s=h("easing."+e,function(t){this._p1=t||0===t?t:1.70158,this._p2=1.525*this._p1},!0),r=s.prototype=new t;return r.constructor=s,r.getRatio=i,r.config=function(t){return new s(t)},s},f=u("Back",p("BackOut",function(t){return(t-=1)*t*((this._p1+1)*t+this._p1)+1}),p("BackIn",function(t){return t*t*((this._p1+1)*t-this._p1)}),p("BackInOut",function(t){return 1>(t*=2)?.5*t*t*((this._p2+1)*t-this._p2):.5*((t-=2)*t*((this._p2+1)*t+this._p2)+2)})),m=h("easing.SlowMo",function(t,e,i){e=e||0===e?e:.7,null==t?t=.7:t>1&&(t=1),this._p=1!==t?e:0,this._p1=(1-t)/2,this._p2=t,this._p3=this._p1+this._p2,this._calcEnd=i===!0},!0),d=m.prototype=new t;return d.constructor=m,d.getRatio=function(t){var e=t+(.5-t)*this._p;return this._p1>t?this._calcEnd?1-(t=1-t/this._p1)*t:e-(t=1-t/this._p1)*t*t*t*e:t>this._p3?this._calcEnd?1-(t=(t-this._p3)/this._p1)*t:e+(t-e)*(t=(t-this._p3)/this._p1)*t*t*t:this._calcEnd?1:e},m.ease=new m(.7,.7),d.config=m.config=function(t,e,i){return new m(t,e,i)},e=h("easing.SteppedEase",function(t){t=t||1,this._p1=1/t,this._p2=t+1},!0),d=e.prototype=new t,d.constructor=e,d.getRatio=function(t){return 0>t?t=0:t>=1&&(t=.999999999),(this._p2*t>>0)*this._p1},d.config=e.config=function(t){return new e(t)},i=h("easing.RoughEase",function(e){e=e||{};for(var i,s,r,n,a,o,h=e.taper||"none",l=[],_=0,u=0|(e.points||20),p=u,f=e.randomize!==!1,m=e.clamp===!0,d=e.template instanceof t?e.template:null,g="number"==typeof e.strength?.4*e.strength:.4;--p>-1;)i=f?Math.random():1/u*p,s=d?d.getRatio(i):i,"none"===h?r=g:"out"===h?(n=1-i,r=n*n*g):"in"===h?r=i*i*g:.5>i?(n=2*i,r=.5*n*n*g):(n=2*(1-i),r=.5*n*n*g),f?s+=Math.random()*r-.5*r:p%2?s+=.5*r:s-=.5*r,m&&(s>1?s=1:0>s&&(s=0)),l[_++]={x:i,y:s};for(l.sort(function(t,e){return t.x-e.x}),o=new c(1,1,null),p=u;--p>-1;)a=l[p],o=new c(a.x,a.y,o);this._prev=new c(0,0,0!==o.t?o:o.next)},!0),d=i.prototype=new t,d.constructor=i,d.getRatio=function(t){var e=this._prev;if(t>e.t){for(;e.next&&t>=e.t;)e=e.next;e=e.prev}else for(;e.prev&&e.t>=t;)e=e.prev;return this._prev=e,e.v+(t-e.t)/e.gap*e.c},d.config=function(t){return new i(t)},i.ease=new i,u("Bounce",l("BounceOut",function(t){return 1/2.75>t?7.5625*t*t:2/2.75>t?7.5625*(t-=1.5/2.75)*t+.75:2.5/2.75>t?7.5625*(t-=2.25/2.75)*t+.9375:7.5625*(t-=2.625/2.75)*t+.984375}),l("BounceIn",function(t){return 1/2.75>(t=1-t)?1-7.5625*t*t:2/2.75>t?1-(7.5625*(t-=1.5/2.75)*t+.75):2.5/2.75>t?1-(7.5625*(t-=2.25/2.75)*t+.9375):1-(7.5625*(t-=2.625/2.75)*t+.984375)}),l("BounceInOut",function(t){var e=.5>t;return t=e?1-2*t:2*t-1,t=1/2.75>t?7.5625*t*t:2/2.75>t?7.5625*(t-=1.5/2.75)*t+.75:2.5/2.75>t?7.5625*(t-=2.25/2.75)*t+.9375:7.5625*(t-=2.625/2.75)*t+.984375,e?.5*(1-t):.5*t+.5})),u("Circ",l("CircOut",function(t){return Math.sqrt(1-(t-=1)*t)}),l("CircIn",function(t){return-(Math.sqrt(1-t*t)-1)}),l("CircInOut",function(t){return 1>(t*=2)?-.5*(Math.sqrt(1-t*t)-1):.5*(Math.sqrt(1-(t-=2)*t)+1)})),s=function(e,i,s){var r=h("easing."+e,function(t,e){this._p1=t||1,this._p2=e||s,this._p3=this._p2/a*(Math.asin(1/this._p1)||0)},!0),n=r.prototype=new t;return n.constructor=r,n.getRatio=i,n.config=function(t,e){return new r(t,e)},r},u("Elastic",s("ElasticOut",function(t){return this._p1*Math.pow(2,-10*t)*Math.sin((t-this._p3)*a/this._p2)+1},.3),s("ElasticIn",function(t){return-(this._p1*Math.pow(2,10*(t-=1))*Math.sin((t-this._p3)*a/this._p2))},.3),s("ElasticInOut",function(t){return 1>(t*=2)?-.5*this._p1*Math.pow(2,10*(t-=1))*Math.sin((t-this._p3)*a/this._p2):.5*this._p1*Math.pow(2,-10*(t-=1))*Math.sin((t-this._p3)*a/this._p2)+1},.45)),u("Expo",l("ExpoOut",function(t){return 1-Math.pow(2,-10*t)}),l("ExpoIn",function(t){return Math.pow(2,10*(t-1))-.001}),l("ExpoInOut",function(t){return 1>(t*=2)?.5*Math.pow(2,10*(t-1)):.5*(2-Math.pow(2,-10*(t-1)))})),u("Sine",l("SineOut",function(t){return Math.sin(t*o)}),l("SineIn",function(t){return-Math.cos(t*o)+1}),l("SineInOut",function(t){return-.5*(Math.cos(Math.PI*t)-1)})),h("easing.EaseLookup",{find:function(e){return t.map[e]}},!0),_(r.SlowMo,"SlowMo","ease,"),_(i,"RoughEase","ease,"),_(e,"SteppedEase","ease,"),f},!0)}),window._gsDefine&&window._gsQueue.pop()(); +(window._gsQueue||(window._gsQueue=[])).push(function(){"use strict";window._gsDefine("plugins.CSSPlugin",["plugins.TweenPlugin","TweenLite"],function(t,e){var i,s,r,n,a=function(){t.call(this,"css"),this._overwriteProps.length=0,this.setRatio=a.prototype.setRatio},o={},l=a.prototype=new t("css");l.constructor=a,a.version="1.11.2",a.API=2,a.defaultTransformPerspective=0,l="px",a.suffixMap={top:l,right:l,bottom:l,left:l,width:l,height:l,fontSize:l,padding:l,margin:l,perspective:l};var h,u,_,p,f,c,d=/(?:\d|\-\d|\.\d|\-\.\d)+/g,m=/(?:\d|\-\d|\.\d|\-\.\d|\+=\d|\-=\d|\+=.\d|\-=\.\d)+/g,g=/(?:\+=|\-=|\-|\b)[\d\-\.]+[a-zA-Z0-9]*(?:%|\b)/gi,v=/[^\d\-\.]/g,y=/(?:\d|\-|\+|=|#|\.)*/g,T=/opacity *= *([^)]*)/,x=/opacity:([^;]*)/,w=/alpha\(opacity *=.+?\)/i,b=/^(rgb|hsl)/,P=/([A-Z])/g,S=/-([a-z])/gi,R=/(^(?:url\(\"|url\())|(?:(\"\))$|\)$)/gi,k=function(t,e){return e.toUpperCase()},C=/(?:Left|Right|Width)/i,A=/(M11|M12|M21|M22)=[\d\-\.e]+/gi,O=/progid\:DXImageTransform\.Microsoft\.Matrix\(.+?\)/i,D=/,(?=[^\)]*(?:\(|$))/gi,M=Math.PI/180,L=180/Math.PI,N={},X=document,F=X.createElement("div"),I=X.createElement("img"),E=a._internals={_specialProps:o},Y=navigator.userAgent,z=function(){var t,e=Y.indexOf("Android"),i=X.createElement("div");return _=-1!==Y.indexOf("Safari")&&-1===Y.indexOf("Chrome")&&(-1===e||Number(Y.substr(e+8,1))>3),f=_&&6>Number(Y.substr(Y.indexOf("Version/")+8,1)),p=-1!==Y.indexOf("Firefox"),/MSIE ([0-9]{1,}[\.0-9]{0,})/.exec(Y),c=parseFloat(RegExp.$1),i.innerHTML="a",t=i.getElementsByTagName("a")[0],t?/^0.55/.test(t.style.opacity):!1}(),U=function(t){return T.test("string"==typeof t?t:(t.currentStyle?t.currentStyle.filter:t.style.filter)||"")?parseFloat(RegExp.$1)/100:1},B=function(t){window.console&&console.log(t)},j="",V="",q=function(t,e){e=e||F;var i,s,r=e.style;if(void 0!==r[t])return t;for(t=t.charAt(0).toUpperCase()+t.substr(1),i=["O","Moz","ms","Ms","Webkit"],s=5;--s>-1&&void 0===r[i[s]+t];);return s>=0?(V=3===s?"ms":i[s],j="-"+V.toLowerCase()+"-",V+t):null},W=X.defaultView?X.defaultView.getComputedStyle:function(){},Q=a.getStyle=function(t,e,i,s,r){var n;return z||"opacity"!==e?(!s&&t.style[e]?n=t.style[e]:(i=i||W(t,null))?(t=i.getPropertyValue(e.replace(P,"-$1").toLowerCase()),n=t||i.length?t:i[e]):t.currentStyle&&(n=t.currentStyle[e]),null==r||n&&"none"!==n&&"auto"!==n&&"auto auto"!==n?n:r):U(t)},Z=function(t,e,i,s,r){if("px"===s||!s)return i;if("auto"===s||!i)return 0;var n,a=C.test(e),o=t,l=F.style,h=0>i;return h&&(i=-i),"%"===s&&-1!==e.indexOf("border")?n=i/100*(a?t.clientWidth:t.clientHeight):(l.cssText="border:0 solid red;position:"+Q(t,"position")+";line-height:0;","%"!==s&&o.appendChild?l[a?"borderLeftWidth":"borderTopWidth"]=i+s:(o=t.parentNode||X.body,l[a?"width":"height"]=i+s),o.appendChild(F),n=parseFloat(F[a?"offsetWidth":"offsetHeight"]),o.removeChild(F),0!==n||r||(n=Z(t,e,i,s,!0))),h?-n:n},H=function(t,e,i){if("absolute"!==Q(t,"position",i))return 0;var s="left"===e?"Left":"Top",r=Q(t,"margin"+s,i);return t["offset"+s]-(Z(t,e,parseFloat(r),r.replace(y,""))||0)},$=function(t,e){var i,s,r={};if(e=e||W(t,null))if(i=e.length)for(;--i>-1;)r[e[i].replace(S,k)]=e.getPropertyValue(e[i]);else for(i in e)r[i]=e[i];else if(e=t.currentStyle||t.style)for(i in e)"string"==typeof i&&void 0!==r[i]&&(r[i.replace(S,k)]=e[i]);return z||(r.opacity=U(t)),s=be(t,e,!1),r.rotation=s.rotation,r.skewX=s.skewX,r.scaleX=s.scaleX,r.scaleY=s.scaleY,r.x=s.x,r.y=s.y,we&&(r.z=s.z,r.rotationX=s.rotationX,r.rotationY=s.rotationY,r.scaleZ=s.scaleZ),r.filters&&delete r.filters,r},G=function(t,e,i,s,r){var n,a,o,l={},h=t.style;for(a in i)"cssText"!==a&&"length"!==a&&isNaN(a)&&(e[a]!==(n=i[a])||r&&r[a])&&-1===a.indexOf("Origin")&&("number"==typeof n||"string"==typeof n)&&(l[a]="auto"!==n||"left"!==a&&"top"!==a?""!==n&&"auto"!==n&&"none"!==n||"string"!=typeof e[a]||""===e[a].replace(v,"")?n:0:H(t,a),void 0!==h[a]&&(o=new _e(h,a,h[a],o)));if(s)for(a in s)"className"!==a&&(l[a]=s[a]);return{difs:l,firstMPT:o}},K={width:["Left","Right"],height:["Top","Bottom"]},J=["marginLeft","marginRight","marginTop","marginBottom"],te=function(t,e,i){var s=parseFloat("width"===e?t.offsetWidth:t.offsetHeight),r=K[e],n=r.length;for(i=i||W(t,null);--n>-1;)s-=parseFloat(Q(t,"padding"+r[n],i,!0))||0,s-=parseFloat(Q(t,"border"+r[n]+"Width",i,!0))||0;return s},ee=function(t,e){(null==t||""===t||"auto"===t||"auto auto"===t)&&(t="0 0");var i=t.split(" "),s=-1!==t.indexOf("left")?"0%":-1!==t.indexOf("right")?"100%":i[0],r=-1!==t.indexOf("top")?"0%":-1!==t.indexOf("bottom")?"100%":i[1];return null==r?r="0":"center"===r&&(r="50%"),("center"===s||isNaN(parseFloat(s))&&-1===(s+"").indexOf("="))&&(s="50%"),e&&(e.oxp=-1!==s.indexOf("%"),e.oyp=-1!==r.indexOf("%"),e.oxr="="===s.charAt(1),e.oyr="="===r.charAt(1),e.ox=parseFloat(s.replace(v,"")),e.oy=parseFloat(r.replace(v,""))),s+" "+r+(i.length>2?" "+i[2]:"")},ie=function(t,e){return"string"==typeof t&&"="===t.charAt(1)?parseInt(t.charAt(0)+"1",10)*parseFloat(t.substr(2)):parseFloat(t)-parseFloat(e)},se=function(t,e){return null==t?e:"string"==typeof t&&"="===t.charAt(1)?parseInt(t.charAt(0)+"1",10)*Number(t.substr(2))+e:parseFloat(t)},re=function(t,e,i,s){var r,n,a,o,l=1e-6;return null==t?o=e:"number"==typeof t?o=t:(r=360,n=t.split("_"),a=Number(n[0].replace(v,""))*(-1===t.indexOf("rad")?1:L)-("="===t.charAt(1)?0:e),n.length&&(s&&(s[i]=e+a),-1!==t.indexOf("short")&&(a%=r,a!==a%(r/2)&&(a=0>a?a+r:a-r)),-1!==t.indexOf("_cw")&&0>a?a=(a+9999999999*r)%r-(0|a/r)*r:-1!==t.indexOf("ccw")&&a>0&&(a=(a-9999999999*r)%r-(0|a/r)*r)),o=e+a),l>o&&o>-l&&(o=0),o},ne={aqua:[0,255,255],lime:[0,255,0],silver:[192,192,192],black:[0,0,0],maroon:[128,0,0],teal:[0,128,128],blue:[0,0,255],navy:[0,0,128],white:[255,255,255],fuchsia:[255,0,255],olive:[128,128,0],yellow:[255,255,0],orange:[255,165,0],gray:[128,128,128],purple:[128,0,128],green:[0,128,0],red:[255,0,0],pink:[255,192,203],cyan:[0,255,255],transparent:[255,255,255,0]},ae=function(t,e,i){return t=0>t?t+1:t>1?t-1:t,0|255*(1>6*t?e+6*(i-e)*t:.5>t?i:2>3*t?e+6*(i-e)*(2/3-t):e)+.5},oe=function(t){var e,i,s,r,n,a;return t&&""!==t?"number"==typeof t?[t>>16,255&t>>8,255&t]:(","===t.charAt(t.length-1)&&(t=t.substr(0,t.length-1)),ne[t]?ne[t]:"#"===t.charAt(0)?(4===t.length&&(e=t.charAt(1),i=t.charAt(2),s=t.charAt(3),t="#"+e+e+i+i+s+s),t=parseInt(t.substr(1),16),[t>>16,255&t>>8,255&t]):"hsl"===t.substr(0,3)?(t=t.match(d),r=Number(t[0])%360/360,n=Number(t[1])/100,a=Number(t[2])/100,i=.5>=a?a*(n+1):a+n-a*n,e=2*a-i,t.length>3&&(t[3]=Number(t[3])),t[0]=ae(r+1/3,e,i),t[1]=ae(r,e,i),t[2]=ae(r-1/3,e,i),t):(t=t.match(d)||ne.transparent,t[0]=Number(t[0]),t[1]=Number(t[1]),t[2]=Number(t[2]),t.length>3&&(t[3]=Number(t[3])),t)):ne.black},le="(?:\\b(?:(?:rgb|rgba|hsl|hsla)\\(.+?\\))|\\B#.+?\\b";for(l in ne)le+="|"+l+"\\b";le=RegExp(le+")","gi");var he=function(t,e,i,s){if(null==t)return function(t){return t};var r,n=e?(t.match(le)||[""])[0]:"",a=t.split(n).join("").match(g)||[],o=t.substr(0,t.indexOf(a[0])),l=")"===t.charAt(t.length-1)?")":"",h=-1!==t.indexOf(" ")?" ":",",u=a.length,_=u>0?a[0].replace(d,""):"";return u?r=e?function(t){var e,p,f,c;if("number"==typeof t)t+=_;else if(s&&D.test(t)){for(c=t.replace(D,"|").split("|"),f=0;c.length>f;f++)c[f]=r(c[f]);return c.join(",")}if(e=(t.match(le)||[n])[0],p=t.split(e).join("").match(g)||[],f=p.length,u>f--)for(;u>++f;)p[f]=i?p[0|(f-1)/2]:a[f];return o+p.join(h)+h+e+l+(-1!==t.indexOf("inset")?" inset":"")}:function(t){var e,n,p;if("number"==typeof t)t+=_;else if(s&&D.test(t)){for(n=t.replace(D,"|").split("|"),p=0;n.length>p;p++)n[p]=r(n[p]);return n.join(",")}if(e=t.match(g)||[],p=e.length,u>p--)for(;u>++p;)e[p]=i?e[0|(p-1)/2]:a[p];return o+e.join(h)+l}:function(t){return t}},ue=function(t){return t=t.split(","),function(e,i,s,r,n,a,o){var l,h=(i+"").split(" ");for(o={},l=0;4>l;l++)o[t[l]]=h[l]=h[l]||h[(l-1)/2>>0];return r.parse(e,o,n,a)}},_e=(E._setPluginRatio=function(t){this.plugin.setRatio(t);for(var e,i,s,r,n=this.data,a=n.proxy,o=n.firstMPT,l=1e-6;o;)e=a[o.v],o.r?e=e>0?0|e+.5:0|e-.5:l>e&&e>-l&&(e=0),o.t[o.p]=e,o=o._next;if(n.autoRotate&&(n.autoRotate.rotation=a.rotation),1===t)for(o=n.firstMPT;o;){if(i=o.t,i.type){if(1===i.type){for(r=i.xs0+i.s+i.xs1,s=1;i.l>s;s++)r+=i["xn"+s]+i["xs"+(s+1)];i.e=r}}else i.e=i.s+i.xs0;o=o._next}},function(t,e,i,s,r){this.t=t,this.p=e,this.v=i,this.r=r,s&&(s._prev=this,this._next=s)}),pe=(E._parseToProxy=function(t,e,i,s,r,n){var a,o,l,h,u,_=s,p={},f={},c=i._transform,d=N;for(i._transform=null,N=e,s=u=i.parse(t,e,s,r),N=d,n&&(i._transform=c,_&&(_._prev=null,_._prev&&(_._prev._next=null)));s&&s!==_;){if(1>=s.type&&(o=s.p,f[o]=s.s+s.c,p[o]=s.s,n||(h=new _e(s,"s",o,h,s.r),s.c=0),1===s.type))for(a=s.l;--a>0;)l="xn"+a,o=s.p+"_"+l,f[o]=s.data[l],p[o]=s[l],n||(h=new _e(s,l,o,h,s.rxp[l]));s=s._next}return{proxy:p,end:f,firstMPT:h,pt:u}},E.CSSPropTween=function(t,e,s,r,a,o,l,h,u,_,p){this.t=t,this.p=e,this.s=s,this.c=r,this.n=l||e,t instanceof pe||n.push(this.n),this.r=h,this.type=o||0,u&&(this.pr=u,i=!0),this.b=void 0===_?s:_,this.e=void 0===p?s+r:p,a&&(this._next=a,a._prev=this)}),fe=a.parseComplex=function(t,e,i,s,r,n,a,o,l,u){i=i||n||"",a=new pe(t,e,0,0,a,u?2:1,null,!1,o,i,s),s+="";var _,p,f,c,g,v,y,T,x,w,P,S,R=i.split(", ").join(",").split(" "),k=s.split(", ").join(",").split(" "),C=R.length,A=h!==!1;for((-1!==s.indexOf(",")||-1!==i.indexOf(","))&&(R=R.join(" ").replace(D,", ").split(" "),k=k.join(" ").replace(D,", ").split(" "),C=R.length),C!==k.length&&(R=(n||"").split(" "),C=R.length),a.plugin=l,a.setRatio=u,_=0;C>_;_++)if(c=R[_],g=k[_],T=parseFloat(c),T||0===T)a.appendXtra("",T,ie(g,T),g.replace(m,""),A&&-1!==g.indexOf("px"),!0);else if(r&&("#"===c.charAt(0)||ne[c]||b.test(c)))S=","===g.charAt(g.length-1)?"),":")",c=oe(c),g=oe(g),x=c.length+g.length>6,x&&!z&&0===g[3]?(a["xs"+a.l]+=a.l?" transparent":"transparent",a.e=a.e.split(k[_]).join("transparent")):(z||(x=!1),a.appendXtra(x?"rgba(":"rgb(",c[0],g[0]-c[0],",",!0,!0).appendXtra("",c[1],g[1]-c[1],",",!0).appendXtra("",c[2],g[2]-c[2],x?",":S,!0),x&&(c=4>c.length?1:c[3],a.appendXtra("",c,(4>g.length?1:g[3])-c,S,!1)));else if(v=c.match(d)){if(y=g.match(m),!y||y.length!==v.length)return a;for(f=0,p=0;v.length>p;p++)P=v[p],w=c.indexOf(P,f),a.appendXtra(c.substr(f,w-f),Number(P),ie(y[p],P),"",A&&"px"===c.substr(w+P.length,2),0===p),f=w+P.length;a["xs"+a.l]+=c.substr(f)}else a["xs"+a.l]+=a.l?" "+c:c;if(-1!==s.indexOf("=")&&a.data){for(S=a.xs0+a.data.s,_=1;a.l>_;_++)S+=a["xs"+_]+a.data["xn"+_];a.e=S+a["xs"+_]}return a.l||(a.type=-1,a.xs0=a.e),a.xfirst||a},ce=9;for(l=pe.prototype,l.l=l.pr=0;--ce>0;)l["xn"+ce]=0,l["xs"+ce]="";l.xs0="",l._next=l._prev=l.xfirst=l.data=l.plugin=l.setRatio=l.rxp=null,l.appendXtra=function(t,e,i,s,r,n){var a=this,o=a.l;return a["xs"+o]+=n&&o?" "+t:t||"",i||0===o||a.plugin?(a.l++,a.type=a.setRatio?2:1,a["xs"+a.l]=s||"",o>0?(a.data["xn"+o]=e+i,a.rxp["xn"+o]=r,a["xn"+o]=e,a.plugin||(a.xfirst=new pe(a,"xn"+o,e,i,a.xfirst||a,0,a.n,r,a.pr),a.xfirst.xs0=0),a):(a.data={s:e+i},a.rxp={},a.s=e,a.c=i,a.r=r,a)):(a["xs"+o]+=e+(s||""),a)};var de=function(t,e){e=e||{},this.p=e.prefix?q(t)||t:t,o[t]=o[this.p]=this,this.format=e.formatter||he(e.defaultValue,e.color,e.collapsible,e.multi),e.parser&&(this.parse=e.parser),this.clrs=e.color,this.multi=e.multi,this.keyword=e.keyword,this.dflt=e.defaultValue,this.pr=e.priority||0},me=E._registerComplexSpecialProp=function(t,e,i){"object"!=typeof e&&(e={parser:i});var s,r,n=t.split(","),a=e.defaultValue;for(i=i||[a],s=0;n.length>s;s++)e.prefix=0===s&&e.prefix,e.defaultValue=i[s]||a,r=new de(n[s],e)},ge=function(t){if(!o[t]){var e=t.charAt(0).toUpperCase()+t.substr(1)+"Plugin";me(t,{parser:function(t,i,s,r,n,a,l){var h=(window.GreenSockGlobals||window).com.greensock.plugins[e];return h?(h._cssRegister(),o[s].parse(t,i,s,r,n,a,l)):(B("Error: "+e+" js file not loaded."),n)}})}};l=de.prototype,l.parseComplex=function(t,e,i,s,r,n){var a,o,l,h,u,_,p=this.keyword;if(this.multi&&(D.test(i)||D.test(e)?(o=e.replace(D,"|").split("|"),l=i.replace(D,"|").split("|")):p&&(o=[e],l=[i])),l){for(h=l.length>o.length?l.length:o.length,a=0;h>a;a++)e=o[a]=o[a]||this.dflt,i=l[a]=l[a]||this.dflt,p&&(u=e.indexOf(p),_=i.indexOf(p),u!==_&&(i=-1===_?l:o,i[a]+=" "+p));e=o.join(", "),i=l.join(", ")}return fe(t,this.p,e,i,this.clrs,this.dflt,s,this.pr,r,n)},l.parse=function(t,e,i,s,n,a){return this.parseComplex(t.style,this.format(Q(t,this.p,r,!1,this.dflt)),this.format(e),n,a)},a.registerSpecialProp=function(t,e,i){me(t,{parser:function(t,s,r,n,a,o){var l=new pe(t,r,0,0,a,2,r,!1,i);return l.plugin=o,l.setRatio=e(t,s,n._tween,r),l},priority:i})};var ve="scaleX,scaleY,scaleZ,x,y,z,skewX,rotation,rotationX,rotationY,perspective".split(","),ye=q("transform"),Te=j+"transform",xe=q("transformOrigin"),we=null!==q("perspective"),be=function(t,e,i,s){if(t._gsTransform&&i&&!s)return t._gsTransform;var r,n,o,l,h,u,_,p,f,c,d,m,g,v=i?t._gsTransform||{skewY:0}:{skewY:0},y=0>v.scaleX,T=2e-5,x=1e5,w=179.99,b=w*M,P=we?parseFloat(Q(t,xe,e,!1,"0 0 0").split(" ")[2])||v.zOrigin||0:0;for(ye?r=Q(t,Te,e,!0):t.currentStyle&&(r=t.currentStyle.filter.match(A),r=r&&4===r.length?[r[0].substr(4),Number(r[2].substr(4)),Number(r[1].substr(4)),r[3].substr(4),v.x||0,v.y||0].join(","):""),n=(r||"").match(/(?:\-|\b)[\d\-\.e]+\b/gi)||[],o=n.length;--o>-1;)l=Number(n[o]),n[o]=(h=l-(l|=0))?(0|h*x+(0>h?-.5:.5))/x+l:l;if(16===n.length){var S=n[8],R=n[9],k=n[10],C=n[12],O=n[13],D=n[14];if(v.zOrigin&&(D=-v.zOrigin,C=S*D-n[12],O=R*D-n[13],D=k*D+v.zOrigin-n[14]),!i||s||null==v.rotationX){var N,X,F,I,E,Y,z,U=n[0],B=n[1],j=n[2],V=n[3],q=n[4],W=n[5],Z=n[6],H=n[7],$=n[11],G=Math.atan2(Z,k),K=-b>G||G>b;v.rotationX=G*L,G&&(I=Math.cos(-G),E=Math.sin(-G),N=q*I+S*E,X=W*I+R*E,F=Z*I+k*E,S=q*-E+S*I,R=W*-E+R*I,k=Z*-E+k*I,$=H*-E+$*I,q=N,W=X,Z=F),G=Math.atan2(S,U),v.rotationY=G*L,G&&(Y=-b>G||G>b,I=Math.cos(-G),E=Math.sin(-G),N=U*I-S*E,X=B*I-R*E,F=j*I-k*E,R=B*E+R*I,k=j*E+k*I,$=V*E+$*I,U=N,B=X,j=F),G=Math.atan2(B,W),v.rotation=G*L,G&&(z=-b>G||G>b,I=Math.cos(-G),E=Math.sin(-G),U=U*I+q*E,X=B*I+W*E,W=B*-E+W*I,Z=j*-E+Z*I,B=X),z&&K?v.rotation=v.rotationX=0:z&&Y?v.rotation=v.rotationY=0:Y&&K&&(v.rotationY=v.rotationX=0),v.scaleX=(0|Math.sqrt(U*U+B*B)*x+.5)/x,v.scaleY=(0|Math.sqrt(W*W+R*R)*x+.5)/x,v.scaleZ=(0|Math.sqrt(Z*Z+k*k)*x+.5)/x,v.skewX=0,v.perspective=$?1/(0>$?-$:$):0,v.x=C,v.y=O,v.z=D}}else if(!(we&&!s&&n.length&&v.x===n[4]&&v.y===n[5]&&(v.rotationX||v.rotationY)||void 0!==v.x&&"none"===Q(t,"display",e))){var J=n.length>=6,te=J?n[0]:1,ee=n[1]||0,ie=n[2]||0,se=J?n[3]:1;v.x=n[4]||0,v.y=n[5]||0,u=Math.sqrt(te*te+ee*ee),_=Math.sqrt(se*se+ie*ie),p=te||ee?Math.atan2(ee,te)*L:v.rotation||0,f=ie||se?Math.atan2(ie,se)*L+p:v.skewX||0,c=u-Math.abs(v.scaleX||0),d=_-Math.abs(v.scaleY||0),Math.abs(f)>90&&270>Math.abs(f)&&(y?(u*=-1,f+=0>=p?180:-180,p+=0>=p?180:-180):(_*=-1,f+=0>=f?180:-180)),m=(p-v.rotation)%180,g=(f-v.skewX)%180,(void 0===v.skewX||c>T||-T>c||d>T||-T>d||m>-w&&w>m&&false|m*x||g>-w&&w>g&&false|g*x)&&(v.scaleX=u,v.scaleY=_,v.rotation=p,v.skewX=f),we&&(v.rotationX=v.rotationY=v.z=0,v.perspective=parseFloat(a.defaultTransformPerspective)||0,v.scaleZ=1)}v.zOrigin=P;for(o in v)T>v[o]&&v[o]>-T&&(v[o]=0);return i&&(t._gsTransform=v),v},Pe=function(t){var e,i,s=this.data,r=-s.rotation*M,n=r+s.skewX*M,a=1e5,o=(0|Math.cos(r)*s.scaleX*a)/a,l=(0|Math.sin(r)*s.scaleX*a)/a,h=(0|Math.sin(n)*-s.scaleY*a)/a,u=(0|Math.cos(n)*s.scaleY*a)/a,_=this.t.style,p=this.t.currentStyle;if(p){i=l,l=-h,h=-i,e=p.filter,_.filter="";var f,d,m=this.t.offsetWidth,g=this.t.offsetHeight,v="absolute"!==p.position,x="progid:DXImageTransform.Microsoft.Matrix(M11="+o+", M12="+l+", M21="+h+", M22="+u,w=s.x,b=s.y;if(null!=s.ox&&(f=(s.oxp?.01*m*s.ox:s.ox)-m/2,d=(s.oyp?.01*g*s.oy:s.oy)-g/2,w+=f-(f*o+d*l),b+=d-(f*h+d*u)),v?(f=m/2,d=g/2,x+=", Dx="+(f-(f*o+d*l)+w)+", Dy="+(d-(f*h+d*u)+b)+")"):x+=", sizingMethod='auto expand')",_.filter=-1!==e.indexOf("DXImageTransform.Microsoft.Matrix(")?e.replace(O,x):x+" "+e,(0===t||1===t)&&1===o&&0===l&&0===h&&1===u&&(v&&-1===x.indexOf("Dx=0, Dy=0")||T.test(e)&&100!==parseFloat(RegExp.$1)||-1===e.indexOf("gradient("&&e.indexOf("Alpha"))&&_.removeAttribute("filter")),!v){var P,S,R,k=8>c?1:-1;for(f=s.ieOffsetX||0,d=s.ieOffsetY||0,s.ieOffsetX=Math.round((m-((0>o?-o:o)*m+(0>l?-l:l)*g))/2+w),s.ieOffsetY=Math.round((g-((0>u?-u:u)*g+(0>h?-h:h)*m))/2+b),ce=0;4>ce;ce++)S=J[ce],P=p[S],i=-1!==P.indexOf("px")?parseFloat(P):Z(this.t,S,parseFloat(P),P.replace(y,""))||0,R=i!==s[S]?2>ce?-s.ieOffsetX:-s.ieOffsetY:2>ce?f-s.ieOffsetX:d-s.ieOffsetY,_[S]=(s[S]=Math.round(i-R*(0===ce||2===ce?1:k)))+"px"}}},Se=function(){var t,e,i,s,r,n,a,o,l,h,u,_,f,c,d,m,g,v,y,T,x,w,b,P,S,R,k=this.data,C=this.t.style,A=k.rotation*M,O=k.scaleX,D=k.scaleY,L=k.scaleZ,N=k.perspective;if(p&&(P=C.top?"top":C.bottom?"bottom":parseFloat(Q(this.t,"top",null,!1))?"bottom":"top",T=Q(this.t,P,null,!1),S=parseFloat(T)||0,R=T.substr((S+"").length)||"px",k._ffFix=!k._ffFix,C[P]=(k._ffFix?S+.05:S-.05)+R,S=1e-4,S>O&&O>-S&&(O=L=2e-5),S>D&&D>-S&&(D=L=2e-5)),A||k.skewX)v=Math.cos(A),y=Math.sin(A),t=v,r=y,k.skewX&&(A-=k.skewX*M,v=Math.cos(A),y=Math.sin(A)),e=-y,n=v;else{if(!(k.rotationY||k.rotationX||1!==L||N))return C[ye]="translate3d("+k.x+"px,"+k.y+"px,"+k.z+"px)"+(1!==O||1!==D?" scale("+O+","+D+")":""),void 0;t=n=1,e=r=0}u=1,i=s=a=o=l=h=_=f=c=0,d=N?-1/N:0,m=k.zOrigin,g=1e5,A=k.rotationY*M,A&&(v=Math.cos(A),y=Math.sin(A),l=u*-y,f=d*-y,i=t*y,a=r*y,u*=v,d*=v,t*=v,r*=v),A=k.rotationX*M,A&&(v=Math.cos(A),y=Math.sin(A),T=e*v+i*y,x=n*v+a*y,w=h*v+u*y,b=c*v+d*y,i=e*-y+i*v,a=n*-y+a*v,u=h*-y+u*v,d=c*-y+d*v,e=T,n=x,h=w,c=b),1!==L&&(i*=L,a*=L,u*=L,d*=L),1!==D&&(e*=D,n*=D,h*=D,c*=D),1!==O&&(t*=O,r*=O,l*=O,f*=O),m&&(_-=m,s=i*_,o=a*_,_=u*_+m),s=(T=(s+=k.x)-(s|=0))?(0|T*g+(0>T?-.5:.5))/g+s:s,o=(T=(o+=k.y)-(o|=0))?(0|T*g+(0>T?-.5:.5))/g+o:o,_=(T=(_+=k.z)-(_|=0))?(0|T*g+(0>T?-.5:.5))/g+_:_,C[ye]="matrix3d("+[(0|t*g)/g,(0|r*g)/g,(0|l*g)/g,(0|f*g)/g,(0|e*g)/g,(0|n*g)/g,(0|h*g)/g,(0|c*g)/g,(0|i*g)/g,(0|a*g)/g,(0|u*g)/g,(0|d*g)/g,s,o,_,N?1+-_/N:1].join(",")+")"},Re=function(){var t,e,i,s,r,n,a,o,l,h=this.data,u=this.t,_=u.style;p&&(t=_.top?"top":_.bottom?"bottom":parseFloat(Q(u,"top",null,!1))?"bottom":"top",e=Q(u,t,null,!1),i=parseFloat(e)||0,s=e.substr((i+"").length)||"px",h._ffFix=!h._ffFix,_[t]=(h._ffFix?i+.05:i-.05)+s),h.rotation||h.skewX?(r=h.rotation*M,n=r-h.skewX*M,a=1e5,o=h.scaleX*a,l=h.scaleY*a,_[ye]="matrix("+(0|Math.cos(r)*o)/a+","+(0|Math.sin(r)*o)/a+","+(0|Math.sin(n)*-l)/a+","+(0|Math.cos(n)*l)/a+","+h.x+","+h.y+")"):_[ye]="matrix("+h.scaleX+",0,0,"+h.scaleY+","+h.x+","+h.y+")"};me("transform,scale,scaleX,scaleY,scaleZ,x,y,z,rotation,rotationX,rotationY,rotationZ,skewX,skewY,shortRotation,shortRotationX,shortRotationY,shortRotationZ,transformOrigin,transformPerspective,directionalRotation,parseTransform,force3D",{parser:function(t,e,i,s,n,a,o){if(s._transform)return n;var l,h,u,_,p,f,c,d=s._transform=be(t,r,!0,o.parseTransform),m=t.style,g=1e-6,v=ve.length,y=o,T={};if("string"==typeof y.transform&&ye)u=m.cssText,m[ye]=y.transform,m.display="block",l=be(t,null,!1),m.cssText=u;else if("object"==typeof y){if(l={scaleX:se(null!=y.scaleX?y.scaleX:y.scale,d.scaleX),scaleY:se(null!=y.scaleY?y.scaleY:y.scale,d.scaleY),scaleZ:se(null!=y.scaleZ?y.scaleZ:y.scale,d.scaleZ),x:se(y.x,d.x),y:se(y.y,d.y),z:se(y.z,d.z),perspective:se(y.transformPerspective,d.perspective)},c=y.directionalRotation,null!=c)if("object"==typeof c)for(u in c)y[u]=c[u];else y.rotation=c;l.rotation=re("rotation"in y?y.rotation:"shortRotation"in y?y.shortRotation+"_short":"rotationZ"in y?y.rotationZ:d.rotation,d.rotation,"rotation",T),we&&(l.rotationX=re("rotationX"in y?y.rotationX:"shortRotationX"in y?y.shortRotationX+"_short":d.rotationX||0,d.rotationX,"rotationX",T),l.rotationY=re("rotationY"in y?y.rotationY:"shortRotationY"in y?y.shortRotationY+"_short":d.rotationY||0,d.rotationY,"rotationY",T)),l.skewX=null==y.skewX?d.skewX:re(y.skewX,d.skewX),l.skewY=null==y.skewY?d.skewY:re(y.skewY,d.skewY),(h=l.skewY-d.skewY)&&(l.skewX+=h,l.rotation+=h)}for(null!=y.force3D&&(d.force3D=y.force3D,f=!0),p=d.force3D||d.z||d.rotationX||d.rotationY||l.z||l.rotationX||l.rotationY||l.perspective,p||null==y.scale||(l.scaleZ=1);--v>-1;)i=ve[v],_=l[i]-d[i],(_>g||-g>_||null!=N[i])&&(f=!0,n=new pe(d,i,d[i],_,n),i in T&&(n.e=T[i]),n.xs0=0,n.plugin=a,s._overwriteProps.push(n.n));return _=y.transformOrigin,(_||we&&p&&d.zOrigin)&&(ye?(f=!0,i=xe,_=(_||Q(t,i,r,!1,"50% 50%"))+"",n=new pe(m,i,0,0,n,-1,"transformOrigin"),n.b=m[i],n.plugin=a,we?(u=d.zOrigin,_=_.split(" "),d.zOrigin=(_.length>2&&(0===u||"0px"!==_[2])?parseFloat(_[2]):u)||0,n.xs0=n.e=m[i]=_[0]+" "+(_[1]||"50%")+" 0px",n=new pe(d,"zOrigin",0,0,n,-1,n.n),n.b=u,n.xs0=n.e=d.zOrigin):n.xs0=n.e=m[i]=_):ee(_+"",d)),f&&(s._transformType=p||3===this._transformType?3:2),n},prefix:!0}),me("boxShadow",{defaultValue:"0px 0px 0px 0px #999",prefix:!0,color:!0,multi:!0,keyword:"inset"}),me("borderRadius",{defaultValue:"0px",parser:function(t,e,i,n,a){e=this.format(e);var o,l,h,u,_,p,f,c,d,m,g,v,y,T,x,w,b=["borderTopLeftRadius","borderTopRightRadius","borderBottomRightRadius","borderBottomLeftRadius"],P=t.style;for(d=parseFloat(t.offsetWidth),m=parseFloat(t.offsetHeight),o=e.split(" "),l=0;b.length>l;l++)this.p.indexOf("border")&&(b[l]=q(b[l])),_=u=Q(t,b[l],r,!1,"0px"),-1!==_.indexOf(" ")&&(u=_.split(" "),_=u[0],u=u[1]),p=h=o[l],f=parseFloat(_),v=_.substr((f+"").length),y="="===p.charAt(1),y?(c=parseInt(p.charAt(0)+"1",10),p=p.substr(2),c*=parseFloat(p),g=p.substr((c+"").length-(0>c?1:0))||""):(c=parseFloat(p),g=p.substr((c+"").length)),""===g&&(g=s[i]||v),g!==v&&(T=Z(t,"borderLeft",f,v),x=Z(t,"borderTop",f,v),"%"===g?(_=100*(T/d)+"%",u=100*(x/m)+"%"):"em"===g?(w=Z(t,"borderLeft",1,"em"),_=T/w+"em",u=x/w+"em"):(_=T+"px",u=x+"px"),y&&(p=parseFloat(_)+c+g,h=parseFloat(u)+c+g)),a=fe(P,b[l],_+" "+u,p+" "+h,!1,"0px",a);return a},prefix:!0,formatter:he("0px 0px 0px 0px",!1,!0)}),me("backgroundPosition",{defaultValue:"0 0",parser:function(t,e,i,s,n,a){var o,l,h,u,_,p,f="background-position",d=r||W(t,null),m=this.format((d?c?d.getPropertyValue(f+"-x")+" "+d.getPropertyValue(f+"-y"):d.getPropertyValue(f):t.currentStyle.backgroundPositionX+" "+t.currentStyle.backgroundPositionY)||"0 0"),g=this.format(e);if(-1!==m.indexOf("%")!=(-1!==g.indexOf("%"))&&(p=Q(t,"backgroundImage").replace(R,""),p&&"none"!==p)){for(o=m.split(" "),l=g.split(" "),I.setAttribute("src",p),h=2;--h>-1;)m=o[h],u=-1!==m.indexOf("%"),u!==(-1!==l[h].indexOf("%"))&&(_=0===h?t.offsetWidth-I.width:t.offsetHeight-I.height,o[h]=u?parseFloat(m)/100*_+"px":100*(parseFloat(m)/_)+"%");m=o.join(" ")}return this.parseComplex(t.style,m,g,n,a)},formatter:ee}),me("backgroundSize",{defaultValue:"0 0",formatter:ee}),me("perspective",{defaultValue:"0px",prefix:!0}),me("perspectiveOrigin",{defaultValue:"50% 50%",prefix:!0}),me("transformStyle",{prefix:!0}),me("backfaceVisibility",{prefix:!0}),me("userSelect",{prefix:!0}),me("margin",{parser:ue("marginTop,marginRight,marginBottom,marginLeft")}),me("padding",{parser:ue("paddingTop,paddingRight,paddingBottom,paddingLeft")}),me("clip",{defaultValue:"rect(0px,0px,0px,0px)",parser:function(t,e,i,s,n,a){var o,l,h;return 9>c?(l=t.currentStyle,h=8>c?" ":",",o="rect("+l.clipTop+h+l.clipRight+h+l.clipBottom+h+l.clipLeft+")",e=this.format(e).split(",").join(h)):(o=this.format(Q(t,this.p,r,!1,this.dflt)),e=this.format(e)),this.parseComplex(t.style,o,e,n,a)}}),me("textShadow",{defaultValue:"0px 0px 0px #999",color:!0,multi:!0}),me("autoRound,strictUnits",{parser:function(t,e,i,s,r){return r}}),me("border",{defaultValue:"0px solid #000",parser:function(t,e,i,s,n,a){return this.parseComplex(t.style,this.format(Q(t,"borderTopWidth",r,!1,"0px")+" "+Q(t,"borderTopStyle",r,!1,"solid")+" "+Q(t,"borderTopColor",r,!1,"#000")),this.format(e),n,a)},color:!0,formatter:function(t){var e=t.split(" ");return e[0]+" "+(e[1]||"solid")+" "+(t.match(le)||["#000"])[0]}}),me("float,cssFloat,styleFloat",{parser:function(t,e,i,s,r){var n=t.style,a="cssFloat"in n?"cssFloat":"styleFloat";return new pe(n,a,0,0,r,-1,i,!1,0,n[a],e)}});var ke=function(t){var e,i=this.t,s=i.filter||Q(this.data,"filter"),r=0|this.s+this.c*t;100===r&&(-1===s.indexOf("atrix(")&&-1===s.indexOf("radient(")&&-1===s.indexOf("oader(")?(i.removeAttribute("filter"),e=!Q(this.data,"filter")):(i.filter=s.replace(w,""),e=!0)),e||(this.xn1&&(i.filter=s=s||"alpha(opacity="+r+")"),-1===s.indexOf("opacity")?0===r&&this.xn1||(i.filter=s+" alpha(opacity="+r+")"):i.filter=s.replace(T,"opacity="+r))};me("opacity,alpha,autoAlpha",{defaultValue:"1",parser:function(t,e,i,s,n,a){var o=parseFloat(Q(t,"opacity",r,!1,"1")),l=t.style,h="autoAlpha"===i;return"string"==typeof e&&"="===e.charAt(1)&&(e=("-"===e.charAt(0)?-1:1)*parseFloat(e.substr(2))+o),h&&1===o&&"hidden"===Q(t,"visibility",r)&&0!==e&&(o=0),z?n=new pe(l,"opacity",o,e-o,n):(n=new pe(l,"opacity",100*o,100*(e-o),n),n.xn1=h?1:0,l.zoom=1,n.type=2,n.b="alpha(opacity="+n.s+")",n.e="alpha(opacity="+(n.s+n.c)+")",n.data=t,n.plugin=a,n.setRatio=ke),h&&(n=new pe(l,"visibility",0,0,n,-1,null,!1,0,0!==o?"inherit":"hidden",0===e?"hidden":"inherit"),n.xs0="inherit",s._overwriteProps.push(n.n),s._overwriteProps.push(i)),n}});var Ce=function(t,e){e&&(t.removeProperty?t.removeProperty(e.replace(P,"-$1").toLowerCase()):t.removeAttribute(e))},Ae=function(t){if(this.t._gsClassPT=this,1===t||0===t){this.t.className=0===t?this.b:this.e;for(var e=this.data,i=this.t.style;e;)e.v?i[e.p]=e.v:Ce(i,e.p),e=e._next;1===t&&this.t._gsClassPT===this&&(this.t._gsClassPT=null)}else this.t.className!==this.e&&(this.t.className=this.e)};me("className",{parser:function(t,e,s,n,a,o,l){var h,u,_,p,f,c=t.className,d=t.style.cssText;if(a=n._classNamePT=new pe(t,s,0,0,a,2),a.setRatio=Ae,a.pr=-11,i=!0,a.b=c,u=$(t,r),_=t._gsClassPT){for(p={},f=_.data;f;)p[f.p]=1,f=f._next;_.setRatio(1)}return t._gsClassPT=a,a.e="="!==e.charAt(1)?e:c.replace(RegExp("\\s*\\b"+e.substr(2)+"\\b"),"")+("+"===e.charAt(0)?" "+e.substr(2):""),n._tween._duration&&(t.className=a.e,h=G(t,u,$(t),l,p),t.className=c,a.data=h.firstMPT,t.style.cssText=d,a=a.xfirst=n.parse(t,h.difs,a,o)),a}});var Oe=function(t){if((1===t||0===t)&&this.data._totalTime===this.data._totalDuration&&"isFromStart"!==this.data.data){var e,i,s,r,n=this.t.style,a=o.transform.parse;if("all"===this.e)n.cssText="",r=!0;else for(e=this.e.split(","),s=e.length;--s>-1;)i=e[s],o[i]&&(o[i].parse===a?r=!0:i="transformOrigin"===i?xe:o[i].p),Ce(n,i);r&&(Ce(n,ye),this.t._gsTransform&&delete this.t._gsTransform)}};for(me("clearProps",{parser:function(t,e,s,r,n){return n=new pe(t,s,0,0,n,2),n.setRatio=Oe,n.e=e,n.pr=-10,n.data=r._tween,i=!0,n}}),l="bezier,throwProps,physicsProps,physics2D".split(","),ce=l.length;ce--;)ge(l[ce]);l=a.prototype,l._firstPT=null,l._onInitTween=function(t,e,o){if(!t.nodeType)return!1;this._target=t,this._tween=o,this._vars=e,h=e.autoRound,i=!1,s=e.suffixMap||a.suffixMap,r=W(t,""),n=this._overwriteProps;var l,p,c,d,m,g,v,y,T,w=t.style;if(u&&""===w.zIndex&&(l=Q(t,"zIndex",r),("auto"===l||""===l)&&(w.zIndex=0)),"string"==typeof e&&(d=w.cssText,l=$(t,r),w.cssText=d+";"+e,l=G(t,l,$(t)).difs,!z&&x.test(e)&&(l.opacity=parseFloat(RegExp.$1)),e=l,w.cssText=d),this._firstPT=p=this.parse(t,e,null),this._transformType){for(T=3===this._transformType,ye?_&&(u=!0,""===w.zIndex&&(v=Q(t,"zIndex",r),("auto"===v||""===v)&&(w.zIndex=0)),f&&(w.WebkitBackfaceVisibility=this._vars.WebkitBackfaceVisibility||(T?"visible":"hidden"))):w.zoom=1,c=p;c&&c._next;)c=c._next;y=new pe(t,"transform",0,0,null,2),this._linkCSSP(y,null,c),y.setRatio=T&&we?Se:ye?Re:Pe,y.data=this._transform||be(t,r,!0),n.pop()}if(i){for(;p;){for(g=p._next,c=d;c&&c.pr>p.pr;)c=c._next;(p._prev=c?c._prev:m)?p._prev._next=p:d=p,(p._next=c)?c._prev=p:m=p,p=g}this._firstPT=d}return!0},l.parse=function(t,e,i,n){var a,l,u,_,p,f,c,d,m,g,v=t.style;for(a in e)f=e[a],l=o[a],l?i=l.parse(t,f,a,this,i,n,e):(p=Q(t,a,r)+"",m="string"==typeof f,"color"===a||"fill"===a||"stroke"===a||-1!==a.indexOf("Color")||m&&b.test(f)?(m||(f=oe(f),f=(f.length>3?"rgba(":"rgb(")+f.join(",")+")"),i=fe(v,a,p,f,!0,"transparent",i,0,n)):!m||-1===f.indexOf(" ")&&-1===f.indexOf(",")?(u=parseFloat(p),c=u||0===u?p.substr((u+"").length):"",(""===p||"auto"===p)&&("width"===a||"height"===a?(u=te(t,a,r),c="px"):"left"===a||"top"===a?(u=H(t,a,r),c="px"):(u="opacity"!==a?0:1,c="")),g=m&&"="===f.charAt(1),g?(_=parseInt(f.charAt(0)+"1",10),f=f.substr(2),_*=parseFloat(f),d=f.replace(y,"")):(_=parseFloat(f),d=m?f.substr((_+"").length)||"":""),""===d&&(d=s[a]||c),f=_||0===_?(g?_+u:_)+d:e[a],c!==d&&""!==d&&(_||0===_)&&(u||0===u)&&(u=Z(t,a,u,c),"%"===d?(u/=Z(t,a,100,"%")/100,u>100&&(u=100),e.strictUnits!==!0&&(p=u+"%")):"em"===d?u/=Z(t,a,1,"em"):(_=Z(t,a,_,d),d="px"),g&&(_||0===_)&&(f=_+u+d)),g&&(_+=u),!u&&0!==u||!_&&0!==_?void 0!==v[a]&&(f||"NaN"!=f+""&&null!=f)?(i=new pe(v,a,_||u||0,0,i,-1,a,!1,0,p,f),i.xs0="none"!==f||"display"!==a&&-1===a.indexOf("Style")?f:p):B("invalid "+a+" tween value: "+e[a]):(i=new pe(v,a,u,_-u,i,0,a,h!==!1&&("px"===d||"zIndex"===a),0,p,f),i.xs0=d)):i=fe(v,a,p,f,!0,null,i,0,n)),n&&i&&!i.plugin&&(i.plugin=n);return i},l.setRatio=function(t){var e,i,s,r=this._firstPT,n=1e-6;if(1!==t||this._tween._time!==this._tween._duration&&0!==this._tween._time)if(t||this._tween._time!==this._tween._duration&&0!==this._tween._time||this._tween._rawPrevTime===-1e-6)for(;r;){if(e=r.c*t+r.s,r.r?e=e>0?0|e+.5:0|e-.5:n>e&&e>-n&&(e=0),r.type)if(1===r.type)if(s=r.l,2===s)r.t[r.p]=r.xs0+e+r.xs1+r.xn1+r.xs2;else if(3===s)r.t[r.p]=r.xs0+e+r.xs1+r.xn1+r.xs2+r.xn2+r.xs3;else if(4===s)r.t[r.p]=r.xs0+e+r.xs1+r.xn1+r.xs2+r.xn2+r.xs3+r.xn3+r.xs4;else if(5===s)r.t[r.p]=r.xs0+e+r.xs1+r.xn1+r.xs2+r.xn2+r.xs3+r.xn3+r.xs4+r.xn4+r.xs5;else{for(i=r.xs0+e+r.xs1,s=1;r.l>s;s++)i+=r["xn"+s]+r["xs"+(s+1)];r.t[r.p]=i}else-1===r.type?r.t[r.p]=r.xs0:r.setRatio&&r.setRatio(t);else r.t[r.p]=e+r.xs0;r=r._next}else for(;r;)2!==r.type?r.t[r.p]=r.b:r.setRatio(t),r=r._next;else for(;r;)2!==r.type?r.t[r.p]=r.e:r.setRatio(t),r=r._next},l._enableTransforms=function(t){this._transformType=t||3===this._transformType?3:2,this._transform=this._transform||be(this._target,r,!0)},l._linkCSSP=function(t,e,i,s){return t&&(e&&(e._prev=t),t._next&&(t._next._prev=t._prev),t._prev?t._prev._next=t._next:this._firstPT===t&&(this._firstPT=t._next,s=!0),i?i._next=t:s||null!==this._firstPT||(this._firstPT=t),t._next=e,t._prev=i),t},l._kill=function(e){var i,s,r,n=e;if(e.autoAlpha||e.alpha){n={};for(s in e)n[s]=e[s];n.opacity=1,n.autoAlpha&&(n.visibility=1)}return e.className&&(i=this._classNamePT)&&(r=i.xfirst,r&&r._prev?this._linkCSSP(r._prev,i._next,r._prev._prev):r===this._firstPT&&(this._firstPT=i._next),i._next&&this._linkCSSP(i._next,i._next._next,r._prev),this._classNamePT=null),t.prototype._kill.call(this,n)};var De=function(t,e,i){var s,r,n,a;if(t.slice)for(r=t.length;--r>-1;)De(t[r],e,i);else for(s=t.childNodes,r=s.length;--r>-1;)n=s[r],a=n.type,n.style&&(e.push($(n)),i&&i.push(n)),1!==a&&9!==a&&11!==a||!n.childNodes.length||De(n,e,i)};return a.cascadeTo=function(t,i,s){var r,n,a,o=e.to(t,i,s),l=[o],h=[],u=[],_=[],p=e._internals.reservedProps;for(t=o._targets||o.target,De(t,h,_),o.render(i,!0),De(t,u),o.render(0,!0),o._enabled(!0),r=_.length;--r>-1;)if(n=G(_[r],h[r],u[r]),n.firstMPT){n=n.difs;for(a in s)p[a]&&(n[a]=s[a]);l.push(e.to(_[r],i,n))}return l},t.activate([a]),a},!0)}),window._gsDefine&&window._gsQueue.pop()(); + +// WAIT FOR IMAGES +/* + * waitForImages 1.4 + * ----------------- + * Provides a callback when all images have loaded in your given selector. + * http://www.alexanderdickson.com/ + * + * + * Copyright (c) 2011 Alex Dickson + * Licensed under the MIT licenses. + * See website for more info. + * + */ + +(function(e,t){ + e.waitForImages={hasImageProperties:["backgroundImage","listStyleImage","borderImage","borderCornerImage"]};e.expr[":"].uncached=function(t){var n=document.createElement("img");n.src=t.src;return e(t).is('img[src!=""]')&&!n.complete};e.fn.waitForImages=function(t,n,r){if(e.isPlainObject(arguments[0])){n=t.each;r=t.waitForAll;t=t.finished}t=t||e.noop;n=n||e.noop;r=!!r;if(!e.isFunction(t)||!e.isFunction(n)){throw new TypeError("An invalid callback was supplied.")}return this.each(function(){var i=e(this),s=[];if(r){var o=e.waitForImages.hasImageProperties||[],u=/url\((['"]?)(.*?)\1\)/g;i.find("*").each(function(){var t=e(this);if(t.is("img:uncached")){s.push({src:t.attr("src"),element:t[0]})}e.each(o,function(e,n){var r=t.css(n);if(!r){return true}var i;while(i=u.exec(r)){s.push({src:i[2],element:t[0]})}})})}else{i.find("img:uncached").each(function(){s.push({src:this.src,element:this})})}var f=s.length,l=0;if(f==0){t.call(i[0])}e.each(s,function(r,s){var o=new Image;e(o).bind("load error",function(e){l++;n.call(s.element,l,f,e.type=="load");if(l==f){t.call(i[0]);return false}});o.src=s.src})})}; + e.fn.swipe=function(t){if(!this)return false;var n={fingers:1,threshold:75,swipe:null,swipeLeft:null,swipeRight:null,swipeUp:null,swipeDown:null,swipeStatus:null,click:null,triggerOnTouchEnd:true,allowPageScroll:"auto"};var r="left";var i="right";var s="up";var o="down";var u="none";var f="horizontal";var l="vertical";var c="auto";var h="start";var p="move";var d="end";var v="cancel";var m="ontouchstart"in window,g=m?"touchstart":"mousedown",y=m?"touchmove":"mousemove",b=m?"touchend":"mouseup",w="touchcancel";var E="start";if(t.allowPageScroll==undefined&&(t.swipe!=undefined||t.swipeStatus!=undefined))t.allowPageScroll=u;if(t)e.extend(n,t);return this.each(function(){function t(){var e=S();if(e<=45&&e>=0)return r;else if(e<=360&&e>=315)return r;else if(e>=135&&e<=225)return i;else if(e>45&&e<135)return o;else return s}function S(){var e=H.x-B.x;var t=B.y-H.y;var n=Math.atan2(t,e);var r=Math.round(n*180/Math.PI);if(r<0)r=360-Math.abs(r);return r}function x(){return Math.round(Math.sqrt(Math.pow(B.x-H.x,2)+Math.pow(B.y-H.y,2)))}function T(e,t){if(n.allowPageScroll==u){e.preventDefault()}else{var a=n.allowPageScroll==c;switch(t){case r:if(n.swipeLeft&&a||!a&&n.allowPageScroll!=f)e.preventDefault();break;case i:if(n.swipeRight&&a||!a&&n.allowPageScroll!=f)e.preventDefault();break;case s:if(n.swipeUp&&a||!a&&n.allowPageScroll!=l)e.preventDefault();break;case o:if(n.swipeDown&&a||!a&&n.allowPageScroll!=l)e.preventDefault();break}}}function N(e,t){if(n.swipeStatus)n.swipeStatus.call(_,e,t,direction||null,distance||0);if(t==v){if(n.click&&(P==1||!m)&&(isNaN(distance)||distance==0))n.click.call(_,e,e.target)}if(t==d){if(n.swipe){n.swipe.call(_,e,direction,distance)}switch(direction){case r:if(n.swipeLeft)n.swipeLeft.call(_,e,direction,distance);break;case i:if(n.swipeRight)n.swipeRight.call(_,e,direction,distance);break;case s:if(n.swipeUp)n.swipeUp.call(_,e,direction,distance);break;case o:if(n.swipeDown)n.swipeDown.call(_,e,direction,distance);break}}}function C(e){P=0;H.x=0;H.y=0;B.x=0;B.y=0;F.x=0;F.y=0}function L(e){e.preventDefault();distance=x();direction=t();if(n.triggerOnTouchEnd){E=d;if((P==n.fingers||!m)&&B.x!=0){if(distance>=n.threshold){N(e,E);C(e)}else{E=v;N(e,E);C(e)}}else{E=v;N(e,E);C(e)}}else if(E==p){E=v;N(e,E);C(e)}M.removeEventListener(y,A,false);M.removeEventListener(b,L,false)}function A(e){if(E==d||E==v)return;var r=m?e.touches[0]:e;B.x=r.pageX;B.y=r.pageY;direction=t();if(m){P=e.touches.length}E=p;T(e,direction);if(P==n.fingers||!m){distance=x();if(n.swipeStatus)N(e,E,direction,distance);if(!n.triggerOnTouchEnd){if(distance>=n.threshold){E=d;N(e,E);C(e)}}}else{E=v;N(e,E);C(e)}}function O(e){var t=m?e.touches[0]:e;E=h;if(m){P=e.touches.length}distance=0;direction=null;if(P==n.fingers||!m){H.x=B.x=t.pageX;H.y=B.y=t.pageY;if(n.swipeStatus)N(e,E)}else{C(e)}M.addEventListener(y,A,false);M.addEventListener(b,L,false)}var M=this;var _=e(this);var D=null;var P=0;var H={x:0,y:0};var B={x:0,y:0};var F={x:0,y:0};try{this.addEventListener(g,O,false);this.addEventListener(w,C)}catch(I){}})} +})(jQuery) diff --git a/ClientApp/app/jquery.plugins/jquery.themepunch.revolution.4.1.1.min.js b/ClientApp/app/jquery.plugins/jquery.themepunch.revolution.4.1.1.min.js new file mode 100644 index 00000000..92b2897a --- /dev/null +++ b/ClientApp/app/jquery.plugins/jquery.themepunch.revolution.4.1.1.min.js @@ -0,0 +1,10 @@ + + +/************************************************************************** + * jquery.themepunch.revolution.js - jQuery Plugin for Revolution Slider + * @version: 4.1.1 (02.12.2013) + * @requires jQuery v1.7 or later (tested on 1.9) + * @author ThemePunch +**************************************************************************/ + +function revslider_showDoubleJqueryError(e){var t="Revolution Slider Error: You have some jquery.js library include that comes after the revolution files js include.";t+="
This includes make eliminates the revolution slider libraries, and make it not work.";t+="
To fix it you can:
1. In the Slider Settings -> Troubleshooting set option: Put JS Includes To Body option to true.";t+="
2. Find the double jquery.js include and remove it.";t=""+t+"";jQuery(e).show().html(t)}(function(e,t){function n(e){var t=[],n;var r=window.location.href.slice(window.location.href.indexOf(e)+1).split("_");for(var i=0;ie(window).width())e(".tp-bullets").css({display:"none"});else e(".tp-bullets").css({display:"block"})}}catch(i){}n.find(".defaultimg").each(function(t){b(e(this),r)});var s=0;if(r.forceFullWidth=="on")s=0-r.container.parent().offset().left;try{n.parent().find(".tp-bannershadow").css({width:r.width,left:s})}catch(i){}var o=n.find(">ul >li:eq("+r.act+") .slotholder");var a=n.find(">ul >li:eq("+r.next+") .slotholder");T(n,r);a.find(".defaultimg").css({opacity:0});o.find(".defaultimg").css({opacity:1});a.find(".defaultimg").each(function(){var n=e(this);if(n.data("kenburn")!=t)n.data("kenburn").restart()});var f=n.find(">ul >li:eq("+r.next+")");q(f,r,true);u(r,n);y(n,r)}function s(){var e=["android","webos","iphone","ipad","blackberry","Android","webos",,"iPod","iPhone","iPad","Blackberry","BlackBerry"];var t=false;for(i in e){if(navigator.userAgent.split(e[i]).length>1){t=true}}return t}function o(t,n){var r=e('').appendTo(e("body"));r.html("");var i=r.find("a").length;r.remove();return i}function u(e,t){e.cd=0;if(e.videoplaying!=true){var n=t.find(".tp-bannertimer");if(n.length>0){n.stop();n.css({width:"0%"});n.animate({width:"100%"},{duration:e.delay-100,queue:false,easing:"linear"})}clearTimeout(e.thumbtimer);e.thumbtimer=setTimeout(function(){c(t);y(t,e)},200)}}function a(e,t){e.cd=0;var n=t.find(".tp-bannertimer");if(n.length>0){n.stop(true,true);n.css({width:"0%"})}clearTimeout(e.thumbtimer)}function f(e,t){e.cd=0;N(t,e);var n=t.find(".tp-bannertimer");if(n.length>0){n.stop();n.css({width:"0%"});if(e.videoplaying!=true)n.animate({width:"100%"},{duration:e.delay-100,queue:false,easing:"linear"})}}function l(n,r){var i=n.parent();if(r.navigationType=="thumb"||r.navsecond=="both"){i.append(' ')}var s=i.find(".tp-bullets.tp-thumbs .tp-mask .tp-thumbcontainer");var o=s.parent();o.width(r.thumbWidth*r.thumbAmount);o.height(r.thumbHeight);o.parent().width(r.thumbWidth*r.thumbAmount);o.parent().height(r.thumbHeight);n.find(">ul:first >li").each(function(e){var i=n.find(">ul:first >li:eq("+e+")");if(i.data("thumb")!=t)var o=i.data("thumb");else var o=i.find("img:first").attr("src");s.append('');var u=s.find(".bullet:first")});var u=10;s.find(".bullet").each(function(t){var i=e(this);if(t==r.slideamount-1)i.addClass("last");if(t==0)i.addClass("first");i.width(r.thumbWidth);i.height(r.thumbHeight);if(uul:first >li").length;var l=s.parent().width();r.thumbWidth=u;if(lul:first >li").length;var a=u-s+15;var f=a/s;i=i-30;var l=0-i*f;if(l>0)l=0;if(l<0-u+s)l=0-u+s;h(t,l,200)});s.parent().mousemove(function(){var t=e(this);var r=t.offset();var i=e("body").data("mousex")-r.left;var s=t.width();var o=t.find(".bullet:first").outerWidth(true);var u=o*n.find(">ul:first >li").length-1;var a=u-s+15;var f=a/s;i=i-3;if(i<6)i=0;if(i+3>s-6)i=s;var l=0-i*f;if(l>0)l=0;if(l<0-u+s)l=0-u+s;h(t,l,0)});s.parent().mouseleave(function(){var t=e(this);t.removeClass("over");c(n)})}}function c(e){var t=e.parent().find(".tp-bullets.tp-thumbs .tp-mask .tp-thumbcontainer");var n=t.parent();var r=n.offset();var i=n.find(".bullet:first").outerWidth(true);var s=n.find(".bullet.selected").index()*i;var o=n.width();var i=n.find(".bullet:first").outerWidth(true);var u=i*e.find(">ul:first >li").length;var a=u-o;var f=a/o;var l=0-s;if(l>0)l=0;if(l<0-u+o)l=0-u+o;if(!n.hasClass("over")){h(n,l,200)}}function h(e,t,n){TweenLite.to(e.find(".tp-thumbcontainer"),.2,{left:t,ease:Power3.easeOut,overwrite:"auto"})}function p(t,n){if(n.navigationType=="bullet"||n.navigationType=="both"){t.parent().append('')}var r=t.parent().find(".tp-bullets");t.find(">ul:first >li").each(function(e){var n=t.find(">ul:first >li:eq("+e+") img:first").attr("src");r.append('');var i=r.find(".bullet:first")});r.find(".bullet").each(function(r){var i=e(this);if(r==n.slideamount-1)i.addClass("last");if(r==0)i.addClass("first");i.click(function(){var e=false;if(n.navigationArrows=="withbullet"||n.navigationArrows=="nexttobullets"){if(i.index()-1==n.act)e=true}else{if(i.index()==n.act)e=true}if(n.transition==0&&!e){if(n.navigationArrows=="withbullet"||n.navigationArrows=="nexttobullets"){n.next=i.index()-1}else{n.next=i.index()}f(n,t)}})});r.append('');y(t,n)}function d(e,n){var r=e.find(".tp-bullets");var i="";var s=n.navigationStyle;if(n.navigationArrows=="none")i="visibility:hidden;display:none";n.soloArrowStyle="default";if(n.navigationArrows!="none"&&n.navigationArrows!="nexttobullets")s=n.soloArrowStyle;e.parent().append('');e.parent().append('');e.parent().find(".tp-rightarrow").click(function(){if(n.transition==0){if(e.data("showus")!=t&&e.data("showus")!=-1)n.next=e.data("showus")-1;else n.next=n.next+1;e.data("showus",-1);if(n.next>=n.slideamount)n.next=0;if(n.next<0)n.next=0;if(n.act!=n.next)f(n,e)}});e.parent().find(".tp-leftarrow").click(function(){if(n.transition==0){n.next=n.next-1;n.leftarrowpressed=1;if(n.next<0)n.next=n.slideamount-1;f(n,e)}});y(e,n)}function v(n,r){e(document).keydown(function(e){if(r.transition==0&&e.keyCode==39){if(n.data("showus")!=t&&n.data("showus")!=-1)r.next=n.data("showus")-1;else r.next=r.next+1;n.data("showus",-1);if(r.next>=r.slideamount)r.next=0;if(r.next<0)r.next=0;if(r.act!=r.next)f(r,n)}if(r.transition==0&&e.keyCode==37){r.next=r.next-1;r.leftarrowpressed=1;if(r.next<0)r.next=r.slideamount-1;f(r,n)}});y(n,r)}function m(e,t){if(t.touchenabled=="on")e.swipe({data:e,swipeRight:function(){if(t.transition==0){t.next=t.next-1;t.leftarrowpressed=1;if(t.next<0)t.next=t.slideamount-1;f(t,e)}},swipeLeft:function(){if(t.transition==0){t.next=t.next+1;if(t.next==t.slideamount)t.next=0;f(t,e)}},allowPageScroll:"auto"})}function g(e,t){var n=e.parent().find(".tp-bullets");var r=e.parent().find(".tparrows");if(n==null){e.append('');var n=e.parent().find(".tp-bullets")}if(r==null){e.append('');var r=e.parent().find(".tparrows")}e.data("hidethumbs",t.hideThumbs);n.addClass("hidebullets");r.addClass("hidearrows");n.hover(function(){n.addClass("hovered");clearTimeout(e.data("hidethumbs"));n.removeClass("hidebullets");r.removeClass("hidearrows")},function(){n.removeClass("hovered");if(!e.hasClass("hovered")&&!n.hasClass("hovered"))e.data("hidethumbs",setTimeout(function(){n.addClass("hidebullets");r.addClass("hidearrows")},t.hideThumbs))});r.hover(function(){n.addClass("hovered");clearTimeout(e.data("hidethumbs"));n.removeClass("hidebullets");r.removeClass("hidearrows")},function(){n.removeClass("hovered")});e.on("mouseenter",function(){e.addClass("hovered");clearTimeout(e.data("hidethumbs"));n.removeClass("hidebullets");r.removeClass("hidearrows")});e.on("mouseleave",function(){e.removeClass("hovered");if(!e.hasClass("hovered")&&!n.hasClass("hovered"))e.data("hidethumbs",setTimeout(function(){n.addClass("hidebullets");r.addClass("hidearrows")},t.hideThumbs))})}function y(t,n){var r=t.parent();var i=r.find(".tp-bullets");if(n.navigationType=="thumb"){i.find(".thumb").each(function(t){var r=e(this);r.css({width:n.thumbWidth*n.bw+"px",height:n.thumbHeight*n.bh+"px"})});var s=i.find(".tp-mask");s.width(n.thumbWidth*n.thumbAmount*n.bw);s.height(n.thumbHeight*n.bh);s.parent().width(n.thumbWidth*n.thumbAmount*n.bw);s.parent().height(n.thumbHeight*n.bh)}var o=r.find(".tp-leftarrow");var u=r.find(".tp-rightarrow");if(n.navigationType=="thumb"&&n.navigationArrows=="nexttobullets")n.navigationArrows="solo";if(n.navigationArrows=="nexttobullets"){o.prependTo(i).css({"float":"left"});u.insertBefore(i.find(".tpclear")).css({"float":"left"})}var a=0;if(n.forceFullWidth=="on")a=0-n.container.parent().offset().left;if(n.navigationArrows!="none"&&n.navigationArrows!="nexttobullets"){o.css({position:"absolute"});u.css({position:"absolute"});if(n.soloArrowLeftValign=="center")o.css({top:"50%",marginTop:n.soloArrowLeftVOffset-Math.round(o.innerHeight()/2)+"px"});if(n.soloArrowLeftValign=="bottom")o.css({top:"auto",bottom:0+n.soloArrowLeftVOffset+"px"});if(n.soloArrowLeftValign=="top")o.css({bottom:"auto",top:0+n.soloArrowLeftVOffset+"px"});if(n.soloArrowLeftHalign=="center")o.css({left:"50%",marginLeft:a+n.soloArrowLeftHOffset-Math.round(o.innerWidth()/2)+"px"});if(n.soloArrowLeftHalign=="left")o.css({left:0+n.soloArrowLeftHOffset+a+"px"});if(n.soloArrowLeftHalign=="right")o.css({right:0+n.soloArrowLeftHOffset-a+"px"});if(n.soloArrowRightValign=="center")u.css({top:"50%",marginTop:n.soloArrowRightVOffset-Math.round(u.innerHeight()/2)+"px"});if(n.soloArrowRightValign=="bottom")u.css({top:"auto",bottom:0+n.soloArrowRightVOffset+"px"});if(n.soloArrowRightValign=="top")u.css({bottom:"auto",top:0+n.soloArrowRightVOffset+"px"});if(n.soloArrowRightHalign=="center")u.css({left:"50%",marginLeft:a+n.soloArrowRightHOffset-Math.round(u.innerWidth()/2)+"px"});if(n.soloArrowRightHalign=="left")u.css({left:0+n.soloArrowRightHOffset+a+"px"});if(n.soloArrowRightHalign=="right")u.css({right:0+n.soloArrowRightHOffset-a+"px"});if(o.position()!=null)o.css({top:Math.round(parseInt(o.position().top,0))+"px"});if(u.position()!=null)u.css({top:Math.round(parseInt(u.position().top,0))+"px"})}if(n.navigationArrows=="none"){o.css({visibility:"hidden"});u.css({visibility:"hidden"})}if(n.navigationVAlign=="center")i.css({top:"50%",marginTop:n.navigationVOffset-Math.round(i.innerHeight()/2)+"px"});if(n.navigationVAlign=="bottom")i.css({bottom:0+n.navigationVOffset+"px"});if(n.navigationVAlign=="top")i.css({top:0+n.navigationVOffset+"px"});if(n.navigationHAlign=="center")i.css({left:"50%",marginLeft:a+n.navigationHOffset-Math.round(i.innerWidth()/2)+"px"});if(n.navigationHAlign=="left")i.css({left:0+n.navigationHOffset+a+"px"});if(n.navigationHAlign=="right")i.css({right:0+n.navigationHOffset-a+"px"})}function b(n,r){r.container.closest(".forcefullwidth_wrapper_tp_banner").find(".tp-fullwidth-forcer").css({height:r.container.height()});r.container.closest(".rev_slider_wrapper").css({height:r.container.height()});r.width=parseInt(r.container.width(),0);r.height=parseInt(r.container.height(),0);r.bw=r.width/r.startwidth;r.bh=r.height/r.startheight;if(r.bh>r.bw)r.bh=r.bw;if(r.bh 1){r.bw=1;r.bh=1}if(r.bw>1){r.bw=1;r.bh=1}r.height=Math.round(r.startheight*(r.width/r.startwidth));if(r.height>r.startheight&&r.autoHeight!="on")r.height=r.startheight;if(r.fullScreen=="on"){r.height=r.bw*r.startheight;var i=r.container.parent().width();var s=e(window).height();if(r.fullScreenOffsetContainer!=t){try{var o=r.fullScreenOffsetContainer.split(",");e.each(o,function(t,n){s=s-e(n).outerHeight(true);if(s ul:first").css({overflow:"hidden",width:"100%",height:"100%",maxHeight:n.parent().css("maxHeight")});if(r.autoHeight=="on"){n.find(">ul:first").css({overflow:"hidden",width:"100%",height:"100%",maxHeight:"none"});n.css({maxHeight:"none"});n.parent().css({maxHeight:"none"})}n.find(">ul:first >li").each(function(n){var r=e(this);r.css({width:"100%",height:"100%",overflow:"hidden"});if(r.data("link")!=t){var i=r.data("link");var s="_self";var o=2;if(r.data("slideindex")=="back")o=0;var u=r.data("linktoslide");if(r.data("target")!=t)s=r.data("target");if(i=="slide"){r.append(' ')}else{u="no";r.append(' ')}}});n.parent().css({overflow:"visible"});n.find(">ul:first >li >img").each(function(n){var i=e(this);i.addClass("defaultimg");if(i.data("lazyload")!=t&&i.data("lazydone")!=1){}else{b(i,r)}i.wrap('");if(r.dottedOverlay!="none"&&r.dottedOverlay!=t)i.closest(".slotholder").append('');var s=i.attr("src");var u=i.data("lazyload");var a=i.data("bgfit");var f=i.data("bgrepeat");var l=i.data("bgposition");if(a==t)a="cover";if(f==t)f="no-repeat";if(l==t)l="center center";var c=i.closest(".slotholder");i.replaceWith('');if(o(8)){c.find(".tp-bgimg").css({backgroundImage:"none","background-image":"none"});c.find(".tp-bgimg").append('')}i.css({opacity:0});i.data("li-id",n)})}function E(e,n,r,i){var s=e;var u=s.find(".defaultimg");var a=s.data("zoomstart");var f=s.data("rotationstart");if(u.data("currotate")!=t)f=u.data("currotate");if(u.data("curscale")!=t)a=u.data("curscale");b(u,n);var l=u.data("src");var c=u.css("background-color");var h=n.width;var p=n.height;if(n.autoHeight=="on")p=n.container.height();var d=u.data("fxof");if(d==t)d=0;fullyoff=0;var v=0;var m=u.data("bgfit");var g=u.data("bgrepeat");var y=u.data("bgposition");if(m==t)m="cover";if(g==t)g="no-repeat";if(y==t)y="center center";if(s.data("kenburns")=="on"){m=a;if(m.toString().length<4)m=A(m,s,n)}if(o(8)){var w=l;l=""}if(i=="horizontal"){if(!r)var v=0-n.slotw;for(var E=0;E
'+' ');x(s,n)}}}else{if(!r)var v=0-n.sloth;for(var E=0;E
'+' ");if(a!=t&&f!=t)TweenLite.set(s.find(".slot").last(),{rotationZ:f});if(o(8)){s.find(".slot ").last().find(".slotslide").append('');x(s,n)}}}}function S(e,n,r){var i=e;var s=i.find(".defaultimg");var u=i.data("zoomstart");var a=i.data("rotationstart");if(s.data("currotate")!=t)a=s.data("currotate");if(s.data("curscale")!=t)u=s.data("curscale")*100;b(s,n);var f=s.data("src");var l=s.css("backgroundColor");var c=n.width;var h=n.height;if(n.autoHeight=="on")h=n.container.height();var p=s.data("fxof");if(p==t)p=0;fullyoff=0;var d=0;if(o(8)){var v=f;f=""}var m=0;if(n.sloth>n.slotw)m=n.sloth;else m=n.slotw;if(!r){var d=0-m}n.slotw=m;n.sloth=m;var g=0;var y=0;var w=s.data("bgfit");var E=s.data("bgrepeat");var S=s.data("bgposition");if(w==t)w="cover";if(E==t)E="no-repeat";if(S==t)S="center center";if(i.data("kenburns")=="on"){w=u;if(w.toString().length<4)w=A(w,i,n)}for(var T=0;T
'+' ");y=y+m;if(o(8)){i.find(".slot ").last().find(".slotslide").append('');x(i,n)}if(u!=t&&a!=t)TweenLite.set(i.find(".slot").last(),{rotationZ:a})}g=g+m}}function x(e,t){if(o(8)){var n=e.find(".ieeightfallbackimage");if(t.startwidth/t.startheight
ul:first-child >li:eq("+n.act+")")}catch(i){var r=e.find(">ul:first-child >li:eq(1)")}n.lastslide=n.act;var s=e.find(">ul:first-child >li:eq("+n.next+")");var o=s.find(".defaultimg");if(o.data("lazyload")!=t&&o.data("lazyload")!="undefined"&&o.data("lazydone")!=1){o.css({backgroundImage:'url("'+s.find(".defaultimg").data("lazyload")+'")'});o.data("src",s.find(".defaultimg").data("lazyload"));o.data("lazydone",1);o.data("orgw",0);s.data("loadeddone",1);e.find(".tp-loader").css({display:"block"}).transition({opacity:1,duration:300});var f=new Image;f.onload=function(){setTimeout(function(){a(n,e)},180);s.waitForImages(function(){o.data("lazydone",1);s.data("owidth",f.width);s.data("oheight",f.height);s.find(".slotholder").data("owidth",f.width);s.find(".slotholder").data("oheight",f.height);setTimeout(function(){u(n,e)},190);b(o,n);y(e,n);b(o,n);C(e,n);e.find(".tp-loader").transition({opacity:0,duration:300});setTimeout(function(){e.find(".tp-loader").css({display:"none"})},2200)})};f.src=s.find(".defaultimg").data("lazyload")}else{if(s.data("loadeddone")==t){var f=new Image;f.onload=function(){s.data("loadeddone",1);s.data("owidth",f.width);s.data("oheight",f.height);s.find(".slotholder").data("owidth",f.width);s.find(".slotholder").data("oheight",f.height);s.waitForImages(function(){b(o,n);y(e,n);b(o,n);C(e,n)})};f.src=s.find(".defaultimg").data("src")}else{C(e,n)}}}function C(n,r){function x(){e.each(v,function(e,t){if(t[0]==p||t[8]==p){l=t[1];d=t[2];y=b}b=b+1})}n.trigger("revolution.slide.onbeforeswap");r.transition=1;r.videoplaying=false;try{var i=n.find(">ul:first-child >li:eq("+r.act+")")}catch(s){var i=n.find(">ul:first-child >li:eq(1)")}r.lastslide=r.act;var u=n.find(">ul:first-child >li:eq("+r.next+")");var a=i.find(".slotholder");var f=u.find(".slotholder");i.css({visibility:"visible"});u.css({visibility:"visible"});if(f.data("kenburns")=="on")k(n,r);if(r.ie){if(p=="boxfade")p="boxslide";if(p=="slotfade-vertical")p="slotzoom-vertical";if(p=="slotfade-horizontal")p="slotzoom-horizontal"}if(u.data("delay")!=t){r.cd=0;r.delay=u.data("delay")}else{r.delay=r.origcd}i.css({left:"0px",top:"0px"});u.css({left:"0px",top:"0px"});if(u.data("differentissplayed")=="prepared"){u.data("differentissplayed","done");u.data("transition",u.data("savedtransition"));u.data("slotamount",u.data("savedslotamount"));u.data("masterspeed",u.data("savedmasterspeed"))}if(u.data("fstransition")!=t&&u.data("differentissplayed")!="done"){u.data("savedtransition",u.data("transition"));u.data("savedslotamount",u.data("slotamount"));u.data("savedmasterspeed",u.data("masterspeed"));u.data("transition",u.data("fstransition"));u.data("slotamount",u.data("fsslotamount"));u.data("masterspeed",u.data("fsmasterspeed"));u.data("differentissplayed","prepared")}var l=0;var c=u.data("transition").split(",");var h=u.data("nexttransid");if(h==t){h=0;u.data("nexttransid",h)}else{h=h+1;if(h==c.length)h=0;u.data("nexttransid",h)}var p=c[h];var d=0;if(p=="slidehorizontal"){p="slideleft";if(r.leftarrowpressed==1)p="slideright"}if(p=="slidevertical"){p="slideup";if(r.leftarrowpressed==1)p="slidedown"}var v=[["boxslide",0,1,10,0,"box",false,null,0],["boxfade",1,0,10,0,"box",false,null,1],["slotslide-horizontal",2,0,0,200,"horizontal",true,false,2],["slotslide-vertical",3,0,0,200,"vertical",true,false,3],["curtain-1",4,3,0,0,"horizontal",true,true,4],["curtain-2",5,3,0,0,"horizontal",true,true,5],["curtain-3",6,3,25,0,"horizontal",true,true,6],["slotzoom-horizontal",7,0,0,400,"horizontal",true,true,7],["slotzoom-vertical",8,0,0,0,"vertical",true,true,8],["slotfade-horizontal",9,0,0,500,"horizontal",true,null,9],["slotfade-vertical",10,0,0,500,"vertical",true,null,10],["fade",11,0,1,300,"horizontal",true,null,11],["slideleft",12,0,1,0,"horizontal",true,true,12],["slideup",13,0,1,0,"horizontal",true,true,13],["slidedown",14,0,1,0,"horizontal",true,true,14],["slideright",15,0,1,0,"horizontal",true,true,15],["papercut",16,0,0,600,"",null,null,16],["3dcurtain-horizontal",17,0,20,100,"vertical",false,true,17],["3dcurtain-vertical",18,0,10,100,"horizontal",false,true,18],["cubic",19,0,20,600,"horizontal",false,true,19],["cube",19,0,20,600,"horizontal",false,true,20],["flyin",20,0,4,600,"vertical",false,true,21],["turnoff",21,0,1,1600,"horizontal",false,true,22],["incube",22,0,20,600,"horizontal",false,true,23],["cubic-horizontal",23,0,20,500,"vertical",false,true,24],["cube-horizontal",23,0,20,500,"vertical",false,true,25],["incube-horizontal",24,0,20,500,"vertical",false,true,26],["turnoff-vertical",25,0,1,1600,"horizontal",false,true,27],["fadefromright",12,1,1,0,"horizontal",true,true,28],["fadefromleft",15,1,1,0,"horizontal",true,true,29],["fadefromtop",14,1,1,0,"horizontal",true,true,30],["fadefrombottom",13,1,1,0,"horizontal",true,true,31],["fadetoleftfadefromright",12,2,1,0,"horizontal",true,true,32],["fadetorightfadetoleft",15,2,1,0,"horizontal",true,true,33],["fadetobottomfadefromtop",14,2,1,0,"horizontal",true,true,34],["fadetotopfadefrombottom",13,2,1,0,"horizontal",true,true,35],["parallaxtoright",12,3,1,0,"horizontal",true,true,36],["parallaxtoleft",15,3,1,0,"horizontal",true,true,37],["parallaxtotop",14,3,1,0,"horizontal",true,true,38],["parallaxtobottom",13,3,1,0,"horizontal",true,true,39],["scaledownfromright",12,4,1,0,"horizontal",true,true,40],["scaledownfromleft",15,4,1,0,"horizontal",true,true,41],["scaledownfromtop",14,4,1,0,"horizontal",true,true,42],["scaledownfrombottom",13,4,1,0,"horizontal",true,true,43],["zoomout",13,5,1,0,"horizontal",true,true,44],["zoomin",13,6,1,0,"horizontal",true,true,45],["notransition",26,0,1,0,"horizontal",true,null,46]];var m=[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45];var g=[16,17,18,19,20,21,22,23,24,25,26,27];var l=0;var d=1;var y=0;var b=0;var w=new Array;if(p=="random"){p=Math.round(Math.random()*v.length-1);if(p>v.length-1)p=v.length-1}if(p=="random-static"){p=Math.round(Math.random()*m.length-1);if(p>m.length-1)p=m.length-1;p=m[p]}if(p=="random-premium"){p=Math.round(Math.random()*g.length-1);if(p>g.length-1)p=g.length-1;p=g[p]}x();if(o(8)&&l>15&&l<28){p=Math.round(Math.random()*m.length-1);if(p>m.length-1)p=m.length-1;p=m[p];b=0;x()}var T=-1;if(r.leftarrowpressed==1||r.act>r.next)T=1;r.leftarrowpressed=0;if(l>26)l=26;if(l<0)l=0;var N=300;if(u.data("masterspeed")!=t&&u.data("masterspeed")>99&&u.data("masterspeed")<4001)N=u.data("masterspeed");w=v[y];n.parent().find(".bullet").each(function(){var t=e(this);t.removeClass("selected");if(r.navigationArrows=="withbullet"||r.navigationArrows=="nexttobullets"){if(t.index()-1==r.next)t.addClass("selected")}else{if(t.index()==r.next)t.addClass("selected")}});n.find(">li").each(function(){var t=e(this);if(t.index!=r.act&&t.index!=r.next)t.css({"z-index":16})});i.css({"z-index":18});u.css({"z-index":20});u.css({opacity:0});if(i.index()!=u.index()&&r.firststart!=1){W(i,r)}q(u,r);if(u.data("slotamount")==t||u.data("slotamount")<1){r.slots=Math.round(Math.random()*12+4);if(p=="boxslide")r.slots=Math.round(Math.random()*6+3);else if(p=="flyin")r.slots=Math.round(Math.random()*4+1)}else{r.slots=u.data("slotamount")}if(u.data("rotate")==t)r.rotate=0;else if(u.data("rotate")==999)r.rotate=Math.round(Math.random()*360);else r.rotate=u.data("rotate");if(!e.support.transition||r.ie||r.ie9)r.rotate=0;if(r.firststart==1){i.css({opacity:0});r.firststart=0}N=N+w[4];if((l==4||l==5||l==6)&&r.slots<3)r.slots=3;if(w[3]!=0)r.slots=Math.min(r.slots,w[3]);if(l==9)r.slots=r.width/20;if(l==10)r.slots=r.height/20;if(w[5]=="box"){if(w[7]!=null)S(a,r,w[7]);if(w[6]!=null)S(f,r,w[6])}else if(w[5]=="vertical"||w[5]=="horizontal"){if(w[7]!=null)E(a,r,w[7],w[5]);if(w[6]!=null)E(f,r,w[6],w[5])}if(l<12||l>16)u.css({opacity:1});if(l==0){f.find(".defaultimg").css({opacity:0});var C=Math.ceil(r.height/r.sloth);var L=0;f.find(".slotslide").each(function(t){var s=e(this);L=L+1;if(L==C)L=0;TweenLite.fromTo(s,N/600,{opacity:0,top:0-r.sloth,left:0-r.slotw,rotation:r.rotate},{opacity:1,transformPerspective:600,top:0,left:0,scale:1,rotation:0,delay:(t*15+L*30)/1500,ease:Power2.easeOut,onComplete:function(){if(t==r.slots*r.slots-1){P(n,r,f,a,u,i)}}})})}if(l==1){f.find(".defaultimg").css({opacity:0});var A;f.find(".slotslide").each(function(t){var n=e(this);rand=Math.random()*N+300;rand2=Math.random()*500+200;if(rand+rand2>A)A=rand2+rand2;TweenLite.fromTo(n,rand/1e3,{opacity:0,transformPerspective:600,rotation:r.rotate},{opacity:1,ease:Power2.easeInOut,rotation:0,delay:rand2/1e3})});setTimeout(function(){P(n,r,f,a,u,i)},N+300)}if(l==2){f.find(".defaultimg").css({opacity:0});a.find(".slotslide").each(function(){var t=e(this);TweenLite.to(t,N/1e3,{left:r.slotw,rotation:0-r.rotate,onComplete:function(){P(n,r,f,a,u,i)}})});f.find(".slotslide").each(function(){var t=e(this);TweenLite.fromTo(t,N/1e3,{left:0-r.slotw,rotation:r.rotate,transformPerspective:600},{left:0,rotation:0,ease:Power2.easeOut,onComplete:function(){P(n,r,f,a,u,i)}})})}if(l==3){f.find(".defaultimg").css({opacity:0});a.find(".slotslide").each(function(){var t=e(this);TweenLite.to(t,N/1e3,{top:r.sloth,rotation:r.rotate,transformPerspective:600,onComplete:function(){P(n,r,f,a,u,i)}})});f.find(".slotslide").each(function(){var t=e(this);TweenLite.fromTo(t,N/1e3,{top:0-r.sloth,rotation:r.rotate,transformPerspective:600},{top:0,rotation:0,ease:Power2.easeOut,onComplete:function(){P(n,r,f,a,u,i)}})})}if(l==4||l==5){f.find(".defaultimg").css({opacity:0});setTimeout(function(){a.find(".defaultimg").css({opacity:0})},100);var O=N/1e3;var M=O;a.find(".slotslide").each(function(t){var n=e(this);var i=t*O/r.slots;if(l==5)i=(r.slots-t-1)*O/r.slots/1.5;TweenLite.to(n,O*3,{transformPerspective:600,top:0+r.height,opacity:.5,rotation:r.rotate,ease:Power2.easeInOut,delay:i})});f.find(".slotslide").each(function(t){var s=e(this);var o=t*O/r.slots;if(l==5)o=(r.slots-t-1)*O/r.slots/1.5;TweenLite.fromTo(s,O*3,{top:0-r.height,opacity:.5,rotation:r.rotate,transformPerspective:600},{top:0,opacity:1,rotation:0,ease:Power2.easeInOut,delay:o,onComplete:function(){if(t==r.slots-1){P(n,r,f,a,u,i)}}})})}if(l==6){if(r.slots<2)r.slots=2;f.find(".defaultimg").css({opacity:0});setTimeout(function(){a.find(".defaultimg").css({opacity:0})},100);a.find(".slotslide").each(function(t){var n=e(this);if(t ');i.find(".tp-half-one").clone(true).appendTo(i).addClass("tp-half-two");i.find(".tp-half-two").removeClass("tp-half-one");var D=r.width;var H=r.height;if(r.autoHeight=="on")H=n.height();i.find(".tp-half-one .defaultimg").wrap('');i.find(".tp-half-two .defaultimg").wrap('');i.find(".tp-half-two .defaultimg").css({position:"absolute",top:"-50%"});i.find(".tp-half-two .tp-caption").wrapAll('');TweenLite.set(i.find(".tp-half-two"),{width:D,height:H,overflow:"hidden",zIndex:15,position:"absolute",top:H/2,left:"0px",transformPerspective:600,transformOrigin:"center bottom"});TweenLite.set(i.find(".tp-half-one"),{width:D,height:H/2,overflow:"visible",zIndex:10,position:"absolute",top:"0px",left:"0px",transformPerspective:600,transformOrigin:"center top"});var K=i.find(".defaultimg");var Q=Math.round(Math.random()*20-10);var G=Math.round(Math.random()*20-10);var Y=Math.round(Math.random()*20-10);var Z=Math.random()*.4-.2;var et=Math.random()*.4-.2;var tt=Math.random()*1+1;var nt=Math.random()*1+1;TweenLite.fromTo(i.find(".tp-half-one"),N/1e3,{width:D,height:H/2,position:"absolute",top:"0px",left:"0px",transformPerspective:600,transformOrigin:"center top"},{scale:tt,rotation:Q,y:0-H-H/4,ease:Power2.easeInOut});setTimeout(function(){TweenLite.set(i.find(".tp-half-one"),{overflow:"hidden"})},50);TweenLite.fromTo(i.find(".tp-half-one"),N/2e3,{opacity:1,transformPerspective:600,transformOrigin:"center center"},{opacity:0,delay:N/2e3});TweenLite.fromTo(i.find(".tp-half-two"),N/1e3,{width:D,height:H,overflow:"hidden",position:"absolute",top:H/2,left:"0px",transformPerspective:600,transformOrigin:"center bottom"},{scale:nt,rotation:G,y:H+H/4,ease:Power2.easeInOut});TweenLite.fromTo(i.find(".tp-half-two"),N/2e3,{opacity:1,transformPerspective:600,transformOrigin:"center center"},{opacity:0,delay:N/2e3});if(i.html()!=null)TweenLite.fromTo(u,(N-200)/1e3,{opacity:0,scale:.8,x:r.width*Z,y:H*et,rotation:Y,transformPerspective:600,transformOrigin:"center center"},{rotation:0,scale:1,x:0,y:0,opacity:1,ease:Power2.easeInOut});f.find(".defaultimg").css({opacity:1});setTimeout(function(){i.css({position:"absolute","z-index":18});u.css({position:"absolute","z-index":20});f.find(".defaultimg").css({opacity:1});a.find(".defaultimg").css({opacity:0});if(i.find(".tp-half-one").length>0){i.find(".tp-half-one .defaultimg").unwrap();i.find(".tp-half-one .slotholder").unwrap()}i.find(".tp-half-two").remove();r.transition=0;r.act=r.next},N);u.css({opacity:1})}if(l==17){f.find(".defaultimg").css({opacity:0});f.find(".slotslide").each(function(t){var s=e(this);TweenLite.fromTo(s,N/800,{opacity:0,rotationY:0,scale:.9,rotationX:-110,transformPerspective:600,transformOrigin:"center center"},{opacity:1,top:0,left:0,scale:1,rotation:0,rotationX:0,rotationY:0,ease:Power3.easeOut,delay:t*.06,onComplete:function(){if(t==r.slots-1)P(n,r,f,a,u,i)}})})}if(l==18){f.find(".defaultimg").css({opacity:0});f.find(".slotslide").each(function(t){var s=e(this);TweenLite.fromTo(s,N/500,{opacity:0,rotationY:310,scale:.9,rotationX:10,transformPerspective:600,transformOrigin:"center center"},{opacity:1,top:0,left:0,scale:1,rotation:0,rotationX:0,rotationY:0,ease:Power3.easeOut,delay:t*.06,onComplete:function(){if(t==r.slots-1)P(n,r,f,a,u,i)}})})}if(l==19||l==22){f.find(".defaultimg").css({opacity:0});setTimeout(function(){a.find(".defaultimg").css({opacity:0})},100);var rt=u.css("z-index");var it=i.css("z-index");var st=90;var I=1;if(T==1)st=-90;if(l==19){var ot="center center -"+r.height/2;I=0}else{var ot="center center "+r.height/2}TweenLite.fromTo(f,N/2e3,{transformPerspective:600,z:0,x:0,rotationY:0},{rotationY:1,ease:Power1.easeInOut,z:-40});TweenLite.fromTo(f,N/2e3,{transformPerspective:600,z:-40,rotationY:1},{rotationY:0,z:0,ease:Power1.easeInOut,x:0,delay:3*(N/4e3)});TweenLite.fromTo(a,N/2e3,{transformPerspective:600,z:0,x:0,rotationY:0},{rotationY:1,x:0,ease:Power1.easeInOut,z:-40});TweenLite.fromTo(a,N/2e3,{transformPerspective:600,z:-40,x:0,rotationY:1},{rotationY:0,z:0,x:0,ease:Power1.easeInOut,delay:3*(N/4e3)});f.find(".slotslide").each(function(t){var s=e(this);TweenLite.fromTo(s,N/1e3,{left:0,rotationY:r.rotate,opacity:I,top:0,scale:.8,transformPerspective:600,transformOrigin:ot,rotationX:st},{left:0,rotationY:0,opacity:1,top:0,z:0,scale:1,rotationX:0,delay:t*50/1e3,ease:Power2.easeInOut,onComplete:function(){if(t==r.slots-1)P(n,r,f,a,u,i)}});TweenLite.to(s,.1,{opacity:1,delay:t*50/1e3+N/3e3})});a.find(".slotslide").each(function(t){var s=e(this);var o=-90;if(T==1)o=90;TweenLite.fromTo(s,N/1e3,{opacity:1,rotationY:0,top:0,z:0,scale:1,transformPerspective:600,transformOrigin:ot,rotationX:0},{opacity:1,rotationY:r.rotate,top:0,scale:.8,rotationX:o,delay:t*50/1e3,ease:Power2.easeInOut,onComplete:function(){if(t==r.slots-1)P(n,r,f,a,u,i)}});TweenLite.to(s,.1,{opacity:0,delay:t*50/1e3+(N/1e3-N/1e4)})})}if(l==20){f.find(".defaultimg").css({opacity:0});setTimeout(function(){a.find(".defaultimg").css({opacity:0})},100);var rt=u.css("z-index");var it=i.css("z-index");if(T==1){var ut=-r.width;var st=70;var ot="left center -"+r.height/2}else{var ut=r.width;var st=-70;var ot="right center -"+r.height/2}f.find(".slotslide").each(function(t){var s=e(this);TweenLite.fromTo(s,N/1500,{left:ut,rotationX:40,z:-600,opacity:I,top:0,transformPerspective:600,transformOrigin:ot,rotationY:st},{left:0,delay:t*50/1e3,ease:Power2.easeInOut});TweenLite.fromTo(s,N/1e3,{rotationX:40,z:-600,opacity:I,top:0,scale:1,transformPerspective:600,transformOrigin:ot,rotationY:st},{rotationX:0,opacity:1,top:0,z:0,scale:1,rotationY:0,delay:t*50/1e3,ease:Power2.easeInOut,onComplete:function(){if(t==r.slots-1)P(n,r,f,a,u,i)}});TweenLite.to(s,.1,{opacity:1,delay:t*50/1e3+N/2e3})});a.find(".slotslide").each(function(t){var s=e(this);if(T!=1){var o=-r.width;var l=70;var c="left center -"+r.height/2}else{var o=r.width;var l=-70;var c="right center -"+r.height/2}TweenLite.fromTo(s,N/1e3,{opacity:1,rotationX:0,top:0,z:0,scale:1,left:0,transformPerspective:600,transformOrigin:c,rotationY:0},{opacity:1,rotationX:40,top:0,z:-600,left:o,scale:.8,rotationY:l,delay:t*50/1e3,ease:Power2.easeInOut,onComplete:function(){if(t==r.slots-1)P(n,r,f,a,u,i)}});TweenLite.to(s,.1,{opacity:0,delay:t*50/1e3+(N/1e3-N/1e4)})})}if(l==21||l==25){f.find(".defaultimg").css({opacity:0});setTimeout(function(){a.find(".defaultimg").css({opacity:0})},100);var rt=u.css("z-index");var it=i.css("z-index");if(T==1){var ut=-r.width;var st=110;if(l==25){var ot="center top 0";rot2=-st;st=r.rotate}else{var ot="left center 0";rot2=r.rotate}}else{var ut=r.width;var st=-110;if(l==25){var ot="center bottom 0";rot2=-st;st=r.rotate}else{var ot="right center 0";rot2=r.rotate}}f.find(".slotslide").each(function(t){var s=e(this);TweenLite.fromTo(s,N/1500,{left:0,rotationX:rot2,z:0,opacity:0,top:0,scale:1,transformPerspective:600,transformOrigin:ot,rotationY:st},{left:0,rotationX:0,top:0,z:0,scale:1,rotationY:0,delay:t*100/1e3+N/1e4,ease:Power2.easeInOut,onComplete:function(){if(t==r.slots-1)P(n,r,f,a,u,i)}});TweenLite.to(s,.3,{opacity:1,delay:t*100/1e3+N*.2/2e3+N/1e4})});if(T!=1){var ut=-r.width;var st=90;if(l==25){var ot="center top 0";rot2=-st;st=r.rotate}else{var ot="left center 0";rot2=r.rotate}}else{var ut=r.width;var st=-90;if(l==25){var ot="center bottom 0";rot2=-st;st=r.rotate}else{var ot="right center 0";rot2=r.rotate}}a.find(".slotslide").each(function(t){var n=e(this);TweenLite.fromTo(n,N/3e3,{left:0,rotationX:0,z:0,opacity:1,top:0,scale:1,transformPerspective:600,transformOrigin:ot,rotationY:0},{left:0,rotationX:rot2,top:0,z:0,scale:1,rotationY:st,delay:t*100/1e3,ease:Power1.easeInOut});TweenLite.to(n,.2,{opacity:0,delay:t*50/1e3+(N/3e3-N/1e4)})})}if(l==23||l==24){f.find(".defaultimg").css({opacity:0});setTimeout(function(){a.find(".defaultimg").css({opacity:0})},100);var rt=u.css("z-index");var it=i.css("z-index");var st=-90;if(T==1)st=90;var I=1;if(l==23){var ot="center center -"+r.width/2;I=0}else{var ot="center center "+r.width/2}var at=0;TweenLite.fromTo(f,N/2e3,{transformPerspective:600,z:0,x:0,rotationY:0},{rotationY:1,ease:Power1.easeInOut,z:-90});TweenLite.fromTo(f,N/2e3,{transformPerspective:600,z:-90,rotationY:1},{rotationY:0,z:0,ease:Power1.easeInOut,x:0,delay:3*(N/4e3)});TweenLite.fromTo(a,N/2e3,{transformPerspective:600,z:0,x:0,rotationY:0},{rotationY:1,x:0,ease:Power1.easeInOut,z:-90});TweenLite.fromTo(a,N/2e3,{transformPerspective:600,z:-90,x:0,rotationY:1},{rotationY:0,z:0,x:0,ease:Power1.easeInOut,delay:3*(N/4e3)});f.find(".slotslide").each(function(t){var s=e(this);TweenLite.fromTo(s,N/1e3,{left:at,rotationX:r.rotate,opacity:I,top:0,scale:1,transformPerspective:600,transformOrigin:ot,rotationY:st},{left:0,rotationX:0,opacity:1,top:0,z:0,scale:1,rotationY:0,delay:t*50/1e3,ease:Power2.easeInOut,onComplete:function(){if(t==r.slots-1)P(n,r,f,a,u,i)}});TweenLite.to(s,.1,{opacity:1,delay:t*50/1e3+N/3e3})});st=90;if(T==1)st=-90;a.find(".slotslide").each(function(t){var s=e(this);TweenLite.fromTo(s,N/1e3,{left:0,opacity:1,rotationX:0,top:0,z:0,scale:1,transformPerspective:600,transformOrigin:ot,rotationY:0},{left:at,opacity:1,rotationX:r.rotate,top:0,scale:1,rotationY:st,delay:t*50/1e3,ease:Power2.easeInOut,onComplete:function(){if(t==r.slots-1)P(n,r,f,a,u,i)}});TweenLite.to(s,.1,{opacity:0,delay:t*50/1e3+(N/1e3-N/1e4)})})}var ft={};ft.slideIndex=r.next+1;n.trigger("revolution.slide.onchange",ft);setTimeout(function(){n.trigger("revolution.slide.onafterswap")},N);n.trigger("revolution.slide.onvideostop")}function k(n,r){try{var i=n.find(">ul:first-child >li:eq("+r.act+")")}catch(s){var i=n.find(">ul:first-child >li:eq(1)")}r.lastslide=r.act;var o=n.find(">ul:first-child >li:eq("+r.next+")");var u=i.find(".slotholder");var a=o.find(".slotholder");a.find(".defaultimg").each(function(){var n=e(this);if(n.data("kenburn")!=t)n.data("kenburn").restart();TweenLite.killTweensOf(n,false);TweenLite.set(n,{scale:1,rotationZ:0});n.data("bgposition",a.data("bgposition"));n.data("currotate",a.data("rotationstart"));n.data("curscale",a.data("bgfit"))})}function L(n,r){try{var i=n.find(">ul:first-child >li:eq("+r.act+")")}catch(s){var i=n.find(">ul:first-child >li:eq(1)")}r.lastslide=r.act;var u=n.find(">ul:first-child >li:eq("+r.next+")");var a=i.find(".slotholder");var f=u.find(".slotholder");var l=f.data("bgposition"),c=f.data("bgpositionend"),h=f.data("zoomstart")/100,p=f.data("zoomend")/100,d=f.data("rotationstart"),v=f.data("rotationend"),m=f.data("bgfit"),g=f.data("bgfitend"),y=f.data("easeme"),b=f.data("duration")/1e3;if(m==t)m=100;if(g==t)g=100;m=A(m,f,r);g=A(g,f,r);if(h==t)h=1;if(p==t)p=1;if(d==t)d=0;if(v==t)v=0;if(h<1)h=1;if(p<1)p=1;f.find(".defaultimg").each(function(){var t=e(this);t.data("kenburn",TweenLite.fromTo(t,b,{transformPerspective:1200,backgroundSize:m,z:0,backgroundPosition:l,rotationZ:d},{yoyo:2,rotationZ:v,ease:y,backgroundSize:g,backgroundPosition:c,onUpdate:function(){t.data("bgposition",t.css("backgroundPosition"));if(!o(8))t.data("currotate",D(t));if(!o(8))t.data("curscale",t.css("backgroundSize"))}}))})}function A(e,t,n){var r=t.data("owidth");var i=t.data("oheight");var s=n.container.width()/r;var o=i*s;var u=o/n.container.height()*e;return e+"% "+u+"%"}function O(e){var t=e.css("-webkit-transform")||e.css("-moz-transform")||e.css("-ms-transform")||e.css("-o-transform")||e.css("transform");return t}function M(e){return e.replace(/^matrix(3d)?\((.*)\)$/,"$2").split(/, /)}function _(e){var t=M(O(e)),n=1;if(t[0]!=="none"){var r=t[0],i=t[1],s=10;n=Math.round(Math.sqrt(r*r+i*i)*s)/s}return n}function D(e){var t=e.css("-webkit-transform")||e.css("-moz-transform")||e.css("-ms-transform")||e.css("-o-transform")||e.css("transform");if(t!=="none"){var n=t.split("(")[1].split(")")[0].split(",");var r=n[0];var i=n[1];var s=Math.round(Math.atan2(i,r)*(180/Math.PI))}else{var s=0}return s<0?s+=360:s}function P(e,t,n,r,i,s){T(e,t);n.find(".defaultimg").css({opacity:1});if(i.index()!=s.index())r.find(".defaultimg").css({opacity:0});t.act=t.next;c(e);if(n.data("kenburns")=="on")L(e,t)}function H(t){var n=t.target.getVideoEmbedCode();var r=e("#"+n.split('id="')[1].split('"')[0]);var i=r.closest(".tp-simpleresponsive");var s=r.parent().data("player");if(t.data==YT.PlayerState.PLAYING){var o=i.find(".tp-bannertimer");var u=o.data("opt");o.stop();if(r.closest(".tp-caption").data("volume")=="mute")s.mute();u.videoplaying=true;u.videostartednow=1}else{var o=i.find(".tp-bannertimer");var u=o.data("opt");if(t.data!=-1){if(u.conthover==0)o.animate({width:"100%"},{duration:u.delay-u.cd-100,queue:false,easing:"linear"});u.videoplaying=false;u.videostoppednow=1}}if(t.data==0&&u.nextslideatend==true)u.container.revnext()}function B(e,t,n){if(e.addEventListener)e.addEventListener(t,n,false);else e.attachEvent(t,n,false)}function j(t,n){var r=$f(t);var i=e("#"+t);var s=i.closest(".tp-simpleresponsive");r.addEvent("ready",function(e){if(n)r.api("play");r.addEvent("play",function(e){var t=s.find(".tp-bannertimer");var n=t.data("opt");t.stop();n.videoplaying=true;if(i.closest(".tp-caption").data("volume")=="mute")r.api("setVolume","0")});r.addEvent("finish",function(e){var t=s.find(".tp-bannertimer");var n=t.data("opt");if(n.conthover==0)t.animate({width:"100%"},{duration:n.delay-n.cd-100,queue:false,easing:"linear"});n.videoplaying=false;n.videostartednow=1;if(n.nextslideatend==true)n.container.revnext()});r.addEvent("pause",function(e){var t=s.find(".tp-bannertimer");var n=t.data("opt");if(n.conthover==0)t.animate({width:"100%"},{duration:n.delay-n.cd-100,queue:false,easing:"linear"});n.videoplaying=false;n.videostoppednow=1})})}function F(n,r){if(r==t)r=e(n["b"]).attr("id");var i=e("#"+r);var s=i.closest(".tp-simpleresponsive");n.on("play",function(){if(i.closest(".tp-caption").data("volume")=="mute")n.volume(0);var t=e("body").find(".tp-bannertimer");var r=t.data("opt");t.stop();try{r.videoplaying=true}catch(s){}});n.on("pause",function(){var e=s.find(".tp-bannertimer");var t=e.data("opt");if(t.conthover==0)e.animate({width:"100%"},{duration:t.delay-t.cd-100,queue:false,easing:"linear"});t.videoplaying=false;t.videostoppednow=1});n.on("ended",function(){var e=s.find(".tp-bannertimer");var t=e.data("opt");if(t.conthover==0)e.animate({width:"100%"},{duration:t.delay-t.cd-100,queue:false,easing:"linear"});t.videoplaying=false;t.videostoppednow=1;if(t.nextslideatend==true)t.container.revnext()});n.on("loadedmetadata",function(e){var n=0;var r=0;for(var o in this){try{if(this[o].hasOwnProperty("videoWidth"))n=this[o].videoWidth;if(this[o].hasOwnProperty("videoHeight"))r=this[o].videoHeight}catch(u){}}var a=n/r;if(i.data("mediaAspect")==t)i.data("mediaAspect",a);if(i.closest(".tp-caption").data("forcecover")==1)I(i,s)})}function I(e,t){var n=t.width();var r=t.height();var i=e.data("mediaAspect");var s=n/r;e.parent().find(".vjs-poster").css({width:"100%",height:"100%"});if(s0||f.find("video").length>0){if(f.data("autoplayonlyfirsttime")==true||f.data("autoplayonlyfirsttime")=="true"){f.data("autoplay",true)}f.find("iframe").each(function(){var n=e(this);r.nextslideatend=f.data("nextslideatend");if(f.data("thumbimage")!=t&&f.data("thumbimage").length>2&&f.data("autoplay")!=true&&!i){f.find(".tp-thumb-image").remove();f.append('')}if(n.attr("src").toLowerCase().indexOf("youtube")>=0){if(!n.hasClass("HasListener")){try{n.attr("id",c);var s;if(f.data("autoplay")==true)s=new YT.Player(c,{events:{onStateChange:H,onReady:function(e){e.target.playVideo()}}});else s=new YT.Player(c,{events:{onStateChange:H}});n.addClass("HasListener");f.data("player",s)}catch(o){}}else{if(f.data("autoplay")==true){var s=f.data("player");f.data("timerplay",setTimeout(function(){if(f.data("forcerewind")=="on")s.seekTo(0);s.playVideo()},f.data("start")))}}f.find(".tp-thumb-image").click(function(){TweenLite.to(e(this),.3,{opacity:0,ease:Power3.easeInOut,onComplete:function(){f.find(".tp-thumb-image").remove()}});var t=f.data("player");t.playVideo()})}else{if(n.attr("src").toLowerCase().indexOf("vimeo")>=0){if(!n.hasClass("HasListener")){n.addClass("HasListener");n.attr("id",c);var u=n.attr("src");var a={},l=u,h=/([^&=]+)=([^&]*)/g,p;while(p=h.exec(l)){a[decodeURIComponent(p[1])]=decodeURIComponent(p[2])}if(a["player_id"]!=t)u=u.replace(a["player_id"],c);else u=u+"&player_id="+c;try{u=u.replace("api=0","api=1")}catch(o){}u=u+"&api=1";n.attr("src",u);var s=f.find("iframe")[0];$f(s).addEvent("ready",function(){j(c,f.data("autoplay"))})}else{if(f.data("autoplay")==true){var n=f.find("iframe");var d=n.attr("id");var v=$f(d);f.data("timerplay",setTimeout(function(){if(f.data("forcerewind")=="on")v.api("seekTo",0);v.api("play")},f.data("start")))}}f.find(".tp-thumb-image").click(function(){TweenLite.to(e(this),.3,{opacity:0,ease:Power3.easeInOut,onComplete:function(){f.find(".tp-thumb-image").remove()}});var t=f.find("iframe");var n=t.attr("id");var r=$f(n);r.api("play")})}}});if(f.find("video").length>0){f.find("video").each(function(n){var i=e(this).parent();if(f.data("dottedoverlay")!="none"&&f.data("dottedoverlay")!=t)if(f.find(".tp-dottedoverlay").length!=1)i.append('');var s=16/9;if(f.data("aspectratio")=="4:3")s=4/3;i.data("mediaAspect",s);I(i,r.container);if(i.hasClass("video-js")){r.nextslideatend=f.data("nextslideatend");if(!i.hasClass("HasListener")){i.addClass("HasListener");var o="videoid_"+Math.round(Math.random()*1e3+1);i.attr("id",o);videojs(o).ready(function(){F(this,o)})}else{o=i.attr("id")}i.find(".vjs-poster").css({display:"block"});if(f.data("autoplay")==true){var u=e("body").find("#"+r.container.attr("id")).find(".tp-bannertimer");setTimeout(function(){u.stop();r.videoplaying=true},200);videojs(o).ready(function(){var e=this;try{if(f.data("forcerewind")=="on")e.currentTime(0)}catch(t){}i.data("timerplay",setTimeout(function(){if(f.data("forcerewind")=="on")e.currentTime(0);if(i.closest(".tp-caption").data("volume")=="mute")e.volume(0);setTimeout(function(){e.play(0);i.find(".vjs-poster").css({display:"none"})},50)},10+f.data("start")))})}if(i.data("ww")==t)i.data("ww",i.width());if(i.data("hh")==t)i.data("hh",i.height());videojs(o).ready(function(){if(!f.hasClass("fullscreenvideo")){var e=videojs(o);try{e.width(i.data("ww")*r.bw);e.height(i.data("hh")*r.bh)}catch(t){}}});if(i.closest(".tp-caption").data("forcecover")==1){I(i,r.container);i.addClass("fullcoveredvideo")}}})}if(f.data("autoplay")==true){var h=e("body").find("#"+r.container.attr("id")).find(".tp-bannertimer");setTimeout(function(){h.stop();r.videoplaying=true},200);r.videoplaying=true;if(f.data("autoplayonlyfirsttime")==true||f.data("autoplayonlyfirsttime")=="true"){f.data("autoplay",false);f.data("autoplayonlyfirsttime",false)}}}var p=0;var d=0;if(f.find("img").length>0){var v=f.find("img");if(v.data("ww")==t)v.data("ww",v.width());if(v.data("hh")==t)v.data("hh",v.height());var m=v.data("ww");var g=v.data("hh");v.width(m*r.bw);v.height(g*r.bh);p=v.width();d=v.height()}else{if(f.find("iframe").length>0||f.find(".video-js").length>0){var v=f.find("iframe");v.css({display:"block"});if(f.data("ww")==t){f.data("ww",v.width())}if(f.data("hh")==t)f.data("hh",v.height());var m=f.data("ww");var g=f.data("hh");var y=f;if(y.data("fsize")==t)y.data("fsize",parseInt(y.css("font-size"),0)||0);if(y.data("pt")==t)y.data("pt",parseInt(y.css("paddingTop"),0)||0);if(y.data("pb")==t)y.data("pb",parseInt(y.css("paddingBottom"),0)||0);if(y.data("pl")==t)y.data("pl",parseInt(y.css("paddingLeft"),0)||0);if(y.data("pr")==t)y.data("pr",parseInt(y.css("paddingRight"),0)||0);if(y.data("mt")==t)y.data("mt",parseInt(y.css("marginTop"),0)||0);if(y.data("mb")==t)y.data("mb",parseInt(y.css("marginBottom"),0)||0);if(y.data("ml")==t)y.data("ml",parseInt(y.css("marginLeft"),0)||0);if(y.data("mr")==t)y.data("mr",parseInt(y.css("marginRight"),0)||0);if(y.data("bt")==t)y.data("bt",parseInt(y.css("borderTop"),0)||0);if(y.data("bb")==t)y.data("bb",parseInt(y.css("borderBottom"),0)||0);if(y.data("bl")==t)y.data("bl",parseInt(y.css("borderLeft"),0)||0);if(y.data("br")==t)y.data("br",parseInt(y.css("borderRight"),0)||0);if(y.data("lh")==t)y.data("lh",parseInt(y.css("lineHeight"),0)||0);var b=r.width;var w=r.height;if(b>r.startwidth)b=r.startwidth;if(w>r.startheight)w=r.startheight;if(!f.hasClass("fullscreenvideo"))f.css({"font-size":y.data("fsize")*r.bw+"px","padding-top":y.data("pt")*r.bh+"px","padding-bottom":y.data("pb")*r.bh+"px","padding-left":y.data("pl")*r.bw+"px","padding-right":y.data("pr")*r.bw+"px","margin-top":y.data("mt")*r.bh+"px","margin-bottom":y.data("mb")*r.bh+"px","margin-left":y.data("ml")*r.bw+"px","margin-right":y.data("mr")*r.bw+"px","border-top":y.data("bt")*r.bh+"px","border-bottom":y.data("bb")*r.bh+"px","border-left":y.data("bl")*r.bw+"px","border-right":y.data("br")*r.bw+"px","line-height":y.data("lh")*r.bh+"px",height:g*r.bh+"px","white-space":"nowrap"});else{s=0;o=0;f.data("x",0);f.data("y",0);var E=r.height;if(r.autoHeight=="on")E=r.container.height();f.css({width:r.width,height:E})}v.width(m*r.bw);v.height(g*r.bh);p=v.width();d=v.height()}else{f.find(".tp-resizeme, .tp-resizeme *").each(function(){z(e(this),r)});if(f.hasClass("tp-resizeme")){f.find("*").each(function(){z(e(this),r)})}z(f,r);d=f.outerHeight(true);p=f.outerWidth(true);var S=f.outerHeight();var x=f.css("backgroundColor");f.find(".frontcorner").css({borderWidth:S+"px",left:0-S+"px",borderRight:"0px solid transparent",borderTopColor:x});f.find(".frontcornertop").css({borderWidth:S+"px",left:0-S+"px",borderRight:"0px solid transparent",borderBottomColor:x});f.find(".backcorner").css({borderWidth:S+"px",right:0-S+"px",borderLeft:"0px solid transparent",borderBottomColor:x});f.find(".backcornertop").css({borderWidth:S+"px",right:0-S+"px",borderLeft:"0px solid transparent",borderTopColor:x})}}if(r.fullScreenAlignForce=="on"){u=1;a=1;s=0;o=0}if(f.data("voffset")==t)f.data("voffset",0);if(f.data("hoffset")==t)f.data("hoffset",0);var T=f.data("voffset")*u;var N=f.data("hoffset")*u;var C=r.startwidth*u;var k=r.startheight*u;if(r.fullScreenAlignForce=="on"){C=r.container.width();k=r.container.height()}if(f.data("x")=="center"||f.data("xcenter")=="center"){f.data("xcenter","center");f.data("x",(C/2-f.outerWidth(true)/2)/u+N)}if(f.data("x")=="left"||f.data("xleft")=="left"){f.data("xleft","left");f.data("x",0/u+N)}if(f.data("x")=="right"||f.data("xright")=="right"){f.data("xright","right");f.data("x",(C-f.outerWidth(true)+N)/u)}if(f.data("y")=="center"||f.data("ycenter")=="center"){f.data("ycenter","center");f.data("y",(k/2-f.outerHeight(true)/2)/a+T)}if(f.data("y")=="top"||f.data("ytop")=="top"){f.data("ytop","top");f.data("y",0/r.bh+T)}if(f.data("y")=="bottom"||f.data("ybottom")=="bottom"){f.data("ybottom","bottom");f.data("y",(k-f.outerHeight(true)+T)/u)}if(f.data("start")==t)f.data("start",1e3);var L=f.data("easing");if(L==t)L="Power1.easeOut";var A=f.data("start")/1e3;var O=f.data("speed")/1e3;var M=u*f.data("x")+s;var _=r.bh*f.data("y")+o;if(r.fullScreenAlignForce=="on")_=f.data("y")+o;TweenLite.killTweensOf(f,false);clearTimeout(f.data("reversetimer"));var D=0,P=M,B=_,q=2,U=1,W=0,V=1,$=1,J=1,K=0,Q=0,G=0,Y=0,Z=0,et=0,tt=0,nt="center,center",rt=300,it=0,st=false,ot=0;if(f.data("repeat")!=t)it=f.data("repeat");if(f.data("yoyo")!=t)st=f.data("yoyo");if(f.data("repeatdelay")!=t)ot=f.data("repeatdelay");if(f.hasClass("customin")){var ut=f.data("customin").split(";");e.each(ut,function(e,t){t=t.split(":");var n=t[0],r=t[1];if(n=="rotationX")Q=parseInt(r,0);if(n=="rotationY")G=parseInt(r,0);if(n=="rotationZ")Y=parseInt(r,0);if(n=="scaleX")$=parseFloat(r);if(n=="scaleY")J=parseFloat(r);if(n=="opacity")tt=parseFloat(r);if(n=="skewX")Z=parseInt(r,0);if(n=="skewY")et=parseInt(r,0);if(n=="x")P=M+parseInt(r,0);if(n=="y")B=_+parseInt(r,0);if(n=="z")q=parseInt(r,0);if(n=="transformOrigin")nt=r.toString();if(n=="transformPerspective")rt=parseInt(r,0)})}if(f.hasClass("randomrotate")){V=Math.random()*3+1;K=Math.round(Math.random()*200-100);P=M+Math.round(Math.random()*200-100);B=_+Math.round(Math.random()*200-100)}if(f.hasClass("lfr")||f.hasClass("skewfromright"))P=15+r.width;if(f.hasClass("lfl")||f.hasClass("skewfromleft"))P=-15-p;if(f.hasClass("sfl")|f.hasClass("skewfromleftshort"))P=M-50;if(f.hasClass("sfr")|f.hasClass("skewfromrightshort"))P=M+50;if(f.hasClass("lft"))B=-25-d;if(f.hasClass("lfb"))B=25+r.height;if(f.hasClass("sft"))B=_-50;if(f.hasClass("sfb"))B=_+50;if(f.hasClass("skewfromright")||f.hasClass("skewfromrightshort"))Z=-85;if(f.hasClass("skewfromleft")||f.hasClass("skewfromleftshort"))Z=85;if(R().toLowerCase()=="safari"){Q=0;G=0}P=Math.round(P);B=Math.round(B);M=Math.round(M);_=Math.round(_);if(f.hasClass("customin")){f.data("anim",TweenLite.fromTo(f,O,{scaleX:$,scaleY:J,rotationX:Q,rotationY:G,rotationZ:Y,x:0,y:0,left:P,top:B,z:q,opacity:tt,transformPerspective:rt,transformOrigin:nt,visibility:"hidden"},{left:M,top:_,scaleX:1,scaleY:1,rotationX:0,rotationY:0,rotationZ:0,skewX:0,skewY:0,z:0,x:0,y:0,visibility:"visible",opacity:1,delay:A,ease:L,overwrite:"all"}))}else{f.data("anim",TweenLite.fromTo(f,O,{scale:V,rotationX:0,rotationY:0,skewY:0,rotation:K,left:P+"px",top:B+"px",opacity:0,z:0,x:0,y:0,skewX:Z,transformPerspective:600,visibility:"visible"},{left:M+"px",top:_+"px",scale:1,skewX:0,rotation:0,z:0,visibility:"visible",opacity:1,delay:A,ease:L,overwrite:"all",yoyo:st,repeat:it,repeatDelay:ot}))}f.data("killall",setTimeout(function(){f.css({transform:"none","-moz-transform":"none","-webkit-transform":"none"})},O*1e3+A*1e3+20));f.data("timer",setTimeout(function(){if(f.hasClass("fullscreenvideo"))f.css({display:"block"})},f.data("start")));if(f.data("end")!=t)X(f,r,f.data("end")/1e3)}});var u=e("body").find("#"+r.container.attr("id")).find(".tp-bannertimer");u.data("opt",r)}function R(){var e=navigator.appName,t=navigator.userAgent,n;var r=t.match(/(opera|chrome|safari|firefox|msie)\/?\s*(\.?\d+(\.\d+)*)/i);if(r&&(n=t.match(/version\/([\.\d]+)/i))!=null)r[2]=n[1];r=r?[r[1],r[2]]:[e,navigator.appVersion,"-?"];return r[0]}function U(){var e=navigator.appName,t=navigator.userAgent,n;var r=t.match(/(opera|chrome|safari|firefox|msie)\/?\s*(\.?\d+(\.\d+)*)/i);if(r&&(n=t.match(/version\/([\.\d]+)/i))!=null)r[2]=n[1];r=r?[r[1],r[2]]:[e,navigator.appVersion,"-?"];return r[1]}function z(e,n){if(e.data("fsize")==t)e.data("fsize",parseInt(e.css("font-size"),0)||0);if(e.data("pt")==t)e.data("pt",parseInt(e.css("paddingTop"),0)||0);if(e.data("pb")==t)e.data("pb",parseInt(e.css("paddingBottom"),0)||0);if(e.data("pl")==t)e.data("pl",parseInt(e.css("paddingLeft"),0)||0);if(e.data("pr")==t)e.data("pr",parseInt(e.css("paddingRight"),0)||0);if(e.data("mt")==t)e.data("mt",parseInt(e.css("marginTop"),0)||0);if(e.data("mb")==t)e.data("mb",parseInt(e.css("marginBottom"),0)||0);if(e.data("ml")==t)e.data("ml",parseInt(e.css("marginLeft"),0)||0);if(e.data("mr")==t)e.data("mr",parseInt(e.css("marginRight"),0)||0);if(e.data("bt")==t)e.data("bt",parseInt(e.css("borderTopWidth"),0)||0);if(e.data("bb")==t)e.data("bb",parseInt(e.css("borderBottomWidth"),0)||0);if(e.data("bl")==t)e.data("bl",parseInt(e.css("borderLeftWidth"),0)||0);if(e.data("br")==t)e.data("br",parseInt(e.css("borderRightWidth"),0)||0);if(e.data("lh")==t)e.data("lh",parseInt(e.css("lineHeight"),0)||0);if(e.data("minwidth")==t)e.data("minwidth",parseInt(e.css("minWidth"),0)||0);if(e.data("minheight")==t)e.data("minheight",parseInt(e.css("minHeight"),0)||0);if(e.data("maxwidth")==t)e.data("maxwidth",parseInt(e.css("maxWidth"),0)||"none");if(e.data("maxheight")==t)e.data("maxheight",parseInt(e.css("maxHeight"),0)||"none");if(e.data("wan")==t)e.data("wan",e.css("-webkit-transition"));if(e.data("moan")==t)e.data("moan",e.css("-moz-animation-transition"));if(e.data("man")==t)e.data("man",e.css("-ms-animation-transition"));if(e.data("ani")==t)e.data("ani",e.css("transition"));e.css("-webkit-transition","none");e.css("-moz-transition","none");e.css("-ms-transition","none");e.css("transition","none");TweenLite.set(e,{fontSize:Math.round(e.data("fsize")*n.bw)+"px",paddingTop:Math.round(e.data("pt")*n.bh)+"px",paddingBottom:Math.round(e.data("pb")*n.bh)+"px",paddingLeft:Math.round(e.data("pl")*n.bw)+"px",paddingRight:Math.round(e.data("pr")*n.bw)+"px",marginTop:e.data("mt")*n.bh+"px",marginBottom:e.data("mb")*n.bh+"px",marginLeft:e.data("ml")*n.bw+"px",marginRight:e.data("mr")*n.bw+"px",borderTopWidth:Math.round(e.data("bt")*n.bh)+"px",borderBottomWidth:Math.round(e.data("bb")*n.bh)+"px",borderLeftWidth:Math.round(e.data("bl")*n.bw)+"px",borderRightWidth:Math.round(e.data("br")*n.bw)+"px",lineHeight:Math.round(e.data("lh")*n.bh)+"px",whiteSpace:"nowrap",minWidth:e.data("minwidth")*n.bw+"px",minHeight:e.data("minheight")*n.bh+"px"});setTimeout(function(){e.css("-webkit-transition",e.data("wan"));e.css("-moz-transition",e.data("moan"));e.css("-ms-transition",e.data("man"));e.css("transition",e.data("ani"))},30);if(e.data("maxheight")!="none")e.css({maxHeight:e.data("maxheight")*n.bh+"px"});if(e.data("maxwidth")!="none")e.css({maxWidth:e.data("maxwidth")*n.bw+"px"})}function W(t,n){t.find(".tp-caption").each(function(t){var r=e(this);if(r.find("iframe").length>0){try{var i=r.find("iframe");var s=i.attr("id");var o=$f(s);o.api("pause");clearTimeout(r.data("timerplay"))}catch(u){}try{var a=r.data("player");a.stopVideo();clearTimeout(r.data("timerplay"))}catch(u){}}if(r.find("video").length>0){try{r.find("video").each(function(t){var n=e(this).parent();var r=n.attr("id");clearTimeout(n.data("timerplay"));videojs(r).ready(function(){var e=this;e.pause()})})}catch(u){}}try{X(r,n,0)}catch(u){}})}function X(n,r,i){var s=n.data("endspeed");if(s==t)s=n.data("speed");s=s/1e3;var o=n.data("endeasing");if(o==t)o=Power1.easeInOut;if(n.hasClass("ltr")||n.hasClass("ltl")||n.hasClass("str")||n.hasClass("stl")||n.hasClass("ltt")||n.hasClass("ltb")||n.hasClass("stt")||n.hasClass("stb")||n.hasClass("skewtoright")||n.hasClass("skewtorightshort")||n.hasClass("skewtoleft")||n.hasClass("skewtoleftshort")){S=0;if(n.hasClass("skewtoright")||n.hasClass("skewtorightshort"))S=35;if(n.hasClass("skewtoleft")||n.hasClass("skewtoleftshort"))S=-35;var u=0;var a=0;if(n.hasClass("ltr")||n.hasClass("skewtoright"))u=r.width+60;else if(n.hasClass("ltl")||n.hasClass("skewtoleft"))u=0-(r.width+60);else if(n.hasClass("ltt"))a=0-(r.height+60);else if(n.hasClass("ltb"))a=r.height+60;else if(n.hasClass("str")||n.hasClass("skewtorightshort")){u=50;oo=0}else if(n.hasClass("stl")||n.hasClass("skewtoleftshort")){u=-50;oo=0}else if(n.hasClass("stt")){a=-50;oo=0}else if(n.hasClass("stb")){a=50;oo=0}if(n.hasClass("skewtorightshort"))u=u+220;if(n.hasClass("skewtoleftshort"))u=u-220;n.data("outanim",TweenLite.to(n,s,{x:u,y:a,scale:1,rotation:0,skewX:S,opacity:0,delay:i,z:0,overwrite:"auto",ease:o,onStart:function(){if(n.data("anim")!=t)n.data("anim").pause()}}))}else if(n.hasClass("randomrotateout")){n.data("outanim",TweenLite.to(n,s,{left:Math.random()*r.width,top:Math.random()*r.height,scale:Math.random()*2+.3,rotation:Math.random()*360-180,z:0,opacity:0,delay:i,ease:o,onStart:function(){if(n.data("anim")!=t)n.data("anim").pause()}}))}else if(n.hasClass("fadeout")){n.data("outanim",TweenLite.to(n,s,{opacity:0,delay:i,ease:o,onStart:function(){if(n.data("anim")!=t)n.data("anim").pause()}}))}else if(n.hasClass("customout")){var f=0,l=0,c=0,h=2,p=1,d=0,v=1,m=1,g=1,y=0,b=0,w=0,E=0,S=0,x=0,T=0,N="center,center",C=300;var k=n.data("customout").split(";");e.each(k,function(e,t){t=t.split(":");var n=t[0],r=t[1];if(n=="rotationX")b=parseInt(r,0);if(n=="rotationY")w=parseInt(r,0);if(n=="rotationZ")E=parseInt(r,0);if(n=="scaleX")m=parseFloat(r);if(n=="scaleY")g=parseFloat(r);if(n=="opacity")T=parseFloat(r);if(n=="skewX")S=parseInt(r,0);if(n=="skewY")x=parseInt(r,0);if(n=="x")l=parseInt(r,0);if(n=="y")c=parseInt(r,0);if(n=="z")h=parseInt(r);if(n=="transformOrigin")N=r;if(n=="transformPerspective")C=parseInt(r,0)});n.data("outanim",TweenLite.to(n,s,{scaleX:m,scaleY:g,rotationX:b,rotationY:w,rotationZ:E,x:l,y:c,z:h,opacity:T,delay:i,ease:o,overwrite:"auto",onStart:function(){if(n.data("anim")!=t)n.data("anim").pause();TweenLite.set(n,{transformPerspective:C,transformOrigin:N,overwrite:"auto"})}}))}else{clearTimeout(n.data("reversetimer"));n.data("reversetimer",setTimeout(function(){n.data("anim").reverse()},i*1e3))}}function V(t,n){t.children().each(function(){try{e(this).die("click")}catch(t){}try{e(this).die("mouseenter")}catch(t){}try{e(this).die("mouseleave")}catch(t){}try{e(this).unbind("hover")}catch(t){}});try{t.die("click","mouseenter","mouseleave")}catch(r){}clearInterval(n.cdint);t=null}function $(n,r){r.cd=0;r.loop=0;if(r.stopAfterLoops!=t&&r.stopAfterLoops>-1)r.looptogo=r.stopAfterLoops;else r.looptogo=9999999;if(r.stopAtSlide!=t&&r.stopAtSlide>-1)r.lastslidetoshow=r.stopAtSlide;else r.lastslidetoshow=999;r.stopLoop="off";if(r.looptogo==0)r.stopLoop="on";if(r.slideamount>1&&!(r.stopAfterLoops==0&&r.stopAtSlide==1)){var i=n.find(".tp-bannertimer");if(i.length>0){i.css({width:"0%"});if(r.videoplaying!=true)i.animate({width:"100%"},{duration:r.delay-100,queue:false,easing:"linear"})}i.data("opt",r);r.cdint=setInterval(function(){if(e("body").find(n).length==0)V(n,r);if(n.data("conthover-changed")==1){r.conthover=n.data("conthover");n.data("conthover-changed",0)}if(r.conthover!=1&&r.videoplaying!=true&&r.width>r.hideSliderAtLimit){r.cd=r.cd+100}if(r.fullWidth!="on")if(r.width>r.hideSliderAtLimit)n.parent().removeClass("tp-hide-revslider");else n.parent().addClass("tp-hide-revslider");if(r.videostartednow==1){n.trigger("revolution.slide.onvideoplay");r.videostartednow=0}if(r.videostoppednow==1){n.trigger("revolution.slide.onvideostop");r.videostoppednow=0}if(r.cd>=r.delay){r.cd=0;r.act=r.next;r.next=r.next+1;if(r.next>n.find(">ul >li").length-1){r.next=0;r.looptogo=r.looptogo-1;if(r.looptogo<=0){r.stopLoop="on"}}if(r.stopLoop=="on"&&r.next==r.lastslidetoshow-1){clearInterval(r.cdint);n.find(".tp-bannertimer").css({visibility:"hidden"});n.trigger("revolution.slide.onstop")}N(n,r);if(i.length>0){i.css({width:"0%"});if(r.videoplaying!=true)i.animate({width:"100%"},{duration:r.delay-100,queue:false,easing:"linear"})}}},100);n.hover(function(){if(r.onHoverStop=="on"){r.conthover=1;i.stop();n.trigger("revolution.slide.onpause");var s=n.find(">ul >li:eq("+r.next+") .slotholder");s.find(".defaultimg").each(function(){var n=e(this);if(n.data("kenburn")!=t)n.data("kenburn").pause()})}},function(){if(n.data("conthover")!=1){n.trigger("revolution.slide.onresume");r.conthover=0;if(r.onHoverStop=="on"&&r.videoplaying!=true){i.animate({width:"100%"},{duration:r.delay-r.cd-100,queue:false,easing:"linear"})}var s=n.find(">ul >li:eq("+r.next+") .slotholder");s.find(".defaultimg").each(function(){var n=e(this);if(n.data("kenburn")!=t)n.data("kenburn").play()})}})}}e.fn.extend({revolution:function(i){e.fn.revolution.defaults={delay:9e3,startheight:500,startwidth:960,fullScreenAlignForce:"off",autoHeight:"off",hideThumbs:200,thumbWidth:100,thumbHeight:50,thumbAmount:3,navigationType:"bullet",navigationArrows:"solo",hideThumbsOnMobile:"off",hideBulletsOnMobile:"off",hideArrowsOnMobile:"off",hideThumbsUnderResoluition:0,navigationStyle:"round",navigationHAlign:"center",navigationVAlign:"bottom",navigationHOffset:0,navigationVOffset:20,soloArrowLeftHalign:"left",soloArrowLeftValign:"center",soloArrowLeftHOffset:20,soloArrowLeftVOffset:0,soloArrowRightHalign:"right",soloArrowRightValign:"center",soloArrowRightHOffset:20,soloArrowRightVOffset:0,keyboardNavigation:"on",touchenabled:"on",onHoverStop:"on",stopAtSlide:-1,stopAfterLoops:-1,hideCaptionAtLimit:0,hideAllCaptionAtLimit:0,hideSliderAtLimit:0,shadow:0,fullWidth:"off",fullScreen:"off",minFullScreenHeight:0,fullScreenOffsetContainer:"",dottedOverlay:"none",forceFullWidth:"off"};i=e.extend({},e.fn.revolution.defaults,i);return this.each(function(){var o=i;if(o.fullWidth!="on"&&o.fullScreen!="on")o.autoHeight="off";if(o.fullScreen=="on")o.autoHeight="on";if(o.fullWidth!="on"&&o.fullScreen!="on")forceFulWidth="off";var u=e(this);if(o.fullWidth=="on"&&o.autoHeight=="off")u.css({maxHeight:o.startheight+"px"});if(s()&&o.hideThumbsOnMobile=="on"&&o.navigationType=="thumb")o.navigationType="none";if(s()&&o.hideBulletsOnMobile=="on"&&o.navigationType=="bullet")o.navigationType="none";if(s()&&o.hideBulletsOnMobile=="on"&&o.navigationType=="both")o.navigationType="none";if(s()&&o.hideArrowsOnMobile=="on")o.navigationArrows="none";if(o.forceFullWidth=="on"){var a=u.parent().offset().left;var f=u.parent().css("marginBottom");var c=u.parent().css("marginTop");if(f==t)f=0;if(c==t)c=0;u.parent().wrap('');u.closest(".forcefullwidth_wrapper_tp_banner").append('');u.css({backgroundColor:u.parent().css("backgroundColor"),backgroundImage:u.parent().css("backgroundImage")});u.parent().css({left:0-a+"px",position:"absolute",width:e(window).width()});o.width=e(window).width()}try{if(o.hideThumbsUnderResolution>e(window).width()&&o.hideThumbsUnderResolution!=0){u.parent().find(".tp-bullets.tp-thumbs").css({display:"none"})}else{u.parent().find(".tp-bullets.tp-thumbs").css({display:"block"})}}catch(h){}if(!u.hasClass("revslider-initialised")){u.addClass("revslider-initialised");if(u.attr("id")==t)u.attr("id","revslider-"+Math.round(Math.random()*1e3+5));o.firefox13=false;o.ie=!e.support.opacity;o.ie9=document.documentMode==9;var y=e.fn.jquery.split("."),b=parseFloat(y[0]),E=parseFloat(y[1]),S=parseFloat(y[2]||"0");if(b==1&&E<7){u.html(' The Current Version of jQuery:'+y+"")}if(b>1)o.ie=false;if(!e.support.transition)e.fn.transition=e.fn.animate;u.find(".caption").each(function(){e(this).addClass("tp-caption")});if(s()){u.find(".tp-caption").each(function(){if(e(this).data("autoplay")==true)e(this).data("autoplay",false)})}var x=0;var T=0;var C=0;u.find(".tp-caption iframe").each(function(t){try{if(e(this).attr("src").indexOf("you")>0&&x==0){x=1;var n=document.createElement("script");n.src="http://www.youtube.com/player_api";var r=document.getElementsByTagName("script")[0];var i=true;e("head").find("*").each(function(){if(e(this).attr("src")=="http://www.youtube.com/player_api")i=false});if(i)r.parentNode.insertBefore(n,r)}}catch(s){}});u.find(".tp-caption iframe").each(function(t){try{if(e(this).attr("src").indexOf("vim")>0&&T==0){T=1;var n=document.createElement("script");n.src="http://a.vimeocdn.com/js/froogaloop2.min.js";var r=document.getElementsByTagName("script")[0];var i=true;e("head").find("*").each(function(){if(e(this).attr("src")=="http://a.vimeocdn.com/js/froogaloop2.min.js")i=false});if(i)r.parentNode.insertBefore(n,r)}}catch(s){}});u.find(".tp-caption video").each(function(t){try{if(e(this).hasClass("video-js")&&C==0){C=1;var n=document.createElement("script");n.src=o.videoJsPath+"video.js";var r=document.getElementsByTagName("script")[0];var i=true;e("head").find("*").each(function(){if(e(this).attr("src")==o.videoJsPath+"video.js")i=false});if(i){r.parentNode.insertBefore(n,r);e("head").append('');e("head").append('')}}}catch(s){}});if(o.shuffle=="on"){for(var k=0;k
Please update your jQuery Version to min. 1.7 in Case you wish to use the Revolution Slider Pluginul:first-child >li").length;k++){var L=Math.round(Math.random()*u.find(">ul:first-child >li").length);u.find(">ul:first-child >li:eq("+L+")").prependTo(u.find(">ul:first-child"))}}o.slots=4;o.act=-1;o.next=0;if(o.startWithSlide!=t)o.next=o.startWithSlide;var A=n("#")[0];if(A.length<9){if(A.split("slide").length>1){var O=parseInt(A.split("slide")[1],0);if(O<1)O=1;if(O>u.find(">ul:first >li").length)O=u.find(">ul:first >li").length;o.next=O-1}}o.origcd=o.delay;o.firststart=1;if(o.navigationHOffset==t)o.navOffsetHorizontal=0;if(o.navigationVOffset==t)o.navOffsetVertical=0;u.append('');if(u.find(".tp-bannertimer").length==0)u.append('');var M=u.find(".tp-bannertimer");if(M.length>0){M.css({width:"0%"})}u.addClass("tp-simpleresponsive");o.container=u;o.slideamount=u.find(">ul:first >li").length;if(u.height()==0)u.height(o.startheight);if(o.startwidth==t||o.startwidth==0)o.startwidth=u.width();if(o.startheight==t||o.startheight==0)o.startheight=u.height();o.width=u.width();o.height=u.height();o.bw=o.startwidth/u.width();o.bh=o.startheight/u.height();if(o.width!=o.startwidth){o.height=Math.round(o.startheight*(o.width/o.startwidth));u.height(o.height)}if(o.shadow!=0){u.parent().append('');var a=0;if(o.forceFullWidth=="on")a=0-o.container.parent().offset().left;u.parent().find(".tp-bannershadow").css({width:o.width,left:a})}u.find("ul").css({display:"none"});var _=u;if(o.lazyLoad=="on"){var D=u.find("ul >li >img").first();if(D.data("lazyload")!=t)D.attr("src",D.data("lazyload"));D.data("lazydone",1);_=D.parent()}_.waitForImages(function(){u.find("ul").css({display:"block"});w(u,o);if(o.slideamount>1)p(u,o);if(o.slideamount>1)l(u,o);if(o.slideamount>1)d(u,o);if(o.keyboardNavigation=="on")v(u,o);m(u,o);if(o.hideThumbs>0)g(u,o);u.waitForImages(function(){u.find(".tp-loader").fadeOut(600);setTimeout(function(){N(u,o);if(o.slideamount>1)$(u,o);u.trigger("revolution.slide.onloaded")},600)})});e(window).resize(function(){if(e("body").find(u)!=0)if(o.forceFullWidth=="on"){var t=o.container.closest(".forcefullwidth_wrapper_tp_banner").offset().left;o.container.parent().css({left:0-t+"px",width:e(window).width()})}if(u.outerWidth(true)!=o.width){r(u,o)}});try{if(o.hideThumbsUnderResoluition!=0&&o.navigationType=="thumb"){if(o.hideThumbsUnderResoluition>e(window).width())e(".tp-bullets").css({display:"none"});else e(".tp-bullets").css({display:"block"})}}catch(h){}u.find(".tp-scrollbelowslider").on("click",function(){var t=0;try{t=e("body").find(o.fullScreenOffsetContainer).height()}catch(n){}try{t=t-e(this).data("scrolloffset")}catch(n){}e("body,html").animate({scrollTop:u.offset().top+u.find(">ul >li").height()-t+"px"},{duration:400})})}})},revscroll:function(t){return this.each(function(){var n=e(this);e("body,html").animate({scrollTop:n.offset().top+n.find(">ul >li").height()-t+"px"},{duration:400})})},revredraw:function(t){return this.each(function(){var t=e(this);var n=t.parent().find(".tp-bannertimer");var i=n.data("opt");r(t,i)})},revpause:function(t){return this.each(function(){var t=e(this);t.data("conthover",1);t.data("conthover-changed",1);t.trigger("revolution.slide.onpause");var n=t.parent().find(".tp-bannertimer");n.stop()})},revresume:function(t){return this.each(function(){var t=e(this);t.data("conthover",0);t.data("conthover-changed",1);t.trigger("revolution.slide.onresume");var n=t.parent().find(".tp-bannertimer");var r=n.data("opt");n.animate({width:"100%"},{duration:r.delay-r.cd-100,queue:false,easing:"linear"})})},revnext:function(t){return this.each(function(){var t=e(this);t.parent().find(".tp-rightarrow").click()})},revprev:function(t){return this.each(function(){var t=e(this);t.parent().find(".tp-leftarrow").click()})},revmaxslide:function(t){return e(this).find(">ul:first-child >li").length},revcurrentslide:function(t){var n=e(this);var r=n.parent().find(".tp-bannertimer");var i=r.data("opt");return i.act},revlastslide:function(t){var n=e(this);var r=n.parent().find(".tp-bannertimer");var i=r.data("opt");return i.lastslide},revshowslide:function(t){return this.each(function(){var n=e(this);n.data("showus",t);n.parent().find(".tp-rightarrow").click()})}});})(jQuery) \ No newline at end of file diff --git a/ClientApp/app/jquery.plugins/jquery.themepunch.revolution.4.3.6.js b/ClientApp/app/jquery.plugins/jquery.themepunch.revolution.4.3.6.js new file mode 100644 index 00000000..97c0cab8 --- /dev/null +++ b/ClientApp/app/jquery.plugins/jquery.themepunch.revolution.4.3.6.js @@ -0,0 +1,5544 @@ + +/************************************************************************** + * jquery.themepunch.revolution.js - jQuery Plugin for Revolution Slider + * @version: 4.3.6 (16.04.2013) + * @requires jQuery v1.7 or later (tested on 1.9) + * @author ThemePunch +**************************************************************************/ +(function(jQuery,undefined){ + + + //////////////////////////////////////// + // THE REVOLUTION PLUGIN STARTS HERE // + /////////////////////////////////////// + + jQuery.fn.extend({ + + // OUR PLUGIN HERE :) + revolution: function(options) { + + + + //////////////////////////////// + // SET DEFAULT VALUES OF ITEM // + //////////////////////////////// + jQuery.fn.revolution.defaults = { + delay:9000, + startheight:500, + startwidth:960, + fullScreenAlignForce:"off", + autoHeight:"off", + hideTimerBar:"off", + hideThumbs:200, + hideNavDelayOnMobile:1500, + + thumbWidth:100, // Thumb With and Height and Amount (only if navigation Tyope set to thumb !) + thumbHeight:50, + thumbAmount:3, + + navigationType:"bullet", // bullet, thumb, none + navigationArrows:"solo", // nextto, solo, none + + hideThumbsOnMobile:"off", + hideBulletsOnMobile:"off", + hideArrowsOnMobile:"off", + hideThumbsUnderResoluition:0, + + navigationStyle:"round", // round,square,navbar,round-old,square-old,navbar-old, or any from the list in the docu (choose between 50+ different item), + + navigationHAlign:"center", // Vertical Align top,center,bottom + navigationVAlign:"bottom", // Horizontal Align left,center,right + navigationHOffset:0, + navigationVOffset:20, + + soloArrowLeftHalign:"left", + soloArrowLeftValign:"center", + soloArrowLeftHOffset:20, + soloArrowLeftVOffset:0, + + soloArrowRightHalign:"right", + soloArrowRightValign:"center", + soloArrowRightHOffset:20, + soloArrowRightVOffset:0, + + keyboardNavigation:"on", + + touchenabled:"on", // Enable Swipe Function : on/off + onHoverStop:"on", // Stop Banner Timet at Hover on Slide on/off + + + stopAtSlide:-1, // Stop Timer if Slide "x" has been Reached. If stopAfterLoops set to 0, then it stops already in the first Loop at slide X which defined. -1 means do not stop at any slide. stopAfterLoops has no sinn in this case. + stopAfterLoops:-1, // Stop Timer if All slides has been played "x" times. IT will stop at THe slide which is defined via stopAtSlide:x, if set to -1 slide never stop automatic + + hideCaptionAtLimit:0, // It Defines if a caption should be shown under a Screen Resolution ( Basod on The Width of Browser) + hideAllCaptionAtLimit:0, // Hide all The Captions if Width of Browser is less then this value + hideSliderAtLimit:0, // Hide the whole slider, and stop also functions if Width of Browser is less than this value + + shadow:0, //0 = no Shadow, 1,2,3 = 3 Different Art of Shadows (No Shadow in Fullwidth Version !) + fullWidth:"off", // Turns On or Off the Fullwidth Image Centering in FullWidth Modus + fullScreen:"off", + minFullScreenHeight:0, // The Minimum FullScreen Height + fullScreenOffsetContainer:"", + dottedOverlay:"none", //twoxtwo, threexthree, twoxtwowhite, threexthreewhite + + forceFullWidth:"off", // Force The FullWidth + + spinner:"spinner0", + + swipe_velocity : 0.4, // Touch Sensibility between 0 - 1. Less the number is, higher the sensibility + swipe_max_touches : 1, // Max Finger (touch) used for swipe + swipe_min_touches : 1, // Min Finger (touch) used for swipe + drag_block_vertical:false, // Prevent Vertical Scroll during Swipe + isJoomla:false, + parallax:"off", + parallaxLevels: [10,15,20,25,30,35,40,45,50,55,60,65,70,75,80,85], + parallaxBgFreeze: "off" + + + }; + + options = jQuery.extend({}, jQuery.fn.revolution.defaults, options); + + + + + + return this.each(function() { + + var opt=options; + + opt.desktop = !navigator.userAgent.match(/(iPhone|iPod|iPad|Android|BlackBerry|BB10|mobi|tablet|opera mini|nexus 7)/i); + + if (opt.fullWidth!="on" && opt.fullScreen!="on") opt.autoHeight = "off"; + if (opt.fullScreen=="on") opt.autoHeight = "on"; + if (opt.fullWidth!="on" && opt.fullScreen!="on") forceFulWidth="off"; + + var container=jQuery(this); + + if (opt.fullWidth=="on" && opt.autoHeight=="off") + container.css({maxHeight:opt.startheight+"px"}); + + if (is_mobile() && opt.hideThumbsOnMobile=="on" && opt.navigationType=="thumb") + opt.navigationType = "none" + + if (is_mobile() && opt.hideBulletsOnMobile=="on" && opt.navigationType=="bullet") + opt.navigationType = "none" + + if (is_mobile() && opt.hideBulletsOnMobile=="on" && opt.navigationType=="both") + opt.navigationType = "none" + + if (is_mobile() && opt.hideArrowsOnMobile=="on") + opt.navigationArrows = "none" + + if (opt.forceFullWidth=="on") { + + var loff = container.parent().offset().left; + var mb = container.parent().css('marginBottom'); + var mt = container.parent().css('marginTop'); + if (mb==undefined) mb=0; + if (mt==undefined) mt=0; + + container.parent().wrap(''); + container.closest('.forcefullwidth_wrapper_tp_banner').append(''); + container.css({'backgroundColor':container.parent().css('backgroundColor'),'backgroundImage':container.parent().css('backgroundImage')}); + //container.parent().css({'position':'absolute','width':jQuery(window).width()}); + container.parent().css({'left':(0-loff)+"px",position:'absolute','width':jQuery(window).width()}); + opt.width=jQuery(window).width(); + } + + // HIDE THUMBS UNDER RESOLUTION + try{ + if (opt.hideThumbsUnderResolution>jQuery(window).width() && opt.hideThumbsUnderResolution!=0) { + container.parent().find('.tp-bullets.tp-thumbs').css({display:"none"}); + } else { + container.parent().find('.tp-bullets.tp-thumbs').css({display:"block"}); + } + } catch(e) {} + + if (!container.hasClass("revslider-initialised")) { + + container.addClass("revslider-initialised"); + if (container.attr('id')==undefined) container.attr('id',"revslider-"+Math.round(Math.random()*1000+5)); + + // CHECK IF FIREFOX 13 IS ON WAY.. IT HAS A STRANGE BUG, CSS ANIMATE SHOULD NOT BE USED + + + + opt.firefox13 = false; + opt.ie = !jQuery.support.opacity; + opt.ie9 = (document.documentMode == 9); + + opt.origcd=opt.delay; + + // CHECK THE jQUERY VERSION + var version = jQuery.fn.jquery.split('.'), + versionTop = parseFloat(version[0]), + versionMinor = parseFloat(version[1]), + versionIncrement = parseFloat(version[2] || '0'); + + if (versionTop==1 && versionMinor < 7) { + container.html(' The Current Version of jQuery:'+version+''); + } + + if (versionTop>1) opt.ie=false; + + + // Delegate .transition() calls to .animate() + // if the browser can't do CSS transitions. + if (!jQuery.support.transition) + jQuery.fn.transition = jQuery.fn.animate; + + // CATCH THE CONTAINER + + + // LOAD THE YOUTUBE API IF NECESSARY + + container.find('.caption').each(function() { jQuery(this).addClass('tp-caption')}); + + if (is_mobile()) { + container.find('.tp-caption').each(function() { + if (jQuery(this).data('autoplay')==true) + jQuery(this).data('autoplay',false); + // && jQuery(this).data('forcecover')!=1) + }) + } + + + var addedyt=0; + var addedvim=0; + var addedvid=0; + var httpprefix = "http"; + + if (location.protocol === 'https:') { + httpprefix = "https"; + } + container.find('.tp-caption iframe').each(function(i) { + try { + + if (jQuery(this).attr('src').indexOf('you')>0 && addedyt==0) { + addedyt=1; + var s = document.createElement("script"); + var httpprefix2 = "https"; + s.src = httpprefix2+"://www.youtube.com/iframe_api"; /* Load Player API*/ + + var before = document.getElementsByTagName("script")[0]; + var loadit = true; + jQuery('head').find('*').each(function(){ + if (jQuery(this).attr('src') == httpprefix2+"://www.youtube.com/iframe_api") + loadit = false; + }); + if (loadit) { + before.parentNode.insertBefore(s, before); + + + } + } + } catch(e) {} + }); + + + + // LOAD THE VIMEO API + container.find('.tp-caption iframe').each(function(i) { + try{ + if (jQuery(this).attr('src').indexOf('vim')>0 && addedvim==0) { + addedvim=1; + var f = document.createElement("script"); + f.src = httpprefix+"://a.vimeocdn.com/js/froogaloop2.min.js"; /* Load Player API*/ + var before = document.getElementsByTagName("script")[0]; + + var loadit = true; + jQuery('head').find('*').each(function(){ + if (jQuery(this).attr('src') == httpprefix+"://a.vimeocdn.com/js/froogaloop2.min.js") + loadit = false; + }); + if (loadit) + before.parentNode.insertBefore(f, before); + } + } catch(e) {} + }); + + + + + + // LOAD THE VIDEO.JS API IF NEEDED + container.find('.tp-caption video').each(function(i) { + jQuery(this).removeClass("video-js").removeClass("vjs-default-skin"); + jQuery(this).attr("preload",""); + jQuery(this).css({display:"none"}); + }); + + // SHUFFLE MODE + if (opt.shuffle=="on") { + for (var u=0;u
Please update your jQuery Version to min. 1.7 in Case you wish to use the Revolution Slider Pluginul:first-child >li').length;u++) { + var it = Math.round(Math.random()*container.find('>ul:first-child >li').length); + container.find('>ul:first-child >li:eq('+it+')').prependTo(container.find('>ul:first-child')); + } + } + + + // CREATE SOME DEFAULT OPTIONS FOR LATER + opt.slots=4; + opt.act=-1; + opt.next=0; + + // IF START SLIDE IS SET + if (opt.startWithSlide !=undefined) opt.next=opt.startWithSlide; + + // IF DEEPLINK HAS BEEN SET + var deeplink = getUrlVars("#")[0]; + if (deeplink.length<9) { + if (deeplink.split('slide').length>1) { + var dslide=parseInt(deeplink.split('slide')[1],0); + if (dslide<1) dslide=1; + if (dslide>container.find('>ul:first >li').length) dslide=container.find('>ul:first >li').length; + opt.next=dslide-1; + } + } + + + opt.firststart=1; + + // BASIC OFFSET POSITIONS OF THE BULLETS + if (opt.navigationHOffset==undefined) opt.navOffsetHorizontal=0; + if (opt.navigationVOffset==undefined) opt.navOffsetVertical=0; + + + container.append(' '+ + ''+ + ''+ + ''+ + ''+ + ''+ + ''); + + // RESET THE TIMER + if (container.find('.tp-bannertimer').length==0) container.append(''); + var bt=container.find('.tp-bannertimer'); + if (bt.length>0) { + bt.css({'width':'0%'}); + }; + + + // WE NEED TO ADD A BASIC CLASS FOR SETTINGS.CSS + container.addClass("tp-simpleresponsive"); + opt.container=container; + + //if (container.height()==0) container.height(opt.startheight); + + // AMOUNT OF THE SLIDES + opt.slideamount = container.find('>ul:first >li').length; + + + // A BASIC GRID MUST BE DEFINED. IF NO DEFAULT GRID EXIST THAN WE NEED A DEFAULT VALUE, ACTUAL SIZE OF CONAINER + if (container.height()==0) container.height(opt.startheight); + if (opt.startwidth==undefined || opt.startwidth==0) opt.startwidth=container.width(); + if (opt.startheight==undefined || opt.startheight==0) opt.startheight=container.height(); + + // OPT WIDTH && HEIGHT SHOULD BE SET + opt.width=container.width(); + opt.height=container.height(); + + + // DEFAULT DEPENDECIES + opt.bw= opt.startwidth / container.width(); + opt.bh = opt.startheight / container.height(); + + // IF THE ITEM ALREADY IN A RESIZED FORM + if (opt.width!=opt.startwidth) { + + opt.height = Math.round(opt.startheight * (opt.width/opt.startwidth)); + + container.height(opt.height); + + } + + // LETS SEE IF THERE IS ANY SHADOW + if (opt.shadow!=0) { + container.parent().append(''); + var loff=0; + if (opt.forceFullWidth=="on") + loff = 0-opt.container.parent().offset().left; + container.parent().find('.tp-bannershadow').css({'width':opt.width,'left':loff}); + } + + + container.find('ul').css({'display':'none'}); + + var fliparent = container; + + + // PREPARE THE SLIDES + container.find('ul').css({'display':'block'}); + prepareSlides(container,opt); + if (opt.parallax!="off") checkForParallax(container,opt); + + // CREATE BULLETS + if (opt.slideamount >1) createBullets(container,opt); + if (opt.slideamount >1) createThumbs(container,opt); + if (opt.slideamount >1) createArrows(container,opt); + if (opt.keyboardNavigation=="on") createKeyboard(container,opt); + + swipeAction(container,opt); + + if (opt.hideThumbs>0) hideThumbs(container,opt); + + swapSlide(container,opt); + // START COUNTDOWN + if (opt.slideamount >1) countDown(container,opt); + setTimeout(function() { + container.trigger('revolution.slide.onloaded'); + },500); + + /****************************** + - FULLSCREEN CHANGE - + ********************************/ + // FULLSCREEN MODE TESTING + jQuery("body").data('rs-fullScreenMode',false); + jQuery(window).on ('mozfullscreenchange webkitfullscreenchange fullscreenchange',function(){ + jQuery("body").data('rs-fullScreenMode',!jQuery("body").data('rs-fullScreenMode')); + if (jQuery("body").data('rs-fullScreenMode')) { + setTimeout(function() { + jQuery(window).trigger("resize"); + + },200); + } + }) + + + // IF RESIZED, NEED TO STOP ACTUAL TRANSITION AND RESIZE ACTUAL IMAGES + jQuery(window).resize(function() { + if (jQuery('body').find(container)!=0) + if (opt.forceFullWidth=="on" ) { + + var loff = opt.container.closest('.forcefullwidth_wrapper_tp_banner').offset().left; + //opt.container.parent().css({'width':jQuery(window).width()}); + opt.container.parent().css({'left':(0-loff)+"px",'width':jQuery(window).width()}); + } + + if (container.outerWidth(true)!=opt.width || container.is(":hidden")) { + containerResized(container,opt); + } + + + + }); + + // HIDE THUMBS UNDER SIZE... + try{ + if (opt.hideThumbsUnderResoluition!=0 && opt.navigationType=="thumb") { + if (opt.hideThumbsUnderResoluition>jQuery(window).width()) + jQuery('.tp-bullets').css({display:"none"}); + else + jQuery('.tp-bullets').css({display:"block"}); + } + } catch(e) {} + + + + // CHECK IF THE CAPTION IS A "SCROLL ME TO POSITION" CAPTION IS + //if (opt.fullScreen=="on") { + container.find('.tp-scrollbelowslider').on('click',function() { + var off=0; + try{ + off = jQuery('body').find(opt.fullScreenOffsetContainer).height(); + } catch(e) {} + try{ + off = off - jQuery(this).data('scrolloffset'); + } catch(e) {} + + jQuery('body,html').animate( + {scrollTop:(container.offset().top+(container.find('>ul >li').height())-off)+"px"},{duration:400}); + }); + //} + + + // FIRST TIME STOP/START HIDE / SHOW SLIDER + //REMOVE AND SHOW SLIDER ON DEMAND + var contpar= container.parent(); + if (jQuery(window).width()ul >li').height())-oy)+"px"},{duration:400}); + }) + }, + + // METHODE PAUSE + revredraw: function(oy) { + return this.each(function() { + var container=jQuery(this); + var bt = container.parent().find('.tp-bannertimer'); + var opt = bt.data('opt'); + containerResized(container,opt); + + }) + }, + + // METHODE PAUSE + revpause: function(options) { + + return this.each(function() { + var container=jQuery(this); + container.data('conthover',1); + container.data('conthover-changed',1); + container.trigger('revolution.slide.onpause'); + var bt = container.parent().find('.tp-bannertimer'); + var opt = bt.data('opt'); + opt.bannertimeronpause = true; + container.trigger('stoptimer'); + + }) + + + }, + + // METHODE RESUME + revresume: function(options) { + return this.each(function() { + var container=jQuery(this); + container.data('conthover',0); + container.data('conthover-changed',1); + container.trigger('revolution.slide.onresume'); + var bt = container.parent().find('.tp-bannertimer'); + var opt = bt.data('opt'); + opt.bannertimeronpause = false; + container.trigger('starttimer'); + + }) + + }, + + // METHODE NEXT + revnext: function(options) { + return this.each(function() { + // CATCH THE CONTAINER + var container=jQuery(this); + container.parent().find('.tp-rightarrow').click(); + + + }) + + }, + + // METHODE RESUME + revprev: function(options) { + return this.each(function() { + // CATCH THE CONTAINER + var container=jQuery(this); + container.parent().find('.tp-leftarrow').click(); + }) + + }, + + // METHODE LENGTH + revmaxslide: function(options) { + // CATCH THE CONTAINER + return jQuery(this).find('>ul:first-child >li').length; + }, + + + // METHODE CURRENT + revcurrentslide: function(options) { + // CATCH THE CONTAINER + var container=jQuery(this); + var bt = container.parent().find('.tp-bannertimer'); + var opt = bt.data('opt'); + return opt.act; + }, + + // METHODE CURRENT + revlastslide: function(options) { + // CATCH THE CONTAINER + var container=jQuery(this); + var bt = container.parent().find('.tp-bannertimer'); + var opt = bt.data('opt'); + return opt.lastslide; + }, + + + // METHODE JUMP TO SLIDE + revshowslide: function(slide) { + return this.each(function() { + // CATCH THE CONTAINER + var container=jQuery(this); + container.data('showus',slide); + container.parent().find('.tp-rightarrow').click(); + }) + + } + + +}) + + + /////////////////////////// + // GET THE URL PARAMETER // + /////////////////////////// + function getUrlVars(hashdivider) + { + var vars = [], hash; + var hashes = window.location.href.slice(window.location.href.indexOf(hashdivider) + 1).split('_'); + for(var i = 0; i < hashes.length; i++) + { + hashes[i] = hashes[i].replace('%3D',"="); + hash = hashes[i].split('='); + vars.push(hash[0]); + vars[hash[0]] = hash[1]; + } + return vars; + } + + ////////////////////////// + // CONTAINER RESIZED // + ///////////////////////// + function containerResized(container,opt) { + + // HIDE THUMBS UNDER SIZE... + try{ + if (opt.hideThumbsUnderResoluition!=0 && opt.navigationType=="thumb") { + if (opt.hideThumbsUnderResoluition>jQuery(window).width()) + jQuery('.tp-bullets').css({display:"none"}); + else + jQuery('.tp-bullets').css({display:"block"}); + } + } catch(e) {} + + + + container.find('.defaultimg').each(function(i) { + setSize(jQuery(this),opt); + }); + + + //REMOVE AND SHOW SLIDER ON DEMAND + var contpar= container.parent(); + if (jQuery(window).width() ul >li:eq('+opt.act+') .slotholder'); + var nextsh = container.find('>ul >li:eq('+opt.next+') .slotholder'); + removeSlots(container,opt); + nextsh.find('.defaultimg').css({'opacity':0}); + actsh.find('.defaultimg').css({'opacity':1}); + + nextsh.find('.defaultimg').each(function() { + var dimg = jQuery(this); + if (dimg.data('kenburn')!=undefined) { + dimg.data('kenburn').restart(); + startKenBurn(container,opt,true) + } + }); + + var nextli = container.find('>ul >li:eq('+opt.next+')'); + + animateTheCaptions(nextli, opt,true); + //restartBannerTimer(opt,container); + setBulPos(container,opt); + + } + + + ////////////////// + // IS MOBILE ?? // + ////////////////// + function is_mobile() { + var agents = ['android', 'webos', 'iphone', 'ipad', 'blackberry','Android', 'webos', ,'iPod', 'iPhone', 'iPad', 'Blackberry', 'BlackBerry']; + var ismobile=false; + for(i in agents) { + + if (navigator.userAgent.split(agents[i]).length>1) { + ismobile = true; + + } + } + return ismobile; + } + + /********************************* + - CHECK IF BROWSER IS IE - + ********************************/ + function isIE( version, comparison ){ + var $div = jQuery('').appendTo(jQuery('body')); + $div.html(''); + var ieTest = $div.find('a').length; + $div.remove(); + return ieTest; + } + + + function callingNewSlide(opt,container) { + + swapSlide(container,opt); + + } + + + //////////////////////////////// + // - CREATE THE BULLETS - // + //////////////////////////////// + function createThumbs(container,opt) { + + var cap=container.parent(); + + if (opt.navigationType=="thumb" || opt.navsecond=="both") { + cap.append(' '); + } + var bullets = cap.find('.tp-bullets.tp-thumbs .tp-mask .tp-thumbcontainer'); + var bup = bullets.parent(); + + bup.width(opt.thumbWidth*opt.thumbAmount); + bup.height(opt.thumbHeight); + bup.parent().width(opt.thumbWidth*opt.thumbAmount); + bup.parent().height(opt.thumbHeight); + + container.find('>ul:first >li').each(function(i) { + var li= container.find(">ul:first >li:eq("+i+")"); + var bgcolor = li.find(".defaultimg").css("backgroundColor"); + if (li.data('thumb') !=undefined) + var src= li.data('thumb') + else + var src=li.find("img:first").attr('src'); + + + bullets.append(''); + var bullet= bullets.find('.bullet:first'); + }); + //bullets.append(''); + var minwidth=10; + + + // ADD THE BULLET CLICK FUNCTION HERE + bullets.find('.bullet').each(function(i) { + var bul = jQuery(this); + + if (i==opt.slideamount-1) bul.addClass('last'); + if (i==0) bul.addClass('first'); + bul.width(opt.thumbWidth); + bul.height(opt.thumbHeight); + + if (minwidthul:first >li').length; + + var thumbconwidth=bullets.parent().width(); + opt.thumbWidth = minwidth; + + + + //////////////////////// + // SLIDE TO POSITION // + //////////////////////// + if (thumbconwidth ul:first >li').length; + var diff=(max- thumbconwidth)+15; + var steps = diff / thumbconwidth; + x=x-30; + //if (x<30) x=0; + //if (x>thumbconwidth-30) x=thumbconwidth; + + //ANIMATE TO POSITION + var pos=(0-((x)*steps)); + if (pos>0) pos =0; + if (pos<0-max+thumbconwidth) pos=0-max+thumbconwidth; + moveThumbSliderToPosition($this,pos,200); + }); + + bullets.parent().mousemove(function() { + + var $this=jQuery(this); + + //if (!$this.hasClass("over")) { + var offset = $this.offset(); + var x = jQuery('body').data('mousex')-offset.left; + var thumbconwidth=$this.width(); + var minwidth=$this.find('.bullet:first').outerWidth(true); + var max=minwidth*container.find('>ul:first >li').length-1; + var diff=(max- thumbconwidth)+15; + var steps = diff / thumbconwidth; + x=x-3; + if (x<6) x=0; + if (x+3>thumbconwidth-6) x=thumbconwidth; + + //ANIMATE TO POSITION + var pos=(0-((x)*steps)); + if (pos>0) pos =0; + if (pos<0-max+thumbconwidth) pos=0-max+thumbconwidth; + moveThumbSliderToPosition($this,pos,0); + //} else { + //$this.removeClass("over"); + //} + + }); + + bullets.parent().mouseleave(function() { + var $this=jQuery(this); + $this.removeClass("over"); + moveSelectedThumb(container); + }); + } + + + } + + + /////////////////////////////// + // SelectedThumbInPosition // + ////////////////////////////// + function moveSelectedThumb(container) { + + var bullets=container.parent().find('.tp-bullets.tp-thumbs .tp-mask .tp-thumbcontainer'); + var $this=bullets.parent(); + var offset = $this.offset(); + var minwidth=$this.find('.bullet:first').outerWidth(true); + + var x = $this.find('.bullet.selected').index() * minwidth; + var thumbconwidth=$this.width(); + var minwidth=$this.find('.bullet:first').outerWidth(true); + var max=minwidth*container.find('>ul:first >li').length; + var diff=(max- thumbconwidth); + var steps = diff / thumbconwidth; + + //ANIMATE TO POSITION + var pos=0-x; + + if (pos>0) pos =0; + if (pos<0-max+thumbconwidth) pos=0-max+thumbconwidth; + if (!$this.hasClass("over")) { + moveThumbSliderToPosition($this,pos,200); + } + } + + + //////////////////////////////////// + // MOVE THUMB SLIDER TO POSITION // + /////////////////////////////////// + function moveThumbSliderToPosition($this,pos,speed) { + //$this.stop(); + //$this.find('.tp-thumbcontainer').animate({'left':pos+'px'},{duration:speed,queue:false}); + TweenLite.to($this.find('.tp-thumbcontainer'),0.2,{left:pos,ease:Power3.easeOut,overwrite:"auto"}); + } + + + + //////////////////////////////// + // - CREATE THE BULLETS - // + //////////////////////////////// + function createBullets(container,opt) { + + if (opt.navigationType=="bullet" || opt.navigationType=="both") { + container.parent().append(''); + } + + + var bullets = container.parent().find('.tp-bullets'); + + container.find('>ul:first >li').each(function(i) { + var src=container.find(">ul:first >li:eq("+i+") img:first").attr('src'); + bullets.append(''); + var bullet= bullets.find('.bullet:first'); + + + }); + + // ADD THE BULLET CLICK FUNCTION HERE + bullets.find('.bullet').each(function(i) { + var bul = jQuery(this); + if (i==opt.slideamount-1) bul.addClass('last'); + if (i==0) bul.addClass('first'); + + bul.click(function() { + var sameslide = false; + if (opt.navigationArrows=="withbullet" || opt.navigationArrows=="nexttobullets") { + if (bul.index()-1 == opt.act) sameslide=true; + } else { + if (bul.index() == opt.act) sameslide=true; + } + + if (opt.transition==0 && !sameslide) { + + if (opt.navigationArrows=="withbullet" || opt.navigationArrows=="nexttobullets") { + opt.next = bul.index()-1; + } else { + opt.next = bul.index(); + } + + callingNewSlide(opt,container); + } + }); + + }); + + bullets.append(''); + + + + setBulPos(container,opt); + + + + + + } + + ////////////////////// + // CREATE ARROWS // + ///////////////////// + function createArrows(container,opt) { + + var bullets = container.find('.tp-bullets'); + + var hidden=""; + var arst= opt.navigationStyle; + if (opt.navigationArrows=="none") hidden="visibility:hidden;display:none"; + opt.soloArrowStyle = "default"; + + if (opt.navigationArrows!="none" && opt.navigationArrows!="nexttobullets") arst = opt.soloArrowStyle; + + container.parent().append(''); + container.parent().append(''); + + // THE LEFT / RIGHT BUTTON CLICK ! // + container.parent().find('.tp-rightarrow').click(function() { + + if (opt.transition==0) { + if (container.data('showus') !=undefined && container.data('showus') != -1) + opt.next = container.data('showus')-1; + else + opt.next = opt.next+1; + container.data('showus',-1); + if (opt.next >= opt.slideamount) opt.next=0; + if (opt.next<0) opt.next=0; + + if (opt.act !=opt.next) + callingNewSlide(opt,container); + } + }); + + container.parent().find('.tp-leftarrow').click(function() { + if (opt.transition==0) { + opt.next = opt.next-1; + opt.leftarrowpressed=1; + if (opt.next < 0) opt.next=opt.slideamount-1; + callingNewSlide(opt,container); + } + }); + + setBulPos(container,opt); + + } + + ////////////////////// + // CREATE ARROWS // + ///////////////////// + function createKeyboard(container,opt) { + + + // THE LEFT / RIGHT BUTTON CLICK ! // + jQuery(document).keydown(function(e){ + if (opt.transition==0 && e.keyCode == 39) { + if (container.data('showus') !=undefined && container.data('showus') != -1) + opt.next = container.data('showus')-1; + else + opt.next = opt.next+1; + container.data('showus',-1); + if (opt.next >= opt.slideamount) opt.next=0; + if (opt.next<0) opt.next=0; + + if (opt.act !=opt.next) + callingNewSlide(opt,container); + } + + if (opt.transition==0 && e.keyCode == 37) { + opt.next = opt.next-1; + opt.leftarrowpressed=1; + if (opt.next < 0) opt.next=opt.slideamount-1; + callingNewSlide(opt,container); + } + }); + + setBulPos(container,opt); + + } + + //////////////////////////// + // SET THE SWIPE FUNCTION // + //////////////////////////// + function swipeAction(container,opt) { + // TOUCH ENABLED SCROLL + + if (opt.touchenabled=="on") { + var hammertime = Hammer(container, { + drag_block_vertical : opt.drag_block_vertical, + drag_lock_to_axis: true, + swipe_velocity : opt.swipe_velocity, + swipe_max_touches : opt.swipe_max_touches, + swipe_min_touches : opt.swipe_min_touches, + prevent_default:false + }); + + + + hammertime.on("swipeleft", function() { + if (opt.transition==0) { + opt.next = opt.next+1; + if (opt.next == opt.slideamount) opt.next=0; + callingNewSlide(opt,container); + } + }); + hammertime.on("swiperight", function() { + if (opt.transition==0) { + opt.next = opt.next-1; + opt.leftarrowpressed=1; + if (opt.next < 0) opt.next=opt.slideamount-1; + callingNewSlide(opt,container); + } + }); + hammertime.on("swipeup", function() { + jQuery("html, body").animate({scrollTop:(container.offset().top + container.height())+"px"}); + }); + hammertime.on("swipedown", function() { + jQuery("html, body").animate({scrollTop:(container.offset().top - jQuery(window).height())+"px"}); + }); + } + + } + + + + + //////////////////////////////////////////////////////////////// + // SHOW AND HIDE THE THUMBS IF MOUE GOES OUT OF THE BANNER /// + ////////////////////////////////////////////////////////////// + function hideThumbs(container,opt) { + + var bullets = container.parent().find('.tp-bullets'); + var ca = container.parent().find('.tparrows'); + + if (bullets==null) { + container.append(''); + var bullets = container.parent().find('.tp-bullets'); + } + + if (ca==null) { + container.append(''); + var ca = container.parent().find('.tparrows'); + } + + + //var bp = (thumbs.parent().outerHeight(true) - opt.height)/2; + + // ADD THUMBNAIL IMAGES FOR THE BULLETS // + container.data('hidethumbs',opt.hideThumbs); + + bullets.addClass("hidebullets"); + ca.addClass("hidearrows"); + + if (is_mobile()) { + container.hammer().on('touch', function() { + container.addClass("hovered"); + if (opt.onHoverStop=="on") + container.trigger('stoptimer'); + clearTimeout(container.data('hidethumbs')); + bullets.removeClass("hidebullets"); + ca.removeClass("hidearrows"); + + + }); + + container.hammer().on('release', function() { + container.removeClass("hovered"); + container.trigger('playtimer'); + if (!container.hasClass("hovered") && !bullets.hasClass("hovered")) + container.data('hidethumbs', setTimeout(function() { + bullets.addClass("hidebullets"); + ca.addClass("hidearrows"); + container.trigger('playtimer'); + },opt.hideNavDelayOnMobile)); + }); + + } else { + bullets.hover(function() { + opt.overnav = true; + if (opt.onHoverStop=="on") + container.trigger('stoptimer'); + bullets.addClass("hovered"); + clearTimeout(container.data('hidethumbs')); + bullets.removeClass("hidebullets"); + ca.removeClass("hidearrows"); + }, + function() { + opt.overnav = false; + container.trigger('playtimer'); + bullets.removeClass("hovered"); + if (!container.hasClass("hovered") && !bullets.hasClass("hovered")) + container.data('hidethumbs', setTimeout(function() { + bullets.addClass("hidebullets"); + ca.addClass("hidearrows"); + },opt.hideThumbs)); + }); + + + ca.hover(function() { + opt.overnav = true; + if (opt.onHoverStop=="on") + container.trigger('stoptimer'); + bullets.addClass("hovered"); + clearTimeout(container.data('hidethumbs')); + bullets.removeClass("hidebullets"); + ca.removeClass("hidearrows"); + + }, + function() { + opt.overnav = false; + container.trigger('playtimer'); + bullets.removeClass("hovered"); + }); + + + + container.on('mouseenter', function() { + container.addClass("hovered"); + if (opt.onHoverStop=="on") + container.trigger('stoptimer'); + clearTimeout(container.data('hidethumbs')); + bullets.removeClass("hidebullets"); + ca.removeClass("hidearrows"); + + + }); + + container.on('mouseleave', function() { + container.removeClass("hovered"); + container.trigger('playtimer'); + if (!container.hasClass("hovered") && !bullets.hasClass("hovered")) + container.data('hidethumbs', setTimeout(function() { + bullets.addClass("hidebullets"); + ca.addClass("hidearrows"); + },opt.hideThumbs)); + }); + } + + + } + + + + + + + + ////////////////////////////// + // SET POSITION OF BULLETS // + ////////////////////////////// + function setBulPos(container,opt) { + var topcont=container.parent(); + var bullets=topcont.find('.tp-bullets'); + + if (opt.navigationType=="thumb") { + bullets.find('.thumb').each(function(i) { + var thumb = jQuery(this); + + thumb.css({'width':opt.thumbWidth * opt.bw+"px", 'height':opt.thumbHeight*opt.bh+"px"}); + + }) + var bup = bullets.find('.tp-mask'); + + bup.width(opt.thumbWidth*opt.thumbAmount * opt.bw); + bup.height(opt.thumbHeight * opt.bh); + bup.parent().width(opt.thumbWidth*opt.thumbAmount * opt.bw); + bup.parent().height(opt.thumbHeight * opt.bh); + } + + + var tl = topcont.find('.tp-leftarrow'); + var tr = topcont.find('.tp-rightarrow'); + + if (opt.navigationType=="thumb" && opt.navigationArrows=="nexttobullets") opt.navigationArrows="solo"; + // IM CASE WE HAVE NAVIGATION BULLETS TOGETHER WITH ARROWS + if (opt.navigationArrows=="nexttobullets") { + tl.prependTo(bullets).css({'float':'left'}); + tr.insertBefore(bullets.find('.tpclear')).css({'float':'left'}); + } + var loff=0; + if (opt.forceFullWidth=="on") + loff = 0-opt.container.parent().offset().left; + + if (opt.navigationArrows!="none" && opt.navigationArrows!="nexttobullets") { + + tl.css({'position':'absolute'}); + tr.css({'position':'absolute'}); + + + if (opt.soloArrowLeftValign=="center") tl.css({'top':'50%','marginTop':(opt.soloArrowLeftVOffset-Math.round(tl.innerHeight()/2))+"px"}); + if (opt.soloArrowLeftValign=="bottom") tl.css({'top':'auto','bottom':(0+opt.soloArrowLeftVOffset)+"px"}); + if (opt.soloArrowLeftValign=="top") tl.css({'bottom':'auto','top':(0+opt.soloArrowLeftVOffset)+"px"}); + if (opt.soloArrowLeftHalign=="center") tl.css({'left':'50%','marginLeft':(loff+opt.soloArrowLeftHOffset-Math.round(tl.innerWidth()/2))+"px"}); + if (opt.soloArrowLeftHalign=="left") tl.css({'left':(0+opt.soloArrowLeftHOffset+loff)+"px"}); + if (opt.soloArrowLeftHalign=="right") tl.css({'right':(0+opt.soloArrowLeftHOffset-loff)+"px"}); + + if (opt.soloArrowRightValign=="center") tr.css({'top':'50%','marginTop':(opt.soloArrowRightVOffset-Math.round(tr.innerHeight()/2))+"px"}); + if (opt.soloArrowRightValign=="bottom") tr.css({'top':'auto','bottom':(0+opt.soloArrowRightVOffset)+"px"}); + if (opt.soloArrowRightValign=="top") tr.css({'bottom':'auto','top':(0+opt.soloArrowRightVOffset)+"px"}); + if (opt.soloArrowRightHalign=="center") tr.css({'left':'50%','marginLeft':(loff+opt.soloArrowRightHOffset-Math.round(tr.innerWidth()/2))+"px"}); + if (opt.soloArrowRightHalign=="left") tr.css({'left':(0+opt.soloArrowRightHOffset+loff)+"px"}); + if (opt.soloArrowRightHalign=="right") tr.css({'right':(0+opt.soloArrowRightHOffset-loff)+"px"}); + + + if (tl.position()!=null) + tl.css({'top':Math.round(parseInt(tl.position().top,0))+"px"}); + + if (tr.position()!=null) + tr.css({'top':Math.round(parseInt(tr.position().top,0))+"px"}); + } + + if (opt.navigationArrows=="none") { + tl.css({'visibility':'hidden'}); + tr.css({'visibility':'hidden'}); + } + + // SET THE POSITIONS OF THE BULLETS // THUMBNAILS + + + if (opt.navigationVAlign=="center") bullets.css({'top':'50%','marginTop':(opt.navigationVOffset-Math.round(bullets.innerHeight()/2))+"px"}); + if (opt.navigationVAlign=="bottom") bullets.css({'bottom':(0+opt.navigationVOffset)+"px"}); + if (opt.navigationVAlign=="top") bullets.css({'top':(0+opt.navigationVOffset)+"px"}); + + + + if (opt.navigationHAlign=="center") bullets.css({'left':'50%','marginLeft':(loff+opt.navigationHOffset-Math.round(bullets.innerWidth()/2))+"px"}); + if (opt.navigationHAlign=="left") bullets.css({'left':(0+opt.navigationHOffset+loff)+"px"}); + if (opt.navigationHAlign=="right") bullets.css({'right':(0+opt.navigationHOffset-loff)+"px"}); + + + + } + + + + ////////////////////////////////////////////////////////// + // - SET THE IMAGE SIZE TO FIT INTO THE CONTIANER - // + //////////////////////////////////////////////////////// + function setSize(img,opt) { + + + opt.container.closest('.forcefullwidth_wrapper_tp_banner').find('.tp-fullwidth-forcer').css({'height':opt.container.height()}); + opt.container.closest('.rev_slider_wrapper').css({'height':opt.container.height()}); + + + opt.width=parseInt(opt.container.width(),0); + opt.height=parseInt(opt.container.height(),0); + + + + opt.bw= (opt.width / opt.startwidth); + opt.bh = (opt.height / opt.startheight); + + if (opt.bh>opt.bw) opt.bh=opt.bw; + if (opt.bh 1) { opt.bw=1; opt.bh=1; } + if (opt.bw>1) {opt.bw=1; opt.bh=1; } + + + //opt.height= opt.startheight * opt.bh; + opt.height = Math.round(opt.startheight * (opt.width/opt.startwidth)); + + + + + + if (opt.height>opt.startheight && opt.autoHeight!="on") opt.height=opt.startheight; + + + + if (opt.fullScreen=="on") { + opt.height = opt.bw * opt.startheight; + var cow = opt.container.parent().width(); + var coh = jQuery(window).height(); + if (opt.fullScreenOffsetContainer!=undefined) { + try{ + var offcontainers = opt.fullScreenOffsetContainer.split(","); + jQuery.each(offcontainers,function(index,searchedcont) { + coh = coh - jQuery(searchedcont).outerHeight(true); + if (coh ul:first').css({overflow:'hidden',width:'100%',height:'100%',maxHeight:container.parent().css('maxHeight')}); + if (opt.autoHeight=="on") { + container.find('>ul:first').css({overflow:'hidden',width:'100%',height:'100%',maxHeight:"none"}); + container.css({'maxHeight':'none'}); + container.parent().css({'maxHeight':'none'}); + } + + container.find('>ul:first >li').each(function(j) { + var li=jQuery(this); + + // MAKE LI OVERFLOW HIDDEN FOR FURTHER ISSUES + li.css({'width':'100%','height':'100%','overflow':'hidden'}); + + if (li.data('link')!=undefined) { + var link = li.data('link'); + var target="_self"; + var zindex=60; + if (li.data('slideindex')=="back") zindex=0; + + var linktoslide=li.data('linktoslide'); + if (li.data('target')!=undefined) target=li.data('target'); + + if (link=="slide") { + li.append(' '); + } else { + linktoslide="no"; + li.append(' '); + } + + } + }); + + // RESOLVE OVERFLOW HIDDEN OF MAIN CONTAINER + container.parent().css({'overflow':'visible'}); + + + container.find('>ul:first >li >img').each(function(j) { + + var img=jQuery(this); + + img.addClass('defaultimg'); + if (img.data('lazyload')!=undefined && img.data('lazydone') != 1) { + + } else { + setSize(img,opt); + } + + + + img.wrap(''); + + if (opt.dottedOverlay!="none" && opt.dottedOverlay!=undefined) + img.closest('.slotholder').append(''); + + var src=img.attr('src'); + var ll = img.data('lazyload'); + var bgfit = img.data('bgfit'); + var bgrepeat = img.data('bgrepeat'); + var bgposition = img.data('bgposition'); + + + if (bgfit==undefined) bgfit="cover"; + if (bgrepeat==undefined) bgrepeat="no-repeat"; + if (bgposition==undefined) bgposition="center center" + + + var pari = img.closest('.slotholder'); + img.replaceWith(''); + + if (isIE(8)) { + pari.find('.tp-bgimg').css({backgroundImage:"none",'background-image':'none'}); + pari.find('.tp-bgimg').append(''); + } + + + + + img.css({'opacity':0}); + img.data('li-id',j); + + }); + } + + + + + + /////////////////////// + // PREPARE THE SLIDE // + ////////////////////// + function prepareOneSlideSlot(slotholder,opt,visible,vorh) { + + + var sh=slotholder; + var img = sh.find('.defaultimg') + + var scalestart = sh.data('zoomstart'); + var rotatestart = sh.data('rotationstart'); + + if (img.data('currotate')!=undefined) + rotatestart = img.data('currotate'); + if (img.data('curscale')!=undefined) + scalestart = img.data('curscale'); + + + setSize(img,opt) + var src = img.data('src'); + + var bgcolor=img.css('background-color'); + + var w = opt.width; + var h = opt.height; + if (opt.autoHeight=="on") + h = opt.container.height(); + + var fulloff = img.data("fxof"); + if (fulloff==undefined) fulloff=0; + + fullyoff=0; + + var off=0; + + var bgfit = img.data('bgfit'); + var bgrepeat = img.data('bgrepeat'); + var bgposition = img.data('bgposition'); + + if (bgfit==undefined) bgfit="cover"; + if (bgrepeat==undefined) bgrepeat="no-repeat"; + if (bgposition==undefined) bgposition="center center"; + + + if (isIE(8)) { + sh.data('kenburns',"off"); + } + if (sh.data('kenburns')=="on") { + bgfit=scalestart; + if (bgfit.toString().length<4) + bgfit = calculateKenBurnScales(bgfit,sh,opt); + } + + if (isIE(8)) { + var imgsrc=src; + src=""; + } + + if (vorh == "horizontal") { + + if (!visible) var off=0-opt.slotw; + + for (var i=0;i '); + if (scalestart!=undefined && rotatestart!=undefined) + TweenLite.set(sh.find('.slot').last(),{rotationZ:rotatestart}); + if (isIE(8)) { + sh.find('.slot ').last().find('.slotslide').append('