├── .gitattributes
├── .gitignore
├── Less
└── bootstrap-email.less
├── README.md
├── Stylesheet
├── bootstrap-email.css
└── bootstrap-email.min.css
└── template.html
/.gitattributes:
--------------------------------------------------------------------------------
1 | # Auto detect text files and perform LF normalization
2 | * text=auto
3 |
4 | # Custom for Visual Studio
5 | *.cs diff=csharp
6 | *.sln merge=union
7 | *.csproj merge=union
8 | *.vbproj merge=union
9 | *.fsproj merge=union
10 | *.dbproj merge=union
11 |
12 | # Standard to msysgit
13 | *.doc diff=astextplain
14 | *.DOC diff=astextplain
15 | *.docx diff=astextplain
16 | *.DOCX diff=astextplain
17 | *.dot diff=astextplain
18 | *.DOT diff=astextplain
19 | *.pdf diff=astextplain
20 | *.PDF diff=astextplain
21 | *.rtf diff=astextplain
22 | *.RTF diff=astextplain
23 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | #################
2 | ## Eclipse
3 | #################
4 |
5 | *.pydevproject
6 | .project
7 | .metadata
8 | bin/
9 | tmp/
10 | *.tmp
11 | *.bak
12 | *.swp
13 | *~.nib
14 | local.properties
15 | .classpath
16 | .settings/
17 | .loadpath
18 |
19 | # External tool builders
20 | .externalToolBuilders/
21 |
22 | # Locally stored "Eclipse launch configurations"
23 | *.launch
24 |
25 | # CDT-specific
26 | .cproject
27 |
28 | # PDT-specific
29 | .buildpath
30 |
31 |
32 | #################
33 | ## Visual Studio
34 | #################
35 |
36 | ## Ignore Visual Studio temporary files, build results, and
37 | ## files generated by popular Visual Studio add-ons.
38 |
39 | # User-specific files
40 | *.suo
41 | *.user
42 | *.sln.docstates
43 |
44 | # Build results
45 | [Dd]ebug/
46 | [Rr]elease/
47 | *_i.c
48 | *_p.c
49 | *.ilk
50 | *.meta
51 | *.obj
52 | *.pch
53 | *.pdb
54 | *.pgc
55 | *.pgd
56 | *.rsp
57 | *.sbr
58 | *.tlb
59 | *.tli
60 | *.tlh
61 | *.tmp
62 | *.vspscc
63 | .builds
64 | *.dotCover
65 |
66 | ## TODO: If you have NuGet Package Restore enabled, uncomment this
67 | #packages/
68 |
69 | # Visual C++ cache files
70 | ipch/
71 | *.aps
72 | *.ncb
73 | *.opensdf
74 | *.sdf
75 |
76 | # Visual Studio profiler
77 | *.psess
78 | *.vsp
79 |
80 | # ReSharper is a .NET coding add-in
81 | _ReSharper*
82 |
83 | # Installshield output folder
84 | [Ee]xpress
85 |
86 | # DocProject is a documentation generator add-in
87 | DocProject/buildhelp/
88 | DocProject/Help/*.HxT
89 | DocProject/Help/*.HxC
90 | DocProject/Help/*.hhc
91 | DocProject/Help/*.hhk
92 | DocProject/Help/*.hhp
93 | DocProject/Help/Html2
94 | DocProject/Help/html
95 |
96 | # Click-Once directory
97 | publish
98 |
99 | # Others
100 | [Bb]in
101 | [Oo]bj
102 | sql
103 | TestResults
104 | *.Cache
105 | ClientBin
106 | stylecop.*
107 | ~$*
108 | *.dbmdl
109 | Generated_Code #added for RIA/Silverlight projects
110 |
111 | # Backup & report files from converting an old project file to a newer
112 | # Visual Studio version. Backup files are not needed, because we have git ;-)
113 | _UpgradeReport_Files/
114 | Backup*/
115 | UpgradeLog*.XML
116 |
117 |
118 |
119 | ############
120 | ## Windows
121 | ############
122 |
123 | # Windows image file caches
124 | Thumbs.db
125 |
126 | # Folder config file
127 | Desktop.ini
128 |
129 |
130 | #############
131 | ## Python
132 | #############
133 |
134 | *.py[co]
135 |
136 | # Packages
137 | *.egg
138 | *.egg-info
139 | dist
140 | build
141 | eggs
142 | parts
143 | bin
144 | var
145 | sdist
146 | develop-eggs
147 | .installed.cfg
148 |
149 | # Installer logs
150 | pip-log.txt
151 |
152 | # Unit test / coverage reports
153 | .coverage
154 | .tox
155 |
156 | #Translations
157 | *.mo
158 |
159 | #Mr Developer
160 | .mr.developer.cfg
161 |
162 | # Mac crap
163 | .DS_Store
164 |
--------------------------------------------------------------------------------
/Less/bootstrap-email.less:
--------------------------------------------------------------------------------
1 | /*!
2 | * Bootstrap v2.1.1
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 |
11 | // CSS Reset
12 | @import "reset.less";
13 |
14 | // Core variables and mixins
15 | @import "variables.less"; // Modify this for custom colors, font-sizes, etc
16 | @import "mixins.less";
17 |
18 | // Grid system and page structure
19 | @import "scaffolding.less";
20 | @import "grid.less";
21 | @import "layouts.less";
22 |
23 | // Base CSS
24 | @import "type.less";
25 | @import "code.less";
26 | @import "tables.less";
27 |
28 | // Components: common
29 | @import "sprites.less";
30 | @import "wells.less";
31 |
32 | // Components: Buttons & Alerts
33 | @import "buttons.less";
34 | @import "button-groups.less";
35 | @import "alerts.less"; // Note: alerts share common CSS with buttons and thus have styles in buttons.less
36 |
37 | // Components: Nav
38 | @import "navs-email.less";
39 | @import "navbar.less";
40 | @import "breadcrumbs.less";
41 |
42 | // Components: Misc
43 | @import "thumbnails.less";
44 | @import "labels-badges.less";
45 | @import "hero-unit.less";
46 |
47 | // Utility classes
48 | @import "utilities.less"; // Has to be last to override when necessary
49 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | [Bootstrap Template for HTML Email](http://github.com/AdvancedREI/BootstrapForEmail)
2 | =================
3 |
4 | Bootstrap is a sleek, intuitive, and powerful front-end framework for faster and easier web development, created and maintained by [Mark Otto](http://twitter.com/mdo) and [Jacob Thornton](http://twitter.com/fat) at Twitter.
5 |
6 | To get started, checkout http://getbootstrap.com!
7 |
8 |
9 | Bootstrap for Email utilizes LESS to create a stylesheet containing a subset of the Bootstrap styles that can be displayed in an e-mail. It's for companies that use Bootstrap on their web applications and want to send out branded e-mails as well (seems like a no-brainer, right?)
10 |
11 | Anything that uses JavaScript is left out, leaving you with an e-mail page suitable for running through [Premailer](http://premailer.dialect.ca/) before sending.
12 |
13 | Quick start
14 | -----------
15 |
16 | Clone the repo, `git clone git://github.com/advancedrei/BootstrapForEmail.git`, or [download the latest release](https://github.com/advancedrei/bootstrapforemail/zipball/master).
17 |
18 | Drop these files in with your Bootstrap LESS files, and it will automatically pick up the proper @imports. Or just use the pre-baked output. There is also a template.html file in the root that utilizes the visual concepts in the Bootstrap samples, replicated in HTML 4.01.
19 |
20 |
21 | Bug tracker
22 | -----------
23 |
24 | Have a bug? Please create an issue here on GitHub that conforms with [necolas's guidelines](https://github.com/necolas/issue-guidelines).
25 |
26 | https://github.com/AdvancedREI/BootstrapForEmail/issues
27 |
28 |
29 |
30 | Twitter account
31 | ---------------
32 |
33 | Keep up to date on announcements and more by following AdvancedREI on Twitter, [@AdvancedREI](http://twitter.com/AdvancedREI).
34 |
35 |
36 |
37 | Blog
38 | ----
39 |
40 | Read more detailed announcements, discussions, and more on [The AdvancedREI Dev Blog](http://advancedrei.com/blogs/development).
41 |
42 |
43 | Author
44 | -------
45 |
46 | **Robert McLaws**
47 |
48 | + http://twitter.com/robertmclaws
49 | + http://github.com/advancedrei
50 |
51 |
52 | Copyright and license
53 | ---------------------
54 |
55 | Copyright 2012 AdvancedREI, LLC, and Twitter, Inc.
56 |
57 | Licensed under the Apache License, Version 2.0 (the "License");
58 | you may not use this work except in compliance with the License.
59 | You may obtain a copy of the License in the LICENSE file, or at:
60 |
61 | http://www.apache.org/licenses/LICENSE-2.0
62 |
63 | Unless required by applicable law or agreed to in writing, software
64 | distributed under the License is distributed on an "AS IS" BASIS,
65 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
66 | See the License for the specific language governing permissions and
67 | limitations under the License.
68 |
--------------------------------------------------------------------------------
/Stylesheet/bootstrap-email.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * Bootstrap v2.1.1
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,
23 | canvas,
24 | video {
25 | display: inline-block;
26 | *display: inline;
27 | *zoom: 1;
28 | }
29 | audio:not([controls]) {
30 | display: none;
31 | }
32 | html {
33 | font-size: 100%;
34 | -webkit-text-size-adjust: 100%;
35 | -ms-text-size-adjust: 100%;
36 | }
37 | a:focus {
38 | outline: thin dotted #333;
39 | outline: 5px auto -webkit-focus-ring-color;
40 | outline-offset: -2px;
41 | }
42 | a:hover,
43 | a:active {
44 | outline: 0;
45 | }
46 | sub,
47 | sup {
48 | position: relative;
49 | font-size: 75%;
50 | line-height: 0;
51 | vertical-align: baseline;
52 | }
53 | sup {
54 | top: -0.5em;
55 | }
56 | sub {
57 | bottom: -0.25em;
58 | }
59 | img {
60 | /* Responsive images (ensure images don't scale beyond their parents) */
61 |
62 | max-width: 100%;
63 | /* Part 1: Set a maxium relative to the parent */
64 |
65 | width: auto\9;
66 | /* IE7-8 need help adjusting responsive images */
67 |
68 | height: auto;
69 | /* Part 2: Scale the height according to the width, otherwise you get stretching */
70 |
71 | vertical-align: middle;
72 | border: 0;
73 | -ms-interpolation-mode: bicubic;
74 | }
75 | #map_canvas img {
76 | max-width: none;
77 | }
78 | button,
79 | input,
80 | select,
81 | textarea {
82 | margin: 0;
83 | font-size: 100%;
84 | vertical-align: middle;
85 | }
86 | button,
87 | input {
88 | *overflow: visible;
89 | line-height: normal;
90 | }
91 | button::-moz-focus-inner,
92 | input::-moz-focus-inner {
93 | padding: 0;
94 | border: 0;
95 | }
96 | button,
97 | input[type="button"],
98 | input[type="reset"],
99 | input[type="submit"] {
100 | cursor: pointer;
101 | -webkit-appearance: button;
102 | }
103 | input[type="search"] {
104 | -webkit-box-sizing: content-box;
105 | -moz-box-sizing: content-box;
106 | box-sizing: content-box;
107 | -webkit-appearance: textfield;
108 | }
109 | input[type="search"]::-webkit-search-decoration,
110 | input[type="search"]::-webkit-search-cancel-button {
111 | -webkit-appearance: none;
112 | }
113 | textarea {
114 | overflow: auto;
115 | vertical-align: top;
116 | }
117 | .clearfix {
118 | *zoom: 1;
119 | }
120 | .clearfix:before,
121 | .clearfix:after {
122 | display: table;
123 | content: "";
124 | line-height: 0;
125 | }
126 | .clearfix:after {
127 | clear: both;
128 | }
129 | .hide-text {
130 | font: 0/0 a;
131 | color: transparent;
132 | text-shadow: none;
133 | background-color: transparent;
134 | border: 0;
135 | }
136 | .input-block-level {
137 | display: block;
138 | width: 100%;
139 | min-height: 30px;
140 | -webkit-box-sizing: border-box;
141 | -moz-box-sizing: border-box;
142 | box-sizing: border-box;
143 | }
144 | body {
145 | margin: 0;
146 | font-family: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
147 | font-size: 13px;
148 | line-height: 20px;
149 | color: #333333;
150 | background-color: #ffffff;
151 | }
152 | a {
153 | color: #0063ca;
154 | text-decoration: none;
155 | }
156 | a:hover {
157 | color: #003e7e;
158 | text-decoration: underline;
159 | }
160 | .img-rounded {
161 | -webkit-border-radius: 6px;
162 | -moz-border-radius: 6px;
163 | border-radius: 6px;
164 | }
165 | .img-polaroid {
166 | padding: 4px;
167 | background-color: #fff;
168 | border: 1px solid #ccc;
169 | border: 1px solid rgba(0, 0, 0, 0.2);
170 | -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
171 | -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
172 | box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
173 | }
174 | .img-circle {
175 | -webkit-border-radius: 500px;
176 | -moz-border-radius: 500px;
177 | border-radius: 500px;
178 | }
179 | .row {
180 | margin-left: -20px;
181 | *zoom: 1;
182 | }
183 | .row:before,
184 | .row:after {
185 | display: table;
186 | content: "";
187 | line-height: 0;
188 | }
189 | .row:after {
190 | clear: both;
191 | }
192 | [class*="span"] {
193 | float: left;
194 | min-height: 1px;
195 | margin-left: 20px;
196 | }
197 | .container,
198 | .navbar-static-top .container,
199 | .navbar-fixed-top .container,
200 | .navbar-fixed-bottom .container {
201 | width: 940px;
202 | }
203 | .span12 {
204 | width: 940px;
205 | }
206 | .span11 {
207 | width: 860px;
208 | }
209 | .span10 {
210 | width: 780px;
211 | }
212 | .span9 {
213 | width: 700px;
214 | }
215 | .span8 {
216 | width: 620px;
217 | }
218 | .span7 {
219 | width: 540px;
220 | }
221 | .span6 {
222 | width: 460px;
223 | }
224 | .span5 {
225 | width: 380px;
226 | }
227 | .span4 {
228 | width: 300px;
229 | }
230 | .span3 {
231 | width: 220px;
232 | }
233 | .span2 {
234 | width: 140px;
235 | }
236 | .span1 {
237 | width: 60px;
238 | }
239 | .offset12 {
240 | margin-left: 980px;
241 | }
242 | .offset11 {
243 | margin-left: 900px;
244 | }
245 | .offset10 {
246 | margin-left: 820px;
247 | }
248 | .offset9 {
249 | margin-left: 740px;
250 | }
251 | .offset8 {
252 | margin-left: 660px;
253 | }
254 | .offset7 {
255 | margin-left: 580px;
256 | }
257 | .offset6 {
258 | margin-left: 500px;
259 | }
260 | .offset5 {
261 | margin-left: 420px;
262 | }
263 | .offset4 {
264 | margin-left: 340px;
265 | }
266 | .offset3 {
267 | margin-left: 260px;
268 | }
269 | .offset2 {
270 | margin-left: 180px;
271 | }
272 | .offset1 {
273 | margin-left: 100px;
274 | }
275 | .row-fluid {
276 | width: 100%;
277 | *zoom: 1;
278 | }
279 | .row-fluid:before,
280 | .row-fluid:after {
281 | display: table;
282 | content: "";
283 | line-height: 0;
284 | }
285 | .row-fluid:after {
286 | clear: both;
287 | }
288 | .row-fluid [class*="span"] {
289 | display: block;
290 | width: 100%;
291 | min-height: 30px;
292 | -webkit-box-sizing: border-box;
293 | -moz-box-sizing: border-box;
294 | box-sizing: border-box;
295 | float: left;
296 | margin-left: 2.127659574468085%;
297 | *margin-left: 2.074468085106383%;
298 | }
299 | .row-fluid [class*="span"]:first-child {
300 | margin-left: 0;
301 | }
302 | .row-fluid .span12 {
303 | width: 100%;
304 | *width: 99.94680851063829%;
305 | }
306 | .row-fluid .span11 {
307 | width: 91.48936170212765%;
308 | *width: 91.43617021276594%;
309 | }
310 | .row-fluid .span10 {
311 | width: 82.97872340425532%;
312 | *width: 82.92553191489361%;
313 | }
314 | .row-fluid .span9 {
315 | width: 74.46808510638297%;
316 | *width: 74.41489361702126%;
317 | }
318 | .row-fluid .span8 {
319 | width: 65.95744680851064%;
320 | *width: 65.90425531914893%;
321 | }
322 | .row-fluid .span7 {
323 | width: 57.44680851063829%;
324 | *width: 57.39361702127659%;
325 | }
326 | .row-fluid .span6 {
327 | width: 48.93617021276595%;
328 | *width: 48.88297872340425%;
329 | }
330 | .row-fluid .span5 {
331 | width: 40.42553191489362%;
332 | *width: 40.37234042553192%;
333 | }
334 | .row-fluid .span4 {
335 | width: 31.914893617021278%;
336 | *width: 31.861702127659576%;
337 | }
338 | .row-fluid .span3 {
339 | width: 23.404255319148934%;
340 | *width: 23.351063829787233%;
341 | }
342 | .row-fluid .span2 {
343 | width: 14.893617021276595%;
344 | *width: 14.840425531914894%;
345 | }
346 | .row-fluid .span1 {
347 | width: 6.382978723404255%;
348 | *width: 6.329787234042553%;
349 | }
350 | .row-fluid .offset12 {
351 | margin-left: 104.25531914893617%;
352 | *margin-left: 104.14893617021275%;
353 | }
354 | .row-fluid .offset12:first-child {
355 | margin-left: 102.12765957446808%;
356 | *margin-left: 102.02127659574467%;
357 | }
358 | .row-fluid .offset11 {
359 | margin-left: 95.74468085106382%;
360 | *margin-left: 95.6382978723404%;
361 | }
362 | .row-fluid .offset11:first-child {
363 | margin-left: 93.61702127659574%;
364 | *margin-left: 93.51063829787232%;
365 | }
366 | .row-fluid .offset10 {
367 | margin-left: 87.23404255319149%;
368 | *margin-left: 87.12765957446807%;
369 | }
370 | .row-fluid .offset10:first-child {
371 | margin-left: 85.1063829787234%;
372 | *margin-left: 84.99999999999999%;
373 | }
374 | .row-fluid .offset9 {
375 | margin-left: 78.72340425531914%;
376 | *margin-left: 78.61702127659572%;
377 | }
378 | .row-fluid .offset9:first-child {
379 | margin-left: 76.59574468085106%;
380 | *margin-left: 76.48936170212764%;
381 | }
382 | .row-fluid .offset8 {
383 | margin-left: 70.2127659574468%;
384 | *margin-left: 70.10638297872339%;
385 | }
386 | .row-fluid .offset8:first-child {
387 | margin-left: 68.08510638297872%;
388 | *margin-left: 67.9787234042553%;
389 | }
390 | .row-fluid .offset7 {
391 | margin-left: 61.70212765957446%;
392 | *margin-left: 61.59574468085106%;
393 | }
394 | .row-fluid .offset7:first-child {
395 | margin-left: 59.574468085106375%;
396 | *margin-left: 59.46808510638297%;
397 | }
398 | .row-fluid .offset6 {
399 | margin-left: 53.191489361702125%;
400 | *margin-left: 53.085106382978715%;
401 | }
402 | .row-fluid .offset6:first-child {
403 | margin-left: 51.063829787234035%;
404 | *margin-left: 50.95744680851063%;
405 | }
406 | .row-fluid .offset5 {
407 | margin-left: 44.68085106382979%;
408 | *margin-left: 44.57446808510638%;
409 | }
410 | .row-fluid .offset5:first-child {
411 | margin-left: 42.5531914893617%;
412 | *margin-left: 42.4468085106383%;
413 | }
414 | .row-fluid .offset4 {
415 | margin-left: 36.170212765957444%;
416 | *margin-left: 36.06382978723405%;
417 | }
418 | .row-fluid .offset4:first-child {
419 | margin-left: 34.04255319148936%;
420 | *margin-left: 33.93617021276596%;
421 | }
422 | .row-fluid .offset3 {
423 | margin-left: 27.659574468085104%;
424 | *margin-left: 27.5531914893617%;
425 | }
426 | .row-fluid .offset3:first-child {
427 | margin-left: 25.53191489361702%;
428 | *margin-left: 25.425531914893618%;
429 | }
430 | .row-fluid .offset2 {
431 | margin-left: 19.148936170212764%;
432 | *margin-left: 19.04255319148936%;
433 | }
434 | .row-fluid .offset2:first-child {
435 | margin-left: 17.02127659574468%;
436 | *margin-left: 16.914893617021278%;
437 | }
438 | .row-fluid .offset1 {
439 | margin-left: 10.638297872340425%;
440 | *margin-left: 10.53191489361702%;
441 | }
442 | .row-fluid .offset1:first-child {
443 | margin-left: 8.51063829787234%;
444 | *margin-left: 8.404255319148938%;
445 | }
446 | [class*="span"].hide,
447 | .row-fluid [class*="span"].hide {
448 | display: none;
449 | }
450 | [class*="span"].pull-right,
451 | .row-fluid [class*="span"].pull-right {
452 | float: right;
453 | }
454 | .container {
455 | margin-right: auto;
456 | margin-left: auto;
457 | *zoom: 1;
458 | }
459 | .container:before,
460 | .container:after {
461 | display: table;
462 | content: "";
463 | line-height: 0;
464 | }
465 | .container:after {
466 | clear: both;
467 | }
468 | .container-fluid {
469 | padding-right: 20px;
470 | padding-left: 20px;
471 | *zoom: 1;
472 | }
473 | .container-fluid:before,
474 | .container-fluid:after {
475 | display: table;
476 | content: "";
477 | line-height: 0;
478 | }
479 | .container-fluid:after {
480 | clear: both;
481 | }
482 | p {
483 | margin: 0 0 10px;
484 | }
485 | .lead {
486 | margin-bottom: 20px;
487 | font-size: 19.5px;
488 | font-weight: 200;
489 | line-height: 30px;
490 | }
491 | small {
492 | font-size: 85%;
493 | }
494 | strong {
495 | font-weight: bold;
496 | }
497 | em {
498 | font-style: italic;
499 | }
500 | cite {
501 | font-style: normal;
502 | }
503 | .muted {
504 | color: #999999;
505 | }
506 | .text-warning {
507 | color: #c09853;
508 | }
509 | .text-error {
510 | color: #b94a48;
511 | }
512 | .text-info {
513 | color: #3a87ad;
514 | }
515 | .text-success {
516 | color: #468847;
517 | }
518 | h1,
519 | h2,
520 | h3,
521 | h4,
522 | h5,
523 | h6 {
524 | margin: 10px 0;
525 | font-family: inherit;
526 | font-weight: bold;
527 | line-height: 1;
528 | color: inherit;
529 | text-rendering: optimizelegibility;
530 | }
531 | h1 small,
532 | h2 small,
533 | h3 small,
534 | h4 small,
535 | h5 small,
536 | h6 small {
537 | font-weight: normal;
538 | line-height: 1;
539 | color: #999999;
540 | }
541 | h1 {
542 | font-size: 36px;
543 | line-height: 40px;
544 | }
545 | h2 {
546 | font-size: 30px;
547 | line-height: 40px;
548 | }
549 | h3 {
550 | font-size: 24px;
551 | line-height: 40px;
552 | }
553 | h4 {
554 | font-size: 18px;
555 | line-height: 20px;
556 | }
557 | h5 {
558 | font-size: 14px;
559 | line-height: 20px;
560 | }
561 | h6 {
562 | font-size: 12px;
563 | line-height: 20px;
564 | }
565 | h1 small {
566 | font-size: 24px;
567 | }
568 | h2 small {
569 | font-size: 18px;
570 | }
571 | h3 small {
572 | font-size: 14px;
573 | }
574 | h4 small {
575 | font-size: 14px;
576 | }
577 | .page-header {
578 | padding-bottom: 9px;
579 | margin: 20px 0 30px;
580 | border-bottom: 1px solid #eeeeee;
581 | }
582 | ul,
583 | ol {
584 | padding: 0;
585 | margin: 0 0 10px 25px;
586 | }
587 | ul ul,
588 | ul ol,
589 | ol ol,
590 | ol ul {
591 | margin-bottom: 0;
592 | }
593 | li {
594 | line-height: 20px;
595 | }
596 | ul.unstyled,
597 | ol.unstyled {
598 | margin-left: 0;
599 | list-style: none;
600 | }
601 | dl {
602 | margin-bottom: 20px;
603 | }
604 | dt,
605 | dd {
606 | line-height: 20px;
607 | }
608 | dt {
609 | font-weight: bold;
610 | }
611 | dd {
612 | margin-left: 10px;
613 | }
614 | .dl-horizontal {
615 | *zoom: 1;
616 | }
617 | .dl-horizontal:before,
618 | .dl-horizontal:after {
619 | display: table;
620 | content: "";
621 | line-height: 0;
622 | }
623 | .dl-horizontal:after {
624 | clear: both;
625 | }
626 | .dl-horizontal dt {
627 | float: left;
628 | width: 160px;
629 | clear: left;
630 | text-align: right;
631 | overflow: hidden;
632 | text-overflow: ellipsis;
633 | white-space: nowrap;
634 | }
635 | .dl-horizontal dd {
636 | margin-left: 180px;
637 | }
638 | hr {
639 | margin: 20px 0;
640 | border: 0;
641 | border-top: 1px solid #eeeeee;
642 | border-bottom: 1px solid #ffffff;
643 | }
644 | abbr[title] {
645 | cursor: help;
646 | border-bottom: 1px dotted #999999;
647 | }
648 | abbr.initialism {
649 | font-size: 90%;
650 | text-transform: uppercase;
651 | }
652 | blockquote {
653 | padding: 0 0 0 15px;
654 | margin: 0 0 20px;
655 | border-left: 5px solid #eeeeee;
656 | }
657 | blockquote p {
658 | margin-bottom: 0;
659 | font-size: 16px;
660 | font-weight: 300;
661 | line-height: 25px;
662 | }
663 | blockquote small {
664 | display: block;
665 | line-height: 20px;
666 | color: #999999;
667 | }
668 | blockquote small:before {
669 | content: '\2014 \00A0';
670 | }
671 | blockquote.pull-right {
672 | float: right;
673 | padding-right: 15px;
674 | padding-left: 0;
675 | border-right: 5px solid #eeeeee;
676 | border-left: 0;
677 | }
678 | blockquote.pull-right p,
679 | blockquote.pull-right small {
680 | text-align: right;
681 | }
682 | blockquote.pull-right small:before {
683 | content: '';
684 | }
685 | blockquote.pull-right small:after {
686 | content: '\00A0 \2014';
687 | }
688 | q:before,
689 | q:after,
690 | blockquote:before,
691 | blockquote:after {
692 | content: "";
693 | }
694 | address {
695 | display: block;
696 | margin-bottom: 20px;
697 | font-style: normal;
698 | line-height: 20px;
699 | }
700 | code,
701 | pre {
702 | padding: 0 3px 2px;
703 | font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
704 | font-size: 11px;
705 | color: #333333;
706 | -webkit-border-radius: 3px;
707 | -moz-border-radius: 3px;
708 | border-radius: 3px;
709 | }
710 | code {
711 | padding: 2px 4px;
712 | color: #d14;
713 | background-color: #f7f7f9;
714 | border: 1px solid #e1e1e8;
715 | }
716 | pre {
717 | display: block;
718 | padding: 9.5px;
719 | margin: 0 0 10px;
720 | font-size: 12px;
721 | line-height: 20px;
722 | word-break: break-all;
723 | word-wrap: break-word;
724 | white-space: pre;
725 | white-space: pre-wrap;
726 | background-color: #f5f5f5;
727 | border: 1px solid #ccc;
728 | border: 1px solid rgba(0, 0, 0, 0.15);
729 | -webkit-border-radius: 4px;
730 | -moz-border-radius: 4px;
731 | border-radius: 4px;
732 | }
733 | pre.prettyprint {
734 | margin-bottom: 20px;
735 | }
736 | pre code {
737 | padding: 0;
738 | color: inherit;
739 | background-color: transparent;
740 | border: 0;
741 | }
742 | .pre-scrollable {
743 | max-height: 340px;
744 | overflow-y: scroll;
745 | }
746 | table {
747 | max-width: 100%;
748 | background-color: transparent;
749 | border-collapse: collapse;
750 | border-spacing: 0;
751 | }
752 | .table {
753 | width: 100%;
754 | margin-bottom: 20px;
755 | }
756 | .table th,
757 | .table td {
758 | padding: 8px;
759 | line-height: 20px;
760 | text-align: left;
761 | vertical-align: top;
762 | border-top: 1px solid #dddddd;
763 | }
764 | .table th {
765 | font-weight: bold;
766 | }
767 | .table thead th {
768 | vertical-align: bottom;
769 | }
770 | .table caption + thead tr:first-child th,
771 | .table caption + thead tr:first-child td,
772 | .table colgroup + thead tr:first-child th,
773 | .table colgroup + thead tr:first-child td,
774 | .table thead:first-child tr:first-child th,
775 | .table thead:first-child tr:first-child td {
776 | border-top: 0;
777 | }
778 | .table tbody + tbody {
779 | border-top: 2px solid #dddddd;
780 | }
781 | .table-condensed th,
782 | .table-condensed td {
783 | padding: 4px 5px;
784 | }
785 | .table-bordered {
786 | border: 1px solid #dddddd;
787 | border-collapse: separate;
788 | *border-collapse: collapse;
789 | border-left: 0;
790 | -webkit-border-radius: 4px;
791 | -moz-border-radius: 4px;
792 | border-radius: 4px;
793 | }
794 | .table-bordered th,
795 | .table-bordered td {
796 | border-left: 1px solid #dddddd;
797 | }
798 | .table-bordered caption + thead tr:first-child th,
799 | .table-bordered caption + tbody tr:first-child th,
800 | .table-bordered caption + tbody tr:first-child td,
801 | .table-bordered colgroup + thead tr:first-child th,
802 | .table-bordered colgroup + tbody tr:first-child th,
803 | .table-bordered colgroup + tbody tr:first-child td,
804 | .table-bordered thead:first-child tr:first-child th,
805 | .table-bordered tbody:first-child tr:first-child th,
806 | .table-bordered tbody:first-child tr:first-child td {
807 | border-top: 0;
808 | }
809 | .table-bordered thead:first-child tr:first-child th:first-child,
810 | .table-bordered tbody:first-child tr:first-child td:first-child {
811 | -webkit-border-top-left-radius: 4px;
812 | border-top-left-radius: 4px;
813 | -moz-border-radius-topleft: 4px;
814 | }
815 | .table-bordered thead:first-child tr:first-child th:last-child,
816 | .table-bordered tbody:first-child tr:first-child td:last-child {
817 | -webkit-border-top-right-radius: 4px;
818 | border-top-right-radius: 4px;
819 | -moz-border-radius-topright: 4px;
820 | }
821 | .table-bordered thead:last-child tr:last-child th:first-child,
822 | .table-bordered tbody:last-child tr:last-child td:first-child,
823 | .table-bordered tfoot:last-child tr:last-child td:first-child {
824 | -webkit-border-radius: 0 0 0 4px;
825 | -moz-border-radius: 0 0 0 4px;
826 | border-radius: 0 0 0 4px;
827 | -webkit-border-bottom-left-radius: 4px;
828 | border-bottom-left-radius: 4px;
829 | -moz-border-radius-bottomleft: 4px;
830 | }
831 | .table-bordered thead:last-child tr:last-child th:last-child,
832 | .table-bordered tbody:last-child tr:last-child td:last-child,
833 | .table-bordered tfoot:last-child tr:last-child td:last-child {
834 | -webkit-border-bottom-right-radius: 4px;
835 | border-bottom-right-radius: 4px;
836 | -moz-border-radius-bottomright: 4px;
837 | }
838 | .table-bordered caption + thead tr:first-child th:first-child,
839 | .table-bordered caption + tbody tr:first-child td:first-child,
840 | .table-bordered colgroup + thead tr:first-child th:first-child,
841 | .table-bordered colgroup + tbody tr:first-child td:first-child {
842 | -webkit-border-top-left-radius: 4px;
843 | border-top-left-radius: 4px;
844 | -moz-border-radius-topleft: 4px;
845 | }
846 | .table-bordered caption + thead tr:first-child th:last-child,
847 | .table-bordered caption + tbody tr:first-child td:last-child,
848 | .table-bordered colgroup + thead tr:first-child th:last-child,
849 | .table-bordered colgroup + tbody tr:first-child td:last-child {
850 | -webkit-border-top-right-radius: 4px;
851 | border-top-right-radius: 4px;
852 | -moz-border-radius-topleft: 4px;
853 | }
854 | .table-striped tbody tr:nth-child(odd) td,
855 | .table-striped tbody tr:nth-child(odd) th {
856 | background-color: #f9f9f9;
857 | }
858 | .table-hover tbody tr:hover td,
859 | .table-hover tbody tr:hover th {
860 | background-color: #f5f5f5;
861 | }
862 | table [class*=span],
863 | .row-fluid table [class*=span] {
864 | display: table-cell;
865 | float: none;
866 | margin-left: 0;
867 | }
868 | .table .span1 {
869 | float: none;
870 | width: 44px;
871 | margin-left: 0;
872 | }
873 | .table .span2 {
874 | float: none;
875 | width: 124px;
876 | margin-left: 0;
877 | }
878 | .table .span3 {
879 | float: none;
880 | width: 204px;
881 | margin-left: 0;
882 | }
883 | .table .span4 {
884 | float: none;
885 | width: 284px;
886 | margin-left: 0;
887 | }
888 | .table .span5 {
889 | float: none;
890 | width: 364px;
891 | margin-left: 0;
892 | }
893 | .table .span6 {
894 | float: none;
895 | width: 444px;
896 | margin-left: 0;
897 | }
898 | .table .span7 {
899 | float: none;
900 | width: 524px;
901 | margin-left: 0;
902 | }
903 | .table .span8 {
904 | float: none;
905 | width: 604px;
906 | margin-left: 0;
907 | }
908 | .table .span9 {
909 | float: none;
910 | width: 684px;
911 | margin-left: 0;
912 | }
913 | .table .span10 {
914 | float: none;
915 | width: 764px;
916 | margin-left: 0;
917 | }
918 | .table .span11 {
919 | float: none;
920 | width: 844px;
921 | margin-left: 0;
922 | }
923 | .table .span12 {
924 | float: none;
925 | width: 924px;
926 | margin-left: 0;
927 | }
928 | .table .span13 {
929 | float: none;
930 | width: 1004px;
931 | margin-left: 0;
932 | }
933 | .table .span14 {
934 | float: none;
935 | width: 1084px;
936 | margin-left: 0;
937 | }
938 | .table .span15 {
939 | float: none;
940 | width: 1164px;
941 | margin-left: 0;
942 | }
943 | .table .span16 {
944 | float: none;
945 | width: 1244px;
946 | margin-left: 0;
947 | }
948 | .table .span17 {
949 | float: none;
950 | width: 1324px;
951 | margin-left: 0;
952 | }
953 | .table .span18 {
954 | float: none;
955 | width: 1404px;
956 | margin-left: 0;
957 | }
958 | .table .span19 {
959 | float: none;
960 | width: 1484px;
961 | margin-left: 0;
962 | }
963 | .table .span20 {
964 | float: none;
965 | width: 1564px;
966 | margin-left: 0;
967 | }
968 | .table .span21 {
969 | float: none;
970 | width: 1644px;
971 | margin-left: 0;
972 | }
973 | .table .span22 {
974 | float: none;
975 | width: 1724px;
976 | margin-left: 0;
977 | }
978 | .table .span23 {
979 | float: none;
980 | width: 1804px;
981 | margin-left: 0;
982 | }
983 | .table .span24 {
984 | float: none;
985 | width: 1884px;
986 | margin-left: 0;
987 | }
988 | .table tbody tr.success td {
989 | background-color: #dff0d8;
990 | }
991 | .table tbody tr.error td {
992 | background-color: #f2dede;
993 | }
994 | .table tbody tr.warning td {
995 | background-color: #fcf8e3;
996 | }
997 | .table tbody tr.info td {
998 | background-color: #d9edf7;
999 | }
1000 | .table-hover tbody tr.success:hover td {
1001 | background-color: #d0e9c6;
1002 | }
1003 | .table-hover tbody tr.error:hover td {
1004 | background-color: #ebcccc;
1005 | }
1006 | .table-hover tbody tr.warning:hover td {
1007 | background-color: #faf2cc;
1008 | }
1009 | .table-hover tbody tr.info:hover td {
1010 | background-color: #c4e3f3;
1011 | }
1012 | [class^="icon-"],
1013 | [class*=" icon-"] {
1014 | display: inline-block;
1015 | width: 14px;
1016 | height: 14px;
1017 | *margin-right: .3em;
1018 | line-height: 14px;
1019 | vertical-align: text-top;
1020 | background-image: url("https://az340737.vo.msecnd.net/resources/glyphicons-halflings.png");
1021 | background-position: 14px 14px;
1022 | background-repeat: no-repeat;
1023 | margin-top: 1px;
1024 | }
1025 | /* White icons with optional class, or on hover/active states of certain elements */
1026 | .icon-white,
1027 | .nav-tabs > .active > a > [class^="icon-"],
1028 | .nav-tabs > .active > a > [class*=" icon-"],
1029 | .nav-pills > .active > a > [class^="icon-"],
1030 | .nav-pills > .active > a > [class*=" icon-"],
1031 | .nav-list > .active > a > [class^="icon-"],
1032 | .nav-list > .active > a > [class*=" icon-"],
1033 | .navbar-inverse .nav > .active > a > [class^="icon-"],
1034 | .navbar-inverse .nav > .active > a > [class*=" icon-"],
1035 | .dropdown-menu > li > a:hover > [class^="icon-"],
1036 | .dropdown-menu > li > a:hover > [class*=" icon-"],
1037 | .dropdown-menu > .active > a > [class^="icon-"],
1038 | .dropdown-menu > .active > a > [class*=" icon-"] {
1039 | background-image: url("https://az340737.vo.msecnd.net/resources/glyphicons-halflings-white.png");
1040 | }
1041 | .icon-glass {
1042 | background-position: 0 0;
1043 | }
1044 | .icon-music {
1045 | background-position: -24px 0;
1046 | }
1047 | .icon-search {
1048 | background-position: -48px 0;
1049 | }
1050 | .icon-envelope {
1051 | background-position: -72px 0;
1052 | }
1053 | .icon-heart {
1054 | background-position: -96px 0;
1055 | }
1056 | .icon-star {
1057 | background-position: -120px 0;
1058 | }
1059 | .icon-star-empty {
1060 | background-position: -144px 0;
1061 | }
1062 | .icon-user {
1063 | background-position: -168px 0;
1064 | }
1065 | .icon-film {
1066 | background-position: -192px 0;
1067 | }
1068 | .icon-th-large {
1069 | background-position: -216px 0;
1070 | }
1071 | .icon-th {
1072 | background-position: -240px 0;
1073 | }
1074 | .icon-th-list {
1075 | background-position: -264px 0;
1076 | }
1077 | .icon-ok {
1078 | background-position: -288px 0;
1079 | }
1080 | .icon-remove {
1081 | background-position: -312px 0;
1082 | }
1083 | .icon-zoom-in {
1084 | background-position: -336px 0;
1085 | }
1086 | .icon-zoom-out {
1087 | background-position: -360px 0;
1088 | }
1089 | .icon-off {
1090 | background-position: -384px 0;
1091 | }
1092 | .icon-signal {
1093 | background-position: -408px 0;
1094 | }
1095 | .icon-cog {
1096 | background-position: -432px 0;
1097 | }
1098 | .icon-trash {
1099 | background-position: -456px 0;
1100 | }
1101 | .icon-home {
1102 | background-position: 0 -24px;
1103 | }
1104 | .icon-file {
1105 | background-position: -24px -24px;
1106 | }
1107 | .icon-time {
1108 | background-position: -48px -24px;
1109 | }
1110 | .icon-road {
1111 | background-position: -72px -24px;
1112 | }
1113 | .icon-download-alt {
1114 | background-position: -96px -24px;
1115 | }
1116 | .icon-download {
1117 | background-position: -120px -24px;
1118 | }
1119 | .icon-upload {
1120 | background-position: -144px -24px;
1121 | }
1122 | .icon-inbox {
1123 | background-position: -168px -24px;
1124 | }
1125 | .icon-play-circle {
1126 | background-position: -192px -24px;
1127 | }
1128 | .icon-repeat {
1129 | background-position: -216px -24px;
1130 | }
1131 | .icon-refresh {
1132 | background-position: -240px -24px;
1133 | }
1134 | .icon-list-alt {
1135 | background-position: -264px -24px;
1136 | }
1137 | .icon-lock {
1138 | background-position: -287px -24px;
1139 | }
1140 | .icon-flag {
1141 | background-position: -312px -24px;
1142 | }
1143 | .icon-headphones {
1144 | background-position: -336px -24px;
1145 | }
1146 | .icon-volume-off {
1147 | background-position: -360px -24px;
1148 | }
1149 | .icon-volume-down {
1150 | background-position: -384px -24px;
1151 | }
1152 | .icon-volume-up {
1153 | background-position: -408px -24px;
1154 | }
1155 | .icon-qrcode {
1156 | background-position: -432px -24px;
1157 | }
1158 | .icon-barcode {
1159 | background-position: -456px -24px;
1160 | }
1161 | .icon-tag {
1162 | background-position: 0 -48px;
1163 | }
1164 | .icon-tags {
1165 | background-position: -25px -48px;
1166 | }
1167 | .icon-book {
1168 | background-position: -48px -48px;
1169 | }
1170 | .icon-bookmark {
1171 | background-position: -72px -48px;
1172 | }
1173 | .icon-print {
1174 | background-position: -96px -48px;
1175 | }
1176 | .icon-camera {
1177 | background-position: -120px -48px;
1178 | }
1179 | .icon-font {
1180 | background-position: -144px -48px;
1181 | }
1182 | .icon-bold {
1183 | background-position: -167px -48px;
1184 | }
1185 | .icon-italic {
1186 | background-position: -192px -48px;
1187 | }
1188 | .icon-text-height {
1189 | background-position: -216px -48px;
1190 | }
1191 | .icon-text-width {
1192 | background-position: -240px -48px;
1193 | }
1194 | .icon-align-left {
1195 | background-position: -264px -48px;
1196 | }
1197 | .icon-align-center {
1198 | background-position: -288px -48px;
1199 | }
1200 | .icon-align-right {
1201 | background-position: -312px -48px;
1202 | }
1203 | .icon-align-justify {
1204 | background-position: -336px -48px;
1205 | }
1206 | .icon-list {
1207 | background-position: -360px -48px;
1208 | }
1209 | .icon-indent-left {
1210 | background-position: -384px -48px;
1211 | }
1212 | .icon-indent-right {
1213 | background-position: -408px -48px;
1214 | }
1215 | .icon-facetime-video {
1216 | background-position: -432px -48px;
1217 | }
1218 | .icon-picture {
1219 | background-position: -456px -48px;
1220 | }
1221 | .icon-pencil {
1222 | background-position: 0 -72px;
1223 | }
1224 | .icon-map-marker {
1225 | background-position: -24px -72px;
1226 | }
1227 | .icon-adjust {
1228 | background-position: -48px -72px;
1229 | }
1230 | .icon-tint {
1231 | background-position: -72px -72px;
1232 | }
1233 | .icon-edit {
1234 | background-position: -96px -72px;
1235 | }
1236 | .icon-share {
1237 | background-position: -120px -72px;
1238 | }
1239 | .icon-check {
1240 | background-position: -144px -72px;
1241 | }
1242 | .icon-move {
1243 | background-position: -168px -72px;
1244 | }
1245 | .icon-step-backward {
1246 | background-position: -192px -72px;
1247 | }
1248 | .icon-fast-backward {
1249 | background-position: -216px -72px;
1250 | }
1251 | .icon-backward {
1252 | background-position: -240px -72px;
1253 | }
1254 | .icon-play {
1255 | background-position: -264px -72px;
1256 | }
1257 | .icon-pause {
1258 | background-position: -288px -72px;
1259 | }
1260 | .icon-stop {
1261 | background-position: -312px -72px;
1262 | }
1263 | .icon-forward {
1264 | background-position: -336px -72px;
1265 | }
1266 | .icon-fast-forward {
1267 | background-position: -360px -72px;
1268 | }
1269 | .icon-step-forward {
1270 | background-position: -384px -72px;
1271 | }
1272 | .icon-eject {
1273 | background-position: -408px -72px;
1274 | }
1275 | .icon-chevron-left {
1276 | background-position: -432px -72px;
1277 | }
1278 | .icon-chevron-right {
1279 | background-position: -456px -72px;
1280 | }
1281 | .icon-plus-sign {
1282 | background-position: 0 -96px;
1283 | }
1284 | .icon-minus-sign {
1285 | background-position: -24px -96px;
1286 | }
1287 | .icon-remove-sign {
1288 | background-position: -48px -96px;
1289 | }
1290 | .icon-ok-sign {
1291 | background-position: -72px -96px;
1292 | }
1293 | .icon-question-sign {
1294 | background-position: -96px -96px;
1295 | }
1296 | .icon-info-sign {
1297 | background-position: -120px -96px;
1298 | }
1299 | .icon-screenshot {
1300 | background-position: -144px -96px;
1301 | }
1302 | .icon-remove-circle {
1303 | background-position: -168px -96px;
1304 | }
1305 | .icon-ok-circle {
1306 | background-position: -192px -96px;
1307 | }
1308 | .icon-ban-circle {
1309 | background-position: -216px -96px;
1310 | }
1311 | .icon-arrow-left {
1312 | background-position: -240px -96px;
1313 | }
1314 | .icon-arrow-right {
1315 | background-position: -264px -96px;
1316 | }
1317 | .icon-arrow-up {
1318 | background-position: -289px -96px;
1319 | }
1320 | .icon-arrow-down {
1321 | background-position: -312px -96px;
1322 | }
1323 | .icon-share-alt {
1324 | background-position: -336px -96px;
1325 | }
1326 | .icon-resize-full {
1327 | background-position: -360px -96px;
1328 | }
1329 | .icon-resize-small {
1330 | background-position: -384px -96px;
1331 | }
1332 | .icon-plus {
1333 | background-position: -408px -96px;
1334 | }
1335 | .icon-minus {
1336 | background-position: -433px -96px;
1337 | }
1338 | .icon-asterisk {
1339 | background-position: -456px -96px;
1340 | }
1341 | .icon-exclamation-sign {
1342 | background-position: 0 -120px;
1343 | }
1344 | .icon-gift {
1345 | background-position: -24px -120px;
1346 | }
1347 | .icon-leaf {
1348 | background-position: -48px -120px;
1349 | }
1350 | .icon-fire {
1351 | background-position: -72px -120px;
1352 | }
1353 | .icon-eye-open {
1354 | background-position: -96px -120px;
1355 | }
1356 | .icon-eye-close {
1357 | background-position: -120px -120px;
1358 | }
1359 | .icon-warning-sign {
1360 | background-position: -144px -120px;
1361 | }
1362 | .icon-plane {
1363 | background-position: -168px -120px;
1364 | }
1365 | .icon-calendar {
1366 | background-position: -192px -120px;
1367 | }
1368 | .icon-random {
1369 | background-position: -216px -120px;
1370 | width: 16px;
1371 | }
1372 | .icon-comment {
1373 | background-position: -240px -120px;
1374 | }
1375 | .icon-magnet {
1376 | background-position: -264px -120px;
1377 | }
1378 | .icon-chevron-up {
1379 | background-position: -288px -120px;
1380 | }
1381 | .icon-chevron-down {
1382 | background-position: -313px -119px;
1383 | }
1384 | .icon-retweet {
1385 | background-position: -336px -120px;
1386 | }
1387 | .icon-shopping-cart {
1388 | background-position: -360px -120px;
1389 | }
1390 | .icon-folder-close {
1391 | background-position: -384px -120px;
1392 | }
1393 | .icon-folder-open {
1394 | background-position: -408px -120px;
1395 | width: 16px;
1396 | }
1397 | .icon-resize-vertical {
1398 | background-position: -432px -119px;
1399 | }
1400 | .icon-resize-horizontal {
1401 | background-position: -456px -118px;
1402 | }
1403 | .icon-hdd {
1404 | background-position: 0 -144px;
1405 | }
1406 | .icon-bullhorn {
1407 | background-position: -24px -144px;
1408 | }
1409 | .icon-bell {
1410 | background-position: -48px -144px;
1411 | }
1412 | .icon-certificate {
1413 | background-position: -72px -144px;
1414 | }
1415 | .icon-thumbs-up {
1416 | background-position: -96px -144px;
1417 | }
1418 | .icon-thumbs-down {
1419 | background-position: -120px -144px;
1420 | }
1421 | .icon-hand-right {
1422 | background-position: -144px -144px;
1423 | }
1424 | .icon-hand-left {
1425 | background-position: -168px -144px;
1426 | }
1427 | .icon-hand-up {
1428 | background-position: -192px -144px;
1429 | }
1430 | .icon-hand-down {
1431 | background-position: -216px -144px;
1432 | }
1433 | .icon-circle-arrow-right {
1434 | background-position: -240px -144px;
1435 | }
1436 | .icon-circle-arrow-left {
1437 | background-position: -264px -144px;
1438 | }
1439 | .icon-circle-arrow-up {
1440 | background-position: -288px -144px;
1441 | }
1442 | .icon-circle-arrow-down {
1443 | background-position: -312px -144px;
1444 | }
1445 | .icon-globe {
1446 | background-position: -336px -144px;
1447 | }
1448 | .icon-wrench {
1449 | background-position: -360px -144px;
1450 | }
1451 | .icon-tasks {
1452 | background-position: -384px -144px;
1453 | }
1454 | .icon-filter {
1455 | background-position: -408px -144px;
1456 | }
1457 | .icon-briefcase {
1458 | background-position: -432px -144px;
1459 | }
1460 | .icon-fullscreen {
1461 | background-position: -456px -144px;
1462 | }
1463 | .well {
1464 | min-height: 20px;
1465 | padding: 19px;
1466 | margin-bottom: 20px;
1467 | background-color: #f5f5f5;
1468 | border: 1px solid #e3e3e3;
1469 | -webkit-border-radius: 4px;
1470 | -moz-border-radius: 4px;
1471 | border-radius: 4px;
1472 | -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
1473 | -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
1474 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
1475 | }
1476 | .well blockquote {
1477 | border-color: #ddd;
1478 | border-color: rgba(0, 0, 0, 0.15);
1479 | }
1480 | .well-large {
1481 | padding: 24px;
1482 | -webkit-border-radius: 6px;
1483 | -moz-border-radius: 6px;
1484 | border-radius: 6px;
1485 | }
1486 | .well-small {
1487 | padding: 9px;
1488 | -webkit-border-radius: 3px;
1489 | -moz-border-radius: 3px;
1490 | border-radius: 3px;
1491 | }
1492 | .btn {
1493 | display: inline-block;
1494 | *display: inline;
1495 | /* IE7 inline-block hack */
1496 |
1497 | *zoom: 1;
1498 | padding: 4px 14px;
1499 | margin-bottom: 0;
1500 | font-size: 13px;
1501 | line-height: 20px;
1502 | *line-height: 20px;
1503 | text-align: center;
1504 | vertical-align: middle;
1505 | cursor: pointer;
1506 | color: #333333;
1507 | text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
1508 | background-color: #f5f5f5;
1509 | background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
1510 | background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
1511 | background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
1512 | background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
1513 | background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
1514 | background-repeat: repeat-x;
1515 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);
1516 | border-color: #e6e6e6 #e6e6e6 #bfbfbf;
1517 | border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1518 | *background-color: #e6e6e6;
1519 | /* Darken IE7 buttons by default so they stand out more given they won't have borders */
1520 |
1521 | filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1522 | border: 1px solid #bbbbbb;
1523 | *border: 0;
1524 | border-bottom-color: #a2a2a2;
1525 | -webkit-border-radius: 4px;
1526 | -moz-border-radius: 4px;
1527 | border-radius: 4px;
1528 | *margin-left: .3em;
1529 | -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
1530 | -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
1531 | box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
1532 | }
1533 | .btn:hover,
1534 | .btn:active,
1535 | .btn.active,
1536 | .btn.disabled,
1537 | .btn[disabled] {
1538 | color: #333333;
1539 | background-color: #e6e6e6;
1540 | *background-color: #d9d9d9;
1541 | }
1542 | .btn:active,
1543 | .btn.active {
1544 | background-color: #cccccc \9;
1545 | }
1546 | .btn:first-child {
1547 | *margin-left: 0;
1548 | }
1549 | .btn:hover {
1550 | color: #333333;
1551 | text-decoration: none;
1552 | background-color: #e6e6e6;
1553 | *background-color: #d9d9d9;
1554 | /* Buttons in IE7 don't get borders, so darken on hover */
1555 |
1556 | background-position: 0 -15px;
1557 | -webkit-transition: background-position 0.1s linear;
1558 | -moz-transition: background-position 0.1s linear;
1559 | -o-transition: background-position 0.1s linear;
1560 | transition: background-position 0.1s linear;
1561 | }
1562 | .btn:focus {
1563 | outline: thin dotted #333;
1564 | outline: 5px auto -webkit-focus-ring-color;
1565 | outline-offset: -2px;
1566 | }
1567 | .btn.active,
1568 | .btn:active {
1569 | background-color: #e6e6e6;
1570 | background-color: #d9d9d9 \9;
1571 | background-image: none;
1572 | outline: 0;
1573 | -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
1574 | -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
1575 | box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
1576 | }
1577 | .btn.disabled,
1578 | .btn[disabled] {
1579 | cursor: default;
1580 | background-color: #e6e6e6;
1581 | background-image: none;
1582 | opacity: 0.65;
1583 | filter: alpha(opacity=65);
1584 | -webkit-box-shadow: none;
1585 | -moz-box-shadow: none;
1586 | box-shadow: none;
1587 | }
1588 | .btn-large {
1589 | padding: 9px 14px;
1590 | font-size: 15px;
1591 | line-height: normal;
1592 | -webkit-border-radius: 5px;
1593 | -moz-border-radius: 5px;
1594 | border-radius: 5px;
1595 | }
1596 | .btn-large [class^="icon-"] {
1597 | margin-top: 2px;
1598 | }
1599 | .btn-small {
1600 | padding: 3px 9px;
1601 | font-size: 11px;
1602 | line-height: 18px;
1603 | }
1604 | .btn-small [class^="icon-"] {
1605 | margin-top: 0;
1606 | }
1607 | .btn-mini {
1608 | padding: 2px 6px;
1609 | font-size: 10px;
1610 | line-height: 17px;
1611 | }
1612 | .btn-block {
1613 | display: block;
1614 | width: 100%;
1615 | padding-left: 0;
1616 | padding-right: 0;
1617 | -webkit-box-sizing: border-box;
1618 | -moz-box-sizing: border-box;
1619 | box-sizing: border-box;
1620 | }
1621 | .btn-block + .btn-block {
1622 | margin-top: 5px;
1623 | }
1624 | input[type="submit"].btn-block,
1625 | input[type="reset"].btn-block,
1626 | input[type="button"].btn-block {
1627 | width: 100%;
1628 | }
1629 | .btn-primary.active,
1630 | .btn-warning.active,
1631 | .btn-danger.active,
1632 | .btn-success.active,
1633 | .btn-info.active,
1634 | .btn-inverse.active {
1635 | color: rgba(255, 255, 255, 0.75);
1636 | }
1637 | .btn {
1638 | border-color: #c5c5c5;
1639 | border-color: rgba(0, 0, 0, 0.15) rgba(0, 0, 0, 0.15) rgba(0, 0, 0, 0.25);
1640 | }
1641 | .btn-primary {
1642 | color: #ffffff;
1643 | text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
1644 | background-color: #0054ab;
1645 | background-image: -moz-linear-gradient(top, #0063ca, #003e7e);
1646 | background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0063ca), to(#003e7e));
1647 | background-image: -webkit-linear-gradient(top, #0063ca, #003e7e);
1648 | background-image: -o-linear-gradient(top, #0063ca, #003e7e);
1649 | background-image: linear-gradient(to bottom, #0063ca, #003e7e);
1650 | background-repeat: repeat-x;
1651 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0063ca', endColorstr='#ff003e7e', GradientType=0);
1652 | border-color: #003e7e #003e7e #001831;
1653 | border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1654 | *background-color: #003e7e;
1655 | /* Darken IE7 buttons by default so they stand out more given they won't have borders */
1656 |
1657 | filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1658 | }
1659 | .btn-primary:hover,
1660 | .btn-primary:active,
1661 | .btn-primary.active,
1662 | .btn-primary.disabled,
1663 | .btn-primary[disabled] {
1664 | color: #ffffff;
1665 | background-color: #003e7e;
1666 | *background-color: #003164;
1667 | }
1668 | .btn-primary:active,
1669 | .btn-primary.active {
1670 | background-color: #00254a \9;
1671 | }
1672 | .btn-warning {
1673 | color: #ffffff;
1674 | text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
1675 | background-color: #faa732;
1676 | background-image: -moz-linear-gradient(top, #fbb450, #f89406);
1677 | background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
1678 | background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
1679 | background-image: -o-linear-gradient(top, #fbb450, #f89406);
1680 | background-image: linear-gradient(to bottom, #fbb450, #f89406);
1681 | background-repeat: repeat-x;
1682 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0);
1683 | border-color: #f89406 #f89406 #ad6704;
1684 | border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1685 | *background-color: #f89406;
1686 | /* Darken IE7 buttons by default so they stand out more given they won't have borders */
1687 |
1688 | filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1689 | }
1690 | .btn-warning:hover,
1691 | .btn-warning:active,
1692 | .btn-warning.active,
1693 | .btn-warning.disabled,
1694 | .btn-warning[disabled] {
1695 | color: #ffffff;
1696 | background-color: #f89406;
1697 | *background-color: #df8505;
1698 | }
1699 | .btn-warning:active,
1700 | .btn-warning.active {
1701 | background-color: #c67605 \9;
1702 | }
1703 | .btn-danger {
1704 | color: #ffffff;
1705 | text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
1706 | background-color: #da4f49;
1707 | background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f);
1708 | background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));
1709 | background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f);
1710 | background-image: -o-linear-gradient(top, #ee5f5b, #bd362f);
1711 | background-image: linear-gradient(to bottom, #ee5f5b, #bd362f);
1712 | background-repeat: repeat-x;
1713 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffbd362f', GradientType=0);
1714 | border-color: #bd362f #bd362f #802420;
1715 | border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1716 | *background-color: #bd362f;
1717 | /* Darken IE7 buttons by default so they stand out more given they won't have borders */
1718 |
1719 | filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1720 | }
1721 | .btn-danger:hover,
1722 | .btn-danger:active,
1723 | .btn-danger.active,
1724 | .btn-danger.disabled,
1725 | .btn-danger[disabled] {
1726 | color: #ffffff;
1727 | background-color: #bd362f;
1728 | *background-color: #a9302a;
1729 | }
1730 | .btn-danger:active,
1731 | .btn-danger.active {
1732 | background-color: #942a25 \9;
1733 | }
1734 | .btn-success {
1735 | color: #ffffff;
1736 | text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
1737 | background-color: #5bb75b;
1738 | background-image: -moz-linear-gradient(top, #62c462, #51a351);
1739 | background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));
1740 | background-image: -webkit-linear-gradient(top, #62c462, #51a351);
1741 | background-image: -o-linear-gradient(top, #62c462, #51a351);
1742 | background-image: linear-gradient(to bottom, #62c462, #51a351);
1743 | background-repeat: repeat-x;
1744 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff51a351', GradientType=0);
1745 | border-color: #51a351 #51a351 #387038;
1746 | border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1747 | *background-color: #51a351;
1748 | /* Darken IE7 buttons by default so they stand out more given they won't have borders */
1749 |
1750 | filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1751 | }
1752 | .btn-success:hover,
1753 | .btn-success:active,
1754 | .btn-success.active,
1755 | .btn-success.disabled,
1756 | .btn-success[disabled] {
1757 | color: #ffffff;
1758 | background-color: #51a351;
1759 | *background-color: #499249;
1760 | }
1761 | .btn-success:active,
1762 | .btn-success.active {
1763 | background-color: #408140 \9;
1764 | }
1765 | .btn-info {
1766 | color: #ffffff;
1767 | text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
1768 | background-color: #49afcd;
1769 | background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4);
1770 | background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));
1771 | background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4);
1772 | background-image: -o-linear-gradient(top, #5bc0de, #2f96b4);
1773 | background-image: linear-gradient(to bottom, #5bc0de, #2f96b4);
1774 | background-repeat: repeat-x;
1775 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2f96b4', GradientType=0);
1776 | border-color: #2f96b4 #2f96b4 #1f6377;
1777 | border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1778 | *background-color: #2f96b4;
1779 | /* Darken IE7 buttons by default so they stand out more given they won't have borders */
1780 |
1781 | filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1782 | }
1783 | .btn-info:hover,
1784 | .btn-info:active,
1785 | .btn-info.active,
1786 | .btn-info.disabled,
1787 | .btn-info[disabled] {
1788 | color: #ffffff;
1789 | background-color: #2f96b4;
1790 | *background-color: #2a85a0;
1791 | }
1792 | .btn-info:active,
1793 | .btn-info.active {
1794 | background-color: #24748c \9;
1795 | }
1796 | .btn-inverse {
1797 | color: #ffffff;
1798 | text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
1799 | background-color: #363636;
1800 | background-image: -moz-linear-gradient(top, #444444, #222222);
1801 | background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#444444), to(#222222));
1802 | background-image: -webkit-linear-gradient(top, #444444, #222222);
1803 | background-image: -o-linear-gradient(top, #444444, #222222);
1804 | background-image: linear-gradient(to bottom, #444444, #222222);
1805 | background-repeat: repeat-x;
1806 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff444444', endColorstr='#ff222222', GradientType=0);
1807 | border-color: #222222 #222222 #000000;
1808 | border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1809 | *background-color: #222222;
1810 | /* Darken IE7 buttons by default so they stand out more given they won't have borders */
1811 |
1812 | filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1813 | }
1814 | .btn-inverse:hover,
1815 | .btn-inverse:active,
1816 | .btn-inverse.active,
1817 | .btn-inverse.disabled,
1818 | .btn-inverse[disabled] {
1819 | color: #ffffff;
1820 | background-color: #222222;
1821 | *background-color: #151515;
1822 | }
1823 | .btn-inverse:active,
1824 | .btn-inverse.active {
1825 | background-color: #080808 \9;
1826 | }
1827 | button.btn,
1828 | input[type="submit"].btn {
1829 | *padding-top: 3px;
1830 | *padding-bottom: 3px;
1831 | }
1832 | button.btn::-moz-focus-inner,
1833 | input[type="submit"].btn::-moz-focus-inner {
1834 | padding: 0;
1835 | border: 0;
1836 | }
1837 | button.btn.btn-large,
1838 | input[type="submit"].btn.btn-large {
1839 | *padding-top: 7px;
1840 | *padding-bottom: 7px;
1841 | }
1842 | button.btn.btn-small,
1843 | input[type="submit"].btn.btn-small {
1844 | *padding-top: 3px;
1845 | *padding-bottom: 3px;
1846 | }
1847 | button.btn.btn-mini,
1848 | input[type="submit"].btn.btn-mini {
1849 | *padding-top: 1px;
1850 | *padding-bottom: 1px;
1851 | }
1852 | .btn-link,
1853 | .btn-link:active,
1854 | .btn-link[disabled] {
1855 | background-color: transparent;
1856 | background-image: none;
1857 | -webkit-box-shadow: none;
1858 | -moz-box-shadow: none;
1859 | box-shadow: none;
1860 | }
1861 | .btn-link {
1862 | border-color: transparent;
1863 | cursor: pointer;
1864 | color: #0063ca;
1865 | -webkit-border-radius: 0;
1866 | -moz-border-radius: 0;
1867 | border-radius: 0;
1868 | }
1869 | .btn-link:hover {
1870 | color: #003e7e;
1871 | text-decoration: underline;
1872 | background-color: transparent;
1873 | }
1874 | .btn-link[disabled]:hover {
1875 | color: #333333;
1876 | text-decoration: none;
1877 | }
1878 | .btn-group {
1879 | position: relative;
1880 | font-size: 0;
1881 | vertical-align: middle;
1882 | white-space: nowrap;
1883 | *margin-left: .3em;
1884 | }
1885 | .btn-group:first-child {
1886 | *margin-left: 0;
1887 | }
1888 | .btn-group + .btn-group {
1889 | margin-left: 5px;
1890 | }
1891 | .btn-toolbar {
1892 | font-size: 0;
1893 | margin-top: 10px;
1894 | margin-bottom: 10px;
1895 | }
1896 | .btn-toolbar .btn-group {
1897 | display: inline-block;
1898 | *display: inline;
1899 | /* IE7 inline-block hack */
1900 |
1901 | *zoom: 1;
1902 | }
1903 | .btn-toolbar .btn + .btn,
1904 | .btn-toolbar .btn-group + .btn,
1905 | .btn-toolbar .btn + .btn-group {
1906 | margin-left: 5px;
1907 | }
1908 | .btn-group > .btn {
1909 | position: relative;
1910 | -webkit-border-radius: 0;
1911 | -moz-border-radius: 0;
1912 | border-radius: 0;
1913 | }
1914 | .btn-group > .btn + .btn {
1915 | margin-left: -1px;
1916 | }
1917 | .btn-group > .btn,
1918 | .btn-group > .dropdown-menu {
1919 | font-size: 13px;
1920 | }
1921 | .btn-group > .btn-mini {
1922 | font-size: 11px;
1923 | }
1924 | .btn-group > .btn-small {
1925 | font-size: 12px;
1926 | }
1927 | .btn-group > .btn-large {
1928 | font-size: 16px;
1929 | }
1930 | .btn-group > .btn:first-child {
1931 | margin-left: 0;
1932 | -webkit-border-top-left-radius: 4px;
1933 | -moz-border-radius-topleft: 4px;
1934 | border-top-left-radius: 4px;
1935 | -webkit-border-bottom-left-radius: 4px;
1936 | -moz-border-radius-bottomleft: 4px;
1937 | border-bottom-left-radius: 4px;
1938 | }
1939 | .btn-group > .btn:last-child,
1940 | .btn-group > .dropdown-toggle {
1941 | -webkit-border-top-right-radius: 4px;
1942 | -moz-border-radius-topright: 4px;
1943 | border-top-right-radius: 4px;
1944 | -webkit-border-bottom-right-radius: 4px;
1945 | -moz-border-radius-bottomright: 4px;
1946 | border-bottom-right-radius: 4px;
1947 | }
1948 | .btn-group > .btn.large:first-child {
1949 | margin-left: 0;
1950 | -webkit-border-top-left-radius: 6px;
1951 | -moz-border-radius-topleft: 6px;
1952 | border-top-left-radius: 6px;
1953 | -webkit-border-bottom-left-radius: 6px;
1954 | -moz-border-radius-bottomleft: 6px;
1955 | border-bottom-left-radius: 6px;
1956 | }
1957 | .btn-group > .btn.large:last-child,
1958 | .btn-group > .large.dropdown-toggle {
1959 | -webkit-border-top-right-radius: 6px;
1960 | -moz-border-radius-topright: 6px;
1961 | border-top-right-radius: 6px;
1962 | -webkit-border-bottom-right-radius: 6px;
1963 | -moz-border-radius-bottomright: 6px;
1964 | border-bottom-right-radius: 6px;
1965 | }
1966 | .btn-group > .btn:hover,
1967 | .btn-group > .btn:focus,
1968 | .btn-group > .btn:active,
1969 | .btn-group > .btn.active {
1970 | z-index: 2;
1971 | }
1972 | .btn-group .dropdown-toggle:active,
1973 | .btn-group.open .dropdown-toggle {
1974 | outline: 0;
1975 | }
1976 | .btn-group > .btn + .dropdown-toggle {
1977 | padding-left: 8px;
1978 | padding-right: 8px;
1979 | -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);
1980 | -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);
1981 | 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 | *padding-top: 5px;
1983 | *padding-bottom: 5px;
1984 | }
1985 | .btn-group > .btn-mini + .dropdown-toggle {
1986 | padding-left: 5px;
1987 | padding-right: 5px;
1988 | *padding-top: 2px;
1989 | *padding-bottom: 2px;
1990 | }
1991 | .btn-group > .btn-small + .dropdown-toggle {
1992 | *padding-top: 5px;
1993 | *padding-bottom: 4px;
1994 | }
1995 | .btn-group > .btn-large + .dropdown-toggle {
1996 | padding-left: 12px;
1997 | padding-right: 12px;
1998 | *padding-top: 7px;
1999 | *padding-bottom: 7px;
2000 | }
2001 | .btn-group.open .dropdown-toggle {
2002 | background-image: none;
2003 | -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
2004 | -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
2005 | box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
2006 | }
2007 | .btn-group.open .btn.dropdown-toggle {
2008 | background-color: #e6e6e6;
2009 | }
2010 | .btn-group.open .btn-primary.dropdown-toggle {
2011 | background-color: #003e7e;
2012 | }
2013 | .btn-group.open .btn-warning.dropdown-toggle {
2014 | background-color: #f89406;
2015 | }
2016 | .btn-group.open .btn-danger.dropdown-toggle {
2017 | background-color: #bd362f;
2018 | }
2019 | .btn-group.open .btn-success.dropdown-toggle {
2020 | background-color: #51a351;
2021 | }
2022 | .btn-group.open .btn-info.dropdown-toggle {
2023 | background-color: #2f96b4;
2024 | }
2025 | .btn-group.open .btn-inverse.dropdown-toggle {
2026 | background-color: #222222;
2027 | }
2028 | .btn .caret {
2029 | margin-top: 8px;
2030 | margin-left: 0;
2031 | }
2032 | .btn-mini .caret,
2033 | .btn-small .caret,
2034 | .btn-large .caret {
2035 | margin-top: 6px;
2036 | }
2037 | .btn-large .caret {
2038 | border-left-width: 5px;
2039 | border-right-width: 5px;
2040 | border-top-width: 5px;
2041 | }
2042 | .dropup .btn-large .caret {
2043 | border-bottom: 5px solid #000000;
2044 | border-top: 0;
2045 | }
2046 | .btn-primary .caret,
2047 | .btn-warning .caret,
2048 | .btn-danger .caret,
2049 | .btn-info .caret,
2050 | .btn-success .caret,
2051 | .btn-inverse .caret {
2052 | border-top-color: #ffffff;
2053 | border-bottom-color: #ffffff;
2054 | }
2055 | .btn-group-vertical {
2056 | display: inline-block;
2057 | *display: inline;
2058 | /* IE7 inline-block hack */
2059 |
2060 | *zoom: 1;
2061 | }
2062 | .btn-group-vertical .btn {
2063 | display: block;
2064 | float: none;
2065 | width: 100%;
2066 | -webkit-border-radius: 0;
2067 | -moz-border-radius: 0;
2068 | border-radius: 0;
2069 | }
2070 | .btn-group-vertical .btn + .btn {
2071 | margin-left: 0;
2072 | margin-top: -1px;
2073 | }
2074 | .btn-group-vertical .btn:first-child {
2075 | -webkit-border-radius: 4px 4px 0 0;
2076 | -moz-border-radius: 4px 4px 0 0;
2077 | border-radius: 4px 4px 0 0;
2078 | }
2079 | .btn-group-vertical .btn:last-child {
2080 | -webkit-border-radius: 0 0 4px 4px;
2081 | -moz-border-radius: 0 0 4px 4px;
2082 | border-radius: 0 0 4px 4px;
2083 | }
2084 | .btn-group-vertical .btn-large:first-child {
2085 | -webkit-border-radius: 6px 6px 0 0;
2086 | -moz-border-radius: 6px 6px 0 0;
2087 | border-radius: 6px 6px 0 0;
2088 | }
2089 | .btn-group-vertical .btn-large:last-child {
2090 | -webkit-border-radius: 0 0 6px 6px;
2091 | -moz-border-radius: 0 0 6px 6px;
2092 | border-radius: 0 0 6px 6px;
2093 | }
2094 | .alert {
2095 | padding: 8px 35px 8px 14px;
2096 | margin-bottom: 20px;
2097 | text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
2098 | background-color: #fcf8e3;
2099 | border: 1px solid #fbeed5;
2100 | -webkit-border-radius: 4px;
2101 | -moz-border-radius: 4px;
2102 | border-radius: 4px;
2103 | color: #c09853;
2104 | }
2105 | .alert h4 {
2106 | margin: 0;
2107 | }
2108 | .alert .close {
2109 | position: relative;
2110 | top: -2px;
2111 | right: -21px;
2112 | line-height: 20px;
2113 | }
2114 | .alert-success {
2115 | background-color: #dff0d8;
2116 | border-color: #d6e9c6;
2117 | color: #468847;
2118 | }
2119 | .alert-danger,
2120 | .alert-error {
2121 | background-color: #f2dede;
2122 | border-color: #eed3d7;
2123 | color: #b94a48;
2124 | }
2125 | .alert-info {
2126 | background-color: #d9edf7;
2127 | border-color: #bce8f1;
2128 | color: #3a87ad;
2129 | }
2130 | .alert-block {
2131 | padding-top: 14px;
2132 | padding-bottom: 14px;
2133 | }
2134 | .alert-block > p,
2135 | .alert-block > ul {
2136 | margin-bottom: 0;
2137 | }
2138 | .alert-block p + p {
2139 | margin-top: 5px;
2140 | }
2141 | .nav {
2142 | margin-left: 0;
2143 | margin-bottom: 20px;
2144 | list-style: none;
2145 | }
2146 | .nav > li > a {
2147 | display: block;
2148 | }
2149 | .nav > li > a:hover {
2150 | text-decoration: none;
2151 | background-color: #eeeeee;
2152 | }
2153 | .nav > .pull-right {
2154 | float: right;
2155 | }
2156 | .nav-header {
2157 | display: block;
2158 | padding: 3px 15px;
2159 | font-size: 11px;
2160 | font-weight: bold;
2161 | line-height: 20px;
2162 | color: #999999;
2163 | text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
2164 | text-transform: uppercase;
2165 | }
2166 | .nav li + .nav-header {
2167 | margin-top: 9px;
2168 | }
2169 | .nav-list {
2170 | padding-left: 15px;
2171 | padding-right: 15px;
2172 | margin-bottom: 0;
2173 | }
2174 | .nav-list > li > a,
2175 | .nav-list .nav-header {
2176 | margin-left: -15px;
2177 | margin-right: -15px;
2178 | text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
2179 | }
2180 | .nav-list > li > a {
2181 | padding: 3px 15px;
2182 | }
2183 | .nav-list > .active > a,
2184 | .nav-list > .active > a:hover {
2185 | color: #ffffff;
2186 | text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
2187 | background-color: #0063ca;
2188 | }
2189 | .nav-list [class^="icon-"] {
2190 | margin-right: 2px;
2191 | }
2192 | .nav-list .divider {
2193 | *width: 100%;
2194 | height: 1px;
2195 | margin: 9px 1px;
2196 | *margin: -5px 0 5px;
2197 | overflow: hidden;
2198 | background-color: #e5e5e5;
2199 | border-bottom: 1px solid #ffffff;
2200 | }
2201 | .nav > .disabled > a {
2202 | color: #999999;
2203 | }
2204 | .nav > .disabled > a:hover {
2205 | text-decoration: none;
2206 | background-color: transparent;
2207 | cursor: default;
2208 | }
2209 | .navbar {
2210 | overflow: visible;
2211 | margin-bottom: 20px;
2212 | color: #777777;
2213 | *position: relative;
2214 | *z-index: 2;
2215 | }
2216 | .navbar-inner {
2217 | min-height: 40px;
2218 | padding-left: 20px;
2219 | padding-right: 20px;
2220 | background-color: #fafafa;
2221 | background-image: -moz-linear-gradient(top, #ffffff, #f2f2f2);
2222 | background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#f2f2f2));
2223 | background-image: -webkit-linear-gradient(top, #ffffff, #f2f2f2);
2224 | background-image: -o-linear-gradient(top, #ffffff, #f2f2f2);
2225 | background-image: linear-gradient(to bottom, #ffffff, #f2f2f2);
2226 | background-repeat: repeat-x;
2227 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff2f2f2', GradientType=0);
2228 | border: 1px solid #d4d4d4;
2229 | -webkit-border-radius: 4px;
2230 | -moz-border-radius: 4px;
2231 | border-radius: 4px;
2232 | -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
2233 | -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
2234 | box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
2235 | *zoom: 1;
2236 | }
2237 | .navbar-inner:before,
2238 | .navbar-inner:after {
2239 | display: table;
2240 | content: "";
2241 | line-height: 0;
2242 | }
2243 | .navbar-inner:after {
2244 | clear: both;
2245 | }
2246 | .navbar .container {
2247 | width: auto;
2248 | }
2249 | .nav-collapse.collapse {
2250 | height: auto;
2251 | }
2252 | .navbar .brand {
2253 | float: left;
2254 | display: block;
2255 | padding: 4px 20px 0px;
2256 | margin-left: -20px;
2257 | font-size: 20px;
2258 | font-weight: 200;
2259 | color: #777777;
2260 | text-shadow: 0 1px 0 #ffffff;
2261 | }
2262 | .navbar .brand:hover {
2263 | text-decoration: none;
2264 | }
2265 | .navbar-text {
2266 | margin-bottom: 0;
2267 | line-height: 40px;
2268 | }
2269 | .navbar-link {
2270 | color: #777777;
2271 | }
2272 | .navbar-link:hover {
2273 | color: #333333;
2274 | }
2275 | .navbar .divider-vertical {
2276 | height: 40px;
2277 | margin: 0 9px;
2278 | border-left: 1px solid #f2f2f2;
2279 | border-right: 1px solid #ffffff;
2280 | }
2281 | .navbar .btn,
2282 | .navbar .btn-group {
2283 | margin-top: 5px;
2284 | }
2285 | .navbar .btn-group .btn,
2286 | .navbar .input-prepend .btn,
2287 | .navbar .input-append .btn {
2288 | margin-top: 0;
2289 | }
2290 | .navbar-form {
2291 | margin-bottom: 0;
2292 | *zoom: 1;
2293 | }
2294 | .navbar-form:before,
2295 | .navbar-form:after {
2296 | display: table;
2297 | content: "";
2298 | line-height: 0;
2299 | }
2300 | .navbar-form:after {
2301 | clear: both;
2302 | }
2303 | .navbar-form input,
2304 | .navbar-form select,
2305 | .navbar-form .radio,
2306 | .navbar-form .checkbox {
2307 | margin-top: 5px;
2308 | }
2309 | .navbar-form input,
2310 | .navbar-form select,
2311 | .navbar-form .btn {
2312 | display: inline-block;
2313 | margin-bottom: 0;
2314 | }
2315 | .navbar-form input[type="image"],
2316 | .navbar-form input[type="checkbox"],
2317 | .navbar-form input[type="radio"] {
2318 | margin-top: 3px;
2319 | }
2320 | .navbar-form .input-append,
2321 | .navbar-form .input-prepend {
2322 | margin-top: 6px;
2323 | white-space: nowrap;
2324 | }
2325 | .navbar-form .input-append input,
2326 | .navbar-form .input-prepend input {
2327 | margin-top: 0;
2328 | }
2329 | .navbar-search {
2330 | position: relative;
2331 | float: left;
2332 | margin-top: 5px;
2333 | margin-bottom: 0;
2334 | }
2335 | .navbar-search .search-query {
2336 | margin-bottom: 0;
2337 | padding: 4px 14px;
2338 | font-family: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
2339 | font-size: 13px;
2340 | font-weight: normal;
2341 | line-height: 1;
2342 | -webkit-border-radius: 15px;
2343 | -moz-border-radius: 15px;
2344 | border-radius: 15px;
2345 | }
2346 | .navbar-static-top {
2347 | position: static;
2348 | width: 100%;
2349 | margin-bottom: 0;
2350 | }
2351 | .navbar-static-top .navbar-inner {
2352 | -webkit-border-radius: 0;
2353 | -moz-border-radius: 0;
2354 | border-radius: 0;
2355 | }
2356 | .navbar-fixed-top,
2357 | .navbar-fixed-bottom {
2358 | position: fixed;
2359 | right: 0;
2360 | left: 0;
2361 | z-index: 10300;
2362 | margin-bottom: 0;
2363 | }
2364 | .navbar-fixed-top .navbar-inner,
2365 | .navbar-static-top .navbar-inner {
2366 | border-width: 0 0 1px;
2367 | }
2368 | .navbar-fixed-bottom .navbar-inner {
2369 | border-width: 1px 0 0;
2370 | }
2371 | .navbar-fixed-top .navbar-inner,
2372 | .navbar-fixed-bottom .navbar-inner {
2373 | padding-left: 0;
2374 | padding-right: 0;
2375 | -webkit-border-radius: 0;
2376 | -moz-border-radius: 0;
2377 | border-radius: 0;
2378 | }
2379 | .navbar-static-top .container,
2380 | .navbar-fixed-top .container,
2381 | .navbar-fixed-bottom .container {
2382 | width: 940px;
2383 | }
2384 | .navbar-fixed-top {
2385 | top: 0;
2386 | }
2387 | .navbar-fixed-top .navbar-inner,
2388 | .navbar-static-top .navbar-inner {
2389 | -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 1px 10px rgba(0, 0, 0, 0.1);
2390 | -moz-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 1px 10px rgba(0, 0, 0, 0.1);
2391 | box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 1px 10px rgba(0, 0, 0, 0.1);
2392 | }
2393 | .navbar-fixed-bottom {
2394 | bottom: 0;
2395 | }
2396 | .navbar-fixed-bottom .navbar-inner {
2397 | -webkit-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1), 0 -1px 10px rgba(0, 0, 0, 0.1);
2398 | -moz-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1), 0 -1px 10px rgba(0, 0, 0, 0.1);
2399 | box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1), 0 -1px 10px rgba(0, 0, 0, 0.1);
2400 | }
2401 | .navbar .nav {
2402 | position: relative;
2403 | left: 0;
2404 | display: block;
2405 | float: left;
2406 | margin: 0 10px 0 0;
2407 | }
2408 | .navbar .nav.pull-right {
2409 | float: right;
2410 | margin-right: 0;
2411 | }
2412 | .navbar .nav > li {
2413 | float: left;
2414 | }
2415 | .navbar .nav > li > a {
2416 | float: none;
2417 | padding: 10px 15px 10px;
2418 | color: #777777;
2419 | text-decoration: none;
2420 | text-shadow: 0 1px 0 #ffffff;
2421 | }
2422 | .navbar .nav .dropdown-toggle .caret {
2423 | margin-top: 8px;
2424 | }
2425 | .navbar .nav > li > a:focus,
2426 | .navbar .nav > li > a:hover {
2427 | background-color: transparent;
2428 | color: #333333;
2429 | text-decoration: none;
2430 | }
2431 | .navbar .nav > .active > a,
2432 | .navbar .nav > .active > a:hover,
2433 | .navbar .nav > .active > a:focus {
2434 | color: #555555;
2435 | text-decoration: none;
2436 | background-color: #e5e5e5;
2437 | -webkit-box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125);
2438 | -moz-box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125);
2439 | box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125);
2440 | }
2441 | .navbar .btn-navbar {
2442 | display: none;
2443 | float: right;
2444 | padding: 7px 10px;
2445 | margin-left: 5px;
2446 | margin-right: 5px;
2447 | color: #ffffff;
2448 | text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
2449 | background-color: #ededed;
2450 | background-image: -moz-linear-gradient(top, #f2f2f2, #e5e5e5);
2451 | background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f2f2f2), to(#e5e5e5));
2452 | background-image: -webkit-linear-gradient(top, #f2f2f2, #e5e5e5);
2453 | background-image: -o-linear-gradient(top, #f2f2f2, #e5e5e5);
2454 | background-image: linear-gradient(to bottom, #f2f2f2, #e5e5e5);
2455 | background-repeat: repeat-x;
2456 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2f2f2', endColorstr='#ffe5e5e5', GradientType=0);
2457 | border-color: #e5e5e5 #e5e5e5 #bfbfbf;
2458 | border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2459 | *background-color: #e5e5e5;
2460 | /* Darken IE7 buttons by default so they stand out more given they won't have borders */
2461 |
2462 | filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2463 | -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
2464 | -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
2465 | box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
2466 | }
2467 | .navbar .btn-navbar:hover,
2468 | .navbar .btn-navbar:active,
2469 | .navbar .btn-navbar.active,
2470 | .navbar .btn-navbar.disabled,
2471 | .navbar .btn-navbar[disabled] {
2472 | color: #ffffff;
2473 | background-color: #e5e5e5;
2474 | *background-color: #d9d9d9;
2475 | }
2476 | .navbar .btn-navbar:active,
2477 | .navbar .btn-navbar.active {
2478 | background-color: #cccccc \9;
2479 | }
2480 | .navbar .btn-navbar .icon-bar {
2481 | display: block;
2482 | width: 18px;
2483 | height: 2px;
2484 | background-color: #f5f5f5;
2485 | -webkit-border-radius: 1px;
2486 | -moz-border-radius: 1px;
2487 | border-radius: 1px;
2488 | -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
2489 | -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
2490 | box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
2491 | }
2492 | .btn-navbar .icon-bar + .icon-bar {
2493 | margin-top: 3px;
2494 | }
2495 | .navbar .nav > li > .dropdown-menu:before {
2496 | content: '';
2497 | display: inline-block;
2498 | border-left: 7px solid transparent;
2499 | border-right: 7px solid transparent;
2500 | border-bottom: 7px solid #ccc;
2501 | border-bottom-color: rgba(0, 0, 0, 0.2);
2502 | position: absolute;
2503 | top: -7px;
2504 | left: 9px;
2505 | }
2506 | .navbar .nav > li > .dropdown-menu:after {
2507 | content: '';
2508 | display: inline-block;
2509 | border-left: 6px solid transparent;
2510 | border-right: 6px solid transparent;
2511 | border-bottom: 6px solid #ffffff;
2512 | position: absolute;
2513 | top: -6px;
2514 | left: 10px;
2515 | }
2516 | .navbar-fixed-bottom .nav > li > .dropdown-menu:before {
2517 | border-top: 7px solid #ccc;
2518 | border-top-color: rgba(0, 0, 0, 0.2);
2519 | border-bottom: 0;
2520 | bottom: -7px;
2521 | top: auto;
2522 | }
2523 | .navbar-fixed-bottom .nav > li > .dropdown-menu:after {
2524 | border-top: 6px solid #ffffff;
2525 | border-bottom: 0;
2526 | bottom: -6px;
2527 | top: auto;
2528 | }
2529 | .navbar .nav li.dropdown.open > .dropdown-toggle,
2530 | .navbar .nav li.dropdown.active > .dropdown-toggle,
2531 | .navbar .nav li.dropdown.open.active > .dropdown-toggle {
2532 | background-color: #e5e5e5;
2533 | color: #555555;
2534 | }
2535 | .navbar .nav li.dropdown > .dropdown-toggle .caret {
2536 | border-top-color: #777777;
2537 | border-bottom-color: #777777;
2538 | }
2539 | .navbar .nav li.dropdown.open > .dropdown-toggle .caret,
2540 | .navbar .nav li.dropdown.active > .dropdown-toggle .caret,
2541 | .navbar .nav li.dropdown.open.active > .dropdown-toggle .caret {
2542 | border-top-color: #555555;
2543 | border-bottom-color: #555555;
2544 | }
2545 | .navbar .pull-right > li > .dropdown-menu,
2546 | .navbar .nav > li > .dropdown-menu.pull-right {
2547 | left: auto;
2548 | right: 0;
2549 | }
2550 | .navbar .pull-right > li > .dropdown-menu:before,
2551 | .navbar .nav > li > .dropdown-menu.pull-right:before {
2552 | left: auto;
2553 | right: 12px;
2554 | }
2555 | .navbar .pull-right > li > .dropdown-menu:after,
2556 | .navbar .nav > li > .dropdown-menu.pull-right:after {
2557 | left: auto;
2558 | right: 13px;
2559 | }
2560 | .navbar .pull-right > li > .dropdown-menu .dropdown-menu,
2561 | .navbar .nav > li > .dropdown-menu.pull-right .dropdown-menu {
2562 | left: auto;
2563 | right: 100%;
2564 | margin-left: 0;
2565 | margin-right: -1px;
2566 | -webkit-border-radius: 6px 0 6px 6px;
2567 | -moz-border-radius: 6px 0 6px 6px;
2568 | border-radius: 6px 0 6px 6px;
2569 | }
2570 | .navbar-inverse {
2571 | color: #ffffff;
2572 | }
2573 | .navbar-inverse .navbar-inner {
2574 | background-color: #0052a8;
2575 | background-image: -moz-linear-gradient(top, #0063ca, #003874);
2576 | background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0063ca), to(#003874));
2577 | background-image: -webkit-linear-gradient(top, #0063ca, #003874);
2578 | background-image: -o-linear-gradient(top, #0063ca, #003874);
2579 | background-image: linear-gradient(to bottom, #0063ca, #003874);
2580 | background-repeat: repeat-x;
2581 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0063ca', endColorstr='#ff003874', GradientType=0);
2582 | border-color: #252525;
2583 | }
2584 | .navbar-inverse .brand,
2585 | .navbar-inverse .nav > li > a {
2586 | color: #ffffff;
2587 | text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
2588 | }
2589 | .navbar-inverse .brand:hover,
2590 | .navbar-inverse .nav > li > a:hover {
2591 | color: #ffffff;
2592 | }
2593 | .navbar-inverse .nav > li > a:focus,
2594 | .navbar-inverse .nav > li > a:hover {
2595 | background-color: transparent;
2596 | color: #ffffff;
2597 | }
2598 | .navbar-inverse .nav .active > a,
2599 | .navbar-inverse .nav .active > a:hover,
2600 | .navbar-inverse .nav .active > a:focus {
2601 | color: #ffffff;
2602 | background-color: #003874;
2603 | }
2604 | .navbar-inverse .navbar-link {
2605 | color: #ffffff;
2606 | }
2607 | .navbar-inverse .navbar-link:hover {
2608 | color: #ffffff;
2609 | }
2610 | .navbar-inverse .divider-vertical {
2611 | border-left-color: #003874;
2612 | border-right-color: #0063ca;
2613 | }
2614 | .navbar-inverse .nav li.dropdown.open > .dropdown-toggle,
2615 | .navbar-inverse .nav li.dropdown.active > .dropdown-toggle,
2616 | .navbar-inverse .nav li.dropdown.open.active > .dropdown-toggle {
2617 | background-color: #003874;
2618 | color: #ffffff;
2619 | }
2620 | .navbar-inverse .nav li.dropdown > .dropdown-toggle .caret {
2621 | border-top-color: #ffffff;
2622 | border-bottom-color: #ffffff;
2623 | }
2624 | .navbar-inverse .nav li.dropdown.open > .dropdown-toggle .caret,
2625 | .navbar-inverse .nav li.dropdown.active > .dropdown-toggle .caret,
2626 | .navbar-inverse .nav li.dropdown.open.active > .dropdown-toggle .caret {
2627 | border-top-color: #ffffff;
2628 | border-bottom-color: #ffffff;
2629 | }
2630 | .navbar-inverse .navbar-search .search-query {
2631 | color: #ffffff;
2632 | background-color: #0076f3;
2633 | border-color: #003874;
2634 | -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0 rgba(255, 255, 255, 0.15);
2635 | -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0 rgba(255, 255, 255, 0.15);
2636 | box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0 rgba(255, 255, 255, 0.15);
2637 | -webkit-transition: none;
2638 | -moz-transition: none;
2639 | -o-transition: none;
2640 | transition: none;
2641 | }
2642 | .navbar-inverse .navbar-search .search-query:-moz-placeholder {
2643 | color: #cccccc;
2644 | }
2645 | .navbar-inverse .navbar-search .search-query:-ms-input-placeholder {
2646 | color: #cccccc;
2647 | }
2648 | .navbar-inverse .navbar-search .search-query::-webkit-input-placeholder {
2649 | color: #cccccc;
2650 | }
2651 | .navbar-inverse .navbar-search .search-query:focus,
2652 | .navbar-inverse .navbar-search .search-query.focused {
2653 | padding: 5px 15px;
2654 | color: #333333;
2655 | text-shadow: 0 1px 0 #ffffff;
2656 | background-color: #ffffff;
2657 | border: 0;
2658 | -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
2659 | -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
2660 | box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
2661 | outline: 0;
2662 | }
2663 | .navbar-inverse .btn-navbar {
2664 | color: #ffffff;
2665 | text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
2666 | background-color: #00458e;
2667 | background-image: -moz-linear-gradient(top, #0057b1, #002c5a);
2668 | background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0057b1), to(#002c5a));
2669 | background-image: -webkit-linear-gradient(top, #0057b1, #002c5a);
2670 | background-image: -o-linear-gradient(top, #0057b1, #002c5a);
2671 | background-image: linear-gradient(to bottom, #0057b1, #002c5a);
2672 | background-repeat: repeat-x;
2673 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0057b1', endColorstr='#ff002c5a', GradientType=0);
2674 | border-color: #002c5a #002c5a #00070e;
2675 | border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2676 | *background-color: #002c5a;
2677 | /* Darken IE7 buttons by default so they stand out more given they won't have borders */
2678 |
2679 | filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2680 | }
2681 | .navbar-inverse .btn-navbar:hover,
2682 | .navbar-inverse .btn-navbar:active,
2683 | .navbar-inverse .btn-navbar.active,
2684 | .navbar-inverse .btn-navbar.disabled,
2685 | .navbar-inverse .btn-navbar[disabled] {
2686 | color: #ffffff;
2687 | background-color: #002c5a;
2688 | *background-color: #001f41;
2689 | }
2690 | .navbar-inverse .btn-navbar:active,
2691 | .navbar-inverse .btn-navbar.active {
2692 | background-color: #001327 \9;
2693 | }
2694 | .breadcrumb {
2695 | padding: 8px 15px;
2696 | margin: 0 0 20px;
2697 | list-style: none;
2698 | background-color: #f5f5f5;
2699 | -webkit-border-radius: 4px;
2700 | -moz-border-radius: 4px;
2701 | border-radius: 4px;
2702 | }
2703 | .breadcrumb li {
2704 | display: inline-block;
2705 | *display: inline;
2706 | /* IE7 inline-block hack */
2707 |
2708 | *zoom: 1;
2709 | text-shadow: 0 1px 0 #ffffff;
2710 | }
2711 | .breadcrumb .divider {
2712 | padding: 0 5px;
2713 | color: #ccc;
2714 | }
2715 | .breadcrumb .active {
2716 | color: #999999;
2717 | }
2718 | .thumbnails {
2719 | margin-left: -20px;
2720 | list-style: none;
2721 | *zoom: 1;
2722 | }
2723 | .thumbnails:before,
2724 | .thumbnails:after {
2725 | display: table;
2726 | content: "";
2727 | line-height: 0;
2728 | }
2729 | .thumbnails:after {
2730 | clear: both;
2731 | }
2732 | .row-fluid .thumbnails {
2733 | margin-left: 0;
2734 | }
2735 | .thumbnails > li {
2736 | float: left;
2737 | margin-bottom: 20px;
2738 | margin-left: 20px;
2739 | }
2740 | .thumbnail {
2741 | display: block;
2742 | padding: 4px;
2743 | line-height: 20px;
2744 | border: 1px solid #ddd;
2745 | -webkit-border-radius: 4px;
2746 | -moz-border-radius: 4px;
2747 | border-radius: 4px;
2748 | -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055);
2749 | -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055);
2750 | box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055);
2751 | -webkit-transition: all 0.2s ease-in-out;
2752 | -moz-transition: all 0.2s ease-in-out;
2753 | -o-transition: all 0.2s ease-in-out;
2754 | transition: all 0.2s ease-in-out;
2755 | }
2756 | a.thumbnail:hover {
2757 | border-color: #0063ca;
2758 | -webkit-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
2759 | -moz-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
2760 | box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
2761 | }
2762 | .thumbnail > img {
2763 | display: block;
2764 | max-width: 100%;
2765 | margin-left: auto;
2766 | margin-right: auto;
2767 | }
2768 | .thumbnail .caption {
2769 | padding: 9px;
2770 | color: #555555;
2771 | }
2772 | .label,
2773 | .badge {
2774 | font-size: 10.998px;
2775 | font-weight: bold;
2776 | line-height: 14px;
2777 | color: #ffffff;
2778 | vertical-align: baseline;
2779 | white-space: nowrap;
2780 | text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
2781 | background-color: #999999;
2782 | }
2783 | .label {
2784 | padding: 1px 4px 2px;
2785 | -webkit-border-radius: 3px;
2786 | -moz-border-radius: 3px;
2787 | border-radius: 3px;
2788 | }
2789 | .badge {
2790 | padding: 1px 9px 2px;
2791 | -webkit-border-radius: 9px;
2792 | -moz-border-radius: 9px;
2793 | border-radius: 9px;
2794 | }
2795 | a.label:hover,
2796 | a.badge:hover {
2797 | color: #ffffff;
2798 | text-decoration: none;
2799 | cursor: pointer;
2800 | }
2801 | .label-important,
2802 | .badge-important {
2803 | background-color: #b94a48;
2804 | }
2805 | .label-important[href],
2806 | .badge-important[href] {
2807 | background-color: #953b39;
2808 | }
2809 | .label-warning,
2810 | .badge-warning {
2811 | background-color: #f89406;
2812 | }
2813 | .label-warning[href],
2814 | .badge-warning[href] {
2815 | background-color: #c67605;
2816 | }
2817 | .label-success,
2818 | .badge-success {
2819 | background-color: #468847;
2820 | }
2821 | .label-success[href],
2822 | .badge-success[href] {
2823 | background-color: #356635;
2824 | }
2825 | .label-info,
2826 | .badge-info {
2827 | background-color: #3a87ad;
2828 | }
2829 | .label-info[href],
2830 | .badge-info[href] {
2831 | background-color: #2d6987;
2832 | }
2833 | .label-inverse,
2834 | .badge-inverse {
2835 | background-color: #333333;
2836 | }
2837 | .label-inverse[href],
2838 | .badge-inverse[href] {
2839 | background-color: #1a1a1a;
2840 | }
2841 | .btn .label,
2842 | .btn .badge {
2843 | position: relative;
2844 | top: -1px;
2845 | }
2846 | .btn-mini .label,
2847 | .btn-mini .badge {
2848 | top: 0;
2849 | }
2850 | .hero-unit {
2851 | padding: 50px;
2852 | margin-bottom: 30px;
2853 | background-color: #eeeeee;
2854 | -webkit-border-radius: 6px;
2855 | -moz-border-radius: 6px;
2856 | border-radius: 6px;
2857 | }
2858 | .hero-unit h1 {
2859 | margin-bottom: 10px;
2860 | margin-top: 0px;
2861 | font-size: 40px;
2862 | line-height: 1;
2863 | color: inherit;
2864 | letter-spacing: -1px;
2865 | text-align: center;
2866 | }
2867 | .hero-unit h2 {
2868 | font-size: 30px;
2869 | margin: 0px;
2870 | }
2871 | .hero-unit p {
2872 | font-size: 16px;
2873 | font-weight: 200;
2874 | line-height: 25px;
2875 | color: inherit;
2876 | }
2877 | .pull-right {
2878 | float: right;
2879 | }
2880 | .pull-left {
2881 | float: left;
2882 | }
2883 | .hide {
2884 | display: none;
2885 | }
2886 | .show {
2887 | display: block;
2888 | }
2889 | .invisible {
2890 | visibility: hidden;
2891 | }
2892 | .affix {
2893 | position: fixed;
2894 | }
2895 |
--------------------------------------------------------------------------------
/Stylesheet/bootstrap-email.min.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * Bootstrap v2.1.1
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 | */article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block}
10 | audio,canvas,video{display:inline-block;*display:inline;*zoom:1}
11 | audio:not([controls]){display:none}
12 | html{font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}
13 | a:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}
14 | a:hover,a:active{outline:0}
15 | sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}
16 | sup{top:-0.5em}
17 | sub{bottom:-0.25em}
18 | img{max-width:100%;width:auto\9;height:auto;vertical-align:middle;border:0;-ms-interpolation-mode:bicubic}
19 | #map_canvas img{max-width:none}
20 | button,input,select,textarea{margin:0;font-size:100%;vertical-align:middle}
21 | button,input{*overflow:visible;line-height:normal}
22 | button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}
23 | button,input[type="button"],input[type="reset"],input[type="submit"]{cursor:pointer;-webkit-appearance:button}
24 | input[type="search"]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}
25 | input[type="search"]::-webkit-search-decoration,input[type="search"]::-webkit-search-cancel-button{-webkit-appearance:none}
26 | textarea{overflow:auto;vertical-align:top}
27 | .clearfix{*zoom:1}
28 | .clearfix:before,.clearfix:after{display:table;content:"";line-height:0}
29 | .clearfix:after{clear:both}
30 | .hide-text{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}
31 | .input-block-level{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}
32 | body{margin:0;font-family:"Segoe UI","Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;line-height:20px;color:#333;background-color:#fff}
33 | a{color:#0063ca;text-decoration:none}
34 | a:hover{color:#003e7e;text-decoration:underline}
35 | .img-rounded{-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}
36 | .img-polaroid{padding:4px;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.1);-moz-box-shadow:0 1px 3px rgba(0,0,0,0.1);box-shadow:0 1px 3px rgba(0,0,0,0.1)}
37 | .img-circle{-webkit-border-radius:500px;-moz-border-radius:500px;border-radius:500px}
38 | .row{margin-left:-20px;*zoom:1}
39 | .row:before,.row:after{display:table;content:"";line-height:0}
40 | .row:after{clear:both}
41 | [class*="span"]{float:left;min-height:1px;margin-left:20px}
42 | .container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px}
43 | .span12{width:940px}
44 | .span11{width:860px}
45 | .span10{width:780px}
46 | .span9{width:700px}
47 | .span8{width:620px}
48 | .span7{width:540px}
49 | .span6{width:460px}
50 | .span5{width:380px}
51 | .span4{width:300px}
52 | .span3{width:220px}
53 | .span2{width:140px}
54 | .span1{width:60px}
55 | .offset12{margin-left:980px}
56 | .offset11{margin-left:900px}
57 | .offset10{margin-left:820px}
58 | .offset9{margin-left:740px}
59 | .offset8{margin-left:660px}
60 | .offset7{margin-left:580px}
61 | .offset6{margin-left:500px}
62 | .offset5{margin-left:420px}
63 | .offset4{margin-left:340px}
64 | .offset3{margin-left:260px}
65 | .offset2{margin-left:180px}
66 | .offset1{margin-left:100px}
67 | .row-fluid{width:100%;*zoom:1}
68 | .row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0}
69 | .row-fluid:after{clear:both}
70 | .row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.127659574468085%;*margin-left:2.074468085106383%}
71 | .row-fluid [class*="span"]:first-child{margin-left:0}
72 | .row-fluid .span12{width:100%;*width:99.94680851063829%}
73 | .row-fluid .span11{width:91.48936170212765%;*width:91.43617021276594%}
74 | .row-fluid .span10{width:82.97872340425532%;*width:82.92553191489361%}
75 | .row-fluid .span9{width:74.46808510638297%;*width:74.41489361702126%}
76 | .row-fluid .span8{width:65.95744680851064%;*width:65.90425531914893%}
77 | .row-fluid .span7{width:57.44680851063829%;*width:57.39361702127659%}
78 | .row-fluid .span6{width:48.93617021276595%;*width:48.88297872340425%}
79 | .row-fluid .span5{width:40.42553191489362%;*width:40.37234042553192%}
80 | .row-fluid .span4{width:31.914893617021278%;*width:31.861702127659576%}
81 | .row-fluid .span3{width:23.404255319148934%;*width:23.351063829787233%}
82 | .row-fluid .span2{width:14.893617021276595%;*width:14.840425531914894%}
83 | .row-fluid .span1{width:6.382978723404255%;*width:6.329787234042553%}
84 | .row-fluid .offset12{margin-left:104.25531914893617%;*margin-left:104.14893617021275%}
85 | .row-fluid .offset12:first-child{margin-left:102.12765957446808%;*margin-left:102.02127659574467%}
86 | .row-fluid .offset11{margin-left:95.74468085106382%;*margin-left:95.6382978723404%}
87 | .row-fluid .offset11:first-child{margin-left:93.61702127659574%;*margin-left:93.51063829787232%}
88 | .row-fluid .offset10{margin-left:87.23404255319149%;*margin-left:87.12765957446807%}
89 | .row-fluid .offset10:first-child{margin-left:85.1063829787234%;*margin-left:84.99999999999999%}
90 | .row-fluid .offset9{margin-left:78.72340425531914%;*margin-left:78.61702127659572%}
91 | .row-fluid .offset9:first-child{margin-left:76.59574468085106%;*margin-left:76.48936170212764%}
92 | .row-fluid .offset8{margin-left:70.2127659574468%;*margin-left:70.10638297872339%}
93 | .row-fluid .offset8:first-child{margin-left:68.08510638297872%;*margin-left:67.9787234042553%}
94 | .row-fluid .offset7{margin-left:61.70212765957446%;*margin-left:61.59574468085106%}
95 | .row-fluid .offset7:first-child{margin-left:59.574468085106375%;*margin-left:59.46808510638297%}
96 | .row-fluid .offset6{margin-left:53.191489361702125%;*margin-left:53.085106382978715%}
97 | .row-fluid .offset6:first-child{margin-left:51.063829787234035%;*margin-left:50.95744680851063%}
98 | .row-fluid .offset5{margin-left:44.68085106382979%;*margin-left:44.57446808510638%}
99 | .row-fluid .offset5:first-child{margin-left:42.5531914893617%;*margin-left:42.4468085106383%}
100 | .row-fluid .offset4{margin-left:36.170212765957444%;*margin-left:36.06382978723405%}
101 | .row-fluid .offset4:first-child{margin-left:34.04255319148936%;*margin-left:33.93617021276596%}
102 | .row-fluid .offset3{margin-left:27.659574468085104%;*margin-left:27.5531914893617%}
103 | .row-fluid .offset3:first-child{margin-left:25.53191489361702%;*margin-left:25.425531914893618%}
104 | .row-fluid .offset2{margin-left:19.148936170212764%;*margin-left:19.04255319148936%}
105 | .row-fluid .offset2:first-child{margin-left:17.02127659574468%;*margin-left:16.914893617021278%}
106 | .row-fluid .offset1{margin-left:10.638297872340425%;*margin-left:10.53191489361702%}
107 | .row-fluid .offset1:first-child{margin-left:8.51063829787234%;*margin-left:8.404255319148938%}
108 | [class*="span"].hide,.row-fluid [class*="span"].hide{display:none}
109 | [class*="span"].pull-right,.row-fluid [class*="span"].pull-right{float:right}
110 | .container{margin-right:auto;margin-left:auto;*zoom:1}
111 | .container:before,.container:after{display:table;content:"";line-height:0}
112 | .container:after{clear:both}
113 | .container-fluid{padding-right:20px;padding-left:20px;*zoom:1}
114 | .container-fluid:before,.container-fluid:after{display:table;content:"";line-height:0}
115 | .container-fluid:after{clear:both}
116 | p{margin:0 0 10px}
117 | .lead{margin-bottom:20px;font-size:19.5px;font-weight:200;line-height:30px}
118 | small{font-size:85%}
119 | strong{font-weight:bold}
120 | em{font-style:italic}
121 | cite{font-style:normal}
122 | .muted{color:#999}
123 | .text-warning{color:#c09853}
124 | .text-error{color:#b94a48}
125 | .text-info{color:#3a87ad}
126 | .text-success{color:#468847}
127 | h1,h2,h3,h4,h5,h6{margin:10px 0;font-family:inherit;font-weight:bold;line-height:1;color:inherit;text-rendering:optimizelegibility}
128 | h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{font-weight:normal;line-height:1;color:#999}
129 | h1{font-size:36px;line-height:40px}
130 | h2{font-size:30px;line-height:40px}
131 | h3{font-size:24px;line-height:40px}
132 | h4{font-size:18px;line-height:20px}
133 | h5{font-size:14px;line-height:20px}
134 | h6{font-size:12px;line-height:20px}
135 | h1 small{font-size:24px}
136 | h2 small{font-size:18px}
137 | h3 small{font-size:14px}
138 | h4 small{font-size:14px}
139 | .page-header{padding-bottom:9px;margin:20px 0 30px;border-bottom:1px solid #eee}
140 | ul,ol{padding:0;margin:0 0 10px 25px}
141 | ul ul,ul ol,ol ol,ol ul{margin-bottom:0}
142 | li{line-height:20px}
143 | ul.unstyled,ol.unstyled{margin-left:0;list-style:none}
144 | dl{margin-bottom:20px}
145 | dt,dd{line-height:20px}
146 | dt{font-weight:bold}
147 | dd{margin-left:10px}
148 | .dl-horizontal{*zoom:1}
149 | .dl-horizontal:before,.dl-horizontal:after{display:table;content:"";line-height:0}
150 | .dl-horizontal:after{clear:both}
151 | .dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
152 | .dl-horizontal dd{margin-left:180px}
153 | hr{margin:20px 0;border:0;border-top:1px solid #eee;border-bottom:1px solid #fff}
154 | abbr[title]{cursor:help;border-bottom:1px dotted #999}
155 | abbr.initialism{font-size:90%;text-transform:uppercase}
156 | blockquote{padding:0 0 0 15px;margin:0 0 20px;border-left:5px solid #eee}
157 | blockquote p{margin-bottom:0;font-size:16px;font-weight:300;line-height:25px}
158 | blockquote small{display:block;line-height:20px;color:#999}
159 | blockquote small:before{content:'\2014 \00A0'}
160 | blockquote.pull-right{float:right;padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0}
161 | blockquote.pull-right p,blockquote.pull-right small{text-align:right}
162 | blockquote.pull-right small:before{content:''}
163 | blockquote.pull-right small:after{content:'\00A0 \2014'}
164 | q:before,q:after,blockquote:before,blockquote:after{content:""}
165 | address{display:block;margin-bottom:20px;font-style:normal;line-height:20px}
166 | code,pre{padding:0 3px 2px;font-family:Monaco,Menlo,Consolas,"Courier New",monospace;font-size:11px;color:#333;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}
167 | code{padding:2px 4px;color:#d14;background-color:#f7f7f9;border:1px solid #e1e1e8}
168 | pre{display:block;padding:9.5px;margin:0 0 10px;font-size:12px;line-height:20px;word-break:break-all;word-wrap:break-word;white-space:pre;white-space:pre-wrap;background-color:#f5f5f5;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.15);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}
169 | pre.prettyprint{margin-bottom:20px}
170 | pre code{padding:0;color:inherit;background-color:transparent;border:0}
171 | .pre-scrollable{max-height:340px;overflow-y:scroll}
172 | table{max-width:100%;background-color:transparent;border-collapse:collapse;border-spacing:0}
173 | .table{width:100%;margin-bottom:20px}
174 | .table th,.table td{padding:8px;line-height:20px;text-align:left;vertical-align:top;border-top:1px solid #ddd}
175 | .table th{font-weight:bold}
176 | .table thead th{vertical-align:bottom}
177 | .table caption+thead tr:first-child th,.table caption+thead tr:first-child td,.table colgroup+thead tr:first-child th,.table colgroup+thead tr:first-child td,.table thead:first-child tr:first-child th,.table thead:first-child tr:first-child td{border-top:0}
178 | .table tbody+tbody{border-top:2px solid #ddd}
179 | .table-condensed th,.table-condensed td{padding:4px 5px}
180 | .table-bordered{border:1px solid #ddd;border-collapse:separate;*border-collapse:collapse;border-left:0;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}
181 | .table-bordered th,.table-bordered td{border-left:1px solid #ddd}
182 | .table-bordered caption+thead tr:first-child th,.table-bordered caption+tbody tr:first-child th,.table-bordered caption+tbody tr:first-child td,.table-bordered colgroup+thead tr:first-child th,.table-bordered colgroup+tbody tr:first-child th,.table-bordered colgroup+tbody tr:first-child td,.table-bordered thead:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child td{border-top:0}
183 | .table-bordered thead:first-child tr:first-child th:first-child,.table-bordered tbody:first-child tr:first-child td:first-child{-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-topleft:4px}
184 | .table-bordered thead:first-child tr:first-child th:last-child,.table-bordered tbody:first-child tr:first-child td:last-child{-webkit-border-top-right-radius:4px;border-top-right-radius:4px;-moz-border-radius-topright:4px}
185 | .table-bordered thead:last-child tr:last-child th:first-child,.table-bordered tbody:last-child tr:last-child td:first-child,.table-bordered tfoot:last-child tr:last-child td:first-child{-webkit-border-radius:0 0 0 4px;-moz-border-radius:0 0 0 4px;border-radius:0 0 0 4px;-webkit-border-bottom-left-radius:4px;border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px}
186 | .table-bordered thead:last-child tr:last-child th:last-child,.table-bordered tbody:last-child tr:last-child td:last-child,.table-bordered tfoot:last-child tr:last-child td:last-child{-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px}
187 | .table-bordered caption+thead tr:first-child th:first-child,.table-bordered caption+tbody tr:first-child td:first-child,.table-bordered colgroup+thead tr:first-child th:first-child,.table-bordered colgroup+tbody tr:first-child td:first-child{-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-topleft:4px}
188 | .table-bordered caption+thead tr:first-child th:last-child,.table-bordered caption+tbody tr:first-child td:last-child,.table-bordered colgroup+thead tr:first-child th:last-child,.table-bordered colgroup+tbody tr:first-child td:last-child{-webkit-border-top-right-radius:4px;border-top-right-radius:4px;-moz-border-radius-topleft:4px}
189 | .table-striped tbody tr:nth-child(odd) td,.table-striped tbody tr:nth-child(odd) th{background-color:#f9f9f9}
190 | .table-hover tbody tr:hover td,.table-hover tbody tr:hover th{background-color:#f5f5f5}
191 | table [class*=span],.row-fluid table [class*=span]{display:table-cell;float:none;margin-left:0}
192 | .table .span1{float:none;width:44px;margin-left:0}
193 | .table .span2{float:none;width:124px;margin-left:0}
194 | .table .span3{float:none;width:204px;margin-left:0}
195 | .table .span4{float:none;width:284px;margin-left:0}
196 | .table .span5{float:none;width:364px;margin-left:0}
197 | .table .span6{float:none;width:444px;margin-left:0}
198 | .table .span7{float:none;width:524px;margin-left:0}
199 | .table .span8{float:none;width:604px;margin-left:0}
200 | .table .span9{float:none;width:684px;margin-left:0}
201 | .table .span10{float:none;width:764px;margin-left:0}
202 | .table .span11{float:none;width:844px;margin-left:0}
203 | .table .span12{float:none;width:924px;margin-left:0}
204 | .table .span13{float:none;width:1004px;margin-left:0}
205 | .table .span14{float:none;width:1084px;margin-left:0}
206 | .table .span15{float:none;width:1164px;margin-left:0}
207 | .table .span16{float:none;width:1244px;margin-left:0}
208 | .table .span17{float:none;width:1324px;margin-left:0}
209 | .table .span18{float:none;width:1404px;margin-left:0}
210 | .table .span19{float:none;width:1484px;margin-left:0}
211 | .table .span20{float:none;width:1564px;margin-left:0}
212 | .table .span21{float:none;width:1644px;margin-left:0}
213 | .table .span22{float:none;width:1724px;margin-left:0}
214 | .table .span23{float:none;width:1804px;margin-left:0}
215 | .table .span24{float:none;width:1884px;margin-left:0}
216 | .table tbody tr.success td{background-color:#dff0d8}
217 | .table tbody tr.error td{background-color:#f2dede}
218 | .table tbody tr.warning td{background-color:#fcf8e3}
219 | .table tbody tr.info td{background-color:#d9edf7}
220 | .table-hover tbody tr.success:hover td{background-color:#d0e9c6}
221 | .table-hover tbody tr.error:hover td{background-color:#ebcccc}
222 | .table-hover tbody tr.warning:hover td{background-color:#faf2cc}
223 | .table-hover tbody tr.info:hover td{background-color:#c4e3f3}
224 | [class^="icon-"],[class*=" icon-"]{display:inline-block;width:14px;height:14px;*margin-right:.3em;line-height:14px;vertical-align:text-top;background-image:url("https://az340737.vo.msecnd.net/resources/glyphicons-halflings.png");background-position:14px 14px;background-repeat:no-repeat;margin-top:1px}
225 | .icon-white,.nav-tabs>.active>a>[class^="icon-"],.nav-tabs>.active>a>[class*=" icon-"],.nav-pills>.active>a>[class^="icon-"],.nav-pills>.active>a>[class*=" icon-"],.nav-list>.active>a>[class^="icon-"],.nav-list>.active>a>[class*=" icon-"],.navbar-inverse .nav>.active>a>[class^="icon-"],.navbar-inverse .nav>.active>a>[class*=" icon-"],.dropdown-menu>li>a:hover>[class^="icon-"],.dropdown-menu>li>a:hover>[class*=" icon-"],.dropdown-menu>.active>a>[class^="icon-"],.dropdown-menu>.active>a>[class*=" icon-"]{background-image:url("https://az340737.vo.msecnd.net/resources/glyphicons-halflings-white.png")}
226 | .icon-glass{background-position:0 0}
227 | .icon-music{background-position:-24px 0}
228 | .icon-search{background-position:-48px 0}
229 | .icon-envelope{background-position:-72px 0}
230 | .icon-heart{background-position:-96px 0}
231 | .icon-star{background-position:-120px 0}
232 | .icon-star-empty{background-position:-144px 0}
233 | .icon-user{background-position:-168px 0}
234 | .icon-film{background-position:-192px 0}
235 | .icon-th-large{background-position:-216px 0}
236 | .icon-th{background-position:-240px 0}
237 | .icon-th-list{background-position:-264px 0}
238 | .icon-ok{background-position:-288px 0}
239 | .icon-remove{background-position:-312px 0}
240 | .icon-zoom-in{background-position:-336px 0}
241 | .icon-zoom-out{background-position:-360px 0}
242 | .icon-off{background-position:-384px 0}
243 | .icon-signal{background-position:-408px 0}
244 | .icon-cog{background-position:-432px 0}
245 | .icon-trash{background-position:-456px 0}
246 | .icon-home{background-position:0 -24px}
247 | .icon-file{background-position:-24px -24px}
248 | .icon-time{background-position:-48px -24px}
249 | .icon-road{background-position:-72px -24px}
250 | .icon-download-alt{background-position:-96px -24px}
251 | .icon-download{background-position:-120px -24px}
252 | .icon-upload{background-position:-144px -24px}
253 | .icon-inbox{background-position:-168px -24px}
254 | .icon-play-circle{background-position:-192px -24px}
255 | .icon-repeat{background-position:-216px -24px}
256 | .icon-refresh{background-position:-240px -24px}
257 | .icon-list-alt{background-position:-264px -24px}
258 | .icon-lock{background-position:-287px -24px}
259 | .icon-flag{background-position:-312px -24px}
260 | .icon-headphones{background-position:-336px -24px}
261 | .icon-volume-off{background-position:-360px -24px}
262 | .icon-volume-down{background-position:-384px -24px}
263 | .icon-volume-up{background-position:-408px -24px}
264 | .icon-qrcode{background-position:-432px -24px}
265 | .icon-barcode{background-position:-456px -24px}
266 | .icon-tag{background-position:0 -48px}
267 | .icon-tags{background-position:-25px -48px}
268 | .icon-book{background-position:-48px -48px}
269 | .icon-bookmark{background-position:-72px -48px}
270 | .icon-print{background-position:-96px -48px}
271 | .icon-camera{background-position:-120px -48px}
272 | .icon-font{background-position:-144px -48px}
273 | .icon-bold{background-position:-167px -48px}
274 | .icon-italic{background-position:-192px -48px}
275 | .icon-text-height{background-position:-216px -48px}
276 | .icon-text-width{background-position:-240px -48px}
277 | .icon-align-left{background-position:-264px -48px}
278 | .icon-align-center{background-position:-288px -48px}
279 | .icon-align-right{background-position:-312px -48px}
280 | .icon-align-justify{background-position:-336px -48px}
281 | .icon-list{background-position:-360px -48px}
282 | .icon-indent-left{background-position:-384px -48px}
283 | .icon-indent-right{background-position:-408px -48px}
284 | .icon-facetime-video{background-position:-432px -48px}
285 | .icon-picture{background-position:-456px -48px}
286 | .icon-pencil{background-position:0 -72px}
287 | .icon-map-marker{background-position:-24px -72px}
288 | .icon-adjust{background-position:-48px -72px}
289 | .icon-tint{background-position:-72px -72px}
290 | .icon-edit{background-position:-96px -72px}
291 | .icon-share{background-position:-120px -72px}
292 | .icon-check{background-position:-144px -72px}
293 | .icon-move{background-position:-168px -72px}
294 | .icon-step-backward{background-position:-192px -72px}
295 | .icon-fast-backward{background-position:-216px -72px}
296 | .icon-backward{background-position:-240px -72px}
297 | .icon-play{background-position:-264px -72px}
298 | .icon-pause{background-position:-288px -72px}
299 | .icon-stop{background-position:-312px -72px}
300 | .icon-forward{background-position:-336px -72px}
301 | .icon-fast-forward{background-position:-360px -72px}
302 | .icon-step-forward{background-position:-384px -72px}
303 | .icon-eject{background-position:-408px -72px}
304 | .icon-chevron-left{background-position:-432px -72px}
305 | .icon-chevron-right{background-position:-456px -72px}
306 | .icon-plus-sign{background-position:0 -96px}
307 | .icon-minus-sign{background-position:-24px -96px}
308 | .icon-remove-sign{background-position:-48px -96px}
309 | .icon-ok-sign{background-position:-72px -96px}
310 | .icon-question-sign{background-position:-96px -96px}
311 | .icon-info-sign{background-position:-120px -96px}
312 | .icon-screenshot{background-position:-144px -96px}
313 | .icon-remove-circle{background-position:-168px -96px}
314 | .icon-ok-circle{background-position:-192px -96px}
315 | .icon-ban-circle{background-position:-216px -96px}
316 | .icon-arrow-left{background-position:-240px -96px}
317 | .icon-arrow-right{background-position:-264px -96px}
318 | .icon-arrow-up{background-position:-289px -96px}
319 | .icon-arrow-down{background-position:-312px -96px}
320 | .icon-share-alt{background-position:-336px -96px}
321 | .icon-resize-full{background-position:-360px -96px}
322 | .icon-resize-small{background-position:-384px -96px}
323 | .icon-plus{background-position:-408px -96px}
324 | .icon-minus{background-position:-433px -96px}
325 | .icon-asterisk{background-position:-456px -96px}
326 | .icon-exclamation-sign{background-position:0 -120px}
327 | .icon-gift{background-position:-24px -120px}
328 | .icon-leaf{background-position:-48px -120px}
329 | .icon-fire{background-position:-72px -120px}
330 | .icon-eye-open{background-position:-96px -120px}
331 | .icon-eye-close{background-position:-120px -120px}
332 | .icon-warning-sign{background-position:-144px -120px}
333 | .icon-plane{background-position:-168px -120px}
334 | .icon-calendar{background-position:-192px -120px}
335 | .icon-random{background-position:-216px -120px;width:16px}
336 | .icon-comment{background-position:-240px -120px}
337 | .icon-magnet{background-position:-264px -120px}
338 | .icon-chevron-up{background-position:-288px -120px}
339 | .icon-chevron-down{background-position:-313px -119px}
340 | .icon-retweet{background-position:-336px -120px}
341 | .icon-shopping-cart{background-position:-360px -120px}
342 | .icon-folder-close{background-position:-384px -120px}
343 | .icon-folder-open{background-position:-408px -120px;width:16px}
344 | .icon-resize-vertical{background-position:-432px -119px}
345 | .icon-resize-horizontal{background-position:-456px -118px}
346 | .icon-hdd{background-position:0 -144px}
347 | .icon-bullhorn{background-position:-24px -144px}
348 | .icon-bell{background-position:-48px -144px}
349 | .icon-certificate{background-position:-72px -144px}
350 | .icon-thumbs-up{background-position:-96px -144px}
351 | .icon-thumbs-down{background-position:-120px -144px}
352 | .icon-hand-right{background-position:-144px -144px}
353 | .icon-hand-left{background-position:-168px -144px}
354 | .icon-hand-up{background-position:-192px -144px}
355 | .icon-hand-down{background-position:-216px -144px}
356 | .icon-circle-arrow-right{background-position:-240px -144px}
357 | .icon-circle-arrow-left{background-position:-264px -144px}
358 | .icon-circle-arrow-up{background-position:-288px -144px}
359 | .icon-circle-arrow-down{background-position:-312px -144px}
360 | .icon-globe{background-position:-336px -144px}
361 | .icon-wrench{background-position:-360px -144px}
362 | .icon-tasks{background-position:-384px -144px}
363 | .icon-filter{background-position:-408px -144px}
364 | .icon-briefcase{background-position:-432px -144px}
365 | .icon-fullscreen{background-position:-456px -144px}
366 | .well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);box-shadow:inset 0 1px 1px rgba(0,0,0,0.05)}
367 | .well blockquote{border-color:#ddd;border-color:rgba(0,0,0,0.15)}
368 | .well-large{padding:24px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}
369 | .well-small{padding:9px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}
370 | .btn{display:inline-block;*display:inline;*zoom:1;padding:4px 14px;margin-bottom:0;font-size:13px;line-height:20px;*line-height:20px;text-align:center;vertical-align:middle;cursor:pointer;color:#333;text-shadow:0 1px 1px rgba(255,255,255,0.75);background-color:#f5f5f5;background-image:-moz-linear-gradient(top,#fff,#e6e6e6);background-image:-webkit-gradient(linear,0 0,0 100%,from(#fff),to(#e6e6e6));background-image:-webkit-linear-gradient(top,#fff,#e6e6e6);background-image:-o-linear-gradient(top,#fff,#e6e6e6);background-image:linear-gradient(to bottom,#fff,#e6e6e6);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff',endColorstr='#ffe6e6e6',GradientType=0);border-color:#e6e6e6 #e6e6e6 #bfbfbf;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#e6e6e6;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);border:1px solid #bbb;*border:0;border-bottom-color:#a2a2a2;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;*margin-left:.3em;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);box-shadow:inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05)}
371 | .btn:hover,.btn:active,.btn.active,.btn.disabled,.btn[disabled]{color:#333;background-color:#e6e6e6;*background-color:#d9d9d9}
372 | .btn:active,.btn.active{background-color:#ccc \9}
373 | .btn:first-child{*margin-left:0}
374 | .btn:hover{color:#333;text-decoration:none;background-color:#e6e6e6;*background-color:#d9d9d9;background-position:0 -15px;-webkit-transition:background-position .1s linear;-moz-transition:background-position .1s linear;-o-transition:background-position .1s linear;transition:background-position .1s linear}
375 | .btn:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}
376 | .btn.active,.btn:active{background-color:#e6e6e6;background-color:#d9d9d9 \9;background-image:none;outline:0;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05);box-shadow:inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05)}
377 | .btn.disabled,.btn[disabled]{cursor:default;background-color:#e6e6e6;background-image:none;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}
378 | .btn-large{padding:9px 14px;font-size:15px;line-height:normal;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px}
379 | .btn-large [class^="icon-"]{margin-top:2px}
380 | .btn-small{padding:3px 9px;font-size:11px;line-height:18px}
381 | .btn-small [class^="icon-"]{margin-top:0}
382 | .btn-mini{padding:2px 6px;font-size:10px;line-height:17px}
383 | .btn-block{display:block;width:100%;padding-left:0;padding-right:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}
384 | .btn-block+.btn-block{margin-top:5px}
385 | input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%}
386 | .btn-primary.active,.btn-warning.active,.btn-danger.active,.btn-success.active,.btn-info.active,.btn-inverse.active{color:rgba(255,255,255,0.75)}
387 | .btn{border-color:#c5c5c5;border-color:rgba(0,0,0,0.15) rgba(0,0,0,0.15) rgba(0,0,0,0.25)}
388 | .btn-primary{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#0054ab;background-image:-moz-linear-gradient(top,#0063ca,#003e7e);background-image:-webkit-gradient(linear,0 0,0 100%,from(#0063ca),to(#003e7e));background-image:-webkit-linear-gradient(top,#0063ca,#003e7e);background-image:-o-linear-gradient(top,#0063ca,#003e7e);background-image:linear-gradient(to bottom,#0063ca,#003e7e);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0063ca',endColorstr='#ff003e7e',GradientType=0);border-color:#003e7e #003e7e #001831;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#003e7e;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}
389 | .btn-primary:hover,.btn-primary:active,.btn-primary.active,.btn-primary.disabled,.btn-primary[disabled]{color:#fff;background-color:#003e7e;*background-color:#003164}
390 | .btn-primary:active,.btn-primary.active{background-color:#00254a \9}
391 | .btn-warning{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#faa732;background-image:-moz-linear-gradient(top,#fbb450,#f89406);background-image:-webkit-gradient(linear,0 0,0 100%,from(#fbb450),to(#f89406));background-image:-webkit-linear-gradient(top,#fbb450,#f89406);background-image:-o-linear-gradient(top,#fbb450,#f89406);background-image:linear-gradient(to bottom,#fbb450,#f89406);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450',endColorstr='#fff89406',GradientType=0);border-color:#f89406 #f89406 #ad6704;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#f89406;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}
392 | .btn-warning:hover,.btn-warning:active,.btn-warning.active,.btn-warning.disabled,.btn-warning[disabled]{color:#fff;background-color:#f89406;*background-color:#df8505}
393 | .btn-warning:active,.btn-warning.active{background-color:#c67605 \9}
394 | .btn-danger{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#da4f49;background-image:-moz-linear-gradient(top,#ee5f5b,#bd362f);background-image:-webkit-gradient(linear,0 0,0 100%,from(#ee5f5b),to(#bd362f));background-image:-webkit-linear-gradient(top,#ee5f5b,#bd362f);background-image:-o-linear-gradient(top,#ee5f5b,#bd362f);background-image:linear-gradient(to bottom,#ee5f5b,#bd362f);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b',endColorstr='#ffbd362f',GradientType=0);border-color:#bd362f #bd362f #802420;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#bd362f;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}
395 | .btn-danger:hover,.btn-danger:active,.btn-danger.active,.btn-danger.disabled,.btn-danger[disabled]{color:#fff;background-color:#bd362f;*background-color:#a9302a}
396 | .btn-danger:active,.btn-danger.active{background-color:#942a25 \9}
397 | .btn-success{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#5bb75b;background-image:-moz-linear-gradient(top,#62c462,#51a351);background-image:-webkit-gradient(linear,0 0,0 100%,from(#62c462),to(#51a351));background-image:-webkit-linear-gradient(top,#62c462,#51a351);background-image:-o-linear-gradient(top,#62c462,#51a351);background-image:linear-gradient(to bottom,#62c462,#51a351);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462',endColorstr='#ff51a351',GradientType=0);border-color:#51a351 #51a351 #387038;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#51a351;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}
398 | .btn-success:hover,.btn-success:active,.btn-success.active,.btn-success.disabled,.btn-success[disabled]{color:#fff;background-color:#51a351;*background-color:#499249}
399 | .btn-success:active,.btn-success.active{background-color:#408140 \9}
400 | .btn-info{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#49afcd;background-image:-moz-linear-gradient(top,#5bc0de,#2f96b4);background-image:-webkit-gradient(linear,0 0,0 100%,from(#5bc0de),to(#2f96b4));background-image:-webkit-linear-gradient(top,#5bc0de,#2f96b4);background-image:-o-linear-gradient(top,#5bc0de,#2f96b4);background-image:linear-gradient(to bottom,#5bc0de,#2f96b4);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de',endColorstr='#ff2f96b4',GradientType=0);border-color:#2f96b4 #2f96b4 #1f6377;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#2f96b4;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}
401 | .btn-info:hover,.btn-info:active,.btn-info.active,.btn-info.disabled,.btn-info[disabled]{color:#fff;background-color:#2f96b4;*background-color:#2a85a0}
402 | .btn-info:active,.btn-info.active{background-color:#24748c \9}
403 | .btn-inverse{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#363636;background-image:-moz-linear-gradient(top,#444,#222);background-image:-webkit-gradient(linear,0 0,0 100%,from(#444),to(#222));background-image:-webkit-linear-gradient(top,#444,#222);background-image:-o-linear-gradient(top,#444,#222);background-image:linear-gradient(to bottom,#444,#222);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff444444',endColorstr='#ff222222',GradientType=0);border-color:#222 #222222 #000;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#222;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}
404 | .btn-inverse:hover,.btn-inverse:active,.btn-inverse.active,.btn-inverse.disabled,.btn-inverse[disabled]{color:#fff;background-color:#222;*background-color:#151515}
405 | .btn-inverse:active,.btn-inverse.active{background-color:#080808 \9}
406 | button.btn,input[type="submit"].btn{*padding-top:3px;*padding-bottom:3px}
407 | button.btn::-moz-focus-inner,input[type="submit"].btn::-moz-focus-inner{padding:0;border:0}
408 | button.btn.btn-large,input[type="submit"].btn.btn-large{*padding-top:7px;*padding-bottom:7px}
409 | button.btn.btn-small,input[type="submit"].btn.btn-small{*padding-top:3px;*padding-bottom:3px}
410 | button.btn.btn-mini,input[type="submit"].btn.btn-mini{*padding-top:1px;*padding-bottom:1px}
411 | .btn-link,.btn-link:active,.btn-link[disabled]{background-color:transparent;background-image:none;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}
412 | .btn-link{border-color:transparent;cursor:pointer;color:#0063ca;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}
413 | .btn-link:hover{color:#003e7e;text-decoration:underline;background-color:transparent}
414 | .btn-link[disabled]:hover{color:#333;text-decoration:none}
415 | .btn-group{position:relative;font-size:0;vertical-align:middle;white-space:nowrap;*margin-left:.3em}
416 | .btn-group:first-child{*margin-left:0}
417 | .btn-group+.btn-group{margin-left:5px}
418 | .btn-toolbar{font-size:0;margin-top:10px;margin-bottom:10px}
419 | .btn-toolbar .btn-group{display:inline-block;*display:inline;*zoom:1}
420 | .btn-toolbar .btn+.btn,.btn-toolbar .btn-group+.btn,.btn-toolbar .btn+.btn-group{margin-left:5px}
421 | .btn-group>.btn{position:relative;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}
422 | .btn-group>.btn+.btn{margin-left:-1px}
423 | .btn-group>.btn,.btn-group>.dropdown-menu{font-size:13px}
424 | .btn-group>.btn-mini{font-size:11px}
425 | .btn-group>.btn-small{font-size:12px}
426 | .btn-group>.btn-large{font-size:16px}
427 | .btn-group>.btn:first-child{margin-left:0;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px}
428 | .btn-group>.btn:last-child,.btn-group>.dropdown-toggle{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px}
429 | .btn-group>.btn.large:first-child{margin-left:0;-webkit-border-top-left-radius:6px;-moz-border-radius-topleft:6px;border-top-left-radius:6px;-webkit-border-bottom-left-radius:6px;-moz-border-radius-bottomleft:6px;border-bottom-left-radius:6px}
430 | .btn-group>.btn.large:last-child,.btn-group>.large.dropdown-toggle{-webkit-border-top-right-radius:6px;-moz-border-radius-topright:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;-moz-border-radius-bottomright:6px;border-bottom-right-radius:6px}
431 | .btn-group>.btn:hover,.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active{z-index:2}
432 | .btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}
433 | .btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px;-webkit-box-shadow:inset 1px 0 0 rgba(255,255,255,0.125),inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);-moz-box-shadow:inset 1px 0 0 rgba(255,255,255,0.125),inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);box-shadow:inset 1px 0 0 rgba(255,255,255,0.125),inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);*padding-top:5px;*padding-bottom:5px}
434 | .btn-group>.btn-mini+.dropdown-toggle{padding-left:5px;padding-right:5px;*padding-top:2px;*padding-bottom:2px}
435 | .btn-group>.btn-small+.dropdown-toggle{*padding-top:5px;*padding-bottom:4px}
436 | .btn-group>.btn-large+.dropdown-toggle{padding-left:12px;padding-right:12px;*padding-top:7px;*padding-bottom:7px}
437 | .btn-group.open .dropdown-toggle{background-image:none;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05);box-shadow:inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05)}
438 | .btn-group.open .btn.dropdown-toggle{background-color:#e6e6e6}
439 | .btn-group.open .btn-primary.dropdown-toggle{background-color:#003e7e}
440 | .btn-group.open .btn-warning.dropdown-toggle{background-color:#f89406}
441 | .btn-group.open .btn-danger.dropdown-toggle{background-color:#bd362f}
442 | .btn-group.open .btn-success.dropdown-toggle{background-color:#51a351}
443 | .btn-group.open .btn-info.dropdown-toggle{background-color:#2f96b4}
444 | .btn-group.open .btn-inverse.dropdown-toggle{background-color:#222}
445 | .btn .caret{margin-top:8px;margin-left:0}
446 | .btn-mini .caret,.btn-small .caret,.btn-large .caret{margin-top:6px}
447 | .btn-large .caret{border-left-width:5px;border-right-width:5px;border-top-width:5px}
448 | .dropup .btn-large .caret{border-bottom:5px solid #000;border-top:0}
449 | .btn-primary .caret,.btn-warning .caret,.btn-danger .caret,.btn-info .caret,.btn-success .caret,.btn-inverse .caret{border-top-color:#fff;border-bottom-color:#fff}
450 | .btn-group-vertical{display:inline-block;*display:inline;*zoom:1}
451 | .btn-group-vertical .btn{display:block;float:none;width:100%;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}
452 | .btn-group-vertical .btn+.btn{margin-left:0;margin-top:-1px}
453 | .btn-group-vertical .btn:first-child{-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0}
454 | .btn-group-vertical .btn:last-child{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px}
455 | .btn-group-vertical .btn-large:first-child{-webkit-border-radius:6px 6px 0 0;-moz-border-radius:6px 6px 0 0;border-radius:6px 6px 0 0}
456 | .btn-group-vertical .btn-large:last-child{-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px}
457 | .alert{padding:8px 35px 8px 14px;margin-bottom:20px;text-shadow:0 1px 0 rgba(255,255,255,0.5);background-color:#fcf8e3;border:1px solid #fbeed5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;color:#c09853}
458 | .alert h4{margin:0}
459 | .alert .close{position:relative;top:-2px;right:-21px;line-height:20px}
460 | .alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#468847}
461 | .alert-danger,.alert-error{background-color:#f2dede;border-color:#eed3d7;color:#b94a48}
462 | .alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#3a87ad}
463 | .alert-block{padding-top:14px;padding-bottom:14px}
464 | .alert-block>p,.alert-block>ul{margin-bottom:0}
465 | .alert-block p+p{margin-top:5px}
466 | .nav{margin-left:0;margin-bottom:20px;list-style:none}
467 | .nav>li>a{display:block}
468 | .nav>li>a:hover{text-decoration:none;background-color:#eee}
469 | .nav>.pull-right{float:right}
470 | .nav-header{display:block;padding:3px 15px;font-size:11px;font-weight:bold;line-height:20px;color:#999;text-shadow:0 1px 0 rgba(255,255,255,0.5);text-transform:uppercase}
471 | .nav li+.nav-header{margin-top:9px}
472 | .nav-list{padding-left:15px;padding-right:15px;margin-bottom:0}
473 | .nav-list>li>a,.nav-list .nav-header{margin-left:-15px;margin-right:-15px;text-shadow:0 1px 0 rgba(255,255,255,0.5)}
474 | .nav-list>li>a{padding:3px 15px}
475 | .nav-list>.active>a,.nav-list>.active>a:hover{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.2);background-color:#0063ca}
476 | .nav-list [class^="icon-"]{margin-right:2px}
477 | .nav-list .divider{*width:100%;height:1px;margin:9px 1px;*margin:-5px 0 5px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #fff}
478 | .nav>.disabled>a{color:#999}
479 | .nav>.disabled>a:hover{text-decoration:none;background-color:transparent;cursor:default}
480 | .navbar{overflow:visible;margin-bottom:20px;color:#777;*position:relative;*z-index:2}
481 | .navbar-inner{min-height:40px;padding-left:20px;padding-right:20px;background-color:#fafafa;background-image:-moz-linear-gradient(top,#fff,#f2f2f2);background-image:-webkit-gradient(linear,0 0,0 100%,from(#fff),to(#f2f2f2));background-image:-webkit-linear-gradient(top,#fff,#f2f2f2);background-image:-o-linear-gradient(top,#fff,#f2f2f2);background-image:linear-gradient(to bottom,#fff,#f2f2f2);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff',endColorstr='#fff2f2f2',GradientType=0);border:1px solid #d4d4d4;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 4px rgba(0,0,0,0.065);-moz-box-shadow:0 1px 4px rgba(0,0,0,0.065);box-shadow:0 1px 4px rgba(0,0,0,0.065);*zoom:1}
482 | .navbar-inner:before,.navbar-inner:after{display:table;content:"";line-height:0}
483 | .navbar-inner:after{clear:both}
484 | .navbar .container{width:auto}
485 | .nav-collapse.collapse{height:auto}
486 | .navbar .brand{float:left;display:block;padding:4px 20px 0;margin-left:-20px;font-size:20px;font-weight:200;color:#777;text-shadow:0 1px 0 #fff}
487 | .navbar .brand:hover{text-decoration:none}
488 | .navbar-text{margin-bottom:0;line-height:40px}
489 | .navbar-link{color:#777}
490 | .navbar-link:hover{color:#333}
491 | .navbar .divider-vertical{height:40px;margin:0 9px;border-left:1px solid #f2f2f2;border-right:1px solid #fff}
492 | .navbar .btn,.navbar .btn-group{margin-top:5px}
493 | .navbar .btn-group .btn,.navbar .input-prepend .btn,.navbar .input-append .btn{margin-top:0}
494 | .navbar-form{margin-bottom:0;*zoom:1}
495 | .navbar-form:before,.navbar-form:after{display:table;content:"";line-height:0}
496 | .navbar-form:after{clear:both}
497 | .navbar-form input,.navbar-form select,.navbar-form .radio,.navbar-form .checkbox{margin-top:5px}
498 | .navbar-form input,.navbar-form select,.navbar-form .btn{display:inline-block;margin-bottom:0}
499 | .navbar-form input[type="image"],.navbar-form input[type="checkbox"],.navbar-form input[type="radio"]{margin-top:3px}
500 | .navbar-form .input-append,.navbar-form .input-prepend{margin-top:6px;white-space:nowrap}
501 | .navbar-form .input-append input,.navbar-form .input-prepend input{margin-top:0}
502 | .navbar-search{position:relative;float:left;margin-top:5px;margin-bottom:0}
503 | .navbar-search .search-query{margin-bottom:0;padding:4px 14px;font-family:"Segoe UI","Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;font-weight:normal;line-height:1;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px}
504 | .navbar-static-top{position:static;width:100%;margin-bottom:0}
505 | .navbar-static-top .navbar-inner{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}
506 | .navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:10300;margin-bottom:0}
507 | .navbar-fixed-top .navbar-inner,.navbar-static-top .navbar-inner{border-width:0 0 1px}
508 | .navbar-fixed-bottom .navbar-inner{border-width:1px 0 0}
509 | .navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner{padding-left:0;padding-right:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}
510 | .navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px}
511 | .navbar-fixed-top{top:0}
512 | .navbar-fixed-top .navbar-inner,.navbar-static-top .navbar-inner{-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.1),0 1px 10px rgba(0,0,0,0.1);-moz-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.1),0 1px 10px rgba(0,0,0,0.1);box-shadow:inset 0 -1px 0 rgba(0,0,0,0.1),0 1px 10px rgba(0,0,0,0.1)}
513 | .navbar-fixed-bottom{bottom:0}
514 | .navbar-fixed-bottom .navbar-inner{-webkit-box-shadow:inset 0 1px 0 rgba(0,0,0,0.1),0 -1px 10px rgba(0,0,0,0.1);-moz-box-shadow:inset 0 1px 0 rgba(0,0,0,0.1),0 -1px 10px rgba(0,0,0,0.1);box-shadow:inset 0 1px 0 rgba(0,0,0,0.1),0 -1px 10px rgba(0,0,0,0.1)}
515 | .navbar .nav{position:relative;left:0;display:block;float:left;margin:0 10px 0 0}
516 | .navbar .nav.pull-right{float:right;margin-right:0}
517 | .navbar .nav>li{float:left}
518 | .navbar .nav>li>a{float:none;padding:10px 15px 10px;color:#777;text-decoration:none;text-shadow:0 1px 0 #fff}
519 | .navbar .nav .dropdown-toggle .caret{margin-top:8px}
520 | .navbar .nav>li>a:focus,.navbar .nav>li>a:hover{background-color:transparent;color:#333;text-decoration:none}
521 | .navbar .nav>.active>a,.navbar .nav>.active>a:hover,.navbar .nav>.active>a:focus{color:#555;text-decoration:none;background-color:#e5e5e5;-webkit-box-shadow:inset 0 3px 8px rgba(0,0,0,0.125);-moz-box-shadow:inset 0 3px 8px rgba(0,0,0,0.125);box-shadow:inset 0 3px 8px rgba(0,0,0,0.125)}
522 | .navbar .btn-navbar{display:none;float:right;padding:7px 10px;margin-left:5px;margin-right:5px;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#ededed;background-image:-moz-linear-gradient(top,#f2f2f2,#e5e5e5);background-image:-webkit-gradient(linear,0 0,0 100%,from(#f2f2f2),to(#e5e5e5));background-image:-webkit-linear-gradient(top,#f2f2f2,#e5e5e5);background-image:-o-linear-gradient(top,#f2f2f2,#e5e5e5);background-image:linear-gradient(to bottom,#f2f2f2,#e5e5e5);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2f2f2',endColorstr='#ffe5e5e5',GradientType=0);border-color:#e5e5e5 #e5e5e5 #bfbfbf;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#e5e5e5;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.075);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.075);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.075)}
523 | .navbar .btn-navbar:hover,.navbar .btn-navbar:active,.navbar .btn-navbar.active,.navbar .btn-navbar.disabled,.navbar .btn-navbar[disabled]{color:#fff;background-color:#e5e5e5;*background-color:#d9d9d9}
524 | .navbar .btn-navbar:active,.navbar .btn-navbar.active{background-color:#ccc \9}
525 | .navbar .btn-navbar .icon-bar{display:block;width:18px;height:2px;background-color:#f5f5f5;-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px;-webkit-box-shadow:0 1px 0 rgba(0,0,0,0.25);-moz-box-shadow:0 1px 0 rgba(0,0,0,0.25);box-shadow:0 1px 0 rgba(0,0,0,0.25)}
526 | .btn-navbar .icon-bar+.icon-bar{margin-top:3px}
527 | .navbar .nav>li>.dropdown-menu:before{content:'';display:inline-block;border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-bottom-color:rgba(0,0,0,0.2);position:absolute;top:-7px;left:9px}
528 | .navbar .nav>li>.dropdown-menu:after{content:'';display:inline-block;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #fff;position:absolute;top:-6px;left:10px}
529 | .navbar-fixed-bottom .nav>li>.dropdown-menu:before{border-top:7px solid #ccc;border-top-color:rgba(0,0,0,0.2);border-bottom:0;bottom:-7px;top:auto}
530 | .navbar-fixed-bottom .nav>li>.dropdown-menu:after{border-top:6px solid #fff;border-bottom:0;bottom:-6px;top:auto}
531 | .navbar .nav li.dropdown.open>.dropdown-toggle,.navbar .nav li.dropdown.active>.dropdown-toggle,.navbar .nav li.dropdown.open.active>.dropdown-toggle{background-color:#e5e5e5;color:#555}
532 | .navbar .nav li.dropdown>.dropdown-toggle .caret{border-top-color:#777;border-bottom-color:#777}
533 | .navbar .nav li.dropdown.open>.dropdown-toggle .caret,.navbar .nav li.dropdown.active>.dropdown-toggle .caret,.navbar .nav li.dropdown.open.active>.dropdown-toggle .caret{border-top-color:#555;border-bottom-color:#555}
534 | .navbar .pull-right>li>.dropdown-menu,.navbar .nav>li>.dropdown-menu.pull-right{left:auto;right:0}
535 | .navbar .pull-right>li>.dropdown-menu:before,.navbar .nav>li>.dropdown-menu.pull-right:before{left:auto;right:12px}
536 | .navbar .pull-right>li>.dropdown-menu:after,.navbar .nav>li>.dropdown-menu.pull-right:after{left:auto;right:13px}
537 | .navbar .pull-right>li>.dropdown-menu .dropdown-menu,.navbar .nav>li>.dropdown-menu.pull-right .dropdown-menu{left:auto;right:100%;margin-left:0;margin-right:-1px;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px}
538 | .navbar-inverse{color:#fff}
539 | .navbar-inverse .navbar-inner{background-color:#0052a8;background-image:-moz-linear-gradient(top,#0063ca,#003874);background-image:-webkit-gradient(linear,0 0,0 100%,from(#0063ca),to(#003874));background-image:-webkit-linear-gradient(top,#0063ca,#003874);background-image:-o-linear-gradient(top,#0063ca,#003874);background-image:linear-gradient(to bottom,#0063ca,#003874);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0063ca',endColorstr='#ff003874',GradientType=0);border-color:#252525}
540 | .navbar-inverse .brand,.navbar-inverse .nav>li>a{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25)}
541 | .navbar-inverse .brand:hover,.navbar-inverse .nav>li>a:hover{color:#fff}
542 | .navbar-inverse .nav>li>a:focus,.navbar-inverse .nav>li>a:hover{background-color:transparent;color:#fff}
543 | .navbar-inverse .nav .active>a,.navbar-inverse .nav .active>a:hover,.navbar-inverse .nav .active>a:focus{color:#fff;background-color:#003874}
544 | .navbar-inverse .navbar-link{color:#fff}
545 | .navbar-inverse .navbar-link:hover{color:#fff}
546 | .navbar-inverse .divider-vertical{border-left-color:#003874;border-right-color:#0063ca}
547 | .navbar-inverse .nav li.dropdown.open>.dropdown-toggle,.navbar-inverse .nav li.dropdown.active>.dropdown-toggle,.navbar-inverse .nav li.dropdown.open.active>.dropdown-toggle{background-color:#003874;color:#fff}
548 | .navbar-inverse .nav li.dropdown>.dropdown-toggle .caret{border-top-color:#fff;border-bottom-color:#fff}
549 | .navbar-inverse .nav li.dropdown.open>.dropdown-toggle .caret,.navbar-inverse .nav li.dropdown.active>.dropdown-toggle .caret,.navbar-inverse .nav li.dropdown.open.active>.dropdown-toggle .caret{border-top-color:#fff;border-bottom-color:#fff}
550 | .navbar-inverse .navbar-search .search-query{color:#fff;background-color:#0076f3;border-color:#003874;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1),0 1px 0 rgba(255,255,255,0.15);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1),0 1px 0 rgba(255,255,255,0.15);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1),0 1px 0 rgba(255,255,255,0.15);-webkit-transition:none;-moz-transition:none;-o-transition:none;transition:none}
551 | .navbar-inverse .navbar-search .search-query:-moz-placeholder{color:#ccc}
552 | .navbar-inverse .navbar-search .search-query:-ms-input-placeholder{color:#ccc}
553 | .navbar-inverse .navbar-search .search-query::-webkit-input-placeholder{color:#ccc}
554 | .navbar-inverse .navbar-search .search-query:focus,.navbar-inverse .navbar-search .search-query.focused{padding:5px 15px;color:#333;text-shadow:0 1px 0 #fff;background-color:#fff;border:0;-webkit-box-shadow:0 0 3px rgba(0,0,0,0.15);-moz-box-shadow:0 0 3px rgba(0,0,0,0.15);box-shadow:0 0 3px rgba(0,0,0,0.15);outline:0}
555 | .navbar-inverse .btn-navbar{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#00458e;background-image:-moz-linear-gradient(top,#0057b1,#002c5a);background-image:-webkit-gradient(linear,0 0,0 100%,from(#0057b1),to(#002c5a));background-image:-webkit-linear-gradient(top,#0057b1,#002c5a);background-image:-o-linear-gradient(top,#0057b1,#002c5a);background-image:linear-gradient(to bottom,#0057b1,#002c5a);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0057b1',endColorstr='#ff002c5a',GradientType=0);border-color:#002c5a #002c5a #00070e;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#002c5a;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}
556 | .navbar-inverse .btn-navbar:hover,.navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active,.navbar-inverse .btn-navbar.disabled,.navbar-inverse .btn-navbar[disabled]{color:#fff;background-color:#002c5a;*background-color:#001f41}
557 | .navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active{background-color:#001327 \9}
558 | .breadcrumb{padding:8px 15px;margin:0 0 20px;list-style:none;background-color:#f5f5f5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}
559 | .breadcrumb li{display:inline-block;*display:inline;*zoom:1;text-shadow:0 1px 0 #fff}
560 | .breadcrumb .divider{padding:0 5px;color:#ccc}
561 | .breadcrumb .active{color:#999}
562 | .thumbnails{margin-left:-20px;list-style:none;*zoom:1}
563 | .thumbnails:before,.thumbnails:after{display:table;content:"";line-height:0}
564 | .thumbnails:after{clear:both}
565 | .row-fluid .thumbnails{margin-left:0}
566 | .thumbnails>li{float:left;margin-bottom:20px;margin-left:20px}
567 | .thumbnail{display:block;padding:4px;line-height:20px;border:1px solid #ddd;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.055);-moz-box-shadow:0 1px 3px rgba(0,0,0,0.055);box-shadow:0 1px 3px rgba(0,0,0,0.055);-webkit-transition:all .2s ease-in-out;-moz-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}
568 | a.thumbnail:hover{border-color:#0063ca;-webkit-box-shadow:0 1px 4px rgba(0,105,214,0.25);-moz-box-shadow:0 1px 4px rgba(0,105,214,0.25);box-shadow:0 1px 4px rgba(0,105,214,0.25)}
569 | .thumbnail>img{display:block;max-width:100%;margin-left:auto;margin-right:auto}
570 | .thumbnail .caption{padding:9px;color:#555}
571 | .label,.badge{font-size:10.998px;font-weight:bold;line-height:14px;color:#fff;vertical-align:baseline;white-space:nowrap;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#999}
572 | .label{padding:1px 4px 2px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}
573 | .badge{padding:1px 9px 2px;-webkit-border-radius:9px;-moz-border-radius:9px;border-radius:9px}
574 | a.label:hover,a.badge:hover{color:#fff;text-decoration:none;cursor:pointer}
575 | .label-important,.badge-important{background-color:#b94a48}
576 | .label-important[href],.badge-important[href]{background-color:#953b39}
577 | .label-warning,.badge-warning{background-color:#f89406}
578 | .label-warning[href],.badge-warning[href]{background-color:#c67605}
579 | .label-success,.badge-success{background-color:#468847}
580 | .label-success[href],.badge-success[href]{background-color:#356635}
581 | .label-info,.badge-info{background-color:#3a87ad}
582 | .label-info[href],.badge-info[href]{background-color:#2d6987}
583 | .label-inverse,.badge-inverse{background-color:#333}
584 | .label-inverse[href],.badge-inverse[href]{background-color:#1a1a1a}
585 | .btn .label,.btn .badge{position:relative;top:-1px}
586 | .btn-mini .label,.btn-mini .badge{top:0}
587 | .hero-unit{padding:50px;margin-bottom:30px;background-color:#eee;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}
588 | .hero-unit h1{margin-bottom:10px;margin-top:0;font-size:40px;line-height:1;color:inherit;letter-spacing:-1px;text-align:center}
589 | .hero-unit h2{font-size:30px;margin:0}
590 | .hero-unit p{font-size:16px;font-weight:200;line-height:25px;color:inherit}
591 | .pull-right{float:right}
592 | .pull-left{float:left}
593 | .hide{display:none}
594 | .show{display:block}
595 | .invisible{visibility:hidden}
596 | .affix{position:fixed}
--------------------------------------------------------------------------------
/template.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | [REPLACE THIS WITH YOUR TITLE]
5 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
20 | |
21 |
22 |
23 |
24 |
25 |
26 | [BODY CONTENT GOES HERE] |
27 |
28 |
29 | |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 | [PUT YOUR COPYRIGHT OR OTHER FOOTERY GOODNESS HERE]
38 | |
39 |
40 |
41 | |
42 |
43 |
44 |
45 |
46 |
--------------------------------------------------------------------------------