Codebase list golang-github-bugsnag-bugsnag-go / 82113ce
Add example apps from the old repo Conrad Irwin 8 years ago
24 changed file(s) with 6182 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 This is an example google app-engine app.
1
2 To use it you will need to install the [App Engine
3 SDK](https://cloud.google.com/appengine/downloads) for Go.
4
5 Then run:
6
7 goapp deploy
8
9 Then open: https://bugsnag-test.appspot.com/ in your web-browser.
0 application: bugsnag-test
1 version: 1
2 runtime: go
3 api_version: go1
4
5 handlers:
6 - url: /.*
7 script: _go_app
0 package mellow
1
2 import (
3 "fmt"
4 "github.com/bugsnag/bugsnag-go"
5 "github.com/bugsnag/bugsnag-go/errors"
6 "net/http"
7 "os"
8 )
9
10 func init() {
11 bugsnag.OnBeforeNotify(func(event *bugsnag.Event, config *bugsnag.Configuration) error {
12 event.MetaData.AddStruct("original", event.Error.StackFrames())
13 return nil
14 })
15 bugsnag.Configure(bugsnag.Configuration{
16 APIKey: "066f5ad3590596f9aa8d601ea89af845",
17 })
18
19 http.HandleFunc("/", bugsnag.HandlerFunc(handler))
20 }
21
22 func handler(w http.ResponseWriter, r *http.Request) {
23 fmt.Fprint(w, "welcome")
24 notifier := bugsnag.New(r)
25 notifier.Notify(fmt.Errorf("oh hia"), bugsnag.MetaData{"env": {"values": os.Environ()}})
26 fmt.Fprint(w, "welcome\n")
27
28 panic("zoomg")
29
30 fmt.Fprintf(w, "%#v", errors.Errorf("oahi").StackFrames())
31 }
0 2601:9:8480:11d2:7909:b2e5:3722:ef57 - - [08/Jul/2014:01:16:25 -0700] "GET / HTTP/1.1" 500 0 - "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.153 Safari/537.36"
1 2601:9:8480:11d2:7909:b2e5:3722:ef57 - - [08/Jul/2014:01:16:25 -0700] "GET /favicon.ico HTTP/1.1" 500 0 - "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.153 Safari/537.36"
2 2601:9:8480:11d2:7909:b2e5:3722:ef57 - - [08/Jul/2014:01:18:20 -0700] "GET / HTTP/1.1" 500 0 - "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.153 Safari/537.36"
3 2601:9:8480:11d2:7909:b2e5:3722:ef57 - - [08/Jul/2014:01:18:20 -0700] "GET /favicon.ico HTTP/1.1" 500 0 - "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.153 Safari/537.36"
0 package main
1
2 import (
3 "github.com/bugsnag/bugsnag-go"
4 "log"
5 "net/http"
6 )
7
8 func main() {
9
10 http.HandleFunc("/", Get)
11
12 bugsnag.Configure(bugsnag.Configuration{
13 APIKey: "066f5ad3590596f9aa8d601ea89af845",
14 })
15
16 log.Println("Serving on 9001")
17 http.ListenAndServe(":9001", bugsnag.Handler(nil))
18 }
19
20 func Get(w http.ResponseWriter, r *http.Request) {
21 w.WriteHeader(200)
22 w.Write([]byte("OK\n"))
23
24 var a struct{}
25 crash(a)
26 }
27
28 func crash(a interface{}) string {
29 return a.(string)
30 }
0 test-results/
1 tmp/
2 routes/
0 package controllers
1
2 import "github.com/revel/revel"
3 import "time"
4
5 type App struct {
6 *revel.Controller
7 }
8
9 func (c App) Index() revel.Result {
10 go func() {
11 time.Sleep(5 * time.Second)
12 panic("hello!")
13 }()
14
15 s := make([]string, 0)
16 revel.INFO.Print(s[0])
17 return c.Render()
18 }
0 package app
1
2 import "github.com/revel/revel"
3 import "github.com/bugsnag/bugsnag-go/revel"
4
5 func init() {
6 // Filters is the default set of global filters.
7 revel.Filters = []revel.Filter{
8 revel.PanicFilter, // Recover from panics and display an error page instead.
9 bugsnagrevel.Filter, // Send panics to Bugsnag
10 revel.RouterFilter, // Use the routing table to select the right Action
11 revel.FilterConfiguringFilter, // A hook for adding or removing per-Action filters.
12 revel.ParamsFilter, // Parse parameters into Controller.Params.
13 revel.SessionFilter, // Restore and write the session cookie.
14 revel.FlashFilter, // Restore and write the flash cookie.
15 revel.ValidationFilter, // Restore kept validation errors and save new ones from cookie.
16 revel.I18nFilter, // Resolve the requested language
17 HeaderFilter, // Add some security based headers
18 revel.InterceptorFilter, // Run interceptors around the action.
19 revel.CompressFilter, // Compress the result.
20 revel.ActionInvoker, // Invoke the action.
21 }
22
23 // register startup functions with OnAppStart
24 // ( order dependent )
25 // revel.OnAppStart(InitDB())
26 // revel.OnAppStart(FillCache())
27 }
28
29 // TODO turn this into revel.HeaderFilter
30 // should probably also have a filter for CSRF
31 // not sure if it can go in the same filter or not
32 var HeaderFilter = func(c *revel.Controller, fc []revel.Filter) {
33 // Add some common security headers
34 c.Response.Out.Header().Add("X-Frame-Options", "SAMEORIGIN")
35 c.Response.Out.Header().Add("X-XSS-Protection", "1; mode=block")
36 c.Response.Out.Header().Add("X-Content-Type-Options", "nosniff")
37
38 fc[0](c, fc[1:]) // Execute the next filter stage.
39 }
0 {{set . "title" "Home"}}
1 {{template "header.html" .}}
2
3 <header class="hero-unit" style="background-color:#A9F16C">
4 <div class="container">
5 <div class="row">
6 <div class="hero-text">
7 <h1>It works!</h1>
8 <p></p>
9 </div>
10 </div>
11 </div>
12 </header>
13
14 <div class="container">
15 <div class="row">
16 <div class="span6">
17 {{template "flash.html" .}}
18 </div>
19 </div>
20 </div>
21
22 {{template "footer.html" .}}
0 <style type="text/css">
1 #sidebar {
2 position: absolute;
3 right: 0px;
4 top:69px;
5 max-width: 75%;
6 z-index: 1000;
7 background-color: #fee;
8 border: thin solid grey;
9 padding: 10px;
10 }
11 #toggleSidebar {
12 position: absolute;
13 right: 0px;
14 top: 50px;
15 background-color: #fee;
16 }
17
18 </style>
19 <div id="sidebar" style="display:none;">
20 <h4>Available pipelines</h4>
21 <dl>
22 {{ range $index, $value := .}}
23 <dt>{{$index}}</dt>
24 <dd>{{$value}}</dd>
25 {{end}}
26 </dl>
27 <h4>Flash</h4>
28 <dl>
29 {{ range $index, $value := .flash}}
30 <dt>{{$index}}</dt>
31 <dd>{{$value}}</dd>
32 {{end}}
33 </dl>
34
35 <h4>Errors</h4>
36 <dl>
37 {{ range $index, $value := .errors}}
38 <dt>{{$index}}</dt>
39 <dd>{{$value}}</dd>
40 {{end}}
41 </dl>
42 </div>
43 <a id="toggleSidebar" href="#" class="toggles"><i class="icon-chevron-left"></i></a>
44
45 <script>
46 $sidebar = 0;
47 $('#toggleSidebar').click(function() {
48 if ($sidebar === 1) {
49 $('#sidebar').hide();
50 $('#toggleSidebar i').addClass('icon-chevron-left');
51 $('#toggleSidebar i').removeClass('icon-chevron-right');
52 $sidebar = 0;
53 }
54 else {
55 $('#sidebar').show();
56 $('#toggleSidebar i').addClass('icon-chevron-right');
57 $('#toggleSidebar i').removeClass('icon-chevron-left');
58 $sidebar = 1;
59 }
60
61 return false;
62 });
63 </script>
0 <!DOCTYPE html>
1 <html lang="en">
2 <head>
3 <title>Not found</title>
4 </head>
5 <body>
6 {{if eq .RunMode "dev"}}
7 {{template "errors/404-dev.html" .}}
8 {{else}}
9 {{with .Error}}
10 <h1>
11 {{.Title}}
12 </h1>
13 <p>
14 {{.Description}}
15 </p>
16 {{end}}
17 {{end}}
18 </body>
19 </html>
0 <!DOCTYPE html>
1 <html>
2 <head>
3 <title>Application error</title>
4 </head>
5 <body>
6 {{if eq .RunMode "dev"}}
7 {{template "errors/500-dev.html" .}}
8 {{else}}
9 <h1>Oops, an error occured</h1>
10 <p>
11 This exception has been logged.
12 </p>
13 {{end}}
14 </body>
15 </html>
0 {{if .flash.success}}
1 <div class="alert alert-success">
2 {{.flash.success}}
3 </div>
4 {{end}}
5
6 {{if or .errors .flash.error}}
7 <div class="alert alert-error">
8 {{if .flash.error}}
9 {{.flash.error}}
10 {{end}}
11 <ul style="margin-top:10px;">
12 {{range .errors}}
13 <li>{{.}}</li>
14 {{end}}
15 </ul>
16 </div>
17 {{end}}
0 {{if eq .RunMode "dev"}}
1 {{template "debug.html" .}}
2 {{end}}
3 </body>
4 </html>
0 <!DOCTYPE html>
1
2 <html>
3 <head>
4 <title>{{.title}}</title>
5 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
6 <link rel="stylesheet" type="text/css" href="/public/css/bootstrap.css">
7 <link rel="shortcut icon" type="image/png" href="/public/img/favicon.png">
8 <script src="/public/js/jquery-1.9.1.min.js" type="text/javascript" charset="utf-8"></script>
9 {{range .moreStyles}}
10 <link rel="stylesheet" type="text/css" href="/public/{{.}}">
11 {{end}}
12 {{range .moreScripts}}
13 <script src="/public/{{.}}" type="text/javascript" charset="utf-8"></script>
14 {{end}}
15 </head>
16 <body>
0 app.name=revelapp
1 app.secret=80ytgNbBeB0X4mfEYybT4QRXKEoYHoaGAIgZkIB7Z8cEVJjZJOPZupIoluJBMorr
2 http.addr=
3 http.port=9000
4 http.ssl=false
5 http.sslcert=
6 http.sslkey=
7 cookie.httponly=false
8 cookie.prefix=REVEL
9 cookie.secure=false
10 format.date=01/02/2006
11 format.datetime=01/02/2006 15:04
12 results.chunked=false
13
14 log.trace.prefix = "TRACE "
15 log.info.prefix = "INFO "
16 log.warn.prefix = "WARN "
17 log.error.prefix = "ERROR "
18
19 # The default language of this application.
20 i18n.default_language=en
21
22 module.static=github.com/revel/revel/modules/static
23
24 bugsnag.apikey=066f5ad3590596f9aa8d601ea89af845
25
26 [dev]
27 mode.dev=true
28 results.pretty=true
29 watch=true
30
31 module.testrunner = github.com/revel/revel/modules/testrunner
32
33 log.trace.output = off
34 log.info.output = stderr
35 log.warn.output = stderr
36 log.error.output = stderr
37
38 [prod]
39 mode.dev=false
40 results.pretty=false
41 watch=false
42
43 module.testrunner =
44
45 log.trace.output = off
46 log.info.output = off
47 log.warn.output = %(app.name)s.log
48 log.error.output = %(app.name)s.log
0 # Routes
1 # This file defines all application routes (Higher priority routes first)
2 # ~~~~
3
4 module:testrunner
5
6 GET / App.Index
7
8 # Ignore favicon requests
9 GET /favicon.ico 404
10
11 # Map static resources from the /app/public folder to the /public path
12 GET /public/*filepath Static.Serve("public")
13
14 # Catch all
15 * /:controller/:action :controller.:action
0 # Sample messages file for the English language (en)
1 # Message file extensions should be ISO 639-1 codes (http://en.wikipedia.org/wiki/List_of_ISO_639-1_codes)
2 # Sections within each message file can optionally override the defaults using ISO 3166-1 alpha-2 codes (http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)
3 # See also:
4 # - http://www.rfc-editor.org/rfc/bcp/bcp47.txt
5 # - http://www.w3.org/International/questions/qa-accept-lang-locales
6
0 /*!
1 * Bootstrap v2.1.1
2 *
3 * Copyright 2012 Twitter, Inc
4 * Licensed under the Apache License v2.0
5 * http://www.apache.org/licenses/LICENSE-2.0
6 *
7 * Designed and built with all the love in the world @twitter by @mdo and @fat.
8 */
9
10 article,
11 aside,
12 details,
13 figcaption,
14 figure,
15 footer,
16 header,
17 hgroup,
18 nav,
19 section {
20 display: block;
21 }
22
23 audio,
24 canvas,
25 video {
26 display: inline-block;
27 *display: inline;
28 *zoom: 1;
29 }
30
31 audio:not([controls]) {
32 display: none;
33 }
34
35 html {
36 font-size: 100%;
37 -webkit-text-size-adjust: 100%;
38 -ms-text-size-adjust: 100%;
39 }
40
41 a:focus {
42 outline: thin dotted #333;
43 outline: 5px auto -webkit-focus-ring-color;
44 outline-offset: -2px;
45 }
46
47 a:hover,
48 a:active {
49 outline: 0;
50 }
51
52 sub,
53 sup {
54 position: relative;
55 font-size: 75%;
56 line-height: 0;
57 vertical-align: baseline;
58 }
59
60 sup {
61 top: -0.5em;
62 }
63
64 sub {
65 bottom: -0.25em;
66 }
67
68 img {
69 width: auto\9;
70 height: auto;
71 max-width: 100%;
72 vertical-align: middle;
73 border: 0;
74 -ms-interpolation-mode: bicubic;
75 }
76
77 #map_canvas img {
78 max-width: none;
79 }
80
81 button,
82 input,
83 select,
84 textarea {
85 margin: 0;
86 font-size: 100%;
87 vertical-align: middle;
88 }
89
90 button,
91 input {
92 *overflow: visible;
93 line-height: normal;
94 }
95
96 button::-moz-focus-inner,
97 input::-moz-focus-inner {
98 padding: 0;
99 border: 0;
100 }
101
102 button,
103 input[type="button"],
104 input[type="reset"],
105 input[type="submit"] {
106 cursor: pointer;
107 -webkit-appearance: button;
108 }
109
110 input[type="search"] {
111 -webkit-box-sizing: content-box;
112 -moz-box-sizing: content-box;
113 box-sizing: content-box;
114 -webkit-appearance: textfield;
115 }
116
117 input[type="search"]::-webkit-search-decoration,
118 input[type="search"]::-webkit-search-cancel-button {
119 -webkit-appearance: none;
120 }
121
122 textarea {
123 overflow: auto;
124 vertical-align: top;
125 }
126
127 .clearfix {
128 *zoom: 1;
129 }
130
131 .clearfix:before,
132 .clearfix:after {
133 display: table;
134 line-height: 0;
135 content: "";
136 }
137
138 .clearfix:after {
139 clear: both;
140 }
141
142 .hide-text {
143 font: 0/0 a;
144 color: transparent;
145 text-shadow: none;
146 background-color: transparent;
147 border: 0;
148 }
149
150 .input-block-level {
151 display: block;
152 width: 100%;
153 min-height: 30px;
154 -webkit-box-sizing: border-box;
155 -moz-box-sizing: border-box;
156 box-sizing: border-box;
157 }
158
159 body {
160 margin: 0;
161 font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
162 font-size: 14px;
163 line-height: 20px;
164 color: #333333;
165 background-color: #ffffff;
166 }
167
168 a {
169 color: #0088cc;
170 text-decoration: none;
171 }
172
173 a:hover {
174 color: #005580;
175 text-decoration: underline;
176 }
177
178 .img-rounded {
179 -webkit-border-radius: 6px;
180 -moz-border-radius: 6px;
181 border-radius: 6px;
182 }
183
184 .img-polaroid {
185 padding: 4px;
186 background-color: #fff;
187 border: 1px solid #ccc;
188 border: 1px solid rgba(0, 0, 0, 0.2);
189 -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
190 -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
191 box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
192 }
193
194 .img-circle {
195 -webkit-border-radius: 500px;
196 -moz-border-radius: 500px;
197 border-radius: 500px;
198 }
199
200 .row {
201 margin-left: -20px;
202 *zoom: 1;
203 }
204
205 .row:before,
206 .row:after {
207 display: table;
208 line-height: 0;
209 content: "";
210 }
211
212 .row:after {
213 clear: both;
214 }
215
216 [class*="span"] {
217 float: left;
218 min-height: 1px;
219 margin-left: 20px;
220 }
221
222 .container,
223 .navbar-static-top .container,
224 .navbar-fixed-top .container,
225 .navbar-fixed-bottom .container {
226 width: 940px;
227 }
228
229 .span12 {
230 width: 940px;
231 }
232
233 .span11 {
234 width: 860px;
235 }
236
237 .span10 {
238 width: 780px;
239 }
240
241 .span9 {
242 width: 700px;
243 }
244
245 .span8 {
246 width: 620px;
247 }
248
249 .span7 {
250 width: 540px;
251 }
252
253 .span6 {
254 width: 460px;
255 }
256
257 .span5 {
258 width: 380px;
259 }
260
261 .span4 {
262 width: 300px;
263 }
264
265 .span3 {
266 width: 220px;
267 }
268
269 .span2 {
270 width: 140px;
271 }
272
273 .span1 {
274 width: 60px;
275 }
276
277 .offset12 {
278 margin-left: 980px;
279 }
280
281 .offset11 {
282 margin-left: 900px;
283 }
284
285 .offset10 {
286 margin-left: 820px;
287 }
288
289 .offset9 {
290 margin-left: 740px;
291 }
292
293 .offset8 {
294 margin-left: 660px;
295 }
296
297 .offset7 {
298 margin-left: 580px;
299 }
300
301 .offset6 {
302 margin-left: 500px;
303 }
304
305 .offset5 {
306 margin-left: 420px;
307 }
308
309 .offset4 {
310 margin-left: 340px;
311 }
312
313 .offset3 {
314 margin-left: 260px;
315 }
316
317 .offset2 {
318 margin-left: 180px;
319 }
320
321 .offset1 {
322 margin-left: 100px;
323 }
324
325 .row-fluid {
326 width: 100%;
327 *zoom: 1;
328 }
329
330 .row-fluid:before,
331 .row-fluid:after {
332 display: table;
333 line-height: 0;
334 content: "";
335 }
336
337 .row-fluid:after {
338 clear: both;
339 }
340
341 .row-fluid [class*="span"] {
342 display: block;
343 float: left;
344 width: 100%;
345 min-height: 30px;
346 margin-left: 2.127659574468085%;
347 *margin-left: 2.074468085106383%;
348 -webkit-box-sizing: border-box;
349 -moz-box-sizing: border-box;
350 box-sizing: border-box;
351 }
352
353 .row-fluid [class*="span"]:first-child {
354 margin-left: 0;
355 }
356
357 .row-fluid .span12 {
358 width: 100%;
359 *width: 99.94680851063829%;
360 }
361
362 .row-fluid .span11 {
363 width: 91.48936170212765%;
364 *width: 91.43617021276594%;
365 }
366
367 .row-fluid .span10 {
368 width: 82.97872340425532%;
369 *width: 82.92553191489361%;
370 }
371
372 .row-fluid .span9 {
373 width: 74.46808510638297%;
374 *width: 74.41489361702126%;
375 }
376
377 .row-fluid .span8 {
378 width: 65.95744680851064%;
379 *width: 65.90425531914893%;
380 }
381
382 .row-fluid .span7 {
383 width: 57.44680851063829%;
384 *width: 57.39361702127659%;
385 }
386
387 .row-fluid .span6 {
388 width: 48.93617021276595%;
389 *width: 48.88297872340425%;
390 }
391
392 .row-fluid .span5 {
393 width: 40.42553191489362%;
394 *width: 40.37234042553192%;
395 }
396
397 .row-fluid .span4 {
398 width: 31.914893617021278%;
399 *width: 31.861702127659576%;
400 }
401
402 .row-fluid .span3 {
403 width: 23.404255319148934%;
404 *width: 23.351063829787233%;
405 }
406
407 .row-fluid .span2 {
408 width: 14.893617021276595%;
409 *width: 14.840425531914894%;
410 }
411
412 .row-fluid .span1 {
413 width: 6.382978723404255%;
414 *width: 6.329787234042553%;
415 }
416
417 .row-fluid .offset12 {
418 margin-left: 104.25531914893617%;
419 *margin-left: 104.14893617021275%;
420 }
421
422 .row-fluid .offset12:first-child {
423 margin-left: 102.12765957446808%;
424 *margin-left: 102.02127659574467%;
425 }
426
427 .row-fluid .offset11 {
428 margin-left: 95.74468085106382%;
429 *margin-left: 95.6382978723404%;
430 }
431
432 .row-fluid .offset11:first-child {
433 margin-left: 93.61702127659574%;
434 *margin-left: 93.51063829787232%;
435 }
436
437 .row-fluid .offset10 {
438 margin-left: 87.23404255319149%;
439 *margin-left: 87.12765957446807%;
440 }
441
442 .row-fluid .offset10:first-child {
443 margin-left: 85.1063829787234%;
444 *margin-left: 84.99999999999999%;
445 }
446
447 .row-fluid .offset9 {
448 margin-left: 78.72340425531914%;
449 *margin-left: 78.61702127659572%;
450 }
451
452 .row-fluid .offset9:first-child {
453 margin-left: 76.59574468085106%;
454 *margin-left: 76.48936170212764%;
455 }
456
457 .row-fluid .offset8 {
458 margin-left: 70.2127659574468%;
459 *margin-left: 70.10638297872339%;
460 }
461
462 .row-fluid .offset8:first-child {
463 margin-left: 68.08510638297872%;
464 *margin-left: 67.9787234042553%;
465 }
466
467 .row-fluid .offset7 {
468 margin-left: 61.70212765957446%;
469 *margin-left: 61.59574468085106%;
470 }
471
472 .row-fluid .offset7:first-child {
473 margin-left: 59.574468085106375%;
474 *margin-left: 59.46808510638297%;
475 }
476
477 .row-fluid .offset6 {
478 margin-left: 53.191489361702125%;
479 *margin-left: 53.085106382978715%;
480 }
481
482 .row-fluid .offset6:first-child {
483 margin-left: 51.063829787234035%;
484 *margin-left: 50.95744680851063%;
485 }
486
487 .row-fluid .offset5 {
488 margin-left: 44.68085106382979%;
489 *margin-left: 44.57446808510638%;
490 }
491
492 .row-fluid .offset5:first-child {
493 margin-left: 42.5531914893617%;
494 *margin-left: 42.4468085106383%;
495 }
496
497 .row-fluid .offset4 {
498 margin-left: 36.170212765957444%;
499 *margin-left: 36.06382978723405%;
500 }
501
502 .row-fluid .offset4:first-child {
503 margin-left: 34.04255319148936%;
504 *margin-left: 33.93617021276596%;
505 }
506
507 .row-fluid .offset3 {
508 margin-left: 27.659574468085104%;
509 *margin-left: 27.5531914893617%;
510 }
511
512 .row-fluid .offset3:first-child {
513 margin-left: 25.53191489361702%;
514 *margin-left: 25.425531914893618%;
515 }
516
517 .row-fluid .offset2 {
518 margin-left: 19.148936170212764%;
519 *margin-left: 19.04255319148936%;
520 }
521
522 .row-fluid .offset2:first-child {
523 margin-left: 17.02127659574468%;
524 *margin-left: 16.914893617021278%;
525 }
526
527 .row-fluid .offset1 {
528 margin-left: 10.638297872340425%;
529 *margin-left: 10.53191489361702%;
530 }
531
532 .row-fluid .offset1:first-child {
533 margin-left: 8.51063829787234%;
534 *margin-left: 8.404255319148938%;
535 }
536
537 [class*="span"].hide,
538 .row-fluid [class*="span"].hide {
539 display: none;
540 }
541
542 [class*="span"].pull-right,
543 .row-fluid [class*="span"].pull-right {
544 float: right;
545 }
546
547 .container {
548 margin-right: auto;
549 margin-left: auto;
550 *zoom: 1;
551 }
552
553 .container:before,
554 .container:after {
555 display: table;
556 line-height: 0;
557 content: "";
558 }
559
560 .container:after {
561 clear: both;
562 }
563
564 .container-fluid {
565 padding-right: 20px;
566 padding-left: 20px;
567 *zoom: 1;
568 }
569
570 .container-fluid:before,
571 .container-fluid:after {
572 display: table;
573 line-height: 0;
574 content: "";
575 }
576
577 .container-fluid:after {
578 clear: both;
579 }
580
581 p {
582 margin: 0 0 10px;
583 }
584
585 .lead {
586 margin-bottom: 20px;
587 font-size: 21px;
588 font-weight: 200;
589 line-height: 30px;
590 }
591
592 small {
593 font-size: 85%;
594 }
595
596 strong {
597 font-weight: bold;
598 }
599
600 em {
601 font-style: italic;
602 }
603
604 cite {
605 font-style: normal;
606 }
607
608 .muted {
609 color: #999999;
610 }
611
612 .text-warning {
613 color: #c09853;
614 }
615
616 .text-error {
617 color: #b94a48;
618 }
619
620 .text-info {
621 color: #3a87ad;
622 }
623
624 .text-success {
625 color: #468847;
626 }
627
628 h1,
629 h2,
630 h3,
631 h4,
632 h5,
633 h6 {
634 margin: 10px 0;
635 font-family: inherit;
636 font-weight: bold;
637 line-height: 1;
638 color: inherit;
639 text-rendering: optimizelegibility;
640 }
641
642 h1 small,
643 h2 small,
644 h3 small,
645 h4 small,
646 h5 small,
647 h6 small {
648 font-weight: normal;
649 line-height: 1;
650 color: #999999;
651 }
652
653 h1 {
654 font-size: 36px;
655 line-height: 40px;
656 }
657
658 h2 {
659 font-size: 30px;
660 line-height: 40px;
661 }
662
663 h3 {
664 font-size: 24px;
665 line-height: 40px;
666 }
667
668 h4 {
669 font-size: 18px;
670 line-height: 20px;
671 }
672
673 h5 {
674 font-size: 14px;
675 line-height: 20px;
676 }
677
678 h6 {
679 font-size: 12px;
680 line-height: 20px;
681 }
682
683 h1 small {
684 font-size: 24px;
685 }
686
687 h2 small {
688 font-size: 18px;
689 }
690
691 h3 small {
692 font-size: 14px;
693 }
694
695 h4 small {
696 font-size: 14px;
697 }
698
699 .page-header {
700 padding-bottom: 9px;
701 margin: 20px 0 30px;
702 border-bottom: 1px solid #eeeeee;
703 }
704
705 ul,
706 ol {
707 padding: 0;
708 margin: 0 0 10px 25px;
709 }
710
711 ul ul,
712 ul ol,
713 ol ol,
714 ol ul {
715 margin-bottom: 0;
716 }
717
718 li {
719 line-height: 20px;
720 }
721
722 ul.unstyled,
723 ol.unstyled {
724 margin-left: 0;
725 list-style: none;
726 }
727
728 dl {
729 margin-bottom: 20px;
730 }
731
732 dt,
733 dd {
734 line-height: 20px;
735 }
736
737 dt {
738 font-weight: bold;
739 }
740
741 dd {
742 margin-left: 10px;
743 }
744
745 .dl-horizontal {
746 *zoom: 1;
747 }
748
749 .dl-horizontal:before,
750 .dl-horizontal:after {
751 display: table;
752 line-height: 0;
753 content: "";
754 }
755
756 .dl-horizontal:after {
757 clear: both;
758 }
759
760 .dl-horizontal dt {
761 float: left;
762 width: 160px;
763 overflow: hidden;
764 clear: left;
765 text-align: right;
766 text-overflow: ellipsis;
767 white-space: nowrap;
768 }
769
770 .dl-horizontal dd {
771 margin-left: 180px;
772 }
773
774 hr {
775 margin: 20px 0;
776 border: 0;
777 border-top: 1px solid #eeeeee;
778 border-bottom: 1px solid #ffffff;
779 }
780
781 abbr[title] {
782 cursor: help;
783 border-bottom: 1px dotted #999999;
784 }
785
786 abbr.initialism {
787 font-size: 90%;
788 text-transform: uppercase;
789 }
790
791 blockquote {
792 padding: 0 0 0 15px;
793 margin: 0 0 20px;
794 border-left: 5px solid #eeeeee;
795 }
796
797 blockquote p {
798 margin-bottom: 0;
799 font-size: 16px;
800 font-weight: 300;
801 line-height: 25px;
802 }
803
804 blockquote small {
805 display: block;
806 line-height: 20px;
807 color: #999999;
808 }
809
810 blockquote small:before {
811 content: '\2014 \00A0';
812 }
813
814 blockquote.pull-right {
815 float: right;
816 padding-right: 15px;
817 padding-left: 0;
818 border-right: 5px solid #eeeeee;
819 border-left: 0;
820 }
821
822 blockquote.pull-right p,
823 blockquote.pull-right small {
824 text-align: right;
825 }
826
827 blockquote.pull-right small:before {
828 content: '';
829 }
830
831 blockquote.pull-right small:after {
832 content: '\00A0 \2014';
833 }
834
835 q:before,
836 q:after,
837 blockquote:before,
838 blockquote:after {
839 content: "";
840 }
841
842 address {
843 display: block;
844 margin-bottom: 20px;
845 font-style: normal;
846 line-height: 20px;
847 }
848
849 code,
850 pre {
851 padding: 0 3px 2px;
852 font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
853 font-size: 12px;
854 color: #333333;
855 -webkit-border-radius: 3px;
856 -moz-border-radius: 3px;
857 border-radius: 3px;
858 }
859
860 code {
861 padding: 2px 4px;
862 color: #d14;
863 background-color: #f7f7f9;
864 border: 1px solid #e1e1e8;
865 }
866
867 pre {
868 display: block;
869 padding: 9.5px;
870 margin: 0 0 10px;
871 font-size: 13px;
872 line-height: 20px;
873 word-break: break-all;
874 word-wrap: break-word;
875 white-space: pre;
876 white-space: pre-wrap;
877 background-color: #f5f5f5;
878 border: 1px solid #ccc;
879 border: 1px solid rgba(0, 0, 0, 0.15);
880 -webkit-border-radius: 4px;
881 -moz-border-radius: 4px;
882 border-radius: 4px;
883 }
884
885 pre.prettyprint {
886 margin-bottom: 20px;
887 }
888
889 pre code {
890 padding: 0;
891 color: inherit;
892 background-color: transparent;
893 border: 0;
894 }
895
896 .pre-scrollable {
897 max-height: 340px;
898 overflow-y: scroll;
899 }
900
901 form {
902 margin: 0 0 20px;
903 }
904
905 fieldset {
906 padding: 0;
907 margin: 0;
908 border: 0;
909 }
910
911 legend {
912 display: block;
913 width: 100%;
914 padding: 0;
915 margin-bottom: 20px;
916 font-size: 21px;
917 line-height: 40px;
918 color: #333333;
919 border: 0;
920 border-bottom: 1px solid #e5e5e5;
921 }
922
923 legend small {
924 font-size: 15px;
925 color: #999999;
926 }
927
928 label,
929 input,
930 button,
931 select,
932 textarea {
933 font-size: 14px;
934 font-weight: normal;
935 line-height: 20px;
936 }
937
938 input,
939 button,
940 select,
941 textarea {
942 font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
943 }
944
945 label {
946 display: block;
947 margin-bottom: 5px;
948 }
949
950 select,
951 textarea,
952 input[type="text"],
953 input[type="password"],
954 input[type="datetime"],
955 input[type="datetime-local"],
956 input[type="date"],
957 input[type="month"],
958 input[type="time"],
959 input[type="week"],
960 input[type="number"],
961 input[type="email"],
962 input[type="url"],
963 input[type="search"],
964 input[type="tel"],
965 input[type="color"],
966 .uneditable-input {
967 display: inline-block;
968 height: 20px;
969 padding: 4px 6px;
970 margin-bottom: 9px;
971 font-size: 14px;
972 line-height: 20px;
973 color: #555555;
974 -webkit-border-radius: 3px;
975 -moz-border-radius: 3px;
976 border-radius: 3px;
977 }
978
979 input,
980 textarea,
981 .uneditable-input {
982 width: 206px;
983 }
984
985 textarea {
986 height: auto;
987 }
988
989 textarea,
990 input[type="text"],
991 input[type="password"],
992 input[type="datetime"],
993 input[type="datetime-local"],
994 input[type="date"],
995 input[type="month"],
996 input[type="time"],
997 input[type="week"],
998 input[type="number"],
999 input[type="email"],
1000 input[type="url"],
1001 input[type="search"],
1002 input[type="tel"],
1003 input[type="color"],
1004 .uneditable-input {
1005 background-color: #ffffff;
1006 border: 1px solid #cccccc;
1007 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1008 -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1009 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1010 -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
1011 -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
1012 -o-transition: border linear 0.2s, box-shadow linear 0.2s;
1013 transition: border linear 0.2s, box-shadow linear 0.2s;
1014 }
1015
1016 textarea:focus,
1017 input[type="text"]:focus,
1018 input[type="password"]:focus,
1019 input[type="datetime"]:focus,
1020 input[type="datetime-local"]:focus,
1021 input[type="date"]:focus,
1022 input[type="month"]:focus,
1023 input[type="time"]:focus,
1024 input[type="week"]:focus,
1025 input[type="number"]:focus,
1026 input[type="email"]:focus,
1027 input[type="url"]:focus,
1028 input[type="search"]:focus,
1029 input[type="tel"]:focus,
1030 input[type="color"]:focus,
1031 .uneditable-input:focus {
1032 border-color: rgba(82, 168, 236, 0.8);
1033 outline: 0;
1034 outline: thin dotted \9;
1035 /* IE6-9 */
1036
1037 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
1038 -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
1039 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
1040 }
1041
1042 input[type="radio"],
1043 input[type="checkbox"] {
1044 margin: 4px 0 0;
1045 margin-top: 1px \9;
1046 *margin-top: 0;
1047 line-height: normal;
1048 cursor: pointer;
1049 }
1050
1051 input[type="file"],
1052 input[type="image"],
1053 input[type="submit"],
1054 input[type="reset"],
1055 input[type="button"],
1056 input[type="radio"],
1057 input[type="checkbox"] {
1058 width: auto;
1059 }
1060
1061 select,
1062 input[type="file"] {
1063 height: 30px;
1064 /* In IE7, the height of the select element cannot be changed by height, only font-size */
1065
1066 *margin-top: 4px;
1067 /* For IE7, add top margin to align select with labels */
1068
1069 line-height: 30px;
1070 }
1071
1072 select {
1073 width: 220px;
1074 background-color: #ffffff;
1075 border: 1px solid #cccccc;
1076 }
1077
1078 select[multiple],
1079 select[size] {
1080 height: auto;
1081 }
1082
1083 select:focus,
1084 input[type="file"]:focus,
1085 input[type="radio"]:focus,
1086 input[type="checkbox"]:focus {
1087 outline: thin dotted #333;
1088 outline: 5px auto -webkit-focus-ring-color;
1089 outline-offset: -2px;
1090 }
1091
1092 .uneditable-input,
1093 .uneditable-textarea {
1094 color: #999999;
1095 cursor: not-allowed;
1096 background-color: #fcfcfc;
1097 border-color: #cccccc;
1098 -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
1099 -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
1100 box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
1101 }
1102
1103 .uneditable-input {
1104 overflow: hidden;
1105 white-space: nowrap;
1106 }
1107
1108 .uneditable-textarea {
1109 width: auto;
1110 height: auto;
1111 }
1112
1113 input:-moz-placeholder,
1114 textarea:-moz-placeholder {
1115 color: #999999;
1116 }
1117
1118 input:-ms-input-placeholder,
1119 textarea:-ms-input-placeholder {
1120 color: #999999;
1121 }
1122
1123 input::-webkit-input-placeholder,
1124 textarea::-webkit-input-placeholder {
1125 color: #999999;
1126 }
1127
1128 .radio,
1129 .checkbox {
1130 min-height: 18px;
1131 padding-left: 18px;
1132 }
1133
1134 .radio input[type="radio"],
1135 .checkbox input[type="checkbox"] {
1136 float: left;
1137 margin-left: -18px;
1138 }
1139
1140 .controls > .radio:first-child,
1141 .controls > .checkbox:first-child {
1142 padding-top: 5px;
1143 }
1144
1145 .radio.inline,
1146 .checkbox.inline {
1147 display: inline-block;
1148 padding-top: 5px;
1149 margin-bottom: 0;
1150 vertical-align: middle;
1151 }
1152
1153 .radio.inline + .radio.inline,
1154 .checkbox.inline + .checkbox.inline {
1155 margin-left: 10px;
1156 }
1157
1158 .input-mini {
1159 width: 60px;
1160 }
1161
1162 .input-small {
1163 width: 90px;
1164 }
1165
1166 .input-medium {
1167 width: 150px;
1168 }
1169
1170 .input-large {
1171 width: 210px;
1172 }
1173
1174 .input-xlarge {
1175 width: 270px;
1176 }
1177
1178 .input-xxlarge {
1179 width: 530px;
1180 }
1181
1182 input[class*="span"],
1183 select[class*="span"],
1184 textarea[class*="span"],
1185 .uneditable-input[class*="span"],
1186 .row-fluid input[class*="span"],
1187 .row-fluid select[class*="span"],
1188 .row-fluid textarea[class*="span"],
1189 .row-fluid .uneditable-input[class*="span"] {
1190 float: none;
1191 margin-left: 0;
1192 }
1193
1194 .input-append input[class*="span"],
1195 .input-append .uneditable-input[class*="span"],
1196 .input-prepend input[class*="span"],
1197 .input-prepend .uneditable-input[class*="span"],
1198 .row-fluid input[class*="span"],
1199 .row-fluid select[class*="span"],
1200 .row-fluid textarea[class*="span"],
1201 .row-fluid .uneditable-input[class*="span"],
1202 .row-fluid .input-prepend [class*="span"],
1203 .row-fluid .input-append [class*="span"] {
1204 display: inline-block;
1205 }
1206
1207 input,
1208 textarea,
1209 .uneditable-input {
1210 margin-left: 0;
1211 }
1212
1213 .controls-row [class*="span"] + [class*="span"] {
1214 margin-left: 20px;
1215 }
1216
1217 input.span12,
1218 textarea.span12,
1219 .uneditable-input.span12 {
1220 width: 926px;
1221 }
1222
1223 input.span11,
1224 textarea.span11,
1225 .uneditable-input.span11 {
1226 width: 846px;
1227 }
1228
1229 input.span10,
1230 textarea.span10,
1231 .uneditable-input.span10 {
1232 width: 766px;
1233 }
1234
1235 input.span9,
1236 textarea.span9,
1237 .uneditable-input.span9 {
1238 width: 686px;
1239 }
1240
1241 input.span8,
1242 textarea.span8,
1243 .uneditable-input.span8 {
1244 width: 606px;
1245 }
1246
1247 input.span7,
1248 textarea.span7,
1249 .uneditable-input.span7 {
1250 width: 526px;
1251 }
1252
1253 input.span6,
1254 textarea.span6,
1255 .uneditable-input.span6 {
1256 width: 446px;
1257 }
1258
1259 input.span5,
1260 textarea.span5,
1261 .uneditable-input.span5 {
1262 width: 366px;
1263 }
1264
1265 input.span4,
1266 textarea.span4,
1267 .uneditable-input.span4 {
1268 width: 286px;
1269 }
1270
1271 input.span3,
1272 textarea.span3,
1273 .uneditable-input.span3 {
1274 width: 206px;
1275 }
1276
1277 input.span2,
1278 textarea.span2,
1279 .uneditable-input.span2 {
1280 width: 126px;
1281 }
1282
1283 input.span1,
1284 textarea.span1,
1285 .uneditable-input.span1 {
1286 width: 46px;
1287 }
1288
1289 .controls-row {
1290 *zoom: 1;
1291 }
1292
1293 .controls-row:before,
1294 .controls-row:after {
1295 display: table;
1296 line-height: 0;
1297 content: "";
1298 }
1299
1300 .controls-row:after {
1301 clear: both;
1302 }
1303
1304 .controls-row [class*="span"] {
1305 float: left;
1306 }
1307
1308 input[disabled],
1309 select[disabled],
1310 textarea[disabled],
1311 input[readonly],
1312 select[readonly],
1313 textarea[readonly] {
1314 cursor: not-allowed;
1315 background-color: #eeeeee;
1316 }
1317
1318 input[type="radio"][disabled],
1319 input[type="checkbox"][disabled],
1320 input[type="radio"][readonly],
1321 input[type="checkbox"][readonly] {
1322 background-color: transparent;
1323 }
1324
1325 .control-group.warning > label,
1326 .control-group.warning .help-block,
1327 .control-group.warning .help-inline {
1328 color: #c09853;
1329 }
1330
1331 .control-group.warning .checkbox,
1332 .control-group.warning .radio,
1333 .control-group.warning input,
1334 .control-group.warning select,
1335 .control-group.warning textarea {
1336 color: #c09853;
1337 }
1338
1339 .control-group.warning input,
1340 .control-group.warning select,
1341 .control-group.warning textarea {
1342 border-color: #c09853;
1343 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1344 -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1345 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1346 }
1347
1348 .control-group.warning input:focus,
1349 .control-group.warning select:focus,
1350 .control-group.warning textarea:focus {
1351 border-color: #a47e3c;
1352 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
1353 -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
1354 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
1355 }
1356
1357 .control-group.warning .input-prepend .add-on,
1358 .control-group.warning .input-append .add-on {
1359 color: #c09853;
1360 background-color: #fcf8e3;
1361 border-color: #c09853;
1362 }
1363
1364 .control-group.error > label,
1365 .control-group.error .help-block,
1366 .control-group.error .help-inline {
1367 color: #b94a48;
1368 }
1369
1370 .control-group.error .checkbox,
1371 .control-group.error .radio,
1372 .control-group.error input,
1373 .control-group.error select,
1374 .control-group.error textarea {
1375 color: #b94a48;
1376 }
1377
1378 .control-group.error input,
1379 .control-group.error select,
1380 .control-group.error textarea {
1381 border-color: #b94a48;
1382 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1383 -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1384 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1385 }
1386
1387 .control-group.error input:focus,
1388 .control-group.error select:focus,
1389 .control-group.error textarea:focus {
1390 border-color: #953b39;
1391 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
1392 -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
1393 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
1394 }
1395
1396 .control-group.error .input-prepend .add-on,
1397 .control-group.error .input-append .add-on {
1398 color: #b94a48;
1399 background-color: #f2dede;
1400 border-color: #b94a48;
1401 }
1402
1403 .control-group.success > label,
1404 .control-group.success .help-block,
1405 .control-group.success .help-inline {
1406 color: #468847;
1407 }
1408
1409 .control-group.success .checkbox,
1410 .control-group.success .radio,
1411 .control-group.success input,
1412 .control-group.success select,
1413 .control-group.success textarea {
1414 color: #468847;
1415 }
1416
1417 .control-group.success input,
1418 .control-group.success select,
1419 .control-group.success textarea {
1420 border-color: #468847;
1421 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1422 -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1423 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1424 }
1425
1426 .control-group.success input:focus,
1427 .control-group.success select:focus,
1428 .control-group.success textarea:focus {
1429 border-color: #356635;
1430 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
1431 -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
1432 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
1433 }
1434
1435 .control-group.success .input-prepend .add-on,
1436 .control-group.success .input-append .add-on {
1437 color: #468847;
1438 background-color: #dff0d8;
1439 border-color: #468847;
1440 }
1441
1442 .control-group.info > label,
1443 .control-group.info .help-block,
1444 .control-group.info .help-inline {
1445 color: #3a87ad;
1446 }
1447
1448 .control-group.info .checkbox,
1449 .control-group.info .radio,
1450 .control-group.info input,
1451 .control-group.info select,
1452 .control-group.info textarea {
1453 color: #3a87ad;
1454 }
1455
1456 .control-group.info input,
1457 .control-group.info select,
1458 .control-group.info textarea {
1459 border-color: #3a87ad;
1460 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1461 -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1462 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1463 }
1464
1465 .control-group.info input:focus,
1466 .control-group.info select:focus,
1467 .control-group.info textarea:focus {
1468 border-color: #2d6987;
1469 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7ab5d3;
1470 -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7ab5d3;
1471 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7ab5d3;
1472 }
1473
1474 .control-group.info .input-prepend .add-on,
1475 .control-group.info .input-append .add-on {
1476 color: #3a87ad;
1477 background-color: #d9edf7;
1478 border-color: #3a87ad;
1479 }
1480
1481 input:focus:required:invalid,
1482 textarea:focus:required:invalid,
1483 select:focus:required:invalid {
1484 color: #b94a48;
1485 border-color: #ee5f5b;
1486 }
1487
1488 input:focus:required:invalid:focus,
1489 textarea:focus:required:invalid:focus,
1490 select:focus:required:invalid:focus {
1491 border-color: #e9322d;
1492 -webkit-box-shadow: 0 0 6px #f8b9b7;
1493 -moz-box-shadow: 0 0 6px #f8b9b7;
1494 box-shadow: 0 0 6px #f8b9b7;
1495 }
1496
1497 .form-actions {
1498 padding: 19px 20px 20px;
1499 margin-top: 20px;
1500 margin-bottom: 20px;
1501 background-color: #f5f5f5;
1502 border-top: 1px solid #e5e5e5;
1503 *zoom: 1;
1504 }
1505
1506 .form-actions:before,
1507 .form-actions:after {
1508 display: table;
1509 line-height: 0;
1510 content: "";
1511 }
1512
1513 .form-actions:after {
1514 clear: both;
1515 }
1516
1517 .help-block,
1518 .help-inline {
1519 color: #595959;
1520 }
1521
1522 .help-block {
1523 display: block;
1524 margin-bottom: 10px;
1525 }
1526
1527 .help-inline {
1528 display: inline-block;
1529 *display: inline;
1530 padding-left: 5px;
1531 vertical-align: middle;
1532 *zoom: 1;
1533 }
1534
1535 .input-append,
1536 .input-prepend {
1537 margin-bottom: 5px;
1538 font-size: 0;
1539 white-space: nowrap;
1540 }
1541
1542 .input-append input,
1543 .input-prepend input,
1544 .input-append select,
1545 .input-prepend select,
1546 .input-append .uneditable-input,
1547 .input-prepend .uneditable-input {
1548 position: relative;
1549 margin-bottom: 0;
1550 *margin-left: 0;
1551 font-size: 14px;
1552 vertical-align: top;
1553 -webkit-border-radius: 0 3px 3px 0;
1554 -moz-border-radius: 0 3px 3px 0;
1555 border-radius: 0 3px 3px 0;
1556 }
1557
1558 .input-append input:focus,
1559 .input-prepend input:focus,
1560 .input-append select:focus,
1561 .input-prepend select:focus,
1562 .input-append .uneditable-input:focus,
1563 .input-prepend .uneditable-input:focus {
1564 z-index: 2;
1565 }
1566
1567 .input-append .add-on,
1568 .input-prepend .add-on {
1569 display: inline-block;
1570 width: auto;
1571 height: 20px;
1572 min-width: 16px;
1573 padding: 4px 5px;
1574 font-size: 14px;
1575 font-weight: normal;
1576 line-height: 20px;
1577 text-align: center;
1578 text-shadow: 0 1px 0 #ffffff;
1579 background-color: #eeeeee;
1580 border: 1px solid #ccc;
1581 }
1582
1583 .input-append .add-on,
1584 .input-prepend .add-on,
1585 .input-append .btn,
1586 .input-prepend .btn {
1587 vertical-align: top;
1588 -webkit-border-radius: 0;
1589 -moz-border-radius: 0;
1590 border-radius: 0;
1591 }
1592
1593 .input-append .active,
1594 .input-prepend .active {
1595 background-color: #a9dba9;
1596 border-color: #46a546;
1597 }
1598
1599 .input-prepend .add-on,
1600 .input-prepend .btn {
1601 margin-right: -1px;
1602 }
1603
1604 .input-prepend .add-on:first-child,
1605 .input-prepend .btn:first-child {
1606 -webkit-border-radius: 3px 0 0 3px;
1607 -moz-border-radius: 3px 0 0 3px;
1608 border-radius: 3px 0 0 3px;
1609 }
1610
1611 .input-append input,
1612 .input-append select,
1613 .input-append .uneditable-input {
1614 -webkit-border-radius: 3px 0 0 3px;
1615 -moz-border-radius: 3px 0 0 3px;
1616 border-radius: 3px 0 0 3px;
1617 }
1618
1619 .input-append .add-on,
1620 .input-append .btn {
1621 margin-left: -1px;
1622 }
1623
1624 .input-append .add-on:last-child,
1625 .input-append .btn:last-child {
1626 -webkit-border-radius: 0 3px 3px 0;
1627 -moz-border-radius: 0 3px 3px 0;
1628 border-radius: 0 3px 3px 0;
1629 }
1630
1631 .input-prepend.input-append input,
1632 .input-prepend.input-append select,
1633 .input-prepend.input-append .uneditable-input {
1634 -webkit-border-radius: 0;
1635 -moz-border-radius: 0;
1636 border-radius: 0;
1637 }
1638
1639 .input-prepend.input-append .add-on:first-child,
1640 .input-prepend.input-append .btn:first-child {
1641 margin-right: -1px;
1642 -webkit-border-radius: 3px 0 0 3px;
1643 -moz-border-radius: 3px 0 0 3px;
1644 border-radius: 3px 0 0 3px;
1645 }
1646
1647 .input-prepend.input-append .add-on:last-child,
1648 .input-prepend.input-append .btn:last-child {
1649 margin-left: -1px;
1650 -webkit-border-radius: 0 3px 3px 0;
1651 -moz-border-radius: 0 3px 3px 0;
1652 border-radius: 0 3px 3px 0;
1653 }
1654
1655 input.search-query {
1656 padding-right: 14px;
1657 padding-right: 4px \9;
1658 padding-left: 14px;
1659 padding-left: 4px \9;
1660 /* IE7-8 doesn't have border-radius, so don't indent the padding */
1661
1662 margin-bottom: 0;
1663 -webkit-border-radius: 15px;
1664 -moz-border-radius: 15px;
1665 border-radius: 15px;
1666 }
1667
1668 /* Allow for input prepend/append in search forms */
1669
1670 .form-search .input-append .search-query,
1671 .form-search .input-prepend .search-query {
1672 -webkit-border-radius: 0;
1673 -moz-border-radius: 0;
1674 border-radius: 0;
1675 }
1676
1677 .form-search .input-append .search-query {
1678 -webkit-border-radius: 14px 0 0 14px;
1679 -moz-border-radius: 14px 0 0 14px;
1680 border-radius: 14px 0 0 14px;
1681 }
1682
1683 .form-search .input-append .btn {
1684 -webkit-border-radius: 0 14px 14px 0;
1685 -moz-border-radius: 0 14px 14px 0;
1686 border-radius: 0 14px 14px 0;
1687 }
1688
1689 .form-search .input-prepend .search-query {
1690 -webkit-border-radius: 0 14px 14px 0;
1691 -moz-border-radius: 0 14px 14px 0;
1692 border-radius: 0 14px 14px 0;
1693 }
1694
1695 .form-search .input-prepend .btn {
1696 -webkit-border-radius: 14px 0 0 14px;
1697 -moz-border-radius: 14px 0 0 14px;
1698 border-radius: 14px 0 0 14px;
1699 }
1700
1701 .form-search input,
1702 .form-inline input,
1703 .form-horizontal input,
1704 .form-search textarea,
1705 .form-inline textarea,
1706 .form-horizontal textarea,
1707 .form-search select,
1708 .form-inline select,
1709 .form-horizontal select,
1710 .form-search .help-inline,
1711 .form-inline .help-inline,
1712 .form-horizontal .help-inline,
1713 .form-search .uneditable-input,
1714 .form-inline .uneditable-input,
1715 .form-horizontal .uneditable-input,
1716 .form-search .input-prepend,
1717 .form-inline .input-prepend,
1718 .form-horizontal .input-prepend,
1719 .form-search .input-append,
1720 .form-inline .input-append,
1721 .form-horizontal .input-append {
1722 display: inline-block;
1723 *display: inline;
1724 margin-bottom: 0;
1725 vertical-align: middle;
1726 *zoom: 1;
1727 }
1728
1729 .form-search .hide,
1730 .form-inline .hide,
1731 .form-horizontal .hide {
1732 display: none;
1733 }
1734
1735 .form-search label,
1736 .form-inline label,
1737 .form-search .btn-group,
1738 .form-inline .btn-group {
1739 display: inline-block;
1740 }
1741
1742 .form-search .input-append,
1743 .form-inline .input-append,
1744 .form-search .input-prepend,
1745 .form-inline .input-prepend {
1746 margin-bottom: 0;
1747 }
1748
1749 .form-search .radio,
1750 .form-search .checkbox,
1751 .form-inline .radio,
1752 .form-inline .checkbox {
1753 padding-left: 0;
1754 margin-bottom: 0;
1755 vertical-align: middle;
1756 }
1757
1758 .form-search .radio input[type="radio"],
1759 .form-search .checkbox input[type="checkbox"],
1760 .form-inline .radio input[type="radio"],
1761 .form-inline .checkbox input[type="checkbox"] {
1762 float: left;
1763 margin-right: 3px;
1764 margin-left: 0;
1765 }
1766
1767 .control-group {
1768 margin-bottom: 10px;
1769 }
1770
1771 legend + .control-group {
1772 margin-top: 20px;
1773 -webkit-margin-top-collapse: separate;
1774 }
1775
1776 .form-horizontal .control-group {
1777 margin-bottom: 20px;
1778 *zoom: 1;
1779 }
1780
1781 .form-horizontal .control-group:before,
1782 .form-horizontal .control-group:after {
1783 display: table;
1784 line-height: 0;
1785 content: "";
1786 }
1787
1788 .form-horizontal .control-group:after {
1789 clear: both;
1790 }
1791
1792 .form-horizontal .control-label {
1793 float: left;
1794 width: 160px;
1795 padding-top: 5px;
1796 text-align: right;
1797 }
1798
1799 .form-horizontal .controls {
1800 *display: inline-block;
1801 *padding-left: 20px;
1802 margin-left: 180px;
1803 *margin-left: 0;
1804 }
1805
1806 .form-horizontal .controls:first-child {
1807 *padding-left: 180px;
1808 }
1809
1810 .form-horizontal .help-block {
1811 margin-bottom: 0;
1812 }
1813
1814 .form-horizontal input + .help-block,
1815 .form-horizontal select + .help-block,
1816 .form-horizontal textarea + .help-block {
1817 margin-top: 10px;
1818 }
1819
1820 .form-horizontal .form-actions {
1821 padding-left: 180px;
1822 }
1823
1824 table {
1825 max-width: 100%;
1826 background-color: transparent;
1827 border-collapse: collapse;
1828 border-spacing: 0;
1829 }
1830
1831 .table {
1832 width: 100%;
1833 margin-bottom: 20px;
1834 }
1835
1836 .table th,
1837 .table td {
1838 padding: 8px;
1839 line-height: 20px;
1840 text-align: left;
1841 vertical-align: top;
1842 border-top: 1px solid #dddddd;
1843 }
1844
1845 .table th {
1846 font-weight: bold;
1847 }
1848
1849 .table thead th {
1850 vertical-align: bottom;
1851 }
1852
1853 .table caption + thead tr:first-child th,
1854 .table caption + thead tr:first-child td,
1855 .table colgroup + thead tr:first-child th,
1856 .table colgroup + thead tr:first-child td,
1857 .table thead:first-child tr:first-child th,
1858 .table thead:first-child tr:first-child td {
1859 border-top: 0;
1860 }
1861
1862 .table tbody + tbody {
1863 border-top: 2px solid #dddddd;
1864 }
1865
1866 .table-condensed th,
1867 .table-condensed td {
1868 padding: 4px 5px;
1869 }
1870
1871 .table-bordered {
1872 border: 1px solid #dddddd;
1873 border-collapse: separate;
1874 *border-collapse: collapse;
1875 border-left: 0;
1876 -webkit-border-radius: 4px;
1877 -moz-border-radius: 4px;
1878 border-radius: 4px;
1879 }
1880
1881 .table-bordered th,
1882 .table-bordered td {
1883 border-left: 1px solid #dddddd;
1884 }
1885
1886 .table-bordered caption + thead tr:first-child th,
1887 .table-bordered caption + tbody tr:first-child th,
1888 .table-bordered caption + tbody tr:first-child td,
1889 .table-bordered colgroup + thead tr:first-child th,
1890 .table-bordered colgroup + tbody tr:first-child th,
1891 .table-bordered colgroup + tbody tr:first-child td,
1892 .table-bordered thead:first-child tr:first-child th,
1893 .table-bordered tbody:first-child tr:first-child th,
1894 .table-bordered tbody:first-child tr:first-child td {
1895 border-top: 0;
1896 }
1897
1898 .table-bordered thead:first-child tr:first-child th:first-child,
1899 .table-bordered tbody:first-child tr:first-child td:first-child {
1900 -webkit-border-top-left-radius: 4px;
1901 border-top-left-radius: 4px;
1902 -moz-border-radius-topleft: 4px;
1903 }
1904
1905 .table-bordered thead:first-child tr:first-child th:last-child,
1906 .table-bordered tbody:first-child tr:first-child td:last-child {
1907 -webkit-border-top-right-radius: 4px;
1908 border-top-right-radius: 4px;
1909 -moz-border-radius-topright: 4px;
1910 }
1911
1912 .table-bordered thead:last-child tr:last-child th:first-child,
1913 .table-bordered tbody:last-child tr:last-child td:first-child,
1914 .table-bordered tfoot:last-child tr:last-child td:first-child {
1915 -webkit-border-radius: 0 0 0 4px;
1916 -moz-border-radius: 0 0 0 4px;
1917 border-radius: 0 0 0 4px;
1918 -webkit-border-bottom-left-radius: 4px;
1919 border-bottom-left-radius: 4px;
1920 -moz-border-radius-bottomleft: 4px;
1921 }
1922
1923 .table-bordered thead:last-child tr:last-child th:last-child,
1924 .table-bordered tbody:last-child tr:last-child td:last-child,
1925 .table-bordered tfoot:last-child tr:last-child td:last-child {
1926 -webkit-border-bottom-right-radius: 4px;
1927 border-bottom-right-radius: 4px;
1928 -moz-border-radius-bottomright: 4px;
1929 }
1930
1931 .table-bordered caption + thead tr:first-child th:first-child,
1932 .table-bordered caption + tbody tr:first-child td:first-child,
1933 .table-bordered colgroup + thead tr:first-child th:first-child,
1934 .table-bordered colgroup + tbody tr:first-child td:first-child {
1935 -webkit-border-top-left-radius: 4px;
1936 border-top-left-radius: 4px;
1937 -moz-border-radius-topleft: 4px;
1938 }
1939
1940 .table-bordered caption + thead tr:first-child th:last-child,
1941 .table-bordered caption + tbody tr:first-child td:last-child,
1942 .table-bordered colgroup + thead tr:first-child th:last-child,
1943 .table-bordered colgroup + tbody tr:first-child td:last-child {
1944 -webkit-border-top-right-radius: 4px;
1945 border-top-right-radius: 4px;
1946 -moz-border-radius-topleft: 4px;
1947 }
1948
1949 .table-striped tbody tr:nth-child(odd) td,
1950 .table-striped tbody tr:nth-child(odd) th {
1951 background-color: #f9f9f9;
1952 }
1953
1954 .table-hover tbody tr:hover td,
1955 .table-hover tbody tr:hover th {
1956 background-color: #f5f5f5;
1957 }
1958
1959 table [class*=span],
1960 .row-fluid table [class*=span] {
1961 display: table-cell;
1962 float: none;
1963 margin-left: 0;
1964 }
1965
1966 .table .span1 {
1967 float: none;
1968 width: 44px;
1969 margin-left: 0;
1970 }
1971
1972 .table .span2 {
1973 float: none;
1974 width: 124px;
1975 margin-left: 0;
1976 }
1977
1978 .table .span3 {
1979 float: none;
1980 width: 204px;
1981 margin-left: 0;
1982 }
1983
1984 .table .span4 {
1985 float: none;
1986 width: 284px;
1987 margin-left: 0;
1988 }
1989
1990 .table .span5 {
1991 float: none;
1992 width: 364px;
1993 margin-left: 0;
1994 }
1995
1996 .table .span6 {
1997 float: none;
1998 width: 444px;
1999 margin-left: 0;
2000 }
2001
2002 .table .span7 {
2003 float: none;
2004 width: 524px;
2005 margin-left: 0;
2006 }
2007
2008 .table .span8 {
2009 float: none;
2010 width: 604px;
2011 margin-left: 0;
2012 }
2013
2014 .table .span9 {
2015 float: none;
2016 width: 684px;
2017 margin-left: 0;
2018 }
2019
2020 .table .span10 {
2021 float: none;
2022 width: 764px;
2023 margin-left: 0;
2024 }
2025
2026 .table .span11 {
2027 float: none;
2028 width: 844px;
2029 margin-left: 0;
2030 }
2031
2032 .table .span12 {
2033 float: none;
2034 width: 924px;
2035 margin-left: 0;
2036 }
2037
2038 .table .span13 {
2039 float: none;
2040 width: 1004px;
2041 margin-left: 0;
2042 }
2043
2044 .table .span14 {
2045 float: none;
2046 width: 1084px;
2047 margin-left: 0;
2048 }
2049
2050 .table .span15 {
2051 float: none;
2052 width: 1164px;
2053 margin-left: 0;
2054 }
2055
2056 .table .span16 {
2057 float: none;
2058 width: 1244px;
2059 margin-left: 0;
2060 }
2061
2062 .table .span17 {
2063 float: none;
2064 width: 1324px;
2065 margin-left: 0;
2066 }
2067
2068 .table .span18 {
2069 float: none;
2070 width: 1404px;
2071 margin-left: 0;
2072 }
2073
2074 .table .span19 {
2075 float: none;
2076 width: 1484px;
2077 margin-left: 0;
2078 }
2079
2080 .table .span20 {
2081 float: none;
2082 width: 1564px;
2083 margin-left: 0;
2084 }
2085
2086 .table .span21 {
2087 float: none;
2088 width: 1644px;
2089 margin-left: 0;
2090 }
2091
2092 .table .span22 {
2093 float: none;
2094 width: 1724px;
2095 margin-left: 0;
2096 }
2097
2098 .table .span23 {
2099 float: none;
2100 width: 1804px;
2101 margin-left: 0;
2102 }
2103
2104 .table .span24 {
2105 float: none;
2106 width: 1884px;
2107 margin-left: 0;
2108 }
2109
2110 .table tbody tr.success td {
2111 background-color: #dff0d8;
2112 }
2113
2114 .table tbody tr.error td {
2115 background-color: #f2dede;
2116 }
2117
2118 .table tbody tr.warning td {
2119 background-color: #fcf8e3;
2120 }
2121
2122 .table tbody tr.info td {
2123 background-color: #d9edf7;
2124 }
2125
2126 .table-hover tbody tr.success:hover td {
2127 background-color: #d0e9c6;
2128 }
2129
2130 .table-hover tbody tr.error:hover td {
2131 background-color: #ebcccc;
2132 }
2133
2134 .table-hover tbody tr.warning:hover td {
2135 background-color: #faf2cc;
2136 }
2137
2138 .table-hover tbody tr.info:hover td {
2139 background-color: #c4e3f3;
2140 }
2141
2142 [class^="icon-"],
2143 [class*=" icon-"] {
2144 display: inline-block;
2145 width: 14px;
2146 height: 14px;
2147 margin-top: 1px;
2148 *margin-right: .3em;
2149 line-height: 14px;
2150 vertical-align: text-top;
2151 background-image: url("../img/glyphicons-halflings.png");
2152 background-position: 14px 14px;
2153 background-repeat: no-repeat;
2154 }
2155
2156 /* White icons with optional class, or on hover/active states of certain elements */
2157
2158 .icon-white,
2159 .nav-tabs > .active > a > [class^="icon-"],
2160 .nav-tabs > .active > a > [class*=" icon-"],
2161 .nav-pills > .active > a > [class^="icon-"],
2162 .nav-pills > .active > a > [class*=" icon-"],
2163 .nav-list > .active > a > [class^="icon-"],
2164 .nav-list > .active > a > [class*=" icon-"],
2165 .navbar-inverse .nav > .active > a > [class^="icon-"],
2166 .navbar-inverse .nav > .active > a > [class*=" icon-"],
2167 .dropdown-menu > li > a:hover > [class^="icon-"],
2168 .dropdown-menu > li > a:hover > [class*=" icon-"],
2169 .dropdown-menu > .active > a > [class^="icon-"],
2170 .dropdown-menu > .active > a > [class*=" icon-"] {
2171 background-image: url("../img/glyphicons-halflings-white.png");
2172 }
2173
2174 .icon-glass {
2175 background-position: 0 0;
2176 }
2177
2178 .icon-music {
2179 background-position: -24px 0;
2180 }
2181
2182 .icon-search {
2183 background-position: -48px 0;
2184 }
2185
2186 .icon-envelope {
2187 background-position: -72px 0;
2188 }
2189
2190 .icon-heart {
2191 background-position: -96px 0;
2192 }
2193
2194 .icon-star {
2195 background-position: -120px 0;
2196 }
2197
2198 .icon-star-empty {
2199 background-position: -144px 0;
2200 }
2201
2202 .icon-user {
2203 background-position: -168px 0;
2204 }
2205
2206 .icon-film {
2207 background-position: -192px 0;
2208 }
2209
2210 .icon-th-large {
2211 background-position: -216px 0;
2212 }
2213
2214 .icon-th {
2215 background-position: -240px 0;
2216 }
2217
2218 .icon-th-list {
2219 background-position: -264px 0;
2220 }
2221
2222 .icon-ok {
2223 background-position: -288px 0;
2224 }
2225
2226 .icon-remove {
2227 background-position: -312px 0;
2228 }
2229
2230 .icon-zoom-in {
2231 background-position: -336px 0;
2232 }
2233
2234 .icon-zoom-out {
2235 background-position: -360px 0;
2236 }
2237
2238 .icon-off {
2239 background-position: -384px 0;
2240 }
2241
2242 .icon-signal {
2243 background-position: -408px 0;
2244 }
2245
2246 .icon-cog {
2247 background-position: -432px 0;
2248 }
2249
2250 .icon-trash {
2251 background-position: -456px 0;
2252 }
2253
2254 .icon-home {
2255 background-position: 0 -24px;
2256 }
2257
2258 .icon-file {
2259 background-position: -24px -24px;
2260 }
2261
2262 .icon-time {
2263 background-position: -48px -24px;
2264 }
2265
2266 .icon-road {
2267 background-position: -72px -24px;
2268 }
2269
2270 .icon-download-alt {
2271 background-position: -96px -24px;
2272 }
2273
2274 .icon-download {
2275 background-position: -120px -24px;
2276 }
2277
2278 .icon-upload {
2279 background-position: -144px -24px;
2280 }
2281
2282 .icon-inbox {
2283 background-position: -168px -24px;
2284 }
2285
2286 .icon-play-circle {
2287 background-position: -192px -24px;
2288 }
2289
2290 .icon-repeat {
2291 background-position: -216px -24px;
2292 }
2293
2294 .icon-refresh {
2295 background-position: -240px -24px;
2296 }
2297
2298 .icon-list-alt {
2299 background-position: -264px -24px;
2300 }
2301
2302 .icon-lock {
2303 background-position: -287px -24px;
2304 }
2305
2306 .icon-flag {
2307 background-position: -312px -24px;
2308 }
2309
2310 .icon-headphones {
2311 background-position: -336px -24px;
2312 }
2313
2314 .icon-volume-off {
2315 background-position: -360px -24px;
2316 }
2317
2318 .icon-volume-down {
2319 background-position: -384px -24px;
2320 }
2321
2322 .icon-volume-up {
2323 background-position: -408px -24px;
2324 }
2325
2326 .icon-qrcode {
2327 background-position: -432px -24px;
2328 }
2329
2330 .icon-barcode {
2331 background-position: -456px -24px;
2332 }
2333
2334 .icon-tag {
2335 background-position: 0 -48px;
2336 }
2337
2338 .icon-tags {
2339 background-position: -25px -48px;
2340 }
2341
2342 .icon-book {
2343 background-position: -48px -48px;
2344 }
2345
2346 .icon-bookmark {
2347 background-position: -72px -48px;
2348 }
2349
2350 .icon-print {
2351 background-position: -96px -48px;
2352 }
2353
2354 .icon-camera {
2355 background-position: -120px -48px;
2356 }
2357
2358 .icon-font {
2359 background-position: -144px -48px;
2360 }
2361
2362 .icon-bold {
2363 background-position: -167px -48px;
2364 }
2365
2366 .icon-italic {
2367 background-position: -192px -48px;
2368 }
2369
2370 .icon-text-height {
2371 background-position: -216px -48px;
2372 }
2373
2374 .icon-text-width {
2375 background-position: -240px -48px;
2376 }
2377
2378 .icon-align-left {
2379 background-position: -264px -48px;
2380 }
2381
2382 .icon-align-center {
2383 background-position: -288px -48px;
2384 }
2385
2386 .icon-align-right {
2387 background-position: -312px -48px;
2388 }
2389
2390 .icon-align-justify {
2391 background-position: -336px -48px;
2392 }
2393
2394 .icon-list {
2395 background-position: -360px -48px;
2396 }
2397
2398 .icon-indent-left {
2399 background-position: -384px -48px;
2400 }
2401
2402 .icon-indent-right {
2403 background-position: -408px -48px;
2404 }
2405
2406 .icon-facetime-video {
2407 background-position: -432px -48px;
2408 }
2409
2410 .icon-picture {
2411 background-position: -456px -48px;
2412 }
2413
2414 .icon-pencil {
2415 background-position: 0 -72px;
2416 }
2417
2418 .icon-map-marker {
2419 background-position: -24px -72px;
2420 }
2421
2422 .icon-adjust {
2423 background-position: -48px -72px;
2424 }
2425
2426 .icon-tint {
2427 background-position: -72px -72px;
2428 }
2429
2430 .icon-edit {
2431 background-position: -96px -72px;
2432 }
2433
2434 .icon-share {
2435 background-position: -120px -72px;
2436 }
2437
2438 .icon-check {
2439 background-position: -144px -72px;
2440 }
2441
2442 .icon-move {
2443 background-position: -168px -72px;
2444 }
2445
2446 .icon-step-backward {
2447 background-position: -192px -72px;
2448 }
2449
2450 .icon-fast-backward {
2451 background-position: -216px -72px;
2452 }
2453
2454 .icon-backward {
2455 background-position: -240px -72px;
2456 }
2457
2458 .icon-play {
2459 background-position: -264px -72px;
2460 }
2461
2462 .icon-pause {
2463 background-position: -288px -72px;
2464 }
2465
2466 .icon-stop {
2467 background-position: -312px -72px;
2468 }
2469
2470 .icon-forward {
2471 background-position: -336px -72px;
2472 }
2473
2474 .icon-fast-forward {
2475 background-position: -360px -72px;
2476 }
2477
2478 .icon-step-forward {
2479 background-position: -384px -72px;
2480 }
2481
2482 .icon-eject {
2483 background-position: -408px -72px;
2484 }
2485
2486 .icon-chevron-left {
2487 background-position: -432px -72px;
2488 }
2489
2490 .icon-chevron-right {
2491 background-position: -456px -72px;
2492 }
2493
2494 .icon-plus-sign {
2495 background-position: 0 -96px;
2496 }
2497
2498 .icon-minus-sign {
2499 background-position: -24px -96px;
2500 }
2501
2502 .icon-remove-sign {
2503 background-position: -48px -96px;
2504 }
2505
2506 .icon-ok-sign {
2507 background-position: -72px -96px;
2508 }
2509
2510 .icon-question-sign {
2511 background-position: -96px -96px;
2512 }
2513
2514 .icon-info-sign {
2515 background-position: -120px -96px;
2516 }
2517
2518 .icon-screenshot {
2519 background-position: -144px -96px;
2520 }
2521
2522 .icon-remove-circle {
2523 background-position: -168px -96px;
2524 }
2525
2526 .icon-ok-circle {
2527 background-position: -192px -96px;
2528 }
2529
2530 .icon-ban-circle {
2531 background-position: -216px -96px;
2532 }
2533
2534 .icon-arrow-left {
2535 background-position: -240px -96px;
2536 }
2537
2538 .icon-arrow-right {
2539 background-position: -264px -96px;
2540 }
2541
2542 .icon-arrow-up {
2543 background-position: -289px -96px;
2544 }
2545
2546 .icon-arrow-down {
2547 background-position: -312px -96px;
2548 }
2549
2550 .icon-share-alt {
2551 background-position: -336px -96px;
2552 }
2553
2554 .icon-resize-full {
2555 background-position: -360px -96px;
2556 }
2557
2558 .icon-resize-small {
2559 background-position: -384px -96px;
2560 }
2561
2562 .icon-plus {
2563 background-position: -408px -96px;
2564 }
2565
2566 .icon-minus {
2567 background-position: -433px -96px;
2568 }
2569
2570 .icon-asterisk {
2571 background-position: -456px -96px;
2572 }
2573
2574 .icon-exclamation-sign {
2575 background-position: 0 -120px;
2576 }
2577
2578 .icon-gift {
2579 background-position: -24px -120px;
2580 }
2581
2582 .icon-leaf {
2583 background-position: -48px -120px;
2584 }
2585
2586 .icon-fire {
2587 background-position: -72px -120px;
2588 }
2589
2590 .icon-eye-open {
2591 background-position: -96px -120px;
2592 }
2593
2594 .icon-eye-close {
2595 background-position: -120px -120px;
2596 }
2597
2598 .icon-warning-sign {
2599 background-position: -144px -120px;
2600 }
2601
2602 .icon-plane {
2603 background-position: -168px -120px;
2604 }
2605
2606 .icon-calendar {
2607 background-position: -192px -120px;
2608 }
2609
2610 .icon-random {
2611 width: 16px;
2612 background-position: -216px -120px;
2613 }
2614
2615 .icon-comment {
2616 background-position: -240px -120px;
2617 }
2618
2619 .icon-magnet {
2620 background-position: -264px -120px;
2621 }
2622
2623 .icon-chevron-up {
2624 background-position: -288px -120px;
2625 }
2626
2627 .icon-chevron-down {
2628 background-position: -313px -119px;
2629 }
2630
2631 .icon-retweet {
2632 background-position: -336px -120px;
2633 }
2634
2635 .icon-shopping-cart {
2636 background-position: -360px -120px;
2637 }
2638
2639 .icon-folder-close {
2640 background-position: -384px -120px;
2641 }
2642
2643 .icon-folder-open {
2644 width: 16px;
2645 background-position: -408px -120px;
2646 }
2647
2648 .icon-resize-vertical {
2649 background-position: -432px -119px;
2650 }
2651
2652 .icon-resize-horizontal {
2653 background-position: -456px -118px;
2654 }
2655
2656 .icon-hdd {
2657 background-position: 0 -144px;
2658 }
2659
2660 .icon-bullhorn {
2661 background-position: -24px -144px;
2662 }
2663
2664 .icon-bell {
2665 background-position: -48px -144px;
2666 }
2667
2668 .icon-certificate {
2669 background-position: -72px -144px;
2670 }
2671
2672 .icon-thumbs-up {
2673 background-position: -96px -144px;
2674 }
2675
2676 .icon-thumbs-down {
2677 background-position: -120px -144px;
2678 }
2679
2680 .icon-hand-right {
2681 background-position: -144px -144px;
2682 }
2683
2684 .icon-hand-left {
2685 background-position: -168px -144px;
2686 }
2687
2688 .icon-hand-up {
2689 background-position: -192px -144px;
2690 }
2691
2692 .icon-hand-down {
2693 background-position: -216px -144px;
2694 }
2695
2696 .icon-circle-arrow-right {
2697 background-position: -240px -144px;
2698 }
2699
2700 .icon-circle-arrow-left {
2701 background-position: -264px -144px;
2702 }
2703
2704 .icon-circle-arrow-up {
2705 background-position: -288px -144px;
2706 }
2707
2708 .icon-circle-arrow-down {
2709 background-position: -312px -144px;
2710 }
2711
2712 .icon-globe {
2713 background-position: -336px -144px;
2714 }
2715
2716 .icon-wrench {
2717 background-position: -360px -144px;
2718 }
2719
2720 .icon-tasks {
2721 background-position: -384px -144px;
2722 }
2723
2724 .icon-filter {
2725 background-position: -408px -144px;
2726 }
2727
2728 .icon-briefcase {
2729 background-position: -432px -144px;
2730 }
2731
2732 .icon-fullscreen {
2733 background-position: -456px -144px;
2734 }
2735
2736 .dropup,
2737 .dropdown {
2738 position: relative;
2739 }
2740
2741 .dropdown-toggle {
2742 *margin-bottom: -3px;
2743 }
2744
2745 .dropdown-toggle:active,
2746 .open .dropdown-toggle {
2747 outline: 0;
2748 }
2749
2750 .caret {
2751 display: inline-block;
2752 width: 0;
2753 height: 0;
2754 vertical-align: top;
2755 border-top: 4px solid #000000;
2756 border-right: 4px solid transparent;
2757 border-left: 4px solid transparent;
2758 content: "";
2759 }
2760
2761 .dropdown .caret {
2762 margin-top: 8px;
2763 margin-left: 2px;
2764 }
2765
2766 .dropdown-menu {
2767 position: absolute;
2768 top: 100%;
2769 left: 0;
2770 z-index: 1000;
2771 display: none;
2772 float: left;
2773 min-width: 160px;
2774 padding: 5px 0;
2775 margin: 2px 0 0;
2776 list-style: none;
2777 background-color: #ffffff;
2778 border: 1px solid #ccc;
2779 border: 1px solid rgba(0, 0, 0, 0.2);
2780 *border-right-width: 2px;
2781 *border-bottom-width: 2px;
2782 -webkit-border-radius: 6px;
2783 -moz-border-radius: 6px;
2784 border-radius: 6px;
2785 -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
2786 -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
2787 box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
2788 -webkit-background-clip: padding-box;
2789 -moz-background-clip: padding;
2790 background-clip: padding-box;
2791 }
2792
2793 .dropdown-menu.pull-right {
2794 right: 0;
2795 left: auto;
2796 }
2797
2798 .dropdown-menu .divider {
2799 *width: 100%;
2800 height: 1px;
2801 margin: 9px 1px;
2802 *margin: -5px 0 5px;
2803 overflow: hidden;
2804 background-color: #e5e5e5;
2805 border-bottom: 1px solid #ffffff;
2806 }
2807
2808 .dropdown-menu a {
2809 display: block;
2810 padding: 3px 20px;
2811 clear: both;
2812 font-weight: normal;
2813 line-height: 20px;
2814 color: #333333;
2815 white-space: nowrap;
2816 }
2817
2818 .dropdown-menu li > a:hover,
2819 .dropdown-menu li > a:focus,
2820 .dropdown-submenu:hover > a {
2821 color: #ffffff;
2822 text-decoration: none;
2823 background-color: #0088cc;
2824 background-color: #0081c2;
2825 background-image: -moz-linear-gradient(top, #0088cc, #0077b3);
2826 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));
2827 background-image: -webkit-linear-gradient(top, #0088cc, #0077b3);
2828 background-image: -o-linear-gradient(top, #0088cc, #0077b3);
2829 background-image: linear-gradient(to bottom, #0088cc, #0077b3);
2830 background-repeat: repeat-x;
2831 filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0);
2832 }
2833
2834 .dropdown-menu .active > a,
2835 .dropdown-menu .active > a:hover {
2836 color: #ffffff;
2837 text-decoration: none;
2838 background-color: #0088cc;
2839 background-color: #0081c2;
2840 background-image: linear-gradient(to bottom, #0088cc, #0077b3);
2841 background-image: -moz-linear-gradient(top, #0088cc, #0077b3);
2842 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));
2843 background-image: -webkit-linear-gradient(top, #0088cc, #0077b3);
2844 background-image: -o-linear-gradient(top, #0088cc, #0077b3);
2845 background-repeat: repeat-x;
2846 outline: 0;
2847 filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0);
2848 }
2849
2850 .dropdown-menu .disabled > a,
2851 .dropdown-menu .disabled > a:hover {
2852 color: #999999;
2853 }
2854
2855 .dropdown-menu .disabled > a:hover {
2856 text-decoration: none;
2857 cursor: default;
2858 background-color: transparent;
2859 }
2860
2861 .open {
2862 *z-index: 1000;
2863 }
2864
2865 .open > .dropdown-menu {
2866 display: block;
2867 }
2868
2869 .pull-right > .dropdown-menu {
2870 right: 0;
2871 left: auto;
2872 }
2873
2874 .dropup .caret,
2875 .navbar-fixed-bottom .dropdown .caret {
2876 border-top: 0;
2877 border-bottom: 4px solid #000000;
2878 content: "";
2879 }
2880
2881 .dropup .dropdown-menu,
2882 .navbar-fixed-bottom .dropdown .dropdown-menu {
2883 top: auto;
2884 bottom: 100%;
2885 margin-bottom: 1px;
2886 }
2887
2888 .dropdown-submenu {
2889 position: relative;
2890 }
2891
2892 .dropdown-submenu > .dropdown-menu {
2893 top: 0;
2894 left: 100%;
2895 margin-top: -6px;
2896 margin-left: -1px;
2897 -webkit-border-radius: 0 6px 6px 6px;
2898 -moz-border-radius: 0 6px 6px 6px;
2899 border-radius: 0 6px 6px 6px;
2900 }
2901
2902 .dropdown-submenu:hover > .dropdown-menu {
2903 display: block;
2904 }
2905
2906 .dropdown-submenu > a:after {
2907 display: block;
2908 float: right;
2909 width: 0;
2910 height: 0;
2911 margin-top: 5px;
2912 margin-right: -10px;
2913 border-color: transparent;
2914 border-left-color: #cccccc;
2915 border-style: solid;
2916 border-width: 5px 0 5px 5px;
2917 content: " ";
2918 }
2919
2920 .dropdown-submenu:hover > a:after {
2921 border-left-color: #ffffff;
2922 }
2923
2924 .dropdown .dropdown-menu .nav-header {
2925 padding-right: 20px;
2926 padding-left: 20px;
2927 }
2928
2929 .typeahead {
2930 margin-top: 2px;
2931 -webkit-border-radius: 4px;
2932 -moz-border-radius: 4px;
2933 border-radius: 4px;
2934 }
2935
2936 .well {
2937 min-height: 20px;
2938 padding: 19px;
2939 margin-bottom: 20px;
2940 background-color: #f5f5f5;
2941 border: 1px solid #e3e3e3;
2942 -webkit-border-radius: 4px;
2943 -moz-border-radius: 4px;
2944 border-radius: 4px;
2945 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
2946 -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
2947 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
2948 }
2949
2950 .well blockquote {
2951 border-color: #ddd;
2952 border-color: rgba(0, 0, 0, 0.15);
2953 }
2954
2955 .well-large {
2956 padding: 24px;
2957 -webkit-border-radius: 6px;
2958 -moz-border-radius: 6px;
2959 border-radius: 6px;
2960 }
2961
2962 .well-small {
2963 padding: 9px;
2964 -webkit-border-radius: 3px;
2965 -moz-border-radius: 3px;
2966 border-radius: 3px;
2967 }
2968
2969 .fade {
2970 opacity: 0;
2971 -webkit-transition: opacity 0.15s linear;
2972 -moz-transition: opacity 0.15s linear;
2973 -o-transition: opacity 0.15s linear;
2974 transition: opacity 0.15s linear;
2975 }
2976
2977 .fade.in {
2978 opacity: 1;
2979 }
2980
2981 .collapse {
2982 position: relative;
2983 height: 0;
2984 overflow: hidden;
2985 -webkit-transition: height 0.35s ease;
2986 -moz-transition: height 0.35s ease;
2987 -o-transition: height 0.35s ease;
2988 transition: height 0.35s ease;
2989 }
2990
2991 .collapse.in {
2992 height: auto;
2993 }
2994
2995 .close {
2996 float: right;
2997 font-size: 20px;
2998 font-weight: bold;
2999 line-height: 20px;
3000 color: #000000;
3001 text-shadow: 0 1px 0 #ffffff;
3002 opacity: 0.2;
3003 filter: alpha(opacity=20);
3004 }
3005
3006 .close:hover {
3007 color: #000000;
3008 text-decoration: none;
3009 cursor: pointer;
3010 opacity: 0.4;
3011 filter: alpha(opacity=40);
3012 }
3013
3014 button.close {
3015 padding: 0;
3016 cursor: pointer;
3017 background: transparent;
3018 border: 0;
3019 -webkit-appearance: none;
3020 }
3021
3022 .btn {
3023 display: inline-block;
3024 *display: inline;
3025 padding: 4px 14px;
3026 margin-bottom: 0;
3027 *margin-left: .3em;
3028 font-size: 14px;
3029 line-height: 20px;
3030 *line-height: 20px;
3031 color: #333333;
3032 text-align: center;
3033 text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
3034 vertical-align: middle;
3035 cursor: pointer;
3036 background-color: #f5f5f5;
3037 *background-color: #e6e6e6;
3038 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
3039 background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
3040 background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
3041 background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
3042 background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
3043 background-repeat: repeat-x;
3044 border: 1px solid #bbbbbb;
3045 *border: 0;
3046 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
3047 border-color: #e6e6e6 #e6e6e6 #bfbfbf;
3048 border-bottom-color: #a2a2a2;
3049 -webkit-border-radius: 4px;
3050 -moz-border-radius: 4px;
3051 border-radius: 4px;
3052 filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);
3053 filter: progid:dximagetransform.microsoft.gradient(enabled=false);
3054 *zoom: 1;
3055 -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
3056 -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
3057 box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
3058 }
3059
3060 .btn:hover,
3061 .btn:active,
3062 .btn.active,
3063 .btn.disabled,
3064 .btn[disabled] {
3065 color: #333333;
3066 background-color: #e6e6e6;
3067 *background-color: #d9d9d9;
3068 }
3069
3070 .btn:active,
3071 .btn.active {
3072 background-color: #cccccc \9;
3073 }
3074
3075 .btn:first-child {
3076 *margin-left: 0;
3077 }
3078
3079 .btn:hover {
3080 color: #333333;
3081 text-decoration: none;
3082 background-color: #e6e6e6;
3083 *background-color: #d9d9d9;
3084 /* Buttons in IE7 don't get borders, so darken on hover */
3085
3086 background-position: 0 -15px;
3087 -webkit-transition: background-position 0.1s linear;
3088 -moz-transition: background-position 0.1s linear;
3089 -o-transition: background-position 0.1s linear;
3090 transition: background-position 0.1s linear;
3091 }
3092
3093 .btn:focus {
3094 outline: thin dotted #333;
3095 outline: 5px auto -webkit-focus-ring-color;
3096 outline-offset: -2px;
3097 }
3098
3099 .btn.active,
3100 .btn:active {
3101 background-color: #e6e6e6;
3102 background-color: #d9d9d9 \9;
3103 background-image: none;
3104 outline: 0;
3105 -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
3106 -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
3107 box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
3108 }
3109
3110 .btn.disabled,
3111 .btn[disabled] {
3112 cursor: default;
3113 background-color: #e6e6e6;
3114 background-image: none;
3115 opacity: 0.65;
3116 filter: alpha(opacity=65);
3117 -webkit-box-shadow: none;
3118 -moz-box-shadow: none;
3119 box-shadow: none;
3120 }
3121
3122 .btn-large {
3123 padding: 9px 14px;
3124 font-size: 16px;
3125 line-height: normal;
3126 -webkit-border-radius: 5px;
3127 -moz-border-radius: 5px;
3128 border-radius: 5px;
3129 }
3130
3131 .btn-large [class^="icon-"] {
3132 margin-top: 2px;
3133 }
3134
3135 .btn-small {
3136 padding: 3px 9px;
3137 font-size: 12px;
3138 line-height: 18px;
3139 }
3140
3141 .btn-small [class^="icon-"] {
3142 margin-top: 0;
3143 }
3144
3145 .btn-mini {
3146 padding: 2px 6px;
3147 font-size: 11px;
3148 line-height: 17px;
3149 }
3150
3151 .btn-block {
3152 display: block;
3153 width: 100%;
3154 padding-right: 0;
3155 padding-left: 0;
3156 -webkit-box-sizing: border-box;
3157 -moz-box-sizing: border-box;
3158 box-sizing: border-box;
3159 }
3160
3161 .btn-block + .btn-block {
3162 margin-top: 5px;
3163 }
3164
3165 input[type="submit"].btn-block,
3166 input[type="reset"].btn-block,
3167 input[type="button"].btn-block {
3168 width: 100%;
3169 }
3170
3171 .btn-primary.active,
3172 .btn-warning.active,
3173 .btn-danger.active,
3174 .btn-success.active,
3175 .btn-info.active,
3176 .btn-inverse.active {
3177 color: rgba(255, 255, 255, 0.75);
3178 }
3179
3180 .btn {
3181 border-color: #c5c5c5;
3182 border-color: rgba(0, 0, 0, 0.15) rgba(0, 0, 0, 0.15) rgba(0, 0, 0, 0.25);
3183 }
3184
3185 .btn-primary {
3186 color: #ffffff;
3187 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
3188 background-color: #006dcc;
3189 *background-color: #0044cc;
3190 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));
3191 background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
3192 background-image: -o-linear-gradient(top, #0088cc, #0044cc);
3193 background-image: linear-gradient(to bottom, #0088cc, #0044cc);
3194 background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
3195 background-repeat: repeat-x;
3196 border-color: #0044cc #0044cc #002a80;
3197 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
3198 filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0044cc', GradientType=0);
3199 filter: progid:dximagetransform.microsoft.gradient(enabled=false);
3200 }
3201
3202 .btn-primary:hover,
3203 .btn-primary:active,
3204 .btn-primary.active,
3205 .btn-primary.disabled,
3206 .btn-primary[disabled] {
3207 color: #ffffff;
3208 background-color: #0044cc;
3209 *background-color: #003bb3;
3210 }
3211
3212 .btn-primary:active,
3213 .btn-primary.active {
3214 background-color: #003399 \9;
3215 }
3216
3217 .btn-warning {
3218 color: #ffffff;
3219 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
3220 background-color: #faa732;
3221 *background-color: #f89406;
3222 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
3223 background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
3224 background-image: -o-linear-gradient(top, #fbb450, #f89406);
3225 background-image: linear-gradient(to bottom, #fbb450, #f89406);
3226 background-image: -moz-linear-gradient(top, #fbb450, #f89406);
3227 background-repeat: repeat-x;
3228 border-color: #f89406 #f89406 #ad6704;
3229 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
3230 filter: progid:dximagetransform.microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0);
3231 filter: progid:dximagetransform.microsoft.gradient(enabled=false);
3232 }
3233
3234 .btn-warning:hover,
3235 .btn-warning:active,
3236 .btn-warning.active,
3237 .btn-warning.disabled,
3238 .btn-warning[disabled] {
3239 color: #ffffff;
3240 background-color: #f89406;
3241 *background-color: #df8505;
3242 }
3243
3244 .btn-warning:active,
3245 .btn-warning.active {
3246 background-color: #c67605 \9;
3247 }
3248
3249 .btn-danger {
3250 color: #ffffff;
3251 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
3252 background-color: #da4f49;
3253 *background-color: #bd362f;
3254 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));
3255 background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f);
3256 background-image: -o-linear-gradient(top, #ee5f5b, #bd362f);
3257 background-image: linear-gradient(to bottom, #ee5f5b, #bd362f);
3258 background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f);
3259 background-repeat: repeat-x;
3260 border-color: #bd362f #bd362f #802420;
3261 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
3262 filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffbd362f', GradientType=0);
3263 filter: progid:dximagetransform.microsoft.gradient(enabled=false);
3264 }
3265
3266 .btn-danger:hover,
3267 .btn-danger:active,
3268 .btn-danger.active,
3269 .btn-danger.disabled,
3270 .btn-danger[disabled] {
3271 color: #ffffff;
3272 background-color: #bd362f;
3273 *background-color: #a9302a;
3274 }
3275
3276 .btn-danger:active,
3277 .btn-danger.active {
3278 background-color: #942a25 \9;
3279 }
3280
3281 .btn-success {
3282 color: #ffffff;
3283 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
3284 background-color: #5bb75b;
3285 *background-color: #51a351;
3286 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));
3287 background-image: -webkit-linear-gradient(top, #62c462, #51a351);
3288 background-image: -o-linear-gradient(top, #62c462, #51a351);
3289 background-image: linear-gradient(to bottom, #62c462, #51a351);
3290 background-image: -moz-linear-gradient(top, #62c462, #51a351);
3291 background-repeat: repeat-x;
3292 border-color: #51a351 #51a351 #387038;
3293 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
3294 filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff51a351', GradientType=0);
3295 filter: progid:dximagetransform.microsoft.gradient(enabled=false);
3296 }
3297
3298 .btn-success:hover,
3299 .btn-success:active,
3300 .btn-success.active,
3301 .btn-success.disabled,
3302 .btn-success[disabled] {
3303 color: #ffffff;
3304 background-color: #51a351;
3305 *background-color: #499249;
3306 }
3307
3308 .btn-success:active,
3309 .btn-success.active {
3310 background-color: #408140 \9;
3311 }
3312
3313 .btn-info {
3314 color: #ffffff;
3315 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
3316 background-color: #49afcd;
3317 *background-color: #2f96b4;
3318 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));
3319 background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4);
3320 background-image: -o-linear-gradient(top, #5bc0de, #2f96b4);
3321 background-image: linear-gradient(to bottom, #5bc0de, #2f96b4);
3322 background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4);
3323 background-repeat: repeat-x;
3324 border-color: #2f96b4 #2f96b4 #1f6377;
3325 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
3326 filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2f96b4', GradientType=0);
3327 filter: progid:dximagetransform.microsoft.gradient(enabled=false);
3328 }
3329
3330 .btn-info:hover,
3331 .btn-info:active,
3332 .btn-info.active,
3333 .btn-info.disabled,
3334 .btn-info[disabled] {
3335 color: #ffffff;
3336 background-color: #2f96b4;
3337 *background-color: #2a85a0;
3338 }
3339
3340 .btn-info:active,
3341 .btn-info.active {
3342 background-color: #24748c \9;
3343 }
3344
3345 .btn-inverse {
3346 color: #ffffff;
3347 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
3348 background-color: #363636;
3349 *background-color: #222222;
3350 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#444444), to(#222222));
3351 background-image: -webkit-linear-gradient(top, #444444, #222222);
3352 background-image: -o-linear-gradient(top, #444444, #222222);
3353 background-image: linear-gradient(to bottom, #444444, #222222);
3354 background-image: -moz-linear-gradient(top, #444444, #222222);
3355 background-repeat: repeat-x;
3356 border-color: #222222 #222222 #000000;
3357 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
3358 filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff444444', endColorstr='#ff222222', GradientType=0);
3359 filter: progid:dximagetransform.microsoft.gradient(enabled=false);
3360 }
3361
3362 .btn-inverse:hover,
3363 .btn-inverse:active,
3364 .btn-inverse.active,
3365 .btn-inverse.disabled,
3366 .btn-inverse[disabled] {
3367 color: #ffffff;
3368 background-color: #222222;
3369 *background-color: #151515;
3370 }
3371
3372 .btn-inverse:active,
3373 .btn-inverse.active {
3374 background-color: #080808 \9;
3375 }
3376
3377 button.btn,
3378 input[type="submit"].btn {
3379 *padding-top: 3px;
3380 *padding-bottom: 3px;
3381 }
3382
3383 button.btn::-moz-focus-inner,
3384 input[type="submit"].btn::-moz-focus-inner {
3385 padding: 0;
3386 border: 0;
3387 }
3388
3389 button.btn.btn-large,
3390 input[type="submit"].btn.btn-large {
3391 *padding-top: 7px;
3392 *padding-bottom: 7px;
3393 }
3394
3395 button.btn.btn-small,
3396 input[type="submit"].btn.btn-small {
3397 *padding-top: 3px;
3398 *padding-bottom: 3px;
3399 }
3400
3401 button.btn.btn-mini,
3402 input[type="submit"].btn.btn-mini {
3403 *padding-top: 1px;
3404 *padding-bottom: 1px;
3405 }
3406
3407 .btn-link,
3408 .btn-link:active,
3409 .btn-link[disabled] {
3410 background-color: transparent;
3411 background-image: none;
3412 -webkit-box-shadow: none;
3413 -moz-box-shadow: none;
3414 box-shadow: none;
3415 }
3416
3417 .btn-link {
3418 color: #0088cc;
3419 cursor: pointer;
3420 border-color: transparent;
3421 -webkit-border-radius: 0;
3422 -moz-border-radius: 0;
3423 border-radius: 0;
3424 }
3425
3426 .btn-link:hover {
3427 color: #005580;
3428 text-decoration: underline;
3429 background-color: transparent;
3430 }
3431
3432 .btn-link[disabled]:hover {
3433 color: #333333;
3434 text-decoration: none;
3435 }
3436
3437 .btn-group {
3438 position: relative;
3439 *margin-left: .3em;
3440 font-size: 0;
3441 white-space: nowrap;
3442 vertical-align: middle;
3443 }
3444
3445 .btn-group:first-child {
3446 *margin-left: 0;
3447 }
3448
3449 .btn-group + .btn-group {
3450 margin-left: 5px;
3451 }
3452
3453 .btn-toolbar {
3454 margin-top: 10px;
3455 margin-bottom: 10px;
3456 font-size: 0;
3457 }
3458
3459 .btn-toolbar .btn-group {
3460 display: inline-block;
3461 *display: inline;
3462 /* IE7 inline-block hack */
3463
3464 *zoom: 1;
3465 }
3466
3467 .btn-toolbar .btn + .btn,
3468 .btn-toolbar .btn-group + .btn,
3469 .btn-toolbar .btn + .btn-group {
3470 margin-left: 5px;
3471 }
3472
3473 .btn-group > .btn {
3474 position: relative;
3475 -webkit-border-radius: 0;
3476 -moz-border-radius: 0;
3477 border-radius: 0;
3478 }
3479
3480 .btn-group > .btn + .btn {
3481 margin-left: -1px;
3482 }
3483
3484 .btn-group > .btn,
3485 .btn-group > .dropdown-menu {
3486 font-size: 14px;
3487 }
3488
3489 .btn-group > .btn-mini {
3490 font-size: 11px;
3491 }
3492
3493 .btn-group > .btn-small {
3494 font-size: 12px;
3495 }
3496
3497 .btn-group > .btn-large {
3498 font-size: 16px;
3499 }
3500
3501 .btn-group > .btn:first-child {
3502 margin-left: 0;
3503 -webkit-border-bottom-left-radius: 4px;
3504 border-bottom-left-radius: 4px;
3505 -webkit-border-top-left-radius: 4px;
3506 border-top-left-radius: 4px;
3507 -moz-border-radius-bottomleft: 4px;
3508 -moz-border-radius-topleft: 4px;
3509 }
3510
3511 .btn-group > .btn:last-child,
3512 .btn-group > .dropdown-toggle {
3513 -webkit-border-top-right-radius: 4px;
3514 border-top-right-radius: 4px;
3515 -webkit-border-bottom-right-radius: 4px;
3516 border-bottom-right-radius: 4px;
3517 -moz-border-radius-topright: 4px;
3518 -moz-border-radius-bottomright: 4px;
3519 }
3520
3521 .btn-group > .btn.large:first-child {
3522 margin-left: 0;
3523 -webkit-border-bottom-left-radius: 6px;
3524 border-bottom-left-radius: 6px;
3525 -webkit-border-top-left-radius: 6px;
3526 border-top-left-radius: 6px;
3527 -moz-border-radius-bottomleft: 6px;
3528 -moz-border-radius-topleft: 6px;
3529 }
3530
3531 .btn-group > .btn.large:last-child,
3532 .btn-group > .large.dropdown-toggle {
3533 -webkit-border-top-right-radius: 6px;
3534 border-top-right-radius: 6px;
3535 -webkit-border-bottom-right-radius: 6px;
3536 border-bottom-right-radius: 6px;
3537 -moz-border-radius-topright: 6px;
3538 -moz-border-radius-bottomright: 6px;
3539 }
3540
3541 .btn-group > .btn:hover,
3542 .btn-group > .btn:focus,
3543 .btn-group > .btn:active,
3544 .btn-group > .btn.active {
3545 z-index: 2;
3546 }
3547
3548 .btn-group .dropdown-toggle:active,
3549 .btn-group.open .dropdown-toggle {
3550 outline: 0;
3551 }
3552
3553 .btn-group > .btn + .dropdown-toggle {
3554 *padding-top: 5px;
3555 padding-right: 8px;
3556 *padding-bottom: 5px;
3557 padding-left: 8px;
3558 -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);
3559 -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);
3560 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);
3561 }
3562
3563 .btn-group > .btn-mini + .dropdown-toggle {
3564 *padding-top: 2px;
3565 padding-right: 5px;
3566 *padding-bottom: 2px;
3567 padding-left: 5px;
3568 }
3569
3570 .btn-group > .btn-small + .dropdown-toggle {
3571 *padding-top: 5px;
3572 *padding-bottom: 4px;
3573 }
3574
3575 .btn-group > .btn-large + .dropdown-toggle {
3576 *padding-top: 7px;
3577 padding-right: 12px;
3578 *padding-bottom: 7px;
3579 padding-left: 12px;
3580 }
3581
3582 .btn-group.open .dropdown-toggle {
3583 background-image: none;
3584 -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
3585 -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
3586 box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
3587 }
3588
3589 .btn-group.open .btn.dropdown-toggle {
3590 background-color: #e6e6e6;
3591 }
3592
3593 .btn-group.open .btn-primary.dropdown-toggle {
3594 background-color: #0044cc;
3595 }
3596
3597 .btn-group.open .btn-warning.dropdown-toggle {
3598 background-color: #f89406;
3599 }
3600
3601 .btn-group.open .btn-danger.dropdown-toggle {
3602 background-color: #bd362f;
3603 }
3604
3605 .btn-group.open .btn-success.dropdown-toggle {
3606 background-color: #51a351;
3607 }
3608
3609 .btn-group.open .btn-info.dropdown-toggle {
3610 background-color: #2f96b4;
3611 }
3612
3613 .btn-group.open .btn-inverse.dropdown-toggle {
3614 background-color: #222222;
3615 }
3616
3617 .btn .caret {
3618 margin-top: 8px;
3619 margin-left: 0;
3620 }
3621
3622 .btn-mini .caret,
3623 .btn-small .caret,
3624 .btn-large .caret {
3625 margin-top: 6px;
3626 }
3627
3628 .btn-large .caret {
3629 border-top-width: 5px;
3630 border-right-width: 5px;
3631 border-left-width: 5px;
3632 }
3633
3634 .dropup .btn-large .caret {
3635 border-top: 0;
3636 border-bottom: 5px solid #000000;
3637 }
3638
3639 .btn-primary .caret,
3640 .btn-warning .caret,
3641 .btn-danger .caret,
3642 .btn-info .caret,
3643 .btn-success .caret,
3644 .btn-inverse .caret {
3645 border-top-color: #ffffff;
3646 border-bottom-color: #ffffff;
3647 }
3648
3649 .btn-group-vertical {
3650 display: inline-block;
3651 *display: inline;
3652 /* IE7 inline-block hack */
3653
3654 *zoom: 1;
3655 }
3656
3657 .btn-group-vertical .btn {
3658 display: block;
3659 float: none;
3660 width: 100%;
3661 -webkit-border-radius: 0;
3662 -moz-border-radius: 0;
3663 border-radius: 0;
3664 }
3665
3666 .btn-group-vertical .btn + .btn {
3667 margin-top: -1px;
3668 margin-left: 0;
3669 }
3670
3671 .btn-group-vertical .btn:first-child {
3672 -webkit-border-radius: 4px 4px 0 0;
3673 -moz-border-radius: 4px 4px 0 0;
3674 border-radius: 4px 4px 0 0;
3675 }
3676
3677 .btn-group-vertical .btn:last-child {
3678 -webkit-border-radius: 0 0 4px 4px;
3679 -moz-border-radius: 0 0 4px 4px;
3680 border-radius: 0 0 4px 4px;
3681 }
3682
3683 .btn-group-vertical .btn-large:first-child {
3684 -webkit-border-radius: 6px 6px 0 0;
3685 -moz-border-radius: 6px 6px 0 0;
3686 border-radius: 6px 6px 0 0;
3687 }
3688
3689 .btn-group-vertical .btn-large:last-child {
3690 -webkit-border-radius: 0 0 6px 6px;
3691 -moz-border-radius: 0 0 6px 6px;
3692 border-radius: 0 0 6px 6px;
3693 }
3694
3695 .alert {
3696 padding: 8px 35px 8px 14px;
3697 margin-bottom: 20px;
3698 color: #c09853;
3699 text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
3700 background-color: #fcf8e3;
3701 border: 1px solid #fbeed5;
3702 -webkit-border-radius: 4px;
3703 -moz-border-radius: 4px;
3704 border-radius: 4px;
3705 }
3706
3707 .alert h4 {
3708 margin: 0;
3709 }
3710
3711 .alert .close {
3712 position: relative;
3713 top: -2px;
3714 right: -21px;
3715 line-height: 20px;
3716 }
3717
3718 .alert-success {
3719 color: #468847;
3720 background-color: #dff0d8;
3721 border-color: #d6e9c6;
3722 }
3723
3724 .alert-danger,
3725 .alert-error {
3726 color: #b94a48;
3727 background-color: #f2dede;
3728 border-color: #eed3d7;
3729 }
3730
3731 .alert-info {
3732 color: #3a87ad;
3733 background-color: #d9edf7;
3734 border-color: #bce8f1;
3735 }
3736
3737 .alert-block {
3738 padding-top: 14px;
3739 padding-bottom: 14px;
3740 }
3741
3742 .alert-block > p,
3743 .alert-block > ul {
3744 margin-bottom: 0;
3745 }
3746
3747 .alert-block p + p {
3748 margin-top: 5px;
3749 }
3750
3751 .nav {
3752 margin-bottom: 20px;
3753 margin-left: 0;
3754 list-style: none;
3755 }
3756
3757 .nav > li > a {
3758 display: block;
3759 }
3760
3761 .nav > li > a:hover {
3762 text-decoration: none;
3763 background-color: #eeeeee;
3764 }
3765
3766 .nav > .pull-right {
3767 float: right;
3768 }
3769
3770 .nav-header {
3771 display: block;
3772 padding: 3px 15px;
3773 font-size: 11px;
3774 font-weight: bold;
3775 line-height: 20px;
3776 color: #999999;
3777 text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
3778 text-transform: uppercase;
3779 }
3780
3781 .nav li + .nav-header {
3782 margin-top: 9px;
3783 }
3784
3785 .nav-list {
3786 padding-right: 15px;
3787 padding-left: 15px;
3788 margin-bottom: 0;
3789 }
3790
3791 .nav-list > li > a,
3792 .nav-list .nav-header {
3793 margin-right: -15px;
3794 margin-left: -15px;
3795 text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
3796 }
3797
3798 .nav-list > li > a {
3799 padding: 3px 15px;
3800 }
3801
3802 .nav-list > .active > a,
3803 .nav-list > .active > a:hover {
3804 color: #ffffff;
3805 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
3806 background-color: #0088cc;
3807 }
3808
3809 .nav-list [class^="icon-"] {
3810 margin-right: 2px;
3811 }
3812
3813 .nav-list .divider {
3814 *width: 100%;
3815 height: 1px;
3816 margin: 9px 1px;
3817 *margin: -5px 0 5px;
3818 overflow: hidden;
3819 background-color: #e5e5e5;
3820 border-bottom: 1px solid #ffffff;
3821 }
3822
3823 .nav-tabs,
3824 .nav-pills {
3825 *zoom: 1;
3826 }
3827
3828 .nav-tabs:before,
3829 .nav-pills:before,
3830 .nav-tabs:after,
3831 .nav-pills:after {
3832 display: table;
3833 line-height: 0;
3834 content: "";
3835 }
3836
3837 .nav-tabs:after,
3838 .nav-pills:after {
3839 clear: both;
3840 }
3841
3842 .nav-tabs > li,
3843 .nav-pills > li {
3844 float: left;
3845 }
3846
3847 .nav-tabs > li > a,
3848 .nav-pills > li > a {
3849 padding-right: 12px;
3850 padding-left: 12px;
3851 margin-right: 2px;
3852 line-height: 14px;
3853 }
3854
3855 .nav-tabs {
3856 border-bottom: 1px solid #ddd;
3857 }
3858
3859 .nav-tabs > li {
3860 margin-bottom: -1px;
3861 }
3862
3863 .nav-tabs > li > a {
3864 padding-top: 8px;
3865 padding-bottom: 8px;
3866 line-height: 20px;
3867 border: 1px solid transparent;
3868 -webkit-border-radius: 4px 4px 0 0;
3869 -moz-border-radius: 4px 4px 0 0;
3870 border-radius: 4px 4px 0 0;
3871 }
3872
3873 .nav-tabs > li > a:hover {
3874 border-color: #eeeeee #eeeeee #dddddd;
3875 }
3876
3877 .nav-tabs > .active > a,
3878 .nav-tabs > .active > a:hover {
3879 color: #555555;
3880 cursor: default;
3881 background-color: #ffffff;
3882 border: 1px solid #ddd;
3883 border-bottom-color: transparent;
3884 }
3885
3886 .nav-pills > li > a {
3887 padding-top: 8px;
3888 padding-bottom: 8px;
3889 margin-top: 2px;
3890 margin-bottom: 2px;
3891 -webkit-border-radius: 5px;
3892 -moz-border-radius: 5px;
3893 border-radius: 5px;
3894 }
3895
3896 .nav-pills > .active > a,
3897 .nav-pills > .active > a:hover {
3898 color: #ffffff;
3899 background-color: #0088cc;
3900 }
3901
3902 .nav-stacked > li {
3903 float: none;
3904 }
3905
3906 .nav-stacked > li > a {
3907 margin-right: 0;
3908 }
3909
3910 .nav-tabs.nav-stacked {
3911 border-bottom: 0;
3912 }
3913
3914 .nav-tabs.nav-stacked > li > a {
3915 border: 1px solid #ddd;
3916 -webkit-border-radius: 0;
3917 -moz-border-radius: 0;
3918 border-radius: 0;
3919 }
3920
3921 .nav-tabs.nav-stacked > li:first-child > a {
3922 -webkit-border-top-right-radius: 4px;
3923 border-top-right-radius: 4px;
3924 -webkit-border-top-left-radius: 4px;
3925 border-top-left-radius: 4px;
3926 -moz-border-radius-topright: 4px;
3927 -moz-border-radius-topleft: 4px;
3928 }
3929
3930 .nav-tabs.nav-stacked > li:last-child > a {
3931 -webkit-border-bottom-right-radius: 4px;
3932 border-bottom-right-radius: 4px;
3933 -webkit-border-bottom-left-radius: 4px;
3934 border-bottom-left-radius: 4px;
3935 -moz-border-radius-bottomright: 4px;
3936 -moz-border-radius-bottomleft: 4px;
3937 }
3938
3939 .nav-tabs.nav-stacked > li > a:hover {
3940 z-index: 2;
3941 border-color: #ddd;
3942 }
3943
3944 .nav-pills.nav-stacked > li > a {
3945 margin-bottom: 3px;
3946 }
3947
3948 .nav-pills.nav-stacked > li:last-child > a {
3949 margin-bottom: 1px;
3950 }
3951
3952 .nav-tabs .dropdown-menu {
3953 -webkit-border-radius: 0 0 6px 6px;
3954 -moz-border-radius: 0 0 6px 6px;
3955 border-radius: 0 0 6px 6px;
3956 }
3957
3958 .nav-pills .dropdown-menu {
3959 -webkit-border-radius: 6px;
3960 -moz-border-radius: 6px;
3961 border-radius: 6px;
3962 }
3963
3964 .nav .dropdown-toggle .caret {
3965 margin-top: 6px;
3966 border-top-color: #0088cc;
3967 border-bottom-color: #0088cc;
3968 }
3969
3970 .nav .dropdown-toggle:hover .caret {
3971 border-top-color: #005580;
3972 border-bottom-color: #005580;
3973 }
3974
3975 /* move down carets for tabs */
3976
3977 .nav-tabs .dropdown-toggle .caret {
3978 margin-top: 8px;
3979 }
3980
3981 .nav .active .dropdown-toggle .caret {
3982 border-top-color: #fff;
3983 border-bottom-color: #fff;
3984 }
3985
3986 .nav-tabs .active .dropdown-toggle .caret {
3987 border-top-color: #555555;
3988 border-bottom-color: #555555;
3989 }
3990
3991 .nav > .dropdown.active > a:hover {
3992 cursor: pointer;
3993 }
3994
3995 .nav-tabs .open .dropdown-toggle,
3996 .nav-pills .open .dropdown-toggle,
3997 .nav > li.dropdown.open.active > a:hover {
3998 color: #ffffff;
3999 background-color: #999999;
4000 border-color: #999999;
4001 }
4002
4003 .nav li.dropdown.open .caret,
4004 .nav li.dropdown.open.active .caret,
4005 .nav li.dropdown.open a:hover .caret {
4006 border-top-color: #ffffff;
4007 border-bottom-color: #ffffff;
4008 opacity: 1;
4009 filter: alpha(opacity=100);
4010 }
4011
4012 .tabs-stacked .open > a:hover {
4013 border-color: #999999;
4014 }
4015
4016 .tabbable {
4017 *zoom: 1;
4018 }
4019
4020 .tabbable:before,
4021 .tabbable:after {
4022 display: table;
4023 line-height: 0;
4024 content: "";
4025 }
4026
4027 .tabbable:after {
4028 clear: both;
4029 }
4030
4031 .tab-content {
4032 overflow: auto;
4033 }
4034
4035 .tabs-below > .nav-tabs,
4036 .tabs-right > .nav-tabs,
4037 .tabs-left > .nav-tabs {
4038 border-bottom: 0;
4039 }
4040
4041 .tab-content > .tab-pane,
4042 .pill-content > .pill-pane {
4043 display: none;
4044 }
4045
4046 .tab-content > .active,
4047 .pill-content > .active {
4048 display: block;
4049 }
4050
4051 .tabs-below > .nav-tabs {
4052 border-top: 1px solid #ddd;
4053 }
4054
4055 .tabs-below > .nav-tabs > li {
4056 margin-top: -1px;
4057 margin-bottom: 0;
4058 }
4059
4060 .tabs-below > .nav-tabs > li > a {
4061 -webkit-border-radius: 0 0 4px 4px;
4062 -moz-border-radius: 0 0 4px 4px;
4063 border-radius: 0 0 4px 4px;
4064 }
4065
4066 .tabs-below > .nav-tabs > li > a:hover {
4067 border-top-color: #ddd;
4068 border-bottom-color: transparent;
4069 }
4070
4071 .tabs-below > .nav-tabs > .active > a,
4072 .tabs-below > .nav-tabs > .active > a:hover {
4073 border-color: transparent #ddd #ddd #ddd;
4074 }
4075
4076 .tabs-left > .nav-tabs > li,
4077 .tabs-right > .nav-tabs > li {
4078 float: none;
4079 }
4080
4081 .tabs-left > .nav-tabs > li > a,
4082 .tabs-right > .nav-tabs > li > a {
4083 min-width: 74px;
4084 margin-right: 0;
4085 margin-bottom: 3px;
4086 }
4087
4088 .tabs-left > .nav-tabs {
4089 float: left;
4090 margin-right: 19px;
4091 border-right: 1px solid #ddd;
4092 }
4093
4094 .tabs-left > .nav-tabs > li > a {
4095 margin-right: -1px;
4096 -webkit-border-radius: 4px 0 0 4px;
4097 -moz-border-radius: 4px 0 0 4px;
4098 border-radius: 4px 0 0 4px;
4099 }
4100
4101 .tabs-left > .nav-tabs > li > a:hover {
4102 border-color: #eeeeee #dddddd #eeeeee #eeeeee;
4103 }
4104
4105 .tabs-left > .nav-tabs .active > a,
4106 .tabs-left > .nav-tabs .active > a:hover {
4107 border-color: #ddd transparent #ddd #ddd;
4108 *border-right-color: #ffffff;
4109 }
4110
4111 .tabs-right > .nav-tabs {
4112 float: right;
4113 margin-left: 19px;
4114 border-left: 1px solid #ddd;
4115 }
4116
4117 .tabs-right > .nav-tabs > li > a {
4118 margin-left: -1px;
4119 -webkit-border-radius: 0 4px 4px 0;
4120 -moz-border-radius: 0 4px 4px 0;
4121 border-radius: 0 4px 4px 0;
4122 }
4123
4124 .tabs-right > .nav-tabs > li > a:hover {
4125 border-color: #eeeeee #eeeeee #eeeeee #dddddd;
4126 }
4127
4128 .tabs-right > .nav-tabs .active > a,
4129 .tabs-right > .nav-tabs .active > a:hover {
4130 border-color: #ddd #ddd #ddd transparent;
4131 *border-left-color: #ffffff;
4132 }
4133
4134 .nav > .disabled > a {
4135 color: #999999;
4136 }
4137
4138 .nav > .disabled > a:hover {
4139 text-decoration: none;
4140 cursor: default;
4141 background-color: transparent;
4142 }
4143
4144 .navbar {
4145 *position: relative;
4146 *z-index: 2;
4147 margin-bottom: 20px;
4148 overflow: visible;
4149 color: #777777;
4150 }
4151
4152 .navbar-inner {
4153 min-height: 40px;
4154 padding-right: 20px;
4155 padding-left: 20px;
4156 background-color: #fafafa;
4157 background-image: -moz-linear-gradient(top, #ffffff, #f2f2f2);
4158 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#f2f2f2));
4159 background-image: -webkit-linear-gradient(top, #ffffff, #f2f2f2);
4160 background-image: -o-linear-gradient(top, #ffffff, #f2f2f2);
4161 background-image: linear-gradient(to bottom, #ffffff, #f2f2f2);
4162 background-repeat: repeat-x;
4163 border: 1px solid #d4d4d4;
4164 -webkit-border-radius: 4px;
4165 -moz-border-radius: 4px;
4166 border-radius: 4px;
4167 filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff2f2f2', GradientType=0);
4168 *zoom: 1;
4169 -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
4170 -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
4171 box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
4172 }
4173
4174 .navbar-inner:before,
4175 .navbar-inner:after {
4176 display: table;
4177 line-height: 0;
4178 content: "";
4179 }
4180
4181 .navbar-inner:after {
4182 clear: both;
4183 }
4184
4185 .navbar .container {
4186 width: auto;
4187 }
4188
4189 .nav-collapse.collapse {
4190 height: auto;
4191 }
4192
4193 .navbar .brand {
4194 display: block;
4195 float: left;
4196 padding: 10px 20px 10px;
4197 margin-left: -20px;
4198 font-size: 20px;
4199 font-weight: 200;
4200 color: #777777;
4201 text-shadow: 0 1px 0 #ffffff;
4202 }
4203
4204 .navbar .brand:hover {
4205 text-decoration: none;
4206 }
4207
4208 .navbar-text {
4209 margin-bottom: 0;
4210 line-height: 40px;
4211 }
4212
4213 .navbar-link {
4214 color: #777777;
4215 }
4216
4217 .navbar-link:hover {
4218 color: #333333;
4219 }
4220
4221 .navbar .divider-vertical {
4222 height: 40px;
4223 margin: 0 9px;
4224 border-right: 1px solid #ffffff;
4225 border-left: 1px solid #f2f2f2;
4226 }
4227
4228 .navbar .btn,
4229 .navbar .btn-group {
4230 margin-top: 5px;
4231 }
4232
4233 .navbar .btn-group .btn,
4234 .navbar .input-prepend .btn,
4235 .navbar .input-append .btn {
4236 margin-top: 0;
4237 }
4238
4239 .navbar-form {
4240 margin-bottom: 0;
4241 *zoom: 1;
4242 }
4243
4244 .navbar-form:before,
4245 .navbar-form:after {
4246 display: table;
4247 line-height: 0;
4248 content: "";
4249 }
4250
4251 .navbar-form:after {
4252 clear: both;
4253 }
4254
4255 .navbar-form input,
4256 .navbar-form select,
4257 .navbar-form .radio,
4258 .navbar-form .checkbox {
4259 margin-top: 5px;
4260 }
4261
4262 .navbar-form input,
4263 .navbar-form select,
4264 .navbar-form .btn {
4265 display: inline-block;
4266 margin-bottom: 0;
4267 }
4268
4269 .navbar-form input[type="image"],
4270 .navbar-form input[type="checkbox"],
4271 .navbar-form input[type="radio"] {
4272 margin-top: 3px;
4273 }
4274
4275 .navbar-form .input-append,
4276 .navbar-form .input-prepend {
4277 margin-top: 6px;
4278 white-space: nowrap;
4279 }
4280
4281 .navbar-form .input-append input,
4282 .navbar-form .input-prepend input {
4283 margin-top: 0;
4284 }
4285
4286 .navbar-search {
4287 position: relative;
4288 float: left;
4289 margin-top: 5px;
4290 margin-bottom: 0;
4291 }
4292
4293 .navbar-search .search-query {
4294 padding: 4px 14px;
4295 margin-bottom: 0;
4296 font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
4297 font-size: 13px;
4298 font-weight: normal;
4299 line-height: 1;
4300 -webkit-border-radius: 15px;
4301 -moz-border-radius: 15px;
4302 border-radius: 15px;
4303 }
4304
4305 .navbar-static-top {
4306 position: static;
4307 width: 100%;
4308 margin-bottom: 0;
4309 }
4310
4311 .navbar-static-top .navbar-inner {
4312 -webkit-border-radius: 0;
4313 -moz-border-radius: 0;
4314 border-radius: 0;
4315 }
4316
4317 .navbar-fixed-top,
4318 .navbar-fixed-bottom {
4319 position: fixed;
4320 right: 0;
4321 left: 0;
4322 z-index: 1030;
4323 margin-bottom: 0;
4324 }
4325
4326 .navbar-fixed-top .navbar-inner,
4327 .navbar-static-top .navbar-inner {
4328 border-width: 0 0 1px;
4329 }
4330
4331 .navbar-fixed-bottom .navbar-inner {
4332 border-width: 1px 0 0;
4333 }
4334
4335 .navbar-fixed-top .navbar-inner,
4336 .navbar-fixed-bottom .navbar-inner {
4337 padding-right: 0;
4338 padding-left: 0;
4339 -webkit-border-radius: 0;
4340 -moz-border-radius: 0;
4341 border-radius: 0;
4342 }
4343
4344 .navbar-static-top .container,
4345 .navbar-fixed-top .container,
4346 .navbar-fixed-bottom .container {
4347 width: 940px;
4348 }
4349
4350 .navbar-fixed-top {
4351 top: 0;
4352 }
4353
4354 .navbar-fixed-top .navbar-inner,
4355 .navbar-static-top .navbar-inner {
4356 -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 1px 10px rgba(0, 0, 0, 0.1);
4357 -moz-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 1px 10px rgba(0, 0, 0, 0.1);
4358 box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 1px 10px rgba(0, 0, 0, 0.1);
4359 }
4360
4361 .navbar-fixed-bottom {
4362 bottom: 0;
4363 }
4364
4365 .navbar-fixed-bottom .navbar-inner {
4366 -webkit-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1), 0 -1px 10px rgba(0, 0, 0, 0.1);
4367 -moz-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1), 0 -1px 10px rgba(0, 0, 0, 0.1);
4368 box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1), 0 -1px 10px rgba(0, 0, 0, 0.1);
4369 }
4370
4371 .navbar .nav {
4372 position: relative;
4373 left: 0;
4374 display: block;
4375 float: left;
4376 margin: 0 10px 0 0;
4377 }
4378
4379 .navbar .nav.pull-right {
4380 float: right;
4381 margin-right: 0;
4382 }
4383
4384 .navbar .nav > li {
4385 float: left;
4386 }
4387
4388 .navbar .nav > li > a {
4389 float: none;
4390 padding: 10px 15px 10px;
4391 color: #777777;
4392 text-decoration: none;
4393 text-shadow: 0 1px 0 #ffffff;
4394 }
4395
4396 .navbar .nav .dropdown-toggle .caret {
4397 margin-top: 8px;
4398 }
4399
4400 .navbar .nav > li > a:focus,
4401 .navbar .nav > li > a:hover {
4402 color: #333333;
4403 text-decoration: none;
4404 background-color: transparent;
4405 }
4406
4407 .navbar .nav > .active > a,
4408 .navbar .nav > .active > a:hover,
4409 .navbar .nav > .active > a:focus {
4410 color: #555555;
4411 text-decoration: none;
4412 background-color: #e5e5e5;
4413 -webkit-box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125);
4414 -moz-box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125);
4415 box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125);
4416 }
4417
4418 .navbar .btn-navbar {
4419 display: none;
4420 float: right;
4421 padding: 7px 10px;
4422 margin-right: 5px;
4423 margin-left: 5px;
4424 color: #ffffff;
4425 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
4426 background-color: #ededed;
4427 *background-color: #e5e5e5;
4428 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f2f2f2), to(#e5e5e5));
4429 background-image: -webkit-linear-gradient(top, #f2f2f2, #e5e5e5);
4430 background-image: -o-linear-gradient(top, #f2f2f2, #e5e5e5);
4431 background-image: linear-gradient(to bottom, #f2f2f2, #e5e5e5);
4432 background-image: -moz-linear-gradient(top, #f2f2f2, #e5e5e5);
4433 background-repeat: repeat-x;
4434 border-color: #e5e5e5 #e5e5e5 #bfbfbf;
4435 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
4436 filter: progid:dximagetransform.microsoft.gradient(startColorstr='#fff2f2f2', endColorstr='#ffe5e5e5', GradientType=0);
4437 filter: progid:dximagetransform.microsoft.gradient(enabled=false);
4438 -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
4439 -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
4440 box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
4441 }
4442
4443 .navbar .btn-navbar:hover,
4444 .navbar .btn-navbar:active,
4445 .navbar .btn-navbar.active,
4446 .navbar .btn-navbar.disabled,
4447 .navbar .btn-navbar[disabled] {
4448 color: #ffffff;
4449 background-color: #e5e5e5;
4450 *background-color: #d9d9d9;
4451 }
4452
4453 .navbar .btn-navbar:active,
4454 .navbar .btn-navbar.active {
4455 background-color: #cccccc \9;
4456 }
4457
4458 .navbar .btn-navbar .icon-bar {
4459 display: block;
4460 width: 18px;
4461 height: 2px;
4462 background-color: #f5f5f5;
4463 -webkit-border-radius: 1px;
4464 -moz-border-radius: 1px;
4465 border-radius: 1px;
4466 -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
4467 -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
4468 box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
4469 }
4470
4471 .btn-navbar .icon-bar + .icon-bar {
4472 margin-top: 3px;
4473 }
4474
4475 .navbar .nav > li > .dropdown-menu:before {
4476 position: absolute;
4477 top: -7px;
4478 left: 9px;
4479 display: inline-block;
4480 border-right: 7px solid transparent;
4481 border-bottom: 7px solid #ccc;
4482 border-left: 7px solid transparent;
4483 border-bottom-color: rgba(0, 0, 0, 0.2);
4484 content: '';
4485 }
4486
4487 .navbar .nav > li > .dropdown-menu:after {
4488 position: absolute;
4489 top: -6px;
4490 left: 10px;
4491 display: inline-block;
4492 border-right: 6px solid transparent;
4493 border-bottom: 6px solid #ffffff;
4494 border-left: 6px solid transparent;
4495 content: '';
4496 }
4497
4498 .navbar-fixed-bottom .nav > li > .dropdown-menu:before {
4499 top: auto;
4500 bottom: -7px;
4501 border-top: 7px solid #ccc;
4502 border-bottom: 0;
4503 border-top-color: rgba(0, 0, 0, 0.2);
4504 }
4505
4506 .navbar-fixed-bottom .nav > li > .dropdown-menu:after {
4507 top: auto;
4508 bottom: -6px;
4509 border-top: 6px solid #ffffff;
4510 border-bottom: 0;
4511 }
4512
4513 .navbar .nav li.dropdown.open > .dropdown-toggle,
4514 .navbar .nav li.dropdown.active > .dropdown-toggle,
4515 .navbar .nav li.dropdown.open.active > .dropdown-toggle {
4516 color: #555555;
4517 background-color: #e5e5e5;
4518 }
4519
4520 .navbar .nav li.dropdown > .dropdown-toggle .caret {
4521 border-top-color: #777777;
4522 border-bottom-color: #777777;
4523 }
4524
4525 .navbar .nav li.dropdown.open > .dropdown-toggle .caret,
4526 .navbar .nav li.dropdown.active > .dropdown-toggle .caret,
4527 .navbar .nav li.dropdown.open.active > .dropdown-toggle .caret {
4528 border-top-color: #555555;
4529 border-bottom-color: #555555;
4530 }
4531
4532 .navbar .pull-right > li > .dropdown-menu,
4533 .navbar .nav > li > .dropdown-menu.pull-right {
4534 right: 0;
4535 left: auto;
4536 }
4537
4538 .navbar .pull-right > li > .dropdown-menu:before,
4539 .navbar .nav > li > .dropdown-menu.pull-right:before {
4540 right: 12px;
4541 left: auto;
4542 }
4543
4544 .navbar .pull-right > li > .dropdown-menu:after,
4545 .navbar .nav > li > .dropdown-menu.pull-right:after {
4546 right: 13px;
4547 left: auto;
4548 }
4549
4550 .navbar .pull-right > li > .dropdown-menu .dropdown-menu,
4551 .navbar .nav > li > .dropdown-menu.pull-right .dropdown-menu {
4552 right: 100%;
4553 left: auto;
4554 margin-right: -1px;
4555 margin-left: 0;
4556 -webkit-border-radius: 6px 0 6px 6px;
4557 -moz-border-radius: 6px 0 6px 6px;
4558 border-radius: 6px 0 6px 6px;
4559 }
4560
4561 .navbar-inverse {
4562 color: #999999;
4563 }
4564
4565 .navbar-inverse .navbar-inner {
4566 background-color: #1b1b1b;
4567 background-image: -moz-linear-gradient(top, #222222, #111111);
4568 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#222222), to(#111111));
4569 background-image: -webkit-linear-gradient(top, #222222, #111111);
4570 background-image: -o-linear-gradient(top, #222222, #111111);
4571 background-image: linear-gradient(to bottom, #222222, #111111);
4572 background-repeat: repeat-x;
4573 border-color: #252525;
4574 filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff222222', endColorstr='#ff111111', GradientType=0);
4575 }
4576
4577 .navbar-inverse .brand,
4578 .navbar-inverse .nav > li > a {
4579 color: #999999;
4580 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
4581 }
4582
4583 .navbar-inverse .brand:hover,
4584 .navbar-inverse .nav > li > a:hover {
4585 color: #ffffff;
4586 }
4587
4588 .navbar-inverse .nav > li > a:focus,
4589 .navbar-inverse .nav > li > a:hover {
4590 color: #ffffff;
4591 background-color: transparent;
4592 }
4593
4594 .navbar-inverse .nav .active > a,
4595 .navbar-inverse .nav .active > a:hover,
4596 .navbar-inverse .nav .active > a:focus {
4597 color: #ffffff;
4598 background-color: #111111;
4599 }
4600
4601 .navbar-inverse .navbar-link {
4602 color: #999999;
4603 }
4604
4605 .navbar-inverse .navbar-link:hover {
4606 color: #ffffff;
4607 }
4608
4609 .navbar-inverse .divider-vertical {
4610 border-right-color: #222222;
4611 border-left-color: #111111;
4612 }
4613
4614 .navbar-inverse .nav li.dropdown.open > .dropdown-toggle,
4615 .navbar-inverse .nav li.dropdown.active > .dropdown-toggle,
4616 .navbar-inverse .nav li.dropdown.open.active > .dropdown-toggle {
4617 color: #ffffff;
4618 background-color: #111111;
4619 }
4620
4621 .navbar-inverse .nav li.dropdown > .dropdown-toggle .caret {
4622 border-top-color: #999999;
4623 border-bottom-color: #999999;
4624 }
4625
4626 .navbar-inverse .nav li.dropdown.open > .dropdown-toggle .caret,
4627 .navbar-inverse .nav li.dropdown.active > .dropdown-toggle .caret,
4628 .navbar-inverse .nav li.dropdown.open.active > .dropdown-toggle .caret {
4629 border-top-color: #ffffff;
4630 border-bottom-color: #ffffff;
4631 }
4632
4633 .navbar-inverse .navbar-search .search-query {
4634 color: #ffffff;
4635 background-color: #515151;
4636 border-color: #111111;
4637 -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0 rgba(255, 255, 255, 0.15);
4638 -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0 rgba(255, 255, 255, 0.15);
4639 box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0 rgba(255, 255, 255, 0.15);
4640 -webkit-transition: none;
4641 -moz-transition: none;
4642 -o-transition: none;
4643 transition: none;
4644 }
4645
4646 .navbar-inverse .navbar-search .search-query:-moz-placeholder {
4647 color: #cccccc;
4648 }
4649
4650 .navbar-inverse .navbar-search .search-query:-ms-input-placeholder {
4651 color: #cccccc;
4652 }
4653
4654 .navbar-inverse .navbar-search .search-query::-webkit-input-placeholder {
4655 color: #cccccc;
4656 }
4657
4658 .navbar-inverse .navbar-search .search-query:focus,
4659 .navbar-inverse .navbar-search .search-query.focused {
4660 padding: 5px 15px;
4661 color: #333333;
4662 text-shadow: 0 1px 0 #ffffff;
4663 background-color: #ffffff;
4664 border: 0;
4665 outline: 0;
4666 -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
4667 -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
4668 box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
4669 }
4670
4671 .navbar-inverse .btn-navbar {
4672 color: #ffffff;
4673 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
4674 background-color: #0e0e0e;
4675 *background-color: #040404;
4676 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#151515), to(#040404));
4677 background-image: -webkit-linear-gradient(top, #151515, #040404);
4678 background-image: -o-linear-gradient(top, #151515, #040404);
4679 background-image: linear-gradient(to bottom, #151515, #040404);
4680 background-image: -moz-linear-gradient(top, #151515, #040404);
4681 background-repeat: repeat-x;
4682 border-color: #040404 #040404 #000000;
4683 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
4684 filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff151515', endColorstr='#ff040404', GradientType=0);
4685 filter: progid:dximagetransform.microsoft.gradient(enabled=false);
4686 }
4687
4688 .navbar-inverse .btn-navbar:hover,
4689 .navbar-inverse .btn-navbar:active,
4690 .navbar-inverse .btn-navbar.active,
4691 .navbar-inverse .btn-navbar.disabled,
4692 .navbar-inverse .btn-navbar[disabled] {
4693 color: #ffffff;
4694 background-color: #040404;
4695 *background-color: #000000;
4696 }
4697
4698 .navbar-inverse .btn-navbar:active,
4699 .navbar-inverse .btn-navbar.active {
4700 background-color: #000000 \9;
4701 }
4702
4703 .breadcrumb {
4704 padding: 8px 15px;
4705 margin: 0 0 20px;
4706 list-style: none;
4707 background-color: #f5f5f5;
4708 -webkit-border-radius: 4px;
4709 -moz-border-radius: 4px;
4710 border-radius: 4px;
4711 }
4712
4713 .breadcrumb li {
4714 display: inline-block;
4715 *display: inline;
4716 text-shadow: 0 1px 0 #ffffff;
4717 *zoom: 1;
4718 }
4719
4720 .breadcrumb .divider {
4721 padding: 0 5px;
4722 color: #ccc;
4723 }
4724
4725 .breadcrumb .active {
4726 color: #999999;
4727 }
4728
4729 .pagination {
4730 height: 40px;
4731 margin: 20px 0;
4732 }
4733
4734 .pagination ul {
4735 display: inline-block;
4736 *display: inline;
4737 margin-bottom: 0;
4738 margin-left: 0;
4739 -webkit-border-radius: 3px;
4740 -moz-border-radius: 3px;
4741 border-radius: 3px;
4742 *zoom: 1;
4743 -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
4744 -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
4745 box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
4746 }
4747
4748 .pagination ul > li {
4749 display: inline;
4750 }
4751
4752 .pagination ul > li > a,
4753 .pagination ul > li > span {
4754 float: left;
4755 padding: 0 14px;
4756 line-height: 38px;
4757 text-decoration: none;
4758 background-color: #ffffff;
4759 border: 1px solid #dddddd;
4760 border-left-width: 0;
4761 }
4762
4763 .pagination ul > li > a:hover,
4764 .pagination ul > .active > a,
4765 .pagination ul > .active > span {
4766 background-color: #f5f5f5;
4767 }
4768
4769 .pagination ul > .active > a,
4770 .pagination ul > .active > span {
4771 color: #999999;
4772 cursor: default;
4773 }
4774
4775 .pagination ul > .disabled > span,
4776 .pagination ul > .disabled > a,
4777 .pagination ul > .disabled > a:hover {
4778 color: #999999;
4779 cursor: default;
4780 background-color: transparent;
4781 }
4782
4783 .pagination ul > li:first-child > a,
4784 .pagination ul > li:first-child > span {
4785 border-left-width: 1px;
4786 -webkit-border-radius: 3px 0 0 3px;
4787 -moz-border-radius: 3px 0 0 3px;
4788 border-radius: 3px 0 0 3px;
4789 }
4790
4791 .pagination ul > li:last-child > a,
4792 .pagination ul > li:last-child > span {
4793 -webkit-border-radius: 0 3px 3px 0;
4794 -moz-border-radius: 0 3px 3px 0;
4795 border-radius: 0 3px 3px 0;
4796 }
4797
4798 .pagination-centered {
4799 text-align: center;
4800 }
4801
4802 .pagination-right {
4803 text-align: right;
4804 }
4805
4806 .pager {
4807 margin: 20px 0;
4808 text-align: center;
4809 list-style: none;
4810 *zoom: 1;
4811 }
4812
4813 .pager:before,
4814 .pager:after {
4815 display: table;
4816 line-height: 0;
4817 content: "";
4818 }
4819
4820 .pager:after {
4821 clear: both;
4822 }
4823
4824 .pager li {
4825 display: inline;
4826 }
4827
4828 .pager a,
4829 .pager span {
4830 display: inline-block;
4831 padding: 5px 14px;
4832 background-color: #fff;
4833 border: 1px solid #ddd;
4834 -webkit-border-radius: 15px;
4835 -moz-border-radius: 15px;
4836 border-radius: 15px;
4837 }
4838
4839 .pager a:hover {
4840 text-decoration: none;
4841 background-color: #f5f5f5;
4842 }
4843
4844 .pager .next a,
4845 .pager .next span {
4846 float: right;
4847 }
4848
4849 .pager .previous a {
4850 float: left;
4851 }
4852
4853 .pager .disabled a,
4854 .pager .disabled a:hover,
4855 .pager .disabled span {
4856 color: #999999;
4857 cursor: default;
4858 background-color: #fff;
4859 }
4860
4861 .modal-open .modal .dropdown-menu {
4862 z-index: 2050;
4863 }
4864
4865 .modal-open .modal .dropdown.open {
4866 *z-index: 2050;
4867 }
4868
4869 .modal-open .modal .popover {
4870 z-index: 2060;
4871 }
4872
4873 .modal-open .modal .tooltip {
4874 z-index: 2080;
4875 }
4876
4877 .modal-backdrop {
4878 position: fixed;
4879 top: 0;
4880 right: 0;
4881 bottom: 0;
4882 left: 0;
4883 z-index: 1040;
4884 background-color: #000000;
4885 }
4886
4887 .modal-backdrop.fade {
4888 opacity: 0;
4889 }
4890
4891 .modal-backdrop,
4892 .modal-backdrop.fade.in {
4893 opacity: 0.8;
4894 filter: alpha(opacity=80);
4895 }
4896
4897 .modal {
4898 position: fixed;
4899 top: 50%;
4900 left: 50%;
4901 z-index: 1050;
4902 width: 560px;
4903 margin: -250px 0 0 -280px;
4904 overflow: auto;
4905 background-color: #ffffff;
4906 border: 1px solid #999;
4907 border: 1px solid rgba(0, 0, 0, 0.3);
4908 *border: 1px solid #999;
4909 -webkit-border-radius: 6px;
4910 -moz-border-radius: 6px;
4911 border-radius: 6px;
4912 -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
4913 -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
4914 box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
4915 -webkit-background-clip: padding-box;
4916 -moz-background-clip: padding-box;
4917 background-clip: padding-box;
4918 }
4919
4920 .modal.fade {
4921 top: -25%;
4922 -webkit-transition: opacity 0.3s linear, top 0.3s ease-out;
4923 -moz-transition: opacity 0.3s linear, top 0.3s ease-out;
4924 -o-transition: opacity 0.3s linear, top 0.3s ease-out;
4925 transition: opacity 0.3s linear, top 0.3s ease-out;
4926 }
4927
4928 .modal.fade.in {
4929 top: 50%;
4930 }
4931
4932 .modal-header {
4933 padding: 9px 15px;
4934 border-bottom: 1px solid #eee;
4935 }
4936
4937 .modal-header .close {
4938 margin-top: 2px;
4939 }
4940
4941 .modal-header h3 {
4942 margin: 0;
4943 line-height: 30px;
4944 }
4945
4946 .modal-body {
4947 max-height: 400px;
4948 padding: 15px;
4949 overflow-y: auto;
4950 }
4951
4952 .modal-form {
4953 margin-bottom: 0;
4954 }
4955
4956 .modal-footer {
4957 padding: 14px 15px 15px;
4958 margin-bottom: 0;
4959 text-align: right;
4960 background-color: #f5f5f5;
4961 border-top: 1px solid #ddd;
4962 -webkit-border-radius: 0 0 6px 6px;
4963 -moz-border-radius: 0 0 6px 6px;
4964 border-radius: 0 0 6px 6px;
4965 *zoom: 1;
4966 -webkit-box-shadow: inset 0 1px 0 #ffffff;
4967 -moz-box-shadow: inset 0 1px 0 #ffffff;
4968 box-shadow: inset 0 1px 0 #ffffff;
4969 }
4970
4971 .modal-footer:before,
4972 .modal-footer:after {
4973 display: table;
4974 line-height: 0;
4975 content: "";
4976 }
4977
4978 .modal-footer:after {
4979 clear: both;
4980 }
4981
4982 .modal-footer .btn + .btn {
4983 margin-bottom: 0;
4984 margin-left: 5px;
4985 }
4986
4987 .modal-footer .btn-group .btn + .btn {
4988 margin-left: -1px;
4989 }
4990
4991 .tooltip {
4992 position: absolute;
4993 z-index: 1030;
4994 display: block;
4995 padding: 5px;
4996 font-size: 11px;
4997 opacity: 0;
4998 filter: alpha(opacity=0);
4999 visibility: visible;
5000 }
5001
5002 .tooltip.in {
5003 opacity: 0.8;
5004 filter: alpha(opacity=80);
5005 }
5006
5007 .tooltip.top {
5008 margin-top: -3px;
5009 }
5010
5011 .tooltip.right {
5012 margin-left: 3px;
5013 }
5014
5015 .tooltip.bottom {
5016 margin-top: 3px;
5017 }
5018
5019 .tooltip.left {
5020 margin-left: -3px;
5021 }
5022
5023 .tooltip-inner {
5024 max-width: 200px;
5025 padding: 3px 8px;
5026 color: #ffffff;
5027 text-align: center;
5028 text-decoration: none;
5029 background-color: #000000;
5030 -webkit-border-radius: 4px;
5031 -moz-border-radius: 4px;
5032 border-radius: 4px;
5033 }
5034
5035 .tooltip-arrow {
5036 position: absolute;
5037 width: 0;
5038 height: 0;
5039 border-color: transparent;
5040 border-style: solid;
5041 }
5042
5043 .tooltip.top .tooltip-arrow {
5044 bottom: 0;
5045 left: 50%;
5046 margin-left: -5px;
5047 border-top-color: #000000;
5048 border-width: 5px 5px 0;
5049 }
5050
5051 .tooltip.right .tooltip-arrow {
5052 top: 50%;
5053 left: 0;
5054 margin-top: -5px;
5055 border-right-color: #000000;
5056 border-width: 5px 5px 5px 0;
5057 }
5058
5059 .tooltip.left .tooltip-arrow {
5060 top: 50%;
5061 right: 0;
5062 margin-top: -5px;
5063 border-left-color: #000000;
5064 border-width: 5px 0 5px 5px;
5065 }
5066
5067 .tooltip.bottom .tooltip-arrow {
5068 top: 0;
5069 left: 50%;
5070 margin-left: -5px;
5071 border-bottom-color: #000000;
5072 border-width: 0 5px 5px;
5073 }
5074
5075 .popover {
5076 position: absolute;
5077 top: 0;
5078 left: 0;
5079 z-index: 1010;
5080 display: none;
5081 width: 236px;
5082 padding: 1px;
5083 background-color: #ffffff;
5084 border: 1px solid #ccc;
5085 border: 1px solid rgba(0, 0, 0, 0.2);
5086 -webkit-border-radius: 6px;
5087 -moz-border-radius: 6px;
5088 border-radius: 6px;
5089 -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
5090 -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
5091 box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
5092 -webkit-background-clip: padding-box;
5093 -moz-background-clip: padding;
5094 background-clip: padding-box;
5095 }
5096
5097 .popover.top {
5098 margin-bottom: 10px;
5099 }
5100
5101 .popover.right {
5102 margin-left: 10px;
5103 }
5104
5105 .popover.bottom {
5106 margin-top: 10px;
5107 }
5108
5109 .popover.left {
5110 margin-right: 10px;
5111 }
5112
5113 .popover-title {
5114 padding: 8px 14px;
5115 margin: 0;
5116 font-size: 14px;
5117 font-weight: normal;
5118 line-height: 18px;
5119 background-color: #f7f7f7;
5120 border-bottom: 1px solid #ebebeb;
5121 -webkit-border-radius: 5px 5px 0 0;
5122 -moz-border-radius: 5px 5px 0 0;
5123 border-radius: 5px 5px 0 0;
5124 }
5125
5126 .popover-content {
5127 padding: 9px 14px;
5128 }
5129
5130 .popover-content p,
5131 .popover-content ul,
5132 .popover-content ol {
5133 margin-bottom: 0;
5134 }
5135
5136 .popover .arrow,
5137 .popover .arrow:after {
5138 position: absolute;
5139 display: inline-block;
5140 width: 0;
5141 height: 0;
5142 border-color: transparent;
5143 border-style: solid;
5144 }
5145
5146 .popover .arrow:after {
5147 z-index: -1;
5148 content: "";
5149 }
5150
5151 .popover.top .arrow {
5152 bottom: -10px;
5153 left: 50%;
5154 margin-left: -10px;
5155 border-top-color: #ffffff;
5156 border-width: 10px 10px 0;
5157 }
5158
5159 .popover.top .arrow:after {
5160 bottom: -1px;
5161 left: -11px;
5162 border-top-color: rgba(0, 0, 0, 0.25);
5163 border-width: 11px 11px 0;
5164 }
5165
5166 .popover.right .arrow {
5167 top: 50%;
5168 left: -10px;
5169 margin-top: -10px;
5170 border-right-color: #ffffff;
5171 border-width: 10px 10px 10px 0;
5172 }
5173
5174 .popover.right .arrow:after {
5175 bottom: -11px;
5176 left: -1px;
5177 border-right-color: rgba(0, 0, 0, 0.25);
5178 border-width: 11px 11px 11px 0;
5179 }
5180
5181 .popover.bottom .arrow {
5182 top: -10px;
5183 left: 50%;
5184 margin-left: -10px;
5185 border-bottom-color: #ffffff;
5186 border-width: 0 10px 10px;
5187 }
5188
5189 .popover.bottom .arrow:after {
5190 top: -1px;
5191 left: -11px;
5192 border-bottom-color: rgba(0, 0, 0, 0.25);
5193 border-width: 0 11px 11px;
5194 }
5195
5196 .popover.left .arrow {
5197 top: 50%;
5198 right: -10px;
5199 margin-top: -10px;
5200 border-left-color: #ffffff;
5201 border-width: 10px 0 10px 10px;
5202 }
5203
5204 .popover.left .arrow:after {
5205 right: -1px;
5206 bottom: -11px;
5207 border-left-color: rgba(0, 0, 0, 0.25);
5208 border-width: 11px 0 11px 11px;
5209 }
5210
5211 .thumbnails {
5212 margin-left: -20px;
5213 list-style: none;
5214 *zoom: 1;
5215 }
5216
5217 .thumbnails:before,
5218 .thumbnails:after {
5219 display: table;
5220 line-height: 0;
5221 content: "";
5222 }
5223
5224 .thumbnails:after {
5225 clear: both;
5226 }
5227
5228 .row-fluid .thumbnails {
5229 margin-left: 0;
5230 }
5231
5232 .thumbnails > li {
5233 float: left;
5234 margin-bottom: 20px;
5235 margin-left: 20px;
5236 }
5237
5238 .thumbnail {
5239 display: block;
5240 padding: 4px;
5241 line-height: 20px;
5242 border: 1px solid #ddd;
5243 -webkit-border-radius: 4px;
5244 -moz-border-radius: 4px;
5245 border-radius: 4px;
5246 -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055);
5247 -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055);
5248 box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055);
5249 -webkit-transition: all 0.2s ease-in-out;
5250 -moz-transition: all 0.2s ease-in-out;
5251 -o-transition: all 0.2s ease-in-out;
5252 transition: all 0.2s ease-in-out;
5253 }
5254
5255 a.thumbnail:hover {
5256 border-color: #0088cc;
5257 -webkit-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
5258 -moz-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
5259 box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
5260 }
5261
5262 .thumbnail > img {
5263 display: block;
5264 max-width: 100%;
5265 margin-right: auto;
5266 margin-left: auto;
5267 }
5268
5269 .thumbnail .caption {
5270 padding: 9px;
5271 color: #555555;
5272 }
5273
5274 .label,
5275 .badge {
5276 font-size: 11.844px;
5277 font-weight: bold;
5278 line-height: 14px;
5279 color: #ffffff;
5280 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
5281 white-space: nowrap;
5282 vertical-align: baseline;
5283 background-color: #999999;
5284 }
5285
5286 .label {
5287 padding: 1px 4px 2px;
5288 -webkit-border-radius: 3px;
5289 -moz-border-radius: 3px;
5290 border-radius: 3px;
5291 }
5292
5293 .badge {
5294 padding: 1px 9px 2px;
5295 -webkit-border-radius: 9px;
5296 -moz-border-radius: 9px;
5297 border-radius: 9px;
5298 }
5299
5300 a.label:hover,
5301 a.badge:hover {
5302 color: #ffffff;
5303 text-decoration: none;
5304 cursor: pointer;
5305 }
5306
5307 .label-important,
5308 .badge-important {
5309 background-color: #b94a48;
5310 }
5311
5312 .label-important[href],
5313 .badge-important[href] {
5314 background-color: #953b39;
5315 }
5316
5317 .label-warning,
5318 .badge-warning {
5319 background-color: #f89406;
5320 }
5321
5322 .label-warning[href],
5323 .badge-warning[href] {
5324 background-color: #c67605;
5325 }
5326
5327 .label-success,
5328 .badge-success {
5329 background-color: #468847;
5330 }
5331
5332 .label-success[href],
5333 .badge-success[href] {
5334 background-color: #356635;
5335 }
5336
5337 .label-info,
5338 .badge-info {
5339 background-color: #3a87ad;
5340 }
5341
5342 .label-info[href],
5343 .badge-info[href] {
5344 background-color: #2d6987;
5345 }
5346
5347 .label-inverse,
5348 .badge-inverse {
5349 background-color: #333333;
5350 }
5351
5352 .label-inverse[href],
5353 .badge-inverse[href] {
5354 background-color: #1a1a1a;
5355 }
5356
5357 .btn .label,
5358 .btn .badge {
5359 position: relative;
5360 top: -1px;
5361 }
5362
5363 .btn-mini .label,
5364 .btn-mini .badge {
5365 top: 0;
5366 }
5367
5368 @-webkit-keyframes progress-bar-stripes {
5369 from {
5370 background-position: 40px 0;
5371 }
5372 to {
5373 background-position: 0 0;
5374 }
5375 }
5376
5377 @-moz-keyframes progress-bar-stripes {
5378 from {
5379 background-position: 40px 0;
5380 }
5381 to {
5382 background-position: 0 0;
5383 }
5384 }
5385
5386 @-ms-keyframes progress-bar-stripes {
5387 from {
5388 background-position: 40px 0;
5389 }
5390 to {
5391 background-position: 0 0;
5392 }
5393 }
5394
5395 @-o-keyframes progress-bar-stripes {
5396 from {
5397 background-position: 0 0;
5398 }
5399 to {
5400 background-position: 40px 0;
5401 }
5402 }
5403
5404 @keyframes progress-bar-stripes {
5405 from {
5406 background-position: 40px 0;
5407 }
5408 to {
5409 background-position: 0 0;
5410 }
5411 }
5412
5413 .progress {
5414 height: 20px;
5415 margin-bottom: 20px;
5416 overflow: hidden;
5417 background-color: #f7f7f7;
5418 background-image: -moz-linear-gradient(top, #f5f5f5, #f9f9f9);
5419 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));
5420 background-image: -webkit-linear-gradient(top, #f5f5f5, #f9f9f9);
5421 background-image: -o-linear-gradient(top, #f5f5f5, #f9f9f9);
5422 background-image: linear-gradient(to bottom, #f5f5f5, #f9f9f9);
5423 background-repeat: repeat-x;
5424 -webkit-border-radius: 4px;
5425 -moz-border-radius: 4px;
5426 border-radius: 4px;
5427 filter: progid:dximagetransform.microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0);
5428 -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
5429 -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
5430 box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
5431 }
5432
5433 .progress .bar {
5434 float: left;
5435 width: 0;
5436 height: 100%;
5437 font-size: 12px;
5438 color: #ffffff;
5439 text-align: center;
5440 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
5441 background-color: #0e90d2;
5442 background-image: -moz-linear-gradient(top, #149bdf, #0480be);
5443 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be));
5444 background-image: -webkit-linear-gradient(top, #149bdf, #0480be);
5445 background-image: -o-linear-gradient(top, #149bdf, #0480be);
5446 background-image: linear-gradient(to bottom, #149bdf, #0480be);
5447 background-repeat: repeat-x;
5448 filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff149bdf', endColorstr='#ff0480be', GradientType=0);
5449 -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
5450 -moz-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
5451 box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
5452 -webkit-box-sizing: border-box;
5453 -moz-box-sizing: border-box;
5454 box-sizing: border-box;
5455 -webkit-transition: width 0.6s ease;
5456 -moz-transition: width 0.6s ease;
5457 -o-transition: width 0.6s ease;
5458 transition: width 0.6s ease;
5459 }
5460
5461 .progress .bar + .bar {
5462 -webkit-box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.15), inset 0 -1px 0 rgba(0, 0, 0, 0.15);
5463 -moz-box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.15), inset 0 -1px 0 rgba(0, 0, 0, 0.15);
5464 box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.15), inset 0 -1px 0 rgba(0, 0, 0, 0.15);
5465 }
5466
5467 .progress-striped .bar {
5468 background-color: #149bdf;
5469 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));
5470 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);
5471 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);
5472 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);
5473 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);
5474 -webkit-background-size: 40px 40px;
5475 -moz-background-size: 40px 40px;
5476 -o-background-size: 40px 40px;
5477 background-size: 40px 40px;
5478 }
5479
5480 .progress.active .bar {
5481 -webkit-animation: progress-bar-stripes 2s linear infinite;
5482 -moz-animation: progress-bar-stripes 2s linear infinite;
5483 -ms-animation: progress-bar-stripes 2s linear infinite;
5484 -o-animation: progress-bar-stripes 2s linear infinite;
5485 animation: progress-bar-stripes 2s linear infinite;
5486 }
5487
5488 .progress-danger .bar,
5489 .progress .bar-danger {
5490 background-color: #dd514c;
5491 background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35);
5492 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#c43c35));
5493 background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35);
5494 background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
5495 background-image: linear-gradient(to bottom, #ee5f5b, #c43c35);
5496 background-repeat: repeat-x;
5497 filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffc43c35', GradientType=0);
5498 }
5499
5500 .progress-danger.progress-striped .bar,
5501 .progress-striped .bar-danger {
5502 background-color: #ee5f5b;
5503 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));
5504 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);
5505 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);
5506 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);
5507 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);
5508 }
5509
5510 .progress-success .bar,
5511 .progress .bar-success {
5512 background-color: #5eb95e;
5513 background-image: -moz-linear-gradient(top, #62c462, #57a957);
5514 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#57a957));
5515 background-image: -webkit-linear-gradient(top, #62c462, #57a957);
5516 background-image: -o-linear-gradient(top, #62c462, #57a957);
5517 background-image: linear-gradient(to bottom, #62c462, #57a957);
5518 background-repeat: repeat-x;
5519 filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff57a957', GradientType=0);
5520 }
5521
5522 .progress-success.progress-striped .bar,
5523 .progress-striped .bar-success {
5524 background-color: #62c462;
5525 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));
5526 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);
5527 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);
5528 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);
5529 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);
5530 }
5531
5532 .progress-info .bar,
5533 .progress .bar-info {
5534 background-color: #4bb1cf;
5535 background-image: -moz-linear-gradient(top, #5bc0de, #339bb9);
5536 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#339bb9));
5537 background-image: -webkit-linear-gradient(top, #5bc0de, #339bb9);
5538 background-image: -o-linear-gradient(top, #5bc0de, #339bb9);
5539 background-image: linear-gradient(to bottom, #5bc0de, #339bb9);
5540 background-repeat: repeat-x;
5541 filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff339bb9', GradientType=0);
5542 }
5543
5544 .progress-info.progress-striped .bar,
5545 .progress-striped .bar-info {
5546 background-color: #5bc0de;
5547 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));
5548 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);
5549 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);
5550 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);
5551 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);
5552 }
5553
5554 .progress-warning .bar,
5555 .progress .bar-warning {
5556 background-color: #faa732;
5557 background-image: -moz-linear-gradient(top, #fbb450, #f89406);
5558 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
5559 background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
5560 background-image: -o-linear-gradient(top, #fbb450, #f89406);
5561 background-image: linear-gradient(to bottom, #fbb450, #f89406);
5562 background-repeat: repeat-x;
5563 filter: progid:dximagetransform.microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0);
5564 }
5565
5566 .progress-warning.progress-striped .bar,
5567 .progress-striped .bar-warning {
5568 background-color: #fbb450;
5569 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));
5570 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);
5571 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);
5572 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);
5573 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);
5574 }
5575
5576 .accordion {
5577 margin-bottom: 20px;
5578 }
5579
5580 .accordion-group {
5581 margin-bottom: 2px;
5582 border: 1px solid #e5e5e5;
5583 -webkit-border-radius: 4px;
5584 -moz-border-radius: 4px;
5585 border-radius: 4px;
5586 }
5587
5588 .accordion-heading {
5589 border-bottom: 0;
5590 }
5591
5592 .accordion-heading .accordion-toggle {
5593 display: block;
5594 padding: 8px 15px;
5595 }
5596
5597 .accordion-toggle {
5598 cursor: pointer;
5599 }
5600
5601 .accordion-inner {
5602 padding: 9px 15px;
5603 border-top: 1px solid #e5e5e5;
5604 }
5605
5606 .carousel {
5607 position: relative;
5608 margin-bottom: 20px;
5609 line-height: 1;
5610 }
5611
5612 .carousel-inner {
5613 position: relative;
5614 width: 100%;
5615 overflow: hidden;
5616 }
5617
5618 .carousel .item {
5619 position: relative;
5620 display: none;
5621 -webkit-transition: 0.6s ease-in-out left;
5622 -moz-transition: 0.6s ease-in-out left;
5623 -o-transition: 0.6s ease-in-out left;
5624 transition: 0.6s ease-in-out left;
5625 }
5626
5627 .carousel .item > img {
5628 display: block;
5629 line-height: 1;
5630 }
5631
5632 .carousel .active,
5633 .carousel .next,
5634 .carousel .prev {
5635 display: block;
5636 }
5637
5638 .carousel .active {
5639 left: 0;
5640 }
5641
5642 .carousel .next,
5643 .carousel .prev {
5644 position: absolute;
5645 top: 0;
5646 width: 100%;
5647 }
5648
5649 .carousel .next {
5650 left: 100%;
5651 }
5652
5653 .carousel .prev {
5654 left: -100%;
5655 }
5656
5657 .carousel .next.left,
5658 .carousel .prevel.right {
5659 left: 0;
5660 }
5661
5662 .carousel .active.left {
5663 left: -100%;
5664 }
5665
5666 .carousel .active.right {
5667 left: 100%;
5668 }
5669
5670 .carousel-control {
5671 position: absolute;
5672 top: 40%;
5673 left: 15px;
5674 width: 40px;
5675 height: 40px;
5676 margin-top: -20px;
5677 font-size: 60px;
5678 font-weight: 100;
5679 line-height: 30px;
5680 color: #ffffff;
5681 text-align: center;
5682 background: #222222;
5683 border: 3px solid #ffffff;
5684 -webkit-border-radius: 23px;
5685 -moz-border-radius: 23px;
5686 border-radius: 23px;
5687 opacity: 0.5;
5688 filter: alpha(opacity=50);
5689 }
5690
5691 .carousel-control.right {
5692 right: 15px;
5693 left: auto;
5694 }
5695
5696 .carousel-control:hover {
5697 color: #ffffff;
5698 text-decoration: none;
5699 opacity: 0.9;
5700 filter: alpha(opacity=90);
5701 }
5702
5703 .carousel-caption {
5704 position: absolute;
5705 right: 0;
5706 bottom: 0;
5707 left: 0;
5708 padding: 15px;
5709 background: #333333;
5710 background: rgba(0, 0, 0, 0.75);
5711 }
5712
5713 .carousel-caption h4,
5714 .carousel-caption p {
5715 line-height: 20px;
5716 color: #ffffff;
5717 }
5718
5719 .carousel-caption h4 {
5720 margin: 0 0 5px;
5721 }
5722
5723 .carousel-caption p {
5724 margin-bottom: 0;
5725 }
5726
5727 .hero-unit {
5728 padding: 60px;
5729 margin-bottom: 30px;
5730 background-color: #eeeeee;
5731 -webkit-border-radius: 6px;
5732 -moz-border-radius: 6px;
5733 border-radius: 6px;
5734 }
5735
5736 .hero-unit h1 {
5737 margin-bottom: 0;
5738 font-size: 60px;
5739 line-height: 1;
5740 letter-spacing: -1px;
5741 color: inherit;
5742 }
5743
5744 .hero-unit p {
5745 font-size: 18px;
5746 font-weight: 200;
5747 line-height: 30px;
5748 color: inherit;
5749 }
5750
5751 .pull-right {
5752 float: right;
5753 }
5754
5755 .pull-left {
5756 float: left;
5757 }
5758
5759 .hide {
5760 display: none;
5761 }
5762
5763 .show {
5764 display: block;
5765 }
5766
5767 .invisible {
5768 visibility: hidden;
5769 }
5770
5771 .affix {
5772 position: fixed;
5773 }
0 /*! jQuery v1.9.1 | (c) 2005, 2012 jQuery Foundation, Inc. | jquery.org/license
1 //@ sourceMappingURL=jquery.min.map
2 */(function(e,t){var n,r,i=typeof t,o=e.document,a=e.location,s=e.jQuery,u=e.$,l={},c=[],p="1.9.1",f=c.concat,d=c.push,h=c.slice,g=c.indexOf,m=l.toString,y=l.hasOwnProperty,v=p.trim,b=function(e,t){return new b.fn.init(e,t,r)},x=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,w=/\S+/g,T=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,N=/^(?:(<[\w\W]+>)[^>]*|#([\w-]*))$/,C=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,k=/^[\],:{}\s]*$/,E=/(?:^|:|,)(?:\s*\[)+/g,S=/\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g,A=/"[^"\\\r\n]*"|true|false|null|-?(?:\d+\.|)\d+(?:[eE][+-]?\d+|)/g,j=/^-ms-/,D=/-([\da-z])/gi,L=function(e,t){return t.toUpperCase()},H=function(e){(o.addEventListener||"load"===e.type||"complete"===o.readyState)&&(q(),b.ready())},q=function(){o.addEventListener?(o.removeEventListener("DOMContentLoaded",H,!1),e.removeEventListener("load",H,!1)):(o.detachEvent("onreadystatechange",H),e.detachEvent("onload",H))};b.fn=b.prototype={jquery:p,constructor:b,init:function(e,n,r){var i,a;if(!e)return this;if("string"==typeof e){if(i="<"===e.charAt(0)&&">"===e.charAt(e.length-1)&&e.length>=3?[null,e,null]:N.exec(e),!i||!i[1]&&n)return!n||n.jquery?(n||r).find(e):this.constructor(n).find(e);if(i[1]){if(n=n instanceof b?n[0]:n,b.merge(this,b.parseHTML(i[1],n&&n.nodeType?n.ownerDocument||n:o,!0)),C.test(i[1])&&b.isPlainObject(n))for(i in n)b.isFunction(this[i])?this[i](n[i]):this.attr(i,n[i]);return this}if(a=o.getElementById(i[2]),a&&a.parentNode){if(a.id!==i[2])return r.find(e);this.length=1,this[0]=a}return this.context=o,this.selector=e,this}return e.nodeType?(this.context=this[0]=e,this.length=1,this):b.isFunction(e)?r.ready(e):(e.selector!==t&&(this.selector=e.selector,this.context=e.context),b.makeArray(e,this))},selector:"",length:0,size:function(){return this.length},toArray:function(){return h.call(this)},get:function(e){return null==e?this.toArray():0>e?this[this.length+e]:this[e]},pushStack:function(e){var t=b.merge(this.constructor(),e);return t.prevObject=this,t.context=this.context,t},each:function(e,t){return b.each(this,e,t)},ready:function(e){return b.ready.promise().done(e),this},slice:function(){return this.pushStack(h.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(e){var t=this.length,n=+e+(0>e?t:0);return this.pushStack(n>=0&&t>n?[this[n]]:[])},map:function(e){return this.pushStack(b.map(this,function(t,n){return e.call(t,n,t)}))},end:function(){return this.prevObject||this.constructor(null)},push:d,sort:[].sort,splice:[].splice},b.fn.init.prototype=b.fn,b.extend=b.fn.extend=function(){var e,n,r,i,o,a,s=arguments[0]||{},u=1,l=arguments.length,c=!1;for("boolean"==typeof s&&(c=s,s=arguments[1]||{},u=2),"object"==typeof s||b.isFunction(s)||(s={}),l===u&&(s=this,--u);l>u;u++)if(null!=(o=arguments[u]))for(i in o)e=s[i],r=o[i],s!==r&&(c&&r&&(b.isPlainObject(r)||(n=b.isArray(r)))?(n?(n=!1,a=e&&b.isArray(e)?e:[]):a=e&&b.isPlainObject(e)?e:{},s[i]=b.extend(c,a,r)):r!==t&&(s[i]=r));return s},b.extend({noConflict:function(t){return e.$===b&&(e.$=u),t&&e.jQuery===b&&(e.jQuery=s),b},isReady:!1,readyWait:1,holdReady:function(e){e?b.readyWait++:b.ready(!0)},ready:function(e){if(e===!0?!--b.readyWait:!b.isReady){if(!o.body)return setTimeout(b.ready);b.isReady=!0,e!==!0&&--b.readyWait>0||(n.resolveWith(o,[b]),b.fn.trigger&&b(o).trigger("ready").off("ready"))}},isFunction:function(e){return"function"===b.type(e)},isArray:Array.isArray||function(e){return"array"===b.type(e)},isWindow:function(e){return null!=e&&e==e.window},isNumeric:function(e){return!isNaN(parseFloat(e))&&isFinite(e)},type:function(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?l[m.call(e)]||"object":typeof e},isPlainObject:function(e){if(!e||"object"!==b.type(e)||e.nodeType||b.isWindow(e))return!1;try{if(e.constructor&&!y.call(e,"constructor")&&!y.call(e.constructor.prototype,"isPrototypeOf"))return!1}catch(n){return!1}var r;for(r in e);return r===t||y.call(e,r)},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},error:function(e){throw Error(e)},parseHTML:function(e,t,n){if(!e||"string"!=typeof e)return null;"boolean"==typeof t&&(n=t,t=!1),t=t||o;var r=C.exec(e),i=!n&&[];return r?[t.createElement(r[1])]:(r=b.buildFragment([e],t,i),i&&b(i).remove(),b.merge([],r.childNodes))},parseJSON:function(n){return e.JSON&&e.JSON.parse?e.JSON.parse(n):null===n?n:"string"==typeof n&&(n=b.trim(n),n&&k.test(n.replace(S,"@").replace(A,"]").replace(E,"")))?Function("return "+n)():(b.error("Invalid JSON: "+n),t)},parseXML:function(n){var r,i;if(!n||"string"!=typeof n)return null;try{e.DOMParser?(i=new DOMParser,r=i.parseFromString(n,"text/xml")):(r=new ActiveXObject("Microsoft.XMLDOM"),r.async="false",r.loadXML(n))}catch(o){r=t}return r&&r.documentElement&&!r.getElementsByTagName("parsererror").length||b.error("Invalid XML: "+n),r},noop:function(){},globalEval:function(t){t&&b.trim(t)&&(e.execScript||function(t){e.eval.call(e,t)})(t)},camelCase:function(e){return e.replace(j,"ms-").replace(D,L)},nodeName:function(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()},each:function(e,t,n){var r,i=0,o=e.length,a=M(e);if(n){if(a){for(;o>i;i++)if(r=t.apply(e[i],n),r===!1)break}else for(i in e)if(r=t.apply(e[i],n),r===!1)break}else if(a){for(;o>i;i++)if(r=t.call(e[i],i,e[i]),r===!1)break}else for(i in e)if(r=t.call(e[i],i,e[i]),r===!1)break;return e},trim:v&&!v.call("\ufeff\u00a0")?function(e){return null==e?"":v.call(e)}:function(e){return null==e?"":(e+"").replace(T,"")},makeArray:function(e,t){var n=t||[];return null!=e&&(M(Object(e))?b.merge(n,"string"==typeof e?[e]:e):d.call(n,e)),n},inArray:function(e,t,n){var r;if(t){if(g)return g.call(t,e,n);for(r=t.length,n=n?0>n?Math.max(0,r+n):n:0;r>n;n++)if(n in t&&t[n]===e)return n}return-1},merge:function(e,n){var r=n.length,i=e.length,o=0;if("number"==typeof r)for(;r>o;o++)e[i++]=n[o];else while(n[o]!==t)e[i++]=n[o++];return e.length=i,e},grep:function(e,t,n){var r,i=[],o=0,a=e.length;for(n=!!n;a>o;o++)r=!!t(e[o],o),n!==r&&i.push(e[o]);return i},map:function(e,t,n){var r,i=0,o=e.length,a=M(e),s=[];if(a)for(;o>i;i++)r=t(e[i],i,n),null!=r&&(s[s.length]=r);else for(i in e)r=t(e[i],i,n),null!=r&&(s[s.length]=r);return f.apply([],s)},guid:1,proxy:function(e,n){var r,i,o;return"string"==typeof n&&(o=e[n],n=e,e=o),b.isFunction(e)?(r=h.call(arguments,2),i=function(){return e.apply(n||this,r.concat(h.call(arguments)))},i.guid=e.guid=e.guid||b.guid++,i):t},access:function(e,n,r,i,o,a,s){var u=0,l=e.length,c=null==r;if("object"===b.type(r)){o=!0;for(u in r)b.access(e,n,u,r[u],!0,a,s)}else if(i!==t&&(o=!0,b.isFunction(i)||(s=!0),c&&(s?(n.call(e,i),n=null):(c=n,n=function(e,t,n){return c.call(b(e),n)})),n))for(;l>u;u++)n(e[u],r,s?i:i.call(e[u],u,n(e[u],r)));return o?e:c?n.call(e):l?n(e[0],r):a},now:function(){return(new Date).getTime()}}),b.ready.promise=function(t){if(!n)if(n=b.Deferred(),"complete"===o.readyState)setTimeout(b.ready);else if(o.addEventListener)o.addEventListener("DOMContentLoaded",H,!1),e.addEventListener("load",H,!1);else{o.attachEvent("onreadystatechange",H),e.attachEvent("onload",H);var r=!1;try{r=null==e.frameElement&&o.documentElement}catch(i){}r&&r.doScroll&&function a(){if(!b.isReady){try{r.doScroll("left")}catch(e){return setTimeout(a,50)}q(),b.ready()}}()}return n.promise(t)},b.each("Boolean Number String Function Array Date RegExp Object Error".split(" "),function(e,t){l["[object "+t+"]"]=t.toLowerCase()});function M(e){var t=e.length,n=b.type(e);return b.isWindow(e)?!1:1===e.nodeType&&t?!0:"array"===n||"function"!==n&&(0===t||"number"==typeof t&&t>0&&t-1 in e)}r=b(o);var _={};function F(e){var t=_[e]={};return b.each(e.match(w)||[],function(e,n){t[n]=!0}),t}b.Callbacks=function(e){e="string"==typeof e?_[e]||F(e):b.extend({},e);var n,r,i,o,a,s,u=[],l=!e.once&&[],c=function(t){for(r=e.memory&&t,i=!0,a=s||0,s=0,o=u.length,n=!0;u&&o>a;a++)if(u[a].apply(t[0],t[1])===!1&&e.stopOnFalse){r=!1;break}n=!1,u&&(l?l.length&&c(l.shift()):r?u=[]:p.disable())},p={add:function(){if(u){var t=u.length;(function i(t){b.each(t,function(t,n){var r=b.type(n);"function"===r?e.unique&&p.has(n)||u.push(n):n&&n.length&&"string"!==r&&i(n)})})(arguments),n?o=u.length:r&&(s=t,c(r))}return this},remove:function(){return u&&b.each(arguments,function(e,t){var r;while((r=b.inArray(t,u,r))>-1)u.splice(r,1),n&&(o>=r&&o--,a>=r&&a--)}),this},has:function(e){return e?b.inArray(e,u)>-1:!(!u||!u.length)},empty:function(){return u=[],this},disable:function(){return u=l=r=t,this},disabled:function(){return!u},lock:function(){return l=t,r||p.disable(),this},locked:function(){return!l},fireWith:function(e,t){return t=t||[],t=[e,t.slice?t.slice():t],!u||i&&!l||(n?l.push(t):c(t)),this},fire:function(){return p.fireWith(this,arguments),this},fired:function(){return!!i}};return p},b.extend({Deferred:function(e){var t=[["resolve","done",b.Callbacks("once memory"),"resolved"],["reject","fail",b.Callbacks("once memory"),"rejected"],["notify","progress",b.Callbacks("memory")]],n="pending",r={state:function(){return n},always:function(){return i.done(arguments).fail(arguments),this},then:function(){var e=arguments;return b.Deferred(function(n){b.each(t,function(t,o){var a=o[0],s=b.isFunction(e[t])&&e[t];i[o[1]](function(){var e=s&&s.apply(this,arguments);e&&b.isFunction(e.promise)?e.promise().done(n.resolve).fail(n.reject).progress(n.notify):n[a+"With"](this===r?n.promise():this,s?[e]:arguments)})}),e=null}).promise()},promise:function(e){return null!=e?b.extend(e,r):r}},i={};return r.pipe=r.then,b.each(t,function(e,o){var a=o[2],s=o[3];r[o[1]]=a.add,s&&a.add(function(){n=s},t[1^e][2].disable,t[2][2].lock),i[o[0]]=function(){return i[o[0]+"With"](this===i?r:this,arguments),this},i[o[0]+"With"]=a.fireWith}),r.promise(i),e&&e.call(i,i),i},when:function(e){var t=0,n=h.call(arguments),r=n.length,i=1!==r||e&&b.isFunction(e.promise)?r:0,o=1===i?e:b.Deferred(),a=function(e,t,n){return function(r){t[e]=this,n[e]=arguments.length>1?h.call(arguments):r,n===s?o.notifyWith(t,n):--i||o.resolveWith(t,n)}},s,u,l;if(r>1)for(s=Array(r),u=Array(r),l=Array(r);r>t;t++)n[t]&&b.isFunction(n[t].promise)?n[t].promise().done(a(t,l,n)).fail(o.reject).progress(a(t,u,s)):--i;return i||o.resolveWith(l,n),o.promise()}}),b.support=function(){var t,n,r,a,s,u,l,c,p,f,d=o.createElement("div");if(d.setAttribute("className","t"),d.innerHTML=" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",n=d.getElementsByTagName("*"),r=d.getElementsByTagName("a")[0],!n||!r||!n.length)return{};s=o.createElement("select"),l=s.appendChild(o.createElement("option")),a=d.getElementsByTagName("input")[0],r.style.cssText="top:1px;float:left;opacity:.5",t={getSetAttribute:"t"!==d.className,leadingWhitespace:3===d.firstChild.nodeType,tbody:!d.getElementsByTagName("tbody").length,htmlSerialize:!!d.getElementsByTagName("link").length,style:/top/.test(r.getAttribute("style")),hrefNormalized:"/a"===r.getAttribute("href"),opacity:/^0.5/.test(r.style.opacity),cssFloat:!!r.style.cssFloat,checkOn:!!a.value,optSelected:l.selected,enctype:!!o.createElement("form").enctype,html5Clone:"<:nav></:nav>"!==o.createElement("nav").cloneNode(!0).outerHTML,boxModel:"CSS1Compat"===o.compatMode,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0,boxSizingReliable:!0,pixelPosition:!1},a.checked=!0,t.noCloneChecked=a.cloneNode(!0).checked,s.disabled=!0,t.optDisabled=!l.disabled;try{delete d.test}catch(h){t.deleteExpando=!1}a=o.createElement("input"),a.setAttribute("value",""),t.input=""===a.getAttribute("value"),a.value="t",a.setAttribute("type","radio"),t.radioValue="t"===a.value,a.setAttribute("checked","t"),a.setAttribute("name","t"),u=o.createDocumentFragment(),u.appendChild(a),t.appendChecked=a.checked,t.checkClone=u.cloneNode(!0).cloneNode(!0).lastChild.checked,d.attachEvent&&(d.attachEvent("onclick",function(){t.noCloneEvent=!1}),d.cloneNode(!0).click());for(f in{submit:!0,change:!0,focusin:!0})d.setAttribute(c="on"+f,"t"),t[f+"Bubbles"]=c in e||d.attributes[c].expando===!1;return d.style.backgroundClip="content-box",d.cloneNode(!0).style.backgroundClip="",t.clearCloneStyle="content-box"===d.style.backgroundClip,b(function(){var n,r,a,s="padding:0;margin:0;border:0;display:block;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;",u=o.getElementsByTagName("body")[0];u&&(n=o.createElement("div"),n.style.cssText="border:0;width:0;height:0;position:absolute;top:0;left:-9999px;margin-top:1px",u.appendChild(n).appendChild(d),d.innerHTML="<table><tr><td></td><td>t</td></tr></table>",a=d.getElementsByTagName("td"),a[0].style.cssText="padding:0;margin:0;border:0;display:none",p=0===a[0].offsetHeight,a[0].style.display="",a[1].style.display="none",t.reliableHiddenOffsets=p&&0===a[0].offsetHeight,d.innerHTML="",d.style.cssText="box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%;",t.boxSizing=4===d.offsetWidth,t.doesNotIncludeMarginInBodyOffset=1!==u.offsetTop,e.getComputedStyle&&(t.pixelPosition="1%"!==(e.getComputedStyle(d,null)||{}).top,t.boxSizingReliable="4px"===(e.getComputedStyle(d,null)||{width:"4px"}).width,r=d.appendChild(o.createElement("div")),r.style.cssText=d.style.cssText=s,r.style.marginRight=r.style.width="0",d.style.width="1px",t.reliableMarginRight=!parseFloat((e.getComputedStyle(r,null)||{}).marginRight)),typeof d.style.zoom!==i&&(d.innerHTML="",d.style.cssText=s+"width:1px;padding:1px;display:inline;zoom:1",t.inlineBlockNeedsLayout=3===d.offsetWidth,d.style.display="block",d.innerHTML="<div></div>",d.firstChild.style.width="5px",t.shrinkWrapBlocks=3!==d.offsetWidth,t.inlineBlockNeedsLayout&&(u.style.zoom=1)),u.removeChild(n),n=d=a=r=null)}),n=s=u=l=r=a=null,t}();var O=/(?:\{[\s\S]*\}|\[[\s\S]*\])$/,B=/([A-Z])/g;function P(e,n,r,i){if(b.acceptData(e)){var o,a,s=b.expando,u="string"==typeof n,l=e.nodeType,p=l?b.cache:e,f=l?e[s]:e[s]&&s;if(f&&p[f]&&(i||p[f].data)||!u||r!==t)return f||(l?e[s]=f=c.pop()||b.guid++:f=s),p[f]||(p[f]={},l||(p[f].toJSON=b.noop)),("object"==typeof n||"function"==typeof n)&&(i?p[f]=b.extend(p[f],n):p[f].data=b.extend(p[f].data,n)),o=p[f],i||(o.data||(o.data={}),o=o.data),r!==t&&(o[b.camelCase(n)]=r),u?(a=o[n],null==a&&(a=o[b.camelCase(n)])):a=o,a}}function R(e,t,n){if(b.acceptData(e)){var r,i,o,a=e.nodeType,s=a?b.cache:e,u=a?e[b.expando]:b.expando;if(s[u]){if(t&&(o=n?s[u]:s[u].data)){b.isArray(t)?t=t.concat(b.map(t,b.camelCase)):t in o?t=[t]:(t=b.camelCase(t),t=t in o?[t]:t.split(" "));for(r=0,i=t.length;i>r;r++)delete o[t[r]];if(!(n?$:b.isEmptyObject)(o))return}(n||(delete s[u].data,$(s[u])))&&(a?b.cleanData([e],!0):b.support.deleteExpando||s!=s.window?delete s[u]:s[u]=null)}}}b.extend({cache:{},expando:"jQuery"+(p+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(e){return e=e.nodeType?b.cache[e[b.expando]]:e[b.expando],!!e&&!$(e)},data:function(e,t,n){return P(e,t,n)},removeData:function(e,t){return R(e,t)},_data:function(e,t,n){return P(e,t,n,!0)},_removeData:function(e,t){return R(e,t,!0)},acceptData:function(e){if(e.nodeType&&1!==e.nodeType&&9!==e.nodeType)return!1;var t=e.nodeName&&b.noData[e.nodeName.toLowerCase()];return!t||t!==!0&&e.getAttribute("classid")===t}}),b.fn.extend({data:function(e,n){var r,i,o=this[0],a=0,s=null;if(e===t){if(this.length&&(s=b.data(o),1===o.nodeType&&!b._data(o,"parsedAttrs"))){for(r=o.attributes;r.length>a;a++)i=r[a].name,i.indexOf("data-")||(i=b.camelCase(i.slice(5)),W(o,i,s[i]));b._data(o,"parsedAttrs",!0)}return s}return"object"==typeof e?this.each(function(){b.data(this,e)}):b.access(this,function(n){return n===t?o?W(o,e,b.data(o,e)):null:(this.each(function(){b.data(this,e,n)}),t)},null,n,arguments.length>1,null,!0)},removeData:function(e){return this.each(function(){b.removeData(this,e)})}});function W(e,n,r){if(r===t&&1===e.nodeType){var i="data-"+n.replace(B,"-$1").toLowerCase();if(r=e.getAttribute(i),"string"==typeof r){try{r="true"===r?!0:"false"===r?!1:"null"===r?null:+r+""===r?+r:O.test(r)?b.parseJSON(r):r}catch(o){}b.data(e,n,r)}else r=t}return r}function $(e){var t;for(t in e)if(("data"!==t||!b.isEmptyObject(e[t]))&&"toJSON"!==t)return!1;return!0}b.extend({queue:function(e,n,r){var i;return e?(n=(n||"fx")+"queue",i=b._data(e,n),r&&(!i||b.isArray(r)?i=b._data(e,n,b.makeArray(r)):i.push(r)),i||[]):t},dequeue:function(e,t){t=t||"fx";var n=b.queue(e,t),r=n.length,i=n.shift(),o=b._queueHooks(e,t),a=function(){b.dequeue(e,t)};"inprogress"===i&&(i=n.shift(),r--),o.cur=i,i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,a,o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return b._data(e,n)||b._data(e,n,{empty:b.Callbacks("once memory").add(function(){b._removeData(e,t+"queue"),b._removeData(e,n)})})}}),b.fn.extend({queue:function(e,n){var r=2;return"string"!=typeof e&&(n=e,e="fx",r--),r>arguments.length?b.queue(this[0],e):n===t?this:this.each(function(){var t=b.queue(this,e,n);b._queueHooks(this,e),"fx"===e&&"inprogress"!==t[0]&&b.dequeue(this,e)})},dequeue:function(e){return this.each(function(){b.dequeue(this,e)})},delay:function(e,t){return e=b.fx?b.fx.speeds[e]||e:e,t=t||"fx",this.queue(t,function(t,n){var r=setTimeout(t,e);n.stop=function(){clearTimeout(r)}})},clearQueue:function(e){return this.queue(e||"fx",[])},promise:function(e,n){var r,i=1,o=b.Deferred(),a=this,s=this.length,u=function(){--i||o.resolveWith(a,[a])};"string"!=typeof e&&(n=e,e=t),e=e||"fx";while(s--)r=b._data(a[s],e+"queueHooks"),r&&r.empty&&(i++,r.empty.add(u));return u(),o.promise(n)}});var I,z,X=/[\t\r\n]/g,U=/\r/g,V=/^(?:input|select|textarea|button|object)$/i,Y=/^(?:a|area)$/i,J=/^(?:checked|selected|autofocus|autoplay|async|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped)$/i,G=/^(?:checked|selected)$/i,Q=b.support.getSetAttribute,K=b.support.input;b.fn.extend({attr:function(e,t){return b.access(this,b.attr,e,t,arguments.length>1)},removeAttr:function(e){return this.each(function(){b.removeAttr(this,e)})},prop:function(e,t){return b.access(this,b.prop,e,t,arguments.length>1)},removeProp:function(e){return e=b.propFix[e]||e,this.each(function(){try{this[e]=t,delete this[e]}catch(n){}})},addClass:function(e){var t,n,r,i,o,a=0,s=this.length,u="string"==typeof e&&e;if(b.isFunction(e))return this.each(function(t){b(this).addClass(e.call(this,t,this.className))});if(u)for(t=(e||"").match(w)||[];s>a;a++)if(n=this[a],r=1===n.nodeType&&(n.className?(" "+n.className+" ").replace(X," "):" ")){o=0;while(i=t[o++])0>r.indexOf(" "+i+" ")&&(r+=i+" ");n.className=b.trim(r)}return this},removeClass:function(e){var t,n,r,i,o,a=0,s=this.length,u=0===arguments.length||"string"==typeof e&&e;if(b.isFunction(e))return this.each(function(t){b(this).removeClass(e.call(this,t,this.className))});if(u)for(t=(e||"").match(w)||[];s>a;a++)if(n=this[a],r=1===n.nodeType&&(n.className?(" "+n.className+" ").replace(X," "):"")){o=0;while(i=t[o++])while(r.indexOf(" "+i+" ")>=0)r=r.replace(" "+i+" "," ");n.className=e?b.trim(r):""}return this},toggleClass:function(e,t){var n=typeof e,r="boolean"==typeof t;return b.isFunction(e)?this.each(function(n){b(this).toggleClass(e.call(this,n,this.className,t),t)}):this.each(function(){if("string"===n){var o,a=0,s=b(this),u=t,l=e.match(w)||[];while(o=l[a++])u=r?u:!s.hasClass(o),s[u?"addClass":"removeClass"](o)}else(n===i||"boolean"===n)&&(this.className&&b._data(this,"__className__",this.className),this.className=this.className||e===!1?"":b._data(this,"__className__")||"")})},hasClass:function(e){var t=" "+e+" ",n=0,r=this.length;for(;r>n;n++)if(1===this[n].nodeType&&(" "+this[n].className+" ").replace(X," ").indexOf(t)>=0)return!0;return!1},val:function(e){var n,r,i,o=this[0];{if(arguments.length)return i=b.isFunction(e),this.each(function(n){var o,a=b(this);1===this.nodeType&&(o=i?e.call(this,n,a.val()):e,null==o?o="":"number"==typeof o?o+="":b.isArray(o)&&(o=b.map(o,function(e){return null==e?"":e+""})),r=b.valHooks[this.type]||b.valHooks[this.nodeName.toLowerCase()],r&&"set"in r&&r.set(this,o,"value")!==t||(this.value=o))});if(o)return r=b.valHooks[o.type]||b.valHooks[o.nodeName.toLowerCase()],r&&"get"in r&&(n=r.get(o,"value"))!==t?n:(n=o.value,"string"==typeof n?n.replace(U,""):null==n?"":n)}}}),b.extend({valHooks:{option:{get:function(e){var t=e.attributes.value;return!t||t.specified?e.value:e.text}},select:{get:function(e){var t,n,r=e.options,i=e.selectedIndex,o="select-one"===e.type||0>i,a=o?null:[],s=o?i+1:r.length,u=0>i?s:o?i:0;for(;s>u;u++)if(n=r[u],!(!n.selected&&u!==i||(b.support.optDisabled?n.disabled:null!==n.getAttribute("disabled"))||n.parentNode.disabled&&b.nodeName(n.parentNode,"optgroup"))){if(t=b(n).val(),o)return t;a.push(t)}return a},set:function(e,t){var n=b.makeArray(t);return b(e).find("option").each(function(){this.selected=b.inArray(b(this).val(),n)>=0}),n.length||(e.selectedIndex=-1),n}}},attr:function(e,n,r){var o,a,s,u=e.nodeType;if(e&&3!==u&&8!==u&&2!==u)return typeof e.getAttribute===i?b.prop(e,n,r):(a=1!==u||!b.isXMLDoc(e),a&&(n=n.toLowerCase(),o=b.attrHooks[n]||(J.test(n)?z:I)),r===t?o&&a&&"get"in o&&null!==(s=o.get(e,n))?s:(typeof e.getAttribute!==i&&(s=e.getAttribute(n)),null==s?t:s):null!==r?o&&a&&"set"in o&&(s=o.set(e,r,n))!==t?s:(e.setAttribute(n,r+""),r):(b.removeAttr(e,n),t))},removeAttr:function(e,t){var n,r,i=0,o=t&&t.match(w);if(o&&1===e.nodeType)while(n=o[i++])r=b.propFix[n]||n,J.test(n)?!Q&&G.test(n)?e[b.camelCase("default-"+n)]=e[r]=!1:e[r]=!1:b.attr(e,n,""),e.removeAttribute(Q?n:r)},attrHooks:{type:{set:function(e,t){if(!b.support.radioValue&&"radio"===t&&b.nodeName(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},propFix:{tabindex:"tabIndex",readonly:"readOnly","for":"htmlFor","class":"className",maxlength:"maxLength",cellspacing:"cellSpacing",cellpadding:"cellPadding",rowspan:"rowSpan",colspan:"colSpan",usemap:"useMap",frameborder:"frameBorder",contenteditable:"contentEditable"},prop:function(e,n,r){var i,o,a,s=e.nodeType;if(e&&3!==s&&8!==s&&2!==s)return a=1!==s||!b.isXMLDoc(e),a&&(n=b.propFix[n]||n,o=b.propHooks[n]),r!==t?o&&"set"in o&&(i=o.set(e,r,n))!==t?i:e[n]=r:o&&"get"in o&&null!==(i=o.get(e,n))?i:e[n]},propHooks:{tabIndex:{get:function(e){var n=e.getAttributeNode("tabindex");return n&&n.specified?parseInt(n.value,10):V.test(e.nodeName)||Y.test(e.nodeName)&&e.href?0:t}}}}),z={get:function(e,n){var r=b.prop(e,n),i="boolean"==typeof r&&e.getAttribute(n),o="boolean"==typeof r?K&&Q?null!=i:G.test(n)?e[b.camelCase("default-"+n)]:!!i:e.getAttributeNode(n);return o&&o.value!==!1?n.toLowerCase():t},set:function(e,t,n){return t===!1?b.removeAttr(e,n):K&&Q||!G.test(n)?e.setAttribute(!Q&&b.propFix[n]||n,n):e[b.camelCase("default-"+n)]=e[n]=!0,n}},K&&Q||(b.attrHooks.value={get:function(e,n){var r=e.getAttributeNode(n);return b.nodeName(e,"input")?e.defaultValue:r&&r.specified?r.value:t},set:function(e,n,r){return b.nodeName(e,"input")?(e.defaultValue=n,t):I&&I.set(e,n,r)}}),Q||(I=b.valHooks.button={get:function(e,n){var r=e.getAttributeNode(n);return r&&("id"===n||"name"===n||"coords"===n?""!==r.value:r.specified)?r.value:t},set:function(e,n,r){var i=e.getAttributeNode(r);return i||e.setAttributeNode(i=e.ownerDocument.createAttribute(r)),i.value=n+="","value"===r||n===e.getAttribute(r)?n:t}},b.attrHooks.contenteditable={get:I.get,set:function(e,t,n){I.set(e,""===t?!1:t,n)}},b.each(["width","height"],function(e,n){b.attrHooks[n]=b.extend(b.attrHooks[n],{set:function(e,r){return""===r?(e.setAttribute(n,"auto"),r):t}})})),b.support.hrefNormalized||(b.each(["href","src","width","height"],function(e,n){b.attrHooks[n]=b.extend(b.attrHooks[n],{get:function(e){var r=e.getAttribute(n,2);return null==r?t:r}})}),b.each(["href","src"],function(e,t){b.propHooks[t]={get:function(e){return e.getAttribute(t,4)}}})),b.support.style||(b.attrHooks.style={get:function(e){return e.style.cssText||t},set:function(e,t){return e.style.cssText=t+""}}),b.support.optSelected||(b.propHooks.selected=b.extend(b.propHooks.selected,{get:function(e){var t=e.parentNode;return t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex),null}})),b.support.enctype||(b.propFix.enctype="encoding"),b.support.checkOn||b.each(["radio","checkbox"],function(){b.valHooks[this]={get:function(e){return null===e.getAttribute("value")?"on":e.value}}}),b.each(["radio","checkbox"],function(){b.valHooks[this]=b.extend(b.valHooks[this],{set:function(e,n){return b.isArray(n)?e.checked=b.inArray(b(e).val(),n)>=0:t}})});var Z=/^(?:input|select|textarea)$/i,et=/^key/,tt=/^(?:mouse|contextmenu)|click/,nt=/^(?:focusinfocus|focusoutblur)$/,rt=/^([^.]*)(?:\.(.+)|)$/;function it(){return!0}function ot(){return!1}b.event={global:{},add:function(e,n,r,o,a){var s,u,l,c,p,f,d,h,g,m,y,v=b._data(e);if(v){r.handler&&(c=r,r=c.handler,a=c.selector),r.guid||(r.guid=b.guid++),(u=v.events)||(u=v.events={}),(f=v.handle)||(f=v.handle=function(e){return typeof b===i||e&&b.event.triggered===e.type?t:b.event.dispatch.apply(f.elem,arguments)},f.elem=e),n=(n||"").match(w)||[""],l=n.length;while(l--)s=rt.exec(n[l])||[],g=y=s[1],m=(s[2]||"").split(".").sort(),p=b.event.special[g]||{},g=(a?p.delegateType:p.bindType)||g,p=b.event.special[g]||{},d=b.extend({type:g,origType:y,data:o,handler:r,guid:r.guid,selector:a,needsContext:a&&b.expr.match.needsContext.test(a),namespace:m.join(".")},c),(h=u[g])||(h=u[g]=[],h.delegateCount=0,p.setup&&p.setup.call(e,o,m,f)!==!1||(e.addEventListener?e.addEventListener(g,f,!1):e.attachEvent&&e.attachEvent("on"+g,f))),p.add&&(p.add.call(e,d),d.handler.guid||(d.handler.guid=r.guid)),a?h.splice(h.delegateCount++,0,d):h.push(d),b.event.global[g]=!0;e=null}},remove:function(e,t,n,r,i){var o,a,s,u,l,c,p,f,d,h,g,m=b.hasData(e)&&b._data(e);if(m&&(c=m.events)){t=(t||"").match(w)||[""],l=t.length;while(l--)if(s=rt.exec(t[l])||[],d=g=s[1],h=(s[2]||"").split(".").sort(),d){p=b.event.special[d]||{},d=(r?p.delegateType:p.bindType)||d,f=c[d]||[],s=s[2]&&RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),u=o=f.length;while(o--)a=f[o],!i&&g!==a.origType||n&&n.guid!==a.guid||s&&!s.test(a.namespace)||r&&r!==a.selector&&("**"!==r||!a.selector)||(f.splice(o,1),a.selector&&f.delegateCount--,p.remove&&p.remove.call(e,a));u&&!f.length&&(p.teardown&&p.teardown.call(e,h,m.handle)!==!1||b.removeEvent(e,d,m.handle),delete c[d])}else for(d in c)b.event.remove(e,d+t[l],n,r,!0);b.isEmptyObject(c)&&(delete m.handle,b._removeData(e,"events"))}},trigger:function(n,r,i,a){var s,u,l,c,p,f,d,h=[i||o],g=y.call(n,"type")?n.type:n,m=y.call(n,"namespace")?n.namespace.split("."):[];if(l=f=i=i||o,3!==i.nodeType&&8!==i.nodeType&&!nt.test(g+b.event.triggered)&&(g.indexOf(".")>=0&&(m=g.split("."),g=m.shift(),m.sort()),u=0>g.indexOf(":")&&"on"+g,n=n[b.expando]?n:new b.Event(g,"object"==typeof n&&n),n.isTrigger=!0,n.namespace=m.join("."),n.namespace_re=n.namespace?RegExp("(^|\\.)"+m.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,n.result=t,n.target||(n.target=i),r=null==r?[n]:b.makeArray(r,[n]),p=b.event.special[g]||{},a||!p.trigger||p.trigger.apply(i,r)!==!1)){if(!a&&!p.noBubble&&!b.isWindow(i)){for(c=p.delegateType||g,nt.test(c+g)||(l=l.parentNode);l;l=l.parentNode)h.push(l),f=l;f===(i.ownerDocument||o)&&h.push(f.defaultView||f.parentWindow||e)}d=0;while((l=h[d++])&&!n.isPropagationStopped())n.type=d>1?c:p.bindType||g,s=(b._data(l,"events")||{})[n.type]&&b._data(l,"handle"),s&&s.apply(l,r),s=u&&l[u],s&&b.acceptData(l)&&s.apply&&s.apply(l,r)===!1&&n.preventDefault();if(n.type=g,!(a||n.isDefaultPrevented()||p._default&&p._default.apply(i.ownerDocument,r)!==!1||"click"===g&&b.nodeName(i,"a")||!b.acceptData(i)||!u||!i[g]||b.isWindow(i))){f=i[u],f&&(i[u]=null),b.event.triggered=g;try{i[g]()}catch(v){}b.event.triggered=t,f&&(i[u]=f)}return n.result}},dispatch:function(e){e=b.event.fix(e);var n,r,i,o,a,s=[],u=h.call(arguments),l=(b._data(this,"events")||{})[e.type]||[],c=b.event.special[e.type]||{};if(u[0]=e,e.delegateTarget=this,!c.preDispatch||c.preDispatch.call(this,e)!==!1){s=b.event.handlers.call(this,e,l),n=0;while((o=s[n++])&&!e.isPropagationStopped()){e.currentTarget=o.elem,a=0;while((i=o.handlers[a++])&&!e.isImmediatePropagationStopped())(!e.namespace_re||e.namespace_re.test(i.namespace))&&(e.handleObj=i,e.data=i.data,r=((b.event.special[i.origType]||{}).handle||i.handler).apply(o.elem,u),r!==t&&(e.result=r)===!1&&(e.preventDefault(),e.stopPropagation()))}return c.postDispatch&&c.postDispatch.call(this,e),e.result}},handlers:function(e,n){var r,i,o,a,s=[],u=n.delegateCount,l=e.target;if(u&&l.nodeType&&(!e.button||"click"!==e.type))for(;l!=this;l=l.parentNode||this)if(1===l.nodeType&&(l.disabled!==!0||"click"!==e.type)){for(o=[],a=0;u>a;a++)i=n[a],r=i.selector+" ",o[r]===t&&(o[r]=i.needsContext?b(r,this).index(l)>=0:b.find(r,this,null,[l]).length),o[r]&&o.push(i);o.length&&s.push({elem:l,handlers:o})}return n.length>u&&s.push({elem:this,handlers:n.slice(u)}),s},fix:function(e){if(e[b.expando])return e;var t,n,r,i=e.type,a=e,s=this.fixHooks[i];s||(this.fixHooks[i]=s=tt.test(i)?this.mouseHooks:et.test(i)?this.keyHooks:{}),r=s.props?this.props.concat(s.props):this.props,e=new b.Event(a),t=r.length;while(t--)n=r[t],e[n]=a[n];return e.target||(e.target=a.srcElement||o),3===e.target.nodeType&&(e.target=e.target.parentNode),e.metaKey=!!e.metaKey,s.filter?s.filter(e,a):e},props:"altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(e,t){return null==e.which&&(e.which=null!=t.charCode?t.charCode:t.keyCode),e}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(e,n){var r,i,a,s=n.button,u=n.fromElement;return null==e.pageX&&null!=n.clientX&&(i=e.target.ownerDocument||o,a=i.documentElement,r=i.body,e.pageX=n.clientX+(a&&a.scrollLeft||r&&r.scrollLeft||0)-(a&&a.clientLeft||r&&r.clientLeft||0),e.pageY=n.clientY+(a&&a.scrollTop||r&&r.scrollTop||0)-(a&&a.clientTop||r&&r.clientTop||0)),!e.relatedTarget&&u&&(e.relatedTarget=u===e.target?n.toElement:u),e.which||s===t||(e.which=1&s?1:2&s?3:4&s?2:0),e}},special:{load:{noBubble:!0},click:{trigger:function(){return b.nodeName(this,"input")&&"checkbox"===this.type&&this.click?(this.click(),!1):t}},focus:{trigger:function(){if(this!==o.activeElement&&this.focus)try{return this.focus(),!1}catch(e){}},delegateType:"focusin"},blur:{trigger:function(){return this===o.activeElement&&this.blur?(this.blur(),!1):t},delegateType:"focusout"},beforeunload:{postDispatch:function(e){e.result!==t&&(e.originalEvent.returnValue=e.result)}}},simulate:function(e,t,n,r){var i=b.extend(new b.Event,n,{type:e,isSimulated:!0,originalEvent:{}});r?b.event.trigger(i,null,t):b.event.dispatch.call(t,i),i.isDefaultPrevented()&&n.preventDefault()}},b.removeEvent=o.removeEventListener?function(e,t,n){e.removeEventListener&&e.removeEventListener(t,n,!1)}:function(e,t,n){var r="on"+t;e.detachEvent&&(typeof e[r]===i&&(e[r]=null),e.detachEvent(r,n))},b.Event=function(e,n){return this instanceof b.Event?(e&&e.type?(this.originalEvent=e,this.type=e.type,this.isDefaultPrevented=e.defaultPrevented||e.returnValue===!1||e.getPreventDefault&&e.getPreventDefault()?it:ot):this.type=e,n&&b.extend(this,n),this.timeStamp=e&&e.timeStamp||b.now(),this[b.expando]=!0,t):new b.Event(e,n)},b.Event.prototype={isDefaultPrevented:ot,isPropagationStopped:ot,isImmediatePropagationStopped:ot,preventDefault:function(){var e=this.originalEvent;this.isDefaultPrevented=it,e&&(e.preventDefault?e.preventDefault():e.returnValue=!1)},stopPropagation:function(){var e=this.originalEvent;this.isPropagationStopped=it,e&&(e.stopPropagation&&e.stopPropagation(),e.cancelBubble=!0)},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=it,this.stopPropagation()}},b.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(e,t){b.event.special[e]={delegateType:t,bindType:t,handle:function(e){var n,r=this,i=e.relatedTarget,o=e.handleObj;
3 return(!i||i!==r&&!b.contains(r,i))&&(e.type=o.origType,n=o.handler.apply(this,arguments),e.type=t),n}}}),b.support.submitBubbles||(b.event.special.submit={setup:function(){return b.nodeName(this,"form")?!1:(b.event.add(this,"click._submit keypress._submit",function(e){var n=e.target,r=b.nodeName(n,"input")||b.nodeName(n,"button")?n.form:t;r&&!b._data(r,"submitBubbles")&&(b.event.add(r,"submit._submit",function(e){e._submit_bubble=!0}),b._data(r,"submitBubbles",!0))}),t)},postDispatch:function(e){e._submit_bubble&&(delete e._submit_bubble,this.parentNode&&!e.isTrigger&&b.event.simulate("submit",this.parentNode,e,!0))},teardown:function(){return b.nodeName(this,"form")?!1:(b.event.remove(this,"._submit"),t)}}),b.support.changeBubbles||(b.event.special.change={setup:function(){return Z.test(this.nodeName)?(("checkbox"===this.type||"radio"===this.type)&&(b.event.add(this,"propertychange._change",function(e){"checked"===e.originalEvent.propertyName&&(this._just_changed=!0)}),b.event.add(this,"click._change",function(e){this._just_changed&&!e.isTrigger&&(this._just_changed=!1),b.event.simulate("change",this,e,!0)})),!1):(b.event.add(this,"beforeactivate._change",function(e){var t=e.target;Z.test(t.nodeName)&&!b._data(t,"changeBubbles")&&(b.event.add(t,"change._change",function(e){!this.parentNode||e.isSimulated||e.isTrigger||b.event.simulate("change",this.parentNode,e,!0)}),b._data(t,"changeBubbles",!0))}),t)},handle:function(e){var n=e.target;return this!==n||e.isSimulated||e.isTrigger||"radio"!==n.type&&"checkbox"!==n.type?e.handleObj.handler.apply(this,arguments):t},teardown:function(){return b.event.remove(this,"._change"),!Z.test(this.nodeName)}}),b.support.focusinBubbles||b.each({focus:"focusin",blur:"focusout"},function(e,t){var n=0,r=function(e){b.event.simulate(t,e.target,b.event.fix(e),!0)};b.event.special[t]={setup:function(){0===n++&&o.addEventListener(e,r,!0)},teardown:function(){0===--n&&o.removeEventListener(e,r,!0)}}}),b.fn.extend({on:function(e,n,r,i,o){var a,s;if("object"==typeof e){"string"!=typeof n&&(r=r||n,n=t);for(a in e)this.on(a,n,r,e[a],o);return this}if(null==r&&null==i?(i=n,r=n=t):null==i&&("string"==typeof n?(i=r,r=t):(i=r,r=n,n=t)),i===!1)i=ot;else if(!i)return this;return 1===o&&(s=i,i=function(e){return b().off(e),s.apply(this,arguments)},i.guid=s.guid||(s.guid=b.guid++)),this.each(function(){b.event.add(this,e,i,r,n)})},one:function(e,t,n,r){return this.on(e,t,n,r,1)},off:function(e,n,r){var i,o;if(e&&e.preventDefault&&e.handleObj)return i=e.handleObj,b(e.delegateTarget).off(i.namespace?i.origType+"."+i.namespace:i.origType,i.selector,i.handler),this;if("object"==typeof e){for(o in e)this.off(o,n,e[o]);return this}return(n===!1||"function"==typeof n)&&(r=n,n=t),r===!1&&(r=ot),this.each(function(){b.event.remove(this,e,r,n)})},bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},trigger:function(e,t){return this.each(function(){b.event.trigger(e,t,this)})},triggerHandler:function(e,n){var r=this[0];return r?b.event.trigger(e,n,r,!0):t}}),function(e,t){var n,r,i,o,a,s,u,l,c,p,f,d,h,g,m,y,v,x="sizzle"+-new Date,w=e.document,T={},N=0,C=0,k=it(),E=it(),S=it(),A=typeof t,j=1<<31,D=[],L=D.pop,H=D.push,q=D.slice,M=D.indexOf||function(e){var t=0,n=this.length;for(;n>t;t++)if(this[t]===e)return t;return-1},_="[\\x20\\t\\r\\n\\f]",F="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",O=F.replace("w","w#"),B="([*^$|!~]?=)",P="\\["+_+"*("+F+")"+_+"*(?:"+B+_+"*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|("+O+")|)|)"+_+"*\\]",R=":("+F+")(?:\\(((['\"])((?:\\\\.|[^\\\\])*?)\\3|((?:\\\\.|[^\\\\()[\\]]|"+P.replace(3,8)+")*)|.*)\\)|)",W=RegExp("^"+_+"+|((?:^|[^\\\\])(?:\\\\.)*)"+_+"+$","g"),$=RegExp("^"+_+"*,"+_+"*"),I=RegExp("^"+_+"*([\\x20\\t\\r\\n\\f>+~])"+_+"*"),z=RegExp(R),X=RegExp("^"+O+"$"),U={ID:RegExp("^#("+F+")"),CLASS:RegExp("^\\.("+F+")"),NAME:RegExp("^\\[name=['\"]?("+F+")['\"]?\\]"),TAG:RegExp("^("+F.replace("w","w*")+")"),ATTR:RegExp("^"+P),PSEUDO:RegExp("^"+R),CHILD:RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+_+"*(even|odd|(([+-]|)(\\d*)n|)"+_+"*(?:([+-]|)"+_+"*(\\d+)|))"+_+"*\\)|)","i"),needsContext:RegExp("^"+_+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+_+"*((?:-\\d)?\\d*)"+_+"*\\)|)(?=[^-]|$)","i")},V=/[\x20\t\r\n\f]*[+~]/,Y=/^[^{]+\{\s*\[native code/,J=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,G=/^(?:input|select|textarea|button)$/i,Q=/^h\d$/i,K=/'|\\/g,Z=/\=[\x20\t\r\n\f]*([^'"\]]*)[\x20\t\r\n\f]*\]/g,et=/\\([\da-fA-F]{1,6}[\x20\t\r\n\f]?|.)/g,tt=function(e,t){var n="0x"+t-65536;return n!==n?t:0>n?String.fromCharCode(n+65536):String.fromCharCode(55296|n>>10,56320|1023&n)};try{q.call(w.documentElement.childNodes,0)[0].nodeType}catch(nt){q=function(e){var t,n=[];while(t=this[e++])n.push(t);return n}}function rt(e){return Y.test(e+"")}function it(){var e,t=[];return e=function(n,r){return t.push(n+=" ")>i.cacheLength&&delete e[t.shift()],e[n]=r}}function ot(e){return e[x]=!0,e}function at(e){var t=p.createElement("div");try{return e(t)}catch(n){return!1}finally{t=null}}function st(e,t,n,r){var i,o,a,s,u,l,f,g,m,v;if((t?t.ownerDocument||t:w)!==p&&c(t),t=t||p,n=n||[],!e||"string"!=typeof e)return n;if(1!==(s=t.nodeType)&&9!==s)return[];if(!d&&!r){if(i=J.exec(e))if(a=i[1]){if(9===s){if(o=t.getElementById(a),!o||!o.parentNode)return n;if(o.id===a)return n.push(o),n}else if(t.ownerDocument&&(o=t.ownerDocument.getElementById(a))&&y(t,o)&&o.id===a)return n.push(o),n}else{if(i[2])return H.apply(n,q.call(t.getElementsByTagName(e),0)),n;if((a=i[3])&&T.getByClassName&&t.getElementsByClassName)return H.apply(n,q.call(t.getElementsByClassName(a),0)),n}if(T.qsa&&!h.test(e)){if(f=!0,g=x,m=t,v=9===s&&e,1===s&&"object"!==t.nodeName.toLowerCase()){l=ft(e),(f=t.getAttribute("id"))?g=f.replace(K,"\\$&"):t.setAttribute("id",g),g="[id='"+g+"'] ",u=l.length;while(u--)l[u]=g+dt(l[u]);m=V.test(e)&&t.parentNode||t,v=l.join(",")}if(v)try{return H.apply(n,q.call(m.querySelectorAll(v),0)),n}catch(b){}finally{f||t.removeAttribute("id")}}}return wt(e.replace(W,"$1"),t,n,r)}a=st.isXML=function(e){var t=e&&(e.ownerDocument||e).documentElement;return t?"HTML"!==t.nodeName:!1},c=st.setDocument=function(e){var n=e?e.ownerDocument||e:w;return n!==p&&9===n.nodeType&&n.documentElement?(p=n,f=n.documentElement,d=a(n),T.tagNameNoComments=at(function(e){return e.appendChild(n.createComment("")),!e.getElementsByTagName("*").length}),T.attributes=at(function(e){e.innerHTML="<select></select>";var t=typeof e.lastChild.getAttribute("multiple");return"boolean"!==t&&"string"!==t}),T.getByClassName=at(function(e){return e.innerHTML="<div class='hidden e'></div><div class='hidden'></div>",e.getElementsByClassName&&e.getElementsByClassName("e").length?(e.lastChild.className="e",2===e.getElementsByClassName("e").length):!1}),T.getByName=at(function(e){e.id=x+0,e.innerHTML="<a name='"+x+"'></a><div name='"+x+"'></div>",f.insertBefore(e,f.firstChild);var t=n.getElementsByName&&n.getElementsByName(x).length===2+n.getElementsByName(x+0).length;return T.getIdNotName=!n.getElementById(x),f.removeChild(e),t}),i.attrHandle=at(function(e){return e.innerHTML="<a href='#'></a>",e.firstChild&&typeof e.firstChild.getAttribute!==A&&"#"===e.firstChild.getAttribute("href")})?{}:{href:function(e){return e.getAttribute("href",2)},type:function(e){return e.getAttribute("type")}},T.getIdNotName?(i.find.ID=function(e,t){if(typeof t.getElementById!==A&&!d){var n=t.getElementById(e);return n&&n.parentNode?[n]:[]}},i.filter.ID=function(e){var t=e.replace(et,tt);return function(e){return e.getAttribute("id")===t}}):(i.find.ID=function(e,n){if(typeof n.getElementById!==A&&!d){var r=n.getElementById(e);return r?r.id===e||typeof r.getAttributeNode!==A&&r.getAttributeNode("id").value===e?[r]:t:[]}},i.filter.ID=function(e){var t=e.replace(et,tt);return function(e){var n=typeof e.getAttributeNode!==A&&e.getAttributeNode("id");return n&&n.value===t}}),i.find.TAG=T.tagNameNoComments?function(e,n){return typeof n.getElementsByTagName!==A?n.getElementsByTagName(e):t}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},i.find.NAME=T.getByName&&function(e,n){return typeof n.getElementsByName!==A?n.getElementsByName(name):t},i.find.CLASS=T.getByClassName&&function(e,n){return typeof n.getElementsByClassName===A||d?t:n.getElementsByClassName(e)},g=[],h=[":focus"],(T.qsa=rt(n.querySelectorAll))&&(at(function(e){e.innerHTML="<select><option selected=''></option></select>",e.querySelectorAll("[selected]").length||h.push("\\["+_+"*(?:checked|disabled|ismap|multiple|readonly|selected|value)"),e.querySelectorAll(":checked").length||h.push(":checked")}),at(function(e){e.innerHTML="<input type='hidden' i=''/>",e.querySelectorAll("[i^='']").length&&h.push("[*^$]="+_+"*(?:\"\"|'')"),e.querySelectorAll(":enabled").length||h.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),h.push(",.*:")})),(T.matchesSelector=rt(m=f.matchesSelector||f.mozMatchesSelector||f.webkitMatchesSelector||f.oMatchesSelector||f.msMatchesSelector))&&at(function(e){T.disconnectedMatch=m.call(e,"div"),m.call(e,"[s!='']:x"),g.push("!=",R)}),h=RegExp(h.join("|")),g=RegExp(g.join("|")),y=rt(f.contains)||f.compareDocumentPosition?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},v=f.compareDocumentPosition?function(e,t){var r;return e===t?(u=!0,0):(r=t.compareDocumentPosition&&e.compareDocumentPosition&&e.compareDocumentPosition(t))?1&r||e.parentNode&&11===e.parentNode.nodeType?e===n||y(w,e)?-1:t===n||y(w,t)?1:0:4&r?-1:1:e.compareDocumentPosition?-1:1}:function(e,t){var r,i=0,o=e.parentNode,a=t.parentNode,s=[e],l=[t];if(e===t)return u=!0,0;if(!o||!a)return e===n?-1:t===n?1:o?-1:a?1:0;if(o===a)return ut(e,t);r=e;while(r=r.parentNode)s.unshift(r);r=t;while(r=r.parentNode)l.unshift(r);while(s[i]===l[i])i++;return i?ut(s[i],l[i]):s[i]===w?-1:l[i]===w?1:0},u=!1,[0,0].sort(v),T.detectDuplicates=u,p):p},st.matches=function(e,t){return st(e,null,null,t)},st.matchesSelector=function(e,t){if((e.ownerDocument||e)!==p&&c(e),t=t.replace(Z,"='$1']"),!(!T.matchesSelector||d||g&&g.test(t)||h.test(t)))try{var n=m.call(e,t);if(n||T.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(r){}return st(t,p,null,[e]).length>0},st.contains=function(e,t){return(e.ownerDocument||e)!==p&&c(e),y(e,t)},st.attr=function(e,t){var n;return(e.ownerDocument||e)!==p&&c(e),d||(t=t.toLowerCase()),(n=i.attrHandle[t])?n(e):d||T.attributes?e.getAttribute(t):((n=e.getAttributeNode(t))||e.getAttribute(t))&&e[t]===!0?t:n&&n.specified?n.value:null},st.error=function(e){throw Error("Syntax error, unrecognized expression: "+e)},st.uniqueSort=function(e){var t,n=[],r=1,i=0;if(u=!T.detectDuplicates,e.sort(v),u){for(;t=e[r];r++)t===e[r-1]&&(i=n.push(r));while(i--)e.splice(n[i],1)}return e};function ut(e,t){var n=t&&e,r=n&&(~t.sourceIndex||j)-(~e.sourceIndex||j);if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function lt(e){return function(t){var n=t.nodeName.toLowerCase();return"input"===n&&t.type===e}}function ct(e){return function(t){var n=t.nodeName.toLowerCase();return("input"===n||"button"===n)&&t.type===e}}function pt(e){return ot(function(t){return t=+t,ot(function(n,r){var i,o=e([],n.length,t),a=o.length;while(a--)n[i=o[a]]&&(n[i]=!(r[i]=n[i]))})})}o=st.getText=function(e){var t,n="",r=0,i=e.nodeType;if(i){if(1===i||9===i||11===i){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=o(e)}else if(3===i||4===i)return e.nodeValue}else for(;t=e[r];r++)n+=o(t);return n},i=st.selectors={cacheLength:50,createPseudo:ot,match:U,find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(et,tt),e[3]=(e[4]||e[5]||"").replace(et,tt),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||st.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&st.error(e[0]),e},PSEUDO:function(e){var t,n=!e[5]&&e[2];return U.CHILD.test(e[0])?null:(e[4]?e[2]=e[4]:n&&z.test(n)&&(t=ft(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){return"*"===e?function(){return!0}:(e=e.replace(et,tt).toLowerCase(),function(t){return t.nodeName&&t.nodeName.toLowerCase()===e})},CLASS:function(e){var t=k[e+" "];return t||(t=RegExp("(^|"+_+")"+e+"("+_+"|$)"))&&k(e,function(e){return t.test(e.className||typeof e.getAttribute!==A&&e.getAttribute("class")||"")})},ATTR:function(e,t,n){return function(r){var i=st.attr(r,e);return null==i?"!="===t:t?(i+="","="===t?i===n:"!="===t?i!==n:"^="===t?n&&0===i.indexOf(n):"*="===t?n&&i.indexOf(n)>-1:"$="===t?n&&i.slice(-n.length)===n:"~="===t?(" "+i+" ").indexOf(n)>-1:"|="===t?i===n||i.slice(0,n.length+1)===n+"-":!1):!0}},CHILD:function(e,t,n,r,i){var o="nth"!==e.slice(0,3),a="last"!==e.slice(-4),s="of-type"===t;return 1===r&&0===i?function(e){return!!e.parentNode}:function(t,n,u){var l,c,p,f,d,h,g=o!==a?"nextSibling":"previousSibling",m=t.parentNode,y=s&&t.nodeName.toLowerCase(),v=!u&&!s;if(m){if(o){while(g){p=t;while(p=p[g])if(s?p.nodeName.toLowerCase()===y:1===p.nodeType)return!1;h=g="only"===e&&!h&&"nextSibling"}return!0}if(h=[a?m.firstChild:m.lastChild],a&&v){c=m[x]||(m[x]={}),l=c[e]||[],d=l[0]===N&&l[1],f=l[0]===N&&l[2],p=d&&m.childNodes[d];while(p=++d&&p&&p[g]||(f=d=0)||h.pop())if(1===p.nodeType&&++f&&p===t){c[e]=[N,d,f];break}}else if(v&&(l=(t[x]||(t[x]={}))[e])&&l[0]===N)f=l[1];else while(p=++d&&p&&p[g]||(f=d=0)||h.pop())if((s?p.nodeName.toLowerCase()===y:1===p.nodeType)&&++f&&(v&&((p[x]||(p[x]={}))[e]=[N,f]),p===t))break;return f-=i,f===r||0===f%r&&f/r>=0}}},PSEUDO:function(e,t){var n,r=i.pseudos[e]||i.setFilters[e.toLowerCase()]||st.error("unsupported pseudo: "+e);return r[x]?r(t):r.length>1?(n=[e,e,"",t],i.setFilters.hasOwnProperty(e.toLowerCase())?ot(function(e,n){var i,o=r(e,t),a=o.length;while(a--)i=M.call(e,o[a]),e[i]=!(n[i]=o[a])}):function(e){return r(e,0,n)}):r}},pseudos:{not:ot(function(e){var t=[],n=[],r=s(e.replace(W,"$1"));return r[x]?ot(function(e,t,n,i){var o,a=r(e,null,i,[]),s=e.length;while(s--)(o=a[s])&&(e[s]=!(t[s]=o))}):function(e,i,o){return t[0]=e,r(t,null,o,n),!n.pop()}}),has:ot(function(e){return function(t){return st(e,t).length>0}}),contains:ot(function(e){return function(t){return(t.textContent||t.innerText||o(t)).indexOf(e)>-1}}),lang:ot(function(e){return X.test(e||"")||st.error("unsupported lang: "+e),e=e.replace(et,tt).toLowerCase(),function(t){var n;do if(n=d?t.getAttribute("xml:lang")||t.getAttribute("lang"):t.lang)return n=n.toLowerCase(),n===e||0===n.indexOf(e+"-");while((t=t.parentNode)&&1===t.nodeType);return!1}}),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===f},focus:function(e){return e===p.activeElement&&(!p.hasFocus||p.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:function(e){return e.disabled===!1},disabled:function(e){return e.disabled===!0},checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,e.selected===!0},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeName>"@"||3===e.nodeType||4===e.nodeType)return!1;return!0},parent:function(e){return!i.pseudos.empty(e)},header:function(e){return Q.test(e.nodeName)},input:function(e){return G.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||t.toLowerCase()===e.type)},first:pt(function(){return[0]}),last:pt(function(e,t){return[t-1]}),eq:pt(function(e,t,n){return[0>n?n+t:n]}),even:pt(function(e,t){var n=0;for(;t>n;n+=2)e.push(n);return e}),odd:pt(function(e,t){var n=1;for(;t>n;n+=2)e.push(n);return e}),lt:pt(function(e,t,n){var r=0>n?n+t:n;for(;--r>=0;)e.push(r);return e}),gt:pt(function(e,t,n){var r=0>n?n+t:n;for(;t>++r;)e.push(r);return e})}};for(n in{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})i.pseudos[n]=lt(n);for(n in{submit:!0,reset:!0})i.pseudos[n]=ct(n);function ft(e,t){var n,r,o,a,s,u,l,c=E[e+" "];if(c)return t?0:c.slice(0);s=e,u=[],l=i.preFilter;while(s){(!n||(r=$.exec(s)))&&(r&&(s=s.slice(r[0].length)||s),u.push(o=[])),n=!1,(r=I.exec(s))&&(n=r.shift(),o.push({value:n,type:r[0].replace(W," ")}),s=s.slice(n.length));for(a in i.filter)!(r=U[a].exec(s))||l[a]&&!(r=l[a](r))||(n=r.shift(),o.push({value:n,type:a,matches:r}),s=s.slice(n.length));if(!n)break}return t?s.length:s?st.error(e):E(e,u).slice(0)}function dt(e){var t=0,n=e.length,r="";for(;n>t;t++)r+=e[t].value;return r}function ht(e,t,n){var i=t.dir,o=n&&"parentNode"===i,a=C++;return t.first?function(t,n,r){while(t=t[i])if(1===t.nodeType||o)return e(t,n,r)}:function(t,n,s){var u,l,c,p=N+" "+a;if(s){while(t=t[i])if((1===t.nodeType||o)&&e(t,n,s))return!0}else while(t=t[i])if(1===t.nodeType||o)if(c=t[x]||(t[x]={}),(l=c[i])&&l[0]===p){if((u=l[1])===!0||u===r)return u===!0}else if(l=c[i]=[p],l[1]=e(t,n,s)||r,l[1]===!0)return!0}}function gt(e){return e.length>1?function(t,n,r){var i=e.length;while(i--)if(!e[i](t,n,r))return!1;return!0}:e[0]}function mt(e,t,n,r,i){var o,a=[],s=0,u=e.length,l=null!=t;for(;u>s;s++)(o=e[s])&&(!n||n(o,r,i))&&(a.push(o),l&&t.push(s));return a}function yt(e,t,n,r,i,o){return r&&!r[x]&&(r=yt(r)),i&&!i[x]&&(i=yt(i,o)),ot(function(o,a,s,u){var l,c,p,f=[],d=[],h=a.length,g=o||xt(t||"*",s.nodeType?[s]:s,[]),m=!e||!o&&t?g:mt(g,f,e,s,u),y=n?i||(o?e:h||r)?[]:a:m;if(n&&n(m,y,s,u),r){l=mt(y,d),r(l,[],s,u),c=l.length;while(c--)(p=l[c])&&(y[d[c]]=!(m[d[c]]=p))}if(o){if(i||e){if(i){l=[],c=y.length;while(c--)(p=y[c])&&l.push(m[c]=p);i(null,y=[],l,u)}c=y.length;while(c--)(p=y[c])&&(l=i?M.call(o,p):f[c])>-1&&(o[l]=!(a[l]=p))}}else y=mt(y===a?y.splice(h,y.length):y),i?i(null,a,y,u):H.apply(a,y)})}function vt(e){var t,n,r,o=e.length,a=i.relative[e[0].type],s=a||i.relative[" "],u=a?1:0,c=ht(function(e){return e===t},s,!0),p=ht(function(e){return M.call(t,e)>-1},s,!0),f=[function(e,n,r){return!a&&(r||n!==l)||((t=n).nodeType?c(e,n,r):p(e,n,r))}];for(;o>u;u++)if(n=i.relative[e[u].type])f=[ht(gt(f),n)];else{if(n=i.filter[e[u].type].apply(null,e[u].matches),n[x]){for(r=++u;o>r;r++)if(i.relative[e[r].type])break;return yt(u>1&&gt(f),u>1&&dt(e.slice(0,u-1)).replace(W,"$1"),n,r>u&&vt(e.slice(u,r)),o>r&&vt(e=e.slice(r)),o>r&&dt(e))}f.push(n)}return gt(f)}function bt(e,t){var n=0,o=t.length>0,a=e.length>0,s=function(s,u,c,f,d){var h,g,m,y=[],v=0,b="0",x=s&&[],w=null!=d,T=l,C=s||a&&i.find.TAG("*",d&&u.parentNode||u),k=N+=null==T?1:Math.random()||.1;for(w&&(l=u!==p&&u,r=n);null!=(h=C[b]);b++){if(a&&h){g=0;while(m=e[g++])if(m(h,u,c)){f.push(h);break}w&&(N=k,r=++n)}o&&((h=!m&&h)&&v--,s&&x.push(h))}if(v+=b,o&&b!==v){g=0;while(m=t[g++])m(x,y,u,c);if(s){if(v>0)while(b--)x[b]||y[b]||(y[b]=L.call(f));y=mt(y)}H.apply(f,y),w&&!s&&y.length>0&&v+t.length>1&&st.uniqueSort(f)}return w&&(N=k,l=T),x};return o?ot(s):s}s=st.compile=function(e,t){var n,r=[],i=[],o=S[e+" "];if(!o){t||(t=ft(e)),n=t.length;while(n--)o=vt(t[n]),o[x]?r.push(o):i.push(o);o=S(e,bt(i,r))}return o};function xt(e,t,n){var r=0,i=t.length;for(;i>r;r++)st(e,t[r],n);return n}function wt(e,t,n,r){var o,a,u,l,c,p=ft(e);if(!r&&1===p.length){if(a=p[0]=p[0].slice(0),a.length>2&&"ID"===(u=a[0]).type&&9===t.nodeType&&!d&&i.relative[a[1].type]){if(t=i.find.ID(u.matches[0].replace(et,tt),t)[0],!t)return n;e=e.slice(a.shift().value.length)}o=U.needsContext.test(e)?0:a.length;while(o--){if(u=a[o],i.relative[l=u.type])break;if((c=i.find[l])&&(r=c(u.matches[0].replace(et,tt),V.test(a[0].type)&&t.parentNode||t))){if(a.splice(o,1),e=r.length&&dt(a),!e)return H.apply(n,q.call(r,0)),n;break}}}return s(e,p)(r,t,d,n,V.test(e)),n}i.pseudos.nth=i.pseudos.eq;function Tt(){}i.filters=Tt.prototype=i.pseudos,i.setFilters=new Tt,c(),st.attr=b.attr,b.find=st,b.expr=st.selectors,b.expr[":"]=b.expr.pseudos,b.unique=st.uniqueSort,b.text=st.getText,b.isXMLDoc=st.isXML,b.contains=st.contains}(e);var at=/Until$/,st=/^(?:parents|prev(?:Until|All))/,ut=/^.[^:#\[\.,]*$/,lt=b.expr.match.needsContext,ct={children:!0,contents:!0,next:!0,prev:!0};b.fn.extend({find:function(e){var t,n,r,i=this.length;if("string"!=typeof e)return r=this,this.pushStack(b(e).filter(function(){for(t=0;i>t;t++)if(b.contains(r[t],this))return!0}));for(n=[],t=0;i>t;t++)b.find(e,this[t],n);return n=this.pushStack(i>1?b.unique(n):n),n.selector=(this.selector?this.selector+" ":"")+e,n},has:function(e){var t,n=b(e,this),r=n.length;return this.filter(function(){for(t=0;r>t;t++)if(b.contains(this,n[t]))return!0})},not:function(e){return this.pushStack(ft(this,e,!1))},filter:function(e){return this.pushStack(ft(this,e,!0))},is:function(e){return!!e&&("string"==typeof e?lt.test(e)?b(e,this.context).index(this[0])>=0:b.filter(e,this).length>0:this.filter(e).length>0)},closest:function(e,t){var n,r=0,i=this.length,o=[],a=lt.test(e)||"string"!=typeof e?b(e,t||this.context):0;for(;i>r;r++){n=this[r];while(n&&n.ownerDocument&&n!==t&&11!==n.nodeType){if(a?a.index(n)>-1:b.find.matchesSelector(n,e)){o.push(n);break}n=n.parentNode}}return this.pushStack(o.length>1?b.unique(o):o)},index:function(e){return e?"string"==typeof e?b.inArray(this[0],b(e)):b.inArray(e.jquery?e[0]:e,this):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){var n="string"==typeof e?b(e,t):b.makeArray(e&&e.nodeType?[e]:e),r=b.merge(this.get(),n);return this.pushStack(b.unique(r))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}}),b.fn.andSelf=b.fn.addBack;function pt(e,t){do e=e[t];while(e&&1!==e.nodeType);return e}b.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return b.dir(e,"parentNode")},parentsUntil:function(e,t,n){return b.dir(e,"parentNode",n)},next:function(e){return pt(e,"nextSibling")},prev:function(e){return pt(e,"previousSibling")},nextAll:function(e){return b.dir(e,"nextSibling")},prevAll:function(e){return b.dir(e,"previousSibling")},nextUntil:function(e,t,n){return b.dir(e,"nextSibling",n)},prevUntil:function(e,t,n){return b.dir(e,"previousSibling",n)},siblings:function(e){return b.sibling((e.parentNode||{}).firstChild,e)},children:function(e){return b.sibling(e.firstChild)},contents:function(e){return b.nodeName(e,"iframe")?e.contentDocument||e.contentWindow.document:b.merge([],e.childNodes)}},function(e,t){b.fn[e]=function(n,r){var i=b.map(this,t,n);return at.test(e)||(r=n),r&&"string"==typeof r&&(i=b.filter(r,i)),i=this.length>1&&!ct[e]?b.unique(i):i,this.length>1&&st.test(e)&&(i=i.reverse()),this.pushStack(i)}}),b.extend({filter:function(e,t,n){return n&&(e=":not("+e+")"),1===t.length?b.find.matchesSelector(t[0],e)?[t[0]]:[]:b.find.matches(e,t)},dir:function(e,n,r){var i=[],o=e[n];while(o&&9!==o.nodeType&&(r===t||1!==o.nodeType||!b(o).is(r)))1===o.nodeType&&i.push(o),o=o[n];return i},sibling:function(e,t){var n=[];for(;e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n}});function ft(e,t,n){if(t=t||0,b.isFunction(t))return b.grep(e,function(e,r){var i=!!t.call(e,r,e);return i===n});if(t.nodeType)return b.grep(e,function(e){return e===t===n});if("string"==typeof t){var r=b.grep(e,function(e){return 1===e.nodeType});if(ut.test(t))return b.filter(t,r,!n);t=b.filter(t,r)}return b.grep(e,function(e){return b.inArray(e,t)>=0===n})}function dt(e){var t=ht.split("|"),n=e.createDocumentFragment();if(n.createElement)while(t.length)n.createElement(t.pop());return n}var ht="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",gt=/ jQuery\d+="(?:null|\d+)"/g,mt=RegExp("<(?:"+ht+")[\\s/>]","i"),yt=/^\s+/,vt=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,bt=/<([\w:]+)/,xt=/<tbody/i,wt=/<|&#?\w+;/,Tt=/<(?:script|style|link)/i,Nt=/^(?:checkbox|radio)$/i,Ct=/checked\s*(?:[^=]|=\s*.checked.)/i,kt=/^$|\/(?:java|ecma)script/i,Et=/^true\/(.*)/,St=/^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g,At={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],area:[1,"<map>","</map>"],param:[1,"<object>","</object>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:b.support.htmlSerialize?[0,"",""]:[1,"X<div>","</div>"]},jt=dt(o),Dt=jt.appendChild(o.createElement("div"));At.optgroup=At.option,At.tbody=At.tfoot=At.colgroup=At.caption=At.thead,At.th=At.td,b.fn.extend({text:function(e){return b.access(this,function(e){return e===t?b.text(this):this.empty().append((this[0]&&this[0].ownerDocument||o).createTextNode(e))},null,e,arguments.length)},wrapAll:function(e){if(b.isFunction(e))return this.each(function(t){b(this).wrapAll(e.call(this,t))});if(this[0]){var t=b(e,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){var e=this;while(e.firstChild&&1===e.firstChild.nodeType)e=e.firstChild;return e}).append(this)}return this},wrapInner:function(e){return b.isFunction(e)?this.each(function(t){b(this).wrapInner(e.call(this,t))}):this.each(function(){var t=b(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)})},wrap:function(e){var t=b.isFunction(e);return this.each(function(n){b(this).wrapAll(t?e.call(this,n):e)})},unwrap:function(){return this.parent().each(function(){b.nodeName(this,"body")||b(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(e){(1===this.nodeType||11===this.nodeType||9===this.nodeType)&&this.appendChild(e)})},prepend:function(){return this.domManip(arguments,!0,function(e){(1===this.nodeType||11===this.nodeType||9===this.nodeType)&&this.insertBefore(e,this.firstChild)})},before:function(){return this.domManip(arguments,!1,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return this.domManip(arguments,!1,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},remove:function(e,t){var n,r=0;for(;null!=(n=this[r]);r++)(!e||b.filter(e,[n]).length>0)&&(t||1!==n.nodeType||b.cleanData(Ot(n)),n.parentNode&&(t&&b.contains(n.ownerDocument,n)&&Mt(Ot(n,"script")),n.parentNode.removeChild(n)));return this},empty:function(){var e,t=0;for(;null!=(e=this[t]);t++){1===e.nodeType&&b.cleanData(Ot(e,!1));while(e.firstChild)e.removeChild(e.firstChild);e.options&&b.nodeName(e,"select")&&(e.options.length=0)}return this},clone:function(e,t){return e=null==e?!1:e,t=null==t?e:t,this.map(function(){return b.clone(this,e,t)})},html:function(e){return b.access(this,function(e){var n=this[0]||{},r=0,i=this.length;if(e===t)return 1===n.nodeType?n.innerHTML.replace(gt,""):t;if(!("string"!=typeof e||Tt.test(e)||!b.support.htmlSerialize&&mt.test(e)||!b.support.leadingWhitespace&&yt.test(e)||At[(bt.exec(e)||["",""])[1].toLowerCase()])){e=e.replace(vt,"<$1></$2>");try{for(;i>r;r++)n=this[r]||{},1===n.nodeType&&(b.cleanData(Ot(n,!1)),n.innerHTML=e);n=0}catch(o){}}n&&this.empty().append(e)},null,e,arguments.length)},replaceWith:function(e){var t=b.isFunction(e);return t||"string"==typeof e||(e=b(e).not(this).detach()),this.domManip([e],!0,function(e){var t=this.nextSibling,n=this.parentNode;n&&(b(this).remove(),n.insertBefore(e,t))})},detach:function(e){return this.remove(e,!0)},domManip:function(e,n,r){e=f.apply([],e);var i,o,a,s,u,l,c=0,p=this.length,d=this,h=p-1,g=e[0],m=b.isFunction(g);if(m||!(1>=p||"string"!=typeof g||b.support.checkClone)&&Ct.test(g))return this.each(function(i){var o=d.eq(i);m&&(e[0]=g.call(this,i,n?o.html():t)),o.domManip(e,n,r)});if(p&&(l=b.buildFragment(e,this[0].ownerDocument,!1,this),i=l.firstChild,1===l.childNodes.length&&(l=i),i)){for(n=n&&b.nodeName(i,"tr"),s=b.map(Ot(l,"script"),Ht),a=s.length;p>c;c++)o=l,c!==h&&(o=b.clone(o,!0,!0),a&&b.merge(s,Ot(o,"script"))),r.call(n&&b.nodeName(this[c],"table")?Lt(this[c],"tbody"):this[c],o,c);if(a)for(u=s[s.length-1].ownerDocument,b.map(s,qt),c=0;a>c;c++)o=s[c],kt.test(o.type||"")&&!b._data(o,"globalEval")&&b.contains(u,o)&&(o.src?b.ajax({url:o.src,type:"GET",dataType:"script",async:!1,global:!1,"throws":!0}):b.globalEval((o.text||o.textContent||o.innerHTML||"").replace(St,"")));l=i=null}return this}});function Lt(e,t){return e.getElementsByTagName(t)[0]||e.appendChild(e.ownerDocument.createElement(t))}function Ht(e){var t=e.getAttributeNode("type");return e.type=(t&&t.specified)+"/"+e.type,e}function qt(e){var t=Et.exec(e.type);return t?e.type=t[1]:e.removeAttribute("type"),e}function Mt(e,t){var n,r=0;for(;null!=(n=e[r]);r++)b._data(n,"globalEval",!t||b._data(t[r],"globalEval"))}function _t(e,t){if(1===t.nodeType&&b.hasData(e)){var n,r,i,o=b._data(e),a=b._data(t,o),s=o.events;if(s){delete a.handle,a.events={};for(n in s)for(r=0,i=s[n].length;i>r;r++)b.event.add(t,n,s[n][r])}a.data&&(a.data=b.extend({},a.data))}}function Ft(e,t){var n,r,i;if(1===t.nodeType){if(n=t.nodeName.toLowerCase(),!b.support.noCloneEvent&&t[b.expando]){i=b._data(t);for(r in i.events)b.removeEvent(t,r,i.handle);t.removeAttribute(b.expando)}"script"===n&&t.text!==e.text?(Ht(t).text=e.text,qt(t)):"object"===n?(t.parentNode&&(t.outerHTML=e.outerHTML),b.support.html5Clone&&e.innerHTML&&!b.trim(t.innerHTML)&&(t.innerHTML=e.innerHTML)):"input"===n&&Nt.test(e.type)?(t.defaultChecked=t.checked=e.checked,t.value!==e.value&&(t.value=e.value)):"option"===n?t.defaultSelected=t.selected=e.defaultSelected:("input"===n||"textarea"===n)&&(t.defaultValue=e.defaultValue)}}b.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(e,t){b.fn[e]=function(e){var n,r=0,i=[],o=b(e),a=o.length-1;for(;a>=r;r++)n=r===a?this:this.clone(!0),b(o[r])[t](n),d.apply(i,n.get());return this.pushStack(i)}});function Ot(e,n){var r,o,a=0,s=typeof e.getElementsByTagName!==i?e.getElementsByTagName(n||"*"):typeof e.querySelectorAll!==i?e.querySelectorAll(n||"*"):t;if(!s)for(s=[],r=e.childNodes||e;null!=(o=r[a]);a++)!n||b.nodeName(o,n)?s.push(o):b.merge(s,Ot(o,n));return n===t||n&&b.nodeName(e,n)?b.merge([e],s):s}function Bt(e){Nt.test(e.type)&&(e.defaultChecked=e.checked)}b.extend({clone:function(e,t,n){var r,i,o,a,s,u=b.contains(e.ownerDocument,e);if(b.support.html5Clone||b.isXMLDoc(e)||!mt.test("<"+e.nodeName+">")?o=e.cloneNode(!0):(Dt.innerHTML=e.outerHTML,Dt.removeChild(o=Dt.firstChild)),!(b.support.noCloneEvent&&b.support.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||b.isXMLDoc(e)))for(r=Ot(o),s=Ot(e),a=0;null!=(i=s[a]);++a)r[a]&&Ft(i,r[a]);if(t)if(n)for(s=s||Ot(e),r=r||Ot(o),a=0;null!=(i=s[a]);a++)_t(i,r[a]);else _t(e,o);return r=Ot(o,"script"),r.length>0&&Mt(r,!u&&Ot(e,"script")),r=s=i=null,o},buildFragment:function(e,t,n,r){var i,o,a,s,u,l,c,p=e.length,f=dt(t),d=[],h=0;for(;p>h;h++)if(o=e[h],o||0===o)if("object"===b.type(o))b.merge(d,o.nodeType?[o]:o);else if(wt.test(o)){s=s||f.appendChild(t.createElement("div")),u=(bt.exec(o)||["",""])[1].toLowerCase(),c=At[u]||At._default,s.innerHTML=c[1]+o.replace(vt,"<$1></$2>")+c[2],i=c[0];while(i--)s=s.lastChild;if(!b.support.leadingWhitespace&&yt.test(o)&&d.push(t.createTextNode(yt.exec(o)[0])),!b.support.tbody){o="table"!==u||xt.test(o)?"<table>"!==c[1]||xt.test(o)?0:s:s.firstChild,i=o&&o.childNodes.length;while(i--)b.nodeName(l=o.childNodes[i],"tbody")&&!l.childNodes.length&&o.removeChild(l)
4 }b.merge(d,s.childNodes),s.textContent="";while(s.firstChild)s.removeChild(s.firstChild);s=f.lastChild}else d.push(t.createTextNode(o));s&&f.removeChild(s),b.support.appendChecked||b.grep(Ot(d,"input"),Bt),h=0;while(o=d[h++])if((!r||-1===b.inArray(o,r))&&(a=b.contains(o.ownerDocument,o),s=Ot(f.appendChild(o),"script"),a&&Mt(s),n)){i=0;while(o=s[i++])kt.test(o.type||"")&&n.push(o)}return s=null,f},cleanData:function(e,t){var n,r,o,a,s=0,u=b.expando,l=b.cache,p=b.support.deleteExpando,f=b.event.special;for(;null!=(n=e[s]);s++)if((t||b.acceptData(n))&&(o=n[u],a=o&&l[o])){if(a.events)for(r in a.events)f[r]?b.event.remove(n,r):b.removeEvent(n,r,a.handle);l[o]&&(delete l[o],p?delete n[u]:typeof n.removeAttribute!==i?n.removeAttribute(u):n[u]=null,c.push(o))}}});var Pt,Rt,Wt,$t=/alpha\([^)]*\)/i,It=/opacity\s*=\s*([^)]*)/,zt=/^(top|right|bottom|left)$/,Xt=/^(none|table(?!-c[ea]).+)/,Ut=/^margin/,Vt=RegExp("^("+x+")(.*)$","i"),Yt=RegExp("^("+x+")(?!px)[a-z%]+$","i"),Jt=RegExp("^([+-])=("+x+")","i"),Gt={BODY:"block"},Qt={position:"absolute",visibility:"hidden",display:"block"},Kt={letterSpacing:0,fontWeight:400},Zt=["Top","Right","Bottom","Left"],en=["Webkit","O","Moz","ms"];function tn(e,t){if(t in e)return t;var n=t.charAt(0).toUpperCase()+t.slice(1),r=t,i=en.length;while(i--)if(t=en[i]+n,t in e)return t;return r}function nn(e,t){return e=t||e,"none"===b.css(e,"display")||!b.contains(e.ownerDocument,e)}function rn(e,t){var n,r,i,o=[],a=0,s=e.length;for(;s>a;a++)r=e[a],r.style&&(o[a]=b._data(r,"olddisplay"),n=r.style.display,t?(o[a]||"none"!==n||(r.style.display=""),""===r.style.display&&nn(r)&&(o[a]=b._data(r,"olddisplay",un(r.nodeName)))):o[a]||(i=nn(r),(n&&"none"!==n||!i)&&b._data(r,"olddisplay",i?n:b.css(r,"display"))));for(a=0;s>a;a++)r=e[a],r.style&&(t&&"none"!==r.style.display&&""!==r.style.display||(r.style.display=t?o[a]||"":"none"));return e}b.fn.extend({css:function(e,n){return b.access(this,function(e,n,r){var i,o,a={},s=0;if(b.isArray(n)){for(o=Rt(e),i=n.length;i>s;s++)a[n[s]]=b.css(e,n[s],!1,o);return a}return r!==t?b.style(e,n,r):b.css(e,n)},e,n,arguments.length>1)},show:function(){return rn(this,!0)},hide:function(){return rn(this)},toggle:function(e){var t="boolean"==typeof e;return this.each(function(){(t?e:nn(this))?b(this).show():b(this).hide()})}}),b.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=Wt(e,"opacity");return""===n?"1":n}}}},cssNumber:{columnCount:!0,fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":b.support.cssFloat?"cssFloat":"styleFloat"},style:function(e,n,r,i){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var o,a,s,u=b.camelCase(n),l=e.style;if(n=b.cssProps[u]||(b.cssProps[u]=tn(l,u)),s=b.cssHooks[n]||b.cssHooks[u],r===t)return s&&"get"in s&&(o=s.get(e,!1,i))!==t?o:l[n];if(a=typeof r,"string"===a&&(o=Jt.exec(r))&&(r=(o[1]+1)*o[2]+parseFloat(b.css(e,n)),a="number"),!(null==r||"number"===a&&isNaN(r)||("number"!==a||b.cssNumber[u]||(r+="px"),b.support.clearCloneStyle||""!==r||0!==n.indexOf("background")||(l[n]="inherit"),s&&"set"in s&&(r=s.set(e,r,i))===t)))try{l[n]=r}catch(c){}}},css:function(e,n,r,i){var o,a,s,u=b.camelCase(n);return n=b.cssProps[u]||(b.cssProps[u]=tn(e.style,u)),s=b.cssHooks[n]||b.cssHooks[u],s&&"get"in s&&(a=s.get(e,!0,r)),a===t&&(a=Wt(e,n,i)),"normal"===a&&n in Kt&&(a=Kt[n]),""===r||r?(o=parseFloat(a),r===!0||b.isNumeric(o)?o||0:a):a},swap:function(e,t,n,r){var i,o,a={};for(o in t)a[o]=e.style[o],e.style[o]=t[o];i=n.apply(e,r||[]);for(o in t)e.style[o]=a[o];return i}}),e.getComputedStyle?(Rt=function(t){return e.getComputedStyle(t,null)},Wt=function(e,n,r){var i,o,a,s=r||Rt(e),u=s?s.getPropertyValue(n)||s[n]:t,l=e.style;return s&&(""!==u||b.contains(e.ownerDocument,e)||(u=b.style(e,n)),Yt.test(u)&&Ut.test(n)&&(i=l.width,o=l.minWidth,a=l.maxWidth,l.minWidth=l.maxWidth=l.width=u,u=s.width,l.width=i,l.minWidth=o,l.maxWidth=a)),u}):o.documentElement.currentStyle&&(Rt=function(e){return e.currentStyle},Wt=function(e,n,r){var i,o,a,s=r||Rt(e),u=s?s[n]:t,l=e.style;return null==u&&l&&l[n]&&(u=l[n]),Yt.test(u)&&!zt.test(n)&&(i=l.left,o=e.runtimeStyle,a=o&&o.left,a&&(o.left=e.currentStyle.left),l.left="fontSize"===n?"1em":u,u=l.pixelLeft+"px",l.left=i,a&&(o.left=a)),""===u?"auto":u});function on(e,t,n){var r=Vt.exec(t);return r?Math.max(0,r[1]-(n||0))+(r[2]||"px"):t}function an(e,t,n,r,i){var o=n===(r?"border":"content")?4:"width"===t?1:0,a=0;for(;4>o;o+=2)"margin"===n&&(a+=b.css(e,n+Zt[o],!0,i)),r?("content"===n&&(a-=b.css(e,"padding"+Zt[o],!0,i)),"margin"!==n&&(a-=b.css(e,"border"+Zt[o]+"Width",!0,i))):(a+=b.css(e,"padding"+Zt[o],!0,i),"padding"!==n&&(a+=b.css(e,"border"+Zt[o]+"Width",!0,i)));return a}function sn(e,t,n){var r=!0,i="width"===t?e.offsetWidth:e.offsetHeight,o=Rt(e),a=b.support.boxSizing&&"border-box"===b.css(e,"boxSizing",!1,o);if(0>=i||null==i){if(i=Wt(e,t,o),(0>i||null==i)&&(i=e.style[t]),Yt.test(i))return i;r=a&&(b.support.boxSizingReliable||i===e.style[t]),i=parseFloat(i)||0}return i+an(e,t,n||(a?"border":"content"),r,o)+"px"}function un(e){var t=o,n=Gt[e];return n||(n=ln(e,t),"none"!==n&&n||(Pt=(Pt||b("<iframe frameborder='0' width='0' height='0'/>").css("cssText","display:block !important")).appendTo(t.documentElement),t=(Pt[0].contentWindow||Pt[0].contentDocument).document,t.write("<!doctype html><html><body>"),t.close(),n=ln(e,t),Pt.detach()),Gt[e]=n),n}function ln(e,t){var n=b(t.createElement(e)).appendTo(t.body),r=b.css(n[0],"display");return n.remove(),r}b.each(["height","width"],function(e,n){b.cssHooks[n]={get:function(e,r,i){return r?0===e.offsetWidth&&Xt.test(b.css(e,"display"))?b.swap(e,Qt,function(){return sn(e,n,i)}):sn(e,n,i):t},set:function(e,t,r){var i=r&&Rt(e);return on(e,t,r?an(e,n,r,b.support.boxSizing&&"border-box"===b.css(e,"boxSizing",!1,i),i):0)}}}),b.support.opacity||(b.cssHooks.opacity={get:function(e,t){return It.test((t&&e.currentStyle?e.currentStyle.filter:e.style.filter)||"")?.01*parseFloat(RegExp.$1)+"":t?"1":""},set:function(e,t){var n=e.style,r=e.currentStyle,i=b.isNumeric(t)?"alpha(opacity="+100*t+")":"",o=r&&r.filter||n.filter||"";n.zoom=1,(t>=1||""===t)&&""===b.trim(o.replace($t,""))&&n.removeAttribute&&(n.removeAttribute("filter"),""===t||r&&!r.filter)||(n.filter=$t.test(o)?o.replace($t,i):o+" "+i)}}),b(function(){b.support.reliableMarginRight||(b.cssHooks.marginRight={get:function(e,n){return n?b.swap(e,{display:"inline-block"},Wt,[e,"marginRight"]):t}}),!b.support.pixelPosition&&b.fn.position&&b.each(["top","left"],function(e,n){b.cssHooks[n]={get:function(e,r){return r?(r=Wt(e,n),Yt.test(r)?b(e).position()[n]+"px":r):t}}})}),b.expr&&b.expr.filters&&(b.expr.filters.hidden=function(e){return 0>=e.offsetWidth&&0>=e.offsetHeight||!b.support.reliableHiddenOffsets&&"none"===(e.style&&e.style.display||b.css(e,"display"))},b.expr.filters.visible=function(e){return!b.expr.filters.hidden(e)}),b.each({margin:"",padding:"",border:"Width"},function(e,t){b.cssHooks[e+t]={expand:function(n){var r=0,i={},o="string"==typeof n?n.split(" "):[n];for(;4>r;r++)i[e+Zt[r]+t]=o[r]||o[r-2]||o[0];return i}},Ut.test(e)||(b.cssHooks[e+t].set=on)});var cn=/%20/g,pn=/\[\]$/,fn=/\r?\n/g,dn=/^(?:submit|button|image|reset|file)$/i,hn=/^(?:input|select|textarea|keygen)/i;b.fn.extend({serialize:function(){return b.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var e=b.prop(this,"elements");return e?b.makeArray(e):this}).filter(function(){var e=this.type;return this.name&&!b(this).is(":disabled")&&hn.test(this.nodeName)&&!dn.test(e)&&(this.checked||!Nt.test(e))}).map(function(e,t){var n=b(this).val();return null==n?null:b.isArray(n)?b.map(n,function(e){return{name:t.name,value:e.replace(fn,"\r\n")}}):{name:t.name,value:n.replace(fn,"\r\n")}}).get()}}),b.param=function(e,n){var r,i=[],o=function(e,t){t=b.isFunction(t)?t():null==t?"":t,i[i.length]=encodeURIComponent(e)+"="+encodeURIComponent(t)};if(n===t&&(n=b.ajaxSettings&&b.ajaxSettings.traditional),b.isArray(e)||e.jquery&&!b.isPlainObject(e))b.each(e,function(){o(this.name,this.value)});else for(r in e)gn(r,e[r],n,o);return i.join("&").replace(cn,"+")};function gn(e,t,n,r){var i;if(b.isArray(t))b.each(t,function(t,i){n||pn.test(e)?r(e,i):gn(e+"["+("object"==typeof i?t:"")+"]",i,n,r)});else if(n||"object"!==b.type(t))r(e,t);else for(i in t)gn(e+"["+i+"]",t[i],n,r)}b.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(e,t){b.fn[t]=function(e,n){return arguments.length>0?this.on(t,null,e,n):this.trigger(t)}}),b.fn.hover=function(e,t){return this.mouseenter(e).mouseleave(t||e)};var mn,yn,vn=b.now(),bn=/\?/,xn=/#.*$/,wn=/([?&])_=[^&]*/,Tn=/^(.*?):[ \t]*([^\r\n]*)\r?$/gm,Nn=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,Cn=/^(?:GET|HEAD)$/,kn=/^\/\//,En=/^([\w.+-]+:)(?:\/\/([^\/?#:]*)(?::(\d+)|)|)/,Sn=b.fn.load,An={},jn={},Dn="*/".concat("*");try{yn=a.href}catch(Ln){yn=o.createElement("a"),yn.href="",yn=yn.href}mn=En.exec(yn.toLowerCase())||[];function Hn(e){return function(t,n){"string"!=typeof t&&(n=t,t="*");var r,i=0,o=t.toLowerCase().match(w)||[];if(b.isFunction(n))while(r=o[i++])"+"===r[0]?(r=r.slice(1)||"*",(e[r]=e[r]||[]).unshift(n)):(e[r]=e[r]||[]).push(n)}}function qn(e,n,r,i){var o={},a=e===jn;function s(u){var l;return o[u]=!0,b.each(e[u]||[],function(e,u){var c=u(n,r,i);return"string"!=typeof c||a||o[c]?a?!(l=c):t:(n.dataTypes.unshift(c),s(c),!1)}),l}return s(n.dataTypes[0])||!o["*"]&&s("*")}function Mn(e,n){var r,i,o=b.ajaxSettings.flatOptions||{};for(i in n)n[i]!==t&&((o[i]?e:r||(r={}))[i]=n[i]);return r&&b.extend(!0,e,r),e}b.fn.load=function(e,n,r){if("string"!=typeof e&&Sn)return Sn.apply(this,arguments);var i,o,a,s=this,u=e.indexOf(" ");return u>=0&&(i=e.slice(u,e.length),e=e.slice(0,u)),b.isFunction(n)?(r=n,n=t):n&&"object"==typeof n&&(a="POST"),s.length>0&&b.ajax({url:e,type:a,dataType:"html",data:n}).done(function(e){o=arguments,s.html(i?b("<div>").append(b.parseHTML(e)).find(i):e)}).complete(r&&function(e,t){s.each(r,o||[e.responseText,t,e])}),this},b.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){b.fn[t]=function(e){return this.on(t,e)}}),b.each(["get","post"],function(e,n){b[n]=function(e,r,i,o){return b.isFunction(r)&&(o=o||i,i=r,r=t),b.ajax({url:e,type:n,dataType:o,data:r,success:i})}}),b.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:yn,type:"GET",isLocal:Nn.test(mn[1]),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Dn,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":e.String,"text html":!0,"text json":b.parseJSON,"text xml":b.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?Mn(Mn(e,b.ajaxSettings),t):Mn(b.ajaxSettings,e)},ajaxPrefilter:Hn(An),ajaxTransport:Hn(jn),ajax:function(e,n){"object"==typeof e&&(n=e,e=t),n=n||{};var r,i,o,a,s,u,l,c,p=b.ajaxSetup({},n),f=p.context||p,d=p.context&&(f.nodeType||f.jquery)?b(f):b.event,h=b.Deferred(),g=b.Callbacks("once memory"),m=p.statusCode||{},y={},v={},x=0,T="canceled",N={readyState:0,getResponseHeader:function(e){var t;if(2===x){if(!c){c={};while(t=Tn.exec(a))c[t[1].toLowerCase()]=t[2]}t=c[e.toLowerCase()]}return null==t?null:t},getAllResponseHeaders:function(){return 2===x?a:null},setRequestHeader:function(e,t){var n=e.toLowerCase();return x||(e=v[n]=v[n]||e,y[e]=t),this},overrideMimeType:function(e){return x||(p.mimeType=e),this},statusCode:function(e){var t;if(e)if(2>x)for(t in e)m[t]=[m[t],e[t]];else N.always(e[N.status]);return this},abort:function(e){var t=e||T;return l&&l.abort(t),k(0,t),this}};if(h.promise(N).complete=g.add,N.success=N.done,N.error=N.fail,p.url=((e||p.url||yn)+"").replace(xn,"").replace(kn,mn[1]+"//"),p.type=n.method||n.type||p.method||p.type,p.dataTypes=b.trim(p.dataType||"*").toLowerCase().match(w)||[""],null==p.crossDomain&&(r=En.exec(p.url.toLowerCase()),p.crossDomain=!(!r||r[1]===mn[1]&&r[2]===mn[2]&&(r[3]||("http:"===r[1]?80:443))==(mn[3]||("http:"===mn[1]?80:443)))),p.data&&p.processData&&"string"!=typeof p.data&&(p.data=b.param(p.data,p.traditional)),qn(An,p,n,N),2===x)return N;u=p.global,u&&0===b.active++&&b.event.trigger("ajaxStart"),p.type=p.type.toUpperCase(),p.hasContent=!Cn.test(p.type),o=p.url,p.hasContent||(p.data&&(o=p.url+=(bn.test(o)?"&":"?")+p.data,delete p.data),p.cache===!1&&(p.url=wn.test(o)?o.replace(wn,"$1_="+vn++):o+(bn.test(o)?"&":"?")+"_="+vn++)),p.ifModified&&(b.lastModified[o]&&N.setRequestHeader("If-Modified-Since",b.lastModified[o]),b.etag[o]&&N.setRequestHeader("If-None-Match",b.etag[o])),(p.data&&p.hasContent&&p.contentType!==!1||n.contentType)&&N.setRequestHeader("Content-Type",p.contentType),N.setRequestHeader("Accept",p.dataTypes[0]&&p.accepts[p.dataTypes[0]]?p.accepts[p.dataTypes[0]]+("*"!==p.dataTypes[0]?", "+Dn+"; q=0.01":""):p.accepts["*"]);for(i in p.headers)N.setRequestHeader(i,p.headers[i]);if(p.beforeSend&&(p.beforeSend.call(f,N,p)===!1||2===x))return N.abort();T="abort";for(i in{success:1,error:1,complete:1})N[i](p[i]);if(l=qn(jn,p,n,N)){N.readyState=1,u&&d.trigger("ajaxSend",[N,p]),p.async&&p.timeout>0&&(s=setTimeout(function(){N.abort("timeout")},p.timeout));try{x=1,l.send(y,k)}catch(C){if(!(2>x))throw C;k(-1,C)}}else k(-1,"No Transport");function k(e,n,r,i){var c,y,v,w,T,C=n;2!==x&&(x=2,s&&clearTimeout(s),l=t,a=i||"",N.readyState=e>0?4:0,r&&(w=_n(p,N,r)),e>=200&&300>e||304===e?(p.ifModified&&(T=N.getResponseHeader("Last-Modified"),T&&(b.lastModified[o]=T),T=N.getResponseHeader("etag"),T&&(b.etag[o]=T)),204===e?(c=!0,C="nocontent"):304===e?(c=!0,C="notmodified"):(c=Fn(p,w),C=c.state,y=c.data,v=c.error,c=!v)):(v=C,(e||!C)&&(C="error",0>e&&(e=0))),N.status=e,N.statusText=(n||C)+"",c?h.resolveWith(f,[y,C,N]):h.rejectWith(f,[N,C,v]),N.statusCode(m),m=t,u&&d.trigger(c?"ajaxSuccess":"ajaxError",[N,p,c?y:v]),g.fireWith(f,[N,C]),u&&(d.trigger("ajaxComplete",[N,p]),--b.active||b.event.trigger("ajaxStop")))}return N},getScript:function(e,n){return b.get(e,t,n,"script")},getJSON:function(e,t,n){return b.get(e,t,n,"json")}});function _n(e,n,r){var i,o,a,s,u=e.contents,l=e.dataTypes,c=e.responseFields;for(s in c)s in r&&(n[c[s]]=r[s]);while("*"===l[0])l.shift(),o===t&&(o=e.mimeType||n.getResponseHeader("Content-Type"));if(o)for(s in u)if(u[s]&&u[s].test(o)){l.unshift(s);break}if(l[0]in r)a=l[0];else{for(s in r){if(!l[0]||e.converters[s+" "+l[0]]){a=s;break}i||(i=s)}a=a||i}return a?(a!==l[0]&&l.unshift(a),r[a]):t}function Fn(e,t){var n,r,i,o,a={},s=0,u=e.dataTypes.slice(),l=u[0];if(e.dataFilter&&(t=e.dataFilter(t,e.dataType)),u[1])for(i in e.converters)a[i.toLowerCase()]=e.converters[i];for(;r=u[++s];)if("*"!==r){if("*"!==l&&l!==r){if(i=a[l+" "+r]||a["* "+r],!i)for(n in a)if(o=n.split(" "),o[1]===r&&(i=a[l+" "+o[0]]||a["* "+o[0]])){i===!0?i=a[n]:a[n]!==!0&&(r=o[0],u.splice(s--,0,r));break}if(i!==!0)if(i&&e["throws"])t=i(t);else try{t=i(t)}catch(c){return{state:"parsererror",error:i?c:"No conversion from "+l+" to "+r}}}l=r}return{state:"success",data:t}}b.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/(?:java|ecma)script/},converters:{"text script":function(e){return b.globalEval(e),e}}}),b.ajaxPrefilter("script",function(e){e.cache===t&&(e.cache=!1),e.crossDomain&&(e.type="GET",e.global=!1)}),b.ajaxTransport("script",function(e){if(e.crossDomain){var n,r=o.head||b("head")[0]||o.documentElement;return{send:function(t,i){n=o.createElement("script"),n.async=!0,e.scriptCharset&&(n.charset=e.scriptCharset),n.src=e.url,n.onload=n.onreadystatechange=function(e,t){(t||!n.readyState||/loaded|complete/.test(n.readyState))&&(n.onload=n.onreadystatechange=null,n.parentNode&&n.parentNode.removeChild(n),n=null,t||i(200,"success"))},r.insertBefore(n,r.firstChild)},abort:function(){n&&n.onload(t,!0)}}}});var On=[],Bn=/(=)\?(?=&|$)|\?\?/;b.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=On.pop()||b.expando+"_"+vn++;return this[e]=!0,e}}),b.ajaxPrefilter("json jsonp",function(n,r,i){var o,a,s,u=n.jsonp!==!1&&(Bn.test(n.url)?"url":"string"==typeof n.data&&!(n.contentType||"").indexOf("application/x-www-form-urlencoded")&&Bn.test(n.data)&&"data");return u||"jsonp"===n.dataTypes[0]?(o=n.jsonpCallback=b.isFunction(n.jsonpCallback)?n.jsonpCallback():n.jsonpCallback,u?n[u]=n[u].replace(Bn,"$1"+o):n.jsonp!==!1&&(n.url+=(bn.test(n.url)?"&":"?")+n.jsonp+"="+o),n.converters["script json"]=function(){return s||b.error(o+" was not called"),s[0]},n.dataTypes[0]="json",a=e[o],e[o]=function(){s=arguments},i.always(function(){e[o]=a,n[o]&&(n.jsonpCallback=r.jsonpCallback,On.push(o)),s&&b.isFunction(a)&&a(s[0]),s=a=t}),"script"):t});var Pn,Rn,Wn=0,$n=e.ActiveXObject&&function(){var e;for(e in Pn)Pn[e](t,!0)};function In(){try{return new e.XMLHttpRequest}catch(t){}}function zn(){try{return new e.ActiveXObject("Microsoft.XMLHTTP")}catch(t){}}b.ajaxSettings.xhr=e.ActiveXObject?function(){return!this.isLocal&&In()||zn()}:In,Rn=b.ajaxSettings.xhr(),b.support.cors=!!Rn&&"withCredentials"in Rn,Rn=b.support.ajax=!!Rn,Rn&&b.ajaxTransport(function(n){if(!n.crossDomain||b.support.cors){var r;return{send:function(i,o){var a,s,u=n.xhr();if(n.username?u.open(n.type,n.url,n.async,n.username,n.password):u.open(n.type,n.url,n.async),n.xhrFields)for(s in n.xhrFields)u[s]=n.xhrFields[s];n.mimeType&&u.overrideMimeType&&u.overrideMimeType(n.mimeType),n.crossDomain||i["X-Requested-With"]||(i["X-Requested-With"]="XMLHttpRequest");try{for(s in i)u.setRequestHeader(s,i[s])}catch(l){}u.send(n.hasContent&&n.data||null),r=function(e,i){var s,l,c,p;try{if(r&&(i||4===u.readyState))if(r=t,a&&(u.onreadystatechange=b.noop,$n&&delete Pn[a]),i)4!==u.readyState&&u.abort();else{p={},s=u.status,l=u.getAllResponseHeaders(),"string"==typeof u.responseText&&(p.text=u.responseText);try{c=u.statusText}catch(f){c=""}s||!n.isLocal||n.crossDomain?1223===s&&(s=204):s=p.text?200:404}}catch(d){i||o(-1,d)}p&&o(s,c,p,l)},n.async?4===u.readyState?setTimeout(r):(a=++Wn,$n&&(Pn||(Pn={},b(e).unload($n)),Pn[a]=r),u.onreadystatechange=r):r()},abort:function(){r&&r(t,!0)}}}});var Xn,Un,Vn=/^(?:toggle|show|hide)$/,Yn=RegExp("^(?:([+-])=|)("+x+")([a-z%]*)$","i"),Jn=/queueHooks$/,Gn=[nr],Qn={"*":[function(e,t){var n,r,i=this.createTween(e,t),o=Yn.exec(t),a=i.cur(),s=+a||0,u=1,l=20;if(o){if(n=+o[2],r=o[3]||(b.cssNumber[e]?"":"px"),"px"!==r&&s){s=b.css(i.elem,e,!0)||n||1;do u=u||".5",s/=u,b.style(i.elem,e,s+r);while(u!==(u=i.cur()/a)&&1!==u&&--l)}i.unit=r,i.start=s,i.end=o[1]?s+(o[1]+1)*n:n}return i}]};function Kn(){return setTimeout(function(){Xn=t}),Xn=b.now()}function Zn(e,t){b.each(t,function(t,n){var r=(Qn[t]||[]).concat(Qn["*"]),i=0,o=r.length;for(;o>i;i++)if(r[i].call(e,t,n))return})}function er(e,t,n){var r,i,o=0,a=Gn.length,s=b.Deferred().always(function(){delete u.elem}),u=function(){if(i)return!1;var t=Xn||Kn(),n=Math.max(0,l.startTime+l.duration-t),r=n/l.duration||0,o=1-r,a=0,u=l.tweens.length;for(;u>a;a++)l.tweens[a].run(o);return s.notifyWith(e,[l,o,n]),1>o&&u?n:(s.resolveWith(e,[l]),!1)},l=s.promise({elem:e,props:b.extend({},t),opts:b.extend(!0,{specialEasing:{}},n),originalProperties:t,originalOptions:n,startTime:Xn||Kn(),duration:n.duration,tweens:[],createTween:function(t,n){var r=b.Tween(e,l.opts,t,n,l.opts.specialEasing[t]||l.opts.easing);return l.tweens.push(r),r},stop:function(t){var n=0,r=t?l.tweens.length:0;if(i)return this;for(i=!0;r>n;n++)l.tweens[n].run(1);return t?s.resolveWith(e,[l,t]):s.rejectWith(e,[l,t]),this}}),c=l.props;for(tr(c,l.opts.specialEasing);a>o;o++)if(r=Gn[o].call(l,e,c,l.opts))return r;return Zn(l,c),b.isFunction(l.opts.start)&&l.opts.start.call(e,l),b.fx.timer(b.extend(u,{elem:e,anim:l,queue:l.opts.queue})),l.progress(l.opts.progress).done(l.opts.done,l.opts.complete).fail(l.opts.fail).always(l.opts.always)}function tr(e,t){var n,r,i,o,a;for(i in e)if(r=b.camelCase(i),o=t[r],n=e[i],b.isArray(n)&&(o=n[1],n=e[i]=n[0]),i!==r&&(e[r]=n,delete e[i]),a=b.cssHooks[r],a&&"expand"in a){n=a.expand(n),delete e[r];for(i in n)i in e||(e[i]=n[i],t[i]=o)}else t[r]=o}b.Animation=b.extend(er,{tweener:function(e,t){b.isFunction(e)?(t=e,e=["*"]):e=e.split(" ");var n,r=0,i=e.length;for(;i>r;r++)n=e[r],Qn[n]=Qn[n]||[],Qn[n].unshift(t)},prefilter:function(e,t){t?Gn.unshift(e):Gn.push(e)}});function nr(e,t,n){var r,i,o,a,s,u,l,c,p,f=this,d=e.style,h={},g=[],m=e.nodeType&&nn(e);n.queue||(c=b._queueHooks(e,"fx"),null==c.unqueued&&(c.unqueued=0,p=c.empty.fire,c.empty.fire=function(){c.unqueued||p()}),c.unqueued++,f.always(function(){f.always(function(){c.unqueued--,b.queue(e,"fx").length||c.empty.fire()})})),1===e.nodeType&&("height"in t||"width"in t)&&(n.overflow=[d.overflow,d.overflowX,d.overflowY],"inline"===b.css(e,"display")&&"none"===b.css(e,"float")&&(b.support.inlineBlockNeedsLayout&&"inline"!==un(e.nodeName)?d.zoom=1:d.display="inline-block")),n.overflow&&(d.overflow="hidden",b.support.shrinkWrapBlocks||f.always(function(){d.overflow=n.overflow[0],d.overflowX=n.overflow[1],d.overflowY=n.overflow[2]}));for(i in t)if(a=t[i],Vn.exec(a)){if(delete t[i],u=u||"toggle"===a,a===(m?"hide":"show"))continue;g.push(i)}if(o=g.length){s=b._data(e,"fxshow")||b._data(e,"fxshow",{}),"hidden"in s&&(m=s.hidden),u&&(s.hidden=!m),m?b(e).show():f.done(function(){b(e).hide()}),f.done(function(){var t;b._removeData(e,"fxshow");for(t in h)b.style(e,t,h[t])});for(i=0;o>i;i++)r=g[i],l=f.createTween(r,m?s[r]:0),h[r]=s[r]||b.style(e,r),r in s||(s[r]=l.start,m&&(l.end=l.start,l.start="width"===r||"height"===r?1:0))}}function rr(e,t,n,r,i){return new rr.prototype.init(e,t,n,r,i)}b.Tween=rr,rr.prototype={constructor:rr,init:function(e,t,n,r,i,o){this.elem=e,this.prop=n,this.easing=i||"swing",this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=o||(b.cssNumber[n]?"":"px")},cur:function(){var e=rr.propHooks[this.prop];return e&&e.get?e.get(this):rr.propHooks._default.get(this)},run:function(e){var t,n=rr.propHooks[this.prop];return this.pos=t=this.options.duration?b.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):rr.propHooks._default.set(this),this}},rr.prototype.init.prototype=rr.prototype,rr.propHooks={_default:{get:function(e){var t;return null==e.elem[e.prop]||e.elem.style&&null!=e.elem.style[e.prop]?(t=b.css(e.elem,e.prop,""),t&&"auto"!==t?t:0):e.elem[e.prop]},set:function(e){b.fx.step[e.prop]?b.fx.step[e.prop](e):e.elem.style&&(null!=e.elem.style[b.cssProps[e.prop]]||b.cssHooks[e.prop])?b.style(e.elem,e.prop,e.now+e.unit):e.elem[e.prop]=e.now}}},rr.propHooks.scrollTop=rr.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},b.each(["toggle","show","hide"],function(e,t){var n=b.fn[t];b.fn[t]=function(e,r,i){return null==e||"boolean"==typeof e?n.apply(this,arguments):this.animate(ir(t,!0),e,r,i)}}),b.fn.extend({fadeTo:function(e,t,n,r){return this.filter(nn).css("opacity",0).show().end().animate({opacity:t},e,n,r)},animate:function(e,t,n,r){var i=b.isEmptyObject(e),o=b.speed(t,n,r),a=function(){var t=er(this,b.extend({},e),o);a.finish=function(){t.stop(!0)},(i||b._data(this,"finish"))&&t.stop(!0)};return a.finish=a,i||o.queue===!1?this.each(a):this.queue(o.queue,a)},stop:function(e,n,r){var i=function(e){var t=e.stop;delete e.stop,t(r)};return"string"!=typeof e&&(r=n,n=e,e=t),n&&e!==!1&&this.queue(e||"fx",[]),this.each(function(){var t=!0,n=null!=e&&e+"queueHooks",o=b.timers,a=b._data(this);if(n)a[n]&&a[n].stop&&i(a[n]);else for(n in a)a[n]&&a[n].stop&&Jn.test(n)&&i(a[n]);for(n=o.length;n--;)o[n].elem!==this||null!=e&&o[n].queue!==e||(o[n].anim.stop(r),t=!1,o.splice(n,1));(t||!r)&&b.dequeue(this,e)})},finish:function(e){return e!==!1&&(e=e||"fx"),this.each(function(){var t,n=b._data(this),r=n[e+"queue"],i=n[e+"queueHooks"],o=b.timers,a=r?r.length:0;for(n.finish=!0,b.queue(this,e,[]),i&&i.cur&&i.cur.finish&&i.cur.finish.call(this),t=o.length;t--;)o[t].elem===this&&o[t].queue===e&&(o[t].anim.stop(!0),o.splice(t,1));for(t=0;a>t;t++)r[t]&&r[t].finish&&r[t].finish.call(this);delete n.finish})}});function ir(e,t){var n,r={height:e},i=0;for(t=t?1:0;4>i;i+=2-t)n=Zt[i],r["margin"+n]=r["padding"+n]=e;return t&&(r.opacity=r.width=e),r}b.each({slideDown:ir("show"),slideUp:ir("hide"),slideToggle:ir("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(e,t){b.fn[e]=function(e,n,r){return this.animate(t,e,n,r)}}),b.speed=function(e,t,n){var r=e&&"object"==typeof e?b.extend({},e):{complete:n||!n&&t||b.isFunction(e)&&e,duration:e,easing:n&&t||t&&!b.isFunction(t)&&t};return r.duration=b.fx.off?0:"number"==typeof r.duration?r.duration:r.duration in b.fx.speeds?b.fx.speeds[r.duration]:b.fx.speeds._default,(null==r.queue||r.queue===!0)&&(r.queue="fx"),r.old=r.complete,r.complete=function(){b.isFunction(r.old)&&r.old.call(this),r.queue&&b.dequeue(this,r.queue)},r},b.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2}},b.timers=[],b.fx=rr.prototype.init,b.fx.tick=function(){var e,n=b.timers,r=0;for(Xn=b.now();n.length>r;r++)e=n[r],e()||n[r]!==e||n.splice(r--,1);n.length||b.fx.stop(),Xn=t},b.fx.timer=function(e){e()&&b.timers.push(e)&&b.fx.start()},b.fx.interval=13,b.fx.start=function(){Un||(Un=setInterval(b.fx.tick,b.fx.interval))},b.fx.stop=function(){clearInterval(Un),Un=null},b.fx.speeds={slow:600,fast:200,_default:400},b.fx.step={},b.expr&&b.expr.filters&&(b.expr.filters.animated=function(e){return b.grep(b.timers,function(t){return e===t.elem}).length}),b.fn.offset=function(e){if(arguments.length)return e===t?this:this.each(function(t){b.offset.setOffset(this,e,t)});var n,r,o={top:0,left:0},a=this[0],s=a&&a.ownerDocument;if(s)return n=s.documentElement,b.contains(n,a)?(typeof a.getBoundingClientRect!==i&&(o=a.getBoundingClientRect()),r=or(s),{top:o.top+(r.pageYOffset||n.scrollTop)-(n.clientTop||0),left:o.left+(r.pageXOffset||n.scrollLeft)-(n.clientLeft||0)}):o},b.offset={setOffset:function(e,t,n){var r=b.css(e,"position");"static"===r&&(e.style.position="relative");var i=b(e),o=i.offset(),a=b.css(e,"top"),s=b.css(e,"left"),u=("absolute"===r||"fixed"===r)&&b.inArray("auto",[a,s])>-1,l={},c={},p,f;u?(c=i.position(),p=c.top,f=c.left):(p=parseFloat(a)||0,f=parseFloat(s)||0),b.isFunction(t)&&(t=t.call(e,n,o)),null!=t.top&&(l.top=t.top-o.top+p),null!=t.left&&(l.left=t.left-o.left+f),"using"in t?t.using.call(e,l):i.css(l)}},b.fn.extend({position:function(){if(this[0]){var e,t,n={top:0,left:0},r=this[0];return"fixed"===b.css(r,"position")?t=r.getBoundingClientRect():(e=this.offsetParent(),t=this.offset(),b.nodeName(e[0],"html")||(n=e.offset()),n.top+=b.css(e[0],"borderTopWidth",!0),n.left+=b.css(e[0],"borderLeftWidth",!0)),{top:t.top-n.top-b.css(r,"marginTop",!0),left:t.left-n.left-b.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent||o.documentElement;while(e&&!b.nodeName(e,"html")&&"static"===b.css(e,"position"))e=e.offsetParent;return e||o.documentElement})}}),b.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(e,n){var r=/Y/.test(n);b.fn[e]=function(i){return b.access(this,function(e,i,o){var a=or(e);return o===t?a?n in a?a[n]:a.document.documentElement[i]:e[i]:(a?a.scrollTo(r?b(a).scrollLeft():o,r?o:b(a).scrollTop()):e[i]=o,t)},e,i,arguments.length,null)}});function or(e){return b.isWindow(e)?e:9===e.nodeType?e.defaultView||e.parentWindow:!1}b.each({Height:"height",Width:"width"},function(e,n){b.each({padding:"inner"+e,content:n,"":"outer"+e},function(r,i){b.fn[i]=function(i,o){var a=arguments.length&&(r||"boolean"!=typeof i),s=r||(i===!0||o===!0?"margin":"border");return b.access(this,function(n,r,i){var o;return b.isWindow(n)?n.document.documentElement["client"+e]:9===n.nodeType?(o=n.documentElement,Math.max(n.body["scroll"+e],o["scroll"+e],n.body["offset"+e],o["offset"+e],o["client"+e])):i===t?b.css(n,r,s):b.style(n,r,i,s)},n,a?i:t,a,null)}})}),e.jQuery=e.$=b,"function"==typeof define&&define.amd&&define.amd.jQuery&&define("jquery",[],function(){return b})})(window);
0 package tests
1
2 import "github.com/revel/revel"
3
4 type AppTest struct {
5 revel.TestSuite
6 }
7
8 func (t *AppTest) Before() {
9 println("Set up")
10 }
11
12 func (t AppTest) TestThatIndexPageWorks() {
13 t.Get("/")
14 t.AssertOk()
15 t.AssertContentType("text/html; charset=utf-8")
16 }
17
18 func (t *AppTest) After() {
19 println("Tear down")
20 }