From adb6af75b074ef93c0baa3ecbcf58579f8016028 Mon Sep 17 00:00:00 2001 From: Dianatul Fitriyah Date: Thu, 27 Jun 2024 12:12:13 +0700 Subject: [PATCH] pesan commit --- .ftpquota | 1 + .vscode/sftp.json | 12 + UIDBayarContainer.php | 1 + UIDContainer.php | 1 + bayarDB.php | 235 + css/bootstrap-responsive.css | 1109 +++ css/bootstrap-responsive.min.css | 9 + css/bootstrap.css | 6167 ++++++++++++++++ css/bootstrap.min.css | 9 + database.php | 33 + error_log | 966 +++ getUID.php | 5 + getUIDBayar.php | 4 + home ok ok.png | Bin 0 -> 169591 bytes home.php | 194 + homeUser.php | 169 + img/glyphicons-halflings-white.png | Bin 0 -> 8777 bytes img/glyphicons-halflings.png | Bin 0 -> 12799 bytes insertDB.php | 54 + jquery.min.js | 10598 +++++++++++++++++++++++++++ js/bootstrap.js | 2280 ++++++ js/bootstrap.min.js | 6 + nodemcu_rfid_iot_projects.sql | 58 + read tag data user pembayaran.php | 198 + read tag pembayaran.php | 234 + read tag user data.php | 198 + read tag.php | 236 + registration.php | 169 + sendNewBalance.php | 1 + tambahSaldoDB.php | 240 + template.php | 167 + updateDB.php | 54 + user data delete page.php | 56 + user data edit page.php | 258 + user data edit tb.php | 140 + user data pembayaran.php | 256 + user data.php | 133 + 37 files changed, 24251 insertions(+) create mode 100644 .ftpquota create mode 100644 .vscode/sftp.json create mode 100644 UIDBayarContainer.php create mode 100644 UIDContainer.php create mode 100644 bayarDB.php create mode 100644 css/bootstrap-responsive.css create mode 100644 css/bootstrap-responsive.min.css create mode 100644 css/bootstrap.css create mode 100644 css/bootstrap.min.css create mode 100644 database.php create mode 100644 error_log create mode 100644 getUID.php create mode 100644 getUIDBayar.php create mode 100644 home ok ok.png create mode 100644 home.php create mode 100644 homeUser.php create mode 100644 img/glyphicons-halflings-white.png create mode 100644 img/glyphicons-halflings.png create mode 100644 insertDB.php create mode 100644 jquery.min.js create mode 100644 js/bootstrap.js create mode 100644 js/bootstrap.min.js create mode 100644 nodemcu_rfid_iot_projects.sql create mode 100644 read tag data user pembayaran.php create mode 100644 read tag pembayaran.php create mode 100644 read tag user data.php create mode 100644 read tag.php create mode 100644 registration.php create mode 100644 sendNewBalance.php create mode 100644 tambahSaldoDB.php create mode 100644 template.php create mode 100644 updateDB.php create mode 100644 user data delete page.php create mode 100644 user data edit page.php create mode 100644 user data edit tb.php create mode 100644 user data pembayaran.php create mode 100644 user data.php diff --git a/.ftpquota b/.ftpquota new file mode 100644 index 0000000..5e4ce7e --- /dev/null +++ b/.ftpquota @@ -0,0 +1 @@ +37 1040349 diff --git a/.vscode/sftp.json b/.vscode/sftp.json new file mode 100644 index 0000000..f5b0a2b --- /dev/null +++ b/.vscode/sftp.json @@ -0,0 +1,12 @@ +{ + "name": "IOTKK", + "host": "bersyukur.cloud", + "protocol": "ftp", + "port": 21, + "username": "IOTKK@bersyukur.cloud", + "password": "Bersyukur_iot123", + "remotePath": "/", + "uploadOnSave": true, + "useTempFile": false, + "openSsh": false +} diff --git a/UIDBayarContainer.php b/UIDBayarContainer.php new file mode 100644 index 0000000..a1fcc30 --- /dev/null +++ b/UIDBayarContainer.php @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/UIDContainer.php b/UIDContainer.php new file mode 100644 index 0000000..bc3db8b --- /dev/null +++ b/UIDContainer.php @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/bayarDB.php b/bayarDB.php new file mode 100644 index 0000000..4621055 --- /dev/null +++ b/bayarDB.php @@ -0,0 +1,235 @@ + $chatId, + 'text' => $message + ]; + + $options = [ + 'http' => [ + 'method' => 'POST', + 'header' => "Content-Type:application/x-www-form-urlencoded\r\n", + 'content' => http_build_query($data) + ] + ]; + + $context = stream_context_create($options); + file_get_contents($apiURL, false, $context); +} + +// Retrieving UID from GET parameter +$uid = $_GET['id']; +$reduce_balance = isset($_POST['reduce_balance']) ? intval($_POST['reduce_balance']) : 0; + +// Connecting to the database +$pdo = Database::connect(); +$pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); + +// Retrieve user data based on UID +$sql = "SELECT * FROM siswa_wali WHERE id = ?"; +$q = $pdo->prepare($sql); +$q->execute(array($uid)); +$user = $q->fetch(PDO::FETCH_ASSOC); + +// Check if user exists +if ($user) { + // Check if the balance is sufficient + if ($user['balance'] >= $reduce_balance) { + // Update balance by subtracting the reduced amount + $newBalance = $user['balance'] - $reduce_balance; + + // Update balance in the database + $updateSql = "UPDATE siswa_wali SET balance = ? WHERE id = ?"; + $updateStmt = $pdo->prepare($updateSql); + $updateStmt->execute(array($newBalance, $uid)); + + $Write = ""; + file_put_contents('sendNewBalance.php', $Write); + + + // Send notification message via Telegram bot + $message = "Halo " . $user['name'] . "\nAnda melakukan pembayaran sebanyak: " . $reduce_balance . ",\nSaldo anda saat ini adalah Rp : " . $newBalance; + sendMessage($user['chatId'], $message); + } else { + // Handle the case where the balance is insufficient + $msg = "Saldo kurang. Saldo anda saat ini adalah: " . $user['balance'] . "."; + echo ""; + } + + echo " +
+ +
+ +
+ + + + + +
+ +
+
+ + + + + + + +
+ User Data +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ID:{$user['id']}
Nama:{$user['name']}
Jenis Kelamin:{$user['gender']}
Email:{$user['email']}
No.Telp:{$user['mobile']}
Saldo:{$user['balance']}
+
+
"; +} else { + // User not found, handle accordingly + echo "User not found"; +} + +// Close the database connection +Database::disconnect(); +?> + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/css/bootstrap-responsive.css b/css/bootstrap-responsive.css new file mode 100644 index 0000000..c0bba15 --- /dev/null +++ b/css/bootstrap-responsive.css @@ -0,0 +1,1109 @@ +/*! + * Bootstrap Responsive v2.3.2 + * + * Copyright 2013 Twitter, Inc + * Licensed under the Apache License v2.0 + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Designed and built with all the love in the world by @mdo and @fat. + */ + +.clearfix { + *zoom: 1; +} + +.clearfix:before, +.clearfix:after { + display: table; + line-height: 0; + content: ""; +} + +.clearfix:after { + clear: both; +} + +.hide-text { + font: 0/0 a; + color: transparent; + text-shadow: none; + background-color: transparent; + border: 0; +} + +.input-block-level { + display: block; + width: 100%; + min-height: 30px; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} + +@-ms-viewport { + width: device-width; +} + +.hidden { + display: none; + visibility: hidden; +} + +.visible-phone { + display: none !important; +} + +.visible-tablet { + display: none !important; +} + +.hidden-desktop { + display: none !important; +} + +.visible-desktop { + display: inherit !important; +} + +@media (min-width: 768px) and (max-width: 979px) { + .hidden-desktop { + display: inherit !important; + } + .visible-desktop { + display: none !important ; + } + .visible-tablet { + display: inherit !important; + } + .hidden-tablet { + display: none !important; + } +} + +@media (max-width: 767px) { + .hidden-desktop { + display: inherit !important; + } + .visible-desktop { + display: none !important; + } + .visible-phone { + display: inherit !important; + } + .hidden-phone { + display: none !important; + } +} + +.visible-print { + display: none !important; +} + +@media print { + .visible-print { + display: inherit !important; + } + .hidden-print { + display: none !important; + } +} + +@media (min-width: 1200px) { + .row { + margin-left: -30px; + *zoom: 1; + } + .row:before, + .row:after { + display: table; + line-height: 0; + content: ""; + } + .row:after { + clear: both; + } + [class*="span"] { + float: left; + min-height: 1px; + margin-left: 30px; + } + .container, + .navbar-static-top .container, + .navbar-fixed-top .container, + .navbar-fixed-bottom .container { + width: 1170px; + } + .span12 { + width: 1170px; + } + .span11 { + width: 1070px; + } + .span10 { + width: 970px; + } + .span9 { + width: 870px; + } + .span8 { + width: 770px; + } + .span7 { + width: 670px; + } + .span6 { + width: 570px; + } + .span5 { + width: 470px; + } + .span4 { + width: 370px; + } + .span3 { + width: 270px; + } + .span2 { + width: 170px; + } + .span1 { + width: 70px; + } + .offset12 { + margin-left: 1230px; + } + .offset11 { + margin-left: 1130px; + } + .offset10 { + margin-left: 1030px; + } + .offset9 { + margin-left: 930px; + } + .offset8 { + margin-left: 830px; + } + .offset7 { + margin-left: 730px; + } + .offset6 { + margin-left: 630px; + } + .offset5 { + margin-left: 530px; + } + .offset4 { + margin-left: 430px; + } + .offset3 { + margin-left: 330px; + } + .offset2 { + margin-left: 230px; + } + .offset1 { + margin-left: 130px; + } + .row-fluid { + width: 100%; + *zoom: 1; + } + .row-fluid:before, + .row-fluid:after { + display: table; + line-height: 0; + content: ""; + } + .row-fluid:after { + clear: both; + } + .row-fluid [class*="span"] { + display: block; + float: left; + width: 100%; + min-height: 30px; + margin-left: 2.564102564102564%; + *margin-left: 2.5109110747408616%; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + } + .row-fluid [class*="span"]:first-child { + margin-left: 0; + } + .row-fluid .controls-row [class*="span"] + [class*="span"] { + margin-left: 2.564102564102564%; + } + .row-fluid .span12 { + width: 100%; + *width: 99.94680851063829%; + } + .row-fluid .span11 { + width: 91.45299145299145%; + *width: 91.39979996362975%; + } + .row-fluid .span10 { + width: 82.90598290598291%; + *width: 82.8527914166212%; + } + .row-fluid .span9 { + width: 74.35897435897436%; + *width: 74.30578286961266%; + } + .row-fluid .span8 { + width: 65.81196581196582%; + *width: 65.75877432260411%; + } + .row-fluid .span7 { + width: 57.26495726495726%; + *width: 57.21176577559556%; + } + .row-fluid .span6 { + width: 48.717948717948715%; + *width: 48.664757228587014%; + } + .row-fluid .span5 { + width: 40.17094017094017%; + *width: 40.11774868157847%; + } + .row-fluid .span4 { + width: 31.623931623931625%; + *width: 31.570740134569924%; + } + .row-fluid .span3 { + width: 23.076923076923077%; + *width: 23.023731587561375%; + } + .row-fluid .span2 { + width: 14.52991452991453%; + *width: 14.476723040552828%; + } + .row-fluid .span1 { + width: 5.982905982905983%; + *width: 5.929714493544281%; + } + .row-fluid .offset12 { + margin-left: 105.12820512820512%; + *margin-left: 105.02182214948171%; + } + .row-fluid .offset12:first-child { + margin-left: 102.56410256410257%; + *margin-left: 102.45771958537915%; + } + .row-fluid .offset11 { + margin-left: 96.58119658119658%; + *margin-left: 96.47481360247316%; + } + .row-fluid .offset11:first-child { + margin-left: 94.01709401709402%; + *margin-left: 93.91071103837061%; + } + .row-fluid .offset10 { + margin-left: 88.03418803418803%; + *margin-left: 87.92780505546462%; + } + .row-fluid .offset10:first-child { + margin-left: 85.47008547008548%; + *margin-left: 85.36370249136206%; + } + .row-fluid .offset9 { + margin-left: 79.48717948717949%; + *margin-left: 79.38079650845607%; + } + .row-fluid .offset9:first-child { + margin-left: 76.92307692307693%; + *margin-left: 76.81669394435352%; + } + .row-fluid .offset8 { + margin-left: 70.94017094017094%; + *margin-left: 70.83378796144753%; + } + .row-fluid .offset8:first-child { + margin-left: 68.37606837606839%; + *margin-left: 68.26968539734497%; + } + .row-fluid .offset7 { + margin-left: 62.393162393162385%; + *margin-left: 62.28677941443899%; + } + .row-fluid .offset7:first-child { + margin-left: 59.82905982905982%; + *margin-left: 59.72267685033642%; + } + .row-fluid .offset6 { + margin-left: 53.84615384615384%; + *margin-left: 53.739770867430444%; + } + .row-fluid .offset6:first-child { + margin-left: 51.28205128205128%; + *margin-left: 51.175668303327875%; + } + .row-fluid .offset5 { + margin-left: 45.299145299145295%; + *margin-left: 45.1927623204219%; + } + .row-fluid .offset5:first-child { + margin-left: 42.73504273504273%; + *margin-left: 42.62865975631933%; + } + .row-fluid .offset4 { + margin-left: 36.75213675213675%; + *margin-left: 36.645753773413354%; + } + .row-fluid .offset4:first-child { + margin-left: 34.18803418803419%; + *margin-left: 34.081651209310785%; + } + .row-fluid .offset3 { + margin-left: 28.205128205128204%; + *margin-left: 28.0987452264048%; + } + .row-fluid .offset3:first-child { + margin-left: 25.641025641025642%; + *margin-left: 25.53464266230224%; + } + .row-fluid .offset2 { + margin-left: 19.65811965811966%; + *margin-left: 19.551736679396257%; + } + .row-fluid .offset2:first-child { + margin-left: 17.094017094017094%; + *margin-left: 16.98763411529369%; + } + .row-fluid .offset1 { + margin-left: 11.11111111111111%; + *margin-left: 11.004728132387708%; + } + .row-fluid .offset1:first-child { + margin-left: 8.547008547008547%; + *margin-left: 8.440625568285142%; + } + input, + textarea, + .uneditable-input { + margin-left: 0; + } + .controls-row [class*="span"] + [class*="span"] { + margin-left: 30px; + } + input.span12, + textarea.span12, + .uneditable-input.span12 { + width: 1156px; + } + input.span11, + textarea.span11, + .uneditable-input.span11 { + width: 1056px; + } + input.span10, + textarea.span10, + .uneditable-input.span10 { + width: 956px; + } + input.span9, + textarea.span9, + .uneditable-input.span9 { + width: 856px; + } + input.span8, + textarea.span8, + .uneditable-input.span8 { + width: 756px; + } + input.span7, + textarea.span7, + .uneditable-input.span7 { + width: 656px; + } + input.span6, + textarea.span6, + .uneditable-input.span6 { + width: 556px; + } + input.span5, + textarea.span5, + .uneditable-input.span5 { + width: 456px; + } + input.span4, + textarea.span4, + .uneditable-input.span4 { + width: 356px; + } + input.span3, + textarea.span3, + .uneditable-input.span3 { + width: 256px; + } + input.span2, + textarea.span2, + .uneditable-input.span2 { + width: 156px; + } + input.span1, + textarea.span1, + .uneditable-input.span1 { + width: 56px; + } + .thumbnails { + margin-left: -30px; + } + .thumbnails > li { + margin-left: 30px; + } + .row-fluid .thumbnails { + margin-left: 0; + } +} + +@media (min-width: 768px) and (max-width: 979px) { + .row { + margin-left: -20px; + *zoom: 1; + } + .row:before, + .row:after { + display: table; + line-height: 0; + content: ""; + } + .row:after { + clear: both; + } + [class*="span"] { + float: left; + min-height: 1px; + margin-left: 20px; + } + .container, + .navbar-static-top .container, + .navbar-fixed-top .container, + .navbar-fixed-bottom .container { + width: 724px; + } + .span12 { + width: 724px; + } + .span11 { + width: 662px; + } + .span10 { + width: 600px; + } + .span9 { + width: 538px; + } + .span8 { + width: 476px; + } + .span7 { + width: 414px; + } + .span6 { + width: 352px; + } + .span5 { + width: 290px; + } + .span4 { + width: 228px; + } + .span3 { + width: 166px; + } + .span2 { + width: 104px; + } + .span1 { + width: 42px; + } + .offset12 { + margin-left: 764px; + } + .offset11 { + margin-left: 702px; + } + .offset10 { + margin-left: 640px; + } + .offset9 { + margin-left: 578px; + } + .offset8 { + margin-left: 516px; + } + .offset7 { + margin-left: 454px; + } + .offset6 { + margin-left: 392px; + } + .offset5 { + margin-left: 330px; + } + .offset4 { + margin-left: 268px; + } + .offset3 { + margin-left: 206px; + } + .offset2 { + margin-left: 144px; + } + .offset1 { + margin-left: 82px; + } + .row-fluid { + width: 100%; + *zoom: 1; + } + .row-fluid:before, + .row-fluid:after { + display: table; + line-height: 0; + content: ""; + } + .row-fluid:after { + clear: both; + } + .row-fluid [class*="span"] { + display: block; + float: left; + width: 100%; + min-height: 30px; + margin-left: 2.7624309392265194%; + *margin-left: 2.709239449864817%; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + } + .row-fluid [class*="span"]:first-child { + margin-left: 0; + } + .row-fluid .controls-row [class*="span"] + [class*="span"] { + margin-left: 2.7624309392265194%; + } + .row-fluid .span12 { + width: 100%; + *width: 99.94680851063829%; + } + .row-fluid .span11 { + width: 91.43646408839778%; + *width: 91.38327259903608%; + } + .row-fluid .span10 { + width: 82.87292817679558%; + *width: 82.81973668743387%; + } + .row-fluid .span9 { + width: 74.30939226519337%; + *width: 74.25620077583166%; + } + .row-fluid .span8 { + width: 65.74585635359117%; + *width: 65.69266486422946%; + } + .row-fluid .span7 { + width: 57.18232044198895%; + *width: 57.12912895262725%; + } + .row-fluid .span6 { + width: 48.61878453038674%; + *width: 48.56559304102504%; + } + .row-fluid .span5 { + width: 40.05524861878453%; + *width: 40.00205712942283%; + } + .row-fluid .span4 { + width: 31.491712707182323%; + *width: 31.43852121782062%; + } + .row-fluid .span3 { + width: 22.92817679558011%; + *width: 22.87498530621841%; + } + .row-fluid .span2 { + width: 14.3646408839779%; + *width: 14.311449394616199%; + } + .row-fluid .span1 { + width: 5.801104972375691%; + *width: 5.747913483013988%; + } + .row-fluid .offset12 { + margin-left: 105.52486187845304%; + *margin-left: 105.41847889972962%; + } + .row-fluid .offset12:first-child { + margin-left: 102.76243093922652%; + *margin-left: 102.6560479605031%; + } + .row-fluid .offset11 { + margin-left: 96.96132596685082%; + *margin-left: 96.8549429881274%; + } + .row-fluid .offset11:first-child { + margin-left: 94.1988950276243%; + *margin-left: 94.09251204890089%; + } + .row-fluid .offset10 { + margin-left: 88.39779005524862%; + *margin-left: 88.2914070765252%; + } + .row-fluid .offset10:first-child { + margin-left: 85.6353591160221%; + *margin-left: 85.52897613729868%; + } + .row-fluid .offset9 { + margin-left: 79.8342541436464%; + *margin-left: 79.72787116492299%; + } + .row-fluid .offset9:first-child { + margin-left: 77.07182320441989%; + *margin-left: 76.96544022569647%; + } + .row-fluid .offset8 { + margin-left: 71.2707182320442%; + *margin-left: 71.16433525332079%; + } + .row-fluid .offset8:first-child { + margin-left: 68.50828729281768%; + *margin-left: 68.40190431409427%; + } + .row-fluid .offset7 { + margin-left: 62.70718232044199%; + *margin-left: 62.600799341718584%; + } + .row-fluid .offset7:first-child { + margin-left: 59.94475138121547%; + *margin-left: 59.838368402492065%; + } + .row-fluid .offset6 { + margin-left: 54.14364640883978%; + *margin-left: 54.037263430116376%; + } + .row-fluid .offset6:first-child { + margin-left: 51.38121546961326%; + *margin-left: 51.27483249088986%; + } + .row-fluid .offset5 { + margin-left: 45.58011049723757%; + *margin-left: 45.47372751851417%; + } + .row-fluid .offset5:first-child { + margin-left: 42.81767955801105%; + *margin-left: 42.71129657928765%; + } + .row-fluid .offset4 { + margin-left: 37.01657458563536%; + *margin-left: 36.91019160691196%; + } + .row-fluid .offset4:first-child { + margin-left: 34.25414364640884%; + *margin-left: 34.14776066768544%; + } + .row-fluid .offset3 { + margin-left: 28.45303867403315%; + *margin-left: 28.346655695309746%; + } + .row-fluid .offset3:first-child { + margin-left: 25.69060773480663%; + *margin-left: 25.584224756083227%; + } + .row-fluid .offset2 { + margin-left: 19.88950276243094%; + *margin-left: 19.783119783707537%; + } + .row-fluid .offset2:first-child { + margin-left: 17.12707182320442%; + *margin-left: 17.02068884448102%; + } + .row-fluid .offset1 { + margin-left: 11.32596685082873%; + *margin-left: 11.219583872105325%; + } + .row-fluid .offset1:first-child { + margin-left: 8.56353591160221%; + *margin-left: 8.457152932878806%; + } + input, + textarea, + .uneditable-input { + margin-left: 0; + } + .controls-row [class*="span"] + [class*="span"] { + margin-left: 20px; + } + input.span12, + textarea.span12, + .uneditable-input.span12 { + width: 710px; + } + input.span11, + textarea.span11, + .uneditable-input.span11 { + width: 648px; + } + input.span10, + textarea.span10, + .uneditable-input.span10 { + width: 586px; + } + input.span9, + textarea.span9, + .uneditable-input.span9 { + width: 524px; + } + input.span8, + textarea.span8, + .uneditable-input.span8 { + width: 462px; + } + input.span7, + textarea.span7, + .uneditable-input.span7 { + width: 400px; + } + input.span6, + textarea.span6, + .uneditable-input.span6 { + width: 338px; + } + input.span5, + textarea.span5, + .uneditable-input.span5 { + width: 276px; + } + input.span4, + textarea.span4, + .uneditable-input.span4 { + width: 214px; + } + input.span3, + textarea.span3, + .uneditable-input.span3 { + width: 152px; + } + input.span2, + textarea.span2, + .uneditable-input.span2 { + width: 90px; + } + input.span1, + textarea.span1, + .uneditable-input.span1 { + width: 28px; + } +} + +@media (max-width: 767px) { + body { + padding-right: 20px; + padding-left: 20px; + } + .navbar-fixed-top, + .navbar-fixed-bottom, + .navbar-static-top { + margin-right: -20px; + margin-left: -20px; + } + .container-fluid { + padding: 0; + } + .dl-horizontal dt { + float: none; + width: auto; + clear: none; + text-align: left; + } + .dl-horizontal dd { + margin-left: 0; + } + .container { + width: auto; + } + .row-fluid { + width: 100%; + } + .row, + .thumbnails { + margin-left: 0; + } + .thumbnails > li { + float: none; + margin-left: 0; + } + [class*="span"], + .uneditable-input[class*="span"], + .row-fluid [class*="span"] { + display: block; + float: none; + width: 100%; + margin-left: 0; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + } + .span12, + .row-fluid .span12 { + width: 100%; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + } + .row-fluid [class*="offset"]:first-child { + margin-left: 0; + } + .input-large, + .input-xlarge, + .input-xxlarge, + input[class*="span"], + select[class*="span"], + textarea[class*="span"], + .uneditable-input { + display: block; + width: 100%; + min-height: 30px; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + } + .input-prepend input, + .input-append input, + .input-prepend input[class*="span"], + .input-append input[class*="span"] { + display: inline-block; + width: auto; + } + .controls-row [class*="span"] + [class*="span"] { + margin-left: 0; + } + .modal { + position: fixed; + top: 20px; + right: 20px; + left: 20px; + width: auto; + margin: 0; + } + .modal.fade { + top: -100px; + } + .modal.fade.in { + top: 20px; + } +} + +@media (max-width: 480px) { + .nav-collapse { + -webkit-transform: translate3d(0, 0, 0); + } + .page-header h1 small { + display: block; + line-height: 20px; + } + input[type="checkbox"], + input[type="radio"] { + border: 1px solid #ccc; + } + .form-horizontal .control-label { + float: none; + width: auto; + padding-top: 0; + text-align: left; + } + .form-horizontal .controls { + margin-left: 0; + } + .form-horizontal .control-list { + padding-top: 0; + } + .form-horizontal .form-actions { + padding-right: 10px; + padding-left: 10px; + } + .media .pull-left, + .media .pull-right { + display: block; + float: none; + margin-bottom: 10px; + } + .media-object { + margin-right: 0; + margin-left: 0; + } + .modal { + top: 10px; + right: 10px; + left: 10px; + } + .modal-header .close { + padding: 10px; + margin: -10px; + } + .carousel-caption { + position: static; + } +} + +@media (max-width: 979px) { + body { + padding-top: 0; + } + .navbar-fixed-top, + .navbar-fixed-bottom { + position: static; + } + .navbar-fixed-top { + margin-bottom: 20px; + } + .navbar-fixed-bottom { + margin-top: 20px; + } + .navbar-fixed-top .navbar-inner, + .navbar-fixed-bottom .navbar-inner { + padding: 5px; + } + .navbar .container { + width: auto; + padding: 0; + } + .navbar .brand { + padding-right: 10px; + padding-left: 10px; + margin: 0 0 0 -5px; + } + .nav-collapse { + clear: both; + } + .nav-collapse .nav { + float: none; + margin: 0 0 10px; + } + .nav-collapse .nav > li { + float: none; + } + .nav-collapse .nav > li > a { + margin-bottom: 2px; + } + .nav-collapse .nav > .divider-vertical { + display: none; + } + .nav-collapse .nav .nav-header { + color: #777777; + text-shadow: none; + } + .nav-collapse .nav > li > a, + .nav-collapse .dropdown-menu a { + padding: 9px 15px; + font-weight: bold; + color: #777777; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; + } + .nav-collapse .btn { + padding: 4px 10px 4px; + font-weight: normal; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; + } + .nav-collapse .dropdown-menu li + li a { + margin-bottom: 2px; + } + .nav-collapse .nav > li > a:hover, + .nav-collapse .nav > li > a:focus, + .nav-collapse .dropdown-menu a:hover, + .nav-collapse .dropdown-menu a:focus { + background-color: #f2f2f2; + } + .navbar-inverse .nav-collapse .nav > li > a, + .navbar-inverse .nav-collapse .dropdown-menu a { + color: #999999; + } + .navbar-inverse .nav-collapse .nav > li > a:hover, + .navbar-inverse .nav-collapse .nav > li > a:focus, + .navbar-inverse .nav-collapse .dropdown-menu a:hover, + .navbar-inverse .nav-collapse .dropdown-menu a:focus { + background-color: #111111; + } + .nav-collapse.in .btn-group { + padding: 0; + margin-top: 5px; + } + .nav-collapse .dropdown-menu { + position: static; + top: auto; + left: auto; + display: none; + float: none; + max-width: none; + padding: 0; + margin: 0 15px; + background-color: transparent; + border: none; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; + -webkit-box-shadow: none; + -moz-box-shadow: none; + box-shadow: none; + } + .nav-collapse .open > .dropdown-menu { + display: block; + } + .nav-collapse .dropdown-menu:before, + .nav-collapse .dropdown-menu:after { + display: none; + } + .nav-collapse .dropdown-menu .divider { + display: none; + } + .nav-collapse .nav > li > .dropdown-menu:before, + .nav-collapse .nav > li > .dropdown-menu:after { + display: none; + } + .nav-collapse .navbar-form, + .nav-collapse .navbar-search { + float: none; + padding: 10px 15px; + margin: 10px 0; + border-top: 1px solid #f2f2f2; + border-bottom: 1px solid #f2f2f2; + -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); + -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); + box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); + } + .navbar-inverse .nav-collapse .navbar-form, + .navbar-inverse .nav-collapse .navbar-search { + border-top-color: #111111; + border-bottom-color: #111111; + } + .navbar .nav-collapse .nav.pull-right { + float: none; + margin-left: 0; + } + .nav-collapse, + .nav-collapse.collapse { + height: 0; + overflow: hidden; + } + .navbar .btn-navbar { + display: block; + } + .navbar-static .navbar-inner { + padding-right: 10px; + padding-left: 10px; + } +} + +@media (min-width: 980px) { + .nav-collapse.collapse { + height: auto !important; + overflow: visible !important; + } +} diff --git a/css/bootstrap-responsive.min.css b/css/bootstrap-responsive.min.css new file mode 100644 index 0000000..96a435b --- /dev/null +++ b/css/bootstrap-responsive.min.css @@ -0,0 +1,9 @@ +/*! + * Bootstrap Responsive v2.3.2 + * + * Copyright 2013 Twitter, Inc + * Licensed under the Apache License v2.0 + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Designed and built with all the love in the world by @mdo and @fat. + */.clearfix{*zoom:1}.clearfix:before,.clearfix:after{display:table;line-height:0;content:""}.clearfix:after{clear:both}.hide-text{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.input-block-level{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}@-ms-viewport{width:device-width}.hidden{display:none;visibility:hidden}.visible-phone{display:none!important}.visible-tablet{display:none!important}.hidden-desktop{display:none!important}.visible-desktop{display:inherit!important}@media(min-width:768px) and (max-width:979px){.hidden-desktop{display:inherit!important}.visible-desktop{display:none!important}.visible-tablet{display:inherit!important}.hidden-tablet{display:none!important}}@media(max-width:767px){.hidden-desktop{display:inherit!important}.visible-desktop{display:none!important}.visible-phone{display:inherit!important}.hidden-phone{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:inherit!important}.hidden-print{display:none!important}}@media(min-width:1200px){.row{margin-left:-30px;*zoom:1}.row:before,.row:after{display:table;line-height:0;content:""}.row:after{clear:both}[class*="span"]{float:left;min-height:1px;margin-left:30px}.container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:1170px}.span12{width:1170px}.span11{width:1070px}.span10{width:970px}.span9{width:870px}.span8{width:770px}.span7{width:670px}.span6{width:570px}.span5{width:470px}.span4{width:370px}.span3{width:270px}.span2{width:170px}.span1{width:70px}.offset12{margin-left:1230px}.offset11{margin-left:1130px}.offset10{margin-left:1030px}.offset9{margin-left:930px}.offset8{margin-left:830px}.offset7{margin-left:730px}.offset6{margin-left:630px}.offset5{margin-left:530px}.offset4{margin-left:430px}.offset3{margin-left:330px}.offset2{margin-left:230px}.offset1{margin-left:130px}.row-fluid{width:100%;*zoom:1}.row-fluid:before,.row-fluid:after{display:table;line-height:0;content:""}.row-fluid:after{clear:both}.row-fluid [class*="span"]{display:block;float:left;width:100%;min-height:30px;margin-left:2.564102564102564%;*margin-left:2.5109110747408616%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.row-fluid [class*="span"]:first-child{margin-left:0}.row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.564102564102564%}.row-fluid .span12{width:100%;*width:99.94680851063829%}.row-fluid .span11{width:91.45299145299145%;*width:91.39979996362975%}.row-fluid .span10{width:82.90598290598291%;*width:82.8527914166212%}.row-fluid .span9{width:74.35897435897436%;*width:74.30578286961266%}.row-fluid .span8{width:65.81196581196582%;*width:65.75877432260411%}.row-fluid .span7{width:57.26495726495726%;*width:57.21176577559556%}.row-fluid .span6{width:48.717948717948715%;*width:48.664757228587014%}.row-fluid .span5{width:40.17094017094017%;*width:40.11774868157847%}.row-fluid .span4{width:31.623931623931625%;*width:31.570740134569924%}.row-fluid .span3{width:23.076923076923077%;*width:23.023731587561375%}.row-fluid .span2{width:14.52991452991453%;*width:14.476723040552828%}.row-fluid .span1{width:5.982905982905983%;*width:5.929714493544281%}.row-fluid .offset12{margin-left:105.12820512820512%;*margin-left:105.02182214948171%}.row-fluid .offset12:first-child{margin-left:102.56410256410257%;*margin-left:102.45771958537915%}.row-fluid .offset11{margin-left:96.58119658119658%;*margin-left:96.47481360247316%}.row-fluid .offset11:first-child{margin-left:94.01709401709402%;*margin-left:93.91071103837061%}.row-fluid .offset10{margin-left:88.03418803418803%;*margin-left:87.92780505546462%}.row-fluid .offset10:first-child{margin-left:85.47008547008548%;*margin-left:85.36370249136206%}.row-fluid .offset9{margin-left:79.48717948717949%;*margin-left:79.38079650845607%}.row-fluid .offset9:first-child{margin-left:76.92307692307693%;*margin-left:76.81669394435352%}.row-fluid .offset8{margin-left:70.94017094017094%;*margin-left:70.83378796144753%}.row-fluid .offset8:first-child{margin-left:68.37606837606839%;*margin-left:68.26968539734497%}.row-fluid .offset7{margin-left:62.393162393162385%;*margin-left:62.28677941443899%}.row-fluid .offset7:first-child{margin-left:59.82905982905982%;*margin-left:59.72267685033642%}.row-fluid .offset6{margin-left:53.84615384615384%;*margin-left:53.739770867430444%}.row-fluid .offset6:first-child{margin-left:51.28205128205128%;*margin-left:51.175668303327875%}.row-fluid .offset5{margin-left:45.299145299145295%;*margin-left:45.1927623204219%}.row-fluid .offset5:first-child{margin-left:42.73504273504273%;*margin-left:42.62865975631933%}.row-fluid .offset4{margin-left:36.75213675213675%;*margin-left:36.645753773413354%}.row-fluid .offset4:first-child{margin-left:34.18803418803419%;*margin-left:34.081651209310785%}.row-fluid .offset3{margin-left:28.205128205128204%;*margin-left:28.0987452264048%}.row-fluid .offset3:first-child{margin-left:25.641025641025642%;*margin-left:25.53464266230224%}.row-fluid .offset2{margin-left:19.65811965811966%;*margin-left:19.551736679396257%}.row-fluid .offset2:first-child{margin-left:17.094017094017094%;*margin-left:16.98763411529369%}.row-fluid .offset1{margin-left:11.11111111111111%;*margin-left:11.004728132387708%}.row-fluid .offset1:first-child{margin-left:8.547008547008547%;*margin-left:8.440625568285142%}input,textarea,.uneditable-input{margin-left:0}.controls-row [class*="span"]+[class*="span"]{margin-left:30px}input.span12,textarea.span12,.uneditable-input.span12{width:1156px}input.span11,textarea.span11,.uneditable-input.span11{width:1056px}input.span10,textarea.span10,.uneditable-input.span10{width:956px}input.span9,textarea.span9,.uneditable-input.span9{width:856px}input.span8,textarea.span8,.uneditable-input.span8{width:756px}input.span7,textarea.span7,.uneditable-input.span7{width:656px}input.span6,textarea.span6,.uneditable-input.span6{width:556px}input.span5,textarea.span5,.uneditable-input.span5{width:456px}input.span4,textarea.span4,.uneditable-input.span4{width:356px}input.span3,textarea.span3,.uneditable-input.span3{width:256px}input.span2,textarea.span2,.uneditable-input.span2{width:156px}input.span1,textarea.span1,.uneditable-input.span1{width:56px}.thumbnails{margin-left:-30px}.thumbnails>li{margin-left:30px}.row-fluid .thumbnails{margin-left:0}}@media(min-width:768px) and (max-width:979px){.row{margin-left:-20px;*zoom:1}.row:before,.row:after{display:table;line-height:0;content:""}.row:after{clear:both}[class*="span"]{float:left;min-height:1px;margin-left:20px}.container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:724px}.span12{width:724px}.span11{width:662px}.span10{width:600px}.span9{width:538px}.span8{width:476px}.span7{width:414px}.span6{width:352px}.span5{width:290px}.span4{width:228px}.span3{width:166px}.span2{width:104px}.span1{width:42px}.offset12{margin-left:764px}.offset11{margin-left:702px}.offset10{margin-left:640px}.offset9{margin-left:578px}.offset8{margin-left:516px}.offset7{margin-left:454px}.offset6{margin-left:392px}.offset5{margin-left:330px}.offset4{margin-left:268px}.offset3{margin-left:206px}.offset2{margin-left:144px}.offset1{margin-left:82px}.row-fluid{width:100%;*zoom:1}.row-fluid:before,.row-fluid:after{display:table;line-height:0;content:""}.row-fluid:after{clear:both}.row-fluid [class*="span"]{display:block;float:left;width:100%;min-height:30px;margin-left:2.7624309392265194%;*margin-left:2.709239449864817%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.row-fluid [class*="span"]:first-child{margin-left:0}.row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.7624309392265194%}.row-fluid .span12{width:100%;*width:99.94680851063829%}.row-fluid .span11{width:91.43646408839778%;*width:91.38327259903608%}.row-fluid .span10{width:82.87292817679558%;*width:82.81973668743387%}.row-fluid .span9{width:74.30939226519337%;*width:74.25620077583166%}.row-fluid .span8{width:65.74585635359117%;*width:65.69266486422946%}.row-fluid .span7{width:57.18232044198895%;*width:57.12912895262725%}.row-fluid .span6{width:48.61878453038674%;*width:48.56559304102504%}.row-fluid .span5{width:40.05524861878453%;*width:40.00205712942283%}.row-fluid .span4{width:31.491712707182323%;*width:31.43852121782062%}.row-fluid .span3{width:22.92817679558011%;*width:22.87498530621841%}.row-fluid .span2{width:14.3646408839779%;*width:14.311449394616199%}.row-fluid .span1{width:5.801104972375691%;*width:5.747913483013988%}.row-fluid .offset12{margin-left:105.52486187845304%;*margin-left:105.41847889972962%}.row-fluid .offset12:first-child{margin-left:102.76243093922652%;*margin-left:102.6560479605031%}.row-fluid .offset11{margin-left:96.96132596685082%;*margin-left:96.8549429881274%}.row-fluid .offset11:first-child{margin-left:94.1988950276243%;*margin-left:94.09251204890089%}.row-fluid .offset10{margin-left:88.39779005524862%;*margin-left:88.2914070765252%}.row-fluid .offset10:first-child{margin-left:85.6353591160221%;*margin-left:85.52897613729868%}.row-fluid .offset9{margin-left:79.8342541436464%;*margin-left:79.72787116492299%}.row-fluid .offset9:first-child{margin-left:77.07182320441989%;*margin-left:76.96544022569647%}.row-fluid .offset8{margin-left:71.2707182320442%;*margin-left:71.16433525332079%}.row-fluid .offset8:first-child{margin-left:68.50828729281768%;*margin-left:68.40190431409427%}.row-fluid .offset7{margin-left:62.70718232044199%;*margin-left:62.600799341718584%}.row-fluid .offset7:first-child{margin-left:59.94475138121547%;*margin-left:59.838368402492065%}.row-fluid .offset6{margin-left:54.14364640883978%;*margin-left:54.037263430116376%}.row-fluid .offset6:first-child{margin-left:51.38121546961326%;*margin-left:51.27483249088986%}.row-fluid .offset5{margin-left:45.58011049723757%;*margin-left:45.47372751851417%}.row-fluid .offset5:first-child{margin-left:42.81767955801105%;*margin-left:42.71129657928765%}.row-fluid .offset4{margin-left:37.01657458563536%;*margin-left:36.91019160691196%}.row-fluid .offset4:first-child{margin-left:34.25414364640884%;*margin-left:34.14776066768544%}.row-fluid .offset3{margin-left:28.45303867403315%;*margin-left:28.346655695309746%}.row-fluid .offset3:first-child{margin-left:25.69060773480663%;*margin-left:25.584224756083227%}.row-fluid .offset2{margin-left:19.88950276243094%;*margin-left:19.783119783707537%}.row-fluid .offset2:first-child{margin-left:17.12707182320442%;*margin-left:17.02068884448102%}.row-fluid .offset1{margin-left:11.32596685082873%;*margin-left:11.219583872105325%}.row-fluid .offset1:first-child{margin-left:8.56353591160221%;*margin-left:8.457152932878806%}input,textarea,.uneditable-input{margin-left:0}.controls-row [class*="span"]+[class*="span"]{margin-left:20px}input.span12,textarea.span12,.uneditable-input.span12{width:710px}input.span11,textarea.span11,.uneditable-input.span11{width:648px}input.span10,textarea.span10,.uneditable-input.span10{width:586px}input.span9,textarea.span9,.uneditable-input.span9{width:524px}input.span8,textarea.span8,.uneditable-input.span8{width:462px}input.span7,textarea.span7,.uneditable-input.span7{width:400px}input.span6,textarea.span6,.uneditable-input.span6{width:338px}input.span5,textarea.span5,.uneditable-input.span5{width:276px}input.span4,textarea.span4,.uneditable-input.span4{width:214px}input.span3,textarea.span3,.uneditable-input.span3{width:152px}input.span2,textarea.span2,.uneditable-input.span2{width:90px}input.span1,textarea.span1,.uneditable-input.span1{width:28px}}@media(max-width:767px){body{padding-right:20px;padding-left:20px}.navbar-fixed-top,.navbar-fixed-bottom,.navbar-static-top{margin-right:-20px;margin-left:-20px}.container-fluid{padding:0}.dl-horizontal dt{float:none;width:auto;clear:none;text-align:left}.dl-horizontal dd{margin-left:0}.container{width:auto}.row-fluid{width:100%}.row,.thumbnails{margin-left:0}.thumbnails>li{float:none;margin-left:0}[class*="span"],.uneditable-input[class*="span"],.row-fluid [class*="span"]{display:block;float:none;width:100%;margin-left:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.span12,.row-fluid .span12{width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.row-fluid [class*="offset"]:first-child{margin-left:0}.input-large,.input-xlarge,.input-xxlarge,input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.input-prepend input,.input-append input,.input-prepend input[class*="span"],.input-append input[class*="span"]{display:inline-block;width:auto}.controls-row [class*="span"]+[class*="span"]{margin-left:0}.modal{position:fixed;top:20px;right:20px;left:20px;width:auto;margin:0}.modal.fade{top:-100px}.modal.fade.in{top:20px}}@media(max-width:480px){.nav-collapse{-webkit-transform:translate3d(0,0,0)}.page-header h1 small{display:block;line-height:20px}input[type="checkbox"],input[type="radio"]{border:1px solid #ccc}.form-horizontal .control-label{float:none;width:auto;padding-top:0;text-align:left}.form-horizontal .controls{margin-left:0}.form-horizontal .control-list{padding-top:0}.form-horizontal .form-actions{padding-right:10px;padding-left:10px}.media .pull-left,.media .pull-right{display:block;float:none;margin-bottom:10px}.media-object{margin-right:0;margin-left:0}.modal{top:10px;right:10px;left:10px}.modal-header .close{padding:10px;margin:-10px}.carousel-caption{position:static}}@media(max-width:979px){body{padding-top:0}.navbar-fixed-top,.navbar-fixed-bottom{position:static}.navbar-fixed-top{margin-bottom:20px}.navbar-fixed-bottom{margin-top:20px}.navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner{padding:5px}.navbar .container{width:auto;padding:0}.navbar .brand{padding-right:10px;padding-left:10px;margin:0 0 0 -5px}.nav-collapse{clear:both}.nav-collapse .nav{float:none;margin:0 0 10px}.nav-collapse .nav>li{float:none}.nav-collapse .nav>li>a{margin-bottom:2px}.nav-collapse .nav>.divider-vertical{display:none}.nav-collapse .nav .nav-header{color:#777;text-shadow:none}.nav-collapse .nav>li>a,.nav-collapse .dropdown-menu a{padding:9px 15px;font-weight:bold;color:#777;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.nav-collapse .btn{padding:4px 10px 4px;font-weight:normal;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.nav-collapse .dropdown-menu li+li a{margin-bottom:2px}.nav-collapse .nav>li>a:hover,.nav-collapse .nav>li>a:focus,.nav-collapse .dropdown-menu a:hover,.nav-collapse .dropdown-menu a:focus{background-color:#f2f2f2}.navbar-inverse .nav-collapse .nav>li>a,.navbar-inverse .nav-collapse .dropdown-menu a{color:#999}.navbar-inverse .nav-collapse .nav>li>a:hover,.navbar-inverse .nav-collapse .nav>li>a:focus,.navbar-inverse .nav-collapse .dropdown-menu a:hover,.navbar-inverse .nav-collapse .dropdown-menu a:focus{background-color:#111}.nav-collapse.in .btn-group{padding:0;margin-top:5px}.nav-collapse .dropdown-menu{position:static;top:auto;left:auto;display:none;float:none;max-width:none;padding:0;margin:0 15px;background-color:transparent;border:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.nav-collapse .open>.dropdown-menu{display:block}.nav-collapse .dropdown-menu:before,.nav-collapse .dropdown-menu:after{display:none}.nav-collapse .dropdown-menu .divider{display:none}.nav-collapse .nav>li>.dropdown-menu:before,.nav-collapse .nav>li>.dropdown-menu:after{display:none}.nav-collapse .navbar-form,.nav-collapse .navbar-search{float:none;padding:10px 15px;margin:10px 0;border-top:1px solid #f2f2f2;border-bottom:1px solid #f2f2f2;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1)}.navbar-inverse .nav-collapse .navbar-form,.navbar-inverse .nav-collapse .navbar-search{border-top-color:#111;border-bottom-color:#111}.navbar .nav-collapse .nav.pull-right{float:none;margin-left:0}.nav-collapse,.nav-collapse.collapse{height:0;overflow:hidden}.navbar .btn-navbar{display:block}.navbar-static .navbar-inner{padding-right:10px;padding-left:10px}}@media(min-width:980px){.nav-collapse.collapse{height:auto!important;overflow:visible!important}} diff --git a/css/bootstrap.css b/css/bootstrap.css new file mode 100644 index 0000000..5b7fe7e --- /dev/null +++ b/css/bootstrap.css @@ -0,0 +1,6167 @@ +/*! + * Bootstrap v2.3.2 + * + * Copyright 2013 Twitter, Inc + * Licensed under the Apache License v2.0 + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Designed and built with all the love in the world by @mdo and @fat. + */ + +.clearfix { + *zoom: 1; +} + +.clearfix:before, +.clearfix:after { + display: table; + line-height: 0; + content: ""; +} + +.clearfix:after { + clear: both; +} + +.hide-text { + font: 0/0 a; + color: transparent; + text-shadow: none; + background-color: transparent; + border: 0; +} + +.input-block-level { + display: block; + width: 100%; + min-height: 30px; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} + +article, +aside, +details, +figcaption, +figure, +footer, +header, +hgroup, +nav, +section { + display: block; +} + +audio, +canvas, +video { + display: inline-block; + *display: inline; + *zoom: 1; +} + +audio:not([controls]) { + display: none; +} + +html { + font-size: 100%; + -webkit-text-size-adjust: 100%; + -ms-text-size-adjust: 100%; +} + +a:focus { + outline: thin dotted #333; + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px; +} + +a:hover, +a:active { + outline: 0; +} + +sub, +sup { + position: relative; + font-size: 75%; + line-height: 0; + vertical-align: baseline; +} + +sup { + top: -0.5em; +} + +sub { + bottom: -0.25em; +} + +img { + width: auto\9; + height: auto; + max-width: 100%; + vertical-align: middle; + border: 0; + -ms-interpolation-mode: bicubic; +} + +#map_canvas img, +.google-maps img { + max-width: none; +} + +button, +input, +select, +textarea { + margin: 0; + font-size: 100%; + vertical-align: middle; +} + +button, +input { + *overflow: visible; + line-height: normal; +} + +button::-moz-focus-inner, +input::-moz-focus-inner { + padding: 0; + border: 0; +} + +button, +html input[type="button"], +input[type="reset"], +input[type="submit"] { + cursor: pointer; + -webkit-appearance: button; +} + +label, +select, +button, +input[type="button"], +input[type="reset"], +input[type="submit"], +input[type="radio"], +input[type="checkbox"] { + cursor: pointer; +} + +input[type="search"] { + -webkit-box-sizing: content-box; + -moz-box-sizing: content-box; + box-sizing: content-box; + -webkit-appearance: textfield; +} + +input[type="search"]::-webkit-search-decoration, +input[type="search"]::-webkit-search-cancel-button { + -webkit-appearance: none; +} + +textarea { + overflow: auto; + vertical-align: top; +} + +@media print { + * { + color: #000 !important; + text-shadow: none !important; + background: transparent !important; + box-shadow: none !important; + } + a, + a:visited { + text-decoration: underline; + } + a[href]:after { + content: " (" attr(href) ")"; + } + abbr[title]:after { + content: " (" attr(title) ")"; + } + .ir a:after, + a[href^="javascript:"]:after, + a[href^="#"]:after { + content: ""; + } + pre, + blockquote { + border: 1px solid #999; + page-break-inside: avoid; + } + thead { + display: table-header-group; + } + tr, + img { + page-break-inside: avoid; + } + img { + max-width: 100% !important; + } + @page { + margin: 0.5cm; + } + p, + h2, + h3 { + orphans: 3; + widows: 3; + } + h2, + h3 { + page-break-after: avoid; + } +} + +body { + margin: 0; + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; + font-size: 14px; + line-height: 20px; + color: #333333; + background-color: #ffffff; +} + +a { + color: #0088cc; + text-decoration: none; +} + +a:hover, +a:focus { + color: #005580; + text-decoration: underline; +} + +.img-rounded { + -webkit-border-radius: 6px; + -moz-border-radius: 6px; + border-radius: 6px; +} + +.img-polaroid { + padding: 4px; + background-color: #fff; + border: 1px solid #ccc; + border: 1px solid rgba(0, 0, 0, 0.2); + -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); + -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); +} + +.img-circle { + -webkit-border-radius: 500px; + -moz-border-radius: 500px; + border-radius: 500px; +} + +.row { + margin-left: -20px; + *zoom: 1; +} + +.row:before, +.row:after { + display: table; + line-height: 0; + content: ""; +} + +.row:after { + clear: both; +} + +[class*="span"] { + float: left; + min-height: 1px; + margin-left: 20px; +} + +.container, +.navbar-static-top .container, +.navbar-fixed-top .container, +.navbar-fixed-bottom .container { + width: 940px; +} + +.span12 { + width: 940px; +} + +.span11 { + width: 860px; +} + +.span10 { + width: 780px; +} + +.span9 { + width: 700px; +} + +.span8 { + width: 620px; +} + +.span7 { + width: 540px; +} + +.span6 { + width: 460px; +} + +.span5 { + width: 380px; +} + +.span4 { + width: 300px; +} + +.span3 { + width: 220px; +} + +.span2 { + width: 140px; +} + +.span1 { + width: 60px; +} + +.offset12 { + margin-left: 980px; +} + +.offset11 { + margin-left: 900px; +} + +.offset10 { + margin-left: 820px; +} + +.offset9 { + margin-left: 740px; +} + +.offset8 { + margin-left: 660px; +} + +.offset7 { + margin-left: 580px; +} + +.offset6 { + margin-left: 500px; +} + +.offset5 { + margin-left: 420px; +} + +.offset4 { + margin-left: 340px; +} + +.offset3 { + margin-left: 260px; +} + +.offset2 { + margin-left: 180px; +} + +.offset1 { + margin-left: 100px; +} + +.row-fluid { + width: 100%; + *zoom: 1; +} + +.row-fluid:before, +.row-fluid:after { + display: table; + line-height: 0; + content: ""; +} + +.row-fluid:after { + clear: both; +} + +.row-fluid [class*="span"] { + display: block; + float: left; + width: 100%; + min-height: 30px; + margin-left: 2.127659574468085%; + *margin-left: 2.074468085106383%; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} + +.row-fluid [class*="span"]:first-child { + margin-left: 0; +} + +.row-fluid .controls-row [class*="span"] + [class*="span"] { + margin-left: 2.127659574468085%; +} + +.row-fluid .span12 { + width: 100%; + *width: 99.94680851063829%; +} + +.row-fluid .span11 { + width: 91.48936170212765%; + *width: 91.43617021276594%; +} + +.row-fluid .span10 { + width: 82.97872340425532%; + *width: 82.92553191489361%; +} + +.row-fluid .span9 { + width: 74.46808510638297%; + *width: 74.41489361702126%; +} + +.row-fluid .span8 { + width: 65.95744680851064%; + *width: 65.90425531914893%; +} + +.row-fluid .span7 { + width: 57.44680851063829%; + *width: 57.39361702127659%; +} + +.row-fluid .span6 { + width: 48.93617021276595%; + *width: 48.88297872340425%; +} + +.row-fluid .span5 { + width: 40.42553191489362%; + *width: 40.37234042553192%; +} + +.row-fluid .span4 { + width: 31.914893617021278%; + *width: 31.861702127659576%; +} + +.row-fluid .span3 { + width: 23.404255319148934%; + *width: 23.351063829787233%; +} + +.row-fluid .span2 { + width: 14.893617021276595%; + *width: 14.840425531914894%; +} + +.row-fluid .span1 { + width: 6.382978723404255%; + *width: 6.329787234042553%; +} + +.row-fluid .offset12 { + margin-left: 104.25531914893617%; + *margin-left: 104.14893617021275%; +} + +.row-fluid .offset12:first-child { + margin-left: 102.12765957446808%; + *margin-left: 102.02127659574467%; +} + +.row-fluid .offset11 { + margin-left: 95.74468085106382%; + *margin-left: 95.6382978723404%; +} + +.row-fluid .offset11:first-child { + margin-left: 93.61702127659574%; + *margin-left: 93.51063829787232%; +} + +.row-fluid .offset10 { + margin-left: 87.23404255319149%; + *margin-left: 87.12765957446807%; +} + +.row-fluid .offset10:first-child { + margin-left: 85.1063829787234%; + *margin-left: 84.99999999999999%; +} + +.row-fluid .offset9 { + margin-left: 78.72340425531914%; + *margin-left: 78.61702127659572%; +} + +.row-fluid .offset9:first-child { + margin-left: 76.59574468085106%; + *margin-left: 76.48936170212764%; +} + +.row-fluid .offset8 { + margin-left: 70.2127659574468%; + *margin-left: 70.10638297872339%; +} + +.row-fluid .offset8:first-child { + margin-left: 68.08510638297872%; + *margin-left: 67.9787234042553%; +} + +.row-fluid .offset7 { + margin-left: 61.70212765957446%; + *margin-left: 61.59574468085106%; +} + +.row-fluid .offset7:first-child { + margin-left: 59.574468085106375%; + *margin-left: 59.46808510638297%; +} + +.row-fluid .offset6 { + margin-left: 53.191489361702125%; + *margin-left: 53.085106382978715%; +} + +.row-fluid .offset6:first-child { + margin-left: 51.063829787234035%; + *margin-left: 50.95744680851063%; +} + +.row-fluid .offset5 { + margin-left: 44.68085106382979%; + *margin-left: 44.57446808510638%; +} + +.row-fluid .offset5:first-child { + margin-left: 42.5531914893617%; + *margin-left: 42.4468085106383%; +} + +.row-fluid .offset4 { + margin-left: 36.170212765957444%; + *margin-left: 36.06382978723405%; +} + +.row-fluid .offset4:first-child { + margin-left: 34.04255319148936%; + *margin-left: 33.93617021276596%; +} + +.row-fluid .offset3 { + margin-left: 27.659574468085104%; + *margin-left: 27.5531914893617%; +} + +.row-fluid .offset3:first-child { + margin-left: 25.53191489361702%; + *margin-left: 25.425531914893618%; +} + +.row-fluid .offset2 { + margin-left: 19.148936170212764%; + *margin-left: 19.04255319148936%; +} + +.row-fluid .offset2:first-child { + margin-left: 17.02127659574468%; + *margin-left: 16.914893617021278%; +} + +.row-fluid .offset1 { + margin-left: 10.638297872340425%; + *margin-left: 10.53191489361702%; +} + +.row-fluid .offset1:first-child { + margin-left: 8.51063829787234%; + *margin-left: 8.404255319148938%; +} + +[class*="span"].hide, +.row-fluid [class*="span"].hide { + display: none; +} + +[class*="span"].pull-right, +.row-fluid [class*="span"].pull-right { + float: right; +} + +.container { + margin-right: auto; + margin-left: auto; + *zoom: 1; +} + +.container:before, +.container:after { + display: table; + line-height: 0; + content: ""; +} + +.container:after { + clear: both; +} + +.container-fluid { + padding-right: 20px; + padding-left: 20px; + *zoom: 1; +} + +.container-fluid:before, +.container-fluid:after { + display: table; + line-height: 0; + content: ""; +} + +.container-fluid:after { + clear: both; +} + +p { + margin: 0 0 10px; +} + +.lead { + margin-bottom: 20px; + font-size: 21px; + font-weight: 200; + line-height: 30px; +} + +small { + font-size: 85%; +} + +strong { + font-weight: bold; +} + +em { + font-style: italic; +} + +cite { + font-style: normal; +} + +.muted { + color: #999999; +} + +a.muted:hover, +a.muted:focus { + color: #808080; +} + +.text-warning { + color: #c09853; +} + +a.text-warning:hover, +a.text-warning:focus { + color: #a47e3c; +} + +.text-error { + color: #b94a48; +} + +a.text-error:hover, +a.text-error:focus { + color: #953b39; +} + +.text-info { + color: #3a87ad; +} + +a.text-info:hover, +a.text-info:focus { + color: #2d6987; +} + +.text-success { + color: #468847; +} + +a.text-success:hover, +a.text-success:focus { + color: #356635; +} + +.text-left { + text-align: left; +} + +.text-right { + text-align: right; +} + +.text-center { + text-align: center; +} + +h1, +h2, +h3, +h4, +h5, +h6 { + margin: 10px 0; + font-family: inherit; + font-weight: bold; + line-height: 20px; + color: inherit; + text-rendering: optimizelegibility; +} + +h1 small, +h2 small, +h3 small, +h4 small, +h5 small, +h6 small { + font-weight: normal; + line-height: 1; + color: #999999; +} + +h1, +h2, +h3 { + line-height: 40px; +} + +h1 { + font-size: 38.5px; +} + +h2 { + font-size: 31.5px; +} + +h3 { + font-size: 24.5px; +} + +h4 { + font-size: 17.5px; +} + +h5 { + font-size: 14px; +} + +h6 { + font-size: 11.9px; +} + +h1 small { + font-size: 24.5px; +} + +h2 small { + font-size: 17.5px; +} + +h3 small { + font-size: 14px; +} + +h4 small { + font-size: 14px; +} + +.page-header { + padding-bottom: 9px; + margin: 20px 0 30px; + border-bottom: 1px solid #eeeeee; +} + +ul, +ol { + padding: 0; + margin: 0 0 10px 25px; +} + +ul ul, +ul ol, +ol ol, +ol ul { + margin-bottom: 0; +} + +li { + line-height: 20px; +} + +ul.unstyled, +ol.unstyled { + margin-left: 0; + list-style: none; +} + +ul.inline, +ol.inline { + margin-left: 0; + list-style: none; +} + +ul.inline > li, +ol.inline > li { + display: inline-block; + *display: inline; + padding-right: 5px; + padding-left: 5px; + *zoom: 1; +} + +dl { + margin-bottom: 20px; +} + +dt, +dd { + line-height: 20px; +} + +dt { + font-weight: bold; +} + +dd { + margin-left: 10px; +} + +.dl-horizontal { + *zoom: 1; +} + +.dl-horizontal:before, +.dl-horizontal:after { + display: table; + line-height: 0; + content: ""; +} + +.dl-horizontal:after { + clear: both; +} + +.dl-horizontal dt { + float: left; + width: 160px; + overflow: hidden; + clear: left; + text-align: right; + text-overflow: ellipsis; + white-space: nowrap; +} + +.dl-horizontal dd { + margin-left: 180px; +} + +hr { + margin: 20px 0; + border: 0; + border-top: 1px solid #eeeeee; + border-bottom: 1px solid #ffffff; +} + +abbr[title], +abbr[data-original-title] { + cursor: help; + border-bottom: 1px dotted #999999; +} + +abbr.initialism { + font-size: 90%; + text-transform: uppercase; +} + +blockquote { + padding: 0 0 0 15px; + margin: 0 0 20px; + border-left: 5px solid #eeeeee; +} + +blockquote p { + margin-bottom: 0; + font-size: 17.5px; + font-weight: 300; + line-height: 1.25; +} + +blockquote small { + display: block; + line-height: 20px; + color: #999999; +} + +blockquote small:before { + content: '\2014 \00A0'; +} + +blockquote.pull-right { + float: right; + padding-right: 15px; + padding-left: 0; + border-right: 5px solid #eeeeee; + border-left: 0; +} + +blockquote.pull-right p, +blockquote.pull-right small { + text-align: right; +} + +blockquote.pull-right small:before { + content: ''; +} + +blockquote.pull-right small:after { + content: '\00A0 \2014'; +} + +q:before, +q:after, +blockquote:before, +blockquote:after { + content: ""; +} + +address { + display: block; + margin-bottom: 20px; + font-style: normal; + line-height: 20px; +} + +code, +pre { + padding: 0 3px 2px; + font-family: Monaco, Menlo, Consolas, "Courier New", monospace; + font-size: 12px; + color: #333333; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; +} + +code { + padding: 2px 4px; + color: #d14; + white-space: nowrap; + background-color: #f7f7f9; + border: 1px solid #e1e1e8; +} + +pre { + display: block; + padding: 9.5px; + margin: 0 0 10px; + font-size: 13px; + line-height: 20px; + word-break: break-all; + word-wrap: break-word; + white-space: pre; + white-space: pre-wrap; + background-color: #f5f5f5; + border: 1px solid #ccc; + border: 1px solid rgba(0, 0, 0, 0.15); + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; +} + +pre.prettyprint { + margin-bottom: 20px; +} + +pre code { + padding: 0; + color: inherit; + white-space: pre; + white-space: pre-wrap; + background-color: transparent; + border: 0; +} + +.pre-scrollable { + max-height: 340px; + overflow-y: scroll; +} + +form { + margin: 0 0 20px; +} + +fieldset { + padding: 0; + margin: 0; + border: 0; +} + +legend { + display: block; + width: 100%; + padding: 0; + margin-bottom: 20px; + font-size: 21px; + line-height: 40px; + color: #333333; + border: 0; + border-bottom: 1px solid #e5e5e5; +} + +legend small { + font-size: 15px; + color: #999999; +} + +label, +input, +button, +select, +textarea { + font-size: 14px; + font-weight: normal; + line-height: 20px; +} + +input, +button, +select, +textarea { + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; +} + +label { + display: block; + margin-bottom: 5px; +} + +select, +textarea, +input[type="text"], +input[type="password"], +input[type="datetime"], +input[type="datetime-local"], +input[type="date"], +input[type="month"], +input[type="time"], +input[type="week"], +input[type="number"], +input[type="email"], +input[type="url"], +input[type="search"], +input[type="tel"], +input[type="color"], +.uneditable-input { + display: inline-block; + height: 20px; + padding: 4px 6px; + margin-bottom: 10px; + font-size: 14px; + line-height: 20px; + color: #555555; + vertical-align: middle; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; +} + +input, +textarea, +.uneditable-input { + width: 206px; +} + +textarea { + height: auto; +} + +textarea, +input[type="text"], +input[type="password"], +input[type="datetime"], +input[type="datetime-local"], +input[type="date"], +input[type="month"], +input[type="time"], +input[type="week"], +input[type="number"], +input[type="email"], +input[type="url"], +input[type="search"], +input[type="tel"], +input[type="color"], +.uneditable-input { + background-color: #ffffff; + border: 1px solid #cccccc; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + -webkit-transition: border linear 0.2s, box-shadow linear 0.2s; + -moz-transition: border linear 0.2s, box-shadow linear 0.2s; + -o-transition: border linear 0.2s, box-shadow linear 0.2s; + transition: border linear 0.2s, box-shadow linear 0.2s; +} + +textarea:focus, +input[type="text"]:focus, +input[type="password"]:focus, +input[type="datetime"]:focus, +input[type="datetime-local"]:focus, +input[type="date"]:focus, +input[type="month"]:focus, +input[type="time"]:focus, +input[type="week"]:focus, +input[type="number"]:focus, +input[type="email"]:focus, +input[type="url"]:focus, +input[type="search"]:focus, +input[type="tel"]:focus, +input[type="color"]:focus, +.uneditable-input:focus { + border-color: rgba(82, 168, 236, 0.8); + outline: 0; + outline: thin dotted \9; + /* IE6-9 */ + + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6); + -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6); +} + +input[type="radio"], +input[type="checkbox"] { + margin: 4px 0 0; + margin-top: 1px \9; + *margin-top: 0; + line-height: normal; +} + +input[type="file"], +input[type="image"], +input[type="submit"], +input[type="reset"], +input[type="button"], +input[type="radio"], +input[type="checkbox"] { + width: auto; +} + +select, +input[type="file"] { + height: 30px; + /* In IE7, the height of the select element cannot be changed by height, only font-size */ + + *margin-top: 4px; + /* For IE7, add top margin to align select with labels */ + + line-height: 30px; +} + +select { + width: 220px; + background-color: #ffffff; + border: 1px solid #cccccc; +} + +select[multiple], +select[size] { + height: auto; +} + +select:focus, +input[type="file"]:focus, +input[type="radio"]:focus, +input[type="checkbox"]:focus { + outline: thin dotted #333; + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px; +} + +.uneditable-input, +.uneditable-textarea { + color: #999999; + cursor: not-allowed; + background-color: #fcfcfc; + border-color: #cccccc; + -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025); + -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025); + box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025); +} + +.uneditable-input { + overflow: hidden; + white-space: nowrap; +} + +.uneditable-textarea { + width: auto; + height: auto; +} + +input:-moz-placeholder, +textarea:-moz-placeholder { + color: #999999; +} + +input:-ms-input-placeholder, +textarea:-ms-input-placeholder { + color: #999999; +} + +input::-webkit-input-placeholder, +textarea::-webkit-input-placeholder { + color: #999999; +} + +.radio, +.checkbox { + min-height: 20px; + padding-left: 20px; +} + +.radio input[type="radio"], +.checkbox input[type="checkbox"] { + float: left; + margin-left: -20px; +} + +.controls > .radio:first-child, +.controls > .checkbox:first-child { + padding-top: 5px; +} + +.radio.inline, +.checkbox.inline { + display: inline-block; + padding-top: 5px; + margin-bottom: 0; + vertical-align: middle; +} + +.radio.inline + .radio.inline, +.checkbox.inline + .checkbox.inline { + margin-left: 10px; +} + +.input-mini { + width: 60px; +} + +.input-small { + width: 90px; +} + +.input-medium { + width: 150px; +} + +.input-large { + width: 210px; +} + +.input-xlarge { + width: 270px; +} + +.input-xxlarge { + width: 530px; +} + +input[class*="span"], +select[class*="span"], +textarea[class*="span"], +.uneditable-input[class*="span"], +.row-fluid input[class*="span"], +.row-fluid select[class*="span"], +.row-fluid textarea[class*="span"], +.row-fluid .uneditable-input[class*="span"] { + float: none; + margin-left: 0; +} + +.input-append input[class*="span"], +.input-append .uneditable-input[class*="span"], +.input-prepend input[class*="span"], +.input-prepend .uneditable-input[class*="span"], +.row-fluid input[class*="span"], +.row-fluid select[class*="span"], +.row-fluid textarea[class*="span"], +.row-fluid .uneditable-input[class*="span"], +.row-fluid .input-prepend [class*="span"], +.row-fluid .input-append [class*="span"] { + display: inline-block; +} + +input, +textarea, +.uneditable-input { + margin-left: 0; +} + +.controls-row [class*="span"] + [class*="span"] { + margin-left: 20px; +} + +input.span12, +textarea.span12, +.uneditable-input.span12 { + width: 926px; +} + +input.span11, +textarea.span11, +.uneditable-input.span11 { + width: 846px; +} + +input.span10, +textarea.span10, +.uneditable-input.span10 { + width: 766px; +} + +input.span9, +textarea.span9, +.uneditable-input.span9 { + width: 686px; +} + +input.span8, +textarea.span8, +.uneditable-input.span8 { + width: 606px; +} + +input.span7, +textarea.span7, +.uneditable-input.span7 { + width: 526px; +} + +input.span6, +textarea.span6, +.uneditable-input.span6 { + width: 446px; +} + +input.span5, +textarea.span5, +.uneditable-input.span5 { + width: 366px; +} + +input.span4, +textarea.span4, +.uneditable-input.span4 { + width: 286px; +} + +input.span3, +textarea.span3, +.uneditable-input.span3 { + width: 206px; +} + +input.span2, +textarea.span2, +.uneditable-input.span2 { + width: 126px; +} + +input.span1, +textarea.span1, +.uneditable-input.span1 { + width: 46px; +} + +.controls-row { + *zoom: 1; +} + +.controls-row:before, +.controls-row:after { + display: table; + line-height: 0; + content: ""; +} + +.controls-row:after { + clear: both; +} + +.controls-row [class*="span"], +.row-fluid .controls-row [class*="span"] { + float: left; +} + +.controls-row .checkbox[class*="span"], +.controls-row .radio[class*="span"] { + padding-top: 5px; +} + +input[disabled], +select[disabled], +textarea[disabled], +input[readonly], +select[readonly], +textarea[readonly] { + cursor: not-allowed; + background-color: #eeeeee; +} + +input[type="radio"][disabled], +input[type="checkbox"][disabled], +input[type="radio"][readonly], +input[type="checkbox"][readonly] { + background-color: transparent; +} + +.control-group.warning .control-label, +.control-group.warning .help-block, +.control-group.warning .help-inline { + color: #c09853; +} + +.control-group.warning .checkbox, +.control-group.warning .radio, +.control-group.warning input, +.control-group.warning select, +.control-group.warning textarea { + color: #c09853; +} + +.control-group.warning input, +.control-group.warning select, +.control-group.warning textarea { + border-color: #c09853; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); +} + +.control-group.warning input:focus, +.control-group.warning select:focus, +.control-group.warning textarea:focus { + border-color: #a47e3c; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e; + -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e; +} + +.control-group.warning .input-prepend .add-on, +.control-group.warning .input-append .add-on { + color: #c09853; + background-color: #fcf8e3; + border-color: #c09853; +} + +.control-group.error .control-label, +.control-group.error .help-block, +.control-group.error .help-inline { + color: #b94a48; +} + +.control-group.error .checkbox, +.control-group.error .radio, +.control-group.error input, +.control-group.error select, +.control-group.error textarea { + color: #b94a48; +} + +.control-group.error input, +.control-group.error select, +.control-group.error textarea { + border-color: #b94a48; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); +} + +.control-group.error input:focus, +.control-group.error select:focus, +.control-group.error textarea:focus { + border-color: #953b39; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392; + -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392; +} + +.control-group.error .input-prepend .add-on, +.control-group.error .input-append .add-on { + color: #b94a48; + background-color: #f2dede; + border-color: #b94a48; +} + +.control-group.success .control-label, +.control-group.success .help-block, +.control-group.success .help-inline { + color: #468847; +} + +.control-group.success .checkbox, +.control-group.success .radio, +.control-group.success input, +.control-group.success select, +.control-group.success textarea { + color: #468847; +} + +.control-group.success input, +.control-group.success select, +.control-group.success textarea { + border-color: #468847; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); +} + +.control-group.success input:focus, +.control-group.success select:focus, +.control-group.success textarea:focus { + border-color: #356635; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b; + -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b; +} + +.control-group.success .input-prepend .add-on, +.control-group.success .input-append .add-on { + color: #468847; + background-color: #dff0d8; + border-color: #468847; +} + +.control-group.info .control-label, +.control-group.info .help-block, +.control-group.info .help-inline { + color: #3a87ad; +} + +.control-group.info .checkbox, +.control-group.info .radio, +.control-group.info input, +.control-group.info select, +.control-group.info textarea { + color: #3a87ad; +} + +.control-group.info input, +.control-group.info select, +.control-group.info textarea { + border-color: #3a87ad; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); +} + +.control-group.info input:focus, +.control-group.info select:focus, +.control-group.info textarea:focus { + border-color: #2d6987; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7ab5d3; + -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7ab5d3; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7ab5d3; +} + +.control-group.info .input-prepend .add-on, +.control-group.info .input-append .add-on { + color: #3a87ad; + background-color: #d9edf7; + border-color: #3a87ad; +} + +input:focus:invalid, +textarea:focus:invalid, +select:focus:invalid { + color: #b94a48; + border-color: #ee5f5b; +} + +input:focus:invalid:focus, +textarea:focus:invalid:focus, +select:focus:invalid:focus { + border-color: #e9322d; + -webkit-box-shadow: 0 0 6px #f8b9b7; + -moz-box-shadow: 0 0 6px #f8b9b7; + box-shadow: 0 0 6px #f8b9b7; +} + +.form-actions { + padding: 19px 20px 20px; + margin-top: 20px; + margin-bottom: 20px; + background-color: #f5f5f5; + border-top: 1px solid #e5e5e5; + *zoom: 1; +} + +.form-actions:before, +.form-actions:after { + display: table; + line-height: 0; + content: ""; +} + +.form-actions:after { + clear: both; +} + +.help-block, +.help-inline { + color: #595959; +} + +.help-block { + display: block; + margin-bottom: 10px; +} + +.help-inline { + display: inline-block; + *display: inline; + padding-left: 5px; + vertical-align: middle; + *zoom: 1; +} + +.input-append, +.input-prepend { + display: inline-block; + margin-bottom: 10px; + font-size: 0; + white-space: nowrap; + vertical-align: middle; +} + +.input-append input, +.input-prepend input, +.input-append select, +.input-prepend select, +.input-append .uneditable-input, +.input-prepend .uneditable-input, +.input-append .dropdown-menu, +.input-prepend .dropdown-menu, +.input-append .popover, +.input-prepend .popover { + font-size: 14px; +} + +.input-append input, +.input-prepend input, +.input-append select, +.input-prepend select, +.input-append .uneditable-input, +.input-prepend .uneditable-input { + position: relative; + margin-bottom: 0; + *margin-left: 0; + vertical-align: top; + -webkit-border-radius: 0 4px 4px 0; + -moz-border-radius: 0 4px 4px 0; + border-radius: 0 4px 4px 0; +} + +.input-append input:focus, +.input-prepend input:focus, +.input-append select:focus, +.input-prepend select:focus, +.input-append .uneditable-input:focus, +.input-prepend .uneditable-input:focus { + z-index: 2; +} + +.input-append .add-on, +.input-prepend .add-on { + display: inline-block; + width: auto; + height: 20px; + min-width: 16px; + padding: 4px 5px; + font-size: 14px; + font-weight: normal; + line-height: 20px; + text-align: center; + text-shadow: 0 1px 0 #ffffff; + background-color: #eeeeee; + border: 1px solid #ccc; +} + +.input-append .add-on, +.input-prepend .add-on, +.input-append .btn, +.input-prepend .btn, +.input-append .btn-group > .dropdown-toggle, +.input-prepend .btn-group > .dropdown-toggle { + vertical-align: top; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.input-append .active, +.input-prepend .active { + background-color: #a9dba9; + border-color: #46a546; +} + +.input-prepend .add-on, +.input-prepend .btn { + margin-right: -1px; +} + +.input-prepend .add-on:first-child, +.input-prepend .btn:first-child { + -webkit-border-radius: 4px 0 0 4px; + -moz-border-radius: 4px 0 0 4px; + border-radius: 4px 0 0 4px; +} + +.input-append input, +.input-append select, +.input-append .uneditable-input { + -webkit-border-radius: 4px 0 0 4px; + -moz-border-radius: 4px 0 0 4px; + border-radius: 4px 0 0 4px; +} + +.input-append input + .btn-group .btn:last-child, +.input-append select + .btn-group .btn:last-child, +.input-append .uneditable-input + .btn-group .btn:last-child { + -webkit-border-radius: 0 4px 4px 0; + -moz-border-radius: 0 4px 4px 0; + border-radius: 0 4px 4px 0; +} + +.input-append .add-on, +.input-append .btn, +.input-append .btn-group { + margin-left: -1px; +} + +.input-append .add-on:last-child, +.input-append .btn:last-child, +.input-append .btn-group:last-child > .dropdown-toggle { + -webkit-border-radius: 0 4px 4px 0; + -moz-border-radius: 0 4px 4px 0; + border-radius: 0 4px 4px 0; +} + +.input-prepend.input-append input, +.input-prepend.input-append select, +.input-prepend.input-append .uneditable-input { + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.input-prepend.input-append input + .btn-group .btn, +.input-prepend.input-append select + .btn-group .btn, +.input-prepend.input-append .uneditable-input + .btn-group .btn { + -webkit-border-radius: 0 4px 4px 0; + -moz-border-radius: 0 4px 4px 0; + border-radius: 0 4px 4px 0; +} + +.input-prepend.input-append .add-on:first-child, +.input-prepend.input-append .btn:first-child { + margin-right: -1px; + -webkit-border-radius: 4px 0 0 4px; + -moz-border-radius: 4px 0 0 4px; + border-radius: 4px 0 0 4px; +} + +.input-prepend.input-append .add-on:last-child, +.input-prepend.input-append .btn:last-child { + margin-left: -1px; + -webkit-border-radius: 0 4px 4px 0; + -moz-border-radius: 0 4px 4px 0; + border-radius: 0 4px 4px 0; +} + +.input-prepend.input-append .btn-group:first-child { + margin-left: 0; +} + +input.search-query { + padding-right: 14px; + padding-right: 4px \9; + padding-left: 14px; + padding-left: 4px \9; + /* IE7-8 doesn't have border-radius, so don't indent the padding */ + + margin-bottom: 0; + -webkit-border-radius: 15px; + -moz-border-radius: 15px; + border-radius: 15px; +} + +/* Allow for input prepend/append in search forms */ + +.form-search .input-append .search-query, +.form-search .input-prepend .search-query { + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.form-search .input-append .search-query { + -webkit-border-radius: 14px 0 0 14px; + -moz-border-radius: 14px 0 0 14px; + border-radius: 14px 0 0 14px; +} + +.form-search .input-append .btn { + -webkit-border-radius: 0 14px 14px 0; + -moz-border-radius: 0 14px 14px 0; + border-radius: 0 14px 14px 0; +} + +.form-search .input-prepend .search-query { + -webkit-border-radius: 0 14px 14px 0; + -moz-border-radius: 0 14px 14px 0; + border-radius: 0 14px 14px 0; +} + +.form-search .input-prepend .btn { + -webkit-border-radius: 14px 0 0 14px; + -moz-border-radius: 14px 0 0 14px; + border-radius: 14px 0 0 14px; +} + +.form-search input, +.form-inline input, +.form-horizontal input, +.form-search textarea, +.form-inline textarea, +.form-horizontal textarea, +.form-search select, +.form-inline select, +.form-horizontal select, +.form-search .help-inline, +.form-inline .help-inline, +.form-horizontal .help-inline, +.form-search .uneditable-input, +.form-inline .uneditable-input, +.form-horizontal .uneditable-input, +.form-search .input-prepend, +.form-inline .input-prepend, +.form-horizontal .input-prepend, +.form-search .input-append, +.form-inline .input-append, +.form-horizontal .input-append { + display: inline-block; + *display: inline; + margin-bottom: 0; + vertical-align: middle; + *zoom: 1; +} + +.form-search .hide, +.form-inline .hide, +.form-horizontal .hide { + display: none; +} + +.form-search label, +.form-inline label, +.form-search .btn-group, +.form-inline .btn-group { + display: inline-block; +} + +.form-search .input-append, +.form-inline .input-append, +.form-search .input-prepend, +.form-inline .input-prepend { + margin-bottom: 0; +} + +.form-search .radio, +.form-search .checkbox, +.form-inline .radio, +.form-inline .checkbox { + padding-left: 0; + margin-bottom: 0; + vertical-align: middle; +} + +.form-search .radio input[type="radio"], +.form-search .checkbox input[type="checkbox"], +.form-inline .radio input[type="radio"], +.form-inline .checkbox input[type="checkbox"] { + float: left; + margin-right: 3px; + margin-left: 0; +} + +.control-group { + margin-bottom: 10px; +} + +legend + .control-group { + margin-top: 20px; + -webkit-margin-top-collapse: separate; +} + +.form-horizontal .control-group { + margin-bottom: 20px; + *zoom: 1; +} + +.form-horizontal .control-group:before, +.form-horizontal .control-group:after { + display: table; + line-height: 0; + content: ""; +} + +.form-horizontal .control-group:after { + clear: both; +} + +.form-horizontal .control-label { + float: left; + width: 160px; + padding-top: 5px; + text-align: right; +} + +.form-horizontal .controls { + *display: inline-block; + *padding-left: 20px; + margin-left: 180px; + *margin-left: 0; +} + +.form-horizontal .controls:first-child { + *padding-left: 180px; +} + +.form-horizontal .help-block { + margin-bottom: 0; +} + +.form-horizontal input + .help-block, +.form-horizontal select + .help-block, +.form-horizontal textarea + .help-block, +.form-horizontal .uneditable-input + .help-block, +.form-horizontal .input-prepend + .help-block, +.form-horizontal .input-append + .help-block { + margin-top: 10px; +} + +.form-horizontal .form-actions { + padding-left: 180px; +} + +table { + max-width: 100%; + background-color: transparent; + border-collapse: collapse; + border-spacing: 0; +} + +.table { + width: 100%; + margin-bottom: 20px; +} + +.table th, +.table td { + padding: 8px; + line-height: 20px; + text-align: left; + vertical-align: top; + border-top: 1px solid #dddddd; +} + +.table th { + font-weight: bold; +} + +.table thead th { + vertical-align: bottom; +} + +.table caption + thead tr:first-child th, +.table caption + thead tr:first-child td, +.table colgroup + thead tr:first-child th, +.table colgroup + thead tr:first-child td, +.table thead:first-child tr:first-child th, +.table thead:first-child tr:first-child td { + border-top: 0; +} + +.table tbody + tbody { + border-top: 2px solid #dddddd; +} + +.table .table { + background-color: #ffffff; +} + +.table-condensed th, +.table-condensed td { + padding: 4px 5px; +} + +.table-bordered { + border: 1px solid #dddddd; + border-collapse: separate; + *border-collapse: collapse; + border-left: 0; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; +} + +.table-bordered th, +.table-bordered td { + border-left: 1px solid #dddddd; +} + +.table-bordered caption + thead tr:first-child th, +.table-bordered caption + tbody tr:first-child th, +.table-bordered caption + tbody tr:first-child td, +.table-bordered colgroup + thead tr:first-child th, +.table-bordered colgroup + tbody tr:first-child th, +.table-bordered colgroup + tbody tr:first-child td, +.table-bordered thead:first-child tr:first-child th, +.table-bordered tbody:first-child tr:first-child th, +.table-bordered tbody:first-child tr:first-child td { + border-top: 0; +} + +.table-bordered thead:first-child tr:first-child > th:first-child, +.table-bordered tbody:first-child tr:first-child > td:first-child, +.table-bordered tbody:first-child tr:first-child > th:first-child { + -webkit-border-top-left-radius: 4px; + border-top-left-radius: 4px; + -moz-border-radius-topleft: 4px; +} + +.table-bordered thead:first-child tr:first-child > th:last-child, +.table-bordered tbody:first-child tr:first-child > td:last-child, +.table-bordered tbody:first-child tr:first-child > th:last-child { + -webkit-border-top-right-radius: 4px; + border-top-right-radius: 4px; + -moz-border-radius-topright: 4px; +} + +.table-bordered thead:last-child tr:last-child > th:first-child, +.table-bordered tbody:last-child tr:last-child > td:first-child, +.table-bordered tbody:last-child tr:last-child > th:first-child, +.table-bordered tfoot:last-child tr:last-child > td:first-child, +.table-bordered tfoot:last-child tr:last-child > th:first-child { + -webkit-border-bottom-left-radius: 4px; + border-bottom-left-radius: 4px; + -moz-border-radius-bottomleft: 4px; +} + +.table-bordered thead:last-child tr:last-child > th:last-child, +.table-bordered tbody:last-child tr:last-child > td:last-child, +.table-bordered tbody:last-child tr:last-child > th:last-child, +.table-bordered tfoot:last-child tr:last-child > td:last-child, +.table-bordered tfoot:last-child tr:last-child > th:last-child { + -webkit-border-bottom-right-radius: 4px; + border-bottom-right-radius: 4px; + -moz-border-radius-bottomright: 4px; +} + +.table-bordered tfoot + tbody:last-child tr:last-child td:first-child { + -webkit-border-bottom-left-radius: 0; + border-bottom-left-radius: 0; + -moz-border-radius-bottomleft: 0; +} + +.table-bordered tfoot + tbody:last-child tr:last-child td:last-child { + -webkit-border-bottom-right-radius: 0; + border-bottom-right-radius: 0; + -moz-border-radius-bottomright: 0; +} + +.table-bordered caption + thead tr:first-child th:first-child, +.table-bordered caption + tbody tr:first-child td:first-child, +.table-bordered colgroup + thead tr:first-child th:first-child, +.table-bordered colgroup + tbody tr:first-child td:first-child { + -webkit-border-top-left-radius: 4px; + border-top-left-radius: 4px; + -moz-border-radius-topleft: 4px; +} + +.table-bordered caption + thead tr:first-child th:last-child, +.table-bordered caption + tbody tr:first-child td:last-child, +.table-bordered colgroup + thead tr:first-child th:last-child, +.table-bordered colgroup + tbody tr:first-child td:last-child { + -webkit-border-top-right-radius: 4px; + border-top-right-radius: 4px; + -moz-border-radius-topright: 4px; +} + +.table-striped tbody > tr:nth-child(odd) > td, +.table-striped tbody > tr:nth-child(odd) > th { + background-color: #f9f9f9; +} + +.table-hover tbody tr:hover > td, +.table-hover tbody tr:hover > th { + background-color: #f5f5f5; +} + +table td[class*="span"], +table th[class*="span"], +.row-fluid table td[class*="span"], +.row-fluid table th[class*="span"] { + display: table-cell; + float: none; + margin-left: 0; +} + +.table td.span1, +.table th.span1 { + float: none; + width: 44px; + margin-left: 0; +} + +.table td.span2, +.table th.span2 { + float: none; + width: 124px; + margin-left: 0; +} + +.table td.span3, +.table th.span3 { + float: none; + width: 204px; + margin-left: 0; +} + +.table td.span4, +.table th.span4 { + float: none; + width: 284px; + margin-left: 0; +} + +.table td.span5, +.table th.span5 { + float: none; + width: 364px; + margin-left: 0; +} + +.table td.span6, +.table th.span6 { + float: none; + width: 444px; + margin-left: 0; +} + +.table td.span7, +.table th.span7 { + float: none; + width: 524px; + margin-left: 0; +} + +.table td.span8, +.table th.span8 { + float: none; + width: 604px; + margin-left: 0; +} + +.table td.span9, +.table th.span9 { + float: none; + width: 684px; + margin-left: 0; +} + +.table td.span10, +.table th.span10 { + float: none; + width: 764px; + margin-left: 0; +} + +.table td.span11, +.table th.span11 { + float: none; + width: 844px; + margin-left: 0; +} + +.table td.span12, +.table th.span12 { + float: none; + width: 924px; + margin-left: 0; +} + +.table tbody tr.success > td { + background-color: #dff0d8; +} + +.table tbody tr.error > td { + background-color: #f2dede; +} + +.table tbody tr.warning > td { + background-color: #fcf8e3; +} + +.table tbody tr.info > td { + background-color: #d9edf7; +} + +.table-hover tbody tr.success:hover > td { + background-color: #d0e9c6; +} + +.table-hover tbody tr.error:hover > td { + background-color: #ebcccc; +} + +.table-hover tbody tr.warning:hover > td { + background-color: #faf2cc; +} + +.table-hover tbody tr.info:hover > td { + background-color: #c4e3f3; +} + +[class^="icon-"], +[class*=" icon-"] { + display: inline-block; + width: 14px; + height: 14px; + margin-top: 1px; + *margin-right: .3em; + line-height: 14px; + vertical-align: text-top; + background-image: url("../img/glyphicons-halflings.png"); + background-position: 14px 14px; + background-repeat: no-repeat; +} + +/* White icons with optional class, or on hover/focus/active states of certain elements */ + +.icon-white, +.nav-pills > .active > a > [class^="icon-"], +.nav-pills > .active > a > [class*=" icon-"], +.nav-list > .active > a > [class^="icon-"], +.nav-list > .active > a > [class*=" icon-"], +.navbar-inverse .nav > .active > a > [class^="icon-"], +.navbar-inverse .nav > .active > a > [class*=" icon-"], +.dropdown-menu > li > a:hover > [class^="icon-"], +.dropdown-menu > li > a:focus > [class^="icon-"], +.dropdown-menu > li > a:hover > [class*=" icon-"], +.dropdown-menu > li > a:focus > [class*=" icon-"], +.dropdown-menu > .active > a > [class^="icon-"], +.dropdown-menu > .active > a > [class*=" icon-"], +.dropdown-submenu:hover > a > [class^="icon-"], +.dropdown-submenu:focus > a > [class^="icon-"], +.dropdown-submenu:hover > a > [class*=" icon-"], +.dropdown-submenu:focus > a > [class*=" icon-"] { + background-image: url("../img/glyphicons-halflings-white.png"); +} + +.icon-glass { + background-position: 0 0; +} + +.icon-music { + background-position: -24px 0; +} + +.icon-search { + background-position: -48px 0; +} + +.icon-envelope { + background-position: -72px 0; +} + +.icon-heart { + background-position: -96px 0; +} + +.icon-star { + background-position: -120px 0; +} + +.icon-star-empty { + background-position: -144px 0; +} + +.icon-user { + background-position: -168px 0; +} + +.icon-film { + background-position: -192px 0; +} + +.icon-th-large { + background-position: -216px 0; +} + +.icon-th { + background-position: -240px 0; +} + +.icon-th-list { + background-position: -264px 0; +} + +.icon-ok { + background-position: -288px 0; +} + +.icon-remove { + background-position: -312px 0; +} + +.icon-zoom-in { + background-position: -336px 0; +} + +.icon-zoom-out { + background-position: -360px 0; +} + +.icon-off { + background-position: -384px 0; +} + +.icon-signal { + background-position: -408px 0; +} + +.icon-cog { + background-position: -432px 0; +} + +.icon-trash { + background-position: -456px 0; +} + +.icon-home { + background-position: 0 -24px; +} + +.icon-file { + background-position: -24px -24px; +} + +.icon-time { + background-position: -48px -24px; +} + +.icon-road { + background-position: -72px -24px; +} + +.icon-download-alt { + background-position: -96px -24px; +} + +.icon-download { + background-position: -120px -24px; +} + +.icon-upload { + background-position: -144px -24px; +} + +.icon-inbox { + background-position: -168px -24px; +} + +.icon-play-circle { + background-position: -192px -24px; +} + +.icon-repeat { + background-position: -216px -24px; +} + +.icon-refresh { + background-position: -240px -24px; +} + +.icon-list-alt { + background-position: -264px -24px; +} + +.icon-lock { + background-position: -287px -24px; +} + +.icon-flag { + background-position: -312px -24px; +} + +.icon-headphones { + background-position: -336px -24px; +} + +.icon-volume-off { + background-position: -360px -24px; +} + +.icon-volume-down { + background-position: -384px -24px; +} + +.icon-volume-up { + background-position: -408px -24px; +} + +.icon-qrcode { + background-position: -432px -24px; +} + +.icon-barcode { + background-position: -456px -24px; +} + +.icon-tag { + background-position: 0 -48px; +} + +.icon-tags { + background-position: -25px -48px; +} + +.icon-book { + background-position: -48px -48px; +} + +.icon-bookmark { + background-position: -72px -48px; +} + +.icon-print { + background-position: -96px -48px; +} + +.icon-camera { + background-position: -120px -48px; +} + +.icon-font { + background-position: -144px -48px; +} + +.icon-bold { + background-position: -167px -48px; +} + +.icon-italic { + background-position: -192px -48px; +} + +.icon-text-height { + background-position: -216px -48px; +} + +.icon-text-width { + background-position: -240px -48px; +} + +.icon-align-left { + background-position: -264px -48px; +} + +.icon-align-center { + background-position: -288px -48px; +} + +.icon-align-right { + background-position: -312px -48px; +} + +.icon-align-justify { + background-position: -336px -48px; +} + +.icon-list { + background-position: -360px -48px; +} + +.icon-indent-left { + background-position: -384px -48px; +} + +.icon-indent-right { + background-position: -408px -48px; +} + +.icon-facetime-video { + background-position: -432px -48px; +} + +.icon-picture { + background-position: -456px -48px; +} + +.icon-pencil { + background-position: 0 -72px; +} + +.icon-map-marker { + background-position: -24px -72px; +} + +.icon-adjust { + background-position: -48px -72px; +} + +.icon-tint { + background-position: -72px -72px; +} + +.icon-edit { + background-position: -96px -72px; +} + +.icon-share { + background-position: -120px -72px; +} + +.icon-check { + background-position: -144px -72px; +} + +.icon-move { + background-position: -168px -72px; +} + +.icon-step-backward { + background-position: -192px -72px; +} + +.icon-fast-backward { + background-position: -216px -72px; +} + +.icon-backward { + background-position: -240px -72px; +} + +.icon-play { + background-position: -264px -72px; +} + +.icon-pause { + background-position: -288px -72px; +} + +.icon-stop { + background-position: -312px -72px; +} + +.icon-forward { + background-position: -336px -72px; +} + +.icon-fast-forward { + background-position: -360px -72px; +} + +.icon-step-forward { + background-position: -384px -72px; +} + +.icon-eject { + background-position: -408px -72px; +} + +.icon-chevron-left { + background-position: -432px -72px; +} + +.icon-chevron-right { + background-position: -456px -72px; +} + +.icon-plus-sign { + background-position: 0 -96px; +} + +.icon-minus-sign { + background-position: -24px -96px; +} + +.icon-remove-sign { + background-position: -48px -96px; +} + +.icon-ok-sign { + background-position: -72px -96px; +} + +.icon-question-sign { + background-position: -96px -96px; +} + +.icon-info-sign { + background-position: -120px -96px; +} + +.icon-screenshot { + background-position: -144px -96px; +} + +.icon-remove-circle { + background-position: -168px -96px; +} + +.icon-ok-circle { + background-position: -192px -96px; +} + +.icon-ban-circle { + background-position: -216px -96px; +} + +.icon-arrow-left { + background-position: -240px -96px; +} + +.icon-arrow-right { + background-position: -264px -96px; +} + +.icon-arrow-up { + background-position: -289px -96px; +} + +.icon-arrow-down { + background-position: -312px -96px; +} + +.icon-share-alt { + background-position: -336px -96px; +} + +.icon-resize-full { + background-position: -360px -96px; +} + +.icon-resize-small { + background-position: -384px -96px; +} + +.icon-plus { + background-position: -408px -96px; +} + +.icon-minus { + background-position: -433px -96px; +} + +.icon-asterisk { + background-position: -456px -96px; +} + +.icon-exclamation-sign { + background-position: 0 -120px; +} + +.icon-gift { + background-position: -24px -120px; +} + +.icon-leaf { + background-position: -48px -120px; +} + +.icon-fire { + background-position: -72px -120px; +} + +.icon-eye-open { + background-position: -96px -120px; +} + +.icon-eye-close { + background-position: -120px -120px; +} + +.icon-warning-sign { + background-position: -144px -120px; +} + +.icon-plane { + background-position: -168px -120px; +} + +.icon-calendar { + background-position: -192px -120px; +} + +.icon-random { + width: 16px; + background-position: -216px -120px; +} + +.icon-comment { + background-position: -240px -120px; +} + +.icon-magnet { + background-position: -264px -120px; +} + +.icon-chevron-up { + background-position: -288px -120px; +} + +.icon-chevron-down { + background-position: -313px -119px; +} + +.icon-retweet { + background-position: -336px -120px; +} + +.icon-shopping-cart { + background-position: -360px -120px; +} + +.icon-folder-close { + width: 16px; + background-position: -384px -120px; +} + +.icon-folder-open { + width: 16px; + background-position: -408px -120px; +} + +.icon-resize-vertical { + background-position: -432px -119px; +} + +.icon-resize-horizontal { + background-position: -456px -118px; +} + +.icon-hdd { + background-position: 0 -144px; +} + +.icon-bullhorn { + background-position: -24px -144px; +} + +.icon-bell { + background-position: -48px -144px; +} + +.icon-certificate { + background-position: -72px -144px; +} + +.icon-thumbs-up { + background-position: -96px -144px; +} + +.icon-thumbs-down { + background-position: -120px -144px; +} + +.icon-hand-right { + background-position: -144px -144px; +} + +.icon-hand-left { + background-position: -168px -144px; +} + +.icon-hand-up { + background-position: -192px -144px; +} + +.icon-hand-down { + background-position: -216px -144px; +} + +.icon-circle-arrow-right { + background-position: -240px -144px; +} + +.icon-circle-arrow-left { + background-position: -264px -144px; +} + +.icon-circle-arrow-up { + background-position: -288px -144px; +} + +.icon-circle-arrow-down { + background-position: -312px -144px; +} + +.icon-globe { + background-position: -336px -144px; +} + +.icon-wrench { + background-position: -360px -144px; +} + +.icon-tasks { + background-position: -384px -144px; +} + +.icon-filter { + background-position: -408px -144px; +} + +.icon-briefcase { + background-position: -432px -144px; +} + +.icon-fullscreen { + background-position: -456px -144px; +} + +.dropup, +.dropdown { + position: relative; +} + +.dropdown-toggle { + *margin-bottom: -3px; +} + +.dropdown-toggle:active, +.open .dropdown-toggle { + outline: 0; +} + +.caret { + display: inline-block; + width: 0; + height: 0; + vertical-align: top; + border-top: 4px solid #000000; + border-right: 4px solid transparent; + border-left: 4px solid transparent; + content: ""; +} + +.dropdown .caret { + margin-top: 8px; + margin-left: 2px; +} + +.dropdown-menu { + position: absolute; + top: 100%; + left: 0; + z-index: 1000; + display: none; + float: left; + min-width: 160px; + padding: 5px 0; + margin: 2px 0 0; + list-style: none; + background-color: #ffffff; + border: 1px solid #ccc; + border: 1px solid rgba(0, 0, 0, 0.2); + *border-right-width: 2px; + *border-bottom-width: 2px; + -webkit-border-radius: 6px; + -moz-border-radius: 6px; + border-radius: 6px; + -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); + -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); + box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); + -webkit-background-clip: padding-box; + -moz-background-clip: padding; + background-clip: padding-box; +} + +.dropdown-menu.pull-right { + right: 0; + left: auto; +} + +.dropdown-menu .divider { + *width: 100%; + height: 1px; + margin: 9px 1px; + *margin: -5px 0 5px; + overflow: hidden; + background-color: #e5e5e5; + border-bottom: 1px solid #ffffff; +} + +.dropdown-menu > li > a { + display: block; + padding: 3px 20px; + clear: both; + font-weight: normal; + line-height: 20px; + color: #333333; + white-space: nowrap; +} + +.dropdown-menu > li > a:hover, +.dropdown-menu > li > a:focus, +.dropdown-submenu:hover > a, +.dropdown-submenu:focus > a { + color: #ffffff; + text-decoration: none; + background-color: #0081c2; + background-image: -moz-linear-gradient(top, #0088cc, #0077b3); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3)); + background-image: -webkit-linear-gradient(top, #0088cc, #0077b3); + background-image: -o-linear-gradient(top, #0088cc, #0077b3); + background-image: linear-gradient(to bottom, #0088cc, #0077b3); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0); +} + +.dropdown-menu > .active > a, +.dropdown-menu > .active > a:hover, +.dropdown-menu > .active > a:focus { + color: #ffffff; + text-decoration: none; + background-color: #0081c2; + background-image: -moz-linear-gradient(top, #0088cc, #0077b3); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3)); + background-image: -webkit-linear-gradient(top, #0088cc, #0077b3); + background-image: -o-linear-gradient(top, #0088cc, #0077b3); + background-image: linear-gradient(to bottom, #0088cc, #0077b3); + background-repeat: repeat-x; + outline: 0; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0); +} + +.dropdown-menu > .disabled > a, +.dropdown-menu > .disabled > a:hover, +.dropdown-menu > .disabled > a:focus { + color: #999999; +} + +.dropdown-menu > .disabled > a:hover, +.dropdown-menu > .disabled > a:focus { + text-decoration: none; + cursor: default; + background-color: transparent; + background-image: none; + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); +} + +.open { + *z-index: 1000; +} + +.open > .dropdown-menu { + display: block; +} + +.dropdown-backdrop { + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 990; +} + +.pull-right > .dropdown-menu { + right: 0; + left: auto; +} + +.dropup .caret, +.navbar-fixed-bottom .dropdown .caret { + border-top: 0; + border-bottom: 4px solid #000000; + content: ""; +} + +.dropup .dropdown-menu, +.navbar-fixed-bottom .dropdown .dropdown-menu { + top: auto; + bottom: 100%; + margin-bottom: 1px; +} + +.dropdown-submenu { + position: relative; +} + +.dropdown-submenu > .dropdown-menu { + top: 0; + left: 100%; + margin-top: -6px; + margin-left: -1px; + -webkit-border-radius: 0 6px 6px 6px; + -moz-border-radius: 0 6px 6px 6px; + border-radius: 0 6px 6px 6px; +} + +.dropdown-submenu:hover > .dropdown-menu { + display: block; +} + +.dropup .dropdown-submenu > .dropdown-menu { + top: auto; + bottom: 0; + margin-top: 0; + margin-bottom: -2px; + -webkit-border-radius: 5px 5px 5px 0; + -moz-border-radius: 5px 5px 5px 0; + border-radius: 5px 5px 5px 0; +} + +.dropdown-submenu > a:after { + display: block; + float: right; + width: 0; + height: 0; + margin-top: 5px; + margin-right: -10px; + border-color: transparent; + border-left-color: #cccccc; + border-style: solid; + border-width: 5px 0 5px 5px; + content: " "; +} + +.dropdown-submenu:hover > a:after { + border-left-color: #ffffff; +} + +.dropdown-submenu.pull-left { + float: none; +} + +.dropdown-submenu.pull-left > .dropdown-menu { + left: -100%; + margin-left: 10px; + -webkit-border-radius: 6px 0 6px 6px; + -moz-border-radius: 6px 0 6px 6px; + border-radius: 6px 0 6px 6px; +} + +.dropdown .dropdown-menu .nav-header { + padding-right: 20px; + padding-left: 20px; +} + +.typeahead { + z-index: 1051; + margin-top: 2px; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; +} + +.well { + min-height: 20px; + padding: 19px; + margin-bottom: 20px; + background-color: #f5f5f5; + border: 1px solid #e3e3e3; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); + -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); +} + +.well blockquote { + border-color: #ddd; + border-color: rgba(0, 0, 0, 0.15); +} + +.well-large { + padding: 24px; + -webkit-border-radius: 6px; + -moz-border-radius: 6px; + border-radius: 6px; +} + +.well-small { + padding: 9px; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; +} + +.fade { + opacity: 0; + -webkit-transition: opacity 0.15s linear; + -moz-transition: opacity 0.15s linear; + -o-transition: opacity 0.15s linear; + transition: opacity 0.15s linear; +} + +.fade.in { + opacity: 1; +} + +.collapse { + position: relative; + height: 0; + overflow: hidden; + -webkit-transition: height 0.35s ease; + -moz-transition: height 0.35s ease; + -o-transition: height 0.35s ease; + transition: height 0.35s ease; +} + +.collapse.in { + height: auto; +} + +.close { + float: right; + font-size: 20px; + font-weight: bold; + line-height: 20px; + color: #000000; + text-shadow: 0 1px 0 #ffffff; + opacity: 0.2; + filter: alpha(opacity=20); +} + +.close:hover, +.close:focus { + color: #000000; + text-decoration: none; + cursor: pointer; + opacity: 0.4; + filter: alpha(opacity=40); +} + +button.close { + padding: 0; + cursor: pointer; + background: transparent; + border: 0; + -webkit-appearance: none; +} + +.btn { + display: inline-block; + *display: inline; + padding: 4px 12px; + margin-bottom: 0; + *margin-left: .3em; + font-size: 14px; + line-height: 20px; + color: #333333; + text-align: center; + text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75); + vertical-align: middle; + cursor: pointer; + background-color: #f5f5f5; + *background-color: #e6e6e6; + background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6)); + background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6); + background-image: -o-linear-gradient(top, #ffffff, #e6e6e6); + background-image: linear-gradient(to bottom, #ffffff, #e6e6e6); + background-repeat: repeat-x; + border: 1px solid #cccccc; + *border: 0; + border-color: #e6e6e6 #e6e6e6 #bfbfbf; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); + border-bottom-color: #b3b3b3; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0); + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); + *zoom: 1; + -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); + -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); + box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); +} + +.btn:hover, +.btn:focus, +.btn:active, +.btn.active, +.btn.disabled, +.btn[disabled] { + color: #333333; + background-color: #e6e6e6; + *background-color: #d9d9d9; +} + +.btn:active, +.btn.active { + background-color: #cccccc \9; +} + +.btn:first-child { + *margin-left: 0; +} + +.btn:hover, +.btn:focus { + color: #333333; + text-decoration: none; + background-position: 0 -15px; + -webkit-transition: background-position 0.1s linear; + -moz-transition: background-position 0.1s linear; + -o-transition: background-position 0.1s linear; + transition: background-position 0.1s linear; +} + +.btn:focus { + outline: thin dotted #333; + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px; +} + +.btn.active, +.btn:active { + background-image: none; + outline: 0; + -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); + -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); + box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); +} + +.btn.disabled, +.btn[disabled] { + cursor: default; + background-image: none; + opacity: 0.65; + filter: alpha(opacity=65); + -webkit-box-shadow: none; + -moz-box-shadow: none; + box-shadow: none; +} + +.btn-large { + padding: 11px 19px; + font-size: 17.5px; + -webkit-border-radius: 6px; + -moz-border-radius: 6px; + border-radius: 6px; +} + +.btn-large [class^="icon-"], +.btn-large [class*=" icon-"] { + margin-top: 4px; +} + +.btn-small { + padding: 2px 10px; + font-size: 11.9px; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; +} + +.btn-small [class^="icon-"], +.btn-small [class*=" icon-"] { + margin-top: 0; +} + +.btn-mini [class^="icon-"], +.btn-mini [class*=" icon-"] { + margin-top: -1px; +} + +.btn-mini { + padding: 0 6px; + font-size: 10.5px; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; +} + +.btn-block { + display: block; + width: 100%; + padding-right: 0; + padding-left: 0; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} + +.btn-block + .btn-block { + margin-top: 5px; +} + +input[type="submit"].btn-block, +input[type="reset"].btn-block, +input[type="button"].btn-block { + width: 100%; +} + +.btn-primary.active, +.btn-warning.active, +.btn-danger.active, +.btn-success.active, +.btn-info.active, +.btn-inverse.active { + color: rgba(255, 255, 255, 0.75); +} + +.btn-primary { + color: #ffffff; + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); + background-color: #006dcc; + *background-color: #0044cc; + background-image: -moz-linear-gradient(top, #0088cc, #0044cc); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc)); + background-image: -webkit-linear-gradient(top, #0088cc, #0044cc); + background-image: -o-linear-gradient(top, #0088cc, #0044cc); + background-image: linear-gradient(to bottom, #0088cc, #0044cc); + background-repeat: repeat-x; + border-color: #0044cc #0044cc #002a80; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0044cc', GradientType=0); + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); +} + +.btn-primary:hover, +.btn-primary:focus, +.btn-primary:active, +.btn-primary.active, +.btn-primary.disabled, +.btn-primary[disabled] { + color: #ffffff; + background-color: #0044cc; + *background-color: #003bb3; +} + +.btn-primary:active, +.btn-primary.active { + background-color: #003399 \9; +} + +.btn-warning { + color: #ffffff; + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); + background-color: #faa732; + *background-color: #f89406; + background-image: -moz-linear-gradient(top, #fbb450, #f89406); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406)); + background-image: -webkit-linear-gradient(top, #fbb450, #f89406); + background-image: -o-linear-gradient(top, #fbb450, #f89406); + background-image: linear-gradient(to bottom, #fbb450, #f89406); + background-repeat: repeat-x; + border-color: #f89406 #f89406 #ad6704; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0); + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); +} + +.btn-warning:hover, +.btn-warning:focus, +.btn-warning:active, +.btn-warning.active, +.btn-warning.disabled, +.btn-warning[disabled] { + color: #ffffff; + background-color: #f89406; + *background-color: #df8505; +} + +.btn-warning:active, +.btn-warning.active { + background-color: #c67605 \9; +} + +.btn-danger { + color: #ffffff; + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); + background-color: #da4f49; + *background-color: #bd362f; + background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f)); + background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f); + background-image: -o-linear-gradient(top, #ee5f5b, #bd362f); + background-image: linear-gradient(to bottom, #ee5f5b, #bd362f); + background-repeat: repeat-x; + border-color: #bd362f #bd362f #802420; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffbd362f', GradientType=0); + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); +} + +.btn-danger:hover, +.btn-danger:focus, +.btn-danger:active, +.btn-danger.active, +.btn-danger.disabled, +.btn-danger[disabled] { + color: #ffffff; + background-color: #bd362f; + *background-color: #a9302a; +} + +.btn-danger:active, +.btn-danger.active { + background-color: #942a25 \9; +} + +.btn-success { + color: #ffffff; + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); + background-color: #5bb75b; + *background-color: #51a351; + background-image: -moz-linear-gradient(top, #62c462, #51a351); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351)); + background-image: -webkit-linear-gradient(top, #62c462, #51a351); + background-image: -o-linear-gradient(top, #62c462, #51a351); + background-image: linear-gradient(to bottom, #62c462, #51a351); + background-repeat: repeat-x; + border-color: #51a351 #51a351 #387038; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff51a351', GradientType=0); + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); +} + +.btn-success:hover, +.btn-success:focus, +.btn-success:active, +.btn-success.active, +.btn-success.disabled, +.btn-success[disabled] { + color: #ffffff; + background-color: #51a351; + *background-color: #499249; +} + +.btn-success:active, +.btn-success.active { + background-color: #408140 \9; +} + +.btn-info { + color: #ffffff; + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); + background-color: #49afcd; + *background-color: #2f96b4; + background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4)); + background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4); + background-image: -o-linear-gradient(top, #5bc0de, #2f96b4); + background-image: linear-gradient(to bottom, #5bc0de, #2f96b4); + background-repeat: repeat-x; + border-color: #2f96b4 #2f96b4 #1f6377; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2f96b4', GradientType=0); + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); +} + +.btn-info:hover, +.btn-info:focus, +.btn-info:active, +.btn-info.active, +.btn-info.disabled, +.btn-info[disabled] { + color: #ffffff; + background-color: #2f96b4; + *background-color: #2a85a0; +} + +.btn-info:active, +.btn-info.active { + background-color: #24748c \9; +} + +.btn-inverse { + color: #ffffff; + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); + background-color: #363636; + *background-color: #222222; + background-image: -moz-linear-gradient(top, #444444, #222222); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#444444), to(#222222)); + background-image: -webkit-linear-gradient(top, #444444, #222222); + background-image: -o-linear-gradient(top, #444444, #222222); + background-image: linear-gradient(to bottom, #444444, #222222); + background-repeat: repeat-x; + border-color: #222222 #222222 #000000; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff444444', endColorstr='#ff222222', GradientType=0); + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); +} + +.btn-inverse:hover, +.btn-inverse:focus, +.btn-inverse:active, +.btn-inverse.active, +.btn-inverse.disabled, +.btn-inverse[disabled] { + color: #ffffff; + background-color: #222222; + *background-color: #151515; +} + +.btn-inverse:active, +.btn-inverse.active { + background-color: #080808 \9; +} + +button.btn, +input[type="submit"].btn { + *padding-top: 3px; + *padding-bottom: 3px; +} + +button.btn::-moz-focus-inner, +input[type="submit"].btn::-moz-focus-inner { + padding: 0; + border: 0; +} + +button.btn.btn-large, +input[type="submit"].btn.btn-large { + *padding-top: 7px; + *padding-bottom: 7px; +} + +button.btn.btn-small, +input[type="submit"].btn.btn-small { + *padding-top: 3px; + *padding-bottom: 3px; +} + +button.btn.btn-mini, +input[type="submit"].btn.btn-mini { + *padding-top: 1px; + *padding-bottom: 1px; +} + +.btn-link, +.btn-link:active, +.btn-link[disabled] { + background-color: transparent; + background-image: none; + -webkit-box-shadow: none; + -moz-box-shadow: none; + box-shadow: none; +} + +.btn-link { + color: #0088cc; + cursor: pointer; + border-color: transparent; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.btn-link:hover, +.btn-link:focus { + color: #005580; + text-decoration: underline; + background-color: transparent; +} + +.btn-link[disabled]:hover, +.btn-link[disabled]:focus { + color: #333333; + text-decoration: none; +} + +.btn-group { + position: relative; + display: inline-block; + *display: inline; + *margin-left: .3em; + font-size: 0; + white-space: nowrap; + vertical-align: middle; + *zoom: 1; +} + +.btn-group:first-child { + *margin-left: 0; +} + +.btn-group + .btn-group { + margin-left: 5px; +} + +.btn-toolbar { + margin-top: 10px; + margin-bottom: 10px; + font-size: 0; +} + +.btn-toolbar > .btn + .btn, +.btn-toolbar > .btn-group + .btn, +.btn-toolbar > .btn + .btn-group { + margin-left: 5px; +} + +.btn-group > .btn { + position: relative; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.btn-group > .btn + .btn { + margin-left: -1px; +} + +.btn-group > .btn, +.btn-group > .dropdown-menu, +.btn-group > .popover { + font-size: 14px; +} + +.btn-group > .btn-mini { + font-size: 10.5px; +} + +.btn-group > .btn-small { + font-size: 11.9px; +} + +.btn-group > .btn-large { + font-size: 17.5px; +} + +.btn-group > .btn:first-child { + margin-left: 0; + -webkit-border-bottom-left-radius: 4px; + border-bottom-left-radius: 4px; + -webkit-border-top-left-radius: 4px; + border-top-left-radius: 4px; + -moz-border-radius-bottomleft: 4px; + -moz-border-radius-topleft: 4px; +} + +.btn-group > .btn:last-child, +.btn-group > .dropdown-toggle { + -webkit-border-top-right-radius: 4px; + border-top-right-radius: 4px; + -webkit-border-bottom-right-radius: 4px; + border-bottom-right-radius: 4px; + -moz-border-radius-topright: 4px; + -moz-border-radius-bottomright: 4px; +} + +.btn-group > .btn.large:first-child { + margin-left: 0; + -webkit-border-bottom-left-radius: 6px; + border-bottom-left-radius: 6px; + -webkit-border-top-left-radius: 6px; + border-top-left-radius: 6px; + -moz-border-radius-bottomleft: 6px; + -moz-border-radius-topleft: 6px; +} + +.btn-group > .btn.large:last-child, +.btn-group > .large.dropdown-toggle { + -webkit-border-top-right-radius: 6px; + border-top-right-radius: 6px; + -webkit-border-bottom-right-radius: 6px; + border-bottom-right-radius: 6px; + -moz-border-radius-topright: 6px; + -moz-border-radius-bottomright: 6px; +} + +.btn-group > .btn:hover, +.btn-group > .btn:focus, +.btn-group > .btn:active, +.btn-group > .btn.active { + z-index: 2; +} + +.btn-group .dropdown-toggle:active, +.btn-group.open .dropdown-toggle { + outline: 0; +} + +.btn-group > .btn + .dropdown-toggle { + *padding-top: 5px; + padding-right: 8px; + *padding-bottom: 5px; + padding-left: 8px; + -webkit-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); + -moz-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); + box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); +} + +.btn-group > .btn-mini + .dropdown-toggle { + *padding-top: 2px; + padding-right: 5px; + *padding-bottom: 2px; + padding-left: 5px; +} + +.btn-group > .btn-small + .dropdown-toggle { + *padding-top: 5px; + *padding-bottom: 4px; +} + +.btn-group > .btn-large + .dropdown-toggle { + *padding-top: 7px; + padding-right: 12px; + *padding-bottom: 7px; + padding-left: 12px; +} + +.btn-group.open .dropdown-toggle { + background-image: none; + -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); + -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); + box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); +} + +.btn-group.open .btn.dropdown-toggle { + background-color: #e6e6e6; +} + +.btn-group.open .btn-primary.dropdown-toggle { + background-color: #0044cc; +} + +.btn-group.open .btn-warning.dropdown-toggle { + background-color: #f89406; +} + +.btn-group.open .btn-danger.dropdown-toggle { + background-color: #bd362f; +} + +.btn-group.open .btn-success.dropdown-toggle { + background-color: #51a351; +} + +.btn-group.open .btn-info.dropdown-toggle { + background-color: #2f96b4; +} + +.btn-group.open .btn-inverse.dropdown-toggle { + background-color: #222222; +} + +.btn .caret { + margin-top: 8px; + margin-left: 0; +} + +.btn-large .caret { + margin-top: 6px; +} + +.btn-large .caret { + border-top-width: 5px; + border-right-width: 5px; + border-left-width: 5px; +} + +.btn-mini .caret, +.btn-small .caret { + margin-top: 8px; +} + +.dropup .btn-large .caret { + border-bottom-width: 5px; +} + +.btn-primary .caret, +.btn-warning .caret, +.btn-danger .caret, +.btn-info .caret, +.btn-success .caret, +.btn-inverse .caret { + border-top-color: #ffffff; + border-bottom-color: #ffffff; +} + +.btn-group-vertical { + display: inline-block; + *display: inline; + /* IE7 inline-block hack */ + + *zoom: 1; +} + +.btn-group-vertical > .btn { + display: block; + float: none; + max-width: 100%; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.btn-group-vertical > .btn + .btn { + margin-top: -1px; + margin-left: 0; +} + +.btn-group-vertical > .btn:first-child { + -webkit-border-radius: 4px 4px 0 0; + -moz-border-radius: 4px 4px 0 0; + border-radius: 4px 4px 0 0; +} + +.btn-group-vertical > .btn:last-child { + -webkit-border-radius: 0 0 4px 4px; + -moz-border-radius: 0 0 4px 4px; + border-radius: 0 0 4px 4px; +} + +.btn-group-vertical > .btn-large:first-child { + -webkit-border-radius: 6px 6px 0 0; + -moz-border-radius: 6px 6px 0 0; + border-radius: 6px 6px 0 0; +} + +.btn-group-vertical > .btn-large:last-child { + -webkit-border-radius: 0 0 6px 6px; + -moz-border-radius: 0 0 6px 6px; + border-radius: 0 0 6px 6px; +} + +.alert { + padding: 8px 35px 8px 14px; + margin-bottom: 20px; + text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5); + background-color: #fcf8e3; + border: 1px solid #fbeed5; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; +} + +.alert, +.alert h4 { + color: #c09853; +} + +.alert h4 { + margin: 0; +} + +.alert .close { + position: relative; + top: -2px; + right: -21px; + line-height: 20px; +} + +.alert-success { + color: #468847; + background-color: #dff0d8; + border-color: #d6e9c6; +} + +.alert-success h4 { + color: #468847; +} + +.alert-danger, +.alert-error { + color: #b94a48; + background-color: #f2dede; + border-color: #eed3d7; +} + +.alert-danger h4, +.alert-error h4 { + color: #b94a48; +} + +.alert-info { + color: #3a87ad; + background-color: #d9edf7; + border-color: #bce8f1; +} + +.alert-info h4 { + color: #3a87ad; +} + +.alert-block { + padding-top: 14px; + padding-bottom: 14px; +} + +.alert-block > p, +.alert-block > ul { + margin-bottom: 0; +} + +.alert-block p + p { + margin-top: 5px; +} + +.nav { + margin-bottom: 20px; + margin-left: 0; + list-style: none; +} + +.nav > li > a { + display: block; +} + +.nav > li > a:hover, +.nav > li > a:focus { + text-decoration: none; + background-color: #eeeeee; +} + +.nav > li > a > img { + max-width: none; +} + +.nav > .pull-right { + float: right; +} + +.nav-header { + display: block; + padding: 3px 15px; + font-size: 11px; + font-weight: bold; + line-height: 20px; + color: #999999; + text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5); + text-transform: uppercase; +} + +.nav li + .nav-header { + margin-top: 9px; +} + +.nav-list { + padding-right: 15px; + padding-left: 15px; + margin-bottom: 0; +} + +.nav-list > li > a, +.nav-list .nav-header { + margin-right: -15px; + margin-left: -15px; + text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5); +} + +.nav-list > li > a { + padding: 3px 15px; +} + +.nav-list > .active > a, +.nav-list > .active > a:hover, +.nav-list > .active > a:focus { + color: #ffffff; + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2); + background-color: #0088cc; +} + +.nav-list [class^="icon-"], +.nav-list [class*=" icon-"] { + margin-right: 2px; +} + +.nav-list .divider { + *width: 100%; + height: 1px; + margin: 9px 1px; + *margin: -5px 0 5px; + overflow: hidden; + background-color: #e5e5e5; + border-bottom: 1px solid #ffffff; +} + +.nav-tabs, +.nav-pills { + *zoom: 1; +} + +.nav-tabs:before, +.nav-pills:before, +.nav-tabs:after, +.nav-pills:after { + display: table; + line-height: 0; + content: ""; +} + +.nav-tabs:after, +.nav-pills:after { + clear: both; +} + +.nav-tabs > li, +.nav-pills > li { + float: left; +} + +.nav-tabs > li > a, +.nav-pills > li > a { + padding-right: 12px; + padding-left: 12px; + margin-right: 2px; + line-height: 14px; +} + +.nav-tabs { + border-bottom: 1px solid #ddd; +} + +.nav-tabs > li { + margin-bottom: -1px; +} + +.nav-tabs > li > a { + padding-top: 8px; + padding-bottom: 8px; + line-height: 20px; + border: 1px solid transparent; + -webkit-border-radius: 4px 4px 0 0; + -moz-border-radius: 4px 4px 0 0; + border-radius: 4px 4px 0 0; +} + +.nav-tabs > li > a:hover, +.nav-tabs > li > a:focus { + border-color: #eeeeee #eeeeee #dddddd; +} + +.nav-tabs > .active > a, +.nav-tabs > .active > a:hover, +.nav-tabs > .active > a:focus { + color: #555555; + cursor: default; + background-color: #ffffff; + border: 1px solid #ddd; + border-bottom-color: transparent; +} + +.nav-pills > li > a { + padding-top: 8px; + padding-bottom: 8px; + margin-top: 2px; + margin-bottom: 2px; + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + border-radius: 5px; +} + +.nav-pills > .active > a, +.nav-pills > .active > a:hover, +.nav-pills > .active > a:focus { + color: #ffffff; + background-color: #0088cc; +} + +.nav-stacked > li { + float: none; +} + +.nav-stacked > li > a { + margin-right: 0; +} + +.nav-tabs.nav-stacked { + border-bottom: 0; +} + +.nav-tabs.nav-stacked > li > a { + border: 1px solid #ddd; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.nav-tabs.nav-stacked > li:first-child > a { + -webkit-border-top-right-radius: 4px; + border-top-right-radius: 4px; + -webkit-border-top-left-radius: 4px; + border-top-left-radius: 4px; + -moz-border-radius-topright: 4px; + -moz-border-radius-topleft: 4px; +} + +.nav-tabs.nav-stacked > li:last-child > a { + -webkit-border-bottom-right-radius: 4px; + border-bottom-right-radius: 4px; + -webkit-border-bottom-left-radius: 4px; + border-bottom-left-radius: 4px; + -moz-border-radius-bottomright: 4px; + -moz-border-radius-bottomleft: 4px; +} + +.nav-tabs.nav-stacked > li > a:hover, +.nav-tabs.nav-stacked > li > a:focus { + z-index: 2; + border-color: #ddd; +} + +.nav-pills.nav-stacked > li > a { + margin-bottom: 3px; +} + +.nav-pills.nav-stacked > li:last-child > a { + margin-bottom: 1px; +} + +.nav-tabs .dropdown-menu { + -webkit-border-radius: 0 0 6px 6px; + -moz-border-radius: 0 0 6px 6px; + border-radius: 0 0 6px 6px; +} + +.nav-pills .dropdown-menu { + -webkit-border-radius: 6px; + -moz-border-radius: 6px; + border-radius: 6px; +} + +.nav .dropdown-toggle .caret { + margin-top: 6px; + border-top-color: #0088cc; + border-bottom-color: #0088cc; +} + +.nav .dropdown-toggle:hover .caret, +.nav .dropdown-toggle:focus .caret { + border-top-color: #005580; + border-bottom-color: #005580; +} + +/* move down carets for tabs */ + +.nav-tabs .dropdown-toggle .caret { + margin-top: 8px; +} + +.nav .active .dropdown-toggle .caret { + border-top-color: #fff; + border-bottom-color: #fff; +} + +.nav-tabs .active .dropdown-toggle .caret { + border-top-color: #555555; + border-bottom-color: #555555; +} + +.nav > .dropdown.active > a:hover, +.nav > .dropdown.active > a:focus { + cursor: pointer; +} + +.nav-tabs .open .dropdown-toggle, +.nav-pills .open .dropdown-toggle, +.nav > li.dropdown.open.active > a:hover, +.nav > li.dropdown.open.active > a:focus { + color: #ffffff; + background-color: #999999; + border-color: #999999; +} + +.nav li.dropdown.open .caret, +.nav li.dropdown.open.active .caret, +.nav li.dropdown.open a:hover .caret, +.nav li.dropdown.open a:focus .caret { + border-top-color: #ffffff; + border-bottom-color: #ffffff; + opacity: 1; + filter: alpha(opacity=100); +} + +.tabs-stacked .open > a:hover, +.tabs-stacked .open > a:focus { + border-color: #999999; +} + +.tabbable { + *zoom: 1; +} + +.tabbable:before, +.tabbable:after { + display: table; + line-height: 0; + content: ""; +} + +.tabbable:after { + clear: both; +} + +.tab-content { + overflow: auto; +} + +.tabs-below > .nav-tabs, +.tabs-right > .nav-tabs, +.tabs-left > .nav-tabs { + border-bottom: 0; +} + +.tab-content > .tab-pane, +.pill-content > .pill-pane { + display: none; +} + +.tab-content > .active, +.pill-content > .active { + display: block; +} + +.tabs-below > .nav-tabs { + border-top: 1px solid #ddd; +} + +.tabs-below > .nav-tabs > li { + margin-top: -1px; + margin-bottom: 0; +} + +.tabs-below > .nav-tabs > li > a { + -webkit-border-radius: 0 0 4px 4px; + -moz-border-radius: 0 0 4px 4px; + border-radius: 0 0 4px 4px; +} + +.tabs-below > .nav-tabs > li > a:hover, +.tabs-below > .nav-tabs > li > a:focus { + border-top-color: #ddd; + border-bottom-color: transparent; +} + +.tabs-below > .nav-tabs > .active > a, +.tabs-below > .nav-tabs > .active > a:hover, +.tabs-below > .nav-tabs > .active > a:focus { + border-color: transparent #ddd #ddd #ddd; +} + +.tabs-left > .nav-tabs > li, +.tabs-right > .nav-tabs > li { + float: none; +} + +.tabs-left > .nav-tabs > li > a, +.tabs-right > .nav-tabs > li > a { + min-width: 74px; + margin-right: 0; + margin-bottom: 3px; +} + +.tabs-left > .nav-tabs { + float: left; + margin-right: 19px; + border-right: 1px solid #ddd; +} + +.tabs-left > .nav-tabs > li > a { + margin-right: -1px; + -webkit-border-radius: 4px 0 0 4px; + -moz-border-radius: 4px 0 0 4px; + border-radius: 4px 0 0 4px; +} + +.tabs-left > .nav-tabs > li > a:hover, +.tabs-left > .nav-tabs > li > a:focus { + border-color: #eeeeee #dddddd #eeeeee #eeeeee; +} + +.tabs-left > .nav-tabs .active > a, +.tabs-left > .nav-tabs .active > a:hover, +.tabs-left > .nav-tabs .active > a:focus { + border-color: #ddd transparent #ddd #ddd; + *border-right-color: #ffffff; +} + +.tabs-right > .nav-tabs { + float: right; + margin-left: 19px; + border-left: 1px solid #ddd; +} + +.tabs-right > .nav-tabs > li > a { + margin-left: -1px; + -webkit-border-radius: 0 4px 4px 0; + -moz-border-radius: 0 4px 4px 0; + border-radius: 0 4px 4px 0; +} + +.tabs-right > .nav-tabs > li > a:hover, +.tabs-right > .nav-tabs > li > a:focus { + border-color: #eeeeee #eeeeee #eeeeee #dddddd; +} + +.tabs-right > .nav-tabs .active > a, +.tabs-right > .nav-tabs .active > a:hover, +.tabs-right > .nav-tabs .active > a:focus { + border-color: #ddd #ddd #ddd transparent; + *border-left-color: #ffffff; +} + +.nav > .disabled > a { + color: #999999; +} + +.nav > .disabled > a:hover, +.nav > .disabled > a:focus { + text-decoration: none; + cursor: default; + background-color: transparent; +} + +.navbar { + *position: relative; + *z-index: 2; + margin-bottom: 20px; + overflow: visible; +} + +.navbar-inner { + min-height: 40px; + padding-right: 20px; + padding-left: 20px; + background-color: #fafafa; + background-image: -moz-linear-gradient(top, #ffffff, #f2f2f2); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#f2f2f2)); + background-image: -webkit-linear-gradient(top, #ffffff, #f2f2f2); + background-image: -o-linear-gradient(top, #ffffff, #f2f2f2); + background-image: linear-gradient(to bottom, #ffffff, #f2f2f2); + background-repeat: repeat-x; + border: 1px solid #d4d4d4; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff2f2f2', GradientType=0); + *zoom: 1; + -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065); + -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065); + box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065); +} + +.navbar-inner:before, +.navbar-inner:after { + display: table; + line-height: 0; + content: ""; +} + +.navbar-inner:after { + clear: both; +} + +.navbar .container { + width: auto; +} + +.nav-collapse.collapse { + height: auto; + overflow: visible; +} + +.navbar .brand { + display: block; + float: left; + padding: 10px 20px 10px; + margin-left: -20px; + font-size: 20px; + font-weight: 200; + color: #777777; + text-shadow: 0 1px 0 #ffffff; +} + +.navbar .brand:hover, +.navbar .brand:focus { + text-decoration: none; +} + +.navbar-text { + margin-bottom: 0; + line-height: 40px; + color: #777777; +} + +.navbar-link { + color: #777777; +} + +.navbar-link:hover, +.navbar-link:focus { + color: #333333; +} + +.navbar .divider-vertical { + height: 40px; + margin: 0 9px; + border-right: 1px solid #ffffff; + border-left: 1px solid #f2f2f2; +} + +.navbar .btn, +.navbar .btn-group { + margin-top: 5px; +} + +.navbar .btn-group .btn, +.navbar .input-prepend .btn, +.navbar .input-append .btn, +.navbar .input-prepend .btn-group, +.navbar .input-append .btn-group { + margin-top: 0; +} + +.navbar-form { + margin-bottom: 0; + *zoom: 1; +} + +.navbar-form:before, +.navbar-form:after { + display: table; + line-height: 0; + content: ""; +} + +.navbar-form:after { + clear: both; +} + +.navbar-form input, +.navbar-form select, +.navbar-form .radio, +.navbar-form .checkbox { + margin-top: 5px; +} + +.navbar-form input, +.navbar-form select, +.navbar-form .btn { + display: inline-block; + margin-bottom: 0; +} + +.navbar-form input[type="image"], +.navbar-form input[type="checkbox"], +.navbar-form input[type="radio"] { + margin-top: 3px; +} + +.navbar-form .input-append, +.navbar-form .input-prepend { + margin-top: 5px; + white-space: nowrap; +} + +.navbar-form .input-append input, +.navbar-form .input-prepend input { + margin-top: 0; +} + +.navbar-search { + position: relative; + float: left; + margin-top: 5px; + margin-bottom: 0; +} + +.navbar-search .search-query { + padding: 4px 14px; + margin-bottom: 0; + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; + font-size: 13px; + font-weight: normal; + line-height: 1; + -webkit-border-radius: 15px; + -moz-border-radius: 15px; + border-radius: 15px; +} + +.navbar-static-top { + position: static; + margin-bottom: 0; +} + +.navbar-static-top .navbar-inner { + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.navbar-fixed-top, +.navbar-fixed-bottom { + position: fixed; + right: 0; + left: 0; + z-index: 1030; + margin-bottom: 0; +} + +.navbar-fixed-top .navbar-inner, +.navbar-static-top .navbar-inner { + border-width: 0 0 1px; +} + +.navbar-fixed-bottom .navbar-inner { + border-width: 1px 0 0; +} + +.navbar-fixed-top .navbar-inner, +.navbar-fixed-bottom .navbar-inner { + padding-right: 0; + padding-left: 0; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.navbar-static-top .container, +.navbar-fixed-top .container, +.navbar-fixed-bottom .container { + width: 940px; +} + +.navbar-fixed-top { + top: 0; +} + +.navbar-fixed-top .navbar-inner, +.navbar-static-top .navbar-inner { + -webkit-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1); + -moz-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1); + box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1); +} + +.navbar-fixed-bottom { + bottom: 0; +} + +.navbar-fixed-bottom .navbar-inner { + -webkit-box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.1); + -moz-box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.1); + box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.1); +} + +.navbar .nav { + position: relative; + left: 0; + display: block; + float: left; + margin: 0 10px 0 0; +} + +.navbar .nav.pull-right { + float: right; + margin-right: 0; +} + +.navbar .nav > li { + float: left; +} + +.navbar .nav > li > a { + float: none; + padding: 10px 15px 10px; + color: #777777; + text-decoration: none; + text-shadow: 0 1px 0 #ffffff; +} + +.navbar .nav .dropdown-toggle .caret { + margin-top: 8px; +} + +.navbar .nav > li > a:focus, +.navbar .nav > li > a:hover { + color: #333333; + text-decoration: none; + background-color: transparent; +} + +.navbar .nav > .active > a, +.navbar .nav > .active > a:hover, +.navbar .nav > .active > a:focus { + color: #555555; + text-decoration: none; + background-color: #e5e5e5; + -webkit-box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125); + -moz-box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125); + box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125); +} + +.navbar .btn-navbar { + display: none; + float: right; + padding: 7px 10px; + margin-right: 5px; + margin-left: 5px; + color: #ffffff; + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); + background-color: #ededed; + *background-color: #e5e5e5; + background-image: -moz-linear-gradient(top, #f2f2f2, #e5e5e5); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f2f2f2), to(#e5e5e5)); + background-image: -webkit-linear-gradient(top, #f2f2f2, #e5e5e5); + background-image: -o-linear-gradient(top, #f2f2f2, #e5e5e5); + background-image: linear-gradient(to bottom, #f2f2f2, #e5e5e5); + background-repeat: repeat-x; + border-color: #e5e5e5 #e5e5e5 #bfbfbf; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2f2f2', endColorstr='#ffe5e5e5', GradientType=0); + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); + -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075); + -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075); + box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075); +} + +.navbar .btn-navbar:hover, +.navbar .btn-navbar:focus, +.navbar .btn-navbar:active, +.navbar .btn-navbar.active, +.navbar .btn-navbar.disabled, +.navbar .btn-navbar[disabled] { + color: #ffffff; + background-color: #e5e5e5; + *background-color: #d9d9d9; +} + +.navbar .btn-navbar:active, +.navbar .btn-navbar.active { + background-color: #cccccc \9; +} + +.navbar .btn-navbar .icon-bar { + display: block; + width: 18px; + height: 2px; + background-color: #f5f5f5; + -webkit-border-radius: 1px; + -moz-border-radius: 1px; + border-radius: 1px; + -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25); + -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25); + box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25); +} + +.btn-navbar .icon-bar + .icon-bar { + margin-top: 3px; +} + +.navbar .nav > li > .dropdown-menu:before { + position: absolute; + top: -7px; + left: 9px; + display: inline-block; + border-right: 7px solid transparent; + border-bottom: 7px solid #ccc; + border-left: 7px solid transparent; + border-bottom-color: rgba(0, 0, 0, 0.2); + content: ''; +} + +.navbar .nav > li > .dropdown-menu:after { + position: absolute; + top: -6px; + left: 10px; + display: inline-block; + border-right: 6px solid transparent; + border-bottom: 6px solid #ffffff; + border-left: 6px solid transparent; + content: ''; +} + +.navbar-fixed-bottom .nav > li > .dropdown-menu:before { + top: auto; + bottom: -7px; + border-top: 7px solid #ccc; + border-bottom: 0; + border-top-color: rgba(0, 0, 0, 0.2); +} + +.navbar-fixed-bottom .nav > li > .dropdown-menu:after { + top: auto; + bottom: -6px; + border-top: 6px solid #ffffff; + border-bottom: 0; +} + +.navbar .nav li.dropdown > a:hover .caret, +.navbar .nav li.dropdown > a:focus .caret { + border-top-color: #333333; + border-bottom-color: #333333; +} + +.navbar .nav li.dropdown.open > .dropdown-toggle, +.navbar .nav li.dropdown.active > .dropdown-toggle, +.navbar .nav li.dropdown.open.active > .dropdown-toggle { + color: #555555; + background-color: #e5e5e5; +} + +.navbar .nav li.dropdown > .dropdown-toggle .caret { + border-top-color: #777777; + border-bottom-color: #777777; +} + +.navbar .nav li.dropdown.open > .dropdown-toggle .caret, +.navbar .nav li.dropdown.active > .dropdown-toggle .caret, +.navbar .nav li.dropdown.open.active > .dropdown-toggle .caret { + border-top-color: #555555; + border-bottom-color: #555555; +} + +.navbar .pull-right > li > .dropdown-menu, +.navbar .nav > li > .dropdown-menu.pull-right { + right: 0; + left: auto; +} + +.navbar .pull-right > li > .dropdown-menu:before, +.navbar .nav > li > .dropdown-menu.pull-right:before { + right: 12px; + left: auto; +} + +.navbar .pull-right > li > .dropdown-menu:after, +.navbar .nav > li > .dropdown-menu.pull-right:after { + right: 13px; + left: auto; +} + +.navbar .pull-right > li > .dropdown-menu .dropdown-menu, +.navbar .nav > li > .dropdown-menu.pull-right .dropdown-menu { + right: 100%; + left: auto; + margin-right: -1px; + margin-left: 0; + -webkit-border-radius: 6px 0 6px 6px; + -moz-border-radius: 6px 0 6px 6px; + border-radius: 6px 0 6px 6px; +} + +.navbar-inverse .navbar-inner { + background-color: #1b1b1b; + background-image: -moz-linear-gradient(top, #222222, #111111); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#222222), to(#111111)); + background-image: -webkit-linear-gradient(top, #222222, #111111); + background-image: -o-linear-gradient(top, #222222, #111111); + background-image: linear-gradient(to bottom, #222222, #111111); + background-repeat: repeat-x; + border-color: #252525; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff222222', endColorstr='#ff111111', GradientType=0); +} + +.navbar-inverse .brand, +.navbar-inverse .nav > li > a { + color: #999999; + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); +} + +.navbar-inverse .brand:hover, +.navbar-inverse .nav > li > a:hover, +.navbar-inverse .brand:focus, +.navbar-inverse .nav > li > a:focus { + color: #ffffff; +} + +.navbar-inverse .brand { + color: #999999; +} + +.navbar-inverse .navbar-text { + color: #999999; +} + +.navbar-inverse .nav > li > a:focus, +.navbar-inverse .nav > li > a:hover { + color: #ffffff; + background-color: transparent; +} + +.navbar-inverse .nav .active > a, +.navbar-inverse .nav .active > a:hover, +.navbar-inverse .nav .active > a:focus { + color: #ffffff; + background-color: #111111; +} + +.navbar-inverse .navbar-link { + color: #999999; +} + +.navbar-inverse .navbar-link:hover, +.navbar-inverse .navbar-link:focus { + color: #ffffff; +} + +.navbar-inverse .divider-vertical { + border-right-color: #222222; + border-left-color: #111111; +} + +.navbar-inverse .nav li.dropdown.open > .dropdown-toggle, +.navbar-inverse .nav li.dropdown.active > .dropdown-toggle, +.navbar-inverse .nav li.dropdown.open.active > .dropdown-toggle { + color: #ffffff; + background-color: #111111; +} + +.navbar-inverse .nav li.dropdown > a:hover .caret, +.navbar-inverse .nav li.dropdown > a:focus .caret { + border-top-color: #ffffff; + border-bottom-color: #ffffff; +} + +.navbar-inverse .nav li.dropdown > .dropdown-toggle .caret { + border-top-color: #999999; + border-bottom-color: #999999; +} + +.navbar-inverse .nav li.dropdown.open > .dropdown-toggle .caret, +.navbar-inverse .nav li.dropdown.active > .dropdown-toggle .caret, +.navbar-inverse .nav li.dropdown.open.active > .dropdown-toggle .caret { + border-top-color: #ffffff; + border-bottom-color: #ffffff; +} + +.navbar-inverse .navbar-search .search-query { + color: #ffffff; + background-color: #515151; + border-color: #111111; + -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0 rgba(255, 255, 255, 0.15); + -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0 rgba(255, 255, 255, 0.15); + box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0 rgba(255, 255, 255, 0.15); + -webkit-transition: none; + -moz-transition: none; + -o-transition: none; + transition: none; +} + +.navbar-inverse .navbar-search .search-query:-moz-placeholder { + color: #cccccc; +} + +.navbar-inverse .navbar-search .search-query:-ms-input-placeholder { + color: #cccccc; +} + +.navbar-inverse .navbar-search .search-query::-webkit-input-placeholder { + color: #cccccc; +} + +.navbar-inverse .navbar-search .search-query:focus, +.navbar-inverse .navbar-search .search-query.focused { + padding: 5px 15px; + color: #333333; + text-shadow: 0 1px 0 #ffffff; + background-color: #ffffff; + border: 0; + outline: 0; + -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15); + -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15); + box-shadow: 0 0 3px rgba(0, 0, 0, 0.15); +} + +.navbar-inverse .btn-navbar { + color: #ffffff; + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); + background-color: #0e0e0e; + *background-color: #040404; + background-image: -moz-linear-gradient(top, #151515, #040404); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#151515), to(#040404)); + background-image: -webkit-linear-gradient(top, #151515, #040404); + background-image: -o-linear-gradient(top, #151515, #040404); + background-image: linear-gradient(to bottom, #151515, #040404); + background-repeat: repeat-x; + border-color: #040404 #040404 #000000; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff151515', endColorstr='#ff040404', GradientType=0); + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); +} + +.navbar-inverse .btn-navbar:hover, +.navbar-inverse .btn-navbar:focus, +.navbar-inverse .btn-navbar:active, +.navbar-inverse .btn-navbar.active, +.navbar-inverse .btn-navbar.disabled, +.navbar-inverse .btn-navbar[disabled] { + color: #ffffff; + background-color: #040404; + *background-color: #000000; +} + +.navbar-inverse .btn-navbar:active, +.navbar-inverse .btn-navbar.active { + background-color: #000000 \9; +} + +.breadcrumb { + padding: 8px 15px; + margin: 0 0 20px; + list-style: none; + background-color: #f5f5f5; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; +} + +.breadcrumb > li { + display: inline-block; + *display: inline; + text-shadow: 0 1px 0 #ffffff; + *zoom: 1; +} + +.breadcrumb > li > .divider { + padding: 0 5px; + color: #ccc; +} + +.breadcrumb > .active { + color: #999999; +} + +.pagination { + margin: 20px 0; +} + +.pagination ul { + display: inline-block; + *display: inline; + margin-bottom: 0; + margin-left: 0; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; + *zoom: 1; + -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); + -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); + box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); +} + +.pagination ul > li { + display: inline; +} + +.pagination ul > li > a, +.pagination ul > li > span { + float: left; + padding: 4px 12px; + line-height: 20px; + text-decoration: none; + background-color: #ffffff; + border: 1px solid #dddddd; + border-left-width: 0; +} + +.pagination ul > li > a:hover, +.pagination ul > li > a:focus, +.pagination ul > .active > a, +.pagination ul > .active > span { + background-color: #f5f5f5; +} + +.pagination ul > .active > a, +.pagination ul > .active > span { + color: #999999; + cursor: default; +} + +.pagination ul > .disabled > span, +.pagination ul > .disabled > a, +.pagination ul > .disabled > a:hover, +.pagination ul > .disabled > a:focus { + color: #999999; + cursor: default; + background-color: transparent; +} + +.pagination ul > li:first-child > a, +.pagination ul > li:first-child > span { + border-left-width: 1px; + -webkit-border-bottom-left-radius: 4px; + border-bottom-left-radius: 4px; + -webkit-border-top-left-radius: 4px; + border-top-left-radius: 4px; + -moz-border-radius-bottomleft: 4px; + -moz-border-radius-topleft: 4px; +} + +.pagination ul > li:last-child > a, +.pagination ul > li:last-child > span { + -webkit-border-top-right-radius: 4px; + border-top-right-radius: 4px; + -webkit-border-bottom-right-radius: 4px; + border-bottom-right-radius: 4px; + -moz-border-radius-topright: 4px; + -moz-border-radius-bottomright: 4px; +} + +.pagination-centered { + text-align: center; +} + +.pagination-right { + text-align: right; +} + +.pagination-large ul > li > a, +.pagination-large ul > li > span { + padding: 11px 19px; + font-size: 17.5px; +} + +.pagination-large ul > li:first-child > a, +.pagination-large ul > li:first-child > span { + -webkit-border-bottom-left-radius: 6px; + border-bottom-left-radius: 6px; + -webkit-border-top-left-radius: 6px; + border-top-left-radius: 6px; + -moz-border-radius-bottomleft: 6px; + -moz-border-radius-topleft: 6px; +} + +.pagination-large ul > li:last-child > a, +.pagination-large ul > li:last-child > span { + -webkit-border-top-right-radius: 6px; + border-top-right-radius: 6px; + -webkit-border-bottom-right-radius: 6px; + border-bottom-right-radius: 6px; + -moz-border-radius-topright: 6px; + -moz-border-radius-bottomright: 6px; +} + +.pagination-mini ul > li:first-child > a, +.pagination-small ul > li:first-child > a, +.pagination-mini ul > li:first-child > span, +.pagination-small ul > li:first-child > span { + -webkit-border-bottom-left-radius: 3px; + border-bottom-left-radius: 3px; + -webkit-border-top-left-radius: 3px; + border-top-left-radius: 3px; + -moz-border-radius-bottomleft: 3px; + -moz-border-radius-topleft: 3px; +} + +.pagination-mini ul > li:last-child > a, +.pagination-small ul > li:last-child > a, +.pagination-mini ul > li:last-child > span, +.pagination-small ul > li:last-child > span { + -webkit-border-top-right-radius: 3px; + border-top-right-radius: 3px; + -webkit-border-bottom-right-radius: 3px; + border-bottom-right-radius: 3px; + -moz-border-radius-topright: 3px; + -moz-border-radius-bottomright: 3px; +} + +.pagination-small ul > li > a, +.pagination-small ul > li > span { + padding: 2px 10px; + font-size: 11.9px; +} + +.pagination-mini ul > li > a, +.pagination-mini ul > li > span { + padding: 0 6px; + font-size: 10.5px; +} + +.pager { + margin: 20px 0; + text-align: center; + list-style: none; + *zoom: 1; +} + +.pager:before, +.pager:after { + display: table; + line-height: 0; + content: ""; +} + +.pager:after { + clear: both; +} + +.pager li { + display: inline; +} + +.pager li > a, +.pager li > span { + display: inline-block; + padding: 5px 14px; + background-color: #fff; + border: 1px solid #ddd; + -webkit-border-radius: 15px; + -moz-border-radius: 15px; + border-radius: 15px; +} + +.pager li > a:hover, +.pager li > a:focus { + text-decoration: none; + background-color: #f5f5f5; +} + +.pager .next > a, +.pager .next > span { + float: right; +} + +.pager .previous > a, +.pager .previous > span { + float: left; +} + +.pager .disabled > a, +.pager .disabled > a:hover, +.pager .disabled > a:focus, +.pager .disabled > span { + color: #999999; + cursor: default; + background-color: #fff; +} + +.modal-backdrop { + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1040; + background-color: #000000; +} + +.modal-backdrop.fade { + opacity: 0; +} + +.modal-backdrop, +.modal-backdrop.fade.in { + opacity: 0.8; + filter: alpha(opacity=80); +} + +.modal { + position: fixed; + top: 10%; + left: 50%; + z-index: 1050; + width: 560px; + margin-left: -280px; + background-color: #ffffff; + border: 1px solid #999; + border: 1px solid rgba(0, 0, 0, 0.3); + *border: 1px solid #999; + -webkit-border-radius: 6px; + -moz-border-radius: 6px; + border-radius: 6px; + outline: none; + -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3); + -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3); + box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3); + -webkit-background-clip: padding-box; + -moz-background-clip: padding-box; + background-clip: padding-box; +} + +.modal.fade { + top: -25%; + -webkit-transition: opacity 0.3s linear, top 0.3s ease-out; + -moz-transition: opacity 0.3s linear, top 0.3s ease-out; + -o-transition: opacity 0.3s linear, top 0.3s ease-out; + transition: opacity 0.3s linear, top 0.3s ease-out; +} + +.modal.fade.in { + top: 10%; +} + +.modal-header { + padding: 9px 15px; + border-bottom: 1px solid #eee; +} + +.modal-header .close { + margin-top: 2px; +} + +.modal-header h3 { + margin: 0; + line-height: 30px; +} + +.modal-body { + position: relative; + max-height: 400px; + padding: 15px; + overflow-y: auto; +} + +.modal-form { + margin-bottom: 0; +} + +.modal-footer { + padding: 14px 15px 15px; + margin-bottom: 0; + text-align: right; + background-color: #f5f5f5; + border-top: 1px solid #ddd; + -webkit-border-radius: 0 0 6px 6px; + -moz-border-radius: 0 0 6px 6px; + border-radius: 0 0 6px 6px; + *zoom: 1; + -webkit-box-shadow: inset 0 1px 0 #ffffff; + -moz-box-shadow: inset 0 1px 0 #ffffff; + box-shadow: inset 0 1px 0 #ffffff; +} + +.modal-footer:before, +.modal-footer:after { + display: table; + line-height: 0; + content: ""; +} + +.modal-footer:after { + clear: both; +} + +.modal-footer .btn + .btn { + margin-bottom: 0; + margin-left: 5px; +} + +.modal-footer .btn-group .btn + .btn { + margin-left: -1px; +} + +.modal-footer .btn-block + .btn-block { + margin-left: 0; +} + +.tooltip { + position: absolute; + z-index: 1030; + display: block; + font-size: 11px; + line-height: 1.4; + opacity: 0; + filter: alpha(opacity=0); + visibility: visible; +} + +.tooltip.in { + opacity: 0.8; + filter: alpha(opacity=80); +} + +.tooltip.top { + padding: 5px 0; + margin-top: -3px; +} + +.tooltip.right { + padding: 0 5px; + margin-left: 3px; +} + +.tooltip.bottom { + padding: 5px 0; + margin-top: 3px; +} + +.tooltip.left { + padding: 0 5px; + margin-left: -3px; +} + +.tooltip-inner { + max-width: 200px; + padding: 8px; + color: #ffffff; + text-align: center; + text-decoration: none; + background-color: #000000; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; +} + +.tooltip-arrow { + position: absolute; + width: 0; + height: 0; + border-color: transparent; + border-style: solid; +} + +.tooltip.top .tooltip-arrow { + bottom: 0; + left: 50%; + margin-left: -5px; + border-top-color: #000000; + border-width: 5px 5px 0; +} + +.tooltip.right .tooltip-arrow { + top: 50%; + left: 0; + margin-top: -5px; + border-right-color: #000000; + border-width: 5px 5px 5px 0; +} + +.tooltip.left .tooltip-arrow { + top: 50%; + right: 0; + margin-top: -5px; + border-left-color: #000000; + border-width: 5px 0 5px 5px; +} + +.tooltip.bottom .tooltip-arrow { + top: 0; + left: 50%; + margin-left: -5px; + border-bottom-color: #000000; + border-width: 0 5px 5px; +} + +.popover { + position: absolute; + top: 0; + left: 0; + z-index: 1010; + display: none; + max-width: 276px; + padding: 1px; + text-align: left; + white-space: normal; + background-color: #ffffff; + border: 1px solid #ccc; + border: 1px solid rgba(0, 0, 0, 0.2); + -webkit-border-radius: 6px; + -moz-border-radius: 6px; + border-radius: 6px; + -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); + -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); + box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); + -webkit-background-clip: padding-box; + -moz-background-clip: padding; + background-clip: padding-box; +} + +.popover.top { + margin-top: -10px; +} + +.popover.right { + margin-left: 10px; +} + +.popover.bottom { + margin-top: 10px; +} + +.popover.left { + margin-left: -10px; +} + +.popover-title { + padding: 8px 14px; + margin: 0; + font-size: 14px; + font-weight: normal; + line-height: 18px; + background-color: #f7f7f7; + border-bottom: 1px solid #ebebeb; + -webkit-border-radius: 5px 5px 0 0; + -moz-border-radius: 5px 5px 0 0; + border-radius: 5px 5px 0 0; +} + +.popover-title:empty { + display: none; +} + +.popover-content { + padding: 9px 14px; +} + +.popover .arrow, +.popover .arrow:after { + position: absolute; + display: block; + width: 0; + height: 0; + border-color: transparent; + border-style: solid; +} + +.popover .arrow { + border-width: 11px; +} + +.popover .arrow:after { + border-width: 10px; + content: ""; +} + +.popover.top .arrow { + bottom: -11px; + left: 50%; + margin-left: -11px; + border-top-color: #999; + border-top-color: rgba(0, 0, 0, 0.25); + border-bottom-width: 0; +} + +.popover.top .arrow:after { + bottom: 1px; + margin-left: -10px; + border-top-color: #ffffff; + border-bottom-width: 0; +} + +.popover.right .arrow { + top: 50%; + left: -11px; + margin-top: -11px; + border-right-color: #999; + border-right-color: rgba(0, 0, 0, 0.25); + border-left-width: 0; +} + +.popover.right .arrow:after { + bottom: -10px; + left: 1px; + border-right-color: #ffffff; + border-left-width: 0; +} + +.popover.bottom .arrow { + top: -11px; + left: 50%; + margin-left: -11px; + border-bottom-color: #999; + border-bottom-color: rgba(0, 0, 0, 0.25); + border-top-width: 0; +} + +.popover.bottom .arrow:after { + top: 1px; + margin-left: -10px; + border-bottom-color: #ffffff; + border-top-width: 0; +} + +.popover.left .arrow { + top: 50%; + right: -11px; + margin-top: -11px; + border-left-color: #999; + border-left-color: rgba(0, 0, 0, 0.25); + border-right-width: 0; +} + +.popover.left .arrow:after { + right: 1px; + bottom: -10px; + border-left-color: #ffffff; + border-right-width: 0; +} + +.thumbnails { + margin-left: -20px; + list-style: none; + *zoom: 1; +} + +.thumbnails:before, +.thumbnails:after { + display: table; + line-height: 0; + content: ""; +} + +.thumbnails:after { + clear: both; +} + +.row-fluid .thumbnails { + margin-left: 0; +} + +.thumbnails > li { + float: left; + margin-bottom: 20px; + margin-left: 20px; +} + +.thumbnail { + display: block; + padding: 4px; + line-height: 20px; + border: 1px solid #ddd; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; + -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055); + -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055); + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055); + -webkit-transition: all 0.2s ease-in-out; + -moz-transition: all 0.2s ease-in-out; + -o-transition: all 0.2s ease-in-out; + transition: all 0.2s ease-in-out; +} + +a.thumbnail:hover, +a.thumbnail:focus { + border-color: #0088cc; + -webkit-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25); + -moz-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25); + box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25); +} + +.thumbnail > img { + display: block; + max-width: 100%; + margin-right: auto; + margin-left: auto; +} + +.thumbnail .caption { + padding: 9px; + color: #555555; +} + +.media, +.media-body { + overflow: hidden; + *overflow: visible; + zoom: 1; +} + +.media, +.media .media { + margin-top: 15px; +} + +.media:first-child { + margin-top: 0; +} + +.media-object { + display: block; +} + +.media-heading { + margin: 0 0 5px; +} + +.media > .pull-left { + margin-right: 10px; +} + +.media > .pull-right { + margin-left: 10px; +} + +.media-list { + margin-left: 0; + list-style: none; +} + +.label, +.badge { + display: inline-block; + padding: 2px 4px; + font-size: 11.844px; + font-weight: bold; + line-height: 14px; + color: #ffffff; + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); + white-space: nowrap; + vertical-align: baseline; + background-color: #999999; +} + +.label { + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; +} + +.badge { + padding-right: 9px; + padding-left: 9px; + -webkit-border-radius: 9px; + -moz-border-radius: 9px; + border-radius: 9px; +} + +.label:empty, +.badge:empty { + display: none; +} + +a.label:hover, +a.label:focus, +a.badge:hover, +a.badge:focus { + color: #ffffff; + text-decoration: none; + cursor: pointer; +} + +.label-important, +.badge-important { + background-color: #b94a48; +} + +.label-important[href], +.badge-important[href] { + background-color: #953b39; +} + +.label-warning, +.badge-warning { + background-color: #f89406; +} + +.label-warning[href], +.badge-warning[href] { + background-color: #c67605; +} + +.label-success, +.badge-success { + background-color: #468847; +} + +.label-success[href], +.badge-success[href] { + background-color: #356635; +} + +.label-info, +.badge-info { + background-color: #3a87ad; +} + +.label-info[href], +.badge-info[href] { + background-color: #2d6987; +} + +.label-inverse, +.badge-inverse { + background-color: #333333; +} + +.label-inverse[href], +.badge-inverse[href] { + background-color: #1a1a1a; +} + +.btn .label, +.btn .badge { + position: relative; + top: -1px; +} + +.btn-mini .label, +.btn-mini .badge { + top: 0; +} + +@-webkit-keyframes progress-bar-stripes { + from { + background-position: 40px 0; + } + to { + background-position: 0 0; + } +} + +@-moz-keyframes progress-bar-stripes { + from { + background-position: 40px 0; + } + to { + background-position: 0 0; + } +} + +@-ms-keyframes progress-bar-stripes { + from { + background-position: 40px 0; + } + to { + background-position: 0 0; + } +} + +@-o-keyframes progress-bar-stripes { + from { + background-position: 0 0; + } + to { + background-position: 40px 0; + } +} + +@keyframes progress-bar-stripes { + from { + background-position: 40px 0; + } + to { + background-position: 0 0; + } +} + +.progress { + height: 20px; + margin-bottom: 20px; + overflow: hidden; + background-color: #f7f7f7; + background-image: -moz-linear-gradient(top, #f5f5f5, #f9f9f9); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9)); + background-image: -webkit-linear-gradient(top, #f5f5f5, #f9f9f9); + background-image: -o-linear-gradient(top, #f5f5f5, #f9f9f9); + background-image: linear-gradient(to bottom, #f5f5f5, #f9f9f9); + background-repeat: repeat-x; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0); + -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); + -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); + box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); +} + +.progress .bar { + float: left; + width: 0; + height: 100%; + font-size: 12px; + color: #ffffff; + text-align: center; + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); + background-color: #0e90d2; + background-image: -moz-linear-gradient(top, #149bdf, #0480be); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be)); + background-image: -webkit-linear-gradient(top, #149bdf, #0480be); + background-image: -o-linear-gradient(top, #149bdf, #0480be); + background-image: linear-gradient(to bottom, #149bdf, #0480be); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf', endColorstr='#ff0480be', GradientType=0); + -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); + -moz-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); + box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + -webkit-transition: width 0.6s ease; + -moz-transition: width 0.6s ease; + -o-transition: width 0.6s ease; + transition: width 0.6s ease; +} + +.progress .bar + .bar { + -webkit-box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.15), inset 0 -1px 0 rgba(0, 0, 0, 0.15); + -moz-box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.15), inset 0 -1px 0 rgba(0, 0, 0, 0.15); + box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.15), inset 0 -1px 0 rgba(0, 0, 0, 0.15); +} + +.progress-striped .bar { + background-color: #149bdf; + background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + -webkit-background-size: 40px 40px; + -moz-background-size: 40px 40px; + -o-background-size: 40px 40px; + background-size: 40px 40px; +} + +.progress.active .bar { + -webkit-animation: progress-bar-stripes 2s linear infinite; + -moz-animation: progress-bar-stripes 2s linear infinite; + -ms-animation: progress-bar-stripes 2s linear infinite; + -o-animation: progress-bar-stripes 2s linear infinite; + animation: progress-bar-stripes 2s linear infinite; +} + +.progress-danger .bar, +.progress .bar-danger { + background-color: #dd514c; + background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#c43c35)); + background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35); + background-image: -o-linear-gradient(top, #ee5f5b, #c43c35); + background-image: linear-gradient(to bottom, #ee5f5b, #c43c35); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffc43c35', GradientType=0); +} + +.progress-danger.progress-striped .bar, +.progress-striped .bar-danger { + background-color: #ee5f5b; + background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); +} + +.progress-success .bar, +.progress .bar-success { + background-color: #5eb95e; + background-image: -moz-linear-gradient(top, #62c462, #57a957); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#57a957)); + background-image: -webkit-linear-gradient(top, #62c462, #57a957); + background-image: -o-linear-gradient(top, #62c462, #57a957); + background-image: linear-gradient(to bottom, #62c462, #57a957); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff57a957', GradientType=0); +} + +.progress-success.progress-striped .bar, +.progress-striped .bar-success { + background-color: #62c462; + background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); +} + +.progress-info .bar, +.progress .bar-info { + background-color: #4bb1cf; + background-image: -moz-linear-gradient(top, #5bc0de, #339bb9); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#339bb9)); + background-image: -webkit-linear-gradient(top, #5bc0de, #339bb9); + background-image: -o-linear-gradient(top, #5bc0de, #339bb9); + background-image: linear-gradient(to bottom, #5bc0de, #339bb9); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff339bb9', GradientType=0); +} + +.progress-info.progress-striped .bar, +.progress-striped .bar-info { + background-color: #5bc0de; + background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); +} + +.progress-warning .bar, +.progress .bar-warning { + background-color: #faa732; + background-image: -moz-linear-gradient(top, #fbb450, #f89406); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406)); + background-image: -webkit-linear-gradient(top, #fbb450, #f89406); + background-image: -o-linear-gradient(top, #fbb450, #f89406); + background-image: linear-gradient(to bottom, #fbb450, #f89406); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0); +} + +.progress-warning.progress-striped .bar, +.progress-striped .bar-warning { + background-color: #fbb450; + background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); +} + +.accordion { + margin-bottom: 20px; +} + +.accordion-group { + margin-bottom: 2px; + border: 1px solid #e5e5e5; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; +} + +.accordion-heading { + border-bottom: 0; +} + +.accordion-heading .accordion-toggle { + display: block; + padding: 8px 15px; +} + +.accordion-toggle { + cursor: pointer; +} + +.accordion-inner { + padding: 9px 15px; + border-top: 1px solid #e5e5e5; +} + +.carousel { + position: relative; + margin-bottom: 20px; + line-height: 1; +} + +.carousel-inner { + position: relative; + width: 100%; + overflow: hidden; +} + +.carousel-inner > .item { + position: relative; + display: none; + -webkit-transition: 0.6s ease-in-out left; + -moz-transition: 0.6s ease-in-out left; + -o-transition: 0.6s ease-in-out left; + transition: 0.6s ease-in-out left; +} + +.carousel-inner > .item > img, +.carousel-inner > .item > a > img { + display: block; + line-height: 1; +} + +.carousel-inner > .active, +.carousel-inner > .next, +.carousel-inner > .prev { + display: block; +} + +.carousel-inner > .active { + left: 0; +} + +.carousel-inner > .next, +.carousel-inner > .prev { + position: absolute; + top: 0; + width: 100%; +} + +.carousel-inner > .next { + left: 100%; +} + +.carousel-inner > .prev { + left: -100%; +} + +.carousel-inner > .next.left, +.carousel-inner > .prev.right { + left: 0; +} + +.carousel-inner > .active.left { + left: -100%; +} + +.carousel-inner > .active.right { + left: 100%; +} + +.carousel-control { + position: absolute; + top: 40%; + left: 15px; + width: 40px; + height: 40px; + margin-top: -20px; + font-size: 60px; + font-weight: 100; + line-height: 30px; + color: #ffffff; + text-align: center; + background: #222222; + border: 3px solid #ffffff; + -webkit-border-radius: 23px; + -moz-border-radius: 23px; + border-radius: 23px; + opacity: 0.5; + filter: alpha(opacity=50); +} + +.carousel-control.right { + right: 15px; + left: auto; +} + +.carousel-control:hover, +.carousel-control:focus { + color: #ffffff; + text-decoration: none; + opacity: 0.9; + filter: alpha(opacity=90); +} + +.carousel-indicators { + position: absolute; + top: 15px; + right: 15px; + z-index: 5; + margin: 0; + list-style: none; +} + +.carousel-indicators li { + display: block; + float: left; + width: 10px; + height: 10px; + margin-left: 5px; + text-indent: -999px; + background-color: #ccc; + background-color: rgba(255, 255, 255, 0.25); + border-radius: 5px; +} + +.carousel-indicators .active { + background-color: #fff; +} + +.carousel-caption { + position: absolute; + right: 0; + bottom: 0; + left: 0; + padding: 15px; + background: #333333; + background: rgba(0, 0, 0, 0.75); +} + +.carousel-caption h4, +.carousel-caption p { + line-height: 20px; + color: #ffffff; +} + +.carousel-caption h4 { + margin: 0 0 5px; +} + +.carousel-caption p { + margin-bottom: 0; +} + +.hero-unit { + padding: 60px; + margin-bottom: 30px; + font-size: 18px; + font-weight: 200; + line-height: 30px; + color: inherit; + background-color: #eeeeee; + -webkit-border-radius: 6px; + -moz-border-radius: 6px; + border-radius: 6px; +} + +.hero-unit h1 { + margin-bottom: 0; + font-size: 60px; + line-height: 1; + letter-spacing: -1px; + color: inherit; +} + +.hero-unit li { + line-height: 30px; +} + +.pull-right { + float: right; +} + +.pull-left { + float: left; +} + +.hide { + display: none; +} + +.show { + display: block; +} + +.invisible { + visibility: hidden; +} + +.affix { + position: fixed; +} diff --git a/css/bootstrap.min.css b/css/bootstrap.min.css new file mode 100644 index 0000000..df96c86 --- /dev/null +++ b/css/bootstrap.min.css @@ -0,0 +1,9 @@ +/*! + * Bootstrap v2.3.2 + * + * Copyright 2013 Twitter, Inc + * Licensed under the Apache License v2.0 + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Designed and built with all the love in the world by @mdo and @fat. + */.clearfix{*zoom:1}.clearfix:before,.clearfix:after{display:table;line-height:0;content:""}.clearfix:after{clear:both}.hide-text{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.input-block-level{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block}audio,canvas,video{display:inline-block;*display:inline;*zoom:1}audio:not([controls]){display:none}html{font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}a:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}a:hover,a:active{outline:0}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{width:auto\9;height:auto;max-width:100%;vertical-align:middle;border:0;-ms-interpolation-mode:bicubic}#map_canvas img,.google-maps img{max-width:none}button,input,select,textarea{margin:0;font-size:100%;vertical-align:middle}button,input{*overflow:visible;line-height:normal}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}button,html input[type="button"],input[type="reset"],input[type="submit"]{cursor:pointer;-webkit-appearance:button}label,select,button,input[type="button"],input[type="reset"],input[type="submit"],input[type="radio"],input[type="checkbox"]{cursor:pointer}input[type="search"]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type="search"]::-webkit-search-decoration,input[type="search"]::-webkit-search-cancel-button{-webkit-appearance:none}textarea{overflow:auto;vertical-align:top}@media print{*{color:#000!important;text-shadow:none!important;background:transparent!important;box-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}.ir a:after,a[href^="javascript:"]:after,a[href^="#"]:after{content:""}pre,blockquote{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}img{max-width:100%!important}@page{margin:.5cm}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}}body{margin:0;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:20px;color:#333;background-color:#fff}a{color:#08c;text-decoration:none}a:hover,a:focus{color:#005580;text-decoration:underline}.img-rounded{-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.img-polaroid{padding:4px;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.1);-moz-box-shadow:0 1px 3px rgba(0,0,0,0.1);box-shadow:0 1px 3px rgba(0,0,0,0.1)}.img-circle{-webkit-border-radius:500px;-moz-border-radius:500px;border-radius:500px}.row{margin-left:-20px;*zoom:1}.row:before,.row:after{display:table;line-height:0;content:""}.row:after{clear:both}[class*="span"]{float:left;min-height:1px;margin-left:20px}.container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px}.span12{width:940px}.span11{width:860px}.span10{width:780px}.span9{width:700px}.span8{width:620px}.span7{width:540px}.span6{width:460px}.span5{width:380px}.span4{width:300px}.span3{width:220px}.span2{width:140px}.span1{width:60px}.offset12{margin-left:980px}.offset11{margin-left:900px}.offset10{margin-left:820px}.offset9{margin-left:740px}.offset8{margin-left:660px}.offset7{margin-left:580px}.offset6{margin-left:500px}.offset5{margin-left:420px}.offset4{margin-left:340px}.offset3{margin-left:260px}.offset2{margin-left:180px}.offset1{margin-left:100px}.row-fluid{width:100%;*zoom:1}.row-fluid:before,.row-fluid:after{display:table;line-height:0;content:""}.row-fluid:after{clear:both}.row-fluid [class*="span"]{display:block;float:left;width:100%;min-height:30px;margin-left:2.127659574468085%;*margin-left:2.074468085106383%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.row-fluid [class*="span"]:first-child{margin-left:0}.row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.127659574468085%}.row-fluid .span12{width:100%;*width:99.94680851063829%}.row-fluid .span11{width:91.48936170212765%;*width:91.43617021276594%}.row-fluid .span10{width:82.97872340425532%;*width:82.92553191489361%}.row-fluid .span9{width:74.46808510638297%;*width:74.41489361702126%}.row-fluid .span8{width:65.95744680851064%;*width:65.90425531914893%}.row-fluid .span7{width:57.44680851063829%;*width:57.39361702127659%}.row-fluid .span6{width:48.93617021276595%;*width:48.88297872340425%}.row-fluid .span5{width:40.42553191489362%;*width:40.37234042553192%}.row-fluid .span4{width:31.914893617021278%;*width:31.861702127659576%}.row-fluid .span3{width:23.404255319148934%;*width:23.351063829787233%}.row-fluid .span2{width:14.893617021276595%;*width:14.840425531914894%}.row-fluid .span1{width:6.382978723404255%;*width:6.329787234042553%}.row-fluid .offset12{margin-left:104.25531914893617%;*margin-left:104.14893617021275%}.row-fluid .offset12:first-child{margin-left:102.12765957446808%;*margin-left:102.02127659574467%}.row-fluid .offset11{margin-left:95.74468085106382%;*margin-left:95.6382978723404%}.row-fluid .offset11:first-child{margin-left:93.61702127659574%;*margin-left:93.51063829787232%}.row-fluid .offset10{margin-left:87.23404255319149%;*margin-left:87.12765957446807%}.row-fluid .offset10:first-child{margin-left:85.1063829787234%;*margin-left:84.99999999999999%}.row-fluid .offset9{margin-left:78.72340425531914%;*margin-left:78.61702127659572%}.row-fluid .offset9:first-child{margin-left:76.59574468085106%;*margin-left:76.48936170212764%}.row-fluid .offset8{margin-left:70.2127659574468%;*margin-left:70.10638297872339%}.row-fluid .offset8:first-child{margin-left:68.08510638297872%;*margin-left:67.9787234042553%}.row-fluid .offset7{margin-left:61.70212765957446%;*margin-left:61.59574468085106%}.row-fluid .offset7:first-child{margin-left:59.574468085106375%;*margin-left:59.46808510638297%}.row-fluid .offset6{margin-left:53.191489361702125%;*margin-left:53.085106382978715%}.row-fluid .offset6:first-child{margin-left:51.063829787234035%;*margin-left:50.95744680851063%}.row-fluid .offset5{margin-left:44.68085106382979%;*margin-left:44.57446808510638%}.row-fluid .offset5:first-child{margin-left:42.5531914893617%;*margin-left:42.4468085106383%}.row-fluid .offset4{margin-left:36.170212765957444%;*margin-left:36.06382978723405%}.row-fluid .offset4:first-child{margin-left:34.04255319148936%;*margin-left:33.93617021276596%}.row-fluid .offset3{margin-left:27.659574468085104%;*margin-left:27.5531914893617%}.row-fluid .offset3:first-child{margin-left:25.53191489361702%;*margin-left:25.425531914893618%}.row-fluid .offset2{margin-left:19.148936170212764%;*margin-left:19.04255319148936%}.row-fluid .offset2:first-child{margin-left:17.02127659574468%;*margin-left:16.914893617021278%}.row-fluid .offset1{margin-left:10.638297872340425%;*margin-left:10.53191489361702%}.row-fluid .offset1:first-child{margin-left:8.51063829787234%;*margin-left:8.404255319148938%}[class*="span"].hide,.row-fluid [class*="span"].hide{display:none}[class*="span"].pull-right,.row-fluid [class*="span"].pull-right{float:right}.container{margin-right:auto;margin-left:auto;*zoom:1}.container:before,.container:after{display:table;line-height:0;content:""}.container:after{clear:both}.container-fluid{padding-right:20px;padding-left:20px;*zoom:1}.container-fluid:before,.container-fluid:after{display:table;line-height:0;content:""}.container-fluid:after{clear:both}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:21px;font-weight:200;line-height:30px}small{font-size:85%}strong{font-weight:bold}em{font-style:italic}cite{font-style:normal}.muted{color:#999}a.muted:hover,a.muted:focus{color:#808080}.text-warning{color:#c09853}a.text-warning:hover,a.text-warning:focus{color:#a47e3c}.text-error{color:#b94a48}a.text-error:hover,a.text-error:focus{color:#953b39}.text-info{color:#3a87ad}a.text-info:hover,a.text-info:focus{color:#2d6987}.text-success{color:#468847}a.text-success:hover,a.text-success:focus{color:#356635}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}h1,h2,h3,h4,h5,h6{margin:10px 0;font-family:inherit;font-weight:bold;line-height:20px;color:inherit;text-rendering:optimizelegibility}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{font-weight:normal;line-height:1;color:#999}h1,h2,h3{line-height:40px}h1{font-size:38.5px}h2{font-size:31.5px}h3{font-size:24.5px}h4{font-size:17.5px}h5{font-size:14px}h6{font-size:11.9px}h1 small{font-size:24.5px}h2 small{font-size:17.5px}h3 small{font-size:14px}h4 small{font-size:14px}.page-header{padding-bottom:9px;margin:20px 0 30px;border-bottom:1px solid #eee}ul,ol{padding:0;margin:0 0 10px 25px}ul ul,ul ol,ol ol,ol ul{margin-bottom:0}li{line-height:20px}ul.unstyled,ol.unstyled{margin-left:0;list-style:none}ul.inline,ol.inline{margin-left:0;list-style:none}ul.inline>li,ol.inline>li{display:inline-block;*display:inline;padding-right:5px;padding-left:5px;*zoom:1}dl{margin-bottom:20px}dt,dd{line-height:20px}dt{font-weight:bold}dd{margin-left:10px}.dl-horizontal{*zoom:1}.dl-horizontal:before,.dl-horizontal:after{display:table;line-height:0;content:""}.dl-horizontal:after{clear:both}.dl-horizontal dt{float:left;width:160px;overflow:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}hr{margin:20px 0;border:0;border-top:1px solid #eee;border-bottom:1px solid #fff}abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #999}abbr.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:0 0 0 15px;margin:0 0 20px;border-left:5px solid #eee}blockquote p{margin-bottom:0;font-size:17.5px;font-weight:300;line-height:1.25}blockquote small{display:block;line-height:20px;color:#999}blockquote small:before{content:'\2014 \00A0'}blockquote.pull-right{float:right;padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0}blockquote.pull-right p,blockquote.pull-right small{text-align:right}blockquote.pull-right small:before{content:''}blockquote.pull-right small:after{content:'\00A0 \2014'}q:before,q:after,blockquote:before,blockquote:after{content:""}address{display:block;margin-bottom:20px;font-style:normal;line-height:20px}code,pre{padding:0 3px 2px;font-family:Monaco,Menlo,Consolas,"Courier New",monospace;font-size:12px;color:#333;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}code{padding:2px 4px;color:#d14;white-space:nowrap;background-color:#f7f7f9;border:1px solid #e1e1e8}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:20px;word-break:break-all;word-wrap:break-word;white-space:pre;white-space:pre-wrap;background-color:#f5f5f5;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.15);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}pre.prettyprint{margin-bottom:20px}pre code{padding:0;color:inherit;white-space:pre;white-space:pre-wrap;background-color:transparent;border:0}.pre-scrollable{max-height:340px;overflow-y:scroll}form{margin:0 0 20px}fieldset{padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:40px;color:#333;border:0;border-bottom:1px solid #e5e5e5}legend small{font-size:15px;color:#999}label,input,button,select,textarea{font-size:14px;font-weight:normal;line-height:20px}input,button,select,textarea{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif}label{display:block;margin-bottom:5px}select,textarea,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input{display:inline-block;height:20px;padding:4px 6px;margin-bottom:10px;font-size:14px;line-height:20px;color:#555;vertical-align:middle;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}input,textarea,.uneditable-input{width:206px}textarea{height:auto}textarea,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input{background-color:#fff;border:1px solid #ccc;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-webkit-transition:border linear .2s,box-shadow linear .2s;-moz-transition:border linear .2s,box-shadow linear .2s;-o-transition:border linear .2s,box-shadow linear .2s;transition:border linear .2s,box-shadow linear .2s}textarea:focus,input[type="text"]:focus,input[type="password"]:focus,input[type="datetime"]:focus,input[type="datetime-local"]:focus,input[type="date"]:focus,input[type="month"]:focus,input[type="time"]:focus,input[type="week"]:focus,input[type="number"]:focus,input[type="email"]:focus,input[type="url"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="color"]:focus,.uneditable-input:focus{border-color:rgba(82,168,236,0.8);outline:0;outline:thin dotted \9;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(82,168,236,0.6);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(82,168,236,0.6);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(82,168,236,0.6)}input[type="radio"],input[type="checkbox"]{margin:4px 0 0;margin-top:1px \9;*margin-top:0;line-height:normal}input[type="file"],input[type="image"],input[type="submit"],input[type="reset"],input[type="button"],input[type="radio"],input[type="checkbox"]{width:auto}select,input[type="file"]{height:30px;*margin-top:4px;line-height:30px}select{width:220px;background-color:#fff;border:1px solid #ccc}select[multiple],select[size]{height:auto}select:focus,input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.uneditable-input,.uneditable-textarea{color:#999;cursor:not-allowed;background-color:#fcfcfc;border-color:#ccc;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.025);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,0.025);box-shadow:inset 0 1px 2px rgba(0,0,0,0.025)}.uneditable-input{overflow:hidden;white-space:nowrap}.uneditable-textarea{width:auto;height:auto}input:-moz-placeholder,textarea:-moz-placeholder{color:#999}input:-ms-input-placeholder,textarea:-ms-input-placeholder{color:#999}input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{color:#999}.radio,.checkbox{min-height:20px;padding-left:20px}.radio input[type="radio"],.checkbox input[type="checkbox"]{float:left;margin-left:-20px}.controls>.radio:first-child,.controls>.checkbox:first-child{padding-top:5px}.radio.inline,.checkbox.inline{display:inline-block;padding-top:5px;margin-bottom:0;vertical-align:middle}.radio.inline+.radio.inline,.checkbox.inline+.checkbox.inline{margin-left:10px}.input-mini{width:60px}.input-small{width:90px}.input-medium{width:150px}.input-large{width:210px}.input-xlarge{width:270px}.input-xxlarge{width:530px}input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input[class*="span"],.row-fluid input[class*="span"],.row-fluid select[class*="span"],.row-fluid textarea[class*="span"],.row-fluid .uneditable-input[class*="span"]{float:none;margin-left:0}.input-append input[class*="span"],.input-append .uneditable-input[class*="span"],.input-prepend input[class*="span"],.input-prepend .uneditable-input[class*="span"],.row-fluid input[class*="span"],.row-fluid select[class*="span"],.row-fluid textarea[class*="span"],.row-fluid .uneditable-input[class*="span"],.row-fluid .input-prepend [class*="span"],.row-fluid .input-append [class*="span"]{display:inline-block}input,textarea,.uneditable-input{margin-left:0}.controls-row [class*="span"]+[class*="span"]{margin-left:20px}input.span12,textarea.span12,.uneditable-input.span12{width:926px}input.span11,textarea.span11,.uneditable-input.span11{width:846px}input.span10,textarea.span10,.uneditable-input.span10{width:766px}input.span9,textarea.span9,.uneditable-input.span9{width:686px}input.span8,textarea.span8,.uneditable-input.span8{width:606px}input.span7,textarea.span7,.uneditable-input.span7{width:526px}input.span6,textarea.span6,.uneditable-input.span6{width:446px}input.span5,textarea.span5,.uneditable-input.span5{width:366px}input.span4,textarea.span4,.uneditable-input.span4{width:286px}input.span3,textarea.span3,.uneditable-input.span3{width:206px}input.span2,textarea.span2,.uneditable-input.span2{width:126px}input.span1,textarea.span1,.uneditable-input.span1{width:46px}.controls-row{*zoom:1}.controls-row:before,.controls-row:after{display:table;line-height:0;content:""}.controls-row:after{clear:both}.controls-row [class*="span"],.row-fluid .controls-row [class*="span"]{float:left}.controls-row .checkbox[class*="span"],.controls-row .radio[class*="span"]{padding-top:5px}input[disabled],select[disabled],textarea[disabled],input[readonly],select[readonly],textarea[readonly]{cursor:not-allowed;background-color:#eee}input[type="radio"][disabled],input[type="checkbox"][disabled],input[type="radio"][readonly],input[type="checkbox"][readonly]{background-color:transparent}.control-group.warning .control-label,.control-group.warning .help-block,.control-group.warning .help-inline{color:#c09853}.control-group.warning .checkbox,.control-group.warning .radio,.control-group.warning input,.control-group.warning select,.control-group.warning textarea{color:#c09853}.control-group.warning input,.control-group.warning select,.control-group.warning textarea{border-color:#c09853;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.control-group.warning input:focus,.control-group.warning select:focus,.control-group.warning textarea:focus{border-color:#a47e3c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #dbc59e;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #dbc59e;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #dbc59e}.control-group.warning .input-prepend .add-on,.control-group.warning .input-append .add-on{color:#c09853;background-color:#fcf8e3;border-color:#c09853}.control-group.error .control-label,.control-group.error .help-block,.control-group.error .help-inline{color:#b94a48}.control-group.error .checkbox,.control-group.error .radio,.control-group.error input,.control-group.error select,.control-group.error textarea{color:#b94a48}.control-group.error input,.control-group.error select,.control-group.error textarea{border-color:#b94a48;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.control-group.error input:focus,.control-group.error select:focus,.control-group.error textarea:focus{border-color:#953b39;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d59392;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d59392;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d59392}.control-group.error .input-prepend .add-on,.control-group.error .input-append .add-on{color:#b94a48;background-color:#f2dede;border-color:#b94a48}.control-group.success .control-label,.control-group.success .help-block,.control-group.success .help-inline{color:#468847}.control-group.success .checkbox,.control-group.success .radio,.control-group.success input,.control-group.success select,.control-group.success textarea{color:#468847}.control-group.success input,.control-group.success select,.control-group.success textarea{border-color:#468847;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.control-group.success input:focus,.control-group.success select:focus,.control-group.success textarea:focus{border-color:#356635;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7aba7b;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7aba7b;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7aba7b}.control-group.success .input-prepend .add-on,.control-group.success .input-append .add-on{color:#468847;background-color:#dff0d8;border-color:#468847}.control-group.info .control-label,.control-group.info .help-block,.control-group.info .help-inline{color:#3a87ad}.control-group.info .checkbox,.control-group.info .radio,.control-group.info input,.control-group.info select,.control-group.info textarea{color:#3a87ad}.control-group.info input,.control-group.info select,.control-group.info textarea{border-color:#3a87ad;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.control-group.info input:focus,.control-group.info select:focus,.control-group.info textarea:focus{border-color:#2d6987;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7ab5d3;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7ab5d3;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7ab5d3}.control-group.info .input-prepend .add-on,.control-group.info .input-append .add-on{color:#3a87ad;background-color:#d9edf7;border-color:#3a87ad}input:focus:invalid,textarea:focus:invalid,select:focus:invalid{color:#b94a48;border-color:#ee5f5b}input:focus:invalid:focus,textarea:focus:invalid:focus,select:focus:invalid:focus{border-color:#e9322d;-webkit-box-shadow:0 0 6px #f8b9b7;-moz-box-shadow:0 0 6px #f8b9b7;box-shadow:0 0 6px #f8b9b7}.form-actions{padding:19px 20px 20px;margin-top:20px;margin-bottom:20px;background-color:#f5f5f5;border-top:1px solid #e5e5e5;*zoom:1}.form-actions:before,.form-actions:after{display:table;line-height:0;content:""}.form-actions:after{clear:both}.help-block,.help-inline{color:#595959}.help-block{display:block;margin-bottom:10px}.help-inline{display:inline-block;*display:inline;padding-left:5px;vertical-align:middle;*zoom:1}.input-append,.input-prepend{display:inline-block;margin-bottom:10px;font-size:0;white-space:nowrap;vertical-align:middle}.input-append input,.input-prepend input,.input-append select,.input-prepend select,.input-append .uneditable-input,.input-prepend .uneditable-input,.input-append .dropdown-menu,.input-prepend .dropdown-menu,.input-append .popover,.input-prepend .popover{font-size:14px}.input-append input,.input-prepend input,.input-append select,.input-prepend select,.input-append .uneditable-input,.input-prepend .uneditable-input{position:relative;margin-bottom:0;*margin-left:0;vertical-align:top;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0}.input-append input:focus,.input-prepend input:focus,.input-append select:focus,.input-prepend select:focus,.input-append .uneditable-input:focus,.input-prepend .uneditable-input:focus{z-index:2}.input-append .add-on,.input-prepend .add-on{display:inline-block;width:auto;height:20px;min-width:16px;padding:4px 5px;font-size:14px;font-weight:normal;line-height:20px;text-align:center;text-shadow:0 1px 0 #fff;background-color:#eee;border:1px solid #ccc}.input-append .add-on,.input-prepend .add-on,.input-append .btn,.input-prepend .btn,.input-append .btn-group>.dropdown-toggle,.input-prepend .btn-group>.dropdown-toggle{vertical-align:top;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.input-append .active,.input-prepend .active{background-color:#a9dba9;border-color:#46a546}.input-prepend .add-on,.input-prepend .btn{margin-right:-1px}.input-prepend .add-on:first-child,.input-prepend .btn:first-child{-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px}.input-append input,.input-append select,.input-append .uneditable-input{-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px}.input-append input+.btn-group .btn:last-child,.input-append select+.btn-group .btn:last-child,.input-append .uneditable-input+.btn-group .btn:last-child{-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0}.input-append .add-on,.input-append .btn,.input-append .btn-group{margin-left:-1px}.input-append .add-on:last-child,.input-append .btn:last-child,.input-append .btn-group:last-child>.dropdown-toggle{-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0}.input-prepend.input-append input,.input-prepend.input-append select,.input-prepend.input-append .uneditable-input{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.input-prepend.input-append input+.btn-group .btn,.input-prepend.input-append select+.btn-group .btn,.input-prepend.input-append .uneditable-input+.btn-group .btn{-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0}.input-prepend.input-append .add-on:first-child,.input-prepend.input-append .btn:first-child{margin-right:-1px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px}.input-prepend.input-append .add-on:last-child,.input-prepend.input-append .btn:last-child{margin-left:-1px;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0}.input-prepend.input-append .btn-group:first-child{margin-left:0}input.search-query{padding-right:14px;padding-right:4px \9;padding-left:14px;padding-left:4px \9;margin-bottom:0;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px}.form-search .input-append .search-query,.form-search .input-prepend .search-query{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.form-search .input-append .search-query{-webkit-border-radius:14px 0 0 14px;-moz-border-radius:14px 0 0 14px;border-radius:14px 0 0 14px}.form-search .input-append .btn{-webkit-border-radius:0 14px 14px 0;-moz-border-radius:0 14px 14px 0;border-radius:0 14px 14px 0}.form-search .input-prepend .search-query{-webkit-border-radius:0 14px 14px 0;-moz-border-radius:0 14px 14px 0;border-radius:0 14px 14px 0}.form-search .input-prepend .btn{-webkit-border-radius:14px 0 0 14px;-moz-border-radius:14px 0 0 14px;border-radius:14px 0 0 14px}.form-search input,.form-inline input,.form-horizontal input,.form-search textarea,.form-inline textarea,.form-horizontal textarea,.form-search select,.form-inline select,.form-horizontal select,.form-search .help-inline,.form-inline .help-inline,.form-horizontal .help-inline,.form-search .uneditable-input,.form-inline .uneditable-input,.form-horizontal .uneditable-input,.form-search .input-prepend,.form-inline .input-prepend,.form-horizontal .input-prepend,.form-search .input-append,.form-inline .input-append,.form-horizontal .input-append{display:inline-block;*display:inline;margin-bottom:0;vertical-align:middle;*zoom:1}.form-search .hide,.form-inline .hide,.form-horizontal .hide{display:none}.form-search label,.form-inline label,.form-search .btn-group,.form-inline .btn-group{display:inline-block}.form-search .input-append,.form-inline .input-append,.form-search .input-prepend,.form-inline .input-prepend{margin-bottom:0}.form-search .radio,.form-search .checkbox,.form-inline .radio,.form-inline .checkbox{padding-left:0;margin-bottom:0;vertical-align:middle}.form-search .radio input[type="radio"],.form-search .checkbox input[type="checkbox"],.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{float:left;margin-right:3px;margin-left:0}.control-group{margin-bottom:10px}legend+.control-group{margin-top:20px;-webkit-margin-top-collapse:separate}.form-horizontal .control-group{margin-bottom:20px;*zoom:1}.form-horizontal .control-group:before,.form-horizontal .control-group:after{display:table;line-height:0;content:""}.form-horizontal .control-group:after{clear:both}.form-horizontal .control-label{float:left;width:160px;padding-top:5px;text-align:right}.form-horizontal .controls{*display:inline-block;*padding-left:20px;margin-left:180px;*margin-left:0}.form-horizontal .controls:first-child{*padding-left:180px}.form-horizontal .help-block{margin-bottom:0}.form-horizontal input+.help-block,.form-horizontal select+.help-block,.form-horizontal textarea+.help-block,.form-horizontal .uneditable-input+.help-block,.form-horizontal .input-prepend+.help-block,.form-horizontal .input-append+.help-block{margin-top:10px}.form-horizontal .form-actions{padding-left:180px}table{max-width:100%;background-color:transparent;border-collapse:collapse;border-spacing:0}.table{width:100%;margin-bottom:20px}.table th,.table td{padding:8px;line-height:20px;text-align:left;vertical-align:top;border-top:1px solid #ddd}.table th{font-weight:bold}.table thead th{vertical-align:bottom}.table caption+thead tr:first-child th,.table caption+thead tr:first-child td,.table colgroup+thead tr:first-child th,.table colgroup+thead tr:first-child td,.table thead:first-child tr:first-child th,.table thead:first-child tr:first-child td{border-top:0}.table tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed th,.table-condensed td{padding:4px 5px}.table-bordered{border:1px solid #ddd;border-collapse:separate;*border-collapse:collapse;border-left:0;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.table-bordered th,.table-bordered td{border-left:1px solid #ddd}.table-bordered caption+thead tr:first-child th,.table-bordered caption+tbody tr:first-child th,.table-bordered caption+tbody tr:first-child td,.table-bordered colgroup+thead tr:first-child th,.table-bordered colgroup+tbody tr:first-child th,.table-bordered colgroup+tbody tr:first-child td,.table-bordered thead:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child td{border-top:0}.table-bordered thead:first-child tr:first-child>th:first-child,.table-bordered tbody:first-child tr:first-child>td:first-child,.table-bordered tbody:first-child tr:first-child>th:first-child{-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-topleft:4px}.table-bordered thead:first-child tr:first-child>th:last-child,.table-bordered tbody:first-child tr:first-child>td:last-child,.table-bordered tbody:first-child tr:first-child>th:last-child{-webkit-border-top-right-radius:4px;border-top-right-radius:4px;-moz-border-radius-topright:4px}.table-bordered thead:last-child tr:last-child>th:first-child,.table-bordered tbody:last-child tr:last-child>td:first-child,.table-bordered tbody:last-child tr:last-child>th:first-child,.table-bordered tfoot:last-child tr:last-child>td:first-child,.table-bordered tfoot:last-child tr:last-child>th:first-child{-webkit-border-bottom-left-radius:4px;border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px}.table-bordered thead:last-child tr:last-child>th:last-child,.table-bordered tbody:last-child tr:last-child>td:last-child,.table-bordered tbody:last-child tr:last-child>th:last-child,.table-bordered tfoot:last-child tr:last-child>td:last-child,.table-bordered tfoot:last-child tr:last-child>th:last-child{-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px}.table-bordered tfoot+tbody:last-child tr:last-child td:first-child{-webkit-border-bottom-left-radius:0;border-bottom-left-radius:0;-moz-border-radius-bottomleft:0}.table-bordered tfoot+tbody:last-child tr:last-child td:last-child{-webkit-border-bottom-right-radius:0;border-bottom-right-radius:0;-moz-border-radius-bottomright:0}.table-bordered caption+thead tr:first-child th:first-child,.table-bordered caption+tbody tr:first-child td:first-child,.table-bordered colgroup+thead tr:first-child th:first-child,.table-bordered colgroup+tbody tr:first-child td:first-child{-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-topleft:4px}.table-bordered caption+thead tr:first-child th:last-child,.table-bordered caption+tbody tr:first-child td:last-child,.table-bordered colgroup+thead tr:first-child th:last-child,.table-bordered colgroup+tbody tr:first-child td:last-child{-webkit-border-top-right-radius:4px;border-top-right-radius:4px;-moz-border-radius-topright:4px}.table-striped tbody>tr:nth-child(odd)>td,.table-striped tbody>tr:nth-child(odd)>th{background-color:#f9f9f9}.table-hover tbody tr:hover>td,.table-hover tbody tr:hover>th{background-color:#f5f5f5}table td[class*="span"],table th[class*="span"],.row-fluid table td[class*="span"],.row-fluid table th[class*="span"]{display:table-cell;float:none;margin-left:0}.table td.span1,.table th.span1{float:none;width:44px;margin-left:0}.table td.span2,.table th.span2{float:none;width:124px;margin-left:0}.table td.span3,.table th.span3{float:none;width:204px;margin-left:0}.table td.span4,.table th.span4{float:none;width:284px;margin-left:0}.table td.span5,.table th.span5{float:none;width:364px;margin-left:0}.table td.span6,.table th.span6{float:none;width:444px;margin-left:0}.table td.span7,.table th.span7{float:none;width:524px;margin-left:0}.table td.span8,.table th.span8{float:none;width:604px;margin-left:0}.table td.span9,.table th.span9{float:none;width:684px;margin-left:0}.table td.span10,.table th.span10{float:none;width:764px;margin-left:0}.table td.span11,.table th.span11{float:none;width:844px;margin-left:0}.table td.span12,.table th.span12{float:none;width:924px;margin-left:0}.table tbody tr.success>td{background-color:#dff0d8}.table tbody tr.error>td{background-color:#f2dede}.table tbody tr.warning>td{background-color:#fcf8e3}.table tbody tr.info>td{background-color:#d9edf7}.table-hover tbody tr.success:hover>td{background-color:#d0e9c6}.table-hover tbody tr.error:hover>td{background-color:#ebcccc}.table-hover tbody tr.warning:hover>td{background-color:#faf2cc}.table-hover tbody tr.info:hover>td{background-color:#c4e3f3}[class^="icon-"],[class*=" icon-"]{display:inline-block;width:14px;height:14px;margin-top:1px;*margin-right:.3em;line-height:14px;vertical-align:text-top;background-image:url("../img/glyphicons-halflings.png");background-position:14px 14px;background-repeat:no-repeat}.icon-white,.nav-pills>.active>a>[class^="icon-"],.nav-pills>.active>a>[class*=" icon-"],.nav-list>.active>a>[class^="icon-"],.nav-list>.active>a>[class*=" icon-"],.navbar-inverse .nav>.active>a>[class^="icon-"],.navbar-inverse .nav>.active>a>[class*=" icon-"],.dropdown-menu>li>a:hover>[class^="icon-"],.dropdown-menu>li>a:focus>[class^="icon-"],.dropdown-menu>li>a:hover>[class*=" icon-"],.dropdown-menu>li>a:focus>[class*=" icon-"],.dropdown-menu>.active>a>[class^="icon-"],.dropdown-menu>.active>a>[class*=" icon-"],.dropdown-submenu:hover>a>[class^="icon-"],.dropdown-submenu:focus>a>[class^="icon-"],.dropdown-submenu:hover>a>[class*=" icon-"],.dropdown-submenu:focus>a>[class*=" icon-"]{background-image:url("../img/glyphicons-halflings-white.png")}.icon-glass{background-position:0 0}.icon-music{background-position:-24px 0}.icon-search{background-position:-48px 0}.icon-envelope{background-position:-72px 0}.icon-heart{background-position:-96px 0}.icon-star{background-position:-120px 0}.icon-star-empty{background-position:-144px 0}.icon-user{background-position:-168px 0}.icon-film{background-position:-192px 0}.icon-th-large{background-position:-216px 0}.icon-th{background-position:-240px 0}.icon-th-list{background-position:-264px 0}.icon-ok{background-position:-288px 0}.icon-remove{background-position:-312px 0}.icon-zoom-in{background-position:-336px 0}.icon-zoom-out{background-position:-360px 0}.icon-off{background-position:-384px 0}.icon-signal{background-position:-408px 0}.icon-cog{background-position:-432px 0}.icon-trash{background-position:-456px 0}.icon-home{background-position:0 -24px}.icon-file{background-position:-24px -24px}.icon-time{background-position:-48px -24px}.icon-road{background-position:-72px -24px}.icon-download-alt{background-position:-96px -24px}.icon-download{background-position:-120px -24px}.icon-upload{background-position:-144px -24px}.icon-inbox{background-position:-168px -24px}.icon-play-circle{background-position:-192px -24px}.icon-repeat{background-position:-216px -24px}.icon-refresh{background-position:-240px -24px}.icon-list-alt{background-position:-264px -24px}.icon-lock{background-position:-287px -24px}.icon-flag{background-position:-312px -24px}.icon-headphones{background-position:-336px -24px}.icon-volume-off{background-position:-360px -24px}.icon-volume-down{background-position:-384px -24px}.icon-volume-up{background-position:-408px -24px}.icon-qrcode{background-position:-432px -24px}.icon-barcode{background-position:-456px -24px}.icon-tag{background-position:0 -48px}.icon-tags{background-position:-25px -48px}.icon-book{background-position:-48px -48px}.icon-bookmark{background-position:-72px -48px}.icon-print{background-position:-96px -48px}.icon-camera{background-position:-120px -48px}.icon-font{background-position:-144px -48px}.icon-bold{background-position:-167px -48px}.icon-italic{background-position:-192px -48px}.icon-text-height{background-position:-216px -48px}.icon-text-width{background-position:-240px -48px}.icon-align-left{background-position:-264px -48px}.icon-align-center{background-position:-288px -48px}.icon-align-right{background-position:-312px -48px}.icon-align-justify{background-position:-336px -48px}.icon-list{background-position:-360px -48px}.icon-indent-left{background-position:-384px -48px}.icon-indent-right{background-position:-408px -48px}.icon-facetime-video{background-position:-432px -48px}.icon-picture{background-position:-456px -48px}.icon-pencil{background-position:0 -72px}.icon-map-marker{background-position:-24px -72px}.icon-adjust{background-position:-48px -72px}.icon-tint{background-position:-72px -72px}.icon-edit{background-position:-96px -72px}.icon-share{background-position:-120px -72px}.icon-check{background-position:-144px -72px}.icon-move{background-position:-168px -72px}.icon-step-backward{background-position:-192px -72px}.icon-fast-backward{background-position:-216px -72px}.icon-backward{background-position:-240px -72px}.icon-play{background-position:-264px -72px}.icon-pause{background-position:-288px -72px}.icon-stop{background-position:-312px -72px}.icon-forward{background-position:-336px -72px}.icon-fast-forward{background-position:-360px -72px}.icon-step-forward{background-position:-384px -72px}.icon-eject{background-position:-408px -72px}.icon-chevron-left{background-position:-432px -72px}.icon-chevron-right{background-position:-456px -72px}.icon-plus-sign{background-position:0 -96px}.icon-minus-sign{background-position:-24px -96px}.icon-remove-sign{background-position:-48px -96px}.icon-ok-sign{background-position:-72px -96px}.icon-question-sign{background-position:-96px -96px}.icon-info-sign{background-position:-120px -96px}.icon-screenshot{background-position:-144px -96px}.icon-remove-circle{background-position:-168px -96px}.icon-ok-circle{background-position:-192px -96px}.icon-ban-circle{background-position:-216px -96px}.icon-arrow-left{background-position:-240px -96px}.icon-arrow-right{background-position:-264px -96px}.icon-arrow-up{background-position:-289px -96px}.icon-arrow-down{background-position:-312px -96px}.icon-share-alt{background-position:-336px -96px}.icon-resize-full{background-position:-360px -96px}.icon-resize-small{background-position:-384px -96px}.icon-plus{background-position:-408px -96px}.icon-minus{background-position:-433px -96px}.icon-asterisk{background-position:-456px -96px}.icon-exclamation-sign{background-position:0 -120px}.icon-gift{background-position:-24px -120px}.icon-leaf{background-position:-48px -120px}.icon-fire{background-position:-72px -120px}.icon-eye-open{background-position:-96px -120px}.icon-eye-close{background-position:-120px -120px}.icon-warning-sign{background-position:-144px -120px}.icon-plane{background-position:-168px -120px}.icon-calendar{background-position:-192px -120px}.icon-random{width:16px;background-position:-216px -120px}.icon-comment{background-position:-240px -120px}.icon-magnet{background-position:-264px -120px}.icon-chevron-up{background-position:-288px -120px}.icon-chevron-down{background-position:-313px -119px}.icon-retweet{background-position:-336px -120px}.icon-shopping-cart{background-position:-360px -120px}.icon-folder-close{width:16px;background-position:-384px -120px}.icon-folder-open{width:16px;background-position:-408px -120px}.icon-resize-vertical{background-position:-432px -119px}.icon-resize-horizontal{background-position:-456px -118px}.icon-hdd{background-position:0 -144px}.icon-bullhorn{background-position:-24px -144px}.icon-bell{background-position:-48px -144px}.icon-certificate{background-position:-72px -144px}.icon-thumbs-up{background-position:-96px -144px}.icon-thumbs-down{background-position:-120px -144px}.icon-hand-right{background-position:-144px -144px}.icon-hand-left{background-position:-168px -144px}.icon-hand-up{background-position:-192px -144px}.icon-hand-down{background-position:-216px -144px}.icon-circle-arrow-right{background-position:-240px -144px}.icon-circle-arrow-left{background-position:-264px -144px}.icon-circle-arrow-up{background-position:-288px -144px}.icon-circle-arrow-down{background-position:-312px -144px}.icon-globe{background-position:-336px -144px}.icon-wrench{background-position:-360px -144px}.icon-tasks{background-position:-384px -144px}.icon-filter{background-position:-408px -144px}.icon-briefcase{background-position:-432px -144px}.icon-fullscreen{background-position:-456px -144px}.dropup,.dropdown{position:relative}.dropdown-toggle{*margin-bottom:-3px}.dropdown-toggle:active,.open .dropdown-toggle{outline:0}.caret{display:inline-block;width:0;height:0;vertical-align:top;border-top:4px solid #000;border-right:4px solid transparent;border-left:4px solid transparent;content:""}.dropdown .caret{margin-top:8px;margin-left:2px}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);*border-right-width:2px;*border-bottom-width:2px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);-moz-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2);-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{*width:100%;height:1px;margin:9px 1px;*margin:-5px 0 5px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #fff}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:20px;color:#333;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus,.dropdown-submenu:hover>a,.dropdown-submenu:focus>a{color:#fff;text-decoration:none;background-color:#0081c2;background-image:-moz-linear-gradient(top,#08c,#0077b3);background-image:-webkit-gradient(linear,0 0,0 100%,from(#08c),to(#0077b3));background-image:-webkit-linear-gradient(top,#08c,#0077b3);background-image:-o-linear-gradient(top,#08c,#0077b3);background-image:linear-gradient(to bottom,#08c,#0077b3);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc',endColorstr='#ff0077b3',GradientType=0)}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;background-color:#0081c2;background-image:-moz-linear-gradient(top,#08c,#0077b3);background-image:-webkit-gradient(linear,0 0,0 100%,from(#08c),to(#0077b3));background-image:-webkit-linear-gradient(top,#08c,#0077b3);background-image:-o-linear-gradient(top,#08c,#0077b3);background-image:linear-gradient(to bottom,#08c,#0077b3);background-repeat:repeat-x;outline:0;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc',endColorstr='#ff0077b3',GradientType=0)}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#999}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;cursor:default;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.open{*z-index:1000}.open>.dropdown-menu{display:block}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px solid #000;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px}.dropdown-submenu{position:relative}.dropdown-submenu>.dropdown-menu{top:0;left:100%;margin-top:-6px;margin-left:-1px;-webkit-border-radius:0 6px 6px 6px;-moz-border-radius:0 6px 6px 6px;border-radius:0 6px 6px 6px}.dropdown-submenu:hover>.dropdown-menu{display:block}.dropup .dropdown-submenu>.dropdown-menu{top:auto;bottom:0;margin-top:0;margin-bottom:-2px;-webkit-border-radius:5px 5px 5px 0;-moz-border-radius:5px 5px 5px 0;border-radius:5px 5px 5px 0}.dropdown-submenu>a:after{display:block;float:right;width:0;height:0;margin-top:5px;margin-right:-10px;border-color:transparent;border-left-color:#ccc;border-style:solid;border-width:5px 0 5px 5px;content:" "}.dropdown-submenu:hover>a:after{border-left-color:#fff}.dropdown-submenu.pull-left{float:none}.dropdown-submenu.pull-left>.dropdown-menu{left:-100%;margin-left:10px;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px}.dropdown .dropdown-menu .nav-header{padding-right:20px;padding-left:20px}.typeahead{z-index:1051;margin-top:2px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);box-shadow:inset 0 1px 1px rgba(0,0,0,0.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,0.15)}.well-large{padding:24px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.well-small{padding:9px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.fade{opacity:0;-webkit-transition:opacity .15s linear;-moz-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{position:relative;height:0;overflow:hidden;-webkit-transition:height .35s ease;-moz-transition:height .35s ease;-o-transition:height .35s ease;transition:height .35s ease}.collapse.in{height:auto}.close{float:right;font-size:20px;font-weight:bold;line-height:20px;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer;opacity:.4;filter:alpha(opacity=40)}button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none}.btn{display:inline-block;*display:inline;padding:4px 12px;margin-bottom:0;*margin-left:.3em;font-size:14px;line-height:20px;color:#333;text-align:center;text-shadow:0 1px 1px rgba(255,255,255,0.75);vertical-align:middle;cursor:pointer;background-color:#f5f5f5;*background-color:#e6e6e6;background-image:-moz-linear-gradient(top,#fff,#e6e6e6);background-image:-webkit-gradient(linear,0 0,0 100%,from(#fff),to(#e6e6e6));background-image:-webkit-linear-gradient(top,#fff,#e6e6e6);background-image:-o-linear-gradient(top,#fff,#e6e6e6);background-image:linear-gradient(to bottom,#fff,#e6e6e6);background-repeat:repeat-x;border:1px solid #ccc;*border:0;border-color:#e6e6e6 #e6e6e6 #bfbfbf;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);border-bottom-color:#b3b3b3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff',endColorstr='#ffe6e6e6',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);*zoom:1;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);box-shadow:inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05)}.btn:hover,.btn:focus,.btn:active,.btn.active,.btn.disabled,.btn[disabled]{color:#333;background-color:#e6e6e6;*background-color:#d9d9d9}.btn:active,.btn.active{background-color:#ccc \9}.btn:first-child{*margin-left:0}.btn:hover,.btn:focus{color:#333;text-decoration:none;background-position:0 -15px;-webkit-transition:background-position .1s linear;-moz-transition:background-position .1s linear;-o-transition:background-position .1s linear;transition:background-position .1s linear}.btn:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05);box-shadow:inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05)}.btn.disabled,.btn[disabled]{cursor:default;background-image:none;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.btn-large{padding:11px 19px;font-size:17.5px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.btn-large [class^="icon-"],.btn-large [class*=" icon-"]{margin-top:4px}.btn-small{padding:2px 10px;font-size:11.9px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.btn-small [class^="icon-"],.btn-small [class*=" icon-"]{margin-top:0}.btn-mini [class^="icon-"],.btn-mini [class*=" icon-"]{margin-top:-1px}.btn-mini{padding:0 6px;font-size:10.5px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.btn-block{display:block;width:100%;padding-right:0;padding-left:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.btn-block+.btn-block{margin-top:5px}input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%}.btn-primary.active,.btn-warning.active,.btn-danger.active,.btn-success.active,.btn-info.active,.btn-inverse.active{color:rgba(255,255,255,0.75)}.btn-primary{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#006dcc;*background-color:#04c;background-image:-moz-linear-gradient(top,#08c,#04c);background-image:-webkit-gradient(linear,0 0,0 100%,from(#08c),to(#04c));background-image:-webkit-linear-gradient(top,#08c,#04c);background-image:-o-linear-gradient(top,#08c,#04c);background-image:linear-gradient(to bottom,#08c,#04c);background-repeat:repeat-x;border-color:#04c #04c #002a80;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc',endColorstr='#ff0044cc',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-primary:hover,.btn-primary:focus,.btn-primary:active,.btn-primary.active,.btn-primary.disabled,.btn-primary[disabled]{color:#fff;background-color:#04c;*background-color:#003bb3}.btn-primary:active,.btn-primary.active{background-color:#039 \9}.btn-warning{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#faa732;*background-color:#f89406;background-image:-moz-linear-gradient(top,#fbb450,#f89406);background-image:-webkit-gradient(linear,0 0,0 100%,from(#fbb450),to(#f89406));background-image:-webkit-linear-gradient(top,#fbb450,#f89406);background-image:-o-linear-gradient(top,#fbb450,#f89406);background-image:linear-gradient(to bottom,#fbb450,#f89406);background-repeat:repeat-x;border-color:#f89406 #f89406 #ad6704;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450',endColorstr='#fff89406',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-warning:hover,.btn-warning:focus,.btn-warning:active,.btn-warning.active,.btn-warning.disabled,.btn-warning[disabled]{color:#fff;background-color:#f89406;*background-color:#df8505}.btn-warning:active,.btn-warning.active{background-color:#c67605 \9}.btn-danger{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#da4f49;*background-color:#bd362f;background-image:-moz-linear-gradient(top,#ee5f5b,#bd362f);background-image:-webkit-gradient(linear,0 0,0 100%,from(#ee5f5b),to(#bd362f));background-image:-webkit-linear-gradient(top,#ee5f5b,#bd362f);background-image:-o-linear-gradient(top,#ee5f5b,#bd362f);background-image:linear-gradient(to bottom,#ee5f5b,#bd362f);background-repeat:repeat-x;border-color:#bd362f #bd362f #802420;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b',endColorstr='#ffbd362f',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-danger:hover,.btn-danger:focus,.btn-danger:active,.btn-danger.active,.btn-danger.disabled,.btn-danger[disabled]{color:#fff;background-color:#bd362f;*background-color:#a9302a}.btn-danger:active,.btn-danger.active{background-color:#942a25 \9}.btn-success{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#5bb75b;*background-color:#51a351;background-image:-moz-linear-gradient(top,#62c462,#51a351);background-image:-webkit-gradient(linear,0 0,0 100%,from(#62c462),to(#51a351));background-image:-webkit-linear-gradient(top,#62c462,#51a351);background-image:-o-linear-gradient(top,#62c462,#51a351);background-image:linear-gradient(to bottom,#62c462,#51a351);background-repeat:repeat-x;border-color:#51a351 #51a351 #387038;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462',endColorstr='#ff51a351',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-success:hover,.btn-success:focus,.btn-success:active,.btn-success.active,.btn-success.disabled,.btn-success[disabled]{color:#fff;background-color:#51a351;*background-color:#499249}.btn-success:active,.btn-success.active{background-color:#408140 \9}.btn-info{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#49afcd;*background-color:#2f96b4;background-image:-moz-linear-gradient(top,#5bc0de,#2f96b4);background-image:-webkit-gradient(linear,0 0,0 100%,from(#5bc0de),to(#2f96b4));background-image:-webkit-linear-gradient(top,#5bc0de,#2f96b4);background-image:-o-linear-gradient(top,#5bc0de,#2f96b4);background-image:linear-gradient(to bottom,#5bc0de,#2f96b4);background-repeat:repeat-x;border-color:#2f96b4 #2f96b4 #1f6377;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de',endColorstr='#ff2f96b4',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-info:hover,.btn-info:focus,.btn-info:active,.btn-info.active,.btn-info.disabled,.btn-info[disabled]{color:#fff;background-color:#2f96b4;*background-color:#2a85a0}.btn-info:active,.btn-info.active{background-color:#24748c \9}.btn-inverse{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#363636;*background-color:#222;background-image:-moz-linear-gradient(top,#444,#222);background-image:-webkit-gradient(linear,0 0,0 100%,from(#444),to(#222));background-image:-webkit-linear-gradient(top,#444,#222);background-image:-o-linear-gradient(top,#444,#222);background-image:linear-gradient(to bottom,#444,#222);background-repeat:repeat-x;border-color:#222 #222 #000;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff444444',endColorstr='#ff222222',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-inverse:hover,.btn-inverse:focus,.btn-inverse:active,.btn-inverse.active,.btn-inverse.disabled,.btn-inverse[disabled]{color:#fff;background-color:#222;*background-color:#151515}.btn-inverse:active,.btn-inverse.active{background-color:#080808 \9}button.btn,input[type="submit"].btn{*padding-top:3px;*padding-bottom:3px}button.btn::-moz-focus-inner,input[type="submit"].btn::-moz-focus-inner{padding:0;border:0}button.btn.btn-large,input[type="submit"].btn.btn-large{*padding-top:7px;*padding-bottom:7px}button.btn.btn-small,input[type="submit"].btn.btn-small{*padding-top:3px;*padding-bottom:3px}button.btn.btn-mini,input[type="submit"].btn.btn-mini{*padding-top:1px;*padding-bottom:1px}.btn-link,.btn-link:active,.btn-link[disabled]{background-color:transparent;background-image:none;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.btn-link{color:#08c;cursor:pointer;border-color:transparent;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.btn-link:hover,.btn-link:focus{color:#005580;text-decoration:underline;background-color:transparent}.btn-link[disabled]:hover,.btn-link[disabled]:focus{color:#333;text-decoration:none}.btn-group{position:relative;display:inline-block;*display:inline;*margin-left:.3em;font-size:0;white-space:nowrap;vertical-align:middle;*zoom:1}.btn-group:first-child{*margin-left:0}.btn-group+.btn-group{margin-left:5px}.btn-toolbar{margin-top:10px;margin-bottom:10px;font-size:0}.btn-toolbar>.btn+.btn,.btn-toolbar>.btn-group+.btn,.btn-toolbar>.btn+.btn-group{margin-left:5px}.btn-group>.btn{position:relative;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.btn-group>.btn+.btn{margin-left:-1px}.btn-group>.btn,.btn-group>.dropdown-menu,.btn-group>.popover{font-size:14px}.btn-group>.btn-mini{font-size:10.5px}.btn-group>.btn-small{font-size:11.9px}.btn-group>.btn-large{font-size:17.5px}.btn-group>.btn:first-child{margin-left:0;-webkit-border-bottom-left-radius:4px;border-bottom-left-radius:4px;-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-bottomleft:4px;-moz-border-radius-topleft:4px}.btn-group>.btn:last-child,.btn-group>.dropdown-toggle{-webkit-border-top-right-radius:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px;-moz-border-radius-topright:4px;-moz-border-radius-bottomright:4px}.btn-group>.btn.large:first-child{margin-left:0;-webkit-border-bottom-left-radius:6px;border-bottom-left-radius:6px;-webkit-border-top-left-radius:6px;border-top-left-radius:6px;-moz-border-radius-bottomleft:6px;-moz-border-radius-topleft:6px}.btn-group>.btn.large:last-child,.btn-group>.large.dropdown-toggle{-webkit-border-top-right-radius:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;border-bottom-right-radius:6px;-moz-border-radius-topright:6px;-moz-border-radius-bottomright:6px}.btn-group>.btn:hover,.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active{z-index:2}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{*padding-top:5px;padding-right:8px;*padding-bottom:5px;padding-left:8px;-webkit-box-shadow:inset 1px 0 0 rgba(255,255,255,0.125),inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);-moz-box-shadow:inset 1px 0 0 rgba(255,255,255,0.125),inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);box-shadow:inset 1px 0 0 rgba(255,255,255,0.125),inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05)}.btn-group>.btn-mini+.dropdown-toggle{*padding-top:2px;padding-right:5px;*padding-bottom:2px;padding-left:5px}.btn-group>.btn-small+.dropdown-toggle{*padding-top:5px;*padding-bottom:4px}.btn-group>.btn-large+.dropdown-toggle{*padding-top:7px;padding-right:12px;*padding-bottom:7px;padding-left:12px}.btn-group.open .dropdown-toggle{background-image:none;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05);box-shadow:inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05)}.btn-group.open .btn.dropdown-toggle{background-color:#e6e6e6}.btn-group.open .btn-primary.dropdown-toggle{background-color:#04c}.btn-group.open .btn-warning.dropdown-toggle{background-color:#f89406}.btn-group.open .btn-danger.dropdown-toggle{background-color:#bd362f}.btn-group.open .btn-success.dropdown-toggle{background-color:#51a351}.btn-group.open .btn-info.dropdown-toggle{background-color:#2f96b4}.btn-group.open .btn-inverse.dropdown-toggle{background-color:#222}.btn .caret{margin-top:8px;margin-left:0}.btn-large .caret{margin-top:6px}.btn-large .caret{border-top-width:5px;border-right-width:5px;border-left-width:5px}.btn-mini .caret,.btn-small .caret{margin-top:8px}.dropup .btn-large .caret{border-bottom-width:5px}.btn-primary .caret,.btn-warning .caret,.btn-danger .caret,.btn-info .caret,.btn-success .caret,.btn-inverse .caret{border-top-color:#fff;border-bottom-color:#fff}.btn-group-vertical{display:inline-block;*display:inline;*zoom:1}.btn-group-vertical>.btn{display:block;float:none;max-width:100%;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.btn-group-vertical>.btn+.btn{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:first-child{-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0}.btn-group-vertical>.btn:last-child{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px}.btn-group-vertical>.btn-large:first-child{-webkit-border-radius:6px 6px 0 0;-moz-border-radius:6px 6px 0 0;border-radius:6px 6px 0 0}.btn-group-vertical>.btn-large:last-child{-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px}.alert{padding:8px 35px 8px 14px;margin-bottom:20px;text-shadow:0 1px 0 rgba(255,255,255,0.5);background-color:#fcf8e3;border:1px solid #fbeed5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.alert,.alert h4{color:#c09853}.alert h4{margin:0}.alert .close{position:relative;top:-2px;right:-21px;line-height:20px}.alert-success{color:#468847;background-color:#dff0d8;border-color:#d6e9c6}.alert-success h4{color:#468847}.alert-danger,.alert-error{color:#b94a48;background-color:#f2dede;border-color:#eed3d7}.alert-danger h4,.alert-error h4{color:#b94a48}.alert-info{color:#3a87ad;background-color:#d9edf7;border-color:#bce8f1}.alert-info h4{color:#3a87ad}.alert-block{padding-top:14px;padding-bottom:14px}.alert-block>p,.alert-block>ul{margin-bottom:0}.alert-block p+p{margin-top:5px}.nav{margin-bottom:20px;margin-left:0;list-style:none}.nav>li>a{display:block}.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eee}.nav>li>a>img{max-width:none}.nav>.pull-right{float:right}.nav-header{display:block;padding:3px 15px;font-size:11px;font-weight:bold;line-height:20px;color:#999;text-shadow:0 1px 0 rgba(255,255,255,0.5);text-transform:uppercase}.nav li+.nav-header{margin-top:9px}.nav-list{padding-right:15px;padding-left:15px;margin-bottom:0}.nav-list>li>a,.nav-list .nav-header{margin-right:-15px;margin-left:-15px;text-shadow:0 1px 0 rgba(255,255,255,0.5)}.nav-list>li>a{padding:3px 15px}.nav-list>.active>a,.nav-list>.active>a:hover,.nav-list>.active>a:focus{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.2);background-color:#08c}.nav-list [class^="icon-"],.nav-list [class*=" icon-"]{margin-right:2px}.nav-list .divider{*width:100%;height:1px;margin:9px 1px;*margin:-5px 0 5px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #fff}.nav-tabs,.nav-pills{*zoom:1}.nav-tabs:before,.nav-pills:before,.nav-tabs:after,.nav-pills:after{display:table;line-height:0;content:""}.nav-tabs:after,.nav-pills:after{clear:both}.nav-tabs>li,.nav-pills>li{float:left}.nav-tabs>li>a,.nav-pills>li>a{padding-right:12px;padding-left:12px;margin-right:2px;line-height:14px}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{margin-bottom:-1px}.nav-tabs>li>a{padding-top:8px;padding-bottom:8px;line-height:20px;border:1px solid transparent;-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover,.nav-tabs>li>a:focus{border-color:#eee #eee #ddd}.nav-tabs>.active>a,.nav-tabs>.active>a:hover,.nav-tabs>.active>a:focus{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.nav-pills>li>a{padding-top:8px;padding-bottom:8px;margin-top:2px;margin-bottom:2px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px}.nav-pills>.active>a,.nav-pills>.active>a:hover,.nav-pills>.active>a:focus{color:#fff;background-color:#08c}.nav-stacked>li{float:none}.nav-stacked>li>a{margin-right:0}.nav-tabs.nav-stacked{border-bottom:0}.nav-tabs.nav-stacked>li>a{border:1px solid #ddd;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.nav-tabs.nav-stacked>li:first-child>a{-webkit-border-top-right-radius:4px;border-top-right-radius:4px;-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-topright:4px;-moz-border-radius-topleft:4px}.nav-tabs.nav-stacked>li:last-child>a{-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px;-webkit-border-bottom-left-radius:4px;border-bottom-left-radius:4px;-moz-border-radius-bottomright:4px;-moz-border-radius-bottomleft:4px}.nav-tabs.nav-stacked>li>a:hover,.nav-tabs.nav-stacked>li>a:focus{z-index:2;border-color:#ddd}.nav-pills.nav-stacked>li>a{margin-bottom:3px}.nav-pills.nav-stacked>li:last-child>a{margin-bottom:1px}.nav-tabs .dropdown-menu{-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px}.nav-pills .dropdown-menu{-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.nav .dropdown-toggle .caret{margin-top:6px;border-top-color:#08c;border-bottom-color:#08c}.nav .dropdown-toggle:hover .caret,.nav .dropdown-toggle:focus .caret{border-top-color:#005580;border-bottom-color:#005580}.nav-tabs .dropdown-toggle .caret{margin-top:8px}.nav .active .dropdown-toggle .caret{border-top-color:#fff;border-bottom-color:#fff}.nav-tabs .active .dropdown-toggle .caret{border-top-color:#555;border-bottom-color:#555}.nav>.dropdown.active>a:hover,.nav>.dropdown.active>a:focus{cursor:pointer}.nav-tabs .open .dropdown-toggle,.nav-pills .open .dropdown-toggle,.nav>li.dropdown.open.active>a:hover,.nav>li.dropdown.open.active>a:focus{color:#fff;background-color:#999;border-color:#999}.nav li.dropdown.open .caret,.nav li.dropdown.open.active .caret,.nav li.dropdown.open a:hover .caret,.nav li.dropdown.open a:focus .caret{border-top-color:#fff;border-bottom-color:#fff;opacity:1;filter:alpha(opacity=100)}.tabs-stacked .open>a:hover,.tabs-stacked .open>a:focus{border-color:#999}.tabbable{*zoom:1}.tabbable:before,.tabbable:after{display:table;line-height:0;content:""}.tabbable:after{clear:both}.tab-content{overflow:auto}.tabs-below>.nav-tabs,.tabs-right>.nav-tabs,.tabs-left>.nav-tabs{border-bottom:0}.tab-content>.tab-pane,.pill-content>.pill-pane{display:none}.tab-content>.active,.pill-content>.active{display:block}.tabs-below>.nav-tabs{border-top:1px solid #ddd}.tabs-below>.nav-tabs>li{margin-top:-1px;margin-bottom:0}.tabs-below>.nav-tabs>li>a{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px}.tabs-below>.nav-tabs>li>a:hover,.tabs-below>.nav-tabs>li>a:focus{border-top-color:#ddd;border-bottom-color:transparent}.tabs-below>.nav-tabs>.active>a,.tabs-below>.nav-tabs>.active>a:hover,.tabs-below>.nav-tabs>.active>a:focus{border-color:transparent #ddd #ddd #ddd}.tabs-left>.nav-tabs>li,.tabs-right>.nav-tabs>li{float:none}.tabs-left>.nav-tabs>li>a,.tabs-right>.nav-tabs>li>a{min-width:74px;margin-right:0;margin-bottom:3px}.tabs-left>.nav-tabs{float:left;margin-right:19px;border-right:1px solid #ddd}.tabs-left>.nav-tabs>li>a{margin-right:-1px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px}.tabs-left>.nav-tabs>li>a:hover,.tabs-left>.nav-tabs>li>a:focus{border-color:#eee #ddd #eee #eee}.tabs-left>.nav-tabs .active>a,.tabs-left>.nav-tabs .active>a:hover,.tabs-left>.nav-tabs .active>a:focus{border-color:#ddd transparent #ddd #ddd;*border-right-color:#fff}.tabs-right>.nav-tabs{float:right;margin-left:19px;border-left:1px solid #ddd}.tabs-right>.nav-tabs>li>a{margin-left:-1px;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0}.tabs-right>.nav-tabs>li>a:hover,.tabs-right>.nav-tabs>li>a:focus{border-color:#eee #eee #eee #ddd}.tabs-right>.nav-tabs .active>a,.tabs-right>.nav-tabs .active>a:hover,.tabs-right>.nav-tabs .active>a:focus{border-color:#ddd #ddd #ddd transparent;*border-left-color:#fff}.nav>.disabled>a{color:#999}.nav>.disabled>a:hover,.nav>.disabled>a:focus{text-decoration:none;cursor:default;background-color:transparent}.navbar{*position:relative;*z-index:2;margin-bottom:20px;overflow:visible}.navbar-inner{min-height:40px;padding-right:20px;padding-left:20px;background-color:#fafafa;background-image:-moz-linear-gradient(top,#fff,#f2f2f2);background-image:-webkit-gradient(linear,0 0,0 100%,from(#fff),to(#f2f2f2));background-image:-webkit-linear-gradient(top,#fff,#f2f2f2);background-image:-o-linear-gradient(top,#fff,#f2f2f2);background-image:linear-gradient(to bottom,#fff,#f2f2f2);background-repeat:repeat-x;border:1px solid #d4d4d4;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff',endColorstr='#fff2f2f2',GradientType=0);*zoom:1;-webkit-box-shadow:0 1px 4px rgba(0,0,0,0.065);-moz-box-shadow:0 1px 4px rgba(0,0,0,0.065);box-shadow:0 1px 4px rgba(0,0,0,0.065)}.navbar-inner:before,.navbar-inner:after{display:table;line-height:0;content:""}.navbar-inner:after{clear:both}.navbar .container{width:auto}.nav-collapse.collapse{height:auto;overflow:visible}.navbar .brand{display:block;float:left;padding:10px 20px 10px;margin-left:-20px;font-size:20px;font-weight:200;color:#777;text-shadow:0 1px 0 #fff}.navbar .brand:hover,.navbar .brand:focus{text-decoration:none}.navbar-text{margin-bottom:0;line-height:40px;color:#777}.navbar-link{color:#777}.navbar-link:hover,.navbar-link:focus{color:#333}.navbar .divider-vertical{height:40px;margin:0 9px;border-right:1px solid #fff;border-left:1px solid #f2f2f2}.navbar .btn,.navbar .btn-group{margin-top:5px}.navbar .btn-group .btn,.navbar .input-prepend .btn,.navbar .input-append .btn,.navbar .input-prepend .btn-group,.navbar .input-append .btn-group{margin-top:0}.navbar-form{margin-bottom:0;*zoom:1}.navbar-form:before,.navbar-form:after{display:table;line-height:0;content:""}.navbar-form:after{clear:both}.navbar-form input,.navbar-form select,.navbar-form .radio,.navbar-form .checkbox{margin-top:5px}.navbar-form input,.navbar-form select,.navbar-form .btn{display:inline-block;margin-bottom:0}.navbar-form input[type="image"],.navbar-form input[type="checkbox"],.navbar-form input[type="radio"]{margin-top:3px}.navbar-form .input-append,.navbar-form .input-prepend{margin-top:5px;white-space:nowrap}.navbar-form .input-append input,.navbar-form .input-prepend input{margin-top:0}.navbar-search{position:relative;float:left;margin-top:5px;margin-bottom:0}.navbar-search .search-query{padding:4px 14px;margin-bottom:0;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;font-weight:normal;line-height:1;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px}.navbar-static-top{position:static;margin-bottom:0}.navbar-static-top .navbar-inner{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030;margin-bottom:0}.navbar-fixed-top .navbar-inner,.navbar-static-top .navbar-inner{border-width:0 0 1px}.navbar-fixed-bottom .navbar-inner{border-width:1px 0 0}.navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner{padding-right:0;padding-left:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px}.navbar-fixed-top{top:0}.navbar-fixed-top .navbar-inner,.navbar-static-top .navbar-inner{-webkit-box-shadow:0 1px 10px rgba(0,0,0,0.1);-moz-box-shadow:0 1px 10px rgba(0,0,0,0.1);box-shadow:0 1px 10px rgba(0,0,0,0.1)}.navbar-fixed-bottom{bottom:0}.navbar-fixed-bottom .navbar-inner{-webkit-box-shadow:0 -1px 10px rgba(0,0,0,0.1);-moz-box-shadow:0 -1px 10px rgba(0,0,0,0.1);box-shadow:0 -1px 10px rgba(0,0,0,0.1)}.navbar .nav{position:relative;left:0;display:block;float:left;margin:0 10px 0 0}.navbar .nav.pull-right{float:right;margin-right:0}.navbar .nav>li{float:left}.navbar .nav>li>a{float:none;padding:10px 15px 10px;color:#777;text-decoration:none;text-shadow:0 1px 0 #fff}.navbar .nav .dropdown-toggle .caret{margin-top:8px}.navbar .nav>li>a:focus,.navbar .nav>li>a:hover{color:#333;text-decoration:none;background-color:transparent}.navbar .nav>.active>a,.navbar .nav>.active>a:hover,.navbar .nav>.active>a:focus{color:#555;text-decoration:none;background-color:#e5e5e5;-webkit-box-shadow:inset 0 3px 8px rgba(0,0,0,0.125);-moz-box-shadow:inset 0 3px 8px rgba(0,0,0,0.125);box-shadow:inset 0 3px 8px rgba(0,0,0,0.125)}.navbar .btn-navbar{display:none;float:right;padding:7px 10px;margin-right:5px;margin-left:5px;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#ededed;*background-color:#e5e5e5;background-image:-moz-linear-gradient(top,#f2f2f2,#e5e5e5);background-image:-webkit-gradient(linear,0 0,0 100%,from(#f2f2f2),to(#e5e5e5));background-image:-webkit-linear-gradient(top,#f2f2f2,#e5e5e5);background-image:-o-linear-gradient(top,#f2f2f2,#e5e5e5);background-image:linear-gradient(to bottom,#f2f2f2,#e5e5e5);background-repeat:repeat-x;border-color:#e5e5e5 #e5e5e5 #bfbfbf;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2f2f2',endColorstr='#ffe5e5e5',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.075);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.075);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.075)}.navbar .btn-navbar:hover,.navbar .btn-navbar:focus,.navbar .btn-navbar:active,.navbar .btn-navbar.active,.navbar .btn-navbar.disabled,.navbar .btn-navbar[disabled]{color:#fff;background-color:#e5e5e5;*background-color:#d9d9d9}.navbar .btn-navbar:active,.navbar .btn-navbar.active{background-color:#ccc \9}.navbar .btn-navbar .icon-bar{display:block;width:18px;height:2px;background-color:#f5f5f5;-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px;-webkit-box-shadow:0 1px 0 rgba(0,0,0,0.25);-moz-box-shadow:0 1px 0 rgba(0,0,0,0.25);box-shadow:0 1px 0 rgba(0,0,0,0.25)}.btn-navbar .icon-bar+.icon-bar{margin-top:3px}.navbar .nav>li>.dropdown-menu:before{position:absolute;top:-7px;left:9px;display:inline-block;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-left:7px solid transparent;border-bottom-color:rgba(0,0,0,0.2);content:''}.navbar .nav>li>.dropdown-menu:after{position:absolute;top:-6px;left:10px;display:inline-block;border-right:6px solid transparent;border-bottom:6px solid #fff;border-left:6px solid transparent;content:''}.navbar-fixed-bottom .nav>li>.dropdown-menu:before{top:auto;bottom:-7px;border-top:7px solid #ccc;border-bottom:0;border-top-color:rgba(0,0,0,0.2)}.navbar-fixed-bottom .nav>li>.dropdown-menu:after{top:auto;bottom:-6px;border-top:6px solid #fff;border-bottom:0}.navbar .nav li.dropdown>a:hover .caret,.navbar .nav li.dropdown>a:focus .caret{border-top-color:#333;border-bottom-color:#333}.navbar .nav li.dropdown.open>.dropdown-toggle,.navbar .nav li.dropdown.active>.dropdown-toggle,.navbar .nav li.dropdown.open.active>.dropdown-toggle{color:#555;background-color:#e5e5e5}.navbar .nav li.dropdown>.dropdown-toggle .caret{border-top-color:#777;border-bottom-color:#777}.navbar .nav li.dropdown.open>.dropdown-toggle .caret,.navbar .nav li.dropdown.active>.dropdown-toggle .caret,.navbar .nav li.dropdown.open.active>.dropdown-toggle .caret{border-top-color:#555;border-bottom-color:#555}.navbar .pull-right>li>.dropdown-menu,.navbar .nav>li>.dropdown-menu.pull-right{right:0;left:auto}.navbar .pull-right>li>.dropdown-menu:before,.navbar .nav>li>.dropdown-menu.pull-right:before{right:12px;left:auto}.navbar .pull-right>li>.dropdown-menu:after,.navbar .nav>li>.dropdown-menu.pull-right:after{right:13px;left:auto}.navbar .pull-right>li>.dropdown-menu .dropdown-menu,.navbar .nav>li>.dropdown-menu.pull-right .dropdown-menu{right:100%;left:auto;margin-right:-1px;margin-left:0;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px}.navbar-inverse .navbar-inner{background-color:#1b1b1b;background-image:-moz-linear-gradient(top,#222,#111);background-image:-webkit-gradient(linear,0 0,0 100%,from(#222),to(#111));background-image:-webkit-linear-gradient(top,#222,#111);background-image:-o-linear-gradient(top,#222,#111);background-image:linear-gradient(to bottom,#222,#111);background-repeat:repeat-x;border-color:#252525;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff222222',endColorstr='#ff111111',GradientType=0)}.navbar-inverse .brand,.navbar-inverse .nav>li>a{color:#999;text-shadow:0 -1px 0 rgba(0,0,0,0.25)}.navbar-inverse .brand:hover,.navbar-inverse .nav>li>a:hover,.navbar-inverse .brand:focus,.navbar-inverse .nav>li>a:focus{color:#fff}.navbar-inverse .brand{color:#999}.navbar-inverse .navbar-text{color:#999}.navbar-inverse .nav>li>a:focus,.navbar-inverse .nav>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .nav .active>a,.navbar-inverse .nav .active>a:hover,.navbar-inverse .nav .active>a:focus{color:#fff;background-color:#111}.navbar-inverse .navbar-link{color:#999}.navbar-inverse .navbar-link:hover,.navbar-inverse .navbar-link:focus{color:#fff}.navbar-inverse .divider-vertical{border-right-color:#222;border-left-color:#111}.navbar-inverse .nav li.dropdown.open>.dropdown-toggle,.navbar-inverse .nav li.dropdown.active>.dropdown-toggle,.navbar-inverse .nav li.dropdown.open.active>.dropdown-toggle{color:#fff;background-color:#111}.navbar-inverse .nav li.dropdown>a:hover .caret,.navbar-inverse .nav li.dropdown>a:focus .caret{border-top-color:#fff;border-bottom-color:#fff}.navbar-inverse .nav li.dropdown>.dropdown-toggle .caret{border-top-color:#999;border-bottom-color:#999}.navbar-inverse .nav li.dropdown.open>.dropdown-toggle .caret,.navbar-inverse .nav li.dropdown.active>.dropdown-toggle .caret,.navbar-inverse .nav li.dropdown.open.active>.dropdown-toggle .caret{border-top-color:#fff;border-bottom-color:#fff}.navbar-inverse .navbar-search .search-query{color:#fff;background-color:#515151;border-color:#111;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1),0 1px 0 rgba(255,255,255,0.15);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1),0 1px 0 rgba(255,255,255,0.15);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1),0 1px 0 rgba(255,255,255,0.15);-webkit-transition:none;-moz-transition:none;-o-transition:none;transition:none}.navbar-inverse .navbar-search .search-query:-moz-placeholder{color:#ccc}.navbar-inverse .navbar-search .search-query:-ms-input-placeholder{color:#ccc}.navbar-inverse .navbar-search .search-query::-webkit-input-placeholder{color:#ccc}.navbar-inverse .navbar-search .search-query:focus,.navbar-inverse .navbar-search .search-query.focused{padding:5px 15px;color:#333;text-shadow:0 1px 0 #fff;background-color:#fff;border:0;outline:0;-webkit-box-shadow:0 0 3px rgba(0,0,0,0.15);-moz-box-shadow:0 0 3px rgba(0,0,0,0.15);box-shadow:0 0 3px rgba(0,0,0,0.15)}.navbar-inverse .btn-navbar{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#0e0e0e;*background-color:#040404;background-image:-moz-linear-gradient(top,#151515,#040404);background-image:-webkit-gradient(linear,0 0,0 100%,from(#151515),to(#040404));background-image:-webkit-linear-gradient(top,#151515,#040404);background-image:-o-linear-gradient(top,#151515,#040404);background-image:linear-gradient(to bottom,#151515,#040404);background-repeat:repeat-x;border-color:#040404 #040404 #000;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff151515',endColorstr='#ff040404',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.navbar-inverse .btn-navbar:hover,.navbar-inverse .btn-navbar:focus,.navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active,.navbar-inverse .btn-navbar.disabled,.navbar-inverse .btn-navbar[disabled]{color:#fff;background-color:#040404;*background-color:#000}.navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active{background-color:#000 \9}.breadcrumb{padding:8px 15px;margin:0 0 20px;list-style:none;background-color:#f5f5f5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.breadcrumb>li{display:inline-block;*display:inline;text-shadow:0 1px 0 #fff;*zoom:1}.breadcrumb>li>.divider{padding:0 5px;color:#ccc}.breadcrumb>.active{color:#999}.pagination{margin:20px 0}.pagination ul{display:inline-block;*display:inline;margin-bottom:0;margin-left:0;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;*zoom:1;-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.05);-moz-box-shadow:0 1px 2px rgba(0,0,0,0.05);box-shadow:0 1px 2px rgba(0,0,0,0.05)}.pagination ul>li{display:inline}.pagination ul>li>a,.pagination ul>li>span{float:left;padding:4px 12px;line-height:20px;text-decoration:none;background-color:#fff;border:1px solid #ddd;border-left-width:0}.pagination ul>li>a:hover,.pagination ul>li>a:focus,.pagination ul>.active>a,.pagination ul>.active>span{background-color:#f5f5f5}.pagination ul>.active>a,.pagination ul>.active>span{color:#999;cursor:default}.pagination ul>.disabled>span,.pagination ul>.disabled>a,.pagination ul>.disabled>a:hover,.pagination ul>.disabled>a:focus{color:#999;cursor:default;background-color:transparent}.pagination ul>li:first-child>a,.pagination ul>li:first-child>span{border-left-width:1px;-webkit-border-bottom-left-radius:4px;border-bottom-left-radius:4px;-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-bottomleft:4px;-moz-border-radius-topleft:4px}.pagination ul>li:last-child>a,.pagination ul>li:last-child>span{-webkit-border-top-right-radius:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px;-moz-border-radius-topright:4px;-moz-border-radius-bottomright:4px}.pagination-centered{text-align:center}.pagination-right{text-align:right}.pagination-large ul>li>a,.pagination-large ul>li>span{padding:11px 19px;font-size:17.5px}.pagination-large ul>li:first-child>a,.pagination-large ul>li:first-child>span{-webkit-border-bottom-left-radius:6px;border-bottom-left-radius:6px;-webkit-border-top-left-radius:6px;border-top-left-radius:6px;-moz-border-radius-bottomleft:6px;-moz-border-radius-topleft:6px}.pagination-large ul>li:last-child>a,.pagination-large ul>li:last-child>span{-webkit-border-top-right-radius:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;border-bottom-right-radius:6px;-moz-border-radius-topright:6px;-moz-border-radius-bottomright:6px}.pagination-mini ul>li:first-child>a,.pagination-small ul>li:first-child>a,.pagination-mini ul>li:first-child>span,.pagination-small ul>li:first-child>span{-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px;-webkit-border-top-left-radius:3px;border-top-left-radius:3px;-moz-border-radius-bottomleft:3px;-moz-border-radius-topleft:3px}.pagination-mini ul>li:last-child>a,.pagination-small ul>li:last-child>a,.pagination-mini ul>li:last-child>span,.pagination-small ul>li:last-child>span{-webkit-border-top-right-radius:3px;border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;border-bottom-right-radius:3px;-moz-border-radius-topright:3px;-moz-border-radius-bottomright:3px}.pagination-small ul>li>a,.pagination-small ul>li>span{padding:2px 10px;font-size:11.9px}.pagination-mini ul>li>a,.pagination-mini ul>li>span{padding:0 6px;font-size:10.5px}.pager{margin:20px 0;text-align:center;list-style:none;*zoom:1}.pager:before,.pager:after{display:table;line-height:0;content:""}.pager:after{clear:both}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px}.pager li>a:hover,.pager li>a:focus{text-decoration:none;background-color:#f5f5f5}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>a:focus,.pager .disabled>span{color:#999;cursor:default;background-color:#fff}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop,.modal-backdrop.fade.in{opacity:.8;filter:alpha(opacity=80)}.modal{position:fixed;top:10%;left:50%;z-index:1050;width:560px;margin-left:-280px;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,0.3);*border:1px solid #999;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;outline:0;-webkit-box-shadow:0 3px 7px rgba(0,0,0,0.3);-moz-box-shadow:0 3px 7px rgba(0,0,0,0.3);box-shadow:0 3px 7px rgba(0,0,0,0.3);-webkit-background-clip:padding-box;-moz-background-clip:padding-box;background-clip:padding-box}.modal.fade{top:-25%;-webkit-transition:opacity .3s linear,top .3s ease-out;-moz-transition:opacity .3s linear,top .3s ease-out;-o-transition:opacity .3s linear,top .3s ease-out;transition:opacity .3s linear,top .3s ease-out}.modal.fade.in{top:10%}.modal-header{padding:9px 15px;border-bottom:1px solid #eee}.modal-header .close{margin-top:2px}.modal-header h3{margin:0;line-height:30px}.modal-body{position:relative;max-height:400px;padding:15px;overflow-y:auto}.modal-form{margin-bottom:0}.modal-footer{padding:14px 15px 15px;margin-bottom:0;text-align:right;background-color:#f5f5f5;border-top:1px solid #ddd;-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;*zoom:1;-webkit-box-shadow:inset 0 1px 0 #fff;-moz-box-shadow:inset 0 1px 0 #fff;box-shadow:inset 0 1px 0 #fff}.modal-footer:before,.modal-footer:after{display:table;line-height:0;content:""}.modal-footer:after{clear:both}.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.tooltip{position:absolute;z-index:1030;display:block;font-size:11px;line-height:1.4;opacity:0;filter:alpha(opacity=0);visibility:visible}.tooltip.in{opacity:.8;filter:alpha(opacity=80)}.tooltip.top{padding:5px 0;margin-top:-3px}.tooltip.right{padding:0 5px;margin-left:3px}.tooltip.bottom{padding:5px 0;margin-top:3px}.tooltip.left{padding:0 5px;margin-left:-3px}.tooltip-inner{max-width:200px;padding:8px;color:#fff;text-align:center;text-decoration:none;background-color:#000;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-top-color:#000;border-width:5px 5px 0}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-right-color:#000;border-width:5px 5px 5px 0}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-left-color:#000;border-width:5px 0 5px 5px}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-bottom-color:#000;border-width:0 5px 5px}.popover{position:absolute;top:0;left:0;z-index:1010;display:none;max-width:276px;padding:1px;text-align:left;white-space:normal;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);-moz-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2);-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{padding:8px 14px;margin:0;font-size:14px;font-weight:normal;line-height:18px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;-webkit-border-radius:5px 5px 0 0;-moz-border-radius:5px 5px 0 0;border-radius:5px 5px 0 0}.popover-title:empty{display:none}.popover-content{padding:9px 14px}.popover .arrow,.popover .arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover .arrow{border-width:11px}.popover .arrow:after{border-width:10px;content:""}.popover.top .arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,0.25);border-bottom-width:0}.popover.top .arrow:after{bottom:1px;margin-left:-10px;border-top-color:#fff;border-bottom-width:0}.popover.right .arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,0.25);border-left-width:0}.popover.right .arrow:after{bottom:-10px;left:1px;border-right-color:#fff;border-left-width:0}.popover.bottom .arrow{top:-11px;left:50%;margin-left:-11px;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,0.25);border-top-width:0}.popover.bottom .arrow:after{top:1px;margin-left:-10px;border-bottom-color:#fff;border-top-width:0}.popover.left .arrow{top:50%;right:-11px;margin-top:-11px;border-left-color:#999;border-left-color:rgba(0,0,0,0.25);border-right-width:0}.popover.left .arrow:after{right:1px;bottom:-10px;border-left-color:#fff;border-right-width:0}.thumbnails{margin-left:-20px;list-style:none;*zoom:1}.thumbnails:before,.thumbnails:after{display:table;line-height:0;content:""}.thumbnails:after{clear:both}.row-fluid .thumbnails{margin-left:0}.thumbnails>li{float:left;margin-bottom:20px;margin-left:20px}.thumbnail{display:block;padding:4px;line-height:20px;border:1px solid #ddd;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.055);-moz-box-shadow:0 1px 3px rgba(0,0,0,0.055);box-shadow:0 1px 3px rgba(0,0,0,0.055);-webkit-transition:all .2s ease-in-out;-moz-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}a.thumbnail:hover,a.thumbnail:focus{border-color:#08c;-webkit-box-shadow:0 1px 4px rgba(0,105,214,0.25);-moz-box-shadow:0 1px 4px rgba(0,105,214,0.25);box-shadow:0 1px 4px rgba(0,105,214,0.25)}.thumbnail>img{display:block;max-width:100%;margin-right:auto;margin-left:auto}.thumbnail .caption{padding:9px;color:#555}.media,.media-body{overflow:hidden;*overflow:visible;zoom:1}.media,.media .media{margin-top:15px}.media:first-child{margin-top:0}.media-object{display:block}.media-heading{margin:0 0 5px}.media>.pull-left{margin-right:10px}.media>.pull-right{margin-left:10px}.media-list{margin-left:0;list-style:none}.label,.badge{display:inline-block;padding:2px 4px;font-size:11.844px;font-weight:bold;line-height:14px;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);white-space:nowrap;vertical-align:baseline;background-color:#999}.label{-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.badge{padding-right:9px;padding-left:9px;-webkit-border-radius:9px;-moz-border-radius:9px;border-radius:9px}.label:empty,.badge:empty{display:none}a.label:hover,a.label:focus,a.badge:hover,a.badge:focus{color:#fff;text-decoration:none;cursor:pointer}.label-important,.badge-important{background-color:#b94a48}.label-important[href],.badge-important[href]{background-color:#953b39}.label-warning,.badge-warning{background-color:#f89406}.label-warning[href],.badge-warning[href]{background-color:#c67605}.label-success,.badge-success{background-color:#468847}.label-success[href],.badge-success[href]{background-color:#356635}.label-info,.badge-info{background-color:#3a87ad}.label-info[href],.badge-info[href]{background-color:#2d6987}.label-inverse,.badge-inverse{background-color:#333}.label-inverse[href],.badge-inverse[href]{background-color:#1a1a1a}.btn .label,.btn .badge{position:relative;top:-1px}.btn-mini .label,.btn-mini .badge{top:0}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-moz-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-ms-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:0 0}to{background-position:40px 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f7f7f7;background-image:-moz-linear-gradient(top,#f5f5f5,#f9f9f9);background-image:-webkit-gradient(linear,0 0,0 100%,from(#f5f5f5),to(#f9f9f9));background-image:-webkit-linear-gradient(top,#f5f5f5,#f9f9f9);background-image:-o-linear-gradient(top,#f5f5f5,#f9f9f9);background-image:linear-gradient(to bottom,#f5f5f5,#f9f9f9);background-repeat:repeat-x;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5',endColorstr='#fff9f9f9',GradientType=0);-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1)}.progress .bar{float:left;width:0;height:100%;font-size:12px;color:#fff;text-align:center;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#0e90d2;background-image:-moz-linear-gradient(top,#149bdf,#0480be);background-image:-webkit-gradient(linear,0 0,0 100%,from(#149bdf),to(#0480be));background-image:-webkit-linear-gradient(top,#149bdf,#0480be);background-image:-o-linear-gradient(top,#149bdf,#0480be);background-image:linear-gradient(to bottom,#149bdf,#0480be);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf',endColorstr='#ff0480be',GradientType=0);-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-moz-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:width .6s ease;-moz-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress .bar+.bar{-webkit-box-shadow:inset 1px 0 0 rgba(0,0,0,0.15),inset 0 -1px 0 rgba(0,0,0,0.15);-moz-box-shadow:inset 1px 0 0 rgba(0,0,0,0.15),inset 0 -1px 0 rgba(0,0,0,0.15);box-shadow:inset 1px 0 0 rgba(0,0,0,0.15),inset 0 -1px 0 rgba(0,0,0,0.15)}.progress-striped .bar{background-color:#149bdf;background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,0.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,0.15)),color-stop(0.75,rgba(255,255,255,0.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);-webkit-background-size:40px 40px;-moz-background-size:40px 40px;-o-background-size:40px 40px;background-size:40px 40px}.progress.active .bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-moz-animation:progress-bar-stripes 2s linear infinite;-ms-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-danger .bar,.progress .bar-danger{background-color:#dd514c;background-image:-moz-linear-gradient(top,#ee5f5b,#c43c35);background-image:-webkit-gradient(linear,0 0,0 100%,from(#ee5f5b),to(#c43c35));background-image:-webkit-linear-gradient(top,#ee5f5b,#c43c35);background-image:-o-linear-gradient(top,#ee5f5b,#c43c35);background-image:linear-gradient(to bottom,#ee5f5b,#c43c35);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b',endColorstr='#ffc43c35',GradientType=0)}.progress-danger.progress-striped .bar,.progress-striped .bar-danger{background-color:#ee5f5b;background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,0.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,0.15)),color-stop(0.75,rgba(255,255,255,0.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent)}.progress-success .bar,.progress .bar-success{background-color:#5eb95e;background-image:-moz-linear-gradient(top,#62c462,#57a957);background-image:-webkit-gradient(linear,0 0,0 100%,from(#62c462),to(#57a957));background-image:-webkit-linear-gradient(top,#62c462,#57a957);background-image:-o-linear-gradient(top,#62c462,#57a957);background-image:linear-gradient(to bottom,#62c462,#57a957);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462',endColorstr='#ff57a957',GradientType=0)}.progress-success.progress-striped .bar,.progress-striped .bar-success{background-color:#62c462;background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,0.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,0.15)),color-stop(0.75,rgba(255,255,255,0.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent)}.progress-info .bar,.progress .bar-info{background-color:#4bb1cf;background-image:-moz-linear-gradient(top,#5bc0de,#339bb9);background-image:-webkit-gradient(linear,0 0,0 100%,from(#5bc0de),to(#339bb9));background-image:-webkit-linear-gradient(top,#5bc0de,#339bb9);background-image:-o-linear-gradient(top,#5bc0de,#339bb9);background-image:linear-gradient(to bottom,#5bc0de,#339bb9);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de',endColorstr='#ff339bb9',GradientType=0)}.progress-info.progress-striped .bar,.progress-striped .bar-info{background-color:#5bc0de;background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,0.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,0.15)),color-stop(0.75,rgba(255,255,255,0.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent)}.progress-warning .bar,.progress .bar-warning{background-color:#faa732;background-image:-moz-linear-gradient(top,#fbb450,#f89406);background-image:-webkit-gradient(linear,0 0,0 100%,from(#fbb450),to(#f89406));background-image:-webkit-linear-gradient(top,#fbb450,#f89406);background-image:-o-linear-gradient(top,#fbb450,#f89406);background-image:linear-gradient(to bottom,#fbb450,#f89406);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450',endColorstr='#fff89406',GradientType=0)}.progress-warning.progress-striped .bar,.progress-striped .bar-warning{background-color:#fbb450;background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,0.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,0.15)),color-stop(0.75,rgba(255,255,255,0.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent)}.accordion{margin-bottom:20px}.accordion-group{margin-bottom:2px;border:1px solid #e5e5e5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.accordion-heading{border-bottom:0}.accordion-heading .accordion-toggle{display:block;padding:8px 15px}.accordion-toggle{cursor:pointer}.accordion-inner{padding:9px 15px;border-top:1px solid #e5e5e5}.carousel{position:relative;margin-bottom:20px;line-height:1}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner>.item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;-moz-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;line-height:1}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:40%;left:15px;width:40px;height:40px;margin-top:-20px;font-size:60px;font-weight:100;line-height:30px;color:#fff;text-align:center;background:#222;border:3px solid #fff;-webkit-border-radius:23px;-moz-border-radius:23px;border-radius:23px;opacity:.5;filter:alpha(opacity=50)}.carousel-control.right{right:15px;left:auto}.carousel-control:hover,.carousel-control:focus{color:#fff;text-decoration:none;opacity:.9;filter:alpha(opacity=90)}.carousel-indicators{position:absolute;top:15px;right:15px;z-index:5;margin:0;list-style:none}.carousel-indicators li{display:block;float:left;width:10px;height:10px;margin-left:5px;text-indent:-999px;background-color:#ccc;background-color:rgba(255,255,255,0.25);border-radius:5px}.carousel-indicators .active{background-color:#fff}.carousel-caption{position:absolute;right:0;bottom:0;left:0;padding:15px;background:#333;background:rgba(0,0,0,0.75)}.carousel-caption h4,.carousel-caption p{line-height:20px;color:#fff}.carousel-caption h4{margin:0 0 5px}.carousel-caption p{margin-bottom:0}.hero-unit{padding:60px;margin-bottom:30px;font-size:18px;font-weight:200;line-height:30px;color:inherit;background-color:#eee;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.hero-unit h1{margin-bottom:0;font-size:60px;line-height:1;letter-spacing:-1px;color:inherit}.hero-unit li{line-height:30px}.pull-right{float:right}.pull-left{float:left}.hide{display:none}.show{display:block}.invisible{visibility:hidden}.affix{position:fixed} diff --git a/database.php b/database.php new file mode 100644 index 0000000..65d69c3 --- /dev/null +++ b/database.php @@ -0,0 +1,33 @@ +getMessage()); + } + } + return self::$cont; + } + + public static function disconnect() + { + self::$cont = null; + } +} diff --git a/error_log b/error_log new file mode 100644 index 0000000..201fcc5 --- /dev/null +++ b/error_log @@ -0,0 +1,966 @@ +[07-May-2024 06:08:45 UTC] PHP Warning: Undefined array key "UIDresult" in /home/dbditsco/bersyukur.cloud/IOTKK/getUID.php on line 2 +[07-May-2024 07:06:17 UTC] PHP Warning: Undefined array key "UIDresult" in /home/dbditsco/bersyukur.cloud/IOTKK/getUID.php on line 2 +[07-May-2024 07:56:22 UTC] PHP Warning: Undefined array key "UIDresult" in /home/dbditsco/bersyukur.cloud/IOTKK/getUID.php on line 2 +[07-May-2024 09:07:01 UTC] PHP Warning: Undefined array key "UIDresult" in /home/dbditsco/bersyukur.cloud/IOTKK/getUID.php on line 2 +[08-May-2024 13:24:07 UTC] PHP Parse error: syntax error, unexpected character 0x03 in /home/dbditsco/bersyukur.cloud/IOTKK/engine.php on line 3 +[08-May-2024 13:24:08 UTC] PHP Parse error: syntax error, unexpected character 0x03 in /home/dbditsco/bersyukur.cloud/IOTKK/engine.php on line 3 +[11-May-2024 06:57:09 UTC] PHP Warning: Undefined array key "UIDresult" in /home/dbditsco/bersyukur.cloud/IOTKK/getUID.php on line 2 +[12-May-2024 01:45:45 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 69 +[12-May-2024 01:45:45 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 69 +[12-May-2024 01:45:45 UTC] PHP Warning: Undefined variable $id in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 72 +[12-May-2024 01:45:45 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 76 +[12-May-2024 01:45:45 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 76 +[12-May-2024 01:45:45 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 83 +[12-May-2024 01:45:45 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 83 +[12-May-2024 01:45:45 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 100 +[12-May-2024 01:45:45 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 100 +[12-May-2024 01:45:45 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 107 +[12-May-2024 01:45:45 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 107 +[12-May-2024 01:49:36 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 79 +[12-May-2024 01:49:36 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 79 +[12-May-2024 01:49:36 UTC] PHP Warning: Undefined variable $id in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 82 +[12-May-2024 01:49:36 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 86 +[12-May-2024 01:49:36 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 86 +[12-May-2024 01:49:36 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 93 +[12-May-2024 01:49:36 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 93 +[12-May-2024 01:49:36 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 110 +[12-May-2024 01:49:36 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 110 +[12-May-2024 01:49:36 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 117 +[12-May-2024 01:49:36 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 117 +[12-May-2024 01:50:32 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 83 +[12-May-2024 01:50:32 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 83 +[12-May-2024 01:50:32 UTC] PHP Warning: Undefined variable $id in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 86 +[12-May-2024 01:50:32 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 90 +[12-May-2024 01:50:32 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 90 +[12-May-2024 01:50:32 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 97 +[12-May-2024 01:50:32 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 97 +[12-May-2024 01:50:32 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 114 +[12-May-2024 01:50:32 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 114 +[12-May-2024 01:50:32 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 121 +[12-May-2024 01:50:32 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 121 +[12-May-2024 01:51:58 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 83 +[12-May-2024 01:51:58 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 83 +[12-May-2024 01:51:58 UTC] PHP Warning: Undefined variable $id in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 86 +[12-May-2024 01:51:58 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 90 +[12-May-2024 01:51:58 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 90 +[12-May-2024 01:51:58 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 97 +[12-May-2024 01:51:58 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 97 +[12-May-2024 01:51:58 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 114 +[12-May-2024 01:51:58 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 114 +[12-May-2024 01:51:58 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 121 +[12-May-2024 01:51:58 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 121 +[12-May-2024 01:55:24 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 87 +[12-May-2024 01:55:24 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 87 +[12-May-2024 01:55:24 UTC] PHP Warning: Undefined variable $id in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 90 +[12-May-2024 01:55:24 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 94 +[12-May-2024 01:55:24 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 94 +[12-May-2024 01:55:24 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 101 +[12-May-2024 01:55:24 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 101 +[12-May-2024 01:55:24 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 118 +[12-May-2024 01:55:24 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 118 +[12-May-2024 01:55:24 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 125 +[12-May-2024 01:55:24 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 125 +[12-May-2024 01:56:23 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 69 +[12-May-2024 01:56:23 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 69 +[12-May-2024 01:56:23 UTC] PHP Warning: Undefined variable $id in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 72 +[12-May-2024 01:56:23 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 76 +[12-May-2024 01:56:23 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 76 +[12-May-2024 01:56:23 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 83 +[12-May-2024 01:56:23 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 83 +[12-May-2024 01:56:23 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 100 +[12-May-2024 01:56:23 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 100 +[12-May-2024 01:56:23 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 107 +[12-May-2024 01:56:23 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 107 +[12-May-2024 01:58:07 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 101 +[12-May-2024 01:58:07 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 101 +[12-May-2024 01:58:07 UTC] PHP Warning: Undefined variable $id in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 104 +[12-May-2024 01:58:07 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 108 +[12-May-2024 01:58:07 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 108 +[12-May-2024 01:58:07 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 115 +[12-May-2024 01:58:07 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 115 +[12-May-2024 01:58:07 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 132 +[12-May-2024 01:58:07 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 132 +[12-May-2024 01:58:07 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 139 +[12-May-2024 01:58:07 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 139 +[12-May-2024 02:00:14 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 101 +[12-May-2024 02:00:14 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 101 +[12-May-2024 02:00:14 UTC] PHP Warning: Undefined variable $id in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 104 +[12-May-2024 02:00:14 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 108 +[12-May-2024 02:00:14 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 108 +[12-May-2024 02:00:14 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 115 +[12-May-2024 02:00:14 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 115 +[12-May-2024 02:00:14 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 132 +[12-May-2024 02:00:14 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 132 +[12-May-2024 02:00:14 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 139 +[12-May-2024 02:00:14 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 139 +[12-May-2024 02:00:52 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 111 +[12-May-2024 02:00:52 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 111 +[12-May-2024 02:00:52 UTC] PHP Warning: Undefined variable $id in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 114 +[12-May-2024 02:00:52 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 118 +[12-May-2024 02:00:52 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 118 +[12-May-2024 02:00:52 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 125 +[12-May-2024 02:00:52 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 125 +[12-May-2024 02:00:52 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 142 +[12-May-2024 02:00:52 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 142 +[12-May-2024 02:00:52 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 149 +[12-May-2024 02:00:52 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 149 +[12-May-2024 02:01:10 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 111 +[12-May-2024 02:01:10 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 111 +[12-May-2024 02:01:10 UTC] PHP Warning: Undefined variable $id in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 114 +[12-May-2024 02:01:10 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 118 +[12-May-2024 02:01:10 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 118 +[12-May-2024 02:01:10 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 125 +[12-May-2024 02:01:10 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 125 +[12-May-2024 02:01:10 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 142 +[12-May-2024 02:01:10 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 142 +[12-May-2024 02:01:10 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 149 +[12-May-2024 02:01:10 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 149 +[12-May-2024 02:01:21 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 111 +[12-May-2024 02:01:21 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 111 +[12-May-2024 02:01:21 UTC] PHP Warning: Undefined variable $id in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 114 +[12-May-2024 02:01:21 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 118 +[12-May-2024 02:01:21 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 118 +[12-May-2024 02:01:21 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 125 +[12-May-2024 02:01:21 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 125 +[12-May-2024 02:01:21 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 142 +[12-May-2024 02:01:21 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 142 +[12-May-2024 02:01:21 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 149 +[12-May-2024 02:01:21 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 149 +[12-May-2024 02:01:49 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 111 +[12-May-2024 02:01:49 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 111 +[12-May-2024 02:01:49 UTC] PHP Warning: Undefined variable $id in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 114 +[12-May-2024 02:01:49 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 118 +[12-May-2024 02:01:49 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 118 +[12-May-2024 02:01:49 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 125 +[12-May-2024 02:01:49 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 125 +[12-May-2024 02:01:49 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 142 +[12-May-2024 02:01:49 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 142 +[12-May-2024 02:01:49 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 149 +[12-May-2024 02:01:49 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 149 +[12-May-2024 02:02:00 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 111 +[12-May-2024 02:02:00 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 111 +[12-May-2024 02:02:00 UTC] PHP Warning: Undefined variable $id in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 114 +[12-May-2024 02:02:00 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 118 +[12-May-2024 02:02:00 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 118 +[12-May-2024 02:02:00 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 125 +[12-May-2024 02:02:00 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 125 +[12-May-2024 02:02:00 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 142 +[12-May-2024 02:02:00 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 142 +[12-May-2024 02:02:00 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 149 +[12-May-2024 02:02:00 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 149 +[12-May-2024 02:02:37 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 111 +[12-May-2024 02:02:37 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 111 +[12-May-2024 02:02:37 UTC] PHP Warning: Undefined variable $id in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 114 +[12-May-2024 02:02:37 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 118 +[12-May-2024 02:02:37 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 118 +[12-May-2024 02:02:37 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 125 +[12-May-2024 02:02:37 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 125 +[12-May-2024 02:02:37 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 142 +[12-May-2024 02:02:37 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 142 +[12-May-2024 02:02:37 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 149 +[12-May-2024 02:02:37 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 149 +[12-May-2024 02:03:07 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 109 +[12-May-2024 02:03:07 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 109 +[12-May-2024 02:03:07 UTC] PHP Warning: Undefined variable $id in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 112 +[12-May-2024 02:03:07 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 116 +[12-May-2024 02:03:07 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 116 +[12-May-2024 02:03:07 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 123 +[12-May-2024 02:03:07 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 123 +[12-May-2024 02:03:07 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 140 +[12-May-2024 02:03:07 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 140 +[12-May-2024 02:03:07 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 147 +[12-May-2024 02:03:07 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 147 +[12-May-2024 02:06:20 UTC] PHP Warning: Undefined variable $id in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 106 +[12-May-2024 02:06:20 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 110 +[12-May-2024 02:06:20 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 110 +[12-May-2024 02:07:49 UTC] PHP Warning: Undefined variable $id in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 106 +[12-May-2024 02:07:49 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 110 +[12-May-2024 02:07:49 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 110 +[12-May-2024 02:07:49 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 117 +[12-May-2024 02:07:49 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 117 +[12-May-2024 02:07:49 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 134 +[12-May-2024 02:07:49 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 134 +[12-May-2024 02:07:49 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 141 +[12-May-2024 02:07:49 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 141 +[12-May-2024 02:08:05 UTC] PHP Warning: Undefined variable $id in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 106 +[12-May-2024 02:08:05 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 110 +[12-May-2024 02:08:05 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 110 +[12-May-2024 02:08:05 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 117 +[12-May-2024 02:08:05 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 117 +[12-May-2024 02:08:05 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 134 +[12-May-2024 02:08:05 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 134 +[12-May-2024 02:08:05 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 141 +[12-May-2024 02:08:05 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 141 +[12-May-2024 02:08:30 UTC] PHP Warning: Undefined variable $id in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 106 +[12-May-2024 02:08:30 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 110 +[12-May-2024 02:08:30 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 110 +[12-May-2024 02:08:30 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 117 +[12-May-2024 02:08:30 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 117 +[12-May-2024 02:08:30 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 134 +[12-May-2024 02:08:30 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 134 +[12-May-2024 02:08:30 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 141 +[12-May-2024 02:08:30 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 141 +[12-May-2024 02:08:53 UTC] PHP Warning: Undefined variable $id in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 106 +[12-May-2024 02:08:53 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 110 +[12-May-2024 02:08:53 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 110 +[12-May-2024 02:08:53 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 117 +[12-May-2024 02:08:53 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 117 +[12-May-2024 02:08:53 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 134 +[12-May-2024 02:08:53 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 134 +[12-May-2024 02:08:53 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 141 +[12-May-2024 02:08:53 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 141 +[12-May-2024 02:11:08 UTC] PHP Warning: Undefined variable $id in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 106 +[12-May-2024 02:11:08 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 110 +[12-May-2024 02:11:08 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 110 +[12-May-2024 02:11:08 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 117 +[12-May-2024 02:11:08 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 117 +[12-May-2024 02:11:08 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 134 +[12-May-2024 02:11:08 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 134 +[12-May-2024 02:11:08 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 141 +[12-May-2024 02:11:08 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 141 +[12-May-2024 02:11:27 UTC] PHP Warning: Undefined variable $id in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 106 +[12-May-2024 02:11:27 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 110 +[12-May-2024 02:11:27 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 110 +[12-May-2024 02:11:27 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 117 +[12-May-2024 02:11:27 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 117 +[12-May-2024 02:11:27 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 134 +[12-May-2024 02:11:27 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 134 +[12-May-2024 02:11:27 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 141 +[12-May-2024 02:11:27 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 141 +[12-May-2024 02:11:48 UTC] PHP Warning: Undefined variable $id in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 106 +[12-May-2024 02:11:48 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 110 +[12-May-2024 02:11:48 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 110 +[12-May-2024 02:11:48 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 117 +[12-May-2024 02:11:48 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 117 +[12-May-2024 02:11:48 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 134 +[12-May-2024 02:11:48 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 134 +[12-May-2024 02:11:48 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 141 +[12-May-2024 02:11:48 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 141 +[12-May-2024 04:58:33 UTC] PHP Fatal error: Uncaught Error: Class "Database" not found in /home/dbditsco/bersyukur.cloud/IOTKK/user data.php:96 +Stack trace: +#0 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/user data.php on line 96 +[12-May-2024 04:58:35 UTC] PHP Fatal error: Uncaught Error: Class "Database" not found in /home/dbditsco/bersyukur.cloud/IOTKK/user data.php:96 +Stack trace: +#0 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/user data.php on line 96 +[12-May-2024 05:00:31 UTC] PHP Fatal error: Uncaught TypeError: PDO::__construct(): Argument #4 ($options) must be of type ?array, string given in /home/dbditsco/bersyukur.cloud/IOTKK/database.php:7 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/database.php(7): PDO->__construct() +#1 /home/dbditsco/bersyukur.cloud/IOTKK/user data.php(95): include('/home/dbditsco/...') +#2 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/database.php on line 7 +[12-May-2024 05:00:33 UTC] PHP Fatal error: Uncaught TypeError: PDO::__construct(): Argument #4 ($options) must be of type ?array, string given in /home/dbditsco/bersyukur.cloud/IOTKK/database.php:7 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/database.php(7): PDO->__construct() +#1 /home/dbditsco/bersyukur.cloud/IOTKK/user data.php(95): include('/home/dbditsco/...') +#2 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/database.php on line 7 +[12-May-2024 05:12:52 UTC] PHP Warning: Undefined variable $id in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 119 +[12-May-2024 05:12:52 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 123 +[12-May-2024 05:12:52 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 123 +[12-May-2024 05:12:52 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 130 +[12-May-2024 05:12:52 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 130 +[12-May-2024 05:12:52 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 147 +[12-May-2024 05:12:52 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 147 +[12-May-2024 05:12:52 UTC] PHP Warning: Undefined variable $data in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 154 +[12-May-2024 05:12:52 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dbditsco/bersyukur.cloud/IOTKK/template.php on line 154 +[12-May-2024 06:08:13 UTC] PHP Warning: include(databse.php): Failed to open stream: No such file or directory in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 3 +[12-May-2024 06:08:13 UTC] PHP Warning: include(): Failed opening 'databse.php' for inclusion (include_path='.:/opt/alt/php81/usr/share/pear:/opt/alt/php81/usr/share/php:/usr/share/pear:/usr/share/php') in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 3 +[12-May-2024 06:08:13 UTC] PHP Fatal error: Uncaught Error: Class "Database" not found in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php:11 +Stack trace: +#0 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 11 +[12-May-2024 06:09:46 UTC] PHP Warning: include(databse.php): Failed to open stream: No such file or directory in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 3 +[12-May-2024 06:09:46 UTC] PHP Warning: include(): Failed opening 'databse.php' for inclusion (include_path='.:/opt/alt/php81/usr/share/pear:/opt/alt/php81/usr/share/php:/usr/share/pear:/usr/share/php') in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 3 +[12-May-2024 06:09:46 UTC] PHP Fatal error: Uncaught Error: Class "Database" not found in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php:11 +Stack trace: +#0 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 11 +[12-May-2024 06:13:44 UTC] PHP Warning: include(databse.php): Failed to open stream: No such file or directory in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 3 +[12-May-2024 06:13:44 UTC] PHP Warning: include(): Failed opening 'databse.php' for inclusion (include_path='.:/opt/alt/php81/usr/share/pear:/opt/alt/php81/usr/share/php:/usr/share/pear:/usr/share/php') in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 3 +[12-May-2024 06:13:44 UTC] PHP Fatal error: Uncaught Error: Class "Database" not found in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php:11 +Stack trace: +#0 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 11 +[12-May-2024 06:15:19 UTC] PHP Warning: include(databse.php): Failed to open stream: No such file or directory in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 3 +[12-May-2024 06:15:19 UTC] PHP Warning: include(): Failed opening 'databse.php' for inclusion (include_path='.:/opt/alt/php81/usr/share/pear:/opt/alt/php81/usr/share/php:/usr/share/pear:/usr/share/php') in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 3 +[12-May-2024 06:15:19 UTC] PHP Fatal error: Uncaught Error: Class "Database" not found in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php:11 +Stack trace: +#0 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 11 +[12-May-2024 06:16:47 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'dbditsco_IOTKK.user' doesn't exist in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php:16 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php(16): PDOStatement->execute() +#1 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 16 +[12-May-2024 07:16:55 UTC] PHP Warning: Trying to access array offset on value of type bool in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 140 +[12-May-2024 07:16:55 UTC] PHP Warning: Trying to access array offset on value of type bool in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 147 +[12-May-2024 07:16:55 UTC] PHP Warning: Trying to access array offset on value of type bool in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 164 +[12-May-2024 07:16:55 UTC] PHP Warning: Trying to access array offset on value of type bool in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 171 +[12-May-2024 07:16:55 UTC] PHP Warning: Trying to access array offset on value of type bool in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 178 +[12-May-2024 07:16:55 UTC] PHP Warning: Trying to access array offset on value of type bool in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 140 +[12-May-2024 07:16:55 UTC] PHP Warning: Trying to access array offset on value of type bool in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 147 +[12-May-2024 07:16:55 UTC] PHP Warning: Trying to access array offset on value of type bool in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 164 +[12-May-2024 07:16:55 UTC] PHP Warning: Trying to access array offset on value of type bool in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 171 +[12-May-2024 07:16:55 UTC] PHP Warning: Trying to access array offset on value of type bool in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 178 +[12-May-2024 07:17:20 UTC] PHP Warning: Trying to access array offset on value of type bool in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 140 +[12-May-2024 07:17:20 UTC] PHP Warning: Trying to access array offset on value of type bool in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 147 +[12-May-2024 07:17:20 UTC] PHP Warning: Trying to access array offset on value of type bool in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 164 +[12-May-2024 07:17:20 UTC] PHP Warning: Trying to access array offset on value of type bool in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 171 +[12-May-2024 07:17:20 UTC] PHP Warning: Trying to access array offset on value of type bool in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 178 +[12-May-2024 07:17:22 UTC] PHP Warning: Trying to access array offset on value of type bool in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 140 +[12-May-2024 07:17:22 UTC] PHP Warning: Trying to access array offset on value of type bool in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 147 +[12-May-2024 07:17:22 UTC] PHP Warning: Trying to access array offset on value of type bool in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 164 +[12-May-2024 07:17:22 UTC] PHP Warning: Trying to access array offset on value of type bool in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 171 +[12-May-2024 07:17:22 UTC] PHP Warning: Trying to access array offset on value of type bool in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 178 +[12-May-2024 07:17:24 UTC] PHP Warning: Trying to access array offset on value of type bool in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 140 +[12-May-2024 07:17:24 UTC] PHP Warning: Trying to access array offset on value of type bool in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 147 +[12-May-2024 07:17:24 UTC] PHP Warning: Trying to access array offset on value of type bool in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 164 +[12-May-2024 07:17:24 UTC] PHP Warning: Trying to access array offset on value of type bool in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 171 +[12-May-2024 07:17:24 UTC] PHP Warning: Trying to access array offset on value of type bool in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 178 +[12-May-2024 07:17:25 UTC] PHP Warning: Trying to access array offset on value of type bool in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 140 +[12-May-2024 07:17:25 UTC] PHP Warning: Trying to access array offset on value of type bool in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 147 +[12-May-2024 07:17:25 UTC] PHP Warning: Trying to access array offset on value of type bool in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 164 +[12-May-2024 07:17:25 UTC] PHP Warning: Trying to access array offset on value of type bool in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 171 +[12-May-2024 07:17:25 UTC] PHP Warning: Trying to access array offset on value of type bool in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 178 +[12-May-2024 07:18:03 UTC] PHP Warning: Trying to access array offset on value of type bool in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 140 +[12-May-2024 07:18:03 UTC] PHP Warning: Trying to access array offset on value of type bool in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 147 +[12-May-2024 07:18:03 UTC] PHP Warning: Trying to access array offset on value of type bool in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 164 +[12-May-2024 07:18:03 UTC] PHP Warning: Trying to access array offset on value of type bool in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 171 +[12-May-2024 07:18:03 UTC] PHP Warning: Trying to access array offset on value of type bool in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 178 +[13-May-2024 06:38:29 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'dbditsco_bersyukur.table_the_iot_projects' doesn't exist in /home/dbditsco/bersyukur.cloud/IOTKK/user data.php:98 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/user data.php(98): PDO->query() +#1 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/user data.php on line 98 +[13-May-2024 10:16:58 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'dbditsco_bersyukur.table_the_iot_projects' doesn't exist in /home/dbditsco/bersyukur.cloud/IOTKK/user data.php:98 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/user data.php(98): PDO->query() +#1 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/user data.php on line 98 +[13-May-2024 10:17:03 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'dbditsco_bersyukur.table_the_iot_projects' doesn't exist in /home/dbditsco/bersyukur.cloud/IOTKK/user data.php:98 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/user data.php(98): PDO->query() +#1 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/user data.php on line 98 +[13-May-2024 10:17:10 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'dbditsco_bersyukur.table_the_iot_projects' doesn't exist in /home/dbditsco/bersyukur.cloud/IOTKK/user data.php:98 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/user data.php(98): PDO->query() +#1 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/user data.php on line 98 +[13-May-2024 10:17:15 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'dbditsco_bersyukur.table_the_iot_projects' doesn't exist in /home/dbditsco/bersyukur.cloud/IOTKK/user data.php:98 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/user data.php(98): PDO->query() +#1 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/user data.php on line 98 +[13-May-2024 10:17:23 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'dbditsco_bersyukur.table_the_iot_projects' doesn't exist in /home/dbditsco/bersyukur.cloud/IOTKK/user data.php:98 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/user data.php(98): PDO->query() +#1 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/user data.php on line 98 +[14-May-2024 05:05:07 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'dbditsco_bersyukur.table_the_iot_projects' doesn't exist in /home/dbditsco/bersyukur.cloud/IOTKK/user data.php:98 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/user data.php(98): PDO->query() +#1 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/user data.php on line 98 +[14-May-2024 05:05:15 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'dbditsco_bersyukur.table_the_iot_projects' doesn't exist in /home/dbditsco/bersyukur.cloud/IOTKK/user data.php:98 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/user data.php(98): PDO->query() +#1 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/user data.php on line 98 +[14-May-2024 05:06:19 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'dbditsco_bersyukur.table_the_iot_projects' doesn't exist in /home/dbditsco/bersyukur.cloud/IOTKK/user data.php:98 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/user data.php(98): PDO->query() +#1 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/user data.php on line 98 +[14-May-2024 05:14:56 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'dbditsco_bersyukur.table_the_iot_projects' doesn't exist in /home/dbditsco/bersyukur.cloud/IOTKK/user data.php:98 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/user data.php(98): PDO->query() +#1 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/user data.php on line 98 +[14-May-2024 05:21:03 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'dbditsco_bersyukur.table_the_iot_projects' doesn't exist in /home/dbditsco/bersyukur.cloud/IOTKK/user data.php:98 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/user data.php(98): PDO->query() +#1 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/user data.php on line 98 +[14-May-2024 05:44:23 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'dbditsco_bersyukur.table_the_iot_projects' doesn't exist in /home/dbditsco/bersyukur.cloud/IOTKK/user data.php:98 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/user data.php(98): PDO->query() +#1 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/user data.php on line 98 +[14-May-2024 05:51:03 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'dbditsco_bersyukur.table_the_iot_projects' doesn't exist in /home/dbditsco/bersyukur.cloud/IOTKK/user data.php:98 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/user data.php(98): PDO->query() +#1 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/user data.php on line 98 +[14-May-2024 06:02:57 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'dbditsco_bersyukur.table_the_iot_projects' doesn't exist in /home/dbditsco/bersyukur.cloud/IOTKK/user data.php:98 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/user data.php(98): PDO->query() +#1 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/user data.php on line 98 +[14-May-2024 06:03:05 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'dbditsco_bersyukur.table_the_iot_projects' doesn't exist in /home/dbditsco/bersyukur.cloud/IOTKK/user data.php:98 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/user data.php(98): PDO->query() +#1 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/user data.php on line 98 +[14-May-2024 06:16:17 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'dbditsco_bersyukur.table_the_iot_projects' doesn't exist in /home/dbditsco/bersyukur.cloud/IOTKK/user data.php:98 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/user data.php(98): PDO->query() +#1 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/user data.php on line 98 +[14-May-2024 08:54:57 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'dbditsco_bersyukur.table_the_iot_projects' doesn't exist in /home/dbditsco/bersyukur.cloud/IOTKK/user data.php:98 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/user data.php(98): PDO->query() +#1 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/user data.php on line 98 +[14-May-2024 09:57:56 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'dbditsco_bersyukur.table_the_iot_projects' doesn't exist in /home/dbditsco/bersyukur.cloud/IOTKK/user data.php:98 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/user data.php(98): PDO->query() +#1 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/user data.php on line 98 +[15-May-2024 03:28:07 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'dbditsco_bersyukur.table_the_iot_projects' doesn't exist in /home/dbditsco/bersyukur.cloud/IOTKK/user data.php:98 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/user data.php(98): PDO->query() +#1 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/user data.php on line 98 +[15-May-2024 03:28:20 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'dbditsco_bersyukur.table_the_iot_projects' doesn't exist in /home/dbditsco/bersyukur.cloud/IOTKK/user data.php:98 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/user data.php(98): PDO->query() +#1 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/user data.php on line 98 +[15-May-2024 03:30:13 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'dbditsco_bersyukur.table_the_iot_projects' doesn't exist in /home/dbditsco/bersyukur.cloud/IOTKK/user data.php:98 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/user data.php(98): PDO->query() +#1 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/user data.php on line 98 +[15-May-2024 03:30:47 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'dbditsco_bersyukur.table_the_iot_projects' doesn't exist in /home/dbditsco/bersyukur.cloud/IOTKK/user data.php:98 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/user data.php(98): PDO->query() +#1 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/user data.php on line 98 +[15-May-2024 03:39:48 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'dbditsco_bersyukur.table_the_iot_projects' doesn't exist in /home/dbditsco/bersyukur.cloud/IOTKK/user data.php:98 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/user data.php(98): PDO->query() +#1 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/user data.php on line 98 +[15-May-2024 03:40:30 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'dbditsco_bersyukur.table_the_iot_projects' doesn't exist in /home/dbditsco/bersyukur.cloud/IOTKK/user data.php:98 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/user data.php(98): PDO->query() +#1 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/user data.php on line 98 +[15-May-2024 03:40:59 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'dbditsco_bersyukur.table_the_iot_projects' doesn't exist in /home/dbditsco/bersyukur.cloud/IOTKK/user data.php:98 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/user data.php(98): PDO->query() +#1 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/user data.php on line 98 +[15-May-2024 03:41:03 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'dbditsco_bersyukur.table_the_iot_projects' doesn't exist in /home/dbditsco/bersyukur.cloud/IOTKK/user data.php:98 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/user data.php(98): PDO->query() +#1 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/user data.php on line 98 +[15-May-2024 03:41:19 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'dbditsco_bersyukur.table_the_iot_projects' doesn't exist in /home/dbditsco/bersyukur.cloud/IOTKK/read tag user data.php:12 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/read tag user data.php(12): PDOStatement->execute() +#1 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/read tag user data.php on line 12 +[15-May-2024 03:42:06 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'dbditsco_bersyukur.table_the_iot_projects' doesn't exist in /home/dbditsco/bersyukur.cloud/IOTKK/user data.php:98 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/user data.php(98): PDO->query() +#1 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/user data.php on line 98 +[15-May-2024 03:42:36 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'dbditsco_bersyukur.table_the_iot_projects' doesn't exist in /home/dbditsco/bersyukur.cloud/IOTKK/read tag user data.php:12 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/read tag user data.php(12): PDOStatement->execute() +#1 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/read tag user data.php on line 12 +[15-May-2024 03:46:49 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'dbditsco_bersyukur.table_the_iot_projects' doesn't exist in /home/dbditsco/bersyukur.cloud/IOTKK/user data.php:98 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/user data.php(98): PDO->query() +#1 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/user data.php on line 98 +[15-May-2024 03:47:26 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'dbditsco_bersyukur.table_the_iot_projects' doesn't exist in /home/dbditsco/bersyukur.cloud/IOTKK/user data.php:98 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/user data.php(98): PDO->query() +#1 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/user data.php on line 98 +[15-May-2024 03:50:31 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'dbditsco_bersyukur.table_the_iot_projects' doesn't exist in /home/dbditsco/bersyukur.cloud/IOTKK/user data.php:98 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/user data.php(98): PDO->query() +#1 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/user data.php on line 98 +[15-May-2024 03:54:50 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'dbditsco_bersyukur.table_the_iot_projects' doesn't exist in /home/dbditsco/bersyukur.cloud/IOTKK/user data.php:98 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/user data.php(98): PDO->query() +#1 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/user data.php on line 98 +[15-May-2024 03:54:55 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'dbditsco_bersyukur.table_the_iot_projects' doesn't exist in /home/dbditsco/bersyukur.cloud/IOTKK/user data.php:98 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/user data.php(98): PDO->query() +#1 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/user data.php on line 98 +[15-May-2024 03:58:43 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'dbditsco_bersyukur.siswa_wali' doesn't exist in /home/dbditsco/bersyukur.cloud/IOTKK/insertDB.php:18 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/insertDB.php(18): PDOStatement->execute() +#1 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/insertDB.php on line 18 +[15-May-2024 04:27:36 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'dbditsco_bersyukur.table_the_iot_projects' doesn't exist in /home/dbditsco/bersyukur.cloud/IOTKK/read tag user data.php:12 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/read tag user data.php(12): PDOStatement->execute() +#1 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/read tag user data.php on line 12 +[15-May-2024 04:28:05 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'dbditsco_bersyukur.table_the_iot_projects' doesn't exist in /home/dbditsco/bersyukur.cloud/IOTKK/read tag user data.php:12 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/read tag user data.php(12): PDOStatement->execute() +#1 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/read tag user data.php on line 12 +[15-May-2024 04:28:22 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'dbditsco_bersyukur.table_the_iot_projects' doesn't exist in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php:12 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php(12): PDOStatement->execute() +#1 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 12 +[15-May-2024 04:30:50 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'dbditsco_bersyukur.table_the_iot_projects' doesn't exist in /home/dbditsco/bersyukur.cloud/IOTKK/read tag user data.php:12 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/read tag user data.php(12): PDOStatement->execute() +#1 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/read tag user data.php on line 12 +[15-May-2024 04:55:40 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'dbditsco_bersyukur.table_the_iot_projects' doesn't exist in /home/dbditsco/bersyukur.cloud/IOTKK/read tag user data.php:12 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/read tag user data.php(12): PDOStatement->execute() +#1 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/read tag user data.php on line 12 +[15-May-2024 04:56:05 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'dbditsco_bersyukur.table_the_iot_projects' doesn't exist in /home/dbditsco/bersyukur.cloud/IOTKK/read tag user data.php:12 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/read tag user data.php(12): PDOStatement->execute() +#1 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/read tag user data.php on line 12 +[15-May-2024 11:39:53 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[HY093]: Invalid parameter number: number of bound variables does not match number of tokens in /home/dbditsco/bersyukur.cloud/IOTKK/insertDB.php:19 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/insertDB.php(19): PDOStatement->execute() +#1 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/insertDB.php on line 19 +[15-May-2024 11:40:10 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[HY093]: Invalid parameter number: number of bound variables does not match number of tokens in /home/dbditsco/bersyukur.cloud/IOTKK/insertDB.php:19 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/insertDB.php(19): PDOStatement->execute() +#1 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/insertDB.php on line 19 +[15-May-2024 11:46:37 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'dbditsco_bersyukur.table_the_iot_projects' doesn't exist in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php:12 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php(12): PDOStatement->execute() +#1 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 12 +[15-May-2024 11:46:50 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'dbditsco_bersyukur.table_the_iot_projects' doesn't exist in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php:12 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php(12): PDOStatement->execute() +#1 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/user data edit page.php on line 12 +[15-May-2024 12:30:32 UTC] PHP Warning: Trying to access array offset on value of type bool in /home/dbditsco/bersyukur.cloud/IOTKK/read tag user data.php on line 17 +[15-May-2024 12:30:34 UTC] PHP Warning: Trying to access array offset on value of type bool in /home/dbditsco/bersyukur.cloud/IOTKK/read tag user data.php on line 17 +[15-May-2024 12:31:02 UTC] PHP Warning: Trying to access array offset on value of type bool in /home/dbditsco/bersyukur.cloud/IOTKK/read tag user data.php on line 17 +[15-May-2024 12:33:38 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[HY093]: Invalid parameter number: number of bound variables does not match number of tokens in /home/dbditsco/bersyukur.cloud/IOTKK/insertDB.php:19 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/insertDB.php(19): PDOStatement->execute() +#1 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/insertDB.php on line 19 +[15-May-2024 12:34:00 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[HY093]: Invalid parameter number: number of bound variables does not match number of tokens in /home/dbditsco/bersyukur.cloud/IOTKK/insertDB.php:19 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/insertDB.php(19): PDOStatement->execute() +#1 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/insertDB.php on line 19 +[15-May-2024 12:34:09 UTC] PHP Warning: Trying to access array offset on value of type bool in /home/dbditsco/bersyukur.cloud/IOTKK/read tag user data.php on line 17 +[15-May-2024 12:35:44 UTC] PHP Warning: Trying to access array offset on value of type bool in /home/dbditsco/bersyukur.cloud/IOTKK/read tag user data.php on line 17 +[15-May-2024 12:35:45 UTC] PHP Warning: Trying to access array offset on value of type bool in /home/dbditsco/bersyukur.cloud/IOTKK/read tag user data.php on line 17 +[15-May-2024 12:36:22 UTC] PHP Warning: Trying to access array offset on value of type bool in /home/dbditsco/bersyukur.cloud/IOTKK/read tag user data.php on line 17 +[15-May-2024 12:36:24 UTC] PHP Warning: Trying to access array offset on value of type bool in /home/dbditsco/bersyukur.cloud/IOTKK/read tag user data.php on line 17 +[15-May-2024 12:36:32 UTC] PHP Warning: Trying to access array offset on value of type bool in /home/dbditsco/bersyukur.cloud/IOTKK/read tag user data.php on line 17 +[15-May-2024 12:36:33 UTC] PHP Warning: Trying to access array offset on value of type bool in /home/dbditsco/bersyukur.cloud/IOTKK/read tag user data.php on line 17 +[16-May-2024 04:11:50 UTC] PHP Warning: Trying to access array offset on value of type bool in /home/dbditsco/bersyukur.cloud/IOTKK/read tag user data.php on line 17 +[16-May-2024 04:13:37 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[HY093]: Invalid parameter number: number of bound variables does not match number of tokens in /home/dbditsco/bersyukur.cloud/IOTKK/insertDB.php:19 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/insertDB.php(19): PDOStatement->execute() +#1 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/insertDB.php on line 19 +[16-May-2024 04:14:18 UTC] PHP Warning: Trying to access array offset on value of type bool in /home/dbditsco/bersyukur.cloud/IOTKK/read tag user data.php on line 17 +[16-May-2024 04:17:57 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[HY093]: Invalid parameter number: number of bound variables does not match number of tokens in /home/dbditsco/bersyukur.cloud/IOTKK/insertDB.php:19 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/insertDB.php(19): PDOStatement->execute() +#1 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/insertDB.php on line 19 +[16-May-2024 04:18:30 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[HY093]: Invalid parameter number: number of bound variables does not match number of tokens in /home/dbditsco/bersyukur.cloud/IOTKK/insertDB.php:19 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/insertDB.php(19): PDOStatement->execute() +#1 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/insertDB.php on line 19 +[16-May-2024 04:21:26 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'dbditsco_bersyukur.table_the_iot_projects' doesn't exist in /home/dbditsco/bersyukur.cloud/IOTKK/user data delete page.php:18 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/user data delete page.php(18): PDOStatement->execute() +#1 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/user data delete page.php on line 18 +[16-May-2024 04:21:33 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'dbditsco_bersyukur.table_the_iot_projects' doesn't exist in /home/dbditsco/bersyukur.cloud/IOTKK/user data delete page.php:18 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/user data delete page.php(18): PDOStatement->execute() +#1 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/user data delete page.php on line 18 +[16-May-2024 04:21:40 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'dbditsco_bersyukur.table_the_iot_projects' doesn't exist in /home/dbditsco/bersyukur.cloud/IOTKK/user data delete page.php:18 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/user data delete page.php(18): PDOStatement->execute() +#1 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/user data delete page.php on line 18 +[16-May-2024 04:22:07 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'dbditsco_bersyukur.table_the_iot_projects' doesn't exist in /home/dbditsco/bersyukur.cloud/IOTKK/user data delete page.php:18 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/user data delete page.php(18): PDOStatement->execute() +#1 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/user data delete page.php on line 18 +[16-May-2024 04:22:12 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'dbditsco_bersyukur.table_the_iot_projects' doesn't exist in /home/dbditsco/bersyukur.cloud/IOTKK/user data delete page.php:18 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/user data delete page.php(18): PDOStatement->execute() +#1 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/user data delete page.php on line 18 +[16-May-2024 04:22:39 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'dbditsco_bersyukur.table_the_iot_projects' doesn't exist in /home/dbditsco/bersyukur.cloud/IOTKK/user data delete page.php:18 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/user data delete page.php(18): PDOStatement->execute() +#1 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/user data delete page.php on line 18 +[16-May-2024 04:22:44 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'dbditsco_bersyukur.table_the_iot_projects' doesn't exist in /home/dbditsco/bersyukur.cloud/IOTKK/user data delete page.php:18 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/user data delete page.php(18): PDOStatement->execute() +#1 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/user data delete page.php on line 18 +[16-May-2024 09:13:07 UTC] PHP Warning: file_get_contents(https://api.telegram.org/bot7178379398:AAHBS4llRr2oZX9UzrFOw-Risy15OYt0jCc/sendMessage): Failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request + in /home/dbditsco/bersyukur.cloud/IOTKK/bayarDB.php on line 24 +[16-May-2024 09:15:46 UTC] PHP Warning: file_get_contents(https://api.telegram.org/bot7178379398:AAHBS4llRr2oZX9UzrFOw-Risy15OYt0jCc/sendMessage): Failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request + in /home/dbditsco/bersyukur.cloud/IOTKK/bayarDB.php on line 24 +[23-May-2024 13:27:07 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'dbditsco_bersyukur.table_the_iot_projects' doesn't exist in /home/dbditsco/bersyukur.cloud/IOTKK/user data delete page.php:18 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/user data delete page.php(18): PDOStatement->execute() +#1 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/user data delete page.php on line 18 +[23-May-2024 13:28:54 UTC] PHP Warning: file_get_contents(https://api.telegram.org/bot7178379398:AAHBS4llRr2oZX9UzrFOw-Risy15OYt0jCc/sendMessage): Failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request + in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 25 +[23-May-2024 13:30:07 UTC] PHP Warning: file_get_contents(https://api.telegram.org/bot7178379398:AAHBS4llRr2oZX9UzrFOw-Risy15OYt0jCc/sendMessage): Failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request + in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 25 +[23-May-2024 15:01:13 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'dbditsco_bersyukur.table_the_iot_projects' doesn't exist in /home/dbditsco/bersyukur.cloud/IOTKK/read tag data user pembayaran.php:12 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/read tag data user pembayaran.php(12): PDOStatement->execute() +#1 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/read tag data user pembayaran.php on line 12 +[23-May-2024 15:01:24 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'dbditsco_bersyukur.table_the_iot_projects' doesn't exist in /home/dbditsco/bersyukur.cloud/IOTKK/read tag data user pembayaran.php:12 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/read tag data user pembayaran.php(12): PDOStatement->execute() +#1 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/read tag data user pembayaran.php on line 12 +[23-May-2024 15:08:25 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'dbditsco_bersyukur.table_the_iot_projects' doesn't exist in /home/dbditsco/bersyukur.cloud/IOTKK/read tag data user pembayaran.php:12 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/read tag data user pembayaran.php(12): PDOStatement->execute() +#1 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/read tag data user pembayaran.php on line 12 +[23-May-2024 15:08:39 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'dbditsco_bersyukur.table_the_iot_projects' doesn't exist in /home/dbditsco/bersyukur.cloud/IOTKK/read tag data user pembayaran.php:12 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/read tag data user pembayaran.php(12): PDOStatement->execute() +#1 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/read tag data user pembayaran.php on line 12 +[23-May-2024 15:59:30 UTC] PHP Warning: file_get_contents(https://api.telegram.org/bot7178379398:AAHBS4llRr2oZX9UzrFOw-Risy15OYt0jCc/sendMessage): Failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request + in /home/dbditsco/bersyukur.cloud/IOTKK/bayarDB.php on line 24 +[23-May-2024 15:59:44 UTC] PHP Warning: file_get_contents(https://api.telegram.org/bot7178379398:AAHBS4llRr2oZX9UzrFOw-Risy15OYt0jCc/sendMessage): Failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request + in /home/dbditsco/bersyukur.cloud/IOTKK/bayarDB.php on line 24 +[23-May-2024 16:07:31 UTC] PHP Warning: Undefined variable $uid in /home/dbditsco/bersyukur.cloud/IOTKK/read tag pembayaran.php on line 270 +[23-May-2024 16:08:06 UTC] PHP Warning: Undefined variable $uid in /home/dbditsco/bersyukur.cloud/IOTKK/read tag pembayaran.php on line 270 +[23-May-2024 16:08:06 UTC] PHP Warning: Undefined variable $uid in /home/dbditsco/bersyukur.cloud/IOTKK/read tag pembayaran.php on line 270 +[23-May-2024 16:09:36 UTC] PHP Warning: Undefined variable $uid in /home/dbditsco/bersyukur.cloud/IOTKK/read tag pembayaran.php on line 270 +[23-May-2024 16:10:21 UTC] PHP Warning: Undefined variable $uid in /home/dbditsco/bersyukur.cloud/IOTKK/read tag pembayaran.php on line 270 +[23-May-2024 16:10:26 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'dbditsco_bersyukur.table_the_iot_projects' doesn't exist in /home/dbditsco/bersyukur.cloud/IOTKK/read tag data user pembayaran.php:12 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/read tag data user pembayaran.php(12): PDOStatement->execute() +#1 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/read tag data user pembayaran.php on line 12 +[23-May-2024 16:10:49 UTC] PHP Warning: Undefined variable $uid in /home/dbditsco/bersyukur.cloud/IOTKK/read tag pembayaran.php on line 270 +[23-May-2024 16:11:22 UTC] PHP Warning: Undefined variable $uid in /home/dbditsco/bersyukur.cloud/IOTKK/read tag pembayaran.php on line 270 +[23-May-2024 16:11:44 UTC] PHP Warning: Undefined variable $uid in /home/dbditsco/bersyukur.cloud/IOTKK/read tag pembayaran.php on line 270 +[23-May-2024 16:13:09 UTC] PHP Warning: Undefined array key "id" in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 27 +[23-May-2024 16:13:22 UTC] PHP Warning: Undefined array key "id" in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 27 +[23-May-2024 16:21:36 UTC] PHP Warning: Undefined array key "id" in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 28 +[23-May-2024 16:21:36 UTC] PHP Warning: Undefined array key "name" in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 29 +[23-May-2024 16:21:36 UTC] PHP Warning: Undefined array key "gender" in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 30 +[23-May-2024 16:21:36 UTC] PHP Warning: Undefined array key "email" in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 31 +[23-May-2024 16:21:36 UTC] PHP Warning: Undefined array key "mobile" in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 32 +[23-May-2024 16:21:36 UTC] PHP Warning: Undefined array key "balance" in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 33 +[23-May-2024 16:21:36 UTC] PHP Warning: Undefined array key "add_balance" in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 34 +[23-May-2024 16:21:36 UTC] PHP Warning: Undefined array key "chatId" in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 36 +[23-May-2024 16:21:36 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[HY093]: Invalid parameter number: number of bound variables does not match number of tokens in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php:45 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php(45): PDOStatement->execute() +#1 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 45 +[23-May-2024 16:23:14 UTC] PHP Warning: Undefined array key "id" in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 28 +[23-May-2024 16:23:14 UTC] PHP Warning: Undefined array key "name" in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 29 +[23-May-2024 16:23:14 UTC] PHP Warning: Undefined array key "gender" in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 30 +[23-May-2024 16:23:14 UTC] PHP Warning: Undefined array key "email" in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 31 +[23-May-2024 16:23:14 UTC] PHP Warning: Undefined array key "mobile" in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 32 +[23-May-2024 16:23:14 UTC] PHP Warning: Undefined array key "balance" in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 33 +[23-May-2024 16:23:14 UTC] PHP Warning: Undefined array key "add_balance" in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 34 +[23-May-2024 16:23:14 UTC] PHP Warning: Undefined array key "chatId" in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 36 +[23-May-2024 16:23:14 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[HY093]: Invalid parameter number: number of bound variables does not match number of tokens in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php:45 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php(45): PDOStatement->execute() +#1 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 45 +[23-May-2024 16:24:08 UTC] PHP Warning: Undefined array key "id" in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 28 +[23-May-2024 16:24:08 UTC] PHP Warning: Undefined array key "name" in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 29 +[23-May-2024 16:24:08 UTC] PHP Warning: Undefined array key "gender" in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 30 +[23-May-2024 16:24:08 UTC] PHP Warning: Undefined array key "email" in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 31 +[23-May-2024 16:24:08 UTC] PHP Warning: Undefined array key "mobile" in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 32 +[23-May-2024 16:24:08 UTC] PHP Warning: Undefined array key "balance" in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 33 +[23-May-2024 16:24:08 UTC] PHP Warning: Undefined array key "add_balance" in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 34 +[23-May-2024 16:24:08 UTC] PHP Warning: Undefined array key "chatId" in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 36 +[23-May-2024 16:24:08 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[HY093]: Invalid parameter number: number of bound variables does not match number of tokens in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php:45 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php(45): PDOStatement->execute() +#1 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 45 +[23-May-2024 16:25:25 UTC] PHP Warning: Undefined array key "id" in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 28 +[23-May-2024 16:25:25 UTC] PHP Warning: Undefined array key "name" in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 29 +[23-May-2024 16:25:25 UTC] PHP Warning: Undefined array key "gender" in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 30 +[23-May-2024 16:25:25 UTC] PHP Warning: Undefined array key "email" in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 31 +[23-May-2024 16:25:25 UTC] PHP Warning: Undefined array key "mobile" in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 32 +[23-May-2024 16:25:25 UTC] PHP Warning: Undefined array key "balance" in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 33 +[23-May-2024 16:25:25 UTC] PHP Warning: Undefined array key "chatId" in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 34 +[23-May-2024 16:25:28 UTC] PHP Warning: file_get_contents(https://api.telegram.org/bot7025430463:AAHt85L9BbeGzcRiRekeU_8Ei_tVL_c3bLk/sendMessage): Failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request + in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 24 +[23-May-2024 16:27:18 UTC] PHP Warning: Undefined array key "id" in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 28 +[23-May-2024 16:27:18 UTC] PHP Warning: Undefined array key "name" in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 29 +[23-May-2024 16:27:18 UTC] PHP Warning: Undefined array key "gender" in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 30 +[23-May-2024 16:27:18 UTC] PHP Warning: Undefined array key "email" in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 31 +[23-May-2024 16:27:18 UTC] PHP Warning: Undefined array key "mobile" in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 32 +[23-May-2024 16:27:18 UTC] PHP Warning: Undefined array key "balance" in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 33 +[23-May-2024 16:27:18 UTC] PHP Warning: Undefined array key "add_balance" in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 34 +[23-May-2024 16:27:18 UTC] PHP Warning: Undefined array key "chatId" in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 36 +[23-May-2024 16:27:18 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[HY093]: Invalid parameter number: number of bound variables does not match number of tokens in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php:45 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php(45): PDOStatement->execute() +#1 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 45 +[23-May-2024 16:27:54 UTC] PHP Warning: Undefined array key "id" in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 28 +[23-May-2024 16:27:54 UTC] PHP Warning: Undefined array key "name" in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 29 +[23-May-2024 16:27:54 UTC] PHP Warning: Undefined array key "gender" in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 30 +[23-May-2024 16:27:54 UTC] PHP Warning: Undefined array key "email" in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 31 +[23-May-2024 16:27:54 UTC] PHP Warning: Undefined array key "mobile" in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 32 +[23-May-2024 16:27:54 UTC] PHP Warning: Undefined array key "balance" in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 33 +[23-May-2024 16:27:54 UTC] PHP Warning: Undefined array key "add_balance" in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 34 +[23-May-2024 16:27:54 UTC] PHP Warning: Undefined array key "chatId" in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 36 +[23-May-2024 16:27:54 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[HY093]: Invalid parameter number: number of bound variables does not match number of tokens in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php:45 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php(45): PDOStatement->execute() +#1 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 45 +[23-May-2024 16:28:56 UTC] PHP Warning: Undefined array key "id" in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 28 +[23-May-2024 16:28:56 UTC] PHP Warning: Undefined array key "name" in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 29 +[23-May-2024 16:28:56 UTC] PHP Warning: Undefined array key "gender" in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 30 +[23-May-2024 16:28:56 UTC] PHP Warning: Undefined array key "email" in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 31 +[23-May-2024 16:28:56 UTC] PHP Warning: Undefined array key "mobile" in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 32 +[23-May-2024 16:28:56 UTC] PHP Warning: Undefined array key "balance" in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 33 +[23-May-2024 16:28:56 UTC] PHP Warning: Undefined array key "add_balance" in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 34 +[23-May-2024 16:28:56 UTC] PHP Warning: Undefined array key "chatId" in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 36 +[23-May-2024 16:28:56 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[HY093]: Invalid parameter number: number of bound variables does not match number of tokens in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php:45 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php(45): PDOStatement->execute() +#1 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 45 +[23-May-2024 16:36:04 UTC] PHP Warning: Undefined array key "id" in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 28 +[23-May-2024 16:36:04 UTC] PHP Warning: Undefined array key "name" in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 29 +[23-May-2024 16:36:04 UTC] PHP Warning: Undefined array key "gender" in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 30 +[23-May-2024 16:36:04 UTC] PHP Warning: Undefined array key "email" in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 31 +[23-May-2024 16:36:04 UTC] PHP Warning: Undefined array key "mobile" in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 32 +[23-May-2024 16:36:04 UTC] PHP Warning: Undefined array key "balance" in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 33 +[23-May-2024 16:36:04 UTC] PHP Warning: Undefined array key "add_balance" in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 34 +[23-May-2024 16:36:04 UTC] PHP Warning: Undefined array key "chatId" in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 36 +[23-May-2024 16:36:04 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[HY093]: Invalid parameter number: number of bound variables does not match number of tokens in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php:45 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php(45): PDOStatement->execute() +#1 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 45 +[23-May-2024 16:36:56 UTC] PHP Warning: Undefined array key "id" in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 28 +[23-May-2024 16:36:56 UTC] PHP Warning: Undefined array key "name" in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 29 +[23-May-2024 16:36:56 UTC] PHP Warning: Undefined array key "gender" in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 30 +[23-May-2024 16:36:56 UTC] PHP Warning: Undefined array key "email" in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 31 +[23-May-2024 16:36:56 UTC] PHP Warning: Undefined array key "mobile" in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 32 +[23-May-2024 16:36:56 UTC] PHP Warning: Undefined array key "balance" in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 33 +[23-May-2024 16:36:56 UTC] PHP Warning: Undefined array key "add_balance" in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 34 +[23-May-2024 16:36:56 UTC] PHP Warning: Undefined array key "chatId" in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 36 +[23-May-2024 16:36:56 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[HY093]: Invalid parameter number: number of bound variables does not match number of tokens in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php:45 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php(45): PDOStatement->execute() +#1 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 45 +[23-May-2024 16:37:26 UTC] PHP Warning: Undefined variable $uid in /home/dbditsco/bersyukur.cloud/IOTKK/read tag pembayaran.php on line 270 +[23-May-2024 16:37:27 UTC] PHP Warning: Undefined variable $uid in /home/dbditsco/bersyukur.cloud/IOTKK/read tag pembayaran.php on line 270 +[23-May-2024 16:38:35 UTC] PHP Warning: file_get_contents(https://api.telegram.org/bot7178379398:AAHBS4llRr2oZX9UzrFOw-Risy15OYt0jCc/sendMessage): Failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request + in /home/dbditsco/bersyukur.cloud/IOTKK/bayarDB.php on line 24 +[23-May-2024 16:40:48 UTC] PHP Warning: Undefined array key "balance" in /home/dbditsco/bersyukur.cloud/IOTKK/bayarDB.php on line 29 +[23-May-2024 16:40:48 UTC] PHP Warning: Undefined array key "reduce_balance" in /home/dbditsco/bersyukur.cloud/IOTKK/bayarDB.php on line 30 +[23-May-2024 16:40:51 UTC] PHP Warning: file_get_contents(https://api.telegram.org/bot7178379398:AAHBS4llRr2oZX9UzrFOw-Risy15OYt0jCc/sendMessage): Failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request + in /home/dbditsco/bersyukur.cloud/IOTKK/bayarDB.php on line 24 +[23-May-2024 16:42:21 UTC] PHP Warning: Undefined array key "add_balance" in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 34 +[23-May-2024 16:42:21 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[HY093]: Invalid parameter number: number of bound variables does not match number of tokens in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php:45 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php(45): PDOStatement->execute() +#1 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 45 +[23-May-2024 16:43:29 UTC] PHP Warning: Undefined array key "reduce_balance" in /home/dbditsco/bersyukur.cloud/IOTKK/bayarDB.php on line 29 +[23-May-2024 16:43:33 UTC] PHP Warning: file_get_contents(https://api.telegram.org/bot7178379398:AAHBS4llRr2oZX9UzrFOw-Risy15OYt0jCc/sendMessage): Failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request + in /home/dbditsco/bersyukur.cloud/IOTKK/bayarDB.php on line 24 +[23-May-2024 16:45:11 UTC] PHP Warning: Undefined array key "reduce_balance" in /home/dbditsco/bersyukur.cloud/IOTKK/bayarDB.php on line 29 +[23-May-2024 16:45:14 UTC] PHP Warning: file_get_contents(https://api.telegram.org/bot7178379398:AAHBS4llRr2oZX9UzrFOw-Risy15OYt0jCc/sendMessage): Failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request + in /home/dbditsco/bersyukur.cloud/IOTKK/bayarDB.php on line 24 +[23-May-2024 16:46:33 UTC] PHP Warning: Undefined array key "reduce_balance" in /home/dbditsco/bersyukur.cloud/IOTKK/bayarDB.php on line 29 +[23-May-2024 16:46:35 UTC] PHP Warning: file_get_contents(https://api.telegram.org/bot7178379398:AAHBS4llRr2oZX9UzrFOw-Risy15OYt0jCc/sendMessage): Failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request + in /home/dbditsco/bersyukur.cloud/IOTKK/bayarDB.php on line 24 +[23-May-2024 16:57:11 UTC] PHP Warning: Undefined array key "id" in /home/dbditsco/bersyukur.cloud/IOTKK/bayarDB.php on line 28 +[23-May-2024 16:57:11 UTC] PHP Warning: Undefined array key "reduce_balance" in /home/dbditsco/bersyukur.cloud/IOTKK/bayarDB.php on line 29 +[23-May-2024 16:58:59 UTC] PHP Warning: Undefined array key "reduce_balance" in /home/dbditsco/bersyukur.cloud/IOTKK/bayarDB.php on line 29 +[23-May-2024 16:59:06 UTC] PHP Warning: file_get_contents(https://api.telegram.org/bot7178379398:AAHBS4llRr2oZX9UzrFOw-Risy15OYt0jCc/sendMessage): Failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request + in /home/dbditsco/bersyukur.cloud/IOTKK/bayarDB.php on line 24 +[23-May-2024 17:00:31 UTC] PHP Warning: Undefined array key "reduce_balance" in /home/dbditsco/bersyukur.cloud/IOTKK/bayarDB.php on line 29 +[23-May-2024 17:00:33 UTC] PHP Warning: file_get_contents(https://api.telegram.org/bot7178379398:AAHBS4llRr2oZX9UzrFOw-Risy15OYt0jCc/sendMessage): Failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request + in /home/dbditsco/bersyukur.cloud/IOTKK/bayarDB.php on line 24 +[23-May-2024 17:00:59 UTC] PHP Warning: Undefined array key "reduce_balance" in /home/dbditsco/bersyukur.cloud/IOTKK/bayarDB.php on line 29 +[23-May-2024 17:01:01 UTC] PHP Warning: file_get_contents(https://api.telegram.org/bot7178379398:AAHBS4llRr2oZX9UzrFOw-Risy15OYt0jCc/sendMessage): Failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request + in /home/dbditsco/bersyukur.cloud/IOTKK/bayarDB.php on line 24 +[23-May-2024 17:13:39 UTC] PHP Warning: Undefined array key "reduce_balance" in /home/dbditsco/bersyukur.cloud/IOTKK/bayarDB.php on line 29 +[23-May-2024 17:13:43 UTC] PHP Warning: file_get_contents(https://api.telegram.org/bot7178379398:AAHBS4llRr2oZX9UzrFOw-Risy15OYt0jCc/sendMessage): Failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request + in /home/dbditsco/bersyukur.cloud/IOTKK/bayarDB.php on line 24 +[23-May-2024 17:14:00 UTC] PHP Warning: Undefined array key "reduce_balance" in /home/dbditsco/bersyukur.cloud/IOTKK/bayarDB.php on line 29 +[23-May-2024 17:14:06 UTC] PHP Warning: file_get_contents(https://api.telegram.org/bot7178379398:AAHBS4llRr2oZX9UzrFOw-Risy15OYt0jCc/sendMessage): Failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request + in /home/dbditsco/bersyukur.cloud/IOTKK/bayarDB.php on line 24 +[23-May-2024 17:21:58 UTC] PHP Warning: Undefined array key "id" in /home/dbditsco/bersyukur.cloud/IOTKK/bayarDB.php on line 28 +[23-May-2024 17:22:35 UTC] PHP Warning: file_get_contents(https://api.telegram.org/bot7178379398:AAHBS4llRr2oZX9UzrFOw-Risy15OYt0jCc/sendMessage): Failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request + in /home/dbditsco/bersyukur.cloud/IOTKK/bayarDB.php on line 24 +[23-May-2024 17:24:11 UTC] PHP Warning: Undefined array key "reduce_balance" in /home/dbditsco/bersyukur.cloud/IOTKK/bayarDB.php on line 29 +[23-May-2024 17:24:13 UTC] PHP Warning: file_get_contents(https://api.telegram.org/bot7178379398:AAHBS4llRr2oZX9UzrFOw-Risy15OYt0jCc/sendMessage): Failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request + in /home/dbditsco/bersyukur.cloud/IOTKK/bayarDB.php on line 24 +[23-May-2024 17:25:09 UTC] PHP Warning: file_get_contents(https://api.telegram.org/bot7178379398:AAHBS4llRr2oZX9UzrFOw-Risy15OYt0jCc/sendMessage): Failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request + in /home/dbditsco/bersyukur.cloud/IOTKK/bayarDB.php on line 24 +[24-May-2024 04:53:03 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry '34F76951' for key 'siswa_wali.PRIMARY' in /home/dbditsco/bersyukur.cloud/IOTKK/insertDB.php:18 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/insertDB.php(18): PDOStatement->execute() +#1 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/insertDB.php on line 18 +[24-May-2024 04:53:13 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry '34F76951' for key 'siswa_wali.PRIMARY' in /home/dbditsco/bersyukur.cloud/IOTKK/insertDB.php:18 +Stack trace: +#0 /home/dbditsco/bersyukur.cloud/IOTKK/insertDB.php(18): PDOStatement->execute() +#1 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/insertDB.php on line 18 +[24-May-2024 04:55:38 UTC] PHP Warning: file_get_contents(https://api.telegram.org/bot7025430463:AAHt85L9BbeGzcRiRekeU_8Ei_tVL_c3bLk/sendMessage): Failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request + in /home/dbditsco/bersyukur.cloud/IOTKK/bayarDB.php on line 24 +[24-May-2024 04:57:45 UTC] PHP Warning: file_get_contents(https://api.telegram.org/bot7025430463:AAHt85L9BbeGzcRiRekeU_8Ei_tVL_c3bLk/sendMessage): Failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request + in /home/dbditsco/bersyukur.cloud/IOTKK/tambahSaldoDB.php on line 24 +[24-May-2024 04:58:36 UTC] PHP Warning: file_get_contents(https://api.telegram.org/bot7025430463:AAHt85L9BbeGzcRiRekeU_8Ei_tVL_c3bLk/sendMessage): Failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request + in /home/dbditsco/bersyukur.cloud/IOTKK/bayarDB.php on line 24 +[24-May-2024 04:59:07 UTC] PHP Warning: file_get_contents(https://api.telegram.org/bot7025430463:AAHt85L9BbeGzcRiRekeU_8Ei_tVL_c3bLk/sendMessage): Failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request + in /home/dbditsco/bersyukur.cloud/IOTKK/tambahSaldoDB.php on line 24 +[24-May-2024 05:00:05 UTC] PHP Warning: file_get_contents(https://api.telegram.org/bot7025430463:AAHt85L9BbeGzcRiRekeU_8Ei_tVL_c3bLk/sendMessage): Failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request + in /home/dbditsco/bersyukur.cloud/IOTKK/tambahSaldoDB.php on line 24 +[24-May-2024 05:00:29 UTC] PHP Warning: file_get_contents(https://api.telegram.org/bot7025430463:AAHt85L9BbeGzcRiRekeU_8Ei_tVL_c3bLk/sendMessage): Failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request + in /home/dbditsco/bersyukur.cloud/IOTKK/bayarDB.php on line 24 +[24-May-2024 13:36:00 UTC] PHP Warning: Undefined array key "add_balance" in /home/dbditsco/bersyukur.cloud/IOTKK/tambahSaldoDB.php on line 29 +[24-May-2024 14:14:55 UTC] PHP Warning: Trying to access array offset on false in /home/dbditsco/bersyukur.cloud/IOTKK/read tag data user pembayaran.php on line 17 +[25-May-2024 04:26:45 UTC] PHP Warning: Trying to access array offset on false in /home/dbditsco/bersyukur.cloud/IOTKK/read tag data user pembayaran.php on line 17 +[25-May-2024 05:07:25 UTC] PHP Warning: file_get_contents(https://api.telegram.org/bot7025430463:AAHt85L9BbeGzcRiRekeU_8Ei_tVL_c3bLk/sendMessage): Failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request + in /home/dbditsco/bersyukur.cloud/IOTKK/bayarDB.php on line 24 +[25-May-2024 05:07:57 UTC] PHP Warning: file_get_contents(https://api.telegram.org/bot7025430463:AAHt85L9BbeGzcRiRekeU_8Ei_tVL_c3bLk/sendMessage): Failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request + in /home/dbditsco/bersyukur.cloud/IOTKK/tambahSaldoDB.php on line 24 +[25-May-2024 05:08:26 UTC] PHP Warning: file_get_contents(https://api.telegram.org/bot7025430463:AAHt85L9BbeGzcRiRekeU_8Ei_tVL_c3bLk/sendMessage): Failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request + in /home/dbditsco/bersyukur.cloud/IOTKK/tambahSaldoDB.php on line 24 +[25-May-2024 05:08:45 UTC] PHP Warning: file_get_contents(https://api.telegram.org/bot7025430463:AAHt85L9BbeGzcRiRekeU_8Ei_tVL_c3bLk/sendMessage): Failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request + in /home/dbditsco/bersyukur.cloud/IOTKK/bayarDB.php on line 24 +[25-May-2024 05:10:35 UTC] PHP Warning: file_get_contents(https://api.telegram.org/bot7025430463:AAHt85L9BbeGzcRiRekeU_8Ei_tVL_c3bLk/sendMessage): Failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request + in /home/dbditsco/bersyukur.cloud/IOTKK/bayarDB.php on line 24 +[25-May-2024 05:22:49 UTC] PHP Warning: file_get_contents(https://api.telegram.org/bot7025430463:AAHt85L9BbeGzcRiRekeU_8Ei_tVL_c3bLk/sendMessage): Failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request + in /home/dbditsco/bersyukur.cloud/IOTKK/tambahSaldoDB.php on line 24 +[25-May-2024 06:02:20 UTC] PHP Warning: Trying to access array offset on false in /home/dbditsco/bersyukur.cloud/IOTKK/read tag user data.php on line 17 +[27-May-2024 04:09:37 UTC] PHP Warning: file_get_contents(https://api.telegram.org/bot7178379398:AAHBS4llRr2oZX9UzrFOw-Risy15OYt0jCc/sendMessage): Failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request + in /home/dbditsco/bersyukur.cloud/IOTKK/tambahSaldoDB.php on line 24 +[27-May-2024 09:04:05 UTC] PHP Warning: Undefined array key "add_balance" in /home/dbditsco/bersyukur.cloud/IOTKK/tambahSaldoDB.php on line 29 +[27-May-2024 09:04:07 UTC] PHP Warning: file_get_contents(https://api.telegram.org/bot7178379398:AAHBS4llRr2oZX9UzrFOw-Risy15OYt0jCc/sendMessage): Failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request + in /home/dbditsco/bersyukur.cloud/IOTKK/tambahSaldoDB.php on line 24 +[28-May-2024 05:42:22 UTC] PHP Warning: Trying to access array offset on false in /home/dbditsco/bersyukur.cloud/IOTKK/read tag user data.php on line 17 +[28-May-2024 05:48:00 UTC] PHP Warning: Trying to access array offset on false in /home/dbditsco/bersyukur.cloud/IOTKK/read tag user data.php on line 17 +[28-May-2024 05:55:55 UTC] PHP Warning: Trying to access array offset on false in /home/dbditsco/bersyukur.cloud/IOTKK/read tag user data.php on line 17 +[28-May-2024 06:01:18 UTC] PHP Warning: Trying to access array offset on false in /home/dbditsco/bersyukur.cloud/IOTKK/read tag user data.php on line 17 +[28-May-2024 06:20:23 UTC] PHP Warning: Trying to access array offset on false in /home/dbditsco/bersyukur.cloud/IOTKK/read tag user data.php on line 17 +[28-May-2024 07:14:00 UTC] PHP Warning: Trying to access array offset on false in /home/dbditsco/bersyukur.cloud/IOTKK/read tag user data.php on line 17 +[28-May-2024 07:14:20 UTC] PHP Warning: Trying to access array offset on false in /home/dbditsco/bersyukur.cloud/IOTKK/read tag data user pembayaran.php on line 17 +[28-May-2024 07:19:42 UTC] PHP Warning: Trying to access array offset on false in /home/dbditsco/bersyukur.cloud/IOTKK/read tag data user pembayaran.php on line 17 +[28-May-2024 07:22:02 UTC] PHP Warning: Trying to access array offset on false in /home/dbditsco/bersyukur.cloud/IOTKK/read tag data user pembayaran.php on line 17 +[28-May-2024 07:24:02 UTC] PHP Warning: Trying to access array offset on false in /home/dbditsco/bersyukur.cloud/IOTKK/read tag data user pembayaran.php on line 17 +[28-May-2024 07:24:42 UTC] PHP Warning: Trying to access array offset on false in /home/dbditsco/bersyukur.cloud/IOTKK/read tag data user pembayaran.php on line 17 +[28-May-2024 09:04:35 UTC] PHP Warning: Trying to access array offset on false in /home/dbditsco/bersyukur.cloud/IOTKK/read tag user data.php on line 17 +[28-May-2024 09:04:57 UTC] PHP Warning: file_get_contents(https://api.telegram.org/bot7178379398:AAHBS4llRr2oZX9UzrFOw-Risy15OYt0jCc/sendMessage): Failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request + in /home/dbditsco/bersyukur.cloud/IOTKK/tambahSaldoDB.php on line 24 +[28-May-2024 09:25:43 UTC] PHP Warning: Undefined variable $dataBalance in /home/dbditsco/bersyukur.cloud/IOTKK/sendNewBalance.php on line 1 +[28-May-2024 09:25:52 UTC] PHP Warning: Undefined variable $dataBalance in /home/dbditsco/bersyukur.cloud/IOTKK/sendNewBalance.php on line 1 +[28-May-2024 09:25:54 UTC] PHP Warning: Undefined variable $dataBalance in /home/dbditsco/bersyukur.cloud/IOTKK/sendNewBalance.php on line 1 +[28-May-2024 09:26:16 UTC] PHP Warning: Undefined variable $dataBalance in /home/dbditsco/bersyukur.cloud/IOTKK/sendNewBalance.php on line 1 +[28-May-2024 09:26:33 UTC] PHP Warning: Undefined variable $dataBalance in /home/dbditsco/bersyukur.cloud/IOTKK/sendNewBalance.php on line 1 +[28-May-2024 09:26:47 UTC] PHP Warning: Undefined variable $dataBalance in /home/dbditsco/bersyukur.cloud/IOTKK/sendNewBalance.php on line 1 +[28-May-2024 09:26:53 UTC] PHP Fatal error: Uncaught TypeError: Unsupported operand types: int + string in /home/dbditsco/bersyukur.cloud/IOTKK/tambahSaldoDB.php:44 +Stack trace: +#0 {main} + thrown in /home/dbditsco/bersyukur.cloud/IOTKK/tambahSaldoDB.php on line 44 +[28-May-2024 09:51:57 UTC] PHP Warning: Trying to access array offset on false in /home/dbditsco/bersyukur.cloud/IOTKK/read tag data user pembayaran.php on line 17 +[31-May-2024 02:24:13 UTC] PHP Warning: Trying to access array offset on false in /home/dbditsco/bersyukur.cloud/IOTKK/read tag user data.php on line 17 +[31-May-2024 02:27:29 UTC] PHP Warning: Trying to access array offset on false in /home/dbditsco/bersyukur.cloud/IOTKK/read tag user data.php on line 17 +[31-May-2024 02:55:56 UTC] PHP Warning: Trying to access array offset on false in /home/dbditsco/bersyukur.cloud/IOTKK/read tag user data.php on line 17 +[01-Jun-2024 04:58:09 UTC] PHP Warning: Trying to access array offset on false in /home/dbditsco/bersyukur.cloud/IOTKK/read tag data user pembayaran.php on line 17 +[01-Jun-2024 04:58:34 UTC] PHP Warning: Trying to access array offset on false in /home/dbditsco/bersyukur.cloud/IOTKK/read tag user data.php on line 17 +[01-Jun-2024 05:13:09 UTC] PHP Warning: Trying to access array offset on false in /home/dbditsco/bersyukur.cloud/IOTKK/read tag user data.php on line 17 +[03-Jun-2024 07:35:21 UTC] PHP Warning: Undefined array key "UIDresult" in /home/dbditsco/bersyukur.cloud/IOTKK/getUID.php on line 2 +[03-Jun-2024 08:08:46 UTC] PHP Warning: Undefined array key "UIDresult" in /home/dbditsco/bersyukur.cloud/IOTKK/getUID.php on line 2 +[03-Jun-2024 08:13:29 UTC] PHP Warning: Undefined array key "UIDresult" in /home/dbditsco/bersyukur.cloud/IOTKK/getUID.php on line 2 +[03-Jun-2024 08:15:42 UTC] PHP Warning: Undefined array key "UIDresult" in /home/dbditsco/bersyukur.cloud/IOTKK/getUID.php on line 2 +[03-Jun-2024 08:29:42 UTC] PHP Warning: Undefined array key "UIDresult" in /home/dbditsco/bersyukur.cloud/IOTKK/getUID.php on line 2 +[05-Jun-2024 05:14:34 UTC] PHP Warning: Trying to access array offset on false in /home/dbditsco/bersyukur.cloud/IOTKK/read tag user data.php on line 17 +[05-Jun-2024 07:43:05 UTC] PHP Warning: file_get_contents(https://api.telegram.org/botYOUR_TELEGRAM_BOT_TOKEN/sendMessage): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found + in /home/dbditsco/bersyukur.cloud/IOTKK/bayarDB.php on line 24 +[05-Jun-2024 07:46:06 UTC] PHP Warning: file_get_contents(https://api.telegram.org/botYOUR_TELEGRAM_BOT_TOKEN/sendMessage): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found + in /home/dbditsco/bersyukur.cloud/IOTKK/bayarDB.php on line 24 +[05-Jun-2024 07:48:00 UTC] PHP Warning: file_get_contents(https://api.telegram.org/botYOUR_TELEGRAM_BOT_TOKEN/sendMessage): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found + in /home/dbditsco/bersyukur.cloud/IOTKK/bayarDB.php on line 24 +[05-Jun-2024 07:51:10 UTC] PHP Warning: file_get_contents(https://api.telegram.org/botYOUR_TELEGRAM_BOT_TOKEN/sendMessage): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found + in /home/dbditsco/bersyukur.cloud/IOTKK/bayarDB.php on line 24 +[05-Jun-2024 07:52:33 UTC] PHP Warning: Trying to access array offset on false in /home/dbditsco/bersyukur.cloud/IOTKK/read tag user data.php on line 17 +[05-Jun-2024 07:52:53 UTC] PHP Warning: Trying to access array offset on false in /home/dbditsco/bersyukur.cloud/IOTKK/read tag user data.php on line 17 +[05-Jun-2024 07:55:58 UTC] PHP Warning: Trying to access array offset on false in /home/dbditsco/bersyukur.cloud/IOTKK/read tag user data.php on line 17 +[05-Jun-2024 08:02:03 UTC] PHP Warning: Trying to access array offset on false in /home/dbditsco/bersyukur.cloud/IOTKK/read tag data user pembayaran.php on line 17 +[05-Jun-2024 08:02:35 UTC] PHP Warning: file_get_contents(https://api.telegram.org/botYOUR_TELEGRAM_BOT_TOKEN/sendMessage): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found + in /home/dbditsco/bersyukur.cloud/IOTKK/bayarDB.php on line 24 +[05-Jun-2024 08:18:27 UTC] PHP Warning: file_get_contents(https://api.telegram.org/botYOUR_TELEGRAM_BOT_TOKEN/sendMessage): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found + in /home/dbditsco/bersyukur.cloud/IOTKK/bayarDB.php on line 24 +[05-Jun-2024 08:18:52 UTC] PHP Warning: file_get_contents(https://api.telegram.org/botYOUR_TELEGRAM_BOT_TOKEN/sendMessage): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found + in /home/dbditsco/bersyukur.cloud/IOTKK/bayarDB.php on line 24 +[05-Jun-2024 08:19:46 UTC] PHP Warning: file_get_contents(https://api.telegram.org/botYOUR_TELEGRAM_BOT_TOKEN/sendMessage): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found + in /home/dbditsco/bersyukur.cloud/IOTKK/bayarDB.php on line 24 +[05-Jun-2024 08:38:00 UTC] PHP Warning: file_get_contents(https://api.telegram.org/botYOUR_TELEGRAM_BOT_TOKEN/sendMessage): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found + in /home/dbditsco/bersyukur.cloud/IOTKK/bayarDB.php on line 24 +[05-Jun-2024 08:49:39 UTC] PHP Warning: file_get_contents(https://api.telegram.org/botYOUR_TELEGRAM_BOT_TOKEN/sendMessage): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found + in /home/dbditsco/bersyukur.cloud/IOTKK/bayarDB.php on line 24 +[05-Jun-2024 08:51:04 UTC] PHP Warning: file_get_contents(https://api.telegram.org/botYOUR_TELEGRAM_BOT_TOKEN/sendMessage): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found + in /home/dbditsco/bersyukur.cloud/IOTKK/bayarDB.php on line 24 +[07-Jun-2024 03:16:41 UTC] PHP Warning: Undefined array key "UIDresult" in /home/dbditsco/bersyukur.cloud/IOTKK/getUIDBayar.php on line 2 +[07-Jun-2024 03:17:43 UTC] PHP Warning: Undefined array key "UIDresult" in /home/dbditsco/bersyukur.cloud/IOTKK/getUIDBayar.php on line 2 +[07-Jun-2024 03:18:19 UTC] PHP Warning: Undefined array key "UIDresult" in /home/dbditsco/bersyukur.cloud/IOTKK/getUIDBayar.php on line 2 +[07-Jun-2024 03:18:20 UTC] PHP Warning: Undefined array key "UIDresult" in /home/dbditsco/bersyukur.cloud/IOTKK/getUIDBayar.php on line 2 +[07-Jun-2024 03:18:20 UTC] PHP Warning: Undefined array key "UIDresult" in /home/dbditsco/bersyukur.cloud/IOTKK/getUIDBayar.php on line 2 +[07-Jun-2024 04:46:14 UTC] PHP Warning: Trying to access array offset on false in /home/dbditsco/bersyukur.cloud/IOTKK/read tag data user pembayaran.php on line 17 +[12-Jun-2024 10:28:39 UTC] PHP Warning: Trying to access array offset on false in /home/dbditsco/bersyukur.cloud/IOTKK/read tag user data.php on line 17 +[12-Jun-2024 10:34:12 UTC] PHP Warning: Trying to access array offset on false in /home/dbditsco/bersyukur.cloud/IOTKK/read tag user data.php on line 17 +[12-Jun-2024 10:34:32 UTC] PHP Warning: Trying to access array offset on false in /home/dbditsco/bersyukur.cloud/IOTKK/read tag user data.php on line 17 +[15-Jun-2024 07:00:54 UTC] PHP Warning: file_get_contents(https://api.telegram.org/bot7178379398:AAHBS4llRr2oZX9UzrFOw-Risy15OYt0jCc/sendMessage): Failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request + in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 25 +[15-Jun-2024 07:01:09 UTC] PHP Warning: file_get_contents(https://api.telegram.org/bot7178379398:AAHBS4llRr2oZX9UzrFOw-Risy15OYt0jCc/sendMessage): Failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request + in /home/dbditsco/bersyukur.cloud/IOTKK/updateDB.php on line 25 +[16-Jun-2024 10:58:53 UTC] PHP Warning: Trying to access array offset on false in /home/dbditsco/bersyukur.cloud/IOTKK/read tag user data.php on line 17 +[18-Jun-2024 12:58:49 UTC] PHP Warning: Trying to access array offset on false in /home/dbditsco/bersyukur.cloud/IOTKK/read tag data user pembayaran.php on line 17 +[19-Jun-2024 08:50:53 Asia/Jakarta] PHP Warning: file_get_contents(https://api.telegram.org/bot7178379398:AAHBS4llRr2oZX9UzrFOw-Risy15OYt0jCc/sendMessage): Failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request + in /home/dbditsco/bersyukur.cloud/IOTKK/insertDB.php on line 23 +[21-Jun-2024 09:46:14 Asia/Jakarta] PHP Warning: file_get_contents(https://api.telegram.org/bot7178379398:AAHBS4llRr2oZX9UzrFOw-Risy15OYt0jCc/sendMessage): Failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request + in /home/dbditsco/bersyukur.cloud/IOTKK/insertDB.php on line 23 diff --git a/getUID.php b/getUID.php new file mode 100644 index 0000000..c7a8206 --- /dev/null +++ b/getUID.php @@ -0,0 +1,5 @@ +"; + file_put_contents('UIDContainer.php',$Write); +?> \ No newline at end of file diff --git a/getUIDBayar.php b/getUIDBayar.php new file mode 100644 index 0000000..ca97014 --- /dev/null +++ b/getUIDBayar.php @@ -0,0 +1,4 @@ +"; +file_put_contents('UIDBayarContainer.php', $Write); diff --git a/home ok ok.png b/home ok ok.png new file mode 100644 index 0000000000000000000000000000000000000000..d677aba0aa74d85d7175d92df66d261fbf5484e0 GIT binary patch literal 169591 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 T$~*sg<^eL2iW1dghC%-ymI%o6 literal 0 HcmV?d00001 diff --git a/home.php b/home.php new file mode 100644 index 0000000..2373639 --- /dev/null +++ b/home.php @@ -0,0 +1,194 @@ +"; +file_put_contents('UIDContainer.php', $Write); +?> + + + + + + + + Home : NodeMCU V3 ESP8266 / ESP12E with MYSQL Database + + + + + + +

+
+
+

WELCOME TO SISTEM E-MONEY DAN INFORMASI KE ORANG TUA + MENGGUNAKAN KARTU PELAJAR BERBASIS + INTERNET OF THINGS

+
+
+
+

Home

+

Sistem ini dirancang untuk + memudahkan transaksi di lingkungan + sekolah dan memberikan kemudahan + bagi siswa dan orang tua dalam + mengelola keuangan sehari-hari.

+ Home +
+
+

Data User

+

Halaman "Data User" menyajikan + informasi lengkap mengenai pengguna + yang telah terdaftar dalam sistem, + termasuk detail seperti nama, ID, + jenis kelamin,email, no. telepon.

+ Data User +
+
+

Registrasi

+

Registrasi dilakukan dengan + menempelkan kartu pelajar pada + alat pembaca RFID, kemudian + mengisi nama lengkap, jenis + kelamin, email, dan nomor HP + siswa dan chatID Telegram.

+ Registrasi +
+
+

Tambah Saldo

+

Pengisian saldo e-money dilakukan + dengan cara memindai kartu + pelajar di alat pembaca RFID, + memasukkan jumlah saldo di form isi saldo + lalu mengklik tombol "Update Saldo". +

+ Tambah Saldo +
+
+
+ + + \ No newline at end of file diff --git a/homeUser.php b/homeUser.php new file mode 100644 index 0000000..16f6e21 --- /dev/null +++ b/homeUser.php @@ -0,0 +1,169 @@ +"; +file_put_contents('UIDBayarContainer.php', $Write); +?> + + + + + + + + Home : NodeMCU V3 ESP8266 / ESP12E with MYSQL Database + + + + + + +
+ +
+
+
+

WELCOME TO SISTEM E-MONEY DAN INFORMASI KE ORANG TUA + MENGGUNAKAN KARTU PELAJAR BERBASIS + INTERNET OF THINGS

+
+
+
+

Home

+

Sistem ini dirancang untuk + memudahkan transaksi di lingkungan + sekolah dan memberikan kemudahan + bagi siswa dan orang tua dalam + mengelola keuangan sehari-hari.

+ Home +
+
+

Pembayaran

+

Proses pembayaran menggunakan kartu rfid + siswa dengan menginputkan jumlah nominal yang dibayarkan

+ Pembayaran +
+
+
+ + + \ No newline at end of file diff --git a/img/glyphicons-halflings-white.png b/img/glyphicons-halflings-white.png new file mode 100644 index 0000000000000000000000000000000000000000..3bf6484a29d8da269f9bc874b25493a45fae3bae GIT binary patch literal 8777 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 B7G?kd literal 0 HcmV?d00001 diff --git a/img/glyphicons-halflings.png b/img/glyphicons-halflings.png new file mode 100644 index 0000000000000000000000000000000000000000..a9969993201f9cee63cf9f49217646347297b643 GIT binary patch literal 12799 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 literal 0 HcmV?d00001 diff --git a/insertDB.php b/insertDB.php new file mode 100644 index 0000000..1ba422e --- /dev/null +++ b/insertDB.php @@ -0,0 +1,54 @@ + $chatId, + 'text' => $message + ]; + + $options = [ + 'http' => [ + 'method' => 'POST', + 'header' => "Content-Type:application/x-www-form-urlencoded\r\n", + 'content' => http_build_query($data) + ] + ]; + + $context = stream_context_create($options); + file_get_contents($apiURL, false, $context); +} + +if (!empty($_POST)) { + // Set the default timezone to Jakarta, Indonesia + date_default_timezone_set('Asia/Jakarta'); + + // Keep track of post values + $name = $_POST['name']; + $id = $_POST['id']; + $gender = $_POST['gender']; + $email = $_POST['email']; + $mobile = $_POST['mobile']; + $chatId = $_POST['chatId']; + $date = date('Y-m-d H:i:s'); // Generate current date and time with the local timezone + + // Insert data + $pdo = Database::connect(); + $pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); + $sql = "INSERT INTO siswa_wali (name, id, gender, email, mobile, chatId, date) values(?, ?, ?, ?, ?, ?, ?)"; + $q = $pdo->prepare($sql); + $q->execute(array($name, $id, $gender, $email, $mobile, $chatId, $date)); // Include $chatId in the array + Database::disconnect(); + + // Send a message to the user on Telegram + $message = "Halo $name, berhasil melakukan registrasi. Pada $date"; + sendMessage($chatId, $message); + + // Redirect to user data page + header("Location: user data.php"); +} +?> diff --git a/jquery.min.js b/jquery.min.js new file mode 100644 index 0000000..773ad95 --- /dev/null +++ b/jquery.min.js @@ -0,0 +1,10598 @@ +/*! + * jQuery JavaScript Library v3.4.1 + * https://jquery.com/ + * + * Includes Sizzle.js + * https://sizzlejs.com/ + * + * Copyright JS Foundation and other contributors + * Released under the MIT license + * https://jquery.org/license + * + * Date: 2019-05-01T21:04Z + */ +( function( global, factory ) { + + "use strict"; + + if ( typeof module === "object" && typeof module.exports === "object" ) { + + // For CommonJS and CommonJS-like environments where a proper `window` + // is present, execute the factory and get jQuery. + // For environments that do not have a `window` with a `document` + // (such as Node.js), expose a factory as module.exports. + // This accentuates the need for the creation of a real `window`. + // e.g. var jQuery = require("jquery")(window); + // See ticket #14549 for more info. + module.exports = global.document ? + factory( global, true ) : + function( w ) { + if ( !w.document ) { + throw new Error( "jQuery requires a window with a document" ); + } + return factory( w ); + }; + } else { + factory( global ); + } + +// Pass this if window is not defined yet +} )( typeof window !== "undefined" ? window : this, function( window, noGlobal ) { + +// Edge <= 12 - 13+, Firefox <=18 - 45+, IE 10 - 11, Safari 5.1 - 9+, iOS 6 - 9.1 +// throw exceptions when non-strict code (e.g., ASP.NET 4.5) accesses strict mode +// arguments.callee.caller (trac-13335). But as of jQuery 3.0 (2016), strict mode should be common +// enough that all such attempts are guarded in a try block. +"use strict"; + +var arr = []; + +var document = window.document; + +var getProto = Object.getPrototypeOf; + +var slice = arr.slice; + +var concat = arr.concat; + +var push = arr.push; + +var indexOf = arr.indexOf; + +var class2type = {}; + +var toString = class2type.toString; + +var hasOwn = class2type.hasOwnProperty; + +var fnToString = hasOwn.toString; + +var ObjectFunctionString = fnToString.call( Object ); + +var support = {}; + +var isFunction = function isFunction( obj ) { + + // Support: Chrome <=57, Firefox <=52 + // In some browsers, typeof returns "function" for HTML elements + // (i.e., `typeof document.createElement( "object" ) === "function"`). + // We don't want to classify *any* DOM node as a function. + return typeof obj === "function" && typeof obj.nodeType !== "number"; + }; + + +var isWindow = function isWindow( obj ) { + return obj != null && obj === obj.window; + }; + + + + + var preservedScriptAttributes = { + type: true, + src: true, + nonce: true, + noModule: true + }; + + function DOMEval( code, node, doc ) { + doc = doc || document; + + var i, val, + script = doc.createElement( "script" ); + + script.text = code; + if ( node ) { + for ( i in preservedScriptAttributes ) { + + // Support: Firefox 64+, Edge 18+ + // Some browsers don't support the "nonce" property on scripts. + // On the other hand, just using `getAttribute` is not enough as + // the `nonce` attribute is reset to an empty string whenever it + // becomes browsing-context connected. + // See https://github.com/whatwg/html/issues/2369 + // See https://html.spec.whatwg.org/#nonce-attributes + // The `node.getAttribute` check was added for the sake of + // `jQuery.globalEval` so that it can fake a nonce-containing node + // via an object. + val = node[ i ] || node.getAttribute && node.getAttribute( i ); + if ( val ) { + script.setAttribute( i, val ); + } + } + } + doc.head.appendChild( script ).parentNode.removeChild( script ); + } + + +function toType( obj ) { + if ( obj == null ) { + return obj + ""; + } + + // Support: Android <=2.3 only (functionish RegExp) + return typeof obj === "object" || typeof obj === "function" ? + class2type[ toString.call( obj ) ] || "object" : + typeof obj; +} +/* global Symbol */ +// Defining this global in .eslintrc.json would create a danger of using the global +// unguarded in another place, it seems safer to define global only for this module + + + +var + version = "3.4.1", + + // Define a local copy of jQuery + jQuery = function( selector, context ) { + + // The jQuery object is actually just the init constructor 'enhanced' + // Need init if jQuery is called (just allow error to be thrown if not included) + return new jQuery.fn.init( selector, context ); + }, + + // Support: Android <=4.0 only + // Make sure we trim BOM and NBSP + rtrim = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g; + +jQuery.fn = jQuery.prototype = { + + // The current version of jQuery being used + jquery: version, + + constructor: jQuery, + + // The default length of a jQuery object is 0 + length: 0, + + toArray: function() { + return slice.call( this ); + }, + + // Get the Nth element in the matched element set OR + // Get the whole matched element set as a clean array + get: function( num ) { + + // Return all the elements in a clean array + if ( num == null ) { + return slice.call( this ); + } + + // Return just the one element from the set + return num < 0 ? this[ num + this.length ] : this[ num ]; + }, + + // Take an array of elements and push it onto the stack + // (returning the new matched element set) + pushStack: function( elems ) { + + // Build a new jQuery matched element set + var ret = jQuery.merge( this.constructor(), elems ); + + // Add the old object onto the stack (as a reference) + ret.prevObject = this; + + // Return the newly-formed element set + return ret; + }, + + // Execute a callback for every element in the matched set. + each: function( callback ) { + return jQuery.each( this, callback ); + }, + + map: function( callback ) { + return this.pushStack( jQuery.map( this, function( elem, i ) { + return callback.call( elem, i, elem ); + } ) ); + }, + + slice: function() { + return this.pushStack( slice.apply( this, arguments ) ); + }, + + first: function() { + return this.eq( 0 ); + }, + + last: function() { + return this.eq( -1 ); + }, + + eq: function( i ) { + var len = this.length, + j = +i + ( i < 0 ? len : 0 ); + return this.pushStack( j >= 0 && j < len ? [ this[ j ] ] : [] ); + }, + + end: function() { + return this.prevObject || this.constructor(); + }, + + // For internal use only. + // Behaves like an Array's method, not like a jQuery method. + push: push, + sort: arr.sort, + splice: arr.splice +}; + +jQuery.extend = jQuery.fn.extend = function() { + var options, name, src, copy, copyIsArray, clone, + target = arguments[ 0 ] || {}, + i = 1, + length = arguments.length, + deep = false; + + // Handle a deep copy situation + if ( typeof target === "boolean" ) { + deep = target; + + // Skip the boolean and the target + target = arguments[ i ] || {}; + i++; + } + + // Handle case when target is a string or something (possible in deep copy) + if ( typeof target !== "object" && !isFunction( target ) ) { + target = {}; + } + + // Extend jQuery itself if only one argument is passed + if ( i === length ) { + target = this; + i--; + } + + for ( ; i < length; i++ ) { + + // Only deal with non-null/undefined values + if ( ( options = arguments[ i ] ) != null ) { + + // Extend the base object + for ( name in options ) { + copy = options[ name ]; + + // Prevent Object.prototype pollution + // Prevent never-ending loop + if ( name === "__proto__" || target === copy ) { + continue; + } + + // Recurse if we're merging plain objects or arrays + if ( deep && copy && ( jQuery.isPlainObject( copy ) || + ( copyIsArray = Array.isArray( copy ) ) ) ) { + src = target[ name ]; + + // Ensure proper type for the source value + if ( copyIsArray && !Array.isArray( src ) ) { + clone = []; + } else if ( !copyIsArray && !jQuery.isPlainObject( src ) ) { + clone = {}; + } else { + clone = src; + } + copyIsArray = false; + + // Never move original objects, clone them + target[ name ] = jQuery.extend( deep, clone, copy ); + + // Don't bring in undefined values + } else if ( copy !== undefined ) { + target[ name ] = copy; + } + } + } + } + + // Return the modified object + return target; +}; + +jQuery.extend( { + + // Unique for each copy of jQuery on the page + expando: "jQuery" + ( version + Math.random() ).replace( /\D/g, "" ), + + // Assume jQuery is ready without the ready module + isReady: true, + + error: function( msg ) { + throw new Error( msg ); + }, + + noop: function() {}, + + isPlainObject: function( obj ) { + var proto, Ctor; + + // Detect obvious negatives + // Use toString instead of jQuery.type to catch host objects + if ( !obj || toString.call( obj ) !== "[object Object]" ) { + return false; + } + + proto = getProto( obj ); + + // Objects with no prototype (e.g., `Object.create( null )`) are plain + if ( !proto ) { + return true; + } + + // Objects with prototype are plain iff they were constructed by a global Object function + Ctor = hasOwn.call( proto, "constructor" ) && proto.constructor; + return typeof Ctor === "function" && fnToString.call( Ctor ) === ObjectFunctionString; + }, + + isEmptyObject: function( obj ) { + var name; + + for ( name in obj ) { + return false; + } + return true; + }, + + // Evaluates a script in a global context + globalEval: function( code, options ) { + DOMEval( code, { nonce: options && options.nonce } ); + }, + + each: function( obj, callback ) { + var length, i = 0; + + if ( isArrayLike( obj ) ) { + length = obj.length; + for ( ; i < length; i++ ) { + if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) { + break; + } + } + } else { + for ( i in obj ) { + if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) { + break; + } + } + } + + return obj; + }, + + // Support: Android <=4.0 only + trim: function( text ) { + return text == null ? + "" : + ( text + "" ).replace( rtrim, "" ); + }, + + // results is for internal usage only + makeArray: function( arr, results ) { + var ret = results || []; + + if ( arr != null ) { + if ( isArrayLike( Object( arr ) ) ) { + jQuery.merge( ret, + typeof arr === "string" ? + [ arr ] : arr + ); + } else { + push.call( ret, arr ); + } + } + + return ret; + }, + + inArray: function( elem, arr, i ) { + return arr == null ? -1 : indexOf.call( arr, elem, i ); + }, + + // Support: Android <=4.0 only, PhantomJS 1 only + // push.apply(_, arraylike) throws on ancient WebKit + merge: function( first, second ) { + var len = +second.length, + j = 0, + i = first.length; + + for ( ; j < len; j++ ) { + first[ i++ ] = second[ j ]; + } + + first.length = i; + + return first; + }, + + grep: function( elems, callback, invert ) { + var callbackInverse, + matches = [], + i = 0, + length = elems.length, + callbackExpect = !invert; + + // Go through the array, only saving the items + // that pass the validator function + for ( ; i < length; i++ ) { + callbackInverse = !callback( elems[ i ], i ); + if ( callbackInverse !== callbackExpect ) { + matches.push( elems[ i ] ); + } + } + + return matches; + }, + + // arg is for internal usage only + map: function( elems, callback, arg ) { + var length, value, + i = 0, + ret = []; + + // Go through the array, translating each of the items to their new values + if ( isArrayLike( elems ) ) { + length = elems.length; + for ( ; i < length; i++ ) { + value = callback( elems[ i ], i, arg ); + + if ( value != null ) { + ret.push( value ); + } + } + + // Go through every key on the object, + } else { + for ( i in elems ) { + value = callback( elems[ i ], i, arg ); + + if ( value != null ) { + ret.push( value ); + } + } + } + + // Flatten any nested arrays + return concat.apply( [], ret ); + }, + + // A global GUID counter for objects + guid: 1, + + // jQuery.support is not used in Core but other projects attach their + // properties to it so it needs to exist. + support: support +} ); + +if ( typeof Symbol === "function" ) { + jQuery.fn[ Symbol.iterator ] = arr[ Symbol.iterator ]; +} + +// Populate the class2type map +jQuery.each( "Boolean Number String Function Array Date RegExp Object Error Symbol".split( " " ), +function( i, name ) { + class2type[ "[object " + name + "]" ] = name.toLowerCase(); +} ); + +function isArrayLike( obj ) { + + // Support: real iOS 8.2 only (not reproducible in simulator) + // `in` check used to prevent JIT error (gh-2145) + // hasOwn isn't used here due to false negatives + // regarding Nodelist length in IE + var length = !!obj && "length" in obj && obj.length, + type = toType( obj ); + + if ( isFunction( obj ) || isWindow( obj ) ) { + return false; + } + + return type === "array" || length === 0 || + typeof length === "number" && length > 0 && ( length - 1 ) in obj; +} +var Sizzle = +/*! + * Sizzle CSS Selector Engine v2.3.4 + * https://sizzlejs.com/ + * + * Copyright JS Foundation and other contributors + * Released under the MIT license + * https://js.foundation/ + * + * Date: 2019-04-08 + */ +(function( window ) { + +var i, + support, + Expr, + getText, + isXML, + tokenize, + compile, + select, + outermostContext, + sortInput, + hasDuplicate, + + // Local document vars + setDocument, + document, + docElem, + documentIsHTML, + rbuggyQSA, + rbuggyMatches, + matches, + contains, + + // Instance-specific data + expando = "sizzle" + 1 * new Date(), + preferredDoc = window.document, + dirruns = 0, + done = 0, + classCache = createCache(), + tokenCache = createCache(), + compilerCache = createCache(), + nonnativeSelectorCache = createCache(), + sortOrder = function( a, b ) { + if ( a === b ) { + hasDuplicate = true; + } + return 0; + }, + + // Instance methods + hasOwn = ({}).hasOwnProperty, + arr = [], + pop = arr.pop, + push_native = arr.push, + push = arr.push, + slice = arr.slice, + // Use a stripped-down indexOf as it's faster than native + // https://jsperf.com/thor-indexof-vs-for/5 + indexOf = function( list, elem ) { + var i = 0, + len = list.length; + for ( ; i < len; i++ ) { + if ( list[i] === elem ) { + return i; + } + } + return -1; + }, + + booleans = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped", + + // Regular expressions + + // http://www.w3.org/TR/css3-selectors/#whitespace + whitespace = "[\\x20\\t\\r\\n\\f]", + + // http://www.w3.org/TR/CSS21/syndata.html#value-def-identifier + identifier = "(?:\\\\.|[\\w-]|[^\0-\\xa0])+", + + // Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors + attributes = "\\[" + whitespace + "*(" + identifier + ")(?:" + whitespace + + // Operator (capture 2) + "*([*^$|!~]?=)" + whitespace + + // "Attribute values must be CSS identifiers [capture 5] or strings [capture 3 or capture 4]" + "*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|(" + identifier + "))|)" + whitespace + + "*\\]", + + pseudos = ":(" + identifier + ")(?:\\((" + + // To reduce the number of selectors needing tokenize in the preFilter, prefer arguments: + // 1. quoted (capture 3; capture 4 or capture 5) + "('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|" + + // 2. simple (capture 6) + "((?:\\\\.|[^\\\\()[\\]]|" + attributes + ")*)|" + + // 3. anything else (capture 2) + ".*" + + ")\\)|)", + + // Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter + rwhitespace = new RegExp( whitespace + "+", "g" ), + rtrim = new RegExp( "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + whitespace + "+$", "g" ), + + rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ), + rcombinators = new RegExp( "^" + whitespace + "*([>+~]|" + whitespace + ")" + whitespace + "*" ), + rdescend = new RegExp( whitespace + "|>" ), + + rpseudo = new RegExp( pseudos ), + ridentifier = new RegExp( "^" + identifier + "$" ), + + matchExpr = { + "ID": new RegExp( "^#(" + identifier + ")" ), + "CLASS": new RegExp( "^\\.(" + identifier + ")" ), + "TAG": new RegExp( "^(" + identifier + "|[*])" ), + "ATTR": new RegExp( "^" + attributes ), + "PSEUDO": new RegExp( "^" + pseudos ), + "CHILD": new RegExp( "^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + whitespace + + "*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" + whitespace + + "*(\\d+)|))" + whitespace + "*\\)|)", "i" ), + "bool": new RegExp( "^(?:" + booleans + ")$", "i" ), + // For use in libraries implementing .is() + // We use this for POS matching in `select` + "needsContext": new RegExp( "^" + whitespace + "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" + + whitespace + "*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)", "i" ) + }, + + rhtml = /HTML$/i, + rinputs = /^(?:input|select|textarea|button)$/i, + rheader = /^h\d$/i, + + rnative = /^[^{]+\{\s*\[native \w/, + + // Easily-parseable/retrievable ID or TAG or CLASS selectors + rquickExpr = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/, + + rsibling = /[+~]/, + + // CSS escapes + // http://www.w3.org/TR/CSS21/syndata.html#escaped-characters + runescape = new RegExp( "\\\\([\\da-f]{1,6}" + whitespace + "?|(" + whitespace + ")|.)", "ig" ), + funescape = function( _, escaped, escapedWhitespace ) { + var high = "0x" + escaped - 0x10000; + // NaN means non-codepoint + // Support: Firefox<24 + // Workaround erroneous numeric interpretation of +"0x" + return high !== high || escapedWhitespace ? + escaped : + high < 0 ? + // BMP codepoint + String.fromCharCode( high + 0x10000 ) : + // Supplemental Plane codepoint (surrogate pair) + String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 ); + }, + + // CSS string/identifier serialization + // https://drafts.csswg.org/cssom/#common-serializing-idioms + rcssescape = /([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g, + fcssescape = function( ch, asCodePoint ) { + if ( asCodePoint ) { + + // U+0000 NULL becomes U+FFFD REPLACEMENT CHARACTER + if ( ch === "\0" ) { + return "\uFFFD"; + } + + // Control characters and (dependent upon position) numbers get escaped as code points + return ch.slice( 0, -1 ) + "\\" + ch.charCodeAt( ch.length - 1 ).toString( 16 ) + " "; + } + + // Other potentially-special ASCII characters get backslash-escaped + return "\\" + ch; + }, + + // Used for iframes + // See setDocument() + // Removing the function wrapper causes a "Permission Denied" + // error in IE + unloadHandler = function() { + setDocument(); + }, + + inDisabledFieldset = addCombinator( + function( elem ) { + return elem.disabled === true && elem.nodeName.toLowerCase() === "fieldset"; + }, + { dir: "parentNode", next: "legend" } + ); + +// Optimize for push.apply( _, NodeList ) +try { + push.apply( + (arr = slice.call( preferredDoc.childNodes )), + preferredDoc.childNodes + ); + // Support: Android<4.0 + // Detect silently failing push.apply + arr[ preferredDoc.childNodes.length ].nodeType; +} catch ( e ) { + push = { apply: arr.length ? + + // Leverage slice if possible + function( target, els ) { + push_native.apply( target, slice.call(els) ); + } : + + // Support: IE<9 + // Otherwise append directly + function( target, els ) { + var j = target.length, + i = 0; + // Can't trust NodeList.length + while ( (target[j++] = els[i++]) ) {} + target.length = j - 1; + } + }; +} + +function Sizzle( selector, context, results, seed ) { + var m, i, elem, nid, match, groups, newSelector, + newContext = context && context.ownerDocument, + + // nodeType defaults to 9, since context defaults to document + nodeType = context ? context.nodeType : 9; + + results = results || []; + + // Return early from calls with invalid selector or context + if ( typeof selector !== "string" || !selector || + nodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) { + + return results; + } + + // Try to shortcut find operations (as opposed to filters) in HTML documents + if ( !seed ) { + + if ( ( context ? context.ownerDocument || context : preferredDoc ) !== document ) { + setDocument( context ); + } + context = context || document; + + if ( documentIsHTML ) { + + // If the selector is sufficiently simple, try using a "get*By*" DOM method + // (excepting DocumentFragment context, where the methods don't exist) + if ( nodeType !== 11 && (match = rquickExpr.exec( selector )) ) { + + // ID selector + if ( (m = match[1]) ) { + + // Document context + if ( nodeType === 9 ) { + if ( (elem = context.getElementById( m )) ) { + + // Support: IE, Opera, Webkit + // TODO: identify versions + // getElementById can match elements by name instead of ID + if ( elem.id === m ) { + results.push( elem ); + return results; + } + } else { + return results; + } + + // Element context + } else { + + // Support: IE, Opera, Webkit + // TODO: identify versions + // getElementById can match elements by name instead of ID + if ( newContext && (elem = newContext.getElementById( m )) && + contains( context, elem ) && + elem.id === m ) { + + results.push( elem ); + return results; + } + } + + // Type selector + } else if ( match[2] ) { + push.apply( results, context.getElementsByTagName( selector ) ); + return results; + + // Class selector + } else if ( (m = match[3]) && support.getElementsByClassName && + context.getElementsByClassName ) { + + push.apply( results, context.getElementsByClassName( m ) ); + return results; + } + } + + // Take advantage of querySelectorAll + if ( support.qsa && + !nonnativeSelectorCache[ selector + " " ] && + (!rbuggyQSA || !rbuggyQSA.test( selector )) && + + // Support: IE 8 only + // Exclude object elements + (nodeType !== 1 || context.nodeName.toLowerCase() !== "object") ) { + + newSelector = selector; + newContext = context; + + // qSA considers elements outside a scoping root when evaluating child or + // descendant combinators, which is not what we want. + // In such cases, we work around the behavior by prefixing every selector in the + // list with an ID selector referencing the scope context. + // Thanks to Andrew Dupont for this technique. + if ( nodeType === 1 && rdescend.test( selector ) ) { + + // Capture the context ID, setting it first if necessary + if ( (nid = context.getAttribute( "id" )) ) { + nid = nid.replace( rcssescape, fcssescape ); + } else { + context.setAttribute( "id", (nid = expando) ); + } + + // Prefix every selector in the list + groups = tokenize( selector ); + i = groups.length; + while ( i-- ) { + groups[i] = "#" + nid + " " + toSelector( groups[i] ); + } + newSelector = groups.join( "," ); + + // Expand context for sibling selectors + newContext = rsibling.test( selector ) && testContext( context.parentNode ) || + context; + } + + try { + push.apply( results, + newContext.querySelectorAll( newSelector ) + ); + return results; + } catch ( qsaError ) { + nonnativeSelectorCache( selector, true ); + } finally { + if ( nid === expando ) { + context.removeAttribute( "id" ); + } + } + } + } + } + + // All others + return select( selector.replace( rtrim, "$1" ), context, results, seed ); +} + +/** + * Create key-value caches of limited size + * @returns {function(string, object)} Returns the Object data after storing it on itself with + * property name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength) + * deleting the oldest entry + */ +function createCache() { + var keys = []; + + function cache( key, value ) { + // Use (key + " ") to avoid collision with native prototype properties (see Issue #157) + if ( keys.push( key + " " ) > Expr.cacheLength ) { + // Only keep the most recent entries + delete cache[ keys.shift() ]; + } + return (cache[ key + " " ] = value); + } + return cache; +} + +/** + * Mark a function for special use by Sizzle + * @param {Function} fn The function to mark + */ +function markFunction( fn ) { + fn[ expando ] = true; + return fn; +} + +/** + * Support testing using an element + * @param {Function} fn Passed the created element and returns a boolean result + */ +function assert( fn ) { + var el = document.createElement("fieldset"); + + try { + return !!fn( el ); + } catch (e) { + return false; + } finally { + // Remove from its parent by default + if ( el.parentNode ) { + el.parentNode.removeChild( el ); + } + // release memory in IE + el = null; + } +} + +/** + * Adds the same handler for all of the specified attrs + * @param {String} attrs Pipe-separated list of attributes + * @param {Function} handler The method that will be applied + */ +function addHandle( attrs, handler ) { + var arr = attrs.split("|"), + i = arr.length; + + while ( i-- ) { + Expr.attrHandle[ arr[i] ] = handler; + } +} + +/** + * Checks document order of two siblings + * @param {Element} a + * @param {Element} b + * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b + */ +function siblingCheck( a, b ) { + var cur = b && a, + diff = cur && a.nodeType === 1 && b.nodeType === 1 && + a.sourceIndex - b.sourceIndex; + + // Use IE sourceIndex if available on both nodes + if ( diff ) { + return diff; + } + + // Check if b follows a + if ( cur ) { + while ( (cur = cur.nextSibling) ) { + if ( cur === b ) { + return -1; + } + } + } + + return a ? 1 : -1; +} + +/** + * Returns a function to use in pseudos for input types + * @param {String} type + */ +function createInputPseudo( type ) { + return function( elem ) { + var name = elem.nodeName.toLowerCase(); + return name === "input" && elem.type === type; + }; +} + +/** + * Returns a function to use in pseudos for buttons + * @param {String} type + */ +function createButtonPseudo( type ) { + return function( elem ) { + var name = elem.nodeName.toLowerCase(); + return (name === "input" || name === "button") && elem.type === type; + }; +} + +/** + * Returns a function to use in pseudos for :enabled/:disabled + * @param {Boolean} disabled true for :disabled; false for :enabled + */ +function createDisabledPseudo( disabled ) { + + // Known :disabled false positives: fieldset[disabled] > legend:nth-of-type(n+2) :can-disable + return function( elem ) { + + // Only certain elements can match :enabled or :disabled + // https://html.spec.whatwg.org/multipage/scripting.html#selector-enabled + // https://html.spec.whatwg.org/multipage/scripting.html#selector-disabled + if ( "form" in elem ) { + + // Check for inherited disabledness on relevant non-disabled elements: + // * listed form-associated elements in a disabled fieldset + // https://html.spec.whatwg.org/multipage/forms.html#category-listed + // https://html.spec.whatwg.org/multipage/forms.html#concept-fe-disabled + // * option elements in a disabled optgroup + // https://html.spec.whatwg.org/multipage/forms.html#concept-option-disabled + // All such elements have a "form" property. + if ( elem.parentNode && elem.disabled === false ) { + + // Option elements defer to a parent optgroup if present + if ( "label" in elem ) { + if ( "label" in elem.parentNode ) { + return elem.parentNode.disabled === disabled; + } else { + return elem.disabled === disabled; + } + } + + // Support: IE 6 - 11 + // Use the isDisabled shortcut property to check for disabled fieldset ancestors + return elem.isDisabled === disabled || + + // Where there is no isDisabled, check manually + /* jshint -W018 */ + elem.isDisabled !== !disabled && + inDisabledFieldset( elem ) === disabled; + } + + return elem.disabled === disabled; + + // Try to winnow out elements that can't be disabled before trusting the disabled property. + // Some victims get caught in our net (label, legend, menu, track), but it shouldn't + // even exist on them, let alone have a boolean value. + } else if ( "label" in elem ) { + return elem.disabled === disabled; + } + + // Remaining elements are neither :enabled nor :disabled + return false; + }; +} + +/** + * Returns a function to use in pseudos for positionals + * @param {Function} fn + */ +function createPositionalPseudo( fn ) { + return markFunction(function( argument ) { + argument = +argument; + return markFunction(function( seed, matches ) { + var j, + matchIndexes = fn( [], seed.length, argument ), + i = matchIndexes.length; + + // Match elements found at the specified indexes + while ( i-- ) { + if ( seed[ (j = matchIndexes[i]) ] ) { + seed[j] = !(matches[j] = seed[j]); + } + } + }); + }); +} + +/** + * Checks a node for validity as a Sizzle context + * @param {Element|Object=} context + * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value + */ +function testContext( context ) { + return context && typeof context.getElementsByTagName !== "undefined" && context; +} + +// Expose support vars for convenience +support = Sizzle.support = {}; + +/** + * Detects XML nodes + * @param {Element|Object} elem An element or a document + * @returns {Boolean} True iff elem is a non-HTML XML node + */ +isXML = Sizzle.isXML = function( elem ) { + var namespace = elem.namespaceURI, + docElem = (elem.ownerDocument || elem).documentElement; + + // Support: IE <=8 + // Assume HTML when documentElement doesn't yet exist, such as inside loading iframes + // https://bugs.jquery.com/ticket/4833 + return !rhtml.test( namespace || docElem && docElem.nodeName || "HTML" ); +}; + +/** + * Sets document-related variables once based on the current document + * @param {Element|Object} [doc] An element or document object to use to set the document + * @returns {Object} Returns the current document + */ +setDocument = Sizzle.setDocument = function( node ) { + var hasCompare, subWindow, + doc = node ? node.ownerDocument || node : preferredDoc; + + // Return early if doc is invalid or already selected + if ( doc === document || doc.nodeType !== 9 || !doc.documentElement ) { + return document; + } + + // Update global variables + document = doc; + docElem = document.documentElement; + documentIsHTML = !isXML( document ); + + // Support: IE 9-11, Edge + // Accessing iframe documents after unload throws "permission denied" errors (jQuery #13936) + if ( preferredDoc !== document && + (subWindow = document.defaultView) && subWindow.top !== subWindow ) { + + // Support: IE 11, Edge + if ( subWindow.addEventListener ) { + subWindow.addEventListener( "unload", unloadHandler, false ); + + // Support: IE 9 - 10 only + } else if ( subWindow.attachEvent ) { + subWindow.attachEvent( "onunload", unloadHandler ); + } + } + + /* Attributes + ---------------------------------------------------------------------- */ + + // Support: IE<8 + // Verify that getAttribute really returns attributes and not properties + // (excepting IE8 booleans) + support.attributes = assert(function( el ) { + el.className = "i"; + return !el.getAttribute("className"); + }); + + /* getElement(s)By* + ---------------------------------------------------------------------- */ + + // Check if getElementsByTagName("*") returns only elements + support.getElementsByTagName = assert(function( el ) { + el.appendChild( document.createComment("") ); + return !el.getElementsByTagName("*").length; + }); + + // Support: IE<9 + support.getElementsByClassName = rnative.test( document.getElementsByClassName ); + + // Support: IE<10 + // Check if getElementById returns elements by name + // The broken getElementById methods don't pick up programmatically-set names, + // so use a roundabout getElementsByName test + support.getById = assert(function( el ) { + docElem.appendChild( el ).id = expando; + return !document.getElementsByName || !document.getElementsByName( expando ).length; + }); + + // ID filter and find + if ( support.getById ) { + Expr.filter["ID"] = function( id ) { + var attrId = id.replace( runescape, funescape ); + return function( elem ) { + return elem.getAttribute("id") === attrId; + }; + }; + Expr.find["ID"] = function( id, context ) { + if ( typeof context.getElementById !== "undefined" && documentIsHTML ) { + var elem = context.getElementById( id ); + return elem ? [ elem ] : []; + } + }; + } else { + Expr.filter["ID"] = function( id ) { + var attrId = id.replace( runescape, funescape ); + return function( elem ) { + var node = typeof elem.getAttributeNode !== "undefined" && + elem.getAttributeNode("id"); + return node && node.value === attrId; + }; + }; + + // Support: IE 6 - 7 only + // getElementById is not reliable as a find shortcut + Expr.find["ID"] = function( id, context ) { + if ( typeof context.getElementById !== "undefined" && documentIsHTML ) { + var node, i, elems, + elem = context.getElementById( id ); + + if ( elem ) { + + // Verify the id attribute + node = elem.getAttributeNode("id"); + if ( node && node.value === id ) { + return [ elem ]; + } + + // Fall back on getElementsByName + elems = context.getElementsByName( id ); + i = 0; + while ( (elem = elems[i++]) ) { + node = elem.getAttributeNode("id"); + if ( node && node.value === id ) { + return [ elem ]; + } + } + } + + return []; + } + }; + } + + // Tag + Expr.find["TAG"] = support.getElementsByTagName ? + function( tag, context ) { + if ( typeof context.getElementsByTagName !== "undefined" ) { + return context.getElementsByTagName( tag ); + + // DocumentFragment nodes don't have gEBTN + } else if ( support.qsa ) { + return context.querySelectorAll( tag ); + } + } : + + function( tag, context ) { + var elem, + tmp = [], + i = 0, + // By happy coincidence, a (broken) gEBTN appears on DocumentFragment nodes too + results = context.getElementsByTagName( tag ); + + // Filter out possible comments + if ( tag === "*" ) { + while ( (elem = results[i++]) ) { + if ( elem.nodeType === 1 ) { + tmp.push( elem ); + } + } + + return tmp; + } + return results; + }; + + // Class + Expr.find["CLASS"] = support.getElementsByClassName && function( className, context ) { + if ( typeof context.getElementsByClassName !== "undefined" && documentIsHTML ) { + return context.getElementsByClassName( className ); + } + }; + + /* QSA/matchesSelector + ---------------------------------------------------------------------- */ + + // QSA and matchesSelector support + + // matchesSelector(:active) reports false when true (IE9/Opera 11.5) + rbuggyMatches = []; + + // qSa(:focus) reports false when true (Chrome 21) + // We allow this because of a bug in IE8/9 that throws an error + // whenever `document.activeElement` is accessed on an iframe + // So, we allow :focus to pass through QSA all the time to avoid the IE error + // See https://bugs.jquery.com/ticket/13378 + rbuggyQSA = []; + + if ( (support.qsa = rnative.test( document.querySelectorAll )) ) { + // Build QSA regex + // Regex strategy adopted from Diego Perini + assert(function( el ) { + // Select is set to empty string on purpose + // This is to test IE's treatment of not explicitly + // setting a boolean content attribute, + // since its presence should be enough + // https://bugs.jquery.com/ticket/12359 + docElem.appendChild( el ).innerHTML = "" + + ""; + + // Support: IE8, Opera 11-12.16 + // Nothing should be selected when empty strings follow ^= or $= or *= + // The test attribute must be unknown in Opera but "safe" for WinRT + // https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section + if ( el.querySelectorAll("[msallowcapture^='']").length ) { + rbuggyQSA.push( "[*^$]=" + whitespace + "*(?:''|\"\")" ); + } + + // Support: IE8 + // Boolean attributes and "value" are not treated correctly + if ( !el.querySelectorAll("[selected]").length ) { + rbuggyQSA.push( "\\[" + whitespace + "*(?:value|" + booleans + ")" ); + } + + // Support: Chrome<29, Android<4.4, Safari<7.0+, iOS<7.0+, PhantomJS<1.9.8+ + if ( !el.querySelectorAll( "[id~=" + expando + "-]" ).length ) { + rbuggyQSA.push("~="); + } + + // Webkit/Opera - :checked should return selected option elements + // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked + // IE8 throws error here and will not see later tests + if ( !el.querySelectorAll(":checked").length ) { + rbuggyQSA.push(":checked"); + } + + // Support: Safari 8+, iOS 8+ + // https://bugs.webkit.org/show_bug.cgi?id=136851 + // In-page `selector#id sibling-combinator selector` fails + if ( !el.querySelectorAll( "a#" + expando + "+*" ).length ) { + rbuggyQSA.push(".#.+[+~]"); + } + }); + + assert(function( el ) { + el.innerHTML = "" + + ""; + + // Support: Windows 8 Native Apps + // The type and name attributes are restricted during .innerHTML assignment + var input = document.createElement("input"); + input.setAttribute( "type", "hidden" ); + el.appendChild( input ).setAttribute( "name", "D" ); + + // Support: IE8 + // Enforce case-sensitivity of name attribute + if ( el.querySelectorAll("[name=d]").length ) { + rbuggyQSA.push( "name" + whitespace + "*[*^$|!~]?=" ); + } + + // FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled) + // IE8 throws error here and will not see later tests + if ( el.querySelectorAll(":enabled").length !== 2 ) { + rbuggyQSA.push( ":enabled", ":disabled" ); + } + + // Support: IE9-11+ + // IE's :disabled selector does not pick up the children of disabled fieldsets + docElem.appendChild( el ).disabled = true; + if ( el.querySelectorAll(":disabled").length !== 2 ) { + rbuggyQSA.push( ":enabled", ":disabled" ); + } + + // Opera 10-11 does not throw on post-comma invalid pseudos + el.querySelectorAll("*,:x"); + rbuggyQSA.push(",.*:"); + }); + } + + if ( (support.matchesSelector = rnative.test( (matches = docElem.matches || + docElem.webkitMatchesSelector || + docElem.mozMatchesSelector || + docElem.oMatchesSelector || + docElem.msMatchesSelector) )) ) { + + assert(function( el ) { + // Check to see if it's possible to do matchesSelector + // on a disconnected node (IE 9) + support.disconnectedMatch = matches.call( el, "*" ); + + // This should fail with an exception + // Gecko does not error, returns false instead + matches.call( el, "[s!='']:x" ); + rbuggyMatches.push( "!=", pseudos ); + }); + } + + rbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join("|") ); + rbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join("|") ); + + /* Contains + ---------------------------------------------------------------------- */ + hasCompare = rnative.test( docElem.compareDocumentPosition ); + + // Element contains another + // Purposefully self-exclusive + // As in, an element does not contain itself + contains = hasCompare || rnative.test( docElem.contains ) ? + function( a, b ) { + var adown = a.nodeType === 9 ? a.documentElement : a, + bup = b && b.parentNode; + return a === bup || !!( bup && bup.nodeType === 1 && ( + adown.contains ? + adown.contains( bup ) : + a.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16 + )); + } : + function( a, b ) { + if ( b ) { + while ( (b = b.parentNode) ) { + if ( b === a ) { + return true; + } + } + } + return false; + }; + + /* Sorting + ---------------------------------------------------------------------- */ + + // Document order sorting + sortOrder = hasCompare ? + function( a, b ) { + + // Flag for duplicate removal + if ( a === b ) { + hasDuplicate = true; + return 0; + } + + // Sort on method existence if only one input has compareDocumentPosition + var compare = !a.compareDocumentPosition - !b.compareDocumentPosition; + if ( compare ) { + return compare; + } + + // Calculate position if both inputs belong to the same document + compare = ( a.ownerDocument || a ) === ( b.ownerDocument || b ) ? + a.compareDocumentPosition( b ) : + + // Otherwise we know they are disconnected + 1; + + // Disconnected nodes + if ( compare & 1 || + (!support.sortDetached && b.compareDocumentPosition( a ) === compare) ) { + + // Choose the first element that is related to our preferred document + if ( a === document || a.ownerDocument === preferredDoc && contains(preferredDoc, a) ) { + return -1; + } + if ( b === document || b.ownerDocument === preferredDoc && contains(preferredDoc, b) ) { + return 1; + } + + // Maintain original order + return sortInput ? + ( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) : + 0; + } + + return compare & 4 ? -1 : 1; + } : + function( a, b ) { + // Exit early if the nodes are identical + if ( a === b ) { + hasDuplicate = true; + return 0; + } + + var cur, + i = 0, + aup = a.parentNode, + bup = b.parentNode, + ap = [ a ], + bp = [ b ]; + + // Parentless nodes are either documents or disconnected + if ( !aup || !bup ) { + return a === document ? -1 : + b === document ? 1 : + aup ? -1 : + bup ? 1 : + sortInput ? + ( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) : + 0; + + // If the nodes are siblings, we can do a quick check + } else if ( aup === bup ) { + return siblingCheck( a, b ); + } + + // Otherwise we need full lists of their ancestors for comparison + cur = a; + while ( (cur = cur.parentNode) ) { + ap.unshift( cur ); + } + cur = b; + while ( (cur = cur.parentNode) ) { + bp.unshift( cur ); + } + + // Walk down the tree looking for a discrepancy + while ( ap[i] === bp[i] ) { + i++; + } + + return i ? + // Do a sibling check if the nodes have a common ancestor + siblingCheck( ap[i], bp[i] ) : + + // Otherwise nodes in our document sort first + ap[i] === preferredDoc ? -1 : + bp[i] === preferredDoc ? 1 : + 0; + }; + + return document; +}; + +Sizzle.matches = function( expr, elements ) { + return Sizzle( expr, null, null, elements ); +}; + +Sizzle.matchesSelector = function( elem, expr ) { + // Set document vars if needed + if ( ( elem.ownerDocument || elem ) !== document ) { + setDocument( elem ); + } + + if ( support.matchesSelector && documentIsHTML && + !nonnativeSelectorCache[ expr + " " ] && + ( !rbuggyMatches || !rbuggyMatches.test( expr ) ) && + ( !rbuggyQSA || !rbuggyQSA.test( expr ) ) ) { + + try { + var ret = matches.call( elem, expr ); + + // IE 9's matchesSelector returns false on disconnected nodes + if ( ret || support.disconnectedMatch || + // As well, disconnected nodes are said to be in a document + // fragment in IE 9 + elem.document && elem.document.nodeType !== 11 ) { + return ret; + } + } catch (e) { + nonnativeSelectorCache( expr, true ); + } + } + + return Sizzle( expr, document, null, [ elem ] ).length > 0; +}; + +Sizzle.contains = function( context, elem ) { + // Set document vars if needed + if ( ( context.ownerDocument || context ) !== document ) { + setDocument( context ); + } + return contains( context, elem ); +}; + +Sizzle.attr = function( elem, name ) { + // Set document vars if needed + if ( ( elem.ownerDocument || elem ) !== document ) { + setDocument( elem ); + } + + var fn = Expr.attrHandle[ name.toLowerCase() ], + // Don't get fooled by Object.prototype properties (jQuery #13807) + val = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ? + fn( elem, name, !documentIsHTML ) : + undefined; + + return val !== undefined ? + val : + support.attributes || !documentIsHTML ? + elem.getAttribute( name ) : + (val = elem.getAttributeNode(name)) && val.specified ? + val.value : + null; +}; + +Sizzle.escape = function( sel ) { + return (sel + "").replace( rcssescape, fcssescape ); +}; + +Sizzle.error = function( msg ) { + throw new Error( "Syntax error, unrecognized expression: " + msg ); +}; + +/** + * Document sorting and removing duplicates + * @param {ArrayLike} results + */ +Sizzle.uniqueSort = function( results ) { + var elem, + duplicates = [], + j = 0, + i = 0; + + // Unless we *know* we can detect duplicates, assume their presence + hasDuplicate = !support.detectDuplicates; + sortInput = !support.sortStable && results.slice( 0 ); + results.sort( sortOrder ); + + if ( hasDuplicate ) { + while ( (elem = results[i++]) ) { + if ( elem === results[ i ] ) { + j = duplicates.push( i ); + } + } + while ( j-- ) { + results.splice( duplicates[ j ], 1 ); + } + } + + // Clear input after sorting to release objects + // See https://github.com/jquery/sizzle/pull/225 + sortInput = null; + + return results; +}; + +/** + * Utility function for retrieving the text value of an array of DOM nodes + * @param {Array|Element} elem + */ +getText = Sizzle.getText = function( elem ) { + var node, + ret = "", + i = 0, + nodeType = elem.nodeType; + + if ( !nodeType ) { + // If no nodeType, this is expected to be an array + while ( (node = elem[i++]) ) { + // Do not traverse comment nodes + ret += getText( node ); + } + } else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) { + // Use textContent for elements + // innerText usage removed for consistency of new lines (jQuery #11153) + if ( typeof elem.textContent === "string" ) { + return elem.textContent; + } else { + // Traverse its children + for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { + ret += getText( elem ); + } + } + } else if ( nodeType === 3 || nodeType === 4 ) { + return elem.nodeValue; + } + // Do not include comment or processing instruction nodes + + return ret; +}; + +Expr = Sizzle.selectors = { + + // Can be adjusted by the user + cacheLength: 50, + + createPseudo: markFunction, + + match: matchExpr, + + attrHandle: {}, + + find: {}, + + relative: { + ">": { dir: "parentNode", first: true }, + " ": { dir: "parentNode" }, + "+": { dir: "previousSibling", first: true }, + "~": { dir: "previousSibling" } + }, + + preFilter: { + "ATTR": function( match ) { + match[1] = match[1].replace( runescape, funescape ); + + // Move the given value to match[3] whether quoted or unquoted + match[3] = ( match[3] || match[4] || match[5] || "" ).replace( runescape, funescape ); + + if ( match[2] === "~=" ) { + match[3] = " " + match[3] + " "; + } + + return match.slice( 0, 4 ); + }, + + "CHILD": function( match ) { + /* matches from matchExpr["CHILD"] + 1 type (only|nth|...) + 2 what (child|of-type) + 3 argument (even|odd|\d*|\d*n([+-]\d+)?|...) + 4 xn-component of xn+y argument ([+-]?\d*n|) + 5 sign of xn-component + 6 x of xn-component + 7 sign of y-component + 8 y of y-component + */ + match[1] = match[1].toLowerCase(); + + if ( match[1].slice( 0, 3 ) === "nth" ) { + // nth-* requires argument + if ( !match[3] ) { + Sizzle.error( match[0] ); + } + + // numeric x and y parameters for Expr.filter.CHILD + // remember that false/true cast respectively to 0/1 + match[4] = +( match[4] ? match[5] + (match[6] || 1) : 2 * ( match[3] === "even" || match[3] === "odd" ) ); + match[5] = +( ( match[7] + match[8] ) || match[3] === "odd" ); + + // other types prohibit arguments + } else if ( match[3] ) { + Sizzle.error( match[0] ); + } + + return match; + }, + + "PSEUDO": function( match ) { + var excess, + unquoted = !match[6] && match[2]; + + if ( matchExpr["CHILD"].test( match[0] ) ) { + return null; + } + + // Accept quoted arguments as-is + if ( match[3] ) { + match[2] = match[4] || match[5] || ""; + + // Strip excess characters from unquoted arguments + } else if ( unquoted && rpseudo.test( unquoted ) && + // Get excess from tokenize (recursively) + (excess = tokenize( unquoted, true )) && + // advance to the next closing parenthesis + (excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length) ) { + + // excess is a negative index + match[0] = match[0].slice( 0, excess ); + match[2] = unquoted.slice( 0, excess ); + } + + // Return only captures needed by the pseudo filter method (type and argument) + return match.slice( 0, 3 ); + } + }, + + filter: { + + "TAG": function( nodeNameSelector ) { + var nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase(); + return nodeNameSelector === "*" ? + function() { return true; } : + function( elem ) { + return elem.nodeName && elem.nodeName.toLowerCase() === nodeName; + }; + }, + + "CLASS": function( className ) { + var pattern = classCache[ className + " " ]; + + return pattern || + (pattern = new RegExp( "(^|" + whitespace + ")" + className + "(" + whitespace + "|$)" )) && + classCache( className, function( elem ) { + return pattern.test( typeof elem.className === "string" && elem.className || typeof elem.getAttribute !== "undefined" && elem.getAttribute("class") || "" ); + }); + }, + + "ATTR": function( name, operator, check ) { + return function( elem ) { + var result = Sizzle.attr( elem, name ); + + if ( result == null ) { + return operator === "!="; + } + if ( !operator ) { + return true; + } + + result += ""; + + return operator === "=" ? result === check : + operator === "!=" ? result !== check : + operator === "^=" ? check && result.indexOf( check ) === 0 : + operator === "*=" ? check && result.indexOf( check ) > -1 : + operator === "$=" ? check && result.slice( -check.length ) === check : + operator === "~=" ? ( " " + result.replace( rwhitespace, " " ) + " " ).indexOf( check ) > -1 : + operator === "|=" ? result === check || result.slice( 0, check.length + 1 ) === check + "-" : + false; + }; + }, + + "CHILD": function( type, what, argument, first, last ) { + var simple = type.slice( 0, 3 ) !== "nth", + forward = type.slice( -4 ) !== "last", + ofType = what === "of-type"; + + return first === 1 && last === 0 ? + + // Shortcut for :nth-*(n) + function( elem ) { + return !!elem.parentNode; + } : + + function( elem, context, xml ) { + var cache, uniqueCache, outerCache, node, nodeIndex, start, + dir = simple !== forward ? "nextSibling" : "previousSibling", + parent = elem.parentNode, + name = ofType && elem.nodeName.toLowerCase(), + useCache = !xml && !ofType, + diff = false; + + if ( parent ) { + + // :(first|last|only)-(child|of-type) + if ( simple ) { + while ( dir ) { + node = elem; + while ( (node = node[ dir ]) ) { + if ( ofType ? + node.nodeName.toLowerCase() === name : + node.nodeType === 1 ) { + + return false; + } + } + // Reverse direction for :only-* (if we haven't yet done so) + start = dir = type === "only" && !start && "nextSibling"; + } + return true; + } + + start = [ forward ? parent.firstChild : parent.lastChild ]; + + // non-xml :nth-child(...) stores cache data on `parent` + if ( forward && useCache ) { + + // Seek `elem` from a previously-cached index + + // ...in a gzip-friendly way + node = parent; + outerCache = node[ expando ] || (node[ expando ] = {}); + + // Support: IE <9 only + // Defend against cloned attroperties (jQuery gh-1709) + uniqueCache = outerCache[ node.uniqueID ] || + (outerCache[ node.uniqueID ] = {}); + + cache = uniqueCache[ type ] || []; + nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ]; + diff = nodeIndex && cache[ 2 ]; + node = nodeIndex && parent.childNodes[ nodeIndex ]; + + while ( (node = ++nodeIndex && node && node[ dir ] || + + // Fallback to seeking `elem` from the start + (diff = nodeIndex = 0) || start.pop()) ) { + + // When found, cache indexes on `parent` and break + if ( node.nodeType === 1 && ++diff && node === elem ) { + uniqueCache[ type ] = [ dirruns, nodeIndex, diff ]; + break; + } + } + + } else { + // Use previously-cached element index if available + if ( useCache ) { + // ...in a gzip-friendly way + node = elem; + outerCache = node[ expando ] || (node[ expando ] = {}); + + // Support: IE <9 only + // Defend against cloned attroperties (jQuery gh-1709) + uniqueCache = outerCache[ node.uniqueID ] || + (outerCache[ node.uniqueID ] = {}); + + cache = uniqueCache[ type ] || []; + nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ]; + diff = nodeIndex; + } + + // xml :nth-child(...) + // or :nth-last-child(...) or :nth(-last)?-of-type(...) + if ( diff === false ) { + // Use the same loop as above to seek `elem` from the start + while ( (node = ++nodeIndex && node && node[ dir ] || + (diff = nodeIndex = 0) || start.pop()) ) { + + if ( ( ofType ? + node.nodeName.toLowerCase() === name : + node.nodeType === 1 ) && + ++diff ) { + + // Cache the index of each encountered element + if ( useCache ) { + outerCache = node[ expando ] || (node[ expando ] = {}); + + // Support: IE <9 only + // Defend against cloned attroperties (jQuery gh-1709) + uniqueCache = outerCache[ node.uniqueID ] || + (outerCache[ node.uniqueID ] = {}); + + uniqueCache[ type ] = [ dirruns, diff ]; + } + + if ( node === elem ) { + break; + } + } + } + } + } + + // Incorporate the offset, then check against cycle size + diff -= last; + return diff === first || ( diff % first === 0 && diff / first >= 0 ); + } + }; + }, + + "PSEUDO": function( pseudo, argument ) { + // pseudo-class names are case-insensitive + // http://www.w3.org/TR/selectors/#pseudo-classes + // Prioritize by case sensitivity in case custom pseudos are added with uppercase letters + // Remember that setFilters inherits from pseudos + var args, + fn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] || + Sizzle.error( "unsupported pseudo: " + pseudo ); + + // The user may use createPseudo to indicate that + // arguments are needed to create the filter function + // just as Sizzle does + if ( fn[ expando ] ) { + return fn( argument ); + } + + // But maintain support for old signatures + if ( fn.length > 1 ) { + args = [ pseudo, pseudo, "", argument ]; + return Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ? + markFunction(function( seed, matches ) { + var idx, + matched = fn( seed, argument ), + i = matched.length; + while ( i-- ) { + idx = indexOf( seed, matched[i] ); + seed[ idx ] = !( matches[ idx ] = matched[i] ); + } + }) : + function( elem ) { + return fn( elem, 0, args ); + }; + } + + return fn; + } + }, + + pseudos: { + // Potentially complex pseudos + "not": markFunction(function( selector ) { + // Trim the selector passed to compile + // to avoid treating leading and trailing + // spaces as combinators + var input = [], + results = [], + matcher = compile( selector.replace( rtrim, "$1" ) ); + + return matcher[ expando ] ? + markFunction(function( seed, matches, context, xml ) { + var elem, + unmatched = matcher( seed, null, xml, [] ), + i = seed.length; + + // Match elements unmatched by `matcher` + while ( i-- ) { + if ( (elem = unmatched[i]) ) { + seed[i] = !(matches[i] = elem); + } + } + }) : + function( elem, context, xml ) { + input[0] = elem; + matcher( input, null, xml, results ); + // Don't keep the element (issue #299) + input[0] = null; + return !results.pop(); + }; + }), + + "has": markFunction(function( selector ) { + return function( elem ) { + return Sizzle( selector, elem ).length > 0; + }; + }), + + "contains": markFunction(function( text ) { + text = text.replace( runescape, funescape ); + return function( elem ) { + return ( elem.textContent || getText( elem ) ).indexOf( text ) > -1; + }; + }), + + // "Whether an element is represented by a :lang() selector + // is based solely on the element's language value + // being equal to the identifier C, + // or beginning with the identifier C immediately followed by "-". + // The matching of C against the element's language value is performed case-insensitively. + // The identifier C does not have to be a valid language name." + // http://www.w3.org/TR/selectors/#lang-pseudo + "lang": markFunction( function( lang ) { + // lang value must be a valid identifier + if ( !ridentifier.test(lang || "") ) { + Sizzle.error( "unsupported lang: " + lang ); + } + lang = lang.replace( runescape, funescape ).toLowerCase(); + return function( elem ) { + var elemLang; + do { + if ( (elemLang = documentIsHTML ? + elem.lang : + elem.getAttribute("xml:lang") || elem.getAttribute("lang")) ) { + + elemLang = elemLang.toLowerCase(); + return elemLang === lang || elemLang.indexOf( lang + "-" ) === 0; + } + } while ( (elem = elem.parentNode) && elem.nodeType === 1 ); + return false; + }; + }), + + // Miscellaneous + "target": function( elem ) { + var hash = window.location && window.location.hash; + return hash && hash.slice( 1 ) === elem.id; + }, + + "root": function( elem ) { + return elem === docElem; + }, + + "focus": function( elem ) { + return elem === document.activeElement && (!document.hasFocus || document.hasFocus()) && !!(elem.type || elem.href || ~elem.tabIndex); + }, + + // Boolean properties + "enabled": createDisabledPseudo( false ), + "disabled": createDisabledPseudo( true ), + + "checked": function( elem ) { + // In CSS3, :checked should return both checked and selected elements + // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked + var nodeName = elem.nodeName.toLowerCase(); + return (nodeName === "input" && !!elem.checked) || (nodeName === "option" && !!elem.selected); + }, + + "selected": function( elem ) { + // Accessing this property makes selected-by-default + // options in Safari work properly + if ( elem.parentNode ) { + elem.parentNode.selectedIndex; + } + + return elem.selected === true; + }, + + // Contents + "empty": function( elem ) { + // http://www.w3.org/TR/selectors/#empty-pseudo + // :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5), + // but not by others (comment: 8; processing instruction: 7; etc.) + // nodeType < 6 works because attributes (2) do not appear as children + for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { + if ( elem.nodeType < 6 ) { + return false; + } + } + return true; + }, + + "parent": function( elem ) { + return !Expr.pseudos["empty"]( elem ); + }, + + // Element/input types + "header": function( elem ) { + return rheader.test( elem.nodeName ); + }, + + "input": function( elem ) { + return rinputs.test( elem.nodeName ); + }, + + "button": function( elem ) { + var name = elem.nodeName.toLowerCase(); + return name === "input" && elem.type === "button" || name === "button"; + }, + + "text": function( elem ) { + var attr; + return elem.nodeName.toLowerCase() === "input" && + elem.type === "text" && + + // Support: IE<8 + // New HTML5 attribute values (e.g., "search") appear with elem.type === "text" + ( (attr = elem.getAttribute("type")) == null || attr.toLowerCase() === "text" ); + }, + + // Position-in-collection + "first": createPositionalPseudo(function() { + return [ 0 ]; + }), + + "last": createPositionalPseudo(function( matchIndexes, length ) { + return [ length - 1 ]; + }), + + "eq": createPositionalPseudo(function( matchIndexes, length, argument ) { + return [ argument < 0 ? argument + length : argument ]; + }), + + "even": createPositionalPseudo(function( matchIndexes, length ) { + var i = 0; + for ( ; i < length; i += 2 ) { + matchIndexes.push( i ); + } + return matchIndexes; + }), + + "odd": createPositionalPseudo(function( matchIndexes, length ) { + var i = 1; + for ( ; i < length; i += 2 ) { + matchIndexes.push( i ); + } + return matchIndexes; + }), + + "lt": createPositionalPseudo(function( matchIndexes, length, argument ) { + var i = argument < 0 ? + argument + length : + argument > length ? + length : + argument; + for ( ; --i >= 0; ) { + matchIndexes.push( i ); + } + return matchIndexes; + }), + + "gt": createPositionalPseudo(function( matchIndexes, length, argument ) { + var i = argument < 0 ? argument + length : argument; + for ( ; ++i < length; ) { + matchIndexes.push( i ); + } + return matchIndexes; + }) + } +}; + +Expr.pseudos["nth"] = Expr.pseudos["eq"]; + +// Add button/input type pseudos +for ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) { + Expr.pseudos[ i ] = createInputPseudo( i ); +} +for ( i in { submit: true, reset: true } ) { + Expr.pseudos[ i ] = createButtonPseudo( i ); +} + +// Easy API for creating new setFilters +function setFilters() {} +setFilters.prototype = Expr.filters = Expr.pseudos; +Expr.setFilters = new setFilters(); + +tokenize = Sizzle.tokenize = function( selector, parseOnly ) { + var matched, match, tokens, type, + soFar, groups, preFilters, + cached = tokenCache[ selector + " " ]; + + if ( cached ) { + return parseOnly ? 0 : cached.slice( 0 ); + } + + soFar = selector; + groups = []; + preFilters = Expr.preFilter; + + while ( soFar ) { + + // Comma and first run + if ( !matched || (match = rcomma.exec( soFar )) ) { + if ( match ) { + // Don't consume trailing commas as valid + soFar = soFar.slice( match[0].length ) || soFar; + } + groups.push( (tokens = []) ); + } + + matched = false; + + // Combinators + if ( (match = rcombinators.exec( soFar )) ) { + matched = match.shift(); + tokens.push({ + value: matched, + // Cast descendant combinators to space + type: match[0].replace( rtrim, " " ) + }); + soFar = soFar.slice( matched.length ); + } + + // Filters + for ( type in Expr.filter ) { + if ( (match = matchExpr[ type ].exec( soFar )) && (!preFilters[ type ] || + (match = preFilters[ type ]( match ))) ) { + matched = match.shift(); + tokens.push({ + value: matched, + type: type, + matches: match + }); + soFar = soFar.slice( matched.length ); + } + } + + if ( !matched ) { + break; + } + } + + // Return the length of the invalid excess + // if we're just parsing + // Otherwise, throw an error or return tokens + return parseOnly ? + soFar.length : + soFar ? + Sizzle.error( selector ) : + // Cache the tokens + tokenCache( selector, groups ).slice( 0 ); +}; + +function toSelector( tokens ) { + var i = 0, + len = tokens.length, + selector = ""; + for ( ; i < len; i++ ) { + selector += tokens[i].value; + } + return selector; +} + +function addCombinator( matcher, combinator, base ) { + var dir = combinator.dir, + skip = combinator.next, + key = skip || dir, + checkNonElements = base && key === "parentNode", + doneName = done++; + + return combinator.first ? + // Check against closest ancestor/preceding element + function( elem, context, xml ) { + while ( (elem = elem[ dir ]) ) { + if ( elem.nodeType === 1 || checkNonElements ) { + return matcher( elem, context, xml ); + } + } + return false; + } : + + // Check against all ancestor/preceding elements + function( elem, context, xml ) { + var oldCache, uniqueCache, outerCache, + newCache = [ dirruns, doneName ]; + + // We can't set arbitrary data on XML nodes, so they don't benefit from combinator caching + if ( xml ) { + while ( (elem = elem[ dir ]) ) { + if ( elem.nodeType === 1 || checkNonElements ) { + if ( matcher( elem, context, xml ) ) { + return true; + } + } + } + } else { + while ( (elem = elem[ dir ]) ) { + if ( elem.nodeType === 1 || checkNonElements ) { + outerCache = elem[ expando ] || (elem[ expando ] = {}); + + // Support: IE <9 only + // Defend against cloned attroperties (jQuery gh-1709) + uniqueCache = outerCache[ elem.uniqueID ] || (outerCache[ elem.uniqueID ] = {}); + + if ( skip && skip === elem.nodeName.toLowerCase() ) { + elem = elem[ dir ] || elem; + } else if ( (oldCache = uniqueCache[ key ]) && + oldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) { + + // Assign to newCache so results back-propagate to previous elements + return (newCache[ 2 ] = oldCache[ 2 ]); + } else { + // Reuse newcache so results back-propagate to previous elements + uniqueCache[ key ] = newCache; + + // A match means we're done; a fail means we have to keep checking + if ( (newCache[ 2 ] = matcher( elem, context, xml )) ) { + return true; + } + } + } + } + } + return false; + }; +} + +function elementMatcher( matchers ) { + return matchers.length > 1 ? + function( elem, context, xml ) { + var i = matchers.length; + while ( i-- ) { + if ( !matchers[i]( elem, context, xml ) ) { + return false; + } + } + return true; + } : + matchers[0]; +} + +function multipleContexts( selector, contexts, results ) { + var i = 0, + len = contexts.length; + for ( ; i < len; i++ ) { + Sizzle( selector, contexts[i], results ); + } + return results; +} + +function condense( unmatched, map, filter, context, xml ) { + var elem, + newUnmatched = [], + i = 0, + len = unmatched.length, + mapped = map != null; + + for ( ; i < len; i++ ) { + if ( (elem = unmatched[i]) ) { + if ( !filter || filter( elem, context, xml ) ) { + newUnmatched.push( elem ); + if ( mapped ) { + map.push( i ); + } + } + } + } + + return newUnmatched; +} + +function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) { + if ( postFilter && !postFilter[ expando ] ) { + postFilter = setMatcher( postFilter ); + } + if ( postFinder && !postFinder[ expando ] ) { + postFinder = setMatcher( postFinder, postSelector ); + } + return markFunction(function( seed, results, context, xml ) { + var temp, i, elem, + preMap = [], + postMap = [], + preexisting = results.length, + + // Get initial elements from seed or context + elems = seed || multipleContexts( selector || "*", context.nodeType ? [ context ] : context, [] ), + + // Prefilter to get matcher input, preserving a map for seed-results synchronization + matcherIn = preFilter && ( seed || !selector ) ? + condense( elems, preMap, preFilter, context, xml ) : + elems, + + matcherOut = matcher ? + // If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results, + postFinder || ( seed ? preFilter : preexisting || postFilter ) ? + + // ...intermediate processing is necessary + [] : + + // ...otherwise use results directly + results : + matcherIn; + + // Find primary matches + if ( matcher ) { + matcher( matcherIn, matcherOut, context, xml ); + } + + // Apply postFilter + if ( postFilter ) { + temp = condense( matcherOut, postMap ); + postFilter( temp, [], context, xml ); + + // Un-match failing elements by moving them back to matcherIn + i = temp.length; + while ( i-- ) { + if ( (elem = temp[i]) ) { + matcherOut[ postMap[i] ] = !(matcherIn[ postMap[i] ] = elem); + } + } + } + + if ( seed ) { + if ( postFinder || preFilter ) { + if ( postFinder ) { + // Get the final matcherOut by condensing this intermediate into postFinder contexts + temp = []; + i = matcherOut.length; + while ( i-- ) { + if ( (elem = matcherOut[i]) ) { + // Restore matcherIn since elem is not yet a final match + temp.push( (matcherIn[i] = elem) ); + } + } + postFinder( null, (matcherOut = []), temp, xml ); + } + + // Move matched elements from seed to results to keep them synchronized + i = matcherOut.length; + while ( i-- ) { + if ( (elem = matcherOut[i]) && + (temp = postFinder ? indexOf( seed, elem ) : preMap[i]) > -1 ) { + + seed[temp] = !(results[temp] = elem); + } + } + } + + // Add elements to results, through postFinder if defined + } else { + matcherOut = condense( + matcherOut === results ? + matcherOut.splice( preexisting, matcherOut.length ) : + matcherOut + ); + if ( postFinder ) { + postFinder( null, results, matcherOut, xml ); + } else { + push.apply( results, matcherOut ); + } + } + }); +} + +function matcherFromTokens( tokens ) { + var checkContext, matcher, j, + len = tokens.length, + leadingRelative = Expr.relative[ tokens[0].type ], + implicitRelative = leadingRelative || Expr.relative[" "], + i = leadingRelative ? 1 : 0, + + // The foundational matcher ensures that elements are reachable from top-level context(s) + matchContext = addCombinator( function( elem ) { + return elem === checkContext; + }, implicitRelative, true ), + matchAnyContext = addCombinator( function( elem ) { + return indexOf( checkContext, elem ) > -1; + }, implicitRelative, true ), + matchers = [ function( elem, context, xml ) { + var ret = ( !leadingRelative && ( xml || context !== outermostContext ) ) || ( + (checkContext = context).nodeType ? + matchContext( elem, context, xml ) : + matchAnyContext( elem, context, xml ) ); + // Avoid hanging onto element (issue #299) + checkContext = null; + return ret; + } ]; + + for ( ; i < len; i++ ) { + if ( (matcher = Expr.relative[ tokens[i].type ]) ) { + matchers = [ addCombinator(elementMatcher( matchers ), matcher) ]; + } else { + matcher = Expr.filter[ tokens[i].type ].apply( null, tokens[i].matches ); + + // Return special upon seeing a positional matcher + if ( matcher[ expando ] ) { + // Find the next relative operator (if any) for proper handling + j = ++i; + for ( ; j < len; j++ ) { + if ( Expr.relative[ tokens[j].type ] ) { + break; + } + } + return setMatcher( + i > 1 && elementMatcher( matchers ), + i > 1 && toSelector( + // If the preceding token was a descendant combinator, insert an implicit any-element `*` + tokens.slice( 0, i - 1 ).concat({ value: tokens[ i - 2 ].type === " " ? "*" : "" }) + ).replace( rtrim, "$1" ), + matcher, + i < j && matcherFromTokens( tokens.slice( i, j ) ), + j < len && matcherFromTokens( (tokens = tokens.slice( j )) ), + j < len && toSelector( tokens ) + ); + } + matchers.push( matcher ); + } + } + + return elementMatcher( matchers ); +} + +function matcherFromGroupMatchers( elementMatchers, setMatchers ) { + var bySet = setMatchers.length > 0, + byElement = elementMatchers.length > 0, + superMatcher = function( seed, context, xml, results, outermost ) { + var elem, j, matcher, + matchedCount = 0, + i = "0", + unmatched = seed && [], + setMatched = [], + contextBackup = outermostContext, + // We must always have either seed elements or outermost context + elems = seed || byElement && Expr.find["TAG"]( "*", outermost ), + // Use integer dirruns iff this is the outermost matcher + dirrunsUnique = (dirruns += contextBackup == null ? 1 : Math.random() || 0.1), + len = elems.length; + + if ( outermost ) { + outermostContext = context === document || context || outermost; + } + + // Add elements passing elementMatchers directly to results + // Support: IE<9, Safari + // Tolerate NodeList properties (IE: "length"; Safari: ) matching elements by id + for ( ; i !== len && (elem = elems[i]) != null; i++ ) { + if ( byElement && elem ) { + j = 0; + if ( !context && elem.ownerDocument !== document ) { + setDocument( elem ); + xml = !documentIsHTML; + } + while ( (matcher = elementMatchers[j++]) ) { + if ( matcher( elem, context || document, xml) ) { + results.push( elem ); + break; + } + } + if ( outermost ) { + dirruns = dirrunsUnique; + } + } + + // Track unmatched elements for set filters + if ( bySet ) { + // They will have gone through all possible matchers + if ( (elem = !matcher && elem) ) { + matchedCount--; + } + + // Lengthen the array for every element, matched or not + if ( seed ) { + unmatched.push( elem ); + } + } + } + + // `i` is now the count of elements visited above, and adding it to `matchedCount` + // makes the latter nonnegative. + matchedCount += i; + + // Apply set filters to unmatched elements + // NOTE: This can be skipped if there are no unmatched elements (i.e., `matchedCount` + // equals `i`), unless we didn't visit _any_ elements in the above loop because we have + // no element matchers and no seed. + // Incrementing an initially-string "0" `i` allows `i` to remain a string only in that + // case, which will result in a "00" `matchedCount` that differs from `i` but is also + // numerically zero. + if ( bySet && i !== matchedCount ) { + j = 0; + while ( (matcher = setMatchers[j++]) ) { + matcher( unmatched, setMatched, context, xml ); + } + + if ( seed ) { + // Reintegrate element matches to eliminate the need for sorting + if ( matchedCount > 0 ) { + while ( i-- ) { + if ( !(unmatched[i] || setMatched[i]) ) { + setMatched[i] = pop.call( results ); + } + } + } + + // Discard index placeholder values to get only actual matches + setMatched = condense( setMatched ); + } + + // Add matches to results + push.apply( results, setMatched ); + + // Seedless set matches succeeding multiple successful matchers stipulate sorting + if ( outermost && !seed && setMatched.length > 0 && + ( matchedCount + setMatchers.length ) > 1 ) { + + Sizzle.uniqueSort( results ); + } + } + + // Override manipulation of globals by nested matchers + if ( outermost ) { + dirruns = dirrunsUnique; + outermostContext = contextBackup; + } + + return unmatched; + }; + + return bySet ? + markFunction( superMatcher ) : + superMatcher; +} + +compile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) { + var i, + setMatchers = [], + elementMatchers = [], + cached = compilerCache[ selector + " " ]; + + if ( !cached ) { + // Generate a function of recursive functions that can be used to check each element + if ( !match ) { + match = tokenize( selector ); + } + i = match.length; + while ( i-- ) { + cached = matcherFromTokens( match[i] ); + if ( cached[ expando ] ) { + setMatchers.push( cached ); + } else { + elementMatchers.push( cached ); + } + } + + // Cache the compiled function + cached = compilerCache( selector, matcherFromGroupMatchers( elementMatchers, setMatchers ) ); + + // Save selector and tokenization + cached.selector = selector; + } + return cached; +}; + +/** + * A low-level selection function that works with Sizzle's compiled + * selector functions + * @param {String|Function} selector A selector or a pre-compiled + * selector function built with Sizzle.compile + * @param {Element} context + * @param {Array} [results] + * @param {Array} [seed] A set of elements to match against + */ +select = Sizzle.select = function( selector, context, results, seed ) { + var i, tokens, token, type, find, + compiled = typeof selector === "function" && selector, + match = !seed && tokenize( (selector = compiled.selector || selector) ); + + results = results || []; + + // Try to minimize operations if there is only one selector in the list and no seed + // (the latter of which guarantees us context) + if ( match.length === 1 ) { + + // Reduce context if the leading compound selector is an ID + tokens = match[0] = match[0].slice( 0 ); + if ( tokens.length > 2 && (token = tokens[0]).type === "ID" && + context.nodeType === 9 && documentIsHTML && Expr.relative[ tokens[1].type ] ) { + + context = ( Expr.find["ID"]( token.matches[0].replace(runescape, funescape), context ) || [] )[0]; + if ( !context ) { + return results; + + // Precompiled matchers will still verify ancestry, so step up a level + } else if ( compiled ) { + context = context.parentNode; + } + + selector = selector.slice( tokens.shift().value.length ); + } + + // Fetch a seed set for right-to-left matching + i = matchExpr["needsContext"].test( selector ) ? 0 : tokens.length; + while ( i-- ) { + token = tokens[i]; + + // Abort if we hit a combinator + if ( Expr.relative[ (type = token.type) ] ) { + break; + } + if ( (find = Expr.find[ type ]) ) { + // Search, expanding context for leading sibling combinators + if ( (seed = find( + token.matches[0].replace( runescape, funescape ), + rsibling.test( tokens[0].type ) && testContext( context.parentNode ) || context + )) ) { + + // If seed is empty or no tokens remain, we can return early + tokens.splice( i, 1 ); + selector = seed.length && toSelector( tokens ); + if ( !selector ) { + push.apply( results, seed ); + return results; + } + + break; + } + } + } + } + + // Compile and execute a filtering function if one is not provided + // Provide `match` to avoid retokenization if we modified the selector above + ( compiled || compile( selector, match ) )( + seed, + context, + !documentIsHTML, + results, + !context || rsibling.test( selector ) && testContext( context.parentNode ) || context + ); + return results; +}; + +// One-time assignments + +// Sort stability +support.sortStable = expando.split("").sort( sortOrder ).join("") === expando; + +// Support: Chrome 14-35+ +// Always assume duplicates if they aren't passed to the comparison function +support.detectDuplicates = !!hasDuplicate; + +// Initialize against the default document +setDocument(); + +// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27) +// Detached nodes confoundingly follow *each other* +support.sortDetached = assert(function( el ) { + // Should return 1, but returns 4 (following) + return el.compareDocumentPosition( document.createElement("fieldset") ) & 1; +}); + +// Support: IE<8 +// Prevent attribute/property "interpolation" +// https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx +if ( !assert(function( el ) { + el.innerHTML = ""; + return el.firstChild.getAttribute("href") === "#" ; +}) ) { + addHandle( "type|href|height|width", function( elem, name, isXML ) { + if ( !isXML ) { + return elem.getAttribute( name, name.toLowerCase() === "type" ? 1 : 2 ); + } + }); +} + +// Support: IE<9 +// Use defaultValue in place of getAttribute("value") +if ( !support.attributes || !assert(function( el ) { + el.innerHTML = ""; + el.firstChild.setAttribute( "value", "" ); + return el.firstChild.getAttribute( "value" ) === ""; +}) ) { + addHandle( "value", function( elem, name, isXML ) { + if ( !isXML && elem.nodeName.toLowerCase() === "input" ) { + return elem.defaultValue; + } + }); +} + +// Support: IE<9 +// Use getAttributeNode to fetch booleans when getAttribute lies +if ( !assert(function( el ) { + return el.getAttribute("disabled") == null; +}) ) { + addHandle( booleans, function( elem, name, isXML ) { + var val; + if ( !isXML ) { + return elem[ name ] === true ? name.toLowerCase() : + (val = elem.getAttributeNode( name )) && val.specified ? + val.value : + null; + } + }); +} + +return Sizzle; + +})( window ); + + + +jQuery.find = Sizzle; +jQuery.expr = Sizzle.selectors; + +// Deprecated +jQuery.expr[ ":" ] = jQuery.expr.pseudos; +jQuery.uniqueSort = jQuery.unique = Sizzle.uniqueSort; +jQuery.text = Sizzle.getText; +jQuery.isXMLDoc = Sizzle.isXML; +jQuery.contains = Sizzle.contains; +jQuery.escapeSelector = Sizzle.escape; + + + + +var dir = function( elem, dir, until ) { + var matched = [], + truncate = until !== undefined; + + while ( ( elem = elem[ dir ] ) && elem.nodeType !== 9 ) { + if ( elem.nodeType === 1 ) { + if ( truncate && jQuery( elem ).is( until ) ) { + break; + } + matched.push( elem ); + } + } + return matched; +}; + + +var siblings = function( n, elem ) { + var matched = []; + + for ( ; n; n = n.nextSibling ) { + if ( n.nodeType === 1 && n !== elem ) { + matched.push( n ); + } + } + + return matched; +}; + + +var rneedsContext = jQuery.expr.match.needsContext; + + + +function nodeName( elem, name ) { + + return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase(); + +}; +var rsingleTag = ( /^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i ); + + + +// Implement the identical functionality for filter and not +function winnow( elements, qualifier, not ) { + if ( isFunction( qualifier ) ) { + return jQuery.grep( elements, function( elem, i ) { + return !!qualifier.call( elem, i, elem ) !== not; + } ); + } + + // Single element + if ( qualifier.nodeType ) { + return jQuery.grep( elements, function( elem ) { + return ( elem === qualifier ) !== not; + } ); + } + + // Arraylike of elements (jQuery, arguments, Array) + if ( typeof qualifier !== "string" ) { + return jQuery.grep( elements, function( elem ) { + return ( indexOf.call( qualifier, elem ) > -1 ) !== not; + } ); + } + + // Filtered directly for both simple and complex selectors + return jQuery.filter( qualifier, elements, not ); +} + +jQuery.filter = function( expr, elems, not ) { + var elem = elems[ 0 ]; + + if ( not ) { + expr = ":not(" + expr + ")"; + } + + if ( elems.length === 1 && elem.nodeType === 1 ) { + return jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : []; + } + + return jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) { + return elem.nodeType === 1; + } ) ); +}; + +jQuery.fn.extend( { + find: function( selector ) { + var i, ret, + len = this.length, + self = this; + + if ( typeof selector !== "string" ) { + return this.pushStack( jQuery( selector ).filter( function() { + for ( i = 0; i < len; i++ ) { + if ( jQuery.contains( self[ i ], this ) ) { + return true; + } + } + } ) ); + } + + ret = this.pushStack( [] ); + + for ( i = 0; i < len; i++ ) { + jQuery.find( selector, self[ i ], ret ); + } + + return len > 1 ? jQuery.uniqueSort( ret ) : ret; + }, + filter: function( selector ) { + return this.pushStack( winnow( this, selector || [], false ) ); + }, + not: function( selector ) { + return this.pushStack( winnow( this, selector || [], true ) ); + }, + is: function( selector ) { + return !!winnow( + this, + + // If this is a positional/relative selector, check membership in the returned set + // so $("p:first").is("p:last") won't return true for a doc with two "p". + typeof selector === "string" && rneedsContext.test( selector ) ? + jQuery( selector ) : + selector || [], + false + ).length; + } +} ); + + +// Initialize a jQuery object + + +// A central reference to the root jQuery(document) +var rootjQuery, + + // A simple way to check for HTML strings + // Prioritize #id over to avoid XSS via location.hash (#9521) + // Strict HTML recognition (#11290: must start with <) + // Shortcut simple #id case for speed + rquickExpr = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/, + + init = jQuery.fn.init = function( selector, context, root ) { + var match, elem; + + // HANDLE: $(""), $(null), $(undefined), $(false) + if ( !selector ) { + return this; + } + + // Method init() accepts an alternate rootjQuery + // so migrate can support jQuery.sub (gh-2101) + root = root || rootjQuery; + + // Handle HTML strings + if ( typeof selector === "string" ) { + if ( selector[ 0 ] === "<" && + selector[ selector.length - 1 ] === ">" && + selector.length >= 3 ) { + + // Assume that strings that start and end with <> are HTML and skip the regex check + match = [ null, selector, null ]; + + } else { + match = rquickExpr.exec( selector ); + } + + // Match html or make sure no context is specified for #id + if ( match && ( match[ 1 ] || !context ) ) { + + // HANDLE: $(html) -> $(array) + if ( match[ 1 ] ) { + context = context instanceof jQuery ? context[ 0 ] : context; + + // Option to run scripts is true for back-compat + // Intentionally let the error be thrown if parseHTML is not present + jQuery.merge( this, jQuery.parseHTML( + match[ 1 ], + context && context.nodeType ? context.ownerDocument || context : document, + true + ) ); + + // HANDLE: $(html, props) + if ( rsingleTag.test( match[ 1 ] ) && jQuery.isPlainObject( context ) ) { + for ( match in context ) { + + // Properties of context are called as methods if possible + if ( isFunction( this[ match ] ) ) { + this[ match ]( context[ match ] ); + + // ...and otherwise set as attributes + } else { + this.attr( match, context[ match ] ); + } + } + } + + return this; + + // HANDLE: $(#id) + } else { + elem = document.getElementById( match[ 2 ] ); + + if ( elem ) { + + // Inject the element directly into the jQuery object + this[ 0 ] = elem; + this.length = 1; + } + return this; + } + + // HANDLE: $(expr, $(...)) + } else if ( !context || context.jquery ) { + return ( context || root ).find( selector ); + + // HANDLE: $(expr, context) + // (which is just equivalent to: $(context).find(expr) + } else { + return this.constructor( context ).find( selector ); + } + + // HANDLE: $(DOMElement) + } else if ( selector.nodeType ) { + this[ 0 ] = selector; + this.length = 1; + return this; + + // HANDLE: $(function) + // Shortcut for document ready + } else if ( isFunction( selector ) ) { + return root.ready !== undefined ? + root.ready( selector ) : + + // Execute immediately if ready is not present + selector( jQuery ); + } + + return jQuery.makeArray( selector, this ); + }; + +// Give the init function the jQuery prototype for later instantiation +init.prototype = jQuery.fn; + +// Initialize central reference +rootjQuery = jQuery( document ); + + +var rparentsprev = /^(?:parents|prev(?:Until|All))/, + + // Methods guaranteed to produce a unique set when starting from a unique set + guaranteedUnique = { + children: true, + contents: true, + next: true, + prev: true + }; + +jQuery.fn.extend( { + has: function( target ) { + var targets = jQuery( target, this ), + l = targets.length; + + return this.filter( function() { + var i = 0; + for ( ; i < l; i++ ) { + if ( jQuery.contains( this, targets[ i ] ) ) { + return true; + } + } + } ); + }, + + closest: function( selectors, context ) { + var cur, + i = 0, + l = this.length, + matched = [], + targets = typeof selectors !== "string" && jQuery( selectors ); + + // Positional selectors never match, since there's no _selection_ context + if ( !rneedsContext.test( selectors ) ) { + for ( ; i < l; i++ ) { + for ( cur = this[ i ]; cur && cur !== context; cur = cur.parentNode ) { + + // Always skip document fragments + if ( cur.nodeType < 11 && ( targets ? + targets.index( cur ) > -1 : + + // Don't pass non-elements to Sizzle + cur.nodeType === 1 && + jQuery.find.matchesSelector( cur, selectors ) ) ) { + + matched.push( cur ); + break; + } + } + } + } + + return this.pushStack( matched.length > 1 ? jQuery.uniqueSort( matched ) : matched ); + }, + + // Determine the position of an element within the set + index: function( elem ) { + + // No argument, return index in parent + if ( !elem ) { + return ( this[ 0 ] && this[ 0 ].parentNode ) ? this.first().prevAll().length : -1; + } + + // Index in selector + if ( typeof elem === "string" ) { + return indexOf.call( jQuery( elem ), this[ 0 ] ); + } + + // Locate the position of the desired element + return indexOf.call( this, + + // If it receives a jQuery object, the first element is used + elem.jquery ? elem[ 0 ] : elem + ); + }, + + add: function( selector, context ) { + return this.pushStack( + jQuery.uniqueSort( + jQuery.merge( this.get(), jQuery( selector, context ) ) + ) + ); + }, + + addBack: function( selector ) { + return this.add( selector == null ? + this.prevObject : this.prevObject.filter( selector ) + ); + } +} ); + +function sibling( cur, dir ) { + while ( ( cur = cur[ dir ] ) && cur.nodeType !== 1 ) {} + return cur; +} + +jQuery.each( { + parent: function( elem ) { + var parent = elem.parentNode; + return parent && parent.nodeType !== 11 ? parent : null; + }, + parents: function( elem ) { + return dir( elem, "parentNode" ); + }, + parentsUntil: function( elem, i, until ) { + return dir( elem, "parentNode", until ); + }, + next: function( elem ) { + return sibling( elem, "nextSibling" ); + }, + prev: function( elem ) { + return sibling( elem, "previousSibling" ); + }, + nextAll: function( elem ) { + return dir( elem, "nextSibling" ); + }, + prevAll: function( elem ) { + return dir( elem, "previousSibling" ); + }, + nextUntil: function( elem, i, until ) { + return dir( elem, "nextSibling", until ); + }, + prevUntil: function( elem, i, until ) { + return dir( elem, "previousSibling", until ); + }, + siblings: function( elem ) { + return siblings( ( elem.parentNode || {} ).firstChild, elem ); + }, + children: function( elem ) { + return siblings( elem.firstChild ); + }, + contents: function( elem ) { + if ( typeof elem.contentDocument !== "undefined" ) { + return elem.contentDocument; + } + + // Support: IE 9 - 11 only, iOS 7 only, Android Browser <=4.3 only + // Treat the template element as a regular one in browsers that + // don't support it. + if ( nodeName( elem, "template" ) ) { + elem = elem.content || elem; + } + + return jQuery.merge( [], elem.childNodes ); + } +}, function( name, fn ) { + jQuery.fn[ name ] = function( until, selector ) { + var matched = jQuery.map( this, fn, until ); + + if ( name.slice( -5 ) !== "Until" ) { + selector = until; + } + + if ( selector && typeof selector === "string" ) { + matched = jQuery.filter( selector, matched ); + } + + if ( this.length > 1 ) { + + // Remove duplicates + if ( !guaranteedUnique[ name ] ) { + jQuery.uniqueSort( matched ); + } + + // Reverse order for parents* and prev-derivatives + if ( rparentsprev.test( name ) ) { + matched.reverse(); + } + } + + return this.pushStack( matched ); + }; +} ); +var rnothtmlwhite = ( /[^\x20\t\r\n\f]+/g ); + + + +// Convert String-formatted options into Object-formatted ones +function createOptions( options ) { + var object = {}; + jQuery.each( options.match( rnothtmlwhite ) || [], function( _, flag ) { + object[ flag ] = true; + } ); + return object; +} + +/* + * Create a callback list using the following parameters: + * + * options: an optional list of space-separated options that will change how + * the callback list behaves or a more traditional option object + * + * By default a callback list will act like an event callback list and can be + * "fired" multiple times. + * + * Possible options: + * + * once: will ensure the callback list can only be fired once (like a Deferred) + * + * memory: will keep track of previous values and will call any callback added + * after the list has been fired right away with the latest "memorized" + * values (like a Deferred) + * + * unique: will ensure a callback can only be added once (no duplicate in the list) + * + * stopOnFalse: interrupt callings when a callback returns false + * + */ +jQuery.Callbacks = function( options ) { + + // Convert options from String-formatted to Object-formatted if needed + // (we check in cache first) + options = typeof options === "string" ? + createOptions( options ) : + jQuery.extend( {}, options ); + + var // Flag to know if list is currently firing + firing, + + // Last fire value for non-forgettable lists + memory, + + // Flag to know if list was already fired + fired, + + // Flag to prevent firing + locked, + + // Actual callback list + list = [], + + // Queue of execution data for repeatable lists + queue = [], + + // Index of currently firing callback (modified by add/remove as needed) + firingIndex = -1, + + // Fire callbacks + fire = function() { + + // Enforce single-firing + locked = locked || options.once; + + // Execute callbacks for all pending executions, + // respecting firingIndex overrides and runtime changes + fired = firing = true; + for ( ; queue.length; firingIndex = -1 ) { + memory = queue.shift(); + while ( ++firingIndex < list.length ) { + + // Run callback and check for early termination + if ( list[ firingIndex ].apply( memory[ 0 ], memory[ 1 ] ) === false && + options.stopOnFalse ) { + + // Jump to end and forget the data so .add doesn't re-fire + firingIndex = list.length; + memory = false; + } + } + } + + // Forget the data if we're done with it + if ( !options.memory ) { + memory = false; + } + + firing = false; + + // Clean up if we're done firing for good + if ( locked ) { + + // Keep an empty list if we have data for future add calls + if ( memory ) { + list = []; + + // Otherwise, this object is spent + } else { + list = ""; + } + } + }, + + // Actual Callbacks object + self = { + + // Add a callback or a collection of callbacks to the list + add: function() { + if ( list ) { + + // If we have memory from a past run, we should fire after adding + if ( memory && !firing ) { + firingIndex = list.length - 1; + queue.push( memory ); + } + + ( function add( args ) { + jQuery.each( args, function( _, arg ) { + if ( isFunction( arg ) ) { + if ( !options.unique || !self.has( arg ) ) { + list.push( arg ); + } + } else if ( arg && arg.length && toType( arg ) !== "string" ) { + + // Inspect recursively + add( arg ); + } + } ); + } )( arguments ); + + if ( memory && !firing ) { + fire(); + } + } + return this; + }, + + // Remove a callback from the list + remove: function() { + jQuery.each( arguments, function( _, arg ) { + var index; + while ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) { + list.splice( index, 1 ); + + // Handle firing indexes + if ( index <= firingIndex ) { + firingIndex--; + } + } + } ); + return this; + }, + + // Check if a given callback is in the list. + // If no argument is given, return whether or not list has callbacks attached. + has: function( fn ) { + return fn ? + jQuery.inArray( fn, list ) > -1 : + list.length > 0; + }, + + // Remove all callbacks from the list + empty: function() { + if ( list ) { + list = []; + } + return this; + }, + + // Disable .fire and .add + // Abort any current/pending executions + // Clear all callbacks and values + disable: function() { + locked = queue = []; + list = memory = ""; + return this; + }, + disabled: function() { + return !list; + }, + + // Disable .fire + // Also disable .add unless we have memory (since it would have no effect) + // Abort any pending executions + lock: function() { + locked = queue = []; + if ( !memory && !firing ) { + list = memory = ""; + } + return this; + }, + locked: function() { + return !!locked; + }, + + // Call all callbacks with the given context and arguments + fireWith: function( context, args ) { + if ( !locked ) { + args = args || []; + args = [ context, args.slice ? args.slice() : args ]; + queue.push( args ); + if ( !firing ) { + fire(); + } + } + return this; + }, + + // Call all the callbacks with the given arguments + fire: function() { + self.fireWith( this, arguments ); + return this; + }, + + // To know if the callbacks have already been called at least once + fired: function() { + return !!fired; + } + }; + + return self; +}; + + +function Identity( v ) { + return v; +} +function Thrower( ex ) { + throw ex; +} + +function adoptValue( value, resolve, reject, noValue ) { + var method; + + try { + + // Check for promise aspect first to privilege synchronous behavior + if ( value && isFunction( ( method = value.promise ) ) ) { + method.call( value ).done( resolve ).fail( reject ); + + // Other thenables + } else if ( value && isFunction( ( method = value.then ) ) ) { + method.call( value, resolve, reject ); + + // Other non-thenables + } else { + + // Control `resolve` arguments by letting Array#slice cast boolean `noValue` to integer: + // * false: [ value ].slice( 0 ) => resolve( value ) + // * true: [ value ].slice( 1 ) => resolve() + resolve.apply( undefined, [ value ].slice( noValue ) ); + } + + // For Promises/A+, convert exceptions into rejections + // Since jQuery.when doesn't unwrap thenables, we can skip the extra checks appearing in + // Deferred#then to conditionally suppress rejection. + } catch ( value ) { + + // Support: Android 4.0 only + // Strict mode functions invoked without .call/.apply get global-object context + reject.apply( undefined, [ value ] ); + } +} + +jQuery.extend( { + + Deferred: function( func ) { + var tuples = [ + + // action, add listener, callbacks, + // ... .then handlers, argument index, [final state] + [ "notify", "progress", jQuery.Callbacks( "memory" ), + jQuery.Callbacks( "memory" ), 2 ], + [ "resolve", "done", jQuery.Callbacks( "once memory" ), + jQuery.Callbacks( "once memory" ), 0, "resolved" ], + [ "reject", "fail", jQuery.Callbacks( "once memory" ), + jQuery.Callbacks( "once memory" ), 1, "rejected" ] + ], + state = "pending", + promise = { + state: function() { + return state; + }, + always: function() { + deferred.done( arguments ).fail( arguments ); + return this; + }, + "catch": function( fn ) { + return promise.then( null, fn ); + }, + + // Keep pipe for back-compat + pipe: function( /* fnDone, fnFail, fnProgress */ ) { + var fns = arguments; + + return jQuery.Deferred( function( newDefer ) { + jQuery.each( tuples, function( i, tuple ) { + + // Map tuples (progress, done, fail) to arguments (done, fail, progress) + var fn = isFunction( fns[ tuple[ 4 ] ] ) && fns[ tuple[ 4 ] ]; + + // deferred.progress(function() { bind to newDefer or newDefer.notify }) + // deferred.done(function() { bind to newDefer or newDefer.resolve }) + // deferred.fail(function() { bind to newDefer or newDefer.reject }) + deferred[ tuple[ 1 ] ]( function() { + var returned = fn && fn.apply( this, arguments ); + if ( returned && isFunction( returned.promise ) ) { + returned.promise() + .progress( newDefer.notify ) + .done( newDefer.resolve ) + .fail( newDefer.reject ); + } else { + newDefer[ tuple[ 0 ] + "With" ]( + this, + fn ? [ returned ] : arguments + ); + } + } ); + } ); + fns = null; + } ).promise(); + }, + then: function( onFulfilled, onRejected, onProgress ) { + var maxDepth = 0; + function resolve( depth, deferred, handler, special ) { + return function() { + var that = this, + args = arguments, + mightThrow = function() { + var returned, then; + + // Support: Promises/A+ section 2.3.3.3.3 + // https://promisesaplus.com/#point-59 + // Ignore double-resolution attempts + if ( depth < maxDepth ) { + return; + } + + returned = handler.apply( that, args ); + + // Support: Promises/A+ section 2.3.1 + // https://promisesaplus.com/#point-48 + if ( returned === deferred.promise() ) { + throw new TypeError( "Thenable self-resolution" ); + } + + // Support: Promises/A+ sections 2.3.3.1, 3.5 + // https://promisesaplus.com/#point-54 + // https://promisesaplus.com/#point-75 + // Retrieve `then` only once + then = returned && + + // Support: Promises/A+ section 2.3.4 + // https://promisesaplus.com/#point-64 + // Only check objects and functions for thenability + ( typeof returned === "object" || + typeof returned === "function" ) && + returned.then; + + // Handle a returned thenable + if ( isFunction( then ) ) { + + // Special processors (notify) just wait for resolution + if ( special ) { + then.call( + returned, + resolve( maxDepth, deferred, Identity, special ), + resolve( maxDepth, deferred, Thrower, special ) + ); + + // Normal processors (resolve) also hook into progress + } else { + + // ...and disregard older resolution values + maxDepth++; + + then.call( + returned, + resolve( maxDepth, deferred, Identity, special ), + resolve( maxDepth, deferred, Thrower, special ), + resolve( maxDepth, deferred, Identity, + deferred.notifyWith ) + ); + } + + // Handle all other returned values + } else { + + // Only substitute handlers pass on context + // and multiple values (non-spec behavior) + if ( handler !== Identity ) { + that = undefined; + args = [ returned ]; + } + + // Process the value(s) + // Default process is resolve + ( special || deferred.resolveWith )( that, args ); + } + }, + + // Only normal processors (resolve) catch and reject exceptions + process = special ? + mightThrow : + function() { + try { + mightThrow(); + } catch ( e ) { + + if ( jQuery.Deferred.exceptionHook ) { + jQuery.Deferred.exceptionHook( e, + process.stackTrace ); + } + + // Support: Promises/A+ section 2.3.3.3.4.1 + // https://promisesaplus.com/#point-61 + // Ignore post-resolution exceptions + if ( depth + 1 >= maxDepth ) { + + // Only substitute handlers pass on context + // and multiple values (non-spec behavior) + if ( handler !== Thrower ) { + that = undefined; + args = [ e ]; + } + + deferred.rejectWith( that, args ); + } + } + }; + + // Support: Promises/A+ section 2.3.3.3.1 + // https://promisesaplus.com/#point-57 + // Re-resolve promises immediately to dodge false rejection from + // subsequent errors + if ( depth ) { + process(); + } else { + + // Call an optional hook to record the stack, in case of exception + // since it's otherwise lost when execution goes async + if ( jQuery.Deferred.getStackHook ) { + process.stackTrace = jQuery.Deferred.getStackHook(); + } + window.setTimeout( process ); + } + }; + } + + return jQuery.Deferred( function( newDefer ) { + + // progress_handlers.add( ... ) + tuples[ 0 ][ 3 ].add( + resolve( + 0, + newDefer, + isFunction( onProgress ) ? + onProgress : + Identity, + newDefer.notifyWith + ) + ); + + // fulfilled_handlers.add( ... ) + tuples[ 1 ][ 3 ].add( + resolve( + 0, + newDefer, + isFunction( onFulfilled ) ? + onFulfilled : + Identity + ) + ); + + // rejected_handlers.add( ... ) + tuples[ 2 ][ 3 ].add( + resolve( + 0, + newDefer, + isFunction( onRejected ) ? + onRejected : + Thrower + ) + ); + } ).promise(); + }, + + // Get a promise for this deferred + // If obj is provided, the promise aspect is added to the object + promise: function( obj ) { + return obj != null ? jQuery.extend( obj, promise ) : promise; + } + }, + deferred = {}; + + // Add list-specific methods + jQuery.each( tuples, function( i, tuple ) { + var list = tuple[ 2 ], + stateString = tuple[ 5 ]; + + // promise.progress = list.add + // promise.done = list.add + // promise.fail = list.add + promise[ tuple[ 1 ] ] = list.add; + + // Handle state + if ( stateString ) { + list.add( + function() { + + // state = "resolved" (i.e., fulfilled) + // state = "rejected" + state = stateString; + }, + + // rejected_callbacks.disable + // fulfilled_callbacks.disable + tuples[ 3 - i ][ 2 ].disable, + + // rejected_handlers.disable + // fulfilled_handlers.disable + tuples[ 3 - i ][ 3 ].disable, + + // progress_callbacks.lock + tuples[ 0 ][ 2 ].lock, + + // progress_handlers.lock + tuples[ 0 ][ 3 ].lock + ); + } + + // progress_handlers.fire + // fulfilled_handlers.fire + // rejected_handlers.fire + list.add( tuple[ 3 ].fire ); + + // deferred.notify = function() { deferred.notifyWith(...) } + // deferred.resolve = function() { deferred.resolveWith(...) } + // deferred.reject = function() { deferred.rejectWith(...) } + deferred[ tuple[ 0 ] ] = function() { + deferred[ tuple[ 0 ] + "With" ]( this === deferred ? undefined : this, arguments ); + return this; + }; + + // deferred.notifyWith = list.fireWith + // deferred.resolveWith = list.fireWith + // deferred.rejectWith = list.fireWith + deferred[ tuple[ 0 ] + "With" ] = list.fireWith; + } ); + + // Make the deferred a promise + promise.promise( deferred ); + + // Call given func if any + if ( func ) { + func.call( deferred, deferred ); + } + + // All done! + return deferred; + }, + + // Deferred helper + when: function( singleValue ) { + var + + // count of uncompleted subordinates + remaining = arguments.length, + + // count of unprocessed arguments + i = remaining, + + // subordinate fulfillment data + resolveContexts = Array( i ), + resolveValues = slice.call( arguments ), + + // the master Deferred + master = jQuery.Deferred(), + + // subordinate callback factory + updateFunc = function( i ) { + return function( value ) { + resolveContexts[ i ] = this; + resolveValues[ i ] = arguments.length > 1 ? slice.call( arguments ) : value; + if ( !( --remaining ) ) { + master.resolveWith( resolveContexts, resolveValues ); + } + }; + }; + + // Single- and empty arguments are adopted like Promise.resolve + if ( remaining <= 1 ) { + adoptValue( singleValue, master.done( updateFunc( i ) ).resolve, master.reject, + !remaining ); + + // Use .then() to unwrap secondary thenables (cf. gh-3000) + if ( master.state() === "pending" || + isFunction( resolveValues[ i ] && resolveValues[ i ].then ) ) { + + return master.then(); + } + } + + // Multiple arguments are aggregated like Promise.all array elements + while ( i-- ) { + adoptValue( resolveValues[ i ], updateFunc( i ), master.reject ); + } + + return master.promise(); + } +} ); + + +// These usually indicate a programmer mistake during development, +// warn about them ASAP rather than swallowing them by default. +var rerrorNames = /^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/; + +jQuery.Deferred.exceptionHook = function( error, stack ) { + + // Support: IE 8 - 9 only + // Console exists when dev tools are open, which can happen at any time + if ( window.console && window.console.warn && error && rerrorNames.test( error.name ) ) { + window.console.warn( "jQuery.Deferred exception: " + error.message, error.stack, stack ); + } +}; + + + + +jQuery.readyException = function( error ) { + window.setTimeout( function() { + throw error; + } ); +}; + + + + +// The deferred used on DOM ready +var readyList = jQuery.Deferred(); + +jQuery.fn.ready = function( fn ) { + + readyList + .then( fn ) + + // Wrap jQuery.readyException in a function so that the lookup + // happens at the time of error handling instead of callback + // registration. + .catch( function( error ) { + jQuery.readyException( error ); + } ); + + return this; +}; + +jQuery.extend( { + + // Is the DOM ready to be used? Set to true once it occurs. + isReady: false, + + // A counter to track how many items to wait for before + // the ready event fires. See #6781 + readyWait: 1, + + // Handle when the DOM is ready + ready: function( wait ) { + + // Abort if there are pending holds or we're already ready + if ( wait === true ? --jQuery.readyWait : jQuery.isReady ) { + return; + } + + // Remember that the DOM is ready + jQuery.isReady = true; + + // If a normal DOM Ready event fired, decrement, and wait if need be + if ( wait !== true && --jQuery.readyWait > 0 ) { + return; + } + + // If there are functions bound, to execute + readyList.resolveWith( document, [ jQuery ] ); + } +} ); + +jQuery.ready.then = readyList.then; + +// The ready event handler and self cleanup method +function completed() { + document.removeEventListener( "DOMContentLoaded", completed ); + window.removeEventListener( "load", completed ); + jQuery.ready(); +} + +// Catch cases where $(document).ready() is called +// after the browser event has already occurred. +// Support: IE <=9 - 10 only +// Older IE sometimes signals "interactive" too soon +if ( document.readyState === "complete" || + ( document.readyState !== "loading" && !document.documentElement.doScroll ) ) { + + // Handle it asynchronously to allow scripts the opportunity to delay ready + window.setTimeout( jQuery.ready ); + +} else { + + // Use the handy event callback + document.addEventListener( "DOMContentLoaded", completed ); + + // A fallback to window.onload, that will always work + window.addEventListener( "load", completed ); +} + + + + +// Multifunctional method to get and set values of a collection +// The value/s can optionally be executed if it's a function +var access = function( elems, fn, key, value, chainable, emptyGet, raw ) { + var i = 0, + len = elems.length, + bulk = key == null; + + // Sets many values + if ( toType( key ) === "object" ) { + chainable = true; + for ( i in key ) { + access( elems, fn, i, key[ i ], true, emptyGet, raw ); + } + + // Sets one value + } else if ( value !== undefined ) { + chainable = true; + + if ( !isFunction( value ) ) { + raw = true; + } + + if ( bulk ) { + + // Bulk operations run against the entire set + if ( raw ) { + fn.call( elems, value ); + fn = null; + + // ...except when executing function values + } else { + bulk = fn; + fn = function( elem, key, value ) { + return bulk.call( jQuery( elem ), value ); + }; + } + } + + if ( fn ) { + for ( ; i < len; i++ ) { + fn( + elems[ i ], key, raw ? + value : + value.call( elems[ i ], i, fn( elems[ i ], key ) ) + ); + } + } + } + + if ( chainable ) { + return elems; + } + + // Gets + if ( bulk ) { + return fn.call( elems ); + } + + return len ? fn( elems[ 0 ], key ) : emptyGet; +}; + + +// Matches dashed string for camelizing +var rmsPrefix = /^-ms-/, + rdashAlpha = /-([a-z])/g; + +// Used by camelCase as callback to replace() +function fcamelCase( all, letter ) { + return letter.toUpperCase(); +} + +// Convert dashed to camelCase; used by the css and data modules +// Support: IE <=9 - 11, Edge 12 - 15 +// Microsoft forgot to hump their vendor prefix (#9572) +function camelCase( string ) { + return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase ); +} +var acceptData = function( owner ) { + + // Accepts only: + // - Node + // - Node.ELEMENT_NODE + // - Node.DOCUMENT_NODE + // - Object + // - Any + return owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType ); +}; + + + + +function Data() { + this.expando = jQuery.expando + Data.uid++; +} + +Data.uid = 1; + +Data.prototype = { + + cache: function( owner ) { + + // Check if the owner object already has a cache + var value = owner[ this.expando ]; + + // If not, create one + if ( !value ) { + value = {}; + + // We can accept data for non-element nodes in modern browsers, + // but we should not, see #8335. + // Always return an empty object. + if ( acceptData( owner ) ) { + + // If it is a node unlikely to be stringify-ed or looped over + // use plain assignment + if ( owner.nodeType ) { + owner[ this.expando ] = value; + + // Otherwise secure it in a non-enumerable property + // configurable must be true to allow the property to be + // deleted when data is removed + } else { + Object.defineProperty( owner, this.expando, { + value: value, + configurable: true + } ); + } + } + } + + return value; + }, + set: function( owner, data, value ) { + var prop, + cache = this.cache( owner ); + + // Handle: [ owner, key, value ] args + // Always use camelCase key (gh-2257) + if ( typeof data === "string" ) { + cache[ camelCase( data ) ] = value; + + // Handle: [ owner, { properties } ] args + } else { + + // Copy the properties one-by-one to the cache object + for ( prop in data ) { + cache[ camelCase( prop ) ] = data[ prop ]; + } + } + return cache; + }, + get: function( owner, key ) { + return key === undefined ? + this.cache( owner ) : + + // Always use camelCase key (gh-2257) + owner[ this.expando ] && owner[ this.expando ][ camelCase( key ) ]; + }, + access: function( owner, key, value ) { + + // In cases where either: + // + // 1. No key was specified + // 2. A string key was specified, but no value provided + // + // Take the "read" path and allow the get method to determine + // which value to return, respectively either: + // + // 1. The entire cache object + // 2. The data stored at the key + // + if ( key === undefined || + ( ( key && typeof key === "string" ) && value === undefined ) ) { + + return this.get( owner, key ); + } + + // When the key is not a string, or both a key and value + // are specified, set or extend (existing objects) with either: + // + // 1. An object of properties + // 2. A key and value + // + this.set( owner, key, value ); + + // Since the "set" path can have two possible entry points + // return the expected data based on which path was taken[*] + return value !== undefined ? value : key; + }, + remove: function( owner, key ) { + var i, + cache = owner[ this.expando ]; + + if ( cache === undefined ) { + return; + } + + if ( key !== undefined ) { + + // Support array or space separated string of keys + if ( Array.isArray( key ) ) { + + // If key is an array of keys... + // We always set camelCase keys, so remove that. + key = key.map( camelCase ); + } else { + key = camelCase( key ); + + // If a key with the spaces exists, use it. + // Otherwise, create an array by matching non-whitespace + key = key in cache ? + [ key ] : + ( key.match( rnothtmlwhite ) || [] ); + } + + i = key.length; + + while ( i-- ) { + delete cache[ key[ i ] ]; + } + } + + // Remove the expando if there's no more data + if ( key === undefined || jQuery.isEmptyObject( cache ) ) { + + // Support: Chrome <=35 - 45 + // Webkit & Blink performance suffers when deleting properties + // from DOM nodes, so set to undefined instead + // https://bugs.chromium.org/p/chromium/issues/detail?id=378607 (bug restricted) + if ( owner.nodeType ) { + owner[ this.expando ] = undefined; + } else { + delete owner[ this.expando ]; + } + } + }, + hasData: function( owner ) { + var cache = owner[ this.expando ]; + return cache !== undefined && !jQuery.isEmptyObject( cache ); + } +}; +var dataPriv = new Data(); + +var dataUser = new Data(); + + + +// Implementation Summary +// +// 1. Enforce API surface and semantic compatibility with 1.9.x branch +// 2. Improve the module's maintainability by reducing the storage +// paths to a single mechanism. +// 3. Use the same single mechanism to support "private" and "user" data. +// 4. _Never_ expose "private" data to user code (TODO: Drop _data, _removeData) +// 5. Avoid exposing implementation details on user objects (eg. expando properties) +// 6. Provide a clear path for implementation upgrade to WeakMap in 2014 + +var rbrace = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/, + rmultiDash = /[A-Z]/g; + +function getData( data ) { + if ( data === "true" ) { + return true; + } + + if ( data === "false" ) { + return false; + } + + if ( data === "null" ) { + return null; + } + + // Only convert to a number if it doesn't change the string + if ( data === +data + "" ) { + return +data; + } + + if ( rbrace.test( data ) ) { + return JSON.parse( data ); + } + + return data; +} + +function dataAttr( elem, key, data ) { + var name; + + // If nothing was found internally, try to fetch any + // data from the HTML5 data-* attribute + if ( data === undefined && elem.nodeType === 1 ) { + name = "data-" + key.replace( rmultiDash, "-$&" ).toLowerCase(); + data = elem.getAttribute( name ); + + if ( typeof data === "string" ) { + try { + data = getData( data ); + } catch ( e ) {} + + // Make sure we set the data so it isn't changed later + dataUser.set( elem, key, data ); + } else { + data = undefined; + } + } + return data; +} + +jQuery.extend( { + hasData: function( elem ) { + return dataUser.hasData( elem ) || dataPriv.hasData( elem ); + }, + + data: function( elem, name, data ) { + return dataUser.access( elem, name, data ); + }, + + removeData: function( elem, name ) { + dataUser.remove( elem, name ); + }, + + // TODO: Now that all calls to _data and _removeData have been replaced + // with direct calls to dataPriv methods, these can be deprecated. + _data: function( elem, name, data ) { + return dataPriv.access( elem, name, data ); + }, + + _removeData: function( elem, name ) { + dataPriv.remove( elem, name ); + } +} ); + +jQuery.fn.extend( { + data: function( key, value ) { + var i, name, data, + elem = this[ 0 ], + attrs = elem && elem.attributes; + + // Gets all values + if ( key === undefined ) { + if ( this.length ) { + data = dataUser.get( elem ); + + if ( elem.nodeType === 1 && !dataPriv.get( elem, "hasDataAttrs" ) ) { + i = attrs.length; + while ( i-- ) { + + // Support: IE 11 only + // The attrs elements can be null (#14894) + if ( attrs[ i ] ) { + name = attrs[ i ].name; + if ( name.indexOf( "data-" ) === 0 ) { + name = camelCase( name.slice( 5 ) ); + dataAttr( elem, name, data[ name ] ); + } + } + } + dataPriv.set( elem, "hasDataAttrs", true ); + } + } + + return data; + } + + // Sets multiple values + if ( typeof key === "object" ) { + return this.each( function() { + dataUser.set( this, key ); + } ); + } + + return access( this, function( value ) { + var data; + + // The calling jQuery object (element matches) is not empty + // (and therefore has an element appears at this[ 0 ]) and the + // `value` parameter was not undefined. An empty jQuery object + // will result in `undefined` for elem = this[ 0 ] which will + // throw an exception if an attempt to read a data cache is made. + if ( elem && value === undefined ) { + + // Attempt to get data from the cache + // The key will always be camelCased in Data + data = dataUser.get( elem, key ); + if ( data !== undefined ) { + return data; + } + + // Attempt to "discover" the data in + // HTML5 custom data-* attrs + data = dataAttr( elem, key ); + if ( data !== undefined ) { + return data; + } + + // We tried really hard, but the data doesn't exist. + return; + } + + // Set the data... + this.each( function() { + + // We always store the camelCased key + dataUser.set( this, key, value ); + } ); + }, null, value, arguments.length > 1, null, true ); + }, + + removeData: function( key ) { + return this.each( function() { + dataUser.remove( this, key ); + } ); + } +} ); + + +jQuery.extend( { + queue: function( elem, type, data ) { + var queue; + + if ( elem ) { + type = ( type || "fx" ) + "queue"; + queue = dataPriv.get( elem, type ); + + // Speed up dequeue by getting out quickly if this is just a lookup + if ( data ) { + if ( !queue || Array.isArray( data ) ) { + queue = dataPriv.access( elem, type, jQuery.makeArray( data ) ); + } else { + queue.push( data ); + } + } + return queue || []; + } + }, + + dequeue: function( elem, type ) { + type = type || "fx"; + + var queue = jQuery.queue( elem, type ), + startLength = queue.length, + fn = queue.shift(), + hooks = jQuery._queueHooks( elem, type ), + next = function() { + jQuery.dequeue( elem, type ); + }; + + // If the fx queue is dequeued, always remove the progress sentinel + if ( fn === "inprogress" ) { + fn = queue.shift(); + startLength--; + } + + if ( fn ) { + + // Add a progress sentinel to prevent the fx queue from being + // automatically dequeued + if ( type === "fx" ) { + queue.unshift( "inprogress" ); + } + + // Clear up the last queue stop function + delete hooks.stop; + fn.call( elem, next, hooks ); + } + + if ( !startLength && hooks ) { + hooks.empty.fire(); + } + }, + + // Not public - generate a queueHooks object, or return the current one + _queueHooks: function( elem, type ) { + var key = type + "queueHooks"; + return dataPriv.get( elem, key ) || dataPriv.access( elem, key, { + empty: jQuery.Callbacks( "once memory" ).add( function() { + dataPriv.remove( elem, [ type + "queue", key ] ); + } ) + } ); + } +} ); + +jQuery.fn.extend( { + queue: function( type, data ) { + var setter = 2; + + if ( typeof type !== "string" ) { + data = type; + type = "fx"; + setter--; + } + + if ( arguments.length < setter ) { + return jQuery.queue( this[ 0 ], type ); + } + + return data === undefined ? + this : + this.each( function() { + var queue = jQuery.queue( this, type, data ); + + // Ensure a hooks for this queue + jQuery._queueHooks( this, type ); + + if ( type === "fx" && queue[ 0 ] !== "inprogress" ) { + jQuery.dequeue( this, type ); + } + } ); + }, + dequeue: function( type ) { + return this.each( function() { + jQuery.dequeue( this, type ); + } ); + }, + clearQueue: function( type ) { + return this.queue( type || "fx", [] ); + }, + + // Get a promise resolved when queues of a certain type + // are emptied (fx is the type by default) + promise: function( type, obj ) { + var tmp, + count = 1, + defer = jQuery.Deferred(), + elements = this, + i = this.length, + resolve = function() { + if ( !( --count ) ) { + defer.resolveWith( elements, [ elements ] ); + } + }; + + if ( typeof type !== "string" ) { + obj = type; + type = undefined; + } + type = type || "fx"; + + while ( i-- ) { + tmp = dataPriv.get( elements[ i ], type + "queueHooks" ); + if ( tmp && tmp.empty ) { + count++; + tmp.empty.add( resolve ); + } + } + resolve(); + return defer.promise( obj ); + } +} ); +var pnum = ( /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/ ).source; + +var rcssNum = new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" ); + + +var cssExpand = [ "Top", "Right", "Bottom", "Left" ]; + +var documentElement = document.documentElement; + + + + var isAttached = function( elem ) { + return jQuery.contains( elem.ownerDocument, elem ); + }, + composed = { composed: true }; + + // Support: IE 9 - 11+, Edge 12 - 18+, iOS 10.0 - 10.2 only + // Check attachment across shadow DOM boundaries when possible (gh-3504) + // Support: iOS 10.0-10.2 only + // Early iOS 10 versions support `attachShadow` but not `getRootNode`, + // leading to errors. We need to check for `getRootNode`. + if ( documentElement.getRootNode ) { + isAttached = function( elem ) { + return jQuery.contains( elem.ownerDocument, elem ) || + elem.getRootNode( composed ) === elem.ownerDocument; + }; + } +var isHiddenWithinTree = function( elem, el ) { + + // isHiddenWithinTree might be called from jQuery#filter function; + // in that case, element will be second argument + elem = el || elem; + + // Inline style trumps all + return elem.style.display === "none" || + elem.style.display === "" && + + // Otherwise, check computed style + // Support: Firefox <=43 - 45 + // Disconnected elements can have computed display: none, so first confirm that elem is + // in the document. + isAttached( elem ) && + + jQuery.css( elem, "display" ) === "none"; + }; + +var swap = function( elem, options, callback, args ) { + var ret, name, + old = {}; + + // Remember the old values, and insert the new ones + for ( name in options ) { + old[ name ] = elem.style[ name ]; + elem.style[ name ] = options[ name ]; + } + + ret = callback.apply( elem, args || [] ); + + // Revert the old values + for ( name in options ) { + elem.style[ name ] = old[ name ]; + } + + return ret; +}; + + + + +function adjustCSS( elem, prop, valueParts, tween ) { + var adjusted, scale, + maxIterations = 20, + currentValue = tween ? + function() { + return tween.cur(); + } : + function() { + return jQuery.css( elem, prop, "" ); + }, + initial = currentValue(), + unit = valueParts && valueParts[ 3 ] || ( jQuery.cssNumber[ prop ] ? "" : "px" ), + + // Starting value computation is required for potential unit mismatches + initialInUnit = elem.nodeType && + ( jQuery.cssNumber[ prop ] || unit !== "px" && +initial ) && + rcssNum.exec( jQuery.css( elem, prop ) ); + + if ( initialInUnit && initialInUnit[ 3 ] !== unit ) { + + // Support: Firefox <=54 + // Halve the iteration target value to prevent interference from CSS upper bounds (gh-2144) + initial = initial / 2; + + // Trust units reported by jQuery.css + unit = unit || initialInUnit[ 3 ]; + + // Iteratively approximate from a nonzero starting point + initialInUnit = +initial || 1; + + while ( maxIterations-- ) { + + // Evaluate and update our best guess (doubling guesses that zero out). + // Finish if the scale equals or crosses 1 (making the old*new product non-positive). + jQuery.style( elem, prop, initialInUnit + unit ); + if ( ( 1 - scale ) * ( 1 - ( scale = currentValue() / initial || 0.5 ) ) <= 0 ) { + maxIterations = 0; + } + initialInUnit = initialInUnit / scale; + + } + + initialInUnit = initialInUnit * 2; + jQuery.style( elem, prop, initialInUnit + unit ); + + // Make sure we update the tween properties later on + valueParts = valueParts || []; + } + + if ( valueParts ) { + initialInUnit = +initialInUnit || +initial || 0; + + // Apply relative offset (+=/-=) if specified + adjusted = valueParts[ 1 ] ? + initialInUnit + ( valueParts[ 1 ] + 1 ) * valueParts[ 2 ] : + +valueParts[ 2 ]; + if ( tween ) { + tween.unit = unit; + tween.start = initialInUnit; + tween.end = adjusted; + } + } + return adjusted; +} + + +var defaultDisplayMap = {}; + +function getDefaultDisplay( elem ) { + var temp, + doc = elem.ownerDocument, + nodeName = elem.nodeName, + display = defaultDisplayMap[ nodeName ]; + + if ( display ) { + return display; + } + + temp = doc.body.appendChild( doc.createElement( nodeName ) ); + display = jQuery.css( temp, "display" ); + + temp.parentNode.removeChild( temp ); + + if ( display === "none" ) { + display = "block"; + } + defaultDisplayMap[ nodeName ] = display; + + return display; +} + +function showHide( elements, show ) { + var display, elem, + values = [], + index = 0, + length = elements.length; + + // Determine new display value for elements that need to change + for ( ; index < length; index++ ) { + elem = elements[ index ]; + if ( !elem.style ) { + continue; + } + + display = elem.style.display; + if ( show ) { + + // Since we force visibility upon cascade-hidden elements, an immediate (and slow) + // check is required in this first loop unless we have a nonempty display value (either + // inline or about-to-be-restored) + if ( display === "none" ) { + values[ index ] = dataPriv.get( elem, "display" ) || null; + if ( !values[ index ] ) { + elem.style.display = ""; + } + } + if ( elem.style.display === "" && isHiddenWithinTree( elem ) ) { + values[ index ] = getDefaultDisplay( elem ); + } + } else { + if ( display !== "none" ) { + values[ index ] = "none"; + + // Remember what we're overwriting + dataPriv.set( elem, "display", display ); + } + } + } + + // Set the display of the elements in a second loop to avoid constant reflow + for ( index = 0; index < length; index++ ) { + if ( values[ index ] != null ) { + elements[ index ].style.display = values[ index ]; + } + } + + return elements; +} + +jQuery.fn.extend( { + show: function() { + return showHide( this, true ); + }, + hide: function() { + return showHide( this ); + }, + toggle: function( state ) { + if ( typeof state === "boolean" ) { + return state ? this.show() : this.hide(); + } + + return this.each( function() { + if ( isHiddenWithinTree( this ) ) { + jQuery( this ).show(); + } else { + jQuery( this ).hide(); + } + } ); + } +} ); +var rcheckableType = ( /^(?:checkbox|radio)$/i ); + +var rtagName = ( /<([a-z][^\/\0>\x20\t\r\n\f]*)/i ); + +var rscriptType = ( /^$|^module$|\/(?:java|ecma)script/i ); + + + +// We have to close these tags to support XHTML (#13200) +var wrapMap = { + + // Support: IE <=9 only + option: [ 1, "" ], + + // XHTML parsers do not magically insert elements in the + // same way that tag soup parsers do. So we cannot shorten + // this by omitting or other required elements. + thead: [ 1, "", "
" ], + col: [ 2, "", "
" ], + tr: [ 2, "", "
" ], + td: [ 3, "", "
" ], + + _default: [ 0, "", "" ] +}; + +// Support: IE <=9 only +wrapMap.optgroup = wrapMap.option; + +wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead; +wrapMap.th = wrapMap.td; + + +function getAll( context, tag ) { + + // Support: IE <=9 - 11 only + // Use typeof to avoid zero-argument method invocation on host objects (#15151) + var ret; + + if ( typeof context.getElementsByTagName !== "undefined" ) { + ret = context.getElementsByTagName( tag || "*" ); + + } else if ( typeof context.querySelectorAll !== "undefined" ) { + ret = context.querySelectorAll( tag || "*" ); + + } else { + ret = []; + } + + if ( tag === undefined || tag && nodeName( context, tag ) ) { + return jQuery.merge( [ context ], ret ); + } + + return ret; +} + + +// Mark scripts as having already been evaluated +function setGlobalEval( elems, refElements ) { + var i = 0, + l = elems.length; + + for ( ; i < l; i++ ) { + dataPriv.set( + elems[ i ], + "globalEval", + !refElements || dataPriv.get( refElements[ i ], "globalEval" ) + ); + } +} + + +var rhtml = /<|&#?\w+;/; + +function buildFragment( elems, context, scripts, selection, ignored ) { + var elem, tmp, tag, wrap, attached, j, + fragment = context.createDocumentFragment(), + nodes = [], + i = 0, + l = elems.length; + + for ( ; i < l; i++ ) { + elem = elems[ i ]; + + if ( elem || elem === 0 ) { + + // Add nodes directly + if ( toType( elem ) === "object" ) { + + // Support: Android <=4.0 only, PhantomJS 1 only + // push.apply(_, arraylike) throws on ancient WebKit + jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem ); + + // Convert non-html into a text node + } else if ( !rhtml.test( elem ) ) { + nodes.push( context.createTextNode( elem ) ); + + // Convert html into DOM nodes + } else { + tmp = tmp || fragment.appendChild( context.createElement( "div" ) ); + + // Deserialize a standard representation + tag = ( rtagName.exec( elem ) || [ "", "" ] )[ 1 ].toLowerCase(); + wrap = wrapMap[ tag ] || wrapMap._default; + tmp.innerHTML = wrap[ 1 ] + jQuery.htmlPrefilter( elem ) + wrap[ 2 ]; + + // Descend through wrappers to the right content + j = wrap[ 0 ]; + while ( j-- ) { + tmp = tmp.lastChild; + } + + // Support: Android <=4.0 only, PhantomJS 1 only + // push.apply(_, arraylike) throws on ancient WebKit + jQuery.merge( nodes, tmp.childNodes ); + + // Remember the top-level container + tmp = fragment.firstChild; + + // Ensure the created nodes are orphaned (#12392) + tmp.textContent = ""; + } + } + } + + // Remove wrapper from fragment + fragment.textContent = ""; + + i = 0; + while ( ( elem = nodes[ i++ ] ) ) { + + // Skip elements already in the context collection (trac-4087) + if ( selection && jQuery.inArray( elem, selection ) > -1 ) { + if ( ignored ) { + ignored.push( elem ); + } + continue; + } + + attached = isAttached( elem ); + + // Append to fragment + tmp = getAll( fragment.appendChild( elem ), "script" ); + + // Preserve script evaluation history + if ( attached ) { + setGlobalEval( tmp ); + } + + // Capture executables + if ( scripts ) { + j = 0; + while ( ( elem = tmp[ j++ ] ) ) { + if ( rscriptType.test( elem.type || "" ) ) { + scripts.push( elem ); + } + } + } + } + + return fragment; +} + + +( function() { + var fragment = document.createDocumentFragment(), + div = fragment.appendChild( document.createElement( "div" ) ), + input = document.createElement( "input" ); + + // Support: Android 4.0 - 4.3 only + // Check state lost if the name is set (#11217) + // Support: Windows Web Apps (WWA) + // `name` and `type` must use .setAttribute for WWA (#14901) + input.setAttribute( "type", "radio" ); + input.setAttribute( "checked", "checked" ); + input.setAttribute( "name", "t" ); + + div.appendChild( input ); + + // Support: Android <=4.1 only + // Older WebKit doesn't clone checked state correctly in fragments + support.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked; + + // Support: IE <=11 only + // Make sure textarea (and checkbox) defaultValue is properly cloned + div.innerHTML = ""; + support.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue; +} )(); + + +var + rkeyEvent = /^key/, + rmouseEvent = /^(?:mouse|pointer|contextmenu|drag|drop)|click/, + rtypenamespace = /^([^.]*)(?:\.(.+)|)/; + +function returnTrue() { + return true; +} + +function returnFalse() { + return false; +} + +// Support: IE <=9 - 11+ +// focus() and blur() are asynchronous, except when they are no-op. +// So expect focus to be synchronous when the element is already active, +// and blur to be synchronous when the element is not already active. +// (focus and blur are always synchronous in other supported browsers, +// this just defines when we can count on it). +function expectSync( elem, type ) { + return ( elem === safeActiveElement() ) === ( type === "focus" ); +} + +// Support: IE <=9 only +// Accessing document.activeElement can throw unexpectedly +// https://bugs.jquery.com/ticket/13393 +function safeActiveElement() { + try { + return document.activeElement; + } catch ( err ) { } +} + +function on( elem, types, selector, data, fn, one ) { + var origFn, type; + + // Types can be a map of types/handlers + if ( typeof types === "object" ) { + + // ( types-Object, selector, data ) + if ( typeof selector !== "string" ) { + + // ( types-Object, data ) + data = data || selector; + selector = undefined; + } + for ( type in types ) { + on( elem, type, selector, data, types[ type ], one ); + } + return elem; + } + + if ( data == null && fn == null ) { + + // ( types, fn ) + fn = selector; + data = selector = undefined; + } else if ( fn == null ) { + if ( typeof selector === "string" ) { + + // ( types, selector, fn ) + fn = data; + data = undefined; + } else { + + // ( types, data, fn ) + fn = data; + data = selector; + selector = undefined; + } + } + if ( fn === false ) { + fn = returnFalse; + } else if ( !fn ) { + return elem; + } + + if ( one === 1 ) { + origFn = fn; + fn = function( event ) { + + // Can use an empty set, since event contains the info + jQuery().off( event ); + return origFn.apply( this, arguments ); + }; + + // Use same guid so caller can remove using origFn + fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ ); + } + return elem.each( function() { + jQuery.event.add( this, types, fn, data, selector ); + } ); +} + +/* + * Helper functions for managing events -- not part of the public interface. + * Props to Dean Edwards' addEvent library for many of the ideas. + */ +jQuery.event = { + + global: {}, + + add: function( elem, types, handler, data, selector ) { + + var handleObjIn, eventHandle, tmp, + events, t, handleObj, + special, handlers, type, namespaces, origType, + elemData = dataPriv.get( elem ); + + // Don't attach events to noData or text/comment nodes (but allow plain objects) + if ( !elemData ) { + return; + } + + // Caller can pass in an object of custom data in lieu of the handler + if ( handler.handler ) { + handleObjIn = handler; + handler = handleObjIn.handler; + selector = handleObjIn.selector; + } + + // Ensure that invalid selectors throw exceptions at attach time + // Evaluate against documentElement in case elem is a non-element node (e.g., document) + if ( selector ) { + jQuery.find.matchesSelector( documentElement, selector ); + } + + // Make sure that the handler has a unique ID, used to find/remove it later + if ( !handler.guid ) { + handler.guid = jQuery.guid++; + } + + // Init the element's event structure and main handler, if this is the first + if ( !( events = elemData.events ) ) { + events = elemData.events = {}; + } + if ( !( eventHandle = elemData.handle ) ) { + eventHandle = elemData.handle = function( e ) { + + // Discard the second event of a jQuery.event.trigger() and + // when an event is called after a page has unloaded + return typeof jQuery !== "undefined" && jQuery.event.triggered !== e.type ? + jQuery.event.dispatch.apply( elem, arguments ) : undefined; + }; + } + + // Handle multiple events separated by a space + types = ( types || "" ).match( rnothtmlwhite ) || [ "" ]; + t = types.length; + while ( t-- ) { + tmp = rtypenamespace.exec( types[ t ] ) || []; + type = origType = tmp[ 1 ]; + namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort(); + + // There *must* be a type, no attaching namespace-only handlers + if ( !type ) { + continue; + } + + // If event changes its type, use the special event handlers for the changed type + special = jQuery.event.special[ type ] || {}; + + // If selector defined, determine special event api type, otherwise given type + type = ( selector ? special.delegateType : special.bindType ) || type; + + // Update special based on newly reset type + special = jQuery.event.special[ type ] || {}; + + // handleObj is passed to all event handlers + handleObj = jQuery.extend( { + type: type, + origType: origType, + data: data, + handler: handler, + guid: handler.guid, + selector: selector, + needsContext: selector && jQuery.expr.match.needsContext.test( selector ), + namespace: namespaces.join( "." ) + }, handleObjIn ); + + // Init the event handler queue if we're the first + if ( !( handlers = events[ type ] ) ) { + handlers = events[ type ] = []; + handlers.delegateCount = 0; + + // Only use addEventListener if the special events handler returns false + if ( !special.setup || + special.setup.call( elem, data, namespaces, eventHandle ) === false ) { + + if ( elem.addEventListener ) { + elem.addEventListener( type, eventHandle ); + } + } + } + + if ( special.add ) { + special.add.call( elem, handleObj ); + + if ( !handleObj.handler.guid ) { + handleObj.handler.guid = handler.guid; + } + } + + // Add to the element's handler list, delegates in front + if ( selector ) { + handlers.splice( handlers.delegateCount++, 0, handleObj ); + } else { + handlers.push( handleObj ); + } + + // Keep track of which events have ever been used, for event optimization + jQuery.event.global[ type ] = true; + } + + }, + + // Detach an event or set of events from an element + remove: function( elem, types, handler, selector, mappedTypes ) { + + var j, origCount, tmp, + events, t, handleObj, + special, handlers, type, namespaces, origType, + elemData = dataPriv.hasData( elem ) && dataPriv.get( elem ); + + if ( !elemData || !( events = elemData.events ) ) { + return; + } + + // Once for each type.namespace in types; type may be omitted + types = ( types || "" ).match( rnothtmlwhite ) || [ "" ]; + t = types.length; + while ( t-- ) { + tmp = rtypenamespace.exec( types[ t ] ) || []; + type = origType = tmp[ 1 ]; + namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort(); + + // Unbind all events (on this namespace, if provided) for the element + if ( !type ) { + for ( type in events ) { + jQuery.event.remove( elem, type + types[ t ], handler, selector, true ); + } + continue; + } + + special = jQuery.event.special[ type ] || {}; + type = ( selector ? special.delegateType : special.bindType ) || type; + handlers = events[ type ] || []; + tmp = tmp[ 2 ] && + new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ); + + // Remove matching events + origCount = j = handlers.length; + while ( j-- ) { + handleObj = handlers[ j ]; + + if ( ( mappedTypes || origType === handleObj.origType ) && + ( !handler || handler.guid === handleObj.guid ) && + ( !tmp || tmp.test( handleObj.namespace ) ) && + ( !selector || selector === handleObj.selector || + selector === "**" && handleObj.selector ) ) { + handlers.splice( j, 1 ); + + if ( handleObj.selector ) { + handlers.delegateCount--; + } + if ( special.remove ) { + special.remove.call( elem, handleObj ); + } + } + } + + // Remove generic event handler if we removed something and no more handlers exist + // (avoids potential for endless recursion during removal of special event handlers) + if ( origCount && !handlers.length ) { + if ( !special.teardown || + special.teardown.call( elem, namespaces, elemData.handle ) === false ) { + + jQuery.removeEvent( elem, type, elemData.handle ); + } + + delete events[ type ]; + } + } + + // Remove data and the expando if it's no longer used + if ( jQuery.isEmptyObject( events ) ) { + dataPriv.remove( elem, "handle events" ); + } + }, + + dispatch: function( nativeEvent ) { + + // Make a writable jQuery.Event from the native event object + var event = jQuery.event.fix( nativeEvent ); + + var i, j, ret, matched, handleObj, handlerQueue, + args = new Array( arguments.length ), + handlers = ( dataPriv.get( this, "events" ) || {} )[ event.type ] || [], + special = jQuery.event.special[ event.type ] || {}; + + // Use the fix-ed jQuery.Event rather than the (read-only) native event + args[ 0 ] = event; + + for ( i = 1; i < arguments.length; i++ ) { + args[ i ] = arguments[ i ]; + } + + event.delegateTarget = this; + + // Call the preDispatch hook for the mapped type, and let it bail if desired + if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) { + return; + } + + // Determine handlers + handlerQueue = jQuery.event.handlers.call( this, event, handlers ); + + // Run delegates first; they may want to stop propagation beneath us + i = 0; + while ( ( matched = handlerQueue[ i++ ] ) && !event.isPropagationStopped() ) { + event.currentTarget = matched.elem; + + j = 0; + while ( ( handleObj = matched.handlers[ j++ ] ) && + !event.isImmediatePropagationStopped() ) { + + // If the event is namespaced, then each handler is only invoked if it is + // specially universal or its namespaces are a superset of the event's. + if ( !event.rnamespace || handleObj.namespace === false || + event.rnamespace.test( handleObj.namespace ) ) { + + event.handleObj = handleObj; + event.data = handleObj.data; + + ret = ( ( jQuery.event.special[ handleObj.origType ] || {} ).handle || + handleObj.handler ).apply( matched.elem, args ); + + if ( ret !== undefined ) { + if ( ( event.result = ret ) === false ) { + event.preventDefault(); + event.stopPropagation(); + } + } + } + } + } + + // Call the postDispatch hook for the mapped type + if ( special.postDispatch ) { + special.postDispatch.call( this, event ); + } + + return event.result; + }, + + handlers: function( event, handlers ) { + var i, handleObj, sel, matchedHandlers, matchedSelectors, + handlerQueue = [], + delegateCount = handlers.delegateCount, + cur = event.target; + + // Find delegate handlers + if ( delegateCount && + + // Support: IE <=9 + // Black-hole SVG instance trees (trac-13180) + cur.nodeType && + + // Support: Firefox <=42 + // Suppress spec-violating clicks indicating a non-primary pointer button (trac-3861) + // https://www.w3.org/TR/DOM-Level-3-Events/#event-type-click + // Support: IE 11 only + // ...but not arrow key "clicks" of radio inputs, which can have `button` -1 (gh-2343) + !( event.type === "click" && event.button >= 1 ) ) { + + for ( ; cur !== this; cur = cur.parentNode || this ) { + + // Don't check non-elements (#13208) + // Don't process clicks on disabled elements (#6911, #8165, #11382, #11764) + if ( cur.nodeType === 1 && !( event.type === "click" && cur.disabled === true ) ) { + matchedHandlers = []; + matchedSelectors = {}; + for ( i = 0; i < delegateCount; i++ ) { + handleObj = handlers[ i ]; + + // Don't conflict with Object.prototype properties (#13203) + sel = handleObj.selector + " "; + + if ( matchedSelectors[ sel ] === undefined ) { + matchedSelectors[ sel ] = handleObj.needsContext ? + jQuery( sel, this ).index( cur ) > -1 : + jQuery.find( sel, this, null, [ cur ] ).length; + } + if ( matchedSelectors[ sel ] ) { + matchedHandlers.push( handleObj ); + } + } + if ( matchedHandlers.length ) { + handlerQueue.push( { elem: cur, handlers: matchedHandlers } ); + } + } + } + } + + // Add the remaining (directly-bound) handlers + cur = this; + if ( delegateCount < handlers.length ) { + handlerQueue.push( { elem: cur, handlers: handlers.slice( delegateCount ) } ); + } + + return handlerQueue; + }, + + addProp: function( name, hook ) { + Object.defineProperty( jQuery.Event.prototype, name, { + enumerable: true, + configurable: true, + + get: isFunction( hook ) ? + function() { + if ( this.originalEvent ) { + return hook( this.originalEvent ); + } + } : + function() { + if ( this.originalEvent ) { + return this.originalEvent[ name ]; + } + }, + + set: function( value ) { + Object.defineProperty( this, name, { + enumerable: true, + configurable: true, + writable: true, + value: value + } ); + } + } ); + }, + + fix: function( originalEvent ) { + return originalEvent[ jQuery.expando ] ? + originalEvent : + new jQuery.Event( originalEvent ); + }, + + special: { + load: { + + // Prevent triggered image.load events from bubbling to window.load + noBubble: true + }, + click: { + + // Utilize native event to ensure correct state for checkable inputs + setup: function( data ) { + + // For mutual compressibility with _default, replace `this` access with a local var. + // `|| data` is dead code meant only to preserve the variable through minification. + var el = this || data; + + // Claim the first handler + if ( rcheckableType.test( el.type ) && + el.click && nodeName( el, "input" ) ) { + + // dataPriv.set( el, "click", ... ) + leverageNative( el, "click", returnTrue ); + } + + // Return false to allow normal processing in the caller + return false; + }, + trigger: function( data ) { + + // For mutual compressibility with _default, replace `this` access with a local var. + // `|| data` is dead code meant only to preserve the variable through minification. + var el = this || data; + + // Force setup before triggering a click + if ( rcheckableType.test( el.type ) && + el.click && nodeName( el, "input" ) ) { + + leverageNative( el, "click" ); + } + + // Return non-false to allow normal event-path propagation + return true; + }, + + // For cross-browser consistency, suppress native .click() on links + // Also prevent it if we're currently inside a leveraged native-event stack + _default: function( event ) { + var target = event.target; + return rcheckableType.test( target.type ) && + target.click && nodeName( target, "input" ) && + dataPriv.get( target, "click" ) || + nodeName( target, "a" ); + } + }, + + beforeunload: { + postDispatch: function( event ) { + + // Support: Firefox 20+ + // Firefox doesn't alert if the returnValue field is not set. + if ( event.result !== undefined && event.originalEvent ) { + event.originalEvent.returnValue = event.result; + } + } + } + } +}; + +// Ensure the presence of an event listener that handles manually-triggered +// synthetic events by interrupting progress until reinvoked in response to +// *native* events that it fires directly, ensuring that state changes have +// already occurred before other listeners are invoked. +function leverageNative( el, type, expectSync ) { + + // Missing expectSync indicates a trigger call, which must force setup through jQuery.event.add + if ( !expectSync ) { + if ( dataPriv.get( el, type ) === undefined ) { + jQuery.event.add( el, type, returnTrue ); + } + return; + } + + // Register the controller as a special universal handler for all event namespaces + dataPriv.set( el, type, false ); + jQuery.event.add( el, type, { + namespace: false, + handler: function( event ) { + var notAsync, result, + saved = dataPriv.get( this, type ); + + if ( ( event.isTrigger & 1 ) && this[ type ] ) { + + // Interrupt processing of the outer synthetic .trigger()ed event + // Saved data should be false in such cases, but might be a leftover capture object + // from an async native handler (gh-4350) + if ( !saved.length ) { + + // Store arguments for use when handling the inner native event + // There will always be at least one argument (an event object), so this array + // will not be confused with a leftover capture object. + saved = slice.call( arguments ); + dataPriv.set( this, type, saved ); + + // Trigger the native event and capture its result + // Support: IE <=9 - 11+ + // focus() and blur() are asynchronous + notAsync = expectSync( this, type ); + this[ type ](); + result = dataPriv.get( this, type ); + if ( saved !== result || notAsync ) { + dataPriv.set( this, type, false ); + } else { + result = {}; + } + if ( saved !== result ) { + + // Cancel the outer synthetic event + event.stopImmediatePropagation(); + event.preventDefault(); + return result.value; + } + + // If this is an inner synthetic event for an event with a bubbling surrogate + // (focus or blur), assume that the surrogate already propagated from triggering the + // native event and prevent that from happening again here. + // This technically gets the ordering wrong w.r.t. to `.trigger()` (in which the + // bubbling surrogate propagates *after* the non-bubbling base), but that seems + // less bad than duplication. + } else if ( ( jQuery.event.special[ type ] || {} ).delegateType ) { + event.stopPropagation(); + } + + // If this is a native event triggered above, everything is now in order + // Fire an inner synthetic event with the original arguments + } else if ( saved.length ) { + + // ...and capture the result + dataPriv.set( this, type, { + value: jQuery.event.trigger( + + // Support: IE <=9 - 11+ + // Extend with the prototype to reset the above stopImmediatePropagation() + jQuery.extend( saved[ 0 ], jQuery.Event.prototype ), + saved.slice( 1 ), + this + ) + } ); + + // Abort handling of the native event + event.stopImmediatePropagation(); + } + } + } ); +} + +jQuery.removeEvent = function( elem, type, handle ) { + + // This "if" is needed for plain objects + if ( elem.removeEventListener ) { + elem.removeEventListener( type, handle ); + } +}; + +jQuery.Event = function( src, props ) { + + // Allow instantiation without the 'new' keyword + if ( !( this instanceof jQuery.Event ) ) { + return new jQuery.Event( src, props ); + } + + // Event object + if ( src && src.type ) { + this.originalEvent = src; + this.type = src.type; + + // Events bubbling up the document may have been marked as prevented + // by a handler lower down the tree; reflect the correct value. + this.isDefaultPrevented = src.defaultPrevented || + src.defaultPrevented === undefined && + + // Support: Android <=2.3 only + src.returnValue === false ? + returnTrue : + returnFalse; + + // Create target properties + // Support: Safari <=6 - 7 only + // Target should not be a text node (#504, #13143) + this.target = ( src.target && src.target.nodeType === 3 ) ? + src.target.parentNode : + src.target; + + this.currentTarget = src.currentTarget; + this.relatedTarget = src.relatedTarget; + + // Event type + } else { + this.type = src; + } + + // Put explicitly provided properties onto the event object + if ( props ) { + jQuery.extend( this, props ); + } + + // Create a timestamp if incoming event doesn't have one + this.timeStamp = src && src.timeStamp || Date.now(); + + // Mark it as fixed + this[ jQuery.expando ] = true; +}; + +// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding +// https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html +jQuery.Event.prototype = { + constructor: jQuery.Event, + isDefaultPrevented: returnFalse, + isPropagationStopped: returnFalse, + isImmediatePropagationStopped: returnFalse, + isSimulated: false, + + preventDefault: function() { + var e = this.originalEvent; + + this.isDefaultPrevented = returnTrue; + + if ( e && !this.isSimulated ) { + e.preventDefault(); + } + }, + stopPropagation: function() { + var e = this.originalEvent; + + this.isPropagationStopped = returnTrue; + + if ( e && !this.isSimulated ) { + e.stopPropagation(); + } + }, + stopImmediatePropagation: function() { + var e = this.originalEvent; + + this.isImmediatePropagationStopped = returnTrue; + + if ( e && !this.isSimulated ) { + e.stopImmediatePropagation(); + } + + this.stopPropagation(); + } +}; + +// Includes all common event props including KeyEvent and MouseEvent specific props +jQuery.each( { + altKey: true, + bubbles: true, + cancelable: true, + changedTouches: true, + ctrlKey: true, + detail: true, + eventPhase: true, + metaKey: true, + pageX: true, + pageY: true, + shiftKey: true, + view: true, + "char": true, + code: true, + charCode: true, + key: true, + keyCode: true, + button: true, + buttons: true, + clientX: true, + clientY: true, + offsetX: true, + offsetY: true, + pointerId: true, + pointerType: true, + screenX: true, + screenY: true, + targetTouches: true, + toElement: true, + touches: true, + + which: function( event ) { + var button = event.button; + + // Add which for key events + if ( event.which == null && rkeyEvent.test( event.type ) ) { + return event.charCode != null ? event.charCode : event.keyCode; + } + + // Add which for click: 1 === left; 2 === middle; 3 === right + if ( !event.which && button !== undefined && rmouseEvent.test( event.type ) ) { + if ( button & 1 ) { + return 1; + } + + if ( button & 2 ) { + return 3; + } + + if ( button & 4 ) { + return 2; + } + + return 0; + } + + return event.which; + } +}, jQuery.event.addProp ); + +jQuery.each( { focus: "focusin", blur: "focusout" }, function( type, delegateType ) { + jQuery.event.special[ type ] = { + + // Utilize native event if possible so blur/focus sequence is correct + setup: function() { + + // Claim the first handler + // dataPriv.set( this, "focus", ... ) + // dataPriv.set( this, "blur", ... ) + leverageNative( this, type, expectSync ); + + // Return false to allow normal processing in the caller + return false; + }, + trigger: function() { + + // Force setup before trigger + leverageNative( this, type ); + + // Return non-false to allow normal event-path propagation + return true; + }, + + delegateType: delegateType + }; +} ); + +// Create mouseenter/leave events using mouseover/out and event-time checks +// so that event delegation works in jQuery. +// Do the same for pointerenter/pointerleave and pointerover/pointerout +// +// Support: Safari 7 only +// Safari sends mouseenter too often; see: +// https://bugs.chromium.org/p/chromium/issues/detail?id=470258 +// for the description of the bug (it existed in older Chrome versions as well). +jQuery.each( { + mouseenter: "mouseover", + mouseleave: "mouseout", + pointerenter: "pointerover", + pointerleave: "pointerout" +}, function( orig, fix ) { + jQuery.event.special[ orig ] = { + delegateType: fix, + bindType: fix, + + handle: function( event ) { + var ret, + target = this, + related = event.relatedTarget, + handleObj = event.handleObj; + + // For mouseenter/leave call the handler if related is outside the target. + // NB: No relatedTarget if the mouse left/entered the browser window + if ( !related || ( related !== target && !jQuery.contains( target, related ) ) ) { + event.type = handleObj.origType; + ret = handleObj.handler.apply( this, arguments ); + event.type = fix; + } + return ret; + } + }; +} ); + +jQuery.fn.extend( { + + on: function( types, selector, data, fn ) { + return on( this, types, selector, data, fn ); + }, + one: function( types, selector, data, fn ) { + return on( this, types, selector, data, fn, 1 ); + }, + off: function( types, selector, fn ) { + var handleObj, type; + if ( types && types.preventDefault && types.handleObj ) { + + // ( event ) dispatched jQuery.Event + handleObj = types.handleObj; + jQuery( types.delegateTarget ).off( + handleObj.namespace ? + handleObj.origType + "." + handleObj.namespace : + handleObj.origType, + handleObj.selector, + handleObj.handler + ); + return this; + } + if ( typeof types === "object" ) { + + // ( types-object [, selector] ) + for ( type in types ) { + this.off( type, selector, types[ type ] ); + } + return this; + } + if ( selector === false || typeof selector === "function" ) { + + // ( types [, fn] ) + fn = selector; + selector = undefined; + } + if ( fn === false ) { + fn = returnFalse; + } + return this.each( function() { + jQuery.event.remove( this, types, fn, selector ); + } ); + } +} ); + + +var + + /* eslint-disable max-len */ + + // See https://github.com/eslint/eslint/issues/3229 + rxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>\x20\t\r\n\f]*)[^>]*)\/>/gi, + + /* eslint-enable */ + + // Support: IE <=10 - 11, Edge 12 - 13 only + // In IE/Edge using regex groups here causes severe slowdowns. + // See https://connect.microsoft.com/IE/feedback/details/1736512/ + rnoInnerhtml = /\s*$/g; + +// Prefer a tbody over its parent table for containing new rows +function manipulationTarget( elem, content ) { + if ( nodeName( elem, "table" ) && + nodeName( content.nodeType !== 11 ? content : content.firstChild, "tr" ) ) { + + return jQuery( elem ).children( "tbody" )[ 0 ] || elem; + } + + return elem; +} + +// Replace/restore the type attribute of script elements for safe DOM manipulation +function disableScript( elem ) { + elem.type = ( elem.getAttribute( "type" ) !== null ) + "/" + elem.type; + return elem; +} +function restoreScript( elem ) { + if ( ( elem.type || "" ).slice( 0, 5 ) === "true/" ) { + elem.type = elem.type.slice( 5 ); + } else { + elem.removeAttribute( "type" ); + } + + return elem; +} + +function cloneCopyEvent( src, dest ) { + var i, l, type, pdataOld, pdataCur, udataOld, udataCur, events; + + if ( dest.nodeType !== 1 ) { + return; + } + + // 1. Copy private data: events, handlers, etc. + if ( dataPriv.hasData( src ) ) { + pdataOld = dataPriv.access( src ); + pdataCur = dataPriv.set( dest, pdataOld ); + events = pdataOld.events; + + if ( events ) { + delete pdataCur.handle; + pdataCur.events = {}; + + for ( type in events ) { + for ( i = 0, l = events[ type ].length; i < l; i++ ) { + jQuery.event.add( dest, type, events[ type ][ i ] ); + } + } + } + } + + // 2. Copy user data + if ( dataUser.hasData( src ) ) { + udataOld = dataUser.access( src ); + udataCur = jQuery.extend( {}, udataOld ); + + dataUser.set( dest, udataCur ); + } +} + +// Fix IE bugs, see support tests +function fixInput( src, dest ) { + var nodeName = dest.nodeName.toLowerCase(); + + // Fails to persist the checked state of a cloned checkbox or radio button. + if ( nodeName === "input" && rcheckableType.test( src.type ) ) { + dest.checked = src.checked; + + // Fails to return the selected option to the default selected state when cloning options + } else if ( nodeName === "input" || nodeName === "textarea" ) { + dest.defaultValue = src.defaultValue; + } +} + +function domManip( collection, args, callback, ignored ) { + + // Flatten any nested arrays + args = concat.apply( [], args ); + + var fragment, first, scripts, hasScripts, node, doc, + i = 0, + l = collection.length, + iNoClone = l - 1, + value = args[ 0 ], + valueIsFunction = isFunction( value ); + + // We can't cloneNode fragments that contain checked, in WebKit + if ( valueIsFunction || + ( l > 1 && typeof value === "string" && + !support.checkClone && rchecked.test( value ) ) ) { + return collection.each( function( index ) { + var self = collection.eq( index ); + if ( valueIsFunction ) { + args[ 0 ] = value.call( this, index, self.html() ); + } + domManip( self, args, callback, ignored ); + } ); + } + + if ( l ) { + fragment = buildFragment( args, collection[ 0 ].ownerDocument, false, collection, ignored ); + first = fragment.firstChild; + + if ( fragment.childNodes.length === 1 ) { + fragment = first; + } + + // Require either new content or an interest in ignored elements to invoke the callback + if ( first || ignored ) { + scripts = jQuery.map( getAll( fragment, "script" ), disableScript ); + hasScripts = scripts.length; + + // Use the original fragment for the last item + // instead of the first because it can end up + // being emptied incorrectly in certain situations (#8070). + for ( ; i < l; i++ ) { + node = fragment; + + if ( i !== iNoClone ) { + node = jQuery.clone( node, true, true ); + + // Keep references to cloned scripts for later restoration + if ( hasScripts ) { + + // Support: Android <=4.0 only, PhantomJS 1 only + // push.apply(_, arraylike) throws on ancient WebKit + jQuery.merge( scripts, getAll( node, "script" ) ); + } + } + + callback.call( collection[ i ], node, i ); + } + + if ( hasScripts ) { + doc = scripts[ scripts.length - 1 ].ownerDocument; + + // Reenable scripts + jQuery.map( scripts, restoreScript ); + + // Evaluate executable scripts on first document insertion + for ( i = 0; i < hasScripts; i++ ) { + node = scripts[ i ]; + if ( rscriptType.test( node.type || "" ) && + !dataPriv.access( node, "globalEval" ) && + jQuery.contains( doc, node ) ) { + + if ( node.src && ( node.type || "" ).toLowerCase() !== "module" ) { + + // Optional AJAX dependency, but won't run scripts if not present + if ( jQuery._evalUrl && !node.noModule ) { + jQuery._evalUrl( node.src, { + nonce: node.nonce || node.getAttribute( "nonce" ) + } ); + } + } else { + DOMEval( node.textContent.replace( rcleanScript, "" ), node, doc ); + } + } + } + } + } + } + + return collection; +} + +function remove( elem, selector, keepData ) { + var node, + nodes = selector ? jQuery.filter( selector, elem ) : elem, + i = 0; + + for ( ; ( node = nodes[ i ] ) != null; i++ ) { + if ( !keepData && node.nodeType === 1 ) { + jQuery.cleanData( getAll( node ) ); + } + + if ( node.parentNode ) { + if ( keepData && isAttached( node ) ) { + setGlobalEval( getAll( node, "script" ) ); + } + node.parentNode.removeChild( node ); + } + } + + return elem; +} + +jQuery.extend( { + htmlPrefilter: function( html ) { + return html.replace( rxhtmlTag, "<$1>" ); + }, + + clone: function( elem, dataAndEvents, deepDataAndEvents ) { + var i, l, srcElements, destElements, + clone = elem.cloneNode( true ), + inPage = isAttached( elem ); + + // Fix IE cloning issues + if ( !support.noCloneChecked && ( elem.nodeType === 1 || elem.nodeType === 11 ) && + !jQuery.isXMLDoc( elem ) ) { + + // We eschew Sizzle here for performance reasons: https://jsperf.com/getall-vs-sizzle/2 + destElements = getAll( clone ); + srcElements = getAll( elem ); + + for ( i = 0, l = srcElements.length; i < l; i++ ) { + fixInput( srcElements[ i ], destElements[ i ] ); + } + } + + // Copy the events from the original to the clone + if ( dataAndEvents ) { + if ( deepDataAndEvents ) { + srcElements = srcElements || getAll( elem ); + destElements = destElements || getAll( clone ); + + for ( i = 0, l = srcElements.length; i < l; i++ ) { + cloneCopyEvent( srcElements[ i ], destElements[ i ] ); + } + } else { + cloneCopyEvent( elem, clone ); + } + } + + // Preserve script evaluation history + destElements = getAll( clone, "script" ); + if ( destElements.length > 0 ) { + setGlobalEval( destElements, !inPage && getAll( elem, "script" ) ); + } + + // Return the cloned set + return clone; + }, + + cleanData: function( elems ) { + var data, elem, type, + special = jQuery.event.special, + i = 0; + + for ( ; ( elem = elems[ i ] ) !== undefined; i++ ) { + if ( acceptData( elem ) ) { + if ( ( data = elem[ dataPriv.expando ] ) ) { + if ( data.events ) { + for ( type in data.events ) { + if ( special[ type ] ) { + jQuery.event.remove( elem, type ); + + // This is a shortcut to avoid jQuery.event.remove's overhead + } else { + jQuery.removeEvent( elem, type, data.handle ); + } + } + } + + // Support: Chrome <=35 - 45+ + // Assign undefined instead of using delete, see Data#remove + elem[ dataPriv.expando ] = undefined; + } + if ( elem[ dataUser.expando ] ) { + + // Support: Chrome <=35 - 45+ + // Assign undefined instead of using delete, see Data#remove + elem[ dataUser.expando ] = undefined; + } + } + } + } +} ); + +jQuery.fn.extend( { + detach: function( selector ) { + return remove( this, selector, true ); + }, + + remove: function( selector ) { + return remove( this, selector ); + }, + + text: function( value ) { + return access( this, function( value ) { + return value === undefined ? + jQuery.text( this ) : + this.empty().each( function() { + if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { + this.textContent = value; + } + } ); + }, null, value, arguments.length ); + }, + + append: function() { + return domManip( this, arguments, function( elem ) { + if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { + var target = manipulationTarget( this, elem ); + target.appendChild( elem ); + } + } ); + }, + + prepend: function() { + return domManip( this, arguments, function( elem ) { + if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { + var target = manipulationTarget( this, elem ); + target.insertBefore( elem, target.firstChild ); + } + } ); + }, + + before: function() { + return domManip( this, arguments, function( elem ) { + if ( this.parentNode ) { + this.parentNode.insertBefore( elem, this ); + } + } ); + }, + + after: function() { + return domManip( this, arguments, function( elem ) { + if ( this.parentNode ) { + this.parentNode.insertBefore( elem, this.nextSibling ); + } + } ); + }, + + empty: function() { + var elem, + i = 0; + + for ( ; ( elem = this[ i ] ) != null; i++ ) { + if ( elem.nodeType === 1 ) { + + // Prevent memory leaks + jQuery.cleanData( getAll( elem, false ) ); + + // Remove any remaining nodes + elem.textContent = ""; + } + } + + return this; + }, + + clone: function( dataAndEvents, deepDataAndEvents ) { + dataAndEvents = dataAndEvents == null ? false : dataAndEvents; + deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents; + + return this.map( function() { + return jQuery.clone( this, dataAndEvents, deepDataAndEvents ); + } ); + }, + + html: function( value ) { + return access( this, function( value ) { + var elem = this[ 0 ] || {}, + i = 0, + l = this.length; + + if ( value === undefined && elem.nodeType === 1 ) { + return elem.innerHTML; + } + + // See if we can take a shortcut and just use innerHTML + if ( typeof value === "string" && !rnoInnerhtml.test( value ) && + !wrapMap[ ( rtagName.exec( value ) || [ "", "" ] )[ 1 ].toLowerCase() ] ) { + + value = jQuery.htmlPrefilter( value ); + + try { + for ( ; i < l; i++ ) { + elem = this[ i ] || {}; + + // Remove element nodes and prevent memory leaks + if ( elem.nodeType === 1 ) { + jQuery.cleanData( getAll( elem, false ) ); + elem.innerHTML = value; + } + } + + elem = 0; + + // If using innerHTML throws an exception, use the fallback method + } catch ( e ) {} + } + + if ( elem ) { + this.empty().append( value ); + } + }, null, value, arguments.length ); + }, + + replaceWith: function() { + var ignored = []; + + // Make the changes, replacing each non-ignored context element with the new content + return domManip( this, arguments, function( elem ) { + var parent = this.parentNode; + + if ( jQuery.inArray( this, ignored ) < 0 ) { + jQuery.cleanData( getAll( this ) ); + if ( parent ) { + parent.replaceChild( elem, this ); + } + } + + // Force callback invocation + }, ignored ); + } +} ); + +jQuery.each( { + appendTo: "append", + prependTo: "prepend", + insertBefore: "before", + insertAfter: "after", + replaceAll: "replaceWith" +}, function( name, original ) { + jQuery.fn[ name ] = function( selector ) { + var elems, + ret = [], + insert = jQuery( selector ), + last = insert.length - 1, + i = 0; + + for ( ; i <= last; i++ ) { + elems = i === last ? this : this.clone( true ); + jQuery( insert[ i ] )[ original ]( elems ); + + // Support: Android <=4.0 only, PhantomJS 1 only + // .get() because push.apply(_, arraylike) throws on ancient WebKit + push.apply( ret, elems.get() ); + } + + return this.pushStack( ret ); + }; +} ); +var rnumnonpx = new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" ); + +var getStyles = function( elem ) { + + // Support: IE <=11 only, Firefox <=30 (#15098, #14150) + // IE throws on elements created in popups + // FF meanwhile throws on frame elements through "defaultView.getComputedStyle" + var view = elem.ownerDocument.defaultView; + + if ( !view || !view.opener ) { + view = window; + } + + return view.getComputedStyle( elem ); + }; + +var rboxStyle = new RegExp( cssExpand.join( "|" ), "i" ); + + + +( function() { + + // Executing both pixelPosition & boxSizingReliable tests require only one layout + // so they're executed at the same time to save the second computation. + function computeStyleTests() { + + // This is a singleton, we need to execute it only once + if ( !div ) { + return; + } + + container.style.cssText = "position:absolute;left:-11111px;width:60px;" + + "margin-top:1px;padding:0;border:0"; + div.style.cssText = + "position:relative;display:block;box-sizing:border-box;overflow:scroll;" + + "margin:auto;border:1px;padding:1px;" + + "width:60%;top:1%"; + documentElement.appendChild( container ).appendChild( div ); + + var divStyle = window.getComputedStyle( div ); + pixelPositionVal = divStyle.top !== "1%"; + + // Support: Android 4.0 - 4.3 only, Firefox <=3 - 44 + reliableMarginLeftVal = roundPixelMeasures( divStyle.marginLeft ) === 12; + + // Support: Android 4.0 - 4.3 only, Safari <=9.1 - 10.1, iOS <=7.0 - 9.3 + // Some styles come back with percentage values, even though they shouldn't + div.style.right = "60%"; + pixelBoxStylesVal = roundPixelMeasures( divStyle.right ) === 36; + + // Support: IE 9 - 11 only + // Detect misreporting of content dimensions for box-sizing:border-box elements + boxSizingReliableVal = roundPixelMeasures( divStyle.width ) === 36; + + // Support: IE 9 only + // Detect overflow:scroll screwiness (gh-3699) + // Support: Chrome <=64 + // Don't get tricked when zoom affects offsetWidth (gh-4029) + div.style.position = "absolute"; + scrollboxSizeVal = roundPixelMeasures( div.offsetWidth / 3 ) === 12; + + documentElement.removeChild( container ); + + // Nullify the div so it wouldn't be stored in the memory and + // it will also be a sign that checks already performed + div = null; + } + + function roundPixelMeasures( measure ) { + return Math.round( parseFloat( measure ) ); + } + + var pixelPositionVal, boxSizingReliableVal, scrollboxSizeVal, pixelBoxStylesVal, + reliableMarginLeftVal, + container = document.createElement( "div" ), + div = document.createElement( "div" ); + + // Finish early in limited (non-browser) environments + if ( !div.style ) { + return; + } + + // Support: IE <=9 - 11 only + // Style of cloned element affects source element cloned (#8908) + div.style.backgroundClip = "content-box"; + div.cloneNode( true ).style.backgroundClip = ""; + support.clearCloneStyle = div.style.backgroundClip === "content-box"; + + jQuery.extend( support, { + boxSizingReliable: function() { + computeStyleTests(); + return boxSizingReliableVal; + }, + pixelBoxStyles: function() { + computeStyleTests(); + return pixelBoxStylesVal; + }, + pixelPosition: function() { + computeStyleTests(); + return pixelPositionVal; + }, + reliableMarginLeft: function() { + computeStyleTests(); + return reliableMarginLeftVal; + }, + scrollboxSize: function() { + computeStyleTests(); + return scrollboxSizeVal; + } + } ); +} )(); + + +function curCSS( elem, name, computed ) { + var width, minWidth, maxWidth, ret, + + // Support: Firefox 51+ + // Retrieving style before computed somehow + // fixes an issue with getting wrong values + // on detached elements + style = elem.style; + + computed = computed || getStyles( elem ); + + // getPropertyValue is needed for: + // .css('filter') (IE 9 only, #12537) + // .css('--customProperty) (#3144) + if ( computed ) { + ret = computed.getPropertyValue( name ) || computed[ name ]; + + if ( ret === "" && !isAttached( elem ) ) { + ret = jQuery.style( elem, name ); + } + + // A tribute to the "awesome hack by Dean Edwards" + // Android Browser returns percentage for some values, + // but width seems to be reliably pixels. + // This is against the CSSOM draft spec: + // https://drafts.csswg.org/cssom/#resolved-values + if ( !support.pixelBoxStyles() && rnumnonpx.test( ret ) && rboxStyle.test( name ) ) { + + // Remember the original values + width = style.width; + minWidth = style.minWidth; + maxWidth = style.maxWidth; + + // Put in the new values to get a computed value out + style.minWidth = style.maxWidth = style.width = ret; + ret = computed.width; + + // Revert the changed values + style.width = width; + style.minWidth = minWidth; + style.maxWidth = maxWidth; + } + } + + return ret !== undefined ? + + // Support: IE <=9 - 11 only + // IE returns zIndex value as an integer. + ret + "" : + ret; +} + + +function addGetHookIf( conditionFn, hookFn ) { + + // Define the hook, we'll check on the first run if it's really needed. + return { + get: function() { + if ( conditionFn() ) { + + // Hook not needed (or it's not possible to use it due + // to missing dependency), remove it. + delete this.get; + return; + } + + // Hook needed; redefine it so that the support test is not executed again. + return ( this.get = hookFn ).apply( this, arguments ); + } + }; +} + + +var cssPrefixes = [ "Webkit", "Moz", "ms" ], + emptyStyle = document.createElement( "div" ).style, + vendorProps = {}; + +// Return a vendor-prefixed property or undefined +function vendorPropName( name ) { + + // Check for vendor prefixed names + var capName = name[ 0 ].toUpperCase() + name.slice( 1 ), + i = cssPrefixes.length; + + while ( i-- ) { + name = cssPrefixes[ i ] + capName; + if ( name in emptyStyle ) { + return name; + } + } +} + +// Return a potentially-mapped jQuery.cssProps or vendor prefixed property +function finalPropName( name ) { + var final = jQuery.cssProps[ name ] || vendorProps[ name ]; + + if ( final ) { + return final; + } + if ( name in emptyStyle ) { + return name; + } + return vendorProps[ name ] = vendorPropName( name ) || name; +} + + +var + + // Swappable if display is none or starts with table + // except "table", "table-cell", or "table-caption" + // See here for display values: https://developer.mozilla.org/en-US/docs/CSS/display + rdisplayswap = /^(none|table(?!-c[ea]).+)/, + rcustomProp = /^--/, + cssShow = { position: "absolute", visibility: "hidden", display: "block" }, + cssNormalTransform = { + letterSpacing: "0", + fontWeight: "400" + }; + +function setPositiveNumber( elem, value, subtract ) { + + // Any relative (+/-) values have already been + // normalized at this point + var matches = rcssNum.exec( value ); + return matches ? + + // Guard against undefined "subtract", e.g., when used as in cssHooks + Math.max( 0, matches[ 2 ] - ( subtract || 0 ) ) + ( matches[ 3 ] || "px" ) : + value; +} + +function boxModelAdjustment( elem, dimension, box, isBorderBox, styles, computedVal ) { + var i = dimension === "width" ? 1 : 0, + extra = 0, + delta = 0; + + // Adjustment may not be necessary + if ( box === ( isBorderBox ? "border" : "content" ) ) { + return 0; + } + + for ( ; i < 4; i += 2 ) { + + // Both box models exclude margin + if ( box === "margin" ) { + delta += jQuery.css( elem, box + cssExpand[ i ], true, styles ); + } + + // If we get here with a content-box, we're seeking "padding" or "border" or "margin" + if ( !isBorderBox ) { + + // Add padding + delta += jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); + + // For "border" or "margin", add border + if ( box !== "padding" ) { + delta += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); + + // But still keep track of it otherwise + } else { + extra += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); + } + + // If we get here with a border-box (content + padding + border), we're seeking "content" or + // "padding" or "margin" + } else { + + // For "content", subtract padding + if ( box === "content" ) { + delta -= jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); + } + + // For "content" or "padding", subtract border + if ( box !== "margin" ) { + delta -= jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); + } + } + } + + // Account for positive content-box scroll gutter when requested by providing computedVal + if ( !isBorderBox && computedVal >= 0 ) { + + // offsetWidth/offsetHeight is a rounded sum of content, padding, scroll gutter, and border + // Assuming integer scroll gutter, subtract the rest and round down + delta += Math.max( 0, Math.ceil( + elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] - + computedVal - + delta - + extra - + 0.5 + + // If offsetWidth/offsetHeight is unknown, then we can't determine content-box scroll gutter + // Use an explicit zero to avoid NaN (gh-3964) + ) ) || 0; + } + + return delta; +} + +function getWidthOrHeight( elem, dimension, extra ) { + + // Start with computed style + var styles = getStyles( elem ), + + // To avoid forcing a reflow, only fetch boxSizing if we need it (gh-4322). + // Fake content-box until we know it's needed to know the true value. + boxSizingNeeded = !support.boxSizingReliable() || extra, + isBorderBox = boxSizingNeeded && + jQuery.css( elem, "boxSizing", false, styles ) === "border-box", + valueIsBorderBox = isBorderBox, + + val = curCSS( elem, dimension, styles ), + offsetProp = "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ); + + // Support: Firefox <=54 + // Return a confounding non-pixel value or feign ignorance, as appropriate. + if ( rnumnonpx.test( val ) ) { + if ( !extra ) { + return val; + } + val = "auto"; + } + + + // Fall back to offsetWidth/offsetHeight when value is "auto" + // This happens for inline elements with no explicit setting (gh-3571) + // Support: Android <=4.1 - 4.3 only + // Also use offsetWidth/offsetHeight for misreported inline dimensions (gh-3602) + // Support: IE 9-11 only + // Also use offsetWidth/offsetHeight for when box sizing is unreliable + // We use getClientRects() to check for hidden/disconnected. + // In those cases, the computed value can be trusted to be border-box + if ( ( !support.boxSizingReliable() && isBorderBox || + val === "auto" || + !parseFloat( val ) && jQuery.css( elem, "display", false, styles ) === "inline" ) && + elem.getClientRects().length ) { + + isBorderBox = jQuery.css( elem, "boxSizing", false, styles ) === "border-box"; + + // Where available, offsetWidth/offsetHeight approximate border box dimensions. + // Where not available (e.g., SVG), assume unreliable box-sizing and interpret the + // retrieved value as a content box dimension. + valueIsBorderBox = offsetProp in elem; + if ( valueIsBorderBox ) { + val = elem[ offsetProp ]; + } + } + + // Normalize "" and auto + val = parseFloat( val ) || 0; + + // Adjust for the element's box model + return ( val + + boxModelAdjustment( + elem, + dimension, + extra || ( isBorderBox ? "border" : "content" ), + valueIsBorderBox, + styles, + + // Provide the current computed size to request scroll gutter calculation (gh-3589) + val + ) + ) + "px"; +} + +jQuery.extend( { + + // Add in style property hooks for overriding the default + // behavior of getting and setting a style property + cssHooks: { + opacity: { + get: function( elem, computed ) { + if ( computed ) { + + // We should always get a number back from opacity + var ret = curCSS( elem, "opacity" ); + return ret === "" ? "1" : ret; + } + } + } + }, + + // Don't automatically add "px" to these possibly-unitless properties + cssNumber: { + "animationIterationCount": true, + "columnCount": true, + "fillOpacity": true, + "flexGrow": true, + "flexShrink": true, + "fontWeight": true, + "gridArea": true, + "gridColumn": true, + "gridColumnEnd": true, + "gridColumnStart": true, + "gridRow": true, + "gridRowEnd": true, + "gridRowStart": true, + "lineHeight": true, + "opacity": true, + "order": true, + "orphans": true, + "widows": true, + "zIndex": true, + "zoom": true + }, + + // Add in properties whose names you wish to fix before + // setting or getting the value + cssProps: {}, + + // Get and set the style property on a DOM Node + style: function( elem, name, value, extra ) { + + // Don't set styles on text and comment nodes + if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) { + return; + } + + // Make sure that we're working with the right name + var ret, type, hooks, + origName = camelCase( name ), + isCustomProp = rcustomProp.test( name ), + style = elem.style; + + // Make sure that we're working with the right name. We don't + // want to query the value if it is a CSS custom property + // since they are user-defined. + if ( !isCustomProp ) { + name = finalPropName( origName ); + } + + // Gets hook for the prefixed version, then unprefixed version + hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; + + // Check if we're setting a value + if ( value !== undefined ) { + type = typeof value; + + // Convert "+=" or "-=" to relative numbers (#7345) + if ( type === "string" && ( ret = rcssNum.exec( value ) ) && ret[ 1 ] ) { + value = adjustCSS( elem, name, ret ); + + // Fixes bug #9237 + type = "number"; + } + + // Make sure that null and NaN values aren't set (#7116) + if ( value == null || value !== value ) { + return; + } + + // If a number was passed in, add the unit (except for certain CSS properties) + // The isCustomProp check can be removed in jQuery 4.0 when we only auto-append + // "px" to a few hardcoded values. + if ( type === "number" && !isCustomProp ) { + value += ret && ret[ 3 ] || ( jQuery.cssNumber[ origName ] ? "" : "px" ); + } + + // background-* props affect original clone's values + if ( !support.clearCloneStyle && value === "" && name.indexOf( "background" ) === 0 ) { + style[ name ] = "inherit"; + } + + // If a hook was provided, use that value, otherwise just set the specified value + if ( !hooks || !( "set" in hooks ) || + ( value = hooks.set( elem, value, extra ) ) !== undefined ) { + + if ( isCustomProp ) { + style.setProperty( name, value ); + } else { + style[ name ] = value; + } + } + + } else { + + // If a hook was provided get the non-computed value from there + if ( hooks && "get" in hooks && + ( ret = hooks.get( elem, false, extra ) ) !== undefined ) { + + return ret; + } + + // Otherwise just get the value from the style object + return style[ name ]; + } + }, + + css: function( elem, name, extra, styles ) { + var val, num, hooks, + origName = camelCase( name ), + isCustomProp = rcustomProp.test( name ); + + // Make sure that we're working with the right name. We don't + // want to modify the value if it is a CSS custom property + // since they are user-defined. + if ( !isCustomProp ) { + name = finalPropName( origName ); + } + + // Try prefixed name followed by the unprefixed name + hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; + + // If a hook was provided get the computed value from there + if ( hooks && "get" in hooks ) { + val = hooks.get( elem, true, extra ); + } + + // Otherwise, if a way to get the computed value exists, use that + if ( val === undefined ) { + val = curCSS( elem, name, styles ); + } + + // Convert "normal" to computed value + if ( val === "normal" && name in cssNormalTransform ) { + val = cssNormalTransform[ name ]; + } + + // Make numeric if forced or a qualifier was provided and val looks numeric + if ( extra === "" || extra ) { + num = parseFloat( val ); + return extra === true || isFinite( num ) ? num || 0 : val; + } + + return val; + } +} ); + +jQuery.each( [ "height", "width" ], function( i, dimension ) { + jQuery.cssHooks[ dimension ] = { + get: function( elem, computed, extra ) { + if ( computed ) { + + // Certain elements can have dimension info if we invisibly show them + // but it must have a current display style that would benefit + return rdisplayswap.test( jQuery.css( elem, "display" ) ) && + + // Support: Safari 8+ + // Table columns in Safari have non-zero offsetWidth & zero + // getBoundingClientRect().width unless display is changed. + // Support: IE <=11 only + // Running getBoundingClientRect on a disconnected node + // in IE throws an error. + ( !elem.getClientRects().length || !elem.getBoundingClientRect().width ) ? + swap( elem, cssShow, function() { + return getWidthOrHeight( elem, dimension, extra ); + } ) : + getWidthOrHeight( elem, dimension, extra ); + } + }, + + set: function( elem, value, extra ) { + var matches, + styles = getStyles( elem ), + + // Only read styles.position if the test has a chance to fail + // to avoid forcing a reflow. + scrollboxSizeBuggy = !support.scrollboxSize() && + styles.position === "absolute", + + // To avoid forcing a reflow, only fetch boxSizing if we need it (gh-3991) + boxSizingNeeded = scrollboxSizeBuggy || extra, + isBorderBox = boxSizingNeeded && + jQuery.css( elem, "boxSizing", false, styles ) === "border-box", + subtract = extra ? + boxModelAdjustment( + elem, + dimension, + extra, + isBorderBox, + styles + ) : + 0; + + // Account for unreliable border-box dimensions by comparing offset* to computed and + // faking a content-box to get border and padding (gh-3699) + if ( isBorderBox && scrollboxSizeBuggy ) { + subtract -= Math.ceil( + elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] - + parseFloat( styles[ dimension ] ) - + boxModelAdjustment( elem, dimension, "border", false, styles ) - + 0.5 + ); + } + + // Convert to pixels if value adjustment is needed + if ( subtract && ( matches = rcssNum.exec( value ) ) && + ( matches[ 3 ] || "px" ) !== "px" ) { + + elem.style[ dimension ] = value; + value = jQuery.css( elem, dimension ); + } + + return setPositiveNumber( elem, value, subtract ); + } + }; +} ); + +jQuery.cssHooks.marginLeft = addGetHookIf( support.reliableMarginLeft, + function( elem, computed ) { + if ( computed ) { + return ( parseFloat( curCSS( elem, "marginLeft" ) ) || + elem.getBoundingClientRect().left - + swap( elem, { marginLeft: 0 }, function() { + return elem.getBoundingClientRect().left; + } ) + ) + "px"; + } + } +); + +// These hooks are used by animate to expand properties +jQuery.each( { + margin: "", + padding: "", + border: "Width" +}, function( prefix, suffix ) { + jQuery.cssHooks[ prefix + suffix ] = { + expand: function( value ) { + var i = 0, + expanded = {}, + + // Assumes a single number if not a string + parts = typeof value === "string" ? value.split( " " ) : [ value ]; + + for ( ; i < 4; i++ ) { + expanded[ prefix + cssExpand[ i ] + suffix ] = + parts[ i ] || parts[ i - 2 ] || parts[ 0 ]; + } + + return expanded; + } + }; + + if ( prefix !== "margin" ) { + jQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber; + } +} ); + +jQuery.fn.extend( { + css: function( name, value ) { + return access( this, function( elem, name, value ) { + var styles, len, + map = {}, + i = 0; + + if ( Array.isArray( name ) ) { + styles = getStyles( elem ); + len = name.length; + + for ( ; i < len; i++ ) { + map[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles ); + } + + return map; + } + + return value !== undefined ? + jQuery.style( elem, name, value ) : + jQuery.css( elem, name ); + }, name, value, arguments.length > 1 ); + } +} ); + + +function Tween( elem, options, prop, end, easing ) { + return new Tween.prototype.init( elem, options, prop, end, easing ); +} +jQuery.Tween = Tween; + +Tween.prototype = { + constructor: Tween, + init: function( elem, options, prop, end, easing, unit ) { + this.elem = elem; + this.prop = prop; + this.easing = easing || jQuery.easing._default; + this.options = options; + this.start = this.now = this.cur(); + this.end = end; + this.unit = unit || ( jQuery.cssNumber[ prop ] ? "" : "px" ); + }, + cur: function() { + var hooks = Tween.propHooks[ this.prop ]; + + return hooks && hooks.get ? + hooks.get( this ) : + Tween.propHooks._default.get( this ); + }, + run: function( percent ) { + var eased, + hooks = Tween.propHooks[ this.prop ]; + + if ( this.options.duration ) { + this.pos = eased = jQuery.easing[ this.easing ]( + percent, this.options.duration * percent, 0, 1, this.options.duration + ); + } else { + this.pos = eased = percent; + } + this.now = ( this.end - this.start ) * eased + this.start; + + if ( this.options.step ) { + this.options.step.call( this.elem, this.now, this ); + } + + if ( hooks && hooks.set ) { + hooks.set( this ); + } else { + Tween.propHooks._default.set( this ); + } + return this; + } +}; + +Tween.prototype.init.prototype = Tween.prototype; + +Tween.propHooks = { + _default: { + get: function( tween ) { + var result; + + // Use a property on the element directly when it is not a DOM element, + // or when there is no matching style property that exists. + if ( tween.elem.nodeType !== 1 || + tween.elem[ tween.prop ] != null && tween.elem.style[ tween.prop ] == null ) { + return tween.elem[ tween.prop ]; + } + + // Passing an empty string as a 3rd parameter to .css will automatically + // attempt a parseFloat and fallback to a string if the parse fails. + // Simple values such as "10px" are parsed to Float; + // complex values such as "rotate(1rad)" are returned as-is. + result = jQuery.css( tween.elem, tween.prop, "" ); + + // Empty strings, null, undefined and "auto" are converted to 0. + return !result || result === "auto" ? 0 : result; + }, + set: function( tween ) { + + // Use step hook for back compat. + // Use cssHook if its there. + // Use .style if available and use plain properties where available. + if ( jQuery.fx.step[ tween.prop ] ) { + jQuery.fx.step[ tween.prop ]( tween ); + } else if ( tween.elem.nodeType === 1 && ( + jQuery.cssHooks[ tween.prop ] || + tween.elem.style[ finalPropName( tween.prop ) ] != null ) ) { + jQuery.style( tween.elem, tween.prop, tween.now + tween.unit ); + } else { + tween.elem[ tween.prop ] = tween.now; + } + } + } +}; + +// Support: IE <=9 only +// Panic based approach to setting things on disconnected nodes +Tween.propHooks.scrollTop = Tween.propHooks.scrollLeft = { + set: function( tween ) { + if ( tween.elem.nodeType && tween.elem.parentNode ) { + tween.elem[ tween.prop ] = tween.now; + } + } +}; + +jQuery.easing = { + linear: function( p ) { + return p; + }, + swing: function( p ) { + return 0.5 - Math.cos( p * Math.PI ) / 2; + }, + _default: "swing" +}; + +jQuery.fx = Tween.prototype.init; + +// Back compat <1.8 extension point +jQuery.fx.step = {}; + + + + +var + fxNow, inProgress, + rfxtypes = /^(?:toggle|show|hide)$/, + rrun = /queueHooks$/; + +function schedule() { + if ( inProgress ) { + if ( document.hidden === false && window.requestAnimationFrame ) { + window.requestAnimationFrame( schedule ); + } else { + window.setTimeout( schedule, jQuery.fx.interval ); + } + + jQuery.fx.tick(); + } +} + +// Animations created synchronously will run synchronously +function createFxNow() { + window.setTimeout( function() { + fxNow = undefined; + } ); + return ( fxNow = Date.now() ); +} + +// Generate parameters to create a standard animation +function genFx( type, includeWidth ) { + var which, + i = 0, + attrs = { height: type }; + + // If we include width, step value is 1 to do all cssExpand values, + // otherwise step value is 2 to skip over Left and Right + includeWidth = includeWidth ? 1 : 0; + for ( ; i < 4; i += 2 - includeWidth ) { + which = cssExpand[ i ]; + attrs[ "margin" + which ] = attrs[ "padding" + which ] = type; + } + + if ( includeWidth ) { + attrs.opacity = attrs.width = type; + } + + return attrs; +} + +function createTween( value, prop, animation ) { + var tween, + collection = ( Animation.tweeners[ prop ] || [] ).concat( Animation.tweeners[ "*" ] ), + index = 0, + length = collection.length; + for ( ; index < length; index++ ) { + if ( ( tween = collection[ index ].call( animation, prop, value ) ) ) { + + // We're done with this property + return tween; + } + } +} + +function defaultPrefilter( elem, props, opts ) { + var prop, value, toggle, hooks, oldfire, propTween, restoreDisplay, display, + isBox = "width" in props || "height" in props, + anim = this, + orig = {}, + style = elem.style, + hidden = elem.nodeType && isHiddenWithinTree( elem ), + dataShow = dataPriv.get( elem, "fxshow" ); + + // Queue-skipping animations hijack the fx hooks + if ( !opts.queue ) { + hooks = jQuery._queueHooks( elem, "fx" ); + if ( hooks.unqueued == null ) { + hooks.unqueued = 0; + oldfire = hooks.empty.fire; + hooks.empty.fire = function() { + if ( !hooks.unqueued ) { + oldfire(); + } + }; + } + hooks.unqueued++; + + anim.always( function() { + + // Ensure the complete handler is called before this completes + anim.always( function() { + hooks.unqueued--; + if ( !jQuery.queue( elem, "fx" ).length ) { + hooks.empty.fire(); + } + } ); + } ); + } + + // Detect show/hide animations + for ( prop in props ) { + value = props[ prop ]; + if ( rfxtypes.test( value ) ) { + delete props[ prop ]; + toggle = toggle || value === "toggle"; + if ( value === ( hidden ? "hide" : "show" ) ) { + + // Pretend to be hidden if this is a "show" and + // there is still data from a stopped show/hide + if ( value === "show" && dataShow && dataShow[ prop ] !== undefined ) { + hidden = true; + + // Ignore all other no-op show/hide data + } else { + continue; + } + } + orig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop ); + } + } + + // Bail out if this is a no-op like .hide().hide() + propTween = !jQuery.isEmptyObject( props ); + if ( !propTween && jQuery.isEmptyObject( orig ) ) { + return; + } + + // Restrict "overflow" and "display" styles during box animations + if ( isBox && elem.nodeType === 1 ) { + + // Support: IE <=9 - 11, Edge 12 - 15 + // Record all 3 overflow attributes because IE does not infer the shorthand + // from identically-valued overflowX and overflowY and Edge just mirrors + // the overflowX value there. + opts.overflow = [ style.overflow, style.overflowX, style.overflowY ]; + + // Identify a display type, preferring old show/hide data over the CSS cascade + restoreDisplay = dataShow && dataShow.display; + if ( restoreDisplay == null ) { + restoreDisplay = dataPriv.get( elem, "display" ); + } + display = jQuery.css( elem, "display" ); + if ( display === "none" ) { + if ( restoreDisplay ) { + display = restoreDisplay; + } else { + + // Get nonempty value(s) by temporarily forcing visibility + showHide( [ elem ], true ); + restoreDisplay = elem.style.display || restoreDisplay; + display = jQuery.css( elem, "display" ); + showHide( [ elem ] ); + } + } + + // Animate inline elements as inline-block + if ( display === "inline" || display === "inline-block" && restoreDisplay != null ) { + if ( jQuery.css( elem, "float" ) === "none" ) { + + // Restore the original display value at the end of pure show/hide animations + if ( !propTween ) { + anim.done( function() { + style.display = restoreDisplay; + } ); + if ( restoreDisplay == null ) { + display = style.display; + restoreDisplay = display === "none" ? "" : display; + } + } + style.display = "inline-block"; + } + } + } + + if ( opts.overflow ) { + style.overflow = "hidden"; + anim.always( function() { + style.overflow = opts.overflow[ 0 ]; + style.overflowX = opts.overflow[ 1 ]; + style.overflowY = opts.overflow[ 2 ]; + } ); + } + + // Implement show/hide animations + propTween = false; + for ( prop in orig ) { + + // General show/hide setup for this element animation + if ( !propTween ) { + if ( dataShow ) { + if ( "hidden" in dataShow ) { + hidden = dataShow.hidden; + } + } else { + dataShow = dataPriv.access( elem, "fxshow", { display: restoreDisplay } ); + } + + // Store hidden/visible for toggle so `.stop().toggle()` "reverses" + if ( toggle ) { + dataShow.hidden = !hidden; + } + + // Show elements before animating them + if ( hidden ) { + showHide( [ elem ], true ); + } + + /* eslint-disable no-loop-func */ + + anim.done( function() { + + /* eslint-enable no-loop-func */ + + // The final step of a "hide" animation is actually hiding the element + if ( !hidden ) { + showHide( [ elem ] ); + } + dataPriv.remove( elem, "fxshow" ); + for ( prop in orig ) { + jQuery.style( elem, prop, orig[ prop ] ); + } + } ); + } + + // Per-property setup + propTween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim ); + if ( !( prop in dataShow ) ) { + dataShow[ prop ] = propTween.start; + if ( hidden ) { + propTween.end = propTween.start; + propTween.start = 0; + } + } + } +} + +function propFilter( props, specialEasing ) { + var index, name, easing, value, hooks; + + // camelCase, specialEasing and expand cssHook pass + for ( index in props ) { + name = camelCase( index ); + easing = specialEasing[ name ]; + value = props[ index ]; + if ( Array.isArray( value ) ) { + easing = value[ 1 ]; + value = props[ index ] = value[ 0 ]; + } + + if ( index !== name ) { + props[ name ] = value; + delete props[ index ]; + } + + hooks = jQuery.cssHooks[ name ]; + if ( hooks && "expand" in hooks ) { + value = hooks.expand( value ); + delete props[ name ]; + + // Not quite $.extend, this won't overwrite existing keys. + // Reusing 'index' because we have the correct "name" + for ( index in value ) { + if ( !( index in props ) ) { + props[ index ] = value[ index ]; + specialEasing[ index ] = easing; + } + } + } else { + specialEasing[ name ] = easing; + } + } +} + +function Animation( elem, properties, options ) { + var result, + stopped, + index = 0, + length = Animation.prefilters.length, + deferred = jQuery.Deferred().always( function() { + + // Don't match elem in the :animated selector + delete tick.elem; + } ), + tick = function() { + if ( stopped ) { + return false; + } + var currentTime = fxNow || createFxNow(), + remaining = Math.max( 0, animation.startTime + animation.duration - currentTime ), + + // Support: Android 2.3 only + // Archaic crash bug won't allow us to use `1 - ( 0.5 || 0 )` (#12497) + temp = remaining / animation.duration || 0, + percent = 1 - temp, + index = 0, + length = animation.tweens.length; + + for ( ; index < length; index++ ) { + animation.tweens[ index ].run( percent ); + } + + deferred.notifyWith( elem, [ animation, percent, remaining ] ); + + // If there's more to do, yield + if ( percent < 1 && length ) { + return remaining; + } + + // If this was an empty animation, synthesize a final progress notification + if ( !length ) { + deferred.notifyWith( elem, [ animation, 1, 0 ] ); + } + + // Resolve the animation and report its conclusion + deferred.resolveWith( elem, [ animation ] ); + return false; + }, + animation = deferred.promise( { + elem: elem, + props: jQuery.extend( {}, properties ), + opts: jQuery.extend( true, { + specialEasing: {}, + easing: jQuery.easing._default + }, options ), + originalProperties: properties, + originalOptions: options, + startTime: fxNow || createFxNow(), + duration: options.duration, + tweens: [], + createTween: function( prop, end ) { + var tween = jQuery.Tween( elem, animation.opts, prop, end, + animation.opts.specialEasing[ prop ] || animation.opts.easing ); + animation.tweens.push( tween ); + return tween; + }, + stop: function( gotoEnd ) { + var index = 0, + + // If we are going to the end, we want to run all the tweens + // otherwise we skip this part + length = gotoEnd ? animation.tweens.length : 0; + if ( stopped ) { + return this; + } + stopped = true; + for ( ; index < length; index++ ) { + animation.tweens[ index ].run( 1 ); + } + + // Resolve when we played the last frame; otherwise, reject + if ( gotoEnd ) { + deferred.notifyWith( elem, [ animation, 1, 0 ] ); + deferred.resolveWith( elem, [ animation, gotoEnd ] ); + } else { + deferred.rejectWith( elem, [ animation, gotoEnd ] ); + } + return this; + } + } ), + props = animation.props; + + propFilter( props, animation.opts.specialEasing ); + + for ( ; index < length; index++ ) { + result = Animation.prefilters[ index ].call( animation, elem, props, animation.opts ); + if ( result ) { + if ( isFunction( result.stop ) ) { + jQuery._queueHooks( animation.elem, animation.opts.queue ).stop = + result.stop.bind( result ); + } + return result; + } + } + + jQuery.map( props, createTween, animation ); + + if ( isFunction( animation.opts.start ) ) { + animation.opts.start.call( elem, animation ); + } + + // Attach callbacks from options + animation + .progress( animation.opts.progress ) + .done( animation.opts.done, animation.opts.complete ) + .fail( animation.opts.fail ) + .always( animation.opts.always ); + + jQuery.fx.timer( + jQuery.extend( tick, { + elem: elem, + anim: animation, + queue: animation.opts.queue + } ) + ); + + return animation; +} + +jQuery.Animation = jQuery.extend( Animation, { + + tweeners: { + "*": [ function( prop, value ) { + var tween = this.createTween( prop, value ); + adjustCSS( tween.elem, prop, rcssNum.exec( value ), tween ); + return tween; + } ] + }, + + tweener: function( props, callback ) { + if ( isFunction( props ) ) { + callback = props; + props = [ "*" ]; + } else { + props = props.match( rnothtmlwhite ); + } + + var prop, + index = 0, + length = props.length; + + for ( ; index < length; index++ ) { + prop = props[ index ]; + Animation.tweeners[ prop ] = Animation.tweeners[ prop ] || []; + Animation.tweeners[ prop ].unshift( callback ); + } + }, + + prefilters: [ defaultPrefilter ], + + prefilter: function( callback, prepend ) { + if ( prepend ) { + Animation.prefilters.unshift( callback ); + } else { + Animation.prefilters.push( callback ); + } + } +} ); + +jQuery.speed = function( speed, easing, fn ) { + var opt = speed && typeof speed === "object" ? jQuery.extend( {}, speed ) : { + complete: fn || !fn && easing || + isFunction( speed ) && speed, + duration: speed, + easing: fn && easing || easing && !isFunction( easing ) && easing + }; + + // Go to the end state if fx are off + if ( jQuery.fx.off ) { + opt.duration = 0; + + } else { + if ( typeof opt.duration !== "number" ) { + if ( opt.duration in jQuery.fx.speeds ) { + opt.duration = jQuery.fx.speeds[ opt.duration ]; + + } else { + opt.duration = jQuery.fx.speeds._default; + } + } + } + + // Normalize opt.queue - true/undefined/null -> "fx" + if ( opt.queue == null || opt.queue === true ) { + opt.queue = "fx"; + } + + // Queueing + opt.old = opt.complete; + + opt.complete = function() { + if ( isFunction( opt.old ) ) { + opt.old.call( this ); + } + + if ( opt.queue ) { + jQuery.dequeue( this, opt.queue ); + } + }; + + return opt; +}; + +jQuery.fn.extend( { + fadeTo: function( speed, to, easing, callback ) { + + // Show any hidden elements after setting opacity to 0 + return this.filter( isHiddenWithinTree ).css( "opacity", 0 ).show() + + // Animate to the value specified + .end().animate( { opacity: to }, speed, easing, callback ); + }, + animate: function( prop, speed, easing, callback ) { + var empty = jQuery.isEmptyObject( prop ), + optall = jQuery.speed( speed, easing, callback ), + doAnimation = function() { + + // Operate on a copy of prop so per-property easing won't be lost + var anim = Animation( this, jQuery.extend( {}, prop ), optall ); + + // Empty animations, or finishing resolves immediately + if ( empty || dataPriv.get( this, "finish" ) ) { + anim.stop( true ); + } + }; + doAnimation.finish = doAnimation; + + return empty || optall.queue === false ? + this.each( doAnimation ) : + this.queue( optall.queue, doAnimation ); + }, + stop: function( type, clearQueue, gotoEnd ) { + var stopQueue = function( hooks ) { + var stop = hooks.stop; + delete hooks.stop; + stop( gotoEnd ); + }; + + if ( typeof type !== "string" ) { + gotoEnd = clearQueue; + clearQueue = type; + type = undefined; + } + if ( clearQueue && type !== false ) { + this.queue( type || "fx", [] ); + } + + return this.each( function() { + var dequeue = true, + index = type != null && type + "queueHooks", + timers = jQuery.timers, + data = dataPriv.get( this ); + + if ( index ) { + if ( data[ index ] && data[ index ].stop ) { + stopQueue( data[ index ] ); + } + } else { + for ( index in data ) { + if ( data[ index ] && data[ index ].stop && rrun.test( index ) ) { + stopQueue( data[ index ] ); + } + } + } + + for ( index = timers.length; index--; ) { + if ( timers[ index ].elem === this && + ( type == null || timers[ index ].queue === type ) ) { + + timers[ index ].anim.stop( gotoEnd ); + dequeue = false; + timers.splice( index, 1 ); + } + } + + // Start the next in the queue if the last step wasn't forced. + // Timers currently will call their complete callbacks, which + // will dequeue but only if they were gotoEnd. + if ( dequeue || !gotoEnd ) { + jQuery.dequeue( this, type ); + } + } ); + }, + finish: function( type ) { + if ( type !== false ) { + type = type || "fx"; + } + return this.each( function() { + var index, + data = dataPriv.get( this ), + queue = data[ type + "queue" ], + hooks = data[ type + "queueHooks" ], + timers = jQuery.timers, + length = queue ? queue.length : 0; + + // Enable finishing flag on private data + data.finish = true; + + // Empty the queue first + jQuery.queue( this, type, [] ); + + if ( hooks && hooks.stop ) { + hooks.stop.call( this, true ); + } + + // Look for any active animations, and finish them + for ( index = timers.length; index--; ) { + if ( timers[ index ].elem === this && timers[ index ].queue === type ) { + timers[ index ].anim.stop( true ); + timers.splice( index, 1 ); + } + } + + // Look for any animations in the old queue and finish them + for ( index = 0; index < length; index++ ) { + if ( queue[ index ] && queue[ index ].finish ) { + queue[ index ].finish.call( this ); + } + } + + // Turn off finishing flag + delete data.finish; + } ); + } +} ); + +jQuery.each( [ "toggle", "show", "hide" ], function( i, name ) { + var cssFn = jQuery.fn[ name ]; + jQuery.fn[ name ] = function( speed, easing, callback ) { + return speed == null || typeof speed === "boolean" ? + cssFn.apply( this, arguments ) : + this.animate( genFx( name, true ), speed, easing, callback ); + }; +} ); + +// Generate shortcuts for custom animations +jQuery.each( { + slideDown: genFx( "show" ), + slideUp: genFx( "hide" ), + slideToggle: genFx( "toggle" ), + fadeIn: { opacity: "show" }, + fadeOut: { opacity: "hide" }, + fadeToggle: { opacity: "toggle" } +}, function( name, props ) { + jQuery.fn[ name ] = function( speed, easing, callback ) { + return this.animate( props, speed, easing, callback ); + }; +} ); + +jQuery.timers = []; +jQuery.fx.tick = function() { + var timer, + i = 0, + timers = jQuery.timers; + + fxNow = Date.now(); + + for ( ; i < timers.length; i++ ) { + timer = timers[ i ]; + + // Run the timer and safely remove it when done (allowing for external removal) + if ( !timer() && timers[ i ] === timer ) { + timers.splice( i--, 1 ); + } + } + + if ( !timers.length ) { + jQuery.fx.stop(); + } + fxNow = undefined; +}; + +jQuery.fx.timer = function( timer ) { + jQuery.timers.push( timer ); + jQuery.fx.start(); +}; + +jQuery.fx.interval = 13; +jQuery.fx.start = function() { + if ( inProgress ) { + return; + } + + inProgress = true; + schedule(); +}; + +jQuery.fx.stop = function() { + inProgress = null; +}; + +jQuery.fx.speeds = { + slow: 600, + fast: 200, + + // Default speed + _default: 400 +}; + + +// Based off of the plugin by Clint Helfers, with permission. +// https://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ +jQuery.fn.delay = function( time, type ) { + time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time; + type = type || "fx"; + + return this.queue( type, function( next, hooks ) { + var timeout = window.setTimeout( next, time ); + hooks.stop = function() { + window.clearTimeout( timeout ); + }; + } ); +}; + + +( function() { + var input = document.createElement( "input" ), + select = document.createElement( "select" ), + opt = select.appendChild( document.createElement( "option" ) ); + + input.type = "checkbox"; + + // Support: Android <=4.3 only + // Default value for a checkbox should be "on" + support.checkOn = input.value !== ""; + + // Support: IE <=11 only + // Must access selectedIndex to make default options select + support.optSelected = opt.selected; + + // Support: IE <=11 only + // An input loses its value after becoming a radio + input = document.createElement( "input" ); + input.value = "t"; + input.type = "radio"; + support.radioValue = input.value === "t"; +} )(); + + +var boolHook, + attrHandle = jQuery.expr.attrHandle; + +jQuery.fn.extend( { + attr: function( name, value ) { + return access( this, jQuery.attr, name, value, arguments.length > 1 ); + }, + + removeAttr: function( name ) { + return this.each( function() { + jQuery.removeAttr( this, name ); + } ); + } +} ); + +jQuery.extend( { + attr: function( elem, name, value ) { + var ret, hooks, + nType = elem.nodeType; + + // Don't get/set attributes on text, comment and attribute nodes + if ( nType === 3 || nType === 8 || nType === 2 ) { + return; + } + + // Fallback to prop when attributes are not supported + if ( typeof elem.getAttribute === "undefined" ) { + return jQuery.prop( elem, name, value ); + } + + // Attribute hooks are determined by the lowercase version + // Grab necessary hook if one is defined + if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { + hooks = jQuery.attrHooks[ name.toLowerCase() ] || + ( jQuery.expr.match.bool.test( name ) ? boolHook : undefined ); + } + + if ( value !== undefined ) { + if ( value === null ) { + jQuery.removeAttr( elem, name ); + return; + } + + if ( hooks && "set" in hooks && + ( ret = hooks.set( elem, value, name ) ) !== undefined ) { + return ret; + } + + elem.setAttribute( name, value + "" ); + return value; + } + + if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) { + return ret; + } + + ret = jQuery.find.attr( elem, name ); + + // Non-existent attributes return null, we normalize to undefined + return ret == null ? undefined : ret; + }, + + attrHooks: { + type: { + set: function( elem, value ) { + if ( !support.radioValue && value === "radio" && + nodeName( elem, "input" ) ) { + var val = elem.value; + elem.setAttribute( "type", value ); + if ( val ) { + elem.value = val; + } + return value; + } + } + } + }, + + removeAttr: function( elem, value ) { + var name, + i = 0, + + // Attribute names can contain non-HTML whitespace characters + // https://html.spec.whatwg.org/multipage/syntax.html#attributes-2 + attrNames = value && value.match( rnothtmlwhite ); + + if ( attrNames && elem.nodeType === 1 ) { + while ( ( name = attrNames[ i++ ] ) ) { + elem.removeAttribute( name ); + } + } + } +} ); + +// Hooks for boolean attributes +boolHook = { + set: function( elem, value, name ) { + if ( value === false ) { + + // Remove boolean attributes when set to false + jQuery.removeAttr( elem, name ); + } else { + elem.setAttribute( name, name ); + } + return name; + } +}; + +jQuery.each( jQuery.expr.match.bool.source.match( /\w+/g ), function( i, name ) { + var getter = attrHandle[ name ] || jQuery.find.attr; + + attrHandle[ name ] = function( elem, name, isXML ) { + var ret, handle, + lowercaseName = name.toLowerCase(); + + if ( !isXML ) { + + // Avoid an infinite loop by temporarily removing this function from the getter + handle = attrHandle[ lowercaseName ]; + attrHandle[ lowercaseName ] = ret; + ret = getter( elem, name, isXML ) != null ? + lowercaseName : + null; + attrHandle[ lowercaseName ] = handle; + } + return ret; + }; +} ); + + + + +var rfocusable = /^(?:input|select|textarea|button)$/i, + rclickable = /^(?:a|area)$/i; + +jQuery.fn.extend( { + prop: function( name, value ) { + return access( this, jQuery.prop, name, value, arguments.length > 1 ); + }, + + removeProp: function( name ) { + return this.each( function() { + delete this[ jQuery.propFix[ name ] || name ]; + } ); + } +} ); + +jQuery.extend( { + prop: function( elem, name, value ) { + var ret, hooks, + nType = elem.nodeType; + + // Don't get/set properties on text, comment and attribute nodes + if ( nType === 3 || nType === 8 || nType === 2 ) { + return; + } + + if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { + + // Fix name and attach hooks + name = jQuery.propFix[ name ] || name; + hooks = jQuery.propHooks[ name ]; + } + + if ( value !== undefined ) { + if ( hooks && "set" in hooks && + ( ret = hooks.set( elem, value, name ) ) !== undefined ) { + return ret; + } + + return ( elem[ name ] = value ); + } + + if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) { + return ret; + } + + return elem[ name ]; + }, + + propHooks: { + tabIndex: { + get: function( elem ) { + + // Support: IE <=9 - 11 only + // elem.tabIndex doesn't always return the + // correct value when it hasn't been explicitly set + // https://web.archive.org/web/20141116233347/http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ + // Use proper attribute retrieval(#12072) + var tabindex = jQuery.find.attr( elem, "tabindex" ); + + if ( tabindex ) { + return parseInt( tabindex, 10 ); + } + + if ( + rfocusable.test( elem.nodeName ) || + rclickable.test( elem.nodeName ) && + elem.href + ) { + return 0; + } + + return -1; + } + } + }, + + propFix: { + "for": "htmlFor", + "class": "className" + } +} ); + +// Support: IE <=11 only +// Accessing the selectedIndex property +// forces the browser to respect setting selected +// on the option +// The getter ensures a default option is selected +// when in an optgroup +// eslint rule "no-unused-expressions" is disabled for this code +// since it considers such accessions noop +if ( !support.optSelected ) { + jQuery.propHooks.selected = { + get: function( elem ) { + + /* eslint no-unused-expressions: "off" */ + + var parent = elem.parentNode; + if ( parent && parent.parentNode ) { + parent.parentNode.selectedIndex; + } + return null; + }, + set: function( elem ) { + + /* eslint no-unused-expressions: "off" */ + + var parent = elem.parentNode; + if ( parent ) { + parent.selectedIndex; + + if ( parent.parentNode ) { + parent.parentNode.selectedIndex; + } + } + } + }; +} + +jQuery.each( [ + "tabIndex", + "readOnly", + "maxLength", + "cellSpacing", + "cellPadding", + "rowSpan", + "colSpan", + "useMap", + "frameBorder", + "contentEditable" +], function() { + jQuery.propFix[ this.toLowerCase() ] = this; +} ); + + + + + // Strip and collapse whitespace according to HTML spec + // https://infra.spec.whatwg.org/#strip-and-collapse-ascii-whitespace + function stripAndCollapse( value ) { + var tokens = value.match( rnothtmlwhite ) || []; + return tokens.join( " " ); + } + + +function getClass( elem ) { + return elem.getAttribute && elem.getAttribute( "class" ) || ""; +} + +function classesToArray( value ) { + if ( Array.isArray( value ) ) { + return value; + } + if ( typeof value === "string" ) { + return value.match( rnothtmlwhite ) || []; + } + return []; +} + +jQuery.fn.extend( { + addClass: function( value ) { + var classes, elem, cur, curValue, clazz, j, finalValue, + i = 0; + + if ( isFunction( value ) ) { + return this.each( function( j ) { + jQuery( this ).addClass( value.call( this, j, getClass( this ) ) ); + } ); + } + + classes = classesToArray( value ); + + if ( classes.length ) { + while ( ( elem = this[ i++ ] ) ) { + curValue = getClass( elem ); + cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " ); + + if ( cur ) { + j = 0; + while ( ( clazz = classes[ j++ ] ) ) { + if ( cur.indexOf( " " + clazz + " " ) < 0 ) { + cur += clazz + " "; + } + } + + // Only assign if different to avoid unneeded rendering. + finalValue = stripAndCollapse( cur ); + if ( curValue !== finalValue ) { + elem.setAttribute( "class", finalValue ); + } + } + } + } + + return this; + }, + + removeClass: function( value ) { + var classes, elem, cur, curValue, clazz, j, finalValue, + i = 0; + + if ( isFunction( value ) ) { + return this.each( function( j ) { + jQuery( this ).removeClass( value.call( this, j, getClass( this ) ) ); + } ); + } + + if ( !arguments.length ) { + return this.attr( "class", "" ); + } + + classes = classesToArray( value ); + + if ( classes.length ) { + while ( ( elem = this[ i++ ] ) ) { + curValue = getClass( elem ); + + // This expression is here for better compressibility (see addClass) + cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " ); + + if ( cur ) { + j = 0; + while ( ( clazz = classes[ j++ ] ) ) { + + // Remove *all* instances + while ( cur.indexOf( " " + clazz + " " ) > -1 ) { + cur = cur.replace( " " + clazz + " ", " " ); + } + } + + // Only assign if different to avoid unneeded rendering. + finalValue = stripAndCollapse( cur ); + if ( curValue !== finalValue ) { + elem.setAttribute( "class", finalValue ); + } + } + } + } + + return this; + }, + + toggleClass: function( value, stateVal ) { + var type = typeof value, + isValidValue = type === "string" || Array.isArray( value ); + + if ( typeof stateVal === "boolean" && isValidValue ) { + return stateVal ? this.addClass( value ) : this.removeClass( value ); + } + + if ( isFunction( value ) ) { + return this.each( function( i ) { + jQuery( this ).toggleClass( + value.call( this, i, getClass( this ), stateVal ), + stateVal + ); + } ); + } + + return this.each( function() { + var className, i, self, classNames; + + if ( isValidValue ) { + + // Toggle individual class names + i = 0; + self = jQuery( this ); + classNames = classesToArray( value ); + + while ( ( className = classNames[ i++ ] ) ) { + + // Check each className given, space separated list + if ( self.hasClass( className ) ) { + self.removeClass( className ); + } else { + self.addClass( className ); + } + } + + // Toggle whole class name + } else if ( value === undefined || type === "boolean" ) { + className = getClass( this ); + if ( className ) { + + // Store className if set + dataPriv.set( this, "__className__", className ); + } + + // If the element has a class name or if we're passed `false`, + // then remove the whole classname (if there was one, the above saved it). + // Otherwise bring back whatever was previously saved (if anything), + // falling back to the empty string if nothing was stored. + if ( this.setAttribute ) { + this.setAttribute( "class", + className || value === false ? + "" : + dataPriv.get( this, "__className__" ) || "" + ); + } + } + } ); + }, + + hasClass: function( selector ) { + var className, elem, + i = 0; + + className = " " + selector + " "; + while ( ( elem = this[ i++ ] ) ) { + if ( elem.nodeType === 1 && + ( " " + stripAndCollapse( getClass( elem ) ) + " " ).indexOf( className ) > -1 ) { + return true; + } + } + + return false; + } +} ); + + + + +var rreturn = /\r/g; + +jQuery.fn.extend( { + val: function( value ) { + var hooks, ret, valueIsFunction, + elem = this[ 0 ]; + + if ( !arguments.length ) { + if ( elem ) { + hooks = jQuery.valHooks[ elem.type ] || + jQuery.valHooks[ elem.nodeName.toLowerCase() ]; + + if ( hooks && + "get" in hooks && + ( ret = hooks.get( elem, "value" ) ) !== undefined + ) { + return ret; + } + + ret = elem.value; + + // Handle most common string cases + if ( typeof ret === "string" ) { + return ret.replace( rreturn, "" ); + } + + // Handle cases where value is null/undef or number + return ret == null ? "" : ret; + } + + return; + } + + valueIsFunction = isFunction( value ); + + return this.each( function( i ) { + var val; + + if ( this.nodeType !== 1 ) { + return; + } + + if ( valueIsFunction ) { + val = value.call( this, i, jQuery( this ).val() ); + } else { + val = value; + } + + // Treat null/undefined as ""; convert numbers to string + if ( val == null ) { + val = ""; + + } else if ( typeof val === "number" ) { + val += ""; + + } else if ( Array.isArray( val ) ) { + val = jQuery.map( val, function( value ) { + return value == null ? "" : value + ""; + } ); + } + + hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ]; + + // If set returns undefined, fall back to normal setting + if ( !hooks || !( "set" in hooks ) || hooks.set( this, val, "value" ) === undefined ) { + this.value = val; + } + } ); + } +} ); + +jQuery.extend( { + valHooks: { + option: { + get: function( elem ) { + + var val = jQuery.find.attr( elem, "value" ); + return val != null ? + val : + + // Support: IE <=10 - 11 only + // option.text throws exceptions (#14686, #14858) + // Strip and collapse whitespace + // https://html.spec.whatwg.org/#strip-and-collapse-whitespace + stripAndCollapse( jQuery.text( elem ) ); + } + }, + select: { + get: function( elem ) { + var value, option, i, + options = elem.options, + index = elem.selectedIndex, + one = elem.type === "select-one", + values = one ? null : [], + max = one ? index + 1 : options.length; + + if ( index < 0 ) { + i = max; + + } else { + i = one ? index : 0; + } + + // Loop through all the selected options + for ( ; i < max; i++ ) { + option = options[ i ]; + + // Support: IE <=9 only + // IE8-9 doesn't update selected after form reset (#2551) + if ( ( option.selected || i === index ) && + + // Don't return options that are disabled or in a disabled optgroup + !option.disabled && + ( !option.parentNode.disabled || + !nodeName( option.parentNode, "optgroup" ) ) ) { + + // Get the specific value for the option + value = jQuery( option ).val(); + + // We don't need an array for one selects + if ( one ) { + return value; + } + + // Multi-Selects return an array + values.push( value ); + } + } + + return values; + }, + + set: function( elem, value ) { + var optionSet, option, + options = elem.options, + values = jQuery.makeArray( value ), + i = options.length; + + while ( i-- ) { + option = options[ i ]; + + /* eslint-disable no-cond-assign */ + + if ( option.selected = + jQuery.inArray( jQuery.valHooks.option.get( option ), values ) > -1 + ) { + optionSet = true; + } + + /* eslint-enable no-cond-assign */ + } + + // Force browsers to behave consistently when non-matching value is set + if ( !optionSet ) { + elem.selectedIndex = -1; + } + return values; + } + } + } +} ); + +// Radios and checkboxes getter/setter +jQuery.each( [ "radio", "checkbox" ], function() { + jQuery.valHooks[ this ] = { + set: function( elem, value ) { + if ( Array.isArray( value ) ) { + return ( elem.checked = jQuery.inArray( jQuery( elem ).val(), value ) > -1 ); + } + } + }; + if ( !support.checkOn ) { + jQuery.valHooks[ this ].get = function( elem ) { + return elem.getAttribute( "value" ) === null ? "on" : elem.value; + }; + } +} ); + + + + +// Return jQuery for attributes-only inclusion + + +support.focusin = "onfocusin" in window; + + +var rfocusMorph = /^(?:focusinfocus|focusoutblur)$/, + stopPropagationCallback = function( e ) { + e.stopPropagation(); + }; + +jQuery.extend( jQuery.event, { + + trigger: function( event, data, elem, onlyHandlers ) { + + var i, cur, tmp, bubbleType, ontype, handle, special, lastElement, + eventPath = [ elem || document ], + type = hasOwn.call( event, "type" ) ? event.type : event, + namespaces = hasOwn.call( event, "namespace" ) ? event.namespace.split( "." ) : []; + + cur = lastElement = tmp = elem = elem || document; + + // Don't do events on text and comment nodes + if ( elem.nodeType === 3 || elem.nodeType === 8 ) { + return; + } + + // focus/blur morphs to focusin/out; ensure we're not firing them right now + if ( rfocusMorph.test( type + jQuery.event.triggered ) ) { + return; + } + + if ( type.indexOf( "." ) > -1 ) { + + // Namespaced trigger; create a regexp to match event type in handle() + namespaces = type.split( "." ); + type = namespaces.shift(); + namespaces.sort(); + } + ontype = type.indexOf( ":" ) < 0 && "on" + type; + + // Caller can pass in a jQuery.Event object, Object, or just an event type string + event = event[ jQuery.expando ] ? + event : + new jQuery.Event( type, typeof event === "object" && event ); + + // Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true) + event.isTrigger = onlyHandlers ? 2 : 3; + event.namespace = namespaces.join( "." ); + event.rnamespace = event.namespace ? + new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ) : + null; + + // Clean up the event in case it is being reused + event.result = undefined; + if ( !event.target ) { + event.target = elem; + } + + // Clone any incoming data and prepend the event, creating the handler arg list + data = data == null ? + [ event ] : + jQuery.makeArray( data, [ event ] ); + + // Allow special events to draw outside the lines + special = jQuery.event.special[ type ] || {}; + if ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) { + return; + } + + // Determine event propagation path in advance, per W3C events spec (#9951) + // Bubble up to document, then to window; watch for a global ownerDocument var (#9724) + if ( !onlyHandlers && !special.noBubble && !isWindow( elem ) ) { + + bubbleType = special.delegateType || type; + if ( !rfocusMorph.test( bubbleType + type ) ) { + cur = cur.parentNode; + } + for ( ; cur; cur = cur.parentNode ) { + eventPath.push( cur ); + tmp = cur; + } + + // Only add window if we got to document (e.g., not plain obj or detached DOM) + if ( tmp === ( elem.ownerDocument || document ) ) { + eventPath.push( tmp.defaultView || tmp.parentWindow || window ); + } + } + + // Fire handlers on the event path + i = 0; + while ( ( cur = eventPath[ i++ ] ) && !event.isPropagationStopped() ) { + lastElement = cur; + event.type = i > 1 ? + bubbleType : + special.bindType || type; + + // jQuery handler + handle = ( dataPriv.get( cur, "events" ) || {} )[ event.type ] && + dataPriv.get( cur, "handle" ); + if ( handle ) { + handle.apply( cur, data ); + } + + // Native handler + handle = ontype && cur[ ontype ]; + if ( handle && handle.apply && acceptData( cur ) ) { + event.result = handle.apply( cur, data ); + if ( event.result === false ) { + event.preventDefault(); + } + } + } + event.type = type; + + // If nobody prevented the default action, do it now + if ( !onlyHandlers && !event.isDefaultPrevented() ) { + + if ( ( !special._default || + special._default.apply( eventPath.pop(), data ) === false ) && + acceptData( elem ) ) { + + // Call a native DOM method on the target with the same name as the event. + // Don't do default actions on window, that's where global variables be (#6170) + if ( ontype && isFunction( elem[ type ] ) && !isWindow( elem ) ) { + + // Don't re-trigger an onFOO event when we call its FOO() method + tmp = elem[ ontype ]; + + if ( tmp ) { + elem[ ontype ] = null; + } + + // Prevent re-triggering of the same event, since we already bubbled it above + jQuery.event.triggered = type; + + if ( event.isPropagationStopped() ) { + lastElement.addEventListener( type, stopPropagationCallback ); + } + + elem[ type ](); + + if ( event.isPropagationStopped() ) { + lastElement.removeEventListener( type, stopPropagationCallback ); + } + + jQuery.event.triggered = undefined; + + if ( tmp ) { + elem[ ontype ] = tmp; + } + } + } + } + + return event.result; + }, + + // Piggyback on a donor event to simulate a different one + // Used only for `focus(in | out)` events + simulate: function( type, elem, event ) { + var e = jQuery.extend( + new jQuery.Event(), + event, + { + type: type, + isSimulated: true + } + ); + + jQuery.event.trigger( e, null, elem ); + } + +} ); + +jQuery.fn.extend( { + + trigger: function( type, data ) { + return this.each( function() { + jQuery.event.trigger( type, data, this ); + } ); + }, + triggerHandler: function( type, data ) { + var elem = this[ 0 ]; + if ( elem ) { + return jQuery.event.trigger( type, data, elem, true ); + } + } +} ); + + +// Support: Firefox <=44 +// Firefox doesn't have focus(in | out) events +// Related ticket - https://bugzilla.mozilla.org/show_bug.cgi?id=687787 +// +// Support: Chrome <=48 - 49, Safari <=9.0 - 9.1 +// focus(in | out) events fire after focus & blur events, +// which is spec violation - http://www.w3.org/TR/DOM-Level-3-Events/#events-focusevent-event-order +// Related ticket - https://bugs.chromium.org/p/chromium/issues/detail?id=449857 +if ( !support.focusin ) { + jQuery.each( { focus: "focusin", blur: "focusout" }, function( orig, fix ) { + + // Attach a single capturing handler on the document while someone wants focusin/focusout + var handler = function( event ) { + jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ) ); + }; + + jQuery.event.special[ fix ] = { + setup: function() { + var doc = this.ownerDocument || this, + attaches = dataPriv.access( doc, fix ); + + if ( !attaches ) { + doc.addEventListener( orig, handler, true ); + } + dataPriv.access( doc, fix, ( attaches || 0 ) + 1 ); + }, + teardown: function() { + var doc = this.ownerDocument || this, + attaches = dataPriv.access( doc, fix ) - 1; + + if ( !attaches ) { + doc.removeEventListener( orig, handler, true ); + dataPriv.remove( doc, fix ); + + } else { + dataPriv.access( doc, fix, attaches ); + } + } + }; + } ); +} +var location = window.location; + +var nonce = Date.now(); + +var rquery = ( /\?/ ); + + + +// Cross-browser xml parsing +jQuery.parseXML = function( data ) { + var xml; + if ( !data || typeof data !== "string" ) { + return null; + } + + // Support: IE 9 - 11 only + // IE throws on parseFromString with invalid input. + try { + xml = ( new window.DOMParser() ).parseFromString( data, "text/xml" ); + } catch ( e ) { + xml = undefined; + } + + if ( !xml || xml.getElementsByTagName( "parsererror" ).length ) { + jQuery.error( "Invalid XML: " + data ); + } + return xml; +}; + + +var + rbracket = /\[\]$/, + rCRLF = /\r?\n/g, + rsubmitterTypes = /^(?:submit|button|image|reset|file)$/i, + rsubmittable = /^(?:input|select|textarea|keygen)/i; + +function buildParams( prefix, obj, traditional, add ) { + var name; + + if ( Array.isArray( obj ) ) { + + // Serialize array item. + jQuery.each( obj, function( i, v ) { + if ( traditional || rbracket.test( prefix ) ) { + + // Treat each array item as a scalar. + add( prefix, v ); + + } else { + + // Item is non-scalar (array or object), encode its numeric index. + buildParams( + prefix + "[" + ( typeof v === "object" && v != null ? i : "" ) + "]", + v, + traditional, + add + ); + } + } ); + + } else if ( !traditional && toType( obj ) === "object" ) { + + // Serialize object item. + for ( name in obj ) { + buildParams( prefix + "[" + name + "]", obj[ name ], traditional, add ); + } + + } else { + + // Serialize scalar item. + add( prefix, obj ); + } +} + +// Serialize an array of form elements or a set of +// key/values into a query string +jQuery.param = function( a, traditional ) { + var prefix, + s = [], + add = function( key, valueOrFunction ) { + + // If value is a function, invoke it and use its return value + var value = isFunction( valueOrFunction ) ? + valueOrFunction() : + valueOrFunction; + + s[ s.length ] = encodeURIComponent( key ) + "=" + + encodeURIComponent( value == null ? "" : value ); + }; + + if ( a == null ) { + return ""; + } + + // If an array was passed in, assume that it is an array of form elements. + if ( Array.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) { + + // Serialize the form elements + jQuery.each( a, function() { + add( this.name, this.value ); + } ); + + } else { + + // If traditional, encode the "old" way (the way 1.3.2 or older + // did it), otherwise encode params recursively. + for ( prefix in a ) { + buildParams( prefix, a[ prefix ], traditional, add ); + } + } + + // Return the resulting serialization + return s.join( "&" ); +}; + +jQuery.fn.extend( { + serialize: function() { + return jQuery.param( this.serializeArray() ); + }, + serializeArray: function() { + return this.map( function() { + + // Can add propHook for "elements" to filter or add form elements + var elements = jQuery.prop( this, "elements" ); + return elements ? jQuery.makeArray( elements ) : this; + } ) + .filter( function() { + var type = this.type; + + // Use .is( ":disabled" ) so that fieldset[disabled] works + return this.name && !jQuery( this ).is( ":disabled" ) && + rsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) && + ( this.checked || !rcheckableType.test( type ) ); + } ) + .map( function( i, elem ) { + var val = jQuery( this ).val(); + + if ( val == null ) { + return null; + } + + if ( Array.isArray( val ) ) { + return jQuery.map( val, function( val ) { + return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; + } ); + } + + return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; + } ).get(); + } +} ); + + +var + r20 = /%20/g, + rhash = /#.*$/, + rantiCache = /([?&])_=[^&]*/, + rheaders = /^(.*?):[ \t]*([^\r\n]*)$/mg, + + // #7653, #8125, #8152: local protocol detection + rlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/, + rnoContent = /^(?:GET|HEAD)$/, + rprotocol = /^\/\//, + + /* Prefilters + * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example) + * 2) These are called: + * - BEFORE asking for a transport + * - AFTER param serialization (s.data is a string if s.processData is true) + * 3) key is the dataType + * 4) the catchall symbol "*" can be used + * 5) execution will start with transport dataType and THEN continue down to "*" if needed + */ + prefilters = {}, + + /* Transports bindings + * 1) key is the dataType + * 2) the catchall symbol "*" can be used + * 3) selection will start with transport dataType and THEN go to "*" if needed + */ + transports = {}, + + // Avoid comment-prolog char sequence (#10098); must appease lint and evade compression + allTypes = "*/".concat( "*" ), + + // Anchor tag for parsing the document origin + originAnchor = document.createElement( "a" ); + originAnchor.href = location.href; + +// Base "constructor" for jQuery.ajaxPrefilter and jQuery.ajaxTransport +function addToPrefiltersOrTransports( structure ) { + + // dataTypeExpression is optional and defaults to "*" + return function( dataTypeExpression, func ) { + + if ( typeof dataTypeExpression !== "string" ) { + func = dataTypeExpression; + dataTypeExpression = "*"; + } + + var dataType, + i = 0, + dataTypes = dataTypeExpression.toLowerCase().match( rnothtmlwhite ) || []; + + if ( isFunction( func ) ) { + + // For each dataType in the dataTypeExpression + while ( ( dataType = dataTypes[ i++ ] ) ) { + + // Prepend if requested + if ( dataType[ 0 ] === "+" ) { + dataType = dataType.slice( 1 ) || "*"; + ( structure[ dataType ] = structure[ dataType ] || [] ).unshift( func ); + + // Otherwise append + } else { + ( structure[ dataType ] = structure[ dataType ] || [] ).push( func ); + } + } + } + }; +} + +// Base inspection function for prefilters and transports +function inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) { + + var inspected = {}, + seekingTransport = ( structure === transports ); + + function inspect( dataType ) { + var selected; + inspected[ dataType ] = true; + jQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) { + var dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR ); + if ( typeof dataTypeOrTransport === "string" && + !seekingTransport && !inspected[ dataTypeOrTransport ] ) { + + options.dataTypes.unshift( dataTypeOrTransport ); + inspect( dataTypeOrTransport ); + return false; + } else if ( seekingTransport ) { + return !( selected = dataTypeOrTransport ); + } + } ); + return selected; + } + + return inspect( options.dataTypes[ 0 ] ) || !inspected[ "*" ] && inspect( "*" ); +} + +// A special extend for ajax options +// that takes "flat" options (not to be deep extended) +// Fixes #9887 +function ajaxExtend( target, src ) { + var key, deep, + flatOptions = jQuery.ajaxSettings.flatOptions || {}; + + for ( key in src ) { + if ( src[ key ] !== undefined ) { + ( flatOptions[ key ] ? target : ( deep || ( deep = {} ) ) )[ key ] = src[ key ]; + } + } + if ( deep ) { + jQuery.extend( true, target, deep ); + } + + return target; +} + +/* Handles responses to an ajax request: + * - finds the right dataType (mediates between content-type and expected dataType) + * - returns the corresponding response + */ +function ajaxHandleResponses( s, jqXHR, responses ) { + + var ct, type, finalDataType, firstDataType, + contents = s.contents, + dataTypes = s.dataTypes; + + // Remove auto dataType and get content-type in the process + while ( dataTypes[ 0 ] === "*" ) { + dataTypes.shift(); + if ( ct === undefined ) { + ct = s.mimeType || jqXHR.getResponseHeader( "Content-Type" ); + } + } + + // Check if we're dealing with a known content-type + if ( ct ) { + for ( type in contents ) { + if ( contents[ type ] && contents[ type ].test( ct ) ) { + dataTypes.unshift( type ); + break; + } + } + } + + // Check to see if we have a response for the expected dataType + if ( dataTypes[ 0 ] in responses ) { + finalDataType = dataTypes[ 0 ]; + } else { + + // Try convertible dataTypes + for ( type in responses ) { + if ( !dataTypes[ 0 ] || s.converters[ type + " " + dataTypes[ 0 ] ] ) { + finalDataType = type; + break; + } + if ( !firstDataType ) { + firstDataType = type; + } + } + + // Or just use first one + finalDataType = finalDataType || firstDataType; + } + + // If we found a dataType + // We add the dataType to the list if needed + // and return the corresponding response + if ( finalDataType ) { + if ( finalDataType !== dataTypes[ 0 ] ) { + dataTypes.unshift( finalDataType ); + } + return responses[ finalDataType ]; + } +} + +/* Chain conversions given the request and the original response + * Also sets the responseXXX fields on the jqXHR instance + */ +function ajaxConvert( s, response, jqXHR, isSuccess ) { + var conv2, current, conv, tmp, prev, + converters = {}, + + // Work with a copy of dataTypes in case we need to modify it for conversion + dataTypes = s.dataTypes.slice(); + + // Create converters map with lowercased keys + if ( dataTypes[ 1 ] ) { + for ( conv in s.converters ) { + converters[ conv.toLowerCase() ] = s.converters[ conv ]; + } + } + + current = dataTypes.shift(); + + // Convert to each sequential dataType + while ( current ) { + + if ( s.responseFields[ current ] ) { + jqXHR[ s.responseFields[ current ] ] = response; + } + + // Apply the dataFilter if provided + if ( !prev && isSuccess && s.dataFilter ) { + response = s.dataFilter( response, s.dataType ); + } + + prev = current; + current = dataTypes.shift(); + + if ( current ) { + + // There's only work to do if current dataType is non-auto + if ( current === "*" ) { + + current = prev; + + // Convert response if prev dataType is non-auto and differs from current + } else if ( prev !== "*" && prev !== current ) { + + // Seek a direct converter + conv = converters[ prev + " " + current ] || converters[ "* " + current ]; + + // If none found, seek a pair + if ( !conv ) { + for ( conv2 in converters ) { + + // If conv2 outputs current + tmp = conv2.split( " " ); + if ( tmp[ 1 ] === current ) { + + // If prev can be converted to accepted input + conv = converters[ prev + " " + tmp[ 0 ] ] || + converters[ "* " + tmp[ 0 ] ]; + if ( conv ) { + + // Condense equivalence converters + if ( conv === true ) { + conv = converters[ conv2 ]; + + // Otherwise, insert the intermediate dataType + } else if ( converters[ conv2 ] !== true ) { + current = tmp[ 0 ]; + dataTypes.unshift( tmp[ 1 ] ); + } + break; + } + } + } + } + + // Apply converter (if not an equivalence) + if ( conv !== true ) { + + // Unless errors are allowed to bubble, catch and return them + if ( conv && s.throws ) { + response = conv( response ); + } else { + try { + response = conv( response ); + } catch ( e ) { + return { + state: "parsererror", + error: conv ? e : "No conversion from " + prev + " to " + current + }; + } + } + } + } + } + } + + return { state: "success", data: response }; +} + +jQuery.extend( { + + // Counter for holding the number of active queries + active: 0, + + // Last-Modified header cache for next request + lastModified: {}, + etag: {}, + + ajaxSettings: { + url: location.href, + type: "GET", + isLocal: rlocalProtocol.test( location.protocol ), + global: true, + processData: true, + async: true, + contentType: "application/x-www-form-urlencoded; charset=UTF-8", + + /* + timeout: 0, + data: null, + dataType: null, + username: null, + password: null, + cache: null, + throws: false, + traditional: false, + headers: {}, + */ + + accepts: { + "*": allTypes, + 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" + }, + + // Data converters + // Keys separate source (or catchall "*") and destination types with a single space + converters: { + + // Convert anything to text + "* text": String, + + // Text to html (true = no transformation) + "text html": true, + + // Evaluate text as a json expression + "text json": JSON.parse, + + // Parse text as xml + "text xml": jQuery.parseXML + }, + + // For options that shouldn't be deep extended: + // you can add your own custom options here if + // and when you create one that shouldn't be + // deep extended (see ajaxExtend) + flatOptions: { + url: true, + context: true + } + }, + + // Creates a full fledged settings object into target + // with both ajaxSettings and settings fields. + // If target is omitted, writes into ajaxSettings. + ajaxSetup: function( target, settings ) { + return settings ? + + // Building a settings object + ajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) : + + // Extending ajaxSettings + ajaxExtend( jQuery.ajaxSettings, target ); + }, + + ajaxPrefilter: addToPrefiltersOrTransports( prefilters ), + ajaxTransport: addToPrefiltersOrTransports( transports ), + + // Main method + ajax: function( url, options ) { + + // If url is an object, simulate pre-1.5 signature + if ( typeof url === "object" ) { + options = url; + url = undefined; + } + + // Force options to be an object + options = options || {}; + + var transport, + + // URL without anti-cache param + cacheURL, + + // Response headers + responseHeadersString, + responseHeaders, + + // timeout handle + timeoutTimer, + + // Url cleanup var + urlAnchor, + + // Request state (becomes false upon send and true upon completion) + completed, + + // To know if global events are to be dispatched + fireGlobals, + + // Loop variable + i, + + // uncached part of the url + uncached, + + // Create the final options object + s = jQuery.ajaxSetup( {}, options ), + + // Callbacks context + callbackContext = s.context || s, + + // Context for global events is callbackContext if it is a DOM node or jQuery collection + globalEventContext = s.context && + ( callbackContext.nodeType || callbackContext.jquery ) ? + jQuery( callbackContext ) : + jQuery.event, + + // Deferreds + deferred = jQuery.Deferred(), + completeDeferred = jQuery.Callbacks( "once memory" ), + + // Status-dependent callbacks + statusCode = s.statusCode || {}, + + // Headers (they are sent all at once) + requestHeaders = {}, + requestHeadersNames = {}, + + // Default abort message + strAbort = "canceled", + + // Fake xhr + jqXHR = { + readyState: 0, + + // Builds headers hashtable if needed + getResponseHeader: function( key ) { + var match; + if ( completed ) { + if ( !responseHeaders ) { + responseHeaders = {}; + while ( ( match = rheaders.exec( responseHeadersString ) ) ) { + responseHeaders[ match[ 1 ].toLowerCase() + " " ] = + ( responseHeaders[ match[ 1 ].toLowerCase() + " " ] || [] ) + .concat( match[ 2 ] ); + } + } + match = responseHeaders[ key.toLowerCase() + " " ]; + } + return match == null ? null : match.join( ", " ); + }, + + // Raw string + getAllResponseHeaders: function() { + return completed ? responseHeadersString : null; + }, + + // Caches the header + setRequestHeader: function( name, value ) { + if ( completed == null ) { + name = requestHeadersNames[ name.toLowerCase() ] = + requestHeadersNames[ name.toLowerCase() ] || name; + requestHeaders[ name ] = value; + } + return this; + }, + + // Overrides response content-type header + overrideMimeType: function( type ) { + if ( completed == null ) { + s.mimeType = type; + } + return this; + }, + + // Status-dependent callbacks + statusCode: function( map ) { + var code; + if ( map ) { + if ( completed ) { + + // Execute the appropriate callbacks + jqXHR.always( map[ jqXHR.status ] ); + } else { + + // Lazy-add the new callbacks in a way that preserves old ones + for ( code in map ) { + statusCode[ code ] = [ statusCode[ code ], map[ code ] ]; + } + } + } + return this; + }, + + // Cancel the request + abort: function( statusText ) { + var finalText = statusText || strAbort; + if ( transport ) { + transport.abort( finalText ); + } + done( 0, finalText ); + return this; + } + }; + + // Attach deferreds + deferred.promise( jqXHR ); + + // Add protocol if not provided (prefilters might expect it) + // Handle falsy url in the settings object (#10093: consistency with old signature) + // We also use the url parameter if available + s.url = ( ( url || s.url || location.href ) + "" ) + .replace( rprotocol, location.protocol + "//" ); + + // Alias method option to type as per ticket #12004 + s.type = options.method || options.type || s.method || s.type; + + // Extract dataTypes list + s.dataTypes = ( s.dataType || "*" ).toLowerCase().match( rnothtmlwhite ) || [ "" ]; + + // A cross-domain request is in order when the origin doesn't match the current origin. + if ( s.crossDomain == null ) { + urlAnchor = document.createElement( "a" ); + + // Support: IE <=8 - 11, Edge 12 - 15 + // IE throws exception on accessing the href property if url is malformed, + // e.g. http://example.com:80x/ + try { + urlAnchor.href = s.url; + + // Support: IE <=8 - 11 only + // Anchor's host property isn't correctly set when s.url is relative + urlAnchor.href = urlAnchor.href; + s.crossDomain = originAnchor.protocol + "//" + originAnchor.host !== + urlAnchor.protocol + "//" + urlAnchor.host; + } catch ( e ) { + + // If there is an error parsing the URL, assume it is crossDomain, + // it can be rejected by the transport if it is invalid + s.crossDomain = true; + } + } + + // Convert data if not already a string + if ( s.data && s.processData && typeof s.data !== "string" ) { + s.data = jQuery.param( s.data, s.traditional ); + } + + // Apply prefilters + inspectPrefiltersOrTransports( prefilters, s, options, jqXHR ); + + // If request was aborted inside a prefilter, stop there + if ( completed ) { + return jqXHR; + } + + // We can fire global events as of now if asked to + // Don't fire events if jQuery.event is undefined in an AMD-usage scenario (#15118) + fireGlobals = jQuery.event && s.global; + + // Watch for a new set of requests + if ( fireGlobals && jQuery.active++ === 0 ) { + jQuery.event.trigger( "ajaxStart" ); + } + + // Uppercase the type + s.type = s.type.toUpperCase(); + + // Determine if request has content + s.hasContent = !rnoContent.test( s.type ); + + // Save the URL in case we're toying with the If-Modified-Since + // and/or If-None-Match header later on + // Remove hash to simplify url manipulation + cacheURL = s.url.replace( rhash, "" ); + + // More options handling for requests with no content + if ( !s.hasContent ) { + + // Remember the hash so we can put it back + uncached = s.url.slice( cacheURL.length ); + + // If data is available and should be processed, append data to url + if ( s.data && ( s.processData || typeof s.data === "string" ) ) { + cacheURL += ( rquery.test( cacheURL ) ? "&" : "?" ) + s.data; + + // #9682: remove data so that it's not used in an eventual retry + delete s.data; + } + + // Add or update anti-cache param if needed + if ( s.cache === false ) { + cacheURL = cacheURL.replace( rantiCache, "$1" ); + uncached = ( rquery.test( cacheURL ) ? "&" : "?" ) + "_=" + ( nonce++ ) + uncached; + } + + // Put hash and anti-cache on the URL that will be requested (gh-1732) + s.url = cacheURL + uncached; + + // Change '%20' to '+' if this is encoded form body content (gh-2658) + } else if ( s.data && s.processData && + ( s.contentType || "" ).indexOf( "application/x-www-form-urlencoded" ) === 0 ) { + s.data = s.data.replace( r20, "+" ); + } + + // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. + if ( s.ifModified ) { + if ( jQuery.lastModified[ cacheURL ] ) { + jqXHR.setRequestHeader( "If-Modified-Since", jQuery.lastModified[ cacheURL ] ); + } + if ( jQuery.etag[ cacheURL ] ) { + jqXHR.setRequestHeader( "If-None-Match", jQuery.etag[ cacheURL ] ); + } + } + + // Set the correct header, if data is being sent + if ( s.data && s.hasContent && s.contentType !== false || options.contentType ) { + jqXHR.setRequestHeader( "Content-Type", s.contentType ); + } + + // Set the Accepts header for the server, depending on the dataType + jqXHR.setRequestHeader( + "Accept", + s.dataTypes[ 0 ] && s.accepts[ s.dataTypes[ 0 ] ] ? + s.accepts[ s.dataTypes[ 0 ] ] + + ( s.dataTypes[ 0 ] !== "*" ? ", " + allTypes + "; q=0.01" : "" ) : + s.accepts[ "*" ] + ); + + // Check for headers option + for ( i in s.headers ) { + jqXHR.setRequestHeader( i, s.headers[ i ] ); + } + + // Allow custom headers/mimetypes and early abort + if ( s.beforeSend && + ( s.beforeSend.call( callbackContext, jqXHR, s ) === false || completed ) ) { + + // Abort if not done already and return + return jqXHR.abort(); + } + + // Aborting is no longer a cancellation + strAbort = "abort"; + + // Install callbacks on deferreds + completeDeferred.add( s.complete ); + jqXHR.done( s.success ); + jqXHR.fail( s.error ); + + // Get transport + transport = inspectPrefiltersOrTransports( transports, s, options, jqXHR ); + + // If no transport, we auto-abort + if ( !transport ) { + done( -1, "No Transport" ); + } else { + jqXHR.readyState = 1; + + // Send global event + if ( fireGlobals ) { + globalEventContext.trigger( "ajaxSend", [ jqXHR, s ] ); + } + + // If request was aborted inside ajaxSend, stop there + if ( completed ) { + return jqXHR; + } + + // Timeout + if ( s.async && s.timeout > 0 ) { + timeoutTimer = window.setTimeout( function() { + jqXHR.abort( "timeout" ); + }, s.timeout ); + } + + try { + completed = false; + transport.send( requestHeaders, done ); + } catch ( e ) { + + // Rethrow post-completion exceptions + if ( completed ) { + throw e; + } + + // Propagate others as results + done( -1, e ); + } + } + + // Callback for when everything is done + function done( status, nativeStatusText, responses, headers ) { + var isSuccess, success, error, response, modified, + statusText = nativeStatusText; + + // Ignore repeat invocations + if ( completed ) { + return; + } + + completed = true; + + // Clear timeout if it exists + if ( timeoutTimer ) { + window.clearTimeout( timeoutTimer ); + } + + // Dereference transport for early garbage collection + // (no matter how long the jqXHR object will be used) + transport = undefined; + + // Cache response headers + responseHeadersString = headers || ""; + + // Set readyState + jqXHR.readyState = status > 0 ? 4 : 0; + + // Determine if successful + isSuccess = status >= 200 && status < 300 || status === 304; + + // Get response data + if ( responses ) { + response = ajaxHandleResponses( s, jqXHR, responses ); + } + + // Convert no matter what (that way responseXXX fields are always set) + response = ajaxConvert( s, response, jqXHR, isSuccess ); + + // If successful, handle type chaining + if ( isSuccess ) { + + // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. + if ( s.ifModified ) { + modified = jqXHR.getResponseHeader( "Last-Modified" ); + if ( modified ) { + jQuery.lastModified[ cacheURL ] = modified; + } + modified = jqXHR.getResponseHeader( "etag" ); + if ( modified ) { + jQuery.etag[ cacheURL ] = modified; + } + } + + // if no content + if ( status === 204 || s.type === "HEAD" ) { + statusText = "nocontent"; + + // if not modified + } else if ( status === 304 ) { + statusText = "notmodified"; + + // If we have data, let's convert it + } else { + statusText = response.state; + success = response.data; + error = response.error; + isSuccess = !error; + } + } else { + + // Extract error from statusText and normalize for non-aborts + error = statusText; + if ( status || !statusText ) { + statusText = "error"; + if ( status < 0 ) { + status = 0; + } + } + } + + // Set data for the fake xhr object + jqXHR.status = status; + jqXHR.statusText = ( nativeStatusText || statusText ) + ""; + + // Success/Error + if ( isSuccess ) { + deferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] ); + } else { + deferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] ); + } + + // Status-dependent callbacks + jqXHR.statusCode( statusCode ); + statusCode = undefined; + + if ( fireGlobals ) { + globalEventContext.trigger( isSuccess ? "ajaxSuccess" : "ajaxError", + [ jqXHR, s, isSuccess ? success : error ] ); + } + + // Complete + completeDeferred.fireWith( callbackContext, [ jqXHR, statusText ] ); + + if ( fireGlobals ) { + globalEventContext.trigger( "ajaxComplete", [ jqXHR, s ] ); + + // Handle the global AJAX counter + if ( !( --jQuery.active ) ) { + jQuery.event.trigger( "ajaxStop" ); + } + } + } + + return jqXHR; + }, + + getJSON: function( url, data, callback ) { + return jQuery.get( url, data, callback, "json" ); + }, + + getScript: function( url, callback ) { + return jQuery.get( url, undefined, callback, "script" ); + } +} ); + +jQuery.each( [ "get", "post" ], function( i, method ) { + jQuery[ method ] = function( url, data, callback, type ) { + + // Shift arguments if data argument was omitted + if ( isFunction( data ) ) { + type = type || callback; + callback = data; + data = undefined; + } + + // The url can be an options object (which then must have .url) + return jQuery.ajax( jQuery.extend( { + url: url, + type: method, + dataType: type, + data: data, + success: callback + }, jQuery.isPlainObject( url ) && url ) ); + }; +} ); + + +jQuery._evalUrl = function( url, options ) { + return jQuery.ajax( { + url: url, + + // Make this explicit, since user can override this through ajaxSetup (#11264) + type: "GET", + dataType: "script", + cache: true, + async: false, + global: false, + + // Only evaluate the response if it is successful (gh-4126) + // dataFilter is not invoked for failure responses, so using it instead + // of the default converter is kludgy but it works. + converters: { + "text script": function() {} + }, + dataFilter: function( response ) { + jQuery.globalEval( response, options ); + } + } ); +}; + + +jQuery.fn.extend( { + wrapAll: function( html ) { + var wrap; + + if ( this[ 0 ] ) { + if ( isFunction( html ) ) { + html = html.call( this[ 0 ] ); + } + + // The elements to wrap the target around + wrap = jQuery( html, this[ 0 ].ownerDocument ).eq( 0 ).clone( true ); + + if ( this[ 0 ].parentNode ) { + wrap.insertBefore( this[ 0 ] ); + } + + wrap.map( function() { + var elem = this; + + while ( elem.firstElementChild ) { + elem = elem.firstElementChild; + } + + return elem; + } ).append( this ); + } + + return this; + }, + + wrapInner: function( html ) { + if ( isFunction( html ) ) { + return this.each( function( i ) { + jQuery( this ).wrapInner( html.call( this, i ) ); + } ); + } + + return this.each( function() { + var self = jQuery( this ), + contents = self.contents(); + + if ( contents.length ) { + contents.wrapAll( html ); + + } else { + self.append( html ); + } + } ); + }, + + wrap: function( html ) { + var htmlIsFunction = isFunction( html ); + + return this.each( function( i ) { + jQuery( this ).wrapAll( htmlIsFunction ? html.call( this, i ) : html ); + } ); + }, + + unwrap: function( selector ) { + this.parent( selector ).not( "body" ).each( function() { + jQuery( this ).replaceWith( this.childNodes ); + } ); + return this; + } +} ); + + +jQuery.expr.pseudos.hidden = function( elem ) { + return !jQuery.expr.pseudos.visible( elem ); +}; +jQuery.expr.pseudos.visible = function( elem ) { + return !!( elem.offsetWidth || elem.offsetHeight || elem.getClientRects().length ); +}; + + + + +jQuery.ajaxSettings.xhr = function() { + try { + return new window.XMLHttpRequest(); + } catch ( e ) {} +}; + +var xhrSuccessStatus = { + + // File protocol always yields status code 0, assume 200 + 0: 200, + + // Support: IE <=9 only + // #1450: sometimes IE returns 1223 when it should be 204 + 1223: 204 + }, + xhrSupported = jQuery.ajaxSettings.xhr(); + +support.cors = !!xhrSupported && ( "withCredentials" in xhrSupported ); +support.ajax = xhrSupported = !!xhrSupported; + +jQuery.ajaxTransport( function( options ) { + var callback, errorCallback; + + // Cross domain only allowed if supported through XMLHttpRequest + if ( support.cors || xhrSupported && !options.crossDomain ) { + return { + send: function( headers, complete ) { + var i, + xhr = options.xhr(); + + xhr.open( + options.type, + options.url, + options.async, + options.username, + options.password + ); + + // Apply custom fields if provided + if ( options.xhrFields ) { + for ( i in options.xhrFields ) { + xhr[ i ] = options.xhrFields[ i ]; + } + } + + // Override mime type if needed + if ( options.mimeType && xhr.overrideMimeType ) { + xhr.overrideMimeType( options.mimeType ); + } + + // X-Requested-With header + // For cross-domain requests, seeing as conditions for a preflight are + // akin to a jigsaw puzzle, we simply never set it to be sure. + // (it can always be set on a per-request basis or even using ajaxSetup) + // For same-domain requests, won't change header if already provided. + if ( !options.crossDomain && !headers[ "X-Requested-With" ] ) { + headers[ "X-Requested-With" ] = "XMLHttpRequest"; + } + + // Set headers + for ( i in headers ) { + xhr.setRequestHeader( i, headers[ i ] ); + } + + // Callback + callback = function( type ) { + return function() { + if ( callback ) { + callback = errorCallback = xhr.onload = + xhr.onerror = xhr.onabort = xhr.ontimeout = + xhr.onreadystatechange = null; + + if ( type === "abort" ) { + xhr.abort(); + } else if ( type === "error" ) { + + // Support: IE <=9 only + // On a manual native abort, IE9 throws + // errors on any property access that is not readyState + if ( typeof xhr.status !== "number" ) { + complete( 0, "error" ); + } else { + complete( + + // File: protocol always yields status 0; see #8605, #14207 + xhr.status, + xhr.statusText + ); + } + } else { + complete( + xhrSuccessStatus[ xhr.status ] || xhr.status, + xhr.statusText, + + // Support: IE <=9 only + // IE9 has no XHR2 but throws on binary (trac-11426) + // For XHR2 non-text, let the caller handle it (gh-2498) + ( xhr.responseType || "text" ) !== "text" || + typeof xhr.responseText !== "string" ? + { binary: xhr.response } : + { text: xhr.responseText }, + xhr.getAllResponseHeaders() + ); + } + } + }; + }; + + // Listen to events + xhr.onload = callback(); + errorCallback = xhr.onerror = xhr.ontimeout = callback( "error" ); + + // Support: IE 9 only + // Use onreadystatechange to replace onabort + // to handle uncaught aborts + if ( xhr.onabort !== undefined ) { + xhr.onabort = errorCallback; + } else { + xhr.onreadystatechange = function() { + + // Check readyState before timeout as it changes + if ( xhr.readyState === 4 ) { + + // Allow onerror to be called first, + // but that will not handle a native abort + // Also, save errorCallback to a variable + // as xhr.onerror cannot be accessed + window.setTimeout( function() { + if ( callback ) { + errorCallback(); + } + } ); + } + }; + } + + // Create the abort callback + callback = callback( "abort" ); + + try { + + // Do send the request (this may raise an exception) + xhr.send( options.hasContent && options.data || null ); + } catch ( e ) { + + // #14683: Only rethrow if this hasn't been notified as an error yet + if ( callback ) { + throw e; + } + } + }, + + abort: function() { + if ( callback ) { + callback(); + } + } + }; + } +} ); + + + + +// Prevent auto-execution of scripts when no explicit dataType was provided (See gh-2432) +jQuery.ajaxPrefilter( function( s ) { + if ( s.crossDomain ) { + s.contents.script = false; + } +} ); + +// Install script dataType +jQuery.ajaxSetup( { + accepts: { + script: "text/javascript, application/javascript, " + + "application/ecmascript, application/x-ecmascript" + }, + contents: { + script: /\b(?:java|ecma)script\b/ + }, + converters: { + "text script": function( text ) { + jQuery.globalEval( text ); + return text; + } + } +} ); + +// Handle cache's special case and crossDomain +jQuery.ajaxPrefilter( "script", function( s ) { + if ( s.cache === undefined ) { + s.cache = false; + } + if ( s.crossDomain ) { + s.type = "GET"; + } +} ); + +// Bind script tag hack transport +jQuery.ajaxTransport( "script", function( s ) { + + // This transport only deals with cross domain or forced-by-attrs requests + if ( s.crossDomain || s.scriptAttrs ) { + var script, callback; + return { + send: function( _, complete ) { + script = jQuery( " + + + + + +
+
+ + + + + + + +
+ + User Data + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ID:
Nama:
Jenis Jelamin:
Email:
No.Telp:
Saldo:
Bayar:
+
+
+ +
+
+
+

+ + + \ No newline at end of file diff --git a/read tag pembayaran.php b/read tag pembayaran.php new file mode 100644 index 0000000..f770116 --- /dev/null +++ b/read tag pembayaran.php @@ -0,0 +1,234 @@ +"; +file_put_contents('UIDBayarContainer.php', $Write); +?> + + + + + + + + + + + + Read Tag : NodeMCU V3 ESP8266 / ESP12E with MYSQL Database + + + +
+ +
+ +
+ + + + + +
+ +
+
+
+ + + + + + + +
+ + User Data + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
ID:--------
Nama:--------
Jenis Kelamin:--------
Email:--------
No.Telp:--------
+
+
+ +
+
+ + + + + \ No newline at end of file diff --git a/read tag user data.php b/read tag user data.php new file mode 100644 index 0000000..8d432d7 --- /dev/null +++ b/read tag user data.php @@ -0,0 +1,198 @@ +setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); +$sql = "SELECT * FROM siswa_wali where id = ?"; +$q = $pdo->prepare($sql); +$q->execute(array($id)); +$data = $q->fetch(PDO::FETCH_ASSOC); +Database::disconnect(); + +$msg = null; +if (null == $data['name']) { + $msg = "The ID of your Card / KeyChain is not registered !!!"; + $data['id'] = $id; + $data['name'] = "--------"; + $data['gender'] = "--------"; + $data['email'] = "--------"; + $data['mobile'] = "--------"; + $data['balance'] = "--------"; +} else { + $msg = null; +} + +$dataName = $data['name']; +$dataBalance = $data['balance']; + +$Write = ""; +file_put_contents('sendNewBalance.php', $Write); +?> + + + + + + + + + + + + + +
+
+ + + + + + + +
+ + User Data + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ID:
Nama:
Jenis Jelamin:
Email:
No.Telp:
Saldo:
Isi Saldo:
+
+
+ +
+
+
+

+ + + \ No newline at end of file diff --git a/read tag.php b/read tag.php new file mode 100644 index 0000000..12be04c --- /dev/null +++ b/read tag.php @@ -0,0 +1,236 @@ +"; +file_put_contents('UIDContainer.php', $Write); +?> + + + + + + + + + + + + Read Tag : NodeMCU V3 ESP8266 / ESP12E with MYSQL Database + + + + + +
+ + + + + +
+ +
+
+
+ + + + + + + +
+ + User Data + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
ID:--------
Nama:--------
Jenis Kelamin:--------
Email:--------
No.Telp:--------
+
+
+ +
+
+ + + + + \ No newline at end of file diff --git a/registration.php b/registration.php new file mode 100644 index 0000000..6aca783 --- /dev/null +++ b/registration.php @@ -0,0 +1,169 @@ + + + + + + + Registration Form + + + + + + + + + +
+

Form Registrasi

+
+
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+ +
+
+
+ + + + \ No newline at end of file diff --git a/sendNewBalance.php b/sendNewBalance.php new file mode 100644 index 0000000..a4137bb --- /dev/null +++ b/sendNewBalance.php @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/tambahSaldoDB.php b/tambahSaldoDB.php new file mode 100644 index 0000000..fe7d325 --- /dev/null +++ b/tambahSaldoDB.php @@ -0,0 +1,240 @@ + $chatId, + 'text' => $message + ]; + + $options = [ + 'http' => [ + 'method' => 'POST', + 'header' => "Content-Type:application/x-www-form-urlencoded\r\n", + 'content' => http_build_query($data) + ] + ]; + + $context = stream_context_create($options); + file_get_contents($apiURL, false, $context); +} + +// Retrieving UID from GET parameter +$uid = $_GET['id']; +$add_balance = $_POST['add_balance']; + +// Connecting to the database +$pdo = Database::connect(); +$pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); + +// Retrieve user data based on UID +$sql = "SELECT * FROM siswa_wali WHERE id = ?"; +$q = $pdo->prepare($sql); +$q->execute(array($uid)); +$user = $q->fetch(PDO::FETCH_ASSOC); + +// Check if user exists +if ($user) { + // Update balance by subtracting 100000 + $newBalance = $user['balance'] + $add_balance; + + // Update balance in the database + $updateSql = "UPDATE siswa_wali SET balance = ? WHERE id = ?"; + $updateStmt = $pdo->prepare($updateSql); + $updateStmt->execute(array($newBalance, $uid)); + + if ($updateStmt) { + $Write = ""; +file_put_contents('sendNewBalance.php', $Write); +} + +// Send notification message via Telegram bot +$Write = ""; +file_put_contents('sendNewBalance.php', $Write); + + +// Send notification message via Telegram bot +$message = "Halo " . $user['name'] . "\nAnda melakukan setor tunai sebanyak: " . $add_balance . ",\nSaldo saat ini +adalah Rp : " . $newBalance; +sendMessage($user['chatId'], $message); + +echo " + + +
+ + + + + +
+ +
+
+
+ + + + + + + +
+ User Data +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ID:{$user['id']}
Nama:{$user['name']}
Jenis Kelamin:{$user['gender']}
Email:{$user['email']}
No.Telp:{$user['mobile']}
Saldo:$newBalance
+
+
"; + } else { + // User not found, handle accordingly + echo "User not found"; + } + + // Close the database connection + Database::disconnect(); + ?> + + + + + + + + + + \ No newline at end of file diff --git a/template.php b/template.php new file mode 100644 index 0000000..1a9c420 --- /dev/null +++ b/template.php @@ -0,0 +1,167 @@ + + + + + + + + Registration Form + + + + + + + +
+ +
+ +
+

Edit Data

+
+
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+ + Back +
+
+
+ + + + \ No newline at end of file diff --git a/updateDB.php b/updateDB.php new file mode 100644 index 0000000..a4588cc --- /dev/null +++ b/updateDB.php @@ -0,0 +1,54 @@ + $chatId, + 'text' => $message + ]; + + $options = [ + 'http' => [ + 'method' => 'POST', + 'header' => "Content-Type:application/x-www-form-urlencoded\r\n", + 'content' => http_build_query($data) + ] + ]; + + $context = stream_context_create($options); + file_get_contents($apiURL, false, $context); +} + +// Retrieving POST data +$id = $_POST['id']; +$name = $_POST['name']; +$gender = $_POST['gender']; +$email = $_POST['email']; +$mobile = $_POST['mobile']; +$balance = $_POST['balance']; // Corrected variable name +$chatId = $_POST['chatId']; + +// Connecting to the database +$pdo = Database::connect(); +$pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); + +// Updating the record in the database +$sql = "UPDATE siswa_wali SET name = ?, gender = ?, email = ?, mobile = ?, balance = ?, chatId = ? WHERE id = ?"; +$q = $pdo->prepare($sql); +$q->execute(array($name, $gender, $email, $mobile, $balance, $chatId, $id)); // Corrected parameter order + +// Sending message via Telegram bot +$message = "Your balance is: " . $balance; +sendMessage($chatId, $message); + +// Closing the database connection +Database::disconnect(); + +// Redirecting to another page after the update +header("Location: user data.php"); // Assuming 'user_data.php' is the correct file name diff --git a/user data delete page.php b/user data delete page.php new file mode 100644 index 0000000..aee6a81 --- /dev/null +++ b/user data delete page.php @@ -0,0 +1,56 @@ +setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); + $sql = "DELETE FROM siswa_wali WHERE id = ?"; + $q = $pdo->prepare($sql); + $q->execute(array($id)); + Database::disconnect(); + header("Location: user data.php"); + + } +?> + + + + + + + + Delete : NodeMCU V3 ESP8266 / ESP12E with MYSQL Database + + + +

NodeMCU V3 ESP8266 / ESP12E with MYSQL Database

+ +
+ +
+
+

Delete User

+
+ +
+ +

Are you sure to delete ?

+
+ + No +
+
+
+ +
+ + \ No newline at end of file diff --git a/user data edit page.php b/user data edit page.php new file mode 100644 index 0000000..9eef207 --- /dev/null +++ b/user data edit page.php @@ -0,0 +1,258 @@ +setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); +$sql = "SELECT * FROM siswa_wali where id = ?"; +$q = $pdo->prepare($sql); +$q->execute(array($id)); +$data = $q->fetch(PDO::FETCH_ASSOC); +Database::disconnect(); +?> + + + + + + + + + + + + + Edit : NodeMCU V3 ESP8266 / ESP12E with MYSQL Database + + + + + + + +
+

Edit Data

+
+
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+ + Back +
+
+
+ + + + + + \ No newline at end of file diff --git a/user data edit tb.php b/user data edit tb.php new file mode 100644 index 0000000..7bee0a5 --- /dev/null +++ b/user data edit tb.php @@ -0,0 +1,140 @@ +setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); + $sql = "SELECT * FROM table_the_iot_projects where id = ?"; + $q = $pdo->prepare($sql); + $q->execute(array($id)); + $data = $q->fetch(PDO::FETCH_ASSOC); + Database::disconnect(); +?> + + + + + + + + + + + + + Edit : NodeMCU V3 ESP8266 / ESP12E with MYSQL Database + + + + + +

NodeMCU V3 ESP8266 / ESP12E with MYSQL Database

+ +
+ +
+
+

Edit User Data

+ +
+ +
+
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+ + Back +
+
+
+
+ + + + \ No newline at end of file diff --git a/user data pembayaran.php b/user data pembayaran.php new file mode 100644 index 0000000..5c6c882 --- /dev/null +++ b/user data pembayaran.php @@ -0,0 +1,256 @@ +setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); +$sql = "SELECT * FROM siswa_wali where id = ?"; +$q = $pdo->prepare($sql); +$q->execute(array($id)); +$data = $q->fetch(PDO::FETCH_ASSOC); +Database::disconnect(); +?> + + + + + + + + + + + + + Edit : NodeMCU V3 ESP8266 / ESP12E with MYSQL Database + + + + + + + +
+

Edit Data

+
+
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+ + Back +
+
+
+ + + + + + \ No newline at end of file diff --git a/user data.php b/user data.php new file mode 100644 index 0000000..1507554 --- /dev/null +++ b/user data.php @@ -0,0 +1,133 @@ +"; +file_put_contents('UIDContainer.php', $Write); +?> + + + + + + + User Data + + + + + + + +
+

User Data

+ + + + + + + + + + + + + query($sql) as $row) { + echo ''; + echo ''; + echo ''; + echo ''; + echo ''; + echo ''; + echo ''; + echo ''; + } + Database::disconnect(); + ?> + +
NamaIDJenis KelaminEmailNo.TelpAction
' . $row['name'] . '' . $row['id'] . '' . $row['gender'] . '' . $row['email'] . '' . $row['mobile'] . 'Edit'; + echo ' '; + echo 'Delete'; + echo '
+
+ + + + \ No newline at end of file