mollie-bank 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (30) hide show
  1. data/.gitignore +4 -0
  2. data/CHANGELOG.md +4 -0
  3. data/Gemfile +4 -0
  4. data/LICENSE.md +20 -0
  5. data/README.md +52 -0
  6. data/Rakefile +1 -0
  7. data/bin/mollie-bank +18 -0
  8. data/lib/mollie-bank.rb +12 -0
  9. data/lib/mollie-bank/application/app.rb +150 -0
  10. data/lib/mollie-bank/application/bootstrap/css/bootstrap.css +3363 -0
  11. data/lib/mollie-bank/application/bootstrap/css/bootstrap.min.css +610 -0
  12. data/lib/mollie-bank/application/bootstrap/css/bootstrap.min.responsive +3 -0
  13. data/lib/mollie-bank/application/bootstrap/css/bootstrap.responsive +567 -0
  14. data/lib/mollie-bank/application/bootstrap/img/glyphicons-halflings-white.png +0 -0
  15. data/lib/mollie-bank/application/bootstrap/img/glyphicons-halflings.png +0 -0
  16. data/lib/mollie-bank/application/bootstrap/js/bootstrap.js +1722 -0
  17. data/lib/mollie-bank/application/bootstrap/js/bootstrap.min.js +1 -0
  18. data/lib/mollie-bank/application/css/style.css +4 -0
  19. data/lib/mollie-bank/application/javascript/script.js +11 -0
  20. data/lib/mollie-bank/application/views/bank_page.haml +31 -0
  21. data/lib/mollie-bank/application/views/banklist.haml +6 -0
  22. data/lib/mollie-bank/application/views/check.haml +16 -0
  23. data/lib/mollie-bank/application/views/error.haml +5 -0
  24. data/lib/mollie-bank/application/views/fetch.haml +8 -0
  25. data/lib/mollie-bank/application/views/html_error.haml +6 -0
  26. data/lib/mollie-bank/application/views/info.haml +16 -0
  27. data/lib/mollie-bank/application/views/layout.haml +29 -0
  28. data/lib/mollie-bank/version.rb +3 -0
  29. data/mollie-bank.gemspec +30 -0
  30. metadata +149 -0
