Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Bootstrap
bootstrap
Commits
27a656f7
Commit
27a656f7
authored
11 years ago
by
Mark Otto
Browse files
Options
Download
Plain Diff
Merge branch '3.0.0-wip' of github.com:twitter/bootstrap into 3.0.0-wip
parents
425ec58e
93eeb857
2 merge requests
!8635
ignore Gruntfile.js in jekyll
,
!8656
Added rel="stylesheet" to CDN-Examples
Changes
11
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
assets/js/application.js
+2
-4
assets/js/application.js
dist/css/bootstrap.css
+9
-4
dist/css/bootstrap.css
dist/css/bootstrap.min.css
+1
-1
dist/css/bootstrap.min.css
dist/js/bootstrap.js
+44
-30
dist/js/bootstrap.js
dist/js/bootstrap.min.js
+1
-1
dist/js/bootstrap.min.js
javascript.html
+65
-4
javascript.html
js/collapse.js
+41
-30
js/collapse.js
js/popover.js
+2
-0
js/popover.js
js/transition.js
+1
-0
js/transition.js
less/component-animations.less
+6
-4
less/component-animations.less
less/navbar.less
+1
-0
less/navbar.less
with
173 additions
and
78 deletions
+173
-78
assets/js/application.js
+
2
-
4
View file @
27a656f7
...
...
@@ -15,13 +15,11 @@
offset
:
navHeight
})
// Disable certain links in docs
$
(
'
.bs-docs-container [href=#]
'
).
click
(
function
(
e
)
{
$
(
'
[href^=#]
'
).
click
(
function
(
e
)
{
e
.
preventDefault
()
})
$
(
document
.
body
).
on
(
'
click
'
,
'
[href^=#]
'
,
function
(
e
)
{
$
(
document
.
body
).
on
(
'
click
'
,
'
.bs-sidenav [href^=#]
'
,
function
(
e
)
{
var
$target
=
$
(
this
.
getAttribute
(
'
href
'
))
e
.
preventDefault
()
// prevent browser scroll
...
...
This diff is collapsed.
Click to expand it.
dist/css/bootstrap.css
+
9
-
4
View file @
27a656f7
...
...
@@ -2016,6 +2016,14 @@ input[type="button"].btn-block {
}
.collapse
{
display
:
none
;
}
.collapse.in
{
display
:
block
;
}
.collapsing
{
position
:
relative
;
height
:
0
;
overflow
:
hidden
;
...
...
@@ -2023,10 +2031,6 @@ input[type="button"].btn-block {
transition
:
height
0.35s
ease
;
}
.collapse.in
{
height
:
auto
;
}
.caret
{
display
:
inline-block
;
width
:
0
;
...
...
@@ -2939,6 +2943,7 @@ button.close {
display
:
none
;
}
.nav-collapse.collapse
{
display
:
block
!important
;
height
:
auto
!important
;
overflow
:
visible
!important
;
}
...
...
This diff is collapsed.
Click to expand it.
dist/css/bootstrap.min.css
+
1
-
1
View file @
27a656f7
...
...
@@ -6,4 +6,4 @@
* http://www.apache.org/licenses/LICENSE-2.0
*
* Designed and built with all the love in the world by @mdo and @fat.
*//*! normalize.css v2.1.0 | MIT License | git.io/normalize */
article
,
aside
,
details
,
figcaption
,
figure
,
footer
,
header
,
hgroup
,
main
,
nav
,
section
,
summary
{
display
:
block
}
audio
,
canvas
,
video
{
display
:
inline-block
}
audio
:not
([
controls
])
{
display
:
none
;
height
:
0
}
[
hidden
]
{
display
:
none
}
html
{
font-family
:
sans-serif
;
-webkit-text-size-adjust
:
100%
;
-ms-text-size-adjust
:
100%
}
body
{
margin
:
0
}
a
:focus
{
outline
:
thin
dotted
}
a
:active
,
a
:hover
{
outline
:
0
}
h1
{
margin
:
.67em
0
;
font-size
:
2em
}
abbr
[
title
]
{
border-bottom
:
1px
dotted
}
b
,
strong
{
font-weight
:
bold
}
dfn
{
font-style
:
italic
}
hr
{
height
:
0
;
-moz-box-sizing
:
content-box
;
box-sizing
:
content-box
}
mark
{
color
:
#000
;
background
:
#ff0
}
code
,
kbd
,
pre
,
samp
{
font-family
:
monospace
,
serif
;
font-size
:
1em
}
pre
{
white-space
:
pre-wrap
}
q
{
quotes
:
"\201C"
"\201D"
"\2018"
"\2019"
}
small
{
font-size
:
80%
}
sub
,
sup
{
position
:
relative
;
font-size
:
75%
;
line-height
:
0
;
vertical-align
:
baseline
}
sup
{
top
:
-0.5em
}
sub
{
bottom
:
-0.25em
}
img
{
border
:
0
}
svg
:not
(
:root
)
{
overflow
:
hidden
}
figure
{
margin
:
0
}
fieldset
{
padding
:
.35em
.625em
.75em
;
margin
:
0
2px
;
border
:
1px
solid
#c0c0c0
}
legend
{
padding
:
0
;
border
:
0
}
button
,
input
,
select
,
textarea
{
margin
:
0
;
font-family
:
inherit
;
font-size
:
100%
}
button
,
input
{
line-height
:
normal
}
button
,
select
{
text-transform
:
none
}
button
,
html
input
[
type
=
"button"
],
input
[
type
=
"reset"
],
input
[
type
=
"submit"
]
{
cursor
:
pointer
;
-webkit-appearance
:
button
}
button
[
disabled
],
html
input
[
disabled
]
{
cursor
:
default
}
input
[
type
=
"checkbox"
],
input
[
type
=
"radio"
]
{
padding
:
0
;
box-sizing
:
border-box
}
input
[
type
=
"search"
]
{
-webkit-box-sizing
:
content-box
;
-moz-box-sizing
:
content-box
;
box-sizing
:
content-box
;
-webkit-appearance
:
textfield
}
input
[
type
=
"search"
]
::-webkit-search-cancel-button
,
input
[
type
=
"search"
]
::-webkit-search-decoration
{
-webkit-appearance
:
none
}
button
::-moz-focus-inner
,
input
::-moz-focus-inner
{
padding
:
0
;
border
:
0
}
textarea
{
overflow
:
auto
;
vertical-align
:
top
}
table
{
border-collapse
:
collapse
;
border-spacing
:
0
}
@media
print
{
*
{
color
:
#000
!important
;
text-shadow
:
none
!important
;
background
:
transparent
!important
;
box-shadow
:
none
!important
}
a
,
a
:visited
{
text-decoration
:
underline
}
a
[
href
]
:after
{
content
:
" ("
attr
(
href
)
")"
}
abbr
[
title
]
:after
{
content
:
" ("
attr
(
title
)
")"
}
.ir
a
:after
,
a
[
href
^=
"javascript:"
]
:after
,
a
[
href
^=
"#"
]
:after
{
content
:
""
}
pre
,
blockquote
{
border
:
1px
solid
#999
;
page-break-inside
:
avoid
}
thead
{
display
:
table-header-group
}
tr
,
img
{
page-break-inside
:
avoid
}
img
{
max-width
:
100%
!important
}
@page
{
margin
:
2cm
.5cm
}
p
,
h2
,
h3
{
orphans
:
3
;
widows
:
3
}
h2
,
h3
{
page-break-after
:
avoid
}
.navbar
{
display
:
none
}
.table
td
,
.table
th
{
background-color
:
#fff
!important
}
.btn
>
.caret
,
.dropup
>
.btn
>
.caret
{
border-top-color
:
#000
!important
}
.label
{
border
:
1px
solid
#000
}
.table
{
border-collapse
:
collapse
!important
}
.table-bordered
th
,
.table-bordered
td
{
border
:
1px
solid
#ddd
!important
}}
*
{
-webkit-box-sizing
:
border-box
;
-moz-box-sizing
:
border-box
;
box-sizing
:
border-box
}
html
{
font-size
:
62.5%
;
-webkit-tap-highlight-color
:
rgba
(
0
,
0
,
0
,
0
)}
body
{
font-family
:
"Helvetica Neue"
,
Helvetica
,
Arial
,
sans-serif
;
font-size
:
14px
;
line-height
:
1.428571429
;
color
:
#333
;
background-color
:
#fff
}
input
,
button
,
select
,
textarea
{
font-family
:
inherit
;
font-size
:
inherit
;
line-height
:
inherit
}
a
{
color
:
#428bca
;
text-decoration
:
none
}
a
:hover
,
a
:focus
{
color
:
#2a6496
;
text-decoration
:
underline
}
a
:focus
{
outline
:
thin
dotted
#333
;
outline
:
5px
auto
-webkit-focus-ring-color
;
outline-offset
:
-2px
}
img
{
vertical-align
:
middle
}
.img-responsive
{
display
:
inline-block
;
height
:
auto
;
max-width
:
100%
}
.img-rounded
{
border-radius
:
6px
}
.img-circle
{
border-radius
:
500px
}
hr
{
margin-top
:
20px
;
margin-bottom
:
20px
;
border
:
0
;
border-top
:
1px
solid
#eee
}
p
{
margin
:
0
0
10px
}
.lead
{
margin-bottom
:
20px
;
font-size
:
21px
;
font-weight
:
200
;
line-height
:
1.4
}
small
{
font-size
:
85%
}
cite
{
font-style
:
normal
}
.text-muted
{
color
:
#999
}
.text-primary
{
color
:
#428bca
}
.text-warning
{
color
:
#c09853
}
.text-danger
{
color
:
#b94a48
}
.text-success
{
color
:
#468847
}
.text-info
{
color
:
#3a87ad
}
.text-left
{
text-align
:
left
}
.text-right
{
text-align
:
right
}
.text-center
{
text-align
:
center
}
h1
,
h2
,
h3
,
h4
,
h5
,
h6
,
.h1
,
.h2
,
.h3
,
.h4
,
.h5
,
.h6
{
font-family
:
"Helvetica Neue"
,
Helvetica
,
Arial
,
sans-serif
;
font-weight
:
500
;
line-height
:
1.1
}
h1
small
,
h2
small
,
h3
small
,
h4
small
,
h5
small
,
h6
small
,
.h1
small
,
.h2
small
,
.h3
small
,
.h4
small
,
.h5
small
,
.h6
small
{
font-weight
:
normal
;
line-height
:
1
;
color
:
#999
}
h1
,
h2
,
h3
{
margin-top
:
20px
;
margin-bottom
:
10px
}
h4
,
h5
,
h6
{
margin-top
:
10px
;
margin-bottom
:
10px
}
h1
,
.h1
{
font-size
:
38px
}
h2
,
.h2
{
font-size
:
32px
}
h3
,
.h3
{
font-size
:
24px
}
h4
,
.h4
{
font-size
:
18px
}
h5
,
.h5
{
font-size
:
14px
}
h6
,
.h6
{
font-size
:
12px
}
h1
small
,
.h1
small
{
font-size
:
24px
}
h2
small
,
.h2
small
{
font-size
:
18px
}
h3
small
,
.h3
small
,
h4
small
,
.h4
small
{
font-size
:
14px
}
.page-header
{
padding-bottom
:
9px
;
margin
:
40px
0
20px
;
border-bottom
:
1px
solid
#eee
}
ul
,
ol
{
margin-top
:
0
;
margin-bottom
:
10px
}
ul
ul
,
ol
ul
,
ul
ol
,
ol
ol
{
margin-bottom
:
0
}
.list-unstyled
{
padding-left
:
0
;
list-style
:
none
}
.list-inline
{
padding-left
:
0
;
list-style
:
none
}
.list-inline
>
li
{
display
:
inline-block
;
padding-right
:
5px
;
padding-left
:
5px
}
dl
{
margin-bottom
:
20px
}
dt
,
dd
{
line-height
:
1.428571429
}
dt
{
font-weight
:
bold
}
dd
{
margin-left
:
0
}
.dl-horizontal
dt
{
float
:
left
;
width
:
160px
;
overflow
:
hidden
;
clear
:
left
;
text-align
:
right
;
text-overflow
:
ellipsis
;
white-space
:
nowrap
}
.dl-horizontal
dd
{
margin-left
:
180px
}
.dl-horizontal
dd
:before
,
.dl-horizontal
dd
:after
{
display
:
table
;
content
:
" "
}
.dl-horizontal
dd
:after
{
clear
:
both
}
.dl-horizontal
dd
:before
,
.dl-horizontal
dd
:after
{
display
:
table
;
content
:
" "
}
.dl-horizontal
dd
:after
{
clear
:
both
}
abbr
[
title
],
abbr
[
data-original-title
]
{
cursor
:
help
;
border-bottom
:
1px
dotted
#999
}
abbr
.initialism
{
font-size
:
90%
;
text-transform
:
uppercase
}
blockquote
{
padding
:
10px
20px
;
margin
:
0
0
20px
;
border-left
:
5px
solid
#eee
}
blockquote
p
{
font-size
:
17.5px
;
font-weight
:
300
;
line-height
:
1.25
}
blockquote
p
:last-child
{
margin-bottom
:
0
}
blockquote
small
{
display
:
block
;
line-height
:
1.428571429
;
color
:
#999
}
blockquote
small
:before
{
content
:
'\2014 \00A0'
}
blockquote
.pull-right
{
float
:
right
;
padding-right
:
15px
;
padding-left
:
0
;
border-right
:
5px
solid
#eee
;
border-left
:
0
}
blockquote
.pull-right
p
,
blockquote
.pull-right
small
{
text-align
:
right
}
blockquote
.pull-right
small
:before
{
content
:
''
}
blockquote
.pull-right
small
:after
{
content
:
'\00A0 \2014'
}
q
:before
,
q
:after
,
blockquote
:before
,
blockquote
:after
{
content
:
""
}
address
{
display
:
block
;
margin-bottom
:
20px
;
font-style
:
normal
;
line-height
:
1.428571429
}
code
,
pre
{
font-family
:
Monaco
,
Menlo
,
Consolas
,
"Courier New"
,
monospace
}
code
{
padding
:
2px
4px
;
font-size
:
90%
;
color
:
#c7254e
;
white-space
:
nowrap
;
background-color
:
#f9f2f4
;
border-radius
:
4px
}
pre
{
display
:
block
;
padding
:
9.5px
;
margin
:
0
0
10px
;
font-size
:
13px
;
line-height
:
1.428571429
;
color
:
#333
;
word-break
:
break-all
;
word-wrap
:
break-word
;
background-color
:
#f5f5f5
;
border
:
1px
solid
#ccc
;
border-radius
:
4px
}
pre
.prettyprint
{
margin-bottom
:
20px
}
pre
code
{
padding
:
0
;
color
:
inherit
;
white-space
:
pre-wrap
;
background-color
:
transparent
;
border
:
0
}
.pre-scrollable
{
max-height
:
340px
;
overflow-y
:
scroll
}
.container
{
margin-right
:
auto
;
margin-left
:
auto
}
.container
:before
,
.container
:after
{
display
:
table
;
content
:
" "
}
.container
:after
{
clear
:
both
}
.container
:before
,
.container
:after
{
display
:
table
;
content
:
" "
}
.container
:after
{
clear
:
both
}
.row
:before
,
.row
:after
{
display
:
table
;
content
:
" "
}
.row
:after
{
clear
:
both
}
.row
:before
,
.row
:after
{
display
:
table
;
content
:
" "
}
.row
:after
{
clear
:
both
}
@media
(
min-width
:
768px
){
.row
{
margin-right
:
-15px
;
margin-left
:
-15px
}}
.row
.row
{
margin-right
:
-15px
;
margin-left
:
-15px
}
.col-1
,
.col-2
,
.col-3
,
.col-4
,
.col-5
,
.col-6
,
.col-7
,
.col-8
,
.col-9
,
.col-10
,
.col-11
,
.col-12
,
.col-sm-1
,
.col-sm-2
,
.col-sm-3
,
.col-sm-4
,
.col-sm-5
,
.col-sm-6
,
.col-sm-7
,
.col-sm-8
,
.col-sm-9
,
.col-sm-10
,
.col-sm-11
,
.col-sm-12
,
.col-lg-1
,
.col-lg-2
,
.col-lg-3
,
.col-lg-4
,
.col-lg-5
,
.col-lg-6
,
.col-lg-7
,
.col-lg-8
,
.col-lg-9
,
.col-lg-10
,
.col-lg-11
,
.col-lg-12
{
position
:
relative
;
min-height
:
1px
;
padding-right
:
15px
;
padding-left
:
15px
}
.col-1
,
.col-2
,
.col-3
,
.col-4
,
.col-5
,
.col-6
,
.col-7
,
.col-8
,
.col-9
,
.col-10
,
.col-11
,
.col-12
{
float
:
left
}
.col-1
{
width
:
8.333333333333332%
}
.col-2
{
width
:
16.666666666666664%
}
.col-3
{
width
:
25%
}
.col-4
{
width
:
33.33333333333333%
}
.col-5
{
width
:
41.66666666666667%
}
.col-6
{
width
:
50%
}
.col-7
{
width
:
58.333333333333336%
}
.col-8
{
width
:
66.66666666666666%
}
.col-9
{
width
:
75%
}
.col-10
{
width
:
83.33333333333334%
}
.col-11
{
width
:
91.66666666666666%
}
.col-12
{
width
:
100%
}
@media
(
min-width
:
768px
){
.container
{
max-width
:
728px
}
.col-sm-1
,
.col-sm-2
,
.col-sm-3
,
.col-sm-4
,
.col-sm-5
,
.col-sm-6
,
.col-sm-7
,
.col-sm-8
,
.col-sm-9
,
.col-sm-10
,
.col-sm-11
,
.col-sm-12
{
float
:
left
}
.col-sm-1
{
width
:
8.333333333333332%
}
.col-sm-2
{
width
:
16.666666666666664%
}
.col-sm-3
{
width
:
25%
}
.col-sm-4
{
width
:
33.33333333333333%
}
.col-sm-5
{
width
:
41.66666666666667%
}
.col-sm-6
{
width
:
50%
}
.col-sm-7
{
width
:
58.333333333333336%
}
.col-sm-8
{
width
:
66.66666666666666%
}
.col-sm-9
{
width
:
75%
}
.col-sm-10
{
width
:
83.33333333333334%
}
.col-sm-11
{
width
:
91.66666666666666%
}
.col-sm-12
{
width
:
100%
}
.col-push-1
{
left
:
8.333333333333332%
}
.col-push-2
{
left
:
16.666666666666664%
}
.col-push-3
{
left
:
25%
}
.col-push-4
{
left
:
33.33333333333333%
}
.col-push-5
{
left
:
41.66666666666667%
}
.col-push-6
{
left
:
50%
}
.col-push-7
{
left
:
58.333333333333336%
}
.col-push-8
{
left
:
66.66666666666666%
}
.col-push-9
{
left
:
75%
}
.col-push-10
{
left
:
83.33333333333334%
}
.col-push-11
{
left
:
91.66666666666666%
}
.col-pull-1
{
right
:
8.333333333333332%
}
.col-pull-2
{
right
:
16.666666666666664%
}
.col-pull-3
{
right
:
25%
}
.col-pull-4
{
right
:
33.33333333333333%
}
.col-pull-5
{
right
:
41.66666666666667%
}
.col-pull-6
{
right
:
50%
}
.col-pull-7
{
right
:
58.333333333333336%
}
.col-pull-8
{
right
:
66.66666666666666%
}
.col-pull-9
{
right
:
75%
}
.col-pull-10
{
right
:
83.33333333333334%
}
.col-pull-11
{
right
:
91.66666666666666%
}}
@media
(
min-width
:
992px
){
.container
{
max-width
:
940px
}
.col-lg-1
,
.col-lg-2
,
.col-lg-3
,
.col-lg-4
,
.col-lg-5
,
.col-lg-6
,
.col-lg-7
,
.col-lg-8
,
.col-lg-9
,
.col-lg-10
,
.col-lg-11
,
.col-lg-12
{
float
:
left
}
.col-lg-1
{
width
:
8.333333333333332%
}
.col-lg-2
{
width
:
16.666666666666664%
}
.col-lg-3
{
width
:
25%
}
.col-lg-4
{
width
:
33.33333333333333%
}
.col-lg-5
{
width
:
41.66666666666667%
}
.col-lg-6
{
width
:
50%
}
.col-lg-7
{
width
:
58.333333333333336%
}
.col-lg-8
{
width
:
66.66666666666666%
}
.col-lg-9
{
width
:
75%
}
.col-lg-10
{
width
:
83.33333333333334%
}
.col-lg-11
{
width
:
91.66666666666666%
}
.col-lg-12
{
width
:
100%
}
.col-offset-1
{
margin-left
:
8.333333333333332%
}
.col-offset-2
{
margin-left
:
16.666666666666664%
}
.col-offset-3
{
margin-left
:
25%
}
.col-offset-4
{
margin-left
:
33.33333333333333%
}
.col-offset-5
{
margin-left
:
41.66666666666667%
}
.col-offset-6
{
margin-left
:
50%
}
.col-offset-7
{
margin-left
:
58.333333333333336%
}
.col-offset-8
{
margin-left
:
66.66666666666666%
}
.col-offset-9
{
margin-left
:
75%
}
.col-offset-10
{
margin-left
:
83.33333333333334%
}
.col-offset-11
{
margin-left
:
91.66666666666666%
}}
@media
(
min-width
:
1200px
){
.container
{
max-width
:
1170px
}}
table
{
max-width
:
100%
;
background-color
:
transparent
}
th
{
text-align
:
left
}
.table
{
width
:
100%
;
margin-bottom
:
20px
}
.table
thead
>
tr
>
th
,
.table
tbody
>
tr
>
th
,
.table
tfoot
>
tr
>
th
,
.table
thead
>
tr
>
td
,
.table
tbody
>
tr
>
td
,
.table
tfoot
>
tr
>
td
{
padding
:
8px
;
line-height
:
1.428571429
;
vertical-align
:
top
;
border-top
:
1px
solid
#ddd
}
.table
thead
>
tr
>
th
{
vertical-align
:
bottom
}
.table
caption
+
thead
tr
:first-child
th
,
.table
colgroup
+
thead
tr
:first-child
th
,
.table
thead
:first-child
tr
:first-child
th
,
.table
caption
+
thead
tr
:first-child
td
,
.table
colgroup
+
thead
tr
:first-child
td
,
.table
thead
:first-child
tr
:first-child
td
{
border-top
:
0
}
.table
tbody
+
tbody
{
border-top
:
2px
solid
#ddd
}
.table
.table
{
background-color
:
#fff
}
.table-condensed
thead
>
tr
>
th
,
.table-condensed
tbody
>
tr
>
th
,
.table-condensed
tfoot
>
tr
>
th
,
.table-condensed
thead
>
tr
>
td
,
.table-condensed
tbody
>
tr
>
td
,
.table-condensed
tfoot
>
tr
>
td
{
padding
:
5px
}
.table-bordered
{
border
:
1px
solid
#ddd
}
.table-bordered
>
thead
>
tr
>
th
,
.table-bordered
>
tbody
>
tr
>
th
,
.table-bordered
>
tfoot
>
tr
>
th
,
.table-bordered
>
thead
>
tr
>
td
,
.table-bordered
>
tbody
>
tr
>
td
,
.table-bordered
>
tfoot
>
tr
>
td
{
border
:
1px
solid
#ddd
}
.table-striped
>
tbody
>
tr
:nth-child
(
odd
)>
td
,
.table-striped
>
tbody
>
tr
:nth-child
(
odd
)>
th
{
background-color
:
#f9f9f9
}
.table-hover
>
tbody
>
tr
:hover
>
td
,
.table-hover
>
tbody
>
tr
:hover
>
th
{
background-color
:
#f5f5f5
}
table
col
[
class
^=
"col-"
]
{
display
:
table-column
;
float
:
none
}
table
td
[
class
^=
"col-"
],
table
th
[
class
^=
"col-"
]
{
display
:
table-cell
;
float
:
none
}
.table
>
thead
>
tr
>
td
.active
,
.table
>
tbody
>
tr
>
td
.active
,
.table
>
tfoot
>
tr
>
td
.active
,
.table
>
thead
>
tr
>
th
.active
,
.table
>
tbody
>
tr
>
th
.active
,
.table
>
tfoot
>
tr
>
th
.active
,
.table
>
thead
>
tr
.active
>
td
,
.table
>
tbody
>
tr
.active
>
td
,
.table
>
tfoot
>
tr
.active
>
td
,
.table
>
thead
>
tr
.active
>
th
,
.table
>
tbody
>
tr
.active
>
th
,
.table
>
tfoot
>
tr
.active
>
th
{
background-color
:
#f5f5f5
}
.table
>
thead
>
tr
>
td
.success
,
.table
>
tbody
>
tr
>
td
.success
,
.table
>
tfoot
>
tr
>
td
.success
,
.table
>
thead
>
tr
>
th
.success
,
.table
>
tbody
>
tr
>
th
.success
,
.table
>
tfoot
>
tr
>
th
.success
,
.table
>
thead
>
tr
.success
>
td
,
.table
>
tbody
>
tr
.success
>
td
,
.table
>
tfoot
>
tr
.success
>
td
,
.table
>
thead
>
tr
.success
>
th
,
.table
>
tbody
>
tr
.success
>
th
,
.table
>
tfoot
>
tr
.success
>
th
{
background-color
:
#dff0d8
;
border-color
:
#d6e9c6
}
.table
>
thead
>
tr
>
td
.danger
,
.table
>
tbody
>
tr
>
td
.danger
,
.table
>
tfoot
>
tr
>
td
.danger
,
.table
>
thead
>
tr
>
th
.danger
,
.table
>
tbody
>
tr
>
th
.danger
,
.table
>
tfoot
>
tr
>
th
.danger
,
.table
>
thead
>
tr
.danger
>
td
,
.table
>
tbody
>
tr
.danger
>
td
,
.table
>
tfoot
>
tr
.danger
>
td
,
.table
>
thead
>
tr
.danger
>
th
,
.table
>
tbody
>
tr
.danger
>
th
,
.table
>
tfoot
>
tr
.danger
>
th
{
background-color
:
#f2dede
;
border-color
:
#eed3d7
}
.table
>
thead
>
tr
>
td
.warning
,
.table
>
tbody
>
tr
>
td
.warning
,
.table
>
tfoot
>
tr
>
td
.warning
,
.table
>
thead
>
tr
>
th
.warning
,
.table
>
tbody
>
tr
>
th
.warning
,
.table
>
tfoot
>
tr
>
th
.warning
,
.table
>
thead
>
tr
.warning
>
td
,
.table
>
tbody
>
tr
.warning
>
td
,
.table
>
tfoot
>
tr
.warning
>
td
,
.table
>
thead
>
tr
.warning
>
th
,
.table
>
tbody
>
tr
.warning
>
th
,
.table
>
tfoot
>
tr
.warning
>
th
{
background-color
:
#fcf8e3
;
border-color
:
#fbeed5
}
.table-hover
>
tbody
>
tr
>
td
.success
:hover
,
.table-hover
>
tbody
>
tr
>
th
.success
:hover
,
.table-hover
>
tbody
>
tr
.success
:hover
>
td
{
background-color
:
#d0e9c6
;
border-color
:
#c9e2b3
}
.table-hover
>
tbody
>
tr
>
td
.danger
:hover
,
.table-hover
>
tbody
>
tr
>
th
.danger
:hover
,
.table-hover
>
tbody
>
tr
.danger
:hover
>
td
{
background-color
:
#ebcccc
;
border-color
:
#e6c1c7
}
.table-hover
>
tbody
>
tr
>
td
.warning
:hover
,
.table-hover
>
tbody
>
tr
>
th
.warning
:hover
,
.table-hover
>
tbody
>
tr
.warning
:hover
>
td
{
background-color
:
#faf2cc
;
border-color
:
#f8e5be
}
fieldset
{
padding
:
0
;
margin
:
0
;
border
:
0
}
legend
{
display
:
block
;
width
:
100%
;
padding
:
0
;
margin-bottom
:
20px
;
font-size
:
21px
;
line-height
:
inherit
;
color
:
#333
;
border
:
0
;
border-bottom
:
1px
solid
#e5e5e5
}
label
{
display
:
inline-block
;
margin-bottom
:
5px
;
font-weight
:
bold
}
input
[
type
=
"search"
]
{
-webkit-box-sizing
:
border-box
;
-moz-box-sizing
:
border-box
;
box-sizing
:
border-box
}
input
[
type
=
"radio"
],
input
[
type
=
"checkbox"
]
{
margin
:
4px
0
0
;
margin-top
:
1px
\
9
;
line-height
:
normal
}
input
[
type
=
"file"
]
{
display
:
block
}
select
[
multiple
],
select
[
size
]
{
height
:
auto
}
select
optgroup
{
font-family
:
inherit
;
font-size
:
inherit
;
font-style
:
inherit
}
input
[
type
=
"file"
]
:focus
,
input
[
type
=
"radio"
]
:focus
,
input
[
type
=
"checkbox"
]
:focus
{
outline
:
thin
dotted
#333
;
outline
:
5px
auto
-webkit-focus-ring-color
;
outline-offset
:
-2px
}
input
[
type
=
"number"
]
::-webkit-outer-spin-button
,
input
[
type
=
"number"
]
::-webkit-inner-spin-button
{
height
:
auto
}
.form-control
:-moz-placeholder
{
color
:
#999
}
.form-control
::-moz-placeholder
{
color
:
#999
}
.form-control
:-ms-input-placeholder
{
color
:
#999
}
.form-control
::-webkit-input-placeholder
{
color
:
#999
}
.form-control
{
display
:
block
;
width
:
100%
;
height
:
38px
;
padding
:
8px
12px
;
font-size
:
14px
;
line-height
:
1.428571429
;
color
:
#555
;
vertical-align
:
middle
;
background-color
:
#fff
;
border
:
1px
solid
#ccc
;
border-radius
:
4px
;
-webkit-box-shadow
:
inset
0
1px
1px
rgba
(
0
,
0
,
0
,
0.075
);
box-shadow
:
inset
0
1px
1px
rgba
(
0
,
0
,
0
,
0.075
);
-webkit-transition
:
border-color
ease-in-out
.15s
,
box-shadow
ease-in-out
.15s
;
transition
:
border-color
ease-in-out
.15s
,
box-shadow
ease-in-out
.15s
}
.form-control
:focus
{
border-color
:
rgba
(
82
,
168
,
236
,
0.8
);
outline
:
0
;
-webkit-box-shadow
:
inset
0
1px
1px
rgba
(
0
,
0
,
0
,
0.075
),
0
0
8px
rgba
(
82
,
168
,
236
,
0.6
);
box-shadow
:
inset
0
1px
1px
rgba
(
0
,
0
,
0
,
0.075
),
0
0
8px
rgba
(
82
,
168
,
236
,
0.6
)}
.form-control
[
disabled
],
.form-control
[
readonly
],
fieldset
[
disabled
]
.form-control
{
cursor
:
not-allowed
;
background-color
:
#eee
}
textarea
.form-control
{
height
:
auto
}
.form-group
{
margin-bottom
:
15px
}
.radio
,
.checkbox
{
display
:
block
;
min-height
:
20px
;
padding-left
:
20px
;
margin-top
:
10px
;
margin-bottom
:
10px
;
vertical-align
:
middle
}
.radio
label
,
.checkbox
label
{
display
:
inline
;
margin-bottom
:
0
;
font-weight
:
normal
;
cursor
:
pointer
}
.radio
input
[
type
=
"radio"
],
.radio-inline
input
[
type
=
"radio"
],
.checkbox
input
[
type
=
"checkbox"
],
.checkbox-inline
input
[
type
=
"checkbox"
]
{
float
:
left
;
margin-left
:
-20px
}
.radio
+
.radio
,
.checkbox
+
.checkbox
{
margin-top
:
-5px
}
.radio-inline
,
.checkbox-inline
{
display
:
inline-block
;
padding-left
:
20px
;
margin-bottom
:
0
;
font-weight
:
normal
;
vertical-align
:
middle
;
cursor
:
pointer
}
.radio-inline
+
.radio-inline
,
.checkbox-inline
+
.checkbox-inline
{
margin-top
:
0
;
margin-left
:
10px
}
.form-control.input-large
{
height
:
56px
;
padding
:
14px
16px
;
font-size
:
18px
;
border-radius
:
6px
}
.form-control.input-small
{
height
:
30px
;
padding
:
5px
10px
;
font-size
:
12px
;
border-radius
:
3px
}
select
.input-large
{
height
:
56px
;
line-height
:
56px
}
select
.input-small
{
height
:
30px
;
line-height
:
30px
}
.has-warning
.help-block
,
.has-warning
.control-label
{
color
:
#c09853
}
.has-warning
.form-control
{
padding-right
:
32px
;
border-color
:
#c09853
;
-webkit-box-shadow
:
inset
0
1px
1px
rgba
(
0
,
0
,
0
,
0.075
);
box-shadow
:
inset
0
1px
1px
rgba
(
0
,
0
,
0
,
0.075
)}
.has-warning
.form-control
:focus
{
border-color
:
#a47e3c
;
-webkit-box-shadow
:
inset
0
1px
1px
rgba
(
0
,
0
,
0
,
0.075
),
0
0
6px
#dbc59e
;
box-shadow
:
inset
0
1px
1px
rgba
(
0
,
0
,
0
,
0.075
),
0
0
6px
#dbc59e
}
.has-warning
.input-group-addon
{
color
:
#c09853
;
background-color
:
#fcf8e3
;
border-color
:
#c09853
}
.has-error
.help-block
,
.has-error
.control-label
{
color
:
#b94a48
}
.has-error
.form-control
{
padding-right
:
32px
;
border-color
:
#b94a48
;
-webkit-box-shadow
:
inset
0
1px
1px
rgba
(
0
,
0
,
0
,
0.075
);
box-shadow
:
inset
0
1px
1px
rgba
(
0
,
0
,
0
,
0.075
)}
.has-error
.form-control
:focus
{
border-color
:
#953b39
;
-webkit-box-shadow
:
inset
0
1px
1px
rgba
(
0
,
0
,
0
,
0.075
),
0
0
6px
#d59392
;
box-shadow
:
inset
0
1px
1px
rgba
(
0
,
0
,
0
,
0.075
),
0
0
6px
#d59392
}
.has-error
.input-group-addon
{
color
:
#b94a48
;
background-color
:
#f2dede
;
border-color
:
#b94a48
}
.has-success
.help-block
,
.has-success
.control-label
{
color
:
#468847
}
.has-success
.form-control
{
padding-right
:
32px
;
border-color
:
#468847
;
-webkit-box-shadow
:
inset
0
1px
1px
rgba
(
0
,
0
,
0
,
0.075
);
box-shadow
:
inset
0
1px
1px
rgba
(
0
,
0
,
0
,
0.075
)}
.has-success
.form-control
:focus
{
border-color
:
#356635
;
-webkit-box-shadow
:
inset
0
1px
1px
rgba
(
0
,
0
,
0
,
0.075
),
0
0
6px
#7aba7b
;
box-shadow
:
inset
0
1px
1px
rgba
(
0
,
0
,
0
,
0.075
),
0
0
6px
#7aba7b
}
.has-success
.input-group-addon
{
color
:
#468847
;
background-color
:
#dff0d8
;
border-color
:
#468847
}
.help-block
{
display
:
block
;
margin-top
:
5px
;
margin-bottom
:
10px
;
color
:
#737373
}
.input-group
{
display
:
table
;
border-collapse
:
separate
}
.input-group.col
{
float
:
none
;
padding-right
:
0
;
padding-left
:
0
}
.input-group
.form-control
{
width
:
100%
;
margin-bottom
:
0
}
.input-group-addon
,
.input-group-btn
,
.input-group
.form-control
{
display
:
table-cell
}
.input-group-addon
:not
(
:first-child
)
:not
(
:last-child
),
.input-group-btn
:not
(
:first-child
)
:not
(
:last-child
),
.input-group
.form-control
:not
(
:first-child
)
:not
(
:last-child
)
{
border-radius
:
0
}
.input-group-addon
,
.input-group-btn
{
width
:
1%
;
white-space
:
nowrap
;
vertical-align
:
middle
}
.input-group-addon
{
padding
:
8px
12px
;
font-size
:
14px
;
font-weight
:
normal
;
line-height
:
1.428571429
;
text-align
:
center
;
background-color
:
#eee
;
border
:
1px
solid
#ccc
;
border-radius
:
4px
;
-webkit-box-sizing
:
border-box
;
-moz-box-sizing
:
border-box
;
box-sizing
:
border-box
}
.input-group-addon.input-small
{
padding
:
5px
10px
;
font-size
:
12px
;
border-radius
:
3px
}
.input-group-addon.input-large
{
padding
:
14px
16px
;
font-size
:
18px
;
border-radius
:
6px
}
.input-group
.form-control
:first-child
,
.input-group-addon
:first-child
,
.input-group-btn
:first-child
>
.btn
,
.input-group-btn
:first-child
>
.dropdown-toggle
,
.input-group-btn
:last-child
>
.btn
:not
(
:last-child
)
:not
(
.dropdown-toggle
)
{
border-top-right-radius
:
0
;
border-bottom-right-radius
:
0
}
.input-group-addon
:first-child
{
border-right
:
0
}
.input-group
.form-control
:last-child
,
.input-group-addon
:last-child
,
.input-group-btn
:last-child
>
.btn
,
.input-group-btn
:last-child
>
.dropdown-toggle
,
.input-group-btn
:first-child
>
.btn
:not
(
:first-child
)
{
border-bottom-left-radius
:
0
;
border-top-left-radius
:
0
}
.input-group-addon
:last-child
{
border-left
:
0
}
.input-group-btn
{
position
:
relative
;
white-space
:
nowrap
}
.input-group-btn
>
.btn
{
position
:
relative
}
.input-group-btn
>
.btn
+
.btn
{
margin-left
:
-4px
}
.input-group-btn
>
.btn
:hover
,
.input-group-btn
>
.btn
:active
{
z-index
:
2
}
.form-inline
.form-control
,
.form-inline
.radio
,
.form-inline
.checkbox
{
display
:
inline-block
}
.form-inline
.radio
,
.form-inline
.checkbox
{
margin-top
:
0
;
margin-bottom
:
0
}
.form-horizontal
.control-label
{
padding-top
:
6px
}
.form-horizontal
.form-group
:before
,
.form-horizontal
.form-group
:after
{
display
:
table
;
content
:
" "
}
.form-horizontal
.form-group
:after
{
clear
:
both
}
.form-horizontal
.form-group
:before
,
.form-horizontal
.form-group
:after
{
display
:
table
;
content
:
" "
}
.form-horizontal
.form-group
:after
{
clear
:
both
}
@media
(
min-width
:
768px
){
.form-horizontal
.form-group
{
margin-right
:
-15px
;
margin-left
:
-15px
}}
.form-horizontal
.form-group
.row
{
margin-right
:
-15px
;
margin-left
:
-15px
}
@media
(
min-width
:
768px
){
.form-horizontal
.control-label
{
text-align
:
right
}}
.btn
{
display
:
inline-block
;
padding
:
8px
12px
;
margin-bottom
:
0
;
font-size
:
14px
;
font-weight
:
500
;
line-height
:
1.428571429
;
text-align
:
center
;
white-space
:
nowrap
;
vertical-align
:
middle
;
cursor
:
pointer
;
border
:
1px
solid
transparent
;
border-radius
:
4px
}
.btn
:focus
{
outline
:
thin
dotted
#333
;
outline
:
5px
auto
-webkit-focus-ring-color
;
outline-offset
:
-2px
}
.btn
:hover
,
.btn
:focus
{
color
:
#fff
;
text-decoration
:
none
}
.btn
:active
,
.btn.active
{
outline
:
0
;
-webkit-box-shadow
:
inset
0
3px
5px
rgba
(
0
,
0
,
0
,
0.125
);
box-shadow
:
inset
0
3px
5px
rgba
(
0
,
0
,
0
,
0.125
)}
.btn.disabled
,
.btn
[
disabled
],
fieldset
[
disabled
]
.btn
{
pointer-events
:
none
;
cursor
:
default
;
opacity
:
.65
;
filter
:
alpha
(
opacity
=
65
);
-webkit-box-shadow
:
none
;
box-shadow
:
none
}
.btn-default
{
color
:
#fff
;
background-color
:
#474949
;
border-color
:
#474949
}
.btn-default
:hover
,
.btn-default
:focus
,
.btn-default
:active
,
.btn-default.active
{
background-color
:
#3a3c3c
;
border-color
:
#2e2f2f
}
.btn-default.disabled
,
.btn-default
[
disabled
],
fieldset
[
disabled
]
.btn-default
,
.btn-default.disabled
:hover
,
.btn-default
[
disabled
]
:hover
,
fieldset
[
disabled
]
.btn-default
:hover
,
.btn-default.disabled
:focus
,
.btn-default
[
disabled
]
:focus
,
fieldset
[
disabled
]
.btn-default
:focus
,
.btn-default.disabled
:active
,
.btn-default
[
disabled
]
:active
,
fieldset
[
disabled
]
.btn-default
:active
,
.btn-default.disabled.active
,
.btn-default
[
disabled
]
.active
,
fieldset
[
disabled
]
.btn-default.active
{
background-color
:
#474949
;
border-color
:
#474949
}
.btn-primary
{
color
:
#fff
;
background-color
:
#428bca
;
border-color
:
#428bca
}
.btn-primary
:hover
,
.btn-primary
:focus
,
.btn-primary
:active
,
.btn-primary.active
{
background-color
:
#357ebd
;
border-color
:
#3071a9
}
.btn-primary.disabled
,
.btn-primary
[
disabled
],
fieldset
[
disabled
]
.btn-primary
,
.btn-primary.disabled
:hover
,
.btn-primary
[
disabled
]
:hover
,
fieldset
[
disabled
]
.btn-primary
:hover
,
.btn-primary.disabled
:focus
,
.btn-primary
[
disabled
]
:focus
,
fieldset
[
disabled
]
.btn-primary
:focus
,
.btn-primary.disabled
:active
,
.btn-primary
[
disabled
]
:active
,
fieldset
[
disabled
]
.btn-primary
:active
,
.btn-primary.disabled.active
,
.btn-primary
[
disabled
]
.active
,
fieldset
[
disabled
]
.btn-primary.active
{
background-color
:
#428bca
;
border-color
:
#428bca
}
.btn-warning
{
color
:
#fff
;
background-color
:
#f0ad4e
;
border-color
:
#f0ad4e
}
.btn-warning
:hover
,
.btn-warning
:focus
,
.btn-warning
:active
,
.btn-warning.active
{
background-color
:
#eea236
;
border-color
:
#ec971f
}
.btn-warning.disabled
,
.btn-warning
[
disabled
],
fieldset
[
disabled
]
.btn-warning
,
.btn-warning.disabled
:hover
,
.btn-warning
[
disabled
]
:hover
,
fieldset
[
disabled
]
.btn-warning
:hover
,
.btn-warning.disabled
:focus
,
.btn-warning
[
disabled
]
:focus
,
fieldset
[
disabled
]
.btn-warning
:focus
,
.btn-warning.disabled
:active
,
.btn-warning
[
disabled
]
:active
,
fieldset
[
disabled
]
.btn-warning
:active
,
.btn-warning.disabled.active
,
.btn-warning
[
disabled
]
.active
,
fieldset
[
disabled
]
.btn-warning.active
{
background-color
:
#f0ad4e
;
border-color
:
#f0ad4e
}
.btn-danger
{
color
:
#fff
;
background-color
:
#d9534f
;
border-color
:
#d9534f
}
.btn-danger
:hover
,
.btn-danger
:focus
,
.btn-danger
:active
,
.btn-danger.active
{
background-color
:
#d43f3a
;
border-color
:
#c9302c
}
.btn-danger.disabled
,
.btn-danger
[
disabled
],
fieldset
[
disabled
]
.btn-danger
,
.btn-danger.disabled
:hover
,
.btn-danger
[
disabled
]
:hover
,
fieldset
[
disabled
]
.btn-danger
:hover
,
.btn-danger.disabled
:focus
,
.btn-danger
[
disabled
]
:focus
,
fieldset
[
disabled
]
.btn-danger
:focus
,
.btn-danger.disabled
:active
,
.btn-danger
[
disabled
]
:active
,
fieldset
[
disabled
]
.btn-danger
:active
,
.btn-danger.disabled.active
,
.btn-danger
[
disabled
]
.active
,
fieldset
[
disabled
]
.btn-danger.active
{
background-color
:
#d9534f
;
border-color
:
#d9534f
}
.btn-success
{
color
:
#fff
;
background-color
:
#5cb85c
;
border-color
:
#5cb85c
}
.btn-success
:hover
,
.btn-success
:focus
,
.btn-success
:active
,
.btn-success.active
{
background-color
:
#4cae4c
;
border-color
:
#449d44
}
.btn-success.disabled
,
.btn-success
[
disabled
],
fieldset
[
disabled
]
.btn-success
,
.btn-success.disabled
:hover
,
.btn-success
[
disabled
]
:hover
,
fieldset
[
disabled
]
.btn-success
:hover
,
.btn-success.disabled
:focus
,
.btn-success
[
disabled
]
:focus
,
fieldset
[
disabled
]
.btn-success
:focus
,
.btn-success.disabled
:active
,
.btn-success
[
disabled
]
:active
,
fieldset
[
disabled
]
.btn-success
:active
,
.btn-success.disabled.active
,
.btn-success
[
disabled
]
.active
,
fieldset
[
disabled
]
.btn-success.active
{
background-color
:
#5cb85c
;
border-color
:
#5cb85c
}
.btn-info
{
color
:
#fff
;
background-color
:
#5bc0de
;
border-color
:
#5bc0de
}
.btn-info
:hover
,
.btn-info
:focus
,
.btn-info
:active
,
.btn-info.active
{
background-color
:
#46b8da
;
border-color
:
#31b0d5
}
.btn-info.disabled
,
.btn-info
[
disabled
],
fieldset
[
disabled
]
.btn-info
,
.btn-info.disabled
:hover
,
.btn-info
[
disabled
]
:hover
,
fieldset
[
disabled
]
.btn-info
:hover
,
.btn-info.disabled
:focus
,
.btn-info
[
disabled
]
:focus
,
fieldset
[
disabled
]
.btn-info
:focus
,
.btn-info.disabled
:active
,
.btn-info
[
disabled
]
:active
,
fieldset
[
disabled
]
.btn-info
:active
,
.btn-info.disabled.active
,
.btn-info
[
disabled
]
.active
,
fieldset
[
disabled
]
.btn-info.active
{
background-color
:
#5bc0de
;
border-color
:
#5bc0de
}
.btn-link
{
font-weight
:
normal
;
color
:
#428bca
;
cursor
:
pointer
;
border-radius
:
0
}
.btn-link
,
.btn-link
:active
,
.btn-link
[
disabled
],
fieldset
[
disabled
]
.btn-link
{
background-color
:
transparent
;
-webkit-box-shadow
:
none
;
box-shadow
:
none
}
.btn-link
,
.btn-link
:hover
,
.btn-link
:focus
,
.btn-link
:active
{
border-color
:
transparent
}
.btn-link
:hover
,
.btn-link
:focus
{
color
:
#2a6496
;
text-decoration
:
underline
;
background-color
:
transparent
}
.btn-link
[
disabled
]
:hover
,
fieldset
[
disabled
]
.btn-link
:hover
,
.btn-link
[
disabled
]
:focus
,
fieldset
[
disabled
]
.btn-link
:focus
{
color
:
#333
;
text-decoration
:
none
}
.btn-large
{
padding
:
14px
16px
;
font-size
:
18px
;
border-radius
:
6px
}
.btn-small
{
padding
:
5px
10px
;
font-size
:
12px
;
line-height
:
1.5
;
border-radius
:
3px
}
.btn-block
{
display
:
block
;
width
:
100%
;
padding-right
:
0
;
padding-left
:
0
}
.btn-block
+
.btn-block
{
margin-top
:
5px
}
input
[
type
=
"submit"
]
.btn-block
,
input
[
type
=
"reset"
]
.btn-block
,
input
[
type
=
"button"
]
.btn-block
{
width
:
100%
}
.fade
{
opacity
:
0
;
-webkit-transition
:
opacity
.15s
linear
;
transition
:
opacity
.15s
linear
}
.fade.in
{
opacity
:
1
}
.collapse
{
position
:
relative
;
height
:
0
;
overflow
:
hidden
;
-webkit-transition
:
height
.35s
ease
;
transition
:
height
.35s
ease
}
.collapse.in
{
height
:
auto
}
.caret
{
display
:
inline-block
;
width
:
0
;
height
:
0
;
margin-left
:
2px
;
vertical-align
:
middle
;
border-top
:
4px
solid
#000
;
border-right
:
4px
solid
transparent
;
border-left
:
4px
solid
transparent
;
content
:
""
}
.dropdown-menu
{
position
:
absolute
;
top
:
100%
;
left
:
0
;
z-index
:
1000
;
display
:
none
;
float
:
left
;
min-width
:
160px
;
padding
:
5px
0
;
margin
:
2px
0
0
;
list-style
:
none
;
background-color
:
#fff
;
border
:
1px
solid
#ccc
;
border
:
1px
solid
rgba
(
0
,
0
,
0
,
0.15
);
border-radius
:
4px
;
-webkit-box-shadow
:
0
6px
12px
rgba
(
0
,
0
,
0
,
0.175
);
box-shadow
:
0
6px
12px
rgba
(
0
,
0
,
0
,
0.175
);
background-clip
:
padding-box
}
.dropdown-menu.pull-right
{
right
:
0
;
left
:
auto
}
.dropdown-menu
.divider
{
height
:
1px
;
margin
:
9px
0
;
overflow
:
hidden
;
background-color
:
#e5e5e5
}
.dropdown-menu
>
li
>
a
{
display
:
block
;
padding
:
3px
20px
;
clear
:
both
;
font-weight
:
normal
;
line-height
:
1.428571429
;
color
:
#333
;
white-space
:
nowrap
}
.dropdown-menu
>
li
>
a
:hover
,
.dropdown-menu
>
li
>
a
:focus
{
color
:
#fff
;
text-decoration
:
none
;
background-color
:
#357ebd
;
background-image
:
-webkit-gradient
(
linear
,
left
0
,
left
100%
,
from
(
#428bca
),
to
(
#357ebd
));
background-image
:
-webkit-linear-gradient
(
top
,
#428bca
,
0%
,
#357ebd
,
100%
);
background-image
:
-moz-linear-gradient
(
top
,
#428bca
0
,
#357ebd
100%
);
background-image
:
linear-gradient
(
to
bottom
,
#428bca
0
,
#357ebd
100%
);
background-repeat
:
repeat-x
;
filter
:
progid
:
DXImageTransform
.
Microsoft
.
gradient
(
startColorstr
=
'#ff428bca'
,
endColorstr
=
'#ff357ebd'
,
GradientType
=
0
)}
.dropdown-menu
>
.active
>
a
,
.dropdown-menu
>
.active
>
a
:hover
,
.dropdown-menu
>
.active
>
a
:focus
{
color
:
#fff
;
text-decoration
:
none
;
background-color
:
#357ebd
;
background-image
:
-webkit-gradient
(
linear
,
left
0
,
left
100%
,
from
(
#428bca
),
to
(
#357ebd
));
background-image
:
-webkit-linear-gradient
(
top
,
#428bca
,
0%
,
#357ebd
,
100%
);
background-image
:
-moz-linear-gradient
(
top
,
#428bca
0
,
#357ebd
100%
);
background-image
:
linear-gradient
(
to
bottom
,
#428bca
0
,
#357ebd
100%
);
background-repeat
:
repeat-x
;
outline
:
0
;
filter
:
progid
:
DXImageTransform
.
Microsoft
.
gradient
(
startColorstr
=
'#ff428bca'
,
endColorstr
=
'#ff357ebd'
,
GradientType
=
0
)}
.dropdown-menu
>
.disabled
>
a
,
.dropdown-menu
>
.disabled
>
a
:hover
,
.dropdown-menu
>
.disabled
>
a
:focus
{
color
:
#999
}
.dropdown-menu
>
.disabled
>
a
:hover
,
.dropdown-menu
>
.disabled
>
a
:focus
{
text-decoration
:
none
;
cursor
:
not-allowed
;
background-color
:
transparent
;
background-image
:
none
;
filter
:
progid
:
DXImageTransform
.
Microsoft
.
gradient
(
enabled
=
false
)}
.open
>
.dropdown-menu
{
display
:
block
}
.open
>
a
{
outline
:
0
}
.dropdown-header
{
display
:
block
;
padding
:
3px
20px
;
font-size
:
12px
;
line-height
:
1.428571429
;
color
:
#999
}
.dropdown-backdrop
{
position
:
fixed
;
top
:
0
;
right
:
0
;
bottom
:
0
;
left
:
0
;
z-index
:
990
}
.pull-right
>
.dropdown-menu
{
right
:
0
;
left
:
auto
}
.dropup
.caret
,
.navbar-fixed-bottom
.dropdown
.caret
{
border-top
:
0
;
border-bottom
:
4px
solid
#000
;
content
:
""
}
.dropup
.dropdown-menu
,
.navbar-fixed-bottom
.dropdown
.dropdown-menu
{
top
:
auto
;
bottom
:
100%
;
margin-bottom
:
1px
}
.list-group
{
padding-left
:
0
;
margin-bottom
:
20px
;
background-color
:
#fff
}
.list-group-item
{
position
:
relative
;
display
:
block
;
padding
:
10px
30px
10px
15px
;
margin-bottom
:
-1px
;
border
:
1px
solid
#ddd
}
.list-group-item
:first-child
{
border-top-right-radius
:
4px
;
border-top-left-radius
:
4px
}
.list-group-item
:last-child
{
margin-bottom
:
0
;
border-bottom-right-radius
:
4px
;
border-bottom-left-radius
:
4px
}
.list-group-item
>
.badge
{
float
:
right
;
margin-right
:
-15px
}
.list-group-item-heading
{
margin-top
:
0
;
margin-bottom
:
5px
}
.list-group-item-text
{
margin-bottom
:
0
;
line-height
:
1.3
}
a
.list-group-item
.list-group-item-heading
{
color
:
#333
}
a
.list-group-item
.list-group-item-text
{
color
:
#555
}
a
.list-group-item
:hover
,
a
.list-group-item
:focus
{
text-decoration
:
none
;
background-color
:
#f5f5f5
}
a
.list-group-item.active
{
z-index
:
2
;
color
:
#fff
;
background-color
:
#428bca
;
border-color
:
#428bca
}
a
.list-group-item.active
.list-group-item-heading
{
color
:
inherit
}
a
.list-group-item.active
.list-group-item-text
{
color
:
#e1edf7
}
.panel
{
padding
:
15px
;
margin-bottom
:
20px
;
background-color
:
#fff
;
border
:
1px
solid
#ddd
;
border-radius
:
4px
;
-webkit-box-shadow
:
0
1px
1px
rgba
(
0
,
0
,
0
,
0.05
);
box-shadow
:
0
1px
1px
rgba
(
0
,
0
,
0
,
0.05
)}
.panel-heading
{
padding
:
10px
15px
;
margin
:
-15px
-15px
15px
;
background-color
:
#f5f5f5
;
border-bottom
:
1px
solid
#ddd
;
border-top-right-radius
:
3px
;
border-top-left-radius
:
3px
}
.panel-title
{
margin-top
:
0
;
margin-bottom
:
0
;
font-size
:
17.5px
;
font-weight
:
500
}
.panel-footer
{
padding
:
10px
15px
;
margin
:
15px
-15px
-15px
;
background-color
:
#f5f5f5
;
border-top
:
1px
solid
#ddd
;
border-bottom-right-radius
:
3px
;
border-bottom-left-radius
:
3px
}
.panel-primary
{
border-color
:
#428bca
}
.panel-primary
.panel-heading
{
color
:
#fff
;
background-color
:
#428bca
;
border-color
:
#428bca
}
.panel-success
{
border-color
:
#d6e9c6
}
.panel-success
.panel-heading
{
color
:
#468847
;
background-color
:
#dff0d8
;
border-color
:
#d6e9c6
}
.panel-warning
{
border-color
:
#fbeed5
}
.panel-warning
.panel-heading
{
color
:
#c09853
;
background-color
:
#fcf8e3
;
border-color
:
#fbeed5
}
.panel-danger
{
border-color
:
#eed3d7
}
.panel-danger
.panel-heading
{
color
:
#b94a48
;
background-color
:
#f2dede
;
border-color
:
#eed3d7
}
.panel-info
{
border-color
:
#bce8f1
}
.panel-info
.panel-heading
{
color
:
#3a87ad
;
background-color
:
#d9edf7
;
border-color
:
#bce8f1
}
.list-group-flush
{
margin
:
15px
-15px
-15px
}
.list-group-flush
.list-group-item
{
border-width
:
1px
0
}
.list-group-flush
.list-group-item
:first-child
{
border-top-right-radius
:
0
;
border-top-left-radius
:
0
}
.list-group-flush
.list-group-item
:last-child
{
border-bottom
:
0
}
.well
{
min-height
:
20px
;
padding
:
19px
;
margin-bottom
:
20px
;
background-color
:
#f5f5f5
;
border
:
1px
solid
#e3e3e3
;
border-radius
:
4px
;
-webkit-box-shadow
:
inset
0
1px
1px
rgba
(
0
,
0
,
0
,
0.05
);
box-shadow
:
inset
0
1px
1px
rgba
(
0
,
0
,
0
,
0.05
)}
.well
blockquote
{
border-color
:
#ddd
;
border-color
:
rgba
(
0
,
0
,
0
,
0.15
)}
.well-large
{
padding
:
24px
;
border-radius
:
6px
}
.well-small
{
padding
:
9px
;
border-radius
:
3px
}
.close
{
float
:
right
;
font-size
:
21px
;
font-weight
:
bold
;
line-height
:
1
;
color
:
#000
;
text-shadow
:
0
1px
0
#fff
;
opacity
:
.2
;
filter
:
alpha
(
opacity
=
20
)}
.close
:hover
,
.close
:focus
{
color
:
#000
;
text-decoration
:
none
;
cursor
:
pointer
;
opacity
:
.5
;
filter
:
alpha
(
opacity
=
50
)}
button
.close
{
padding
:
0
;
cursor
:
pointer
;
background
:
transparent
;
border
:
0
;
-webkit-appearance
:
none
}
.nav
{
padding-left
:
0
;
margin-bottom
:
0
;
list-style
:
none
}
.nav
:before
,
.nav
:after
{
display
:
table
;
content
:
" "
}
.nav
:after
{
clear
:
both
}
.nav
:before
,
.nav
:after
{
display
:
table
;
content
:
" "
}
.nav
:after
{
clear
:
both
}
.nav
>
li
{
position
:
relative
;
display
:
block
}
.nav
>
li
>
a
{
position
:
relative
;
display
:
block
;
padding
:
10px
15px
}
.nav
>
li
>
a
:hover
,
.nav
>
li
>
a
:focus
{
text-decoration
:
none
;
background-color
:
#eee
}
.nav
>
li
.disabled
>
a
{
color
:
#999
}
.nav
>
li
.disabled
>
a
:hover
,
.nav
>
li
.disabled
>
a
:focus
{
color
:
#999
;
text-decoration
:
none
;
cursor
:
not-allowed
;
background-color
:
transparent
}
.nav
>
li
+
.nav-header
{
margin-top
:
9px
}
.nav.open
>
a
,
.nav.open
>
a
:hover
,
.nav.open
>
a
:focus
{
color
:
#fff
;
background-color
:
#428bca
;
border-color
:
#428bca
}
.nav.open
>
a
.caret
,
.nav.open
>
a
:hover
.caret
,
.nav.open
>
a
:focus
.caret
{
border-top-color
:
#fff
;
border-bottom-color
:
#fff
}
.nav
>
.pull-right
{
float
:
right
}
.nav
.nav-divider
{
height
:
1px
;
margin
:
9px
0
;
overflow
:
hidden
;
background-color
:
#e5e5e5
}
.nav-tabs
{
border-bottom
:
1px
solid
#ddd
}
.nav-tabs
>
li
{
float
:
left
;
margin-bottom
:
-1px
}
.nav-tabs
>
li
>
a
{
margin-right
:
2px
;
line-height
:
1.428571429
;
border
:
1px
solid
transparent
;
border-radius
:
4px
4px
0
0
}
.nav-tabs
>
li
>
a
:hover
{
border-color
:
#eee
}
.nav-tabs
>
li
.active
>
a
,
.nav-tabs
>
li
.active
>
a
:hover
,
.nav-tabs
>
li
.active
>
a
:focus
{
color
:
#555
;
cursor
:
default
;
background-color
:
#fff
;
border
:
1px
solid
#ddd
;
border-bottom-color
:
transparent
}
.nav-tabs.nav-justified
{
display
:
table
;
width
:
100%
;
border-bottom
:
0
}
.nav-tabs.nav-justified
>
li
{
display
:
table-cell
;
float
:
none
;
width
:
auto
}
.nav-tabs.nav-justified
>
li
>
a
{
text-align
:
center
}
.nav-tabs.nav-justified
>
li
>
a
{
margin-right
:
0
;
border-bottom
:
1px
solid
#ddd
}
.nav-tabs.nav-justified
>
.active
>
a
{
border-bottom-color
:
#fff
}
.nav-pills
>
li
{
float
:
left
}
.nav-pills
>
li
>
a
{
border-radius
:
5px
}
.nav-pills
>
li
+
li
>
a
{
margin-left
:
2px
}
.nav-pills
>
li
.active
>
a
,
.nav-pills
>
li
.active
>
a
:hover
,
.nav-pills
>
li
.active
>
a
:focus
{
color
:
#fff
;
background-color
:
#428bca
}
.nav-stacked
>
li
{
float
:
none
}
.nav-stacked
>
li
+
li
>
a
{
margin-top
:
2px
;
margin-left
:
0
}
.nav-justified
{
display
:
table
;
width
:
100%
}
.nav-justified
>
li
{
display
:
table-cell
;
float
:
none
;
width
:
auto
}
.nav-justified
>
li
>
a
{
text-align
:
center
}
.nav-tabs-justified
{
border-bottom
:
0
}
.nav-tabs-justified
>
li
>
a
{
margin-right
:
0
;
border-bottom
:
1px
solid
#ddd
}
.nav-tabs-justified
>
.active
>
a
{
border-bottom-color
:
#fff
}
.tabbable
:before
,
.tabbable
:after
{
display
:
table
;
content
:
" "
}
.tabbable
:after
{
clear
:
both
}
.tabbable
:before
,
.tabbable
:after
{
display
:
table
;
content
:
" "
}
.tabbable
:after
{
clear
:
both
}
.tab-content
>
.tab-pane
,
.pill-content
>
.pill-pane
{
display
:
none
}
.tab-content
>
.active
,
.pill-content
>
.active
{
display
:
block
}
.nav
.caret
{
border-top-color
:
#428bca
;
border-bottom-color
:
#428bca
}
.nav
a
:hover
.caret
{
border-top-color
:
#2a6496
;
border-bottom-color
:
#2a6496
}
.nav-tabs
.dropdown-menu
{
margin-top
:
-1px
;
border-top-right-radius
:
0
;
border-top-left-radius
:
0
}
.navbar
{
position
:
relative
;
min-height
:
50px
;
padding-right
:
15px
;
padding-left
:
15px
;
margin-bottom
:
20px
;
background-color
:
#eee
;
border-radius
:
4px
}
.navbar
:before
,
.navbar
:after
{
display
:
table
;
content
:
" "
}
.navbar
:after
{
clear
:
both
}
.navbar
:before
,
.navbar
:after
{
display
:
table
;
content
:
" "
}
.navbar
:after
{
clear
:
both
}
.navbar-nav
{
margin-top
:
10px
;
margin-bottom
:
15px
}
.navbar-nav
>
li
>
a
{
padding-top
:
15px
;
padding-bottom
:
15px
;
line-height
:
20px
;
color
:
#777
;
border-radius
:
4px
}
.navbar-nav
>
li
>
a
:hover
,
.navbar-nav
>
li
>
a
:focus
{
color
:
#333
;
background-color
:
transparent
}
.navbar-nav
>
.active
>
a
,
.navbar-nav
>
.active
>
a
:hover
,
.navbar-nav
>
.active
>
a
:focus
{
color
:
#555
;
background-color
:
#d5d5d5
}
.navbar-nav
>
.disabled
>
a
,
.navbar-nav
>
.disabled
>
a
:hover
,
.navbar-nav
>
.disabled
>
a
:focus
{
color
:
#ccc
;
background-color
:
transparent
}
.navbar-nav.pull-right
{
width
:
100%
}
.navbar-static-top
{
border-radius
:
0
}
.navbar-fixed-top
,
.navbar-fixed-bottom
{
position
:
fixed
;
right
:
0
;
left
:
0
;
z-index
:
1030
;
border-radius
:
0
}
.navbar-fixed-top
{
top
:
0
}
.navbar-fixed-bottom
{
bottom
:
0
;
margin-bottom
:
0
}
.navbar-brand
{
display
:
block
;
max-width
:
200px
;
padding
:
15px
15px
;
margin-right
:
auto
;
margin-left
:
auto
;
font-size
:
18px
;
font-weight
:
500
;
line-height
:
20px
;
color
:
#777
;
text-align
:
center
}
.navbar-brand
:hover
,
.navbar-brand
:focus
{
color
:
#5e5e5e
;
text-decoration
:
none
;
background-color
:
transparent
}
.navbar-toggle
{
position
:
absolute
;
top
:
9px
;
right
:
10px
;
width
:
48px
;
height
:
32px
;
padding
:
8px
12px
;
background-color
:
transparent
;
border
:
1px
solid
#ddd
;
border-radius
:
4px
}
.navbar-toggle
:hover
,
.navbar-toggle
:focus
{
background-color
:
#ddd
}
.navbar-toggle
.icon-bar
{
display
:
block
;
width
:
22px
;
height
:
2px
;
background-color
:
#ccc
;
border-radius
:
1px
}
.navbar-toggle
.icon-bar
+
.icon-bar
{
margin-top
:
4px
}
.navbar-form
{
margin-top
:
6px
;
margin-bottom
:
6px
}
.navbar-form
.form-control
,
.navbar-form
.radio
,
.navbar-form
.checkbox
{
display
:
inline-block
}
.navbar-form
.radio
,
.navbar-form
.checkbox
{
margin-top
:
0
;
margin-bottom
:
0
}
.navbar-nav
>
li
>
.dropdown-menu
{
margin-top
:
0
;
border-top-right-radius
:
0
;
border-top-left-radius
:
0
}
.navbar-fixed-bottom
.navbar-nav
>
li
>
.dropdown-menu
{
border-bottom-right-radius
:
0
;
border-bottom-left-radius
:
0
}
.navbar-nav
>
.dropdown
>
a
:hover
.caret
,
.navbar-nav
>
.dropdown
>
a
:focus
.caret
{
border-top-color
:
#333
;
border-bottom-color
:
#333
}
.navbar-nav
>
.open
>
a
,
.navbar-nav
>
.open
>
a
:hover
,
.navbar-nav
>
.open
>
a
:focus
{
color
:
#555
;
background-color
:
#d5d5d5
}
.navbar-nav
>
.open
>
a
.caret
,
.navbar-nav
>
.open
>
a
:hover
.caret
,
.navbar-nav
>
.open
>
a
:focus
.caret
{
border-top-color
:
#555
;
border-bottom-color
:
#555
}
.navbar-nav
>
.dropdown
>
a
.caret
{
border-top-color
:
#777
;
border-bottom-color
:
#777
}
.navbar-nav.pull-right
>
li
>
.dropdown-menu
,
.navbar-nav
>
li
>
.dropdown-menu.pull-right
{
right
:
0
;
left
:
auto
}
.navbar-inverse
{
background-color
:
#222
}
.navbar-inverse
.navbar-brand
{
color
:
#999
}
.navbar-inverse
.navbar-brand
:hover
,
.navbar-inverse
.navbar-brand
:focus
{
color
:
#fff
;
background-color
:
transparent
}
.navbar-inverse
.navbar-text
{
color
:
#999
}
.navbar-inverse
.navbar-nav
>
li
>
a
{
color
:
#999
}
.navbar-inverse
.navbar-nav
>
li
>
a
:hover
,
.navbar-inverse
.navbar-nav
>
li
>
a
:focus
{
color
:
#fff
;
background-color
:
transparent
}
.navbar-inverse
.navbar-nav
>
.active
>
a
,
.navbar-inverse
.navbar-nav
>
.active
>
a
:hover
,
.navbar-inverse
.navbar-nav
>
.active
>
a
:focus
{
color
:
#fff
;
background-color
:
#080808
}
.navbar-inverse
.navbar-nav
>
.disabled
>
a
,
.navbar-inverse
.navbar-nav
>
.disabled
>
a
:hover
,
.navbar-inverse
.navbar-nav
>
.disabled
>
a
:focus
{
color
:
#444
;
background-color
:
transparent
}
.navbar-inverse
.navbar-toggle
{
border-color
:
#333
}
.navbar-inverse
.navbar-toggle
:hover
,
.navbar-inverse
.navbar-toggle
:focus
{
background-color
:
#333
}
.navbar-inverse
.navbar-toggle
.icon-bar
{
background-color
:
#fff
}
.navbar-inverse
.navbar-nav
>
.open
>
a
,
.navbar-inverse
.navbar-nav
>
.open
>
a
:hover
,
.navbar-inverse
.navbar-nav
>
.open
>
a
:focus
{
color
:
#fff
;
background-color
:
#080808
}
.navbar-inverse
.navbar-nav
>
.dropdown
>
a
:hover
.caret
{
border-top-color
:
#fff
;
border-bottom-color
:
#fff
}
.navbar-inverse
.navbar-nav
>
.dropdown
>
a
.caret
{
border-top-color
:
#999
;
border-bottom-color
:
#999
}
.navbar-inverse
.navbar-nav
>
.open
>
a
.caret
,
.navbar-inverse
.navbar-nav
>
.open
>
a
:hover
.caret
,
.navbar-inverse
.navbar-nav
>
.open
>
a
:focus
.caret
{
border-top-color
:
#fff
;
border-bottom-color
:
#fff
}
@media
screen
and
(
min-width
:
768px
){
.navbar-brand
{
float
:
left
;
margin-right
:
5px
;
margin-left
:
-15px
}
.navbar-nav
{
float
:
left
;
margin-top
:
0
;
margin-bottom
:
0
}
.navbar-nav
>
li
{
float
:
left
}
.navbar-nav
>
li
>
a
{
border-radius
:
0
}
.navbar-nav.pull-right
{
float
:
right
;
width
:
auto
}
.navbar-toggle
{
position
:
relative
;
top
:
auto
;
left
:
auto
;
display
:
none
}
.nav-collapse.collapse
{
height
:
auto
!important
;
overflow
:
visible
!important
}}
.navbar-btn
{
margin-top
:
6px
}
.navbar-text
{
margin-top
:
15px
;
margin-bottom
:
15px
}
.navbar-link
{
color
:
#777
}
.navbar-link
:hover
{
color
:
#333
}
.navbar-inverse
.navbar-link
{
color
:
#999
}
.navbar-inverse
.navbar-link
:hover
{
color
:
#fff
}
.btn
.caret
{
border-top-color
:
#fff
}
.dropup
.btn
.caret
{
border-bottom-color
:
#fff
}
.btn-group
,
.btn-group-vertical
{
position
:
relative
;
display
:
inline-block
;
vertical-align
:
middle
}
.btn-group
>
.btn
,
.btn-group-vertical
>
.btn
{
position
:
relative
;
float
:
left
}
.btn-group
>
.btn
:hover
,
.btn-group-vertical
>
.btn
:hover
,
.btn-group
>
.btn
:active
,
.btn-group-vertical
>
.btn
:active
{
z-index
:
2
}
.btn-group
.btn
+
.btn
{
margin-left
:
-1px
}
.btn-toolbar
:before
,
.btn-toolbar
:after
{
display
:
table
;
content
:
" "
}
.btn-toolbar
:after
{
clear
:
both
}
.btn-toolbar
:before
,
.btn-toolbar
:after
{
display
:
table
;
content
:
" "
}
.btn-toolbar
:after
{
clear
:
both
}
.btn-toolbar
.btn-group
{
float
:
left
}
.btn-toolbar
>
.btn
+
.btn
,
.btn-toolbar
>
.btn-group
+
.btn
,
.btn-toolbar
>
.btn
+
.btn-group
,
.btn-toolbar
>
.btn-group
+
.btn-group
{
margin-left
:
5px
}
.btn-group
>
.btn
:not
(
:first-child
)
:not
(
:last-child
)
:not
(
.dropdown-toggle
)
{
border-radius
:
0
}
.btn-group
>
.btn
:first-child
{
margin-left
:
0
}
.btn-group
>
.btn
:first-child:not
(
:last-child
)
:not
(
.dropdown-toggle
)
{
border-top-right-radius
:
0
;
border-bottom-right-radius
:
0
}
.btn-group
>
.btn
:last-child:not
(
:first-child
),
.btn-group
>
.dropdown-toggle
:not
(
:first-child
)
{
border-bottom-left-radius
:
0
;
border-top-left-radius
:
0
}
.btn-group
>
.btn-group
{
float
:
left
}
.btn-group
>
.btn-group
:not
(
:first-child
)
:not
(
:last-child
)>
.btn
{
border-radius
:
0
}
.btn-group
>
.btn-group
:first-child
>
.btn
:last-child
,
.btn-group
>
.btn-group
:first-child
>
.dropdown-toggle
{
border-top-right-radius
:
0
;
border-bottom-right-radius
:
0
}
.btn-group
>
.btn-group
:last-child
>
.btn
:first-child
{
border-bottom-left-radius
:
0
;
border-top-left-radius
:
0
}
.btn-group
.dropdown-toggle
:active
,
.btn-group.open
.dropdown-toggle
{
outline
:
0
}
.btn-group
>
.btn
+
.dropdown-toggle
{
padding-right
:
8px
;
padding-left
:
8px
}
.btn-group
>
.btn-large
+
.dropdown-toggle
{
padding-right
:
12px
;
padding-left
:
12px
}
.btn-group.open
.dropdown-toggle
{
-webkit-box-shadow
:
inset
0
3px
5px
rgba
(
0
,
0
,
0
,
0.125
);
box-shadow
:
inset
0
3px
5px
rgba
(
0
,
0
,
0
,
0.125
)}
.btn
.caret
{
margin-left
:
0
}
.btn-large
.caret
{
border-width
:
5px
}
.dropup
.btn-large
.caret
{
border-bottom-width
:
5px
}
.btn-group-vertical
>
.btn
{
display
:
block
;
float
:
none
;
width
:
100%
;
max-width
:
100%
}
.btn-group-vertical
>
.btn
+
.btn
{
margin-top
:
-1px
}
.btn-group-vertical
.btn
:not
(
:first-child
)
:not
(
:last-child
)
{
border-radius
:
0
}
.btn-group-vertical
.btn
:first-child
{
border-bottom-right-radius
:
0
;
border-bottom-left-radius
:
0
}
.btn-group-vertical
.btn
:last-child
{
border-top-right-radius
:
0
;
border-top-left-radius
:
0
}
.btn-group-justified
{
display
:
table
;
width
:
100%
}
.btn-group-justified
.btn
{
display
:
table-cell
;
float
:
none
;
width
:
1%
}
.btn-group
[
data-toggle
=
"buttons"
]>
.btn
>
input
[
type
=
"radio"
],
.btn-group
[
data-toggle
=
"buttons"
]>
.btn
>
input
[
type
=
"checkbox"
]
{
display
:
none
}
.breadcrumb
{
padding
:
8px
15px
;
margin-bottom
:
20px
;
list-style
:
none
;
background-color
:
#f5f5f5
;
border-radius
:
4px
}
.breadcrumb
>
li
{
display
:
inline-block
}
.breadcrumb
>
li
+
li
:before
{
padding
:
0
5px
;
color
:
#ccc
;
content
:
"/\00a0"
}
.breadcrumb
>
.active
{
color
:
#999
}
.pagination
{
display
:
inline-block
;
padding-left
:
0
;
margin
:
20px
0
;
border-radius
:
4px
}
.pagination
>
li
{
display
:
inline
}
.pagination
>
li
>
a
,
.pagination
>
li
>
span
{
float
:
left
;
padding
:
4px
12px
;
line-height
:
1.428571429
;
text-decoration
:
none
;
background-color
:
#fff
;
border
:
1px
solid
#ddd
;
border-left-width
:
0
}
.pagination
>
li
:first-child
>
a
,
.pagination
>
li
:first-child
>
span
{
border-left-width
:
1px
;
border-bottom-left-radius
:
4px
;
border-top-left-radius
:
4px
}
.pagination
>
li
:last-child
>
a
,
.pagination
>
li
:last-child
>
span
{
border-top-right-radius
:
4px
;
border-bottom-right-radius
:
4px
}
.pagination
>
li
>
a
:hover
,
.pagination
>
li
>
a
:focus
,
.pagination
>
.active
>
a
,
.pagination
>
.active
>
span
{
background-color
:
#f5f5f5
}
.pagination
>
.active
>
a
,
.pagination
>
.active
>
span
{
color
:
#999
;
cursor
:
default
}
.pagination
>
.disabled
>
span
,
.pagination
>
.disabled
>
a
,
.pagination
>
.disabled
>
a
:hover
,
.pagination
>
.disabled
>
a
:focus
{
color
:
#999
;
cursor
:
not-allowed
;
background-color
:
#fff
}
.pagination-large
>
li
>
a
,
.pagination-large
>
li
>
span
{
padding
:
14px
16px
;
font-size
:
18px
}
.pagination-large
>
li
:first-child
>
a
,
.pagination-large
>
li
:first-child
>
span
{
border-bottom-left-radius
:
6px
;
border-top-left-radius
:
6px
}
.pagination-large
>
li
:last-child
>
a
,
.pagination-large
>
li
:last-child
>
span
{
border-top-right-radius
:
6px
;
border-bottom-right-radius
:
6px
}
.pagination-small
>
li
>
a
,
.pagination-small
>
li
>
span
{
padding
:
5px
10px
;
font-size
:
12px
}
.pagination-small
>
li
:first-child
>
a
,
.pagination-small
>
li
:first-child
>
span
{
border-bottom-left-radius
:
3px
;
border-top-left-radius
:
3px
}
.pagination-small
>
li
:last-child
>
a
,
.pagination-small
>
li
:last-child
>
span
{
border-top-right-radius
:
3px
;
border-bottom-right-radius
:
3px
}
.pager
{
padding-left
:
0
;
margin
:
20px
0
;
text-align
:
center
;
list-style
:
none
}
.pager
:before
,
.pager
:after
{
display
:
table
;
content
:
" "
}
.pager
:after
{
clear
:
both
}
.pager
:before
,
.pager
:after
{
display
:
table
;
content
:
" "
}
.pager
:after
{
clear
:
both
}
.pager
li
{
display
:
inline
}
.pager
li
>
a
,
.pager
li
>
span
{
display
:
inline-block
;
padding
:
5px
14px
;
background-color
:
#fff
;
border
:
1px
solid
#ddd
;
border-radius
:
15px
}
.pager
li
>
a
:hover
,
.pager
li
>
a
:focus
{
text-decoration
:
none
;
background-color
:
#f5f5f5
}
.pager
.next
>
a
,
.pager
.next
>
span
{
float
:
right
}
.pager
.previous
>
a
,
.pager
.previous
>
span
{
float
:
left
}
.pager
.disabled
>
a
,
.pager
.disabled
>
a
:hover
,
.pager
.disabled
>
a
:focus
,
.pager
.disabled
>
span
{
color
:
#999
;
cursor
:
not-allowed
;
background-color
:
#fff
}
.modal-open
{
overflow
:
hidden
}
.modal
{
position
:
fixed
;
top
:
0
;
right
:
0
;
bottom
:
0
;
left
:
0
;
z-index
:
1040
;
display
:
none
;
overflow
:
auto
;
overflow-y
:
scroll
}
.modal.fade
{
top
:
-25%
;
-webkit-transition
:
opacity
.3s
linear
,
top
.3s
ease-out
;
transition
:
opacity
.3s
linear
,
top
.3s
ease-out
}
.modal.fade.in
{
top
:
0
}
.modal-dialog
{
position
:
relative
;
top
:
0
;
right
:
0
;
left
:
0
;
z-index
:
1050
;
width
:
auto
;
padding
:
10px
}
.modal-content
{
position
:
relative
;
background-color
:
#fff
;
border
:
1px
solid
#999
;
border
:
1px
solid
rgba
(
0
,
0
,
0
,
0.2
);
border-radius
:
6px
;
outline
:
0
;
-webkit-box-shadow
:
0
3px
9px
rgba
(
0
,
0
,
0
,
0.5
);
box-shadow
:
0
3px
9px
rgba
(
0
,
0
,
0
,
0.5
);
background-clip
:
padding-box
}
.modal-backdrop
{
position
:
fixed
;
top
:
0
;
right
:
0
;
bottom
:
0
;
left
:
0
;
z-index
:
1030
;
background-color
:
#000
}
.modal-backdrop.fade
{
opacity
:
0
;
filter
:
alpha
(
opacity
=
0
)}
.modal-backdrop.fade.in
{
opacity
:
.5
;
filter
:
alpha
(
opacity
=
50
)}
.modal-header
{
min-height
:
16.428571429px
;
padding
:
15px
;
border-bottom
:
1px
solid
#e5e5e5
}
.modal-header
.close
{
margin-top
:
-2px
}
.modal-title
{
margin
:
0
;
line-height
:
1.428571429
}
.modal-body
{
position
:
relative
;
padding
:
20px
}
.modal-footer
{
padding
:
19px
20px
20px
;
margin-top
:
15px
;
text-align
:
right
;
border-top
:
1px
solid
#e5e5e5
}
.modal-footer
:before
,
.modal-footer
:after
{
display
:
table
;
content
:
" "
}
.modal-footer
:after
{
clear
:
both
}
.modal-footer
:before
,
.modal-footer
:after
{
display
:
table
;
content
:
" "
}
.modal-footer
:after
{
clear
:
both
}
.modal-footer
.btn
+
.btn
{
margin-bottom
:
0
;
margin-left
:
5px
}
.modal-footer
.btn-group
.btn
+
.btn
{
margin-left
:
-1px
}
.modal-footer
.btn-block
+
.btn-block
{
margin-left
:
0
}
@media
screen
and
(
min-width
:
768px
){
.modal-dialog
{
right
:
auto
;
left
:
50%
;
width
:
560px
;
padding-top
:
30px
;
padding-bottom
:
30px
;
margin-left
:
-280px
}
.modal-content
{
-webkit-box-shadow
:
0
5px
15px
rgba
(
0
,
0
,
0
,
0.5
);
box-shadow
:
0
5px
15px
rgba
(
0
,
0
,
0
,
0.5
)}}
.tooltip
{
position
:
absolute
;
z-index
:
1030
;
display
:
block
;
font-size
:
12px
;
line-height
:
1.4
;
opacity
:
0
;
filter
:
alpha
(
opacity
=
0
);
visibility
:
visible
}
.tooltip.in
{
opacity
:
1
;
filter
:
alpha
(
opacity
=
100
)}
.tooltip.top
{
padding
:
5px
0
;
margin-top
:
-3px
}
.tooltip.right
{
padding
:
0
5px
;
margin-left
:
3px
}
.tooltip.bottom
{
padding
:
5px
0
;
margin-top
:
3px
}
.tooltip.left
{
padding
:
0
5px
;
margin-left
:
-3px
}
.tooltip-inner
{
max-width
:
200px
;
padding
:
3px
8px
;
color
:
#fff
;
text-align
:
center
;
text-decoration
:
none
;
background-color
:
rgba
(
0
,
0
,
0
,
0.9
);
border-radius
:
4px
}
.tooltip-arrow
{
position
:
absolute
;
width
:
0
;
height
:
0
;
border-color
:
transparent
;
border-style
:
solid
}
.tooltip.top
.tooltip-arrow
{
bottom
:
0
;
left
:
50%
;
margin-left
:
-5px
;
border-top-color
:
rgba
(
0
,
0
,
0
,
0.9
);
border-width
:
5px
5px
0
}
.tooltip.top-left
.tooltip-arrow
{
bottom
:
0
;
left
:
5px
;
border-top-color
:
rgba
(
0
,
0
,
0
,
0.9
);
border-width
:
5px
5px
0
}
.tooltip.top-right
.tooltip-arrow
{
right
:
5px
;
bottom
:
0
;
border-top-color
:
rgba
(
0
,
0
,
0
,
0.9
);
border-width
:
5px
5px
0
}
.tooltip.right
.tooltip-arrow
{
top
:
50%
;
left
:
0
;
margin-top
:
-5px
;
border-right-color
:
rgba
(
0
,
0
,
0
,
0.9
);
border-width
:
5px
5px
5px
0
}
.tooltip.left
.tooltip-arrow
{
top
:
50%
;
right
:
0
;
margin-top
:
-5px
;
border-left-color
:
rgba
(
0
,
0
,
0
,
0.9
);
border-width
:
5px
0
5px
5px
}
.tooltip.bottom
.tooltip-arrow
{
top
:
0
;
left
:
50%
;
margin-left
:
-5px
;
border-bottom-color
:
rgba
(
0
,
0
,
0
,
0.9
);
border-width
:
0
5px
5px
}
.tooltip.bottom-left
.tooltip-arrow
{
top
:
0
;
left
:
5px
;
border-bottom-color
:
rgba
(
0
,
0
,
0
,
0.9
);
border-width
:
0
5px
5px
}
.tooltip.bottom-right
.tooltip-arrow
{
top
:
0
;
right
:
5px
;
border-bottom-color
:
rgba
(
0
,
0
,
0
,
0.9
);
border-width
:
0
5px
5px
}
.popover
{
position
:
absolute
;
top
:
0
;
left
:
0
;
z-index
:
1010
;
display
:
none
;
max-width
:
276px
;
padding
:
1px
;
text-align
:
left
;
white-space
:
normal
;
background-color
:
#fff
;
border
:
1px
solid
#ccc
;
border
:
1px
solid
rgba
(
0
,
0
,
0
,
0.2
);
border-radius
:
6px
;
-webkit-box-shadow
:
0
5px
10px
rgba
(
0
,
0
,
0
,
0.2
);
box-shadow
:
0
5px
10px
rgba
(
0
,
0
,
0
,
0.2
);
background-clip
:
padding-box
;
-webkit-bg-clip
:
padding-box
;
-moz-bg-clip
:
padding
}
.popover.top
{
margin-top
:
-10px
}
.popover.right
{
margin-left
:
10px
}
.popover.bottom
{
margin-top
:
10px
}
.popover.left
{
margin-left
:
-10px
}
.popover-title
{
padding
:
8px
14px
;
margin
:
0
;
font-size
:
14px
;
font-weight
:
normal
;
line-height
:
18px
;
background-color
:
#f7f7f7
;
border-bottom
:
1px
solid
#ebebeb
;
border-radius
:
5px
5px
0
0
}
.popover-content
{
padding
:
9px
14px
}
.popover
.arrow
,
.popover
.arrow
:after
{
position
:
absolute
;
display
:
block
;
width
:
0
;
height
:
0
;
border-color
:
transparent
;
border-style
:
solid
}
.popover
.arrow
{
border-width
:
11px
}
.popover
.arrow
:after
{
border-width
:
10px
;
content
:
""
}
.popover.top
.arrow
{
bottom
:
-11px
;
left
:
50%
;
margin-left
:
-11px
;
border-top-color
:
#999
;
border-top-color
:
rgba
(
0
,
0
,
0
,
0.25
);
border-bottom-width
:
0
}
.popover.top
.arrow
:after
{
bottom
:
1px
;
margin-left
:
-10px
;
border-top-color
:
#fff
;
border-bottom-width
:
0
;
content
:
" "
}
.popover.right
.arrow
{
top
:
50%
;
left
:
-11px
;
margin-top
:
-11px
;
border-right-color
:
#999
;
border-right-color
:
rgba
(
0
,
0
,
0
,
0.25
);
border-left-width
:
0
}
.popover.right
.arrow
:after
{
bottom
:
-10px
;
left
:
1px
;
border-right-color
:
#fff
;
border-left-width
:
0
;
content
:
" "
}
.popover.bottom
.arrow
{
top
:
-11px
;
left
:
50%
;
margin-left
:
-11px
;
border-bottom-color
:
#999
;
border-bottom-color
:
rgba
(
0
,
0
,
0
,
0.25
);
border-top-width
:
0
}
.popover.bottom
.arrow
:after
{
top
:
1px
;
margin-left
:
-10px
;
border-bottom-color
:
#fff
;
border-top-width
:
0
;
content
:
" "
}
.popover.left
.arrow
{
top
:
50%
;
right
:
-11px
;
margin-top
:
-11px
;
border-left-color
:
#999
;
border-left-color
:
rgba
(
0
,
0
,
0
,
0.25
);
border-right-width
:
0
}
.popover.left
.arrow
:after
{
right
:
1px
;
bottom
:
-10px
;
border-left-color
:
#fff
;
border-right-width
:
0
;
content
:
" "
}
.alert
{
padding
:
10px
35px
10px
15px
;
margin-bottom
:
20px
;
color
:
#c09853
;
background-color
:
#fcf8e3
;
border
:
1px
solid
#fbeed5
;
border-radius
:
4px
}
.alert
h4
{
margin-top
:
0
;
color
:
inherit
}
.alert
hr
{
border-top-color
:
#f8e5be
}
.alert
.alert-link
{
font-weight
:
500
;
color
:
#a47e3c
}
.alert
.close
{
position
:
relative
;
top
:
-2px
;
right
:
-21px
;
color
:
inherit
}
.alert-success
{
color
:
#468847
;
background-color
:
#dff0d8
;
border-color
:
#d6e9c6
}
.alert-success
hr
{
border-top-color
:
#c9e2b3
}
.alert-success
.alert-link
{
color
:
#356635
}
.alert-danger
{
color
:
#b94a48
;
background-color
:
#f2dede
;
border-color
:
#eed3d7
}
.alert-danger
hr
{
border-top-color
:
#e6c1c7
}
.alert-danger
.alert-link
{
color
:
#953b39
}
.alert-info
{
color
:
#3a87ad
;
background-color
:
#d9edf7
;
border-color
:
#bce8f1
}
.alert-info
hr
{
border-top-color
:
#a6e1ec
}
.alert-info
.alert-link
{
color
:
#2d6987
}
.alert-block
{
padding-top
:
15px
;
padding-bottom
:
15px
}
.alert-block
>
p
,
.alert-block
>
ul
{
margin-bottom
:
0
}
.alert-block
p
+
p
{
margin-top
:
5px
}
.thumbnail
,
.img-thumbnail
{
padding
:
4px
;
line-height
:
1.428571429
;
background-color
:
#fff
;
border
:
1px
solid
#ddd
;
border-radius
:
4px
;
-webkit-transition
:
all
.2s
ease-in-out
;
transition
:
all
.2s
ease-in-out
}
.thumbnail
{
display
:
block
}
.thumbnail
>
img
,
.img-thumbnail
{
display
:
inline-block
;
height
:
auto
;
max-width
:
100%
}
a
.thumbnail
:hover
,
a
.thumbnail
:focus
{
border-color
:
#428bca
}
.thumbnail
>
img
{
margin-right
:
auto
;
margin-left
:
auto
}
.thumbnail
.caption
{
padding
:
9px
;
color
:
#333
}
.media
,
.media-body
{
overflow
:
hidden
;
zoom
:
1
}
.media
,
.media
.media
{
margin-top
:
15px
}
.media
:first-child
{
margin-top
:
0
}
.media-object
{
display
:
block
}
.media-heading
{
margin
:
0
0
5px
}
.media
>
.pull-left
{
margin-right
:
10px
}
.media
>
.pull-right
{
margin-left
:
10px
}
.media-list
{
padding-left
:
0
;
list-style
:
none
}
.label
{
display
:
inline
;
padding
:
.25em
.6em
;
font-size
:
75%
;
font-weight
:
500
;
line-height
:
1
;
color
:
#fff
;
text-align
:
center
;
white-space
:
nowrap
;
vertical-align
:
middle
;
background-color
:
#999
;
border-radius
:
.25em
}
.label
[
href
]
:hover
,
.label
[
href
]
:focus
{
color
:
#fff
;
text-decoration
:
none
;
cursor
:
pointer
;
background-color
:
#808080
}
.label-danger
{
background-color
:
#d9534f
}
.label-danger
[
href
]
:hover
,
.label-danger
[
href
]
:focus
{
background-color
:
#c9302c
}
.label-success
{
background-color
:
#5cb85c
}
.label-success
[
href
]
:hover
,
.label-success
[
href
]
:focus
{
background-color
:
#449d44
}
.label-warning
{
background-color
:
#f0ad4e
}
.label-warning
[
href
]
:hover
,
.label-warning
[
href
]
:focus
{
background-color
:
#ec971f
}
.label-info
{
background-color
:
#5bc0de
}
.label-info
[
href
]
:hover
,
.label-info
[
href
]
:focus
{
background-color
:
#31b0d5
}
.badge
{
display
:
inline-block
;
min-width
:
10px
;
padding
:
3px
7px
;
font-size
:
12px
;
font-weight
:
bold
;
line-height
:
1
;
color
:
#fff
;
text-align
:
center
;
white-space
:
nowrap
;
vertical-align
:
middle
;
background-color
:
#999
;
border-radius
:
10px
}
.badge
:empty
{
display
:
none
}
a
.badge
:hover
,
a
.badge
:focus
{
color
:
#fff
;
text-decoration
:
none
;
cursor
:
pointer
}
.btn
.badge
{
position
:
relative
;
top
:
-1px
}
a
.list-group-item.active
>
.badge
,
.nav-pills
>
.active
>
a
>
.badge
{
color
:
#428bca
;
background-color
:
#fff
}
.nav-pills
>
li
>
a
>
.badge
{
margin-left
:
3px
}
@-webkit-keyframes
progress-bar-stripes
{
from
{
background-position
:
40px
0
}
to
{
background-position
:
0
0
}}
@-moz-keyframes
progress-bar-stripes
{
from
{
background-position
:
40px
0
}
to
{
background-position
:
0
0
}}
@-ms-keyframes
progress-bar-stripes
{
from
{
background-position
:
40px
0
}
to
{
background-position
:
0
0
}}
@-o-keyframes
progress-bar-stripes
{
from
{
background-position
:
0
0
}
to
{
background-position
:
40px
0
}}
@keyframes
progress-bar-stripes
{
from
{
background-position
:
40px
0
}
to
{
background-position
:
0
0
}}
.progress
{
height
:
20px
;
margin-bottom
:
20px
;
overflow
:
hidden
;
background-color
:
#f5f5f5
;
border-radius
:
4px
;
-webkit-box-shadow
:
inset
0
1px
2px
rgba
(
0
,
0
,
0
,
0.1
);
box-shadow
:
inset
0
1px
2px
rgba
(
0
,
0
,
0
,
0.1
)}
.progress-bar
{
float
:
left
;
width
:
0
;
height
:
100%
;
font-size
:
12px
;
color
:
#fff
;
text-align
:
center
;
background-color
:
#428bca
;
-webkit-box-shadow
:
inset
0
-1px
0
rgba
(
0
,
0
,
0
,
0.15
);
box-shadow
:
inset
0
-1px
0
rgba
(
0
,
0
,
0
,
0.15
);
-webkit-transition
:
width
.6s
ease
;
transition
:
width
.6s
ease
}
.progress-striped
.progress-bar
{
background-color
:
#428bca
;
background-image
:
-webkit-gradient
(
linear
,
0
100%
,
100%
0
,
color-stop
(
0.25
,
rgba
(
255
,
255
,
255
,
0.15
)),
color-stop
(
0.25
,
transparent
),
color-stop
(
0.5
,
transparent
),
color-stop
(
0.5
,
rgba
(
255
,
255
,
255
,
0.15
)),
color-stop
(
0.75
,
rgba
(
255
,
255
,
255
,
0.15
)),
color-stop
(
0.75
,
transparent
),
to
(
transparent
));
background-image
:
-webkit-linear-gradient
(
45deg
,
rgba
(
255
,
255
,
255
,
0.15
)
25%
,
transparent
25%
,
transparent
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
75%
,
transparent
75%
,
transparent
);
background-image
:
-moz-linear-gradient
(
45deg
,
rgba
(
255
,
255
,
255
,
0.15
)
25%
,
transparent
25%
,
transparent
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
75%
,
transparent
75%
,
transparent
);
background-image
:
linear-gradient
(
45deg
,
rgba
(
255
,
255
,
255
,
0.15
)
25%
,
transparent
25%
,
transparent
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
75%
,
transparent
75%
,
transparent
);
background-size
:
40px
40px
}
.progress.active
.progress-bar
{
-webkit-animation
:
progress-bar-stripes
2s
linear
infinite
;
-moz-animation
:
progress-bar-stripes
2s
linear
infinite
;
-ms-animation
:
progress-bar-stripes
2s
linear
infinite
;
-o-animation
:
progress-bar-stripes
2s
linear
infinite
;
animation
:
progress-bar-stripes
2s
linear
infinite
}
.progress-bar-danger
{
background-color
:
#d9534f
}
.progress-striped
.progress-bar-danger
{
background-color
:
#d9534f
;
background-image
:
-webkit-gradient
(
linear
,
0
100%
,
100%
0
,
color-stop
(
0.25
,
rgba
(
255
,
255
,
255
,
0.15
)),
color-stop
(
0.25
,
transparent
),
color-stop
(
0.5
,
transparent
),
color-stop
(
0.5
,
rgba
(
255
,
255
,
255
,
0.15
)),
color-stop
(
0.75
,
rgba
(
255
,
255
,
255
,
0.15
)),
color-stop
(
0.75
,
transparent
),
to
(
transparent
));
background-image
:
-webkit-linear-gradient
(
45deg
,
rgba
(
255
,
255
,
255
,
0.15
)
25%
,
transparent
25%
,
transparent
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
75%
,
transparent
75%
,
transparent
);
background-image
:
-moz-linear-gradient
(
45deg
,
rgba
(
255
,
255
,
255
,
0.15
)
25%
,
transparent
25%
,
transparent
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
75%
,
transparent
75%
,
transparent
);
background-image
:
linear-gradient
(
45deg
,
rgba
(
255
,
255
,
255
,
0.15
)
25%
,
transparent
25%
,
transparent
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
75%
,
transparent
75%
,
transparent
)}
.progress-bar-success
{
background-color
:
#5cb85c
}
.progress-striped
.progress-bar-success
{
background-color
:
#5cb85c
;
background-image
:
-webkit-gradient
(
linear
,
0
100%
,
100%
0
,
color-stop
(
0.25
,
rgba
(
255
,
255
,
255
,
0.15
)),
color-stop
(
0.25
,
transparent
),
color-stop
(
0.5
,
transparent
),
color-stop
(
0.5
,
rgba
(
255
,
255
,
255
,
0.15
)),
color-stop
(
0.75
,
rgba
(
255
,
255
,
255
,
0.15
)),
color-stop
(
0.75
,
transparent
),
to
(
transparent
));
background-image
:
-webkit-linear-gradient
(
45deg
,
rgba
(
255
,
255
,
255
,
0.15
)
25%
,
transparent
25%
,
transparent
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
75%
,
transparent
75%
,
transparent
);
background-image
:
-moz-linear-gradient
(
45deg
,
rgba
(
255
,
255
,
255
,
0.15
)
25%
,
transparent
25%
,
transparent
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
75%
,
transparent
75%
,
transparent
);
background-image
:
linear-gradient
(
45deg
,
rgba
(
255
,
255
,
255
,
0.15
)
25%
,
transparent
25%
,
transparent
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
75%
,
transparent
75%
,
transparent
)}
.progress-bar-warning
{
background-color
:
#f0ad4e
}
.progress-striped
.progress-bar-warning
{
background-color
:
#f0ad4e
;
background-image
:
-webkit-gradient
(
linear
,
0
100%
,
100%
0
,
color-stop
(
0.25
,
rgba
(
255
,
255
,
255
,
0.15
)),
color-stop
(
0.25
,
transparent
),
color-stop
(
0.5
,
transparent
),
color-stop
(
0.5
,
rgba
(
255
,
255
,
255
,
0.15
)),
color-stop
(
0.75
,
rgba
(
255
,
255
,
255
,
0.15
)),
color-stop
(
0.75
,
transparent
),
to
(
transparent
));
background-image
:
-webkit-linear-gradient
(
45deg
,
rgba
(
255
,
255
,
255
,
0.15
)
25%
,
transparent
25%
,
transparent
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
75%
,
transparent
75%
,
transparent
);
background-image
:
-moz-linear-gradient
(
45deg
,
rgba
(
255
,
255
,
255
,
0.15
)
25%
,
transparent
25%
,
transparent
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
75%
,
transparent
75%
,
transparent
);
background-image
:
linear-gradient
(
45deg
,
rgba
(
255
,
255
,
255
,
0.15
)
25%
,
transparent
25%
,
transparent
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
75%
,
transparent
75%
,
transparent
)}
.progress-bar-info
{
background-color
:
#5bc0de
}
.progress-striped
.progress-bar-info
{
background-color
:
#5bc0de
;
background-image
:
-webkit-gradient
(
linear
,
0
100%
,
100%
0
,
color-stop
(
0.25
,
rgba
(
255
,
255
,
255
,
0.15
)),
color-stop
(
0.25
,
transparent
),
color-stop
(
0.5
,
transparent
),
color-stop
(
0.5
,
rgba
(
255
,
255
,
255
,
0.15
)),
color-stop
(
0.75
,
rgba
(
255
,
255
,
255
,
0.15
)),
color-stop
(
0.75
,
transparent
),
to
(
transparent
));
background-image
:
-webkit-linear-gradient
(
45deg
,
rgba
(
255
,
255
,
255
,
0.15
)
25%
,
transparent
25%
,
transparent
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
75%
,
transparent
75%
,
transparent
);
background-image
:
-moz-linear-gradient
(
45deg
,
rgba
(
255
,
255
,
255
,
0.15
)
25%
,
transparent
25%
,
transparent
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
75%
,
transparent
75%
,
transparent
);
background-image
:
linear-gradient
(
45deg
,
rgba
(
255
,
255
,
255
,
0.15
)
25%
,
transparent
25%
,
transparent
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
75%
,
transparent
75%
,
transparent
)}
.accordion
{
margin-bottom
:
20px
}
.accordion-group
{
margin-bottom
:
2px
;
border
:
1px
solid
#e5e5e5
;
border-radius
:
4px
}
.accordion-heading
{
border-bottom
:
0
}
.accordion-heading
.accordion-toggle
{
display
:
block
;
padding
:
8px
15px
;
cursor
:
pointer
}
.accordion-inner
{
padding
:
9px
15px
;
border-top
:
1px
solid
#e5e5e5
}
.carousel
{
position
:
relative
}
.carousel-inner
{
position
:
relative
;
width
:
100%
;
overflow
:
hidden
}
.carousel-inner
>
.item
{
position
:
relative
;
display
:
none
;
-webkit-transition
:
.6s
ease-in-out
left
;
transition
:
.6s
ease-in-out
left
}
.carousel-inner
>
.item
>
img
,
.carousel-inner
>
.item
>
a
>
img
{
display
:
inline-block
;
height
:
auto
;
max-width
:
100%
;
line-height
:
1
}
.carousel-inner
>
.active
,
.carousel-inner
>
.next
,
.carousel-inner
>
.prev
{
display
:
block
}
.carousel-inner
>
.active
{
left
:
0
}
.carousel-inner
>
.next
,
.carousel-inner
>
.prev
{
position
:
absolute
;
top
:
0
;
width
:
100%
}
.carousel-inner
>
.next
{
left
:
100%
}
.carousel-inner
>
.prev
{
left
:
-100%
}
.carousel-inner
>
.next.left
,
.carousel-inner
>
.prev.right
{
left
:
0
}
.carousel-inner
>
.active.left
{
left
:
-100%
}
.carousel-inner
>
.active.right
{
left
:
100%
}
.carousel-control
{
position
:
absolute
;
top
:
0
;
bottom
:
0
;
left
:
0
;
width
:
15%
;
font-size
:
20px
;
color
:
#fff
;
text-align
:
center
;
text-shadow
:
0
1px
2px
rgba
(
0
,
0
,
0
,
0.6
);
opacity
:
.5
;
filter
:
alpha
(
opacity
=
50
)}
.carousel-control.left
{
background-color
:
rgba
(
0
,
0
,
0
,
0.0001
);
background-color
:
transparent
;
background-image
:
-webkit-gradient
(
linear
,
0
top
,
100%
top
,
from
(
rgba
(
0
,
0
,
0
,
0.5
)),
to
(
rgba
(
0
,
0
,
0
,
0.0001
)));
background-image
:
-webkit-linear-gradient
(
left
,
color-stop
(
rgba
(
0
,
0
,
0
,
0.5
)
0
),
color-stop
(
rgba
(
0
,
0
,
0
,
0.0001
)
100%
));
background-image
:
-moz-linear-gradient
(
left
,
rgba
(
0
,
0
,
0
,
0.5
)
0
,
rgba
(
0
,
0
,
0
,
0.0001
)
100%
);
background-image
:
linear-gradient
(
to
right
,
rgba
(
0
,
0
,
0
,
0.5
)
0
,
rgba
(
0
,
0
,
0
,
0.0001
)
100%
);
background-repeat
:
repeat-x
;
filter
:
progid
:
DXImageTransform
.
Microsoft
.
gradient
(
startColorstr
=
'#80000000'
,
endColorstr
=
'#00000000'
,
GradientType
=
1
)}
.carousel-control.right
{
right
:
0
;
left
:
auto
;
background-color
:
rgba
(
0
,
0
,
0
,
0.5
);
background-color
:
transparent
;
background-image
:
-webkit-gradient
(
linear
,
0
top
,
100%
top
,
from
(
rgba
(
0
,
0
,
0
,
0.0001
)),
to
(
rgba
(
0
,
0
,
0
,
0.5
)));
background-image
:
-webkit-linear-gradient
(
left
,
color-stop
(
rgba
(
0
,
0
,
0
,
0.0001
)
0
),
color-stop
(
rgba
(
0
,
0
,
0
,
0.5
)
100%
));
background-image
:
-moz-linear-gradient
(
left
,
rgba
(
0
,
0
,
0
,
0.0001
)
0
,
rgba
(
0
,
0
,
0
,
0.5
)
100%
);
background-image
:
linear-gradient
(
to
right
,
rgba
(
0
,
0
,
0
,
0.0001
)
0
,
rgba
(
0
,
0
,
0
,
0.5
)
100%
);
background-repeat
:
repeat-x
;
filter
:
progid
:
DXImageTransform
.
Microsoft
.
gradient
(
startColorstr
=
'#00000000'
,
endColorstr
=
'#80000000'
,
GradientType
=
1
)}
.carousel-control
:hover
,
.carousel-control
:focus
{
color
:
#fff
;
text-decoration
:
none
;
opacity
:
.9
;
filter
:
alpha
(
opacity
=
90
)}
.carousel-control
.glyphicon
,
.carousel-control
.icon-prev
,
.carousel-control
.icon-next
{
position
:
absolute
;
top
:
50%
;
left
:
50%
;
z-index
:
5
;
display
:
inline-block
;
width
:
20px
;
height
:
20px
;
margin-top
:
-10px
;
margin-left
:
-10px
}
.carousel-control
.icon-prev
:before
{
content
:
'\2039'
}
.carousel-control
.icon-next
:before
{
content
:
'\203a'
}
.carousel-indicators
{
position
:
absolute
;
bottom
:
10px
;
left
:
50%
;
z-index
:
15
;
width
:
120px
;
padding-left
:
0
;
margin-left
:
-60px
;
text-align
:
center
;
list-style
:
none
}
.carousel-indicators
li
{
display
:
inline-block
;
width
:
10px
;
height
:
10px
;
margin
:
1px
;
text-indent
:
-999px
;
cursor
:
pointer
;
border
:
1px
solid
#fff
;
border-radius
:
10px
}
.carousel-indicators
.active
{
width
:
12px
;
height
:
12px
;
margin
:
0
;
background-color
:
#fff
}
.carousel-caption
{
position
:
absolute
;
right
:
15%
;
bottom
:
20px
;
left
:
15%
;
z-index
:
10
;
padding-top
:
20px
;
padding-bottom
:
20px
;
color
:
#fff
;
text-align
:
center
;
text-shadow
:
0
1px
2px
rgba
(
0
,
0
,
0
,
0.6
)}
.carousel-caption
.btn
{
text-shadow
:
none
}
@media
screen
and
(
min-width
:
768px
){
.carousel-control
.glyphicon
,
.carousel-control
.icon-prev
,
.carousel-control
.icon-next
{
width
:
30px
;
height
:
30px
;
margin-top
:
-15px
;
margin-left
:
-15px
;
font-size
:
30px
}
.carousel-caption
{
right
:
20%
;
left
:
20%
;
padding-bottom
:
30px
}
.carousel-indicators
{
bottom
:
20px
}}
.jumbotron
{
padding
:
30px
;
margin-bottom
:
30px
;
font-size
:
21px
;
font-weight
:
200
;
line-height
:
2.1428571435
;
color
:
inherit
;
background-color
:
#eee
}
.jumbotron
h1
{
line-height
:
1
;
color
:
inherit
}
.jumbotron
p
{
line-height
:
1.4
}
@media
screen
and
(
min-width
:
768px
){
.jumbotron
{
padding
:
50px
60px
;
border-radius
:
6px
}
.jumbotron
h1
{
font-size
:
63px
}}
.clearfix
:before
,
.clearfix
:after
{
display
:
table
;
content
:
" "
}
.clearfix
:after
{
clear
:
both
}
.pull-right
{
float
:
right
}
.pull-left
{
float
:
left
}
.hide
{
display
:
none
!important
}
.show
{
display
:
block
!important
}
.invisible
{
visibility
:
hidden
}
.text-hide
{
font
:
0
/
0
a
;
color
:
transparent
;
text-shadow
:
none
;
background-color
:
transparent
;
border
:
0
}
.affix
{
position
:
fixed
}
@-ms-viewport
{
width
:
device-width
}
@media
screen
and
(
max-width
:
400px
){
@-ms-viewport
{
width
:
320px
}}
.hidden
{
display
:
none
!important
;
visibility
:
hidden
!important
}
.visible-sm
{
display
:
block
!important
}
tr
.visible-sm
{
display
:
table-row
!important
}
th
.visible-sm
,
td
.visible-sm
{
display
:
table-cell
!important
}
.visible-md
{
display
:
none
!important
}
tr
.visible-md
{
display
:
none
!important
}
th
.visible-md
,
td
.visible-md
{
display
:
none
!important
}
.visible-lg
{
display
:
none
!important
}
tr
.visible-lg
{
display
:
none
!important
}
th
.visible-lg
,
td
.visible-lg
{
display
:
none
!important
}
.hidden-sm
{
display
:
none
!important
}
tr
.hidden-sm
{
display
:
none
!important
}
th
.hidden-sm
,
td
.hidden-sm
{
display
:
none
!important
}
.hidden-md
{
display
:
block
!important
}
tr
.hidden-md
{
display
:
table-row
!important
}
th
.hidden-md
,
td
.hidden-md
{
display
:
table-cell
!important
}
.hidden-lg
{
display
:
block
!important
}
tr
.hidden-lg
{
display
:
table-row
!important
}
th
.hidden-lg
,
td
.hidden-lg
{
display
:
table-cell
!important
}
@media
(
min-width
:
768px
)
and
(
max-width
:
991px
){
.visible-sm
{
display
:
none
!important
}
tr
.visible-sm
{
display
:
none
!important
}
th
.visible-sm
,
td
.visible-sm
{
display
:
none
!important
}
.visible-md
{
display
:
block
!important
}
tr
.visible-md
{
display
:
table-row
!important
}
th
.visible-md
,
td
.visible-md
{
display
:
table-cell
!important
}
.visible-lg
{
display
:
none
!important
}
tr
.visible-lg
{
display
:
none
!important
}
th
.visible-lg
,
td
.visible-lg
{
display
:
none
!important
}
.hidden-sm
{
display
:
block
!important
}
tr
.hidden-sm
{
display
:
table-row
!important
}
th
.hidden-sm
,
td
.hidden-sm
{
display
:
table-cell
!important
}
.hidden-md
{
display
:
none
!important
}
tr
.hidden-md
{
display
:
none
!important
}
th
.hidden-md
,
td
.hidden-md
{
display
:
none
!important
}
.hidden-lg
{
display
:
block
!important
}
tr
.hidden-lg
{
display
:
table-row
!important
}
th
.hidden-lg
,
td
.hidden-lg
{
display
:
table-cell
!important
}}
@media
(
min-width
:
992px
){
.visible-sm
{
display
:
none
!important
}
tr
.visible-sm
{
display
:
none
!important
}
th
.visible-sm
,
td
.visible-sm
{
display
:
none
!important
}
.visible-md
{
display
:
none
!important
}
tr
.visible-md
{
display
:
none
!important
}
th
.visible-md
,
td
.visible-md
{
display
:
none
!important
}
.visible-lg
{
display
:
block
!important
}
tr
.visible-lg
{
display
:
table-row
!important
}
th
.visible-lg
,
td
.visible-lg
{
display
:
table-cell
!important
}
.hidden-sm
{
display
:
block
!important
}
tr
.hidden-sm
{
display
:
table-row
!important
}
th
.hidden-sm
,
td
.hidden-sm
{
display
:
table-cell
!important
}
.hidden-md
{
display
:
block
!important
}
tr
.hidden-md
{
display
:
table-row
!important
}
th
.hidden-md
,
td
.hidden-md
{
display
:
table-cell
!important
}
.hidden-lg
{
display
:
none
!important
}
tr
.hidden-lg
{
display
:
none
!important
}
th
.hidden-lg
,
td
.hidden-lg
{
display
:
none
!important
}}
.visible-print
{
display
:
none
!important
}
tr
.visible-print
{
display
:
none
!important
}
th
.visible-print
,
td
.visible-print
{
display
:
none
!important
}
@media
print
{
.visible-print
{
display
:
block
!important
}
tr
.visible-print
{
display
:
table-row
!important
}
th
.visible-print
,
td
.visible-print
{
display
:
table-cell
!important
}
.hidden-print
{
display
:
none
!important
}
tr
.hidden-print
{
display
:
none
!important
}
th
.hidden-print
,
td
.hidden-print
{
display
:
none
!important
}}
\ No newline at end of file
*//*! normalize.css v2.1.0 | MIT License | git.io/normalize */
article
,
aside
,
details
,
figcaption
,
figure
,
footer
,
header
,
hgroup
,
main
,
nav
,
section
,
summary
{
display
:
block
}
audio
,
canvas
,
video
{
display
:
inline-block
}
audio
:not
([
controls
])
{
display
:
none
;
height
:
0
}
[
hidden
]
{
display
:
none
}
html
{
font-family
:
sans-serif
;
-webkit-text-size-adjust
:
100%
;
-ms-text-size-adjust
:
100%
}
body
{
margin
:
0
}
a
:focus
{
outline
:
thin
dotted
}
a
:active
,
a
:hover
{
outline
:
0
}
h1
{
margin
:
.67em
0
;
font-size
:
2em
}
abbr
[
title
]
{
border-bottom
:
1px
dotted
}
b
,
strong
{
font-weight
:
bold
}
dfn
{
font-style
:
italic
}
hr
{
height
:
0
;
-moz-box-sizing
:
content-box
;
box-sizing
:
content-box
}
mark
{
color
:
#000
;
background
:
#ff0
}
code
,
kbd
,
pre
,
samp
{
font-family
:
monospace
,
serif
;
font-size
:
1em
}
pre
{
white-space
:
pre-wrap
}
q
{
quotes
:
"\201C"
"\201D"
"\2018"
"\2019"
}
small
{
font-size
:
80%
}
sub
,
sup
{
position
:
relative
;
font-size
:
75%
;
line-height
:
0
;
vertical-align
:
baseline
}
sup
{
top
:
-0.5em
}
sub
{
bottom
:
-0.25em
}
img
{
border
:
0
}
svg
:not
(
:root
)
{
overflow
:
hidden
}
figure
{
margin
:
0
}
fieldset
{
padding
:
.35em
.625em
.75em
;
margin
:
0
2px
;
border
:
1px
solid
#c0c0c0
}
legend
{
padding
:
0
;
border
:
0
}
button
,
input
,
select
,
textarea
{
margin
:
0
;
font-family
:
inherit
;
font-size
:
100%
}
button
,
input
{
line-height
:
normal
}
button
,
select
{
text-transform
:
none
}
button
,
html
input
[
type
=
"button"
],
input
[
type
=
"reset"
],
input
[
type
=
"submit"
]
{
cursor
:
pointer
;
-webkit-appearance
:
button
}
button
[
disabled
],
html
input
[
disabled
]
{
cursor
:
default
}
input
[
type
=
"checkbox"
],
input
[
type
=
"radio"
]
{
padding
:
0
;
box-sizing
:
border-box
}
input
[
type
=
"search"
]
{
-webkit-box-sizing
:
content-box
;
-moz-box-sizing
:
content-box
;
box-sizing
:
content-box
;
-webkit-appearance
:
textfield
}
input
[
type
=
"search"
]
::-webkit-search-cancel-button
,
input
[
type
=
"search"
]
::-webkit-search-decoration
{
-webkit-appearance
:
none
}
button
::-moz-focus-inner
,
input
::-moz-focus-inner
{
padding
:
0
;
border
:
0
}
textarea
{
overflow
:
auto
;
vertical-align
:
top
}
table
{
border-collapse
:
collapse
;
border-spacing
:
0
}
@media
print
{
*
{
color
:
#000
!important
;
text-shadow
:
none
!important
;
background
:
transparent
!important
;
box-shadow
:
none
!important
}
a
,
a
:visited
{
text-decoration
:
underline
}
a
[
href
]
:after
{
content
:
" ("
attr
(
href
)
")"
}
abbr
[
title
]
:after
{
content
:
" ("
attr
(
title
)
")"
}
.ir
a
:after
,
a
[
href
^=
"javascript:"
]
:after
,
a
[
href
^=
"#"
]
:after
{
content
:
""
}
pre
,
blockquote
{
border
:
1px
solid
#999
;
page-break-inside
:
avoid
}
thead
{
display
:
table-header-group
}
tr
,
img
{
page-break-inside
:
avoid
}
img
{
max-width
:
100%
!important
}
@page
{
margin
:
2cm
.5cm
}
p
,
h2
,
h3
{
orphans
:
3
;
widows
:
3
}
h2
,
h3
{
page-break-after
:
avoid
}
.navbar
{
display
:
none
}
.table
td
,
.table
th
{
background-color
:
#fff
!important
}
.btn
>
.caret
,
.dropup
>
.btn
>
.caret
{
border-top-color
:
#000
!important
}
.label
{
border
:
1px
solid
#000
}
.table
{
border-collapse
:
collapse
!important
}
.table-bordered
th
,
.table-bordered
td
{
border
:
1px
solid
#ddd
!important
}}
*
{
-webkit-box-sizing
:
border-box
;
-moz-box-sizing
:
border-box
;
box-sizing
:
border-box
}
html
{
font-size
:
62.5%
;
-webkit-tap-highlight-color
:
rgba
(
0
,
0
,
0
,
0
)}
body
{
font-family
:
"Helvetica Neue"
,
Helvetica
,
Arial
,
sans-serif
;
font-size
:
14px
;
line-height
:
1.428571429
;
color
:
#333
;
background-color
:
#fff
}
input
,
button
,
select
,
textarea
{
font-family
:
inherit
;
font-size
:
inherit
;
line-height
:
inherit
}
a
{
color
:
#428bca
;
text-decoration
:
none
}
a
:hover
,
a
:focus
{
color
:
#2a6496
;
text-decoration
:
underline
}
a
:focus
{
outline
:
thin
dotted
#333
;
outline
:
5px
auto
-webkit-focus-ring-color
;
outline-offset
:
-2px
}
img
{
vertical-align
:
middle
}
.img-responsive
{
display
:
inline-block
;
height
:
auto
;
max-width
:
100%
}
.img-rounded
{
border-radius
:
6px
}
.img-circle
{
border-radius
:
500px
}
hr
{
margin-top
:
20px
;
margin-bottom
:
20px
;
border
:
0
;
border-top
:
1px
solid
#eee
}
p
{
margin
:
0
0
10px
}
.lead
{
margin-bottom
:
20px
;
font-size
:
21px
;
font-weight
:
200
;
line-height
:
1.4
}
small
{
font-size
:
85%
}
cite
{
font-style
:
normal
}
.text-muted
{
color
:
#999
}
.text-primary
{
color
:
#428bca
}
.text-warning
{
color
:
#c09853
}
.text-danger
{
color
:
#b94a48
}
.text-success
{
color
:
#468847
}
.text-info
{
color
:
#3a87ad
}
.text-left
{
text-align
:
left
}
.text-right
{
text-align
:
right
}
.text-center
{
text-align
:
center
}
h1
,
h2
,
h3
,
h4
,
h5
,
h6
,
.h1
,
.h2
,
.h3
,
.h4
,
.h5
,
.h6
{
font-family
:
"Helvetica Neue"
,
Helvetica
,
Arial
,
sans-serif
;
font-weight
:
500
;
line-height
:
1.1
}
h1
small
,
h2
small
,
h3
small
,
h4
small
,
h5
small
,
h6
small
,
.h1
small
,
.h2
small
,
.h3
small
,
.h4
small
,
.h5
small
,
.h6
small
{
font-weight
:
normal
;
line-height
:
1
;
color
:
#999
}
h1
,
h2
,
h3
{
margin-top
:
20px
;
margin-bottom
:
10px
}
h4
,
h5
,
h6
{
margin-top
:
10px
;
margin-bottom
:
10px
}
h1
,
.h1
{
font-size
:
38px
}
h2
,
.h2
{
font-size
:
32px
}
h3
,
.h3
{
font-size
:
24px
}
h4
,
.h4
{
font-size
:
18px
}
h5
,
.h5
{
font-size
:
14px
}
h6
,
.h6
{
font-size
:
12px
}
h1
small
,
.h1
small
{
font-size
:
24px
}
h2
small
,
.h2
small
{
font-size
:
18px
}
h3
small
,
.h3
small
,
h4
small
,
.h4
small
{
font-size
:
14px
}
.page-header
{
padding-bottom
:
9px
;
margin
:
40px
0
20px
;
border-bottom
:
1px
solid
#eee
}
ul
,
ol
{
margin-top
:
0
;
margin-bottom
:
10px
}
ul
ul
,
ol
ul
,
ul
ol
,
ol
ol
{
margin-bottom
:
0
}
.list-unstyled
{
padding-left
:
0
;
list-style
:
none
}
.list-inline
{
padding-left
:
0
;
list-style
:
none
}
.list-inline
>
li
{
display
:
inline-block
;
padding-right
:
5px
;
padding-left
:
5px
}
dl
{
margin-bottom
:
20px
}
dt
,
dd
{
line-height
:
1.428571429
}
dt
{
font-weight
:
bold
}
dd
{
margin-left
:
0
}
.dl-horizontal
dt
{
float
:
left
;
width
:
160px
;
overflow
:
hidden
;
clear
:
left
;
text-align
:
right
;
text-overflow
:
ellipsis
;
white-space
:
nowrap
}
.dl-horizontal
dd
{
margin-left
:
180px
}
.dl-horizontal
dd
:before
,
.dl-horizontal
dd
:after
{
display
:
table
;
content
:
" "
}
.dl-horizontal
dd
:after
{
clear
:
both
}
.dl-horizontal
dd
:before
,
.dl-horizontal
dd
:after
{
display
:
table
;
content
:
" "
}
.dl-horizontal
dd
:after
{
clear
:
both
}
abbr
[
title
],
abbr
[
data-original-title
]
{
cursor
:
help
;
border-bottom
:
1px
dotted
#999
}
abbr
.initialism
{
font-size
:
90%
;
text-transform
:
uppercase
}
blockquote
{
padding
:
10px
20px
;
margin
:
0
0
20px
;
border-left
:
5px
solid
#eee
}
blockquote
p
{
font-size
:
17.5px
;
font-weight
:
300
;
line-height
:
1.25
}
blockquote
p
:last-child
{
margin-bottom
:
0
}
blockquote
small
{
display
:
block
;
line-height
:
1.428571429
;
color
:
#999
}
blockquote
small
:before
{
content
:
'\2014 \00A0'
}
blockquote
.pull-right
{
float
:
right
;
padding-right
:
15px
;
padding-left
:
0
;
border-right
:
5px
solid
#eee
;
border-left
:
0
}
blockquote
.pull-right
p
,
blockquote
.pull-right
small
{
text-align
:
right
}
blockquote
.pull-right
small
:before
{
content
:
''
}
blockquote
.pull-right
small
:after
{
content
:
'\00A0 \2014'
}
q
:before
,
q
:after
,
blockquote
:before
,
blockquote
:after
{
content
:
""
}
address
{
display
:
block
;
margin-bottom
:
20px
;
font-style
:
normal
;
line-height
:
1.428571429
}
code
,
pre
{
font-family
:
Monaco
,
Menlo
,
Consolas
,
"Courier New"
,
monospace
}
code
{
padding
:
2px
4px
;
font-size
:
90%
;
color
:
#c7254e
;
white-space
:
nowrap
;
background-color
:
#f9f2f4
;
border-radius
:
4px
}
pre
{
display
:
block
;
padding
:
9.5px
;
margin
:
0
0
10px
;
font-size
:
13px
;
line-height
:
1.428571429
;
color
:
#333
;
word-break
:
break-all
;
word-wrap
:
break-word
;
background-color
:
#f5f5f5
;
border
:
1px
solid
#ccc
;
border-radius
:
4px
}
pre
.prettyprint
{
margin-bottom
:
20px
}
pre
code
{
padding
:
0
;
color
:
inherit
;
white-space
:
pre-wrap
;
background-color
:
transparent
;
border
:
0
}
.pre-scrollable
{
max-height
:
340px
;
overflow-y
:
scroll
}
.container
{
margin-right
:
auto
;
margin-left
:
auto
}
.container
:before
,
.container
:after
{
display
:
table
;
content
:
" "
}
.container
:after
{
clear
:
both
}
.container
:before
,
.container
:after
{
display
:
table
;
content
:
" "
}
.container
:after
{
clear
:
both
}
.row
:before
,
.row
:after
{
display
:
table
;
content
:
" "
}
.row
:after
{
clear
:
both
}
.row
:before
,
.row
:after
{
display
:
table
;
content
:
" "
}
.row
:after
{
clear
:
both
}
@media
(
min-width
:
768px
){
.row
{
margin-right
:
-15px
;
margin-left
:
-15px
}}
.row
.row
{
margin-right
:
-15px
;
margin-left
:
-15px
}
.col-1
,
.col-2
,
.col-3
,
.col-4
,
.col-5
,
.col-6
,
.col-7
,
.col-8
,
.col-9
,
.col-10
,
.col-11
,
.col-12
,
.col-sm-1
,
.col-sm-2
,
.col-sm-3
,
.col-sm-4
,
.col-sm-5
,
.col-sm-6
,
.col-sm-7
,
.col-sm-8
,
.col-sm-9
,
.col-sm-10
,
.col-sm-11
,
.col-sm-12
,
.col-lg-1
,
.col-lg-2
,
.col-lg-3
,
.col-lg-4
,
.col-lg-5
,
.col-lg-6
,
.col-lg-7
,
.col-lg-8
,
.col-lg-9
,
.col-lg-10
,
.col-lg-11
,
.col-lg-12
{
position
:
relative
;
min-height
:
1px
;
padding-right
:
15px
;
padding-left
:
15px
}
.col-1
,
.col-2
,
.col-3
,
.col-4
,
.col-5
,
.col-6
,
.col-7
,
.col-8
,
.col-9
,
.col-10
,
.col-11
,
.col-12
{
float
:
left
}
.col-1
{
width
:
8.333333333333332%
}
.col-2
{
width
:
16.666666666666664%
}
.col-3
{
width
:
25%
}
.col-4
{
width
:
33.33333333333333%
}
.col-5
{
width
:
41.66666666666667%
}
.col-6
{
width
:
50%
}
.col-7
{
width
:
58.333333333333336%
}
.col-8
{
width
:
66.66666666666666%
}
.col-9
{
width
:
75%
}
.col-10
{
width
:
83.33333333333334%
}
.col-11
{
width
:
91.66666666666666%
}
.col-12
{
width
:
100%
}
@media
(
min-width
:
768px
){
.container
{
max-width
:
728px
}
.col-sm-1
,
.col-sm-2
,
.col-sm-3
,
.col-sm-4
,
.col-sm-5
,
.col-sm-6
,
.col-sm-7
,
.col-sm-8
,
.col-sm-9
,
.col-sm-10
,
.col-sm-11
,
.col-sm-12
{
float
:
left
}
.col-sm-1
{
width
:
8.333333333333332%
}
.col-sm-2
{
width
:
16.666666666666664%
}
.col-sm-3
{
width
:
25%
}
.col-sm-4
{
width
:
33.33333333333333%
}
.col-sm-5
{
width
:
41.66666666666667%
}
.col-sm-6
{
width
:
50%
}
.col-sm-7
{
width
:
58.333333333333336%
}
.col-sm-8
{
width
:
66.66666666666666%
}
.col-sm-9
{
width
:
75%
}
.col-sm-10
{
width
:
83.33333333333334%
}
.col-sm-11
{
width
:
91.66666666666666%
}
.col-sm-12
{
width
:
100%
}
.col-push-1
{
left
:
8.333333333333332%
}
.col-push-2
{
left
:
16.666666666666664%
}
.col-push-3
{
left
:
25%
}
.col-push-4
{
left
:
33.33333333333333%
}
.col-push-5
{
left
:
41.66666666666667%
}
.col-push-6
{
left
:
50%
}
.col-push-7
{
left
:
58.333333333333336%
}
.col-push-8
{
left
:
66.66666666666666%
}
.col-push-9
{
left
:
75%
}
.col-push-10
{
left
:
83.33333333333334%
}
.col-push-11
{
left
:
91.66666666666666%
}
.col-pull-1
{
right
:
8.333333333333332%
}
.col-pull-2
{
right
:
16.666666666666664%
}
.col-pull-3
{
right
:
25%
}
.col-pull-4
{
right
:
33.33333333333333%
}
.col-pull-5
{
right
:
41.66666666666667%
}
.col-pull-6
{
right
:
50%
}
.col-pull-7
{
right
:
58.333333333333336%
}
.col-pull-8
{
right
:
66.66666666666666%
}
.col-pull-9
{
right
:
75%
}
.col-pull-10
{
right
:
83.33333333333334%
}
.col-pull-11
{
right
:
91.66666666666666%
}}
@media
(
min-width
:
992px
){
.container
{
max-width
:
940px
}
.col-lg-1
,
.col-lg-2
,
.col-lg-3
,
.col-lg-4
,
.col-lg-5
,
.col-lg-6
,
.col-lg-7
,
.col-lg-8
,
.col-lg-9
,
.col-lg-10
,
.col-lg-11
,
.col-lg-12
{
float
:
left
}
.col-lg-1
{
width
:
8.333333333333332%
}
.col-lg-2
{
width
:
16.666666666666664%
}
.col-lg-3
{
width
:
25%
}
.col-lg-4
{
width
:
33.33333333333333%
}
.col-lg-5
{
width
:
41.66666666666667%
}
.col-lg-6
{
width
:
50%
}
.col-lg-7
{
width
:
58.333333333333336%
}
.col-lg-8
{
width
:
66.66666666666666%
}
.col-lg-9
{
width
:
75%
}
.col-lg-10
{
width
:
83.33333333333334%
}
.col-lg-11
{
width
:
91.66666666666666%
}
.col-lg-12
{
width
:
100%
}
.col-offset-1
{
margin-left
:
8.333333333333332%
}
.col-offset-2
{
margin-left
:
16.666666666666664%
}
.col-offset-3
{
margin-left
:
25%
}
.col-offset-4
{
margin-left
:
33.33333333333333%
}
.col-offset-5
{
margin-left
:
41.66666666666667%
}
.col-offset-6
{
margin-left
:
50%
}
.col-offset-7
{
margin-left
:
58.333333333333336%
}
.col-offset-8
{
margin-left
:
66.66666666666666%
}
.col-offset-9
{
margin-left
:
75%
}
.col-offset-10
{
margin-left
:
83.33333333333334%
}
.col-offset-11
{
margin-left
:
91.66666666666666%
}}
@media
(
min-width
:
1200px
){
.container
{
max-width
:
1170px
}}
table
{
max-width
:
100%
;
background-color
:
transparent
}
th
{
text-align
:
left
}
.table
{
width
:
100%
;
margin-bottom
:
20px
}
.table
thead
>
tr
>
th
,
.table
tbody
>
tr
>
th
,
.table
tfoot
>
tr
>
th
,
.table
thead
>
tr
>
td
,
.table
tbody
>
tr
>
td
,
.table
tfoot
>
tr
>
td
{
padding
:
8px
;
line-height
:
1.428571429
;
vertical-align
:
top
;
border-top
:
1px
solid
#ddd
}
.table
thead
>
tr
>
th
{
vertical-align
:
bottom
}
.table
caption
+
thead
tr
:first-child
th
,
.table
colgroup
+
thead
tr
:first-child
th
,
.table
thead
:first-child
tr
:first-child
th
,
.table
caption
+
thead
tr
:first-child
td
,
.table
colgroup
+
thead
tr
:first-child
td
,
.table
thead
:first-child
tr
:first-child
td
{
border-top
:
0
}
.table
tbody
+
tbody
{
border-top
:
2px
solid
#ddd
}
.table
.table
{
background-color
:
#fff
}
.table-condensed
thead
>
tr
>
th
,
.table-condensed
tbody
>
tr
>
th
,
.table-condensed
tfoot
>
tr
>
th
,
.table-condensed
thead
>
tr
>
td
,
.table-condensed
tbody
>
tr
>
td
,
.table-condensed
tfoot
>
tr
>
td
{
padding
:
5px
}
.table-bordered
{
border
:
1px
solid
#ddd
}
.table-bordered
>
thead
>
tr
>
th
,
.table-bordered
>
tbody
>
tr
>
th
,
.table-bordered
>
tfoot
>
tr
>
th
,
.table-bordered
>
thead
>
tr
>
td
,
.table-bordered
>
tbody
>
tr
>
td
,
.table-bordered
>
tfoot
>
tr
>
td
{
border
:
1px
solid
#ddd
}
.table-striped
>
tbody
>
tr
:nth-child
(
odd
)>
td
,
.table-striped
>
tbody
>
tr
:nth-child
(
odd
)>
th
{
background-color
:
#f9f9f9
}
.table-hover
>
tbody
>
tr
:hover
>
td
,
.table-hover
>
tbody
>
tr
:hover
>
th
{
background-color
:
#f5f5f5
}
table
col
[
class
^=
"col-"
]
{
display
:
table-column
;
float
:
none
}
table
td
[
class
^=
"col-"
],
table
th
[
class
^=
"col-"
]
{
display
:
table-cell
;
float
:
none
}
.table
>
thead
>
tr
>
td
.active
,
.table
>
tbody
>
tr
>
td
.active
,
.table
>
tfoot
>
tr
>
td
.active
,
.table
>
thead
>
tr
>
th
.active
,
.table
>
tbody
>
tr
>
th
.active
,
.table
>
tfoot
>
tr
>
th
.active
,
.table
>
thead
>
tr
.active
>
td
,
.table
>
tbody
>
tr
.active
>
td
,
.table
>
tfoot
>
tr
.active
>
td
,
.table
>
thead
>
tr
.active
>
th
,
.table
>
tbody
>
tr
.active
>
th
,
.table
>
tfoot
>
tr
.active
>
th
{
background-color
:
#f5f5f5
}
.table
>
thead
>
tr
>
td
.success
,
.table
>
tbody
>
tr
>
td
.success
,
.table
>
tfoot
>
tr
>
td
.success
,
.table
>
thead
>
tr
>
th
.success
,
.table
>
tbody
>
tr
>
th
.success
,
.table
>
tfoot
>
tr
>
th
.success
,
.table
>
thead
>
tr
.success
>
td
,
.table
>
tbody
>
tr
.success
>
td
,
.table
>
tfoot
>
tr
.success
>
td
,
.table
>
thead
>
tr
.success
>
th
,
.table
>
tbody
>
tr
.success
>
th
,
.table
>
tfoot
>
tr
.success
>
th
{
background-color
:
#dff0d8
;
border-color
:
#d6e9c6
}
.table
>
thead
>
tr
>
td
.danger
,
.table
>
tbody
>
tr
>
td
.danger
,
.table
>
tfoot
>
tr
>
td
.danger
,
.table
>
thead
>
tr
>
th
.danger
,
.table
>
tbody
>
tr
>
th
.danger
,
.table
>
tfoot
>
tr
>
th
.danger
,
.table
>
thead
>
tr
.danger
>
td
,
.table
>
tbody
>
tr
.danger
>
td
,
.table
>
tfoot
>
tr
.danger
>
td
,
.table
>
thead
>
tr
.danger
>
th
,
.table
>
tbody
>
tr
.danger
>
th
,
.table
>
tfoot
>
tr
.danger
>
th
{
background-color
:
#f2dede
;
border-color
:
#eed3d7
}
.table
>
thead
>
tr
>
td
.warning
,
.table
>
tbody
>
tr
>
td
.warning
,
.table
>
tfoot
>
tr
>
td
.warning
,
.table
>
thead
>
tr
>
th
.warning
,
.table
>
tbody
>
tr
>
th
.warning
,
.table
>
tfoot
>
tr
>
th
.warning
,
.table
>
thead
>
tr
.warning
>
td
,
.table
>
tbody
>
tr
.warning
>
td
,
.table
>
tfoot
>
tr
.warning
>
td
,
.table
>
thead
>
tr
.warning
>
th
,
.table
>
tbody
>
tr
.warning
>
th
,
.table
>
tfoot
>
tr
.warning
>
th
{
background-color
:
#fcf8e3
;
border-color
:
#fbeed5
}
.table-hover
>
tbody
>
tr
>
td
.success
:hover
,
.table-hover
>
tbody
>
tr
>
th
.success
:hover
,
.table-hover
>
tbody
>
tr
.success
:hover
>
td
{
background-color
:
#d0e9c6
;
border-color
:
#c9e2b3
}
.table-hover
>
tbody
>
tr
>
td
.danger
:hover
,
.table-hover
>
tbody
>
tr
>
th
.danger
:hover
,
.table-hover
>
tbody
>
tr
.danger
:hover
>
td
{
background-color
:
#ebcccc
;
border-color
:
#e6c1c7
}
.table-hover
>
tbody
>
tr
>
td
.warning
:hover
,
.table-hover
>
tbody
>
tr
>
th
.warning
:hover
,
.table-hover
>
tbody
>
tr
.warning
:hover
>
td
{
background-color
:
#faf2cc
;
border-color
:
#f8e5be
}
fieldset
{
padding
:
0
;
margin
:
0
;
border
:
0
}
legend
{
display
:
block
;
width
:
100%
;
padding
:
0
;
margin-bottom
:
20px
;
font-size
:
21px
;
line-height
:
inherit
;
color
:
#333
;
border
:
0
;
border-bottom
:
1px
solid
#e5e5e5
}
label
{
display
:
inline-block
;
margin-bottom
:
5px
;
font-weight
:
bold
}
input
[
type
=
"search"
]
{
-webkit-box-sizing
:
border-box
;
-moz-box-sizing
:
border-box
;
box-sizing
:
border-box
}
input
[
type
=
"radio"
],
input
[
type
=
"checkbox"
]
{
margin
:
4px
0
0
;
margin-top
:
1px
\
9
;
line-height
:
normal
}
input
[
type
=
"file"
]
{
display
:
block
}
select
[
multiple
],
select
[
size
]
{
height
:
auto
}
select
optgroup
{
font-family
:
inherit
;
font-size
:
inherit
;
font-style
:
inherit
}
input
[
type
=
"file"
]
:focus
,
input
[
type
=
"radio"
]
:focus
,
input
[
type
=
"checkbox"
]
:focus
{
outline
:
thin
dotted
#333
;
outline
:
5px
auto
-webkit-focus-ring-color
;
outline-offset
:
-2px
}
input
[
type
=
"number"
]
::-webkit-outer-spin-button
,
input
[
type
=
"number"
]
::-webkit-inner-spin-button
{
height
:
auto
}
.form-control
:-moz-placeholder
{
color
:
#999
}
.form-control
::-moz-placeholder
{
color
:
#999
}
.form-control
:-ms-input-placeholder
{
color
:
#999
}
.form-control
::-webkit-input-placeholder
{
color
:
#999
}
.form-control
{
display
:
block
;
width
:
100%
;
height
:
38px
;
padding
:
8px
12px
;
font-size
:
14px
;
line-height
:
1.428571429
;
color
:
#555
;
vertical-align
:
middle
;
background-color
:
#fff
;
border
:
1px
solid
#ccc
;
border-radius
:
4px
;
-webkit-box-shadow
:
inset
0
1px
1px
rgba
(
0
,
0
,
0
,
0.075
);
box-shadow
:
inset
0
1px
1px
rgba
(
0
,
0
,
0
,
0.075
);
-webkit-transition
:
border-color
ease-in-out
.15s
,
box-shadow
ease-in-out
.15s
;
transition
:
border-color
ease-in-out
.15s
,
box-shadow
ease-in-out
.15s
}
.form-control
:focus
{
border-color
:
rgba
(
82
,
168
,
236
,
0.8
);
outline
:
0
;
-webkit-box-shadow
:
inset
0
1px
1px
rgba
(
0
,
0
,
0
,
0.075
),
0
0
8px
rgba
(
82
,
168
,
236
,
0.6
);
box-shadow
:
inset
0
1px
1px
rgba
(
0
,
0
,
0
,
0.075
),
0
0
8px
rgba
(
82
,
168
,
236
,
0.6
)}
.form-control
[
disabled
],
.form-control
[
readonly
],
fieldset
[
disabled
]
.form-control
{
cursor
:
not-allowed
;
background-color
:
#eee
}
textarea
.form-control
{
height
:
auto
}
.form-group
{
margin-bottom
:
15px
}
.radio
,
.checkbox
{
display
:
block
;
min-height
:
20px
;
padding-left
:
20px
;
margin-top
:
10px
;
margin-bottom
:
10px
;
vertical-align
:
middle
}
.radio
label
,
.checkbox
label
{
display
:
inline
;
margin-bottom
:
0
;
font-weight
:
normal
;
cursor
:
pointer
}
.radio
input
[
type
=
"radio"
],
.radio-inline
input
[
type
=
"radio"
],
.checkbox
input
[
type
=
"checkbox"
],
.checkbox-inline
input
[
type
=
"checkbox"
]
{
float
:
left
;
margin-left
:
-20px
}
.radio
+
.radio
,
.checkbox
+
.checkbox
{
margin-top
:
-5px
}
.radio-inline
,
.checkbox-inline
{
display
:
inline-block
;
padding-left
:
20px
;
margin-bottom
:
0
;
font-weight
:
normal
;
vertical-align
:
middle
;
cursor
:
pointer
}
.radio-inline
+
.radio-inline
,
.checkbox-inline
+
.checkbox-inline
{
margin-top
:
0
;
margin-left
:
10px
}
.form-control.input-large
{
height
:
56px
;
padding
:
14px
16px
;
font-size
:
18px
;
border-radius
:
6px
}
.form-control.input-small
{
height
:
30px
;
padding
:
5px
10px
;
font-size
:
12px
;
border-radius
:
3px
}
select
.input-large
{
height
:
56px
;
line-height
:
56px
}
select
.input-small
{
height
:
30px
;
line-height
:
30px
}
.has-warning
.help-block
,
.has-warning
.control-label
{
color
:
#c09853
}
.has-warning
.form-control
{
padding-right
:
32px
;
border-color
:
#c09853
;
-webkit-box-shadow
:
inset
0
1px
1px
rgba
(
0
,
0
,
0
,
0.075
);
box-shadow
:
inset
0
1px
1px
rgba
(
0
,
0
,
0
,
0.075
)}
.has-warning
.form-control
:focus
{
border-color
:
#a47e3c
;
-webkit-box-shadow
:
inset
0
1px
1px
rgba
(
0
,
0
,
0
,
0.075
),
0
0
6px
#dbc59e
;
box-shadow
:
inset
0
1px
1px
rgba
(
0
,
0
,
0
,
0.075
),
0
0
6px
#dbc59e
}
.has-warning
.input-group-addon
{
color
:
#c09853
;
background-color
:
#fcf8e3
;
border-color
:
#c09853
}
.has-error
.help-block
,
.has-error
.control-label
{
color
:
#b94a48
}
.has-error
.form-control
{
padding-right
:
32px
;
border-color
:
#b94a48
;
-webkit-box-shadow
:
inset
0
1px
1px
rgba
(
0
,
0
,
0
,
0.075
);
box-shadow
:
inset
0
1px
1px
rgba
(
0
,
0
,
0
,
0.075
)}
.has-error
.form-control
:focus
{
border-color
:
#953b39
;
-webkit-box-shadow
:
inset
0
1px
1px
rgba
(
0
,
0
,
0
,
0.075
),
0
0
6px
#d59392
;
box-shadow
:
inset
0
1px
1px
rgba
(
0
,
0
,
0
,
0.075
),
0
0
6px
#d59392
}
.has-error
.input-group-addon
{
color
:
#b94a48
;
background-color
:
#f2dede
;
border-color
:
#b94a48
}
.has-success
.help-block
,
.has-success
.control-label
{
color
:
#468847
}
.has-success
.form-control
{
padding-right
:
32px
;
border-color
:
#468847
;
-webkit-box-shadow
:
inset
0
1px
1px
rgba
(
0
,
0
,
0
,
0.075
);
box-shadow
:
inset
0
1px
1px
rgba
(
0
,
0
,
0
,
0.075
)}
.has-success
.form-control
:focus
{
border-color
:
#356635
;
-webkit-box-shadow
:
inset
0
1px
1px
rgba
(
0
,
0
,
0
,
0.075
),
0
0
6px
#7aba7b
;
box-shadow
:
inset
0
1px
1px
rgba
(
0
,
0
,
0
,
0.075
),
0
0
6px
#7aba7b
}
.has-success
.input-group-addon
{
color
:
#468847
;
background-color
:
#dff0d8
;
border-color
:
#468847
}
.help-block
{
display
:
block
;
margin-top
:
5px
;
margin-bottom
:
10px
;
color
:
#737373
}
.input-group
{
display
:
table
;
border-collapse
:
separate
}
.input-group.col
{
float
:
none
;
padding-right
:
0
;
padding-left
:
0
}
.input-group
.form-control
{
width
:
100%
;
margin-bottom
:
0
}
.input-group-addon
,
.input-group-btn
,
.input-group
.form-control
{
display
:
table-cell
}
.input-group-addon
:not
(
:first-child
)
:not
(
:last-child
),
.input-group-btn
:not
(
:first-child
)
:not
(
:last-child
),
.input-group
.form-control
:not
(
:first-child
)
:not
(
:last-child
)
{
border-radius
:
0
}
.input-group-addon
,
.input-group-btn
{
width
:
1%
;
white-space
:
nowrap
;
vertical-align
:
middle
}
.input-group-addon
{
padding
:
8px
12px
;
font-size
:
14px
;
font-weight
:
normal
;
line-height
:
1.428571429
;
text-align
:
center
;
background-color
:
#eee
;
border
:
1px
solid
#ccc
;
border-radius
:
4px
;
-webkit-box-sizing
:
border-box
;
-moz-box-sizing
:
border-box
;
box-sizing
:
border-box
}
.input-group-addon.input-small
{
padding
:
5px
10px
;
font-size
:
12px
;
border-radius
:
3px
}
.input-group-addon.input-large
{
padding
:
14px
16px
;
font-size
:
18px
;
border-radius
:
6px
}
.input-group
.form-control
:first-child
,
.input-group-addon
:first-child
,
.input-group-btn
:first-child
>
.btn
,
.input-group-btn
:first-child
>
.dropdown-toggle
,
.input-group-btn
:last-child
>
.btn
:not
(
:last-child
)
:not
(
.dropdown-toggle
)
{
border-top-right-radius
:
0
;
border-bottom-right-radius
:
0
}
.input-group-addon
:first-child
{
border-right
:
0
}
.input-group
.form-control
:last-child
,
.input-group-addon
:last-child
,
.input-group-btn
:last-child
>
.btn
,
.input-group-btn
:last-child
>
.dropdown-toggle
,
.input-group-btn
:first-child
>
.btn
:not
(
:first-child
)
{
border-bottom-left-radius
:
0
;
border-top-left-radius
:
0
}
.input-group-addon
:last-child
{
border-left
:
0
}
.input-group-btn
{
position
:
relative
;
white-space
:
nowrap
}
.input-group-btn
>
.btn
{
position
:
relative
}
.input-group-btn
>
.btn
+
.btn
{
margin-left
:
-4px
}
.input-group-btn
>
.btn
:hover
,
.input-group-btn
>
.btn
:active
{
z-index
:
2
}
.form-inline
.form-control
,
.form-inline
.radio
,
.form-inline
.checkbox
{
display
:
inline-block
}
.form-inline
.radio
,
.form-inline
.checkbox
{
margin-top
:
0
;
margin-bottom
:
0
}
.form-horizontal
.control-label
{
padding-top
:
6px
}
.form-horizontal
.form-group
:before
,
.form-horizontal
.form-group
:after
{
display
:
table
;
content
:
" "
}
.form-horizontal
.form-group
:after
{
clear
:
both
}
.form-horizontal
.form-group
:before
,
.form-horizontal
.form-group
:after
{
display
:
table
;
content
:
" "
}
.form-horizontal
.form-group
:after
{
clear
:
both
}
@media
(
min-width
:
768px
){
.form-horizontal
.form-group
{
margin-right
:
-15px
;
margin-left
:
-15px
}}
.form-horizontal
.form-group
.row
{
margin-right
:
-15px
;
margin-left
:
-15px
}
@media
(
min-width
:
768px
){
.form-horizontal
.control-label
{
text-align
:
right
}}
.btn
{
display
:
inline-block
;
padding
:
8px
12px
;
margin-bottom
:
0
;
font-size
:
14px
;
font-weight
:
500
;
line-height
:
1.428571429
;
text-align
:
center
;
white-space
:
nowrap
;
vertical-align
:
middle
;
cursor
:
pointer
;
border
:
1px
solid
transparent
;
border-radius
:
4px
}
.btn
:focus
{
outline
:
thin
dotted
#333
;
outline
:
5px
auto
-webkit-focus-ring-color
;
outline-offset
:
-2px
}
.btn
:hover
,
.btn
:focus
{
color
:
#fff
;
text-decoration
:
none
}
.btn
:active
,
.btn.active
{
outline
:
0
;
-webkit-box-shadow
:
inset
0
3px
5px
rgba
(
0
,
0
,
0
,
0.125
);
box-shadow
:
inset
0
3px
5px
rgba
(
0
,
0
,
0
,
0.125
)}
.btn.disabled
,
.btn
[
disabled
],
fieldset
[
disabled
]
.btn
{
pointer-events
:
none
;
cursor
:
default
;
opacity
:
.65
;
filter
:
alpha
(
opacity
=
65
);
-webkit-box-shadow
:
none
;
box-shadow
:
none
}
.btn-default
{
color
:
#fff
;
background-color
:
#474949
;
border-color
:
#474949
}
.btn-default
:hover
,
.btn-default
:focus
,
.btn-default
:active
,
.btn-default.active
{
background-color
:
#3a3c3c
;
border-color
:
#2e2f2f
}
.btn-default.disabled
,
.btn-default
[
disabled
],
fieldset
[
disabled
]
.btn-default
,
.btn-default.disabled
:hover
,
.btn-default
[
disabled
]
:hover
,
fieldset
[
disabled
]
.btn-default
:hover
,
.btn-default.disabled
:focus
,
.btn-default
[
disabled
]
:focus
,
fieldset
[
disabled
]
.btn-default
:focus
,
.btn-default.disabled
:active
,
.btn-default
[
disabled
]
:active
,
fieldset
[
disabled
]
.btn-default
:active
,
.btn-default.disabled.active
,
.btn-default
[
disabled
]
.active
,
fieldset
[
disabled
]
.btn-default.active
{
background-color
:
#474949
;
border-color
:
#474949
}
.btn-primary
{
color
:
#fff
;
background-color
:
#428bca
;
border-color
:
#428bca
}
.btn-primary
:hover
,
.btn-primary
:focus
,
.btn-primary
:active
,
.btn-primary.active
{
background-color
:
#357ebd
;
border-color
:
#3071a9
}
.btn-primary.disabled
,
.btn-primary
[
disabled
],
fieldset
[
disabled
]
.btn-primary
,
.btn-primary.disabled
:hover
,
.btn-primary
[
disabled
]
:hover
,
fieldset
[
disabled
]
.btn-primary
:hover
,
.btn-primary.disabled
:focus
,
.btn-primary
[
disabled
]
:focus
,
fieldset
[
disabled
]
.btn-primary
:focus
,
.btn-primary.disabled
:active
,
.btn-primary
[
disabled
]
:active
,
fieldset
[
disabled
]
.btn-primary
:active
,
.btn-primary.disabled.active
,
.btn-primary
[
disabled
]
.active
,
fieldset
[
disabled
]
.btn-primary.active
{
background-color
:
#428bca
;
border-color
:
#428bca
}
.btn-warning
{
color
:
#fff
;
background-color
:
#f0ad4e
;
border-color
:
#f0ad4e
}
.btn-warning
:hover
,
.btn-warning
:focus
,
.btn-warning
:active
,
.btn-warning.active
{
background-color
:
#eea236
;
border-color
:
#ec971f
}
.btn-warning.disabled
,
.btn-warning
[
disabled
],
fieldset
[
disabled
]
.btn-warning
,
.btn-warning.disabled
:hover
,
.btn-warning
[
disabled
]
:hover
,
fieldset
[
disabled
]
.btn-warning
:hover
,
.btn-warning.disabled
:focus
,
.btn-warning
[
disabled
]
:focus
,
fieldset
[
disabled
]
.btn-warning
:focus
,
.btn-warning.disabled
:active
,
.btn-warning
[
disabled
]
:active
,
fieldset
[
disabled
]
.btn-warning
:active
,
.btn-warning.disabled.active
,
.btn-warning
[
disabled
]
.active
,
fieldset
[
disabled
]
.btn-warning.active
{
background-color
:
#f0ad4e
;
border-color
:
#f0ad4e
}
.btn-danger
{
color
:
#fff
;
background-color
:
#d9534f
;
border-color
:
#d9534f
}
.btn-danger
:hover
,
.btn-danger
:focus
,
.btn-danger
:active
,
.btn-danger.active
{
background-color
:
#d43f3a
;
border-color
:
#c9302c
}
.btn-danger.disabled
,
.btn-danger
[
disabled
],
fieldset
[
disabled
]
.btn-danger
,
.btn-danger.disabled
:hover
,
.btn-danger
[
disabled
]
:hover
,
fieldset
[
disabled
]
.btn-danger
:hover
,
.btn-danger.disabled
:focus
,
.btn-danger
[
disabled
]
:focus
,
fieldset
[
disabled
]
.btn-danger
:focus
,
.btn-danger.disabled
:active
,
.btn-danger
[
disabled
]
:active
,
fieldset
[
disabled
]
.btn-danger
:active
,
.btn-danger.disabled.active
,
.btn-danger
[
disabled
]
.active
,
fieldset
[
disabled
]
.btn-danger.active
{
background-color
:
#d9534f
;
border-color
:
#d9534f
}
.btn-success
{
color
:
#fff
;
background-color
:
#5cb85c
;
border-color
:
#5cb85c
}
.btn-success
:hover
,
.btn-success
:focus
,
.btn-success
:active
,
.btn-success.active
{
background-color
:
#4cae4c
;
border-color
:
#449d44
}
.btn-success.disabled
,
.btn-success
[
disabled
],
fieldset
[
disabled
]
.btn-success
,
.btn-success.disabled
:hover
,
.btn-success
[
disabled
]
:hover
,
fieldset
[
disabled
]
.btn-success
:hover
,
.btn-success.disabled
:focus
,
.btn-success
[
disabled
]
:focus
,
fieldset
[
disabled
]
.btn-success
:focus
,
.btn-success.disabled
:active
,
.btn-success
[
disabled
]
:active
,
fieldset
[
disabled
]
.btn-success
:active
,
.btn-success.disabled.active
,
.btn-success
[
disabled
]
.active
,
fieldset
[
disabled
]
.btn-success.active
{
background-color
:
#5cb85c
;
border-color
:
#5cb85c
}
.btn-info
{
color
:
#fff
;
background-color
:
#5bc0de
;
border-color
:
#5bc0de
}
.btn-info
:hover
,
.btn-info
:focus
,
.btn-info
:active
,
.btn-info.active
{
background-color
:
#46b8da
;
border-color
:
#31b0d5
}
.btn-info.disabled
,
.btn-info
[
disabled
],
fieldset
[
disabled
]
.btn-info
,
.btn-info.disabled
:hover
,
.btn-info
[
disabled
]
:hover
,
fieldset
[
disabled
]
.btn-info
:hover
,
.btn-info.disabled
:focus
,
.btn-info
[
disabled
]
:focus
,
fieldset
[
disabled
]
.btn-info
:focus
,
.btn-info.disabled
:active
,
.btn-info
[
disabled
]
:active
,
fieldset
[
disabled
]
.btn-info
:active
,
.btn-info.disabled.active
,
.btn-info
[
disabled
]
.active
,
fieldset
[
disabled
]
.btn-info.active
{
background-color
:
#5bc0de
;
border-color
:
#5bc0de
}
.btn-link
{
font-weight
:
normal
;
color
:
#428bca
;
cursor
:
pointer
;
border-radius
:
0
}
.btn-link
,
.btn-link
:active
,
.btn-link
[
disabled
],
fieldset
[
disabled
]
.btn-link
{
background-color
:
transparent
;
-webkit-box-shadow
:
none
;
box-shadow
:
none
}
.btn-link
,
.btn-link
:hover
,
.btn-link
:focus
,
.btn-link
:active
{
border-color
:
transparent
}
.btn-link
:hover
,
.btn-link
:focus
{
color
:
#2a6496
;
text-decoration
:
underline
;
background-color
:
transparent
}
.btn-link
[
disabled
]
:hover
,
fieldset
[
disabled
]
.btn-link
:hover
,
.btn-link
[
disabled
]
:focus
,
fieldset
[
disabled
]
.btn-link
:focus
{
color
:
#333
;
text-decoration
:
none
}
.btn-large
{
padding
:
14px
16px
;
font-size
:
18px
;
border-radius
:
6px
}
.btn-small
{
padding
:
5px
10px
;
font-size
:
12px
;
line-height
:
1.5
;
border-radius
:
3px
}
.btn-block
{
display
:
block
;
width
:
100%
;
padding-right
:
0
;
padding-left
:
0
}
.btn-block
+
.btn-block
{
margin-top
:
5px
}
input
[
type
=
"submit"
]
.btn-block
,
input
[
type
=
"reset"
]
.btn-block
,
input
[
type
=
"button"
]
.btn-block
{
width
:
100%
}
.fade
{
opacity
:
0
;
-webkit-transition
:
opacity
.15s
linear
;
transition
:
opacity
.15s
linear
}
.fade.in
{
opacity
:
1
}
.collapse
{
display
:
none
}
.collapse.in
{
display
:
block
}
.collapsing
{
position
:
relative
;
height
:
0
;
overflow
:
hidden
;
-webkit-transition
:
height
.35s
ease
;
transition
:
height
.35s
ease
}
.caret
{
display
:
inline-block
;
width
:
0
;
height
:
0
;
margin-left
:
2px
;
vertical-align
:
middle
;
border-top
:
4px
solid
#000
;
border-right
:
4px
solid
transparent
;
border-left
:
4px
solid
transparent
;
content
:
""
}
.dropdown-menu
{
position
:
absolute
;
top
:
100%
;
left
:
0
;
z-index
:
1000
;
display
:
none
;
float
:
left
;
min-width
:
160px
;
padding
:
5px
0
;
margin
:
2px
0
0
;
list-style
:
none
;
background-color
:
#fff
;
border
:
1px
solid
#ccc
;
border
:
1px
solid
rgba
(
0
,
0
,
0
,
0.15
);
border-radius
:
4px
;
-webkit-box-shadow
:
0
6px
12px
rgba
(
0
,
0
,
0
,
0.175
);
box-shadow
:
0
6px
12px
rgba
(
0
,
0
,
0
,
0.175
);
background-clip
:
padding-box
}
.dropdown-menu.pull-right
{
right
:
0
;
left
:
auto
}
.dropdown-menu
.divider
{
height
:
1px
;
margin
:
9px
0
;
overflow
:
hidden
;
background-color
:
#e5e5e5
}
.dropdown-menu
>
li
>
a
{
display
:
block
;
padding
:
3px
20px
;
clear
:
both
;
font-weight
:
normal
;
line-height
:
1.428571429
;
color
:
#333
;
white-space
:
nowrap
}
.dropdown-menu
>
li
>
a
:hover
,
.dropdown-menu
>
li
>
a
:focus
{
color
:
#fff
;
text-decoration
:
none
;
background-color
:
#357ebd
;
background-image
:
-webkit-gradient
(
linear
,
left
0
,
left
100%
,
from
(
#428bca
),
to
(
#357ebd
));
background-image
:
-webkit-linear-gradient
(
top
,
#428bca
,
0%
,
#357ebd
,
100%
);
background-image
:
-moz-linear-gradient
(
top
,
#428bca
0
,
#357ebd
100%
);
background-image
:
linear-gradient
(
to
bottom
,
#428bca
0
,
#357ebd
100%
);
background-repeat
:
repeat-x
;
filter
:
progid
:
DXImageTransform
.
Microsoft
.
gradient
(
startColorstr
=
'#ff428bca'
,
endColorstr
=
'#ff357ebd'
,
GradientType
=
0
)}
.dropdown-menu
>
.active
>
a
,
.dropdown-menu
>
.active
>
a
:hover
,
.dropdown-menu
>
.active
>
a
:focus
{
color
:
#fff
;
text-decoration
:
none
;
background-color
:
#357ebd
;
background-image
:
-webkit-gradient
(
linear
,
left
0
,
left
100%
,
from
(
#428bca
),
to
(
#357ebd
));
background-image
:
-webkit-linear-gradient
(
top
,
#428bca
,
0%
,
#357ebd
,
100%
);
background-image
:
-moz-linear-gradient
(
top
,
#428bca
0
,
#357ebd
100%
);
background-image
:
linear-gradient
(
to
bottom
,
#428bca
0
,
#357ebd
100%
);
background-repeat
:
repeat-x
;
outline
:
0
;
filter
:
progid
:
DXImageTransform
.
Microsoft
.
gradient
(
startColorstr
=
'#ff428bca'
,
endColorstr
=
'#ff357ebd'
,
GradientType
=
0
)}
.dropdown-menu
>
.disabled
>
a
,
.dropdown-menu
>
.disabled
>
a
:hover
,
.dropdown-menu
>
.disabled
>
a
:focus
{
color
:
#999
}
.dropdown-menu
>
.disabled
>
a
:hover
,
.dropdown-menu
>
.disabled
>
a
:focus
{
text-decoration
:
none
;
cursor
:
not-allowed
;
background-color
:
transparent
;
background-image
:
none
;
filter
:
progid
:
DXImageTransform
.
Microsoft
.
gradient
(
enabled
=
false
)}
.open
>
.dropdown-menu
{
display
:
block
}
.open
>
a
{
outline
:
0
}
.dropdown-header
{
display
:
block
;
padding
:
3px
20px
;
font-size
:
12px
;
line-height
:
1.428571429
;
color
:
#999
}
.dropdown-backdrop
{
position
:
fixed
;
top
:
0
;
right
:
0
;
bottom
:
0
;
left
:
0
;
z-index
:
990
}
.pull-right
>
.dropdown-menu
{
right
:
0
;
left
:
auto
}
.dropup
.caret
,
.navbar-fixed-bottom
.dropdown
.caret
{
border-top
:
0
;
border-bottom
:
4px
solid
#000
;
content
:
""
}
.dropup
.dropdown-menu
,
.navbar-fixed-bottom
.dropdown
.dropdown-menu
{
top
:
auto
;
bottom
:
100%
;
margin-bottom
:
1px
}
.list-group
{
padding-left
:
0
;
margin-bottom
:
20px
;
background-color
:
#fff
}
.list-group-item
{
position
:
relative
;
display
:
block
;
padding
:
10px
30px
10px
15px
;
margin-bottom
:
-1px
;
border
:
1px
solid
#ddd
}
.list-group-item
:first-child
{
border-top-right-radius
:
4px
;
border-top-left-radius
:
4px
}
.list-group-item
:last-child
{
margin-bottom
:
0
;
border-bottom-right-radius
:
4px
;
border-bottom-left-radius
:
4px
}
.list-group-item
>
.badge
{
float
:
right
;
margin-right
:
-15px
}
.list-group-item-heading
{
margin-top
:
0
;
margin-bottom
:
5px
}
.list-group-item-text
{
margin-bottom
:
0
;
line-height
:
1.3
}
a
.list-group-item
.list-group-item-heading
{
color
:
#333
}
a
.list-group-item
.list-group-item-text
{
color
:
#555
}
a
.list-group-item
:hover
,
a
.list-group-item
:focus
{
text-decoration
:
none
;
background-color
:
#f5f5f5
}
a
.list-group-item.active
{
z-index
:
2
;
color
:
#fff
;
background-color
:
#428bca
;
border-color
:
#428bca
}
a
.list-group-item.active
.list-group-item-heading
{
color
:
inherit
}
a
.list-group-item.active
.list-group-item-text
{
color
:
#e1edf7
}
.panel
{
padding
:
15px
;
margin-bottom
:
20px
;
background-color
:
#fff
;
border
:
1px
solid
#ddd
;
border-radius
:
4px
;
-webkit-box-shadow
:
0
1px
1px
rgba
(
0
,
0
,
0
,
0.05
);
box-shadow
:
0
1px
1px
rgba
(
0
,
0
,
0
,
0.05
)}
.panel-heading
{
padding
:
10px
15px
;
margin
:
-15px
-15px
15px
;
background-color
:
#f5f5f5
;
border-bottom
:
1px
solid
#ddd
;
border-top-right-radius
:
3px
;
border-top-left-radius
:
3px
}
.panel-title
{
margin-top
:
0
;
margin-bottom
:
0
;
font-size
:
17.5px
;
font-weight
:
500
}
.panel-footer
{
padding
:
10px
15px
;
margin
:
15px
-15px
-15px
;
background-color
:
#f5f5f5
;
border-top
:
1px
solid
#ddd
;
border-bottom-right-radius
:
3px
;
border-bottom-left-radius
:
3px
}
.panel-primary
{
border-color
:
#428bca
}
.panel-primary
.panel-heading
{
color
:
#fff
;
background-color
:
#428bca
;
border-color
:
#428bca
}
.panel-success
{
border-color
:
#d6e9c6
}
.panel-success
.panel-heading
{
color
:
#468847
;
background-color
:
#dff0d8
;
border-color
:
#d6e9c6
}
.panel-warning
{
border-color
:
#fbeed5
}
.panel-warning
.panel-heading
{
color
:
#c09853
;
background-color
:
#fcf8e3
;
border-color
:
#fbeed5
}
.panel-danger
{
border-color
:
#eed3d7
}
.panel-danger
.panel-heading
{
color
:
#b94a48
;
background-color
:
#f2dede
;
border-color
:
#eed3d7
}
.panel-info
{
border-color
:
#bce8f1
}
.panel-info
.panel-heading
{
color
:
#3a87ad
;
background-color
:
#d9edf7
;
border-color
:
#bce8f1
}
.list-group-flush
{
margin
:
15px
-15px
-15px
}
.list-group-flush
.list-group-item
{
border-width
:
1px
0
}
.list-group-flush
.list-group-item
:first-child
{
border-top-right-radius
:
0
;
border-top-left-radius
:
0
}
.list-group-flush
.list-group-item
:last-child
{
border-bottom
:
0
}
.well
{
min-height
:
20px
;
padding
:
19px
;
margin-bottom
:
20px
;
background-color
:
#f5f5f5
;
border
:
1px
solid
#e3e3e3
;
border-radius
:
4px
;
-webkit-box-shadow
:
inset
0
1px
1px
rgba
(
0
,
0
,
0
,
0.05
);
box-shadow
:
inset
0
1px
1px
rgba
(
0
,
0
,
0
,
0.05
)}
.well
blockquote
{
border-color
:
#ddd
;
border-color
:
rgba
(
0
,
0
,
0
,
0.15
)}
.well-large
{
padding
:
24px
;
border-radius
:
6px
}
.well-small
{
padding
:
9px
;
border-radius
:
3px
}
.close
{
float
:
right
;
font-size
:
21px
;
font-weight
:
bold
;
line-height
:
1
;
color
:
#000
;
text-shadow
:
0
1px
0
#fff
;
opacity
:
.2
;
filter
:
alpha
(
opacity
=
20
)}
.close
:hover
,
.close
:focus
{
color
:
#000
;
text-decoration
:
none
;
cursor
:
pointer
;
opacity
:
.5
;
filter
:
alpha
(
opacity
=
50
)}
button
.close
{
padding
:
0
;
cursor
:
pointer
;
background
:
transparent
;
border
:
0
;
-webkit-appearance
:
none
}
.nav
{
padding-left
:
0
;
margin-bottom
:
0
;
list-style
:
none
}
.nav
:before
,
.nav
:after
{
display
:
table
;
content
:
" "
}
.nav
:after
{
clear
:
both
}
.nav
:before
,
.nav
:after
{
display
:
table
;
content
:
" "
}
.nav
:after
{
clear
:
both
}
.nav
>
li
{
position
:
relative
;
display
:
block
}
.nav
>
li
>
a
{
position
:
relative
;
display
:
block
;
padding
:
10px
15px
}
.nav
>
li
>
a
:hover
,
.nav
>
li
>
a
:focus
{
text-decoration
:
none
;
background-color
:
#eee
}
.nav
>
li
.disabled
>
a
{
color
:
#999
}
.nav
>
li
.disabled
>
a
:hover
,
.nav
>
li
.disabled
>
a
:focus
{
color
:
#999
;
text-decoration
:
none
;
cursor
:
not-allowed
;
background-color
:
transparent
}
.nav
>
li
+
.nav-header
{
margin-top
:
9px
}
.nav.open
>
a
,
.nav.open
>
a
:hover
,
.nav.open
>
a
:focus
{
color
:
#fff
;
background-color
:
#428bca
;
border-color
:
#428bca
}
.nav.open
>
a
.caret
,
.nav.open
>
a
:hover
.caret
,
.nav.open
>
a
:focus
.caret
{
border-top-color
:
#fff
;
border-bottom-color
:
#fff
}
.nav
>
.pull-right
{
float
:
right
}
.nav
.nav-divider
{
height
:
1px
;
margin
:
9px
0
;
overflow
:
hidden
;
background-color
:
#e5e5e5
}
.nav-tabs
{
border-bottom
:
1px
solid
#ddd
}
.nav-tabs
>
li
{
float
:
left
;
margin-bottom
:
-1px
}
.nav-tabs
>
li
>
a
{
margin-right
:
2px
;
line-height
:
1.428571429
;
border
:
1px
solid
transparent
;
border-radius
:
4px
4px
0
0
}
.nav-tabs
>
li
>
a
:hover
{
border-color
:
#eee
}
.nav-tabs
>
li
.active
>
a
,
.nav-tabs
>
li
.active
>
a
:hover
,
.nav-tabs
>
li
.active
>
a
:focus
{
color
:
#555
;
cursor
:
default
;
background-color
:
#fff
;
border
:
1px
solid
#ddd
;
border-bottom-color
:
transparent
}
.nav-tabs.nav-justified
{
display
:
table
;
width
:
100%
;
border-bottom
:
0
}
.nav-tabs.nav-justified
>
li
{
display
:
table-cell
;
float
:
none
;
width
:
auto
}
.nav-tabs.nav-justified
>
li
>
a
{
text-align
:
center
}
.nav-tabs.nav-justified
>
li
>
a
{
margin-right
:
0
;
border-bottom
:
1px
solid
#ddd
}
.nav-tabs.nav-justified
>
.active
>
a
{
border-bottom-color
:
#fff
}
.nav-pills
>
li
{
float
:
left
}
.nav-pills
>
li
>
a
{
border-radius
:
5px
}
.nav-pills
>
li
+
li
>
a
{
margin-left
:
2px
}
.nav-pills
>
li
.active
>
a
,
.nav-pills
>
li
.active
>
a
:hover
,
.nav-pills
>
li
.active
>
a
:focus
{
color
:
#fff
;
background-color
:
#428bca
}
.nav-stacked
>
li
{
float
:
none
}
.nav-stacked
>
li
+
li
>
a
{
margin-top
:
2px
;
margin-left
:
0
}
.nav-justified
{
display
:
table
;
width
:
100%
}
.nav-justified
>
li
{
display
:
table-cell
;
float
:
none
;
width
:
auto
}
.nav-justified
>
li
>
a
{
text-align
:
center
}
.nav-tabs-justified
{
border-bottom
:
0
}
.nav-tabs-justified
>
li
>
a
{
margin-right
:
0
;
border-bottom
:
1px
solid
#ddd
}
.nav-tabs-justified
>
.active
>
a
{
border-bottom-color
:
#fff
}
.tabbable
:before
,
.tabbable
:after
{
display
:
table
;
content
:
" "
}
.tabbable
:after
{
clear
:
both
}
.tabbable
:before
,
.tabbable
:after
{
display
:
table
;
content
:
" "
}
.tabbable
:after
{
clear
:
both
}
.tab-content
>
.tab-pane
,
.pill-content
>
.pill-pane
{
display
:
none
}
.tab-content
>
.active
,
.pill-content
>
.active
{
display
:
block
}
.nav
.caret
{
border-top-color
:
#428bca
;
border-bottom-color
:
#428bca
}
.nav
a
:hover
.caret
{
border-top-color
:
#2a6496
;
border-bottom-color
:
#2a6496
}
.nav-tabs
.dropdown-menu
{
margin-top
:
-1px
;
border-top-right-radius
:
0
;
border-top-left-radius
:
0
}
.navbar
{
position
:
relative
;
min-height
:
50px
;
padding-right
:
15px
;
padding-left
:
15px
;
margin-bottom
:
20px
;
background-color
:
#eee
;
border-radius
:
4px
}
.navbar
:before
,
.navbar
:after
{
display
:
table
;
content
:
" "
}
.navbar
:after
{
clear
:
both
}
.navbar
:before
,
.navbar
:after
{
display
:
table
;
content
:
" "
}
.navbar
:after
{
clear
:
both
}
.navbar-nav
{
margin-top
:
10px
;
margin-bottom
:
15px
}
.navbar-nav
>
li
>
a
{
padding-top
:
15px
;
padding-bottom
:
15px
;
line-height
:
20px
;
color
:
#777
;
border-radius
:
4px
}
.navbar-nav
>
li
>
a
:hover
,
.navbar-nav
>
li
>
a
:focus
{
color
:
#333
;
background-color
:
transparent
}
.navbar-nav
>
.active
>
a
,
.navbar-nav
>
.active
>
a
:hover
,
.navbar-nav
>
.active
>
a
:focus
{
color
:
#555
;
background-color
:
#d5d5d5
}
.navbar-nav
>
.disabled
>
a
,
.navbar-nav
>
.disabled
>
a
:hover
,
.navbar-nav
>
.disabled
>
a
:focus
{
color
:
#ccc
;
background-color
:
transparent
}
.navbar-nav.pull-right
{
width
:
100%
}
.navbar-static-top
{
border-radius
:
0
}
.navbar-fixed-top
,
.navbar-fixed-bottom
{
position
:
fixed
;
right
:
0
;
left
:
0
;
z-index
:
1030
;
border-radius
:
0
}
.navbar-fixed-top
{
top
:
0
}
.navbar-fixed-bottom
{
bottom
:
0
;
margin-bottom
:
0
}
.navbar-brand
{
display
:
block
;
max-width
:
200px
;
padding
:
15px
15px
;
margin-right
:
auto
;
margin-left
:
auto
;
font-size
:
18px
;
font-weight
:
500
;
line-height
:
20px
;
color
:
#777
;
text-align
:
center
}
.navbar-brand
:hover
,
.navbar-brand
:focus
{
color
:
#5e5e5e
;
text-decoration
:
none
;
background-color
:
transparent
}
.navbar-toggle
{
position
:
absolute
;
top
:
9px
;
right
:
10px
;
width
:
48px
;
height
:
32px
;
padding
:
8px
12px
;
background-color
:
transparent
;
border
:
1px
solid
#ddd
;
border-radius
:
4px
}
.navbar-toggle
:hover
,
.navbar-toggle
:focus
{
background-color
:
#ddd
}
.navbar-toggle
.icon-bar
{
display
:
block
;
width
:
22px
;
height
:
2px
;
background-color
:
#ccc
;
border-radius
:
1px
}
.navbar-toggle
.icon-bar
+
.icon-bar
{
margin-top
:
4px
}
.navbar-form
{
margin-top
:
6px
;
margin-bottom
:
6px
}
.navbar-form
.form-control
,
.navbar-form
.radio
,
.navbar-form
.checkbox
{
display
:
inline-block
}
.navbar-form
.radio
,
.navbar-form
.checkbox
{
margin-top
:
0
;
margin-bottom
:
0
}
.navbar-nav
>
li
>
.dropdown-menu
{
margin-top
:
0
;
border-top-right-radius
:
0
;
border-top-left-radius
:
0
}
.navbar-fixed-bottom
.navbar-nav
>
li
>
.dropdown-menu
{
border-bottom-right-radius
:
0
;
border-bottom-left-radius
:
0
}
.navbar-nav
>
.dropdown
>
a
:hover
.caret
,
.navbar-nav
>
.dropdown
>
a
:focus
.caret
{
border-top-color
:
#333
;
border-bottom-color
:
#333
}
.navbar-nav
>
.open
>
a
,
.navbar-nav
>
.open
>
a
:hover
,
.navbar-nav
>
.open
>
a
:focus
{
color
:
#555
;
background-color
:
#d5d5d5
}
.navbar-nav
>
.open
>
a
.caret
,
.navbar-nav
>
.open
>
a
:hover
.caret
,
.navbar-nav
>
.open
>
a
:focus
.caret
{
border-top-color
:
#555
;
border-bottom-color
:
#555
}
.navbar-nav
>
.dropdown
>
a
.caret
{
border-top-color
:
#777
;
border-bottom-color
:
#777
}
.navbar-nav.pull-right
>
li
>
.dropdown-menu
,
.navbar-nav
>
li
>
.dropdown-menu.pull-right
{
right
:
0
;
left
:
auto
}
.navbar-inverse
{
background-color
:
#222
}
.navbar-inverse
.navbar-brand
{
color
:
#999
}
.navbar-inverse
.navbar-brand
:hover
,
.navbar-inverse
.navbar-brand
:focus
{
color
:
#fff
;
background-color
:
transparent
}
.navbar-inverse
.navbar-text
{
color
:
#999
}
.navbar-inverse
.navbar-nav
>
li
>
a
{
color
:
#999
}
.navbar-inverse
.navbar-nav
>
li
>
a
:hover
,
.navbar-inverse
.navbar-nav
>
li
>
a
:focus
{
color
:
#fff
;
background-color
:
transparent
}
.navbar-inverse
.navbar-nav
>
.active
>
a
,
.navbar-inverse
.navbar-nav
>
.active
>
a
:hover
,
.navbar-inverse
.navbar-nav
>
.active
>
a
:focus
{
color
:
#fff
;
background-color
:
#080808
}
.navbar-inverse
.navbar-nav
>
.disabled
>
a
,
.navbar-inverse
.navbar-nav
>
.disabled
>
a
:hover
,
.navbar-inverse
.navbar-nav
>
.disabled
>
a
:focus
{
color
:
#444
;
background-color
:
transparent
}
.navbar-inverse
.navbar-toggle
{
border-color
:
#333
}
.navbar-inverse
.navbar-toggle
:hover
,
.navbar-inverse
.navbar-toggle
:focus
{
background-color
:
#333
}
.navbar-inverse
.navbar-toggle
.icon-bar
{
background-color
:
#fff
}
.navbar-inverse
.navbar-nav
>
.open
>
a
,
.navbar-inverse
.navbar-nav
>
.open
>
a
:hover
,
.navbar-inverse
.navbar-nav
>
.open
>
a
:focus
{
color
:
#fff
;
background-color
:
#080808
}
.navbar-inverse
.navbar-nav
>
.dropdown
>
a
:hover
.caret
{
border-top-color
:
#fff
;
border-bottom-color
:
#fff
}
.navbar-inverse
.navbar-nav
>
.dropdown
>
a
.caret
{
border-top-color
:
#999
;
border-bottom-color
:
#999
}
.navbar-inverse
.navbar-nav
>
.open
>
a
.caret
,
.navbar-inverse
.navbar-nav
>
.open
>
a
:hover
.caret
,
.navbar-inverse
.navbar-nav
>
.open
>
a
:focus
.caret
{
border-top-color
:
#fff
;
border-bottom-color
:
#fff
}
@media
screen
and
(
min-width
:
768px
){
.navbar-brand
{
float
:
left
;
margin-right
:
5px
;
margin-left
:
-15px
}
.navbar-nav
{
float
:
left
;
margin-top
:
0
;
margin-bottom
:
0
}
.navbar-nav
>
li
{
float
:
left
}
.navbar-nav
>
li
>
a
{
border-radius
:
0
}
.navbar-nav.pull-right
{
float
:
right
;
width
:
auto
}
.navbar-toggle
{
position
:
relative
;
top
:
auto
;
left
:
auto
;
display
:
none
}
.nav-collapse.collapse
{
display
:
block
!important
;
height
:
auto
!important
;
overflow
:
visible
!important
}}
.navbar-btn
{
margin-top
:
6px
}
.navbar-text
{
margin-top
:
15px
;
margin-bottom
:
15px
}
.navbar-link
{
color
:
#777
}
.navbar-link
:hover
{
color
:
#333
}
.navbar-inverse
.navbar-link
{
color
:
#999
}
.navbar-inverse
.navbar-link
:hover
{
color
:
#fff
}
.btn
.caret
{
border-top-color
:
#fff
}
.dropup
.btn
.caret
{
border-bottom-color
:
#fff
}
.btn-group
,
.btn-group-vertical
{
position
:
relative
;
display
:
inline-block
;
vertical-align
:
middle
}
.btn-group
>
.btn
,
.btn-group-vertical
>
.btn
{
position
:
relative
;
float
:
left
}
.btn-group
>
.btn
:hover
,
.btn-group-vertical
>
.btn
:hover
,
.btn-group
>
.btn
:active
,
.btn-group-vertical
>
.btn
:active
{
z-index
:
2
}
.btn-group
.btn
+
.btn
{
margin-left
:
-1px
}
.btn-toolbar
:before
,
.btn-toolbar
:after
{
display
:
table
;
content
:
" "
}
.btn-toolbar
:after
{
clear
:
both
}
.btn-toolbar
:before
,
.btn-toolbar
:after
{
display
:
table
;
content
:
" "
}
.btn-toolbar
:after
{
clear
:
both
}
.btn-toolbar
.btn-group
{
float
:
left
}
.btn-toolbar
>
.btn
+
.btn
,
.btn-toolbar
>
.btn-group
+
.btn
,
.btn-toolbar
>
.btn
+
.btn-group
,
.btn-toolbar
>
.btn-group
+
.btn-group
{
margin-left
:
5px
}
.btn-group
>
.btn
:not
(
:first-child
)
:not
(
:last-child
)
:not
(
.dropdown-toggle
)
{
border-radius
:
0
}
.btn-group
>
.btn
:first-child
{
margin-left
:
0
}
.btn-group
>
.btn
:first-child:not
(
:last-child
)
:not
(
.dropdown-toggle
)
{
border-top-right-radius
:
0
;
border-bottom-right-radius
:
0
}
.btn-group
>
.btn
:last-child:not
(
:first-child
),
.btn-group
>
.dropdown-toggle
:not
(
:first-child
)
{
border-bottom-left-radius
:
0
;
border-top-left-radius
:
0
}
.btn-group
>
.btn-group
{
float
:
left
}
.btn-group
>
.btn-group
:not
(
:first-child
)
:not
(
:last-child
)>
.btn
{
border-radius
:
0
}
.btn-group
>
.btn-group
:first-child
>
.btn
:last-child
,
.btn-group
>
.btn-group
:first-child
>
.dropdown-toggle
{
border-top-right-radius
:
0
;
border-bottom-right-radius
:
0
}
.btn-group
>
.btn-group
:last-child
>
.btn
:first-child
{
border-bottom-left-radius
:
0
;
border-top-left-radius
:
0
}
.btn-group
.dropdown-toggle
:active
,
.btn-group.open
.dropdown-toggle
{
outline
:
0
}
.btn-group
>
.btn
+
.dropdown-toggle
{
padding-right
:
8px
;
padding-left
:
8px
}
.btn-group
>
.btn-large
+
.dropdown-toggle
{
padding-right
:
12px
;
padding-left
:
12px
}
.btn-group.open
.dropdown-toggle
{
-webkit-box-shadow
:
inset
0
3px
5px
rgba
(
0
,
0
,
0
,
0.125
);
box-shadow
:
inset
0
3px
5px
rgba
(
0
,
0
,
0
,
0.125
)}
.btn
.caret
{
margin-left
:
0
}
.btn-large
.caret
{
border-width
:
5px
}
.dropup
.btn-large
.caret
{
border-bottom-width
:
5px
}
.btn-group-vertical
>
.btn
{
display
:
block
;
float
:
none
;
width
:
100%
;
max-width
:
100%
}
.btn-group-vertical
>
.btn
+
.btn
{
margin-top
:
-1px
}
.btn-group-vertical
.btn
:not
(
:first-child
)
:not
(
:last-child
)
{
border-radius
:
0
}
.btn-group-vertical
.btn
:first-child
{
border-bottom-right-radius
:
0
;
border-bottom-left-radius
:
0
}
.btn-group-vertical
.btn
:last-child
{
border-top-right-radius
:
0
;
border-top-left-radius
:
0
}
.btn-group-justified
{
display
:
table
;
width
:
100%
}
.btn-group-justified
.btn
{
display
:
table-cell
;
float
:
none
;
width
:
1%
}
.btn-group
[
data-toggle
=
"buttons"
]>
.btn
>
input
[
type
=
"radio"
],
.btn-group
[
data-toggle
=
"buttons"
]>
.btn
>
input
[
type
=
"checkbox"
]
{
display
:
none
}
.breadcrumb
{
padding
:
8px
15px
;
margin-bottom
:
20px
;
list-style
:
none
;
background-color
:
#f5f5f5
;
border-radius
:
4px
}
.breadcrumb
>
li
{
display
:
inline-block
}
.breadcrumb
>
li
+
li
:before
{
padding
:
0
5px
;
color
:
#ccc
;
content
:
"/\00a0"
}
.breadcrumb
>
.active
{
color
:
#999
}
.pagination
{
display
:
inline-block
;
padding-left
:
0
;
margin
:
20px
0
;
border-radius
:
4px
}
.pagination
>
li
{
display
:
inline
}
.pagination
>
li
>
a
,
.pagination
>
li
>
span
{
float
:
left
;
padding
:
4px
12px
;
line-height
:
1.428571429
;
text-decoration
:
none
;
background-color
:
#fff
;
border
:
1px
solid
#ddd
;
border-left-width
:
0
}
.pagination
>
li
:first-child
>
a
,
.pagination
>
li
:first-child
>
span
{
border-left-width
:
1px
;
border-bottom-left-radius
:
4px
;
border-top-left-radius
:
4px
}
.pagination
>
li
:last-child
>
a
,
.pagination
>
li
:last-child
>
span
{
border-top-right-radius
:
4px
;
border-bottom-right-radius
:
4px
}
.pagination
>
li
>
a
:hover
,
.pagination
>
li
>
a
:focus
,
.pagination
>
.active
>
a
,
.pagination
>
.active
>
span
{
background-color
:
#f5f5f5
}
.pagination
>
.active
>
a
,
.pagination
>
.active
>
span
{
color
:
#999
;
cursor
:
default
}
.pagination
>
.disabled
>
span
,
.pagination
>
.disabled
>
a
,
.pagination
>
.disabled
>
a
:hover
,
.pagination
>
.disabled
>
a
:focus
{
color
:
#999
;
cursor
:
not-allowed
;
background-color
:
#fff
}
.pagination-large
>
li
>
a
,
.pagination-large
>
li
>
span
{
padding
:
14px
16px
;
font-size
:
18px
}
.pagination-large
>
li
:first-child
>
a
,
.pagination-large
>
li
:first-child
>
span
{
border-bottom-left-radius
:
6px
;
border-top-left-radius
:
6px
}
.pagination-large
>
li
:last-child
>
a
,
.pagination-large
>
li
:last-child
>
span
{
border-top-right-radius
:
6px
;
border-bottom-right-radius
:
6px
}
.pagination-small
>
li
>
a
,
.pagination-small
>
li
>
span
{
padding
:
5px
10px
;
font-size
:
12px
}
.pagination-small
>
li
:first-child
>
a
,
.pagination-small
>
li
:first-child
>
span
{
border-bottom-left-radius
:
3px
;
border-top-left-radius
:
3px
}
.pagination-small
>
li
:last-child
>
a
,
.pagination-small
>
li
:last-child
>
span
{
border-top-right-radius
:
3px
;
border-bottom-right-radius
:
3px
}
.pager
{
padding-left
:
0
;
margin
:
20px
0
;
text-align
:
center
;
list-style
:
none
}
.pager
:before
,
.pager
:after
{
display
:
table
;
content
:
" "
}
.pager
:after
{
clear
:
both
}
.pager
:before
,
.pager
:after
{
display
:
table
;
content
:
" "
}
.pager
:after
{
clear
:
both
}
.pager
li
{
display
:
inline
}
.pager
li
>
a
,
.pager
li
>
span
{
display
:
inline-block
;
padding
:
5px
14px
;
background-color
:
#fff
;
border
:
1px
solid
#ddd
;
border-radius
:
15px
}
.pager
li
>
a
:hover
,
.pager
li
>
a
:focus
{
text-decoration
:
none
;
background-color
:
#f5f5f5
}
.pager
.next
>
a
,
.pager
.next
>
span
{
float
:
right
}
.pager
.previous
>
a
,
.pager
.previous
>
span
{
float
:
left
}
.pager
.disabled
>
a
,
.pager
.disabled
>
a
:hover
,
.pager
.disabled
>
a
:focus
,
.pager
.disabled
>
span
{
color
:
#999
;
cursor
:
not-allowed
;
background-color
:
#fff
}
.modal-open
{
overflow
:
hidden
}
.modal
{
position
:
fixed
;
top
:
0
;
right
:
0
;
bottom
:
0
;
left
:
0
;
z-index
:
1040
;
display
:
none
;
overflow
:
auto
;
overflow-y
:
scroll
}
.modal.fade
{
top
:
-25%
;
-webkit-transition
:
opacity
.3s
linear
,
top
.3s
ease-out
;
transition
:
opacity
.3s
linear
,
top
.3s
ease-out
}
.modal.fade.in
{
top
:
0
}
.modal-dialog
{
position
:
relative
;
top
:
0
;
right
:
0
;
left
:
0
;
z-index
:
1050
;
width
:
auto
;
padding
:
10px
}
.modal-content
{
position
:
relative
;
background-color
:
#fff
;
border
:
1px
solid
#999
;
border
:
1px
solid
rgba
(
0
,
0
,
0
,
0.2
);
border-radius
:
6px
;
outline
:
0
;
-webkit-box-shadow
:
0
3px
9px
rgba
(
0
,
0
,
0
,
0.5
);
box-shadow
:
0
3px
9px
rgba
(
0
,
0
,
0
,
0.5
);
background-clip
:
padding-box
}
.modal-backdrop
{
position
:
fixed
;
top
:
0
;
right
:
0
;
bottom
:
0
;
left
:
0
;
z-index
:
1030
;
background-color
:
#000
}
.modal-backdrop.fade
{
opacity
:
0
;
filter
:
alpha
(
opacity
=
0
)}
.modal-backdrop.fade.in
{
opacity
:
.5
;
filter
:
alpha
(
opacity
=
50
)}
.modal-header
{
min-height
:
16.428571429px
;
padding
:
15px
;
border-bottom
:
1px
solid
#e5e5e5
}
.modal-header
.close
{
margin-top
:
-2px
}
.modal-title
{
margin
:
0
;
line-height
:
1.428571429
}
.modal-body
{
position
:
relative
;
padding
:
20px
}
.modal-footer
{
padding
:
19px
20px
20px
;
margin-top
:
15px
;
text-align
:
right
;
border-top
:
1px
solid
#e5e5e5
}
.modal-footer
:before
,
.modal-footer
:after
{
display
:
table
;
content
:
" "
}
.modal-footer
:after
{
clear
:
both
}
.modal-footer
:before
,
.modal-footer
:after
{
display
:
table
;
content
:
" "
}
.modal-footer
:after
{
clear
:
both
}
.modal-footer
.btn
+
.btn
{
margin-bottom
:
0
;
margin-left
:
5px
}
.modal-footer
.btn-group
.btn
+
.btn
{
margin-left
:
-1px
}
.modal-footer
.btn-block
+
.btn-block
{
margin-left
:
0
}
@media
screen
and
(
min-width
:
768px
){
.modal-dialog
{
right
:
auto
;
left
:
50%
;
width
:
560px
;
padding-top
:
30px
;
padding-bottom
:
30px
;
margin-left
:
-280px
}
.modal-content
{
-webkit-box-shadow
:
0
5px
15px
rgba
(
0
,
0
,
0
,
0.5
);
box-shadow
:
0
5px
15px
rgba
(
0
,
0
,
0
,
0.5
)}}
.tooltip
{
position
:
absolute
;
z-index
:
1030
;
display
:
block
;
font-size
:
12px
;
line-height
:
1.4
;
opacity
:
0
;
filter
:
alpha
(
opacity
=
0
);
visibility
:
visible
}
.tooltip.in
{
opacity
:
1
;
filter
:
alpha
(
opacity
=
100
)}
.tooltip.top
{
padding
:
5px
0
;
margin-top
:
-3px
}
.tooltip.right
{
padding
:
0
5px
;
margin-left
:
3px
}
.tooltip.bottom
{
padding
:
5px
0
;
margin-top
:
3px
}
.tooltip.left
{
padding
:
0
5px
;
margin-left
:
-3px
}
.tooltip-inner
{
max-width
:
200px
;
padding
:
3px
8px
;
color
:
#fff
;
text-align
:
center
;
text-decoration
:
none
;
background-color
:
rgba
(
0
,
0
,
0
,
0.9
);
border-radius
:
4px
}
.tooltip-arrow
{
position
:
absolute
;
width
:
0
;
height
:
0
;
border-color
:
transparent
;
border-style
:
solid
}
.tooltip.top
.tooltip-arrow
{
bottom
:
0
;
left
:
50%
;
margin-left
:
-5px
;
border-top-color
:
rgba
(
0
,
0
,
0
,
0.9
);
border-width
:
5px
5px
0
}
.tooltip.top-left
.tooltip-arrow
{
bottom
:
0
;
left
:
5px
;
border-top-color
:
rgba
(
0
,
0
,
0
,
0.9
);
border-width
:
5px
5px
0
}
.tooltip.top-right
.tooltip-arrow
{
right
:
5px
;
bottom
:
0
;
border-top-color
:
rgba
(
0
,
0
,
0
,
0.9
);
border-width
:
5px
5px
0
}
.tooltip.right
.tooltip-arrow
{
top
:
50%
;
left
:
0
;
margin-top
:
-5px
;
border-right-color
:
rgba
(
0
,
0
,
0
,
0.9
);
border-width
:
5px
5px
5px
0
}
.tooltip.left
.tooltip-arrow
{
top
:
50%
;
right
:
0
;
margin-top
:
-5px
;
border-left-color
:
rgba
(
0
,
0
,
0
,
0.9
);
border-width
:
5px
0
5px
5px
}
.tooltip.bottom
.tooltip-arrow
{
top
:
0
;
left
:
50%
;
margin-left
:
-5px
;
border-bottom-color
:
rgba
(
0
,
0
,
0
,
0.9
);
border-width
:
0
5px
5px
}
.tooltip.bottom-left
.tooltip-arrow
{
top
:
0
;
left
:
5px
;
border-bottom-color
:
rgba
(
0
,
0
,
0
,
0.9
);
border-width
:
0
5px
5px
}
.tooltip.bottom-right
.tooltip-arrow
{
top
:
0
;
right
:
5px
;
border-bottom-color
:
rgba
(
0
,
0
,
0
,
0.9
);
border-width
:
0
5px
5px
}
.popover
{
position
:
absolute
;
top
:
0
;
left
:
0
;
z-index
:
1010
;
display
:
none
;
max-width
:
276px
;
padding
:
1px
;
text-align
:
left
;
white-space
:
normal
;
background-color
:
#fff
;
border
:
1px
solid
#ccc
;
border
:
1px
solid
rgba
(
0
,
0
,
0
,
0.2
);
border-radius
:
6px
;
-webkit-box-shadow
:
0
5px
10px
rgba
(
0
,
0
,
0
,
0.2
);
box-shadow
:
0
5px
10px
rgba
(
0
,
0
,
0
,
0.2
);
background-clip
:
padding-box
;
-webkit-bg-clip
:
padding-box
;
-moz-bg-clip
:
padding
}
.popover.top
{
margin-top
:
-10px
}
.popover.right
{
margin-left
:
10px
}
.popover.bottom
{
margin-top
:
10px
}
.popover.left
{
margin-left
:
-10px
}
.popover-title
{
padding
:
8px
14px
;
margin
:
0
;
font-size
:
14px
;
font-weight
:
normal
;
line-height
:
18px
;
background-color
:
#f7f7f7
;
border-bottom
:
1px
solid
#ebebeb
;
border-radius
:
5px
5px
0
0
}
.popover-content
{
padding
:
9px
14px
}
.popover
.arrow
,
.popover
.arrow
:after
{
position
:
absolute
;
display
:
block
;
width
:
0
;
height
:
0
;
border-color
:
transparent
;
border-style
:
solid
}
.popover
.arrow
{
border-width
:
11px
}
.popover
.arrow
:after
{
border-width
:
10px
;
content
:
""
}
.popover.top
.arrow
{
bottom
:
-11px
;
left
:
50%
;
margin-left
:
-11px
;
border-top-color
:
#999
;
border-top-color
:
rgba
(
0
,
0
,
0
,
0.25
);
border-bottom-width
:
0
}
.popover.top
.arrow
:after
{
bottom
:
1px
;
margin-left
:
-10px
;
border-top-color
:
#fff
;
border-bottom-width
:
0
;
content
:
" "
}
.popover.right
.arrow
{
top
:
50%
;
left
:
-11px
;
margin-top
:
-11px
;
border-right-color
:
#999
;
border-right-color
:
rgba
(
0
,
0
,
0
,
0.25
);
border-left-width
:
0
}
.popover.right
.arrow
:after
{
bottom
:
-10px
;
left
:
1px
;
border-right-color
:
#fff
;
border-left-width
:
0
;
content
:
" "
}
.popover.bottom
.arrow
{
top
:
-11px
;
left
:
50%
;
margin-left
:
-11px
;
border-bottom-color
:
#999
;
border-bottom-color
:
rgba
(
0
,
0
,
0
,
0.25
);
border-top-width
:
0
}
.popover.bottom
.arrow
:after
{
top
:
1px
;
margin-left
:
-10px
;
border-bottom-color
:
#fff
;
border-top-width
:
0
;
content
:
" "
}
.popover.left
.arrow
{
top
:
50%
;
right
:
-11px
;
margin-top
:
-11px
;
border-left-color
:
#999
;
border-left-color
:
rgba
(
0
,
0
,
0
,
0.25
);
border-right-width
:
0
}
.popover.left
.arrow
:after
{
right
:
1px
;
bottom
:
-10px
;
border-left-color
:
#fff
;
border-right-width
:
0
;
content
:
" "
}
.alert
{
padding
:
10px
35px
10px
15px
;
margin-bottom
:
20px
;
color
:
#c09853
;
background-color
:
#fcf8e3
;
border
:
1px
solid
#fbeed5
;
border-radius
:
4px
}
.alert
h4
{
margin-top
:
0
;
color
:
inherit
}
.alert
hr
{
border-top-color
:
#f8e5be
}
.alert
.alert-link
{
font-weight
:
500
;
color
:
#a47e3c
}
.alert
.close
{
position
:
relative
;
top
:
-2px
;
right
:
-21px
;
color
:
inherit
}
.alert-success
{
color
:
#468847
;
background-color
:
#dff0d8
;
border-color
:
#d6e9c6
}
.alert-success
hr
{
border-top-color
:
#c9e2b3
}
.alert-success
.alert-link
{
color
:
#356635
}
.alert-danger
{
color
:
#b94a48
;
background-color
:
#f2dede
;
border-color
:
#eed3d7
}
.alert-danger
hr
{
border-top-color
:
#e6c1c7
}
.alert-danger
.alert-link
{
color
:
#953b39
}
.alert-info
{
color
:
#3a87ad
;
background-color
:
#d9edf7
;
border-color
:
#bce8f1
}
.alert-info
hr
{
border-top-color
:
#a6e1ec
}
.alert-info
.alert-link
{
color
:
#2d6987
}
.alert-block
{
padding-top
:
15px
;
padding-bottom
:
15px
}
.alert-block
>
p
,
.alert-block
>
ul
{
margin-bottom
:
0
}
.alert-block
p
+
p
{
margin-top
:
5px
}
.thumbnail
,
.img-thumbnail
{
padding
:
4px
;
line-height
:
1.428571429
;
background-color
:
#fff
;
border
:
1px
solid
#ddd
;
border-radius
:
4px
;
-webkit-transition
:
all
.2s
ease-in-out
;
transition
:
all
.2s
ease-in-out
}
.thumbnail
{
display
:
block
}
.thumbnail
>
img
,
.img-thumbnail
{
display
:
inline-block
;
height
:
auto
;
max-width
:
100%
}
a
.thumbnail
:hover
,
a
.thumbnail
:focus
{
border-color
:
#428bca
}
.thumbnail
>
img
{
margin-right
:
auto
;
margin-left
:
auto
}
.thumbnail
.caption
{
padding
:
9px
;
color
:
#333
}
.media
,
.media-body
{
overflow
:
hidden
;
zoom
:
1
}
.media
,
.media
.media
{
margin-top
:
15px
}
.media
:first-child
{
margin-top
:
0
}
.media-object
{
display
:
block
}
.media-heading
{
margin
:
0
0
5px
}
.media
>
.pull-left
{
margin-right
:
10px
}
.media
>
.pull-right
{
margin-left
:
10px
}
.media-list
{
padding-left
:
0
;
list-style
:
none
}
.label
{
display
:
inline
;
padding
:
.25em
.6em
;
font-size
:
75%
;
font-weight
:
500
;
line-height
:
1
;
color
:
#fff
;
text-align
:
center
;
white-space
:
nowrap
;
vertical-align
:
middle
;
background-color
:
#999
;
border-radius
:
.25em
}
.label
[
href
]
:hover
,
.label
[
href
]
:focus
{
color
:
#fff
;
text-decoration
:
none
;
cursor
:
pointer
;
background-color
:
#808080
}
.label-danger
{
background-color
:
#d9534f
}
.label-danger
[
href
]
:hover
,
.label-danger
[
href
]
:focus
{
background-color
:
#c9302c
}
.label-success
{
background-color
:
#5cb85c
}
.label-success
[
href
]
:hover
,
.label-success
[
href
]
:focus
{
background-color
:
#449d44
}
.label-warning
{
background-color
:
#f0ad4e
}
.label-warning
[
href
]
:hover
,
.label-warning
[
href
]
:focus
{
background-color
:
#ec971f
}
.label-info
{
background-color
:
#5bc0de
}
.label-info
[
href
]
:hover
,
.label-info
[
href
]
:focus
{
background-color
:
#31b0d5
}
.badge
{
display
:
inline-block
;
min-width
:
10px
;
padding
:
3px
7px
;
font-size
:
12px
;
font-weight
:
bold
;
line-height
:
1
;
color
:
#fff
;
text-align
:
center
;
white-space
:
nowrap
;
vertical-align
:
middle
;
background-color
:
#999
;
border-radius
:
10px
}
.badge
:empty
{
display
:
none
}
a
.badge
:hover
,
a
.badge
:focus
{
color
:
#fff
;
text-decoration
:
none
;
cursor
:
pointer
}
.btn
.badge
{
position
:
relative
;
top
:
-1px
}
a
.list-group-item.active
>
.badge
,
.nav-pills
>
.active
>
a
>
.badge
{
color
:
#428bca
;
background-color
:
#fff
}
.nav-pills
>
li
>
a
>
.badge
{
margin-left
:
3px
}
@-webkit-keyframes
progress-bar-stripes
{
from
{
background-position
:
40px
0
}
to
{
background-position
:
0
0
}}
@-moz-keyframes
progress-bar-stripes
{
from
{
background-position
:
40px
0
}
to
{
background-position
:
0
0
}}
@-ms-keyframes
progress-bar-stripes
{
from
{
background-position
:
40px
0
}
to
{
background-position
:
0
0
}}
@-o-keyframes
progress-bar-stripes
{
from
{
background-position
:
0
0
}
to
{
background-position
:
40px
0
}}
@keyframes
progress-bar-stripes
{
from
{
background-position
:
40px
0
}
to
{
background-position
:
0
0
}}
.progress
{
height
:
20px
;
margin-bottom
:
20px
;
overflow
:
hidden
;
background-color
:
#f5f5f5
;
border-radius
:
4px
;
-webkit-box-shadow
:
inset
0
1px
2px
rgba
(
0
,
0
,
0
,
0.1
);
box-shadow
:
inset
0
1px
2px
rgba
(
0
,
0
,
0
,
0.1
)}
.progress-bar
{
float
:
left
;
width
:
0
;
height
:
100%
;
font-size
:
12px
;
color
:
#fff
;
text-align
:
center
;
background-color
:
#428bca
;
-webkit-box-shadow
:
inset
0
-1px
0
rgba
(
0
,
0
,
0
,
0.15
);
box-shadow
:
inset
0
-1px
0
rgba
(
0
,
0
,
0
,
0.15
);
-webkit-transition
:
width
.6s
ease
;
transition
:
width
.6s
ease
}
.progress-striped
.progress-bar
{
background-color
:
#428bca
;
background-image
:
-webkit-gradient
(
linear
,
0
100%
,
100%
0
,
color-stop
(
0.25
,
rgba
(
255
,
255
,
255
,
0.15
)),
color-stop
(
0.25
,
transparent
),
color-stop
(
0.5
,
transparent
),
color-stop
(
0.5
,
rgba
(
255
,
255
,
255
,
0.15
)),
color-stop
(
0.75
,
rgba
(
255
,
255
,
255
,
0.15
)),
color-stop
(
0.75
,
transparent
),
to
(
transparent
));
background-image
:
-webkit-linear-gradient
(
45deg
,
rgba
(
255
,
255
,
255
,
0.15
)
25%
,
transparent
25%
,
transparent
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
75%
,
transparent
75%
,
transparent
);
background-image
:
-moz-linear-gradient
(
45deg
,
rgba
(
255
,
255
,
255
,
0.15
)
25%
,
transparent
25%
,
transparent
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
75%
,
transparent
75%
,
transparent
);
background-image
:
linear-gradient
(
45deg
,
rgba
(
255
,
255
,
255
,
0.15
)
25%
,
transparent
25%
,
transparent
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
75%
,
transparent
75%
,
transparent
);
background-size
:
40px
40px
}
.progress.active
.progress-bar
{
-webkit-animation
:
progress-bar-stripes
2s
linear
infinite
;
-moz-animation
:
progress-bar-stripes
2s
linear
infinite
;
-ms-animation
:
progress-bar-stripes
2s
linear
infinite
;
-o-animation
:
progress-bar-stripes
2s
linear
infinite
;
animation
:
progress-bar-stripes
2s
linear
infinite
}
.progress-bar-danger
{
background-color
:
#d9534f
}
.progress-striped
.progress-bar-danger
{
background-color
:
#d9534f
;
background-image
:
-webkit-gradient
(
linear
,
0
100%
,
100%
0
,
color-stop
(
0.25
,
rgba
(
255
,
255
,
255
,
0.15
)),
color-stop
(
0.25
,
transparent
),
color-stop
(
0.5
,
transparent
),
color-stop
(
0.5
,
rgba
(
255
,
255
,
255
,
0.15
)),
color-stop
(
0.75
,
rgba
(
255
,
255
,
255
,
0.15
)),
color-stop
(
0.75
,
transparent
),
to
(
transparent
));
background-image
:
-webkit-linear-gradient
(
45deg
,
rgba
(
255
,
255
,
255
,
0.15
)
25%
,
transparent
25%
,
transparent
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
75%
,
transparent
75%
,
transparent
);
background-image
:
-moz-linear-gradient
(
45deg
,
rgba
(
255
,
255
,
255
,
0.15
)
25%
,
transparent
25%
,
transparent
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
75%
,
transparent
75%
,
transparent
);
background-image
:
linear-gradient
(
45deg
,
rgba
(
255
,
255
,
255
,
0.15
)
25%
,
transparent
25%
,
transparent
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
75%
,
transparent
75%
,
transparent
)}
.progress-bar-success
{
background-color
:
#5cb85c
}
.progress-striped
.progress-bar-success
{
background-color
:
#5cb85c
;
background-image
:
-webkit-gradient
(
linear
,
0
100%
,
100%
0
,
color-stop
(
0.25
,
rgba
(
255
,
255
,
255
,
0.15
)),
color-stop
(
0.25
,
transparent
),
color-stop
(
0.5
,
transparent
),
color-stop
(
0.5
,
rgba
(
255
,
255
,
255
,
0.15
)),
color-stop
(
0.75
,
rgba
(
255
,
255
,
255
,
0.15
)),
color-stop
(
0.75
,
transparent
),
to
(
transparent
));
background-image
:
-webkit-linear-gradient
(
45deg
,
rgba
(
255
,
255
,
255
,
0.15
)
25%
,
transparent
25%
,
transparent
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
75%
,
transparent
75%
,
transparent
);
background-image
:
-moz-linear-gradient
(
45deg
,
rgba
(
255
,
255
,
255
,
0.15
)
25%
,
transparent
25%
,
transparent
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
75%
,
transparent
75%
,
transparent
);
background-image
:
linear-gradient
(
45deg
,
rgba
(
255
,
255
,
255
,
0.15
)
25%
,
transparent
25%
,
transparent
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
75%
,
transparent
75%
,
transparent
)}
.progress-bar-warning
{
background-color
:
#f0ad4e
}
.progress-striped
.progress-bar-warning
{
background-color
:
#f0ad4e
;
background-image
:
-webkit-gradient
(
linear
,
0
100%
,
100%
0
,
color-stop
(
0.25
,
rgba
(
255
,
255
,
255
,
0.15
)),
color-stop
(
0.25
,
transparent
),
color-stop
(
0.5
,
transparent
),
color-stop
(
0.5
,
rgba
(
255
,
255
,
255
,
0.15
)),
color-stop
(
0.75
,
rgba
(
255
,
255
,
255
,
0.15
)),
color-stop
(
0.75
,
transparent
),
to
(
transparent
));
background-image
:
-webkit-linear-gradient
(
45deg
,
rgba
(
255
,
255
,
255
,
0.15
)
25%
,
transparent
25%
,
transparent
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
75%
,
transparent
75%
,
transparent
);
background-image
:
-moz-linear-gradient
(
45deg
,
rgba
(
255
,
255
,
255
,
0.15
)
25%
,
transparent
25%
,
transparent
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
75%
,
transparent
75%
,
transparent
);
background-image
:
linear-gradient
(
45deg
,
rgba
(
255
,
255
,
255
,
0.15
)
25%
,
transparent
25%
,
transparent
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
75%
,
transparent
75%
,
transparent
)}
.progress-bar-info
{
background-color
:
#5bc0de
}
.progress-striped
.progress-bar-info
{
background-color
:
#5bc0de
;
background-image
:
-webkit-gradient
(
linear
,
0
100%
,
100%
0
,
color-stop
(
0.25
,
rgba
(
255
,
255
,
255
,
0.15
)),
color-stop
(
0.25
,
transparent
),
color-stop
(
0.5
,
transparent
),
color-stop
(
0.5
,
rgba
(
255
,
255
,
255
,
0.15
)),
color-stop
(
0.75
,
rgba
(
255
,
255
,
255
,
0.15
)),
color-stop
(
0.75
,
transparent
),
to
(
transparent
));
background-image
:
-webkit-linear-gradient
(
45deg
,
rgba
(
255
,
255
,
255
,
0.15
)
25%
,
transparent
25%
,
transparent
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
75%
,
transparent
75%
,
transparent
);
background-image
:
-moz-linear-gradient
(
45deg
,
rgba
(
255
,
255
,
255
,
0.15
)
25%
,
transparent
25%
,
transparent
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
75%
,
transparent
75%
,
transparent
);
background-image
:
linear-gradient
(
45deg
,
rgba
(
255
,
255
,
255
,
0.15
)
25%
,
transparent
25%
,
transparent
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
75%
,
transparent
75%
,
transparent
)}
.accordion
{
margin-bottom
:
20px
}
.accordion-group
{
margin-bottom
:
2px
;
border
:
1px
solid
#e5e5e5
;
border-radius
:
4px
}
.accordion-heading
{
border-bottom
:
0
}
.accordion-heading
.accordion-toggle
{
display
:
block
;
padding
:
8px
15px
;
cursor
:
pointer
}
.accordion-inner
{
padding
:
9px
15px
;
border-top
:
1px
solid
#e5e5e5
}
.carousel
{
position
:
relative
}
.carousel-inner
{
position
:
relative
;
width
:
100%
;
overflow
:
hidden
}
.carousel-inner
>
.item
{
position
:
relative
;
display
:
none
;
-webkit-transition
:
.6s
ease-in-out
left
;
transition
:
.6s
ease-in-out
left
}
.carousel-inner
>
.item
>
img
,
.carousel-inner
>
.item
>
a
>
img
{
display
:
inline-block
;
height
:
auto
;
max-width
:
100%
;
line-height
:
1
}
.carousel-inner
>
.active
,
.carousel-inner
>
.next
,
.carousel-inner
>
.prev
{
display
:
block
}
.carousel-inner
>
.active
{
left
:
0
}
.carousel-inner
>
.next
,
.carousel-inner
>
.prev
{
position
:
absolute
;
top
:
0
;
width
:
100%
}
.carousel-inner
>
.next
{
left
:
100%
}
.carousel-inner
>
.prev
{
left
:
-100%
}
.carousel-inner
>
.next.left
,
.carousel-inner
>
.prev.right
{
left
:
0
}
.carousel-inner
>
.active.left
{
left
:
-100%
}
.carousel-inner
>
.active.right
{
left
:
100%
}
.carousel-control
{
position
:
absolute
;
top
:
0
;
bottom
:
0
;
left
:
0
;
width
:
15%
;
font-size
:
20px
;
color
:
#fff
;
text-align
:
center
;
text-shadow
:
0
1px
2px
rgba
(
0
,
0
,
0
,
0.6
);
opacity
:
.5
;
filter
:
alpha
(
opacity
=
50
)}
.carousel-control.left
{
background-color
:
rgba
(
0
,
0
,
0
,
0.0001
);
background-color
:
transparent
;
background-image
:
-webkit-gradient
(
linear
,
0
top
,
100%
top
,
from
(
rgba
(
0
,
0
,
0
,
0.5
)),
to
(
rgba
(
0
,
0
,
0
,
0.0001
)));
background-image
:
-webkit-linear-gradient
(
left
,
color-stop
(
rgba
(
0
,
0
,
0
,
0.5
)
0
),
color-stop
(
rgba
(
0
,
0
,
0
,
0.0001
)
100%
));
background-image
:
-moz-linear-gradient
(
left
,
rgba
(
0
,
0
,
0
,
0.5
)
0
,
rgba
(
0
,
0
,
0
,
0.0001
)
100%
);
background-image
:
linear-gradient
(
to
right
,
rgba
(
0
,
0
,
0
,
0.5
)
0
,
rgba
(
0
,
0
,
0
,
0.0001
)
100%
);
background-repeat
:
repeat-x
;
filter
:
progid
:
DXImageTransform
.
Microsoft
.
gradient
(
startColorstr
=
'#80000000'
,
endColorstr
=
'#00000000'
,
GradientType
=
1
)}
.carousel-control.right
{
right
:
0
;
left
:
auto
;
background-color
:
rgba
(
0
,
0
,
0
,
0.5
);
background-color
:
transparent
;
background-image
:
-webkit-gradient
(
linear
,
0
top
,
100%
top
,
from
(
rgba
(
0
,
0
,
0
,
0.0001
)),
to
(
rgba
(
0
,
0
,
0
,
0.5
)));
background-image
:
-webkit-linear-gradient
(
left
,
color-stop
(
rgba
(
0
,
0
,
0
,
0.0001
)
0
),
color-stop
(
rgba
(
0
,
0
,
0
,
0.5
)
100%
));
background-image
:
-moz-linear-gradient
(
left
,
rgba
(
0
,
0
,
0
,
0.0001
)
0
,
rgba
(
0
,
0
,
0
,
0.5
)
100%
);
background-image
:
linear-gradient
(
to
right
,
rgba
(
0
,
0
,
0
,
0.0001
)
0
,
rgba
(
0
,
0
,
0
,
0.5
)
100%
);
background-repeat
:
repeat-x
;
filter
:
progid
:
DXImageTransform
.
Microsoft
.
gradient
(
startColorstr
=
'#00000000'
,
endColorstr
=
'#80000000'
,
GradientType
=
1
)}
.carousel-control
:hover
,
.carousel-control
:focus
{
color
:
#fff
;
text-decoration
:
none
;
opacity
:
.9
;
filter
:
alpha
(
opacity
=
90
)}
.carousel-control
.glyphicon
,
.carousel-control
.icon-prev
,
.carousel-control
.icon-next
{
position
:
absolute
;
top
:
50%
;
left
:
50%
;
z-index
:
5
;
display
:
inline-block
;
width
:
20px
;
height
:
20px
;
margin-top
:
-10px
;
margin-left
:
-10px
}
.carousel-control
.icon-prev
:before
{
content
:
'\2039'
}
.carousel-control
.icon-next
:before
{
content
:
'\203a'
}
.carousel-indicators
{
position
:
absolute
;
bottom
:
10px
;
left
:
50%
;
z-index
:
15
;
width
:
120px
;
padding-left
:
0
;
margin-left
:
-60px
;
text-align
:
center
;
list-style
:
none
}
.carousel-indicators
li
{
display
:
inline-block
;
width
:
10px
;
height
:
10px
;
margin
:
1px
;
text-indent
:
-999px
;
cursor
:
pointer
;
border
:
1px
solid
#fff
;
border-radius
:
10px
}
.carousel-indicators
.active
{
width
:
12px
;
height
:
12px
;
margin
:
0
;
background-color
:
#fff
}
.carousel-caption
{
position
:
absolute
;
right
:
15%
;
bottom
:
20px
;
left
:
15%
;
z-index
:
10
;
padding-top
:
20px
;
padding-bottom
:
20px
;
color
:
#fff
;
text-align
:
center
;
text-shadow
:
0
1px
2px
rgba
(
0
,
0
,
0
,
0.6
)}
.carousel-caption
.btn
{
text-shadow
:
none
}
@media
screen
and
(
min-width
:
768px
){
.carousel-control
.glyphicon
,
.carousel-control
.icon-prev
,
.carousel-control
.icon-next
{
width
:
30px
;
height
:
30px
;
margin-top
:
-15px
;
margin-left
:
-15px
;
font-size
:
30px
}
.carousel-caption
{
right
:
20%
;
left
:
20%
;
padding-bottom
:
30px
}
.carousel-indicators
{
bottom
:
20px
}}
.jumbotron
{
padding
:
30px
;
margin-bottom
:
30px
;
font-size
:
21px
;
font-weight
:
200
;
line-height
:
2.1428571435
;
color
:
inherit
;
background-color
:
#eee
}
.jumbotron
h1
{
line-height
:
1
;
color
:
inherit
}
.jumbotron
p
{
line-height
:
1.4
}
@media
screen
and
(
min-width
:
768px
){
.jumbotron
{
padding
:
50px
60px
;
border-radius
:
6px
}
.jumbotron
h1
{
font-size
:
63px
}}
.clearfix
:before
,
.clearfix
:after
{
display
:
table
;
content
:
" "
}
.clearfix
:after
{
clear
:
both
}
.pull-right
{
float
:
right
}
.pull-left
{
float
:
left
}
.hide
{
display
:
none
!important
}
.show
{
display
:
block
!important
}
.invisible
{
visibility
:
hidden
}
.text-hide
{
font
:
0
/
0
a
;
color
:
transparent
;
text-shadow
:
none
;
background-color
:
transparent
;
border
:
0
}
.affix
{
position
:
fixed
}
@-ms-viewport
{
width
:
device-width
}
@media
screen
and
(
max-width
:
400px
){
@-ms-viewport
{
width
:
320px
}}
.hidden
{
display
:
none
!important
;
visibility
:
hidden
!important
}
.visible-sm
{
display
:
block
!important
}
tr
.visible-sm
{
display
:
table-row
!important
}
th
.visible-sm
,
td
.visible-sm
{
display
:
table-cell
!important
}
.visible-md
{
display
:
none
!important
}
tr
.visible-md
{
display
:
none
!important
}
th
.visible-md
,
td
.visible-md
{
display
:
none
!important
}
.visible-lg
{
display
:
none
!important
}
tr
.visible-lg
{
display
:
none
!important
}
th
.visible-lg
,
td
.visible-lg
{
display
:
none
!important
}
.hidden-sm
{
display
:
none
!important
}
tr
.hidden-sm
{
display
:
none
!important
}
th
.hidden-sm
,
td
.hidden-sm
{
display
:
none
!important
}
.hidden-md
{
display
:
block
!important
}
tr
.hidden-md
{
display
:
table-row
!important
}
th
.hidden-md
,
td
.hidden-md
{
display
:
table-cell
!important
}
.hidden-lg
{
display
:
block
!important
}
tr
.hidden-lg
{
display
:
table-row
!important
}
th
.hidden-lg
,
td
.hidden-lg
{
display
:
table-cell
!important
}
@media
(
min-width
:
768px
)
and
(
max-width
:
991px
){
.visible-sm
{
display
:
none
!important
}
tr
.visible-sm
{
display
:
none
!important
}
th
.visible-sm
,
td
.visible-sm
{
display
:
none
!important
}
.visible-md
{
display
:
block
!important
}
tr
.visible-md
{
display
:
table-row
!important
}
th
.visible-md
,
td
.visible-md
{
display
:
table-cell
!important
}
.visible-lg
{
display
:
none
!important
}
tr
.visible-lg
{
display
:
none
!important
}
th
.visible-lg
,
td
.visible-lg
{
display
:
none
!important
}
.hidden-sm
{
display
:
block
!important
}
tr
.hidden-sm
{
display
:
table-row
!important
}
th
.hidden-sm
,
td
.hidden-sm
{
display
:
table-cell
!important
}
.hidden-md
{
display
:
none
!important
}
tr
.hidden-md
{
display
:
none
!important
}
th
.hidden-md
,
td
.hidden-md
{
display
:
none
!important
}
.hidden-lg
{
display
:
block
!important
}
tr
.hidden-lg
{
display
:
table-row
!important
}
th
.hidden-lg
,
td
.hidden-lg
{
display
:
table-cell
!important
}}
@media
(
min-width
:
992px
){
.visible-sm
{
display
:
none
!important
}
tr
.visible-sm
{
display
:
none
!important
}
th
.visible-sm
,
td
.visible-sm
{
display
:
none
!important
}
.visible-md
{
display
:
none
!important
}
tr
.visible-md
{
display
:
none
!important
}
th
.visible-md
,
td
.visible-md
{
display
:
none
!important
}
.visible-lg
{
display
:
block
!important
}
tr
.visible-lg
{
display
:
table-row
!important
}
th
.visible-lg
,
td
.visible-lg
{
display
:
table-cell
!important
}
.hidden-sm
{
display
:
block
!important
}
tr
.hidden-sm
{
display
:
table-row
!important
}
th
.hidden-sm
,
td
.hidden-sm
{
display
:
table-cell
!important
}
.hidden-md
{
display
:
block
!important
}
tr
.hidden-md
{
display
:
table-row
!important
}
th
.hidden-md
,
td
.hidden-md
{
display
:
table-cell
!important
}
.hidden-lg
{
display
:
none
!important
}
tr
.hidden-lg
{
display
:
none
!important
}
th
.hidden-lg
,
td
.hidden-lg
{
display
:
none
!important
}}
.visible-print
{
display
:
none
!important
}
tr
.visible-print
{
display
:
none
!important
}
th
.visible-print
,
td
.visible-print
{
display
:
none
!important
}
@media
print
{
.visible-print
{
display
:
block
!important
}
tr
.visible-print
{
display
:
table-row
!important
}
th
.visible-print
,
td
.visible-print
{
display
:
table-cell
!important
}
.hidden-print
{
display
:
none
!important
}
tr
.hidden-print
{
display
:
none
!important
}
th
.hidden-print
,
td
.hidden-print
{
display
:
none
!important
}}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
dist/js/bootstrap.js
+
44
-
30
View file @
27a656f7
...
...
@@ -53,6 +53,7 @@ if (!jQuery) { throw new Error("Bootstrap requires jQuery") }
$
(
this
).
one
(
'
webkitTransitionEnd
'
,
function
()
{
called
=
true
})
var
callback
=
function
()
{
if
(
!
called
)
$
(
$el
).
trigger
(
'
webkitTransitionEnd
'
)
}
setTimeout
(
callback
,
duration
)
return
this
}
$
(
function
()
{
...
...
@@ -532,8 +533,6 @@ if (!jQuery) { throw new Error("Bootstrap requires jQuery") }
this
.
$element
.
trigger
(
startEvent
)
if
(
startEvent
.
isDefaultPrevented
())
return
var
dimension
=
this
.
dimension
()
var
scroll
=
$
.
camelCase
([
'
scroll
'
,
dimension
].
join
(
'
-
'
))
var
actives
=
this
.
$parent
&&
this
.
$parent
.
find
(
'
> .accordion-group > .in
'
)
if
(
actives
&&
actives
.
length
)
{
...
...
@@ -543,10 +542,32 @@ if (!jQuery) { throw new Error("Bootstrap requires jQuery") }
hasData
||
actives
.
data
(
'
bs.collapse
'
,
null
)
}
this
.
$element
[
dimension
](
0
)
this
.
transition
(
'
addClass
'
,
'
shown.bs.collapse
'
)
var
dimension
=
this
.
dimension
()
this
.
$element
.
removeClass
(
'
collapse
'
)
.
addClass
(
'
collapsing
'
)
[
dimension
](
0
)
this
.
transitioning
=
1
var
complete
=
function
()
{
this
.
$element
.
removeClass
(
'
collapsing
'
)
.
addClass
(
'
in
'
)
[
dimension
](
'
auto
'
)
this
.
transitioning
=
0
this
.
$element
.
trigger
(
'
shown.bs.collapse
'
)
}
if
(
!
$
.
support
.
transition
)
return
complete
.
call
(
this
)
var
scrollSize
=
$
.
camelCase
([
'
scroll
'
,
dimension
].
join
(
'
-
'
))
if
(
$
.
support
.
transition
)
this
.
$element
[
dimension
](
this
.
$element
[
0
][
scroll
])
this
.
$element
.
one
(
$
.
support
.
transition
.
end
,
$
.
proxy
(
complete
,
this
))
.
emulateTransitionEnd
(
350
)
[
dimension
](
this
.
$element
[
0
][
scrollSize
])
}
Collapse
.
prototype
.
hide
=
function
()
{
...
...
@@ -557,41 +578,32 @@ if (!jQuery) { throw new Error("Bootstrap requires jQuery") }
if
(
startEvent
.
isDefaultPrevented
())
return
var
dimension
=
this
.
dimension
()
this
.
reset
(
this
.
$element
[
dimension
]())
this
.
transition
(
'
removeClass
'
,
'
hidden.bs.collapse
'
)
this
.
$element
[
dimension
](
0
)
}
Collapse
.
prototype
.
reset
=
function
(
size
)
{
var
dimension
=
this
.
dimension
()
this
.
$element
[
dimension
](
this
.
$element
[
dimension
]())
[
0
].
offsetHeight
this
.
$element
.
addClass
(
'
collapsing
'
)
.
removeClass
(
'
collapse
'
)
[
dimension
](
size
||
'
auto
'
)
[
0
].
offsetWidth
this
.
$element
[
size
!=
null
?
'
addClass
'
:
'
removeClass
'
](
'
collapse
'
)
.
removeClass
(
'
in
'
)
return
this
}
this
.
transitioning
=
1
Collapse
.
prototype
.
transition
=
function
(
method
,
completeEvent
)
{
var
that
=
this
var
complete
=
function
()
{
if
(
completeEvent
==
'
shown.bs.collapse
'
)
that
.
reset
()
that
.
transitioning
=
0
that
.
$element
.
trigger
(
completeEvent
)
this
.
transitioning
=
0
this
.
$element
.
trigger
(
'
hidden.bs.collapse
'
)
.
removeClass
(
'
collapsing
'
)
.
addClass
(
'
collapse
'
)
}
this
.
transitioning
=
1
this
.
$element
[
method
](
'
in
'
)
if
(
!
$
.
support
.
transition
)
return
complete
.
call
(
this
)
$
.
support
.
transition
&&
this
.
$element
.
hasClass
(
'
collapse
'
)
?
this
.
$element
.
one
(
$
.
support
.
transition
.
end
,
complete
)
.
emulateTransitionEnd
(
350
)
:
complete
()
this
.
$element
[
dimension
](
0
)
.
one
(
$
.
support
.
transition
.
end
,
$
.
proxy
(
complete
,
this
))
.
emulateTransitionEnd
(
350
)
}
Collapse
.
prototype
.
toggle
=
function
()
{
...
...
@@ -1442,6 +1454,8 @@ if (!jQuery) { throw new Error("Bootstrap requires jQuery") }
this
.
init
(
'
popover
'
,
element
,
options
)
}
if
(
!
$
.
fn
.
tooltip
)
throw
new
Error
(
'
Popover requires tooltip.js
'
)
Popover
.
DEFAULTS
=
$
.
extend
({}
,
$
.
fn
.
tooltip
.
Constructor
.
DEFAULTS
,
{
placement
:
'
right
'
,
trigger
:
'
click
'
...
...
This diff is collapsed.
Click to expand it.
dist/js/bootstrap.min.js
+
1
-
1
View file @
27a656f7
...
...
@@ -3,4 +3,4 @@
* Copyright 2013 Twitter Inc.
* http://www.apache.org/licenses/LICENSE-2.0
*/
if
(
!
jQuery
)
throw
new
Error
(
"
Bootstrap requires jQuery
"
);
+
function
(
a
){
"
use strict
"
;
function
b
(){
var
a
=
document
.
createElement
(
"
bootstrap
"
),
b
=
{
WebkitTransition
:
"
webkitTransitionEnd
"
,
MozTransition
:
"
transitionend
"
,
OTransition
:
"
oTransitionEnd otransitionend
"
,
transition
:
"
transitionend
"
};
for
(
var
c
in
b
)
if
(
void
0
!==
a
.
style
[
c
])
return
{
end
:
b
[
c
]}}
a
.
fn
.
emulateTransitionEnd
=
function
(
b
){
var
c
=!
1
,
d
=
this
;
a
(
this
).
one
(
"
webkitTransitionEnd
"
,
function
(){
c
=!
0
});
var
e
=
function
(){
c
||
a
(
d
).
trigger
(
"
webkitTransitionEnd
"
)};
setTimeout
(
e
,
b
)},
a
(
function
(){
a
.
support
.
transition
=
b
()})}(
window
.
jQuery
),
+
function
(
a
){
"
use strict
"
;
var
b
=
'
[data-dismiss="alert"]
'
,
c
=
function
(
c
){
a
(
c
).
on
(
"
click
"
,
b
,
this
.
close
)};
c
.
prototype
.
close
=
function
(
b
){
function
c
(){
f
.
trigger
(
"
closed.bs.alert
"
).
remove
()}
var
d
=
a
(
this
),
e
=
d
.
attr
(
"
data-target
"
);
e
||
(
e
=
d
.
attr
(
"
href
"
),
e
=
e
&&
e
.
replace
(
/.*
(?=
#
[^\s]
*$
)
/
,
""
));
var
f
=
a
(
e
);
b
&&
b
.
preventDefault
(),
f
.
length
||
(
f
=
d
.
hasClass
(
"
alert
"
)?
d
:
d
.
parent
()),
f
.
trigger
(
b
=
a
.
Event
(
"
close.bs.alert
"
)),
b
.
isDefaultPrevented
()
||
(
f
.
removeClass
(
"
in
"
),
a
.
support
.
transition
&&
f
.
hasClass
(
"
fade
"
)?
f
.
one
(
a
.
support
.
transition
.
end
,
c
).
emulateTransitionEnd
(
150
):
c
())};
var
d
=
a
.
fn
.
alert
;
a
.
fn
.
alert
=
function
(
b
){
return
this
.
each
(
function
(){
var
d
=
a
(
this
),
e
=
d
.
data
(
"
bs.alert
"
);
e
||
d
.
data
(
"
bs.alert
"
,
e
=
new
c
(
this
)),
"
string
"
==
typeof
b
&&
e
[
b
].
call
(
d
)})},
a
.
fn
.
alert
.
Constructor
=
c
,
a
.
fn
.
alert
.
noConflict
=
function
(){
return
a
.
fn
.
alert
=
d
,
this
},
a
(
document
).
on
(
"
click.bs.alert.data-api
"
,
b
,
c
.
prototype
.
close
)}(
window
.
jQuery
),
+
function
(
a
){
"
use strict
"
;
var
b
=
function
(
c
,
d
){
this
.
$element
=
a
(
c
),
this
.
options
=
a
.
extend
({},
b
.
DEFAULTS
,
d
)};
b
.
DEFAULTS
=
{
loadingText
:
"
loading...
"
},
b
.
prototype
.
setState
=
function
(
a
){
var
b
=
"
disabled
"
,
c
=
this
.
$element
,
d
=
c
.
is
(
"
input
"
)?
"
val
"
:
"
html
"
,
e
=
c
.
data
();
a
+=
"
Text
"
,
e
.
resetText
||
c
.
data
(
"
resetText
"
,
c
[
d
]()),
c
[
d
](
e
[
a
]
||
this
.
options
[
a
]),
setTimeout
(
function
(){
"
loadingText
"
==
a
?
c
.
addClass
(
b
).
attr
(
b
,
b
):
c
.
removeClass
(
b
).
removeAttr
(
b
)},
0
)},
b
.
prototype
.
toggle
=
function
(){
var
a
=
this
.
$element
.
closest
(
'
[data-toggle="buttons"]
'
);
if
(
a
.
length
){
var
b
=
this
.
$element
.
find
(
"
input
"
).
prop
(
"
checked
"
,
!
this
.
$element
.
hasClass
(
"
active
"
));
"
radio
"
===
b
.
prop
(
"
type
"
)
&&
a
.
find
(
"
.active
"
).
removeClass
(
"
active
"
)}
this
.
$element
.
toggleClass
(
"
active
"
)};
var
c
=
a
.
fn
.
button
;
a
.
fn
.
button
=
function
(
c
){
return
this
.
each
(
function
(){
var
d
=
a
(
this
),
e
=
d
.
data
(
"
button
"
),
f
=
"
object
"
==
typeof
c
&&
c
;
e
||
d
.
data
(
"
bs.button
"
,
e
=
new
b
(
this
,
f
)),
"
toggle
"
==
c
?
e
.
toggle
():
c
&&
e
.
setState
(
c
)})},
a
.
fn
.
button
.
Constructor
=
b
,
a
.
fn
.
button
.
noConflict
=
function
(){
return
a
.
fn
.
button
=
c
,
this
},
a
(
document
).
on
(
"
click.bs.button.data-api
"
,
"
[data-toggle^=button]
"
,
function
(
b
){
var
c
=
a
(
b
.
target
);
c
.
hasClass
(
"
btn
"
)
||
(
c
=
c
.
closest
(
"
.btn
"
)),
c
.
button
(
"
toggle
"
),
b
.
preventDefault
()})}(
window
.
jQuery
),
+
function
(
a
){
"
use strict
"
;
var
b
=
function
(
b
,
c
){
this
.
$element
=
a
(
b
),
this
.
$indicators
=
this
.
$element
.
find
(
"
.carousel-indicators
"
),
this
.
options
=
c
,
this
.
paused
=
this
.
sliding
=
this
.
interval
=
this
.
$active
=
this
.
$items
=
null
,
"
hover
"
==
this
.
options
.
pause
&&
this
.
$element
.
on
(
"
mouseenter
"
,
a
.
proxy
(
this
.
pause
,
this
)).
on
(
"
mouseleave
"
,
a
.
proxy
(
this
.
cycle
,
this
))};
b
.
DEFAULTS
=
{
interval
:
5
e3
,
pause
:
"
hover
"
},
b
.
prototype
.
cycle
=
function
(
b
){
return
b
||
(
this
.
paused
=!
1
),
this
.
interval
&&
clearInterval
(
this
.
interval
),
this
.
options
.
interval
&&!
this
.
paused
&&
(
this
.
interval
=
setInterval
(
a
.
proxy
(
this
.
next
,
this
),
this
.
options
.
interval
)),
this
},
b
.
prototype
.
getActiveIndex
=
function
(){
return
this
.
$active
=
this
.
$element
.
find
(
"
.item.active
"
),
this
.
$items
=
this
.
$active
.
parent
().
children
(),
this
.
$items
.
index
(
this
.
$active
)},
b
.
prototype
.
to
=
function
(
b
){
var
c
=
this
,
d
=
this
.
getActiveIndex
();
return
b
>
this
.
$items
.
length
-
1
||
0
>
b
?
void
0
:
this
.
sliding
?
this
.
$element
.
one
(
"
slid
"
,
function
(){
c
.
to
(
b
)}):
d
==
b
?
this
.
pause
().
cycle
():
this
.
slide
(
b
>
d
?
"
next
"
:
"
prev
"
,
a
(
this
.
$items
[
b
]))},
b
.
prototype
.
pause
=
function
(
b
){
return
b
||
(
this
.
paused
=!
0
),
this
.
$element
.
find
(
"
.next, .prev
"
).
length
&&
a
.
support
.
transition
.
end
&&
(
this
.
$element
.
trigger
(
a
.
support
.
transition
.
end
),
this
.
cycle
(
!
0
)),
this
.
interval
=
clearInterval
(
this
.
interval
),
this
},
b
.
prototype
.
next
=
function
(){
return
this
.
sliding
?
void
0
:
this
.
slide
(
"
next
"
)},
b
.
prototype
.
prev
=
function
(){
return
this
.
sliding
?
void
0
:
this
.
slide
(
"
prev
"
)},
b
.
prototype
.
slide
=
function
(
b
,
c
){
var
d
=
this
.
$element
.
find
(
"
.item.active
"
),
e
=
c
||
d
[
b
](),
f
=
this
.
interval
,
g
=
"
next
"
==
b
?
"
left
"
:
"
right
"
,
h
=
"
next
"
==
b
?
"
first
"
:
"
last
"
,
i
=
this
;
this
.
sliding
=!
0
,
f
&&
this
.
pause
(),
e
=
e
.
length
?
e
:
this
.
$element
.
find
(
"
.item
"
)[
h
]();
var
j
=
a
.
Event
(
"
slide.bs.carousel
"
,{
relatedTarget
:
e
[
0
],
direction
:
g
});
if
(
!
e
.
hasClass
(
"
active
"
)){
if
(
this
.
$indicators
.
length
&&
(
this
.
$indicators
.
find
(
"
.active
"
).
removeClass
(
"
active
"
),
this
.
$element
.
one
(
"
slid
"
,
function
(){
var
b
=
a
(
i
.
$indicators
.
children
()[
i
.
getActiveIndex
()]);
b
&&
b
.
addClass
(
"
active
"
)})),
a
.
support
.
transition
&&
this
.
$element
.
hasClass
(
"
slide
"
)){
if
(
this
.
$element
.
trigger
(
j
),
j
.
isDefaultPrevented
())
return
;
e
.
addClass
(
b
),
e
[
0
].
offsetWidth
,
d
.
addClass
(
g
),
e
.
addClass
(
g
),
d
.
one
(
a
.
support
.
transition
.
end
,
function
(){
e
.
removeClass
([
b
,
g
].
join
(
"
"
)).
addClass
(
"
active
"
),
d
.
removeClass
([
"
active
"
,
g
].
join
(
"
"
)),
i
.
sliding
=!
1
,
setTimeout
(
function
(){
i
.
$element
.
trigger
(
"
slid
"
)},
0
)}).
emulateTransitionEnd
(
600
)}
else
{
if
(
this
.
$element
.
trigger
(
j
),
j
.
isDefaultPrevented
())
return
;
d
.
removeClass
(
"
active
"
),
e
.
addClass
(
"
active
"
),
this
.
sliding
=!
1
,
this
.
$element
.
trigger
(
"
slid
"
)}
return
f
&&
this
.
cycle
(),
this
}};
var
c
=
a
.
fn
.
carousel
;
a
.
fn
.
carousel
=
function
(
c
){
return
this
.
each
(
function
(){
var
d
=
a
(
this
),
e
=
d
.
data
(
"
bs.carousel
"
),
f
=
a
.
extend
({},
b
.
DEFAULTS
,
d
.
data
(),
"
object
"
==
typeof
c
&&
c
),
g
=
"
string
"
==
typeof
c
?
c
:
f
.
slide
;
e
||
d
.
data
(
"
bs.carousel
"
,
e
=
new
b
(
this
,
f
)),
"
number
"
==
typeof
c
?
e
.
to
(
c
):
g
?
e
[
g
]():
f
.
interval
&&
e
.
pause
().
cycle
()})},
a
.
fn
.
carousel
.
Constructor
=
b
,
a
.
fn
.
carousel
.
noConflict
=
function
(){
return
a
.
fn
.
carousel
=
c
,
this
},
a
(
document
).
on
(
"
click.bs.carousel.data-api
"
,
"
[data-slide], [data-slide-to]
"
,
function
(
b
){
var
c
,
d
=
a
(
this
),
e
=
a
(
d
.
attr
(
"
data-target
"
)
||
(
c
=
d
.
attr
(
"
href
"
))
&&
c
.
replace
(
/.*
(?=
#
[^\s]
+$
)
/
,
""
)),
f
=
a
.
extend
({},
e
.
data
(),
d
.
data
()),
g
=
d
.
attr
(
"
data-slide-to
"
);
g
&&
(
f
.
interval
=!
1
),
e
.
carousel
(
f
),(
g
=
d
.
attr
(
"
data-slide-to
"
))
&&
e
.
data
(
"
bs.carousel
"
).
to
(
g
),
b
.
preventDefault
()}),
a
(
window
).
on
(
"
load
"
,
function
(){
a
(
'
[data-ride="carousel"]
'
).
each
(
function
(){
var
b
=
a
(
this
);
b
.
carousel
(
b
.
data
())})})}(
window
.
jQuery
),
+
function
(
a
){
"
use strict
"
;
var
b
=
function
(
c
,
d
){
this
.
$element
=
a
(
c
),
this
.
options
=
a
.
extend
({},
b
.
DEFAULTS
,
d
),
this
.
transitioning
=
null
,
this
.
options
.
parent
&&
(
this
.
$parent
=
a
(
this
.
options
.
parent
)),
this
.
options
.
toggle
&&
this
.
toggle
()};
b
.
DEFAULTS
=
{
toggle
:
!
0
},
b
.
prototype
.
dimension
=
function
(){
var
a
=
this
.
$element
.
hasClass
(
"
width
"
);
return
a
?
"
width
"
:
"
height
"
},
b
.
prototype
.
show
=
function
(){
if
(
!
this
.
transitioning
&&!
this
.
$element
.
hasClass
(
"
in
"
)){
var
b
=
a
.
Event
(
"
show.bs.collapse
"
);
if
(
this
.
$element
.
trigger
(
b
),
!
b
.
isDefaultPrevented
()){
var
c
=
this
.
dimension
(),
d
=
a
.
camelCase
([
"
scroll
"
,
c
].
join
(
"
-
"
)),
e
=
this
.
$parent
&&
this
.
$parent
.
find
(
"
> .accordion-group > .in
"
);
if
(
e
&&
e
.
length
){
var
f
=
e
.
data
(
"
bs.collapse
"
);
if
(
f
&&
f
.
transitioning
)
return
;
e
.
collapse
(
"
hide
"
),
f
||
e
.
data
(
"
bs.collapse
"
,
null
)}
this
.
$element
[
c
](
0
),
this
.
transition
(
"
addClass
"
,
"
shown.bs.collapse
"
),
a
.
support
.
transition
&&
this
.
$element
[
c
](
this
.
$element
[
0
][
d
])}}},
b
.
prototype
.
hide
=
function
(){
if
(
!
this
.
transitioning
&&
this
.
$element
.
hasClass
(
"
in
"
)){
var
b
=
a
.
Event
(
"
hide.bs.collapse
"
);
if
(
this
.
$element
.
trigger
(
b
),
!
b
.
isDefaultPrevented
()){
var
c
=
this
.
dimension
();
this
.
reset
(
this
.
$element
[
c
]()),
this
.
transition
(
"
removeClass
"
,
"
hidden.bs.collapse
"
),
this
.
$element
[
c
](
0
)}}},
b
.
prototype
.
reset
=
function
(
a
){
var
b
=
this
.
dimension
();
return
this
.
$element
.
removeClass
(
"
collapse
"
)[
b
](
a
||
"
auto
"
)[
0
].
offsetWidth
,
this
.
$element
[
null
!=
a
?
"
addClass
"
:
"
removeClass
"
](
"
collapse
"
),
this
},
b
.
prototype
.
transition
=
function
(
b
,
c
){
var
d
=
this
,
e
=
function
(){
"
shown.bs.collapse
"
==
c
&&
d
.
reset
(),
d
.
transitioning
=
0
,
d
.
$element
.
trigger
(
c
)};
this
.
transitioning
=
1
,
this
.
$element
[
b
](
"
in
"
),
a
.
support
.
transition
&&
this
.
$element
.
hasClass
(
"
collapse
"
)?
this
.
$element
.
one
(
a
.
support
.
transition
.
end
,
e
).
emulateTransitionEnd
(
350
):
e
()},
b
.
prototype
.
toggle
=
function
(){
this
[
this
.
$element
.
hasClass
(
"
in
"
)?
"
hide
"
:
"
show
"
]()};
var
c
=
a
.
fn
.
collapse
;
a
.
fn
.
collapse
=
function
(
c
){
return
this
.
each
(
function
(){
var
d
=
a
(
this
),
e
=
d
.
data
(
"
bs.collapse
"
),
f
=
a
.
extend
({},
b
.
DEFAULTS
,
d
.
data
(),
"
object
"
==
typeof
c
&&
c
);
e
||
d
.
data
(
"
bs.collapse
"
,
e
=
new
b
(
this
,
f
)),
"
string
"
==
typeof
c
&&
e
[
c
]()})},
a
.
fn
.
collapse
.
Constructor
=
b
,
a
.
fn
.
collapse
.
noConflict
=
function
(){
return
a
.
fn
.
collapse
=
c
,
this
},
a
(
document
).
on
(
"
click.bs.collapse.data-api
"
,
"
[data-toggle=collapse]
"
,
function
(
b
){
var
c
,
d
=
a
(
this
),
e
=
d
.
attr
(
"
data-target
"
)
||
b
.
preventDefault
()
||
(
c
=
d
.
attr
(
"
href
"
))
&&
c
.
replace
(
/.*
(?=
#
[^\s]
+$
)
/
,
""
),
f
=
a
(
e
),
g
=
f
.
data
(
"
bs.collapse
"
),
h
=
g
?
"
toggle
"
:
d
.
data
(),
i
=
d
.
attr
(
"
data-parent
"
),
j
=
i
&&
a
(
i
);
g
&&
g
.
transitioning
||
(
j
&&
j
.
find
(
"
[data-toggle=collapse][data-parent=
"
+
i
+
"
]
"
).
not
(
d
).
addClass
(
"
collapsed
"
),
d
[
f
.
hasClass
(
"
in
"
)?
"
addClass
"
:
"
removeClass
"
](
"
collapsed
"
)),
f
.
collapse
(
h
)})}(
window
.
jQuery
),
+
function
(
a
){
"
use strict
"
;
function
b
(){
a
(
d
).
remove
(),
a
(
e
).
each
(
function
(
b
){
var
d
=
c
(
a
(
this
));
d
.
hasClass
(
"
open
"
)
&&
(
d
.
trigger
(
b
=
a
.
Event
(
"
hide.bs.dropdown
"
)),
b
.
isDefaultPrevented
()
||
d
.
removeClass
(
"
open
"
).
trigger
(
"
hidden.bs.dropdown
"
))})}
function
c
(
b
){
var
c
=
b
.
attr
(
"
data-target
"
);
c
||
(
c
=
b
.
attr
(
"
href
"
),
c
=
c
&&
/#/
.
test
(
c
)
&&
c
.
replace
(
/.*
(?=
#
[^\s]
*$
)
/
,
""
));
var
d
=
c
&&
a
(
c
);
return
d
&&
d
.
length
?
d
:
b
.
parent
()}
var
d
=
"
.dropdown-backdrop
"
,
e
=
"
[data-toggle=dropdown]
"
,
f
=
function
(
b
){
a
(
b
).
on
(
"
click.bs.dropdown
"
,
this
.
toggle
)};
f
.
prototype
.
toggle
=
function
(
d
){
var
e
=
a
(
this
);
if
(
!
e
.
is
(
"
.disabled, :disabled
"
)){
var
f
=
c
(
e
),
g
=
f
.
hasClass
(
"
open
"
);
if
(
b
(),
!
g
){
if
(
"
ontouchstart
"
in
document
.
documentElement
&&
a
(
'
<div class="dropdown-backdrop"/>
'
).
insertAfter
(
a
(
this
)).
on
(
"
click
"
,
b
),
f
.
trigger
(
d
=
a
.
Event
(
"
show.bs.dropdown
"
)),
d
.
isDefaultPrevented
())
return
;
f
.
toggleClass
(
"
open
"
).
trigger
(
"
shown.bs.dropdown
"
)}
return
e
.
focus
(),
!
1
}},
f
.
prototype
.
keydown
=
function
(
b
){
if
(
/
(
38|40|27
)
/
.
test
(
b
.
keyCode
)){
var
d
=
a
(
this
);
if
(
b
.
preventDefault
(),
b
.
stopPropagation
(),
!
d
.
is
(
"
.disabled, :disabled
"
)){
var
f
=
c
(
d
),
g
=
f
.
hasClass
(
"
open
"
);
if
(
!
g
||
g
&&
27
==
b
.
keyCode
)
return
27
==
b
.
which
&&
f
.
find
(
e
).
focus
(),
d
.
click
();
var
h
=
a
(
"
[role=menu] li:not(.divider):visible a
"
,
f
);
if
(
h
.
length
){
var
i
=
h
.
index
(
h
.
filter
(
"
:focus
"
));
38
==
b
.
keyCode
&&
i
>
0
&&
i
--
,
40
==
b
.
keyCode
&&
i
<
h
.
length
-
1
&&
i
++
,
~
i
||
(
i
=
0
),
h
.
eq
(
i
).
focus
()}}}};
var
g
=
a
.
fn
.
dropdown
;
a
.
fn
.
dropdown
=
function
(
b
){
return
this
.
each
(
function
(){
var
c
=
a
(
this
),
d
=
c
.
data
(
"
dropdown
"
);
d
||
c
.
data
(
"
dropdown
"
,
d
=
new
f
(
this
)),
"
string
"
==
typeof
b
&&
d
[
b
].
call
(
c
)})},
a
.
fn
.
dropdown
.
Constructor
=
f
,
a
.
fn
.
dropdown
.
noConflict
=
function
(){
return
a
.
fn
.
dropdown
=
g
,
this
},
a
(
document
).
on
(
"
click.bs.dropdown.data-api
"
,
b
).
on
(
"
click.bs.dropdown.data-api
"
,
"
.dropdown form
"
,
function
(
a
){
a
.
stopPropagation
()}).
on
(
"
click.bs.dropdown.data-api
"
,
e
,
f
.
prototype
.
toggle
).
on
(
"
keydown.bs.dropdown.data-api
"
,
e
+
"
, [role=menu]
"
,
f
.
prototype
.
keydown
)}(
window
.
jQuery
),
+
function
(
a
){
"
use strict
"
;
var
b
=
function
(
b
,
c
){
this
.
options
=
c
,
this
.
$element
=
a
(
b
).
on
(
"
click.dismiss.modal
"
,
'
[data-dismiss="modal"]
'
,
a
.
proxy
(
this
.
hide
,
this
)),
this
.
$backdrop
=
this
.
isShown
=
null
,
this
.
options
.
remote
&&
this
.
$element
.
find
(
"
.modal-body
"
).
load
(
this
.
options
.
remote
)};
b
.
DEFAULTS
=
{
backdrop
:
!
0
,
keyboard
:
!
0
,
show
:
!
0
},
b
.
prototype
.
toggle
=
function
(){
return
this
[
this
.
isShown
?
"
hide
"
:
"
show
"
]()},
b
.
prototype
.
show
=
function
(){
var
b
=
this
,
c
=
a
.
Event
(
"
show.bs.modal
"
);
this
.
$element
.
trigger
(
c
),
this
.
isShown
||
c
.
isDefaultPrevented
()
||
(
this
.
isShown
=!
0
,
this
.
escape
(),
this
.
backdrop
(
function
(){
var
c
=
a
.
support
.
transition
&&
b
.
$element
.
hasClass
(
"
fade
"
);
b
.
$element
.
parent
().
length
||
b
.
$element
.
appendTo
(
document
.
body
),
b
.
$element
.
show
(),
c
&&
b
.
$element
[
0
].
offsetWidth
,
b
.
$element
.
addClass
(
"
in
"
).
attr
(
"
aria-hidden
"
,
!
1
),
b
.
enforceFocus
(),
c
?
b
.
$element
.
one
(
a
.
support
.
transition
.
end
,
function
(){
b
.
$element
.
focus
().
trigger
(
"
shown.bs.modal
"
)}).
emulateTransitionEnd
(
300
):
b
.
$element
.
focus
().
trigger
(
"
shown.bs.modal
"
)}))},
b
.
prototype
.
hide
=
function
(
b
){
b
&&
b
.
preventDefault
(),
b
=
a
.
Event
(
"
hide.bs.modal
"
),
this
.
$element
.
trigger
(
b
),
this
.
isShown
&&!
b
.
isDefaultPrevented
()
&&
(
this
.
isShown
=!
1
,
this
.
escape
(),
a
(
document
).
off
(
"
focusin.bs.modal
"
),
this
.
$element
.
removeClass
(
"
in
"
).
attr
(
"
aria-hidden
"
,
!
0
),
a
.
support
.
transition
&&
this
.
$element
.
hasClass
(
"
fade
"
)?
this
.
$element
.
one
(
a
.
support
.
transition
.
end
,
a
.
proxy
(
this
.
hideModal
,
this
)).
emulateTransitionEnd
(
300
):
this
.
hideModal
())},
b
.
prototype
.
enforceFocus
=
function
(){
a
(
document
).
off
(
"
focusin.bs.modal
"
).
on
(
"
focusin.bs.modal
"
,
a
.
proxy
(
function
(
a
){
this
.
$element
[
0
]
===
a
.
target
||
this
.
$element
.
has
(
a
.
target
).
length
||
this
.
$element
.
focus
()},
this
))},
b
.
prototype
.
escape
=
function
(){
this
.
isShown
&&
this
.
options
.
keyboard
?
this
.
$element
.
on
(
"
keyup.dismiss.bs.modal
"
,
a
.
proxy
(
function
(
a
){
27
==
a
.
which
&&
this
.
hide
()},
this
)):
this
.
isShown
||
this
.
$element
.
off
(
"
keyup.dismiss.bs.modal
"
)},
b
.
prototype
.
hideModal
=
function
(){
var
a
=
this
;
this
.
$element
.
hide
(),
this
.
backdrop
(
function
(){
a
.
removeBackdrop
(),
a
.
$element
.
trigger
(
"
hidden.bs.modal
"
)})},
b
.
prototype
.
removeBackdrop
=
function
(){
this
.
$backdrop
&&
this
.
$backdrop
.
remove
(),
this
.
$backdrop
=
null
},
b
.
prototype
.
backdrop
=
function
(
b
){
var
c
=
this
.
$element
.
hasClass
(
"
fade
"
)?
"
fade
"
:
""
;
if
(
this
.
isShown
&&
this
.
options
.
backdrop
){
var
d
=
a
.
support
.
transition
&&
c
;
if
(
this
.
$backdrop
=
a
(
'
<div class="modal-backdrop
'
+
c
+
'
" />
'
).
appendTo
(
document
.
body
),
this
.
$element
.
on
(
"
click
"
,
a
.
proxy
(
function
(
a
){
a
.
target
===
a
.
currentTarget
&&
(
"
static
"
==
this
.
options
.
backdrop
?
this
.
$element
[
0
].
focus
.
call
(
this
.
$element
[
0
]):
this
.
hide
.
call
(
this
))},
this
)),
d
&&
this
.
$backdrop
[
0
].
offsetWidth
,
this
.
$backdrop
.
addClass
(
"
in
"
),
!
b
)
return
;
d
?
this
.
$backdrop
.
one
(
a
.
support
.
transition
.
end
,
b
).
emulateTransitionEnd
(
150
):
b
()}
else
!
this
.
isShown
&&
this
.
$backdrop
?(
this
.
$backdrop
.
removeClass
(
"
in
"
),
a
.
support
.
transition
&&
this
.
$element
.
hasClass
(
"
fade
"
)?
this
.
$backdrop
.
one
(
a
.
support
.
transition
.
end
,
b
).
emulateTransitionEnd
(
150
):
b
()):
b
&&
b
()};
var
c
=
a
.
fn
.
modal
;
a
.
fn
.
modal
=
function
(
c
){
return
this
.
each
(
function
(){
var
d
=
a
(
this
),
e
=
d
.
data
(
"
bs.modal
"
),
f
=
a
.
extend
({},
b
.
DEFAULTS
,
d
.
data
(),
"
object
"
==
typeof
c
&&
c
);
e
||
d
.
data
(
"
bs.modal
"
,
e
=
new
b
(
this
,
f
)),
"
string
"
==
typeof
c
?
e
[
c
]():
f
.
show
&&
e
.
show
()})},
a
.
fn
.
modal
.
Constructor
=
b
,
a
.
fn
.
modal
.
noConflict
=
function
(){
return
a
.
fn
.
modal
=
c
,
this
},
a
(
document
).
on
(
"
click.bs.modal.data-api
"
,
'
[data-toggle="modal"]
'
,
function
(
b
){
var
c
=
a
(
this
),
d
=
c
.
attr
(
"
href
"
),
e
=
a
(
c
.
attr
(
"
data-target
"
)
||
d
&&
d
.
replace
(
/.*
(?=
#
[^\s]
+$
)
/
,
""
)),
f
=
e
.
data
(
"
modal
"
)?
"
toggle
"
:
a
.
extend
({
remote
:
!
/#/
.
test
(
d
)
&&
d
},
e
.
data
(),
c
.
data
());
b
.
preventDefault
(),
e
.
modal
(
f
).
one
(
"
hide
"
,
function
(){
c
.
is
(
"
:visible
"
)
&&
c
.
focus
()})});
var
d
=
a
(
document
.
body
).
on
(
"
shown.bs.modal
"
,
"
.modal
"
,
function
(){
d
.
addClass
(
"
modal-open
"
)}).
on
(
"
hidden.bs.modal
"
,
"
.modal
"
,
function
(){
d
.
removeClass
(
"
modal-open
"
)})}(
window
.
jQuery
),
+
function
(
a
){
"
use strict
"
;
var
b
=
function
(
a
,
b
){
this
.
type
=
this
.
options
=
this
.
enabled
=
this
.
timeout
=
this
.
hoverState
=
this
.
$element
=
null
,
this
.
init
(
"
tooltip
"
,
a
,
b
)};
b
.
DEFAULTS
=
{
animation
:
!
0
,
placement
:
"
top
"
,
selector
:
!
1
,
template
:
'
<div class="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>
'
,
trigger
:
"
hover focus
"
,
title
:
""
,
delay
:
0
,
html
:
!
1
,
container
:
!
1
},
b
.
prototype
.
init
=
function
(
b
,
c
,
d
){
this
.
enabled
=!
0
,
this
.
type
=
b
,
this
.
$element
=
a
(
c
),
this
.
options
=
this
.
getOptions
(
d
);
for
(
var
e
=
this
.
options
.
trigger
.
split
(
"
"
),
f
=
e
.
length
;
f
--
;){
var
g
=
e
[
f
];
if
(
"
click
"
==
g
)
this
.
$element
.
on
(
"
click.
"
+
this
.
type
,
this
.
options
.
selector
,
a
.
proxy
(
this
.
toggle
,
this
));
else
if
(
"
manual
"
!=
g
){
var
h
=
"
hover
"
==
g
?
"
mouseenter
"
:
"
focus
"
,
i
=
"
hover
"
==
g
?
"
mouseleave
"
:
"
blur
"
;
this
.
$element
.
on
(
h
+
"
.
"
+
this
.
type
,
this
.
options
.
selector
,
a
.
proxy
(
this
.
enter
,
this
)),
this
.
$element
.
on
(
i
+
"
.
"
+
this
.
type
,
this
.
options
.
selector
,
a
.
proxy
(
this
.
leave
,
this
))}}
this
.
options
.
selector
?
this
.
_options
=
a
.
extend
({},
this
.
options
,{
trigger
:
"
manual
"
,
selector
:
""
}):
this
.
fixTitle
()},
b
.
prototype
.
getDefaults
=
function
(){
return
b
.
DEFAULTS
},
b
.
prototype
.
getOptions
=
function
(
b
){
return
b
=
a
.
extend
({},
this
.
getDefaults
(),
this
.
$element
.
data
(),
b
),
b
.
delay
&&
"
number
"
==
typeof
b
.
delay
&&
(
b
.
delay
=
{
show
:
b
.
delay
,
hide
:
b
.
delay
}),
b
},
b
.
prototype
.
enter
=
function
(
b
){
var
c
=
this
.
getDefaults
(),
d
=
{};
this
.
_options
&&
a
.
each
(
this
.
_options
,
function
(
a
,
b
){
c
[
a
]
!=
b
&&
(
d
[
a
]
=
b
)});
var
e
=
b
instanceof
this
.
constructor
?
b
:
a
(
b
.
currentTarget
)[
this
.
type
](
d
).
data
(
"
bs.
"
+
this
.
type
);
return
clearTimeout
(
e
.
timeout
),
e
.
options
.
delay
&&
e
.
options
.
delay
.
show
?(
e
.
hoverState
=
"
in
"
,
e
.
timeout
=
setTimeout
(
function
(){
"
in
"
==
e
.
hoverState
&&
e
.
show
()},
e
.
options
.
delay
.
show
),
void
0
):
e
.
show
()},
b
.
prototype
.
leave
=
function
(
b
){
var
c
=
b
instanceof
this
.
constructor
?
b
:
a
(
b
.
currentTarget
)[
this
.
type
](
this
.
_options
).
data
(
"
bs.
"
+
this
.
type
);
return
clearTimeout
(
c
.
timeout
),
c
.
options
.
delay
&&
c
.
options
.
delay
.
hide
?(
c
.
hoverState
=
"
out
"
,
c
.
timeout
=
setTimeout
(
function
(){
"
out
"
==
c
.
hoverState
&&
c
.
hide
()},
c
.
options
.
delay
.
hide
),
void
0
):
c
.
hide
()},
b
.
prototype
.
show
=
function
(){
var
b
=
a
.
Event
(
"
show.bs.
"
+
this
.
type
);
if
(
this
.
hasContent
()
&&
this
.
enabled
){
if
(
this
.
$element
.
trigger
(
b
),
b
.
isDefaultPrevented
())
return
;
var
c
=
this
.
tip
();
this
.
setContent
(),
this
.
options
.
animation
&&
c
.
addClass
(
"
fade
"
);
var
d
=
"
function
"
==
typeof
this
.
options
.
placement
?
this
.
options
.
placement
.
call
(
this
,
c
[
0
],
this
.
$element
[
0
]):
this
.
options
.
placement
,
e
=
/
\s?
auto
?\s?
/i
,
f
=
e
.
test
(
d
);
f
&&
(
d
=
d
.
replace
(
e
,
""
)
||
"
top
"
),
c
.
detach
().
css
({
top
:
0
,
left
:
0
,
display
:
"
block
"
}).
addClass
(
d
),
this
.
options
.
container
?
c
.
appendTo
(
this
.
options
.
container
):
c
.
insertAfter
(
this
.
$element
);
var
g
=
this
.
getPosition
(),
h
=
c
[
0
].
offsetWidth
,
i
=
c
[
0
].
offsetHeight
;
if
(
f
){
var
j
=
this
.
$element
.
parent
(),
k
=
d
,
l
=
document
.
documentElement
.
scrollTop
||
document
.
body
.
scrollTop
,
m
=
"
body
"
==
this
.
options
.
container
?
window
.
innerWidth
:
j
.
outerWidth
(),
n
=
"
body
"
==
this
.
options
.
container
?
window
.
innerHeight
:
j
.
outerHeight
(),
o
=
"
body
"
==
this
.
options
.
container
?
0
:
j
.
offset
().
left
;
d
=
"
bottom
"
==
d
&&
g
.
top
+
g
.
height
+
i
-
l
>
n
?
"
top
"
:
"
top
"
==
d
&&
g
.
top
-
l
-
i
<
0
?
"
bottom
"
:
"
right
"
==
d
&&
g
.
right
+
h
>
m
?
"
left
"
:
"
left
"
==
d
&&
g
.
left
-
h
<
o
?
"
right
"
:
d
,
c
.
removeClass
(
k
).
addClass
(
d
)}
var
p
=
"
bottom
"
==
d
?{
top
:
g
.
top
+
g
.
height
,
left
:
g
.
left
+
g
.
width
/
2
-
h
/
2
}:
"
top
"
==
d
?{
top
:
g
.
top
-
i
,
left
:
g
.
left
+
g
.
width
/
2
-
h
/
2
}:
"
left
"
==
d
?{
top
:
g
.
top
+
g
.
height
/
2
-
i
/
2
,
left
:
g
.
left
-
h
}:{
top
:
g
.
top
+
g
.
height
/
2
-
i
/
2
,
left
:
g
.
left
+
g
.
width
};
this
.
applyPlacement
(
p
,
d
),
this
.
$element
.
trigger
(
"
shown.bs.
"
+
this
.
type
)}},
b
.
prototype
.
applyPlacement
=
function
(
a
,
b
){
var
c
,
d
=
this
.
tip
(),
e
=
d
[
0
].
offsetWidth
,
f
=
d
[
0
].
offsetHeight
;
a
.
top
=
a
.
top
+
parseInt
(
d
.
css
(
"
margin-top
"
),
10
),
a
.
left
=
a
.
left
+
parseInt
(
d
.
css
(
"
margin-left
"
),
10
),
d
.
offset
(
a
).
addClass
(
"
in
"
);
var
g
=
d
[
0
].
offsetWidth
,
h
=
d
[
0
].
offsetHeight
;
if
(
"
top
"
==
b
&&
h
!=
f
&&
(
c
=!
0
,
a
.
top
=
a
.
top
+
f
-
h
),
"
bottom
"
==
b
||
"
top
"
==
b
){
var
i
=
0
;
a
.
left
<
0
&&
(
i
=-
2
*
a
.
left
,
a
.
left
=
0
,
d
.
offset
(
a
),
g
=
d
[
0
].
offsetWidth
,
h
=
d
[
0
].
offsetHeight
),
this
.
replaceArrow
(
i
-
e
+
g
,
g
,
"
left
"
)}
else
this
.
replaceArrow
(
h
-
f
,
h
,
"
top
"
);
c
&&
d
.
offset
(
a
)},
b
.
prototype
.
replaceArrow
=
function
(
a
,
b
,
c
){
this
.
arrow
().
css
(
c
,
a
?
50
*
(
1
-
a
/
b
)
+
"
%
"
:
""
)},
b
.
prototype
.
setContent
=
function
(){
var
a
=
this
.
tip
(),
b
=
this
.
getTitle
();
a
.
find
(
"
.tooltip-inner
"
)[
this
.
options
.
html
?
"
html
"
:
"
text
"
](
b
),
a
.
removeClass
(
"
fade in top bottom left right
"
)},
b
.
prototype
.
hide
=
function
(){
var
b
=
this
.
tip
(),
c
=
a
.
Event
(
"
hide.bs.
"
+
this
.
type
);
return
this
.
$element
.
trigger
(
c
),
c
.
isDefaultPrevented
()?
void
0
:(
b
.
removeClass
(
"
in
"
),
a
.
support
.
transition
&&
this
.
$tip
.
hasClass
(
"
fade
"
)?
b
.
one
(
a
.
support
.
transition
.
end
,
b
.
detach
).
emulateTransitionEnd
(
150
):
b
.
detach
(),
this
.
$element
.
trigger
(
"
hidden.bs.
"
+
this
.
type
),
this
)},
b
.
prototype
.
fixTitle
=
function
(){
var
a
=
this
.
$element
;(
a
.
attr
(
"
title
"
)
||
"
string
"
!=
typeof
a
.
attr
(
"
data-original-title
"
))
&&
a
.
attr
(
"
data-original-title
"
,
a
.
attr
(
"
title
"
)
||
""
).
attr
(
"
title
"
,
""
)},
b
.
prototype
.
hasContent
=
function
(){
return
this
.
getTitle
()},
b
.
prototype
.
getPosition
=
function
(){
var
b
=
this
.
$element
[
0
];
return
a
.
extend
({},
"
function
"
==
typeof
b
.
getBoundingClientRect
?
b
.
getBoundingClientRect
():{
width
:
b
.
offsetWidth
,
height
:
b
.
offsetHeight
},
this
.
$element
.
offset
())},
b
.
prototype
.
getTitle
=
function
(){
var
a
,
b
=
this
.
$element
,
c
=
this
.
options
;
return
a
=
b
.
attr
(
"
data-original-title
"
)
||
(
"
function
"
==
typeof
c
.
title
?
c
.
title
.
call
(
b
[
0
]):
c
.
title
)},
b
.
prototype
.
tip
=
function
(){
return
this
.
$tip
=
this
.
$tip
||
a
(
this
.
options
.
template
)},
b
.
prototype
.
arrow
=
function
(){
return
this
.
$arrow
=
this
.
$arrow
||
this
.
tip
().
find
(
"
.tooltip-arrow
"
)},
b
.
prototype
.
validate
=
function
(){
this
.
$element
[
0
].
parentNode
||
(
this
.
hide
(),
this
.
$element
=
null
,
this
.
options
=
null
)},
b
.
prototype
.
enable
=
function
(){
this
.
enabled
=!
0
},
b
.
prototype
.
disable
=
function
(){
this
.
enabled
=!
1
},
b
.
prototype
.
toggleEnabled
=
function
(){
this
.
enabled
=!
this
.
enabled
},
b
.
prototype
.
toggle
=
function
(
b
){
var
c
=
b
?
a
(
b
.
currentTarget
)[
this
.
type
](
this
.
_options
).
data
(
"
bs.
"
+
this
.
type
):
this
;
c
.
tip
().
hasClass
(
"
in
"
)?
c
.
leave
(
c
):
c
.
enter
(
c
)},
b
.
prototype
.
destroy
=
function
(){
this
.
hide
().
$element
.
off
(
"
.
"
+
this
.
type
).
removeData
(
"
bs.
"
+
this
.
type
)};
var
c
=
a
.
fn
.
tooltip
;
a
.
fn
.
tooltip
=
function
(
c
){
return
this
.
each
(
function
(){
var
d
=
a
(
this
),
e
=
d
.
data
(
"
bs.tooltip
"
),
f
=
"
object
"
==
typeof
c
&&
c
;
e
||
d
.
data
(
"
bs.tooltip
"
,
e
=
new
b
(
this
,
f
)),
"
string
"
==
typeof
c
&&
e
[
c
]()})},
a
.
fn
.
tooltip
.
Constructor
=
b
,
a
.
fn
.
tooltip
.
noConflict
=
function
(){
return
a
.
fn
.
tooltip
=
c
,
this
}}(
window
.
jQuery
),
+
function
(
a
){
"
use strict
"
;
var
b
=
function
(
a
,
b
){
this
.
init
(
"
popover
"
,
a
,
b
)};
b
.
DEFAULTS
=
a
.
extend
({},
a
.
fn
.
tooltip
.
Constructor
.
DEFAULTS
,{
placement
:
"
right
"
,
trigger
:
"
click
"
,
content
:
""
,
template
:
'
<div class="popover"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>
'
}),
b
.
prototype
=
a
.
extend
({},
a
.
fn
.
tooltip
.
Constructor
.
prototype
),
b
.
prototype
.
constructor
=
b
,
b
.
prototype
.
getDefaults
=
function
(){
return
b
.
DEFAULTS
},
b
.
prototype
.
setContent
=
function
(){
var
a
=
this
.
tip
(),
b
=
this
.
getTitle
(),
c
=
this
.
getContent
();
a
.
find
(
"
.popover-title
"
)[
this
.
options
.
html
?
"
html
"
:
"
text
"
](
b
),
a
.
find
(
"
.popover-content
"
)[
this
.
options
.
html
?
"
html
"
:
"
text
"
](
c
),
a
.
removeClass
(
"
fade top bottom left right in
"
),
a
.
find
(
"
.popover-title:empty
"
).
hide
()},
b
.
prototype
.
hasContent
=
function
(){
return
this
.
getTitle
()
||
this
.
getContent
()},
b
.
prototype
.
getContent
=
function
(){
var
a
=
this
.
$element
,
b
=
this
.
options
;
return
a
.
attr
(
"
data-content
"
)
||
(
"
function
"
==
typeof
b
.
content
?
b
.
content
.
call
(
a
[
0
]):
b
.
content
)},
b
.
prototype
.
tip
=
function
(){
return
this
.
$tip
||
(
this
.
$tip
=
a
(
this
.
options
.
template
)),
this
.
$tip
},
b
.
prototype
.
destroy
=
function
(){
this
.
hide
().
$element
.
off
(
"
.
"
+
this
.
type
).
removeData
(
this
.
type
)};
var
c
=
a
.
fn
.
popover
;
a
.
fn
.
popover
=
function
(
c
){
return
this
.
each
(
function
(){
var
d
=
a
(
this
),
e
=
d
.
data
(
"
bs.popover
"
),
f
=
"
object
"
==
typeof
c
&&
c
;
e
||
d
.
data
(
"
bs.popover
"
,
e
=
new
b
(
this
,
f
)),
"
string
"
==
typeof
c
&&
e
[
c
]()})},
a
.
fn
.
popover
.
Constructor
=
b
,
a
.
fn
.
popover
.
noConflict
=
function
(){
return
a
.
fn
.
popover
=
c
,
this
}}(
window
.
jQuery
),
+
function
(
a
){
"
use strict
"
;
function
b
(
c
,
d
){
var
e
,
f
=
a
.
proxy
(
this
.
process
,
this
),
g
=
a
(
c
).
is
(
"
body
"
)?
a
(
window
):
a
(
c
);
this
.
$body
=
a
(
"
body
"
),
this
.
$scrollElement
=
g
.
on
(
"
scroll.bs.scroll-spy.data-api
"
,
f
),
this
.
options
=
a
.
extend
({},
b
.
DEFAULTS
,
d
),
this
.
selector
=
(
this
.
options
.
target
||
(
e
=
a
(
c
).
attr
(
"
href
"
))
&&
e
.
replace
(
/.*
(?=
#
[^\s]
+$
)
/
,
""
)
||
""
)
+
"
.nav li > a
"
,
this
.
offsets
=
a
([]),
this
.
targets
=
a
([]),
this
.
activeTarget
=
null
,
this
.
refresh
(),
this
.
process
()}
b
.
DEFAULTS
=
{
offset
:
10
},
b
.
prototype
.
refresh
=
function
(){
this
.
offsets
=
a
([]),
this
.
targets
=
a
([]);
var
b
=
this
;
this
.
$body
.
find
(
this
.
selector
).
map
(
function
(){
var
c
=
a
(
this
),
d
=
c
.
data
(
"
target
"
)
||
c
.
attr
(
"
href
"
),
e
=
/^#
\w
/
.
test
(
d
)
&&
a
(
d
);
return
e
&&
e
.
length
&&
[[
e
.
offset
().
top
+
(
!
a
.
isWindow
(
b
.
$scrollElement
.
get
(
0
))
&&
b
.
$scrollElement
.
scrollTop
()),
d
]]
||
null
}).
sort
(
function
(
a
,
b
){
return
a
[
0
]
-
b
[
0
]}).
each
(
function
(){
b
.
offsets
.
push
(
this
[
0
]),
b
.
targets
.
push
(
this
[
1
])})},
b
.
prototype
.
process
=
function
(){
var
a
,
b
=
this
.
$scrollElement
.
scrollTop
()
+
this
.
options
.
offset
,
c
=
this
.
$scrollElement
[
0
].
scrollHeight
||
this
.
$body
[
0
].
scrollHeight
,
d
=
c
-
this
.
$scrollElement
.
height
(),
e
=
this
.
offsets
,
f
=
this
.
targets
,
g
=
this
.
activeTarget
;
if
(
b
>=
d
)
return
g
!=
(
a
=
f
.
last
()[
0
])
&&
this
.
activate
(
a
);
for
(
a
=
e
.
length
;
a
--
;)
g
!=
f
[
a
]
&&
b
>=
e
[
a
]
&&
(
!
e
[
a
+
1
]
||
b
<=
e
[
a
+
1
])
&&
this
.
activate
(
f
[
a
])},
b
.
prototype
.
activate
=
function
(
b
){
this
.
activeTarget
=
b
,
a
(
this
.
selector
).
parents
(
"
.active
"
).
removeClass
(
"
active
"
);
var
c
=
this
.
selector
+
'
[data-target="
'
+
b
+
'
"],
'
+
this
.
selector
+
'
[href="
'
+
b
+
'
"]
'
,
d
=
a
(
c
).
parents
(
"
li
"
).
addClass
(
"
active
"
);
d
.
parent
(
"
.dropdown-menu
"
).
length
&&
(
d
=
d
.
closest
(
"
li.dropdown
"
).
addClass
(
"
active
"
)),
d
.
trigger
(
"
activate
"
)};
var
c
=
a
.
fn
.
scrollspy
;
a
.
fn
.
scrollspy
=
function
(
c
){
return
this
.
each
(
function
(){
var
d
=
a
(
this
),
e
=
d
.
data
(
"
bs.scrollspy
"
),
f
=
"
object
"
==
typeof
c
&&
c
;
e
||
d
.
data
(
"
bs.scrollspy
"
,
e
=
new
b
(
this
,
f
)),
"
string
"
==
typeof
c
&&
e
[
c
]()})},
a
.
fn
.
scrollspy
.
Constructor
=
b
,
a
.
fn
.
scrollspy
.
noConflict
=
function
(){
return
a
.
fn
.
scrollspy
=
c
,
this
},
a
(
window
).
on
(
"
load
"
,
function
(){
a
(
'
[data-spy="scroll"]
'
).
each
(
function
(){
var
b
=
a
(
this
);
b
.
scrollspy
(
b
.
data
())})})}(
window
.
jQuery
),
+
function
(
a
){
"
use strict
"
;
var
b
=
function
(
b
){
this
.
element
=
a
(
b
)};
b
.
prototype
.
show
=
function
(){
var
b
=
this
.
element
,
c
=
b
.
closest
(
"
ul:not(.dropdown-menu)
"
),
d
=
b
.
attr
(
"
data-target
"
);
if
(
d
||
(
d
=
b
.
attr
(
"
href
"
),
d
=
d
&&
d
.
replace
(
/.*
(?=
#
[^\s]
*$
)
/
,
""
)),
!
b
.
parent
(
"
li
"
).
hasClass
(
"
active
"
)){
var
e
=
c
.
find
(
"
.active:last a
"
)[
0
],
f
=
a
.
Event
(
"
show.bs.tab
"
,{
relatedTarget
:
e
});
if
(
b
.
trigger
(
f
),
!
f
.
isDefaultPrevented
()){
var
g
=
a
(
d
);
this
.
activate
(
b
.
parent
(
"
li
"
),
c
),
this
.
activate
(
g
,
g
.
parent
(),
function
(){
b
.
trigger
({
type
:
"
shown.bs.tab
"
,
relatedTarget
:
e
})})}}},
b
.
prototype
.
activate
=
function
(
b
,
c
,
d
){
function
e
(){
f
.
removeClass
(
"
active
"
).
find
(
"
> .dropdown-menu > .active
"
).
removeClass
(
"
active
"
),
b
.
addClass
(
"
active
"
),
g
?(
b
[
0
].
offsetWidth
,
b
.
addClass
(
"
in
"
)):
b
.
removeClass
(
"
fade
"
),
b
.
parent
(
"
.dropdown-menu
"
)
&&
b
.
closest
(
"
li.dropdown
"
).
addClass
(
"
active
"
),
d
&&
d
()}
var
f
=
c
.
find
(
"
> .active
"
),
g
=
d
&&
a
.
support
.
transition
&&
f
.
hasClass
(
"
fade
"
);
g
?
f
.
one
(
a
.
support
.
transition
.
end
,
e
).
emulateTransitionEnd
(
150
):
e
(),
f
.
removeClass
(
"
in
"
)};
var
c
=
a
.
fn
.
tab
;
a
.
fn
.
tab
=
function
(
c
){
return
this
.
each
(
function
(){
var
d
=
a
(
this
),
e
=
d
.
data
(
"
bs.tab
"
);
e
||
d
.
data
(
"
bs.tab
"
,
e
=
new
b
(
this
)),
"
string
"
==
typeof
c
&&
e
[
c
]()})},
a
.
fn
.
tab
.
Constructor
=
b
,
a
.
fn
.
tab
.
noConflict
=
function
(){
return
a
.
fn
.
tab
=
c
,
this
},
a
(
document
).
on
(
"
click.bs.tab.data-api
"
,
'
[data-toggle="tab"], [data-toggle="pill"]
'
,
function
(
b
){
b
.
preventDefault
(),
a
(
this
).
tab
(
"
show
"
)})}(
window
.
jQuery
),
+
function
(
a
){
"
use strict
"
;
var
b
=
function
(
c
,
d
){
this
.
options
=
a
.
extend
({},
b
.
DEFAULTS
,
d
),
this
.
$window
=
a
(
window
).
on
(
"
scroll.bs.affix.data-api
"
,
a
.
proxy
(
this
.
checkPosition
,
this
)).
on
(
"
click.bs.affix.data-api
"
,
a
.
proxy
(
this
.
checkPositionWithEventLoop
,
this
)),
this
.
$element
=
a
(
c
),
this
.
affixed
=
this
.
unpin
=
null
,
this
.
checkPosition
()};
b
.
RESET
=
"
affix affix-top affix-bottom
"
,
b
.
DEFAULTS
=
{
offset
:
0
},
b
.
prototype
.
checkPositionWithEventLoop
=
function
(){
setTimeout
(
a
.
proxy
(
this
.
checkPosition
,
this
),
1
)},
b
.
prototype
.
checkPosition
=
function
(){
if
(
this
.
$element
.
is
(
"
:visible
"
)){
var
c
=
a
(
document
).
height
(),
d
=
this
.
$window
.
scrollTop
(),
e
=
this
.
$element
.
offset
(),
f
=
this
.
options
.
offset
,
g
=
f
.
top
,
h
=
f
.
bottom
;
"
object
"
!=
typeof
f
&&
(
h
=
g
=
f
),
"
function
"
==
typeof
g
&&
(
g
=
f
.
top
()),
"
function
"
==
typeof
h
&&
(
h
=
f
.
bottom
());
var
i
=
null
!=
this
.
unpin
&&
d
+
this
.
unpin
<=
e
.
top
?
!
1
:
null
!=
h
&&
e
.
top
+
this
.
$element
.
height
()
>=
c
-
h
?
"
bottom
"
:
null
!=
g
&&
g
>=
d
?
"
top
"
:
!
1
;
this
.
affixed
!==
i
&&
(
this
.
unpin
&&
this
.
$element
.
css
(
"
top
"
,
""
),
this
.
affixed
=
i
,
this
.
unpin
=
"
bottom
"
==
i
?
e
.
top
-
d
:
null
,
this
.
$element
.
removeClass
(
b
.
RESET
).
addClass
(
"
affix
"
+
(
i
?
"
-
"
+
i
:
""
)),
"
bottom
"
==
i
&&
this
.
$element
.
offset
({
top
:
document
.
body
.
offsetHeight
-
h
-
this
.
$element
.
height
()}))}};
var
c
=
a
.
fn
.
affix
;
a
.
fn
.
affix
=
function
(
c
){
return
this
.
each
(
function
(){
var
d
=
a
(
this
),
e
=
d
.
data
(
"
bs.affix
"
),
f
=
"
object
"
==
typeof
c
&&
c
;
e
||
d
.
data
(
"
bs.affix
"
,
e
=
new
b
(
this
,
f
)),
"
string
"
==
typeof
c
&&
e
[
c
]()})},
a
.
fn
.
affix
.
Constructor
=
b
,
a
.
fn
.
affix
.
noConflict
=
function
(){
return
a
.
fn
.
affix
=
c
,
this
},
a
(
window
).
on
(
"
load
"
,
function
(){
a
(
'
[data-spy="affix"]
'
).
each
(
function
(){
var
b
=
a
(
this
),
c
=
b
.
data
();
c
.
offset
=
c
.
offset
||
{},
c
.
offsetBottom
&&
(
c
.
offset
.
bottom
=
c
.
offsetBottom
),
c
.
offsetTop
&&
(
c
.
offset
.
top
=
c
.
offsetTop
),
b
.
affix
(
c
)})})}(
window
.
jQuery
);
\ No newline at end of file
if
(
!
jQuery
)
throw
new
Error
(
"
Bootstrap requires jQuery
"
);
+
function
(
a
){
"
use strict
"
;
function
b
(){
var
a
=
document
.
createElement
(
"
bootstrap
"
),
b
=
{
WebkitTransition
:
"
webkitTransitionEnd
"
,
MozTransition
:
"
transitionend
"
,
OTransition
:
"
oTransitionEnd otransitionend
"
,
transition
:
"
transitionend
"
};
for
(
var
c
in
b
)
if
(
void
0
!==
a
.
style
[
c
])
return
{
end
:
b
[
c
]}}
a
.
fn
.
emulateTransitionEnd
=
function
(
b
){
var
c
=!
1
,
d
=
this
;
a
(
this
).
one
(
"
webkitTransitionEnd
"
,
function
(){
c
=!
0
});
var
e
=
function
(){
c
||
a
(
d
).
trigger
(
"
webkitTransitionEnd
"
)};
return
setTimeout
(
e
,
b
),
this
},
a
(
function
(){
a
.
support
.
transition
=
b
()})}(
window
.
jQuery
),
+
function
(
a
){
"
use strict
"
;
var
b
=
'
[data-dismiss="alert"]
'
,
c
=
function
(
c
){
a
(
c
).
on
(
"
click
"
,
b
,
this
.
close
)};
c
.
prototype
.
close
=
function
(
b
){
function
c
(){
f
.
trigger
(
"
closed.bs.alert
"
).
remove
()}
var
d
=
a
(
this
),
e
=
d
.
attr
(
"
data-target
"
);
e
||
(
e
=
d
.
attr
(
"
href
"
),
e
=
e
&&
e
.
replace
(
/.*
(?=
#
[^\s]
*$
)
/
,
""
));
var
f
=
a
(
e
);
b
&&
b
.
preventDefault
(),
f
.
length
||
(
f
=
d
.
hasClass
(
"
alert
"
)?
d
:
d
.
parent
()),
f
.
trigger
(
b
=
a
.
Event
(
"
close.bs.alert
"
)),
b
.
isDefaultPrevented
()
||
(
f
.
removeClass
(
"
in
"
),
a
.
support
.
transition
&&
f
.
hasClass
(
"
fade
"
)?
f
.
one
(
a
.
support
.
transition
.
end
,
c
).
emulateTransitionEnd
(
150
):
c
())};
var
d
=
a
.
fn
.
alert
;
a
.
fn
.
alert
=
function
(
b
){
return
this
.
each
(
function
(){
var
d
=
a
(
this
),
e
=
d
.
data
(
"
bs.alert
"
);
e
||
d
.
data
(
"
bs.alert
"
,
e
=
new
c
(
this
)),
"
string
"
==
typeof
b
&&
e
[
b
].
call
(
d
)})},
a
.
fn
.
alert
.
Constructor
=
c
,
a
.
fn
.
alert
.
noConflict
=
function
(){
return
a
.
fn
.
alert
=
d
,
this
},
a
(
document
).
on
(
"
click.bs.alert.data-api
"
,
b
,
c
.
prototype
.
close
)}(
window
.
jQuery
),
+
function
(
a
){
"
use strict
"
;
var
b
=
function
(
c
,
d
){
this
.
$element
=
a
(
c
),
this
.
options
=
a
.
extend
({},
b
.
DEFAULTS
,
d
)};
b
.
DEFAULTS
=
{
loadingText
:
"
loading...
"
},
b
.
prototype
.
setState
=
function
(
a
){
var
b
=
"
disabled
"
,
c
=
this
.
$element
,
d
=
c
.
is
(
"
input
"
)?
"
val
"
:
"
html
"
,
e
=
c
.
data
();
a
+=
"
Text
"
,
e
.
resetText
||
c
.
data
(
"
resetText
"
,
c
[
d
]()),
c
[
d
](
e
[
a
]
||
this
.
options
[
a
]),
setTimeout
(
function
(){
"
loadingText
"
==
a
?
c
.
addClass
(
b
).
attr
(
b
,
b
):
c
.
removeClass
(
b
).
removeAttr
(
b
)},
0
)},
b
.
prototype
.
toggle
=
function
(){
var
a
=
this
.
$element
.
closest
(
'
[data-toggle="buttons"]
'
);
if
(
a
.
length
){
var
b
=
this
.
$element
.
find
(
"
input
"
).
prop
(
"
checked
"
,
!
this
.
$element
.
hasClass
(
"
active
"
));
"
radio
"
===
b
.
prop
(
"
type
"
)
&&
a
.
find
(
"
.active
"
).
removeClass
(
"
active
"
)}
this
.
$element
.
toggleClass
(
"
active
"
)};
var
c
=
a
.
fn
.
button
;
a
.
fn
.
button
=
function
(
c
){
return
this
.
each
(
function
(){
var
d
=
a
(
this
),
e
=
d
.
data
(
"
button
"
),
f
=
"
object
"
==
typeof
c
&&
c
;
e
||
d
.
data
(
"
bs.button
"
,
e
=
new
b
(
this
,
f
)),
"
toggle
"
==
c
?
e
.
toggle
():
c
&&
e
.
setState
(
c
)})},
a
.
fn
.
button
.
Constructor
=
b
,
a
.
fn
.
button
.
noConflict
=
function
(){
return
a
.
fn
.
button
=
c
,
this
},
a
(
document
).
on
(
"
click.bs.button.data-api
"
,
"
[data-toggle^=button]
"
,
function
(
b
){
var
c
=
a
(
b
.
target
);
c
.
hasClass
(
"
btn
"
)
||
(
c
=
c
.
closest
(
"
.btn
"
)),
c
.
button
(
"
toggle
"
),
b
.
preventDefault
()})}(
window
.
jQuery
),
+
function
(
a
){
"
use strict
"
;
var
b
=
function
(
b
,
c
){
this
.
$element
=
a
(
b
),
this
.
$indicators
=
this
.
$element
.
find
(
"
.carousel-indicators
"
),
this
.
options
=
c
,
this
.
paused
=
this
.
sliding
=
this
.
interval
=
this
.
$active
=
this
.
$items
=
null
,
"
hover
"
==
this
.
options
.
pause
&&
this
.
$element
.
on
(
"
mouseenter
"
,
a
.
proxy
(
this
.
pause
,
this
)).
on
(
"
mouseleave
"
,
a
.
proxy
(
this
.
cycle
,
this
))};
b
.
DEFAULTS
=
{
interval
:
5
e3
,
pause
:
"
hover
"
},
b
.
prototype
.
cycle
=
function
(
b
){
return
b
||
(
this
.
paused
=!
1
),
this
.
interval
&&
clearInterval
(
this
.
interval
),
this
.
options
.
interval
&&!
this
.
paused
&&
(
this
.
interval
=
setInterval
(
a
.
proxy
(
this
.
next
,
this
),
this
.
options
.
interval
)),
this
},
b
.
prototype
.
getActiveIndex
=
function
(){
return
this
.
$active
=
this
.
$element
.
find
(
"
.item.active
"
),
this
.
$items
=
this
.
$active
.
parent
().
children
(),
this
.
$items
.
index
(
this
.
$active
)},
b
.
prototype
.
to
=
function
(
b
){
var
c
=
this
,
d
=
this
.
getActiveIndex
();
return
b
>
this
.
$items
.
length
-
1
||
0
>
b
?
void
0
:
this
.
sliding
?
this
.
$element
.
one
(
"
slid
"
,
function
(){
c
.
to
(
b
)}):
d
==
b
?
this
.
pause
().
cycle
():
this
.
slide
(
b
>
d
?
"
next
"
:
"
prev
"
,
a
(
this
.
$items
[
b
]))},
b
.
prototype
.
pause
=
function
(
b
){
return
b
||
(
this
.
paused
=!
0
),
this
.
$element
.
find
(
"
.next, .prev
"
).
length
&&
a
.
support
.
transition
.
end
&&
(
this
.
$element
.
trigger
(
a
.
support
.
transition
.
end
),
this
.
cycle
(
!
0
)),
this
.
interval
=
clearInterval
(
this
.
interval
),
this
},
b
.
prototype
.
next
=
function
(){
return
this
.
sliding
?
void
0
:
this
.
slide
(
"
next
"
)},
b
.
prototype
.
prev
=
function
(){
return
this
.
sliding
?
void
0
:
this
.
slide
(
"
prev
"
)},
b
.
prototype
.
slide
=
function
(
b
,
c
){
var
d
=
this
.
$element
.
find
(
"
.item.active
"
),
e
=
c
||
d
[
b
](),
f
=
this
.
interval
,
g
=
"
next
"
==
b
?
"
left
"
:
"
right
"
,
h
=
"
next
"
==
b
?
"
first
"
:
"
last
"
,
i
=
this
;
this
.
sliding
=!
0
,
f
&&
this
.
pause
(),
e
=
e
.
length
?
e
:
this
.
$element
.
find
(
"
.item
"
)[
h
]();
var
j
=
a
.
Event
(
"
slide.bs.carousel
"
,{
relatedTarget
:
e
[
0
],
direction
:
g
});
if
(
!
e
.
hasClass
(
"
active
"
)){
if
(
this
.
$indicators
.
length
&&
(
this
.
$indicators
.
find
(
"
.active
"
).
removeClass
(
"
active
"
),
this
.
$element
.
one
(
"
slid
"
,
function
(){
var
b
=
a
(
i
.
$indicators
.
children
()[
i
.
getActiveIndex
()]);
b
&&
b
.
addClass
(
"
active
"
)})),
a
.
support
.
transition
&&
this
.
$element
.
hasClass
(
"
slide
"
)){
if
(
this
.
$element
.
trigger
(
j
),
j
.
isDefaultPrevented
())
return
;
e
.
addClass
(
b
),
e
[
0
].
offsetWidth
,
d
.
addClass
(
g
),
e
.
addClass
(
g
),
d
.
one
(
a
.
support
.
transition
.
end
,
function
(){
e
.
removeClass
([
b
,
g
].
join
(
"
"
)).
addClass
(
"
active
"
),
d
.
removeClass
([
"
active
"
,
g
].
join
(
"
"
)),
i
.
sliding
=!
1
,
setTimeout
(
function
(){
i
.
$element
.
trigger
(
"
slid
"
)},
0
)}).
emulateTransitionEnd
(
600
)}
else
{
if
(
this
.
$element
.
trigger
(
j
),
j
.
isDefaultPrevented
())
return
;
d
.
removeClass
(
"
active
"
),
e
.
addClass
(
"
active
"
),
this
.
sliding
=!
1
,
this
.
$element
.
trigger
(
"
slid
"
)}
return
f
&&
this
.
cycle
(),
this
}};
var
c
=
a
.
fn
.
carousel
;
a
.
fn
.
carousel
=
function
(
c
){
return
this
.
each
(
function
(){
var
d
=
a
(
this
),
e
=
d
.
data
(
"
bs.carousel
"
),
f
=
a
.
extend
({},
b
.
DEFAULTS
,
d
.
data
(),
"
object
"
==
typeof
c
&&
c
),
g
=
"
string
"
==
typeof
c
?
c
:
f
.
slide
;
e
||
d
.
data
(
"
bs.carousel
"
,
e
=
new
b
(
this
,
f
)),
"
number
"
==
typeof
c
?
e
.
to
(
c
):
g
?
e
[
g
]():
f
.
interval
&&
e
.
pause
().
cycle
()})},
a
.
fn
.
carousel
.
Constructor
=
b
,
a
.
fn
.
carousel
.
noConflict
=
function
(){
return
a
.
fn
.
carousel
=
c
,
this
},
a
(
document
).
on
(
"
click.bs.carousel.data-api
"
,
"
[data-slide], [data-slide-to]
"
,
function
(
b
){
var
c
,
d
=
a
(
this
),
e
=
a
(
d
.
attr
(
"
data-target
"
)
||
(
c
=
d
.
attr
(
"
href
"
))
&&
c
.
replace
(
/.*
(?=
#
[^\s]
+$
)
/
,
""
)),
f
=
a
.
extend
({},
e
.
data
(),
d
.
data
()),
g
=
d
.
attr
(
"
data-slide-to
"
);
g
&&
(
f
.
interval
=!
1
),
e
.
carousel
(
f
),(
g
=
d
.
attr
(
"
data-slide-to
"
))
&&
e
.
data
(
"
bs.carousel
"
).
to
(
g
),
b
.
preventDefault
()}),
a
(
window
).
on
(
"
load
"
,
function
(){
a
(
'
[data-ride="carousel"]
'
).
each
(
function
(){
var
b
=
a
(
this
);
b
.
carousel
(
b
.
data
())})})}(
window
.
jQuery
),
+
function
(
a
){
"
use strict
"
;
var
b
=
function
(
c
,
d
){
this
.
$element
=
a
(
c
),
this
.
options
=
a
.
extend
({},
b
.
DEFAULTS
,
d
),
this
.
transitioning
=
null
,
this
.
options
.
parent
&&
(
this
.
$parent
=
a
(
this
.
options
.
parent
)),
this
.
options
.
toggle
&&
this
.
toggle
()};
b
.
DEFAULTS
=
{
toggle
:
!
0
},
b
.
prototype
.
dimension
=
function
(){
var
a
=
this
.
$element
.
hasClass
(
"
width
"
);
return
a
?
"
width
"
:
"
height
"
},
b
.
prototype
.
show
=
function
(){
if
(
!
this
.
transitioning
&&!
this
.
$element
.
hasClass
(
"
in
"
)){
var
b
=
a
.
Event
(
"
show.bs.collapse
"
);
if
(
this
.
$element
.
trigger
(
b
),
!
b
.
isDefaultPrevented
()){
var
c
=
this
.
$parent
&&
this
.
$parent
.
find
(
"
> .accordion-group > .in
"
);
if
(
c
&&
c
.
length
){
var
d
=
c
.
data
(
"
bs.collapse
"
);
if
(
d
&&
d
.
transitioning
)
return
;
c
.
collapse
(
"
hide
"
),
d
||
c
.
data
(
"
bs.collapse
"
,
null
)}
var
e
=
this
.
dimension
();
this
.
$element
.
removeClass
(
"
collapse
"
).
addClass
(
"
collapsing
"
)[
e
](
0
),
this
.
transitioning
=
1
;
var
f
=
function
(){
this
.
$element
.
removeClass
(
"
collapsing
"
).
addClass
(
"
in
"
)[
e
](
"
auto
"
),
this
.
transitioning
=
0
,
this
.
$element
.
trigger
(
"
shown.bs.collapse
"
)};
if
(
!
a
.
support
.
transition
)
return
f
.
call
(
this
);
var
g
=
a
.
camelCase
([
"
scroll
"
,
e
].
join
(
"
-
"
));
this
.
$element
.
one
(
a
.
support
.
transition
.
end
,
a
.
proxy
(
f
,
this
)).
emulateTransitionEnd
(
350
)[
e
](
this
.
$element
[
0
][
g
])}}},
b
.
prototype
.
hide
=
function
(){
if
(
!
this
.
transitioning
&&
this
.
$element
.
hasClass
(
"
in
"
)){
var
b
=
a
.
Event
(
"
hide.bs.collapse
"
);
if
(
this
.
$element
.
trigger
(
b
),
!
b
.
isDefaultPrevented
()){
var
c
=
this
.
dimension
();
this
.
$element
[
c
](
this
.
$element
[
c
]())[
0
].
offsetHeight
,
this
.
$element
.
addClass
(
"
collapsing
"
).
removeClass
(
"
collapse
"
).
removeClass
(
"
in
"
),
this
.
transitioning
=
1
;
var
d
=
function
(){
this
.
transitioning
=
0
,
this
.
$element
.
trigger
(
"
hidden.bs.collapse
"
).
removeClass
(
"
collapsing
"
).
addClass
(
"
collapse
"
)};
return
a
.
support
.
transition
?(
this
.
$element
[
c
](
0
).
one
(
a
.
support
.
transition
.
end
,
a
.
proxy
(
d
,
this
)).
emulateTransitionEnd
(
350
),
void
0
):
d
.
call
(
this
)}}},
b
.
prototype
.
toggle
=
function
(){
this
[
this
.
$element
.
hasClass
(
"
in
"
)?
"
hide
"
:
"
show
"
]()};
var
c
=
a
.
fn
.
collapse
;
a
.
fn
.
collapse
=
function
(
c
){
return
this
.
each
(
function
(){
var
d
=
a
(
this
),
e
=
d
.
data
(
"
bs.collapse
"
),
f
=
a
.
extend
({},
b
.
DEFAULTS
,
d
.
data
(),
"
object
"
==
typeof
c
&&
c
);
e
||
d
.
data
(
"
bs.collapse
"
,
e
=
new
b
(
this
,
f
)),
"
string
"
==
typeof
c
&&
e
[
c
]()})},
a
.
fn
.
collapse
.
Constructor
=
b
,
a
.
fn
.
collapse
.
noConflict
=
function
(){
return
a
.
fn
.
collapse
=
c
,
this
},
a
(
document
).
on
(
"
click.bs.collapse.data-api
"
,
"
[data-toggle=collapse]
"
,
function
(
b
){
var
c
,
d
=
a
(
this
),
e
=
d
.
attr
(
"
data-target
"
)
||
b
.
preventDefault
()
||
(
c
=
d
.
attr
(
"
href
"
))
&&
c
.
replace
(
/.*
(?=
#
[^\s]
+$
)
/
,
""
),
f
=
a
(
e
),
g
=
f
.
data
(
"
bs.collapse
"
),
h
=
g
?
"
toggle
"
:
d
.
data
(),
i
=
d
.
attr
(
"
data-parent
"
),
j
=
i
&&
a
(
i
);
g
&&
g
.
transitioning
||
(
j
&&
j
.
find
(
"
[data-toggle=collapse][data-parent=
"
+
i
+
"
]
"
).
not
(
d
).
addClass
(
"
collapsed
"
),
d
[
f
.
hasClass
(
"
in
"
)?
"
addClass
"
:
"
removeClass
"
](
"
collapsed
"
)),
f
.
collapse
(
h
)})}(
window
.
jQuery
),
+
function
(
a
){
"
use strict
"
;
function
b
(){
a
(
d
).
remove
(),
a
(
e
).
each
(
function
(
b
){
var
d
=
c
(
a
(
this
));
d
.
hasClass
(
"
open
"
)
&&
(
d
.
trigger
(
b
=
a
.
Event
(
"
hide.bs.dropdown
"
)),
b
.
isDefaultPrevented
()
||
d
.
removeClass
(
"
open
"
).
trigger
(
"
hidden.bs.dropdown
"
))})}
function
c
(
b
){
var
c
=
b
.
attr
(
"
data-target
"
);
c
||
(
c
=
b
.
attr
(
"
href
"
),
c
=
c
&&
/#/
.
test
(
c
)
&&
c
.
replace
(
/.*
(?=
#
[^\s]
*$
)
/
,
""
));
var
d
=
c
&&
a
(
c
);
return
d
&&
d
.
length
?
d
:
b
.
parent
()}
var
d
=
"
.dropdown-backdrop
"
,
e
=
"
[data-toggle=dropdown]
"
,
f
=
function
(
b
){
a
(
b
).
on
(
"
click.bs.dropdown
"
,
this
.
toggle
)};
f
.
prototype
.
toggle
=
function
(
d
){
var
e
=
a
(
this
);
if
(
!
e
.
is
(
"
.disabled, :disabled
"
)){
var
f
=
c
(
e
),
g
=
f
.
hasClass
(
"
open
"
);
if
(
b
(),
!
g
){
if
(
"
ontouchstart
"
in
document
.
documentElement
&&
a
(
'
<div class="dropdown-backdrop"/>
'
).
insertAfter
(
a
(
this
)).
on
(
"
click
"
,
b
),
f
.
trigger
(
d
=
a
.
Event
(
"
show.bs.dropdown
"
)),
d
.
isDefaultPrevented
())
return
;
f
.
toggleClass
(
"
open
"
).
trigger
(
"
shown.bs.dropdown
"
)}
return
e
.
focus
(),
!
1
}},
f
.
prototype
.
keydown
=
function
(
b
){
if
(
/
(
38|40|27
)
/
.
test
(
b
.
keyCode
)){
var
d
=
a
(
this
);
if
(
b
.
preventDefault
(),
b
.
stopPropagation
(),
!
d
.
is
(
"
.disabled, :disabled
"
)){
var
f
=
c
(
d
),
g
=
f
.
hasClass
(
"
open
"
);
if
(
!
g
||
g
&&
27
==
b
.
keyCode
)
return
27
==
b
.
which
&&
f
.
find
(
e
).
focus
(),
d
.
click
();
var
h
=
a
(
"
[role=menu] li:not(.divider):visible a
"
,
f
);
if
(
h
.
length
){
var
i
=
h
.
index
(
h
.
filter
(
"
:focus
"
));
38
==
b
.
keyCode
&&
i
>
0
&&
i
--
,
40
==
b
.
keyCode
&&
i
<
h
.
length
-
1
&&
i
++
,
~
i
||
(
i
=
0
),
h
.
eq
(
i
).
focus
()}}}};
var
g
=
a
.
fn
.
dropdown
;
a
.
fn
.
dropdown
=
function
(
b
){
return
this
.
each
(
function
(){
var
c
=
a
(
this
),
d
=
c
.
data
(
"
dropdown
"
);
d
||
c
.
data
(
"
dropdown
"
,
d
=
new
f
(
this
)),
"
string
"
==
typeof
b
&&
d
[
b
].
call
(
c
)})},
a
.
fn
.
dropdown
.
Constructor
=
f
,
a
.
fn
.
dropdown
.
noConflict
=
function
(){
return
a
.
fn
.
dropdown
=
g
,
this
},
a
(
document
).
on
(
"
click.bs.dropdown.data-api
"
,
b
).
on
(
"
click.bs.dropdown.data-api
"
,
"
.dropdown form
"
,
function
(
a
){
a
.
stopPropagation
()}).
on
(
"
click.bs.dropdown.data-api
"
,
e
,
f
.
prototype
.
toggle
).
on
(
"
keydown.bs.dropdown.data-api
"
,
e
+
"
, [role=menu]
"
,
f
.
prototype
.
keydown
)}(
window
.
jQuery
),
+
function
(
a
){
"
use strict
"
;
var
b
=
function
(
b
,
c
){
this
.
options
=
c
,
this
.
$element
=
a
(
b
).
on
(
"
click.dismiss.modal
"
,
'
[data-dismiss="modal"]
'
,
a
.
proxy
(
this
.
hide
,
this
)),
this
.
$backdrop
=
this
.
isShown
=
null
,
this
.
options
.
remote
&&
this
.
$element
.
find
(
"
.modal-body
"
).
load
(
this
.
options
.
remote
)};
b
.
DEFAULTS
=
{
backdrop
:
!
0
,
keyboard
:
!
0
,
show
:
!
0
},
b
.
prototype
.
toggle
=
function
(){
return
this
[
this
.
isShown
?
"
hide
"
:
"
show
"
]()},
b
.
prototype
.
show
=
function
(){
var
b
=
this
,
c
=
a
.
Event
(
"
show.bs.modal
"
);
this
.
$element
.
trigger
(
c
),
this
.
isShown
||
c
.
isDefaultPrevented
()
||
(
this
.
isShown
=!
0
,
this
.
escape
(),
this
.
backdrop
(
function
(){
var
c
=
a
.
support
.
transition
&&
b
.
$element
.
hasClass
(
"
fade
"
);
b
.
$element
.
parent
().
length
||
b
.
$element
.
appendTo
(
document
.
body
),
b
.
$element
.
show
(),
c
&&
b
.
$element
[
0
].
offsetWidth
,
b
.
$element
.
addClass
(
"
in
"
).
attr
(
"
aria-hidden
"
,
!
1
),
b
.
enforceFocus
(),
c
?
b
.
$element
.
one
(
a
.
support
.
transition
.
end
,
function
(){
b
.
$element
.
focus
().
trigger
(
"
shown.bs.modal
"
)}).
emulateTransitionEnd
(
300
):
b
.
$element
.
focus
().
trigger
(
"
shown.bs.modal
"
)}))},
b
.
prototype
.
hide
=
function
(
b
){
b
&&
b
.
preventDefault
(),
b
=
a
.
Event
(
"
hide.bs.modal
"
),
this
.
$element
.
trigger
(
b
),
this
.
isShown
&&!
b
.
isDefaultPrevented
()
&&
(
this
.
isShown
=!
1
,
this
.
escape
(),
a
(
document
).
off
(
"
focusin.bs.modal
"
),
this
.
$element
.
removeClass
(
"
in
"
).
attr
(
"
aria-hidden
"
,
!
0
),
a
.
support
.
transition
&&
this
.
$element
.
hasClass
(
"
fade
"
)?
this
.
$element
.
one
(
a
.
support
.
transition
.
end
,
a
.
proxy
(
this
.
hideModal
,
this
)).
emulateTransitionEnd
(
300
):
this
.
hideModal
())},
b
.
prototype
.
enforceFocus
=
function
(){
a
(
document
).
off
(
"
focusin.bs.modal
"
).
on
(
"
focusin.bs.modal
"
,
a
.
proxy
(
function
(
a
){
this
.
$element
[
0
]
===
a
.
target
||
this
.
$element
.
has
(
a
.
target
).
length
||
this
.
$element
.
focus
()},
this
))},
b
.
prototype
.
escape
=
function
(){
this
.
isShown
&&
this
.
options
.
keyboard
?
this
.
$element
.
on
(
"
keyup.dismiss.bs.modal
"
,
a
.
proxy
(
function
(
a
){
27
==
a
.
which
&&
this
.
hide
()},
this
)):
this
.
isShown
||
this
.
$element
.
off
(
"
keyup.dismiss.bs.modal
"
)},
b
.
prototype
.
hideModal
=
function
(){
var
a
=
this
;
this
.
$element
.
hide
(),
this
.
backdrop
(
function
(){
a
.
removeBackdrop
(),
a
.
$element
.
trigger
(
"
hidden.bs.modal
"
)})},
b
.
prototype
.
removeBackdrop
=
function
(){
this
.
$backdrop
&&
this
.
$backdrop
.
remove
(),
this
.
$backdrop
=
null
},
b
.
prototype
.
backdrop
=
function
(
b
){
var
c
=
this
.
$element
.
hasClass
(
"
fade
"
)?
"
fade
"
:
""
;
if
(
this
.
isShown
&&
this
.
options
.
backdrop
){
var
d
=
a
.
support
.
transition
&&
c
;
if
(
this
.
$backdrop
=
a
(
'
<div class="modal-backdrop
'
+
c
+
'
" />
'
).
appendTo
(
document
.
body
),
this
.
$element
.
on
(
"
click
"
,
a
.
proxy
(
function
(
a
){
a
.
target
===
a
.
currentTarget
&&
(
"
static
"
==
this
.
options
.
backdrop
?
this
.
$element
[
0
].
focus
.
call
(
this
.
$element
[
0
]):
this
.
hide
.
call
(
this
))},
this
)),
d
&&
this
.
$backdrop
[
0
].
offsetWidth
,
this
.
$backdrop
.
addClass
(
"
in
"
),
!
b
)
return
;
d
?
this
.
$backdrop
.
one
(
a
.
support
.
transition
.
end
,
b
).
emulateTransitionEnd
(
150
):
b
()}
else
!
this
.
isShown
&&
this
.
$backdrop
?(
this
.
$backdrop
.
removeClass
(
"
in
"
),
a
.
support
.
transition
&&
this
.
$element
.
hasClass
(
"
fade
"
)?
this
.
$backdrop
.
one
(
a
.
support
.
transition
.
end
,
b
).
emulateTransitionEnd
(
150
):
b
()):
b
&&
b
()};
var
c
=
a
.
fn
.
modal
;
a
.
fn
.
modal
=
function
(
c
){
return
this
.
each
(
function
(){
var
d
=
a
(
this
),
e
=
d
.
data
(
"
bs.modal
"
),
f
=
a
.
extend
({},
b
.
DEFAULTS
,
d
.
data
(),
"
object
"
==
typeof
c
&&
c
);
e
||
d
.
data
(
"
bs.modal
"
,
e
=
new
b
(
this
,
f
)),
"
string
"
==
typeof
c
?
e
[
c
]():
f
.
show
&&
e
.
show
()})},
a
.
fn
.
modal
.
Constructor
=
b
,
a
.
fn
.
modal
.
noConflict
=
function
(){
return
a
.
fn
.
modal
=
c
,
this
},
a
(
document
).
on
(
"
click.bs.modal.data-api
"
,
'
[data-toggle="modal"]
'
,
function
(
b
){
var
c
=
a
(
this
),
d
=
c
.
attr
(
"
href
"
),
e
=
a
(
c
.
attr
(
"
data-target
"
)
||
d
&&
d
.
replace
(
/.*
(?=
#
[^\s]
+$
)
/
,
""
)),
f
=
e
.
data
(
"
modal
"
)?
"
toggle
"
:
a
.
extend
({
remote
:
!
/#/
.
test
(
d
)
&&
d
},
e
.
data
(),
c
.
data
());
b
.
preventDefault
(),
e
.
modal
(
f
).
one
(
"
hide
"
,
function
(){
c
.
is
(
"
:visible
"
)
&&
c
.
focus
()})});
var
d
=
a
(
document
.
body
).
on
(
"
shown.bs.modal
"
,
"
.modal
"
,
function
(){
d
.
addClass
(
"
modal-open
"
)}).
on
(
"
hidden.bs.modal
"
,
"
.modal
"
,
function
(){
d
.
removeClass
(
"
modal-open
"
)})}(
window
.
jQuery
),
+
function
(
a
){
"
use strict
"
;
var
b
=
function
(
a
,
b
){
this
.
type
=
this
.
options
=
this
.
enabled
=
this
.
timeout
=
this
.
hoverState
=
this
.
$element
=
null
,
this
.
init
(
"
tooltip
"
,
a
,
b
)};
b
.
DEFAULTS
=
{
animation
:
!
0
,
placement
:
"
top
"
,
selector
:
!
1
,
template
:
'
<div class="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>
'
,
trigger
:
"
hover focus
"
,
title
:
""
,
delay
:
0
,
html
:
!
1
,
container
:
!
1
},
b
.
prototype
.
init
=
function
(
b
,
c
,
d
){
this
.
enabled
=!
0
,
this
.
type
=
b
,
this
.
$element
=
a
(
c
),
this
.
options
=
this
.
getOptions
(
d
);
for
(
var
e
=
this
.
options
.
trigger
.
split
(
"
"
),
f
=
e
.
length
;
f
--
;){
var
g
=
e
[
f
];
if
(
"
click
"
==
g
)
this
.
$element
.
on
(
"
click.
"
+
this
.
type
,
this
.
options
.
selector
,
a
.
proxy
(
this
.
toggle
,
this
));
else
if
(
"
manual
"
!=
g
){
var
h
=
"
hover
"
==
g
?
"
mouseenter
"
:
"
focus
"
,
i
=
"
hover
"
==
g
?
"
mouseleave
"
:
"
blur
"
;
this
.
$element
.
on
(
h
+
"
.
"
+
this
.
type
,
this
.
options
.
selector
,
a
.
proxy
(
this
.
enter
,
this
)),
this
.
$element
.
on
(
i
+
"
.
"
+
this
.
type
,
this
.
options
.
selector
,
a
.
proxy
(
this
.
leave
,
this
))}}
this
.
options
.
selector
?
this
.
_options
=
a
.
extend
({},
this
.
options
,{
trigger
:
"
manual
"
,
selector
:
""
}):
this
.
fixTitle
()},
b
.
prototype
.
getDefaults
=
function
(){
return
b
.
DEFAULTS
},
b
.
prototype
.
getOptions
=
function
(
b
){
return
b
=
a
.
extend
({},
this
.
getDefaults
(),
this
.
$element
.
data
(),
b
),
b
.
delay
&&
"
number
"
==
typeof
b
.
delay
&&
(
b
.
delay
=
{
show
:
b
.
delay
,
hide
:
b
.
delay
}),
b
},
b
.
prototype
.
enter
=
function
(
b
){
var
c
=
this
.
getDefaults
(),
d
=
{};
this
.
_options
&&
a
.
each
(
this
.
_options
,
function
(
a
,
b
){
c
[
a
]
!=
b
&&
(
d
[
a
]
=
b
)});
var
e
=
b
instanceof
this
.
constructor
?
b
:
a
(
b
.
currentTarget
)[
this
.
type
](
d
).
data
(
"
bs.
"
+
this
.
type
);
return
clearTimeout
(
e
.
timeout
),
e
.
options
.
delay
&&
e
.
options
.
delay
.
show
?(
e
.
hoverState
=
"
in
"
,
e
.
timeout
=
setTimeout
(
function
(){
"
in
"
==
e
.
hoverState
&&
e
.
show
()},
e
.
options
.
delay
.
show
),
void
0
):
e
.
show
()},
b
.
prototype
.
leave
=
function
(
b
){
var
c
=
b
instanceof
this
.
constructor
?
b
:
a
(
b
.
currentTarget
)[
this
.
type
](
this
.
_options
).
data
(
"
bs.
"
+
this
.
type
);
return
clearTimeout
(
c
.
timeout
),
c
.
options
.
delay
&&
c
.
options
.
delay
.
hide
?(
c
.
hoverState
=
"
out
"
,
c
.
timeout
=
setTimeout
(
function
(){
"
out
"
==
c
.
hoverState
&&
c
.
hide
()},
c
.
options
.
delay
.
hide
),
void
0
):
c
.
hide
()},
b
.
prototype
.
show
=
function
(){
var
b
=
a
.
Event
(
"
show.bs.
"
+
this
.
type
);
if
(
this
.
hasContent
()
&&
this
.
enabled
){
if
(
this
.
$element
.
trigger
(
b
),
b
.
isDefaultPrevented
())
return
;
var
c
=
this
.
tip
();
this
.
setContent
(),
this
.
options
.
animation
&&
c
.
addClass
(
"
fade
"
);
var
d
=
"
function
"
==
typeof
this
.
options
.
placement
?
this
.
options
.
placement
.
call
(
this
,
c
[
0
],
this
.
$element
[
0
]):
this
.
options
.
placement
,
e
=
/
\s?
auto
?\s?
/i
,
f
=
e
.
test
(
d
);
f
&&
(
d
=
d
.
replace
(
e
,
""
)
||
"
top
"
),
c
.
detach
().
css
({
top
:
0
,
left
:
0
,
display
:
"
block
"
}).
addClass
(
d
),
this
.
options
.
container
?
c
.
appendTo
(
this
.
options
.
container
):
c
.
insertAfter
(
this
.
$element
);
var
g
=
this
.
getPosition
(),
h
=
c
[
0
].
offsetWidth
,
i
=
c
[
0
].
offsetHeight
;
if
(
f
){
var
j
=
this
.
$element
.
parent
(),
k
=
d
,
l
=
document
.
documentElement
.
scrollTop
||
document
.
body
.
scrollTop
,
m
=
"
body
"
==
this
.
options
.
container
?
window
.
innerWidth
:
j
.
outerWidth
(),
n
=
"
body
"
==
this
.
options
.
container
?
window
.
innerHeight
:
j
.
outerHeight
(),
o
=
"
body
"
==
this
.
options
.
container
?
0
:
j
.
offset
().
left
;
d
=
"
bottom
"
==
d
&&
g
.
top
+
g
.
height
+
i
-
l
>
n
?
"
top
"
:
"
top
"
==
d
&&
g
.
top
-
l
-
i
<
0
?
"
bottom
"
:
"
right
"
==
d
&&
g
.
right
+
h
>
m
?
"
left
"
:
"
left
"
==
d
&&
g
.
left
-
h
<
o
?
"
right
"
:
d
,
c
.
removeClass
(
k
).
addClass
(
d
)}
var
p
=
"
bottom
"
==
d
?{
top
:
g
.
top
+
g
.
height
,
left
:
g
.
left
+
g
.
width
/
2
-
h
/
2
}:
"
top
"
==
d
?{
top
:
g
.
top
-
i
,
left
:
g
.
left
+
g
.
width
/
2
-
h
/
2
}:
"
left
"
==
d
?{
top
:
g
.
top
+
g
.
height
/
2
-
i
/
2
,
left
:
g
.
left
-
h
}:{
top
:
g
.
top
+
g
.
height
/
2
-
i
/
2
,
left
:
g
.
left
+
g
.
width
};
this
.
applyPlacement
(
p
,
d
),
this
.
$element
.
trigger
(
"
shown.bs.
"
+
this
.
type
)}},
b
.
prototype
.
applyPlacement
=
function
(
a
,
b
){
var
c
,
d
=
this
.
tip
(),
e
=
d
[
0
].
offsetWidth
,
f
=
d
[
0
].
offsetHeight
;
a
.
top
=
a
.
top
+
parseInt
(
d
.
css
(
"
margin-top
"
),
10
),
a
.
left
=
a
.
left
+
parseInt
(
d
.
css
(
"
margin-left
"
),
10
),
d
.
offset
(
a
).
addClass
(
"
in
"
);
var
g
=
d
[
0
].
offsetWidth
,
h
=
d
[
0
].
offsetHeight
;
if
(
"
top
"
==
b
&&
h
!=
f
&&
(
c
=!
0
,
a
.
top
=
a
.
top
+
f
-
h
),
"
bottom
"
==
b
||
"
top
"
==
b
){
var
i
=
0
;
a
.
left
<
0
&&
(
i
=-
2
*
a
.
left
,
a
.
left
=
0
,
d
.
offset
(
a
),
g
=
d
[
0
].
offsetWidth
,
h
=
d
[
0
].
offsetHeight
),
this
.
replaceArrow
(
i
-
e
+
g
,
g
,
"
left
"
)}
else
this
.
replaceArrow
(
h
-
f
,
h
,
"
top
"
);
c
&&
d
.
offset
(
a
)},
b
.
prototype
.
replaceArrow
=
function
(
a
,
b
,
c
){
this
.
arrow
().
css
(
c
,
a
?
50
*
(
1
-
a
/
b
)
+
"
%
"
:
""
)},
b
.
prototype
.
setContent
=
function
(){
var
a
=
this
.
tip
(),
b
=
this
.
getTitle
();
a
.
find
(
"
.tooltip-inner
"
)[
this
.
options
.
html
?
"
html
"
:
"
text
"
](
b
),
a
.
removeClass
(
"
fade in top bottom left right
"
)},
b
.
prototype
.
hide
=
function
(){
var
b
=
this
.
tip
(),
c
=
a
.
Event
(
"
hide.bs.
"
+
this
.
type
);
return
this
.
$element
.
trigger
(
c
),
c
.
isDefaultPrevented
()?
void
0
:(
b
.
removeClass
(
"
in
"
),
a
.
support
.
transition
&&
this
.
$tip
.
hasClass
(
"
fade
"
)?
b
.
one
(
a
.
support
.
transition
.
end
,
b
.
detach
).
emulateTransitionEnd
(
150
):
b
.
detach
(),
this
.
$element
.
trigger
(
"
hidden.bs.
"
+
this
.
type
),
this
)},
b
.
prototype
.
fixTitle
=
function
(){
var
a
=
this
.
$element
;(
a
.
attr
(
"
title
"
)
||
"
string
"
!=
typeof
a
.
attr
(
"
data-original-title
"
))
&&
a
.
attr
(
"
data-original-title
"
,
a
.
attr
(
"
title
"
)
||
""
).
attr
(
"
title
"
,
""
)},
b
.
prototype
.
hasContent
=
function
(){
return
this
.
getTitle
()},
b
.
prototype
.
getPosition
=
function
(){
var
b
=
this
.
$element
[
0
];
return
a
.
extend
({},
"
function
"
==
typeof
b
.
getBoundingClientRect
?
b
.
getBoundingClientRect
():{
width
:
b
.
offsetWidth
,
height
:
b
.
offsetHeight
},
this
.
$element
.
offset
())},
b
.
prototype
.
getTitle
=
function
(){
var
a
,
b
=
this
.
$element
,
c
=
this
.
options
;
return
a
=
b
.
attr
(
"
data-original-title
"
)
||
(
"
function
"
==
typeof
c
.
title
?
c
.
title
.
call
(
b
[
0
]):
c
.
title
)},
b
.
prototype
.
tip
=
function
(){
return
this
.
$tip
=
this
.
$tip
||
a
(
this
.
options
.
template
)},
b
.
prototype
.
arrow
=
function
(){
return
this
.
$arrow
=
this
.
$arrow
||
this
.
tip
().
find
(
"
.tooltip-arrow
"
)},
b
.
prototype
.
validate
=
function
(){
this
.
$element
[
0
].
parentNode
||
(
this
.
hide
(),
this
.
$element
=
null
,
this
.
options
=
null
)},
b
.
prototype
.
enable
=
function
(){
this
.
enabled
=!
0
},
b
.
prototype
.
disable
=
function
(){
this
.
enabled
=!
1
},
b
.
prototype
.
toggleEnabled
=
function
(){
this
.
enabled
=!
this
.
enabled
},
b
.
prototype
.
toggle
=
function
(
b
){
var
c
=
b
?
a
(
b
.
currentTarget
)[
this
.
type
](
this
.
_options
).
data
(
"
bs.
"
+
this
.
type
):
this
;
c
.
tip
().
hasClass
(
"
in
"
)?
c
.
leave
(
c
):
c
.
enter
(
c
)},
b
.
prototype
.
destroy
=
function
(){
this
.
hide
().
$element
.
off
(
"
.
"
+
this
.
type
).
removeData
(
"
bs.
"
+
this
.
type
)};
var
c
=
a
.
fn
.
tooltip
;
a
.
fn
.
tooltip
=
function
(
c
){
return
this
.
each
(
function
(){
var
d
=
a
(
this
),
e
=
d
.
data
(
"
bs.tooltip
"
),
f
=
"
object
"
==
typeof
c
&&
c
;
e
||
d
.
data
(
"
bs.tooltip
"
,
e
=
new
b
(
this
,
f
)),
"
string
"
==
typeof
c
&&
e
[
c
]()})},
a
.
fn
.
tooltip
.
Constructor
=
b
,
a
.
fn
.
tooltip
.
noConflict
=
function
(){
return
a
.
fn
.
tooltip
=
c
,
this
}}(
window
.
jQuery
),
+
function
(
a
){
"
use strict
"
;
var
b
=
function
(
a
,
b
){
this
.
init
(
"
popover
"
,
a
,
b
)};
if
(
!
a
.
fn
.
tooltip
)
throw
new
Error
(
"
Popover requires tooltip.js
"
);
b
.
DEFAULTS
=
a
.
extend
({},
a
.
fn
.
tooltip
.
Constructor
.
DEFAULTS
,{
placement
:
"
right
"
,
trigger
:
"
click
"
,
content
:
""
,
template
:
'
<div class="popover"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>
'
}),
b
.
prototype
=
a
.
extend
({},
a
.
fn
.
tooltip
.
Constructor
.
prototype
),
b
.
prototype
.
constructor
=
b
,
b
.
prototype
.
getDefaults
=
function
(){
return
b
.
DEFAULTS
},
b
.
prototype
.
setContent
=
function
(){
var
a
=
this
.
tip
(),
b
=
this
.
getTitle
(),
c
=
this
.
getContent
();
a
.
find
(
"
.popover-title
"
)[
this
.
options
.
html
?
"
html
"
:
"
text
"
](
b
),
a
.
find
(
"
.popover-content
"
)[
this
.
options
.
html
?
"
html
"
:
"
text
"
](
c
),
a
.
removeClass
(
"
fade top bottom left right in
"
),
a
.
find
(
"
.popover-title:empty
"
).
hide
()},
b
.
prototype
.
hasContent
=
function
(){
return
this
.
getTitle
()
||
this
.
getContent
()},
b
.
prototype
.
getContent
=
function
(){
var
a
=
this
.
$element
,
b
=
this
.
options
;
return
a
.
attr
(
"
data-content
"
)
||
(
"
function
"
==
typeof
b
.
content
?
b
.
content
.
call
(
a
[
0
]):
b
.
content
)},
b
.
prototype
.
tip
=
function
(){
return
this
.
$tip
||
(
this
.
$tip
=
a
(
this
.
options
.
template
)),
this
.
$tip
},
b
.
prototype
.
destroy
=
function
(){
this
.
hide
().
$element
.
off
(
"
.
"
+
this
.
type
).
removeData
(
this
.
type
)};
var
c
=
a
.
fn
.
popover
;
a
.
fn
.
popover
=
function
(
c
){
return
this
.
each
(
function
(){
var
d
=
a
(
this
),
e
=
d
.
data
(
"
bs.popover
"
),
f
=
"
object
"
==
typeof
c
&&
c
;
e
||
d
.
data
(
"
bs.popover
"
,
e
=
new
b
(
this
,
f
)),
"
string
"
==
typeof
c
&&
e
[
c
]()})},
a
.
fn
.
popover
.
Constructor
=
b
,
a
.
fn
.
popover
.
noConflict
=
function
(){
return
a
.
fn
.
popover
=
c
,
this
}}(
window
.
jQuery
),
+
function
(
a
){
"
use strict
"
;
function
b
(
c
,
d
){
var
e
,
f
=
a
.
proxy
(
this
.
process
,
this
),
g
=
a
(
c
).
is
(
"
body
"
)?
a
(
window
):
a
(
c
);
this
.
$body
=
a
(
"
body
"
),
this
.
$scrollElement
=
g
.
on
(
"
scroll.bs.scroll-spy.data-api
"
,
f
),
this
.
options
=
a
.
extend
({},
b
.
DEFAULTS
,
d
),
this
.
selector
=
(
this
.
options
.
target
||
(
e
=
a
(
c
).
attr
(
"
href
"
))
&&
e
.
replace
(
/.*
(?=
#
[^\s]
+$
)
/
,
""
)
||
""
)
+
"
.nav li > a
"
,
this
.
offsets
=
a
([]),
this
.
targets
=
a
([]),
this
.
activeTarget
=
null
,
this
.
refresh
(),
this
.
process
()}
b
.
DEFAULTS
=
{
offset
:
10
},
b
.
prototype
.
refresh
=
function
(){
this
.
offsets
=
a
([]),
this
.
targets
=
a
([]);
var
b
=
this
;
this
.
$body
.
find
(
this
.
selector
).
map
(
function
(){
var
c
=
a
(
this
),
d
=
c
.
data
(
"
target
"
)
||
c
.
attr
(
"
href
"
),
e
=
/^#
\w
/
.
test
(
d
)
&&
a
(
d
);
return
e
&&
e
.
length
&&
[[
e
.
offset
().
top
+
(
!
a
.
isWindow
(
b
.
$scrollElement
.
get
(
0
))
&&
b
.
$scrollElement
.
scrollTop
()),
d
]]
||
null
}).
sort
(
function
(
a
,
b
){
return
a
[
0
]
-
b
[
0
]}).
each
(
function
(){
b
.
offsets
.
push
(
this
[
0
]),
b
.
targets
.
push
(
this
[
1
])})},
b
.
prototype
.
process
=
function
(){
var
a
,
b
=
this
.
$scrollElement
.
scrollTop
()
+
this
.
options
.
offset
,
c
=
this
.
$scrollElement
[
0
].
scrollHeight
||
this
.
$body
[
0
].
scrollHeight
,
d
=
c
-
this
.
$scrollElement
.
height
(),
e
=
this
.
offsets
,
f
=
this
.
targets
,
g
=
this
.
activeTarget
;
if
(
b
>=
d
)
return
g
!=
(
a
=
f
.
last
()[
0
])
&&
this
.
activate
(
a
);
for
(
a
=
e
.
length
;
a
--
;)
g
!=
f
[
a
]
&&
b
>=
e
[
a
]
&&
(
!
e
[
a
+
1
]
||
b
<=
e
[
a
+
1
])
&&
this
.
activate
(
f
[
a
])},
b
.
prototype
.
activate
=
function
(
b
){
this
.
activeTarget
=
b
,
a
(
this
.
selector
).
parents
(
"
.active
"
).
removeClass
(
"
active
"
);
var
c
=
this
.
selector
+
'
[data-target="
'
+
b
+
'
"],
'
+
this
.
selector
+
'
[href="
'
+
b
+
'
"]
'
,
d
=
a
(
c
).
parents
(
"
li
"
).
addClass
(
"
active
"
);
d
.
parent
(
"
.dropdown-menu
"
).
length
&&
(
d
=
d
.
closest
(
"
li.dropdown
"
).
addClass
(
"
active
"
)),
d
.
trigger
(
"
activate
"
)};
var
c
=
a
.
fn
.
scrollspy
;
a
.
fn
.
scrollspy
=
function
(
c
){
return
this
.
each
(
function
(){
var
d
=
a
(
this
),
e
=
d
.
data
(
"
bs.scrollspy
"
),
f
=
"
object
"
==
typeof
c
&&
c
;
e
||
d
.
data
(
"
bs.scrollspy
"
,
e
=
new
b
(
this
,
f
)),
"
string
"
==
typeof
c
&&
e
[
c
]()})},
a
.
fn
.
scrollspy
.
Constructor
=
b
,
a
.
fn
.
scrollspy
.
noConflict
=
function
(){
return
a
.
fn
.
scrollspy
=
c
,
this
},
a
(
window
).
on
(
"
load
"
,
function
(){
a
(
'
[data-spy="scroll"]
'
).
each
(
function
(){
var
b
=
a
(
this
);
b
.
scrollspy
(
b
.
data
())})})}(
window
.
jQuery
),
+
function
(
a
){
"
use strict
"
;
var
b
=
function
(
b
){
this
.
element
=
a
(
b
)};
b
.
prototype
.
show
=
function
(){
var
b
=
this
.
element
,
c
=
b
.
closest
(
"
ul:not(.dropdown-menu)
"
),
d
=
b
.
attr
(
"
data-target
"
);
if
(
d
||
(
d
=
b
.
attr
(
"
href
"
),
d
=
d
&&
d
.
replace
(
/.*
(?=
#
[^\s]
*$
)
/
,
""
)),
!
b
.
parent
(
"
li
"
).
hasClass
(
"
active
"
)){
var
e
=
c
.
find
(
"
.active:last a
"
)[
0
],
f
=
a
.
Event
(
"
show.bs.tab
"
,{
relatedTarget
:
e
});
if
(
b
.
trigger
(
f
),
!
f
.
isDefaultPrevented
()){
var
g
=
a
(
d
);
this
.
activate
(
b
.
parent
(
"
li
"
),
c
),
this
.
activate
(
g
,
g
.
parent
(),
function
(){
b
.
trigger
({
type
:
"
shown.bs.tab
"
,
relatedTarget
:
e
})})}}},
b
.
prototype
.
activate
=
function
(
b
,
c
,
d
){
function
e
(){
f
.
removeClass
(
"
active
"
).
find
(
"
> .dropdown-menu > .active
"
).
removeClass
(
"
active
"
),
b
.
addClass
(
"
active
"
),
g
?(
b
[
0
].
offsetWidth
,
b
.
addClass
(
"
in
"
)):
b
.
removeClass
(
"
fade
"
),
b
.
parent
(
"
.dropdown-menu
"
)
&&
b
.
closest
(
"
li.dropdown
"
).
addClass
(
"
active
"
),
d
&&
d
()}
var
f
=
c
.
find
(
"
> .active
"
),
g
=
d
&&
a
.
support
.
transition
&&
f
.
hasClass
(
"
fade
"
);
g
?
f
.
one
(
a
.
support
.
transition
.
end
,
e
).
emulateTransitionEnd
(
150
):
e
(),
f
.
removeClass
(
"
in
"
)};
var
c
=
a
.
fn
.
tab
;
a
.
fn
.
tab
=
function
(
c
){
return
this
.
each
(
function
(){
var
d
=
a
(
this
),
e
=
d
.
data
(
"
bs.tab
"
);
e
||
d
.
data
(
"
bs.tab
"
,
e
=
new
b
(
this
)),
"
string
"
==
typeof
c
&&
e
[
c
]()})},
a
.
fn
.
tab
.
Constructor
=
b
,
a
.
fn
.
tab
.
noConflict
=
function
(){
return
a
.
fn
.
tab
=
c
,
this
},
a
(
document
).
on
(
"
click.bs.tab.data-api
"
,
'
[data-toggle="tab"], [data-toggle="pill"]
'
,
function
(
b
){
b
.
preventDefault
(),
a
(
this
).
tab
(
"
show
"
)})}(
window
.
jQuery
),
+
function
(
a
){
"
use strict
"
;
var
b
=
function
(
c
,
d
){
this
.
options
=
a
.
extend
({},
b
.
DEFAULTS
,
d
),
this
.
$window
=
a
(
window
).
on
(
"
scroll.bs.affix.data-api
"
,
a
.
proxy
(
this
.
checkPosition
,
this
)).
on
(
"
click.bs.affix.data-api
"
,
a
.
proxy
(
this
.
checkPositionWithEventLoop
,
this
)),
this
.
$element
=
a
(
c
),
this
.
affixed
=
this
.
unpin
=
null
,
this
.
checkPosition
()};
b
.
RESET
=
"
affix affix-top affix-bottom
"
,
b
.
DEFAULTS
=
{
offset
:
0
},
b
.
prototype
.
checkPositionWithEventLoop
=
function
(){
setTimeout
(
a
.
proxy
(
this
.
checkPosition
,
this
),
1
)},
b
.
prototype
.
checkPosition
=
function
(){
if
(
this
.
$element
.
is
(
"
:visible
"
)){
var
c
=
a
(
document
).
height
(),
d
=
this
.
$window
.
scrollTop
(),
e
=
this
.
$element
.
offset
(),
f
=
this
.
options
.
offset
,
g
=
f
.
top
,
h
=
f
.
bottom
;
"
object
"
!=
typeof
f
&&
(
h
=
g
=
f
),
"
function
"
==
typeof
g
&&
(
g
=
f
.
top
()),
"
function
"
==
typeof
h
&&
(
h
=
f
.
bottom
());
var
i
=
null
!=
this
.
unpin
&&
d
+
this
.
unpin
<=
e
.
top
?
!
1
:
null
!=
h
&&
e
.
top
+
this
.
$element
.
height
()
>=
c
-
h
?
"
bottom
"
:
null
!=
g
&&
g
>=
d
?
"
top
"
:
!
1
;
this
.
affixed
!==
i
&&
(
this
.
unpin
&&
this
.
$element
.
css
(
"
top
"
,
""
),
this
.
affixed
=
i
,
this
.
unpin
=
"
bottom
"
==
i
?
e
.
top
-
d
:
null
,
this
.
$element
.
removeClass
(
b
.
RESET
).
addClass
(
"
affix
"
+
(
i
?
"
-
"
+
i
:
""
)),
"
bottom
"
==
i
&&
this
.
$element
.
offset
({
top
:
document
.
body
.
offsetHeight
-
h
-
this
.
$element
.
height
()}))}};
var
c
=
a
.
fn
.
affix
;
a
.
fn
.
affix
=
function
(
c
){
return
this
.
each
(
function
(){
var
d
=
a
(
this
),
e
=
d
.
data
(
"
bs.affix
"
),
f
=
"
object
"
==
typeof
c
&&
c
;
e
||
d
.
data
(
"
bs.affix
"
,
e
=
new
b
(
this
,
f
)),
"
string
"
==
typeof
c
&&
e
[
c
]()})},
a
.
fn
.
affix
.
Constructor
=
b
,
a
.
fn
.
affix
.
noConflict
=
function
(){
return
a
.
fn
.
affix
=
c
,
this
},
a
(
window
).
on
(
"
load
"
,
function
(){
a
(
'
[data-spy="affix"]
'
).
each
(
function
(){
var
b
=
a
(
this
),
c
=
b
.
data
();
c
.
offset
=
c
.
offset
||
{},
c
.
offsetBottom
&&
(
c
.
offset
.
bottom
=
c
.
offsetBottom
),
c
.
offsetTop
&&
(
c
.
offset
.
top
=
c
.
offsetTop
),
b
.
affix
(
c
)})})}(
window
.
jQuery
);
\ No newline at end of file
This diff is collapsed.
Click to expand it.
javascript.html
+
65
-
4
View file @
27a656f7
...
...
@@ -856,9 +856,40 @@ $('#example').tooltip(options)
<h4>
.tooltip('destroy')
</h4>
<p>
Hides and destroys an element's tooltip.
</p>
{% highlight js %}$('#element').tooltip('destroy'){% endhighlight %}
</div>
<h3>
Events
</h3>
<table
class=
"table table-bordered table-striped"
>
<thead>
<tr>
<th
style=
"width: 150px;"
>
Event Type
</th>
<th>
Description
</th>
</tr>
</thead>
<tbody>
<tr>
<td>
show
</td>
<td>
This event fires immediately when the
<code>
show
</code>
instance method is called.
</td>
</tr>
<tr>
<td>
shown
</td>
<td>
This event is fired when the tooltip has been made visible to the user (will wait for CSS transitions to complete).
</td>
</tr>
<tr>
<td>
hide
</td>
<td>
This event is fired immediately when the
<code>
hide
</code>
instance method has been called.
</td>
</tr>
<tr>
<td>
hidden
</td>
<td>
This event is fired when the tooltip has finished being hidden from the user (will wait for CSS transitions to complete).
</td>
</tr>
</tbody>
</table>
{% highlight js %}
$('#myTooltip').on('hidden.bs.tooltip', function () {
// do something…
})
{% endhighlight %}
</div>
<!-- Popovers
================================================== -->
...
...
@@ -1046,10 +1077,40 @@ $('#example').tooltip(options)
<h4>
.popover('destroy')
</h4>
<p>
Hides and destroys an element's popover.
</p>
{% highlight js %}$('#element').popover('destroy'){% endhighlight %}
<h3>
Events
</h3>
<table
class=
"table table-bordered table-striped"
>
<thead>
<tr>
<th
style=
"width: 150px;"
>
Event Type
</th>
<th>
Description
</th>
</tr>
</thead>
<tbody>
<tr>
<td>
show
</td>
<td>
This event fires immediately when the
<code>
show
</code>
instance method is called.
</td>
</tr>
<tr>
<td>
shown
</td>
<td>
This event is fired when the popover has been made visible to the user (will wait for CSS transitions to complete).
</td>
</tr>
<tr>
<td>
hide
</td>
<td>
This event is fired immediately when the
<code>
hide
</code>
instance method has been called.
</td>
</tr>
<tr>
<td>
hidden
</td>
<td>
This event is fired when the popover has finished being hidden from the user (will wait for CSS transitions to complete).
</td>
</tr>
</tbody>
</table>
{% highlight js %}
$('#myPopover').on('hidden.bs.popover', function () {
// do something…
})
{% endhighlight %}
</div>
<!-- Alert
================================================== -->
<div
class=
"bs-docs-section"
>
...
...
This diff is collapsed.
Click to expand it.
js/collapse.js
+
41
-
30
View file @
27a656f7
...
...
@@ -48,8 +48,6 @@
this
.
$element
.
trigger
(
startEvent
)
if
(
startEvent
.
isDefaultPrevented
())
return
var
dimension
=
this
.
dimension
()
var
scroll
=
$
.
camelCase
([
'
scroll
'
,
dimension
].
join
(
'
-
'
))
var
actives
=
this
.
$parent
&&
this
.
$parent
.
find
(
'
> .accordion-group > .in
'
)
if
(
actives
&&
actives
.
length
)
{
...
...
@@ -59,10 +57,32 @@
hasData
||
actives
.
data
(
'
bs.collapse
'
,
null
)
}
this
.
$element
[
dimension
](
0
)
this
.
transition
(
'
addClass
'
,
'
shown.bs.collapse
'
)
var
dimension
=
this
.
dimension
()
this
.
$element
.
removeClass
(
'
collapse
'
)
.
addClass
(
'
collapsing
'
)
[
dimension
](
0
)
this
.
transitioning
=
1
var
complete
=
function
()
{
this
.
$element
.
removeClass
(
'
collapsing
'
)
.
addClass
(
'
in
'
)
[
dimension
](
'
auto
'
)
this
.
transitioning
=
0
this
.
$element
.
trigger
(
'
shown.bs.collapse
'
)
}
if
(
!
$
.
support
.
transition
)
return
complete
.
call
(
this
)
var
scrollSize
=
$
.
camelCase
([
'
scroll
'
,
dimension
].
join
(
'
-
'
))
if
(
$
.
support
.
transition
)
this
.
$element
[
dimension
](
this
.
$element
[
0
][
scroll
])
this
.
$element
.
one
(
$
.
support
.
transition
.
end
,
$
.
proxy
(
complete
,
this
))
.
emulateTransitionEnd
(
350
)
[
dimension
](
this
.
$element
[
0
][
scrollSize
])
}
Collapse
.
prototype
.
hide
=
function
()
{
...
...
@@ -73,41 +93,32 @@
if
(
startEvent
.
isDefaultPrevented
())
return
var
dimension
=
this
.
dimension
()
this
.
reset
(
this
.
$element
[
dimension
]())
this
.
transition
(
'
removeClass
'
,
'
hidden.bs.collapse
'
)
this
.
$element
[
dimension
](
0
)
}
Collapse
.
prototype
.
reset
=
function
(
size
)
{
var
dimension
=
this
.
dimension
()
this
.
$element
[
dimension
](
this
.
$element
[
dimension
]())
[
0
].
offsetHeight
this
.
$element
.
addClass
(
'
collapsing
'
)
.
removeClass
(
'
collapse
'
)
[
dimension
](
size
||
'
auto
'
)
[
0
].
offsetWidth
.
removeClass
(
'
in
'
)
this
.
$element
[
size
!=
null
?
'
addClass
'
:
'
removeClass
'
](
'
collapse
'
)
return
this
}
this
.
transitioning
=
1
Collapse
.
prototype
.
transition
=
function
(
method
,
completeEvent
)
{
var
that
=
this
var
complete
=
function
()
{
if
(
completeEvent
==
'
shown.bs.collapse
'
)
that
.
reset
()
that
.
transitioning
=
0
that
.
$element
.
trigger
(
completeEvent
)
this
.
transitioning
=
0
this
.
$element
.
trigger
(
'
hidden.bs.collapse
'
)
.
removeClass
(
'
collapsing
'
)
.
addClass
(
'
collapse
'
)
}
this
.
transitioning
=
1
this
.
$element
[
method
](
'
in
'
)
if
(
!
$
.
support
.
transition
)
return
complete
.
call
(
this
)
$
.
support
.
transition
&&
this
.
$element
.
hasClass
(
'
collapse
'
)
?
this
.
$element
.
one
(
$
.
support
.
transition
.
end
,
complete
)
.
emulateTransitionEnd
(
350
)
:
complete
()
this
.
$element
[
dimension
](
0
)
.
one
(
$
.
support
.
transition
.
end
,
$
.
proxy
(
complete
,
this
))
.
emulateTransitionEnd
(
350
)
}
Collapse
.
prototype
.
toggle
=
function
()
{
...
...
This diff is collapsed.
Click to expand it.
js/popover.js
+
2
-
0
View file @
27a656f7
...
...
@@ -27,6 +27,8 @@
this
.
init
(
'
popover
'
,
element
,
options
)
}
if
(
!
$
.
fn
.
tooltip
)
throw
new
Error
(
'
Popover requires tooltip.js
'
)
Popover
.
DEFAULTS
=
$
.
extend
({}
,
$
.
fn
.
tooltip
.
Constructor
.
DEFAULTS
,
{
placement
:
'
right
'
,
trigger
:
'
click
'
...
...
This diff is collapsed.
Click to expand it.
js/transition.js
+
1
-
0
View file @
27a656f7
...
...
@@ -46,6 +46,7 @@
$
(
this
).
one
(
'
webkitTransitionEnd
'
,
function
()
{
called
=
true
})
var
callback
=
function
()
{
if
(
!
called
)
$
(
$el
).
trigger
(
'
webkitTransitionEnd
'
)
}
setTimeout
(
callback
,
duration
)
return
this
}
$
(
function
()
{
...
...
This diff is collapsed.
Click to expand it.
less/component-animations.less
+
6
-
4
View file @
27a656f7
...
...
@@ -16,12 +16,14 @@
}
.collapse {
display: none;
&.in {
display: block;
}
}
.collapsing {
position: relative;
height: 0;
overflow: hidden;
.transition(height .35s ease);
&.in {
height: auto;
}
}
This diff is collapsed.
Click to expand it.
less/navbar.less
+
1
-
0
View file @
27a656f7
...
...
@@ -330,6 +330,7 @@
display: none;
}
.nav-collapse.collapse {
display: block !important;
height: auto !important;
overflow: visible !important;
}
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment