diff --git a/CHANGELOG b/CHANGELOG index ef00ae1ac31..0e483dc30c2 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,6 @@ UNRELEASED CHANGES: +* Redirect to registration page if there is no account * Improve heroku integration * Add bullet points to lists in call log diff --git a/app.json b/app.json index 1ca0e06ce36..63b2dcb13cd 100644 --- a/app.json +++ b/app.json @@ -19,7 +19,7 @@ } ], "scripts": { - "postdeploy": "php artisan setup:production --force --email=admin@admin.com --password=admin" + "postdeploy": "php artisan setup:production --force" }, "env": { "APP_KEY": { diff --git a/app/Account.php b/app/Account.php index f2d5bf8e7ab..d793038b149 100644 --- a/app/Account.php +++ b/app/Account.php @@ -57,6 +57,16 @@ public static function createDefault($first_name, $last_name, $email, $password) return $account; } + /** + * Get if any account exists on the database. + * + * @return bool + */ + public static function hasAny() + { + return DB::table('accounts')->count() > 0; + } + /** * Populates all the default column that should be there when a new account * is created or reset. diff --git a/app/Console/Commands/SetupProduction.php b/app/Console/Commands/SetupProduction.php index c0aea218365..d26536ebc85 100644 --- a/app/Console/Commands/SetupProduction.php +++ b/app/Console/Commands/SetupProduction.php @@ -54,27 +54,27 @@ public function handle() $this->callSilent('storage:link'); $this->info('✓ Symlinked the storage folder for the avatars'); - $email = $this->option('email'); - if (! $email) { - $email = $this->ask('Account creation: what should be your email address to login?'); - } - - $password = $this->option('password'); - if (! $password) { - $password = $this->secret('Please choose a password:'); - } - - Account::createDefault('John', 'Doe', $email, $password); - $this->line(''); $this->line('-----------------------------'); $this->line('|'); $this->line('| Welcome to Monica v'.config('monica.app_version')); $this->line('|'); $this->line('-----------------------------'); - $this->info('| You can now sign in to your account:'); - $this->line('| username: '.$email); - $this->line('| password: '); + + $email = $this->option('email'); + $password = $this->option('password'); + if (! empty($email) && ! empty($password)) { + Account::createDefault('John', 'Doe', $email, $password); + + $this->info('| You can now sign in to your account:'); + $this->line('| username: '.$email); + $this->line('| password: '); + } elseif (Account::hasAny()) { + $this->info('| You can now log in to your account'); + } else { + $this->info('| You can now register to the first account by opening the application:'); + } + $this->line('| URL: '.config('app.url')); $this->line('-----------------------------'); diff --git a/app/Http/Controllers/Auth/LoginController.php b/app/Http/Controllers/Auth/LoginController.php index 9eea6fc4208..b2e11996219 100644 --- a/app/Http/Controllers/Auth/LoginController.php +++ b/app/Http/Controllers/Auth/LoginController.php @@ -2,6 +2,7 @@ namespace App\Http\Controllers\Auth; +use App\Account; use App\Http\Controllers\Controller; use Illuminate\Foundation\Auth\AuthenticatesUsers; @@ -36,4 +37,14 @@ public function __construct() { $this->middleware('guest', ['except' => 'logout']); } + + public function showLoginOrRegister() + { + $first = ! Account::hasAny(); + if ($first) { + return redirect('/register'); + } + + return $this->showLoginForm(); + } } diff --git a/app/Http/Controllers/Auth/RegisterController.php b/app/Http/Controllers/Auth/RegisterController.php index fb99281c398..87bf3d3e654 100644 --- a/app/Http/Controllers/Auth/RegisterController.php +++ b/app/Http/Controllers/Auth/RegisterController.php @@ -49,11 +49,12 @@ public function __construct() */ public function showRegistrationForm() { - if (config('monica.disable_signup') == 'true') { + $first = ! Account::hasAny(); + if (config('monica.disable_signup') == 'true' && ! $first) { abort(403, trans('auth.signup_disabled')); } - return view('auth.register'); + return view('auth.register', ['first' => $first]); } /** @@ -80,11 +81,14 @@ protected function validator(array $data) */ protected function create(array $data) { + $first = ! Account::hasAny(); $account = Account::createDefault($data['first_name'], $data['last_name'], $data['email'], $data['password']); $user = $account->users()->first(); - // send me an alert - dispatch(new SendNewUserAlert($user)); + if (! $first) { + // send me an alert + dispatch(new SendNewUserAlert($user)); + } return $user; } diff --git a/public/css/app.css b/public/css/app.css index e32ab3ef400..6185994db3c 100644 --- a/public/css/app.css +++ b/public/css/app.css @@ -11,5 +11,5 @@ /*! * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) - */@font-face{font-family:FontAwesome;src:url(/fonts/vendor/font-awesome/fontawesome-webfont.eot?674f50d287a8c48dc19ba404d20fe713);src:url(/fonts/vendor/font-awesome/fontawesome-webfont.eot?674f50d287a8c48dc19ba404d20fe713) format("embedded-opentype"),url(/fonts/vendor/font-awesome/fontawesome-webfont.woff2?af7ae505a9eed503f8b8e6982036873e) format("woff2"),url(/fonts/vendor/font-awesome/fontawesome-webfont.woff?fee66e712a8a08eef5805a46892932ad) format("woff"),url(/fonts/vendor/font-awesome/fontawesome-webfont.ttf?b06871f281fee6b241d60582ae9369b9) format("truetype"),url(/fonts/vendor/font-awesome/fontawesome-webfont.svg?912ec66d7572ff821749319396470bde) format("svg");font-weight:400;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:.08em solid #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scaleY(-1);transform:scaleY(-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{-webkit-filter:none;filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\F000"}.fa-music:before{content:"\F001"}.fa-search:before{content:"\F002"}.fa-envelope-o:before{content:"\F003"}.fa-heart:before{content:"\F004"}.fa-star:before{content:"\F005"}.fa-star-o:before{content:"\F006"}.fa-user:before{content:"\F007"}.fa-film:before{content:"\F008"}.fa-th-large:before{content:"\F009"}.fa-th:before{content:"\F00A"}.fa-th-list:before{content:"\F00B"}.fa-check:before{content:"\F00C"}.fa-close:before,.fa-remove:before,.fa-times:before{content:"\F00D"}.fa-search-plus:before{content:"\F00E"}.fa-search-minus:before{content:"\F010"}.fa-power-off:before{content:"\F011"}.fa-signal:before{content:"\F012"}.fa-cog:before,.fa-gear:before{content:"\F013"}.fa-trash-o:before{content:"\F014"}.fa-home:before{content:"\F015"}.fa-file-o:before{content:"\F016"}.fa-clock-o:before{content:"\F017"}.fa-road:before{content:"\F018"}.fa-download:before{content:"\F019"}.fa-arrow-circle-o-down:before{content:"\F01A"}.fa-arrow-circle-o-up:before{content:"\F01B"}.fa-inbox:before{content:"\F01C"}.fa-play-circle-o:before{content:"\F01D"}.fa-repeat:before,.fa-rotate-right:before{content:"\F01E"}.fa-refresh:before{content:"\F021"}.fa-list-alt:before{content:"\F022"}.fa-lock:before{content:"\F023"}.fa-flag:before{content:"\F024"}.fa-headphones:before{content:"\F025"}.fa-volume-off:before{content:"\F026"}.fa-volume-down:before{content:"\F027"}.fa-volume-up:before{content:"\F028"}.fa-qrcode:before{content:"\F029"}.fa-barcode:before{content:"\F02A"}.fa-tag:before{content:"\F02B"}.fa-tags:before{content:"\F02C"}.fa-book:before{content:"\F02D"}.fa-bookmark:before{content:"\F02E"}.fa-print:before{content:"\F02F"}.fa-camera:before{content:"\F030"}.fa-font:before{content:"\F031"}.fa-bold:before{content:"\F032"}.fa-italic:before{content:"\F033"}.fa-text-height:before{content:"\F034"}.fa-text-width:before{content:"\F035"}.fa-align-left:before{content:"\F036"}.fa-align-center:before{content:"\F037"}.fa-align-right:before{content:"\F038"}.fa-align-justify:before{content:"\F039"}.fa-list:before{content:"\F03A"}.fa-dedent:before,.fa-outdent:before{content:"\F03B"}.fa-indent:before{content:"\F03C"}.fa-video-camera:before{content:"\F03D"}.fa-image:before,.fa-photo:before,.fa-picture-o:before{content:"\F03E"}.fa-pencil:before{content:"\F040"}.fa-map-marker:before{content:"\F041"}.fa-adjust:before{content:"\F042"}.fa-tint:before{content:"\F043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\F044"}.fa-share-square-o:before{content:"\F045"}.fa-check-square-o:before{content:"\F046"}.fa-arrows:before{content:"\F047"}.fa-step-backward:before{content:"\F048"}.fa-fast-backward:before{content:"\F049"}.fa-backward:before{content:"\F04A"}.fa-play:before{content:"\F04B"}.fa-pause:before{content:"\F04C"}.fa-stop:before{content:"\F04D"}.fa-forward:before{content:"\F04E"}.fa-fast-forward:before{content:"\F050"}.fa-step-forward:before{content:"\F051"}.fa-eject:before{content:"\F052"}.fa-chevron-left:before{content:"\F053"}.fa-chevron-right:before{content:"\F054"}.fa-plus-circle:before{content:"\F055"}.fa-minus-circle:before{content:"\F056"}.fa-times-circle:before{content:"\F057"}.fa-check-circle:before{content:"\F058"}.fa-question-circle:before{content:"\F059"}.fa-info-circle:before{content:"\F05A"}.fa-crosshairs:before{content:"\F05B"}.fa-times-circle-o:before{content:"\F05C"}.fa-check-circle-o:before{content:"\F05D"}.fa-ban:before{content:"\F05E"}.fa-arrow-left:before{content:"\F060"}.fa-arrow-right:before{content:"\F061"}.fa-arrow-up:before{content:"\F062"}.fa-arrow-down:before{content:"\F063"}.fa-mail-forward:before,.fa-share:before{content:"\F064"}.fa-expand:before{content:"\F065"}.fa-compress:before{content:"\F066"}.fa-plus:before{content:"\F067"}.fa-minus:before{content:"\F068"}.fa-asterisk:before{content:"\F069"}.fa-exclamation-circle:before{content:"\F06A"}.fa-gift:before{content:"\F06B"}.fa-leaf:before{content:"\F06C"}.fa-fire:before{content:"\F06D"}.fa-eye:before{content:"\F06E"}.fa-eye-slash:before{content:"\F070"}.fa-exclamation-triangle:before,.fa-warning:before{content:"\F071"}.fa-plane:before{content:"\F072"}.fa-calendar:before{content:"\F073"}.fa-random:before{content:"\F074"}.fa-comment:before{content:"\F075"}.fa-magnet:before{content:"\F076"}.fa-chevron-up:before{content:"\F077"}.fa-chevron-down:before{content:"\F078"}.fa-retweet:before{content:"\F079"}.fa-shopping-cart:before{content:"\F07A"}.fa-folder:before{content:"\F07B"}.fa-folder-open:before{content:"\F07C"}.fa-arrows-v:before{content:"\F07D"}.fa-arrows-h:before{content:"\F07E"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\F080"}.fa-twitter-square:before{content:"\F081"}.fa-facebook-square:before{content:"\F082"}.fa-camera-retro:before{content:"\F083"}.fa-key:before{content:"\F084"}.fa-cogs:before,.fa-gears:before{content:"\F085"}.fa-comments:before{content:"\F086"}.fa-thumbs-o-up:before{content:"\F087"}.fa-thumbs-o-down:before{content:"\F088"}.fa-star-half:before{content:"\F089"}.fa-heart-o:before{content:"\F08A"}.fa-sign-out:before{content:"\F08B"}.fa-linkedin-square:before{content:"\F08C"}.fa-thumb-tack:before{content:"\F08D"}.fa-external-link:before{content:"\F08E"}.fa-sign-in:before{content:"\F090"}.fa-trophy:before{content:"\F091"}.fa-github-square:before{content:"\F092"}.fa-upload:before{content:"\F093"}.fa-lemon-o:before{content:"\F094"}.fa-phone:before{content:"\F095"}.fa-square-o:before{content:"\F096"}.fa-bookmark-o:before{content:"\F097"}.fa-phone-square:before{content:"\F098"}.fa-twitter:before{content:"\F099"}.fa-facebook-f:before,.fa-facebook:before{content:"\F09A"}.fa-github:before{content:"\F09B"}.fa-unlock:before{content:"\F09C"}.fa-credit-card:before{content:"\F09D"}.fa-feed:before,.fa-rss:before{content:"\F09E"}.fa-hdd-o:before{content:"\F0A0"}.fa-bullhorn:before{content:"\F0A1"}.fa-bell:before{content:"\F0F3"}.fa-certificate:before{content:"\F0A3"}.fa-hand-o-right:before{content:"\F0A4"}.fa-hand-o-left:before{content:"\F0A5"}.fa-hand-o-up:before{content:"\F0A6"}.fa-hand-o-down:before{content:"\F0A7"}.fa-arrow-circle-left:before{content:"\F0A8"}.fa-arrow-circle-right:before{content:"\F0A9"}.fa-arrow-circle-up:before{content:"\F0AA"}.fa-arrow-circle-down:before{content:"\F0AB"}.fa-globe:before{content:"\F0AC"}.fa-wrench:before{content:"\F0AD"}.fa-tasks:before{content:"\F0AE"}.fa-filter:before{content:"\F0B0"}.fa-briefcase:before{content:"\F0B1"}.fa-arrows-alt:before{content:"\F0B2"}.fa-group:before,.fa-users:before{content:"\F0C0"}.fa-chain:before,.fa-link:before{content:"\F0C1"}.fa-cloud:before{content:"\F0C2"}.fa-flask:before{content:"\F0C3"}.fa-cut:before,.fa-scissors:before{content:"\F0C4"}.fa-copy:before,.fa-files-o:before{content:"\F0C5"}.fa-paperclip:before{content:"\F0C6"}.fa-floppy-o:before,.fa-save:before{content:"\F0C7"}.fa-square:before{content:"\F0C8"}.fa-bars:before,.fa-navicon:before,.fa-reorder:before{content:"\F0C9"}.fa-list-ul:before{content:"\F0CA"}.fa-list-ol:before{content:"\F0CB"}.fa-strikethrough:before{content:"\F0CC"}.fa-underline:before{content:"\F0CD"}.fa-table:before{content:"\F0CE"}.fa-magic:before{content:"\F0D0"}.fa-truck:before{content:"\F0D1"}.fa-pinterest:before{content:"\F0D2"}.fa-pinterest-square:before{content:"\F0D3"}.fa-google-plus-square:before{content:"\F0D4"}.fa-google-plus:before{content:"\F0D5"}.fa-money:before{content:"\F0D6"}.fa-caret-down:before{content:"\F0D7"}.fa-caret-up:before{content:"\F0D8"}.fa-caret-left:before{content:"\F0D9"}.fa-caret-right:before{content:"\F0DA"}.fa-columns:before{content:"\F0DB"}.fa-sort:before,.fa-unsorted:before{content:"\F0DC"}.fa-sort-desc:before,.fa-sort-down:before{content:"\F0DD"}.fa-sort-asc:before,.fa-sort-up:before{content:"\F0DE"}.fa-envelope:before{content:"\F0E0"}.fa-linkedin:before{content:"\F0E1"}.fa-rotate-left:before,.fa-undo:before{content:"\F0E2"}.fa-gavel:before,.fa-legal:before{content:"\F0E3"}.fa-dashboard:before,.fa-tachometer:before{content:"\F0E4"}.fa-comment-o:before{content:"\F0E5"}.fa-comments-o:before{content:"\F0E6"}.fa-bolt:before,.fa-flash:before{content:"\F0E7"}.fa-sitemap:before{content:"\F0E8"}.fa-umbrella:before{content:"\F0E9"}.fa-clipboard:before,.fa-paste:before{content:"\F0EA"}.fa-lightbulb-o:before{content:"\F0EB"}.fa-exchange:before{content:"\F0EC"}.fa-cloud-download:before{content:"\F0ED"}.fa-cloud-upload:before{content:"\F0EE"}.fa-user-md:before{content:"\F0F0"}.fa-stethoscope:before{content:"\F0F1"}.fa-suitcase:before{content:"\F0F2"}.fa-bell-o:before{content:"\F0A2"}.fa-coffee:before{content:"\F0F4"}.fa-cutlery:before{content:"\F0F5"}.fa-file-text-o:before{content:"\F0F6"}.fa-building-o:before{content:"\F0F7"}.fa-hospital-o:before{content:"\F0F8"}.fa-ambulance:before{content:"\F0F9"}.fa-medkit:before{content:"\F0FA"}.fa-fighter-jet:before{content:"\F0FB"}.fa-beer:before{content:"\F0FC"}.fa-h-square:before{content:"\F0FD"}.fa-plus-square:before{content:"\F0FE"}.fa-angle-double-left:before{content:"\F100"}.fa-angle-double-right:before{content:"\F101"}.fa-angle-double-up:before{content:"\F102"}.fa-angle-double-down:before{content:"\F103"}.fa-angle-left:before{content:"\F104"}.fa-angle-right:before{content:"\F105"}.fa-angle-up:before{content:"\F106"}.fa-angle-down:before{content:"\F107"}.fa-desktop:before{content:"\F108"}.fa-laptop:before{content:"\F109"}.fa-tablet:before{content:"\F10A"}.fa-mobile-phone:before,.fa-mobile:before{content:"\F10B"}.fa-circle-o:before{content:"\F10C"}.fa-quote-left:before{content:"\F10D"}.fa-quote-right:before{content:"\F10E"}.fa-spinner:before{content:"\F110"}.fa-circle:before{content:"\F111"}.fa-mail-reply:before,.fa-reply:before{content:"\F112"}.fa-github-alt:before{content:"\F113"}.fa-folder-o:before{content:"\F114"}.fa-folder-open-o:before{content:"\F115"}.fa-smile-o:before{content:"\F118"}.fa-frown-o:before{content:"\F119"}.fa-meh-o:before{content:"\F11A"}.fa-gamepad:before{content:"\F11B"}.fa-keyboard-o:before{content:"\F11C"}.fa-flag-o:before{content:"\F11D"}.fa-flag-checkered:before{content:"\F11E"}.fa-terminal:before{content:"\F120"}.fa-code:before{content:"\F121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\F122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\F123"}.fa-location-arrow:before{content:"\F124"}.fa-crop:before{content:"\F125"}.fa-code-fork:before{content:"\F126"}.fa-chain-broken:before,.fa-unlink:before{content:"\F127"}.fa-question:before{content:"\F128"}.fa-info:before{content:"\F129"}.fa-exclamation:before{content:"\F12A"}.fa-superscript:before{content:"\F12B"}.fa-subscript:before{content:"\F12C"}.fa-eraser:before{content:"\F12D"}.fa-puzzle-piece:before{content:"\F12E"}.fa-microphone:before{content:"\F130"}.fa-microphone-slash:before{content:"\F131"}.fa-shield:before{content:"\F132"}.fa-calendar-o:before{content:"\F133"}.fa-fire-extinguisher:before{content:"\F134"}.fa-rocket:before{content:"\F135"}.fa-maxcdn:before{content:"\F136"}.fa-chevron-circle-left:before{content:"\F137"}.fa-chevron-circle-right:before{content:"\F138"}.fa-chevron-circle-up:before{content:"\F139"}.fa-chevron-circle-down:before{content:"\F13A"}.fa-html5:before{content:"\F13B"}.fa-css3:before{content:"\F13C"}.fa-anchor:before{content:"\F13D"}.fa-unlock-alt:before{content:"\F13E"}.fa-bullseye:before{content:"\F140"}.fa-ellipsis-h:before{content:"\F141"}.fa-ellipsis-v:before{content:"\F142"}.fa-rss-square:before{content:"\F143"}.fa-play-circle:before{content:"\F144"}.fa-ticket:before{content:"\F145"}.fa-minus-square:before{content:"\F146"}.fa-minus-square-o:before{content:"\F147"}.fa-level-up:before{content:"\F148"}.fa-level-down:before{content:"\F149"}.fa-check-square:before{content:"\F14A"}.fa-pencil-square:before{content:"\F14B"}.fa-external-link-square:before{content:"\F14C"}.fa-share-square:before{content:"\F14D"}.fa-compass:before{content:"\F14E"}.fa-caret-square-o-down:before,.fa-toggle-down:before{content:"\F150"}.fa-caret-square-o-up:before,.fa-toggle-up:before{content:"\F151"}.fa-caret-square-o-right:before,.fa-toggle-right:before{content:"\F152"}.fa-eur:before,.fa-euro:before{content:"\F153"}.fa-gbp:before{content:"\F154"}.fa-dollar:before,.fa-usd:before{content:"\F155"}.fa-inr:before,.fa-rupee:before{content:"\F156"}.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen:before{content:"\F157"}.fa-rouble:before,.fa-rub:before,.fa-ruble:before{content:"\F158"}.fa-krw:before,.fa-won:before{content:"\F159"}.fa-bitcoin:before,.fa-btc:before{content:"\F15A"}.fa-file:before{content:"\F15B"}.fa-file-text:before{content:"\F15C"}.fa-sort-alpha-asc:before{content:"\F15D"}.fa-sort-alpha-desc:before{content:"\F15E"}.fa-sort-amount-asc:before{content:"\F160"}.fa-sort-amount-desc:before{content:"\F161"}.fa-sort-numeric-asc:before{content:"\F162"}.fa-sort-numeric-desc:before{content:"\F163"}.fa-thumbs-up:before{content:"\F164"}.fa-thumbs-down:before{content:"\F165"}.fa-youtube-square:before{content:"\F166"}.fa-youtube:before{content:"\F167"}.fa-xing:before{content:"\F168"}.fa-xing-square:before{content:"\F169"}.fa-youtube-play:before{content:"\F16A"}.fa-dropbox:before{content:"\F16B"}.fa-stack-overflow:before{content:"\F16C"}.fa-instagram:before{content:"\F16D"}.fa-flickr:before{content:"\F16E"}.fa-adn:before{content:"\F170"}.fa-bitbucket:before{content:"\F171"}.fa-bitbucket-square:before{content:"\F172"}.fa-tumblr:before{content:"\F173"}.fa-tumblr-square:before{content:"\F174"}.fa-long-arrow-down:before{content:"\F175"}.fa-long-arrow-up:before{content:"\F176"}.fa-long-arrow-left:before{content:"\F177"}.fa-long-arrow-right:before{content:"\F178"}.fa-apple:before{content:"\F179"}.fa-windows:before{content:"\F17A"}.fa-android:before{content:"\F17B"}.fa-linux:before{content:"\F17C"}.fa-dribbble:before{content:"\F17D"}.fa-skype:before{content:"\F17E"}.fa-foursquare:before{content:"\F180"}.fa-trello:before{content:"\F181"}.fa-female:before{content:"\F182"}.fa-male:before{content:"\F183"}.fa-gittip:before,.fa-gratipay:before{content:"\F184"}.fa-sun-o:before{content:"\F185"}.fa-moon-o:before{content:"\F186"}.fa-archive:before{content:"\F187"}.fa-bug:before{content:"\F188"}.fa-vk:before{content:"\F189"}.fa-weibo:before{content:"\F18A"}.fa-renren:before{content:"\F18B"}.fa-pagelines:before{content:"\F18C"}.fa-stack-exchange:before{content:"\F18D"}.fa-arrow-circle-o-right:before{content:"\F18E"}.fa-arrow-circle-o-left:before{content:"\F190"}.fa-caret-square-o-left:before,.fa-toggle-left:before{content:"\F191"}.fa-dot-circle-o:before{content:"\F192"}.fa-wheelchair:before{content:"\F193"}.fa-vimeo-square:before{content:"\F194"}.fa-try:before,.fa-turkish-lira:before{content:"\F195"}.fa-plus-square-o:before{content:"\F196"}.fa-space-shuttle:before{content:"\F197"}.fa-slack:before{content:"\F198"}.fa-envelope-square:before{content:"\F199"}.fa-wordpress:before{content:"\F19A"}.fa-openid:before{content:"\F19B"}.fa-bank:before,.fa-institution:before,.fa-university:before{content:"\F19C"}.fa-graduation-cap:before,.fa-mortar-board:before{content:"\F19D"}.fa-yahoo:before{content:"\F19E"}.fa-google:before{content:"\F1A0"}.fa-reddit:before{content:"\F1A1"}.fa-reddit-square:before{content:"\F1A2"}.fa-stumbleupon-circle:before{content:"\F1A3"}.fa-stumbleupon:before{content:"\F1A4"}.fa-delicious:before{content:"\F1A5"}.fa-digg:before{content:"\F1A6"}.fa-pied-piper-pp:before{content:"\F1A7"}.fa-pied-piper-alt:before{content:"\F1A8"}.fa-drupal:before{content:"\F1A9"}.fa-joomla:before{content:"\F1AA"}.fa-language:before{content:"\F1AB"}.fa-fax:before{content:"\F1AC"}.fa-building:before{content:"\F1AD"}.fa-child:before{content:"\F1AE"}.fa-paw:before{content:"\F1B0"}.fa-spoon:before{content:"\F1B1"}.fa-cube:before{content:"\F1B2"}.fa-cubes:before{content:"\F1B3"}.fa-behance:before{content:"\F1B4"}.fa-behance-square:before{content:"\F1B5"}.fa-steam:before{content:"\F1B6"}.fa-steam-square:before{content:"\F1B7"}.fa-recycle:before{content:"\F1B8"}.fa-automobile:before,.fa-car:before{content:"\F1B9"}.fa-cab:before,.fa-taxi:before{content:"\F1BA"}.fa-tree:before{content:"\F1BB"}.fa-spotify:before{content:"\F1BC"}.fa-deviantart:before{content:"\F1BD"}.fa-soundcloud:before{content:"\F1BE"}.fa-database:before{content:"\F1C0"}.fa-file-pdf-o:before{content:"\F1C1"}.fa-file-word-o:before{content:"\F1C2"}.fa-file-excel-o:before{content:"\F1C3"}.fa-file-powerpoint-o:before{content:"\F1C4"}.fa-file-image-o:before,.fa-file-photo-o:before,.fa-file-picture-o:before{content:"\F1C5"}.fa-file-archive-o:before,.fa-file-zip-o:before{content:"\F1C6"}.fa-file-audio-o:before,.fa-file-sound-o:before{content:"\F1C7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\F1C8"}.fa-file-code-o:before{content:"\F1C9"}.fa-vine:before{content:"\F1CA"}.fa-codepen:before{content:"\F1CB"}.fa-jsfiddle:before{content:"\F1CC"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-ring:before,.fa-life-saver:before,.fa-support:before{content:"\F1CD"}.fa-circle-o-notch:before{content:"\F1CE"}.fa-ra:before,.fa-rebel:before,.fa-resistance:before{content:"\F1D0"}.fa-empire:before,.fa-ge:before{content:"\F1D1"}.fa-git-square:before{content:"\F1D2"}.fa-git:before{content:"\F1D3"}.fa-hacker-news:before,.fa-y-combinator-square:before,.fa-yc-square:before{content:"\F1D4"}.fa-tencent-weibo:before{content:"\F1D5"}.fa-qq:before{content:"\F1D6"}.fa-wechat:before,.fa-weixin:before{content:"\F1D7"}.fa-paper-plane:before,.fa-send:before{content:"\F1D8"}.fa-paper-plane-o:before,.fa-send-o:before{content:"\F1D9"}.fa-history:before{content:"\F1DA"}.fa-circle-thin:before{content:"\F1DB"}.fa-header:before{content:"\F1DC"}.fa-paragraph:before{content:"\F1DD"}.fa-sliders:before{content:"\F1DE"}.fa-share-alt:before{content:"\F1E0"}.fa-share-alt-square:before{content:"\F1E1"}.fa-bomb:before{content:"\F1E2"}.fa-futbol-o:before,.fa-soccer-ball-o:before{content:"\F1E3"}.fa-tty:before{content:"\F1E4"}.fa-binoculars:before{content:"\F1E5"}.fa-plug:before{content:"\F1E6"}.fa-slideshare:before{content:"\F1E7"}.fa-twitch:before{content:"\F1E8"}.fa-yelp:before{content:"\F1E9"}.fa-newspaper-o:before{content:"\F1EA"}.fa-wifi:before{content:"\F1EB"}.fa-calculator:before{content:"\F1EC"}.fa-paypal:before{content:"\F1ED"}.fa-google-wallet:before{content:"\F1EE"}.fa-cc-visa:before{content:"\F1F0"}.fa-cc-mastercard:before{content:"\F1F1"}.fa-cc-discover:before{content:"\F1F2"}.fa-cc-amex:before{content:"\F1F3"}.fa-cc-paypal:before{content:"\F1F4"}.fa-cc-stripe:before{content:"\F1F5"}.fa-bell-slash:before{content:"\F1F6"}.fa-bell-slash-o:before{content:"\F1F7"}.fa-trash:before{content:"\F1F8"}.fa-copyright:before{content:"\F1F9"}.fa-at:before{content:"\F1FA"}.fa-eyedropper:before{content:"\F1FB"}.fa-paint-brush:before{content:"\F1FC"}.fa-birthday-cake:before{content:"\F1FD"}.fa-area-chart:before{content:"\F1FE"}.fa-pie-chart:before{content:"\F200"}.fa-line-chart:before{content:"\F201"}.fa-lastfm:before{content:"\F202"}.fa-lastfm-square:before{content:"\F203"}.fa-toggle-off:before{content:"\F204"}.fa-toggle-on:before{content:"\F205"}.fa-bicycle:before{content:"\F206"}.fa-bus:before{content:"\F207"}.fa-ioxhost:before{content:"\F208"}.fa-angellist:before{content:"\F209"}.fa-cc:before{content:"\F20A"}.fa-ils:before,.fa-shekel:before,.fa-sheqel:before{content:"\F20B"}.fa-meanpath:before{content:"\F20C"}.fa-buysellads:before{content:"\F20D"}.fa-connectdevelop:before{content:"\F20E"}.fa-dashcube:before{content:"\F210"}.fa-forumbee:before{content:"\F211"}.fa-leanpub:before{content:"\F212"}.fa-sellsy:before{content:"\F213"}.fa-shirtsinbulk:before{content:"\F214"}.fa-simplybuilt:before{content:"\F215"}.fa-skyatlas:before{content:"\F216"}.fa-cart-plus:before{content:"\F217"}.fa-cart-arrow-down:before{content:"\F218"}.fa-diamond:before{content:"\F219"}.fa-ship:before{content:"\F21A"}.fa-user-secret:before{content:"\F21B"}.fa-motorcycle:before{content:"\F21C"}.fa-street-view:before{content:"\F21D"}.fa-heartbeat:before{content:"\F21E"}.fa-venus:before{content:"\F221"}.fa-mars:before{content:"\F222"}.fa-mercury:before{content:"\F223"}.fa-intersex:before,.fa-transgender:before{content:"\F224"}.fa-transgender-alt:before{content:"\F225"}.fa-venus-double:before{content:"\F226"}.fa-mars-double:before{content:"\F227"}.fa-venus-mars:before{content:"\F228"}.fa-mars-stroke:before{content:"\F229"}.fa-mars-stroke-v:before{content:"\F22A"}.fa-mars-stroke-h:before{content:"\F22B"}.fa-neuter:before{content:"\F22C"}.fa-genderless:before{content:"\F22D"}.fa-facebook-official:before{content:"\F230"}.fa-pinterest-p:before{content:"\F231"}.fa-whatsapp:before{content:"\F232"}.fa-server:before{content:"\F233"}.fa-user-plus:before{content:"\F234"}.fa-user-times:before{content:"\F235"}.fa-bed:before,.fa-hotel:before{content:"\F236"}.fa-viacoin:before{content:"\F237"}.fa-train:before{content:"\F238"}.fa-subway:before{content:"\F239"}.fa-medium:before{content:"\F23A"}.fa-y-combinator:before,.fa-yc:before{content:"\F23B"}.fa-optin-monster:before{content:"\F23C"}.fa-opencart:before{content:"\F23D"}.fa-expeditedssl:before{content:"\F23E"}.fa-battery-4:before,.fa-battery-full:before,.fa-battery:before{content:"\F240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\F241"}.fa-battery-2:before,.fa-battery-half:before{content:"\F242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\F243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\F244"}.fa-mouse-pointer:before{content:"\F245"}.fa-i-cursor:before{content:"\F246"}.fa-object-group:before{content:"\F247"}.fa-object-ungroup:before{content:"\F248"}.fa-sticky-note:before{content:"\F249"}.fa-sticky-note-o:before{content:"\F24A"}.fa-cc-jcb:before{content:"\F24B"}.fa-cc-diners-club:before{content:"\F24C"}.fa-clone:before{content:"\F24D"}.fa-balance-scale:before{content:"\F24E"}.fa-hourglass-o:before{content:"\F250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\F251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\F252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\F253"}.fa-hourglass:before{content:"\F254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\F255"}.fa-hand-paper-o:before,.fa-hand-stop-o:before{content:"\F256"}.fa-hand-scissors-o:before{content:"\F257"}.fa-hand-lizard-o:before{content:"\F258"}.fa-hand-spock-o:before{content:"\F259"}.fa-hand-pointer-o:before{content:"\F25A"}.fa-hand-peace-o:before{content:"\F25B"}.fa-trademark:before{content:"\F25C"}.fa-registered:before{content:"\F25D"}.fa-creative-commons:before{content:"\F25E"}.fa-gg:before{content:"\F260"}.fa-gg-circle:before{content:"\F261"}.fa-tripadvisor:before{content:"\F262"}.fa-odnoklassniki:before{content:"\F263"}.fa-odnoklassniki-square:before{content:"\F264"}.fa-get-pocket:before{content:"\F265"}.fa-wikipedia-w:before{content:"\F266"}.fa-safari:before{content:"\F267"}.fa-chrome:before{content:"\F268"}.fa-firefox:before{content:"\F269"}.fa-opera:before{content:"\F26A"}.fa-internet-explorer:before{content:"\F26B"}.fa-television:before,.fa-tv:before{content:"\F26C"}.fa-contao:before{content:"\F26D"}.fa-500px:before{content:"\F26E"}.fa-amazon:before{content:"\F270"}.fa-calendar-plus-o:before{content:"\F271"}.fa-calendar-minus-o:before{content:"\F272"}.fa-calendar-times-o:before{content:"\F273"}.fa-calendar-check-o:before{content:"\F274"}.fa-industry:before{content:"\F275"}.fa-map-pin:before{content:"\F276"}.fa-map-signs:before{content:"\F277"}.fa-map-o:before{content:"\F278"}.fa-map:before{content:"\F279"}.fa-commenting:before{content:"\F27A"}.fa-commenting-o:before{content:"\F27B"}.fa-houzz:before{content:"\F27C"}.fa-vimeo:before{content:"\F27D"}.fa-black-tie:before{content:"\F27E"}.fa-fonticons:before{content:"\F280"}.fa-reddit-alien:before{content:"\F281"}.fa-edge:before{content:"\F282"}.fa-credit-card-alt:before{content:"\F283"}.fa-codiepie:before{content:"\F284"}.fa-modx:before{content:"\F285"}.fa-fort-awesome:before{content:"\F286"}.fa-usb:before{content:"\F287"}.fa-product-hunt:before{content:"\F288"}.fa-mixcloud:before{content:"\F289"}.fa-scribd:before{content:"\F28A"}.fa-pause-circle:before{content:"\F28B"}.fa-pause-circle-o:before{content:"\F28C"}.fa-stop-circle:before{content:"\F28D"}.fa-stop-circle-o:before{content:"\F28E"}.fa-shopping-bag:before{content:"\F290"}.fa-shopping-basket:before{content:"\F291"}.fa-hashtag:before{content:"\F292"}.fa-bluetooth:before{content:"\F293"}.fa-bluetooth-b:before{content:"\F294"}.fa-percent:before{content:"\F295"}.fa-gitlab:before{content:"\F296"}.fa-wpbeginner:before{content:"\F297"}.fa-wpforms:before{content:"\F298"}.fa-envira:before{content:"\F299"}.fa-universal-access:before{content:"\F29A"}.fa-wheelchair-alt:before{content:"\F29B"}.fa-question-circle-o:before{content:"\F29C"}.fa-blind:before{content:"\F29D"}.fa-audio-description:before{content:"\F29E"}.fa-volume-control-phone:before{content:"\F2A0"}.fa-braille:before{content:"\F2A1"}.fa-assistive-listening-systems:before{content:"\F2A2"}.fa-american-sign-language-interpreting:before,.fa-asl-interpreting:before{content:"\F2A3"}.fa-deaf:before,.fa-deafness:before,.fa-hard-of-hearing:before{content:"\F2A4"}.fa-glide:before{content:"\F2A5"}.fa-glide-g:before{content:"\F2A6"}.fa-sign-language:before,.fa-signing:before{content:"\F2A7"}.fa-low-vision:before{content:"\F2A8"}.fa-viadeo:before{content:"\F2A9"}.fa-viadeo-square:before{content:"\F2AA"}.fa-snapchat:before{content:"\F2AB"}.fa-snapchat-ghost:before{content:"\F2AC"}.fa-snapchat-square:before{content:"\F2AD"}.fa-pied-piper:before{content:"\F2AE"}.fa-first-order:before{content:"\F2B0"}.fa-yoast:before{content:"\F2B1"}.fa-themeisle:before{content:"\F2B2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\F2B3"}.fa-fa:before,.fa-font-awesome:before{content:"\F2B4"}.fa-handshake-o:before{content:"\F2B5"}.fa-envelope-open:before{content:"\F2B6"}.fa-envelope-open-o:before{content:"\F2B7"}.fa-linode:before{content:"\F2B8"}.fa-address-book:before{content:"\F2B9"}.fa-address-book-o:before{content:"\F2BA"}.fa-address-card:before,.fa-vcard:before{content:"\F2BB"}.fa-address-card-o:before,.fa-vcard-o:before{content:"\F2BC"}.fa-user-circle:before{content:"\F2BD"}.fa-user-circle-o:before{content:"\F2BE"}.fa-user-o:before{content:"\F2C0"}.fa-id-badge:before{content:"\F2C1"}.fa-drivers-license:before,.fa-id-card:before{content:"\F2C2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\F2C3"}.fa-quora:before{content:"\F2C4"}.fa-free-code-camp:before{content:"\F2C5"}.fa-telegram:before{content:"\F2C6"}.fa-thermometer-4:before,.fa-thermometer-full:before,.fa-thermometer:before{content:"\F2C7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\F2C8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\F2C9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\F2CA"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\F2CB"}.fa-shower:before{content:"\F2CC"}.fa-bath:before,.fa-bathtub:before,.fa-s15:before{content:"\F2CD"}.fa-podcast:before{content:"\F2CE"}.fa-window-maximize:before{content:"\F2D0"}.fa-window-minimize:before{content:"\F2D1"}.fa-window-restore:before{content:"\F2D2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\F2D3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\F2D4"}.fa-bandcamp:before{content:"\F2D5"}.fa-grav:before{content:"\F2D6"}.fa-etsy:before{content:"\F2D7"}.fa-imdb:before{content:"\F2D8"}.fa-ravelry:before{content:"\F2D9"}.fa-eercast:before{content:"\F2DA"}.fa-microchip:before{content:"\F2DB"}.fa-snowflake-o:before{content:"\F2DC"}.fa-superpowers:before{content:"\F2DD"}.fa-wpexplorer:before{content:"\F2DE"}.fa-meetup:before{content:"\F2E0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.btn{color:#333;background-color:#eee;background-image:-webkit-gradient(linear,left top,left bottom,from(#fcfcfc),to(#eee));background-image:linear-gradient(#fcfcfc,#eee);border:1px solid #d5d5d5;border-radius:3px;text-align:center}.btn:hover{background-color:#ddd;background-image:-webkit-gradient(linear,left top,left bottom,from(#eee),to(#ddd));background-image:linear-gradient(#eee,#ddd);border-color:#ccc;color:#333;text-decoration:none}.btn-primary{background-color:#60b044;background-image:-webkit-gradient(linear,left top,left bottom,from(#8add6d),to(#60b044));background-image:linear-gradient(#8add6d,#60b044);border-color:#5ca941;text-shadow:0 -1px 0 rgba(0,0,0,.15)}.btn-primary:hover{background-color:#569e3d;background-image:-webkit-gradient(linear,left top,left bottom,from(#79d858),to(#569e3d));background-image:linear-gradient(#79d858,#569e3d);border-color:#4a993e;color:#fff}.btn-danger{color:#900}.btn-danger:hover{background-color:#b33630;background-image:-webkit-gradient(linear,left top,left bottom,from(#dc5f59),to(#b33630));background-image:linear-gradient(#dc5f59,#b33630);border-color:#cd504a;color:#fff}.btn-add{position:relative;top:3px;border:1px solid #576675;border-radius:50%;width:15px;margin-right:3px}header{background-color:#325776}header .main-cta{position:relative;top:16px}.logo{margin:10px 15px}.logo a:hover{background-color:transparent;color:#fff}.header-search{padding:0;margin:auto 0}.header-search-form{position:relative}.header-search-form span{color:#d7d7d7;font-size:12px;left:10px;position:absolute;top:10px}.header-search-form input{border:0;color:#fff;padding-left:29px}.header-nav{margin-top:24px;text-align:right}.header-nav-item{display:inline;margin-right:10px}.header-nav-item:last-child{margin-right:0}.header-nav-item-link{color:#fff;font-weight:300;padding:3px 11px;text-decoration:none}.header-nav-item-link:hover{background-color:#497193;border-radius:3px;color:#fff;padding:3px 11px;text-decoration:none}.header-search-input{background:#497193;border-color:#497193;color:#fff}.header-search-input::-webkit-input-placeholder{color:hsla(0,0%,100%,.4)}.header-search-input::-ms-input-placeholder{color:hsla(0,0%,100%,.4)}.header-search-input::placeholder{color:hsla(0,0%,100%,.4)}.header-search-input:-ms-input-placeholder{color:hsla(0,0%,100%,.4)}.header-search-input:focus{background:#fff;color:#323232}.header-search-results{position:absolute;width:100%;z-index:10}.header-search-result{position:relative;background:#fff;-webkit-box-shadow:0 3px 3px 0 rgba(0,0,0,.3);box-shadow:0 3px 3px 0 rgba(0,0,0,.3);border-bottom:1px solid #eee}.header-search-result a{color:inherit;text-decoration:none;vertical-align:middle;background:transparent}.header-search-result a span{position:absolute;width:100%;height:100%;top:0;left:0;z-index:1}.header-search-result a:hover{background:inherit;color:inherit}.header-search-result .avatar{border-radius:3px;display:inline-block;height:36px;margin:10px;width:36px}.header-search-result .avatar-initials{text-align:center;padding-top:6px;font-size:15px;color:#fff}.header-search-result:last-child{border-bottom:initial}.header-search-result:hover{background:#f5f5f5}@media (max-width:767px){header .mobile-menu{background-color:#58748c;border:1px solid #325776;margin-bottom:20px}header .mobile-menu li{border-bottom:1px solid #475b6b;margin-bottom:0;padding:4px 0}header .mobile-menu li a{text-decoration:none}header .mobile-menu li:last-child{border-bottom:0}header .mobile-menu li.cta{border:0}header .mobile-menu li.cta a{width:100%}.header-search{padding:0;margin:20px 0}.header-search ul{padding-right:26px}}.people-list .breadcrumb{border-bottom:1px solid #eee}.people-list .main-content{margin-top:20px}.people-list .sidebar .sidebar-cta{margin-bottom:20px;padding:15px;text-align:center;width:100%}.people-list .sidebar li{margin-bottom:7px;padding-left:15px;position:relative}.people-list .sidebar li.selected:before{color:#999;content:">";left:0;position:absolute}.people-list .sidebar li .number-contacts-per-tag{float:right}.people-list .clear-filter,.people-list .list{border:1px solid #eee;border-radius:3px}.people-list .clear-filter{position:relative;padding:6px}.people-list .clear-filter a{position:absolute;right:10px}.people-list .people-list-item{border-bottom:1px solid #eee;padding:10px}.people-list .people-list-item:hover{background-color:#f7fbfc}.people-list .people-list-item.sorting{background-color:#f6f8fa;position:relative;padding:10px}.people-list .people-list-item.sorting .options{display:inline;position:absolute;right:10px}.people-list .people-list-item.sorting .options .dropdown-btn:after{content:"\F0D7";font-family:FontAwesome;margin-left:5px}.people-list .people-list-item.sorting .options .dropdown-item{padding:3px 20px 3px 10px}.people-list .people-list-item.sorting .options .dropdown-item:before{content:"\F00C";font-family:FontAwesome;margin-right:5px;color:#fff}.people-list .people-list-item.sorting .options .dropdown-item:hover{background-color:#0366d6;color:#fff}.people-list .people-list-item.sorting .options .dropdown-item.selected:before{color:#999}.people-list .people-list-item .avatar{background-color:#93521e;border-radius:3px;color:#fff;display:inline-block;font-size:15px;height:43px;margin-right:5px;padding-left:5px;padding-top:10px;vertical-align:middle;width:43px}.people-list .people-list-item .avatar.one-letter{padding-left:0;text-align:center}.people-list .people-list-item img{border-radius:3px;margin-right:5px}.people-list .people-list-item a{color:#333;text-decoration:none}.people-list .people-list-item a:hover{background-color:transparent;color:#333}.people-list .people-list-item .people-list-item-information{color:#999;float:right;font-size:12px;font-style:italic;position:relative;text-align:right;top:16px}.blank-people-state{margin-top:30px;text-align:center}.blank-people-state h3{font-weight:400;margin-bottom:30px}.blank-people-state .cta-blank{margin-bottom:30px}.blank-people-state .illustration-blank p{margin-top:30px}.blank-people-state .illustration-blank img{display:block;margin:0 auto 20px}.people-show .pagehead{background-color:#f9f9fb;border-bottom:1px solid #eee;position:relative;padding-bottom:20px}.people-show .pagehead .people-profile-information{margin-bottom:10px;position:relative}.people-show .pagehead .people-profile-information .avatar{background-color:#93521e;border-radius:3px;color:#fff;display:inline-block;font-size:30px;height:87px;margin-right:5px;padding-left:5px;padding-top:21px;position:absolute;width:87px}.people-show .pagehead .people-profile-information .avatar.one-letter{padding-left:0;text-align:center}.people-show .pagehead .people-profile-information img{border-radius:3px;position:absolute}.people-show .pagehead .people-profile-information h2{display:block;font-size:24px;font-weight:300;margin-bottom:0;padding-left:100px;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;width:calc(100% - 245px);margin-right:-9999px}@media (max-width:480px){.people-show .pagehead .people-profile-information h2{width:100%}}.people-show .pagehead .people-profile-information .profile-detail-summary{padding-left:100px;margin-top:3px}.people-show .pagehead .people-profile-information .profile-detail-summary li:not(:last-child){margin-right:10px}.people-show .pagehead .people-profile-information #tagsForm{padding-left:100px;position:relative}.people-show .pagehead .people-profile-information #tagsForm #tags_tagsinput{height:40px!important;min-height:40px!important;width:370px!important;display:inline-block;overflow:hidden}.people-show .pagehead .people-profile-information #tagsForm .tagsFormActions{display:inline;position:relative;top:-17px}.people-show .pagehead .people-profile-information .tags{padding:0;padding-left:100px;list-style:none;line-height:20px;margin:0;overflow:hidden;margin-top:8px}.people-show .pagehead .people-profile-information .tags li{float:left}.people-show .pagehead .quick-actions{position:absolute;right:0;top:14px}.people-show .main-content{background-color:#fff;padding-bottom:20px;padding-top:40px}.people-show .main-content .section-title{position:relative}.people-show .main-content .section-title h3{border-bottom:1px solid #e1e2e3;font-size:18px;font-weight:400;margin-bottom:20px;padding-bottom:10px;padding-left:23px;padding-top:10px;position:relative}.people-show .main-content .section-title .icon-section{position:absolute;top:14px;width:17px}.people-show .main-content .sidebar .sidebar-cta a{margin-bottom:20px;width:100%}.people-show .profile .sidebar-box{background-color:#fafafa;border:1px solid #eee;border-radius:3px;color:#333;margin-bottom:25px;padding:10px;position:relative}.people-show .profile .sidebar-box-title{margin-bottom:4px;position:relative}.people-show .profile .sidebar-box-title strong{font-size:12px;font-weight:500;text-transform:uppercase}.people-show .profile .sidebar-box-title a{position:absolute;right:7px}.people-show .profile .sidebar-box-title img{left:-3px;position:relative;width:20px}.people-show .profile .sidebar-box-title img.people-information{top:-4px}.people-show .profile .sidebar-box-paragraph{margin-bottom:0}.people-show .profile .people-list li{margin-bottom:4px}.people-show .profile .introductions li,.people-show .profile .people-information li,.people-show .profile .work li{color:#999;font-size:12px;margin-bottom:10px}.people-show .profile .introductions li:last-child,.people-show .profile .people-information li:last-child,.people-show .profile .work li:last-child{margin-bottom:0}.people-show .profile .introductions li i,.people-show .profile .people-information li i,.people-show .profile .work li i{text-align:center;width:17px}.people-show .profile .section{margin-bottom:35px}.people-show .profile .section.food-preferencies .section-heading img,.people-show .profile .section.kids .section-heading img{position:relative;top:-3px}.people-show .profile .section .inline-action{display:inline;margin-left:10px}.people-show .profile .section .inline-action a{margin-right:5px}.people-show .profile .section .section-heading{border-bottom:1px solid #eee;padding-bottom:4px;margin-bottom:10px}.people-show .profile .section .section-heading img{width:25px}.people-show .profile .section .section-action{display:inline;float:right}.people-show .profile .section .section-blank{background-color:#fafafa;border:1px solid #eee;border-radius:3px;padding:15px;text-align:center}.people-show .profile .section .section-blank h3{font-weight:400;font-size:14px}.people-show .gifts .gift-recipient{font-size:15px}.people-show .gifts .gift-recipient:not(:first-child){margin-top:25px}.people-show .gifts .offered{background-color:#5cb85c;border-radius:10rem;display:inline-block;font-size:75%;font-weight:400;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;padding:2px 0;padding-right:.6em;padding-left:.6em}.people-show .gifts .gift-list-item{border-top:1px solid #eee;padding:5px 0}.people-show .gifts .gift-list-item:last-child{border-bottom:0}.people-show .gifts .gift-list-item-url{display:inline;font-size:12px;margin-left:10px;padding:5px 0 0}.people-show .gifts .gift-list-item-information{display:inline;margin-left:10px}.people-show .gifts .gift-list-item-actions,.people-show .gifts .gift-list-item-date{color:#999;display:inline;font-size:12px}.people-show .gifts .gift-list-item-actions a,.people-show .gifts .gift-list-item-date a{color:#999;font-size:11px;margin-right:5px;text-decoration:underline}.people-show .gifts .gift-list-item-actions li,.people-show .gifts .gift-list-item-date li{display:inline}.people-show .gifts .gift-list-item-actions{margin-left:5px}.people-show .gifts .for{font-style:italic;margin-left:10px}.people-show .activities .date,.people-show .calls .date,.people-show .debts .date,.people-show .gifts .date,.people-show .reminders .date,.people-show .tasks .date{color:#777;font-size:12px;margin-right:10px;width:100px}.people-show .activities .frequency-type,.people-show .activities .value,.people-show .calls .frequency-type,.people-show .calls .value,.people-show .debts .frequency-type,.people-show .debts .value,.people-show .gifts .frequency-type,.people-show .gifts .value,.people-show .reminders .frequency-type,.people-show .reminders .value,.people-show .tasks .frequency-type,.people-show .tasks .value{background-color:#ecf9ff;border:1px solid #eee;border-radius:3px;display:inline;font-size:12px;padding:0 6px}.people-show .activities .list-actions,.people-show .calls .list-actions,.people-show .debts .list-actions,.people-show .gifts .list-actions,.people-show .reminders .list-actions,.people-show .tasks .list-actions{position:relative;text-align:center;width:60px}.people-show .activities .list-actions a:first-child,.people-show .calls .list-actions a:first-child,.people-show .debts .list-actions a:first-child,.people-show .gifts .list-actions a:first-child,.people-show .reminders .list-actions a:first-child,.people-show .tasks .list-actions a:first-child{margin-right:5px}.people-show .activities .list-actions a.edit,.people-show .calls .list-actions a.edit,.people-show .debts .list-actions a.edit,.people-show .gifts .list-actions a.edit,.people-show .reminders .list-actions a.edit,.people-show .tasks .list-actions a.edit{position:relative;top:1px}.people-show .activities .empty,.people-show .calls .empty,.people-show .debts .empty,.people-show .gifts .empty,.people-show .reminders .empty,.people-show .tasks .empty{font-style:italic}.people-show .reminders .frequency-type{white-space:nowrap}.people-show .reminders input[type=date]{margin-bottom:20px;width:170px}.people-show .reminders .form-check input[type=number]{display:inline;width:50px}.people-show .debts .debts-list .debt-nature{width:220px}.people-show.kid .significant-other-blank-state,.people-show.significantother .significant-other-blank-state{text-align:center}.people-show.kid .significant-other-blank-state img,.people-show.significantother .significant-other-blank-state img{margin-bottom:20px;margin-top:10px}.people-show.kid .central-form .hint-reminder,.people-show.significantother .central-form .hint-reminder{margin-top:10px}.people-show.kid .central-form .hint-reminder p,.people-show.kid .central-form .real-contact-checkbox,.people-show.significantother .central-form .hint-reminder p,.people-show.significantother .central-form .real-contact-checkbox{margin-bottom:0}.people-show.kid .central-form .real-contact-checkbox input,.people-show.significantother .central-form .real-contact-checkbox input{margin-right:5px}.people-show.kid .central-form .real-contact-checkbox .help,.people-show.significantother .central-form .real-contact-checkbox .help{color:#999}.create-people .import{margin-bottom:30px;text-align:center}@media (max-width:480px){.people-list{margin-top:20px}.people-list .people-list-mobile{border-bottom:1px solid #dfdfdf}.people-list .people-list-mobile li{padding:6px 0}.people-list .people-list-item .people-list-item-information{display:none}.people-show .pagehead .people-profile-information{margin-bottom:20px;margin-top:10px}.people-show .pagehead .people-profile-information h2{padding-left:80px}.people-show .pagehead .people-profile-information h2 span{display:none}.people-show .pagehead .people-profile-information #tagsForm{display:block;margin-top:40px;padding-left:0}.people-show .pagehead .people-profile-information #tagsForm #tags_tagsinput{width:100%!important}.people-show .pagehead .people-profile-information #tagsForm .tagsFormActions{display:block;margin-top:20px}.people-show .pagehead .people-profile-information .profile-detail-summary{padding-left:0;margin-top:10px}.people-show .pagehead .people-profile-information .profile-detail-summary li{display:block;margin-right:0}.people-show .pagehead .people-profile-information .profile-detail-summary li:not(:last-child):after{content:"";margin-left:0}.people-show .pagehead .people-profile-information .avatar{height:67px;width:67px;padding-top:11px}.people-show .pagehead .people-profile-information .tags{padding-left:80px}.people-show .pagehead .edit-information{position:relative;width:100%;margin-bottom:10px}.people-show .main-content.modal{margin-top:0}.people-show .main-content.dashboard .sidebar-box{margin-bottom:15px}.people-show .main-content.dashboard .sidebar-cta{margin-top:15px}.people-show .main-content.activities .cta-mobile,.people-show .main-content.dashboard .people-information-actions{margin-bottom:20px}.people-show .main-content.activities .cta-mobile a{width:100%}.people-show .main-content.activities .activities-list .activity-item-date{top:-4px}.create-people,.create-people .btn{width:100%}.list-add-item{margin-left:0}.inline-form .task-add-title,.inline-form textarea{width:100%}.box-links{margin-bottom:10px;position:relative;right:0;top:0}.box-links li{margin-left:0}}.journal-calendar-text{top:19px;line-height:16px;width:62px}.journal-calendar-box{width:62px;margin-right:11px}.journal-calendar-content{width:calc(100% - 73px)}.journal-line{-webkit-transition:all .2s;transition:all .2s}.journal-line:hover{border-color:#00a8ff}.marketing.homepage .top-page{background-color:#313940;border-bottom:1px solid #d0d0d0;color:#fff;padding-top:40px;text-align:center}.marketing.homepage .top-page .navigation{position:absolute;right:20px;top:20px}.marketing.homepage .top-page .navigation a{border:1px solid #fff;border-radius:6px;color:#fff;padding:10px;text-decoration:none}.marketing.homepage .top-page h1{font-size:32px;font-weight:300;margin-bottom:40px}.marketing.homepage .top-page p{font-size:18px;font-weight:300;margin:0 auto;max-width:550px}.marketing.homepage .top-page p.cta{margin-bottom:50px;margin-top:70px}.marketing.homepage .top-page p.cta a{font-size:20px;font-weight:300;padding:20px 50px}.marketing.homepage .top-page .logo{margin-bottom:20px}.marketing.homepage .before-sections{text-align:center}.marketing.homepage .before-sections h3{font-size:25px;font-weight:300;margin-bottom:40px;margin-top:80px}.marketing.homepage .section-homepage{border-bottom:1px solid #dcdcdc;padding:60px 0}.marketing.homepage .section-homepage .visual{text-align:center}.marketing.homepage .section-homepage h2{font-size:18px;font-weight:300;margin-bottom:25px}.marketing.homepage .section-homepage.dates h2{margin-top:40px}.marketing.homepage .section-homepage.activities h2{margin-top:130px}.marketing.homepage .section-homepage.features h3{font-size:18px;font-weight:300;margin-bottom:40px;text-align:center}.marketing.homepage .section-homepage.features ul li{font-size:16px;margin:10px auto;max-width:60%}.marketing.homepage .section-homepage.features ul li i{color:#417741}.marketing.homepage .section-homepage.try{text-align:center}.marketing.homepage .section-homepage.try p{margin-bottom:50px;margin-top:70px}.marketing.homepage .section-homepage.try p a{font-size:20px;font-weight:300;padding:20px 50px}.marketing.homepage .why{background-color:#313940;color:#fff;padding-bottom:50px}.marketing.homepage .why h3{font-size:20px;font-weight:300;margin-bottom:30px;padding-top:50px;text-align:center}.marketing.homepage .why p{font-size:16px;font-weight:300;margin:10px auto 20px;max-width:550px}.marketing .footer-marketing{margin-bottom:40px;padding-top:40px;text-align:center}.marketing .footer-marketing a{margin-right:10px}.marketing.register{background-color:#fafbfc;padding-top:90px;padding-bottom:40px}.marketing.register .signup-box{background-color:#fff;border:1px solid #e4edf5;border-radius:5px;padding:50px 20px 20px}.marketing.register .signup-box .logo{left:45%;position:absolute;top:-33px}.marketing.register .signup-box h2,.marketing.register .signup-box h3{font-weight:300;text-align:center}.marketing.register .signup-box h2{margin-top:20px;margin-bottom:20px}.marketing.register .signup-box h3{font-size:15px;margin-bottom:30px}.marketing.register .signup-box .form-inline label{display:block}.marketing.register .signup-box a.action,.marketing.register .signup-box button{margin-top:10px;width:100%}.marketing.register .signup-box .help{font-size:13px;text-align:center}.marketing.register .signup-box .checkbox{display:none}.marketing.register .signup-box .links{margin-top:20px}.marketing.register .signup-box .links li{font-size:14px;margin-bottom:5px}.marketing .subpages .header{background-color:#313940;text-align:center}.privacy,.releases,.statistics{max-width:750px;margin-left:auto;margin-right:auto;padding:20px 30px 100px;margin-top:50px;background-color:#fff;-webkit-box-shadow:0 8px 20px #dadbdd;box-shadow:0 8px 20px #dadbdd}.privacy h2,.releases h2,.statistics h2{text-align:center}.privacy h3,.releases h3,.statistics h3{font-size:15px;margin-top:30px}.releases ul{list-style-type:disc;margin-left:20px}@media (max-width:480px){.marketing.homepage img{max-width:100%}.marketing.homepage .before-sections h3{margin-bottom:0}.marketing.homepage .section-homepage.people .visual{margin-top:40px}.marketing.homepage .section-homepage.activities h2{margin-top:0}.marketing.homepage .section-homepage.activities .visual{margin-top:40px}.marketing.homepage .section-homepage.features ul li{max-width:100%}.marketing.homepage .section-homepage.try{padding:30px 0}.marketing.register .signup-box .logo{left:39%;top:-47px}}.settings .breadcrumb{margin-bottom:20px}.settings .sidebar-menu ul{border:1px solid #dfdfdf;border-radius:3px}.settings .sidebar-menu li{padding:10px}.settings .sidebar-menu li:not(:last-child){border-bottom:1px solid #dfdfdf}.settings .sidebar-menu li.selected{background-color:#f7fbfc}.settings .sidebar-menu li.selected i{color:green}.settings .sidebar-menu li a{width:100%}.settings .sidebar-menu li i{margin-right:5px;color:#999}.settings .settings-delete,.settings .settings-reset{border:1px solid;padding:10px;margin-top:40px}.settings .settings-delete h2,.settings .settings-reset h2{font-weight:400;font-size:16px}.settings .settings-delete{border-color:#d9534f;border-radius:3px}.settings .settings-reset{border-color:#f0ad4e;border-radius:3px}.settings .warning-zone{margin-bottom:30px;margin-top:30px;padding:10px 10px 5px 15px;border:1px solid #f1c897;border-radius:3px;background-color:#ffe8bc}.settings .users-list h3.with-actions{padding-bottom:13px}.settings .users-list h3.with-actions a{float:right}.settings .users-list .table-cell.actions{text-align:right}.settings .blank-screen{text-align:center}.settings .blank-screen img{margin-bottom:30px;margin-top:30px}.settings .blank-screen h2{font-weight:400;margin-bottom:10px}.settings .blank-screen h3{margin-top:0;border-bottom:0}.settings .blank-screen p{margin:0 auto;width:400px}.settings .blank-screen p.cta{margin-top:40px;margin-bottom:10px}.settings .blank-screen .requires-subscription{margin-top:20px;font-size:13px;color:#999}.settings .subscriptions .upgrade-benefits{margin-bottom:20px}.settings .subscriptions .upgrade-benefits li{margin-left:20px;list-style-type:disc}.settings .subscriptions #label-card-element{margin-bottom:15px}.settings .subscriptions .downgrade ul{background-color:#f8f8f8;border:1px solid #dfdfdf;border-radius:6px;margin-bottom:20px;padding:25px}.settings .subscriptions .downgrade li{padding-bottom:15px}.settings .subscriptions .downgrade li:not(:last-child){border-bottom:1px solid #dfdfdf}.settings .subscriptions .downgrade li:not(:first-child){margin-top:10px}.settings .subscriptions .downgrade li.success .rule-title{text-decoration:line-through}.settings .subscriptions .downgrade li.success .icon:after{font-family:FontAwesome;font-size:17px;color:#0eb0b7;content:"\F058";top:10px;position:relative}.settings .subscriptions .downgrade li.fail .icon:after{font-family:FontAwesome;font-size:17px;color:#cd4400;content:"\F057";top:10px;position:relative}.settings .subscriptions .downgrade li .rule-title{font-size:18px;padding-left:5px}.settings .subscriptions .downgrade li .rule-to-succeed{font-size:13px;display:block;padding-left:27px}.settings .report .report-summary{background-color:#fafafa;border:1px solid #dfdfdf;border-radius:3px;margin-bottom:30px}.settings .report .report-summary li{padding:5px 10px}.settings .report .report-summary li:not(:last-child){border-bottom:1px solid #dfdfdf}.settings .report .report-summary li span{font-weight:600}.settings .report .status{text-align:center;width:95px}.settings .report .reason{font-style:italic}.settings.import .success{color:#5cb85c}.settings.import .failure{color:#d9534f}.settings.import .warning{color:#f0ad4e}.settings.import .date{font-size:13px;margin-left:10px}.settings.import h3.with-actions{padding-bottom:13px}.settings.import h3.with-actions a{float:right}.settings.upload .warning-zone{padding:20px 15px}.settings.upload .warning-zone ul{margin-left:20px;list-style-type:disc}.settings .tags-list .tags-list-contact-number{margin-left:10px;color:#999}.settings .tags-list .actions{text-align:right}.modal h5{font-size:20px;font-weight:500}.modal label{padding-left:0}.modal .close{position:absolute;right:19px;top:14px;font-size:30px}.modal.log-call .date-it-happened{margin-top:20px}.modal.log-call .exact-date{display:none;margin-top:20px}.modal.log-call .exact-date input{display:inline;width:165px}.bg-gray-monica{background-color:#f2f4f8}.b--gray-monica{border-color:#dde2e9}.w-5{width:5%}.w-95{width:95%}.form-error-message{border-top:1px solid #ed6246;background-color:#fbeae5;-webkit-box-shadow:inset 0 3px 0 0 #ed6347,inset 0 0 0 0 transparent,0 0 0 1px rgba(63,63,68,.05),0 1px 3px 0 rgba(63,63,68,.15);box-shadow:inset 0 3px 0 0 #ed6347,inset 0 0 0 0 transparent,0 0 0 1px rgba(63,63,68,.05),0 1px 3px 0 rgba(63,63,68,.15)}.form-information-message{border-top:1px solid #46c1bf;background-color:#e0f5f5;-webkit-box-shadow:inset 0 3px 0 0 #47c1bf,inset 0 0 0 0 transparent,0 0 0 1px rgba(63,63,68,.05),0 1px 3px 0 rgba(63,63,68,.15);box-shadow:inset 0 3px 0 0 #47c1bf,inset 0 0 0 0 transparent,0 0 0 1px rgba(63,63,68,.05),0 1px 3px 0 rgba(63,63,68,.15)}.form-information-message svg{width:20px;fill:#00848e;color:#fff}.border-bottom{border-bottom:1px solid #dfdfdf}.border-top{border-top:1px solid #dfdfdf}.border-right{border-right:1px solid #dfdfdf}.border-left{border-left:1px solid #dfdfdf}.padding-left-none{padding-left:0}.boxed{background:#fff;border:1px solid #dfdfdf;border-radius:3px;-webkit-box-shadow:0 1px 3px 0 rgba(0,0,0,.05);box-shadow:0 1px 3px 0 rgba(0,0,0,.05)}.box-padding{padding:15px}.badge{display:inline-block;padding:4px 5px;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem}.badge-success{background-color:#5cb85c}.badge-danger{background-color:#d9534f}.pretty-tag{background:#eee;border-radius:3px;color:#555;display:inline-block;font-size:11px;height:22px;line-height:22px;padding:0 10px 0 19px;position:relative;margin:0 10px 0 0;text-decoration:none;-webkit-transition:color .2s}.pretty-tag:before{background:#fff;border-radius:10px;-webkit-box-shadow:inset 0 1px rgba(0,0,0,.25);box-shadow:inset 0 1px rgba(0,0,0,.25);content:"";height:6px;left:7px;position:absolute;width:6px;top:9px}.pretty-tag:hover{background-color:#0366d6}.pretty-tag:hover a{color:#fff}.pretty-tag a{text-decoration:none;color:#555}.pretty-tag a:hover{background-color:transparent;color:#fff}body{color:#323b43}a{color:#0366d6;padding:1px;text-decoration:underline}a:hover{background-color:#0366d6;color:#fff;text-decoration:none}a.action-link{color:#999;font-size:11px;margin-right:5px;text-decoration:underline}ul{list-style-type:none;margin:0;padding:0}ul.horizontal li{display:inline}.hidden{display:none}input:disabled{background-color:#999}.pagination-box{margin-top:30px;text-align:center}.alert-success{margin:20px 0}.central-form{margin-top:40px}.central-form h2{font-weight:400;margin-bottom:20px;text-align:center}.central-form .form-check-inline{margin-right:10px}.central-form .form-group>label:not(:first-child){margin-top:10px}.central-form input[type=radio]{margin-right:5px}.central-form .dates .form-inline{display:inline}.central-form .dates .form-inline input[type=number]{margin:0 10px;width:52px}.central-form .dates .form-inline input[type=date]{margin-left:20px;margin-top:10px}.central-form .form-group:not(:last-child){border-bottom:1px solid #eee;padding-bottom:20px}.central-form .nav{margin-top:40px}.central-form .nav .nav-link{text-decoration:none}.central-form .tab-content{border-right:1px solid #ddd;border-left:1px solid #ddd;border-bottom:1px solid #ddd;padding:15px}.avatar-photo img{border-radius:3px}.breadcrumb{background-color:#f9f9fb}.breadcrumb ul{font-size:12px;padding:30px 0 24px}.breadcrumb ul li:not(:last-child):after{content:">";margin-left:5px;margin-right:1px}.btn{color:#24292e;background-color:#eff3f6;background-image:-webkit-gradient(linear,left top,left bottom,from(#fafbfc),color-stop(90%,#eff3f6));background-image:linear-gradient(-180deg,#fafbfc,#eff3f6 90%);position:relative;display:inline-block;padding:6px 12px;font-size:14px;font-weight:600;line-height:20px;white-space:nowrap;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-position:-1px -1px;background-size:110% 110%;border:1px solid rgba(27,31,35,.2);border-radius:.25em;-webkit-appearance:none;-moz-appearance:none;appearance:none}.btn,.btn:hover,.btn:visited{background-repeat:repeat-x;text-decoration:none}.btn:hover,.btn:visited{background-color:#e6ebf1;background-image:-webkit-gradient(linear,left top,left bottom,from(#f0f3f6),color-stop(90%,#e6ebf1));background-image:linear-gradient(-180deg,#f0f3f6,#e6ebf1 90%);background-position:0 -.5em;border-color:rgba(27,31,35,.35)}.btn:active{background-color:#e9ecef;background-image:none;border-color:rgba(27,31,35,.35);-webkit-box-shadow:inset 0 .15em .3em rgba(27,31,35,.15);box-shadow:inset 0 .15em .3em rgba(27,31,35,.15)}.btn:disabled{background-image:-webkit-gradient(linear,left top,left bottom,from(#63b175),color-stop(90%,#61986e));background-image:linear-gradient(-180deg,#63b175,#61986e 90%)}.btn:focus{outline:none;text-decoration:none}.btn-primary{color:#fff;background-color:#28a745;background-image:-webkit-gradient(linear,left top,left bottom,from(#34d058),color-stop(90%,#28a745));background-image:linear-gradient(-180deg,#34d058,#28a745 90%)}.btn-primary:hover{background-color:#269f42;background-image:-webkit-gradient(linear,left top,left bottom,from(#2fcb53),color-stop(90%,#269f42));background-image:linear-gradient(-180deg,#2fcb53,#269f42 90%);background-position:0 -.5em;border-color:rgba(27,31,35,.5)}.table{border-collapse:collapse;display:table;width:100%}.table .table-row{border-left:1px solid #ddd;border-right:1px solid #ddd;border-top:1px solid #ddd;display:table-row}.table .table-row:first-child .table-cell:first-child{border-top-left-radius:3px}.table .table-row:first-child .table-cell:last-child{border-top-right-radius:3px}.table .table-row:last-child{border-bottom:1px solid #ddd}.table .table-row:hover{background-color:#f6f8fa}.table .table-cell{display:table-cell;padding:8px 10px}footer .badge-success{font-size:12px;font-weight:400}footer .show-version{text-align:left}footer .show-version h2{font-size:16px}footer .show-version .note{margin-bottom:20px}footer .show-version .note ul{list-style-type:disc}footer .show-version .note li{display:block;font-size:15px;text-align:left}@media (max-width:480px){.sidebar-box{border:1px solid #dfdfdf;border-radius:3px}.sidebar-box .sidebar-heading{background-color:#fafafa;margin-top:0;padding:5px}.sidebar-box .sidebar-blank{background-color:#fff;border:0}.sidebar-box li{padding:5px}} + */@font-face{font-family:FontAwesome;src:url(/fonts/vendor/font-awesome/fontawesome-webfont.eot?674f50d287a8c48dc19ba404d20fe713);src:url(/fonts/vendor/font-awesome/fontawesome-webfont.eot?674f50d287a8c48dc19ba404d20fe713) format("embedded-opentype"),url(/fonts/vendor/font-awesome/fontawesome-webfont.woff2?af7ae505a9eed503f8b8e6982036873e) format("woff2"),url(/fonts/vendor/font-awesome/fontawesome-webfont.woff?fee66e712a8a08eef5805a46892932ad) format("woff"),url(/fonts/vendor/font-awesome/fontawesome-webfont.ttf?b06871f281fee6b241d60582ae9369b9) format("truetype"),url(/fonts/vendor/font-awesome/fontawesome-webfont.svg?912ec66d7572ff821749319396470bde) format("svg");font-weight:400;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:.08em solid #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scaleY(-1);transform:scaleY(-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{-webkit-filter:none;filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\F000"}.fa-music:before{content:"\F001"}.fa-search:before{content:"\F002"}.fa-envelope-o:before{content:"\F003"}.fa-heart:before{content:"\F004"}.fa-star:before{content:"\F005"}.fa-star-o:before{content:"\F006"}.fa-user:before{content:"\F007"}.fa-film:before{content:"\F008"}.fa-th-large:before{content:"\F009"}.fa-th:before{content:"\F00A"}.fa-th-list:before{content:"\F00B"}.fa-check:before{content:"\F00C"}.fa-close:before,.fa-remove:before,.fa-times:before{content:"\F00D"}.fa-search-plus:before{content:"\F00E"}.fa-search-minus:before{content:"\F010"}.fa-power-off:before{content:"\F011"}.fa-signal:before{content:"\F012"}.fa-cog:before,.fa-gear:before{content:"\F013"}.fa-trash-o:before{content:"\F014"}.fa-home:before{content:"\F015"}.fa-file-o:before{content:"\F016"}.fa-clock-o:before{content:"\F017"}.fa-road:before{content:"\F018"}.fa-download:before{content:"\F019"}.fa-arrow-circle-o-down:before{content:"\F01A"}.fa-arrow-circle-o-up:before{content:"\F01B"}.fa-inbox:before{content:"\F01C"}.fa-play-circle-o:before{content:"\F01D"}.fa-repeat:before,.fa-rotate-right:before{content:"\F01E"}.fa-refresh:before{content:"\F021"}.fa-list-alt:before{content:"\F022"}.fa-lock:before{content:"\F023"}.fa-flag:before{content:"\F024"}.fa-headphones:before{content:"\F025"}.fa-volume-off:before{content:"\F026"}.fa-volume-down:before{content:"\F027"}.fa-volume-up:before{content:"\F028"}.fa-qrcode:before{content:"\F029"}.fa-barcode:before{content:"\F02A"}.fa-tag:before{content:"\F02B"}.fa-tags:before{content:"\F02C"}.fa-book:before{content:"\F02D"}.fa-bookmark:before{content:"\F02E"}.fa-print:before{content:"\F02F"}.fa-camera:before{content:"\F030"}.fa-font:before{content:"\F031"}.fa-bold:before{content:"\F032"}.fa-italic:before{content:"\F033"}.fa-text-height:before{content:"\F034"}.fa-text-width:before{content:"\F035"}.fa-align-left:before{content:"\F036"}.fa-align-center:before{content:"\F037"}.fa-align-right:before{content:"\F038"}.fa-align-justify:before{content:"\F039"}.fa-list:before{content:"\F03A"}.fa-dedent:before,.fa-outdent:before{content:"\F03B"}.fa-indent:before{content:"\F03C"}.fa-video-camera:before{content:"\F03D"}.fa-image:before,.fa-photo:before,.fa-picture-o:before{content:"\F03E"}.fa-pencil:before{content:"\F040"}.fa-map-marker:before{content:"\F041"}.fa-adjust:before{content:"\F042"}.fa-tint:before{content:"\F043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\F044"}.fa-share-square-o:before{content:"\F045"}.fa-check-square-o:before{content:"\F046"}.fa-arrows:before{content:"\F047"}.fa-step-backward:before{content:"\F048"}.fa-fast-backward:before{content:"\F049"}.fa-backward:before{content:"\F04A"}.fa-play:before{content:"\F04B"}.fa-pause:before{content:"\F04C"}.fa-stop:before{content:"\F04D"}.fa-forward:before{content:"\F04E"}.fa-fast-forward:before{content:"\F050"}.fa-step-forward:before{content:"\F051"}.fa-eject:before{content:"\F052"}.fa-chevron-left:before{content:"\F053"}.fa-chevron-right:before{content:"\F054"}.fa-plus-circle:before{content:"\F055"}.fa-minus-circle:before{content:"\F056"}.fa-times-circle:before{content:"\F057"}.fa-check-circle:before{content:"\F058"}.fa-question-circle:before{content:"\F059"}.fa-info-circle:before{content:"\F05A"}.fa-crosshairs:before{content:"\F05B"}.fa-times-circle-o:before{content:"\F05C"}.fa-check-circle-o:before{content:"\F05D"}.fa-ban:before{content:"\F05E"}.fa-arrow-left:before{content:"\F060"}.fa-arrow-right:before{content:"\F061"}.fa-arrow-up:before{content:"\F062"}.fa-arrow-down:before{content:"\F063"}.fa-mail-forward:before,.fa-share:before{content:"\F064"}.fa-expand:before{content:"\F065"}.fa-compress:before{content:"\F066"}.fa-plus:before{content:"\F067"}.fa-minus:before{content:"\F068"}.fa-asterisk:before{content:"\F069"}.fa-exclamation-circle:before{content:"\F06A"}.fa-gift:before{content:"\F06B"}.fa-leaf:before{content:"\F06C"}.fa-fire:before{content:"\F06D"}.fa-eye:before{content:"\F06E"}.fa-eye-slash:before{content:"\F070"}.fa-exclamation-triangle:before,.fa-warning:before{content:"\F071"}.fa-plane:before{content:"\F072"}.fa-calendar:before{content:"\F073"}.fa-random:before{content:"\F074"}.fa-comment:before{content:"\F075"}.fa-magnet:before{content:"\F076"}.fa-chevron-up:before{content:"\F077"}.fa-chevron-down:before{content:"\F078"}.fa-retweet:before{content:"\F079"}.fa-shopping-cart:before{content:"\F07A"}.fa-folder:before{content:"\F07B"}.fa-folder-open:before{content:"\F07C"}.fa-arrows-v:before{content:"\F07D"}.fa-arrows-h:before{content:"\F07E"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\F080"}.fa-twitter-square:before{content:"\F081"}.fa-facebook-square:before{content:"\F082"}.fa-camera-retro:before{content:"\F083"}.fa-key:before{content:"\F084"}.fa-cogs:before,.fa-gears:before{content:"\F085"}.fa-comments:before{content:"\F086"}.fa-thumbs-o-up:before{content:"\F087"}.fa-thumbs-o-down:before{content:"\F088"}.fa-star-half:before{content:"\F089"}.fa-heart-o:before{content:"\F08A"}.fa-sign-out:before{content:"\F08B"}.fa-linkedin-square:before{content:"\F08C"}.fa-thumb-tack:before{content:"\F08D"}.fa-external-link:before{content:"\F08E"}.fa-sign-in:before{content:"\F090"}.fa-trophy:before{content:"\F091"}.fa-github-square:before{content:"\F092"}.fa-upload:before{content:"\F093"}.fa-lemon-o:before{content:"\F094"}.fa-phone:before{content:"\F095"}.fa-square-o:before{content:"\F096"}.fa-bookmark-o:before{content:"\F097"}.fa-phone-square:before{content:"\F098"}.fa-twitter:before{content:"\F099"}.fa-facebook-f:before,.fa-facebook:before{content:"\F09A"}.fa-github:before{content:"\F09B"}.fa-unlock:before{content:"\F09C"}.fa-credit-card:before{content:"\F09D"}.fa-feed:before,.fa-rss:before{content:"\F09E"}.fa-hdd-o:before{content:"\F0A0"}.fa-bullhorn:before{content:"\F0A1"}.fa-bell:before{content:"\F0F3"}.fa-certificate:before{content:"\F0A3"}.fa-hand-o-right:before{content:"\F0A4"}.fa-hand-o-left:before{content:"\F0A5"}.fa-hand-o-up:before{content:"\F0A6"}.fa-hand-o-down:before{content:"\F0A7"}.fa-arrow-circle-left:before{content:"\F0A8"}.fa-arrow-circle-right:before{content:"\F0A9"}.fa-arrow-circle-up:before{content:"\F0AA"}.fa-arrow-circle-down:before{content:"\F0AB"}.fa-globe:before{content:"\F0AC"}.fa-wrench:before{content:"\F0AD"}.fa-tasks:before{content:"\F0AE"}.fa-filter:before{content:"\F0B0"}.fa-briefcase:before{content:"\F0B1"}.fa-arrows-alt:before{content:"\F0B2"}.fa-group:before,.fa-users:before{content:"\F0C0"}.fa-chain:before,.fa-link:before{content:"\F0C1"}.fa-cloud:before{content:"\F0C2"}.fa-flask:before{content:"\F0C3"}.fa-cut:before,.fa-scissors:before{content:"\F0C4"}.fa-copy:before,.fa-files-o:before{content:"\F0C5"}.fa-paperclip:before{content:"\F0C6"}.fa-floppy-o:before,.fa-save:before{content:"\F0C7"}.fa-square:before{content:"\F0C8"}.fa-bars:before,.fa-navicon:before,.fa-reorder:before{content:"\F0C9"}.fa-list-ul:before{content:"\F0CA"}.fa-list-ol:before{content:"\F0CB"}.fa-strikethrough:before{content:"\F0CC"}.fa-underline:before{content:"\F0CD"}.fa-table:before{content:"\F0CE"}.fa-magic:before{content:"\F0D0"}.fa-truck:before{content:"\F0D1"}.fa-pinterest:before{content:"\F0D2"}.fa-pinterest-square:before{content:"\F0D3"}.fa-google-plus-square:before{content:"\F0D4"}.fa-google-plus:before{content:"\F0D5"}.fa-money:before{content:"\F0D6"}.fa-caret-down:before{content:"\F0D7"}.fa-caret-up:before{content:"\F0D8"}.fa-caret-left:before{content:"\F0D9"}.fa-caret-right:before{content:"\F0DA"}.fa-columns:before{content:"\F0DB"}.fa-sort:before,.fa-unsorted:before{content:"\F0DC"}.fa-sort-desc:before,.fa-sort-down:before{content:"\F0DD"}.fa-sort-asc:before,.fa-sort-up:before{content:"\F0DE"}.fa-envelope:before{content:"\F0E0"}.fa-linkedin:before{content:"\F0E1"}.fa-rotate-left:before,.fa-undo:before{content:"\F0E2"}.fa-gavel:before,.fa-legal:before{content:"\F0E3"}.fa-dashboard:before,.fa-tachometer:before{content:"\F0E4"}.fa-comment-o:before{content:"\F0E5"}.fa-comments-o:before{content:"\F0E6"}.fa-bolt:before,.fa-flash:before{content:"\F0E7"}.fa-sitemap:before{content:"\F0E8"}.fa-umbrella:before{content:"\F0E9"}.fa-clipboard:before,.fa-paste:before{content:"\F0EA"}.fa-lightbulb-o:before{content:"\F0EB"}.fa-exchange:before{content:"\F0EC"}.fa-cloud-download:before{content:"\F0ED"}.fa-cloud-upload:before{content:"\F0EE"}.fa-user-md:before{content:"\F0F0"}.fa-stethoscope:before{content:"\F0F1"}.fa-suitcase:before{content:"\F0F2"}.fa-bell-o:before{content:"\F0A2"}.fa-coffee:before{content:"\F0F4"}.fa-cutlery:before{content:"\F0F5"}.fa-file-text-o:before{content:"\F0F6"}.fa-building-o:before{content:"\F0F7"}.fa-hospital-o:before{content:"\F0F8"}.fa-ambulance:before{content:"\F0F9"}.fa-medkit:before{content:"\F0FA"}.fa-fighter-jet:before{content:"\F0FB"}.fa-beer:before{content:"\F0FC"}.fa-h-square:before{content:"\F0FD"}.fa-plus-square:before{content:"\F0FE"}.fa-angle-double-left:before{content:"\F100"}.fa-angle-double-right:before{content:"\F101"}.fa-angle-double-up:before{content:"\F102"}.fa-angle-double-down:before{content:"\F103"}.fa-angle-left:before{content:"\F104"}.fa-angle-right:before{content:"\F105"}.fa-angle-up:before{content:"\F106"}.fa-angle-down:before{content:"\F107"}.fa-desktop:before{content:"\F108"}.fa-laptop:before{content:"\F109"}.fa-tablet:before{content:"\F10A"}.fa-mobile-phone:before,.fa-mobile:before{content:"\F10B"}.fa-circle-o:before{content:"\F10C"}.fa-quote-left:before{content:"\F10D"}.fa-quote-right:before{content:"\F10E"}.fa-spinner:before{content:"\F110"}.fa-circle:before{content:"\F111"}.fa-mail-reply:before,.fa-reply:before{content:"\F112"}.fa-github-alt:before{content:"\F113"}.fa-folder-o:before{content:"\F114"}.fa-folder-open-o:before{content:"\F115"}.fa-smile-o:before{content:"\F118"}.fa-frown-o:before{content:"\F119"}.fa-meh-o:before{content:"\F11A"}.fa-gamepad:before{content:"\F11B"}.fa-keyboard-o:before{content:"\F11C"}.fa-flag-o:before{content:"\F11D"}.fa-flag-checkered:before{content:"\F11E"}.fa-terminal:before{content:"\F120"}.fa-code:before{content:"\F121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\F122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\F123"}.fa-location-arrow:before{content:"\F124"}.fa-crop:before{content:"\F125"}.fa-code-fork:before{content:"\F126"}.fa-chain-broken:before,.fa-unlink:before{content:"\F127"}.fa-question:before{content:"\F128"}.fa-info:before{content:"\F129"}.fa-exclamation:before{content:"\F12A"}.fa-superscript:before{content:"\F12B"}.fa-subscript:before{content:"\F12C"}.fa-eraser:before{content:"\F12D"}.fa-puzzle-piece:before{content:"\F12E"}.fa-microphone:before{content:"\F130"}.fa-microphone-slash:before{content:"\F131"}.fa-shield:before{content:"\F132"}.fa-calendar-o:before{content:"\F133"}.fa-fire-extinguisher:before{content:"\F134"}.fa-rocket:before{content:"\F135"}.fa-maxcdn:before{content:"\F136"}.fa-chevron-circle-left:before{content:"\F137"}.fa-chevron-circle-right:before{content:"\F138"}.fa-chevron-circle-up:before{content:"\F139"}.fa-chevron-circle-down:before{content:"\F13A"}.fa-html5:before{content:"\F13B"}.fa-css3:before{content:"\F13C"}.fa-anchor:before{content:"\F13D"}.fa-unlock-alt:before{content:"\F13E"}.fa-bullseye:before{content:"\F140"}.fa-ellipsis-h:before{content:"\F141"}.fa-ellipsis-v:before{content:"\F142"}.fa-rss-square:before{content:"\F143"}.fa-play-circle:before{content:"\F144"}.fa-ticket:before{content:"\F145"}.fa-minus-square:before{content:"\F146"}.fa-minus-square-o:before{content:"\F147"}.fa-level-up:before{content:"\F148"}.fa-level-down:before{content:"\F149"}.fa-check-square:before{content:"\F14A"}.fa-pencil-square:before{content:"\F14B"}.fa-external-link-square:before{content:"\F14C"}.fa-share-square:before{content:"\F14D"}.fa-compass:before{content:"\F14E"}.fa-caret-square-o-down:before,.fa-toggle-down:before{content:"\F150"}.fa-caret-square-o-up:before,.fa-toggle-up:before{content:"\F151"}.fa-caret-square-o-right:before,.fa-toggle-right:before{content:"\F152"}.fa-eur:before,.fa-euro:before{content:"\F153"}.fa-gbp:before{content:"\F154"}.fa-dollar:before,.fa-usd:before{content:"\F155"}.fa-inr:before,.fa-rupee:before{content:"\F156"}.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen:before{content:"\F157"}.fa-rouble:before,.fa-rub:before,.fa-ruble:before{content:"\F158"}.fa-krw:before,.fa-won:before{content:"\F159"}.fa-bitcoin:before,.fa-btc:before{content:"\F15A"}.fa-file:before{content:"\F15B"}.fa-file-text:before{content:"\F15C"}.fa-sort-alpha-asc:before{content:"\F15D"}.fa-sort-alpha-desc:before{content:"\F15E"}.fa-sort-amount-asc:before{content:"\F160"}.fa-sort-amount-desc:before{content:"\F161"}.fa-sort-numeric-asc:before{content:"\F162"}.fa-sort-numeric-desc:before{content:"\F163"}.fa-thumbs-up:before{content:"\F164"}.fa-thumbs-down:before{content:"\F165"}.fa-youtube-square:before{content:"\F166"}.fa-youtube:before{content:"\F167"}.fa-xing:before{content:"\F168"}.fa-xing-square:before{content:"\F169"}.fa-youtube-play:before{content:"\F16A"}.fa-dropbox:before{content:"\F16B"}.fa-stack-overflow:before{content:"\F16C"}.fa-instagram:before{content:"\F16D"}.fa-flickr:before{content:"\F16E"}.fa-adn:before{content:"\F170"}.fa-bitbucket:before{content:"\F171"}.fa-bitbucket-square:before{content:"\F172"}.fa-tumblr:before{content:"\F173"}.fa-tumblr-square:before{content:"\F174"}.fa-long-arrow-down:before{content:"\F175"}.fa-long-arrow-up:before{content:"\F176"}.fa-long-arrow-left:before{content:"\F177"}.fa-long-arrow-right:before{content:"\F178"}.fa-apple:before{content:"\F179"}.fa-windows:before{content:"\F17A"}.fa-android:before{content:"\F17B"}.fa-linux:before{content:"\F17C"}.fa-dribbble:before{content:"\F17D"}.fa-skype:before{content:"\F17E"}.fa-foursquare:before{content:"\F180"}.fa-trello:before{content:"\F181"}.fa-female:before{content:"\F182"}.fa-male:before{content:"\F183"}.fa-gittip:before,.fa-gratipay:before{content:"\F184"}.fa-sun-o:before{content:"\F185"}.fa-moon-o:before{content:"\F186"}.fa-archive:before{content:"\F187"}.fa-bug:before{content:"\F188"}.fa-vk:before{content:"\F189"}.fa-weibo:before{content:"\F18A"}.fa-renren:before{content:"\F18B"}.fa-pagelines:before{content:"\F18C"}.fa-stack-exchange:before{content:"\F18D"}.fa-arrow-circle-o-right:before{content:"\F18E"}.fa-arrow-circle-o-left:before{content:"\F190"}.fa-caret-square-o-left:before,.fa-toggle-left:before{content:"\F191"}.fa-dot-circle-o:before{content:"\F192"}.fa-wheelchair:before{content:"\F193"}.fa-vimeo-square:before{content:"\F194"}.fa-try:before,.fa-turkish-lira:before{content:"\F195"}.fa-plus-square-o:before{content:"\F196"}.fa-space-shuttle:before{content:"\F197"}.fa-slack:before{content:"\F198"}.fa-envelope-square:before{content:"\F199"}.fa-wordpress:before{content:"\F19A"}.fa-openid:before{content:"\F19B"}.fa-bank:before,.fa-institution:before,.fa-university:before{content:"\F19C"}.fa-graduation-cap:before,.fa-mortar-board:before{content:"\F19D"}.fa-yahoo:before{content:"\F19E"}.fa-google:before{content:"\F1A0"}.fa-reddit:before{content:"\F1A1"}.fa-reddit-square:before{content:"\F1A2"}.fa-stumbleupon-circle:before{content:"\F1A3"}.fa-stumbleupon:before{content:"\F1A4"}.fa-delicious:before{content:"\F1A5"}.fa-digg:before{content:"\F1A6"}.fa-pied-piper-pp:before{content:"\F1A7"}.fa-pied-piper-alt:before{content:"\F1A8"}.fa-drupal:before{content:"\F1A9"}.fa-joomla:before{content:"\F1AA"}.fa-language:before{content:"\F1AB"}.fa-fax:before{content:"\F1AC"}.fa-building:before{content:"\F1AD"}.fa-child:before{content:"\F1AE"}.fa-paw:before{content:"\F1B0"}.fa-spoon:before{content:"\F1B1"}.fa-cube:before{content:"\F1B2"}.fa-cubes:before{content:"\F1B3"}.fa-behance:before{content:"\F1B4"}.fa-behance-square:before{content:"\F1B5"}.fa-steam:before{content:"\F1B6"}.fa-steam-square:before{content:"\F1B7"}.fa-recycle:before{content:"\F1B8"}.fa-automobile:before,.fa-car:before{content:"\F1B9"}.fa-cab:before,.fa-taxi:before{content:"\F1BA"}.fa-tree:before{content:"\F1BB"}.fa-spotify:before{content:"\F1BC"}.fa-deviantart:before{content:"\F1BD"}.fa-soundcloud:before{content:"\F1BE"}.fa-database:before{content:"\F1C0"}.fa-file-pdf-o:before{content:"\F1C1"}.fa-file-word-o:before{content:"\F1C2"}.fa-file-excel-o:before{content:"\F1C3"}.fa-file-powerpoint-o:before{content:"\F1C4"}.fa-file-image-o:before,.fa-file-photo-o:before,.fa-file-picture-o:before{content:"\F1C5"}.fa-file-archive-o:before,.fa-file-zip-o:before{content:"\F1C6"}.fa-file-audio-o:before,.fa-file-sound-o:before{content:"\F1C7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\F1C8"}.fa-file-code-o:before{content:"\F1C9"}.fa-vine:before{content:"\F1CA"}.fa-codepen:before{content:"\F1CB"}.fa-jsfiddle:before{content:"\F1CC"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-ring:before,.fa-life-saver:before,.fa-support:before{content:"\F1CD"}.fa-circle-o-notch:before{content:"\F1CE"}.fa-ra:before,.fa-rebel:before,.fa-resistance:before{content:"\F1D0"}.fa-empire:before,.fa-ge:before{content:"\F1D1"}.fa-git-square:before{content:"\F1D2"}.fa-git:before{content:"\F1D3"}.fa-hacker-news:before,.fa-y-combinator-square:before,.fa-yc-square:before{content:"\F1D4"}.fa-tencent-weibo:before{content:"\F1D5"}.fa-qq:before{content:"\F1D6"}.fa-wechat:before,.fa-weixin:before{content:"\F1D7"}.fa-paper-plane:before,.fa-send:before{content:"\F1D8"}.fa-paper-plane-o:before,.fa-send-o:before{content:"\F1D9"}.fa-history:before{content:"\F1DA"}.fa-circle-thin:before{content:"\F1DB"}.fa-header:before{content:"\F1DC"}.fa-paragraph:before{content:"\F1DD"}.fa-sliders:before{content:"\F1DE"}.fa-share-alt:before{content:"\F1E0"}.fa-share-alt-square:before{content:"\F1E1"}.fa-bomb:before{content:"\F1E2"}.fa-futbol-o:before,.fa-soccer-ball-o:before{content:"\F1E3"}.fa-tty:before{content:"\F1E4"}.fa-binoculars:before{content:"\F1E5"}.fa-plug:before{content:"\F1E6"}.fa-slideshare:before{content:"\F1E7"}.fa-twitch:before{content:"\F1E8"}.fa-yelp:before{content:"\F1E9"}.fa-newspaper-o:before{content:"\F1EA"}.fa-wifi:before{content:"\F1EB"}.fa-calculator:before{content:"\F1EC"}.fa-paypal:before{content:"\F1ED"}.fa-google-wallet:before{content:"\F1EE"}.fa-cc-visa:before{content:"\F1F0"}.fa-cc-mastercard:before{content:"\F1F1"}.fa-cc-discover:before{content:"\F1F2"}.fa-cc-amex:before{content:"\F1F3"}.fa-cc-paypal:before{content:"\F1F4"}.fa-cc-stripe:before{content:"\F1F5"}.fa-bell-slash:before{content:"\F1F6"}.fa-bell-slash-o:before{content:"\F1F7"}.fa-trash:before{content:"\F1F8"}.fa-copyright:before{content:"\F1F9"}.fa-at:before{content:"\F1FA"}.fa-eyedropper:before{content:"\F1FB"}.fa-paint-brush:before{content:"\F1FC"}.fa-birthday-cake:before{content:"\F1FD"}.fa-area-chart:before{content:"\F1FE"}.fa-pie-chart:before{content:"\F200"}.fa-line-chart:before{content:"\F201"}.fa-lastfm:before{content:"\F202"}.fa-lastfm-square:before{content:"\F203"}.fa-toggle-off:before{content:"\F204"}.fa-toggle-on:before{content:"\F205"}.fa-bicycle:before{content:"\F206"}.fa-bus:before{content:"\F207"}.fa-ioxhost:before{content:"\F208"}.fa-angellist:before{content:"\F209"}.fa-cc:before{content:"\F20A"}.fa-ils:before,.fa-shekel:before,.fa-sheqel:before{content:"\F20B"}.fa-meanpath:before{content:"\F20C"}.fa-buysellads:before{content:"\F20D"}.fa-connectdevelop:before{content:"\F20E"}.fa-dashcube:before{content:"\F210"}.fa-forumbee:before{content:"\F211"}.fa-leanpub:before{content:"\F212"}.fa-sellsy:before{content:"\F213"}.fa-shirtsinbulk:before{content:"\F214"}.fa-simplybuilt:before{content:"\F215"}.fa-skyatlas:before{content:"\F216"}.fa-cart-plus:before{content:"\F217"}.fa-cart-arrow-down:before{content:"\F218"}.fa-diamond:before{content:"\F219"}.fa-ship:before{content:"\F21A"}.fa-user-secret:before{content:"\F21B"}.fa-motorcycle:before{content:"\F21C"}.fa-street-view:before{content:"\F21D"}.fa-heartbeat:before{content:"\F21E"}.fa-venus:before{content:"\F221"}.fa-mars:before{content:"\F222"}.fa-mercury:before{content:"\F223"}.fa-intersex:before,.fa-transgender:before{content:"\F224"}.fa-transgender-alt:before{content:"\F225"}.fa-venus-double:before{content:"\F226"}.fa-mars-double:before{content:"\F227"}.fa-venus-mars:before{content:"\F228"}.fa-mars-stroke:before{content:"\F229"}.fa-mars-stroke-v:before{content:"\F22A"}.fa-mars-stroke-h:before{content:"\F22B"}.fa-neuter:before{content:"\F22C"}.fa-genderless:before{content:"\F22D"}.fa-facebook-official:before{content:"\F230"}.fa-pinterest-p:before{content:"\F231"}.fa-whatsapp:before{content:"\F232"}.fa-server:before{content:"\F233"}.fa-user-plus:before{content:"\F234"}.fa-user-times:before{content:"\F235"}.fa-bed:before,.fa-hotel:before{content:"\F236"}.fa-viacoin:before{content:"\F237"}.fa-train:before{content:"\F238"}.fa-subway:before{content:"\F239"}.fa-medium:before{content:"\F23A"}.fa-y-combinator:before,.fa-yc:before{content:"\F23B"}.fa-optin-monster:before{content:"\F23C"}.fa-opencart:before{content:"\F23D"}.fa-expeditedssl:before{content:"\F23E"}.fa-battery-4:before,.fa-battery-full:before,.fa-battery:before{content:"\F240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\F241"}.fa-battery-2:before,.fa-battery-half:before{content:"\F242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\F243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\F244"}.fa-mouse-pointer:before{content:"\F245"}.fa-i-cursor:before{content:"\F246"}.fa-object-group:before{content:"\F247"}.fa-object-ungroup:before{content:"\F248"}.fa-sticky-note:before{content:"\F249"}.fa-sticky-note-o:before{content:"\F24A"}.fa-cc-jcb:before{content:"\F24B"}.fa-cc-diners-club:before{content:"\F24C"}.fa-clone:before{content:"\F24D"}.fa-balance-scale:before{content:"\F24E"}.fa-hourglass-o:before{content:"\F250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\F251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\F252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\F253"}.fa-hourglass:before{content:"\F254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\F255"}.fa-hand-paper-o:before,.fa-hand-stop-o:before{content:"\F256"}.fa-hand-scissors-o:before{content:"\F257"}.fa-hand-lizard-o:before{content:"\F258"}.fa-hand-spock-o:before{content:"\F259"}.fa-hand-pointer-o:before{content:"\F25A"}.fa-hand-peace-o:before{content:"\F25B"}.fa-trademark:before{content:"\F25C"}.fa-registered:before{content:"\F25D"}.fa-creative-commons:before{content:"\F25E"}.fa-gg:before{content:"\F260"}.fa-gg-circle:before{content:"\F261"}.fa-tripadvisor:before{content:"\F262"}.fa-odnoklassniki:before{content:"\F263"}.fa-odnoklassniki-square:before{content:"\F264"}.fa-get-pocket:before{content:"\F265"}.fa-wikipedia-w:before{content:"\F266"}.fa-safari:before{content:"\F267"}.fa-chrome:before{content:"\F268"}.fa-firefox:before{content:"\F269"}.fa-opera:before{content:"\F26A"}.fa-internet-explorer:before{content:"\F26B"}.fa-television:before,.fa-tv:before{content:"\F26C"}.fa-contao:before{content:"\F26D"}.fa-500px:before{content:"\F26E"}.fa-amazon:before{content:"\F270"}.fa-calendar-plus-o:before{content:"\F271"}.fa-calendar-minus-o:before{content:"\F272"}.fa-calendar-times-o:before{content:"\F273"}.fa-calendar-check-o:before{content:"\F274"}.fa-industry:before{content:"\F275"}.fa-map-pin:before{content:"\F276"}.fa-map-signs:before{content:"\F277"}.fa-map-o:before{content:"\F278"}.fa-map:before{content:"\F279"}.fa-commenting:before{content:"\F27A"}.fa-commenting-o:before{content:"\F27B"}.fa-houzz:before{content:"\F27C"}.fa-vimeo:before{content:"\F27D"}.fa-black-tie:before{content:"\F27E"}.fa-fonticons:before{content:"\F280"}.fa-reddit-alien:before{content:"\F281"}.fa-edge:before{content:"\F282"}.fa-credit-card-alt:before{content:"\F283"}.fa-codiepie:before{content:"\F284"}.fa-modx:before{content:"\F285"}.fa-fort-awesome:before{content:"\F286"}.fa-usb:before{content:"\F287"}.fa-product-hunt:before{content:"\F288"}.fa-mixcloud:before{content:"\F289"}.fa-scribd:before{content:"\F28A"}.fa-pause-circle:before{content:"\F28B"}.fa-pause-circle-o:before{content:"\F28C"}.fa-stop-circle:before{content:"\F28D"}.fa-stop-circle-o:before{content:"\F28E"}.fa-shopping-bag:before{content:"\F290"}.fa-shopping-basket:before{content:"\F291"}.fa-hashtag:before{content:"\F292"}.fa-bluetooth:before{content:"\F293"}.fa-bluetooth-b:before{content:"\F294"}.fa-percent:before{content:"\F295"}.fa-gitlab:before{content:"\F296"}.fa-wpbeginner:before{content:"\F297"}.fa-wpforms:before{content:"\F298"}.fa-envira:before{content:"\F299"}.fa-universal-access:before{content:"\F29A"}.fa-wheelchair-alt:before{content:"\F29B"}.fa-question-circle-o:before{content:"\F29C"}.fa-blind:before{content:"\F29D"}.fa-audio-description:before{content:"\F29E"}.fa-volume-control-phone:before{content:"\F2A0"}.fa-braille:before{content:"\F2A1"}.fa-assistive-listening-systems:before{content:"\F2A2"}.fa-american-sign-language-interpreting:before,.fa-asl-interpreting:before{content:"\F2A3"}.fa-deaf:before,.fa-deafness:before,.fa-hard-of-hearing:before{content:"\F2A4"}.fa-glide:before{content:"\F2A5"}.fa-glide-g:before{content:"\F2A6"}.fa-sign-language:before,.fa-signing:before{content:"\F2A7"}.fa-low-vision:before{content:"\F2A8"}.fa-viadeo:before{content:"\F2A9"}.fa-viadeo-square:before{content:"\F2AA"}.fa-snapchat:before{content:"\F2AB"}.fa-snapchat-ghost:before{content:"\F2AC"}.fa-snapchat-square:before{content:"\F2AD"}.fa-pied-piper:before{content:"\F2AE"}.fa-first-order:before{content:"\F2B0"}.fa-yoast:before{content:"\F2B1"}.fa-themeisle:before{content:"\F2B2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\F2B3"}.fa-fa:before,.fa-font-awesome:before{content:"\F2B4"}.fa-handshake-o:before{content:"\F2B5"}.fa-envelope-open:before{content:"\F2B6"}.fa-envelope-open-o:before{content:"\F2B7"}.fa-linode:before{content:"\F2B8"}.fa-address-book:before{content:"\F2B9"}.fa-address-book-o:before{content:"\F2BA"}.fa-address-card:before,.fa-vcard:before{content:"\F2BB"}.fa-address-card-o:before,.fa-vcard-o:before{content:"\F2BC"}.fa-user-circle:before{content:"\F2BD"}.fa-user-circle-o:before{content:"\F2BE"}.fa-user-o:before{content:"\F2C0"}.fa-id-badge:before{content:"\F2C1"}.fa-drivers-license:before,.fa-id-card:before{content:"\F2C2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\F2C3"}.fa-quora:before{content:"\F2C4"}.fa-free-code-camp:before{content:"\F2C5"}.fa-telegram:before{content:"\F2C6"}.fa-thermometer-4:before,.fa-thermometer-full:before,.fa-thermometer:before{content:"\F2C7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\F2C8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\F2C9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\F2CA"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\F2CB"}.fa-shower:before{content:"\F2CC"}.fa-bath:before,.fa-bathtub:before,.fa-s15:before{content:"\F2CD"}.fa-podcast:before{content:"\F2CE"}.fa-window-maximize:before{content:"\F2D0"}.fa-window-minimize:before{content:"\F2D1"}.fa-window-restore:before{content:"\F2D2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\F2D3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\F2D4"}.fa-bandcamp:before{content:"\F2D5"}.fa-grav:before{content:"\F2D6"}.fa-etsy:before{content:"\F2D7"}.fa-imdb:before{content:"\F2D8"}.fa-ravelry:before{content:"\F2D9"}.fa-eercast:before{content:"\F2DA"}.fa-microchip:before{content:"\F2DB"}.fa-snowflake-o:before{content:"\F2DC"}.fa-superpowers:before{content:"\F2DD"}.fa-wpexplorer:before{content:"\F2DE"}.fa-meetup:before{content:"\F2E0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.btn{color:#333;background-color:#eee;background-image:-webkit-gradient(linear,left top,left bottom,from(#fcfcfc),to(#eee));background-image:linear-gradient(#fcfcfc,#eee);border:1px solid #d5d5d5;border-radius:3px;text-align:center}.btn:hover{background-color:#ddd;background-image:-webkit-gradient(linear,left top,left bottom,from(#eee),to(#ddd));background-image:linear-gradient(#eee,#ddd);border-color:#ccc;color:#333;text-decoration:none}.btn-primary{background-color:#60b044;background-image:-webkit-gradient(linear,left top,left bottom,from(#8add6d),to(#60b044));background-image:linear-gradient(#8add6d,#60b044);border-color:#5ca941;text-shadow:0 -1px 0 rgba(0,0,0,.15)}.btn-primary:hover{background-color:#569e3d;background-image:-webkit-gradient(linear,left top,left bottom,from(#79d858),to(#569e3d));background-image:linear-gradient(#79d858,#569e3d);border-color:#4a993e;color:#fff}.btn-danger{color:#900}.btn-danger:hover{background-color:#b33630;background-image:-webkit-gradient(linear,left top,left bottom,from(#dc5f59),to(#b33630));background-image:linear-gradient(#dc5f59,#b33630);border-color:#cd504a;color:#fff}.btn-add{position:relative;top:3px;border:1px solid #576675;border-radius:50%;width:15px;margin-right:3px}header{background-color:#325776}header .main-cta{position:relative;top:16px}.logo{margin:10px 15px}.logo a:hover{background-color:transparent;color:#fff}.header-search{padding:0;margin:auto 0}.header-search-form{position:relative}.header-search-form span{color:#d7d7d7;font-size:12px;left:10px;position:absolute;top:10px}.header-search-form input{border:0;color:#fff;padding-left:29px}.header-nav{margin-top:24px;text-align:right}.header-nav-item{display:inline;margin-right:10px}.header-nav-item:last-child{margin-right:0}.header-nav-item-link{color:#fff;font-weight:300;padding:3px 11px;text-decoration:none}.header-nav-item-link:hover{background-color:#497193;border-radius:3px;color:#fff;padding:3px 11px;text-decoration:none}.header-search-input{background:#497193;border-color:#497193;color:#fff}.header-search-input::-webkit-input-placeholder{color:hsla(0,0%,100%,.4)}.header-search-input::-ms-input-placeholder{color:hsla(0,0%,100%,.4)}.header-search-input::placeholder{color:hsla(0,0%,100%,.4)}.header-search-input:-ms-input-placeholder{color:hsla(0,0%,100%,.4)}.header-search-input:focus{background:#fff;color:#323232}.header-search-results{position:absolute;width:100%;z-index:10}.header-search-result{position:relative;background:#fff;-webkit-box-shadow:0 3px 3px 0 rgba(0,0,0,.3);box-shadow:0 3px 3px 0 rgba(0,0,0,.3);border-bottom:1px solid #eee}.header-search-result a{color:inherit;text-decoration:none;vertical-align:middle;background:transparent}.header-search-result a span{position:absolute;width:100%;height:100%;top:0;left:0;z-index:1}.header-search-result a:hover{background:inherit;color:inherit}.header-search-result .avatar{border-radius:3px;display:inline-block;height:36px;margin:10px;width:36px}.header-search-result .avatar-initials{text-align:center;padding-top:6px;font-size:15px;color:#fff}.header-search-result:last-child{border-bottom:initial}.header-search-result:hover{background:#f5f5f5}@media (max-width:767px){header .mobile-menu{background-color:#58748c;border:1px solid #325776;margin-bottom:20px}header .mobile-menu li{border-bottom:1px solid #475b6b;margin-bottom:0;padding:4px 0}header .mobile-menu li a{text-decoration:none}header .mobile-menu li:last-child{border-bottom:0}header .mobile-menu li.cta{border:0}header .mobile-menu li.cta a{width:100%}.header-search{padding:0;margin:20px 0}.header-search ul{padding-right:26px}}.people-list .breadcrumb{border-bottom:1px solid #eee}.people-list .main-content{margin-top:20px}.people-list .sidebar .sidebar-cta{margin-bottom:20px;padding:15px;text-align:center;width:100%}.people-list .sidebar li{margin-bottom:7px;padding-left:15px;position:relative}.people-list .sidebar li.selected:before{color:#999;content:">";left:0;position:absolute}.people-list .sidebar li .number-contacts-per-tag{float:right}.people-list .clear-filter,.people-list .list{border:1px solid #eee;border-radius:3px}.people-list .clear-filter{position:relative;padding:6px}.people-list .clear-filter a{position:absolute;right:10px}.people-list .people-list-item{border-bottom:1px solid #eee;padding:10px}.people-list .people-list-item:hover{background-color:#f7fbfc}.people-list .people-list-item.sorting{background-color:#f6f8fa;position:relative;padding:10px}.people-list .people-list-item.sorting .options{display:inline;position:absolute;right:10px}.people-list .people-list-item.sorting .options .dropdown-btn:after{content:"\F0D7";font-family:FontAwesome;margin-left:5px}.people-list .people-list-item.sorting .options .dropdown-item{padding:3px 20px 3px 10px}.people-list .people-list-item.sorting .options .dropdown-item:before{content:"\F00C";font-family:FontAwesome;margin-right:5px;color:#fff}.people-list .people-list-item.sorting .options .dropdown-item:hover{background-color:#0366d6;color:#fff}.people-list .people-list-item.sorting .options .dropdown-item.selected:before{color:#999}.people-list .people-list-item .avatar{background-color:#93521e;border-radius:3px;color:#fff;display:inline-block;font-size:15px;height:43px;margin-right:5px;padding-left:5px;padding-top:10px;vertical-align:middle;width:43px}.people-list .people-list-item .avatar.one-letter{padding-left:0;text-align:center}.people-list .people-list-item img{border-radius:3px;margin-right:5px}.people-list .people-list-item a{color:#333;text-decoration:none}.people-list .people-list-item a:hover{background-color:transparent;color:#333}.people-list .people-list-item .people-list-item-information{color:#999;float:right;font-size:12px;font-style:italic;position:relative;text-align:right;top:16px}.blank-people-state{margin-top:30px;text-align:center}.blank-people-state h3{font-weight:400;margin-bottom:30px}.blank-people-state .cta-blank{margin-bottom:30px}.blank-people-state .illustration-blank p{margin-top:30px}.blank-people-state .illustration-blank img{display:block;margin:0 auto 20px}.people-show .pagehead{background-color:#f9f9fb;border-bottom:1px solid #eee;position:relative;padding-bottom:20px}.people-show .pagehead .people-profile-information{margin-bottom:10px;position:relative}.people-show .pagehead .people-profile-information .avatar{background-color:#93521e;border-radius:3px;color:#fff;display:inline-block;font-size:30px;height:87px;margin-right:5px;padding-left:5px;padding-top:21px;position:absolute;width:87px}.people-show .pagehead .people-profile-information .avatar.one-letter{padding-left:0;text-align:center}.people-show .pagehead .people-profile-information img{border-radius:3px;position:absolute}.people-show .pagehead .people-profile-information h2{display:block;font-size:24px;font-weight:300;margin-bottom:0;padding-left:100px;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;width:calc(100% - 245px);margin-right:-9999px}@media (max-width:480px){.people-show .pagehead .people-profile-information h2{width:100%}}.people-show .pagehead .people-profile-information .profile-detail-summary{padding-left:100px;margin-top:3px}.people-show .pagehead .people-profile-information .profile-detail-summary li:not(:last-child){margin-right:10px}.people-show .pagehead .people-profile-information #tagsForm{padding-left:100px;position:relative}.people-show .pagehead .people-profile-information #tagsForm #tags_tagsinput{height:40px!important;min-height:40px!important;width:370px!important;display:inline-block;overflow:hidden}.people-show .pagehead .people-profile-information #tagsForm .tagsFormActions{display:inline;position:relative;top:-17px}.people-show .pagehead .people-profile-information .tags{padding:0;padding-left:100px;list-style:none;line-height:20px;margin:0;overflow:hidden;margin-top:8px}.people-show .pagehead .people-profile-information .tags li{float:left}.people-show .pagehead .quick-actions{position:absolute;right:0;top:14px}.people-show .main-content{background-color:#fff;padding-bottom:20px;padding-top:40px}.people-show .main-content .section-title{position:relative}.people-show .main-content .section-title h3{border-bottom:1px solid #e1e2e3;font-size:18px;font-weight:400;margin-bottom:20px;padding-bottom:10px;padding-left:23px;padding-top:10px;position:relative}.people-show .main-content .section-title .icon-section{position:absolute;top:14px;width:17px}.people-show .main-content .sidebar .sidebar-cta a{margin-bottom:20px;width:100%}.people-show .profile .sidebar-box{background-color:#fafafa;border:1px solid #eee;border-radius:3px;color:#333;margin-bottom:25px;padding:10px;position:relative}.people-show .profile .sidebar-box-title{margin-bottom:4px;position:relative}.people-show .profile .sidebar-box-title strong{font-size:12px;font-weight:500;text-transform:uppercase}.people-show .profile .sidebar-box-title a{position:absolute;right:7px}.people-show .profile .sidebar-box-title img{left:-3px;position:relative;width:20px}.people-show .profile .sidebar-box-title img.people-information{top:-4px}.people-show .profile .sidebar-box-paragraph{margin-bottom:0}.people-show .profile .people-list li{margin-bottom:4px}.people-show .profile .introductions li,.people-show .profile .people-information li,.people-show .profile .work li{color:#999;font-size:12px;margin-bottom:10px}.people-show .profile .introductions li:last-child,.people-show .profile .people-information li:last-child,.people-show .profile .work li:last-child{margin-bottom:0}.people-show .profile .introductions li i,.people-show .profile .people-information li i,.people-show .profile .work li i{text-align:center;width:17px}.people-show .profile .section{margin-bottom:35px}.people-show .profile .section.food-preferencies .section-heading img,.people-show .profile .section.kids .section-heading img{position:relative;top:-3px}.people-show .profile .section .inline-action{display:inline;margin-left:10px}.people-show .profile .section .inline-action a{margin-right:5px}.people-show .profile .section .section-heading{border-bottom:1px solid #eee;padding-bottom:4px;margin-bottom:10px}.people-show .profile .section .section-heading img{width:25px}.people-show .profile .section .section-action{display:inline;float:right}.people-show .profile .section .section-blank{background-color:#fafafa;border:1px solid #eee;border-radius:3px;padding:15px;text-align:center}.people-show .profile .section .section-blank h3{font-weight:400;font-size:14px}.people-show .gifts .gift-recipient{font-size:15px}.people-show .gifts .gift-recipient:not(:first-child){margin-top:25px}.people-show .gifts .offered{background-color:#5cb85c;border-radius:10rem;display:inline-block;font-size:75%;font-weight:400;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;padding:2px 0;padding-right:.6em;padding-left:.6em}.people-show .gifts .gift-list-item{border-top:1px solid #eee;padding:5px 0}.people-show .gifts .gift-list-item:last-child{border-bottom:0}.people-show .gifts .gift-list-item-url{display:inline;font-size:12px;margin-left:10px;padding:5px 0 0}.people-show .gifts .gift-list-item-information{display:inline;margin-left:10px}.people-show .gifts .gift-list-item-actions,.people-show .gifts .gift-list-item-date{color:#999;display:inline;font-size:12px}.people-show .gifts .gift-list-item-actions a,.people-show .gifts .gift-list-item-date a{color:#999;font-size:11px;margin-right:5px;text-decoration:underline}.people-show .gifts .gift-list-item-actions li,.people-show .gifts .gift-list-item-date li{display:inline}.people-show .gifts .gift-list-item-actions{margin-left:5px}.people-show .gifts .for{font-style:italic;margin-left:10px}.people-show .activities .date,.people-show .calls .date,.people-show .debts .date,.people-show .gifts .date,.people-show .reminders .date,.people-show .tasks .date{color:#777;font-size:12px;margin-right:10px;width:100px}.people-show .activities .pa2 li,.people-show .calls .pa2 li,.people-show .debts .pa2 li,.people-show .gifts .pa2 li,.people-show .reminders .pa2 li,.people-show .tasks .pa2 li{list-style:inside disc}.people-show .activities .frequency-type,.people-show .activities .value,.people-show .calls .frequency-type,.people-show .calls .value,.people-show .debts .frequency-type,.people-show .debts .value,.people-show .gifts .frequency-type,.people-show .gifts .value,.people-show .reminders .frequency-type,.people-show .reminders .value,.people-show .tasks .frequency-type,.people-show .tasks .value{background-color:#ecf9ff;border:1px solid #eee;border-radius:3px;display:inline;font-size:12px;padding:0 6px}.people-show .activities .list-actions,.people-show .calls .list-actions,.people-show .debts .list-actions,.people-show .gifts .list-actions,.people-show .reminders .list-actions,.people-show .tasks .list-actions{position:relative;text-align:center;width:60px}.people-show .activities .list-actions a:first-child,.people-show .calls .list-actions a:first-child,.people-show .debts .list-actions a:first-child,.people-show .gifts .list-actions a:first-child,.people-show .reminders .list-actions a:first-child,.people-show .tasks .list-actions a:first-child{margin-right:5px}.people-show .activities .list-actions a.edit,.people-show .calls .list-actions a.edit,.people-show .debts .list-actions a.edit,.people-show .gifts .list-actions a.edit,.people-show .reminders .list-actions a.edit,.people-show .tasks .list-actions a.edit{position:relative;top:1px}.people-show .activities .empty,.people-show .calls .empty,.people-show .debts .empty,.people-show .gifts .empty,.people-show .reminders .empty,.people-show .tasks .empty{font-style:italic}.people-show .reminders .frequency-type{white-space:nowrap}.people-show .reminders input[type=date]{margin-bottom:20px;width:170px}.people-show .reminders .form-check input[type=number]{display:inline;width:50px}.people-show .debts .debts-list .debt-nature{width:220px}.people-show.kid .significant-other-blank-state,.people-show.significantother .significant-other-blank-state{text-align:center}.people-show.kid .significant-other-blank-state img,.people-show.significantother .significant-other-blank-state img{margin-bottom:20px;margin-top:10px}.people-show.kid .central-form .hint-reminder,.people-show.significantother .central-form .hint-reminder{margin-top:10px}.people-show.kid .central-form .hint-reminder p,.people-show.kid .central-form .real-contact-checkbox,.people-show.significantother .central-form .hint-reminder p,.people-show.significantother .central-form .real-contact-checkbox{margin-bottom:0}.people-show.kid .central-form .real-contact-checkbox input,.people-show.significantother .central-form .real-contact-checkbox input{margin-right:5px}.people-show.kid .central-form .real-contact-checkbox .help,.people-show.significantother .central-form .real-contact-checkbox .help{color:#999}.create-people .import{margin-bottom:30px;text-align:center}@media (max-width:480px){.people-list{margin-top:20px}.people-list .people-list-mobile{border-bottom:1px solid #dfdfdf}.people-list .people-list-mobile li{padding:6px 0}.people-list .people-list-item .people-list-item-information{display:none}.people-show .pagehead .people-profile-information{margin-bottom:20px;margin-top:10px}.people-show .pagehead .people-profile-information h2{padding-left:80px}.people-show .pagehead .people-profile-information h2 span{display:none}.people-show .pagehead .people-profile-information #tagsForm{display:block;margin-top:40px;padding-left:0}.people-show .pagehead .people-profile-information #tagsForm #tags_tagsinput{width:100%!important}.people-show .pagehead .people-profile-information #tagsForm .tagsFormActions{display:block;margin-top:20px}.people-show .pagehead .people-profile-information .profile-detail-summary{padding-left:0;margin-top:10px}.people-show .pagehead .people-profile-information .profile-detail-summary li{display:block;margin-right:0}.people-show .pagehead .people-profile-information .profile-detail-summary li:not(:last-child):after{content:"";margin-left:0}.people-show .pagehead .people-profile-information .avatar{height:67px;width:67px;padding-top:11px}.people-show .pagehead .people-profile-information .tags{padding-left:80px}.people-show .pagehead .edit-information{position:relative;width:100%;margin-bottom:10px}.people-show .main-content.modal{margin-top:0}.people-show .main-content.dashboard .sidebar-box{margin-bottom:15px}.people-show .main-content.dashboard .sidebar-cta{margin-top:15px}.people-show .main-content.activities .cta-mobile,.people-show .main-content.dashboard .people-information-actions{margin-bottom:20px}.people-show .main-content.activities .cta-mobile a{width:100%}.people-show .main-content.activities .activities-list .activity-item-date{top:-4px}.create-people,.create-people .btn{width:100%}.list-add-item{margin-left:0}.inline-form .task-add-title,.inline-form textarea{width:100%}.box-links{margin-bottom:10px;position:relative;right:0;top:0}.box-links li{margin-left:0}}.journal-calendar-text{top:19px;line-height:16px;width:62px}.journal-calendar-box{width:62px;margin-right:11px}.journal-calendar-content{width:calc(100% - 73px)}.journal-line{-webkit-transition:all .2s;transition:all .2s}.journal-line:hover{border-color:#00a8ff}.marketing.homepage .top-page{background-color:#313940;border-bottom:1px solid #d0d0d0;color:#fff;padding-top:40px;text-align:center}.marketing.homepage .top-page .navigation{position:absolute;right:20px;top:20px}.marketing.homepage .top-page .navigation a{border:1px solid #fff;border-radius:6px;color:#fff;padding:10px;text-decoration:none}.marketing.homepage .top-page h1{font-size:32px;font-weight:300;margin-bottom:40px}.marketing.homepage .top-page p{font-size:18px;font-weight:300;margin:0 auto;max-width:550px}.marketing.homepage .top-page p.cta{margin-bottom:50px;margin-top:70px}.marketing.homepage .top-page p.cta a{font-size:20px;font-weight:300;padding:20px 50px}.marketing.homepage .top-page .logo{margin-bottom:20px}.marketing.homepage .before-sections{text-align:center}.marketing.homepage .before-sections h3{font-size:25px;font-weight:300;margin-bottom:40px;margin-top:80px}.marketing.homepage .section-homepage{border-bottom:1px solid #dcdcdc;padding:60px 0}.marketing.homepage .section-homepage .visual{text-align:center}.marketing.homepage .section-homepage h2{font-size:18px;font-weight:300;margin-bottom:25px}.marketing.homepage .section-homepage.dates h2{margin-top:40px}.marketing.homepage .section-homepage.activities h2{margin-top:130px}.marketing.homepage .section-homepage.features h3{font-size:18px;font-weight:300;margin-bottom:40px;text-align:center}.marketing.homepage .section-homepage.features ul li{font-size:16px;margin:10px auto;max-width:60%}.marketing.homepage .section-homepage.features ul li i{color:#417741}.marketing.homepage .section-homepage.try{text-align:center}.marketing.homepage .section-homepage.try p{margin-bottom:50px;margin-top:70px}.marketing.homepage .section-homepage.try p a{font-size:20px;font-weight:300;padding:20px 50px}.marketing.homepage .why{background-color:#313940;color:#fff;padding-bottom:50px}.marketing.homepage .why h3{font-size:20px;font-weight:300;margin-bottom:30px;padding-top:50px;text-align:center}.marketing.homepage .why p{font-size:16px;font-weight:300;margin:10px auto 20px;max-width:550px}.marketing .footer-marketing{margin-bottom:40px;padding-top:40px;text-align:center}.marketing .footer-marketing a{margin-right:10px}.marketing.register{background-color:#fafbfc;padding-top:90px;padding-bottom:40px}.marketing.register .signup-box{background-color:#fff;border:1px solid #e4edf5;border-radius:5px;padding:50px 20px 20px}.marketing.register .signup-box .logo{left:40%;position:absolute;top:-33px}.marketing.register .signup-box h1{font-weight:700;text-align:center}.marketing.register .signup-box h2,.marketing.register .signup-box h3{font-weight:300;text-align:center}.marketing.register .signup-box h2{margin-top:20px;margin-bottom:20px}.marketing.register .signup-box h3{font-size:15px;margin-bottom:30px}.marketing.register .signup-box .form-inline label{display:block}.marketing.register .signup-box a.action,.marketing.register .signup-box button{margin-top:10px;width:100%}.marketing.register .signup-box .help{font-size:13px;text-align:center}.marketing.register .signup-box .checkbox{display:none}.marketing.register .signup-box .links{margin-top:20px}.marketing.register .signup-box .links li{font-size:14px;margin-bottom:5px}.marketing .subpages .header{background-color:#313940;text-align:center}.privacy,.releases,.statistics{max-width:750px;margin-left:auto;margin-right:auto;padding:20px 30px 100px;margin-top:50px;background-color:#fff;-webkit-box-shadow:0 8px 20px #dadbdd;box-shadow:0 8px 20px #dadbdd}.privacy h2,.releases h2,.statistics h2{text-align:center}.privacy h3,.releases h3,.statistics h3{font-size:15px;margin-top:30px}.releases ul{list-style-type:disc;margin-left:20px}@media (max-width:480px){.marketing.homepage img{max-width:100%}.marketing.homepage .before-sections h3{margin-bottom:0}.marketing.homepage .section-homepage.people .visual{margin-top:40px}.marketing.homepage .section-homepage.activities h2{margin-top:0}.marketing.homepage .section-homepage.activities .visual{margin-top:40px}.marketing.homepage .section-homepage.features ul li{max-width:100%}.marketing.homepage .section-homepage.try{padding:30px 0}.marketing.register .signup-box .logo{left:39%;top:-47px}}.settings .breadcrumb{margin-bottom:20px}.settings .sidebar-menu ul{border:1px solid #dfdfdf;border-radius:3px}.settings .sidebar-menu li{padding:10px}.settings .sidebar-menu li:not(:last-child){border-bottom:1px solid #dfdfdf}.settings .sidebar-menu li.selected{background-color:#f7fbfc}.settings .sidebar-menu li.selected i{color:green}.settings .sidebar-menu li a{width:100%}.settings .sidebar-menu li i{margin-right:5px;color:#999}.settings .settings-delete,.settings .settings-reset{border:1px solid;padding:10px;margin-top:40px}.settings .settings-delete h2,.settings .settings-reset h2{font-weight:400;font-size:16px}.settings .settings-delete{border-color:#d9534f;border-radius:3px}.settings .settings-reset{border-color:#f0ad4e;border-radius:3px}.settings .warning-zone{margin-bottom:30px;margin-top:30px;padding:10px 10px 5px 15px;border:1px solid #f1c897;border-radius:3px;background-color:#ffe8bc}.settings .users-list h3.with-actions{padding-bottom:13px}.settings .users-list h3.with-actions a{float:right}.settings .users-list .table-cell.actions{text-align:right}.settings .blank-screen{text-align:center}.settings .blank-screen img{margin-bottom:30px;margin-top:30px}.settings .blank-screen h2{font-weight:400;margin-bottom:10px}.settings .blank-screen h3{margin-top:0;border-bottom:0}.settings .blank-screen p{margin:0 auto;width:400px}.settings .blank-screen p.cta{margin-top:40px;margin-bottom:10px}.settings .blank-screen .requires-subscription{margin-top:20px;font-size:13px;color:#999}.settings .subscriptions .upgrade-benefits{margin-bottom:20px}.settings .subscriptions .upgrade-benefits li{margin-left:20px;list-style-type:disc}.settings .subscriptions #label-card-element{margin-bottom:15px}.settings .subscriptions .downgrade ul{background-color:#f8f8f8;border:1px solid #dfdfdf;border-radius:6px;margin-bottom:20px;padding:25px}.settings .subscriptions .downgrade li{padding-bottom:15px}.settings .subscriptions .downgrade li:not(:last-child){border-bottom:1px solid #dfdfdf}.settings .subscriptions .downgrade li:not(:first-child){margin-top:10px}.settings .subscriptions .downgrade li.success .rule-title{text-decoration:line-through}.settings .subscriptions .downgrade li.success .icon:after{font-family:FontAwesome;font-size:17px;color:#0eb0b7;content:"\F058";top:10px;position:relative}.settings .subscriptions .downgrade li.fail .icon:after{font-family:FontAwesome;font-size:17px;color:#cd4400;content:"\F057";top:10px;position:relative}.settings .subscriptions .downgrade li .rule-title{font-size:18px;padding-left:5px}.settings .subscriptions .downgrade li .rule-to-succeed{font-size:13px;display:block;padding-left:27px}.settings .report .report-summary{background-color:#fafafa;border:1px solid #dfdfdf;border-radius:3px;margin-bottom:30px}.settings .report .report-summary li{padding:5px 10px}.settings .report .report-summary li:not(:last-child){border-bottom:1px solid #dfdfdf}.settings .report .report-summary li span{font-weight:600}.settings .report .status{text-align:center;width:95px}.settings .report .reason{font-style:italic}.settings.import .success{color:#5cb85c}.settings.import .failure{color:#d9534f}.settings.import .warning{color:#f0ad4e}.settings.import .date{font-size:13px;margin-left:10px}.settings.import h3.with-actions{padding-bottom:13px}.settings.import h3.with-actions a{float:right}.settings.upload .warning-zone{padding:20px 15px}.settings.upload .warning-zone ul{margin-left:20px;list-style-type:disc}.settings .tags-list .tags-list-contact-number{margin-left:10px;color:#999}.settings .tags-list .actions{text-align:right}.modal h5{font-size:20px;font-weight:500}.modal label{padding-left:0}.modal .close{position:absolute;right:19px;top:14px;font-size:30px}.modal.log-call .date-it-happened{margin-top:20px}.modal.log-call .exact-date{display:none;margin-top:20px}.modal.log-call .exact-date input{display:inline;width:165px}.bg-gray-monica{background-color:#f2f4f8}.b--gray-monica{border-color:#dde2e9}.w-5{width:5%}.w-95{width:95%}.form-error-message{border-top:1px solid #ed6246;background-color:#fbeae5;-webkit-box-shadow:inset 0 3px 0 0 #ed6347,inset 0 0 0 0 transparent,0 0 0 1px rgba(63,63,68,.05),0 1px 3px 0 rgba(63,63,68,.15);box-shadow:inset 0 3px 0 0 #ed6347,inset 0 0 0 0 transparent,0 0 0 1px rgba(63,63,68,.05),0 1px 3px 0 rgba(63,63,68,.15)}.form-information-message{border-top:1px solid #46c1bf;background-color:#e0f5f5;-webkit-box-shadow:inset 0 3px 0 0 #47c1bf,inset 0 0 0 0 transparent,0 0 0 1px rgba(63,63,68,.05),0 1px 3px 0 rgba(63,63,68,.15);box-shadow:inset 0 3px 0 0 #47c1bf,inset 0 0 0 0 transparent,0 0 0 1px rgba(63,63,68,.05),0 1px 3px 0 rgba(63,63,68,.15)}.form-information-message svg{width:20px;fill:#00848e;color:#fff}.border-bottom{border-bottom:1px solid #dfdfdf}.border-top{border-top:1px solid #dfdfdf}.border-right{border-right:1px solid #dfdfdf}.border-left{border-left:1px solid #dfdfdf}.padding-left-none{padding-left:0}.boxed{background:#fff;border:1px solid #dfdfdf;border-radius:3px;-webkit-box-shadow:0 1px 3px 0 rgba(0,0,0,.05);box-shadow:0 1px 3px 0 rgba(0,0,0,.05)}.box-padding{padding:15px}.badge{display:inline-block;padding:4px 5px;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem}.badge-success{background-color:#5cb85c}.badge-danger{background-color:#d9534f}.pretty-tag{background:#eee;border-radius:3px;color:#555;display:inline-block;font-size:11px;height:22px;line-height:22px;padding:0 10px 0 19px;position:relative;margin:0 10px 0 0;text-decoration:none;-webkit-transition:color .2s}.pretty-tag:before{background:#fff;border-radius:10px;-webkit-box-shadow:inset 0 1px rgba(0,0,0,.25);box-shadow:inset 0 1px rgba(0,0,0,.25);content:"";height:6px;left:7px;position:absolute;width:6px;top:9px}.pretty-tag:hover{background-color:#0366d6}.pretty-tag:hover a{color:#fff}.pretty-tag a{text-decoration:none;color:#555}.pretty-tag a:hover{background-color:transparent;color:#fff}body{color:#323b43}a{color:#0366d6;padding:1px;text-decoration:underline}a:hover{background-color:#0366d6;color:#fff;text-decoration:none}a.action-link{color:#999;font-size:11px;margin-right:5px;text-decoration:underline}ul{list-style-type:none;margin:0;padding:0}ul.horizontal li{display:inline}.hidden{display:none}input:disabled{background-color:#999}.pagination-box{margin-top:30px;text-align:center}.alert-success{margin:20px 0}.central-form{margin-top:40px}.central-form h2{font-weight:400;margin-bottom:20px;text-align:center}.central-form .form-check-inline{margin-right:10px}.central-form .form-group>label:not(:first-child){margin-top:10px}.central-form input[type=radio]{margin-right:5px}.central-form .dates .form-inline{display:inline}.central-form .dates .form-inline input[type=number]{margin:0 10px;width:52px}.central-form .dates .form-inline input[type=date]{margin-left:20px;margin-top:10px}.central-form .form-group:not(:last-child){border-bottom:1px solid #eee;padding-bottom:20px}.central-form .nav{margin-top:40px}.central-form .nav .nav-link{text-decoration:none}.central-form .tab-content{border-right:1px solid #ddd;border-left:1px solid #ddd;border-bottom:1px solid #ddd;padding:15px}.avatar-photo img{border-radius:3px}.breadcrumb{background-color:#f9f9fb}.breadcrumb ul{font-size:12px;padding:30px 0 24px}.breadcrumb ul li:not(:last-child):after{content:">";margin-left:5px;margin-right:1px}.btn{color:#24292e;background-color:#eff3f6;background-image:-webkit-gradient(linear,left top,left bottom,from(#fafbfc),color-stop(90%,#eff3f6));background-image:linear-gradient(-180deg,#fafbfc,#eff3f6 90%);position:relative;display:inline-block;padding:6px 12px;font-size:14px;font-weight:600;line-height:20px;white-space:nowrap;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-position:-1px -1px;background-size:110% 110%;border:1px solid rgba(27,31,35,.2);border-radius:.25em;-webkit-appearance:none;-moz-appearance:none;appearance:none}.btn,.btn:hover,.btn:visited{background-repeat:repeat-x;text-decoration:none}.btn:hover,.btn:visited{background-color:#e6ebf1;background-image:-webkit-gradient(linear,left top,left bottom,from(#f0f3f6),color-stop(90%,#e6ebf1));background-image:linear-gradient(-180deg,#f0f3f6,#e6ebf1 90%);background-position:0 -.5em;border-color:rgba(27,31,35,.35)}.btn:active{background-color:#e9ecef;background-image:none;border-color:rgba(27,31,35,.35);-webkit-box-shadow:inset 0 .15em .3em rgba(27,31,35,.15);box-shadow:inset 0 .15em .3em rgba(27,31,35,.15)}.btn:disabled{background-image:-webkit-gradient(linear,left top,left bottom,from(#63b175),color-stop(90%,#61986e));background-image:linear-gradient(-180deg,#63b175,#61986e 90%)}.btn:focus{outline:none;text-decoration:none}.btn-primary{color:#fff;background-color:#28a745;background-image:-webkit-gradient(linear,left top,left bottom,from(#34d058),color-stop(90%,#28a745));background-image:linear-gradient(-180deg,#34d058,#28a745 90%)}.btn-primary:hover{background-color:#269f42;background-image:-webkit-gradient(linear,left top,left bottom,from(#2fcb53),color-stop(90%,#269f42));background-image:linear-gradient(-180deg,#2fcb53,#269f42 90%);background-position:0 -.5em;border-color:rgba(27,31,35,.5)}.table{border-collapse:collapse;display:table;width:100%}.table .table-row{border-left:1px solid #ddd;border-right:1px solid #ddd;border-top:1px solid #ddd;display:table-row}.table .table-row:first-child .table-cell:first-child{border-top-left-radius:3px}.table .table-row:first-child .table-cell:last-child{border-top-right-radius:3px}.table .table-row:last-child{border-bottom:1px solid #ddd}.table .table-row:hover{background-color:#f6f8fa}.table .table-cell{display:table-cell;padding:8px 10px}footer .badge-success{font-size:12px;font-weight:400}footer .show-version{text-align:left}footer .show-version h2{font-size:16px}footer .show-version .note{margin-bottom:20px}footer .show-version .note ul{list-style-type:disc}footer .show-version .note li{display:block;font-size:15px;text-align:left}@media (max-width:480px){.sidebar-box{border:1px solid #dfdfdf;border-radius:3px}.sidebar-box .sidebar-heading{background-color:#fafafa;margin-top:0;padding:5px}.sidebar-box .sidebar-blank{background-color:#fff;border:0}.sidebar-box li{padding:5px}} /*# sourceMappingURL=app.css.map*/ \ No newline at end of file diff --git a/public/js/app.js b/public/js/app.js index 01bb0198215..756a7b56af7 100644 --- a/public/js/app.js +++ b/public/js/app.js @@ -1,2 +1,2 @@ -!function(e){var t={};function n(a){if(t[a])return t[a].exports;var i=t[a]={i:a,l:!1,exports:{}};return e[a].call(i.exports,i,i.exports,n),i.l=!0,i.exports}n.m=e,n.c=t,n.d=function(e,t,a){n.o(e,t)||Object.defineProperty(e,t,{configurable:!1,enumerable:!0,get:a})},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=0)}({"+dqM":function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};t.default={data:function(){return{contactFieldTypes:[],submitted:!1,edited:!1,deleted:!1,createForm:{name:"",protocol:"",icon:"",errors:[]},editForm:{id:"",name:"",protocol:"",icon:"",errors:[]}}},ready:function(){this.prepareComponent()},mounted:function(){this.prepareComponent()},methods:{prepareComponent:function(){this.getContactFieldTypes(),$("#modal-create-contact-field-type").on("shown.bs.modal",function(){$("#name").focus()}),$("#modal-edit-contact-field-type").on("shown.bs.modal",function(){$("#name").focus()})},getContactFieldTypes:function(){var e=this;axios.get("/settings/personalization/contactfieldtypes").then(function(t){e.contactFieldTypes=t.data})},add:function(){$("#modal-create-contact-field-type").modal("show")},store:function(){this.persistClient("post","/settings/personalization/contactfieldtypes",this.createForm,"#modal-create-contact-field-type",this.submitted),this.$notify({group:"main",title:_.get(window.trans,"settings.personalization_contact_field_type_add_success"),text:"",width:"500px",type:"success"})},edit:function(e){this.editForm.id=e.id,this.editForm.name=e.name,this.editForm.protocol=e.protocol,this.editForm.icon=e.fontawesome_icon,$("#modal-edit-contact-field-type").modal("show")},update:function(){this.persistClient("put","/settings/personalization/contactfieldtypes/"+this.editForm.id,this.editForm,"#modal-edit-contact-field-type",this.edited),this.$notify({group:"main",title:_.get(window.trans,"settings.personalization_contact_field_type_edit_success"),text:"",width:"500px",type:"success"})},showDelete:function(e){this.editForm.id=e.id,$("#modal-delete-contact-field-type").modal("show")},trash:function(){this.persistClient("delete","/settings/personalization/contactfieldtypes/"+this.editForm.id,this.editForm,"#modal-delete-contact-field-type",this.deleted),this.$notify({group:"main",title:_.get(window.trans,"settings.personalization_contact_field_type_delete_success"),text:"",width:"500px",type:"success"})},persistClient:function(e,t,n,i,o){var r=this;n.errors={},axios[e](t,n).then(function(e){r.getContactFieldTypes(),n.id="",n.name="",n.protocol="",n.icon="",n.errors=[],$(i).modal("hide"),!0}).catch(function(e){"object"===a(e.response.data)?n.errors=_.flatten(_.toArray(e.response.data)):n.errors=["Something went wrong. Please try again."]})}}}},"+iJ1":function(e,t,n){var a=n("VU/8")(n("kkLY"),n("bMRZ"),!1,function(e){n("eJdv")},"data-v-25a46624",null);e.exports=a.exports},"/2Sx":function(e,t,n){(e.exports=n("FZ+f")(!1)).push([e.i,"",""])},"/FjL":function(e,t){e.exports={render:function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",[n("journal-calendar",{attrs:{"journal-entry":e.journalEntry}}),e._v(" "),n("div",{staticClass:"fl journal-calendar-content"},[n("div",{staticClass:"br3 ba b--gray-monica bg-white mb3 journal-line"},[n("div",{staticClass:"flex pb3 pt3"},[n("div",{staticClass:"flex-none w-10 tc"},[n("h3",{staticClass:"mb0 normal fw5"},[e._v(e._s(e.activity.day))]),e._v(" "),n("p",{staticClass:"mb0 black-60 f6"},[e._v(e._s(e.activity.day_name))])]),e._v(" "),n("div",{staticClass:"flex-auto"},[n("p",{staticClass:"mb1"},[n("span",{staticClass:"pr2 f6 avenir"},[e._v(e._s(e.$t("journal.journal_entry_type_activity"))+": "+e._s(e.activity.activity_type))])]),e._v(" "),n("p",{staticClass:"mb1"},[e._v(e._s(e.activity.summary))]),e._v(" "),e.showDescription?n("p",[e._v(e._s(e.activity.description))]):e._e()]),e._v(" "),e.activity.description?[n("div",{staticClass:"flex-none w-5 pointer",on:{click:function(t){e.toggleDescription()}}},[n("div",{staticClass:"flex justify-center items-center h-100"},[n("svg",{directives:[{name:"tooltip",rawName:"v-tooltip.top",value:"Show comment",expression:"'Show comment'",modifiers:{top:!0}}],staticClass:"flex-none",attrs:{width:"16px",height:"13px",viewBox:"0 0 16 13",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"}},[n("defs"),e._v(" "),n("g",{attrs:{id:"App",stroke:"none","stroke-width":"1",fill:"none","fill-rule":"evenodd","stroke-linecap":"square"}},[n("g",{attrs:{id:"Desktop",transform:"translate(-839.000000, -279.000000)",stroke:"#979797"}},[n("g",{attrs:{id:"Group-4",transform:"translate(839.000000, 278.000000)"}},[n("path",{attrs:{d:"M0.5,1.5 L15.5,1.5",id:"Line-2"}}),e._v(" "),n("path",{attrs:{d:"M0.5,9.5 L15.5,9.5",id:"Line-2"}}),e._v(" "),n("path",{attrs:{d:"M0.5,5.5 L13.5,5.5",id:"Line-2"}}),e._v(" "),n("path",{attrs:{d:"M0.5,13.5 L10.5,13.5",id:"Line-2"}})])])])])])])]:e._e()],2),e._v(" "),n("div",{staticClass:"flex bt b--gray-monica"},[n("div",{staticClass:"w-10"},[e._v("\n  \n ")]),e._v(" "),n("div",{staticClass:"flex-none w-30 mt2 pt1 pb2"},[n("p",{staticClass:"mb0 f6 gray"},[e._v(e._s(e.$t("journal.journal_created_automatically")))])]),e._v(" "),n("div",{staticClass:"flex-auto w-60 tr mt2 pa1 pr3 pb2"},[n("span",{staticClass:"f6 gray"},[e._v(e._s(e.$t("app.with"))+" ")]),e._v(" "),e._l(e.activity.attendees,function(t){return n("div",{staticClass:"dib pointer ml2",on:{click:function(n){e.redirect(t)}}},[t.information.avatar.has_avatar?n("img",{directives:[{name:"tooltip",rawName:"v-tooltip",value:t.complete_name,expression:"attendees.complete_name"}],staticClass:"br3 journal-avatar-small",attrs:{src:t.information.avatar.avatar_url}}):e._e(),e._v(" "),t.information.avatar.has_avatar?e._e():n("div",{directives:[{name:"tooltip",rawName:"v-tooltip",value:t.complete_name,expression:"attendees.complete_name"}],staticClass:"br3 white tc journal-initial-small",style:{"background-color":t.information.avatar.default_avatar_color}},[e._v("\n "+e._s(t.initials)+"\n ")])])})],2)])])])],1)},staticRenderFns:[]}},0:function(e,t,n){n("sV/x"),n("xZZD"),e.exports=n("A15i")},"0pae":function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default={data:function(){return{activeTab:"",callsAlreadyLoaded:!1,notesAlreadyLoaded:!1,calls:[],notes:[]}},ready:function(){this.prepareComponent()},mounted:function(){this.prepareComponent()},props:["defaultActiveTab"],methods:{prepareComponent:function(){this.setActiveTab(this.defaultActiveTab)},setActiveTab:function(e){this.activeTab=e,this.saveTab(e),"calls"==e&&(this.callsAlreadyLoaded||(this.getCalls(),this.callsAlreadyLoaded=!0)),"notes"==e&&(this.notesAlreadyLoaded||(this.getNotes(),this.notesAlreadyLoaded=!0))},saveTab:function(e){axios.post("/dashboard/setTab",{tab:e}).then(function(e){})},getCalls:function(){var e=this;axios.get("/dashboard/calls").then(function(t){e.calls=t.data})},getNotes:function(){var e=this;axios.get("/dashboard/notes").then(function(t){e.notes=t.data})}}}},"0w0L":function(e,t,n){var a=n("zWpP");"string"==typeof a&&(a=[[e.i,a,""]]),a.locals&&(e.exports=a.locals);n("rjj0")("7d5d57e8",a,!0)},1:function(e,t){},"162o":function(e,t,n){var a=Function.prototype.apply;t.setTimeout=function(){return new i(a.call(setTimeout,window,arguments),clearTimeout)},t.setInterval=function(){return new i(a.call(setInterval,window,arguments),clearInterval)},t.clearTimeout=t.clearInterval=function(e){e&&e.close()};function i(e,t){this._id=e,this._clearFn=t}i.prototype.unref=i.prototype.ref=function(){},i.prototype.close=function(){this._clearFn.call(window,this._id)},t.enroll=function(e,t){clearTimeout(e._idleTimeoutId),e._idleTimeout=t},t.unenroll=function(e){clearTimeout(e._idleTimeoutId),e._idleTimeout=-1},t._unrefActive=t.active=function(e){clearTimeout(e._idleTimeoutId);var t=e._idleTimeout;t>=0&&(e._idleTimeoutId=setTimeout(function(){e._onTimeout&&e._onTimeout()},t))},n("mypn"),t.setImmediate=setImmediate,t.clearImmediate=clearImmediate},"1Ftj":function(e,t){e.exports={render:function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",[1==e.clickable?n("div",[e.contact.has_avatar?n("div",{staticClass:"tc"},[e.contact.has_avatar?n("img",{directives:[{name:"tooltip",rawName:"v-tooltip",value:e.contact.complete_name,expression:"contact.complete_name"}],staticClass:"br4 h3 w3 dib",attrs:{src:e.contact.avatar_url},on:{click:function(t){e.goToContact()}}}):e._e()]):e._e(),e._v(" "),e.contact.gravatar_url?n("div",{staticClass:"tc"},[n("img",{staticClass:"br4 h3 w3 dib",attrs:{src:e.contact.gravatar_url,width:"43"},on:{click:function(t){e.goToContact()}}})]):e._e(),e._v(" "),e.contact.has_avatar?e._e():n("div",{directives:[{name:"tooltip",rawName:"v-tooltip.bottom",value:e.contact.complete_name,expression:"contact.complete_name",modifiers:{bottom:!0}}],staticClass:"br4 h3 w3 dib pt3 white tc f4",style:{"background-color":e.contact.default_avatar_color},on:{click:function(t){e.goToContact()}}},[e._v("\n "+e._s(e.contact.initials)+"\n ")])]):e._e(),e._v(" "),0==e.clickable?n("div",[e.contact.has_avatar?n("div",{staticClass:"tc"},[e.contact.has_avatar?n("img",{directives:[{name:"tooltip",rawName:"v-tooltip",value:e.contact.complete_name,expression:"contact.complete_name"}],staticClass:"br4 h3 w3 dib",attrs:{src:e.contact.avatar_url}}):e._e()]):e._e(),e._v(" "),e.contact.gravatar_url?n("div",{staticClass:"tc"},[n("img",{staticClass:"br4 h3 w3 dib",attrs:{src:e.contact.gravatar_url,width:"43"}})]):e._e(),e._v(" "),e.contact.has_avatar?e._e():n("div",{directives:[{name:"tooltip",rawName:"v-tooltip.bottom",value:e.contact.complete_name,expression:"contact.complete_name",modifiers:{bottom:!0}}],staticClass:"br4 h3 w3 dib pt3 white tc f4",style:{"background-color":e.contact.default_avatar_color}},[e._v("\n "+e._s(e.contact.initials)+"\n ")])]):e._e()])},staticRenderFns:[]}},"1abU":function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default={data:function(){return{day:[]}},ready:function(){this.prepareComponent()},mounted:function(){this.prepareComponent()},props:["journalEntry"],methods:{prepareComponent:function(){this.day=this.journalEntry.object},destroy:function(){var e=this;axios.delete("/journal/day/"+this.day.id).then(function(t){e.$emit("deleteJournalEntry",e.journalEntry.id)})}}}},"20cu":function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default={data:function(){return{tokens:[]}},ready:function(){this.prepareComponent()},mounted:function(){this.prepareComponent()},methods:{prepareComponent:function(){this.getTokens()},getTokens:function(){var e=this;axios.get("/oauth/tokens").then(function(t){e.tokens=t.data})},revoke:function(e){var t=this;axios.delete("/oauth/tokens/"+e.id).then(function(e){t.getTokens()})}}}},"21It":function(e,t,n){"use strict";var a=n("FtD3");e.exports=function(e,t,n){var i=n.config.validateStatus;n.status&&i&&!i(n.status)?t(a("Request failed with status code "+n.status,n.config,null,n.request,n)):e(n)}},"2i7L":function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var a=n("XILU"),i=n.n(a);t.default={data:function(){return{format:"yyyy-MM-dd",selectedDate:""}},components:{Datepicker:i.a},mounted:function(){this.selectedDate=new Date,this.selectedDate.setYear(this.defaultDate.slice(0,4)),this.selectedDate.setMonth(parseInt(this.defaultDate.slice(5,7))-1),this.selectedDate.setDate(this.defaultDate.slice(8,10))},props:{value:null,id:{type:String},defaultDate:{type:String},locale:{type:String}},methods:{}}},"3IRH":function(e,t){e.exports=function(e){return e.webpackPolyfill||(e.deprecate=function(){},e.paths=[],e.children||(e.children=[]),Object.defineProperty(e,"loaded",{enumerable:!0,get:function(){return e.l}}),Object.defineProperty(e,"id",{enumerable:!0,get:function(){return e.i}}),e.webpackPolyfill=1),e}},"437+":function(e,t){e.exports={render:function(){var e=this.$createElement;return(this._self._c||e)("div",{class:["sweet-modal-tab",{active:this.active}]},[this._t("default")],2)},staticRenderFns:[]}},"4TwI":function(e,t,n){var a=n("VU/8")(n("0pae"),n("fkhF"),!1,function(e){n("YDK2")},"data-v-3374f9f4",null);e.exports=a.exports},"5RQX":function(e,t,n){var a=n("/2Sx");"string"==typeof a&&(a=[[e.i,a,""]]),a.locals&&(e.exports=a.locals);n("rjj0")("7659a8e1",a,!0)},"5VQ+":function(e,t,n){"use strict";var a=n("cGG2");e.exports=function(e,t){a.forEach(e,function(n,a){a!==t&&a.toUpperCase()===t.toUpperCase()&&(e[t]=n,delete e[a])})}},"5d/b":function(e,t,n){var a=n("xDyL");"string"==typeof a&&(a=[[e.i,a,""]]),a.locals&&(e.exports=a.locals);n("rjj0")("161a4f8c",a,!0)},"5m3O":function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};t.default={data:function(){return{clients:[],createForm:{errors:[],name:"",redirect:""},editForm:{errors:[],name:"",redirect:""}}},ready:function(){this.prepareComponent()},mounted:function(){this.prepareComponent()},methods:{prepareComponent:function(){this.getClients(),$("#modal-create-client").on("shown.bs.modal",function(){$("#create-client-name").focus()}),$("#modal-edit-client").on("shown.bs.modal",function(){$("#edit-client-name").focus()})},getClients:function(){var e=this;axios.get("/oauth/clients").then(function(t){e.clients=t.data})},showCreateClientForm:function(){$("#modal-create-client").modal("show")},store:function(){this.persistClient("post","/oauth/clients",this.createForm,"#modal-create-client")},edit:function(e){this.editForm.id=e.id,this.editForm.name=e.name,this.editForm.redirect=e.redirect,$("#modal-edit-client").modal("show")},update:function(){this.persistClient("put","/oauth/clients/"+this.editForm.id,this.editForm,"#modal-edit-client")},persistClient:function(e,t,n,i){var o=this;n.errors=[],axios[e](t,n).then(function(e){o.getClients(),n.name="",n.redirect="",n.errors=[],$(i).modal("hide")}).catch(function(e){"object"===a(e.response.data)?n.errors=_.flatten(_.toArray(e.response.data)):n.errors=["Something went wrong. Please try again."]})},destroy:function(e){var t=this;axios.delete("/oauth/clients/"+e.id).then(function(e){t.getClients()})}}}},"6rY6":function(e,t,n){var a=n("T4AH");"string"==typeof a&&(a=[[e.i,a,""]]),a.locals&&(e.exports=a.locals);n("rjj0")("7acc4862",a,!0)},"72za":function(e,t,n){var a,i,o;i=[t,e],void 0===(o="function"==typeof(a=function(e,t){"use strict";var n=function(e){var t=!1,n={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};function a(t){var n=this,a=!1;return e(this).one(i.TRANSITION_END,function(){a=!0}),setTimeout(function(){a||i.triggerTransitionEnd(n)},t),this}var i={TRANSITION_END:"bsTransitionEnd",getUID:function(e){do{e+=~~(1e6*Math.random())}while(document.getElementById(e));return e},getSelectorFromElement:function(e){var t=e.getAttribute("data-target");return t||(t=e.getAttribute("href")||"",t=/^#[a-z]/i.test(t)?t:null),t},reflow:function(e){new Function("bs","return bs")(e.offsetHeight)},triggerTransitionEnd:function(n){e(n).trigger(t.end)},supportsTransitionEnd:function(){return Boolean(t)},typeCheckConfig:function(e,t,n){for(var a in n)if(n.hasOwnProperty(a)){var i=n[a],o=t[a],r=void 0;if(o&&(c=o,(c[0]||c).nodeType)?r="element":(s=o,r={}.toString.call(s).match(/\s([a-zA-Z]+)/)[1].toLowerCase()),!new RegExp(i).test(r))throw new Error(e.toUpperCase()+': Option "'+a+'" provided type "'+r+'" but expected type "'+i+'".')}var s,c}};return t=function(){if(window.QUnit)return!1;var e=document.createElement("bootstrap");for(var t in n)if(void 0!==e.style[t])return{end:n[t]};return!1}(),e.fn.emulateTransitionEnd=a,i.supportsTransitionEnd()&&(e.event.special[i.TRANSITION_END]={bindType:t.end,delegateType:t.end,handle:function(t){if(e(t.target).is(this))return t.handleObj.handler.apply(this,arguments)}}),i}(jQuery);t.exports=n})?a.apply(t,i):a)||(e.exports=o)},"7GwW":function(e,t,n){"use strict";var a=n("cGG2"),i=n("21It"),o=n("DQCr"),r=n("oJlt"),s=n("GHBc"),c=n("FtD3"),l="undefined"!=typeof window&&window.btoa&&window.btoa.bind(window)||n("thJu");e.exports=function(e){return new Promise(function(t,d){var u=e.data,p=e.headers;a.isFormData(u)&&delete p["Content-Type"];var _=new XMLHttpRequest,f="onreadystatechange",m=!1;if("undefined"==typeof window||!window.XDomainRequest||"withCredentials"in _||s(e.url)||(_=new window.XDomainRequest,f="onload",m=!0,_.onprogress=function(){},_.ontimeout=function(){}),e.auth){var h=e.auth.username||"",v=e.auth.password||"";p.Authorization="Basic "+l(h+":"+v)}if(_.open(e.method.toUpperCase(),o(e.url,e.params,e.paramsSerializer),!0),_.timeout=e.timeout,_[f]=function(){if(_&&(4===_.readyState||m)&&(0!==_.status||_.responseURL&&0===_.responseURL.indexOf("file:"))){var n="getAllResponseHeaders"in _?r(_.getAllResponseHeaders()):null,a={data:e.responseType&&"text"!==e.responseType?_.response:_.responseText,status:1223===_.status?204:_.status,statusText:1223===_.status?"No Content":_.statusText,headers:n,config:e,request:_};i(t,d,a),_=null}},_.onerror=function(){d(c("Network Error",e,null,_)),_=null},_.ontimeout=function(){d(c("timeout of "+e.timeout+"ms exceeded",e,"ECONNABORTED",_)),_=null},a.isStandardBrowserEnv()){var g=n("p1b6"),b=(e.withCredentials||s(e.url))&&e.xsrfCookieName?g.read(e.xsrfCookieName):void 0;b&&(p[e.xsrfHeaderName]=b)}if("setRequestHeader"in _&&a.forEach(p,function(e,t){void 0===u&&"content-type"===t.toLowerCase()?delete p[t]:_.setRequestHeader(t,e)}),e.withCredentials&&(_.withCredentials=!0),e.responseType)try{_.responseType=e.responseType}catch(t){if("json"!==e.responseType)throw t}"function"==typeof e.onDownloadProgress&&_.addEventListener("progress",e.onDownloadProgress),"function"==typeof e.onUploadProgress&&_.upload&&_.upload.addEventListener("progress",e.onUploadProgress),e.cancelToken&&e.cancelToken.promise.then(function(e){_&&(_.abort(),d(e),_=null)}),void 0===u&&(u=null),_.send(u)})}},"7t+N":function(e,t,n){var a;!function(t,n){"use strict";"object"==typeof e&&"object"==typeof e.exports?e.exports=t.document?n(t,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return n(e)}:n(t)}("undefined"!=typeof window?window:this,function(n,i){"use strict";var o=[],r=n.document,s=Object.getPrototypeOf,c=o.slice,l=o.concat,d=o.push,u=o.indexOf,p={},_=p.toString,f=p.hasOwnProperty,m=f.toString,h=m.call(Object),v={},g=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType},b=function(e){return null!=e&&e===e.window},y={type:!0,src:!0,noModule:!0};function w(e,t,n){var a,i=(t=t||r).createElement("script");if(i.text=e,n)for(a in y)n[a]&&(i[a]=n[a]);t.head.appendChild(i).parentNode.removeChild(i)}function k(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?p[_.call(e)]||"object":typeof e}var x=function(e,t){return new x.fn.init(e,t)},C=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g;x.fn=x.prototype={jquery:"3.3.1",constructor:x,length:0,toArray:function(){return c.call(this)},get:function(e){return null==e?c.call(this):e<0?this[e+this.length]:this[e]},pushStack:function(e){var t=x.merge(this.constructor(),e);return t.prevObject=this,t},each:function(e){return x.each(this,e)},map:function(e){return this.pushStack(x.map(this,function(t,n){return e.call(t,n,t)}))},slice:function(){return this.pushStack(c.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(e){var t=this.length,n=+e+(e<0?t:0);return this.pushStack(n>=0&&n0&&t-1 in e)}var T=function(e){var t,n,a,i,o,r,s,c,l,d,u,p,_,f,m,h,v,g,b,y="sizzle"+1*new Date,w=e.document,k=0,x=0,C=re(),A=re(),T=re(),z=function(e,t){return e===t&&(u=!0),0},j={}.hasOwnProperty,D=[],S=D.pop,E=D.push,O=D.push,L=D.slice,M=function(e,t){for(var n=0,a=e.length;n+~]|"+P+")"+P+"*"),H=new RegExp("="+P+"*([^\\]'\"]*?)"+P+"*\\]","g"),Y=new RegExp($),W=new RegExp("^"+N+"$"),V={ID:new RegExp("^#("+N+")"),CLASS:new RegExp("^\\.("+N+")"),TAG:new RegExp("^("+N+"|[*])"),ATTR:new RegExp("^"+F),PSEUDO:new RegExp("^"+$),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+P+"*(even|odd|(([+-]|)(\\d*)n|)"+P+"*(?:([+-]|)"+P+"*(\\d+)|))"+P+"*\\)|)","i"),bool:new RegExp("^(?:"+I+")$","i"),needsContext:new RegExp("^"+P+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+P+"*((?:-\\d)?\\d*)"+P+"*\\)|)(?=[^-]|$)","i")},G=/^(?:input|select|textarea|button)$/i,K=/^h\d$/i,J=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,Q=/[+~]/,X=new RegExp("\\\\([\\da-f]{1,6}"+P+"?|("+P+")|.)","ig"),ee=function(e,t,n){var a="0x"+t-65536;return a!=a||n?t:a<0?String.fromCharCode(a+65536):String.fromCharCode(a>>10|55296,1023&a|56320)},te=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ne=function(e,t){return t?"\0"===e?"�":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},ae=function(){p()},ie=ge(function(e){return!0===e.disabled&&("form"in e||"label"in e)},{dir:"parentNode",next:"legend"});try{O.apply(D=L.call(w.childNodes),w.childNodes),D[w.childNodes.length].nodeType}catch(e){O={apply:D.length?function(e,t){E.apply(e,L.call(t))}:function(e,t){for(var n=e.length,a=0;e[n++]=t[a++];);e.length=n-1}}}function oe(e,t,a,i){var o,s,l,d,u,f,v,g=t&&t.ownerDocument,k=t?t.nodeType:9;if(a=a||[],"string"!=typeof e||!e||1!==k&&9!==k&&11!==k)return a;if(!i&&((t?t.ownerDocument||t:w)!==_&&p(t),t=t||_,m)){if(11!==k&&(u=Z.exec(e)))if(o=u[1]){if(9===k){if(!(l=t.getElementById(o)))return a;if(l.id===o)return a.push(l),a}else if(g&&(l=g.getElementById(o))&&b(t,l)&&l.id===o)return a.push(l),a}else{if(u[2])return O.apply(a,t.getElementsByTagName(e)),a;if((o=u[3])&&n.getElementsByClassName&&t.getElementsByClassName)return O.apply(a,t.getElementsByClassName(o)),a}if(n.qsa&&!T[e+" "]&&(!h||!h.test(e))){if(1!==k)g=t,v=e;else if("object"!==t.nodeName.toLowerCase()){for((d=t.getAttribute("id"))?d=d.replace(te,ne):t.setAttribute("id",d=y),s=(f=r(e)).length;s--;)f[s]="#"+d+" "+ve(f[s]);v=f.join(","),g=Q.test(e)&&me(t.parentNode)||t}if(v)try{return O.apply(a,g.querySelectorAll(v)),a}catch(e){}finally{d===y&&t.removeAttribute("id")}}}return c(e.replace(R,"$1"),t,a,i)}function re(){var e=[];return function t(n,i){return e.push(n+" ")>a.cacheLength&&delete t[e.shift()],t[n+" "]=i}}function se(e){return e[y]=!0,e}function ce(e){var t=_.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function le(e,t){for(var n=e.split("|"),i=n.length;i--;)a.attrHandle[n[i]]=t}function de(e,t){var n=t&&e,a=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(a)return a;if(n)for(;n=n.nextSibling;)if(n===t)return-1;return e?1:-1}function ue(e){return function(t){return"input"===t.nodeName.toLowerCase()&&t.type===e}}function pe(e){return function(t){var n=t.nodeName.toLowerCase();return("input"===n||"button"===n)&&t.type===e}}function _e(e){return function(t){return"form"in t?t.parentNode&&!1===t.disabled?"label"in t?"label"in t.parentNode?t.parentNode.disabled===e:t.disabled===e:t.isDisabled===e||t.isDisabled!==!e&&ie(t)===e:t.disabled===e:"label"in t&&t.disabled===e}}function fe(e){return se(function(t){return t=+t,se(function(n,a){for(var i,o=e([],n.length,t),r=o.length;r--;)n[i=o[r]]&&(n[i]=!(a[i]=n[i]))})})}function me(e){return e&&void 0!==e.getElementsByTagName&&e}n=oe.support={},o=oe.isXML=function(e){var t=e&&(e.ownerDocument||e).documentElement;return!!t&&"HTML"!==t.nodeName},p=oe.setDocument=function(e){var t,i,r=e?e.ownerDocument||e:w;return r!==_&&9===r.nodeType&&r.documentElement?(f=(_=r).documentElement,m=!o(_),w!==_&&(i=_.defaultView)&&i.top!==i&&(i.addEventListener?i.addEventListener("unload",ae,!1):i.attachEvent&&i.attachEvent("onunload",ae)),n.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),n.getElementsByTagName=ce(function(e){return e.appendChild(_.createComment("")),!e.getElementsByTagName("*").length}),n.getElementsByClassName=J.test(_.getElementsByClassName),n.getById=ce(function(e){return f.appendChild(e).id=y,!_.getElementsByName||!_.getElementsByName(y).length}),n.getById?(a.filter.ID=function(e){var t=e.replace(X,ee);return function(e){return e.getAttribute("id")===t}},a.find.ID=function(e,t){if(void 0!==t.getElementById&&m){var n=t.getElementById(e);return n?[n]:[]}}):(a.filter.ID=function(e){var t=e.replace(X,ee);return function(e){var n=void 0!==e.getAttributeNode&&e.getAttributeNode("id");return n&&n.value===t}},a.find.ID=function(e,t){if(void 0!==t.getElementById&&m){var n,a,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];for(i=t.getElementsByName(e),a=0;o=i[a++];)if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),a.find.TAG=n.getElementsByTagName?function(e,t){return void 0!==t.getElementsByTagName?t.getElementsByTagName(e):n.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,a=[],i=0,o=t.getElementsByTagName(e);if("*"===e){for(;n=o[i++];)1===n.nodeType&&a.push(n);return a}return o},a.find.CLASS=n.getElementsByClassName&&function(e,t){if(void 0!==t.getElementsByClassName&&m)return t.getElementsByClassName(e)},v=[],h=[],(n.qsa=J.test(_.querySelectorAll))&&(ce(function(e){f.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&h.push("[*^$]="+P+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||h.push("\\["+P+"*(?:value|"+I+")"),e.querySelectorAll("[id~="+y+"-]").length||h.push("~="),e.querySelectorAll(":checked").length||h.push(":checked"),e.querySelectorAll("a#"+y+"+*").length||h.push(".#.+[+~]")}),ce(function(e){e.innerHTML="";var t=_.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&h.push("name"+P+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&h.push(":enabled",":disabled"),f.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&h.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),h.push(",.*:")})),(n.matchesSelector=J.test(g=f.matches||f.webkitMatchesSelector||f.mozMatchesSelector||f.oMatchesSelector||f.msMatchesSelector))&&ce(function(e){n.disconnectedMatch=g.call(e,"*"),g.call(e,"[s!='']:x"),v.push("!=",$)}),h=h.length&&new RegExp(h.join("|")),v=v.length&&new RegExp(v.join("|")),t=J.test(f.compareDocumentPosition),b=t||J.test(f.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,a=t&&t.parentNode;return e===a||!(!a||1!==a.nodeType||!(n.contains?n.contains(a):e.compareDocumentPosition&&16&e.compareDocumentPosition(a)))}:function(e,t){if(t)for(;t=t.parentNode;)if(t===e)return!0;return!1},z=t?function(e,t){if(e===t)return u=!0,0;var a=!e.compareDocumentPosition-!t.compareDocumentPosition;return a||(1&(a=(e.ownerDocument||e)===(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!n.sortDetached&&t.compareDocumentPosition(e)===a?e===_||e.ownerDocument===w&&b(w,e)?-1:t===_||t.ownerDocument===w&&b(w,t)?1:d?M(d,e)-M(d,t):0:4&a?-1:1)}:function(e,t){if(e===t)return u=!0,0;var n,a=0,i=e.parentNode,o=t.parentNode,r=[e],s=[t];if(!i||!o)return e===_?-1:t===_?1:i?-1:o?1:d?M(d,e)-M(d,t):0;if(i===o)return de(e,t);for(n=e;n=n.parentNode;)r.unshift(n);for(n=t;n=n.parentNode;)s.unshift(n);for(;r[a]===s[a];)a++;return a?de(r[a],s[a]):r[a]===w?-1:s[a]===w?1:0},_):_},oe.matches=function(e,t){return oe(e,null,null,t)},oe.matchesSelector=function(e,t){if((e.ownerDocument||e)!==_&&p(e),t=t.replace(H,"='$1']"),n.matchesSelector&&m&&!T[t+" "]&&(!v||!v.test(t))&&(!h||!h.test(t)))try{var a=g.call(e,t);if(a||n.disconnectedMatch||e.document&&11!==e.document.nodeType)return a}catch(e){}return oe(t,_,null,[e]).length>0},oe.contains=function(e,t){return(e.ownerDocument||e)!==_&&p(e),b(e,t)},oe.attr=function(e,t){(e.ownerDocument||e)!==_&&p(e);var i=a.attrHandle[t.toLowerCase()],o=i&&j.call(a.attrHandle,t.toLowerCase())?i(e,t,!m):void 0;return void 0!==o?o:n.attributes||!m?e.getAttribute(t):(o=e.getAttributeNode(t))&&o.specified?o.value:null},oe.escape=function(e){return(e+"").replace(te,ne)},oe.error=function(e){throw new Error("Syntax error, unrecognized expression: "+e)},oe.uniqueSort=function(e){var t,a=[],i=0,o=0;if(u=!n.detectDuplicates,d=!n.sortStable&&e.slice(0),e.sort(z),u){for(;t=e[o++];)t===e[o]&&(i=a.push(o));for(;i--;)e.splice(a[i],1)}return d=null,e},i=oe.getText=function(e){var t,n="",a=0,o=e.nodeType;if(o){if(1===o||9===o||11===o){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=i(e)}else if(3===o||4===o)return e.nodeValue}else for(;t=e[a++];)n+=i(t);return n},(a=oe.selectors={cacheLength:50,createPseudo:se,match:V,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(X,ee),e[3]=(e[3]||e[4]||e[5]||"").replace(X,ee),"~="===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]||oe.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]&&oe.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return V.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&Y.test(n)&&(t=r(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(X,ee).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=C[e+" "];return t||(t=new RegExp("(^|"+P+")"+e+"("+P+"|$)"))&&C(e,function(e){return t.test("string"==typeof e.className&&e.className||void 0!==e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(e,t,n){return function(a){var i=oe.attr(a,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.replace(q," ")+" ").indexOf(n)>-1:"|="===t&&(i===n||i.slice(0,n.length+1)===n+"-"))}},CHILD:function(e,t,n,a,i){var o="nth"!==e.slice(0,3),r="last"!==e.slice(-4),s="of-type"===t;return 1===a&&0===i?function(e){return!!e.parentNode}:function(t,n,c){var l,d,u,p,_,f,m=o!==r?"nextSibling":"previousSibling",h=t.parentNode,v=s&&t.nodeName.toLowerCase(),g=!c&&!s,b=!1;if(h){if(o){for(;m;){for(p=t;p=p[m];)if(s?p.nodeName.toLowerCase()===v:1===p.nodeType)return!1;f=m="only"===e&&!f&&"nextSibling"}return!0}if(f=[r?h.firstChild:h.lastChild],r&&g){for(b=(_=(l=(d=(u=(p=h)[y]||(p[y]={}))[p.uniqueID]||(u[p.uniqueID]={}))[e]||[])[0]===k&&l[1])&&l[2],p=_&&h.childNodes[_];p=++_&&p&&p[m]||(b=_=0)||f.pop();)if(1===p.nodeType&&++b&&p===t){d[e]=[k,_,b];break}}else if(g&&(b=_=(l=(d=(u=(p=t)[y]||(p[y]={}))[p.uniqueID]||(u[p.uniqueID]={}))[e]||[])[0]===k&&l[1]),!1===b)for(;(p=++_&&p&&p[m]||(b=_=0)||f.pop())&&((s?p.nodeName.toLowerCase()!==v:1!==p.nodeType)||!++b||(g&&((d=(u=p[y]||(p[y]={}))[p.uniqueID]||(u[p.uniqueID]={}))[e]=[k,b]),p!==t)););return(b-=i)===a||b%a==0&&b/a>=0}}},PSEUDO:function(e,t){var n,i=a.pseudos[e]||a.setFilters[e.toLowerCase()]||oe.error("unsupported pseudo: "+e);return i[y]?i(t):i.length>1?(n=[e,e,"",t],a.setFilters.hasOwnProperty(e.toLowerCase())?se(function(e,n){for(var a,o=i(e,t),r=o.length;r--;)e[a=M(e,o[r])]=!(n[a]=o[r])}):function(e){return i(e,0,n)}):i}},pseudos:{not:se(function(e){var t=[],n=[],a=s(e.replace(R,"$1"));return a[y]?se(function(e,t,n,i){for(var o,r=a(e,null,i,[]),s=e.length;s--;)(o=r[s])&&(e[s]=!(t[s]=o))}):function(e,i,o){return t[0]=e,a(t,null,o,n),t[0]=null,!n.pop()}}),has:se(function(e){return function(t){return oe(e,t).length>0}}),contains:se(function(e){return e=e.replace(X,ee),function(t){return(t.textContent||t.innerText||i(t)).indexOf(e)>-1}}),lang:se(function(e){return W.test(e||"")||oe.error("unsupported lang: "+e),e=e.replace(X,ee).toLowerCase(),function(t){var n;do{if(n=m?t.lang:t.getAttribute("xml:lang")||t.getAttribute("lang"))return(n=n.toLowerCase())===e||0===n.indexOf(e+"-")}while((t=t.parentNode)&&1===t.nodeType);return!1}}),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===f},focus:function(e){return e===_.activeElement&&(!_.hasFocus||_.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:_e(!1),disabled:_e(!0),checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,!0===e.selected},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeType<6)return!1;return!0},parent:function(e){return!a.pseudos.empty(e)},header:function(e){return K.test(e.nodeName)},input:function(e){return G.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||"text"===t.toLowerCase())},first:fe(function(){return[0]}),last:fe(function(e,t){return[t-1]}),eq:fe(function(e,t,n){return[n<0?n+t:n]}),even:fe(function(e,t){for(var n=0;n=0;)e.push(a);return e}),gt:fe(function(e,t,n){for(var a=n<0?n+t:n;++a1?function(t,n,a){for(var i=e.length;i--;)if(!e[i](t,n,a))return!1;return!0}:e[0]}function ye(e,t,n,a,i){for(var o,r=[],s=0,c=e.length,l=null!=t;s-1&&(o[l]=!(r[l]=u))}}else v=ye(v===r?v.splice(f,v.length):v),i?i(null,r,v,c):O.apply(r,v)})}function ke(e){for(var t,n,i,o=e.length,r=a.relative[e[0].type],s=r||a.relative[" "],c=r?1:0,d=ge(function(e){return e===t},s,!0),u=ge(function(e){return M(t,e)>-1},s,!0),p=[function(e,n,a){var i=!r&&(a||n!==l)||((t=n).nodeType?d(e,n,a):u(e,n,a));return t=null,i}];c1&&be(p),c>1&&ve(e.slice(0,c-1).concat({value:" "===e[c-2].type?"*":""})).replace(R,"$1"),n,c0,i=e.length>0,o=function(o,r,s,c,d){var u,f,h,v=0,g="0",b=o&&[],y=[],w=l,x=o||i&&a.find.TAG("*",d),C=k+=null==w?1:Math.random()||.1,A=x.length;for(d&&(l=r===_||r||d);g!==A&&null!=(u=x[g]);g++){if(i&&u){for(f=0,r||u.ownerDocument===_||(p(u),s=!m);h=e[f++];)if(h(u,r||_,s)){c.push(u);break}d&&(k=C)}n&&((u=!h&&u)&&v--,o&&b.push(u))}if(v+=g,n&&g!==v){for(f=0;h=t[f++];)h(b,y,r,s);if(o){if(v>0)for(;g--;)b[g]||y[g]||(y[g]=S.call(c));y=ye(y)}O.apply(c,y),d&&!o&&y.length>0&&v+t.length>1&&oe.uniqueSort(c)}return d&&(k=C,l=w),b};return n?se(o):o}(o,i))).selector=e}return s},c=oe.select=function(e,t,n,i){var o,c,l,d,u,p="function"==typeof e&&e,_=!i&&r(e=p.selector||e);if(n=n||[],1===_.length){if((c=_[0]=_[0].slice(0)).length>2&&"ID"===(l=c[0]).type&&9===t.nodeType&&m&&a.relative[c[1].type]){if(!(t=(a.find.ID(l.matches[0].replace(X,ee),t)||[])[0]))return n;p&&(t=t.parentNode),e=e.slice(c.shift().value.length)}for(o=V.needsContext.test(e)?0:c.length;o--&&(l=c[o],!a.relative[d=l.type]);)if((u=a.find[d])&&(i=u(l.matches[0].replace(X,ee),Q.test(c[0].type)&&me(t.parentNode)||t))){if(c.splice(o,1),!(e=i.length&&ve(c)))return O.apply(n,i),n;break}}return(p||s(e,_))(i,t,!m,n,!t||Q.test(e)&&me(t.parentNode)||t),n},n.sortStable=y.split("").sort(z).join("")===y,n.detectDuplicates=!!u,p(),n.sortDetached=ce(function(e){return 1&e.compareDocumentPosition(_.createElement("fieldset"))}),ce(function(e){return e.innerHTML="","#"===e.firstChild.getAttribute("href")})||le("type|href|height|width",function(e,t,n){if(!n)return e.getAttribute(t,"type"===t.toLowerCase()?1:2)}),n.attributes&&ce(function(e){return e.innerHTML="",e.firstChild.setAttribute("value",""),""===e.firstChild.getAttribute("value")})||le("value",function(e,t,n){if(!n&&"input"===e.nodeName.toLowerCase())return e.defaultValue}),ce(function(e){return null==e.getAttribute("disabled")})||le(I,function(e,t,n){var a;if(!n)return!0===e[t]?t.toLowerCase():(a=e.getAttributeNode(t))&&a.specified?a.value:null}),oe}(n);x.find=T,x.expr=T.selectors,x.expr[":"]=x.expr.pseudos,x.uniqueSort=x.unique=T.uniqueSort,x.text=T.getText,x.isXMLDoc=T.isXML,x.contains=T.contains,x.escapeSelector=T.escape;var z=function(e,t,n){for(var a=[],i=void 0!==n;(e=e[t])&&9!==e.nodeType;)if(1===e.nodeType){if(i&&x(e).is(n))break;a.push(e)}return a},j=function(e,t){for(var n=[];e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n},D=x.expr.match.needsContext;function S(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()}var E=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function O(e,t,n){return g(t)?x.grep(e,function(e,a){return!!t.call(e,a,e)!==n}):t.nodeType?x.grep(e,function(e){return e===t!==n}):"string"!=typeof t?x.grep(e,function(e){return u.call(t,e)>-1!==n}):x.filter(t,e,n)}x.filter=function(e,t,n){var a=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===a.nodeType?x.find.matchesSelector(a,e)?[a]:[]:x.find.matches(e,x.grep(t,function(e){return 1===e.nodeType}))},x.fn.extend({find:function(e){var t,n,a=this.length,i=this;if("string"!=typeof e)return this.pushStack(x(e).filter(function(){for(t=0;t1?x.uniqueSort(n):n},filter:function(e){return this.pushStack(O(this,e||[],!1))},not:function(e){return this.pushStack(O(this,e||[],!0))},is:function(e){return!!O(this,"string"==typeof e&&D.test(e)?x(e):e||[],!1).length}});var L,M=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/;(x.fn.init=function(e,t,n){var a,i;if(!e)return this;if(n=n||L,"string"==typeof e){if(!(a="<"===e[0]&&">"===e[e.length-1]&&e.length>=3?[null,e,null]:M.exec(e))||!a[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(a[1]){if(t=t instanceof x?t[0]:t,x.merge(this,x.parseHTML(a[1],t&&t.nodeType?t.ownerDocument||t:r,!0)),E.test(a[1])&&x.isPlainObject(t))for(a in t)g(this[a])?this[a](t[a]):this.attr(a,t[a]);return this}return(i=r.getElementById(a[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):g(e)?void 0!==n.ready?n.ready(e):e(x):x.makeArray(e,this)}).prototype=x.fn,L=x(r);var I=/^(?:parents|prev(?:Until|All))/,P={children:!0,contents:!0,next:!0,prev:!0};x.fn.extend({has:function(e){var t=x(e,this),n=t.length;return this.filter(function(){for(var e=0;e-1:1===n.nodeType&&x.find.matchesSelector(n,e))){o.push(n);break}return this.pushStack(o.length>1?x.uniqueSort(o):o)},index:function(e){return e?"string"==typeof e?u.call(x(e),this[0]):u.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){return this.pushStack(x.uniqueSort(x.merge(this.get(),x(e,t))))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}});function N(e,t){for(;(e=e[t])&&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 z(e,"parentNode")},parentsUntil:function(e,t,n){return z(e,"parentNode",n)},next:function(e){return N(e,"nextSibling")},prev:function(e){return N(e,"previousSibling")},nextAll:function(e){return z(e,"nextSibling")},prevAll:function(e){return z(e,"previousSibling")},nextUntil:function(e,t,n){return z(e,"nextSibling",n)},prevUntil:function(e,t,n){return z(e,"previousSibling",n)},siblings:function(e){return j((e.parentNode||{}).firstChild,e)},children:function(e){return j(e.firstChild)},contents:function(e){return S(e,"iframe")?e.contentDocument:(S(e,"template")&&(e=e.content||e),x.merge([],e.childNodes))}},function(e,t){x.fn[e]=function(n,a){var i=x.map(this,t,n);return"Until"!==e.slice(-5)&&(a=n),a&&"string"==typeof a&&(i=x.filter(a,i)),this.length>1&&(P[e]||x.uniqueSort(i),I.test(e)&&i.reverse()),this.pushStack(i)}});var F=/[^\x20\t\r\n\f]+/g;x.Callbacks=function(e){e="string"==typeof e?function(e){var t={};return x.each(e.match(F)||[],function(e,n){t[n]=!0}),t}(e):x.extend({},e);var t,n,a,i,o=[],r=[],s=-1,c=function(){for(i=i||e.once,a=t=!0;r.length;s=-1)for(n=r.shift();++s-1;)o.splice(n,1),n<=s&&s--}),this},has:function(e){return e?x.inArray(e,o)>-1:o.length>0},empty:function(){return o&&(o=[]),this},disable:function(){return i=r=[],o=n="",this},disabled:function(){return!o},lock:function(){return i=r=[],n||t||(o=n=""),this},locked:function(){return!!i},fireWith:function(e,n){return i||(n=[e,(n=n||[]).slice?n.slice():n],r.push(n),t||c()),this},fire:function(){return l.fireWith(this,arguments),this},fired:function(){return!!a}};return l};function $(e){return e}function q(e){throw e}function R(e,t,n,a){var i;try{e&&g(i=e.promise)?i.call(e).done(t).fail(n):e&&g(i=e.then)?i.call(e,t,n):t.apply(void 0,[e].slice(a))}catch(e){n.apply(void 0,[e])}}x.extend({Deferred:function(e){var t=[["notify","progress",x.Callbacks("memory"),x.Callbacks("memory"),2],["resolve","done",x.Callbacks("once memory"),x.Callbacks("once memory"),0,"resolved"],["reject","fail",x.Callbacks("once memory"),x.Callbacks("once memory"),1,"rejected"]],a="pending",i={state:function(){return a},always:function(){return o.done(arguments).fail(arguments),this},catch:function(e){return i.then(null,e)},pipe:function(){var e=arguments;return x.Deferred(function(n){x.each(t,function(t,a){var i=g(e[a[4]])&&e[a[4]];o[a[1]](function(){var e=i&&i.apply(this,arguments);e&&g(e.promise)?e.promise().progress(n.notify).done(n.resolve).fail(n.reject):n[a[0]+"With"](this,i?[e]:arguments)})}),e=null}).promise()},then:function(e,a,i){var o=0;function r(e,t,a,i){return function(){var s=this,c=arguments,l=function(){var n,l;if(!(e=o&&(a!==q&&(s=void 0,c=[n]),t.rejectWith(s,c))}};e?d():(x.Deferred.getStackHook&&(d.stackTrace=x.Deferred.getStackHook()),n.setTimeout(d))}}return x.Deferred(function(n){t[0][3].add(r(0,n,g(i)?i:$,n.notifyWith)),t[1][3].add(r(0,n,g(e)?e:$)),t[2][3].add(r(0,n,g(a)?a:q))}).promise()},promise:function(e){return null!=e?x.extend(e,i):i}},o={};return x.each(t,function(e,n){var r=n[2],s=n[5];i[n[1]]=r.add,s&&r.add(function(){a=s},t[3-e][2].disable,t[3-e][3].disable,t[0][2].lock,t[0][3].lock),r.add(n[3].fire),o[n[0]]=function(){return o[n[0]+"With"](this===o?void 0:this,arguments),this},o[n[0]+"With"]=r.fireWith}),i.promise(o),e&&e.call(o,o),o},when:function(e){var t=arguments.length,n=t,a=Array(n),i=c.call(arguments),o=x.Deferred(),r=function(e){return function(n){a[e]=this,i[e]=arguments.length>1?c.call(arguments):n,--t||o.resolveWith(a,i)}};if(t<=1&&(R(e,o.done(r(n)).resolve,o.reject,!t),"pending"===o.state()||g(i[n]&&i[n].then)))return o.then();for(;n--;)R(i[n],r(n),o.reject);return o.promise()}});var B=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;x.Deferred.exceptionHook=function(e,t){n.console&&n.console.warn&&e&&B.test(e.name)&&n.console.warn("jQuery.Deferred exception: "+e.message,e.stack,t)},x.readyException=function(e){n.setTimeout(function(){throw e})};var U=x.Deferred();x.fn.ready=function(e){return U.then(e).catch(function(e){x.readyException(e)}),this},x.extend({isReady:!1,readyWait:1,ready:function(e){(!0===e?--x.readyWait:x.isReady)||(x.isReady=!0,!0!==e&&--x.readyWait>0||U.resolveWith(r,[x]))}}),x.ready.then=U.then;function H(){r.removeEventListener("DOMContentLoaded",H),n.removeEventListener("load",H),x.ready()}"complete"===r.readyState||"loading"!==r.readyState&&!r.documentElement.doScroll?n.setTimeout(x.ready):(r.addEventListener("DOMContentLoaded",H),n.addEventListener("load",H));var Y=function(e,t,n,a,i,o,r){var s=0,c=e.length,l=null==n;if("object"===k(n)){i=!0;for(s in n)Y(e,t,s,n[s],!0,o,r)}else if(void 0!==a&&(i=!0,g(a)||(r=!0),l&&(r?(t.call(e,a),t=null):(l=t,t=function(e,t,n){return l.call(x(e),n)})),t))for(;s1,null,!0)},removeData:function(e){return this.each(function(){X.remove(this,e)})}}),x.extend({queue:function(e,t,n){var a;if(e)return t=(t||"fx")+"queue",a=Q.get(e,t),n&&(!a||Array.isArray(n)?a=Q.access(e,t,x.makeArray(n)):a.push(n)),a||[]},dequeue:function(e,t){t=t||"fx";var n=x.queue(e,t),a=n.length,i=n.shift(),o=x._queueHooks(e,t),r=function(){x.dequeue(e,t)};"inprogress"===i&&(i=n.shift(),a--),i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,r,o)),!a&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return Q.get(e,n)||Q.access(e,n,{empty:x.Callbacks("once memory").add(function(){Q.remove(e,[t+"queue",n])})})}}),x.fn.extend({queue:function(e,t){var n=2;return"string"!=typeof e&&(t=e,e="fx",n--),arguments.length\x20\t\r\n\f]+)/i,fe=/^$|^module$|\/(?:java|ecma)script/i,me={option:[1,""],thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};me.optgroup=me.option,me.tbody=me.tfoot=me.colgroup=me.caption=me.thead,me.th=me.td;function he(e,t){var n;return n=void 0!==e.getElementsByTagName?e.getElementsByTagName(t||"*"):void 0!==e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&S(e,t)?x.merge([e],n):n}function ve(e,t){for(var n=0,a=e.length;n-1)i&&i.push(o);else if(l=x.contains(o.ownerDocument,o),r=he(u.appendChild(o),"script"),l&&ve(r),n)for(d=0;o=r[d++];)fe.test(o.type||"")&&n.push(o);return u}!function(){var e=r.createDocumentFragment().appendChild(r.createElement("div")),t=r.createElement("input");t.setAttribute("type","radio"),t.setAttribute("checked","checked"),t.setAttribute("name","t"),e.appendChild(t),v.checkClone=e.cloneNode(!0).cloneNode(!0).lastChild.checked,e.innerHTML="",v.noCloneChecked=!!e.cloneNode(!0).lastChild.defaultValue}();var ye=r.documentElement,we=/^key/,ke=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,xe=/^([^.]*)(?:\.(.+)|)/;function Ce(){return!0}function Ae(){return!1}function Te(){try{return r.activeElement}catch(e){}}function ze(e,t,n,a,i,o){var r,s;if("object"==typeof t){"string"!=typeof n&&(a=a||n,n=void 0);for(s in t)ze(e,s,n,a,t[s],o);return e}if(null==a&&null==i?(i=n,a=n=void 0):null==i&&("string"==typeof n?(i=a,a=void 0):(i=a,a=n,n=void 0)),!1===i)i=Ae;else if(!i)return e;return 1===o&&(r=i,(i=function(e){return x().off(e),r.apply(this,arguments)}).guid=r.guid||(r.guid=x.guid++)),e.each(function(){x.event.add(this,t,i,a,n)})}x.event={global:{},add:function(e,t,n,a,i){var o,r,s,c,l,d,u,p,_,f,m,h=Q.get(e);if(h)for(n.handler&&(n=(o=n).handler,i=o.selector),i&&x.find.matchesSelector(ye,i),n.guid||(n.guid=x.guid++),(c=h.events)||(c=h.events={}),(r=h.handle)||(r=h.handle=function(t){return void 0!==x&&x.event.triggered!==t.type?x.event.dispatch.apply(e,arguments):void 0}),l=(t=(t||"").match(F)||[""]).length;l--;)_=m=(s=xe.exec(t[l])||[])[1],f=(s[2]||"").split(".").sort(),_&&(u=x.event.special[_]||{},_=(i?u.delegateType:u.bindType)||_,u=x.event.special[_]||{},d=x.extend({type:_,origType:m,data:a,handler:n,guid:n.guid,selector:i,needsContext:i&&x.expr.match.needsContext.test(i),namespace:f.join(".")},o),(p=c[_])||((p=c[_]=[]).delegateCount=0,u.setup&&!1!==u.setup.call(e,a,f,r)||e.addEventListener&&e.addEventListener(_,r)),u.add&&(u.add.call(e,d),d.handler.guid||(d.handler.guid=n.guid)),i?p.splice(p.delegateCount++,0,d):p.push(d),x.event.global[_]=!0)},remove:function(e,t,n,a,i){var o,r,s,c,l,d,u,p,_,f,m,h=Q.hasData(e)&&Q.get(e);if(h&&(c=h.events)){for(l=(t=(t||"").match(F)||[""]).length;l--;)if(_=m=(s=xe.exec(t[l])||[])[1],f=(s[2]||"").split(".").sort(),_){for(u=x.event.special[_]||{},p=c[_=(a?u.delegateType:u.bindType)||_]||[],s=s[2]&&new RegExp("(^|\\.)"+f.join("\\.(?:.*\\.|)")+"(\\.|$)"),r=o=p.length;o--;)d=p[o],!i&&m!==d.origType||n&&n.guid!==d.guid||s&&!s.test(d.namespace)||a&&a!==d.selector&&("**"!==a||!d.selector)||(p.splice(o,1),d.selector&&p.delegateCount--,u.remove&&u.remove.call(e,d));r&&!p.length&&(u.teardown&&!1!==u.teardown.call(e,f,h.handle)||x.removeEvent(e,_,h.handle),delete c[_])}else for(_ in c)x.event.remove(e,_+t[l],n,a,!0);x.isEmptyObject(c)&&Q.remove(e,"handle events")}},dispatch:function(e){var t,n,a,i,o,r,s=x.event.fix(e),c=new Array(arguments.length),l=(Q.get(this,"events")||{})[s.type]||[],d=x.event.special[s.type]||{};for(c[0]=s,t=1;t=1))for(;l!==this;l=l.parentNode||this)if(1===l.nodeType&&("click"!==e.type||!0!==l.disabled)){for(o=[],r={},n=0;n-1:x.find(i,this,null,[l]).length),r[i]&&o.push(a);o.length&&s.push({elem:l,handlers:o})}return l=this,c\x20\t\r\n\f]*)[^>]*)\/>/gi,De=/\s*$/g;function Oe(e,t){return S(e,"table")&&S(11!==t.nodeType?t:t.firstChild,"tr")?x(e).children("tbody")[0]||e:e}function Le(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function Me(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Ie(e,t){var n,a,i,o,r,s,c,l;if(1===t.nodeType){if(Q.hasData(e)&&(o=Q.access(e),r=Q.set(t,o),l=o.events)){delete r.handle,r.events={};for(i in l)for(n=0,a=l[i].length;n1&&"string"==typeof f&&!v.checkClone&&Se.test(f))return e.each(function(i){var o=e.eq(i);m&&(t[0]=f.call(this,i,o.html())),Ne(o,t,n,a)});if(p&&(o=(i=be(t,e[0].ownerDocument,!1,e,a)).firstChild,1===i.childNodes.length&&(i=o),o||a)){for(s=(r=x.map(he(i,"script"),Le)).length;u")},clone:function(e,t,n){var a,i,o,r,s=e.cloneNode(!0),c=x.contains(e.ownerDocument,e);if(!(v.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||x.isXMLDoc(e)))for(r=he(s),a=0,i=(o=he(e)).length;a0&&ve(r,!c&&he(e,"script")),s},cleanData:function(e){for(var t,n,a,i=x.event.special,o=0;void 0!==(n=e[o]);o++)if(J(n)){if(t=n[Q.expando]){if(t.events)for(a in t.events)i[a]?x.event.remove(n,a):x.removeEvent(n,a,t.handle);n[Q.expando]=void 0}n[X.expando]&&(n[X.expando]=void 0)}}}),x.fn.extend({detach:function(e){return Fe(this,e,!0)},remove:function(e){return Fe(this,e)},text:function(e){return Y(this,function(e){return void 0===e?x.text(this):this.empty().each(function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=e)})},null,e,arguments.length)},append:function(){return Ne(this,arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){Oe(this,e).appendChild(e)}})},prepend:function(){return Ne(this,arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=Oe(this,e);t.insertBefore(e,t.firstChild)}})},before:function(){return Ne(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return Ne(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},empty:function(){for(var e,t=0;null!=(e=this[t]);t++)1===e.nodeType&&(x.cleanData(he(e,!1)),e.textContent="");return this},clone:function(e,t){return e=null!=e&&e,t=null==t?e:t,this.map(function(){return x.clone(this,e,t)})},html:function(e){return Y(this,function(e){var t=this[0]||{},n=0,a=this.length;if(void 0===e&&1===t.nodeType)return t.innerHTML;if("string"==typeof e&&!De.test(e)&&!me[(_e.exec(e)||["",""])[1].toLowerCase()]){e=x.htmlPrefilter(e);try{for(;n=0&&(c+=Math.max(0,Math.ceil(e["offset"+t[0].toUpperCase()+t.slice(1)]-o-c-s-.5))),c}function Xe(e,t,n){var a=qe(e),i=Be(e,t,a),o="border-box"===x.css(e,"boxSizing",!1,a),r=o;if($e.test(i)){if(!n)return i;i="auto"}return r=r&&(v.boxSizingReliable()||i===e.style[t]),("auto"===i||!parseFloat(i)&&"inline"===x.css(e,"display",!1,a))&&(i=e["offset"+t[0].toUpperCase()+t.slice(1)],r=!0),(i=parseFloat(i)||0)+Qe(e,t,n||(o?"border":"content"),r,a,i)+"px"}x.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=Be(e,"opacity");return""===n?"1":n}}}},cssNumber:{animationIterationCount:!0,columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{},style:function(e,t,n,a){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var i,o,r,s=K(t),c=Ye.test(t),l=e.style;if(c||(t=Je(s)),r=x.cssHooks[t]||x.cssHooks[s],void 0===n)return r&&"get"in r&&void 0!==(i=r.get(e,!1,a))?i:l[t];"string"===(o=typeof n)&&(i=ie.exec(n))&&i[1]&&(n=ce(e,t,i),o="number"),null!=n&&n==n&&("number"===o&&(n+=i&&i[3]||(x.cssNumber[s]?"":"px")),v.clearCloneStyle||""!==n||0!==t.indexOf("background")||(l[t]="inherit"),r&&"set"in r&&void 0===(n=r.set(e,n,a))||(c?l.setProperty(t,n):l[t]=n))}},css:function(e,t,n,a){var i,o,r,s=K(t);return Ye.test(t)||(t=Je(s)),(r=x.cssHooks[t]||x.cssHooks[s])&&"get"in r&&(i=r.get(e,!0,n)),void 0===i&&(i=Be(e,t,a)),"normal"===i&&t in Ve&&(i=Ve[t]),""===n||n?(o=parseFloat(i),!0===n||isFinite(o)?o||0:i):i}}),x.each(["height","width"],function(e,t){x.cssHooks[t]={get:function(e,n,a){if(n)return!He.test(x.css(e,"display"))||e.getClientRects().length&&e.getBoundingClientRect().width?Xe(e,t,a):se(e,We,function(){return Xe(e,t,a)})},set:function(e,n,a){var i,o=qe(e),r="border-box"===x.css(e,"boxSizing",!1,o),s=a&&Qe(e,t,a,r,o);return r&&v.scrollboxSize()===o.position&&(s-=Math.ceil(e["offset"+t[0].toUpperCase()+t.slice(1)]-parseFloat(o[t])-Qe(e,t,"border",!1,o)-.5)),s&&(i=ie.exec(n))&&"px"!==(i[3]||"px")&&(e.style[t]=n,n=x.css(e,t)),Ze(0,n,s)}}}),x.cssHooks.marginLeft=Ue(v.reliableMarginLeft,function(e,t){if(t)return(parseFloat(Be(e,"marginLeft"))||e.getBoundingClientRect().left-se(e,{marginLeft:0},function(){return e.getBoundingClientRect().left}))+"px"}),x.each({margin:"",padding:"",border:"Width"},function(e,t){x.cssHooks[e+t]={expand:function(n){for(var a=0,i={},o="string"==typeof n?n.split(" "):[n];a<4;a++)i[e+oe[a]+t]=o[a]||o[a-2]||o[0];return i}},"margin"!==e&&(x.cssHooks[e+t].set=Ze)}),x.fn.extend({css:function(e,t){return Y(this,function(e,t,n){var a,i,o={},r=0;if(Array.isArray(t)){for(a=qe(e),i=t.length;r1)}});function et(e,t,n,a,i){return new et.prototype.init(e,t,n,a,i)}x.Tween=et,et.prototype={constructor:et,init:function(e,t,n,a,i,o){this.elem=e,this.prop=n,this.easing=i||x.easing._default,this.options=t,this.start=this.now=this.cur(),this.end=a,this.unit=o||(x.cssNumber[n]?"":"px")},cur:function(){var e=et.propHooks[this.prop];return e&&e.get?e.get(this):et.propHooks._default.get(this)},run:function(e){var t,n=et.propHooks[this.prop];return this.options.duration?this.pos=t=x.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):this.pos=t=e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):et.propHooks._default.set(this),this}},et.prototype.init.prototype=et.prototype,et.propHooks={_default:{get:function(e){var t;return 1!==e.elem.nodeType||null!=e.elem[e.prop]&&null==e.elem.style[e.prop]?e.elem[e.prop]:(t=x.css(e.elem,e.prop,""))&&"auto"!==t?t:0},set:function(e){x.fx.step[e.prop]?x.fx.step[e.prop](e):1!==e.elem.nodeType||null==e.elem.style[x.cssProps[e.prop]]&&!x.cssHooks[e.prop]?e.elem[e.prop]=e.now:x.style(e.elem,e.prop,e.now+e.unit)}}},et.propHooks.scrollTop=et.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},x.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2},_default:"swing"},x.fx=et.prototype.init,x.fx.step={};var tt,nt,at=/^(?:toggle|show|hide)$/,it=/queueHooks$/;function ot(){nt&&(!1===r.hidden&&n.requestAnimationFrame?n.requestAnimationFrame(ot):n.setTimeout(ot,x.fx.interval),x.fx.tick())}function rt(){return n.setTimeout(function(){tt=void 0}),tt=Date.now()}function st(e,t){var n,a=0,i={height:e};for(t=t?1:0;a<4;a+=2-t)i["margin"+(n=oe[a])]=i["padding"+n]=e;return t&&(i.opacity=i.width=e),i}function ct(e,t,n){for(var a,i=(lt.tweeners[t]||[]).concat(lt.tweeners["*"]),o=0,r=i.length;o1)},removeAttr:function(e){return this.each(function(){x.removeAttr(this,e)})}}),x.extend({attr:function(e,t,n){var a,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return void 0===e.getAttribute?x.prop(e,t,n):(1===o&&x.isXMLDoc(e)||(i=x.attrHooks[t.toLowerCase()]||(x.expr.match.bool.test(t)?dt:void 0)),void 0!==n?null===n?void x.removeAttr(e,t):i&&"set"in i&&void 0!==(a=i.set(e,n,t))?a:(e.setAttribute(t,n+""),n):i&&"get"in i&&null!==(a=i.get(e,t))?a:null==(a=x.find.attr(e,t))?void 0:a)},attrHooks:{type:{set:function(e,t){if(!v.radioValue&&"radio"===t&&S(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},removeAttr:function(e,t){var n,a=0,i=t&&t.match(F);if(i&&1===e.nodeType)for(;n=i[a++];)e.removeAttribute(n)}}),dt={set:function(e,t,n){return!1===t?x.removeAttr(e,n):e.setAttribute(n,n),n}},x.each(x.expr.match.bool.source.match(/\w+/g),function(e,t){var n=ut[t]||x.find.attr;ut[t]=function(e,t,a){var i,o,r=t.toLowerCase();return a||(o=ut[r],ut[r]=i,i=null!=n(e,t,a)?r:null,ut[r]=o),i}});var pt=/^(?:input|select|textarea|button)$/i,_t=/^(?:a|area)$/i;x.fn.extend({prop:function(e,t){return Y(this,x.prop,e,t,arguments.length>1)},removeProp:function(e){return this.each(function(){delete this[x.propFix[e]||e]})}}),x.extend({prop:function(e,t,n){var a,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return 1===o&&x.isXMLDoc(e)||(t=x.propFix[t]||t,i=x.propHooks[t]),void 0!==n?i&&"set"in i&&void 0!==(a=i.set(e,n,t))?a:e[t]=n:i&&"get"in i&&null!==(a=i.get(e,t))?a:e[t]},propHooks:{tabIndex:{get:function(e){var t=x.find.attr(e,"tabindex");return t?parseInt(t,10):pt.test(e.nodeName)||_t.test(e.nodeName)&&e.href?0:-1}}},propFix:{for:"htmlFor",class:"className"}}),v.optSelected||(x.propHooks.selected={get:function(e){var t=e.parentNode;return t&&t.parentNode&&t.parentNode.selectedIndex,null},set:function(e){var t=e.parentNode;t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex)}}),x.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){x.propFix[this.toLowerCase()]=this});function ft(e){return(e.match(F)||[]).join(" ")}function mt(e){return e.getAttribute&&e.getAttribute("class")||""}function ht(e){return Array.isArray(e)?e:"string"==typeof e?e.match(F)||[]:[]}x.fn.extend({addClass:function(e){var t,n,a,i,o,r,s,c=0;if(g(e))return this.each(function(t){x(this).addClass(e.call(this,t,mt(this)))});if((t=ht(e)).length)for(;n=this[c++];)if(i=mt(n),a=1===n.nodeType&&" "+ft(i)+" "){for(r=0;o=t[r++];)a.indexOf(" "+o+" ")<0&&(a+=o+" ");i!==(s=ft(a))&&n.setAttribute("class",s)}return this},removeClass:function(e){var t,n,a,i,o,r,s,c=0;if(g(e))return this.each(function(t){x(this).removeClass(e.call(this,t,mt(this)))});if(!arguments.length)return this.attr("class","");if((t=ht(e)).length)for(;n=this[c++];)if(i=mt(n),a=1===n.nodeType&&" "+ft(i)+" "){for(r=0;o=t[r++];)for(;a.indexOf(" "+o+" ")>-1;)a=a.replace(" "+o+" "," ");i!==(s=ft(a))&&n.setAttribute("class",s)}return this},toggleClass:function(e,t){var n=typeof e,a="string"===n||Array.isArray(e);return"boolean"==typeof t&&a?t?this.addClass(e):this.removeClass(e):g(e)?this.each(function(n){x(this).toggleClass(e.call(this,n,mt(this),t),t)}):this.each(function(){var t,i,o,r;if(a)for(i=0,o=x(this),r=ht(e);t=r[i++];)o.hasClass(t)?o.removeClass(t):o.addClass(t);else void 0!==e&&"boolean"!==n||((t=mt(this))&&Q.set(this,"__className__",t),this.setAttribute&&this.setAttribute("class",t||!1===e?"":Q.get(this,"__className__")||""))})},hasClass:function(e){var t,n,a=0;for(t=" "+e+" ";n=this[a++];)if(1===n.nodeType&&(" "+ft(mt(n))+" ").indexOf(t)>-1)return!0;return!1}});var vt=/\r/g;x.fn.extend({val:function(e){var t,n,a,i=this[0];if(arguments.length)return a=g(e),this.each(function(n){var i;1===this.nodeType&&(null==(i=a?e.call(this,n,x(this).val()):e)?i="":"number"==typeof i?i+="":Array.isArray(i)&&(i=x.map(i,function(e){return null==e?"":e+""})),(t=x.valHooks[this.type]||x.valHooks[this.nodeName.toLowerCase()])&&"set"in t&&void 0!==t.set(this,i,"value")||(this.value=i))});if(i)return(t=x.valHooks[i.type]||x.valHooks[i.nodeName.toLowerCase()])&&"get"in t&&void 0!==(n=t.get(i,"value"))?n:"string"==typeof(n=i.value)?n.replace(vt,""):null==n?"":n}}),x.extend({valHooks:{option:{get:function(e){var t=x.find.attr(e,"value");return null!=t?t:ft(x.text(e))}},select:{get:function(e){var t,n,a,i=e.options,o=e.selectedIndex,r="select-one"===e.type,s=r?null:[],c=r?o+1:i.length;for(a=o<0?c:r?o:0;a-1)&&(n=!0);return n||(e.selectedIndex=-1),o}}}}),x.each(["radio","checkbox"],function(){x.valHooks[this]={set:function(e,t){if(Array.isArray(t))return e.checked=x.inArray(x(e).val(),t)>-1}},v.checkOn||(x.valHooks[this].get=function(e){return null===e.getAttribute("value")?"on":e.value})}),v.focusin="onfocusin"in n;var gt=/^(?:focusinfocus|focusoutblur)$/,bt=function(e){e.stopPropagation()};x.extend(x.event,{trigger:function(e,t,a,i){var o,s,c,l,d,u,p,_,m=[a||r],h=f.call(e,"type")?e.type:e,v=f.call(e,"namespace")?e.namespace.split("."):[];if(s=_=c=a=a||r,3!==a.nodeType&&8!==a.nodeType&&!gt.test(h+x.event.triggered)&&(h.indexOf(".")>-1&&(h=(v=h.split(".")).shift(),v.sort()),d=h.indexOf(":")<0&&"on"+h,(e=e[x.expando]?e:new x.Event(h,"object"==typeof e&&e)).isTrigger=i?2:3,e.namespace=v.join("."),e.rnamespace=e.namespace?new RegExp("(^|\\.)"+v.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,e.result=void 0,e.target||(e.target=a),t=null==t?[e]:x.makeArray(t,[e]),p=x.event.special[h]||{},i||!p.trigger||!1!==p.trigger.apply(a,t))){if(!i&&!p.noBubble&&!b(a)){for(l=p.delegateType||h,gt.test(l+h)||(s=s.parentNode);s;s=s.parentNode)m.push(s),c=s;c===(a.ownerDocument||r)&&m.push(c.defaultView||c.parentWindow||n)}for(o=0;(s=m[o++])&&!e.isPropagationStopped();)_=s,e.type=o>1?l:p.bindType||h,(u=(Q.get(s,"events")||{})[e.type]&&Q.get(s,"handle"))&&u.apply(s,t),(u=d&&s[d])&&u.apply&&J(s)&&(e.result=u.apply(s,t),!1===e.result&&e.preventDefault());return e.type=h,i||e.isDefaultPrevented()||p._default&&!1!==p._default.apply(m.pop(),t)||!J(a)||d&&g(a[h])&&!b(a)&&((c=a[d])&&(a[d]=null),x.event.triggered=h,e.isPropagationStopped()&&_.addEventListener(h,bt),a[h](),e.isPropagationStopped()&&_.removeEventListener(h,bt),x.event.triggered=void 0,c&&(a[d]=c)),e.result}},simulate:function(e,t,n){var a=x.extend(new x.Event,n,{type:e,isSimulated:!0});x.event.trigger(a,null,t)}}),x.fn.extend({trigger:function(e,t){return this.each(function(){x.event.trigger(e,t,this)})},triggerHandler:function(e,t){var n=this[0];if(n)return x.event.trigger(e,t,n,!0)}}),v.focusin||x.each({focus:"focusin",blur:"focusout"},function(e,t){var n=function(e){x.event.simulate(t,e.target,x.event.fix(e))};x.event.special[t]={setup:function(){var a=this.ownerDocument||this,i=Q.access(a,t);i||a.addEventListener(e,n,!0),Q.access(a,t,(i||0)+1)},teardown:function(){var a=this.ownerDocument||this,i=Q.access(a,t)-1;i?Q.access(a,t,i):(a.removeEventListener(e,n,!0),Q.remove(a,t))}}});var yt=n.location,wt=Date.now(),kt=/\?/;x.parseXML=function(e){var t;if(!e||"string"!=typeof e)return null;try{t=(new n.DOMParser).parseFromString(e,"text/xml")}catch(e){t=void 0}return t&&!t.getElementsByTagName("parsererror").length||x.error("Invalid XML: "+e),t};var xt=/\[\]$/,Ct=/\r?\n/g,At=/^(?:submit|button|image|reset|file)$/i,Tt=/^(?:input|select|textarea|keygen)/i;function zt(e,t,n,a){var i;if(Array.isArray(t))x.each(t,function(t,i){n||xt.test(e)?a(e,i):zt(e+"["+("object"==typeof i&&null!=i?t:"")+"]",i,n,a)});else if(n||"object"!==k(t))a(e,t);else for(i in t)zt(e+"["+i+"]",t[i],n,a)}x.param=function(e,t){var n,a=[],i=function(e,t){var n=g(t)?t():t;a[a.length]=encodeURIComponent(e)+"="+encodeURIComponent(null==n?"":n)};if(Array.isArray(e)||e.jquery&&!x.isPlainObject(e))x.each(e,function(){i(this.name,this.value)});else for(n in e)zt(n,e[n],t,i);return a.join("&")},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")&&Tt.test(this.nodeName)&&!At.test(e)&&(this.checked||!pe.test(e))}).map(function(e,t){var n=x(this).val();return null==n?null:Array.isArray(n)?x.map(n,function(e){return{name:t.name,value:e.replace(Ct,"\r\n")}}):{name:t.name,value:n.replace(Ct,"\r\n")}}).get()}});var jt=/%20/g,Dt=/#.*$/,St=/([?&])_=[^&]*/,Et=/^(.*?):[ \t]*([^\r\n]*)$/gm,Ot=/^(?:GET|HEAD)$/,Lt=/^\/\//,Mt={},It={},Pt="*/".concat("*"),Nt=r.createElement("a");Nt.href=yt.href;function Ft(e){return function(t,n){"string"!=typeof t&&(n=t,t="*");var a,i=0,o=t.toLowerCase().match(F)||[];if(g(n))for(;a=o[i++];)"+"===a[0]?(a=a.slice(1)||"*",(e[a]=e[a]||[]).unshift(n)):(e[a]=e[a]||[]).push(n)}}function $t(e,t,n,a){var i={},o=e===It;function r(s){var c;return i[s]=!0,x.each(e[s]||[],function(e,s){var l=s(t,n,a);return"string"!=typeof l||o||i[l]?o?!(c=l):void 0:(t.dataTypes.unshift(l),r(l),!1)}),c}return r(t.dataTypes[0])||!i["*"]&&r("*")}function qt(e,t){var n,a,i=x.ajaxSettings.flatOptions||{};for(n in t)void 0!==t[n]&&((i[n]?e:a||(a={}))[n]=t[n]);return a&&x.extend(!0,e,a),e}x.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:yt.href,type:"GET",isLocal:/^(?:about|app|app-storage|.+-extension|file|res|widget):$/.test(yt.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Pt,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":JSON.parse,"text xml":x.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?qt(qt(e,x.ajaxSettings),t):qt(x.ajaxSettings,e)},ajaxPrefilter:Ft(Mt),ajaxTransport:Ft(It),ajax:function(e,t){"object"==typeof e&&(t=e,e=void 0),t=t||{};var a,i,o,s,c,l,d,u,p,_,f=x.ajaxSetup({},t),m=f.context||f,h=f.context&&(m.nodeType||m.jquery)?x(m):x.event,v=x.Deferred(),g=x.Callbacks("once memory"),b=f.statusCode||{},y={},w={},k="canceled",C={readyState:0,getResponseHeader:function(e){var t;if(d){if(!s)for(s={};t=Et.exec(o);)s[t[1].toLowerCase()]=t[2];t=s[e.toLowerCase()]}return null==t?null:t},getAllResponseHeaders:function(){return d?o:null},setRequestHeader:function(e,t){return null==d&&(e=w[e.toLowerCase()]=w[e.toLowerCase()]||e,y[e]=t),this},overrideMimeType:function(e){return null==d&&(f.mimeType=e),this},statusCode:function(e){var t;if(e)if(d)C.always(e[C.status]);else for(t in e)b[t]=[b[t],e[t]];return this},abort:function(e){var t=e||k;return a&&a.abort(t),A(0,t),this}};if(v.promise(C),f.url=((e||f.url||yt.href)+"").replace(Lt,yt.protocol+"//"),f.type=t.method||t.type||f.method||f.type,f.dataTypes=(f.dataType||"*").toLowerCase().match(F)||[""],null==f.crossDomain){l=r.createElement("a");try{l.href=f.url,l.href=l.href,f.crossDomain=Nt.protocol+"//"+Nt.host!=l.protocol+"//"+l.host}catch(e){f.crossDomain=!0}}if(f.data&&f.processData&&"string"!=typeof f.data&&(f.data=x.param(f.data,f.traditional)),$t(Mt,f,t,C),d)return C;(u=x.event&&f.global)&&0==x.active++&&x.event.trigger("ajaxStart"),f.type=f.type.toUpperCase(),f.hasContent=!Ot.test(f.type),i=f.url.replace(Dt,""),f.hasContent?f.data&&f.processData&&0===(f.contentType||"").indexOf("application/x-www-form-urlencoded")&&(f.data=f.data.replace(jt,"+")):(_=f.url.slice(i.length),f.data&&(f.processData||"string"==typeof f.data)&&(i+=(kt.test(i)?"&":"?")+f.data,delete f.data),!1===f.cache&&(i=i.replace(St,"$1"),_=(kt.test(i)?"&":"?")+"_="+wt+++_),f.url=i+_),f.ifModified&&(x.lastModified[i]&&C.setRequestHeader("If-Modified-Since",x.lastModified[i]),x.etag[i]&&C.setRequestHeader("If-None-Match",x.etag[i])),(f.data&&f.hasContent&&!1!==f.contentType||t.contentType)&&C.setRequestHeader("Content-Type",f.contentType),C.setRequestHeader("Accept",f.dataTypes[0]&&f.accepts[f.dataTypes[0]]?f.accepts[f.dataTypes[0]]+("*"!==f.dataTypes[0]?", "+Pt+"; q=0.01":""):f.accepts["*"]);for(p in f.headers)C.setRequestHeader(p,f.headers[p]);if(f.beforeSend&&(!1===f.beforeSend.call(m,C,f)||d))return C.abort();if(k="abort",g.add(f.complete),C.done(f.success),C.fail(f.error),a=$t(It,f,t,C)){if(C.readyState=1,u&&h.trigger("ajaxSend",[C,f]),d)return C;f.async&&f.timeout>0&&(c=n.setTimeout(function(){C.abort("timeout")},f.timeout));try{d=!1,a.send(y,A)}catch(e){if(d)throw e;A(-1,e)}}else A(-1,"No Transport");function A(e,t,r,s){var l,p,_,y,w,k=t;d||(d=!0,c&&n.clearTimeout(c),a=void 0,o=s||"",C.readyState=e>0?4:0,l=e>=200&&e<300||304===e,r&&(y=function(e,t,n){for(var a,i,o,r,s=e.contents,c=e.dataTypes;"*"===c[0];)c.shift(),void 0===a&&(a=e.mimeType||t.getResponseHeader("Content-Type"));if(a)for(i in s)if(s[i]&&s[i].test(a)){c.unshift(i);break}if(c[0]in n)o=c[0];else{for(i in n){if(!c[0]||e.converters[i+" "+c[0]]){o=i;break}r||(r=i)}o=o||r}if(o)return o!==c[0]&&c.unshift(o),n[o]}(f,C,r)),y=function(e,t,n,a){var i,o,r,s,c,l={},d=e.dataTypes.slice();if(d[1])for(r in e.converters)l[r.toLowerCase()]=e.converters[r];for(o=d.shift();o;)if(e.responseFields[o]&&(n[e.responseFields[o]]=t),!c&&a&&e.dataFilter&&(t=e.dataFilter(t,e.dataType)),c=o,o=d.shift())if("*"===o)o=c;else if("*"!==c&&c!==o){if(!(r=l[c+" "+o]||l["* "+o]))for(i in l)if((s=i.split(" "))[1]===o&&(r=l[c+" "+s[0]]||l["* "+s[0]])){!0===r?r=l[i]:!0!==l[i]&&(o=s[0],d.unshift(s[1]));break}if(!0!==r)if(r&&e.throws)t=r(t);else try{t=r(t)}catch(e){return{state:"parsererror",error:r?e:"No conversion from "+c+" to "+o}}}return{state:"success",data:t}}(f,y,C,l),l?(f.ifModified&&((w=C.getResponseHeader("Last-Modified"))&&(x.lastModified[i]=w),(w=C.getResponseHeader("etag"))&&(x.etag[i]=w)),204===e||"HEAD"===f.type?k="nocontent":304===e?k="notmodified":(k=y.state,p=y.data,l=!(_=y.error))):(_=k,!e&&k||(k="error",e<0&&(e=0))),C.status=e,C.statusText=(t||k)+"",l?v.resolveWith(m,[p,k,C]):v.rejectWith(m,[C,k,_]),C.statusCode(b),b=void 0,u&&h.trigger(l?"ajaxSuccess":"ajaxError",[C,f,l?p:_]),g.fireWith(m,[C,k]),u&&(h.trigger("ajaxComplete",[C,f]),--x.active||x.event.trigger("ajaxStop")))}return C},getJSON:function(e,t,n){return x.get(e,t,n,"json")},getScript:function(e,t){return x.get(e,void 0,t,"script")}}),x.each(["get","post"],function(e,t){x[t]=function(e,n,a,i){return g(n)&&(i=i||a,a=n,n=void 0),x.ajax(x.extend({url:e,type:t,dataType:i,data:n,success:a},x.isPlainObject(e)&&e))}}),x._evalUrl=function(e){return x.ajax({url:e,type:"GET",dataType:"script",cache:!0,async:!1,global:!1,throws:!0})},x.fn.extend({wrapAll:function(e){var t;return this[0]&&(g(e)&&(e=e.call(this[0])),t=x(e,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){for(var e=this;e.firstElementChild;)e=e.firstElementChild;return e}).append(this)),this},wrapInner:function(e){return g(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=g(e);return this.each(function(n){x(this).wrapAll(t?e.call(this,n):e)})},unwrap:function(e){return this.parent(e).not("body").each(function(){x(this).replaceWith(this.childNodes)}),this}}),x.expr.pseudos.hidden=function(e){return!x.expr.pseudos.visible(e)},x.expr.pseudos.visible=function(e){return!!(e.offsetWidth||e.offsetHeight||e.getClientRects().length)},x.ajaxSettings.xhr=function(){try{return new n.XMLHttpRequest}catch(e){}};var Rt={0:200,1223:204},Bt=x.ajaxSettings.xhr();v.cors=!!Bt&&"withCredentials"in Bt,v.ajax=Bt=!!Bt,x.ajaxTransport(function(e){var t,a;if(v.cors||Bt&&!e.crossDomain)return{send:function(i,o){var r,s=e.xhr();if(s.open(e.type,e.url,e.async,e.username,e.password),e.xhrFields)for(r in e.xhrFields)s[r]=e.xhrFields[r];e.mimeType&&s.overrideMimeType&&s.overrideMimeType(e.mimeType),e.crossDomain||i["X-Requested-With"]||(i["X-Requested-With"]="XMLHttpRequest");for(r in i)s.setRequestHeader(r,i[r]);t=function(e){return function(){t&&(t=a=s.onload=s.onerror=s.onabort=s.ontimeout=s.onreadystatechange=null,"abort"===e?s.abort():"error"===e?"number"!=typeof s.status?o(0,"error"):o(s.status,s.statusText):o(Rt[s.status]||s.status,s.statusText,"text"!==(s.responseType||"text")||"string"!=typeof s.responseText?{binary:s.response}:{text:s.responseText},s.getAllResponseHeaders()))}},s.onload=t(),a=s.onerror=s.ontimeout=t("error"),void 0!==s.onabort?s.onabort=a:s.onreadystatechange=function(){4===s.readyState&&n.setTimeout(function(){t&&a()})},t=t("abort");try{s.send(e.hasContent&&e.data||null)}catch(e){if(t)throw e}},abort:function(){t&&t()}}}),x.ajaxPrefilter(function(e){e.crossDomain&&(e.contents.script=!1)}),x.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(e){return x.globalEval(e),e}}}),x.ajaxPrefilter("script",function(e){void 0===e.cache&&(e.cache=!1),e.crossDomain&&(e.type="GET")}),x.ajaxTransport("script",function(e){if(e.crossDomain){var t,n;return{send:function(a,i){t=x("