data/.gitignore ADDED
@@ -0,0 +1,4 @@
1
+ *.gem
2
+ .bundle
3
+ Gemfile.lock
4
+ pkg/*
data/CHANGELOG.md ADDED
@@ -0,0 +1,4 @@
1
+ # Changelog
2
+
3
+ - **16 February 2012**: version 0.0.1
4
+ - Initial release
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source "http://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in mollie-bank.gemspec
4
+ gemspec
data/LICENSE.md ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2012 Manuel van Rijn, http://manuel.manuelles.nl/
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,52 @@
1
+ # Mollie-Bank
2
+
3
+ A simple implementation of the "TM Bank" by [Mollie](http://www.mollie.nl), but without the portforward stuff to test your iDeal transactions localy.
4
+
5
+ ## Getting started
6
+
7
+ ### Install
8
+
9
+ To install the gem you should execute
10
+
11
+ ```
12
+ gem install mollie-bank
13
+ ```
14
+
15
+ Or if you are implementing this into a Rails project you could add the gem into your `Gemfile`.
16
+
17
+ ```
18
+ gem 'mollie-bank'
19
+ ```
20
+
21
+ Finally, if you don’t dig any of that gemming that’s so popular nowadays, you can install it as a plugin for you Rails project:
22
+
23
+ ```
24
+ cd vendor/plugins
25
+ git clone --depth 1 git://github.com/manuelvanrijn/mollie-bank.git mollie-bank
26
+ ```
27
+
28
+ ### Running the Mollie Bank
29
+
30
+ After installation you can simple run:
31
+
32
+ ```
33
+ mollie-bank
34
+ ```
35
+
36
+ Check if it works by browsing to: [http://localhost:4567/](http://localhost:4567/)
37
+
38
+ ## Howto implement
39
+
40
+ By default all communication for iDeal transactions is through [https://secure.mollie.nl/xml/ideal](https://secure.mollie.nl/xml/ideal). To use the "Mollie Bank" gem, you have to change this path into http://localhost:4567/xml/ideal](http://localhost:4567/xml/ideal).
41
+
42
+ Of course you only want to use this in development mode, so you have to create some code to change this path only when it isn't in production mode.
43
+
44
+ Check the [Wiki: Implement into existing modules](https://github.com/manuelvanrijn/mollie-bank/wiki/Implement-into-existing-modules) page for implementation of existing frameworks/modules.
45
+
46
+ ## Changelog
47
+
48
+ A detailed overview of can be found in the [CHANGELOG](https://github.com/manuelvanrijn/mollie-bank/blob/master/CHANGELOG.md).
49
+
50
+ ## Copyright
51
+
52
+ Copyright © 2012 Manuel van Rijn. See [LICENSE](https://github.com/manuelvanrijn/mollie-bank/blob/master/LICENSE.md) for further details.
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
data/bin/mollie-bank ADDED
@@ -0,0 +1,18 @@
1
+ #!/usr/bin/env ruby
2
+ begin
3
+ require 'mollie-bank'
4
+ rescue LoadError => e
5
+ require 'rubygems'
6
+ path = File.expand_path '../../lib', __FILE__
7
+ $:.unshift(path) if File.directory?(path) && !$:.include?(path)
8
+ require 'mollie-bank'
9
+ end
10
+
11
+ puts "== Mollie Bank started!"
12
+ puts " please visit: http://localhost:4567/"
13
+ puts ""
14
+
15
+ MollieBank::Application.run!
16
+
17
+ puts ""
18
+ puts "== Mollie Bank stopped. Good bye"
@@ -0,0 +1,12 @@
1
+ # EXTERNAL DEPS
2
+ require 'sinatra'
3
+ require 'sinatra/content_for'
4
+ require 'sinatra/namespace'
5
+ require 'sinatra/reloader'
6
+ require 'haml'
7
+ require 'net/http'
8
+ require 'uuid'
9
+
10
+ # LOCAL DEPS
11
+ require 'mollie-bank/version'
12
+ require 'mollie-bank/application/app'
@@ -0,0 +1,150 @@
1
+ module MollieBank
2
+ class Application < Sinatra::Base
3
+ helpers Sinatra::ContentFor
4
+ register Sinatra::Namespace
5
+ register Sinatra::Reloader
6
+
7
+ set :static, true
8
+ set :public_folder, File.expand_path('..', __FILE__)
9
+
10
+ set :views, File.expand_path('../views/', __FILE__)
11
+ set :haml, { :format => :html5 }
12
+
13
+ @@storage = Hash.new
14
+
15
+ get '/' do
16
+ haml :info
17
+ end
18
+ get '/ideal' do
19
+ transaction_id = params[:transaction_id]
20
+ description = params[:description]
21
+ reporturl = params[:reporturl]
22
+ returnurl = params[:returnurl]
23
+ amount = params[:amount]
24
+
25
+ if transaction_id.nil? or description.nil? or reporturl.nil? or returnurl.nil? or amount.nil?
26
+ haml :html_error, :locals => { :message => "To few params have been supplied (expected to retrieve 'transaction_id', 'description', 'reporturl', 'returnurl' and 'amount')" }
27
+ else
28
+ int, frac = ("%.2f" % (amount.to_f/100)).split('.')
29
+ amount = "#{int},#{frac}"
30
+
31
+ @@storage["#{transaction_id}"]['reporturl'] = reporturl
32
+ @@storage["#{transaction_id}"]['returnurl'] = returnurl
33
+
34
+ url_path = request.url.split('/ideal?transaction_id=')[0]
35
+
36
+ haml :bank_page, :locals => {
37
+ :transaction_id => transaction_id,
38
+ :amount => amount,
39
+ :reporturl => reporturl,
40
+ :returnurl => returnurl,
41
+ :description => description,
42
+ :url_path => url_path
43
+ }
44
+ end
45
+ end
46
+ get '/payment' do
47
+ transaction_id = params[:transaction_id]
48
+ paid = params[:paid] == "true" ? true : false
49
+
50
+ if transaction_id.nil? or paid.nil?
51
+ haml :html_error, :locals => { :message => "To few params have been supplied" }
52
+ end
53
+
54
+ @@storage["#{transaction_id}"]['paid'] = paid
55
+ reporturl = @@storage["#{transaction_id}"]['reporturl']
56
+ returnurl = @@storage["#{transaction_id}"]['returnurl']
57
+
58
+ begin
59
+ reporturl = URI("#{reporturl}?transaction_id=#{transaction_id}")
60
+ res = Net::HTTP.get(reporturl)
61
+ rescue
62
+ end
63
+
64
+ redirect returnurl
65
+ end
66
+
67
+ namespace '/xml' do
68
+ post '/ideal' do
69
+ content_type 'text/xml'
70
+ case params[:a]
71
+ when "banklist"
72
+ haml :banklist, :layout => false
73
+ when "fetch"
74
+ return error(-2) unless params.has_key?("partnerid")
75
+ return error(-7) unless params.has_key?("description")
76
+ return error(-3) unless params.has_key?("reporturl")
77
+ return error(-12) unless params.has_key?("returnurl")
78
+ return error(-4) unless params.has_key?("amount")
79
+ return error(-14) unless params[:amount].to_i > 118
80
+ return error(-6) unless params.has_key?("bank_id")
81
+
82
+ partnerid = params[:partnerid]
83
+ description = params[:description]
84
+ reporturl = params[:reporturl]
85
+ returnurl = params[:returnurl]
86
+ amount = params[:amount]
87
+ bank_id = params[:bank_id]
88
+
89
+ transaction_id = UUID.new.generate.gsub('-', '')
90
+
91
+ @@storage["#{transaction_id}"] = Hash.new
92
+ @@storage["#{transaction_id}"]['paid'] = false
93
+
94
+ url_path = request.url.split('/xml/ideal')[0]
95
+
96
+ haml :fetch, :layout => false, :locals => {
97
+ :transaction_id => transaction_id,
98
+ :amount => amount,
99
+ :reporturl => reporturl,
100
+ :returnurl => returnurl,
101
+ :description => description,
102
+ :url_path => url_path
103
+ }
104
+ when "check"
105
+ return error(-11) unless params.has_key?("partnerid")
106
+ return error(-8) unless params.has_key?("transaction_id")
107
+
108
+ transaction_id = params[:transaction_id]
109
+ return error(-10) unless @@storage.has_key?("#{transaction_id}")
110
+
111
+ is_paid = @@storage["#{transaction_id}"]['paid']
112
+
113
+ haml :check, :layout => false, :locals => {
114
+ :transaction_id => transaction_id,
115
+ :is_paid => is_paid
116
+ }
117
+ else
118
+ error(-1)
119
+ end
120
+ end
121
+ end
122
+
123
+ def error(code)
124
+ # Mollie codes taken from https://www.mollie.nl/support/documentatie/betaaldiensten/ideal/en/
125
+ errors = []
126
+ errors[1] = "Did not receive a proper input value."
127
+ errors[2] = "A fetch was issued without specification of 'partnerid'."
128
+ errors[3] = "A fetch was issued without (proper) specification of 'reporturl'."
129
+ errors[4] = "A fetch was issued without specification of 'amount'."
130
+ errors[5] = "A fetch was issued without specification of 'bank_id'."
131
+ errors[6] = "A fetch was issues without specification of a known 'bank_id'."
132
+ errors[7] = "A fetch was issued without specification of 'description'."
133
+ errors[8] = "A check was issued without specification of transaction_id."
134
+ errors[9] = "Transaction_id contains illegal characters. (Logged as attempt to mangle)."
135
+ errors[10] = "This is an unknown order."
136
+ errors[11] = "A check was issued without specification of your partner_id."
137
+ errors[12] = "A fetch was issued without (proper) specification of 'returnurl'."
138
+ errors[13] = "This amount is only permitted when iDEAL contract is signed and sent to Mollie."
139
+ errors[14] = "Minimum amount for an ideal transaction is 1,18 EUR."
140
+ errors[15] = "A fetch was issued for an account which is not allowed to accept iDEAL payments (yet)."
141
+ errors[16] = "A fetch was issued for an unknown or inactive profile."
142
+
143
+ haml :error, :layout => false, :locals => {
144
+ :type => "error",
145
+ :code => code,
146
+ :message => errors[code*-1]
147
+ }
148
+ end
149
+ end
150
+ end
@@ -0,0 +1,3363 @@
1
+ /*!
2
+ * Bootstrap v2.0.0
3
+ *
4
+ * Copyright 2012 Twitter, Inc
5
+ * Licensed under the Apache License v2.0
6
+ * http://www.apache.org/licenses/LICENSE-2.0
7
+ *
8
+ * Designed and built with all the love in the world @twitter by @mdo and @fat.
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
+ audio, canvas, video {
23
+ display: inline-block;
24
+ *display: inline;
25
+ *zoom: 1;
26
+ }
27
+ audio:not([controls]) {
28
+ display: none;
29
+ }
30
+ html {
31
+ font-size: 100%;
32
+ -webkit-text-size-adjust: 100%;
33
+ -ms-text-size-adjust: 100%;
34
+ }
35
+ a:focus {
36
+ outline: thin dotted;
37
+ outline: 5px auto -webkit-focus-ring-color;
38
+ outline-offset: -2px;
39
+ }
40
+ a:hover, a:active {
41
+ outline: 0;
42
+ }
43
+ sub, sup {
44
+ position: relative;
45
+ font-size: 75%;
46
+ line-height: 0;
47
+ vertical-align: baseline;
48
+ }
49
+ sup {
50
+ top: -0.5em;
51
+ }
52
+ sub {
53
+ bottom: -0.25em;
54
+ }
55
+ img {
56
+ max-width: 100%;
57
+ height: auto;
58
+ border: 0;
59
+ -ms-interpolation-mode: bicubic;
60
+ }
61
+ button,
62
+ input,
63
+ select,
64
+ textarea {
65
+ margin: 0;
66
+ font-size: 100%;
67
+ vertical-align: middle;
68
+ }
69
+ button, input {
70
+ *overflow: visible;
71
+ line-height: normal;
72
+ }
73
+ button::-moz-focus-inner, input::-moz-focus-inner {
74
+ padding: 0;
75
+ border: 0;
76
+ }
77
+ button,
78
+ input[type="button"],
79
+ input[type="reset"],
80
+ input[type="submit"] {
81
+ cursor: pointer;
82
+ -webkit-appearance: button;
83
+ }
84
+ input[type="search"] {
85
+ -webkit-appearance: textfield;
86
+ -webkit-box-sizing: content-box;
87
+ -moz-box-sizing: content-box;
88
+ box-sizing: content-box;
89
+ }
90
+ input[type="search"]::-webkit-search-decoration, input[type="search"]::-webkit-search-cancel-button {
91
+ -webkit-appearance: none;
92
+ }
93
+ textarea {
94
+ overflow: auto;
95
+ vertical-align: top;
96
+ }
97
+ body {
98
+ margin: 0;
99
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
100
+ font-size: 13px;
101
+ line-height: 18px;
102
+ color: #333333;
103
+ background-color: #ffffff;
104
+ }
105
+ a {
106
+ color: #0088cc;
107
+ text-decoration: none;
108
+ }
109
+ a:hover {
110
+ color: #005580;
111
+ text-decoration: underline;
112
+ }
113
+ .row {
114
+ margin-left: -20px;
115
+ *zoom: 1;
116
+ }
117
+ .row:before, .row:after {
118
+ display: table;
119
+ content: "";
120
+ }
121
+ .row:after {
122
+ clear: both;
123
+ }
124
+ [class*="span"] {
125
+ float: left;
126
+ margin-left: 20px;
127
+ }
128
+ .span1 {
129
+ width: 60px;
130
+ }
131
+ .span2 {
132
+ width: 140px;
133
+ }
134
+ .span3 {
135
+ width: 220px;
136
+ }
137
+ .span4 {
138
+ width: 300px;
139
+ }
140
+ .span5 {
141
+ width: 380px;
142
+ }
143
+ .span6 {
144
+ width: 460px;
145
+ }
146
+ .span7 {
147
+ width: 540px;
148
+ }
149
+ .span8 {
150
+ width: 620px;
151
+ }
152
+ .span9 {
153
+ width: 700px;
154
+ }
155
+ .span10 {
156
+ width: 780px;
157
+ }
158
+ .span11 {
159
+ width: 860px;
160
+ }
161
+ .span12, .container {
162
+ width: 940px;
163
+ }
164
+ .offset1 {
165
+ margin-left: 100px;
166
+ }
167
+ .offset2 {
168
+ margin-left: 180px;
169
+ }
170
+ .offset3 {
171
+ margin-left: 260px;
172
+ }
173
+ .offset4 {
174
+ margin-left: 340px;
175
+ }
176
+ .offset5 {
177
+ margin-left: 420px;
178
+ }
179
+ .offset6 {
180
+ margin-left: 500px;
181
+ }
182
+ .offset7 {
183
+ margin-left: 580px;
184
+ }
185
+ .offset8 {
186
+ margin-left: 660px;
187
+ }
188
+ .offset9 {
189
+ margin-left: 740px;
190
+ }
191
+ .offset10 {
192
+ margin-left: 820px;
193
+ }
194
+ .offset11 {
195
+ margin-left: 900px;
196
+ }
197
+ .row-fluid {
198
+ width: 100%;
199
+ *zoom: 1;
200
+ }
201
+ .row-fluid:before, .row-fluid:after {
202
+ display: table;
203
+ content: "";
204
+ }
205
+ .row-fluid:after {
206
+ clear: both;
207
+ }
208
+ .row-fluid > [class*="span"] {
209
+ float: left;
210
+ margin-left: 2.127659574%;
211
+ }
212
+ .row-fluid > [class*="span"]:first-child {
213
+ margin-left: 0;
214
+ }
215
+ .row-fluid .span1 {
216
+ width: 6.382978723%;
217
+ }
218
+ .row-fluid .span2 {
219
+ width: 14.89361702%;
220
+ }
221
+ .row-fluid .span3 {
222
+ width: 23.404255317%;
223
+ }
224
+ .row-fluid .span4 {
225
+ width: 31.914893614%;
226
+ }
227
+ .row-fluid .span5 {
228
+ width: 40.425531911%;
229
+ }
230
+ .row-fluid .span6 {
231
+ width: 48.93617020799999%;
232
+ }
233
+ .row-fluid .span7 {
234
+ width: 57.446808505%;
235
+ }
236
+ .row-fluid .span8 {
237
+ width: 65.95744680199999%;
238
+ }
239
+ .row-fluid .span9 {
240
+ width: 74.468085099%;
241
+ }
242
+ .row-fluid .span10 {
243
+ width: 82.97872339599999%;
244
+ }
245
+ .row-fluid .span11 {
246
+ width: 91.489361693%;
247
+ }
248
+ .row-fluid .span12 {
249
+ width: 99.99999998999999%;
250
+ }
251
+ .container {
252
+ width: 940px;
253
+ margin-left: auto;
254
+ margin-right: auto;
255
+ *zoom: 1;
256
+ }
257
+ .container:before, .container:after {
258
+ display: table;
259
+ content: "";
260
+ }
261
+ .container:after {
262
+ clear: both;
263
+ }
264
+ .container-fluid {
265
+ padding-left: 20px;
266
+ padding-right: 20px;
267
+ *zoom: 1;
268
+ }
269
+ .container-fluid:before, .container-fluid:after {
270
+ display: table;
271
+ content: "";
272
+ }
273
+ .container-fluid:after {
274
+ clear: both;
275
+ }
276
+ p {
277
+ margin: 0 0 9px;
278
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
279
+ font-size: 13px;
280
+ line-height: 18px;
281
+ }
282
+ p small {
283
+ font-size: 11px;
284
+ color: #999999;
285
+ }
286
+ .lead {
287
+ margin-bottom: 18px;
288
+ font-size: 20px;
289
+ font-weight: 200;
290
+ line-height: 27px;
291
+ }
292
+ h1,
293
+ h2,
294
+ h3,
295
+ h4,
296
+ h5,
297
+ h6 {
298
+ margin: 0;
299
+ font-weight: bold;
300
+ color: #333333;
301
+ text-rendering: optimizelegibility;
302
+ }
303
+ h1 small,
304
+ h2 small,
305
+ h3 small,
306
+ h4 small,
307
+ h5 small,
308
+ h6 small {
309
+ font-weight: normal;
310
+ color: #999999;
311
+ }
312
+ h1 {
313
+ font-size: 30px;
314
+ line-height: 36px;
315
+ }
316
+ h1 small {
317
+ font-size: 18px;
318
+ }
319
+ h2 {
320
+ font-size: 24px;
321
+ line-height: 36px;
322
+ }
323
+ h2 small {
324
+ font-size: 18px;
325
+ }
326
+ h3 {
327
+ line-height: 27px;
328
+ font-size: 18px;
329
+ }
330
+ h3 small {
331
+ font-size: 14px;
332
+ }
333
+ h4, h5, h6 {
334
+ line-height: 18px;
335
+ }
336
+ h4 {
337
+ font-size: 14px;
338
+ }
339
+ h4 small {
340
+ font-size: 12px;
341
+ }
342
+ h5 {
343
+ font-size: 12px;
344
+ }
345
+ h6 {
346
+ font-size: 11px;
347
+ color: #999999;
348
+ text-transform: uppercase;
349
+ }
350
+ .page-header {
351
+ padding-bottom: 17px;
352
+ margin: 18px 0;
353
+ border-bottom: 1px solid #eeeeee;
354
+ }
355
+ .page-header h1 {
356
+ line-height: 1;
357
+ }
358
+ ul, ol {
359
+ padding: 0;
360
+ margin: 0 0 9px 25px;
361
+ }
362
+ ul ul,
363
+ ul ol,
364
+ ol ol,
365
+ ol ul {
366
+ margin-bottom: 0;
367
+ }
368
+ ul {
369
+ list-style: disc;
370
+ }
371
+ ol {
372
+ list-style: decimal;
373
+ }
374
+ li {
375
+ line-height: 18px;
376
+ }
377
+ ul.unstyled {
378
+ margin-left: 0;
379
+ list-style: none;
380
+ }
381
+ dl {
382
+ margin-bottom: 18px;
383
+ }
384
+ dt, dd {
385
+ line-height: 18px;
386
+ }
387
+ dt {
388
+ font-weight: bold;
389
+ }
390
+ dd {
391
+ margin-left: 9px;
392
+ }
393
+ hr {
394
+ margin: 18px 0;
395
+ border: 0;
396
+ border-top: 1px solid #e5e5e5;
397
+ border-bottom: 1px solid #ffffff;
398
+ }
399
+ strong {
400
+ font-weight: bold;
401
+ }
402
+ em {
403
+ font-style: italic;
404
+ }
405
+ .muted {
406
+ color: #999999;
407
+ }
408
+ abbr {
409
+ font-size: 90%;
410
+ text-transform: uppercase;
411
+ border-bottom: 1px dotted #ddd;
412
+ cursor: help;
413
+ }
414
+ blockquote {
415
+ padding: 0 0 0 15px;
416
+ margin: 0 0 18px;
417
+ border-left: 5px solid #eeeeee;
418
+ }
419
+ blockquote p {
420
+ margin-bottom: 0;
421
+ font-size: 16px;
422
+ font-weight: 300;
423
+ line-height: 22.5px;
424
+ }
425
+ blockquote small {
426
+ display: block;
427
+ line-height: 18px;
428
+ color: #999999;
429
+ }
430
+ blockquote small:before {
431
+ content: '\2014 \00A0';
432
+ }
433
+ blockquote.pull-right {
434
+ float: right;
435
+ padding-left: 0;
436
+ padding-right: 15px;
437
+ border-left: 0;
438
+ border-right: 5px solid #eeeeee;
439
+ }
440
+ blockquote.pull-right p, blockquote.pull-right small {
441
+ text-align: right;
442
+ }
443
+ q:before,
444
+ q:after,
445
+ blockquote:before,
446
+ blockquote:after {
447
+ content: "";
448
+ }
449
+ address {
450
+ display: block;
451
+ margin-bottom: 18px;
452
+ line-height: 18px;
453
+ font-style: normal;
454
+ }
455
+ small {
456
+ font-size: 100%;
457
+ }
458
+ cite {
459
+ font-style: normal;
460
+ }
461
+ code, pre {
462
+ padding: 0 3px 2px;
463
+ font-family: Menlo, Monaco, "Courier New", monospace;
464
+ font-size: 12px;
465
+ color: #333333;
466
+ -webkit-border-radius: 3px;
467
+ -moz-border-radius: 3px;
468
+ border-radius: 3px;
469
+ }
470
+ code {
471
+ padding: 3px 4px;
472
+ color: #d14;
473
+ background-color: #f7f7f9;
474
+ border: 1px solid #e1e1e8;
475
+ }
476
+ pre {
477
+ display: block;
478
+ padding: 8.5px;
479
+ margin: 0 0 9px;
480
+ font-size: 12px;
481
+ line-height: 18px;
482
+ background-color: #f5f5f5;
483
+ border: 1px solid #ccc;
484
+ border: 1px solid rgba(0, 0, 0, 0.15);
485
+ -webkit-border-radius: 4px;
486
+ -moz-border-radius: 4px;
487
+ border-radius: 4px;
488
+ white-space: pre;
489
+ white-space: pre-wrap;
490
+ word-break: break-all;
491
+ }
492
+ pre.prettyprint {
493
+ margin-bottom: 18px;
494
+ }
495
+ pre code {
496
+ padding: 0;
497
+ background-color: transparent;
498
+ }
499
+ form {
500
+ margin: 0 0 18px;
501
+ }
502
+ fieldset {
503
+ padding: 0;
504
+ margin: 0;
505
+ border: 0;
506
+ }
507
+ legend {
508
+ display: block;
509
+ width: 100%;
510
+ padding: 0;
511
+ margin-bottom: 27px;
512
+ font-size: 19.5px;
513
+ line-height: 36px;
514
+ color: #333333;
515
+ border: 0;
516
+ border-bottom: 1px solid #eee;
517
+ }
518
+ label,
519
+ input,
520
+ button,
521
+ select,
522
+ textarea {
523
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
524
+ font-size: 13px;
525
+ font-weight: normal;
526
+ line-height: 18px;
527
+ }
528
+ label {
529
+ display: block;
530
+ margin-bottom: 5px;
531
+ color: #333333;
532
+ }
533
+ input,
534
+ textarea,
535
+ select,
536
+ .uneditable-input {
537
+ display: inline-block;
538
+ width: 210px;
539
+ height: 18px;
540
+ padding: 4px;
541
+ margin-bottom: 9px;
542
+ font-size: 13px;
543
+ line-height: 18px;
544
+ color: #555555;
545
+ border: 1px solid #ccc;
546
+ -webkit-border-radius: 3px;
547
+ -moz-border-radius: 3px;
548
+ border-radius: 3px;
549
+ }
550
+ .uneditable-textarea {
551
+ width: auto;
552
+ height: auto;
553
+ }
554
+ label input, label textarea, label select {
555
+ display: block;
556
+ }
557
+ input[type="image"], input[type="checkbox"], input[type="radio"] {
558
+ width: auto;
559
+ height: auto;
560
+ padding: 0;
561
+ margin: 3px 0;
562
+ *margin-top: 0;
563
+ /* IE7 */
564
+
565
+ line-height: normal;
566
+ border: 0;
567
+ cursor: pointer;
568
+ border-radius: 0 \0/;
569
+ }
570
+ input[type="file"] {
571
+ padding: initial;
572
+ line-height: initial;
573
+ border: initial;
574
+ background-color: #ffffff;
575
+ background-color: initial;
576
+ -webkit-box-shadow: none;
577
+ -moz-box-shadow: none;
578
+ box-shadow: none;
579
+ }
580
+ input[type="button"], input[type="reset"], input[type="submit"] {
581
+ width: auto;
582
+ height: auto;
583
+ }
584
+ select, input[type="file"] {
585
+ height: 28px;
586
+ /* In IE7, the height of the select element cannot be changed by height, only font-size */
587
+
588
+ *margin-top: 4px;
589
+ /* For IE7, add top margin to align select with labels */
590
+
591
+ line-height: 28px;
592
+ }
593
+ select {
594
+ width: 220px;
595
+ background-color: #ffffff;
596
+ }
597
+ select[multiple], select[size] {
598
+ height: auto;
599
+ }
600
+ input[type="image"] {
601
+ -webkit-box-shadow: none;
602
+ -moz-box-shadow: none;
603
+ box-shadow: none;
604
+ }
605
+ textarea {
606
+ height: auto;
607
+ }
608
+ input[type="hidden"] {
609
+ display: none;
610
+ }
611
+ .radio, .checkbox {
612
+ padding-left: 18px;
613
+ }
614
+ .radio input[type="radio"], .checkbox input[type="checkbox"] {
615
+ float: left;
616
+ margin-left: -18px;
617
+ }
618
+ .controls > .radio:first-child, .controls > .checkbox:first-child {
619
+ padding-top: 5px;
620
+ }
621
+ .radio.inline, .checkbox.inline {
622
+ display: inline-block;
623
+ margin-bottom: 0;
624
+ vertical-align: middle;
625
+ }
626
+ .radio.inline + .radio.inline, .checkbox.inline + .checkbox.inline {
627
+ margin-left: 10px;
628
+ }
629
+ .controls > .radio.inline:first-child, .controls > .checkbox.inline:first-child {
630
+ padding-top: 0;
631
+ }
632
+ input, textarea {
633
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
634
+ -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
635
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
636
+ -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
637
+ -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
638
+ -ms-transition: border linear 0.2s, box-shadow linear 0.2s;
639
+ -o-transition: border linear 0.2s, box-shadow linear 0.2s;
640
+ transition: border linear 0.2s, box-shadow linear 0.2s;
641
+ }
642
+ input:focus, textarea:focus {
643
+ border-color: rgba(82, 168, 236, 0.8);
644
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
645
+ -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
646
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
647
+ outline: 0;
648
+ outline: thin dotted \9;
649
+ /* IE6-8 */
650
+
651
+ }
652
+ input[type="file"]:focus, input[type="checkbox"]:focus, select:focus {
653
+ -webkit-box-shadow: none;
654
+ -moz-box-shadow: none;
655
+ box-shadow: none;
656
+ outline: thin dotted;
657
+ outline: 5px auto -webkit-focus-ring-color;
658
+ outline-offset: -2px;
659
+ }
660
+ .input-mini {
661
+ width: 60px;
662
+ }
663
+ .input-small {
664
+ width: 90px;
665
+ }
666
+ .input-medium {
667
+ width: 150px;
668
+ }
669
+ .input-large {
670
+ width: 210px;
671
+ }
672
+ .input-xlarge {
673
+ width: 270px;
674
+ }
675
+ .input-xxlarge {
676
+ width: 530px;
677
+ }
678
+ input[class*="span"],
679
+ select[class*="span"],
680
+ textarea[class*="span"],
681
+ .uneditable-input {
682
+ float: none;
683
+ margin-left: 0;
684
+ }
685
+ input.span1, textarea.span1, .uneditable-input.span1 {
686
+ width: 50px;
687
+ }
688
+ input.span2, textarea.span2, .uneditable-input.span2 {
689
+ width: 130px;
690
+ }
691
+ input.span3, textarea.span3, .uneditable-input.span3 {
692
+ width: 210px;
693
+ }
694
+ input.span4, textarea.span4, .uneditable-input.span4 {
695
+ width: 290px;
696
+ }
697
+ input.span5, textarea.span5, .uneditable-input.span5 {
698
+ width: 370px;
699
+ }
700
+ input.span6, textarea.span6, .uneditable-input.span6 {
701
+ width: 450px;
702
+ }
703
+ input.span7, textarea.span7, .uneditable-input.span7 {
704
+ width: 530px;
705
+ }
706
+ input.span8, textarea.span8, .uneditable-input.span8 {
707
+ width: 610px;
708
+ }
709
+ input.span9, textarea.span9, .uneditable-input.span9 {
710
+ width: 690px;
711
+ }
712
+ input.span10, textarea.span10, .uneditable-input.span10 {
713
+ width: 770px;
714
+ }
715
+ input.span11, textarea.span11, .uneditable-input.span11 {
716
+ width: 850px;
717
+ }
718
+ input.span12, textarea.span12, .uneditable-input.span12 {
719
+ width: 930px;
720
+ }
721
+ input[disabled],
722
+ select[disabled],
723
+ textarea[disabled],
724
+ input[readonly],
725
+ select[readonly],
726
+ textarea[readonly] {
727
+ background-color: #f5f5f5;
728
+ border-color: #ddd;
729
+ cursor: not-allowed;
730
+ }
731
+ .control-group.warning > label, .control-group.warning .help-block, .control-group.warning .help-inline {
732
+ color: #c09853;
733
+ }
734
+ .control-group.warning input, .control-group.warning select, .control-group.warning textarea {
735
+ color: #c09853;
736
+ border-color: #c09853;
737
+ }
738
+ .control-group.warning input:focus, .control-group.warning select:focus, .control-group.warning textarea:focus {
739
+ border-color: #a47e3c;
740
+ -webkit-box-shadow: 0 0 6px #dbc59e;
741
+ -moz-box-shadow: 0 0 6px #dbc59e;
742
+ box-shadow: 0 0 6px #dbc59e;
743
+ }
744
+ .control-group.warning .input-prepend .add-on, .control-group.warning .input-append .add-on {
745
+ color: #c09853;
746
+ background-color: #fcf8e3;
747
+ border-color: #c09853;
748
+ }
749
+ .control-group.error > label, .control-group.error .help-block, .control-group.error .help-inline {
750
+ color: #b94a48;
751
+ }
752
+ .control-group.error input, .control-group.error select, .control-group.error textarea {
753
+ color: #b94a48;
754
+ border-color: #b94a48;
755
+ }
756
+ .control-group.error input:focus, .control-group.error select:focus, .control-group.error textarea:focus {
757
+ border-color: #953b39;
758
+ -webkit-box-shadow: 0 0 6px #d59392;
759
+ -moz-box-shadow: 0 0 6px #d59392;
760
+ box-shadow: 0 0 6px #d59392;
761
+ }
762
+ .control-group.error .input-prepend .add-on, .control-group.error .input-append .add-on {
763
+ color: #b94a48;
764
+ background-color: #f2dede;
765
+ border-color: #b94a48;
766
+ }
767
+ .control-group.success > label, .control-group.success .help-block, .control-group.success .help-inline {
768
+ color: #468847;
769
+ }
770
+ .control-group.success input, .control-group.success select, .control-group.success textarea {
771
+ color: #468847;
772
+ border-color: #468847;
773
+ }
774
+ .control-group.success input:focus, .control-group.success select:focus, .control-group.success textarea:focus {
775
+ border-color: #356635;
776
+ -webkit-box-shadow: 0 0 6px #7aba7b;
777
+ -moz-box-shadow: 0 0 6px #7aba7b;
778
+ box-shadow: 0 0 6px #7aba7b;
779
+ }
780
+ .control-group.success .input-prepend .add-on, .control-group.success .input-append .add-on {
781
+ color: #468847;
782
+ background-color: #dff0d8;
783
+ border-color: #468847;
784
+ }
785
+ input:focus:required:invalid, textarea:focus:required:invalid, select:focus:required:invalid {
786
+ color: #b94a48;
787
+ border-color: #ee5f5b;
788
+ }
789
+ input:focus:required:invalid:focus, textarea:focus:required:invalid:focus, select:focus:required:invalid:focus {
790
+ border-color: #e9322d;
791
+ -webkit-box-shadow: 0 0 6px #f8b9b7;
792
+ -moz-box-shadow: 0 0 6px #f8b9b7;
793
+ box-shadow: 0 0 6px #f8b9b7;
794
+ }
795
+ .form-actions {
796
+ padding: 17px 20px 18px;
797
+ margin-top: 18px;
798
+ margin-bottom: 18px;
799
+ background-color: #f5f5f5;
800
+ border-top: 1px solid #ddd;
801
+ }
802
+ .uneditable-input {
803
+ display: block;
804
+ background-color: #ffffff;
805
+ border-color: #eee;
806
+ -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
807
+ -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
808
+ box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
809
+ cursor: not-allowed;
810
+ }
811
+ :-moz-placeholder {
812
+ color: #999999;
813
+ }
814
+ ::-webkit-input-placeholder {
815
+ color: #999999;
816
+ }
817
+ .help-block {
818
+ margin-top: 5px;
819
+ margin-bottom: 0;
820
+ color: #999999;
821
+ }
822
+ .help-inline {
823
+ display: inline-block;
824
+ *display: inline;
825
+ /* IE7 inline-block hack */
826
+
827
+ *zoom: 1;
828
+ margin-bottom: 9px;
829
+ vertical-align: middle;
830
+ padding-left: 5px;
831
+ }
832
+ .input-prepend, .input-append {
833
+ margin-bottom: 5px;
834
+ *zoom: 1;
835
+ }
836
+ .input-prepend:before,
837
+ .input-append:before,
838
+ .input-prepend:after,
839
+ .input-append:after {
840
+ display: table;
841
+ content: "";
842
+ }
843
+ .input-prepend:after, .input-append:after {
844
+ clear: both;
845
+ }
846
+ .input-prepend input,
847
+ .input-append input,
848
+ .input-prepend .uneditable-input,
849
+ .input-append .uneditable-input {
850
+ -webkit-border-radius: 0 3px 3px 0;
851
+ -moz-border-radius: 0 3px 3px 0;
852
+ border-radius: 0 3px 3px 0;
853
+ }
854
+ .input-prepend input:focus,
855
+ .input-append input:focus,
856
+ .input-prepend .uneditable-input:focus,
857
+ .input-append .uneditable-input:focus {
858
+ position: relative;
859
+ z-index: 2;
860
+ }
861
+ .input-prepend .uneditable-input, .input-append .uneditable-input {
862
+ border-left-color: #ccc;
863
+ }
864
+ .input-prepend .add-on, .input-append .add-on {
865
+ float: left;
866
+ display: block;
867
+ width: auto;
868
+ min-width: 16px;
869
+ height: 18px;
870
+ margin-right: -1px;
871
+ padding: 4px 5px;
872
+ font-weight: normal;
873
+ line-height: 18px;
874
+ color: #999999;
875
+ text-align: center;
876
+ text-shadow: 0 1px 0 #ffffff;
877
+ background-color: #f5f5f5;
878
+ border: 1px solid #ccc;
879
+ -webkit-border-radius: 3px 0 0 3px;
880
+ -moz-border-radius: 3px 0 0 3px;
881
+ border-radius: 3px 0 0 3px;
882
+ }
883
+ .input-prepend .active, .input-append .active {
884
+ background-color: #a9dba9;
885
+ border-color: #46a546;
886
+ }
887
+ .input-prepend .add-on {
888
+ *margin-top: 1px;
889
+ /* IE6-7 */
890
+
891
+ }
892
+ .input-append input, .input-append .uneditable-input {
893
+ float: left;
894
+ -webkit-border-radius: 3px 0 0 3px;
895
+ -moz-border-radius: 3px 0 0 3px;
896
+ border-radius: 3px 0 0 3px;
897
+ }
898
+ .input-append .uneditable-input {
899
+ border-right-color: #ccc;
900
+ }
901
+ .input-append .add-on {
902
+ margin-right: 0;
903
+ margin-left: -1px;
904
+ -webkit-border-radius: 0 3px 3px 0;
905
+ -moz-border-radius: 0 3px 3px 0;
906
+ border-radius: 0 3px 3px 0;
907
+ }
908
+ .input-append input:first-child {
909
+ *margin-left: -160px;
910
+ }
911
+ .input-append input:first-child + .add-on {
912
+ *margin-left: -21px;
913
+ }
914
+ .search-query {
915
+ padding-left: 14px;
916
+ padding-right: 14px;
917
+ margin-bottom: 0;
918
+ -webkit-border-radius: 14px;
919
+ -moz-border-radius: 14px;
920
+ border-radius: 14px;
921
+ }
922
+ .form-search input,
923
+ .form-inline input,
924
+ .form-horizontal input,
925
+ .form-search textarea,
926
+ .form-inline textarea,
927
+ .form-horizontal textarea,
928
+ .form-search select,
929
+ .form-inline select,
930
+ .form-horizontal select,
931
+ .form-search .help-inline,
932
+ .form-inline .help-inline,
933
+ .form-horizontal .help-inline,
934
+ .form-search .uneditable-input,
935
+ .form-inline .uneditable-input,
936
+ .form-horizontal .uneditable-input {
937
+ display: inline-block;
938
+ margin-bottom: 0;
939
+ }
940
+ .form-search label,
941
+ .form-inline label,
942
+ .form-search .input-append,
943
+ .form-inline .input-append,
944
+ .form-search .input-prepend,
945
+ .form-inline .input-prepend {
946
+ display: inline-block;
947
+ }
948
+ .form-search .input-append .add-on,
949
+ .form-inline .input-prepend .add-on,
950
+ .form-search .input-append .add-on,
951
+ .form-inline .input-prepend .add-on {
952
+ vertical-align: middle;
953
+ }
954
+ .control-group {
955
+ margin-bottom: 9px;
956
+ }
957
+ .form-horizontal legend + .control-group {
958
+ margin-top: 18px;
959
+ -webkit-margin-top-collapse: separate;
960
+ }
961
+ .form-horizontal .control-group {
962
+ margin-bottom: 18px;
963
+ *zoom: 1;
964
+ }
965
+ .form-horizontal .control-group:before, .form-horizontal .control-group:after {
966
+ display: table;
967
+ content: "";
968
+ }
969
+ .form-horizontal .control-group:after {
970
+ clear: both;
971
+ }
972
+ .form-horizontal .control-group > label {
973
+ float: left;
974
+ width: 140px;
975
+ padding-top: 5px;
976
+ text-align: right;
977
+ }
978
+ .form-horizontal .controls {
979
+ margin-left: 160px;
980
+ }
981
+ .form-horizontal .form-actions {
982
+ padding-left: 160px;
983
+ }
984
+ table {
985
+ max-width: 100%;
986
+ border-collapse: collapse;
987
+ border-spacing: 0;
988
+ }
989
+ .table {
990
+ width: 100%;
991
+ margin-bottom: 18px;
992
+ }
993
+ .table th, .table td {
994
+ padding: 8px;
995
+ line-height: 18px;
996
+ text-align: left;
997
+ border-top: 1px solid #ddd;
998
+ }
999
+ .table th {
1000
+ font-weight: bold;
1001
+ vertical-align: bottom;
1002
+ }
1003
+ .table td {
1004
+ vertical-align: top;
1005
+ }
1006
+ .table thead:first-child tr th, .table thead:first-child tr td {
1007
+ border-top: 0;
1008
+ }
1009
+ .table tbody + tbody {
1010
+ border-top: 2px solid #ddd;
1011
+ }
1012
+ .table-condensed th, .table-condensed td {
1013
+ padding: 4px 5px;
1014
+ }
1015
+ .table-bordered {
1016
+ border: 1px solid #ddd;
1017
+ border-collapse: separate;
1018
+ *border-collapse: collapsed;
1019
+ -webkit-border-radius: 4px;
1020
+ -moz-border-radius: 4px;
1021
+ border-radius: 4px;
1022
+ }
1023
+ .table-bordered th + th,
1024
+ .table-bordered td + td,
1025
+ .table-bordered th + td,
1026
+ .table-bordered td + th {
1027
+ border-left: 1px solid #ddd;
1028
+ }
1029
+ .table-bordered thead:first-child tr:first-child th, .table-bordered tbody:first-child tr:first-child th, .table-bordered tbody:first-child tr:first-child td {
1030
+ border-top: 0;
1031
+ }
1032
+ .table-bordered thead:first-child tr:first-child th:first-child, .table-bordered tbody:first-child tr:first-child td:first-child {
1033
+ -webkit-border-radius: 4px 0 0 0;
1034
+ -moz-border-radius: 4px 0 0 0;
1035
+ border-radius: 4px 0 0 0;
1036
+ }
1037
+ .table-bordered thead:first-child tr:first-child th:last-child, .table-bordered tbody:first-child tr:first-child td:last-child {
1038
+ -webkit-border-radius: 0 4px 0 0;
1039
+ -moz-border-radius: 0 4px 0 0;
1040
+ border-radius: 0 4px 0 0;
1041
+ }
1042
+ .table-bordered thead:last-child tr:last-child th:first-child, .table-bordered tbody:last-child tr:last-child td:first-child {
1043
+ -webkit-border-radius: 0 0 0 4px;
1044
+ -moz-border-radius: 0 0 0 4px;
1045
+ border-radius: 0 0 0 4px;
1046
+ }
1047
+ .table-bordered thead:last-child tr:last-child th:last-child, .table-bordered tbody:last-child tr:last-child td:last-child {
1048
+ -webkit-border-radius: 0 0 4px 0;
1049
+ -moz-border-radius: 0 0 4px 0;
1050
+ border-radius: 0 0 4px 0;
1051
+ }
1052
+ .table-striped tbody tr:nth-child(odd) td, .table-striped tbody tr:nth-child(odd) th {
1053
+ background-color: #f9f9f9;
1054
+ }
1055
+ table .span1 {
1056
+ float: none;
1057
+ width: 44px;
1058
+ margin-left: 0;
1059
+ }
1060
+ table .span2 {
1061
+ float: none;
1062
+ width: 124px;
1063
+ margin-left: 0;
1064
+ }
1065
+ table .span3 {
1066
+ float: none;
1067
+ width: 204px;
1068
+ margin-left: 0;
1069
+ }
1070
+ table .span4 {
1071
+ float: none;
1072
+ width: 284px;
1073
+ margin-left: 0;
1074
+ }
1075
+ table .span5 {
1076
+ float: none;
1077
+ width: 364px;
1078
+ margin-left: 0;
1079
+ }
1080
+ table .span6 {
1081
+ float: none;
1082
+ width: 444px;
1083
+ margin-left: 0;
1084
+ }
1085
+ table .span7 {
1086
+ float: none;
1087
+ width: 524px;
1088
+ margin-left: 0;
1089
+ }
1090
+ table .span8 {
1091
+ float: none;
1092
+ width: 604px;
1093
+ margin-left: 0;
1094
+ }
1095
+ table .span9 {
1096
+ float: none;
1097
+ width: 684px;
1098
+ margin-left: 0;
1099
+ }
1100
+ table .span10 {
1101
+ float: none;
1102
+ width: 764px;
1103
+ margin-left: 0;
1104
+ }
1105
+ table .span11 {
1106
+ float: none;
1107
+ width: 844px;
1108
+ margin-left: 0;
1109
+ }
1110
+ table .span12 {
1111
+ float: none;
1112
+ width: 924px;
1113
+ margin-left: 0;
1114
+ }
1115
+ [class^="icon-"] {
1116
+ display: inline-block;
1117
+ width: 14px;
1118
+ height: 14px;
1119
+ vertical-align: text-top;
1120
+ background-image: url(../img/glyphicons-halflings.png);
1121
+ background-position: 14px 14px;
1122
+ background-repeat: no-repeat;
1123
+ *margin-right: .3em;
1124
+ }
1125
+ [class^="icon-"]:last-child {
1126
+ *margin-left: 0;
1127
+ }
1128
+ .icon-white {
1129
+ background-image: url(../img/glyphicons-halflings-white.png);
1130
+ }
1131
+ .icon-glass {
1132
+ background-position: 0 0;
1133
+ }
1134
+ .icon-music {
1135
+ background-position: -24px 0;
1136
+ }
1137
+ .icon-search {
1138
+ background-position: -48px 0;
1139
+ }
1140
+ .icon-envelope {
1141
+ background-position: -72px 0;
1142
+ }
1143
+ .icon-heart {
1144
+ background-position: -96px 0;
1145
+ }
1146
+ .icon-star {
1147
+ background-position: -120px 0;
1148
+ }
1149
+ .icon-star-empty {
1150
+ background-position: -144px 0;
1151
+ }
1152
+ .icon-user {
1153
+ background-position: -168px 0;
1154
+ }
1155
+ .icon-film {
1156
+ background-position: -192px 0;
1157
+ }
1158
+ .icon-th-large {
1159
+ background-position: -216px 0;
1160
+ }
1161
+ .icon-th {
1162
+ background-position: -240px 0;
1163
+ }
1164
+ .icon-th-list {
1165
+ background-position: -264px 0;
1166
+ }
1167
+ .icon-ok {
1168
+ background-position: -288px 0;
1169
+ }
1170
+ .icon-remove {
1171
+ background-position: -312px 0;
1172
+ }
1173
+ .icon-zoom-in {
1174
+ background-position: -336px 0;
1175
+ }
1176
+ .icon-zoom-out {
1177
+ background-position: -360px 0;
1178
+ }
1179
+ .icon-off {
1180
+ background-position: -384px 0;
1181
+ }
1182
+ .icon-signal {
1183
+ background-position: -408px 0;
1184
+ }
1185
+ .icon-cog {
1186
+ background-position: -432px 0;
1187
+ }
1188
+ .icon-trash {
1189
+ background-position: -456px 0;
1190
+ }
1191
+ .icon-home {
1192
+ background-position: 0 -24px;
1193
+ }
1194
+ .icon-file {
1195
+ background-position: -24px -24px;
1196
+ }
1197
+ .icon-time {
1198
+ background-position: -48px -24px;
1199
+ }
1200
+ .icon-road {
1201
+ background-position: -72px -24px;
1202
+ }
1203
+ .icon-download-alt {
1204
+ background-position: -96px -24px;
1205
+ }
1206
+ .icon-download {
1207
+ background-position: -120px -24px;
1208
+ }
1209
+ .icon-upload {
1210
+ background-position: -144px -24px;
1211
+ }
1212
+ .icon-inbox {
1213
+ background-position: -168px -24px;
1214
+ }
1215
+ .icon-play-circle {
1216
+ background-position: -192px -24px;
1217
+ }
1218
+ .icon-repeat {
1219
+ background-position: -216px -24px;
1220
+ }
1221
+ .icon-refresh {
1222
+ background-position: -240px -24px;
1223
+ }
1224
+ .icon-list-alt {
1225
+ background-position: -264px -24px;
1226
+ }
1227
+ .icon-lock {
1228
+ background-position: -287px -24px;
1229
+ }
1230
+ .icon-flag {
1231
+ background-position: -312px -24px;
1232
+ }
1233
+ .icon-headphones {
1234
+ background-position: -336px -24px;
1235
+ }
1236
+ .icon-volume-off {
1237
+ background-position: -360px -24px;
1238
+ }
1239
+ .icon-volume-down {
1240
+ background-position: -384px -24px;
1241
+ }
1242
+ .icon-volume-up {
1243
+ background-position: -408px -24px;
1244
+ }
1245
+ .icon-qrcode {
1246
+ background-position: -432px -24px;
1247
+ }
1248
+ .icon-barcode {
1249
+ background-position: -456px -24px;
1250
+ }
1251
+ .icon-tag {
1252
+ background-position: 0 -48px;
1253
+ }
1254
+ .icon-tags {
1255
+ background-position: -25px -48px;
1256
+ }
1257
+ .icon-book {
1258
+ background-position: -48px -48px;
1259
+ }
1260
+ .icon-bookmark {
1261
+ background-position: -72px -48px;
1262
+ }
1263
+ .icon-print {
1264
+ background-position: -96px -48px;
1265
+ }
1266
+ .icon-camera {
1267
+ background-position: -120px -48px;
1268
+ }
1269
+ .icon-font {
1270
+ background-position: -144px -48px;
1271
+ }
1272
+ .icon-bold {
1273
+ background-position: -167px -48px;
1274
+ }
1275
+ .icon-italic {
1276
+ background-position: -192px -48px;
1277
+ }
1278
+ .icon-text-height {
1279
+ background-position: -216px -48px;
1280
+ }
1281
+ .icon-text-width {
1282
+ background-position: -240px -48px;
1283
+ }
1284
+ .icon-align-left {
1285
+ background-position: -264px -48px;
1286
+ }
1287
+ .icon-align-center {
1288
+ background-position: -288px -48px;
1289
+ }
1290
+ .icon-align-right {
1291
+ background-position: -312px -48px;
1292
+ }
1293
+ .icon-align-justify {
1294
+ background-position: -336px -48px;
1295
+ }
1296
+ .icon-list {
1297
+ background-position: -360px -48px;
1298
+ }
1299
+ .icon-indent-left {
1300
+ background-position: -384px -48px;
1301
+ }
1302
+ .icon-indent-right {
1303
+ background-position: -408px -48px;
1304
+ }
1305
+ .icon-facetime-video {
1306
+ background-position: -432px -48px;
1307
+ }
1308
+ .icon-picture {
1309
+ background-position: -456px -48px;
1310
+ }
1311
+ .icon-pencil {
1312
+ background-position: 0 -72px;
1313
+ }
1314
+ .icon-map-marker {
1315
+ background-position: -24px -72px;
1316
+ }
1317
+ .icon-adjust {
1318
+ background-position: -48px -72px;
1319
+ }
1320
+ .icon-tint {
1321
+ background-position: -72px -72px;
1322
+ }
1323
+ .icon-edit {
1324
+ background-position: -96px -72px;
1325
+ }
1326
+ .icon-share {
1327
+ background-position: -120px -72px;
1328
+ }
1329
+ .icon-check {
1330
+ background-position: -144px -72px;
1331
+ }
1332
+ .icon-move {
1333
+ background-position: -168px -72px;
1334
+ }
1335
+ .icon-step-backward {
1336
+ background-position: -192px -72px;
1337
+ }
1338
+ .icon-fast-backward {
1339
+ background-position: -216px -72px;
1340
+ }
1341
+ .icon-backward {
1342
+ background-position: -240px -72px;
1343
+ }
1344
+ .icon-play {
1345
+ background-position: -264px -72px;
1346
+ }
1347
+ .icon-pause {
1348
+ background-position: -288px -72px;
1349
+ }
1350
+ .icon-stop {
1351
+ background-position: -312px -72px;
1352
+ }
1353
+ .icon-forward {
1354
+ background-position: -336px -72px;
1355
+ }
1356
+ .icon-fast-forward {
1357
+ background-position: -360px -72px;
1358
+ }
1359
+ .icon-step-forward {
1360
+ background-position: -384px -72px;
1361
+ }
1362
+ .icon-eject {
1363
+ background-position: -408px -72px;
1364
+ }
1365
+ .icon-chevron-left {
1366
+ background-position: -432px -72px;
1367
+ }
1368
+ .icon-chevron-right {
1369
+ background-position: -456px -72px;
1370
+ }
1371
+ .icon-plus-sign {
1372
+ background-position: 0 -96px;
1373
+ }
1374
+ .icon-minus-sign {
1375
+ background-position: -24px -96px;
1376
+ }
1377
+ .icon-remove-sign {
1378
+ background-position: -48px -96px;
1379
+ }
1380
+ .icon-ok-sign {
1381
+ background-position: -72px -96px;
1382
+ }
1383
+ .icon-question-sign {
1384
+ background-position: -96px -96px;
1385
+ }
1386
+ .icon-info-sign {
1387
+ background-position: -120px -96px;
1388
+ }
1389
+ .icon-screenshot {
1390
+ background-position: -144px -96px;
1391
+ }
1392
+ .icon-remove-circle {
1393
+ background-position: -168px -96px;
1394
+ }
1395
+ .icon-ok-circle {
1396
+ background-position: -192px -96px;
1397
+ }
1398
+ .icon-ban-circle {
1399
+ background-position: -216px -96px;
1400
+ }
1401
+ .icon-arrow-left {
1402
+ background-position: -240px -96px;
1403
+ }
1404
+ .icon-arrow-right {
1405
+ background-position: -264px -96px;
1406
+ }
1407
+ .icon-arrow-up {
1408
+ background-position: -289px -96px;
1409
+ }
1410
+ .icon-arrow-down {
1411
+ background-position: -312px -96px;
1412
+ }
1413
+ .icon-share-alt {
1414
+ background-position: -336px -96px;
1415
+ }
1416
+ .icon-resize-full {
1417
+ background-position: -360px -96px;
1418
+ }
1419
+ .icon-resize-small {
1420
+ background-position: -384px -96px;
1421
+ }
1422
+ .icon-plus {
1423
+ background-position: -408px -96px;
1424
+ }
1425
+ .icon-minus {
1426
+ background-position: -433px -96px;
1427
+ }
1428
+ .icon-asterisk {
1429
+ background-position: -456px -96px;
1430
+ }
1431
+ .icon-exclamation-sign {
1432
+ background-position: 0 -120px;
1433
+ }
1434
+ .icon-gift {
1435
+ background-position: -24px -120px;
1436
+ }
1437
+ .icon-leaf {
1438
+ background-position: -48px -120px;
1439
+ }
1440
+ .icon-fire {
1441
+ background-position: -72px -120px;
1442
+ }
1443
+ .icon-eye-open {
1444
+ background-position: -96px -120px;
1445
+ }
1446
+ .icon-eye-close {
1447
+ background-position: -120px -120px;
1448
+ }
1449
+ .icon-warning-sign {
1450
+ background-position: -144px -120px;
1451
+ }
1452
+ .icon-plane {
1453
+ background-position: -168px -120px;
1454
+ }
1455
+ .icon-calendar {
1456
+ background-position: -192px -120px;
1457
+ }
1458
+ .icon-random {
1459
+ background-position: -216px -120px;
1460
+ }
1461
+ .icon-comment {
1462
+ background-position: -240px -120px;
1463
+ }
1464
+ .icon-magnet {
1465
+ background-position: -264px -120px;
1466
+ }
1467
+ .icon-chevron-up {
1468
+ background-position: -288px -120px;
1469
+ }
1470
+ .icon-chevron-down {
1471
+ background-position: -313px -119px;
1472
+ }
1473
+ .icon-retweet {
1474
+ background-position: -336px -120px;
1475
+ }
1476
+ .icon-shopping-cart {
1477
+ background-position: -360px -120px;
1478
+ }
1479
+ .icon-folder-close {
1480
+ background-position: -384px -120px;
1481
+ }
1482
+ .icon-folder-open {
1483
+ background-position: -408px -120px;
1484
+ }
1485
+ .icon-resize-vertical {
1486
+ background-position: -432px -119px;
1487
+ }
1488
+ .icon-resize-horizontal {
1489
+ background-position: -456px -118px;
1490
+ }
1491
+ .dropdown {
1492
+ position: relative;
1493
+ }
1494
+ .dropdown-toggle {
1495
+ *margin-bottom: -3px;
1496
+ }
1497
+ .dropdown-toggle:active, .open .dropdown-toggle {
1498
+ outline: 0;
1499
+ }
1500
+ .caret {
1501
+ display: inline-block;
1502
+ width: 0;
1503
+ height: 0;
1504
+ text-indent: -99999px;
1505
+ *text-indent: 0;
1506
+ vertical-align: top;
1507
+ border-left: 4px solid transparent;
1508
+ border-right: 4px solid transparent;
1509
+ border-top: 4px solid #000000;
1510
+ opacity: 0.3;
1511
+ filter: alpha(opacity=30);
1512
+ content: "\2193";
1513
+ }
1514
+ .dropdown .caret {
1515
+ margin-top: 8px;
1516
+ margin-left: 2px;
1517
+ }
1518
+ .dropdown:hover .caret, .open.dropdown .caret {
1519
+ opacity: 1;
1520
+ filter: alpha(opacity=100);
1521
+ }
1522
+ .dropdown-menu {
1523
+ position: absolute;
1524
+ top: 100%;
1525
+ left: 0;
1526
+ z-index: 1000;
1527
+ float: left;
1528
+ display: none;
1529
+ min-width: 160px;
1530
+ max-width: 220px;
1531
+ _width: 160px;
1532
+ padding: 4px 0;
1533
+ margin: 0;
1534
+ list-style: none;
1535
+ background-color: #ffffff;
1536
+ border-color: #ccc;
1537
+ border-color: rgba(0, 0, 0, 0.2);
1538
+ border-style: solid;
1539
+ border-width: 1px;
1540
+ -webkit-border-radius: 0 0 5px 5px;
1541
+ -moz-border-radius: 0 0 5px 5px;
1542
+ border-radius: 0 0 5px 5px;
1543
+ -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
1544
+ -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
1545
+ box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
1546
+ -webkit-background-clip: padding-box;
1547
+ -moz-background-clip: padding;
1548
+ background-clip: padding-box;
1549
+ *border-right-width: 2px;
1550
+ *border-bottom-width: 2px;
1551
+ }
1552
+ .dropdown-menu.bottom-up {
1553
+ top: auto;
1554
+ bottom: 100%;
1555
+ margin-bottom: 2px;
1556
+ }
1557
+ .dropdown-menu .divider {
1558
+ height: 1px;
1559
+ margin: 5px 1px;
1560
+ overflow: hidden;
1561
+ background-color: #e5e5e5;
1562
+ border-bottom: 1px solid #ffffff;
1563
+ *width: 100%;
1564
+ *margin: -5px 0 5px;
1565
+ }
1566
+ .dropdown-menu a {
1567
+ display: block;
1568
+ padding: 3px 15px;
1569
+ clear: both;
1570
+ font-weight: normal;
1571
+ line-height: 18px;
1572
+ color: #555555;
1573
+ white-space: nowrap;
1574
+ }
1575
+ .dropdown-menu li > a:hover, .dropdown-menu .active > a, .dropdown-menu .active > a:hover {
1576
+ color: #ffffff;
1577
+ text-decoration: none;
1578
+ background-color: #0088cc;
1579
+ }
1580
+ .dropdown.open {
1581
+ *z-index: 1000;
1582
+ }
1583
+ .dropdown.open .dropdown-toggle {
1584
+ color: #ffffff;
1585
+ background: #ccc;
1586
+ background: rgba(0, 0, 0, 0.3);
1587
+ }
1588
+ .dropdown.open .dropdown-menu {
1589
+ display: block;
1590
+ }
1591
+ .typeahead {
1592
+ margin-top: 2px;
1593
+ -webkit-border-radius: 4px;
1594
+ -moz-border-radius: 4px;
1595
+ border-radius: 4px;
1596
+ }
1597
+ .well {
1598
+ min-height: 20px;
1599
+ padding: 19px;
1600
+ margin-bottom: 20px;
1601
+ background-color: #f5f5f5;
1602
+ border: 1px solid #eee;
1603
+ border: 1px solid rgba(0, 0, 0, 0.05);
1604
+ -webkit-border-radius: 4px;
1605
+ -moz-border-radius: 4px;
1606
+ border-radius: 4px;
1607
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
1608
+ -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
1609
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
1610
+ }
1611
+ .well blockquote {
1612
+ border-color: #ddd;
1613
+ border-color: rgba(0, 0, 0, 0.15);
1614
+ }
1615
+ .fade {
1616
+ -webkit-transition: opacity 0.15s linear;
1617
+ -moz-transition: opacity 0.15s linear;
1618
+ -ms-transition: opacity 0.15s linear;
1619
+ -o-transition: opacity 0.15s linear;
1620
+ transition: opacity 0.15s linear;
1621
+ opacity: 0;
1622
+ }
1623
+ .fade.in {
1624
+ opacity: 1;
1625
+ }
1626
+ .collapse {
1627
+ -webkit-transition: height 0.35s ease;
1628
+ -moz-transition: height 0.35s ease;
1629
+ -ms-transition: height 0.35s ease;
1630
+ -o-transition: height 0.35s ease;
1631
+ transition: height 0.35s ease;
1632
+ position: relative;
1633
+ overflow: hidden;
1634
+ height: 0;
1635
+ }
1636
+ .collapse.in {
1637
+ height: auto;
1638
+ }
1639
+ .close {
1640
+ float: right;
1641
+ font-size: 20px;
1642
+ font-weight: bold;
1643
+ line-height: 18px;
1644
+ color: #000000;
1645
+ text-shadow: 0 1px 0 #ffffff;
1646
+ opacity: 0.2;
1647
+ filter: alpha(opacity=20);
1648
+ }
1649
+ .close:hover {
1650
+ color: #000000;
1651
+ text-decoration: none;
1652
+ opacity: 0.4;
1653
+ filter: alpha(opacity=40);
1654
+ cursor: pointer;
1655
+ }
1656
+ .btn {
1657
+ display: inline-block;
1658
+ padding: 4px 10px 4px;
1659
+ font-size: 13px;
1660
+ line-height: 18px;
1661
+ color: #333333;
1662
+ text-align: center;
1663
+ text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
1664
+ background-color: #fafafa;
1665
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
1666
+ background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
1667
+ background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
1668
+ background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
1669
+ background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
1670
+ background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
1671
+ background-repeat: no-repeat;
1672
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
1673
+ border: 1px solid #ccc;
1674
+ border-bottom-color: #bbb;
1675
+ -webkit-border-radius: 4px;
1676
+ -moz-border-radius: 4px;
1677
+ border-radius: 4px;
1678
+ -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
1679
+ -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
1680
+ box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
1681
+ cursor: pointer;
1682
+ *margin-left: .3em;
1683
+ }
1684
+ .btn:first-child {
1685
+ *margin-left: 0;
1686
+ }
1687
+ .btn:hover {
1688
+ color: #333333;
1689
+ text-decoration: none;
1690
+ background-color: #e6e6e6;
1691
+ background-position: 0 -15px;
1692
+ -webkit-transition: background-position 0.1s linear;
1693
+ -moz-transition: background-position 0.1s linear;
1694
+ -ms-transition: background-position 0.1s linear;
1695
+ -o-transition: background-position 0.1s linear;
1696
+ transition: background-position 0.1s linear;
1697
+ }
1698
+ .btn:focus {
1699
+ outline: thin dotted;
1700
+ outline: 5px auto -webkit-focus-ring-color;
1701
+ outline-offset: -2px;
1702
+ }
1703
+ .btn.active, .btn:active {
1704
+ background-image: none;
1705
+ -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
1706
+ -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
1707
+ box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
1708
+ background-color: #e6e6e6;
1709
+ background-color: #d9d9d9 \9;
1710
+ color: rgba(0, 0, 0, 0.5);
1711
+ outline: 0;
1712
+ }
1713
+ .btn.disabled, .btn[disabled] {
1714
+ cursor: default;
1715
+ background-image: none;
1716
+ background-color: #e6e6e6;
1717
+ opacity: 0.65;
1718
+ filter: alpha(opacity=65);
1719
+ -webkit-box-shadow: none;
1720
+ -moz-box-shadow: none;
1721
+ box-shadow: none;
1722
+ }
1723
+ .btn-large {
1724
+ padding: 9px 14px;
1725
+ font-size: 15px;
1726
+ line-height: normal;
1727
+ -webkit-border-radius: 5px;
1728
+ -moz-border-radius: 5px;
1729
+ border-radius: 5px;
1730
+ }
1731
+ .btn-large .icon {
1732
+ margin-top: 1px;
1733
+ }
1734
+ .btn-small {
1735
+ padding: 5px 9px;
1736
+ font-size: 11px;
1737
+ line-height: 16px;
1738
+ }
1739
+ .btn-small .icon {
1740
+ margin-top: -1px;
1741
+ }
1742
+ .btn-primary,
1743
+ .btn-primary:hover,
1744
+ .btn-warning,
1745
+ .btn-warning:hover,
1746
+ .btn-danger,
1747
+ .btn-danger:hover,
1748
+ .btn-success,
1749
+ .btn-success:hover,
1750
+ .btn-info,
1751
+ .btn-info:hover {
1752
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
1753
+ color: #ffffff;
1754
+ }
1755
+ .btn-primary.active,
1756
+ .btn-warning.active,
1757
+ .btn-danger.active,
1758
+ .btn-success.active,
1759
+ .btn-info.active {
1760
+ color: rgba(255, 255, 255, 0.75);
1761
+ }
1762
+ .btn-primary {
1763
+ background-color: #006dcc;
1764
+ background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
1765
+ background-image: -ms-linear-gradient(top, #0088cc, #0044cc);
1766
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));
1767
+ background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
1768
+ background-image: -o-linear-gradient(top, #0088cc, #0044cc);
1769
+ background-image: linear-gradient(top, #0088cc, #0044cc);
1770
+ background-repeat: repeat-x;
1771
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', endColorstr='#0044cc', GradientType=0);
1772
+ border-color: #0044cc #0044cc #002a80;
1773
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1774
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1775
+ }
1776
+ .btn-primary:hover,
1777
+ .btn-primary:active,
1778
+ .btn-primary.active,
1779
+ .btn-primary.disabled,
1780
+ .btn-primary[disabled] {
1781
+ background-color: #0044cc;
1782
+ }
1783
+ .btn-primary:active, .btn-primary.active {
1784
+ background-color: #003399 \9;
1785
+ }
1786
+ .btn-warning {
1787
+ background-color: #faa732;
1788
+ background-image: -moz-linear-gradient(top, #fbb450, #f89406);
1789
+ background-image: -ms-linear-gradient(top, #fbb450, #f89406);
1790
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
1791
+ background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
1792
+ background-image: -o-linear-gradient(top, #fbb450, #f89406);
1793
+ background-image: linear-gradient(top, #fbb450, #f89406);
1794
+ background-repeat: repeat-x;
1795
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbb450', endColorstr='#f89406', GradientType=0);
1796
+ border-color: #f89406 #f89406 #ad6704;
1797
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1798
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1799
+ }
1800
+ .btn-warning:hover,
1801
+ .btn-warning:active,
1802
+ .btn-warning.active,
1803
+ .btn-warning.disabled,
1804
+ .btn-warning[disabled] {
1805
+ background-color: #f89406;
1806
+ }
1807
+ .btn-warning:active, .btn-warning.active {
1808
+ background-color: #c67605 \9;
1809
+ }
1810
+ .btn-danger {
1811
+ background-color: #da4f49;
1812
+ background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f);
1813
+ background-image: -ms-linear-gradient(top, #ee5f5b, #bd362f);
1814
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));
1815
+ background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f);
1816
+ background-image: -o-linear-gradient(top, #ee5f5b, #bd362f);
1817
+ background-image: linear-gradient(top, #ee5f5b, #bd362f);
1818
+ background-repeat: repeat-x;
1819
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#bd362f', GradientType=0);
1820
+ border-color: #bd362f #bd362f #802420;
1821
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1822
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1823
+ }
1824
+ .btn-danger:hover,
1825
+ .btn-danger:active,
1826
+ .btn-danger.active,
1827
+ .btn-danger.disabled,
1828
+ .btn-danger[disabled] {
1829
+ background-color: #bd362f;
1830
+ }
1831
+ .btn-danger:active, .btn-danger.active {
1832
+ background-color: #942a25 \9;
1833
+ }
1834
+ .btn-success {
1835
+ background-color: #5bb75b;
1836
+ background-image: -moz-linear-gradient(top, #62c462, #51a351);
1837
+ background-image: -ms-linear-gradient(top, #62c462, #51a351);
1838
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));
1839
+ background-image: -webkit-linear-gradient(top, #62c462, #51a351);
1840
+ background-image: -o-linear-gradient(top, #62c462, #51a351);
1841
+ background-image: linear-gradient(top, #62c462, #51a351);
1842
+ background-repeat: repeat-x;
1843
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#51a351', GradientType=0);
1844
+ border-color: #51a351 #51a351 #387038;
1845
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1846
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1847
+ }
1848
+ .btn-success:hover,
1849
+ .btn-success:active,
1850
+ .btn-success.active,
1851
+ .btn-success.disabled,
1852
+ .btn-success[disabled] {
1853
+ background-color: #51a351;
1854
+ }
1855
+ .btn-success:active, .btn-success.active {
1856
+ background-color: #408140 \9;
1857
+ }
1858
+ .btn-info {
1859
+ background-color: #49afcd;
1860
+ background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4);
1861
+ background-image: -ms-linear-gradient(top, #5bc0de, #2f96b4);
1862
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));
1863
+ background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4);
1864
+ background-image: -o-linear-gradient(top, #5bc0de, #2f96b4);
1865
+ background-image: linear-gradient(top, #5bc0de, #2f96b4);
1866
+ background-repeat: repeat-x;
1867
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#2f96b4', GradientType=0);
1868
+ border-color: #2f96b4 #2f96b4 #1f6377;
1869
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1870
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1871
+ }
1872
+ .btn-info:hover,
1873
+ .btn-info:active,
1874
+ .btn-info.active,
1875
+ .btn-info.disabled,
1876
+ .btn-info[disabled] {
1877
+ background-color: #2f96b4;
1878
+ }
1879
+ .btn-info:active, .btn-info.active {
1880
+ background-color: #24748c \9;
1881
+ }
1882
+ button.btn, input[type="submit"].btn {
1883
+ *padding-top: 2px;
1884
+ *padding-bottom: 2px;
1885
+ }
1886
+ button.btn::-moz-focus-inner, input[type="submit"].btn::-moz-focus-inner {
1887
+ padding: 0;
1888
+ border: 0;
1889
+ }
1890
+ button.btn.large, input[type="submit"].btn.large {
1891
+ *padding-top: 7px;
1892
+ *padding-bottom: 7px;
1893
+ }
1894
+ button.btn.small, input[type="submit"].btn.small {
1895
+ *padding-top: 3px;
1896
+ *padding-bottom: 3px;
1897
+ }
1898
+ .btn-group {
1899
+ position: relative;
1900
+ *zoom: 1;
1901
+ *margin-left: .3em;
1902
+ }
1903
+ .btn-group:before, .btn-group:after {
1904
+ display: table;
1905
+ content: "";
1906
+ }
1907
+ .btn-group:after {
1908
+ clear: both;
1909
+ }
1910
+ .btn-group:first-child {
1911
+ *margin-left: 0;
1912
+ }
1913
+ .btn-group + .btn-group {
1914
+ margin-left: 5px;
1915
+ }
1916
+ .btn-toolbar {
1917
+ margin-top: 9px;
1918
+ margin-bottom: 9px;
1919
+ }
1920
+ .btn-toolbar .btn-group {
1921
+ display: inline-block;
1922
+ *display: inline;
1923
+ /* IE7 inline-block hack */
1924
+
1925
+ *zoom: 1;
1926
+ }
1927
+ .btn-group .btn {
1928
+ position: relative;
1929
+ float: left;
1930
+ margin-left: -1px;
1931
+ -webkit-border-radius: 0;
1932
+ -moz-border-radius: 0;
1933
+ border-radius: 0;
1934
+ }
1935
+ .btn-group .btn:first-child {
1936
+ margin-left: 0;
1937
+ -webkit-border-top-left-radius: 4px;
1938
+ -moz-border-radius-topleft: 4px;
1939
+ border-top-left-radius: 4px;
1940
+ -webkit-border-bottom-left-radius: 4px;
1941
+ -moz-border-radius-bottomleft: 4px;
1942
+ border-bottom-left-radius: 4px;
1943
+ }
1944
+ .btn-group .btn:last-child, .btn-group .dropdown-toggle {
1945
+ -webkit-border-top-right-radius: 4px;
1946
+ -moz-border-radius-topright: 4px;
1947
+ border-top-right-radius: 4px;
1948
+ -webkit-border-bottom-right-radius: 4px;
1949
+ -moz-border-radius-bottomright: 4px;
1950
+ border-bottom-right-radius: 4px;
1951
+ }
1952
+ .btn-group .btn.large:first-child {
1953
+ margin-left: 0;
1954
+ -webkit-border-top-left-radius: 6px;
1955
+ -moz-border-radius-topleft: 6px;
1956
+ border-top-left-radius: 6px;
1957
+ -webkit-border-bottom-left-radius: 6px;
1958
+ -moz-border-radius-bottomleft: 6px;
1959
+ border-bottom-left-radius: 6px;
1960
+ }
1961
+ .btn-group .btn.large:last-child, .btn-group .large.dropdown-toggle {
1962
+ -webkit-border-top-right-radius: 6px;
1963
+ -moz-border-radius-topright: 6px;
1964
+ border-top-right-radius: 6px;
1965
+ -webkit-border-bottom-right-radius: 6px;
1966
+ -moz-border-radius-bottomright: 6px;
1967
+ border-bottom-right-radius: 6px;
1968
+ }
1969
+ .btn-group .btn:hover,
1970
+ .btn-group .btn:focus,
1971
+ .btn-group .btn:active,
1972
+ .btn-group .btn.active {
1973
+ z-index: 2;
1974
+ }
1975
+ .btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle {
1976
+ outline: 0;
1977
+ }
1978
+ .btn-group .dropdown-toggle {
1979
+ padding-left: 8px;
1980
+ padding-right: 8px;
1981
+ -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);
1982
+ -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);
1983
+ 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);
1984
+ *padding-top: 5px;
1985
+ *padding-bottom: 5px;
1986
+ }
1987
+ .btn-group.open {
1988
+ *z-index: 1000;
1989
+ }
1990
+ .btn-group.open .dropdown-menu {
1991
+ display: block;
1992
+ margin-top: 1px;
1993
+ -webkit-border-radius: 5px;
1994
+ -moz-border-radius: 5px;
1995
+ border-radius: 5px;
1996
+ }
1997
+ .btn-group.open .dropdown-toggle {
1998
+ background-image: none;
1999
+ -webkit-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
2000
+ -moz-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
2001
+ box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
2002
+ }
2003
+ .btn .caret {
2004
+ margin-top: 7px;
2005
+ margin-left: 0;
2006
+ }
2007
+ .btn:hover .caret, .open.btn-group .caret {
2008
+ opacity: 1;
2009
+ filter: alpha(opacity=100);
2010
+ }
2011
+ .btn-primary .caret,
2012
+ .btn-danger .caret,
2013
+ .btn-info .caret,
2014
+ .btn-success .caret {
2015
+ border-top-color: #ffffff;
2016
+ opacity: 0.75;
2017
+ filter: alpha(opacity=75);
2018
+ }
2019
+ .btn-small .caret {
2020
+ margin-top: 4px;
2021
+ }
2022
+ .alert {
2023
+ padding: 8px 35px 8px 14px;
2024
+ margin-bottom: 18px;
2025
+ text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
2026
+ background-color: #fcf8e3;
2027
+ border: 1px solid #fbeed5;
2028
+ -webkit-border-radius: 4px;
2029
+ -moz-border-radius: 4px;
2030
+ border-radius: 4px;
2031
+ }
2032
+ .alert, .alert-heading {
2033
+ color: #c09853;
2034
+ }
2035
+ .alert .close {
2036
+ position: relative;
2037
+ top: -2px;
2038
+ right: -21px;
2039
+ line-height: 18px;
2040
+ }
2041
+ .alert-success {
2042
+ background-color: #dff0d8;
2043
+ border-color: #d6e9c6;
2044
+ }
2045
+ .alert-success, .alert-success .alert-heading {
2046
+ color: #468847;
2047
+ }
2048
+ .alert-danger, .alert-error {
2049
+ background-color: #f2dede;
2050
+ border-color: #eed3d7;
2051
+ }
2052
+ .alert-danger,
2053
+ .alert-error,
2054
+ .alert-danger .alert-heading,
2055
+ .alert-error .alert-heading {
2056
+ color: #b94a48;
2057
+ }
2058
+ .alert-info {
2059
+ background-color: #d9edf7;
2060
+ border-color: #bce8f1;
2061
+ }
2062
+ .alert-info, .alert-info .alert-heading {
2063
+ color: #3a87ad;
2064
+ }
2065
+ .alert-block {
2066
+ padding-top: 14px;
2067
+ padding-bottom: 14px;
2068
+ }
2069
+ .alert-block > p, .alert-block > ul {
2070
+ margin-bottom: 0;
2071
+ }
2072
+ .alert-block p + p {
2073
+ margin-top: 5px;
2074
+ }
2075
+ .nav {
2076
+ margin-left: 0;
2077
+ margin-bottom: 18px;
2078
+ list-style: none;
2079
+ }
2080
+ .nav > li > a {
2081
+ display: block;
2082
+ }
2083
+ .nav > li > a:hover {
2084
+ text-decoration: none;
2085
+ background-color: #eeeeee;
2086
+ }
2087
+ .nav-list {
2088
+ padding-left: 14px;
2089
+ padding-right: 14px;
2090
+ margin-bottom: 0;
2091
+ }
2092
+ .nav-list > li > a, .nav-list .nav-header {
2093
+ display: block;
2094
+ padding: 3px 15px;
2095
+ margin-left: -15px;
2096
+ margin-right: -15px;
2097
+ text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
2098
+ }
2099
+ .nav-list .nav-header {
2100
+ font-size: 11px;
2101
+ font-weight: bold;
2102
+ line-height: 18px;
2103
+ color: #999999;
2104
+ text-transform: uppercase;
2105
+ }
2106
+ .nav-list > li + .nav-header {
2107
+ margin-top: 9px;
2108
+ }
2109
+ .nav-list .active > a {
2110
+ color: #ffffff;
2111
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
2112
+ background-color: #0088cc;
2113
+ }
2114
+ .nav-list .icon {
2115
+ margin-right: 2px;
2116
+ }
2117
+ .nav-tabs, .nav-pills {
2118
+ *zoom: 1;
2119
+ }
2120
+ .nav-tabs:before,
2121
+ .nav-pills:before,
2122
+ .nav-tabs:after,
2123
+ .nav-pills:after {
2124
+ display: table;
2125
+ content: "";
2126
+ }
2127
+ .nav-tabs:after, .nav-pills:after {
2128
+ clear: both;
2129
+ }
2130
+ .nav-tabs > li, .nav-pills > li {
2131
+ float: left;
2132
+ }
2133
+ .nav-tabs > li > a, .nav-pills > li > a {
2134
+ padding-right: 12px;
2135
+ padding-left: 12px;
2136
+ margin-right: 2px;
2137
+ line-height: 14px;
2138
+ }
2139
+ .nav-tabs {
2140
+ border-bottom: 1px solid #ddd;
2141
+ }
2142
+ .nav-tabs > li {
2143
+ margin-bottom: -1px;
2144
+ }
2145
+ .nav-tabs > li > a {
2146
+ padding-top: 9px;
2147
+ padding-bottom: 9px;
2148
+ border: 1px solid transparent;
2149
+ -webkit-border-radius: 4px 4px 0 0;
2150
+ -moz-border-radius: 4px 4px 0 0;
2151
+ border-radius: 4px 4px 0 0;
2152
+ }
2153
+ .nav-tabs > li > a:hover {
2154
+ border-color: #eeeeee #eeeeee #dddddd;
2155
+ }
2156
+ .nav-tabs > .active > a, .nav-tabs > .active > a:hover {
2157
+ color: #555555;
2158
+ background-color: #ffffff;
2159
+ border: 1px solid #ddd;
2160
+ border-bottom-color: transparent;
2161
+ cursor: default;
2162
+ }
2163
+ .nav-pills > li > a {
2164
+ padding-top: 8px;
2165
+ padding-bottom: 8px;
2166
+ margin-top: 2px;
2167
+ margin-bottom: 2px;
2168
+ -webkit-border-radius: 5px;
2169
+ -moz-border-radius: 5px;
2170
+ border-radius: 5px;
2171
+ }
2172
+ .nav-pills .active > a, .nav-pills .active > a:hover {
2173
+ color: #ffffff;
2174
+ background-color: #0088cc;
2175
+ }
2176
+ .nav-stacked > li {
2177
+ float: none;
2178
+ }
2179
+ .nav-stacked > li > a {
2180
+ margin-right: 0;
2181
+ }
2182
+ .nav-tabs.nav-stacked {
2183
+ border-bottom: 0;
2184
+ }
2185
+ .nav-tabs.nav-stacked > li > a {
2186
+ border: 1px solid #ddd;
2187
+ -webkit-border-radius: 0;
2188
+ -moz-border-radius: 0;
2189
+ border-radius: 0;
2190
+ }
2191
+ .nav-tabs.nav-stacked > li:first-child > a {
2192
+ -webkit-border-radius: 4px 4px 0 0;
2193
+ -moz-border-radius: 4px 4px 0 0;
2194
+ border-radius: 4px 4px 0 0;
2195
+ }
2196
+ .nav-tabs.nav-stacked > li:last-child > a {
2197
+ -webkit-border-radius: 0 0 4px 4px;
2198
+ -moz-border-radius: 0 0 4px 4px;
2199
+ border-radius: 0 0 4px 4px;
2200
+ }
2201
+ .nav-tabs.nav-stacked > li > a:hover {
2202
+ border-color: #ddd;
2203
+ z-index: 2;
2204
+ }
2205
+ .nav-pills.nav-stacked > li > a {
2206
+ margin-bottom: 3px;
2207
+ }
2208
+ .nav-pills.nav-stacked > li:last-child > a {
2209
+ margin-bottom: 1px;
2210
+ }
2211
+ .nav-tabs .dropdown-menu, .nav-pills .dropdown-menu {
2212
+ margin-top: 1px;
2213
+ border-width: 1px;
2214
+ }
2215
+ .nav-pills .dropdown-menu {
2216
+ -webkit-border-radius: 4px;
2217
+ -moz-border-radius: 4px;
2218
+ border-radius: 4px;
2219
+ }
2220
+ .nav-tabs .dropdown-toggle .caret, .nav-pills .dropdown-toggle .caret {
2221
+ border-top-color: #0088cc;
2222
+ margin-top: 6px;
2223
+ }
2224
+ .nav-tabs .dropdown-toggle:hover .caret, .nav-pills .dropdown-toggle:hover .caret {
2225
+ border-top-color: #005580;
2226
+ }
2227
+ .nav-tabs .active .dropdown-toggle .caret, .nav-pills .active .dropdown-toggle .caret {
2228
+ border-top-color: #333333;
2229
+ }
2230
+ .nav > .dropdown.active > a:hover {
2231
+ color: #000000;
2232
+ cursor: pointer;
2233
+ }
2234
+ .nav-tabs .open .dropdown-toggle, .nav-pills .open .dropdown-toggle, .nav > .open.active > a:hover {
2235
+ color: #ffffff;
2236
+ background-color: #999999;
2237
+ border-color: #999999;
2238
+ }
2239
+ .nav .open .caret, .nav .open.active .caret, .nav .open a:hover .caret {
2240
+ border-top-color: #ffffff;
2241
+ opacity: 1;
2242
+ filter: alpha(opacity=100);
2243
+ }
2244
+ .tabs-stacked .open > a:hover {
2245
+ border-color: #999999;
2246
+ }
2247
+ .tabbable {
2248
+ *zoom: 1;
2249
+ }
2250
+ .tabbable:before, .tabbable:after {
2251
+ display: table;
2252
+ content: "";
2253
+ }
2254
+ .tabbable:after {
2255
+ clear: both;
2256
+ }
2257
+ .tabs-below .nav-tabs, .tabs-right .nav-tabs, .tabs-left .nav-tabs {
2258
+ border-bottom: 0;
2259
+ }
2260
+ .tab-content > .tab-pane, .pill-content > .pill-pane {
2261
+ display: none;
2262
+ }
2263
+ .tab-content > .active, .pill-content > .active {
2264
+ display: block;
2265
+ }
2266
+ .tabs-below .nav-tabs {
2267
+ border-top: 1px solid #ddd;
2268
+ }
2269
+ .tabs-below .nav-tabs > li {
2270
+ margin-top: -1px;
2271
+ margin-bottom: 0;
2272
+ }
2273
+ .tabs-below .nav-tabs > li > a {
2274
+ -webkit-border-radius: 0 0 4px 4px;
2275
+ -moz-border-radius: 0 0 4px 4px;
2276
+ border-radius: 0 0 4px 4px;
2277
+ }
2278
+ .tabs-below .nav-tabs > li > a:hover {
2279
+ border-bottom-color: transparent;
2280
+ border-top-color: #ddd;
2281
+ }
2282
+ .tabs-below .nav-tabs .active > a, .tabs-below .nav-tabs .active > a:hover {
2283
+ border-color: transparent #ddd #ddd #ddd;
2284
+ }
2285
+ .tabs-left .nav-tabs > li, .tabs-right .nav-tabs > li {
2286
+ float: none;
2287
+ }
2288
+ .tabs-left .nav-tabs > li > a, .tabs-right .nav-tabs > li > a {
2289
+ min-width: 74px;
2290
+ margin-right: 0;
2291
+ margin-bottom: 3px;
2292
+ }
2293
+ .tabs-left .nav-tabs {
2294
+ float: left;
2295
+ margin-right: 19px;
2296
+ border-right: 1px solid #ddd;
2297
+ }
2298
+ .tabs-left .nav-tabs > li > a {
2299
+ margin-right: -1px;
2300
+ -webkit-border-radius: 4px 0 0 4px;
2301
+ -moz-border-radius: 4px 0 0 4px;
2302
+ border-radius: 4px 0 0 4px;
2303
+ }
2304
+ .tabs-left .nav-tabs > li > a:hover {
2305
+ border-color: #eeeeee #dddddd #eeeeee #eeeeee;
2306
+ }
2307
+ .tabs-left .nav-tabs .active > a, .tabs-left .nav-tabs .active > a:hover {
2308
+ border-color: #ddd transparent #ddd #ddd;
2309
+ *border-right-color: #ffffff;
2310
+ }
2311
+ .tabs-right .nav-tabs {
2312
+ float: right;
2313
+ margin-left: 19px;
2314
+ border-left: 1px solid #ddd;
2315
+ }
2316
+ .tabs-right .nav-tabs > li > a {
2317
+ margin-left: -1px;
2318
+ -webkit-border-radius: 0 4px 4px 0;
2319
+ -moz-border-radius: 0 4px 4px 0;
2320
+ border-radius: 0 4px 4px 0;
2321
+ }
2322
+ .tabs-right .nav-tabs > li > a:hover {
2323
+ border-color: #eeeeee #eeeeee #eeeeee #dddddd;
2324
+ }
2325
+ .tabs-right .nav-tabs .active > a, .tabs-right .nav-tabs .active > a:hover {
2326
+ border-color: #ddd #ddd #ddd transparent;
2327
+ *border-left-color: #ffffff;
2328
+ }
2329
+ .navbar {
2330
+ overflow: visible;
2331
+ margin-bottom: 18px;
2332
+ }
2333
+ .navbar-inner {
2334
+ padding-left: 20px;
2335
+ padding-right: 20px;
2336
+ background-color: #2c2c2c;
2337
+ background-image: -moz-linear-gradient(top, #333333, #222222);
2338
+ background-image: -ms-linear-gradient(top, #333333, #222222);
2339
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));
2340
+ background-image: -webkit-linear-gradient(top, #333333, #222222);
2341
+ background-image: -o-linear-gradient(top, #333333, #222222);
2342
+ background-image: linear-gradient(top, #333333, #222222);
2343
+ background-repeat: repeat-x;
2344
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
2345
+ -webkit-border-radius: 4px;
2346
+ -moz-border-radius: 4px;
2347
+ border-radius: 4px;
2348
+ -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
2349
+ -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
2350
+ box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
2351
+ }
2352
+ .btn-navbar {
2353
+ display: none;
2354
+ float: right;
2355
+ padding: 7px 10px;
2356
+ margin-left: 5px;
2357
+ margin-right: 5px;
2358
+ background-color: #2c2c2c;
2359
+ background-image: -moz-linear-gradient(top, #333333, #222222);
2360
+ background-image: -ms-linear-gradient(top, #333333, #222222);
2361
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));
2362
+ background-image: -webkit-linear-gradient(top, #333333, #222222);
2363
+ background-image: -o-linear-gradient(top, #333333, #222222);
2364
+ background-image: linear-gradient(top, #333333, #222222);
2365
+ background-repeat: repeat-x;
2366
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
2367
+ border-color: #222222 #222222 #000000;
2368
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2369
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2370
+ -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
2371
+ -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
2372
+ box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
2373
+ }
2374
+ .btn-navbar:hover,
2375
+ .btn-navbar:active,
2376
+ .btn-navbar.active,
2377
+ .btn-navbar.disabled,
2378
+ .btn-navbar[disabled] {
2379
+ background-color: #222222;
2380
+ }
2381
+ .btn-navbar:active, .btn-navbar.active {
2382
+ background-color: #080808 \9;
2383
+ }
2384
+ .btn-navbar .icon-bar {
2385
+ display: block;
2386
+ width: 18px;
2387
+ height: 2px;
2388
+ background-color: #f5f5f5;
2389
+ -webkit-border-radius: 1px;
2390
+ -moz-border-radius: 1px;
2391
+ border-radius: 1px;
2392
+ -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
2393
+ -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
2394
+ box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
2395
+ }
2396
+ .btn-navbar .icon-bar + .icon-bar {
2397
+ margin-top: 3px;
2398
+ }
2399
+ .nav-collapse.collapse {
2400
+ height: auto;
2401
+ }
2402
+ .navbar .brand:hover {
2403
+ text-decoration: none;
2404
+ }
2405
+ .navbar .brand {
2406
+ float: left;
2407
+ display: block;
2408
+ padding: 8px 20px 12px;
2409
+ margin-left: -20px;
2410
+ font-size: 20px;
2411
+ font-weight: 200;
2412
+ line-height: 1;
2413
+ color: #ffffff;
2414
+ }
2415
+ .navbar .navbar-text {
2416
+ margin-bottom: 0;
2417
+ line-height: 40px;
2418
+ color: #999999;
2419
+ }
2420
+ .navbar .navbar-text a:hover {
2421
+ color: #ffffff;
2422
+ background-color: transparent;
2423
+ }
2424
+ .navbar .btn, .navbar .btn-group {
2425
+ margin-top: 5px;
2426
+ }
2427
+ .navbar .btn-group .btn {
2428
+ margin-top: 0;
2429
+ }
2430
+ .navbar-form {
2431
+ margin-bottom: 0;
2432
+ *zoom: 1;
2433
+ }
2434
+ .navbar-form:before, .navbar-form:after {
2435
+ display: table;
2436
+ content: "";
2437
+ }
2438
+ .navbar-form:after {
2439
+ clear: both;
2440
+ }
2441
+ .navbar-form input, .navbar-form select {
2442
+ display: inline-block;
2443
+ margin-top: 5px;
2444
+ margin-bottom: 0;
2445
+ }
2446
+ .navbar-form .radio, .navbar-form .checkbox {
2447
+ margin-top: 5px;
2448
+ }
2449
+ .navbar-form input[type="image"], .navbar-form input[type="checkbox"], .navbar-form input[type="radio"] {
2450
+ margin-top: 3px;
2451
+ }
2452
+ .navbar-search {
2453
+ position: relative;
2454
+ float: left;
2455
+ margin-top: 6px;
2456
+ margin-bottom: 0;
2457
+ }
2458
+ .navbar-search .search-query {
2459
+ padding: 4px 9px;
2460
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
2461
+ font-size: 13px;
2462
+ font-weight: normal;
2463
+ line-height: 1;
2464
+ color: #ffffff;
2465
+ color: rgba(255, 255, 255, 0.75);
2466
+ background: #666;
2467
+ background: rgba(255, 255, 255, 0.3);
2468
+ border: 1px solid #111;
2469
+ -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
2470
+ -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
2471
+ box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
2472
+ -webkit-transition: none;
2473
+ -moz-transition: none;
2474
+ -ms-transition: none;
2475
+ -o-transition: none;
2476
+ transition: none;
2477
+ }
2478
+ .navbar-search .search-query :-moz-placeholder {
2479
+ color: #eeeeee;
2480
+ }
2481
+ .navbar-search .search-query::-webkit-input-placeholder {
2482
+ color: #eeeeee;
2483
+ }
2484
+ .navbar-search .search-query:hover {
2485
+ color: #ffffff;
2486
+ background-color: #999999;
2487
+ background-color: rgba(255, 255, 255, 0.5);
2488
+ }
2489
+ .navbar-search .search-query:focus, .navbar-search .search-query.focused {
2490
+ padding: 5px 10px;
2491
+ color: #333333;
2492
+ text-shadow: 0 1px 0 #ffffff;
2493
+ background-color: #ffffff;
2494
+ border: 0;
2495
+ -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
2496
+ -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
2497
+ box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
2498
+ outline: 0;
2499
+ }
2500
+ .navbar-fixed-top {
2501
+ position: fixed;
2502
+ top: 0;
2503
+ right: 0;
2504
+ left: 0;
2505
+ z-index: 1030;
2506
+ }
2507
+ .navbar-fixed-top .navbar-inner {
2508
+ padding-left: 0;
2509
+ padding-right: 0;
2510
+ -webkit-border-radius: 0;
2511
+ -moz-border-radius: 0;
2512
+ border-radius: 0;
2513
+ }
2514
+ .navbar .nav {
2515
+ position: relative;
2516
+ left: 0;
2517
+ display: block;
2518
+ float: left;
2519
+ margin: 0 10px 0 0;
2520
+ }
2521
+ .navbar .nav.pull-right {
2522
+ float: right;
2523
+ }
2524
+ .navbar .nav > li {
2525
+ display: block;
2526
+ float: left;
2527
+ }
2528
+ .navbar .nav > li > a {
2529
+ float: none;
2530
+ padding: 10px 10px 11px;
2531
+ line-height: 19px;
2532
+ color: #999999;
2533
+ text-decoration: none;
2534
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
2535
+ }
2536
+ .navbar .nav > li > a:hover {
2537
+ background-color: transparent;
2538
+ color: #ffffff;
2539
+ text-decoration: none;
2540
+ }
2541
+ .navbar .nav .active > a, .navbar .nav .active > a:hover {
2542
+ color: #ffffff;
2543
+ text-decoration: none;
2544
+ background-color: #222222;
2545
+ background-color: rgba(0, 0, 0, 0.5);
2546
+ }
2547
+ .navbar .divider-vertical {
2548
+ height: 40px;
2549
+ width: 1px;
2550
+ margin: 0 9px;
2551
+ overflow: hidden;
2552
+ background-color: #222222;
2553
+ border-right: 1px solid #333333;
2554
+ }
2555
+ .navbar .nav.pull-right {
2556
+ margin-left: 10px;
2557
+ margin-right: 0;
2558
+ }
2559
+ .navbar .dropdown-menu {
2560
+ margin-top: 1px;
2561
+ -webkit-border-radius: 4px;
2562
+ -moz-border-radius: 4px;
2563
+ border-radius: 4px;
2564
+ }
2565
+ .navbar .dropdown-menu:before {
2566
+ content: '';
2567
+ display: inline-block;
2568
+ border-left: 7px solid transparent;
2569
+ border-right: 7px solid transparent;
2570
+ border-bottom: 7px solid #ccc;
2571
+ border-bottom-color: rgba(0, 0, 0, 0.2);
2572
+ position: absolute;
2573
+ top: -7px;
2574
+ left: 9px;
2575
+ }
2576
+ .navbar .dropdown-menu:after {
2577
+ content: '';
2578
+ display: inline-block;
2579
+ border-left: 6px solid transparent;
2580
+ border-right: 6px solid transparent;
2581
+ border-bottom: 6px solid #ffffff;
2582
+ position: absolute;
2583
+ top: -6px;
2584
+ left: 10px;
2585
+ }
2586
+ .navbar .nav .dropdown-toggle .caret, .navbar .nav .open.dropdown .caret {
2587
+ border-top-color: #ffffff;
2588
+ }
2589
+ .navbar .nav .active .caret {
2590
+ opacity: 1;
2591
+ filter: alpha(opacity=100);
2592
+ }
2593
+ .navbar .nav .open > .dropdown-toggle, .navbar .nav .active > .dropdown-toggle, .navbar .nav .open.active > .dropdown-toggle {
2594
+ background-color: transparent;
2595
+ }
2596
+ .navbar .nav .active > .dropdown-toggle:hover {
2597
+ color: #ffffff;
2598
+ }
2599
+ .navbar .nav.pull-right .dropdown-menu {
2600
+ left: auto;
2601
+ right: 0;
2602
+ }
2603
+ .navbar .nav.pull-right .dropdown-menu:before {
2604
+ left: auto;
2605
+ right: 12px;
2606
+ }
2607
+ .navbar .nav.pull-right .dropdown-menu:after {
2608
+ left: auto;
2609
+ right: 13px;
2610
+ }
2611
+ .breadcrumb {
2612
+ padding: 7px 14px;
2613
+ margin: 0 0 18px;
2614
+ background-color: #fbfbfb;
2615
+ background-image: -moz-linear-gradient(top, #ffffff, #f5f5f5);
2616
+ background-image: -ms-linear-gradient(top, #ffffff, #f5f5f5);
2617
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#f5f5f5));
2618
+ background-image: -webkit-linear-gradient(top, #ffffff, #f5f5f5);
2619
+ background-image: -o-linear-gradient(top, #ffffff, #f5f5f5);
2620
+ background-image: linear-gradient(top, #ffffff, #f5f5f5);
2621
+ background-repeat: repeat-x;
2622
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f5f5f5', GradientType=0);
2623
+ border: 1px solid #ddd;
2624
+ -webkit-border-radius: 3px;
2625
+ -moz-border-radius: 3px;
2626
+ border-radius: 3px;
2627
+ -webkit-box-shadow: inset 0 1px 0 #ffffff;
2628
+ -moz-box-shadow: inset 0 1px 0 #ffffff;
2629
+ box-shadow: inset 0 1px 0 #ffffff;
2630
+ }
2631
+ .breadcrumb li {
2632
+ display: inline;
2633
+ text-shadow: 0 1px 0 #ffffff;
2634
+ }
2635
+ .breadcrumb .divider {
2636
+ padding: 0 5px;
2637
+ color: #999999;
2638
+ }
2639
+ .breadcrumb .active a {
2640
+ color: #333333;
2641
+ }
2642
+ .pagination {
2643
+ height: 36px;
2644
+ margin: 18px 0;
2645
+ }
2646
+ .pagination ul {
2647
+ display: inline-block;
2648
+ *display: inline;
2649
+ /* IE7 inline-block hack */
2650
+
2651
+ *zoom: 1;
2652
+ margin-left: 0;
2653
+ margin-bottom: 0;
2654
+ -webkit-border-radius: 3px;
2655
+ -moz-border-radius: 3px;
2656
+ border-radius: 3px;
2657
+ -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
2658
+ -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
2659
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
2660
+ }
2661
+ .pagination li {
2662
+ display: inline;
2663
+ }
2664
+ .pagination a {
2665
+ float: left;
2666
+ padding: 0 14px;
2667
+ line-height: 34px;
2668
+ text-decoration: none;
2669
+ border: 1px solid #ddd;
2670
+ border-left-width: 0;
2671
+ }
2672
+ .pagination a:hover, .pagination .active a {
2673
+ background-color: #f5f5f5;
2674
+ }
2675
+ .pagination .active a {
2676
+ color: #999999;
2677
+ cursor: default;
2678
+ }
2679
+ .pagination .disabled a, .pagination .disabled a:hover {
2680
+ color: #999999;
2681
+ background-color: transparent;
2682
+ cursor: default;
2683
+ }
2684
+ .pagination li:first-child a {
2685
+ border-left-width: 1px;
2686
+ -webkit-border-radius: 3px 0 0 3px;
2687
+ -moz-border-radius: 3px 0 0 3px;
2688
+ border-radius: 3px 0 0 3px;
2689
+ }
2690
+ .pagination li:last-child a {
2691
+ -webkit-border-radius: 0 3px 3px 0;
2692
+ -moz-border-radius: 0 3px 3px 0;
2693
+ border-radius: 0 3px 3px 0;
2694
+ }
2695
+ .pagination-centered {
2696
+ text-align: center;
2697
+ }
2698
+ .pagination-right {
2699
+ text-align: right;
2700
+ }
2701
+ .pager {
2702
+ margin-left: 0;
2703
+ margin-bottom: 18px;
2704
+ list-style: none;
2705
+ text-align: center;
2706
+ *zoom: 1;
2707
+ }
2708
+ .pager:before, .pager:after {
2709
+ display: table;
2710
+ content: "";
2711
+ }
2712
+ .pager:after {
2713
+ clear: both;
2714
+ }
2715
+ .pager li {
2716
+ display: inline;
2717
+ }
2718
+ .pager a {
2719
+ display: inline-block;
2720
+ padding: 5px 14px;
2721
+ background-color: #fff;
2722
+ border: 1px solid #ddd;
2723
+ -webkit-border-radius: 15px;
2724
+ -moz-border-radius: 15px;
2725
+ border-radius: 15px;
2726
+ }
2727
+ .pager a:hover {
2728
+ text-decoration: none;
2729
+ background-color: #f5f5f5;
2730
+ }
2731
+ .pager .next a {
2732
+ float: right;
2733
+ }
2734
+ .pager .previous a {
2735
+ float: left;
2736
+ }
2737
+ .modal-open .dropdown-menu {
2738
+ z-index: 2050;
2739
+ }
2740
+ .modal-open .dropdown.open {
2741
+ *z-index: 2050;
2742
+ }
2743
+ .modal-open .popover {
2744
+ z-index: 2060;
2745
+ }
2746
+ .modal-open .tooltip {
2747
+ z-index: 2070;
2748
+ }
2749
+ .modal-backdrop {
2750
+ position: fixed;
2751
+ top: 0;
2752
+ right: 0;
2753
+ bottom: 0;
2754
+ left: 0;
2755
+ z-index: 1040;
2756
+ background-color: #000000;
2757
+ }
2758
+ .modal-backdrop.fade {
2759
+ opacity: 0;
2760
+ }
2761
+ .modal-backdrop, .modal-backdrop.fade.in {
2762
+ opacity: 0.8;
2763
+ filter: alpha(opacity=80);
2764
+ }
2765
+ .modal {
2766
+ position: fixed;
2767
+ top: 50%;
2768
+ left: 50%;
2769
+ z-index: 1050;
2770
+ max-height: 500px;
2771
+ overflow: auto;
2772
+ width: 560px;
2773
+ margin: -250px 0 0 -280px;
2774
+ background-color: #ffffff;
2775
+ border: 1px solid #999;
2776
+ border: 1px solid rgba(0, 0, 0, 0.3);
2777
+ *border: 1px solid #999;
2778
+ /* IE6-7 */
2779
+
2780
+ -webkit-border-radius: 6px;
2781
+ -moz-border-radius: 6px;
2782
+ border-radius: 6px;
2783
+ -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
2784
+ -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
2785
+ box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
2786
+ -webkit-background-clip: padding-box;
2787
+ -moz-background-clip: padding-box;
2788
+ background-clip: padding-box;
2789
+ }
2790
+ .modal.fade {
2791
+ -webkit-transition: opacity .3s linear, top .3s ease-out;
2792
+ -moz-transition: opacity .3s linear, top .3s ease-out;
2793
+ -ms-transition: opacity .3s linear, top .3s ease-out;
2794
+ -o-transition: opacity .3s linear, top .3s ease-out;
2795
+ transition: opacity .3s linear, top .3s ease-out;
2796
+ top: -25%;
2797
+ }
2798
+ .modal.fade.in {
2799
+ top: 50%;
2800
+ }
2801
+ .modal-header {
2802
+ padding: 9px 15px;
2803
+ border-bottom: 1px solid #eee;
2804
+ }
2805
+ .modal-header .close {
2806
+ margin-top: 2px;
2807
+ }
2808
+ .modal-body {
2809
+ padding: 15px;
2810
+ }
2811
+ .modal-footer {
2812
+ padding: 14px 15px 15px;
2813
+ margin-bottom: 0;
2814
+ background-color: #f5f5f5;
2815
+ border-top: 1px solid #ddd;
2816
+ -webkit-border-radius: 0 0 6px 6px;
2817
+ -moz-border-radius: 0 0 6px 6px;
2818
+ border-radius: 0 0 6px 6px;
2819
+ -webkit-box-shadow: inset 0 1px 0 #ffffff;
2820
+ -moz-box-shadow: inset 0 1px 0 #ffffff;
2821
+ box-shadow: inset 0 1px 0 #ffffff;
2822
+ *zoom: 1;
2823
+ }
2824
+ .modal-footer:before, .modal-footer:after {
2825
+ display: table;
2826
+ content: "";
2827
+ }
2828
+ .modal-footer:after {
2829
+ clear: both;
2830
+ }
2831
+ .modal-footer .btn {
2832
+ float: right;
2833
+ margin-left: 5px;
2834
+ margin-bottom: 0;
2835
+ }
2836
+ .tooltip {
2837
+ position: absolute;
2838
+ z-index: 1020;
2839
+ display: block;
2840
+ visibility: visible;
2841
+ padding: 5px;
2842
+ font-size: 11px;
2843
+ opacity: 0;
2844
+ filter: alpha(opacity=0);
2845
+ }
2846
+ .tooltip.in {
2847
+ opacity: 0.8;
2848
+ filter: alpha(opacity=80);
2849
+ }
2850
+ .tooltip.top {
2851
+ margin-top: -2px;
2852
+ }
2853
+ .tooltip.right {
2854
+ margin-left: 2px;
2855
+ }
2856
+ .tooltip.bottom {
2857
+ margin-top: 2px;
2858
+ }
2859
+ .tooltip.left {
2860
+ margin-left: -2px;
2861
+ }
2862
+ .tooltip.top .tooltip-arrow {
2863
+ bottom: 0;
2864
+ left: 50%;
2865
+ margin-left: -5px;
2866
+ border-left: 5px solid transparent;
2867
+ border-right: 5px solid transparent;
2868
+ border-top: 5px solid #000000;
2869
+ }
2870
+ .tooltip.left .tooltip-arrow {
2871
+ top: 50%;
2872
+ right: 0;
2873
+ margin-top: -5px;
2874
+ border-top: 5px solid transparent;
2875
+ border-bottom: 5px solid transparent;
2876
+ border-left: 5px solid #000000;
2877
+ }
2878
+ .tooltip.bottom .tooltip-arrow {
2879
+ top: 0;
2880
+ left: 50%;
2881
+ margin-left: -5px;
2882
+ border-left: 5px solid transparent;
2883
+ border-right: 5px solid transparent;
2884
+ border-bottom: 5px solid #000000;
2885
+ }
2886
+ .tooltip.right .tooltip-arrow {
2887
+ top: 50%;
2888
+ left: 0;
2889
+ margin-top: -5px;
2890
+ border-top: 5px solid transparent;
2891
+ border-bottom: 5px solid transparent;
2892
+ border-right: 5px solid #000000;
2893
+ }
2894
+ .tooltip-inner {
2895
+ max-width: 200px;
2896
+ padding: 3px 8px;
2897
+ color: #ffffff;
2898
+ text-align: center;
2899
+ text-decoration: none;
2900
+ background-color: #000000;
2901
+ -webkit-border-radius: 4px;
2902
+ -moz-border-radius: 4px;
2903
+ border-radius: 4px;
2904
+ }
2905
+ .tooltip-arrow {
2906
+ position: absolute;
2907
+ width: 0;
2908
+ height: 0;
2909
+ }
2910
+ .popover {
2911
+ position: absolute;
2912
+ top: 0;
2913
+ left: 0;
2914
+ z-index: 1010;
2915
+ display: none;
2916
+ padding: 5px;
2917
+ }
2918
+ .popover.top {
2919
+ margin-top: -5px;
2920
+ }
2921
+ .popover.right {
2922
+ margin-left: 5px;
2923
+ }
2924
+ .popover.bottom {
2925
+ margin-top: 5px;
2926
+ }
2927
+ .popover.left {
2928
+ margin-left: -5px;
2929
+ }
2930
+ .popover.top .arrow {
2931
+ bottom: 0;
2932
+ left: 50%;
2933
+ margin-left: -5px;
2934
+ border-left: 5px solid transparent;
2935
+ border-right: 5px solid transparent;
2936
+ border-top: 5px solid #000000;
2937
+ }
2938
+ .popover.right .arrow {
2939
+ top: 50%;
2940
+ left: 0;
2941
+ margin-top: -5px;
2942
+ border-top: 5px solid transparent;
2943
+ border-bottom: 5px solid transparent;
2944
+ border-right: 5px solid #000000;
2945
+ }
2946
+ .popover.bottom .arrow {
2947
+ top: 0;
2948
+ left: 50%;
2949
+ margin-left: -5px;
2950
+ border-left: 5px solid transparent;
2951
+ border-right: 5px solid transparent;
2952
+ border-bottom: 5px solid #000000;
2953
+ }
2954
+ .popover.left .arrow {
2955
+ top: 50%;
2956
+ right: 0;
2957
+ margin-top: -5px;
2958
+ border-top: 5px solid transparent;
2959
+ border-bottom: 5px solid transparent;
2960
+ border-left: 5px solid #000000;
2961
+ }
2962
+ .popover .arrow {
2963
+ position: absolute;
2964
+ width: 0;
2965
+ height: 0;
2966
+ }
2967
+ .popover-inner {
2968
+ padding: 3px;
2969
+ width: 280px;
2970
+ overflow: hidden;
2971
+ background: #000000;
2972
+ background: rgba(0, 0, 0, 0.8);
2973
+ -webkit-border-radius: 6px;
2974
+ -moz-border-radius: 6px;
2975
+ border-radius: 6px;
2976
+ -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
2977
+ -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
2978
+ box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
2979
+ }
2980
+ .popover-title {
2981
+ padding: 9px 15px;
2982
+ line-height: 1;
2983
+ background-color: #f5f5f5;
2984
+ border-bottom: 1px solid #eee;
2985
+ -webkit-border-radius: 3px 3px 0 0;
2986
+ -moz-border-radius: 3px 3px 0 0;
2987
+ border-radius: 3px 3px 0 0;
2988
+ }
2989
+ .popover-content {
2990
+ padding: 14px;
2991
+ background-color: #ffffff;
2992
+ -webkit-border-radius: 0 0 3px 3px;
2993
+ -moz-border-radius: 0 0 3px 3px;
2994
+ border-radius: 0 0 3px 3px;
2995
+ -webkit-background-clip: padding-box;
2996
+ -moz-background-clip: padding-box;
2997
+ background-clip: padding-box;
2998
+ }
2999
+ .popover-content p, .popover-content ul, .popover-content ol {
3000
+ margin-bottom: 0;
3001
+ }
3002
+ .thumbnails {
3003
+ margin-left: -20px;
3004
+ list-style: none;
3005
+ *zoom: 1;
3006
+ }
3007
+ .thumbnails:before, .thumbnails:after {
3008
+ display: table;
3009
+ content: "";
3010
+ }
3011
+ .thumbnails:after {
3012
+ clear: both;
3013
+ }
3014
+ .thumbnails > li {
3015
+ float: left;
3016
+ margin: 0 0 18px 20px;
3017
+ }
3018
+ .thumbnail {
3019
+ display: block;
3020
+ padding: 4px;
3021
+ line-height: 1;
3022
+ border: 1px solid #ddd;
3023
+ -webkit-border-radius: 4px;
3024
+ -moz-border-radius: 4px;
3025
+ border-radius: 4px;
3026
+ -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
3027
+ -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
3028
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
3029
+ }
3030
+ a.thumbnail:hover {
3031
+ border-color: #0088cc;
3032
+ -webkit-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
3033
+ -moz-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
3034
+ box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
3035
+ }
3036
+ .thumbnail > img {
3037
+ display: block;
3038
+ max-width: 100%;
3039
+ margin-left: auto;
3040
+ margin-right: auto;
3041
+ }
3042
+ .thumbnail .caption {
3043
+ padding: 9px;
3044
+ }
3045
+ .label {
3046
+ padding: 1px 3px 2px;
3047
+ font-size: 9.75px;
3048
+ font-weight: bold;
3049
+ color: #ffffff;
3050
+ text-transform: uppercase;
3051
+ background-color: #999999;
3052
+ -webkit-border-radius: 3px;
3053
+ -moz-border-radius: 3px;
3054
+ border-radius: 3px;
3055
+ }
3056
+ .label-important {
3057
+ background-color: #b94a48;
3058
+ }
3059
+ .label-warning {
3060
+ background-color: #f89406;
3061
+ }
3062
+ .label-success {
3063
+ background-color: #468847;
3064
+ }
3065
+ .label-info {
3066
+ background-color: #3a87ad;
3067
+ }
3068
+ @-webkit-keyframes progress-bar-stripes {
3069
+ from {
3070
+ background-position: 0 0;
3071
+ }
3072
+ to {
3073
+ background-position: 40px 0;
3074
+ }
3075
+ }
3076
+ @-moz-keyframes progress-bar-stripes {
3077
+ from {
3078
+ background-position: 0 0;
3079
+ }
3080
+ to {
3081
+ background-position: 40px 0;
3082
+ }
3083
+ }
3084
+ @keyframes progress-bar-stripes {
3085
+ from {
3086
+ background-position: 0 0;
3087
+ }
3088
+ to {
3089
+ background-position: 40px 0;
3090
+ }
3091
+ }
3092
+ .progress {
3093
+ overflow: hidden;
3094
+ height: 18px;
3095
+ margin-bottom: 18px;
3096
+ background-color: #f7f7f7;
3097
+ background-image: -moz-linear-gradient(top, #f5f5f5, #f9f9f9);
3098
+ background-image: -ms-linear-gradient(top, #f5f5f5, #f9f9f9);
3099
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));
3100
+ background-image: -webkit-linear-gradient(top, #f5f5f5, #f9f9f9);
3101
+ background-image: -o-linear-gradient(top, #f5f5f5, #f9f9f9);
3102
+ background-image: linear-gradient(top, #f5f5f5, #f9f9f9);
3103
+ background-repeat: repeat-x;
3104
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f5f5f5', endColorstr='#f9f9f9', GradientType=0);
3105
+ -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
3106
+ -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
3107
+ box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
3108
+ -webkit-border-radius: 4px;
3109
+ -moz-border-radius: 4px;
3110
+ border-radius: 4px;
3111
+ }
3112
+ .progress .bar {
3113
+ width: 0%;
3114
+ height: 18px;
3115
+ color: #ffffff;
3116
+ font-size: 12px;
3117
+ text-align: center;
3118
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
3119
+ background-color: #0e90d2;
3120
+ background-image: -moz-linear-gradient(top, #149bdf, #0480be);
3121
+ background-image: -ms-linear-gradient(top, #149bdf, #0480be);
3122
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be));
3123
+ background-image: -webkit-linear-gradient(top, #149bdf, #0480be);
3124
+ background-image: -o-linear-gradient(top, #149bdf, #0480be);
3125
+ background-image: linear-gradient(top, #149bdf, #0480be);
3126
+ background-repeat: repeat-x;
3127
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#149bdf', endColorstr='#0480be', GradientType=0);
3128
+ -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
3129
+ -moz-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
3130
+ box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
3131
+ -webkit-box-sizing: border-box;
3132
+ -moz-box-sizing: border-box;
3133
+ box-sizing: border-box;
3134
+ -webkit-transition: width 0.6s ease;
3135
+ -moz-transition: width 0.6s ease;
3136
+ -ms-transition: width 0.6s ease;
3137
+ -o-transition: width 0.6s ease;
3138
+ transition: width 0.6s ease;
3139
+ }
3140
+ .progress-striped .bar {
3141
+ background-color: #62c462;
3142
+ 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));
3143
+ 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);
3144
+ 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);
3145
+ background-image: -ms-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);
3146
+ 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);
3147
+ 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);
3148
+ -webkit-background-size: 40px 40px;
3149
+ -moz-background-size: 40px 40px;
3150
+ -o-background-size: 40px 40px;
3151
+ background-size: 40px 40px;
3152
+ }
3153
+ .progress.active .bar {
3154
+ -webkit-animation: progress-bar-stripes 2s linear infinite;
3155
+ -moz-animation: progress-bar-stripes 2s linear infinite;
3156
+ animation: progress-bar-stripes 2s linear infinite;
3157
+ }
3158
+ .progress-danger .bar {
3159
+ background-color: #dd514c;
3160
+ background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35);
3161
+ background-image: -ms-linear-gradient(top, #ee5f5b, #c43c35);
3162
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#c43c35));
3163
+ background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35);
3164
+ background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
3165
+ background-image: linear-gradient(top, #ee5f5b, #c43c35);
3166
+ background-repeat: repeat-x;
3167
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#c43c35', GradientType=0);
3168
+ }
3169
+ .progress-danger.progress-striped .bar {
3170
+ background-color: #ee5f5b;
3171
+ 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));
3172
+ 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);
3173
+ 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);
3174
+ background-image: -ms-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);
3175
+ 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);
3176
+ 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);
3177
+ }
3178
+ .progress-success .bar {
3179
+ background-color: #5eb95e;
3180
+ background-image: -moz-linear-gradient(top, #62c462, #57a957);
3181
+ background-image: -ms-linear-gradient(top, #62c462, #57a957);
3182
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#57a957));
3183
+ background-image: -webkit-linear-gradient(top, #62c462, #57a957);
3184
+ background-image: -o-linear-gradient(top, #62c462, #57a957);
3185
+ background-image: linear-gradient(top, #62c462, #57a957);
3186
+ background-repeat: repeat-x;
3187
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#57a957', GradientType=0);
3188
+ }
3189
+ .progress-success.progress-striped .bar {
3190
+ background-color: #62c462;
3191
+ 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));
3192
+ 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);
3193
+ 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);
3194
+ background-image: -ms-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);
3195
+ 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);
3196
+ 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);
3197
+ }
3198
+ .progress-info .bar {
3199
+ background-color: #4bb1cf;
3200
+ background-image: -moz-linear-gradient(top, #5bc0de, #339bb9);
3201
+ background-image: -ms-linear-gradient(top, #5bc0de, #339bb9);
3202
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#339bb9));
3203
+ background-image: -webkit-linear-gradient(top, #5bc0de, #339bb9);
3204
+ background-image: -o-linear-gradient(top, #5bc0de, #339bb9);
3205
+ background-image: linear-gradient(top, #5bc0de, #339bb9);
3206
+ background-repeat: repeat-x;
3207
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#339bb9', GradientType=0);
3208
+ }
3209
+ .progress-info.progress-striped .bar {
3210
+ background-color: #5bc0de;
3211
+ 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));
3212
+ 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);
3213
+ 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);
3214
+ background-image: -ms-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);
3215
+ 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);
3216
+ 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);
3217
+ }
3218
+ .accordion {
3219
+ margin-bottom: 18px;
3220
+ }
3221
+ .accordion-group {
3222
+ margin-bottom: 2px;
3223
+ border: 1px solid #e5e5e5;
3224
+ -webkit-border-radius: 4px;
3225
+ -moz-border-radius: 4px;
3226
+ border-radius: 4px;
3227
+ }
3228
+ .accordion-heading {
3229
+ border-bottom: 0;
3230
+ }
3231
+ .accordion-heading .accordion-toggle {
3232
+ display: block;
3233
+ padding: 8px 15px;
3234
+ }
3235
+ .accordion-inner {
3236
+ padding: 9px 15px;
3237
+ border-top: 1px solid #e5e5e5;
3238
+ }
3239
+ .carousel {
3240
+ position: relative;
3241
+ margin-bottom: 18px;
3242
+ line-height: 1;
3243
+ }
3244
+ .carousel-inner {
3245
+ overflow: hidden;
3246
+ width: 100%;
3247
+ position: relative;
3248
+ }
3249
+ .carousel .item {
3250
+ display: none;
3251
+ position: relative;
3252
+ -webkit-transition: 0.6s ease-in-out left;
3253
+ -moz-transition: 0.6s ease-in-out left;
3254
+ -ms-transition: 0.6s ease-in-out left;
3255
+ -o-transition: 0.6s ease-in-out left;
3256
+ transition: 0.6s ease-in-out left;
3257
+ }
3258
+ .carousel .item > img {
3259
+ display: block;
3260
+ line-height: 1;
3261
+ }
3262
+ .carousel .active, .carousel .next, .carousel .prev {
3263
+ display: block;
3264
+ }
3265
+ .carousel .active {
3266
+ left: 0;
3267
+ }
3268
+ .carousel .next, .carousel .prev {
3269
+ position: absolute;
3270
+ top: 0;
3271
+ width: 100%;
3272
+ }
3273
+ .carousel .next {
3274
+ left: 100%;
3275
+ }
3276
+ .carousel .prev {
3277
+ left: -100%;
3278
+ }
3279
+ .carousel .next.left, .carousel .prev.right {
3280
+ left: 0;
3281
+ }
3282
+ .carousel .active.left {
3283
+ left: -100%;
3284
+ }
3285
+ .carousel .active.right {
3286
+ left: 100%;
3287
+ }
3288
+ .carousel-control {
3289
+ position: absolute;
3290
+ top: 40%;
3291
+ left: 15px;
3292
+ width: 40px;
3293
+ height: 40px;
3294
+ margin-top: -20px;
3295
+ font-size: 60px;
3296
+ font-weight: 100;
3297
+ line-height: 30px;
3298
+ color: #ffffff;
3299
+ text-align: center;
3300
+ background: #222222;
3301
+ border: 3px solid #ffffff;
3302
+ -webkit-border-radius: 23px;
3303
+ -moz-border-radius: 23px;
3304
+ border-radius: 23px;
3305
+ opacity: 0.5;
3306
+ filter: alpha(opacity=50);
3307
+ }
3308
+ .carousel-control.right {
3309
+ left: auto;
3310
+ right: 15px;
3311
+ }
3312
+ .carousel-control:hover {
3313
+ color: #ffffff;
3314
+ text-decoration: none;
3315
+ opacity: 0.9;
3316
+ filter: alpha(opacity=90);
3317
+ }
3318
+ .carousel-caption {
3319
+ position: absolute;
3320
+ left: 0;
3321
+ right: 0;
3322
+ bottom: 0;
3323
+ padding: 10px 15px 5px;
3324
+ background: #333333;
3325
+ background: rgba(0, 0, 0, 0.75);
3326
+ }
3327
+ .carousel-caption h4, .carousel-caption p {
3328
+ color: #ffffff;
3329
+ }
3330
+ .hero-unit {
3331
+ padding: 60px;
3332
+ margin-bottom: 30px;
3333
+ background-color: #f5f5f5;
3334
+ -webkit-border-radius: 6px;
3335
+ -moz-border-radius: 6px;
3336
+ border-radius: 6px;
3337
+ }
3338
+ .hero-unit h1 {
3339
+ margin-bottom: 0;
3340
+ font-size: 60px;
3341
+ line-height: 1;
3342
+ letter-spacing: -1px;
3343
+ }
3344
+ .hero-unit p {
3345
+ font-size: 18px;
3346
+ font-weight: 200;
3347
+ line-height: 27px;
3348
+ }
3349
+ .pull-right {
3350
+ float: right;
3351
+ }
3352
+ .pull-left {
3353
+ float: left;
3354
+ }
3355
+ .hide {
3356
+ display: none;
3357
+ }
3358
+ .show {
3359
+ display: block;
3360
+ }
3361
+ .invisible {
3362
+ visibility: hidden;
3363
+ }