Version Description
Download this release
Release Info
Developer | kurudrive |
Plugin | VK All in One Expansion Unit |
Version | 0.1.6.1 |
Comparing to | |
See all releases |
Code changes from version 0.1.5.10 to 0.1.6.1
- README.md +12 -0
- _scss/_bizvektor_theme_included_style.scss +43 -0
- _scss/_bootstrap.min.scss +14 -0
- _scss/admin.scss +15 -0
- _scss/style.scss +322 -0
- _scss/style_in_bs.scss +4 -0
- admin_warpper.php +72 -0
- admin_wrapper.php +114 -0
- banner-1544x500.jpg +0 -0
- banner-772x250.jpg +0 -0
- bootstrap/config.json +390 -0
- bootstrap/css/bootstrap-theme.css +596 -0
- bootstrap/css/bootstrap-theme.css.map +1 -0
- bootstrap/css/bootstrap-theme.min.css +14 -0
- bootstrap/css/bootstrap.css +1582 -0
- bootstrap/css/bootstrap.css.map +1 -0
- bootstrap/css/bootstrap.min.css +14 -0
- bootstrap/fonts/glyphicons-halflings-regular.eot +0 -0
- bootstrap/fonts/glyphicons-halflings-regular.svg +288 -0
- bootstrap/fonts/glyphicons-halflings-regular.ttf +0 -0
- bootstrap/fonts/glyphicons-halflings-regular.woff +0 -0
- bootstrap/fonts/glyphicons-halflings-regular.woff2 +0 -0
- bootstrap/js/bootstrap.js +2317 -0
- bootstrap/js/bootstrap.min.js +7 -0
- bootstrap/js/npm.js +13 -0
- common_helpers.php +267 -0
- common_init.php +67 -0
- config.rb +9 -0
- css/admin.css +18 -0
- css/style.css +170 -0
- css/style_in_bs.css +750 -0
- gulpfile.js +74 -0
- icon-128x128.png +0 -0
- icon.svg +0 -243
- js/all.js +151 -0
- js/all.min.js +4 -0
- js/all_in_bs.js +158 -0
- js/all_in_bs.min.js +4 -0
- js/jquery.flatheights.js +118 -0
- js/master.js +33 -0
- js/vkExUnit_admin.js +53 -0
- languages/vkExUnit-ja.mo +0 -0
- languages/vkExUnit-ja.po +1228 -0
- languages/vkexunit.mo +0 -0
- languages/vkexunit.pot +1036 -0
- plugins/auto_eyecatch.php +113 -0
- plugins/child_page_index/child_page_index.php +23 -0
README.md
ADDED
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# コーディングルール
|
2 |
+
|
3 |
+
## DBに保存する名前
|
4 |
+
|
5 |
+
単語を連結する場合は _ で連結する
|
6 |
+
|
7 |
+
## CSS命名について
|
8 |
+
|
9 |
+
- 複数の単語の場合はキャメルケース(連結する単語の最初の1文字を大文字)にする
|
10 |
+
※一つの単語なのか複数の単語が合わさっているのかわからないため
|
11 |
+
- 要素が複数の場合は、単語をアンダーバーで区切る
|
12 |
+
※ハイフンだとダブルクリックで選択出来ないため
|
_scss/_bizvektor_theme_included_style.scss
ADDED
@@ -0,0 +1,43 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
@charset "utf-8";
|
2 |
+
@import "compass";
|
3 |
+
|
4 |
+
$border_primary : 1px solid #e5e5e5;
|
5 |
+
$color_font_default : #464646;
|
6 |
+
$color_key : #337ab7;
|
7 |
+
|
8 |
+
/* .media(bootstrap)
|
9 |
+
/*-------------------------------------------*/
|
10 |
+
.media { border-bottom:$border_primary;padding:2em 0;margin-top:0;
|
11 |
+
&:first-child { border-top:$border_primary; }
|
12 |
+
.postList_thumbnail { width:160px;margin-bottom:0.5em;padding-right:30px; display:block; overflow:hidden;float:left;
|
13 |
+
a { position: relative;display:block; overflow:hidden; }
|
14 |
+
img { width: 100%;height:auto; }
|
15 |
+
.postList_cateLabel {
|
16 |
+
position: absolute;
|
17 |
+
bottom: 0;
|
18 |
+
left: 0;
|
19 |
+
}
|
20 |
+
}
|
21 |
+
.media-body {
|
22 |
+
.media-heading { font-size:1.8em;line-height:1.3em;margin-top:0; margin-bottom:0.5em;font-weight: normal;
|
23 |
+
a { color:$color_font_default;
|
24 |
+
&:hover { text-decoration: none; }
|
25 |
+
}
|
26 |
+
}
|
27 |
+
p { margin-bottom:0; }
|
28 |
+
a.media-body_excerpt { color:$color_font_default; }
|
29 |
+
}
|
30 |
+
}
|
31 |
+
@media (max-width: 767px){
|
32 |
+
.media {
|
33 |
+
.postList_thumbnail { padding-right:20px; }
|
34 |
+
.media-body {
|
35 |
+
.media-heading { font-size:1.2em;line-height:1.3em; margin-bottom:0.5em; }
|
36 |
+
} // .media-body
|
37 |
+
} // .media
|
38 |
+
} // @media (max-width: 767px){
|
39 |
+
@media (max-width: 500px){
|
40 |
+
.media {
|
41 |
+
.postList_thumbnail { width:100px; }
|
42 |
+
} // .media
|
43 |
+
} // @media (max-width: 767px){
|
_scss/_bootstrap.min.scss
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*!
|
2 |
+
* Bootstrap v3.3.5 (http://getbootstrap.com)
|
3 |
+
* Copyright 2011-2015 Twitter, Inc.
|
4 |
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
5 |
+
*/
|
6 |
+
|
7 |
+
/*!
|
8 |
+
* Generated using the Bootstrap Customizer (http://getbootstrap.com/customize/?id=7345914a18fe4c024e9a)
|
9 |
+
* Config saved to config.json and https://gist.github.com/7345914a18fe4c024e9a
|
10 |
+
*//*!
|
11 |
+
* Bootstrap v3.3.5 (http://getbootstrap.com)
|
12 |
+
* Copyright 2011-2015 Twitter, Inc.
|
13 |
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
14 |
+
*//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{font-size:2em;margin:0.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace, monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-appearance:textfield;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#337ab7;text-decoration:none}a:hover,a:focus{color:#23527c;text-decoration:underline}a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.img-responsive{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role="button"]{cursor:pointer}.container{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}.row{margin-left:-15px;margin-right:-15px}.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.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-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.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-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}.btn{display:inline-block;margin-bottom:0;font-weight:normal;text-align:center;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;background-image:none;border:1px solid transparent;white-space:nowrap;padding:6px 12px;font-size:14px;line-height:1.42857143;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.btn:focus,.btn:active:focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn.active.focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn:hover,.btn:focus,.btn.focus{color:#333;text-decoration:none}.btn:active,.btn.active{outline:0;background-image:none;-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{cursor:not-allowed;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default:focus,.btn-default.focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default:active:hover,.btn-default.active:hover,.open>.dropdown-toggle.btn-default:hover,.btn-default:active:focus,.btn-default.active:focus,.open>.dropdown-toggle.btn-default:focus,.btn-default:active.focus,.btn-default.active.focus,.open>.dropdown-toggle.btn-default.focus{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{background-image:none}.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.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:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary:focus,.btn-primary.focus{color:#fff;background-color:#286090;border-color:#122b40}.btn-primary:hover{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary:active:hover,.btn-primary.active:hover,.open>.dropdown-toggle.btn-primary:hover,.btn-primary:active:focus,.btn-primary.active:focus,.open>.dropdown-toggle.btn-primary:focus,.btn-primary:active.focus,.btn-primary.active.focus,.open>.dropdown-toggle.btn-primary.focus{color:#fff;background-color:#204d74;border-color:#122b40}.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{background-image:none}.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.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:#337ab7;border-color:#2e6da4}.btn-primary .badge{color:#337ab7;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success:focus,.btn-success.focus{color:#fff;background-color:#449d44;border-color:#255625}.btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439}.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success:active:hover,.btn-success.active:hover,.open>.dropdown-toggle.btn-success:hover,.btn-success:active:focus,.btn-success.active:focus,.open>.dropdown-toggle.btn-success:focus,.btn-success:active.focus,.btn-success.active.focus,.open>.dropdown-toggle.btn-success.focus{color:#fff;background-color:#398439;border-color:#255625}.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{background-image:none}.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.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:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info:focus,.btn-info.focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info:active:hover,.btn-info.active:hover,.open>.dropdown-toggle.btn-info:hover,.btn-info:active:focus,.btn-info.active:focus,.open>.dropdown-toggle.btn-info:focus,.btn-info:active.focus,.btn-info.active.focus,.open>.dropdown-toggle.btn-info.focus{color:#fff;background-color:#269abc;border-color:#1b6d85}.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{background-image:none}.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.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:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning:focus,.btn-warning.focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning:active:hover,.btn-warning.active:hover,.open>.dropdown-toggle.btn-warning:hover,.btn-warning:active:focus,.btn-warning.active:focus,.open>.dropdown-toggle.btn-warning:focus,.btn-warning:active.focus,.btn-warning.active.focus,.open>.dropdown-toggle.btn-warning.focus{color:#fff;background-color:#d58512;border-color:#985f0d}.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{background-image:none}.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.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:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger:focus,.btn-danger.focus{color:#fff;background-color:#c9302c;border-color:#761c19}.btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger:active:hover,.btn-danger.active:hover,.open>.dropdown-toggle.btn-danger:hover,.btn-danger:active:focus,.btn-danger.active:focus,.open>.dropdown-toggle.btn-danger:focus,.btn-danger:active.focus,.btn-danger.active.focus,.open>.dropdown-toggle.btn-danger.focus{color:#fff;background-color:#ac2925;border-color:#761c19}.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{background-image:none}.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.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:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{color:#337ab7;font-weight:normal;border-radius:0}.btn-link,.btn-link:active,.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:#23527c;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:#777;text-decoration:none}.btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{zoom:1;overflow:hidden}.media-body{width:10000px}.media-object{display:block}.media-object.img-thumbnail{max-width:none}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-left,.media-right,.media-body{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.clearfix:before,.clearfix:after,.container:before,.container:after,.container-fluid:before,.container-fluid:after,.row:before,.row:after{content:" ";display:table}.clearfix:after,.container:after,.container-fluid:after,.row:after{clear:both}.center-block{display:block;margin-left:auto;margin-right:auto}.pull-right{float:right !important}.pull-left{float:left !important}.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}.hidden{display:none !important}.affix{position:fixed}
|
_scss/admin.scss
ADDED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
@charset "utf-8";
|
2 |
+
@import "compass";
|
3 |
+
|
4 |
+
table.wp-list-table { margin-right:10%; }
|
5 |
+
.optionNav { display:block !important; overflow:hidden; }
|
6 |
+
.optionNav ul { display:block; overflow:hidden;margin:0;padding:0 5px; }
|
7 |
+
.optionNav ul li { display: block; float:left;border-radius: 3px 3px 0 0;border:1px solid #ccc; border-bottom:none;margin-right:2px; margin-bottom:0;}
|
8 |
+
.optionNav ul li:hover { background-color: #666; }
|
9 |
+
.optionNav ul li a { display:block; overflow:hidden;padding:0.5em; text-decoration: none;color:#666;font-size:12px; }
|
10 |
+
.optionNav ul li:hover a { color: #fff;border:none; }
|
11 |
+
.optionNav ul li.current { background-color: #333;color:#fff;
|
12 |
+
a { color:#fff; }
|
13 |
+
}
|
14 |
+
|
15 |
+
.vkExUnit_admin_page.wrap h3 { background-color:#333; color:#fff; padding:10px 15px;font-size:150%;margin-top:0;border-left:5px solid #e50000;}
|
_scss/style.scss
ADDED
@@ -0,0 +1,322 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
@charset "utf-8";
|
2 |
+
@import "compass";
|
3 |
+
@import "_bizvektor_theme_included_style";
|
4 |
+
|
5 |
+
/*-------------------------------------------------*/
|
6 |
+
/* ex_unit
|
7 |
+
/*-------------------------------------------------*/
|
8 |
+
/* .common
|
9 |
+
/*-------------------------------------------*/
|
10 |
+
/* .autoEyeCatchBox
|
11 |
+
/*-------------------------------------------*/
|
12 |
+
/* .sitemap
|
13 |
+
/*-------------------------------------------*/
|
14 |
+
/* fb Page Plugin
|
15 |
+
/*-------------------------------------------*/
|
16 |
+
/* .socialSet
|
17 |
+
/*-------------------------------------------*/
|
18 |
+
/* Profile wiget Plugin
|
19 |
+
/*-------------------------------------------*/
|
20 |
+
/* 3PR area wiget Plugin
|
21 |
+
/*-------------------------------------------*/
|
22 |
+
/* childPageIndex Plugin
|
23 |
+
/*-------------------------------------------*/
|
24 |
+
|
25 |
+
/*-------------------------------------------*/
|
26 |
+
/* .common
|
27 |
+
/*-------------------------------------------*/
|
28 |
+
|
29 |
+
.link-list li { padding:0.5em; }
|
30 |
+
|
31 |
+
/*-------------------------------------------*/
|
32 |
+
/* .autoEyeCatchBox
|
33 |
+
/*-------------------------------------------*/
|
34 |
+
|
35 |
+
.autoEyeCatchBox { display:block; overflow:hidden;margin-bottom:2em; }
|
36 |
+
|
37 |
+
/*-------------------------------------------*/
|
38 |
+
/* .sitemap
|
39 |
+
/*-------------------------------------------*/
|
40 |
+
|
41 |
+
|
42 |
+
|
43 |
+
.sitemap .sectionBox { padding-top:0; }
|
44 |
+
.sitemap .sitemap-col { padding-bottom:2em; }
|
45 |
+
|
46 |
+
/*-------------------------------------------*/
|
47 |
+
/* fb Page Plugin
|
48 |
+
/*-------------------------------------------*/
|
49 |
+
|
50 |
+
.fb-like-box {
|
51 |
+
margin: 0 auto;
|
52 |
+
border: 4px solid #efefef;
|
53 |
+
background-color: #f9f9f9;
|
54 |
+
text-align: center;
|
55 |
+
}
|
56 |
+
|
57 |
+
.twitter-timeline iframe {margin-right:auto; margin-left:auto; }
|
58 |
+
|
59 |
+
.vkContentAddSection { display:block; clear:both; overflow:hidden; padding-top:20px; }
|
60 |
+
|
61 |
+
/*-------------------------------------------*/
|
62 |
+
/* .socialSet
|
63 |
+
/*-------------------------------------------*/
|
64 |
+
.socialSet ul { margin:0px;padding:0; }
|
65 |
+
.socialSet ul li { position:relative; display:block;float:left; overflow:visible; margin-right:10px; padding:0px; background:none; }
|
66 |
+
.socialSet ul li.sb_icon a {display:block; overflow:hidden; padding: 3px 5px 0px;border:1px solid #ccc; border-radius: 3px; background-color:#fff;color:#333;text-decoration: none; line-height: 100%; }
|
67 |
+
.socialSet ul li.sb_icon a .sns_txt { position: relative;top:-2px; font-size:11px; }
|
68 |
+
.socialSet ul li iframe { border:none; }
|
69 |
+
.socialSet ul li a .icon_sns { margin-right:5px;font-size:100%; }
|
70 |
+
.socialSet ul li.sb_icon.sb_facebook .icon_sns { color:#425dab; }
|
71 |
+
.socialSet ul li.sb_icon.sb_hatena .icon_sns { color:#2c6ebd; }
|
72 |
+
.socialSet ul li.sb_icon.sb_twitter .icon_sns { color:#00abec; }
|
73 |
+
.socialSet ul li.sb_icon.sb_google .icon_sns { color:#dd4b39; }
|
74 |
+
.socialSet ul li.sb_icon.sb_line .icon_sns { color:#6ebd30; }
|
75 |
+
.socialSet ul li.sb_pocket { margin-left:5px;}
|
76 |
+
|
77 |
+
.relatedPosts {
|
78 |
+
h2 { margin-bottom:10px; }
|
79 |
+
}
|
80 |
+
|
81 |
+
.followSet { display:block; overflow:hidden;margin-top:20px;padding: 15px;border:1px solid #f5f5f5; background-color: #efefef; }
|
82 |
+
.followSet h3.followSet_title {padding: 6px 10px 4px;border:none; background-color: #333; color:#fff; font-size:18px;
|
83 |
+
&:after { border:none; }
|
84 |
+
}
|
85 |
+
.follow_btn { float:left;margin-right:20px; }
|
86 |
+
|
87 |
+
|
88 |
+
/*-------------------------------------------*/
|
89 |
+
/* import icon
|
90 |
+
/*-------------------------------------------*/
|
91 |
+
@font-face {
|
92 |
+
font-weight: normal;
|
93 |
+
font-style: normal;
|
94 |
+
font-family: 'vk_sns';
|
95 |
+
src:url('../plugins/sns/icons/fonts/vk_sns.eot?-bq20cj');
|
96 |
+
src:url('../plugins/sns/icons/fonts/vk_sns.eot?#iefix-bq20cj') format('embedded-opentype'),
|
97 |
+
url('../plugins/sns/icons/fonts/vk_sns.woff?-bq20cj') format('woff'),
|
98 |
+
url('../plugins/sns/icons/fonts/vk_sns.ttf?-bq20cj') format('truetype'),
|
99 |
+
url('../plugins/sns/icons/fonts/vk_sns.svg?-bq20cj#vk_sns') format('svg');
|
100 |
+
}
|
101 |
+
|
102 |
+
[class^="vk_icon_w_r_sns_"], [class*=" vk_icon_w_r_sns_"] {
|
103 |
+
text-transform: none;
|
104 |
+
font-weight: normal;
|
105 |
+
font-style: normal;
|
106 |
+
font-variant: normal;
|
107 |
+
font-family: 'vk_sns';
|
108 |
+
line-height: 1;
|
109 |
+
|
110 |
+
/* Better Font Rendering =========== */
|
111 |
+
speak: none;
|
112 |
+
-webkit-font-smoothing: antialiased;
|
113 |
+
-moz-osx-font-smoothing: grayscale;
|
114 |
+
}
|
115 |
+
|
116 |
+
.vk_icon_w_r_sns_twitter:before {
|
117 |
+
content: "\e600";
|
118 |
+
}
|
119 |
+
.vk_icon_w_r_sns_line:before {
|
120 |
+
content: "\e601";
|
121 |
+
}
|
122 |
+
.vk_icon_w_r_sns_hatena:before {
|
123 |
+
content: "\e602";
|
124 |
+
}
|
125 |
+
.vk_icon_w_r_sns_google:before {
|
126 |
+
content: "\e603";
|
127 |
+
}
|
128 |
+
.vk_icon_w_r_sns_fb:before {
|
129 |
+
content: "\e604";
|
130 |
+
}
|
131 |
+
|
132 |
+
/*-------------------------------------------*/
|
133 |
+
/* Profile wiget Plugin
|
134 |
+
/*-------------------------------------------*/
|
135 |
+
.profile_media{
|
136 |
+
display:block; overflow:hidden;
|
137 |
+
margin: 0.8em auto;
|
138 |
+
max-width: 100px;
|
139 |
+
border-radius: 100px;
|
140 |
+
}
|
141 |
+
.site-profile {
|
142 |
+
|
143 |
+
}
|
144 |
+
.profile_text{
|
145 |
+
margin-bottom: 0.5em;
|
146 |
+
font-size: 14px;
|
147 |
+
}
|
148 |
+
.sns_btns{
|
149 |
+
margin: 0;
|
150 |
+
padding: 0;
|
151 |
+
width: 100%;
|
152 |
+
li{
|
153 |
+
float: left;
|
154 |
+
margin-right: 0.45em;
|
155 |
+
list-style: none;
|
156 |
+
text-align: center;
|
157 |
+
}
|
158 |
+
a{
|
159 |
+
display: block;
|
160 |
+
display:table;
|
161 |
+
width: 45px;
|
162 |
+
height: 45px;
|
163 |
+
border-radius: 23px;
|
164 |
+
color: #fff;
|
165 |
+
text-decoration: none;
|
166 |
+
font-size: 20px;
|
167 |
+
&:hover{
|
168 |
+
color: #fff;
|
169 |
+
text-decoration: none;
|
170 |
+
opacity: 0.8;
|
171 |
+
}
|
172 |
+
}
|
173 |
+
.fa{
|
174 |
+
display:table-cell;
|
175 |
+
vertical-align:middle;
|
176 |
+
text-align:center;
|
177 |
+
}
|
178 |
+
.facebook_btn{
|
179 |
+
a{
|
180 |
+
background: #3b5998;
|
181 |
+
}
|
182 |
+
}
|
183 |
+
.twitter_btn{
|
184 |
+
a{
|
185 |
+
background: #55acee;
|
186 |
+
}
|
187 |
+
}
|
188 |
+
.mail_btn{
|
189 |
+
a{
|
190 |
+
background: #2F915F;
|
191 |
+
}
|
192 |
+
}
|
193 |
+
.youtube_btn{
|
194 |
+
a{
|
195 |
+
background: #C81D1C;
|
196 |
+
}
|
197 |
+
}
|
198 |
+
.rss_btn{
|
199 |
+
a{
|
200 |
+
background: #f26522;
|
201 |
+
}
|
202 |
+
}
|
203 |
+
.instagram_btn{
|
204 |
+
a{
|
205 |
+
background: #3f729b;
|
206 |
+
}
|
207 |
+
}
|
208 |
+
.linkedin_btn{
|
209 |
+
a{
|
210 |
+
background: #0077b5;
|
211 |
+
}
|
212 |
+
}
|
213 |
+
}
|
214 |
+
/*-------------------------------------------*/
|
215 |
+
/* 3PR area wiget Plugin
|
216 |
+
/*-------------------------------------------*/
|
217 |
+
.prBox{
|
218 |
+
.subSection-title{
|
219 |
+
font-size: 18px;
|
220 |
+
}
|
221 |
+
.media_pr{
|
222 |
+
margin-bottom: 0.5em;
|
223 |
+
}
|
224 |
+
.media_pc{
|
225 |
+
display: block;
|
226 |
+
}
|
227 |
+
.media_sp{
|
228 |
+
display: none;
|
229 |
+
}
|
230 |
+
.summary{
|
231 |
+
margin-bottom: 0.5em;
|
232 |
+
font-size: 14px;
|
233 |
+
line-height: 1.4em;
|
234 |
+
}
|
235 |
+
.linkurl{
|
236 |
+
a{
|
237 |
+
text-decoration: none;
|
238 |
+
}
|
239 |
+
}
|
240 |
+
}
|
241 |
+
@media screen and (max-width:992px){
|
242 |
+
.prBox{
|
243 |
+
.media_pc{
|
244 |
+
display: none;
|
245 |
+
}
|
246 |
+
.media_sp{
|
247 |
+
display: block;
|
248 |
+
}
|
249 |
+
.linkurl {
|
250 |
+
margin-bottom: 1.5em;
|
251 |
+
}
|
252 |
+
}
|
253 |
+
}
|
254 |
+
/*-------------------------------------------*/
|
255 |
+
/* childPageIndex Plugin
|
256 |
+
/*-------------------------------------------*/
|
257 |
+
.childPage_list {
|
258 |
+
margin-top: 4em;
|
259 |
+
a:hover{
|
260 |
+
text-decoration: none;
|
261 |
+
}
|
262 |
+
}
|
263 |
+
.childPage_list_box{
|
264 |
+
position: relative;
|
265 |
+
margin-bottom: 2.5em;
|
266 |
+
.childPage_list_title{
|
267 |
+
font-size: 16px;
|
268 |
+
line-height: 1.4;
|
269 |
+
}
|
270 |
+
.wp-post-image{
|
271 |
+
float: left;
|
272 |
+
margin-right: 1em;
|
273 |
+
width: 30%;
|
274 |
+
border: solid 1px #ddd;
|
275 |
+
}
|
276 |
+
.childPage_list_body{
|
277 |
+
overflow: hidden;
|
278 |
+
color: #333;
|
279 |
+
font-size: 14px;
|
280 |
+
&:hover{
|
281 |
+
text-decoration: underline;
|
282 |
+
}
|
283 |
+
}
|
284 |
+
.childPage_list_text{
|
285 |
+
overflow: hidden;
|
286 |
+
margin-bottom: 0;
|
287 |
+
}
|
288 |
+
.childPage_list_more{
|
289 |
+
float: right;
|
290 |
+
margin-top: 1.5em;
|
291 |
+
}
|
292 |
+
}
|
293 |
+
@media screen and (max-width:992px){
|
294 |
+
.childPage_list_box{
|
295 |
+
.wp-post-image{
|
296 |
+
float: left;
|
297 |
+
margin-right: 1em;
|
298 |
+
width: 25%;
|
299 |
+
border: solid 1px #ddd;
|
300 |
+
}
|
301 |
+
}
|
302 |
+
}
|
303 |
+
/*-------------------------------------------*/
|
304 |
+
/* sitemap page Plugin
|
305 |
+
/*-------------------------------------------*/
|
306 |
+
.sitemap-col{
|
307 |
+
margin-top: 2.5em;
|
308 |
+
.link-list{
|
309 |
+
margin-top: 0;
|
310 |
+
margin-bottom: 0;
|
311 |
+
}
|
312 |
+
.page_item{
|
313 |
+
padding: 0;
|
314 |
+
}
|
315 |
+
.children{
|
316 |
+
margin-bottom: 2em;
|
317 |
+
}
|
318 |
+
.cat-item{
|
319 |
+
padding: 0;
|
320 |
+
}
|
321 |
+
}
|
322 |
+
|
_scss/style_in_bs.scss
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
1 |
+
@charset "utf-8";
|
2 |
+
@import "compass";
|
3 |
+
@import "bootstrap.min";
|
4 |
+
@import "style";
|
admin_warpper.php
ADDED
@@ -0,0 +1,72 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
function vkExUnit_add_main_setting() {
|
4 |
+
$capability_required = add_filter( 'vkExUnit_ga_page_capability', vkExUnit_get_capability_required() );
|
5 |
+
$custom_page = add_submenu_page(
|
6 |
+
'vkExUnit_setting_page', // parent
|
7 |
+
'Main setting', // Name of page
|
8 |
+
'Main setting', // Label in menu
|
9 |
+
// $capability_required,
|
10 |
+
'activate_plugins', // Capability
|
11 |
+
'vkExUnit_main_setting', // ユニークなこのサブメニューページの識別子
|
12 |
+
'vkExUnit_render_main_config' // メニューページのコンテンツを出力する関数
|
13 |
+
);
|
14 |
+
if ( ! $custom_page ) return;
|
15 |
+
}
|
16 |
+
add_action( 'admin_menu', 'vkExUnit_add_main_setting' );
|
17 |
+
|
18 |
+
|
19 |
+
|
20 |
+
function vkExUnit_render_main_config(){
|
21 |
+
|
22 |
+
vkExUnit_save_main_config();
|
23 |
+
?>
|
24 |
+
<div class="warp">
|
25 |
+
<form method="post" action="">
|
26 |
+
|
27 |
+
<?php
|
28 |
+
wp_nonce_field( 'standing_on_the_shoulder_of_giants', '_nonce_vkExUnit' );
|
29 |
+
do_action('vkExUnit_main_config');
|
30 |
+
?>
|
31 |
+
|
32 |
+
<?php submit_button(); ?>
|
33 |
+
</form>
|
34 |
+
</div>
|
35 |
+
<?php
|
36 |
+
}
|
37 |
+
|
38 |
+
|
39 |
+
|
40 |
+
function vkExUnit_register_setting( $option_group=false, $option_name, $sanitize_callback ){
|
41 |
+
global $vkExUnit_options;
|
42 |
+
$vkExUnit_options[] = array('option_name'=>$option_name, 'callback'=>$sanitize_callback);
|
43 |
+
}
|
44 |
+
|
45 |
+
|
46 |
+
function vkExUnit_main_config_sanitaize($post){
|
47 |
+
global $vkExUnit_options;
|
48 |
+
|
49 |
+
if(!empty($vkExUnit_options)){
|
50 |
+
foreach($vkExUnit_options as $opt){
|
51 |
+
if(!function_exists($opt['callback'])){ continue; }
|
52 |
+
|
53 |
+
$before = (isset($post[$opt['option_name']])? $post[$opt['option_name']]: null);
|
54 |
+
$option = $opt['callback']($before);
|
55 |
+
update_option($opt['option_name'], $option);
|
56 |
+
}
|
57 |
+
}
|
58 |
+
}
|
59 |
+
|
60 |
+
|
61 |
+
function vkExUnit_save_main_config(){
|
62 |
+
|
63 |
+
// nonce
|
64 |
+
if(!isset($_POST['_nonce_vkExUnit'])){
|
65 |
+
return ;
|
66 |
+
}
|
67 |
+
if(!wp_verify_nonce($_POST['_nonce_vkExUnit'], 'standing_on_the_shoulder_of_giants')){
|
68 |
+
return ;
|
69 |
+
}
|
70 |
+
|
71 |
+
vkExUnit_main_config_sanitaize($_POST);
|
72 |
+
}
|
admin_wrapper.php
ADDED
@@ -0,0 +1,114 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
function vkExUnit_add_main_setting() {
|
4 |
+
$capability_required = add_filter( 'vkExUnit_ga_page_capability', vkExUnit_get_capability_required() );
|
5 |
+
$custom_page = add_submenu_page(
|
6 |
+
'vkExUnit_setting_page', // parent
|
7 |
+
__('Main setting','vkExUnit'), // Name of page
|
8 |
+
__('Main setting','vkExUnit'), // Label in menu
|
9 |
+
// $capability_required,
|
10 |
+
'activate_plugins', // Capability
|
11 |
+
'vkExUnit_main_setting', // ユニークなこのサブメニューページの識別子
|
12 |
+
'vkExUnit_render_main_config' // メニューページのコンテンツを出力する関数
|
13 |
+
);
|
14 |
+
if ( ! $custom_page ) return;
|
15 |
+
}
|
16 |
+
add_action( 'admin_menu', 'vkExUnit_add_main_setting' );
|
17 |
+
|
18 |
+
|
19 |
+
|
20 |
+
function vkExUnit_render_main_config(){
|
21 |
+
|
22 |
+
vkExUnit_save_main_config();
|
23 |
+
?>
|
24 |
+
<div class="wrap vkExUnit_admin_page">
|
25 |
+
<form method="post" action="">
|
26 |
+
|
27 |
+
<?php
|
28 |
+
wp_nonce_field( 'standing_on_the_shoulder_of_giants', '_nonce_vkExUnit' );
|
29 |
+
|
30 |
+
global $vkExUnit_options;
|
31 |
+
foreach($vkExUnit_options as $vkoption){
|
32 |
+
if(!isset($vkoption['render_page'])){ continue; }
|
33 |
+
|
34 |
+
echo '<section id="'. $vkoption['option_name'] .'" class="sectionBox">';
|
35 |
+
|
36 |
+
vkExUnit_render_menu($vkExUnit_options, $vkoption['tab_label']);
|
37 |
+
|
38 |
+
if( is_array($vkoption['render_page'])){
|
39 |
+
$vkoption['render_page'][0]->$vkoption['render_page'][1]();
|
40 |
+
}else{
|
41 |
+
$vkoption['render_page']();
|
42 |
+
}
|
43 |
+
echo '</section>';
|
44 |
+
}
|
45 |
+
?>
|
46 |
+
|
47 |
+
<?php submit_button(); ?>
|
48 |
+
</form>
|
49 |
+
</div>
|
50 |
+
<?php
|
51 |
+
}
|
52 |
+
|
53 |
+
|
54 |
+
|
55 |
+
function vkExUnit_register_setting( $tab_label="tab_label", $option_name, $sanitize_callback, $render_page ){
|
56 |
+
global $vkExUnit_options;
|
57 |
+
$vkExUnit_options[] =
|
58 |
+
array(
|
59 |
+
'option_name'=>$option_name,
|
60 |
+
'callback'=>$sanitize_callback,
|
61 |
+
'tab_label'=>$tab_label,
|
62 |
+
'render_page'=>$render_page
|
63 |
+
);
|
64 |
+
}
|
65 |
+
|
66 |
+
|
67 |
+
function vkExUnit_main_config_sanitaize($post){
|
68 |
+
global $vkExUnit_options;
|
69 |
+
|
70 |
+
if(!empty($vkExUnit_options)){
|
71 |
+
foreach($vkExUnit_options as $opt){
|
72 |
+
|
73 |
+
if( is_array( $opt['callback'] ) ){
|
74 |
+
|
75 |
+
$before = (isset($post[$opt['option_name']])? $post[$opt['option_name']]: null);
|
76 |
+
$option = $opt['callback'][0]->$opt['callback'][1]($before);
|
77 |
+
|
78 |
+
}elseif( function_exists( $opt['callback'] ) ){
|
79 |
+
|
80 |
+
$before = (isset($post[$opt['option_name']])? $post[$opt['option_name']]: null);
|
81 |
+
$option = $opt['callback']($before);
|
82 |
+
|
83 |
+
}else { continue; }
|
84 |
+
|
85 |
+
update_option($opt['option_name'], $option);
|
86 |
+
}
|
87 |
+
}
|
88 |
+
}
|
89 |
+
|
90 |
+
|
91 |
+
function vkExUnit_save_main_config(){
|
92 |
+
|
93 |
+
// nonce
|
94 |
+
if(!isset($_POST['_nonce_vkExUnit'])){
|
95 |
+
return ;
|
96 |
+
}
|
97 |
+
if(!wp_verify_nonce($_POST['_nonce_vkExUnit'], 'standing_on_the_shoulder_of_giants')){
|
98 |
+
return ;
|
99 |
+
}
|
100 |
+
|
101 |
+
vkExUnit_main_config_sanitaize($_POST);
|
102 |
+
}
|
103 |
+
|
104 |
+
function vkExUnit_render_menu( $sections, $current_tab=null ){
|
105 |
+
echo '<div class="optionNav"><ul>';
|
106 |
+
foreach($sections as $section){
|
107 |
+
$tab_class = ( $section['tab_label'] == $current_tab )? 'current' : '';
|
108 |
+
|
109 |
+
echo '<li id="btn_"'. $section['option_name']. '" class="'.$tab_class.'"><a href="#'. $section['option_name'] .'">';
|
110 |
+
echo $section['tab_label'];
|
111 |
+
echo '</a></li>';
|
112 |
+
}
|
113 |
+
echo "</ul></div>";
|
114 |
+
}
|
banner-1544x500.jpg
DELETED
Binary file
|
banner-772x250.jpg
DELETED
Binary file
|
bootstrap/config.json
ADDED
@@ -0,0 +1,390 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"vars": {
|
3 |
+
"@gray-base": "#000",
|
4 |
+
"@gray-darker": "lighten(@gray-base, 13.5%)",
|
5 |
+
"@gray-dark": "lighten(@gray-base, 20%)",
|
6 |
+
"@gray": "lighten(@gray-base, 33.5%)",
|
7 |
+
"@gray-light": "lighten(@gray-base, 46.7%)",
|
8 |
+
"@gray-lighter": "lighten(@gray-base, 93.5%)",
|
9 |
+
"@brand-primary": "darken(#428bca, 6.5%)",
|
10 |
+
"@brand-success": "#5cb85c",
|
11 |
+
"@brand-info": "#5bc0de",
|
12 |
+
"@brand-warning": "#f0ad4e",
|
13 |
+
"@brand-danger": "#d9534f",
|
14 |
+
"@body-bg": "#fff",
|
15 |
+
"@text-color": "@gray-dark",
|
16 |
+
"@link-color": "@brand-primary",
|
17 |
+
"@link-hover-color": "darken(@link-color, 15%)",
|
18 |
+
"@link-hover-decoration": "underline",
|
19 |
+
"@font-family-sans-serif": "\"Helvetica Neue\", Helvetica, Arial, sans-serif",
|
20 |
+
"@font-family-serif": "Georgia, \"Times New Roman\", Times, serif",
|
21 |
+
"@font-family-monospace": "Menlo, Monaco, Consolas, \"Courier New\", monospace",
|
22 |
+
"@font-family-base": "@font-family-sans-serif",
|
23 |
+
"@font-size-base": "14px",
|
24 |
+
"@font-size-large": "ceil((@font-size-base * 1.25))",
|
25 |
+
"@font-size-small": "ceil((@font-size-base * 0.85))",
|
26 |
+
"@font-size-h1": "floor((@font-size-base * 2.6))",
|
27 |
+
"@font-size-h2": "floor((@font-size-base * 2.15))",
|
28 |
+
"@font-size-h3": "ceil((@font-size-base * 1.7))",
|
29 |
+
"@font-size-h4": "ceil((@font-size-base * 1.25))",
|
30 |
+
"@font-size-h5": "@font-size-base",
|
31 |
+
"@font-size-h6": "ceil((@font-size-base * 0.85))",
|
32 |
+
"@line-height-base": "1.428571429",
|
33 |
+
"@line-height-computed": "floor((@font-size-base * @line-height-base))",
|
34 |
+
"@headings-font-family": "inherit",
|
35 |
+
"@headings-font-weight": "500",
|
36 |
+
"@headings-line-height": "1.1",
|
37 |
+
"@headings-color": "inherit",
|
38 |
+
"@icon-font-path": "\"../fonts/\"",
|
39 |
+
"@icon-font-name": "\"glyphicons-halflings-regular\"",
|
40 |
+
"@icon-font-svg-id": "\"glyphicons_halflingsregular\"",
|
41 |
+
"@padding-base-vertical": "6px",
|
42 |
+
"@padding-base-horizontal": "12px",
|
43 |
+
"@padding-large-vertical": "10px",
|
44 |
+
"@padding-large-horizontal": "16px",
|
45 |
+
"@padding-small-vertical": "5px",
|
46 |
+
"@padding-small-horizontal": "10px",
|
47 |
+
"@padding-xs-vertical": "1px",
|
48 |
+
"@padding-xs-horizontal": "5px",
|
49 |
+
"@line-height-large": "1.3333333",
|
50 |
+
"@line-height-small": "1.5",
|
51 |
+
"@border-radius-base": "4px",
|
52 |
+
"@border-radius-large": "6px",
|
53 |
+
"@border-radius-small": "3px",
|
54 |
+
"@component-active-color": "#fff",
|
55 |
+
"@component-active-bg": "@brand-primary",
|
56 |
+
"@caret-width-base": "4px",
|
57 |
+
"@caret-width-large": "5px",
|
58 |
+
"@table-cell-padding": "8px",
|
59 |
+
"@table-condensed-cell-padding": "5px",
|
60 |
+
"@table-bg": "transparent",
|
61 |
+
"@table-bg-accent": "#f9f9f9",
|
62 |
+
"@table-bg-hover": "#f5f5f5",
|
63 |
+
"@table-bg-active": "@table-bg-hover",
|
64 |
+
"@table-border-color": "#ddd",
|
65 |
+
"@btn-font-weight": "normal",
|
66 |
+
"@btn-default-color": "#333",
|
67 |
+
"@btn-default-bg": "#fff",
|
68 |
+
"@btn-default-border": "#ccc",
|
69 |
+
"@btn-primary-color": "#fff",
|
70 |
+
"@btn-primary-bg": "@brand-primary",
|
71 |
+
"@btn-primary-border": "darken(@btn-primary-bg, 5%)",
|
72 |
+
"@btn-success-color": "#fff",
|
73 |
+
"@btn-success-bg": "@brand-success",
|
74 |
+
"@btn-success-border": "darken(@btn-success-bg, 5%)",
|
75 |
+
"@btn-info-color": "#fff",
|
76 |
+
"@btn-info-bg": "@brand-info",
|
77 |
+
"@btn-info-border": "darken(@btn-info-bg, 5%)",
|
78 |
+
"@btn-warning-color": "#fff",
|
79 |
+
"@btn-warning-bg": "@brand-warning",
|
80 |
+
"@btn-warning-border": "darken(@btn-warning-bg, 5%)",
|
81 |
+
"@btn-danger-color": "#fff",
|
82 |
+
"@btn-danger-bg": "@brand-danger",
|
83 |
+
"@btn-danger-border": "darken(@btn-danger-bg, 5%)",
|
84 |
+
"@btn-link-disabled-color": "@gray-light",
|
85 |
+
"@btn-border-radius-base": "@border-radius-base",
|
86 |
+
"@btn-border-radius-large": "@border-radius-large",
|
87 |
+
"@btn-border-radius-small": "@border-radius-small",
|
88 |
+
"@input-bg": "#fff",
|
89 |
+
"@input-bg-disabled": "@gray-lighter",
|
90 |
+
"@input-color": "@gray",
|
91 |
+
"@input-border": "#ccc",
|
92 |
+
"@input-border-radius": "@border-radius-base",
|
93 |
+
"@input-border-radius-large": "@border-radius-large",
|
94 |
+
"@input-border-radius-small": "@border-radius-small",
|
95 |
+
"@input-border-focus": "#66afe9",
|
96 |
+
"@input-color-placeholder": "#999",
|
97 |
+
"@input-height-base": "(@line-height-computed + (@padding-base-vertical * 2) + 2)",
|
98 |
+
"@input-height-large": "(ceil(@font-size-large * @line-height-large) + (@padding-large-vertical * 2) + 2)",
|
99 |
+
"@input-height-small": "(floor(@font-size-small * @line-height-small) + (@padding-small-vertical * 2) + 2)",
|
100 |
+
"@form-group-margin-bottom": "15px",
|
101 |
+
"@legend-color": "@gray-dark",
|
102 |
+
"@legend-border-color": "#e5e5e5",
|
103 |
+
"@input-group-addon-bg": "@gray-lighter",
|
104 |
+
"@input-group-addon-border-color": "@input-border",
|
105 |
+
"@cursor-disabled": "not-allowed",
|
106 |
+
"@dropdown-bg": "#fff",
|
107 |
+
"@dropdown-border": "rgba(0,0,0,.15)",
|
108 |
+
"@dropdown-fallback-border": "#ccc",
|
109 |
+
"@dropdown-divider-bg": "#e5e5e5",
|
110 |
+
"@dropdown-link-color": "@gray-dark",
|
111 |
+
"@dropdown-link-hover-color": "darken(@gray-dark, 5%)",
|
112 |
+
"@dropdown-link-hover-bg": "#f5f5f5",
|
113 |
+
"@dropdown-link-active-color": "@component-active-color",
|
114 |
+
"@dropdown-link-active-bg": "@component-active-bg",
|
115 |
+
"@dropdown-link-disabled-color": "@gray-light",
|
116 |
+
"@dropdown-header-color": "@gray-light",
|
117 |
+
"@dropdown-caret-color": "#000",
|
118 |
+
"@screen-xs": "480px",
|
119 |
+
"@screen-xs-min": "@screen-xs",
|
120 |
+
"@screen-phone": "@screen-xs-min",
|
121 |
+
"@screen-sm": "768px",
|
122 |
+
"@screen-sm-min": "@screen-sm",
|
123 |
+
"@screen-tablet": "@screen-sm-min",
|
124 |
+
"@screen-md": "992px",
|
125 |
+
"@screen-md-min": "@screen-md",
|
126 |
+
"@screen-desktop": "@screen-md-min",
|
127 |
+
"@screen-lg": "1200px",
|
128 |
+
"@screen-lg-min": "@screen-lg",
|
129 |
+
"@screen-lg-desktop": "@screen-lg-min",
|
130 |
+
"@screen-xs-max": "(@screen-sm-min - 1)",
|
131 |
+
"@screen-sm-max": "(@screen-md-min - 1)",
|
132 |
+
"@screen-md-max": "(@screen-lg-min - 1)",
|
133 |
+
"@grid-columns": "12",
|
134 |
+
"@grid-gutter-width": "30px",
|
135 |
+
"@grid-float-breakpoint": "@screen-sm-min",
|
136 |
+
"@grid-float-breakpoint-max": "(@grid-float-breakpoint - 1)",
|
137 |
+
"@container-tablet": "(720px + @grid-gutter-width)",
|
138 |
+
"@container-sm": "@container-tablet",
|
139 |
+
"@container-desktop": "(940px + @grid-gutter-width)",
|
140 |
+
"@container-md": "@container-desktop",
|
141 |
+
"@container-large-desktop": "(1140px + @grid-gutter-width)",
|
142 |
+
"@container-lg": "@container-large-desktop",
|
143 |
+
"@navbar-height": "50px",
|
144 |
+
"@navbar-margin-bottom": "@line-height-computed",
|
145 |
+
"@navbar-border-radius": "@border-radius-base",
|
146 |
+
"@navbar-padding-horizontal": "floor((@grid-gutter-width / 2))",
|
147 |
+
"@navbar-padding-vertical": "((@navbar-height - @line-height-computed) / 2)",
|
148 |
+
"@navbar-collapse-max-height": "340px",
|
149 |
+
"@navbar-default-color": "#777",
|
150 |
+
"@navbar-default-bg": "#f8f8f8",
|
151 |
+
"@navbar-default-border": "darken(@navbar-default-bg, 6.5%)",
|
152 |
+
"@navbar-default-link-color": "#777",
|
153 |
+
"@navbar-default-link-hover-color": "#333",
|
154 |
+
"@navbar-default-link-hover-bg": "transparent",
|
155 |
+
"@navbar-default-link-active-color": "#555",
|
156 |
+
"@navbar-default-link-active-bg": "darken(@navbar-default-bg, 6.5%)",
|
157 |
+
"@navbar-default-link-disabled-color": "#ccc",
|
158 |
+
"@navbar-default-link-disabled-bg": "transparent",
|
159 |
+
"@navbar-default-brand-color": "@navbar-default-link-color",
|
160 |
+
"@navbar-default-brand-hover-color": "darken(@navbar-default-brand-color, 10%)",
|
161 |
+
"@navbar-default-brand-hover-bg": "transparent",
|
162 |
+
"@navbar-default-toggle-hover-bg": "#ddd",
|
163 |
+
"@navbar-default-toggle-icon-bar-bg": "#888",
|
164 |
+
"@navbar-default-toggle-border-color": "#ddd",
|
165 |
+
"@navbar-inverse-color": "lighten(@gray-light, 15%)",
|
166 |
+
"@navbar-inverse-bg": "#222",
|
167 |
+
"@navbar-inverse-border": "darken(@navbar-inverse-bg, 10%)",
|
168 |
+
"@navbar-inverse-link-color": "lighten(@gray-light, 15%)",
|
169 |
+
"@navbar-inverse-link-hover-color": "#fff",
|
170 |
+
"@navbar-inverse-link-hover-bg": "transparent",
|
171 |
+
"@navbar-inverse-link-active-color": "@navbar-inverse-link-hover-color",
|
172 |
+
"@navbar-inverse-link-active-bg": "darken(@navbar-inverse-bg, 10%)",
|
173 |
+
"@navbar-inverse-link-disabled-color": "#444",
|
174 |
+
"@navbar-inverse-link-disabled-bg": "transparent",
|
175 |
+
"@navbar-inverse-brand-color": "@navbar-inverse-link-color",
|
176 |
+
"@navbar-inverse-brand-hover-color": "#fff",
|
177 |
+
"@navbar-inverse-brand-hover-bg": "transparent",
|
178 |
+
"@navbar-inverse-toggle-hover-bg": "#333",
|
179 |
+
"@navbar-inverse-toggle-icon-bar-bg": "#fff",
|
180 |
+
"@navbar-inverse-toggle-border-color": "#333",
|
181 |
+
"@nav-link-padding": "10px 15px",
|
182 |
+
"@nav-link-hover-bg": "@gray-lighter",
|
183 |
+
"@nav-disabled-link-color": "@gray-light",
|
184 |
+
"@nav-disabled-link-hover-color": "@gray-light",
|
185 |
+
"@nav-tabs-border-color": "#ddd",
|
186 |
+
"@nav-tabs-link-hover-border-color": "@gray-lighter",
|
187 |
+
"@nav-tabs-active-link-hover-bg": "@body-bg",
|
188 |
+
"@nav-tabs-active-link-hover-color": "@gray",
|
189 |
+
"@nav-tabs-active-link-hover-border-color": "#ddd",
|
190 |
+
"@nav-tabs-justified-link-border-color": "#ddd",
|
191 |
+
"@nav-tabs-justified-active-link-border-color": "@body-bg",
|
192 |
+
"@nav-pills-border-radius": "@border-radius-base",
|
193 |
+
"@nav-pills-active-link-hover-bg": "@component-active-bg",
|
194 |
+
"@nav-pills-active-link-hover-color": "@component-active-color",
|
195 |
+
"@pagination-color": "@link-color",
|
196 |
+
"@pagination-bg": "#fff",
|
197 |
+
"@pagination-border": "#ddd",
|
198 |
+
"@pagination-hover-color": "@link-hover-color",
|
199 |
+
"@pagination-hover-bg": "@gray-lighter",
|
200 |
+
"@pagination-hover-border": "#ddd",
|
201 |
+
"@pagination-active-color": "#fff",
|
202 |
+
"@pagination-active-bg": "@brand-primary",
|
203 |
+
"@pagination-active-border": "@brand-primary",
|
204 |
+
"@pagination-disabled-color": "@gray-light",
|
205 |
+
"@pagination-disabled-bg": "#fff",
|
206 |
+
"@pagination-disabled-border": "#ddd",
|
207 |
+
"@pager-bg": "@pagination-bg",
|
208 |
+
"@pager-border": "@pagination-border",
|
209 |
+
"@pager-border-radius": "15px",
|
210 |
+
"@pager-hover-bg": "@pagination-hover-bg",
|
211 |
+
"@pager-active-bg": "@pagination-active-bg",
|
212 |
+
"@pager-active-color": "@pagination-active-color",
|
213 |
+
"@pager-disabled-color": "@pagination-disabled-color",
|
214 |
+
"@jumbotron-padding": "30px",
|
215 |
+
"@jumbotron-color": "inherit",
|
216 |
+
"@jumbotron-bg": "@gray-lighter",
|
217 |
+
"@jumbotron-heading-color": "inherit",
|
218 |
+
"@jumbotron-font-size": "ceil((@font-size-base * 1.5))",
|
219 |
+
"@jumbotron-heading-font-size": "ceil((@font-size-base * 4.5))",
|
220 |
+
"@state-success-text": "#3c763d",
|
221 |
+
"@state-success-bg": "#dff0d8",
|
222 |
+
"@state-success-border": "darken(spin(@state-success-bg, -10), 5%)",
|
223 |
+
"@state-info-text": "#31708f",
|
224 |
+
"@state-info-bg": "#d9edf7",
|
225 |
+
"@state-info-border": "darken(spin(@state-info-bg, -10), 7%)",
|
226 |
+
"@state-warning-text": "#8a6d3b",
|
227 |
+
"@state-warning-bg": "#fcf8e3",
|
228 |
+
"@state-warning-border": "darken(spin(@state-warning-bg, -10), 5%)",
|
229 |
+
"@state-danger-text": "#a94442",
|
230 |
+
"@state-danger-bg": "#f2dede",
|
231 |
+
"@state-danger-border": "darken(spin(@state-danger-bg, -10), 5%)",
|
232 |
+
"@tooltip-max-width": "200px",
|
233 |
+
"@tooltip-color": "#fff",
|
234 |
+
"@tooltip-bg": "#000",
|
235 |
+
"@tooltip-opacity": ".9",
|
236 |
+
"@tooltip-arrow-width": "5px",
|
237 |
+
"@tooltip-arrow-color": "@tooltip-bg",
|
238 |
+
"@popover-bg": "#fff",
|
239 |
+
"@popover-max-width": "276px",
|
240 |
+
"@popover-border-color": "rgba(0,0,0,.2)",
|
241 |
+
"@popover-fallback-border-color": "#ccc",
|
242 |
+
"@popover-title-bg": "darken(@popover-bg, 3%)",
|
243 |
+
"@popover-arrow-width": "10px",
|
244 |
+
"@popover-arrow-color": "@popover-bg",
|
245 |
+
"@popover-arrow-outer-width": "(@popover-arrow-width + 1)",
|
246 |
+
"@popover-arrow-outer-color": "fadein(@popover-border-color, 5%)",
|
247 |
+
"@popover-arrow-outer-fallback-color": "darken(@popover-fallback-border-color, 20%)",
|
248 |
+
"@label-default-bg": "@gray-light",
|
249 |
+
"@label-primary-bg": "@brand-primary",
|
250 |
+
"@label-success-bg": "@brand-success",
|
251 |
+
"@label-info-bg": "@brand-info",
|
252 |
+
"@label-warning-bg": "@brand-warning",
|
253 |
+
"@label-danger-bg": "@brand-danger",
|
254 |
+
"@label-color": "#fff",
|
255 |
+
"@label-link-hover-color": "#fff",
|
256 |
+
"@modal-inner-padding": "15px",
|
257 |
+
"@modal-title-padding": "15px",
|
258 |
+
"@modal-title-line-height": "@line-height-base",
|
259 |
+
"@modal-content-bg": "#fff",
|
260 |
+
"@modal-content-border-color": "rgba(0,0,0,.2)",
|
261 |
+
"@modal-content-fallback-border-color": "#999",
|
262 |
+
"@modal-backdrop-bg": "#000",
|
263 |
+
"@modal-backdrop-opacity": ".5",
|
264 |
+
"@modal-header-border-color": "#e5e5e5",
|
265 |
+
"@modal-footer-border-color": "@modal-header-border-color",
|
266 |
+
"@modal-lg": "900px",
|
267 |
+
"@modal-md": "600px",
|
268 |
+
"@modal-sm": "300px",
|
269 |
+
"@alert-padding": "15px",
|
270 |
+
"@alert-border-radius": "@border-radius-base",
|
271 |
+
"@alert-link-font-weight": "bold",
|
272 |
+
"@alert-success-bg": "@state-success-bg",
|
273 |
+
"@alert-success-text": "@state-success-text",
|
274 |
+
"@alert-success-border": "@state-success-border",
|
275 |
+
"@alert-info-bg": "@state-info-bg",
|
276 |
+
"@alert-info-text": "@state-info-text",
|
277 |
+
"@alert-info-border": "@state-info-border",
|
278 |
+
"@alert-warning-bg": "@state-warning-bg",
|
279 |
+
"@alert-warning-text": "@state-warning-text",
|
280 |
+
"@alert-warning-border": "@state-warning-border",
|
281 |
+
"@alert-danger-bg": "@state-danger-bg",
|
282 |
+
"@alert-danger-text": "@state-danger-text",
|
283 |
+
"@alert-danger-border": "@state-danger-border",
|
284 |
+
"@progress-bg": "#f5f5f5",
|
285 |
+
"@progress-bar-color": "#fff",
|
286 |
+
"@progress-border-radius": "@border-radius-base",
|
287 |
+
"@progress-bar-bg": "@brand-primary",
|
288 |
+
"@progress-bar-success-bg": "@brand-success",
|
289 |
+
"@progress-bar-warning-bg": "@brand-warning",
|
290 |
+
"@progress-bar-danger-bg": "@brand-danger",
|
291 |
+
"@progress-bar-info-bg": "@brand-info",
|
292 |
+
"@list-group-bg": "#fff",
|
293 |
+
"@list-group-border": "#ddd",
|
294 |
+
"@list-group-border-radius": "@border-radius-base",
|
295 |
+
"@list-group-hover-bg": "#f5f5f5",
|
296 |
+
"@list-group-active-color": "@component-active-color",
|
297 |
+
"@list-group-active-bg": "@component-active-bg",
|
298 |
+
"@list-group-active-border": "@list-group-active-bg",
|
299 |
+
"@list-group-active-text-color": "lighten(@list-group-active-bg, 40%)",
|
300 |
+
"@list-group-disabled-color": "@gray-light",
|
301 |
+
"@list-group-disabled-bg": "@gray-lighter",
|
302 |
+
"@list-group-disabled-text-color": "@list-group-disabled-color",
|
303 |
+
"@list-group-link-color": "#555",
|
304 |
+
"@list-group-link-hover-color": "@list-group-link-color",
|
305 |
+
"@list-group-link-heading-color": "#333",
|
306 |
+
"@panel-bg": "#fff",
|
307 |
+
"@panel-body-padding": "15px",
|
308 |
+
"@panel-heading-padding": "10px 15px",
|
309 |
+
"@panel-footer-padding": "@panel-heading-padding",
|
310 |
+
"@panel-border-radius": "@border-radius-base",
|
311 |
+
"@panel-inner-border": "#ddd",
|
312 |
+
"@panel-footer-bg": "#f5f5f5",
|
313 |
+
"@panel-default-text": "@gray-dark",
|
314 |
+
"@panel-default-border": "#ddd",
|
315 |
+
"@panel-default-heading-bg": "#f5f5f5",
|
316 |
+
"@panel-primary-text": "#fff",
|
317 |
+
"@panel-primary-border": "@brand-primary",
|
318 |
+
"@panel-primary-heading-bg": "@brand-primary",
|
319 |
+
"@panel-success-text": "@state-success-text",
|
320 |
+
"@panel-success-border": "@state-success-border",
|
321 |
+
"@panel-success-heading-bg": "@state-success-bg",
|
322 |
+
"@panel-info-text": "@state-info-text",
|
323 |
+
"@panel-info-border": "@state-info-border",
|
324 |
+
"@panel-info-heading-bg": "@state-info-bg",
|
325 |
+
"@panel-warning-text": "@state-warning-text",
|
326 |
+
"@panel-warning-border": "@state-warning-border",
|
327 |
+
"@panel-warning-heading-bg": "@state-warning-bg",
|
328 |
+
"@panel-danger-text": "@state-danger-text",
|
329 |
+
"@panel-danger-border": "@state-danger-border",
|
330 |
+
"@panel-danger-heading-bg": "@state-danger-bg",
|
331 |
+
"@thumbnail-padding": "4px",
|
332 |
+
"@thumbnail-bg": "@body-bg",
|
333 |
+
"@thumbnail-border": "#ddd",
|
334 |
+
"@thumbnail-border-radius": "@border-radius-base",
|
335 |
+
"@thumbnail-caption-color": "@text-color",
|
336 |
+
"@thumbnail-caption-padding": "9px",
|
337 |
+
"@well-bg": "#f5f5f5",
|
338 |
+
"@well-border": "darken(@well-bg, 7%)",
|
339 |
+
"@badge-color": "#fff",
|
340 |
+
"@badge-link-hover-color": "#fff",
|
341 |
+
"@badge-bg": "@gray-light",
|
342 |
+
"@badge-active-color": "@link-color",
|
343 |
+
"@badge-active-bg": "#fff",
|
344 |
+
"@badge-font-weight": "bold",
|
345 |
+
"@badge-line-height": "1",
|
346 |
+
"@badge-border-radius": "10px",
|
347 |
+
"@breadcrumb-padding-vertical": "8px",
|
348 |
+
"@breadcrumb-padding-horizontal": "15px",
|
349 |
+
"@breadcrumb-bg": "#f5f5f5",
|
350 |
+
"@breadcrumb-color": "#ccc",
|
351 |
+
"@breadcrumb-active-color": "@gray-light",
|
352 |
+
"@breadcrumb-separator": "\"/\"",
|
353 |
+
"@carousel-text-shadow": "0 1px 2px rgba(0,0,0,.6)",
|
354 |
+
"@carousel-control-color": "#fff",
|
355 |
+
"@carousel-control-width": "15%",
|
356 |
+
"@carousel-control-opacity": ".5",
|
357 |
+
"@carousel-control-font-size": "20px",
|
358 |
+
"@carousel-indicator-active-bg": "#fff",
|
359 |
+
"@carousel-indicator-border-color": "#fff",
|
360 |
+
"@carousel-caption-color": "#fff",
|
361 |
+
"@close-font-weight": "bold",
|
362 |
+
"@close-color": "#000",
|
363 |
+
"@close-text-shadow": "0 1px 0 #fff",
|
364 |
+
"@code-color": "#c7254e",
|
365 |
+
"@code-bg": "#f9f2f4",
|
366 |
+
"@kbd-color": "#fff",
|
367 |
+
"@kbd-bg": "#333",
|
368 |
+
"@pre-bg": "#f5f5f5",
|
369 |
+
"@pre-color": "@gray-dark",
|
370 |
+
"@pre-border-color": "#ccc",
|
371 |
+
"@pre-scrollable-max-height": "340px",
|
372 |
+
"@component-offset-horizontal": "180px",
|
373 |
+
"@text-muted": "@gray-light",
|
374 |
+
"@abbr-border-color": "@gray-light",
|
375 |
+
"@headings-small-color": "@gray-light",
|
376 |
+
"@blockquote-small-color": "@gray-light",
|
377 |
+
"@blockquote-font-size": "(@font-size-base * 1.25)",
|
378 |
+
"@blockquote-border-color": "@gray-lighter",
|
379 |
+
"@page-header-border-color": "@gray-lighter",
|
380 |
+
"@dl-horizontal-offset": "@component-offset-horizontal",
|
381 |
+
"@hr-border": "@gray-lighter"
|
382 |
+
},
|
383 |
+
"css": [
|
384 |
+
"grid.less",
|
385 |
+
"buttons.less",
|
386 |
+
"media.less"
|
387 |
+
],
|
388 |
+
"js": [],
|
389 |
+
"customizerUrl": "http://getbootstrap.com/customize/?id=7345914a18fe4c024e9a"
|
390 |
+
}
|
bootstrap/css/bootstrap-theme.css
ADDED
@@ -0,0 +1,596 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*!
|
2 |
+
* Bootstrap v3.3.5 (http://getbootstrap.com)
|
3 |
+
* Copyright 2011-2015 Twitter, Inc.
|
4 |
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
5 |
+
*/
|
6 |
+
|
7 |
+
/*!
|
8 |
+
* Generated using the Bootstrap Customizer (http://getbootstrap.com/customize/?id=7345914a18fe4c024e9a)
|
9 |
+
* Config saved to config.json and https://gist.github.com/7345914a18fe4c024e9a
|
10 |
+
*/
|
11 |
+
/*!
|
12 |
+
* Bootstrap v3.3.5 (http://getbootstrap.com)
|
13 |
+
* Copyright 2011-2015 Twitter, Inc.
|
14 |
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
15 |
+
*/
|
16 |
+
.btn-default,
|
17 |
+
.btn-primary,
|
18 |
+
.btn-success,
|
19 |
+
.btn-info,
|
20 |
+
.btn-warning,
|
21 |
+
.btn-danger {
|
22 |
+
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
|
23 |
+
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
|
24 |
+
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
|
25 |
+
}
|
26 |
+
.btn-default:active,
|
27 |
+
.btn-primary:active,
|
28 |
+
.btn-success:active,
|
29 |
+
.btn-info:active,
|
30 |
+
.btn-warning:active,
|
31 |
+
.btn-danger:active,
|
32 |
+
.btn-default.active,
|
33 |
+
.btn-primary.active,
|
34 |
+
.btn-success.active,
|
35 |
+
.btn-info.active,
|
36 |
+
.btn-warning.active,
|
37 |
+
.btn-danger.active {
|
38 |
+
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
39 |
+
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
40 |
+
}
|
41 |
+
.btn-default.disabled,
|
42 |
+
.btn-primary.disabled,
|
43 |
+
.btn-success.disabled,
|
44 |
+
.btn-info.disabled,
|
45 |
+
.btn-warning.disabled,
|
46 |
+
.btn-danger.disabled,
|
47 |
+
.btn-default[disabled],
|
48 |
+
.btn-primary[disabled],
|
49 |
+
.btn-success[disabled],
|
50 |
+
.btn-info[disabled],
|
51 |
+
.btn-warning[disabled],
|
52 |
+
.btn-danger[disabled],
|
53 |
+
fieldset[disabled] .btn-default,
|
54 |
+
fieldset[disabled] .btn-primary,
|
55 |
+
fieldset[disabled] .btn-success,
|
56 |
+
fieldset[disabled] .btn-info,
|
57 |
+
fieldset[disabled] .btn-warning,
|
58 |
+
fieldset[disabled] .btn-danger {
|
59 |
+
-webkit-box-shadow: none;
|
60 |
+
box-shadow: none;
|
61 |
+
}
|
62 |
+
.btn-default .badge,
|
63 |
+
.btn-primary .badge,
|
64 |
+
.btn-success .badge,
|
65 |
+
.btn-info .badge,
|
66 |
+
.btn-warning .badge,
|
67 |
+
.btn-danger .badge {
|
68 |
+
text-shadow: none;
|
69 |
+
}
|
70 |
+
.btn:active,
|
71 |
+
.btn.active {
|
72 |
+
background-image: none;
|
73 |
+
}
|
74 |
+
.btn-default {
|
75 |
+
background-image: -webkit-linear-gradient(top, #ffffff 0%, #e0e0e0 100%);
|
76 |
+
background-image: -o-linear-gradient(top, #ffffff 0%, #e0e0e0 100%);
|
77 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#e0e0e0));
|
78 |
+
background-image: linear-gradient(to bottom, #ffffff 0%, #e0e0e0 100%);
|
79 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0);
|
80 |
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
81 |
+
background-repeat: repeat-x;
|
82 |
+
border-color: #dbdbdb;
|
83 |
+
text-shadow: 0 1px 0 #fff;
|
84 |
+
border-color: #ccc;
|
85 |
+
}
|
86 |
+
.btn-default:hover,
|
87 |
+
.btn-default:focus {
|
88 |
+
background-color: #e0e0e0;
|
89 |
+
background-position: 0 -15px;
|
90 |
+
}
|
91 |
+
.btn-default:active,
|
92 |
+
.btn-default.active {
|
93 |
+
background-color: #e0e0e0;
|
94 |
+
border-color: #dbdbdb;
|
95 |
+
}
|
96 |
+
.btn-default.disabled,
|
97 |
+
.btn-default[disabled],
|
98 |
+
fieldset[disabled] .btn-default,
|
99 |
+
.btn-default.disabled:hover,
|
100 |
+
.btn-default[disabled]:hover,
|
101 |
+
fieldset[disabled] .btn-default:hover,
|
102 |
+
.btn-default.disabled:focus,
|
103 |
+
.btn-default[disabled]:focus,
|
104 |
+
fieldset[disabled] .btn-default:focus,
|
105 |
+
.btn-default.disabled.focus,
|
106 |
+
.btn-default[disabled].focus,
|
107 |
+
fieldset[disabled] .btn-default.focus,
|
108 |
+
.btn-default.disabled:active,
|
109 |
+
.btn-default[disabled]:active,
|
110 |
+
fieldset[disabled] .btn-default:active,
|
111 |
+
.btn-default.disabled.active,
|
112 |
+
.btn-default[disabled].active,
|
113 |
+
fieldset[disabled] .btn-default.active {
|
114 |
+
background-color: #e0e0e0;
|
115 |
+
background-image: none;
|
116 |
+
}
|
117 |
+
.btn-primary {
|
118 |
+
background-image: -webkit-linear-gradient(top, #337ab7 0%, #265a88 100%);
|
119 |
+
background-image: -o-linear-gradient(top, #337ab7 0%, #265a88 100%);
|
120 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#265a88));
|
121 |
+
background-image: linear-gradient(to bottom, #337ab7 0%, #265a88 100%);
|
122 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff265a88', GradientType=0);
|
123 |
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
124 |
+
background-repeat: repeat-x;
|
125 |
+
border-color: #245580;
|
126 |
+
}
|
127 |
+
.btn-primary:hover,
|
128 |
+
.btn-primary:focus {
|
129 |
+
background-color: #265a88;
|
130 |
+
background-position: 0 -15px;
|
131 |
+
}
|
132 |
+
.btn-primary:active,
|
133 |
+
.btn-primary.active {
|
134 |
+
background-color: #265a88;
|
135 |
+
border-color: #245580;
|
136 |
+
}
|
137 |
+
.btn-primary.disabled,
|
138 |
+
.btn-primary[disabled],
|
139 |
+
fieldset[disabled] .btn-primary,
|
140 |
+
.btn-primary.disabled:hover,
|
141 |
+
.btn-primary[disabled]:hover,
|
142 |
+
fieldset[disabled] .btn-primary:hover,
|
143 |
+
.btn-primary.disabled:focus,
|
144 |
+
.btn-primary[disabled]:focus,
|
145 |
+
fieldset[disabled] .btn-primary:focus,
|
146 |
+
.btn-primary.disabled.focus,
|
147 |
+
.btn-primary[disabled].focus,
|
148 |
+
fieldset[disabled] .btn-primary.focus,
|
149 |
+
.btn-primary.disabled:active,
|
150 |
+
.btn-primary[disabled]:active,
|
151 |
+
fieldset[disabled] .btn-primary:active,
|
152 |
+
.btn-primary.disabled.active,
|
153 |
+
.btn-primary[disabled].active,
|
154 |
+
fieldset[disabled] .btn-primary.active {
|
155 |
+
background-color: #265a88;
|
156 |
+
background-image: none;
|
157 |
+
}
|
158 |
+
.btn-success {
|
159 |
+
background-image: -webkit-linear-gradient(top, #5cb85c 0%, #419641 100%);
|
160 |
+
background-image: -o-linear-gradient(top, #5cb85c 0%, #419641 100%);
|
161 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#5cb85c), to(#419641));
|
162 |
+
background-image: linear-gradient(to bottom, #5cb85c 0%, #419641 100%);
|
163 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0);
|
164 |
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
165 |
+
background-repeat: repeat-x;
|
166 |
+
border-color: #3e8f3e;
|
167 |
+
}
|
168 |
+
.btn-success:hover,
|
169 |
+
.btn-success:focus {
|
170 |
+
background-color: #419641;
|
171 |
+
background-position: 0 -15px;
|
172 |
+
}
|
173 |
+
.btn-success:active,
|
174 |
+
.btn-success.active {
|
175 |
+
background-color: #419641;
|
176 |
+
border-color: #3e8f3e;
|
177 |
+
}
|
178 |
+
.btn-success.disabled,
|
179 |
+
.btn-success[disabled],
|
180 |
+
fieldset[disabled] .btn-success,
|
181 |
+
.btn-success.disabled:hover,
|
182 |
+
.btn-success[disabled]:hover,
|
183 |
+
fieldset[disabled] .btn-success:hover,
|
184 |
+
.btn-success.disabled:focus,
|
185 |
+
.btn-success[disabled]:focus,
|
186 |
+
fieldset[disabled] .btn-success:focus,
|
187 |
+
.btn-success.disabled.focus,
|
188 |
+
.btn-success[disabled].focus,
|
189 |
+
fieldset[disabled] .btn-success.focus,
|
190 |
+
.btn-success.disabled:active,
|
191 |
+
.btn-success[disabled]:active,
|
192 |
+
fieldset[disabled] .btn-success:active,
|
193 |
+
.btn-success.disabled.active,
|
194 |
+
.btn-success[disabled].active,
|
195 |
+
fieldset[disabled] .btn-success.active {
|
196 |
+
background-color: #419641;
|
197 |
+
background-image: none;
|
198 |
+
}
|
199 |
+
.btn-info {
|
200 |
+
background-image: -webkit-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);
|
201 |
+
background-image: -o-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);
|
202 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#5bc0de), to(#2aabd2));
|
203 |
+
background-image: linear-gradient(to bottom, #5bc0de 0%, #2aabd2 100%);
|
204 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0);
|
205 |
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
206 |
+
background-repeat: repeat-x;
|
207 |
+
border-color: #28a4c9;
|
208 |
+
}
|
209 |
+
.btn-info:hover,
|
210 |
+
.btn-info:focus {
|
211 |
+
background-color: #2aabd2;
|
212 |
+
background-position: 0 -15px;
|
213 |
+
}
|
214 |
+
.btn-info:active,
|
215 |
+
.btn-info.active {
|
216 |
+
background-color: #2aabd2;
|
217 |
+
border-color: #28a4c9;
|
218 |
+
}
|
219 |
+
.btn-info.disabled,
|
220 |
+
.btn-info[disabled],
|
221 |
+
fieldset[disabled] .btn-info,
|
222 |
+
.btn-info.disabled:hover,
|
223 |
+
.btn-info[disabled]:hover,
|
224 |
+
fieldset[disabled] .btn-info:hover,
|
225 |
+
.btn-info.disabled:focus,
|
226 |
+
.btn-info[disabled]:focus,
|
227 |
+
fieldset[disabled] .btn-info:focus,
|
228 |
+
.btn-info.disabled.focus,
|
229 |
+
.btn-info[disabled].focus,
|
230 |
+
fieldset[disabled] .btn-info.focus,
|
231 |
+
.btn-info.disabled:active,
|
232 |
+
.btn-info[disabled]:active,
|
233 |
+
fieldset[disabled] .btn-info:active,
|
234 |
+
.btn-info.disabled.active,
|
235 |
+
.btn-info[disabled].active,
|
236 |
+
fieldset[disabled] .btn-info.active {
|
237 |
+
background-color: #2aabd2;
|
238 |
+
background-image: none;
|
239 |
+
}
|
240 |
+
.btn-warning {
|
241 |
+
background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);
|
242 |
+
background-image: -o-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);
|
243 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#f0ad4e), to(#eb9316));
|
244 |
+
background-image: linear-gradient(to bottom, #f0ad4e 0%, #eb9316 100%);
|
245 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0);
|
246 |
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
247 |
+
background-repeat: repeat-x;
|
248 |
+
border-color: #e38d13;
|
249 |
+
}
|
250 |
+
.btn-warning:hover,
|
251 |
+
.btn-warning:focus {
|
252 |
+
background-color: #eb9316;
|
253 |
+
background-position: 0 -15px;
|
254 |
+
}
|
255 |
+
.btn-warning:active,
|
256 |
+
.btn-warning.active {
|
257 |
+
background-color: #eb9316;
|
258 |
+
border-color: #e38d13;
|
259 |
+
}
|
260 |
+
.btn-warning.disabled,
|
261 |
+
.btn-warning[disabled],
|
262 |
+
fieldset[disabled] .btn-warning,
|
263 |
+
.btn-warning.disabled:hover,
|
264 |
+
.btn-warning[disabled]:hover,
|
265 |
+
fieldset[disabled] .btn-warning:hover,
|
266 |
+
.btn-warning.disabled:focus,
|
267 |
+
.btn-warning[disabled]:focus,
|
268 |
+
fieldset[disabled] .btn-warning:focus,
|
269 |
+
.btn-warning.disabled.focus,
|
270 |
+
.btn-warning[disabled].focus,
|
271 |
+
fieldset[disabled] .btn-warning.focus,
|
272 |
+
.btn-warning.disabled:active,
|
273 |
+
.btn-warning[disabled]:active,
|
274 |
+
fieldset[disabled] .btn-warning:active,
|
275 |
+
.btn-warning.disabled.active,
|
276 |
+
.btn-warning[disabled].active,
|
277 |
+
fieldset[disabled] .btn-warning.active {
|
278 |
+
background-color: #eb9316;
|
279 |
+
background-image: none;
|
280 |
+
}
|
281 |
+
.btn-danger {
|
282 |
+
background-image: -webkit-linear-gradient(top, #d9534f 0%, #c12e2a 100%);
|
283 |
+
background-image: -o-linear-gradient(top, #d9534f 0%, #c12e2a 100%);
|
284 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#d9534f), to(#c12e2a));
|
285 |
+
background-image: linear-gradient(to bottom, #d9534f 0%, #c12e2a 100%);
|
286 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0);
|
287 |
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
288 |
+
background-repeat: repeat-x;
|
289 |
+
border-color: #b92c28;
|
290 |
+
}
|
291 |
+
.btn-danger:hover,
|
292 |
+
.btn-danger:focus {
|
293 |
+
background-color: #c12e2a;
|
294 |
+
background-position: 0 -15px;
|
295 |
+
}
|
296 |
+
.btn-danger:active,
|
297 |
+
.btn-danger.active {
|
298 |
+
background-color: #c12e2a;
|
299 |
+
border-color: #b92c28;
|
300 |
+
}
|
301 |
+
.btn-danger.disabled,
|
302 |
+
.btn-danger[disabled],
|
303 |
+
fieldset[disabled] .btn-danger,
|
304 |
+
.btn-danger.disabled:hover,
|
305 |
+
.btn-danger[disabled]:hover,
|
306 |
+
fieldset[disabled] .btn-danger:hover,
|
307 |
+
.btn-danger.disabled:focus,
|
308 |
+
.btn-danger[disabled]:focus,
|
309 |
+
fieldset[disabled] .btn-danger:focus,
|
310 |
+
.btn-danger.disabled.focus,
|
311 |
+
.btn-danger[disabled].focus,
|
312 |
+
fieldset[disabled] .btn-danger.focus,
|
313 |
+
.btn-danger.disabled:active,
|
314 |
+
.btn-danger[disabled]:active,
|
315 |
+
fieldset[disabled] .btn-danger:active,
|
316 |
+
.btn-danger.disabled.active,
|
317 |
+
.btn-danger[disabled].active,
|
318 |
+
fieldset[disabled] .btn-danger.active {
|
319 |
+
background-color: #c12e2a;
|
320 |
+
background-image: none;
|
321 |
+
}
|
322 |
+
.thumbnail,
|
323 |
+
.img-thumbnail {
|
324 |
+
-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
|
325 |
+
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
|
326 |
+
}
|
327 |
+
.dropdown-menu > li > a:hover,
|
328 |
+
.dropdown-menu > li > a:focus {
|
329 |
+
background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
|
330 |
+
background-image: -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
|
331 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#e8e8e8));
|
332 |
+
background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);
|
333 |
+
background-repeat: repeat-x;
|
334 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);
|
335 |
+
background-color: #e8e8e8;
|
336 |
+
}
|
337 |
+
.dropdown-menu > .active > a,
|
338 |
+
.dropdown-menu > .active > a:hover,
|
339 |
+
.dropdown-menu > .active > a:focus {
|
340 |
+
background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
|
341 |
+
background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
|
342 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4));
|
343 |
+
background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);
|
344 |
+
background-repeat: repeat-x;
|
345 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);
|
346 |
+
background-color: #2e6da4;
|
347 |
+
}
|
348 |
+
.navbar-default {
|
349 |
+
background-image: -webkit-linear-gradient(top, #ffffff 0%, #f8f8f8 100%);
|
350 |
+
background-image: -o-linear-gradient(top, #ffffff 0%, #f8f8f8 100%);
|
351 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#f8f8f8));
|
352 |
+
background-image: linear-gradient(to bottom, #ffffff 0%, #f8f8f8 100%);
|
353 |
+
background-repeat: repeat-x;
|
354 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0);
|
355 |
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
356 |
+
border-radius: 4px;
|
357 |
+
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 5px rgba(0, 0, 0, 0.075);
|
358 |
+
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 5px rgba(0, 0, 0, 0.075);
|
359 |
+
}
|
360 |
+
.navbar-default .navbar-nav > .open > a,
|
361 |
+
.navbar-default .navbar-nav > .active > a {
|
362 |
+
background-image: -webkit-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%);
|
363 |
+
background-image: -o-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%);
|
364 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#dbdbdb), to(#e2e2e2));
|
365 |
+
background-image: linear-gradient(to bottom, #dbdbdb 0%, #e2e2e2 100%);
|
366 |
+
background-repeat: repeat-x;
|
367 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdbdbdb', endColorstr='#ffe2e2e2', GradientType=0);
|
368 |
+
-webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.075);
|
369 |
+
box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.075);
|
370 |
+
}
|
371 |
+
.navbar-brand,
|
372 |
+
.navbar-nav > li > a {
|
373 |
+
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
|
374 |
+
}
|
375 |
+
.navbar-inverse {
|
376 |
+
background-image: -webkit-linear-gradient(top, #3c3c3c 0%, #222222 100%);
|
377 |
+
background-image: -o-linear-gradient(top, #3c3c3c 0%, #222222 100%);
|
378 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#3c3c3c), to(#222222));
|
379 |
+
background-image: linear-gradient(to bottom, #3c3c3c 0%, #222222 100%);
|
380 |
+
background-repeat: repeat-x;
|
381 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0);
|
382 |
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
383 |
+
border-radius: 4px;
|
384 |
+
}
|
385 |
+
.navbar-inverse .navbar-nav > .open > a,
|
386 |
+
.navbar-inverse .navbar-nav > .active > a {
|
387 |
+
background-image: -webkit-linear-gradient(top, #080808 0%, #0f0f0f 100%);
|
388 |
+
background-image: -o-linear-gradient(top, #080808 0%, #0f0f0f 100%);
|
389 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#080808), to(#0f0f0f));
|
390 |
+
background-image: linear-gradient(to bottom, #080808 0%, #0f0f0f 100%);
|
391 |
+
background-repeat: repeat-x;
|
392 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff080808', endColorstr='#ff0f0f0f', GradientType=0);
|
393 |
+
-webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.25);
|
394 |
+
box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.25);
|
395 |
+
}
|
396 |
+
.navbar-inverse .navbar-brand,
|
397 |
+
.navbar-inverse .navbar-nav > li > a {
|
398 |
+
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
399 |
+
}
|
400 |
+
.navbar-static-top,
|
401 |
+
.navbar-fixed-top,
|
402 |
+
.navbar-fixed-bottom {
|
403 |
+
border-radius: 0;
|
404 |
+
}
|
405 |
+
@media (max-width: 767px) {
|
406 |
+
.navbar .navbar-nav .open .dropdown-menu > .active > a,
|
407 |
+
.navbar .navbar-nav .open .dropdown-menu > .active > a:hover,
|
408 |
+
.navbar .navbar-nav .open .dropdown-menu > .active > a:focus {
|
409 |
+
color: #fff;
|
410 |
+
background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
|
411 |
+
background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
|
412 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4));
|
413 |
+
background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);
|
414 |
+
background-repeat: repeat-x;
|
415 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);
|
416 |
+
}
|
417 |
+
}
|
418 |
+
.alert {
|
419 |
+
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
|
420 |
+
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
|
421 |
+
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
|
422 |
+
}
|
423 |
+
.alert-success {
|
424 |
+
background-image: -webkit-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);
|
425 |
+
background-image: -o-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);
|
426 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#dff0d8), to(#c8e5bc));
|
427 |
+
background-image: linear-gradient(to bottom, #dff0d8 0%, #c8e5bc 100%);
|
428 |
+
background-repeat: repeat-x;
|
429 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);
|
430 |
+
border-color: #b2dba1;
|
431 |
+
}
|
432 |
+
.alert-info {
|
433 |
+
background-image: -webkit-linear-gradient(top, #d9edf7 0%, #b9def0 100%);
|
434 |
+
background-image: -o-linear-gradient(top, #d9edf7 0%, #b9def0 100%);
|
435 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#d9edf7), to(#b9def0));
|
436 |
+
background-image: linear-gradient(to bottom, #d9edf7 0%, #b9def0 100%);
|
437 |
+
background-repeat: repeat-x;
|
438 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0);
|
439 |
+
border-color: #9acfea;
|
440 |
+
}
|
441 |
+
.alert-warning {
|
442 |
+
background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);
|
443 |
+
background-image: -o-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);
|
444 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#fcf8e3), to(#f8efc0));
|
445 |
+
background-image: linear-gradient(to bottom, #fcf8e3 0%, #f8efc0 100%);
|
446 |
+
background-repeat: repeat-x;
|
447 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0);
|
448 |
+
border-color: #f5e79e;
|
449 |
+
}
|
450 |
+
.alert-danger {
|
451 |
+
background-image: -webkit-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);
|
452 |
+
background-image: -o-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);
|
453 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#f2dede), to(#e7c3c3));
|
454 |
+
background-image: linear-gradient(to bottom, #f2dede 0%, #e7c3c3 100%);
|
455 |
+
background-repeat: repeat-x;
|
456 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);
|
457 |
+
border-color: #dca7a7;
|
458 |
+
}
|
459 |
+
.progress {
|
460 |
+
background-image: -webkit-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);
|
461 |
+
background-image: -o-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);
|
462 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#ebebeb), to(#f5f5f5));
|
463 |
+
background-image: linear-gradient(to bottom, #ebebeb 0%, #f5f5f5 100%);
|
464 |
+
background-repeat: repeat-x;
|
465 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0);
|
466 |
+
}
|
467 |
+
.progress-bar {
|
468 |
+
background-image: -webkit-linear-gradient(top, #337ab7 0%, #286090 100%);
|
469 |
+
background-image: -o-linear-gradient(top, #337ab7 0%, #286090 100%);
|
470 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#286090));
|
471 |
+
background-image: linear-gradient(to bottom, #337ab7 0%, #286090 100%);
|
472 |
+
background-repeat: repeat-x;
|
473 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff286090', GradientType=0);
|
474 |
+
}
|
475 |
+
.progress-bar-success {
|
476 |
+
background-image: -webkit-linear-gradient(top, #5cb85c 0%, #449d44 100%);
|
477 |
+
background-image: -o-linear-gradient(top, #5cb85c 0%, #449d44 100%);
|
478 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#5cb85c), to(#449d44));
|
479 |
+
background-image: linear-gradient(to bottom, #5cb85c 0%, #449d44 100%);
|
480 |
+
background-repeat: repeat-x;
|
481 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0);
|
482 |
+
}
|
483 |
+
.progress-bar-info {
|
484 |
+
background-image: -webkit-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);
|
485 |
+
background-image: -o-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);
|
486 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#5bc0de), to(#31b0d5));
|
487 |
+
background-image: linear-gradient(to bottom, #5bc0de 0%, #31b0d5 100%);
|
488 |
+
background-repeat: repeat-x;
|
489 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0);
|
490 |
+
}
|
491 |
+
.progress-bar-warning {
|
492 |
+
background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);
|
493 |
+
background-image: -o-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);
|
494 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#f0ad4e), to(#ec971f));
|
495 |
+
background-image: linear-gradient(to bottom, #f0ad4e 0%, #ec971f 100%);
|
496 |
+
background-repeat: repeat-x;
|
497 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0);
|
498 |
+
}
|
499 |
+
.progress-bar-danger {
|
500 |
+
background-image: -webkit-linear-gradient(top, #d9534f 0%, #c9302c 100%);
|
501 |
+
background-image: -o-linear-gradient(top, #d9534f 0%, #c9302c 100%);
|
502 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#d9534f), to(#c9302c));
|
503 |
+
background-image: linear-gradient(to bottom, #d9534f 0%, #c9302c 100%);
|
504 |
+
background-repeat: repeat-x;
|
505 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0);
|
506 |
+
}
|
507 |
+
.progress-bar-striped {
|
508 |
+
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);
|
509 |
+
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
510 |
+
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);
|
511 |
+
}
|
512 |
+
.list-group {
|
513 |
+
border-radius: 4px;
|
514 |
+
-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
|
515 |
+
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
|
516 |
+
}
|
517 |
+
.list-group-item.active,
|
518 |
+
.list-group-item.active:hover,
|
519 |
+
.list-group-item.active:focus {
|
520 |
+
text-shadow: 0 -1px 0 #286090;
|
521 |
+
background-image: -webkit-linear-gradient(top, #337ab7 0%, #2b669a 100%);
|
522 |
+
background-image: -o-linear-gradient(top, #337ab7 0%, #2b669a 100%);
|
523 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2b669a));
|
524 |
+
background-image: linear-gradient(to bottom, #337ab7 0%, #2b669a 100%);
|
525 |
+
background-repeat: repeat-x;
|
526 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2b669a', GradientType=0);
|
527 |
+
border-color: #2b669a;
|
528 |
+
}
|
529 |
+
.list-group-item.active .badge,
|
530 |
+
.list-group-item.active:hover .badge,
|
531 |
+
.list-group-item.active:focus .badge {
|
532 |
+
text-shadow: none;
|
533 |
+
}
|
534 |
+
.panel {
|
535 |
+
-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
|
536 |
+
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
|
537 |
+
}
|
538 |
+
.panel-default > .panel-heading {
|
539 |
+
background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
|
540 |
+
background-image: -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
|
541 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#e8e8e8));
|
542 |
+
background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);
|
543 |
+
background-repeat: repeat-x;
|
544 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);
|
545 |
+
}
|
546 |
+
.panel-primary > .panel-heading {
|
547 |
+
background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
|
548 |
+
background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
|
549 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4));
|
550 |
+
background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);
|
551 |
+
background-repeat: repeat-x;
|
552 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);
|
553 |
+
}
|
554 |
+
.panel-success > .panel-heading {
|
555 |
+
background-image: -webkit-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%);
|
556 |
+
background-image: -o-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%);
|
557 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#dff0d8), to(#d0e9c6));
|
558 |
+
background-image: linear-gradient(to bottom, #dff0d8 0%, #d0e9c6 100%);
|
559 |
+
background-repeat: repeat-x;
|
560 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0);
|
561 |
+
}
|
562 |
+
.panel-info > .panel-heading {
|
563 |
+
background-image: -webkit-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%);
|
564 |
+
background-image: -o-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%);
|
565 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#d9edf7), to(#c4e3f3));
|
566 |
+
background-image: linear-gradient(to bottom, #d9edf7 0%, #c4e3f3 100%);
|
567 |
+
background-repeat: repeat-x;
|
568 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0);
|
569 |
+
}
|
570 |
+
.panel-warning > .panel-heading {
|
571 |
+
background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%);
|
572 |
+
background-image: -o-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%);
|
573 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#fcf8e3), to(#faf2cc));
|
574 |
+
background-image: linear-gradient(to bottom, #fcf8e3 0%, #faf2cc 100%);
|
575 |
+
background-repeat: repeat-x;
|
576 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0);
|
577 |
+
}
|
578 |
+
.panel-danger > .panel-heading {
|
579 |
+
background-image: -webkit-linear-gradient(top, #f2dede 0%, #ebcccc 100%);
|
580 |
+
background-image: -o-linear-gradient(top, #f2dede 0%, #ebcccc 100%);
|
581 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#f2dede), to(#ebcccc));
|
582 |
+
background-image: linear-gradient(to bottom, #f2dede 0%, #ebcccc 100%);
|
583 |
+
background-repeat: repeat-x;
|
584 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0);
|
585 |
+
}
|
586 |
+
.well {
|
587 |
+
background-image: -webkit-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%);
|
588 |
+
background-image: -o-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%);
|
589 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#e8e8e8), to(#f5f5f5));
|
590 |
+
background-image: linear-gradient(to bottom, #e8e8e8 0%, #f5f5f5 100%);
|
591 |
+
background-repeat: repeat-x;
|
592 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0);
|
593 |
+
border-color: #dcdcdc;
|
594 |
+
-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(255, 255, 255, 0.1);
|
595 |
+
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(255, 255, 255, 0.1);
|
596 |
+
}
|
bootstrap/css/bootstrap-theme.css.map
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
{"version":3,"sources":["less/theme.less","less/mixins/vendor-prefixes.less","bootstrap-theme.css","less/mixins/gradients.less","less/mixins/reset-filter.less"],"names":[],"mappings":"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","file":"bootstrap-theme.css","sourcesContent":["\n//\n// Load core variables and mixins\n// --------------------------------------------------\n\n@import \"variables.less\";\n@import \"mixins.less\";\n\n\n//\n// Buttons\n// --------------------------------------------------\n\n// Common styles\n.btn-default,\n.btn-primary,\n.btn-success,\n.btn-info,\n.btn-warning,\n.btn-danger {\n text-shadow: 0 -1px 0 rgba(0,0,0,.2);\n @shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 1px 1px rgba(0,0,0,.075);\n .box-shadow(@shadow);\n\n // Reset the shadow\n &:active,\n &.active {\n .box-shadow(inset 0 3px 5px rgba(0,0,0,.125));\n }\n\n .badge {\n text-shadow: none;\n }\n}\n\n// Mixin for generating new styles\n.btn-styles(@btn-color: #555) {\n #gradient > .vertical(@start-color: @btn-color; @end-color: darken(@btn-color, 12%));\n .reset-filter(); // Disable gradients for IE9 because filter bleeds through rounded corners; see https://github.com/twbs/bootstrap/issues/10620\n background-repeat: repeat-x;\n border-color: darken(@btn-color, 14%);\n\n &:hover,\n &:focus {\n background-color: darken(@btn-color, 12%);\n background-position: 0 -15px;\n }\n\n &:active,\n &.active {\n background-color: darken(@btn-color, 12%);\n border-color: darken(@btn-color, 14%);\n }\n\n &.disabled,\n &:disabled,\n &[disabled] {\n background-color: darken(@btn-color, 12%);\n background-image: none;\n }\n}\n\n// Common styles\n.btn {\n // Remove the gradient for the pressed/active state\n &:active,\n &.active {\n background-image: none;\n }\n}\n\n// Apply the mixin to the buttons\n.btn-default { .btn-styles(@btn-default-bg); text-shadow: 0 1px 0 #fff; border-color: #ccc; }\n.btn-primary { .btn-styles(@btn-primary-bg); }\n.btn-success { .btn-styles(@btn-success-bg); }\n.btn-info { .btn-styles(@btn-info-bg); }\n.btn-warning { .btn-styles(@btn-warning-bg); }\n.btn-danger { .btn-styles(@btn-danger-bg); }\n\n\n//\n// Images\n// --------------------------------------------------\n\n.thumbnail,\n.img-thumbnail {\n .box-shadow(0 1px 2px rgba(0,0,0,.075));\n}\n\n\n//\n// Dropdowns\n// --------------------------------------------------\n\n.dropdown-menu > li > a:hover,\n.dropdown-menu > li > a:focus {\n #gradient > .vertical(@start-color: @dropdown-link-hover-bg; @end-color: darken(@dropdown-link-hover-bg, 5%));\n background-color: darken(@dropdown-link-hover-bg, 5%);\n}\n.dropdown-menu > .active > a,\n.dropdown-menu > .active > a:hover,\n.dropdown-menu > .active > a:focus {\n #gradient > .vertical(@start-color: @dropdown-link-active-bg; @end-color: darken(@dropdown-link-active-bg, 5%));\n background-color: darken(@dropdown-link-active-bg, 5%);\n}\n\n\n//\n// Navbar\n// --------------------------------------------------\n\n// Default navbar\n.navbar-default {\n #gradient > .vertical(@start-color: lighten(@navbar-default-bg, 10%); @end-color: @navbar-default-bg);\n .reset-filter(); // Remove gradient in IE<10 to fix bug where dropdowns don't get triggered\n border-radius: @navbar-border-radius;\n @shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 1px 5px rgba(0,0,0,.075);\n .box-shadow(@shadow);\n\n .navbar-nav > .open > a,\n .navbar-nav > .active > a {\n #gradient > .vertical(@start-color: darken(@navbar-default-link-active-bg, 5%); @end-color: darken(@navbar-default-link-active-bg, 2%));\n .box-shadow(inset 0 3px 9px rgba(0,0,0,.075));\n }\n}\n.navbar-brand,\n.navbar-nav > li > a {\n text-shadow: 0 1px 0 rgba(255,255,255,.25);\n}\n\n// Inverted navbar\n.navbar-inverse {\n #gradient > .vertical(@start-color: lighten(@navbar-inverse-bg, 10%); @end-color: @navbar-inverse-bg);\n .reset-filter(); // Remove gradient in IE<10 to fix bug where dropdowns don't get triggered; see https://github.com/twbs/bootstrap/issues/10257\n\n .navbar-nav > .open > a,\n .navbar-nav > .active > a {\n #gradient > .vertical(@start-color: @navbar-inverse-link-active-bg; @end-color: lighten(@navbar-inverse-link-active-bg, 2.5%));\n .box-shadow(inset 0 3px 9px rgba(0,0,0,.25));\n }\n\n .navbar-brand,\n .navbar-nav > li > a {\n text-shadow: 0 -1px 0 rgba(0,0,0,.25);\n }\n}\n\n// Undo rounded corners in static and fixed navbars\n.navbar-static-top,\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n border-radius: 0;\n}\n\n// Fix active state of dropdown items in collapsed mode\n@media (max-width: @grid-float-breakpoint-max) {\n .navbar .navbar-nav .open .dropdown-menu > .active > a {\n &,\n &:hover,\n &:focus {\n color: #fff;\n #gradient > .vertical(@start-color: @dropdown-link-active-bg; @end-color: darken(@dropdown-link-active-bg, 5%));\n }\n }\n}\n\n\n//\n// Alerts\n// --------------------------------------------------\n\n// Common styles\n.alert {\n text-shadow: 0 1px 0 rgba(255,255,255,.2);\n @shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 1px 2px rgba(0,0,0,.05);\n .box-shadow(@shadow);\n}\n\n// Mixin for generating new styles\n.alert-styles(@color) {\n #gradient > .vertical(@start-color: @color; @end-color: darken(@color, 7.5%));\n border-color: darken(@color, 15%);\n}\n\n// Apply the mixin to the alerts\n.alert-success { .alert-styles(@alert-success-bg); }\n.alert-info { .alert-styles(@alert-info-bg); }\n.alert-warning { .alert-styles(@alert-warning-bg); }\n.alert-danger { .alert-styles(@alert-danger-bg); }\n\n\n//\n// Progress bars\n// --------------------------------------------------\n\n// Give the progress background some depth\n.progress {\n #gradient > .vertical(@start-color: darken(@progress-bg, 4%); @end-color: @progress-bg)\n}\n\n// Mixin for generating new styles\n.progress-bar-styles(@color) {\n #gradient > .vertical(@start-color: @color; @end-color: darken(@color, 10%));\n}\n\n// Apply the mixin to the progress bars\n.progress-bar { .progress-bar-styles(@progress-bar-bg); }\n.progress-bar-success { .progress-bar-styles(@progress-bar-success-bg); }\n.progress-bar-info { .progress-bar-styles(@progress-bar-info-bg); }\n.progress-bar-warning { .progress-bar-styles(@progress-bar-warning-bg); }\n.progress-bar-danger { .progress-bar-styles(@progress-bar-danger-bg); }\n\n// Reset the striped class because our mixins don't do multiple gradients and\n// the above custom styles override the new `.progress-bar-striped` in v3.2.0.\n.progress-bar-striped {\n #gradient > .striped();\n}\n\n\n//\n// List groups\n// --------------------------------------------------\n\n.list-group {\n border-radius: @border-radius-base;\n .box-shadow(0 1px 2px rgba(0,0,0,.075));\n}\n.list-group-item.active,\n.list-group-item.active:hover,\n.list-group-item.active:focus {\n text-shadow: 0 -1px 0 darken(@list-group-active-bg, 10%);\n #gradient > .vertical(@start-color: @list-group-active-bg; @end-color: darken(@list-group-active-bg, 7.5%));\n border-color: darken(@list-group-active-border, 7.5%);\n\n .badge {\n text-shadow: none;\n }\n}\n\n\n//\n// Panels\n// --------------------------------------------------\n\n// Common styles\n.panel {\n .box-shadow(0 1px 2px rgba(0,0,0,.05));\n}\n\n// Mixin for generating new styles\n.panel-heading-styles(@color) {\n #gradient > .vertical(@start-color: @color; @end-color: darken(@color, 5%));\n}\n\n// Apply the mixin to the panel headings only\n.panel-default > .panel-heading { .panel-heading-styles(@panel-default-heading-bg); }\n.panel-primary > .panel-heading { .panel-heading-styles(@panel-primary-heading-bg); }\n.panel-success > .panel-heading { .panel-heading-styles(@panel-success-heading-bg); }\n.panel-info > .panel-heading { .panel-heading-styles(@panel-info-heading-bg); }\n.panel-warning > .panel-heading { .panel-heading-styles(@panel-warning-heading-bg); }\n.panel-danger > .panel-heading { .panel-heading-styles(@panel-danger-heading-bg); }\n\n\n//\n// Wells\n// --------------------------------------------------\n\n.well {\n #gradient > .vertical(@start-color: darken(@well-bg, 5%); @end-color: @well-bg);\n border-color: darken(@well-bg, 10%);\n @shadow: inset 0 1px 3px rgba(0,0,0,.05), 0 1px 0 rgba(255,255,255,.1);\n .box-shadow(@shadow);\n}\n","// Vendor Prefixes\n//\n// All vendor mixins are deprecated as of v3.2.0 due to the introduction of\n// Autoprefixer in our Gruntfile. They will be removed in v4.\n\n// - Animations\n// - Backface visibility\n// - Box shadow\n// - Box sizing\n// - Content columns\n// - Hyphens\n// - Placeholder text\n// - Transformations\n// - Transitions\n// - User Select\n\n\n// Animations\n.animation(@animation) {\n -webkit-animation: @animation;\n -o-animation: @animation;\n animation: @animation;\n}\n.animation-name(@name) {\n -webkit-animation-name: @name;\n animation-name: @name;\n}\n.animation-duration(@duration) {\n -webkit-animation-duration: @duration;\n animation-duration: @duration;\n}\n.animation-timing-function(@timing-function) {\n -webkit-animation-timing-function: @timing-function;\n animation-timing-function: @timing-function;\n}\n.animation-delay(@delay) {\n -webkit-animation-delay: @delay;\n animation-delay: @delay;\n}\n.animation-iteration-count(@iteration-count) {\n -webkit-animation-iteration-count: @iteration-count;\n animation-iteration-count: @iteration-count;\n}\n.animation-direction(@direction) {\n -webkit-animation-direction: @direction;\n animation-direction: @direction;\n}\n.animation-fill-mode(@fill-mode) {\n -webkit-animation-fill-mode: @fill-mode;\n animation-fill-mode: @fill-mode;\n}\n\n// Backface visibility\n// Prevent browsers from flickering when using CSS 3D transforms.\n// Default value is `visible`, but can be changed to `hidden`\n\n.backface-visibility(@visibility){\n -webkit-backface-visibility: @visibility;\n -moz-backface-visibility: @visibility;\n backface-visibility: @visibility;\n}\n\n// Drop shadows\n//\n// Note: Deprecated `.box-shadow()` as of v3.1.0 since all of Bootstrap's\n// supported browsers that have box shadow capabilities now support it.\n\n.box-shadow(@shadow) {\n -webkit-box-shadow: @shadow; // iOS <4.3 & Android <4.1\n box-shadow: @shadow;\n}\n\n// Box sizing\n.box-sizing(@boxmodel) {\n -webkit-box-sizing: @boxmodel;\n -moz-box-sizing: @boxmodel;\n box-sizing: @boxmodel;\n}\n\n// CSS3 Content Columns\n.content-columns(@column-count; @column-gap: @grid-gutter-width) {\n -webkit-column-count: @column-count;\n -moz-column-count: @column-count;\n column-count: @column-count;\n -webkit-column-gap: @column-gap;\n -moz-column-gap: @column-gap;\n column-gap: @column-gap;\n}\n\n// Optional hyphenation\n.hyphens(@mode: auto) {\n word-wrap: break-word;\n -webkit-hyphens: @mode;\n -moz-hyphens: @mode;\n -ms-hyphens: @mode; // IE10+\n -o-hyphens: @mode;\n hyphens: @mode;\n}\n\n// Placeholder text\n.placeholder(@color: @input-color-placeholder) {\n // Firefox\n &::-moz-placeholder {\n color: @color;\n opacity: 1; // Override Firefox's unusual default opacity; see https://github.com/twbs/bootstrap/pull/11526\n }\n &:-ms-input-placeholder { color: @color; } // Internet Explorer 10+\n &::-webkit-input-placeholder { color: @color; } // Safari and Chrome\n}\n\n// Transformations\n.scale(@ratio) {\n -webkit-transform: scale(@ratio);\n -ms-transform: scale(@ratio); // IE9 only\n -o-transform: scale(@ratio);\n transform: scale(@ratio);\n}\n.scale(@ratioX; @ratioY) {\n -webkit-transform: scale(@ratioX, @ratioY);\n -ms-transform: scale(@ratioX, @ratioY); // IE9 only\n -o-transform: scale(@ratioX, @ratioY);\n transform: scale(@ratioX, @ratioY);\n}\n.scaleX(@ratio) {\n -webkit-transform: scaleX(@ratio);\n -ms-transform: scaleX(@ratio); // IE9 only\n -o-transform: scaleX(@ratio);\n transform: scaleX(@ratio);\n}\n.scaleY(@ratio) {\n -webkit-transform: scaleY(@ratio);\n -ms-transform: scaleY(@ratio); // IE9 only\n -o-transform: scaleY(@ratio);\n transform: scaleY(@ratio);\n}\n.skew(@x; @y) {\n -webkit-transform: skewX(@x) skewY(@y);\n -ms-transform: skewX(@x) skewY(@y); // See https://github.com/twbs/bootstrap/issues/4885; IE9+\n -o-transform: skewX(@x) skewY(@y);\n transform: skewX(@x) skewY(@y);\n}\n.translate(@x; @y) {\n -webkit-transform: translate(@x, @y);\n -ms-transform: translate(@x, @y); // IE9 only\n -o-transform: translate(@x, @y);\n transform: translate(@x, @y);\n}\n.translate3d(@x; @y; @z) {\n -webkit-transform: translate3d(@x, @y, @z);\n transform: translate3d(@x, @y, @z);\n}\n.rotate(@degrees) {\n -webkit-transform: rotate(@degrees);\n -ms-transform: rotate(@degrees); // IE9 only\n -o-transform: rotate(@degrees);\n transform: rotate(@degrees);\n}\n.rotateX(@degrees) {\n -webkit-transform: rotateX(@degrees);\n -ms-transform: rotateX(@degrees); // IE9 only\n -o-transform: rotateX(@degrees);\n transform: rotateX(@degrees);\n}\n.rotateY(@degrees) {\n -webkit-transform: rotateY(@degrees);\n -ms-transform: rotateY(@degrees); // IE9 only\n -o-transform: rotateY(@degrees);\n transform: rotateY(@degrees);\n}\n.perspective(@perspective) {\n -webkit-perspective: @perspective;\n -moz-perspective: @perspective;\n perspective: @perspective;\n}\n.perspective-origin(@perspective) {\n -webkit-perspective-origin: @perspective;\n -moz-perspective-origin: @perspective;\n perspective-origin: @perspective;\n}\n.transform-origin(@origin) {\n -webkit-transform-origin: @origin;\n -moz-transform-origin: @origin;\n -ms-transform-origin: @origin; // IE9 only\n transform-origin: @origin;\n}\n\n\n// Transitions\n\n.transition(@transition) {\n -webkit-transition: @transition;\n -o-transition: @transition;\n transition: @transition;\n}\n.transition-property(@transition-property) {\n -webkit-transition-property: @transition-property;\n transition-property: @transition-property;\n}\n.transition-delay(@transition-delay) {\n -webkit-transition-delay: @transition-delay;\n transition-delay: @transition-delay;\n}\n.transition-duration(@transition-duration) {\n -webkit-transition-duration: @transition-duration;\n transition-duration: @transition-duration;\n}\n.transition-timing-function(@timing-function) {\n -webkit-transition-timing-function: @timing-function;\n transition-timing-function: @timing-function;\n}\n.transition-transform(@transition) {\n -webkit-transition: -webkit-transform @transition;\n -moz-transition: -moz-transform @transition;\n -o-transition: -o-transform @transition;\n transition: transform @transition;\n}\n\n\n// User select\n// For selecting text on the page\n\n.user-select(@select) {\n -webkit-user-select: @select;\n -moz-user-select: @select;\n -ms-user-select: @select; // IE10+\n user-select: @select;\n}\n",".btn-default,\n.btn-primary,\n.btn-success,\n.btn-info,\n.btn-warning,\n.btn-danger {\n text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);\n -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);\n}\n.btn-default:active,\n.btn-primary:active,\n.btn-success:active,\n.btn-info:active,\n.btn-warning:active,\n.btn-danger:active,\n.btn-default.active,\n.btn-primary.active,\n.btn-success.active,\n.btn-info.active,\n.btn-warning.active,\n.btn-danger.active {\n -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n}\n.btn-default .badge,\n.btn-primary .badge,\n.btn-success .badge,\n.btn-info .badge,\n.btn-warning .badge,\n.btn-danger .badge {\n text-shadow: none;\n}\n.btn:active,\n.btn.active {\n background-image: none;\n}\n.btn-default {\n background-image: -webkit-linear-gradient(top, #ffffff 0%, #e0e0e0 100%);\n background-image: -o-linear-gradient(top, #ffffff 0%, #e0e0e0 100%);\n background-image: linear-gradient(to bottom, #ffffff 0%, #e0e0e0 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #dbdbdb;\n text-shadow: 0 1px 0 #fff;\n border-color: #ccc;\n}\n.btn-default:hover,\n.btn-default:focus {\n background-color: #e0e0e0;\n background-position: 0 -15px;\n}\n.btn-default:active,\n.btn-default.active {\n background-color: #e0e0e0;\n border-color: #dbdbdb;\n}\n.btn-default.disabled,\n.btn-default:disabled,\n.btn-default[disabled] {\n background-color: #e0e0e0;\n background-image: none;\n}\n.btn-primary {\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #265a88 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #265a88 100%);\n background-image: linear-gradient(to bottom, #337ab7 0%, #265a88 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff265a88', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #245580;\n}\n.btn-primary:hover,\n.btn-primary:focus {\n background-color: #265a88;\n background-position: 0 -15px;\n}\n.btn-primary:active,\n.btn-primary.active {\n background-color: #265a88;\n border-color: #245580;\n}\n.btn-primary.disabled,\n.btn-primary:disabled,\n.btn-primary[disabled] {\n background-color: #265a88;\n background-image: none;\n}\n.btn-success {\n background-image: -webkit-linear-gradient(top, #5cb85c 0%, #419641 100%);\n background-image: -o-linear-gradient(top, #5cb85c 0%, #419641 100%);\n background-image: linear-gradient(to bottom, #5cb85c 0%, #419641 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #3e8f3e;\n}\n.btn-success:hover,\n.btn-success:focus {\n background-color: #419641;\n background-position: 0 -15px;\n}\n.btn-success:active,\n.btn-success.active {\n background-color: #419641;\n border-color: #3e8f3e;\n}\n.btn-success.disabled,\n.btn-success:disabled,\n.btn-success[disabled] {\n background-color: #419641;\n background-image: none;\n}\n.btn-info {\n background-image: -webkit-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);\n background-image: -o-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);\n background-image: linear-gradient(to bottom, #5bc0de 0%, #2aabd2 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #28a4c9;\n}\n.btn-info:hover,\n.btn-info:focus {\n background-color: #2aabd2;\n background-position: 0 -15px;\n}\n.btn-info:active,\n.btn-info.active {\n background-color: #2aabd2;\n border-color: #28a4c9;\n}\n.btn-info.disabled,\n.btn-info:disabled,\n.btn-info[disabled] {\n background-color: #2aabd2;\n background-image: none;\n}\n.btn-warning {\n background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);\n background-image: -o-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);\n background-image: linear-gradient(to bottom, #f0ad4e 0%, #eb9316 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #e38d13;\n}\n.btn-warning:hover,\n.btn-warning:focus {\n background-color: #eb9316;\n background-position: 0 -15px;\n}\n.btn-warning:active,\n.btn-warning.active {\n background-color: #eb9316;\n border-color: #e38d13;\n}\n.btn-warning.disabled,\n.btn-warning:disabled,\n.btn-warning[disabled] {\n background-color: #eb9316;\n background-image: none;\n}\n.btn-danger {\n background-image: -webkit-linear-gradient(top, #d9534f 0%, #c12e2a 100%);\n background-image: -o-linear-gradient(top, #d9534f 0%, #c12e2a 100%);\n background-image: linear-gradient(to bottom, #d9534f 0%, #c12e2a 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #b92c28;\n}\n.btn-danger:hover,\n.btn-danger:focus {\n background-color: #c12e2a;\n background-position: 0 -15px;\n}\n.btn-danger:active,\n.btn-danger.active {\n background-color: #c12e2a;\n border-color: #b92c28;\n}\n.btn-danger.disabled,\n.btn-danger:disabled,\n.btn-danger[disabled] {\n background-color: #c12e2a;\n background-image: none;\n}\n.thumbnail,\n.img-thumbnail {\n -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);\n box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);\n}\n.dropdown-menu > li > a:hover,\n.dropdown-menu > li > a:focus {\n background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);\n background-image: -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);\n background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);\n background-color: #e8e8e8;\n}\n.dropdown-menu > .active > a,\n.dropdown-menu > .active > a:hover,\n.dropdown-menu > .active > a:focus {\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);\n background-color: #2e6da4;\n}\n.navbar-default {\n background-image: -webkit-linear-gradient(top, #ffffff 0%, #f8f8f8 100%);\n background-image: -o-linear-gradient(top, #ffffff 0%, #f8f8f8 100%);\n background-image: linear-gradient(to bottom, #ffffff 0%, #f8f8f8 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n border-radius: 4px;\n -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 5px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 5px rgba(0, 0, 0, 0.075);\n}\n.navbar-default .navbar-nav > .open > a,\n.navbar-default .navbar-nav > .active > a {\n background-image: -webkit-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%);\n background-image: -o-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%);\n background-image: linear-gradient(to bottom, #dbdbdb 0%, #e2e2e2 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdbdbdb', endColorstr='#ffe2e2e2', GradientType=0);\n -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.075);\n}\n.navbar-brand,\n.navbar-nav > li > a {\n text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);\n}\n.navbar-inverse {\n background-image: -webkit-linear-gradient(top, #3c3c3c 0%, #222222 100%);\n background-image: -o-linear-gradient(top, #3c3c3c 0%, #222222 100%);\n background-image: linear-gradient(to bottom, #3c3c3c 0%, #222222 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n}\n.navbar-inverse .navbar-nav > .open > a,\n.navbar-inverse .navbar-nav > .active > a {\n background-image: -webkit-linear-gradient(top, #080808 0%, #0f0f0f 100%);\n background-image: -o-linear-gradient(top, #080808 0%, #0f0f0f 100%);\n background-image: linear-gradient(to bottom, #080808 0%, #0f0f0f 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff080808', endColorstr='#ff0f0f0f', GradientType=0);\n -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.25);\n box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.25);\n}\n.navbar-inverse .navbar-brand,\n.navbar-inverse .navbar-nav > li > a {\n text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);\n}\n.navbar-static-top,\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n border-radius: 0;\n}\n@media (max-width: 767px) {\n .navbar .navbar-nav .open .dropdown-menu > .active > a,\n .navbar .navbar-nav .open .dropdown-menu > .active > a:hover,\n .navbar .navbar-nav .open .dropdown-menu > .active > a:focus {\n color: #fff;\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);\n }\n}\n.alert {\n text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);\n -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);\n box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);\n}\n.alert-success {\n background-image: -webkit-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);\n background-image: -o-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);\n background-image: linear-gradient(to bottom, #dff0d8 0%, #c8e5bc 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);\n border-color: #b2dba1;\n}\n.alert-info {\n background-image: -webkit-linear-gradient(top, #d9edf7 0%, #b9def0 100%);\n background-image: -o-linear-gradient(top, #d9edf7 0%, #b9def0 100%);\n background-image: linear-gradient(to bottom, #d9edf7 0%, #b9def0 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0);\n border-color: #9acfea;\n}\n.alert-warning {\n background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);\n background-image: -o-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);\n background-image: linear-gradient(to bottom, #fcf8e3 0%, #f8efc0 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0);\n border-color: #f5e79e;\n}\n.alert-danger {\n background-image: -webkit-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);\n background-image: -o-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);\n background-image: linear-gradient(to bottom, #f2dede 0%, #e7c3c3 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);\n border-color: #dca7a7;\n}\n.progress {\n background-image: -webkit-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);\n background-image: -o-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);\n background-image: linear-gradient(to bottom, #ebebeb 0%, #f5f5f5 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0);\n}\n.progress-bar {\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #286090 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #286090 100%);\n background-image: linear-gradient(to bottom, #337ab7 0%, #286090 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff286090', GradientType=0);\n}\n.progress-bar-success {\n background-image: -webkit-linear-gradient(top, #5cb85c 0%, #449d44 100%);\n background-image: -o-linear-gradient(top, #5cb85c 0%, #449d44 100%);\n background-image: linear-gradient(to bottom, #5cb85c 0%, #449d44 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0);\n}\n.progress-bar-info {\n background-image: -webkit-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);\n background-image: -o-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);\n background-image: linear-gradient(to bottom, #5bc0de 0%, #31b0d5 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0);\n}\n.progress-bar-warning {\n background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);\n background-image: -o-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);\n background-image: linear-gradient(to bottom, #f0ad4e 0%, #ec971f 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0);\n}\n.progress-bar-danger {\n background-image: -webkit-linear-gradient(top, #d9534f 0%, #c9302c 100%);\n background-image: -o-linear-gradient(top, #d9534f 0%, #c9302c 100%);\n background-image: linear-gradient(to bottom, #d9534f 0%, #c9302c 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0);\n}\n.progress-bar-striped {\n 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);\n background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n 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);\n}\n.list-group {\n border-radius: 4px;\n -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);\n box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);\n}\n.list-group-item.active,\n.list-group-item.active:hover,\n.list-group-item.active:focus {\n text-shadow: 0 -1px 0 #286090;\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #2b669a 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #2b669a 100%);\n background-image: linear-gradient(to bottom, #337ab7 0%, #2b669a 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2b669a', GradientType=0);\n border-color: #2b669a;\n}\n.list-group-item.active .badge,\n.list-group-item.active:hover .badge,\n.list-group-item.active:focus .badge {\n text-shadow: none;\n}\n.panel {\n -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);\n box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);\n}\n.panel-default > .panel-heading {\n background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);\n background-image: -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);\n background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);\n}\n.panel-primary > .panel-heading {\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);\n}\n.panel-success > .panel-heading {\n background-image: -webkit-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%);\n background-image: -o-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%);\n background-image: linear-gradient(to bottom, #dff0d8 0%, #d0e9c6 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0);\n}\n.panel-info > .panel-heading {\n background-image: -webkit-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%);\n background-image: -o-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%);\n background-image: linear-gradient(to bottom, #d9edf7 0%, #c4e3f3 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0);\n}\n.panel-warning > .panel-heading {\n background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%);\n background-image: -o-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%);\n background-image: linear-gradient(to bottom, #fcf8e3 0%, #faf2cc 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0);\n}\n.panel-danger > .panel-heading {\n background-image: -webkit-linear-gradient(top, #f2dede 0%, #ebcccc 100%);\n background-image: -o-linear-gradient(top, #f2dede 0%, #ebcccc 100%);\n background-image: linear-gradient(to bottom, #f2dede 0%, #ebcccc 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0);\n}\n.well {\n background-image: -webkit-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%);\n background-image: -o-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%);\n background-image: linear-gradient(to bottom, #e8e8e8 0%, #f5f5f5 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0);\n border-color: #dcdcdc;\n -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(255, 255, 255, 0.1);\n box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(255, 255, 255, 0.1);\n}\n/*# sourceMappingURL=bootstrap-theme.css.map */","// Gradients\n\n#gradient {\n\n // Horizontal gradient, from left to right\n //\n // Creates two color stops, start and end, by specifying a color and position for each color stop.\n // Color stops are not available in IE9 and below.\n .horizontal(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n background-image: -webkit-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Safari 5.1-6, Chrome 10+\n background-image: -o-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Opera 12\n background-image: linear-gradient(to right, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n background-repeat: repeat-x;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down\n }\n\n // Vertical gradient, from top to bottom\n //\n // Creates two color stops, start and end, by specifying a color and position for each color stop.\n // Color stops are not available in IE9 and below.\n .vertical(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n background-image: -webkit-linear-gradient(top, @start-color @start-percent, @end-color @end-percent); // Safari 5.1-6, Chrome 10+\n background-image: -o-linear-gradient(top, @start-color @start-percent, @end-color @end-percent); // Opera 12\n background-image: linear-gradient(to bottom, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n background-repeat: repeat-x;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",argb(@start-color),argb(@end-color))); // IE9 and down\n }\n\n .directional(@start-color: #555; @end-color: #333; @deg: 45deg) {\n background-repeat: repeat-x;\n background-image: -webkit-linear-gradient(@deg, @start-color, @end-color); // Safari 5.1-6, Chrome 10+\n background-image: -o-linear-gradient(@deg, @start-color, @end-color); // Opera 12\n background-image: linear-gradient(@deg, @start-color, @end-color); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n }\n .horizontal-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n background-image: -webkit-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);\n background-image: -o-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);\n background-image: linear-gradient(to right, @start-color, @mid-color @color-stop, @end-color);\n background-repeat: no-repeat;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n }\n .vertical-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n background-image: -webkit-linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n background-image: -o-linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n background-image: linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n background-repeat: no-repeat;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n }\n .radial(@inner-color: #555; @outer-color: #333) {\n background-image: -webkit-radial-gradient(circle, @inner-color, @outer-color);\n background-image: radial-gradient(circle, @inner-color, @outer-color);\n background-repeat: no-repeat;\n }\n .striped(@color: rgba(255,255,255,.15); @angle: 45deg) {\n background-image: -webkit-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n background-image: -o-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n background-image: linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n }\n}\n","// Reset filters for IE\n//\n// When you need to remove a gradient background, do not forget to use this to reset\n// the IE filter for IE9 and below.\n\n.reset-filter() {\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(enabled = false)\"));\n}\n"]}
|
bootstrap/css/bootstrap-theme.min.css
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*!
|
2 |
+
* Bootstrap v3.3.5 (http://getbootstrap.com)
|
3 |
+
* Copyright 2011-2015 Twitter, Inc.
|
4 |
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
5 |
+
*/
|
6 |
+
|
7 |
+
/*!
|
8 |
+
* Generated using the Bootstrap Customizer (http://getbootstrap.com/customize/?id=7345914a18fe4c024e9a)
|
9 |
+
* Config saved to config.json and https://gist.github.com/7345914a18fe4c024e9a
|
10 |
+
*//*!
|
11 |
+
* Bootstrap v3.3.5 (http://getbootstrap.com)
|
12 |
+
* Copyright 2011-2015 Twitter, Inc.
|
13 |
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
14 |
+
*/.btn-default,.btn-primary,.btn-success,.btn-info,.btn-warning,.btn-danger{text-shadow:0 -1px 0 rgba(0,0,0,0.2);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.15),0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 0 rgba(255,255,255,0.15),0 1px 1px rgba(0,0,0,0.075)}.btn-default:active,.btn-primary:active,.btn-success:active,.btn-info:active,.btn-warning:active,.btn-danger:active,.btn-default.active,.btn-primary.active,.btn-success.active,.btn-info.active,.btn-warning.active,.btn-danger.active{-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-default.disabled,.btn-primary.disabled,.btn-success.disabled,.btn-info.disabled,.btn-warning.disabled,.btn-danger.disabled,.btn-default[disabled],.btn-primary[disabled],.btn-success[disabled],.btn-info[disabled],.btn-warning[disabled],.btn-danger[disabled],fieldset[disabled] .btn-default,fieldset[disabled] .btn-primary,fieldset[disabled] .btn-success,fieldset[disabled] .btn-info,fieldset[disabled] .btn-warning,fieldset[disabled] .btn-danger{-webkit-box-shadow:none;box-shadow:none}.btn-default .badge,.btn-primary .badge,.btn-success .badge,.btn-info .badge,.btn-warning .badge,.btn-danger .badge{text-shadow:none}.btn:active,.btn.active{background-image:none}.btn-default{background-image:-webkit-linear-gradient(top, #fff 0, #e0e0e0 100%);background-image:-o-linear-gradient(top, #fff 0, #e0e0e0 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #fff), to(#e0e0e0));background-image:linear-gradient(to bottom, #fff 0, #e0e0e0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);background-repeat:repeat-x;border-color:#dbdbdb;text-shadow:0 1px 0 #fff;border-color:#ccc}.btn-default:hover,.btn-default:focus{background-color:#e0e0e0;background-position:0 -15px}.btn-default:active,.btn-default.active{background-color:#e0e0e0;border-color:#dbdbdb}.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.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:#e0e0e0;background-image:none}.btn-primary{background-image:-webkit-linear-gradient(top, #337ab7 0, #265a88 100%);background-image:-o-linear-gradient(top, #337ab7 0, #265a88 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #337ab7), to(#265a88));background-image:linear-gradient(to bottom, #337ab7 0, #265a88 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff265a88', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);background-repeat:repeat-x;border-color:#245580}.btn-primary:hover,.btn-primary:focus{background-color:#265a88;background-position:0 -15px}.btn-primary:active,.btn-primary.active{background-color:#265a88;border-color:#245580}.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.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:#265a88;background-image:none}.btn-success{background-image:-webkit-linear-gradient(top, #5cb85c 0, #419641 100%);background-image:-o-linear-gradient(top, #5cb85c 0, #419641 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #5cb85c), to(#419641));background-image:linear-gradient(to bottom, #5cb85c 0, #419641 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);background-repeat:repeat-x;border-color:#3e8f3e}.btn-success:hover,.btn-success:focus{background-color:#419641;background-position:0 -15px}.btn-success:active,.btn-success.active{background-color:#419641;border-color:#3e8f3e}.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.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:#419641;background-image:none}.btn-info{background-image:-webkit-linear-gradient(top, #5bc0de 0, #2aabd2 100%);background-image:-o-linear-gradient(top, #5bc0de 0, #2aabd2 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #5bc0de), to(#2aabd2));background-image:linear-gradient(to bottom, #5bc0de 0, #2aabd2 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);background-repeat:repeat-x;border-color:#28a4c9}.btn-info:hover,.btn-info:focus{background-color:#2aabd2;background-position:0 -15px}.btn-info:active,.btn-info.active{background-color:#2aabd2;border-color:#28a4c9}.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.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:#2aabd2;background-image:none}.btn-warning{background-image:-webkit-linear-gradient(top, #f0ad4e 0, #eb9316 100%);background-image:-o-linear-gradient(top, #f0ad4e 0, #eb9316 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #f0ad4e), to(#eb9316));background-image:linear-gradient(to bottom, #f0ad4e 0, #eb9316 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);background-repeat:repeat-x;border-color:#e38d13}.btn-warning:hover,.btn-warning:focus{background-color:#eb9316;background-position:0 -15px}.btn-warning:active,.btn-warning.active{background-color:#eb9316;border-color:#e38d13}.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.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:#eb9316;background-image:none}.btn-danger{background-image:-webkit-linear-gradient(top, #d9534f 0, #c12e2a 100%);background-image:-o-linear-gradient(top, #d9534f 0, #c12e2a 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #d9534f), to(#c12e2a));background-image:linear-gradient(to bottom, #d9534f 0, #c12e2a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);background-repeat:repeat-x;border-color:#b92c28}.btn-danger:hover,.btn-danger:focus{background-color:#c12e2a;background-position:0 -15px}.btn-danger:active,.btn-danger.active{background-color:#c12e2a;border-color:#b92c28}.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.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:#c12e2a;background-image:none}.thumbnail,.img-thumbnail{-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.075);box-shadow:0 1px 2px rgba(0,0,0,0.075)}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{background-image:-webkit-linear-gradient(top, #f5f5f5 0, #e8e8e8 100%);background-image:-o-linear-gradient(top, #f5f5f5 0, #e8e8e8 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #f5f5f5), to(#e8e8e8));background-image:linear-gradient(to bottom, #f5f5f5 0, #e8e8e8 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);background-color:#e8e8e8}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{background-image:-webkit-linear-gradient(top, #337ab7 0, #2e6da4 100%);background-image:-o-linear-gradient(top, #337ab7 0, #2e6da4 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #337ab7), to(#2e6da4));background-image:linear-gradient(to bottom, #337ab7 0, #2e6da4 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);background-color:#2e6da4}.navbar-default{background-image:-webkit-linear-gradient(top, #fff 0, #f8f8f8 100%);background-image:-o-linear-gradient(top, #fff 0, #f8f8f8 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #fff), to(#f8f8f8));background-image:linear-gradient(to bottom, #fff 0, #f8f8f8 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);border-radius:4px;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.15),0 1px 5px rgba(0,0,0,0.075);box-shadow:inset 0 1px 0 rgba(255,255,255,0.15),0 1px 5px rgba(0,0,0,0.075)}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.active>a{background-image:-webkit-linear-gradient(top, #dbdbdb 0, #e2e2e2 100%);background-image:-o-linear-gradient(top, #dbdbdb 0, #e2e2e2 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #dbdbdb), to(#e2e2e2));background-image:linear-gradient(to bottom, #dbdbdb 0, #e2e2e2 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdbdbdb', endColorstr='#ffe2e2e2', GradientType=0);-webkit-box-shadow:inset 0 3px 9px rgba(0,0,0,0.075);box-shadow:inset 0 3px 9px rgba(0,0,0,0.075)}.navbar-brand,.navbar-nav>li>a{text-shadow:0 1px 0 rgba(255,255,255,0.25)}.navbar-inverse{background-image:-webkit-linear-gradient(top, #3c3c3c 0, #222 100%);background-image:-o-linear-gradient(top, #3c3c3c 0, #222 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #3c3c3c), to(#222));background-image:linear-gradient(to bottom, #3c3c3c 0, #222 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);border-radius:4px}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.active>a{background-image:-webkit-linear-gradient(top, #080808 0, #0f0f0f 100%);background-image:-o-linear-gradient(top, #080808 0, #0f0f0f 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #080808), to(#0f0f0f));background-image:linear-gradient(to bottom, #080808 0, #0f0f0f 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff080808', endColorstr='#ff0f0f0f', GradientType=0);-webkit-box-shadow:inset 0 3px 9px rgba(0,0,0,0.25);box-shadow:inset 0 3px 9px rgba(0,0,0,0.25)}.navbar-inverse .navbar-brand,.navbar-inverse .navbar-nav>li>a{text-shadow:0 -1px 0 rgba(0,0,0,0.25)}.navbar-static-top,.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}@media (max-width:767px){.navbar .navbar-nav .open .dropdown-menu>.active>a,.navbar .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar .navbar-nav .open .dropdown-menu>.active>a:focus{color:#fff;background-image:-webkit-linear-gradient(top, #337ab7 0, #2e6da4 100%);background-image:-o-linear-gradient(top, #337ab7 0, #2e6da4 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #337ab7), to(#2e6da4));background-image:linear-gradient(to bottom, #337ab7 0, #2e6da4 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0)}}.alert{text-shadow:0 1px 0 rgba(255,255,255,0.2);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.25),0 1px 2px rgba(0,0,0,0.05);box-shadow:inset 0 1px 0 rgba(255,255,255,0.25),0 1px 2px rgba(0,0,0,0.05)}.alert-success{background-image:-webkit-linear-gradient(top, #dff0d8 0, #c8e5bc 100%);background-image:-o-linear-gradient(top, #dff0d8 0, #c8e5bc 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #dff0d8), to(#c8e5bc));background-image:linear-gradient(to bottom, #dff0d8 0, #c8e5bc 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);border-color:#b2dba1}.alert-info{background-image:-webkit-linear-gradient(top, #d9edf7 0, #b9def0 100%);background-image:-o-linear-gradient(top, #d9edf7 0, #b9def0 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #d9edf7), to(#b9def0));background-image:linear-gradient(to bottom, #d9edf7 0, #b9def0 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0);border-color:#9acfea}.alert-warning{background-image:-webkit-linear-gradient(top, #fcf8e3 0, #f8efc0 100%);background-image:-o-linear-gradient(top, #fcf8e3 0, #f8efc0 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #fcf8e3), to(#f8efc0));background-image:linear-gradient(to bottom, #fcf8e3 0, #f8efc0 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0);border-color:#f5e79e}.alert-danger{background-image:-webkit-linear-gradient(top, #f2dede 0, #e7c3c3 100%);background-image:-o-linear-gradient(top, #f2dede 0, #e7c3c3 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #f2dede), to(#e7c3c3));background-image:linear-gradient(to bottom, #f2dede 0, #e7c3c3 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);border-color:#dca7a7}.progress{background-image:-webkit-linear-gradient(top, #ebebeb 0, #f5f5f5 100%);background-image:-o-linear-gradient(top, #ebebeb 0, #f5f5f5 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #ebebeb), to(#f5f5f5));background-image:linear-gradient(to bottom, #ebebeb 0, #f5f5f5 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0)}.progress-bar{background-image:-webkit-linear-gradient(top, #337ab7 0, #286090 100%);background-image:-o-linear-gradient(top, #337ab7 0, #286090 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #337ab7), to(#286090));background-image:linear-gradient(to bottom, #337ab7 0, #286090 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff286090', GradientType=0)}.progress-bar-success{background-image:-webkit-linear-gradient(top, #5cb85c 0, #449d44 100%);background-image:-o-linear-gradient(top, #5cb85c 0, #449d44 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #5cb85c), to(#449d44));background-image:linear-gradient(to bottom, #5cb85c 0, #449d44 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0)}.progress-bar-info{background-image:-webkit-linear-gradient(top, #5bc0de 0, #31b0d5 100%);background-image:-o-linear-gradient(top, #5bc0de 0, #31b0d5 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #5bc0de), to(#31b0d5));background-image:linear-gradient(to bottom, #5bc0de 0, #31b0d5 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0)}.progress-bar-warning{background-image:-webkit-linear-gradient(top, #f0ad4e 0, #ec971f 100%);background-image:-o-linear-gradient(top, #f0ad4e 0, #ec971f 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #f0ad4e), to(#ec971f));background-image:linear-gradient(to bottom, #f0ad4e 0, #ec971f 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0)}.progress-bar-danger{background-image:-webkit-linear-gradient(top, #d9534f 0, #c9302c 100%);background-image:-o-linear-gradient(top, #d9534f 0, #c9302c 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #d9534f), to(#c9302c));background-image:linear-gradient(to bottom, #d9534f 0, #c9302c 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0)}.progress-bar-striped{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:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.list-group{border-radius:4px;-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.075);box-shadow:0 1px 2px rgba(0,0,0,0.075)}.list-group-item.active,.list-group-item.active:hover,.list-group-item.active:focus{text-shadow:0 -1px 0 #286090;background-image:-webkit-linear-gradient(top, #337ab7 0, #2b669a 100%);background-image:-o-linear-gradient(top, #337ab7 0, #2b669a 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #337ab7), to(#2b669a));background-image:linear-gradient(to bottom, #337ab7 0, #2b669a 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2b669a', GradientType=0);border-color:#2b669a}.list-group-item.active .badge,.list-group-item.active:hover .badge,.list-group-item.active:focus .badge{text-shadow:none}.panel{-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.05);box-shadow:0 1px 2px rgba(0,0,0,0.05)}.panel-default>.panel-heading{background-image:-webkit-linear-gradient(top, #f5f5f5 0, #e8e8e8 100%);background-image:-o-linear-gradient(top, #f5f5f5 0, #e8e8e8 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #f5f5f5), to(#e8e8e8));background-image:linear-gradient(to bottom, #f5f5f5 0, #e8e8e8 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0)}.panel-primary>.panel-heading{background-image:-webkit-linear-gradient(top, #337ab7 0, #2e6da4 100%);background-image:-o-linear-gradient(top, #337ab7 0, #2e6da4 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #337ab7), to(#2e6da4));background-image:linear-gradient(to bottom, #337ab7 0, #2e6da4 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0)}.panel-success>.panel-heading{background-image:-webkit-linear-gradient(top, #dff0d8 0, #d0e9c6 100%);background-image:-o-linear-gradient(top, #dff0d8 0, #d0e9c6 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #dff0d8), to(#d0e9c6));background-image:linear-gradient(to bottom, #dff0d8 0, #d0e9c6 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0)}.panel-info>.panel-heading{background-image:-webkit-linear-gradient(top, #d9edf7 0, #c4e3f3 100%);background-image:-o-linear-gradient(top, #d9edf7 0, #c4e3f3 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #d9edf7), to(#c4e3f3));background-image:linear-gradient(to bottom, #d9edf7 0, #c4e3f3 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0)}.panel-warning>.panel-heading{background-image:-webkit-linear-gradient(top, #fcf8e3 0, #faf2cc 100%);background-image:-o-linear-gradient(top, #fcf8e3 0, #faf2cc 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #fcf8e3), to(#faf2cc));background-image:linear-gradient(to bottom, #fcf8e3 0, #faf2cc 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0)}.panel-danger>.panel-heading{background-image:-webkit-linear-gradient(top, #f2dede 0, #ebcccc 100%);background-image:-o-linear-gradient(top, #f2dede 0, #ebcccc 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #f2dede), to(#ebcccc));background-image:linear-gradient(to bottom, #f2dede 0, #ebcccc 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0)}.well{background-image:-webkit-linear-gradient(top, #e8e8e8 0, #f5f5f5 100%);background-image:-o-linear-gradient(top, #e8e8e8 0, #f5f5f5 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #e8e8e8), to(#f5f5f5));background-image:linear-gradient(to bottom, #e8e8e8 0, #f5f5f5 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0);border-color:#dcdcdc;-webkit-box-shadow:inset 0 1px 3px rgba(0,0,0,0.05),0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 3px rgba(0,0,0,0.05),0 1px 0 rgba(255,255,255,0.1)}
|
bootstrap/css/bootstrap.css
ADDED
@@ -0,0 +1,1582 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*!
|
2 |
+
* Bootstrap v3.3.5 (http://getbootstrap.com)
|
3 |
+
* Copyright 2011-2015 Twitter, Inc.
|
4 |
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
5 |
+
*/
|
6 |
+
|
7 |
+
/*!
|
8 |
+
* Generated using the Bootstrap Customizer (http://getbootstrap.com/customize/?id=7345914a18fe4c024e9a)
|
9 |
+
* Config saved to config.json and https://gist.github.com/7345914a18fe4c024e9a
|
10 |
+
*/
|
11 |
+
/*!
|
12 |
+
* Bootstrap v3.3.5 (http://getbootstrap.com)
|
13 |
+
* Copyright 2011-2015 Twitter, Inc.
|
14 |
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
15 |
+
*/
|
16 |
+
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
|
17 |
+
html {
|
18 |
+
font-family: sans-serif;
|
19 |
+
-ms-text-size-adjust: 100%;
|
20 |
+
-webkit-text-size-adjust: 100%;
|
21 |
+
}
|
22 |
+
body {
|
23 |
+
margin: 0;
|
24 |
+
}
|
25 |
+
article,
|
26 |
+
aside,
|
27 |
+
details,
|
28 |
+
figcaption,
|
29 |
+
figure,
|
30 |
+
footer,
|
31 |
+
header,
|
32 |
+
hgroup,
|
33 |
+
main,
|
34 |
+
menu,
|
35 |
+
nav,
|
36 |
+
section,
|
37 |
+
summary {
|
38 |
+
display: block;
|
39 |
+
}
|
40 |
+
audio,
|
41 |
+
canvas,
|
42 |
+
progress,
|
43 |
+
video {
|
44 |
+
display: inline-block;
|
45 |
+
vertical-align: baseline;
|
46 |
+
}
|
47 |
+
audio:not([controls]) {
|
48 |
+
display: none;
|
49 |
+
height: 0;
|
50 |
+
}
|
51 |
+
[hidden],
|
52 |
+
template {
|
53 |
+
display: none;
|
54 |
+
}
|
55 |
+
a {
|
56 |
+
background-color: transparent;
|
57 |
+
}
|
58 |
+
a:active,
|
59 |
+
a:hover {
|
60 |
+
outline: 0;
|
61 |
+
}
|
62 |
+
abbr[title] {
|
63 |
+
border-bottom: 1px dotted;
|
64 |
+
}
|
65 |
+
b,
|
66 |
+
strong {
|
67 |
+
font-weight: bold;
|
68 |
+
}
|
69 |
+
dfn {
|
70 |
+
font-style: italic;
|
71 |
+
}
|
72 |
+
h1 {
|
73 |
+
font-size: 2em;
|
74 |
+
margin: 0.67em 0;
|
75 |
+
}
|
76 |
+
mark {
|
77 |
+
background: #ff0;
|
78 |
+
color: #000;
|
79 |
+
}
|
80 |
+
small {
|
81 |
+
font-size: 80%;
|
82 |
+
}
|
83 |
+
sub,
|
84 |
+
sup {
|
85 |
+
font-size: 75%;
|
86 |
+
line-height: 0;
|
87 |
+
position: relative;
|
88 |
+
vertical-align: baseline;
|
89 |
+
}
|
90 |
+
sup {
|
91 |
+
top: -0.5em;
|
92 |
+
}
|
93 |
+
sub {
|
94 |
+
bottom: -0.25em;
|
95 |
+
}
|
96 |
+
img {
|
97 |
+
border: 0;
|
98 |
+
}
|
99 |
+
svg:not(:root) {
|
100 |
+
overflow: hidden;
|
101 |
+
}
|
102 |
+
figure {
|
103 |
+
margin: 1em 40px;
|
104 |
+
}
|
105 |
+
hr {
|
106 |
+
-webkit-box-sizing: content-box;
|
107 |
+
-moz-box-sizing: content-box;
|
108 |
+
box-sizing: content-box;
|
109 |
+
height: 0;
|
110 |
+
}
|
111 |
+
pre {
|
112 |
+
overflow: auto;
|
113 |
+
}
|
114 |
+
code,
|
115 |
+
kbd,
|
116 |
+
pre,
|
117 |
+
samp {
|
118 |
+
font-family: monospace, monospace;
|
119 |
+
font-size: 1em;
|
120 |
+
}
|
121 |
+
button,
|
122 |
+
input,
|
123 |
+
optgroup,
|
124 |
+
select,
|
125 |
+
textarea {
|
126 |
+
color: inherit;
|
127 |
+
font: inherit;
|
128 |
+
margin: 0;
|
129 |
+
}
|
130 |
+
button {
|
131 |
+
overflow: visible;
|
132 |
+
}
|
133 |
+
button,
|
134 |
+
select {
|
135 |
+
text-transform: none;
|
136 |
+
}
|
137 |
+
button,
|
138 |
+
html input[type="button"],
|
139 |
+
input[type="reset"],
|
140 |
+
input[type="submit"] {
|
141 |
+
-webkit-appearance: button;
|
142 |
+
cursor: pointer;
|
143 |
+
}
|
144 |
+
button[disabled],
|
145 |
+
html input[disabled] {
|
146 |
+
cursor: default;
|
147 |
+
}
|
148 |
+
button::-moz-focus-inner,
|
149 |
+
input::-moz-focus-inner {
|
150 |
+
border: 0;
|
151 |
+
padding: 0;
|
152 |
+
}
|
153 |
+
input {
|
154 |
+
line-height: normal;
|
155 |
+
}
|
156 |
+
input[type="checkbox"],
|
157 |
+
input[type="radio"] {
|
158 |
+
-webkit-box-sizing: border-box;
|
159 |
+
-moz-box-sizing: border-box;
|
160 |
+
box-sizing: border-box;
|
161 |
+
padding: 0;
|
162 |
+
}
|
163 |
+
input[type="number"]::-webkit-inner-spin-button,
|
164 |
+
input[type="number"]::-webkit-outer-spin-button {
|
165 |
+
height: auto;
|
166 |
+
}
|
167 |
+
input[type="search"] {
|
168 |
+
-webkit-appearance: textfield;
|
169 |
+
-webkit-box-sizing: content-box;
|
170 |
+
-moz-box-sizing: content-box;
|
171 |
+
box-sizing: content-box;
|
172 |
+
}
|
173 |
+
input[type="search"]::-webkit-search-cancel-button,
|
174 |
+
input[type="search"]::-webkit-search-decoration {
|
175 |
+
-webkit-appearance: none;
|
176 |
+
}
|
177 |
+
fieldset {
|
178 |
+
border: 1px solid #c0c0c0;
|
179 |
+
margin: 0 2px;
|
180 |
+
padding: 0.35em 0.625em 0.75em;
|
181 |
+
}
|
182 |
+
legend {
|
183 |
+
border: 0;
|
184 |
+
padding: 0;
|
185 |
+
}
|
186 |
+
textarea {
|
187 |
+
overflow: auto;
|
188 |
+
}
|
189 |
+
optgroup {
|
190 |
+
font-weight: bold;
|
191 |
+
}
|
192 |
+
table {
|
193 |
+
border-collapse: collapse;
|
194 |
+
border-spacing: 0;
|
195 |
+
}
|
196 |
+
td,
|
197 |
+
th {
|
198 |
+
padding: 0;
|
199 |
+
}
|
200 |
+
* {
|
201 |
+
-webkit-box-sizing: border-box;
|
202 |
+
-moz-box-sizing: border-box;
|
203 |
+
box-sizing: border-box;
|
204 |
+
}
|
205 |
+
*:before,
|
206 |
+
*:after {
|
207 |
+
-webkit-box-sizing: border-box;
|
208 |
+
-moz-box-sizing: border-box;
|
209 |
+
box-sizing: border-box;
|
210 |
+
}
|
211 |
+
html {
|
212 |
+
font-size: 10px;
|
213 |
+
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
214 |
+
}
|
215 |
+
body {
|
216 |
+
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
217 |
+
font-size: 14px;
|
218 |
+
line-height: 1.42857143;
|
219 |
+
color: #333333;
|
220 |
+
background-color: #ffffff;
|
221 |
+
}
|
222 |
+
input,
|
223 |
+
button,
|
224 |
+
select,
|
225 |
+
textarea {
|
226 |
+
font-family: inherit;
|
227 |
+
font-size: inherit;
|
228 |
+
line-height: inherit;
|
229 |
+
}
|
230 |
+
a {
|
231 |
+
color: #337ab7;
|
232 |
+
text-decoration: none;
|
233 |
+
}
|
234 |
+
a:hover,
|
235 |
+
a:focus {
|
236 |
+
color: #23527c;
|
237 |
+
text-decoration: underline;
|
238 |
+
}
|
239 |
+
a:focus {
|
240 |
+
outline: thin dotted;
|
241 |
+
outline: 5px auto -webkit-focus-ring-color;
|
242 |
+
outline-offset: -2px;
|
243 |
+
}
|
244 |
+
figure {
|
245 |
+
margin: 0;
|
246 |
+
}
|
247 |
+
img {
|
248 |
+
vertical-align: middle;
|
249 |
+
}
|
250 |
+
.img-responsive {
|
251 |
+
display: block;
|
252 |
+
max-width: 100%;
|
253 |
+
height: auto;
|
254 |
+
}
|
255 |
+
.img-rounded {
|
256 |
+
border-radius: 6px;
|
257 |
+
}
|
258 |
+
.img-thumbnail {
|
259 |
+
padding: 4px;
|
260 |
+
line-height: 1.42857143;
|
261 |
+
background-color: #ffffff;
|
262 |
+
border: 1px solid #dddddd;
|
263 |
+
border-radius: 4px;
|
264 |
+
-webkit-transition: all 0.2s ease-in-out;
|
265 |
+
-o-transition: all 0.2s ease-in-out;
|
266 |
+
transition: all 0.2s ease-in-out;
|
267 |
+
display: inline-block;
|
268 |
+
max-width: 100%;
|
269 |
+
height: auto;
|
270 |
+
}
|
271 |
+
.img-circle {
|
272 |
+
border-radius: 50%;
|
273 |
+
}
|
274 |
+
hr {
|
275 |
+
margin-top: 20px;
|
276 |
+
margin-bottom: 20px;
|
277 |
+
border: 0;
|
278 |
+
border-top: 1px solid #eeeeee;
|
279 |
+
}
|
280 |
+
.sr-only {
|
281 |
+
position: absolute;
|
282 |
+
width: 1px;
|
283 |
+
height: 1px;
|
284 |
+
margin: -1px;
|
285 |
+
padding: 0;
|
286 |
+
overflow: hidden;
|
287 |
+
clip: rect(0, 0, 0, 0);
|
288 |
+
border: 0;
|
289 |
+
}
|
290 |
+
.sr-only-focusable:active,
|
291 |
+
.sr-only-focusable:focus {
|
292 |
+
position: static;
|
293 |
+
width: auto;
|
294 |
+
height: auto;
|
295 |
+
margin: 0;
|
296 |
+
overflow: visible;
|
297 |
+
clip: auto;
|
298 |
+
}
|
299 |
+
[role="button"] {
|
300 |
+
cursor: pointer;
|
301 |
+
}
|
302 |
+
.container {
|
303 |
+
margin-right: auto;
|
304 |
+
margin-left: auto;
|
305 |
+
padding-left: 15px;
|
306 |
+
padding-right: 15px;
|
307 |
+
}
|
308 |
+
@media (min-width: 768px) {
|
309 |
+
.container {
|
310 |
+
width: 750px;
|
311 |
+
}
|
312 |
+
}
|
313 |
+
@media (min-width: 992px) {
|
314 |
+
.container {
|
315 |
+
width: 970px;
|
316 |
+
}
|
317 |
+
}
|
318 |
+
@media (min-width: 1200px) {
|
319 |
+
.container {
|
320 |
+
width: 1170px;
|
321 |
+
}
|
322 |
+
}
|
323 |
+
.container-fluid {
|
324 |
+
margin-right: auto;
|
325 |
+
margin-left: auto;
|
326 |
+
padding-left: 15px;
|
327 |
+
padding-right: 15px;
|
328 |
+
}
|
329 |
+
.row {
|
330 |
+
margin-left: -15px;
|
331 |
+
margin-right: -15px;
|
332 |
+
}
|
333 |
+
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
|
334 |
+
position: relative;
|
335 |
+
min-height: 1px;
|
336 |
+
padding-left: 15px;
|
337 |
+
padding-right: 15px;
|
338 |
+
}
|
339 |
+
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
|
340 |
+
float: left;
|
341 |
+
}
|
342 |
+
.col-xs-12 {
|
343 |
+
width: 100%;
|
344 |
+
}
|
345 |
+
.col-xs-11 {
|
346 |
+
width: 91.66666667%;
|
347 |
+
}
|
348 |
+
.col-xs-10 {
|
349 |
+
width: 83.33333333%;
|
350 |
+
}
|
351 |
+
.col-xs-9 {
|
352 |
+
width: 75%;
|
353 |
+
}
|
354 |
+
.col-xs-8 {
|
355 |
+
width: 66.66666667%;
|
356 |
+
}
|
357 |
+
.col-xs-7 {
|
358 |
+
width: 58.33333333%;
|
359 |
+
}
|
360 |
+
.col-xs-6 {
|
361 |
+
width: 50%;
|
362 |
+
}
|
363 |
+
.col-xs-5 {
|
364 |
+
width: 41.66666667%;
|
365 |
+
}
|
366 |
+
.col-xs-4 {
|
367 |
+
width: 33.33333333%;
|
368 |
+
}
|
369 |
+
.col-xs-3 {
|
370 |
+
width: 25%;
|
371 |
+
}
|
372 |
+
.col-xs-2 {
|
373 |
+
width: 16.66666667%;
|
374 |
+
}
|
375 |
+
.col-xs-1 {
|
376 |
+
width: 8.33333333%;
|
377 |
+
}
|
378 |
+
.col-xs-pull-12 {
|
379 |
+
right: 100%;
|
380 |
+
}
|
381 |
+
.col-xs-pull-11 {
|
382 |
+
right: 91.66666667%;
|
383 |
+
}
|
384 |
+
.col-xs-pull-10 {
|
385 |
+
right: 83.33333333%;
|
386 |
+
}
|
387 |
+
.col-xs-pull-9 {
|
388 |
+
right: 75%;
|
389 |
+
}
|
390 |
+
.col-xs-pull-8 {
|
391 |
+
right: 66.66666667%;
|
392 |
+
}
|
393 |
+
.col-xs-pull-7 {
|
394 |
+
right: 58.33333333%;
|
395 |
+
}
|
396 |
+
.col-xs-pull-6 {
|
397 |
+
right: 50%;
|
398 |
+
}
|
399 |
+
.col-xs-pull-5 {
|
400 |
+
right: 41.66666667%;
|
401 |
+
}
|
402 |
+
.col-xs-pull-4 {
|
403 |
+
right: 33.33333333%;
|
404 |
+
}
|
405 |
+
.col-xs-pull-3 {
|
406 |
+
right: 25%;
|
407 |
+
}
|
408 |
+
.col-xs-pull-2 {
|
409 |
+
right: 16.66666667%;
|
410 |
+
}
|
411 |
+
.col-xs-pull-1 {
|
412 |
+
right: 8.33333333%;
|
413 |
+
}
|
414 |
+
.col-xs-pull-0 {
|
415 |
+
right: auto;
|
416 |
+
}
|
417 |
+
.col-xs-push-12 {
|
418 |
+
left: 100%;
|
419 |
+
}
|
420 |
+
.col-xs-push-11 {
|
421 |
+
left: 91.66666667%;
|
422 |
+
}
|
423 |
+
.col-xs-push-10 {
|
424 |
+
left: 83.33333333%;
|
425 |
+
}
|
426 |
+
.col-xs-push-9 {
|
427 |
+
left: 75%;
|
428 |
+
}
|
429 |
+
.col-xs-push-8 {
|
430 |
+
left: 66.66666667%;
|
431 |
+
}
|
432 |
+
.col-xs-push-7 {
|
433 |
+
left: 58.33333333%;
|
434 |
+
}
|
435 |
+
.col-xs-push-6 {
|
436 |
+
left: 50%;
|
437 |
+
}
|
438 |
+
.col-xs-push-5 {
|
439 |
+
left: 41.66666667%;
|
440 |
+
}
|
441 |
+
.col-xs-push-4 {
|
442 |
+
left: 33.33333333%;
|
443 |
+
}
|
444 |
+
.col-xs-push-3 {
|
445 |
+
left: 25%;
|
446 |
+
}
|
447 |
+
.col-xs-push-2 {
|
448 |
+
left: 16.66666667%;
|
449 |
+
}
|
450 |
+
.col-xs-push-1 {
|
451 |
+
left: 8.33333333%;
|
452 |
+
}
|
453 |
+
.col-xs-push-0 {
|
454 |
+
left: auto;
|
455 |
+
}
|
456 |
+
.col-xs-offset-12 {
|
457 |
+
margin-left: 100%;
|
458 |
+
}
|
459 |
+
.col-xs-offset-11 {
|
460 |
+
margin-left: 91.66666667%;
|
461 |
+
}
|
462 |
+
.col-xs-offset-10 {
|
463 |
+
margin-left: 83.33333333%;
|
464 |
+
}
|
465 |
+
.col-xs-offset-9 {
|
466 |
+
margin-left: 75%;
|
467 |
+
}
|
468 |
+
.col-xs-offset-8 {
|
469 |
+
margin-left: 66.66666667%;
|
470 |
+
}
|
471 |
+
.col-xs-offset-7 {
|
472 |
+
margin-left: 58.33333333%;
|
473 |
+
}
|
474 |
+
.col-xs-offset-6 {
|
475 |
+
margin-left: 50%;
|
476 |
+
}
|
477 |
+
.col-xs-offset-5 {
|
478 |
+
margin-left: 41.66666667%;
|
479 |
+
}
|
480 |
+
.col-xs-offset-4 {
|
481 |
+
margin-left: 33.33333333%;
|
482 |
+
}
|
483 |
+
.col-xs-offset-3 {
|
484 |
+
margin-left: 25%;
|
485 |
+
}
|
486 |
+
.col-xs-offset-2 {
|
487 |
+
margin-left: 16.66666667%;
|
488 |
+
}
|
489 |
+
.col-xs-offset-1 {
|
490 |
+
margin-left: 8.33333333%;
|
491 |
+
}
|
492 |
+
.col-xs-offset-0 {
|
493 |
+
margin-left: 0%;
|
494 |
+
}
|
495 |
+
@media (min-width: 768px) {
|
496 |
+
.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 {
|
497 |
+
float: left;
|
498 |
+
}
|
499 |
+
.col-sm-12 {
|
500 |
+
width: 100%;
|
501 |
+
}
|
502 |
+
.col-sm-11 {
|
503 |
+
width: 91.66666667%;
|
504 |
+
}
|
505 |
+
.col-sm-10 {
|
506 |
+
width: 83.33333333%;
|
507 |
+
}
|
508 |
+
.col-sm-9 {
|
509 |
+
width: 75%;
|
510 |
+
}
|
511 |
+
.col-sm-8 {
|
512 |
+
width: 66.66666667%;
|
513 |
+
}
|
514 |
+
.col-sm-7 {
|
515 |
+
width: 58.33333333%;
|
516 |
+
}
|
517 |
+
.col-sm-6 {
|
518 |
+
width: 50%;
|
519 |
+
}
|
520 |
+
.col-sm-5 {
|
521 |
+
width: 41.66666667%;
|
522 |
+
}
|
523 |
+
.col-sm-4 {
|
524 |
+
width: 33.33333333%;
|
525 |
+
}
|
526 |
+
.col-sm-3 {
|
527 |
+
width: 25%;
|
528 |
+
}
|
529 |
+
.col-sm-2 {
|
530 |
+
width: 16.66666667%;
|
531 |
+
}
|
532 |
+
.col-sm-1 {
|
533 |
+
width: 8.33333333%;
|
534 |
+
}
|
535 |
+
.col-sm-pull-12 {
|
536 |
+
right: 100%;
|
537 |
+
}
|
538 |
+
.col-sm-pull-11 {
|
539 |
+
right: 91.66666667%;
|
540 |
+
}
|
541 |
+
.col-sm-pull-10 {
|
542 |
+
right: 83.33333333%;
|
543 |
+
}
|
544 |
+
.col-sm-pull-9 {
|
545 |
+
right: 75%;
|
546 |
+
}
|
547 |
+
.col-sm-pull-8 {
|
548 |
+
right: 66.66666667%;
|
549 |
+
}
|
550 |
+
.col-sm-pull-7 {
|
551 |
+
right: 58.33333333%;
|
552 |
+
}
|
553 |
+
.col-sm-pull-6 {
|
554 |
+
right: 50%;
|
555 |
+
}
|
556 |
+
.col-sm-pull-5 {
|
557 |
+
right: 41.66666667%;
|
558 |
+
}
|
559 |
+
.col-sm-pull-4 {
|
560 |
+
right: 33.33333333%;
|
561 |
+
}
|
562 |
+
.col-sm-pull-3 {
|
563 |
+
right: 25%;
|
564 |
+
}
|
565 |
+
.col-sm-pull-2 {
|
566 |
+
right: 16.66666667%;
|
567 |
+
}
|
568 |
+
.col-sm-pull-1 {
|
569 |
+
right: 8.33333333%;
|
570 |
+
}
|
571 |
+
.col-sm-pull-0 {
|
572 |
+
right: auto;
|
573 |
+
}
|
574 |
+
.col-sm-push-12 {
|
575 |
+
left: 100%;
|
576 |
+
}
|
577 |
+
.col-sm-push-11 {
|
578 |
+
left: 91.66666667%;
|
579 |
+
}
|
580 |
+
.col-sm-push-10 {
|
581 |
+
left: 83.33333333%;
|
582 |
+
}
|
583 |
+
.col-sm-push-9 {
|
584 |
+
left: 75%;
|
585 |
+
}
|
586 |
+
.col-sm-push-8 {
|
587 |
+
left: 66.66666667%;
|
588 |
+
}
|
589 |
+
.col-sm-push-7 {
|
590 |
+
left: 58.33333333%;
|
591 |
+
}
|
592 |
+
.col-sm-push-6 {
|
593 |
+
left: 50%;
|
594 |
+
}
|
595 |
+
.col-sm-push-5 {
|
596 |
+
left: 41.66666667%;
|
597 |
+
}
|
598 |
+
.col-sm-push-4 {
|
599 |
+
left: 33.33333333%;
|
600 |
+
}
|
601 |
+
.col-sm-push-3 {
|
602 |
+
left: 25%;
|
603 |
+
}
|
604 |
+
.col-sm-push-2 {
|
605 |
+
left: 16.66666667%;
|
606 |
+
}
|
607 |
+
.col-sm-push-1 {
|
608 |
+
left: 8.33333333%;
|
609 |
+
}
|
610 |
+
.col-sm-push-0 {
|
611 |
+
left: auto;
|
612 |
+
}
|
613 |
+
.col-sm-offset-12 {
|
614 |
+
margin-left: 100%;
|
615 |
+
}
|
616 |
+
.col-sm-offset-11 {
|
617 |
+
margin-left: 91.66666667%;
|
618 |
+
}
|
619 |
+
.col-sm-offset-10 {
|
620 |
+
margin-left: 83.33333333%;
|
621 |
+
}
|
622 |
+
.col-sm-offset-9 {
|
623 |
+
margin-left: 75%;
|
624 |
+
}
|
625 |
+
.col-sm-offset-8 {
|
626 |
+
margin-left: 66.66666667%;
|
627 |
+
}
|
628 |
+
.col-sm-offset-7 {
|
629 |
+
margin-left: 58.33333333%;
|
630 |
+
}
|
631 |
+
.col-sm-offset-6 {
|
632 |
+
margin-left: 50%;
|
633 |
+
}
|
634 |
+
.col-sm-offset-5 {
|
635 |
+
margin-left: 41.66666667%;
|
636 |
+
}
|
637 |
+
.col-sm-offset-4 {
|
638 |
+
margin-left: 33.33333333%;
|
639 |
+
}
|
640 |
+
.col-sm-offset-3 {
|
641 |
+
margin-left: 25%;
|
642 |
+
}
|
643 |
+
.col-sm-offset-2 {
|
644 |
+
margin-left: 16.66666667%;
|
645 |
+
}
|
646 |
+
.col-sm-offset-1 {
|
647 |
+
margin-left: 8.33333333%;
|
648 |
+
}
|
649 |
+
.col-sm-offset-0 {
|
650 |
+
margin-left: 0%;
|
651 |
+
}
|
652 |
+
}
|
653 |
+
@media (min-width: 992px) {
|
654 |
+
.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
|
655 |
+
float: left;
|
656 |
+
}
|
657 |
+
.col-md-12 {
|
658 |
+
width: 100%;
|
659 |
+
}
|
660 |
+
.col-md-11 {
|
661 |
+
width: 91.66666667%;
|
662 |
+
}
|
663 |
+
.col-md-10 {
|
664 |
+
width: 83.33333333%;
|
665 |
+
}
|
666 |
+
.col-md-9 {
|
667 |
+
width: 75%;
|
668 |
+
}
|
669 |
+
.col-md-8 {
|
670 |
+
width: 66.66666667%;
|
671 |
+
}
|
672 |
+
.col-md-7 {
|
673 |
+
width: 58.33333333%;
|
674 |
+
}
|
675 |
+
.col-md-6 {
|
676 |
+
width: 50%;
|
677 |
+
}
|
678 |
+
.col-md-5 {
|
679 |
+
width: 41.66666667%;
|
680 |
+
}
|
681 |
+
.col-md-4 {
|
682 |
+
width: 33.33333333%;
|
683 |
+
}
|
684 |
+
.col-md-3 {
|
685 |
+
width: 25%;
|
686 |
+
}
|
687 |
+
.col-md-2 {
|
688 |
+
width: 16.66666667%;
|
689 |
+
}
|
690 |
+
.col-md-1 {
|
691 |
+
width: 8.33333333%;
|
692 |
+
}
|
693 |
+
.col-md-pull-12 {
|
694 |
+
right: 100%;
|
695 |
+
}
|
696 |
+
.col-md-pull-11 {
|
697 |
+
right: 91.66666667%;
|
698 |
+
}
|
699 |
+
.col-md-pull-10 {
|
700 |
+
right: 83.33333333%;
|
701 |
+
}
|
702 |
+
.col-md-pull-9 {
|
703 |
+
right: 75%;
|
704 |
+
}
|
705 |
+
.col-md-pull-8 {
|
706 |
+
right: 66.66666667%;
|
707 |
+
}
|
708 |
+
.col-md-pull-7 {
|
709 |
+
right: 58.33333333%;
|
710 |
+
}
|
711 |
+
.col-md-pull-6 {
|
712 |
+
right: 50%;
|
713 |
+
}
|
714 |
+
.col-md-pull-5 {
|
715 |
+
right: 41.66666667%;
|
716 |
+
}
|
717 |
+
.col-md-pull-4 {
|
718 |
+
right: 33.33333333%;
|
719 |
+
}
|
720 |
+
.col-md-pull-3 {
|
721 |
+
right: 25%;
|
722 |
+
}
|
723 |
+
.col-md-pull-2 {
|
724 |
+
right: 16.66666667%;
|
725 |
+
}
|
726 |
+
.col-md-pull-1 {
|
727 |
+
right: 8.33333333%;
|
728 |
+
}
|
729 |
+
.col-md-pull-0 {
|
730 |
+
right: auto;
|
731 |
+
}
|
732 |
+
.col-md-push-12 {
|
733 |
+
left: 100%;
|
734 |
+
}
|
735 |
+
.col-md-push-11 {
|
736 |
+
left: 91.66666667%;
|
737 |
+
}
|
738 |
+
.col-md-push-10 {
|
739 |
+
left: 83.33333333%;
|
740 |
+
}
|
741 |
+
.col-md-push-9 {
|
742 |
+
left: 75%;
|
743 |
+
}
|
744 |
+
.col-md-push-8 {
|
745 |
+
left: 66.66666667%;
|
746 |
+
}
|
747 |
+
.col-md-push-7 {
|
748 |
+
left: 58.33333333%;
|
749 |
+
}
|
750 |
+
.col-md-push-6 {
|
751 |
+
left: 50%;
|
752 |
+
}
|
753 |
+
.col-md-push-5 {
|
754 |
+
left: 41.66666667%;
|
755 |
+
}
|
756 |
+
.col-md-push-4 {
|
757 |
+
left: 33.33333333%;
|
758 |
+
}
|
759 |
+
.col-md-push-3 {
|
760 |
+
left: 25%;
|
761 |
+
}
|
762 |
+
.col-md-push-2 {
|
763 |
+
left: 16.66666667%;
|
764 |
+
}
|
765 |
+
.col-md-push-1 {
|
766 |
+
left: 8.33333333%;
|
767 |
+
}
|
768 |
+
.col-md-push-0 {
|
769 |
+
left: auto;
|
770 |
+
}
|
771 |
+
.col-md-offset-12 {
|
772 |
+
margin-left: 100%;
|
773 |
+
}
|
774 |
+
.col-md-offset-11 {
|
775 |
+
margin-left: 91.66666667%;
|
776 |
+
}
|
777 |
+
.col-md-offset-10 {
|
778 |
+
margin-left: 83.33333333%;
|
779 |
+
}
|
780 |
+
.col-md-offset-9 {
|
781 |
+
margin-left: 75%;
|
782 |
+
}
|
783 |
+
.col-md-offset-8 {
|
784 |
+
margin-left: 66.66666667%;
|
785 |
+
}
|
786 |
+
.col-md-offset-7 {
|
787 |
+
margin-left: 58.33333333%;
|
788 |
+
}
|
789 |
+
.col-md-offset-6 {
|
790 |
+
margin-left: 50%;
|
791 |
+
}
|
792 |
+
.col-md-offset-5 {
|
793 |
+
margin-left: 41.66666667%;
|
794 |
+
}
|
795 |
+
.col-md-offset-4 {
|
796 |
+
margin-left: 33.33333333%;
|
797 |
+
}
|
798 |
+
.col-md-offset-3 {
|
799 |
+
margin-left: 25%;
|
800 |
+
}
|
801 |
+
.col-md-offset-2 {
|
802 |
+
margin-left: 16.66666667%;
|
803 |
+
}
|
804 |
+
.col-md-offset-1 {
|
805 |
+
margin-left: 8.33333333%;
|
806 |
+
}
|
807 |
+
.col-md-offset-0 {
|
808 |
+
margin-left: 0%;
|
809 |
+
}
|
810 |
+
}
|
811 |
+
@media (min-width: 1200px) {
|
812 |
+
.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 {
|
813 |
+
float: left;
|
814 |
+
}
|
815 |
+
.col-lg-12 {
|
816 |
+
width: 100%;
|
817 |
+
}
|
818 |
+
.col-lg-11 {
|
819 |
+
width: 91.66666667%;
|
820 |
+
}
|
821 |
+
.col-lg-10 {
|
822 |
+
width: 83.33333333%;
|
823 |
+
}
|
824 |
+
.col-lg-9 {
|
825 |
+
width: 75%;
|
826 |
+
}
|
827 |
+
.col-lg-8 {
|
828 |
+
width: 66.66666667%;
|
829 |
+
}
|
830 |
+
.col-lg-7 {
|
831 |
+
width: 58.33333333%;
|
832 |
+
}
|
833 |
+
.col-lg-6 {
|
834 |
+
width: 50%;
|
835 |
+
}
|
836 |
+
.col-lg-5 {
|
837 |
+
width: 41.66666667%;
|
838 |
+
}
|
839 |
+
.col-lg-4 {
|
840 |
+
width: 33.33333333%;
|
841 |
+
}
|
842 |
+
.col-lg-3 {
|
843 |
+
width: 25%;
|
844 |
+
}
|
845 |
+
.col-lg-2 {
|
846 |
+
width: 16.66666667%;
|
847 |
+
}
|
848 |
+
.col-lg-1 {
|
849 |
+
width: 8.33333333%;
|
850 |
+
}
|
851 |
+
.col-lg-pull-12 {
|
852 |
+
right: 100%;
|
853 |
+
}
|
854 |
+
.col-lg-pull-11 {
|
855 |
+
right: 91.66666667%;
|
856 |
+
}
|
857 |
+
.col-lg-pull-10 {
|
858 |
+
right: 83.33333333%;
|
859 |
+
}
|
860 |
+
.col-lg-pull-9 {
|
861 |
+
right: 75%;
|
862 |
+
}
|
863 |
+
.col-lg-pull-8 {
|
864 |
+
right: 66.66666667%;
|
865 |
+
}
|
866 |
+
.col-lg-pull-7 {
|
867 |
+
right: 58.33333333%;
|
868 |
+
}
|
869 |
+
.col-lg-pull-6 {
|
870 |
+
right: 50%;
|
871 |
+
}
|
872 |
+
.col-lg-pull-5 {
|
873 |
+
right: 41.66666667%;
|
874 |
+
}
|
875 |
+
.col-lg-pull-4 {
|
876 |
+
right: 33.33333333%;
|
877 |
+
}
|
878 |
+
.col-lg-pull-3 {
|
879 |
+
right: 25%;
|
880 |
+
}
|
881 |
+
.col-lg-pull-2 {
|
882 |
+
right: 16.66666667%;
|
883 |
+
}
|
884 |
+
.col-lg-pull-1 {
|
885 |
+
right: 8.33333333%;
|
886 |
+
}
|
887 |
+
.col-lg-pull-0 {
|
888 |
+
right: auto;
|
889 |
+
}
|
890 |
+
.col-lg-push-12 {
|
891 |
+
left: 100%;
|
892 |
+
}
|
893 |
+
.col-lg-push-11 {
|
894 |
+
left: 91.66666667%;
|
895 |
+
}
|
896 |
+
.col-lg-push-10 {
|
897 |
+
left: 83.33333333%;
|
898 |
+
}
|
899 |
+
.col-lg-push-9 {
|
900 |
+
left: 75%;
|
901 |
+
}
|
902 |
+
.col-lg-push-8 {
|
903 |
+
left: 66.66666667%;
|
904 |
+
}
|
905 |
+
.col-lg-push-7 {
|
906 |
+
left: 58.33333333%;
|
907 |
+
}
|
908 |
+
.col-lg-push-6 {
|
909 |
+
left: 50%;
|
910 |
+
}
|
911 |
+
.col-lg-push-5 {
|
912 |
+
left: 41.66666667%;
|
913 |
+
}
|
914 |
+
.col-lg-push-4 {
|
915 |
+
left: 33.33333333%;
|
916 |
+
}
|
917 |
+
.col-lg-push-3 {
|
918 |
+
left: 25%;
|
919 |
+
}
|
920 |
+
.col-lg-push-2 {
|
921 |
+
left: 16.66666667%;
|
922 |
+
}
|
923 |
+
.col-lg-push-1 {
|
924 |
+
left: 8.33333333%;
|
925 |
+
}
|
926 |
+
.col-lg-push-0 {
|
927 |
+
left: auto;
|
928 |
+
}
|
929 |
+
.col-lg-offset-12 {
|
930 |
+
margin-left: 100%;
|
931 |
+
}
|
932 |
+
.col-lg-offset-11 {
|
933 |
+
margin-left: 91.66666667%;
|
934 |
+
}
|
935 |
+
.col-lg-offset-10 {
|
936 |
+
margin-left: 83.33333333%;
|
937 |
+
}
|
938 |
+
.col-lg-offset-9 {
|
939 |
+
margin-left: 75%;
|
940 |
+
}
|
941 |
+
.col-lg-offset-8 {
|
942 |
+
margin-left: 66.66666667%;
|
943 |
+
}
|
944 |
+
.col-lg-offset-7 {
|
945 |
+
margin-left: 58.33333333%;
|
946 |
+
}
|
947 |
+
.col-lg-offset-6 {
|
948 |
+
margin-left: 50%;
|
949 |
+
}
|
950 |
+
.col-lg-offset-5 {
|
951 |
+
margin-left: 41.66666667%;
|
952 |
+
}
|
953 |
+
.col-lg-offset-4 {
|
954 |
+
margin-left: 33.33333333%;
|
955 |
+
}
|
956 |
+
.col-lg-offset-3 {
|
957 |
+
margin-left: 25%;
|
958 |
+
}
|
959 |
+
.col-lg-offset-2 {
|
960 |
+
margin-left: 16.66666667%;
|
961 |
+
}
|
962 |
+
.col-lg-offset-1 {
|
963 |
+
margin-left: 8.33333333%;
|
964 |
+
}
|
965 |
+
.col-lg-offset-0 {
|
966 |
+
margin-left: 0%;
|
967 |
+
}
|
968 |
+
}
|
969 |
+
.btn {
|
970 |
+
display: inline-block;
|
971 |
+
margin-bottom: 0;
|
972 |
+
font-weight: normal;
|
973 |
+
text-align: center;
|
974 |
+
vertical-align: middle;
|
975 |
+
-ms-touch-action: manipulation;
|
976 |
+
touch-action: manipulation;
|
977 |
+
cursor: pointer;
|
978 |
+
background-image: none;
|
979 |
+
border: 1px solid transparent;
|
980 |
+
white-space: nowrap;
|
981 |
+
padding: 6px 12px;
|
982 |
+
font-size: 14px;
|
983 |
+
line-height: 1.42857143;
|
984 |
+
border-radius: 4px;
|
985 |
+
-webkit-user-select: none;
|
986 |
+
-moz-user-select: none;
|
987 |
+
-ms-user-select: none;
|
988 |
+
user-select: none;
|
989 |
+
}
|
990 |
+
.btn:focus,
|
991 |
+
.btn:active:focus,
|
992 |
+
.btn.active:focus,
|
993 |
+
.btn.focus,
|
994 |
+
.btn:active.focus,
|
995 |
+
.btn.active.focus {
|
996 |
+
outline: thin dotted;
|
997 |
+
outline: 5px auto -webkit-focus-ring-color;
|
998 |
+
outline-offset: -2px;
|
999 |
+
}
|
1000 |
+
.btn:hover,
|
1001 |
+
.btn:focus,
|
1002 |
+
.btn.focus {
|
1003 |
+
color: #333333;
|
1004 |
+
text-decoration: none;
|
1005 |
+
}
|
1006 |
+
.btn:active,
|
1007 |
+
.btn.active {
|
1008 |
+
outline: 0;
|
1009 |
+
background-image: none;
|
1010 |
+
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
1011 |
+
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
1012 |
+
}
|
1013 |
+
.btn.disabled,
|
1014 |
+
.btn[disabled],
|
1015 |
+
fieldset[disabled] .btn {
|
1016 |
+
cursor: not-allowed;
|
1017 |
+
opacity: 0.65;
|
1018 |
+
filter: alpha(opacity=65);
|
1019 |
+
-webkit-box-shadow: none;
|
1020 |
+
box-shadow: none;
|
1021 |
+
}
|
1022 |
+
a.btn.disabled,
|
1023 |
+
fieldset[disabled] a.btn {
|
1024 |
+
pointer-events: none;
|
1025 |
+
}
|
1026 |
+
.btn-default {
|
1027 |
+
color: #333333;
|
1028 |
+
background-color: #ffffff;
|
1029 |
+
border-color: #cccccc;
|
1030 |
+
}
|
1031 |
+
.btn-default:focus,
|
1032 |
+
.btn-default.focus {
|
1033 |
+
color: #333333;
|
1034 |
+
background-color: #e6e6e6;
|
1035 |
+
border-color: #8c8c8c;
|
1036 |
+
}
|
1037 |
+
.btn-default:hover {
|
1038 |
+
color: #333333;
|
1039 |
+
background-color: #e6e6e6;
|
1040 |
+
border-color: #adadad;
|
1041 |
+
}
|
1042 |
+
.btn-default:active,
|
1043 |
+
.btn-default.active,
|
1044 |
+
.open > .dropdown-toggle.btn-default {
|
1045 |
+
color: #333333;
|
1046 |
+
background-color: #e6e6e6;
|
1047 |
+
border-color: #adadad;
|
1048 |
+
}
|
1049 |
+
.btn-default:active:hover,
|
1050 |
+
.btn-default.active:hover,
|
1051 |
+
.open > .dropdown-toggle.btn-default:hover,
|
1052 |
+
.btn-default:active:focus,
|
1053 |
+
.btn-default.active:focus,
|
1054 |
+
.open > .dropdown-toggle.btn-default:focus,
|
1055 |
+
.btn-default:active.focus,
|
1056 |
+
.btn-default.active.focus,
|
1057 |
+
.open > .dropdown-toggle.btn-default.focus {
|
1058 |
+
color: #333333;
|
1059 |
+
background-color: #d4d4d4;
|
1060 |
+
border-color: #8c8c8c;
|
1061 |
+
}
|
1062 |
+
.btn-default:active,
|
1063 |
+
.btn-default.active,
|
1064 |
+
.open > .dropdown-toggle.btn-default {
|
1065 |
+
background-image: none;
|
1066 |
+
}
|
1067 |
+
.btn-default.disabled,
|
1068 |
+
.btn-default[disabled],
|
1069 |
+
fieldset[disabled] .btn-default,
|
1070 |
+
.btn-default.disabled:hover,
|
1071 |
+
.btn-default[disabled]:hover,
|
1072 |
+
fieldset[disabled] .btn-default:hover,
|
1073 |
+
.btn-default.disabled:focus,
|
1074 |
+
.btn-default[disabled]:focus,
|
1075 |
+
fieldset[disabled] .btn-default:focus,
|
1076 |
+
.btn-default.disabled.focus,
|
1077 |
+
.btn-default[disabled].focus,
|
1078 |
+
fieldset[disabled] .btn-default.focus,
|
1079 |
+
.btn-default.disabled:active,
|
1080 |
+
.btn-default[disabled]:active,
|
1081 |
+
fieldset[disabled] .btn-default:active,
|
1082 |
+
.btn-default.disabled.active,
|
1083 |
+
.btn-default[disabled].active,
|
1084 |
+
fieldset[disabled] .btn-default.active {
|
1085 |
+
background-color: #ffffff;
|
1086 |
+
border-color: #cccccc;
|
1087 |
+
}
|
1088 |
+
.btn-default .badge {
|
1089 |
+
color: #ffffff;
|
1090 |
+
background-color: #333333;
|
1091 |
+
}
|
1092 |
+
.btn-primary {
|
1093 |
+
color: #ffffff;
|
1094 |
+
background-color: #337ab7;
|
1095 |
+
border-color: #2e6da4;
|
1096 |
+
}
|
1097 |
+
.btn-primary:focus,
|
1098 |
+
.btn-primary.focus {
|
1099 |
+
color: #ffffff;
|
1100 |
+
background-color: #286090;
|
1101 |
+
border-color: #122b40;
|
1102 |
+
}
|
1103 |
+
.btn-primary:hover {
|
1104 |
+
color: #ffffff;
|
1105 |
+
background-color: #286090;
|
1106 |
+
border-color: #204d74;
|
1107 |
+
}
|
1108 |
+
.btn-primary:active,
|
1109 |
+
.btn-primary.active,
|
1110 |
+
.open > .dropdown-toggle.btn-primary {
|
1111 |
+
color: #ffffff;
|
1112 |
+
background-color: #286090;
|
1113 |
+
border-color: #204d74;
|
1114 |
+
}
|
1115 |
+
.btn-primary:active:hover,
|
1116 |
+
.btn-primary.active:hover,
|
1117 |
+
.open > .dropdown-toggle.btn-primary:hover,
|
1118 |
+
.btn-primary:active:focus,
|
1119 |
+
.btn-primary.active:focus,
|
1120 |
+
.open > .dropdown-toggle.btn-primary:focus,
|
1121 |
+
.btn-primary:active.focus,
|
1122 |
+
.btn-primary.active.focus,
|
1123 |
+
.open > .dropdown-toggle.btn-primary.focus {
|
1124 |
+
color: #ffffff;
|
1125 |
+
background-color: #204d74;
|
1126 |
+
border-color: #122b40;
|
1127 |
+
}
|
1128 |
+
.btn-primary:active,
|
1129 |
+
.btn-primary.active,
|
1130 |
+
.open > .dropdown-toggle.btn-primary {
|
1131 |
+
background-image: none;
|
1132 |
+
}
|
1133 |
+
.btn-primary.disabled,
|
1134 |
+
.btn-primary[disabled],
|
1135 |
+
fieldset[disabled] .btn-primary,
|
1136 |
+
.btn-primary.disabled:hover,
|
1137 |
+
.btn-primary[disabled]:hover,
|
1138 |
+
fieldset[disabled] .btn-primary:hover,
|
1139 |
+
.btn-primary.disabled:focus,
|
1140 |
+
.btn-primary[disabled]:focus,
|
1141 |
+
fieldset[disabled] .btn-primary:focus,
|
1142 |
+
.btn-primary.disabled.focus,
|
1143 |
+
.btn-primary[disabled].focus,
|
1144 |
+
fieldset[disabled] .btn-primary.focus,
|
1145 |
+
.btn-primary.disabled:active,
|
1146 |
+
.btn-primary[disabled]:active,
|
1147 |
+
fieldset[disabled] .btn-primary:active,
|
1148 |
+
.btn-primary.disabled.active,
|
1149 |
+
.btn-primary[disabled].active,
|
1150 |
+
fieldset[disabled] .btn-primary.active {
|
1151 |
+
background-color: #337ab7;
|
1152 |
+
border-color: #2e6da4;
|
1153 |
+
}
|
1154 |
+
.btn-primary .badge {
|
1155 |
+
color: #337ab7;
|
1156 |
+
background-color: #ffffff;
|
1157 |
+
}
|
1158 |
+
.btn-success {
|
1159 |
+
color: #ffffff;
|
1160 |
+
background-color: #5cb85c;
|
1161 |
+
border-color: #4cae4c;
|
1162 |
+
}
|
1163 |
+
.btn-success:focus,
|
1164 |
+
.btn-success.focus {
|
1165 |
+
color: #ffffff;
|
1166 |
+
background-color: #449d44;
|
1167 |
+
border-color: #255625;
|
1168 |
+
}
|
1169 |
+
.btn-success:hover {
|
1170 |
+
color: #ffffff;
|
1171 |
+
background-color: #449d44;
|
1172 |
+
border-color: #398439;
|
1173 |
+
}
|
1174 |
+
.btn-success:active,
|
1175 |
+
.btn-success.active,
|
1176 |
+
.open > .dropdown-toggle.btn-success {
|
1177 |
+
color: #ffffff;
|
1178 |
+
background-color: #449d44;
|
1179 |
+
border-color: #398439;
|
1180 |
+
}
|
1181 |
+
.btn-success:active:hover,
|
1182 |
+
.btn-success.active:hover,
|
1183 |
+
.open > .dropdown-toggle.btn-success:hover,
|
1184 |
+
.btn-success:active:focus,
|
1185 |
+
.btn-success.active:focus,
|
1186 |
+
.open > .dropdown-toggle.btn-success:focus,
|
1187 |
+
.btn-success:active.focus,
|
1188 |
+
.btn-success.active.focus,
|
1189 |
+
.open > .dropdown-toggle.btn-success.focus {
|
1190 |
+
color: #ffffff;
|
1191 |
+
background-color: #398439;
|
1192 |
+
border-color: #255625;
|
1193 |
+
}
|
1194 |
+
.btn-success:active,
|
1195 |
+
.btn-success.active,
|
1196 |
+
.open > .dropdown-toggle.btn-success {
|
1197 |
+
background-image: none;
|
1198 |
+
}
|
1199 |
+
.btn-success.disabled,
|
1200 |
+
.btn-success[disabled],
|
1201 |
+
fieldset[disabled] .btn-success,
|
1202 |
+
.btn-success.disabled:hover,
|
1203 |
+
.btn-success[disabled]:hover,
|
1204 |
+
fieldset[disabled] .btn-success:hover,
|
1205 |
+
.btn-success.disabled:focus,
|
1206 |
+
.btn-success[disabled]:focus,
|
1207 |
+
fieldset[disabled] .btn-success:focus,
|
1208 |
+
.btn-success.disabled.focus,
|
1209 |
+
.btn-success[disabled].focus,
|
1210 |
+
fieldset[disabled] .btn-success.focus,
|
1211 |
+
.btn-success.disabled:active,
|
1212 |
+
.btn-success[disabled]:active,
|
1213 |
+
fieldset[disabled] .btn-success:active,
|
1214 |
+
.btn-success.disabled.active,
|
1215 |
+
.btn-success[disabled].active,
|
1216 |
+
fieldset[disabled] .btn-success.active {
|
1217 |
+
background-color: #5cb85c;
|
1218 |
+
border-color: #4cae4c;
|
1219 |
+
}
|
1220 |
+
.btn-success .badge {
|
1221 |
+
color: #5cb85c;
|
1222 |
+
background-color: #ffffff;
|
1223 |
+
}
|
1224 |
+
.btn-info {
|
1225 |
+
color: #ffffff;
|
1226 |
+
background-color: #5bc0de;
|
1227 |
+
border-color: #46b8da;
|
1228 |
+
}
|
1229 |
+
.btn-info:focus,
|
1230 |
+
.btn-info.focus {
|
1231 |
+
color: #ffffff;
|
1232 |
+
background-color: #31b0d5;
|
1233 |
+
border-color: #1b6d85;
|
1234 |
+
}
|
1235 |
+
.btn-info:hover {
|
1236 |
+
color: #ffffff;
|
1237 |
+
background-color: #31b0d5;
|
1238 |
+
border-color: #269abc;
|
1239 |
+
}
|
1240 |
+
.btn-info:active,
|
1241 |
+
.btn-info.active,
|
1242 |
+
.open > .dropdown-toggle.btn-info {
|
1243 |
+
color: #ffffff;
|
1244 |
+
background-color: #31b0d5;
|
1245 |
+
border-color: #269abc;
|
1246 |
+
}
|
1247 |
+
.btn-info:active:hover,
|
1248 |
+
.btn-info.active:hover,
|
1249 |
+
.open > .dropdown-toggle.btn-info:hover,
|
1250 |
+
.btn-info:active:focus,
|
1251 |
+
.btn-info.active:focus,
|
1252 |
+
.open > .dropdown-toggle.btn-info:focus,
|
1253 |
+
.btn-info:active.focus,
|
1254 |
+
.btn-info.active.focus,
|
1255 |
+
.open > .dropdown-toggle.btn-info.focus {
|
1256 |
+
color: #ffffff;
|
1257 |
+
background-color: #269abc;
|
1258 |
+
border-color: #1b6d85;
|
1259 |
+
}
|
1260 |
+
.btn-info:active,
|
1261 |
+
.btn-info.active,
|
1262 |
+
.open > .dropdown-toggle.btn-info {
|
1263 |
+
background-image: none;
|
1264 |
+
}
|
1265 |
+
.btn-info.disabled,
|
1266 |
+
.btn-info[disabled],
|
1267 |
+
fieldset[disabled] .btn-info,
|
1268 |
+
.btn-info.disabled:hover,
|
1269 |
+
.btn-info[disabled]:hover,
|
1270 |
+
fieldset[disabled] .btn-info:hover,
|
1271 |
+
.btn-info.disabled:focus,
|
1272 |
+
.btn-info[disabled]:focus,
|
1273 |
+
fieldset[disabled] .btn-info:focus,
|
1274 |
+
.btn-info.disabled.focus,
|
1275 |
+
.btn-info[disabled].focus,
|
1276 |
+
fieldset[disabled] .btn-info.focus,
|
1277 |
+
.btn-info.disabled:active,
|
1278 |
+
.btn-info[disabled]:active,
|
1279 |
+
fieldset[disabled] .btn-info:active,
|
1280 |
+
.btn-info.disabled.active,
|
1281 |
+
.btn-info[disabled].active,
|
1282 |
+
fieldset[disabled] .btn-info.active {
|
1283 |
+
background-color: #5bc0de;
|
1284 |
+
border-color: #46b8da;
|
1285 |
+
}
|
1286 |
+
.btn-info .badge {
|
1287 |
+
color: #5bc0de;
|
1288 |
+
background-color: #ffffff;
|
1289 |
+
}
|
1290 |
+
.btn-warning {
|
1291 |
+
color: #ffffff;
|
1292 |
+
background-color: #f0ad4e;
|
1293 |
+
border-color: #eea236;
|
1294 |
+
}
|
1295 |
+
.btn-warning:focus,
|
1296 |
+
.btn-warning.focus {
|
1297 |
+
color: #ffffff;
|
1298 |
+
background-color: #ec971f;
|
1299 |
+
border-color: #985f0d;
|
1300 |
+
}
|
1301 |
+
.btn-warning:hover {
|
1302 |
+
color: #ffffff;
|
1303 |
+
background-color: #ec971f;
|
1304 |
+
border-color: #d58512;
|
1305 |
+
}
|
1306 |
+
.btn-warning:active,
|
1307 |
+
.btn-warning.active,
|
1308 |
+
.open > .dropdown-toggle.btn-warning {
|
1309 |
+
color: #ffffff;
|
1310 |
+
background-color: #ec971f;
|
1311 |
+
border-color: #d58512;
|
1312 |
+
}
|
1313 |
+
.btn-warning:active:hover,
|
1314 |
+
.btn-warning.active:hover,
|
1315 |
+
.open > .dropdown-toggle.btn-warning:hover,
|
1316 |
+
.btn-warning:active:focus,
|
1317 |
+
.btn-warning.active:focus,
|
1318 |
+
.open > .dropdown-toggle.btn-warning:focus,
|
1319 |
+
.btn-warning:active.focus,
|
1320 |
+
.btn-warning.active.focus,
|
1321 |
+
.open > .dropdown-toggle.btn-warning.focus {
|
1322 |
+
color: #ffffff;
|
1323 |
+
background-color: #d58512;
|
1324 |
+
border-color: #985f0d;
|
1325 |
+
}
|
1326 |
+
.btn-warning:active,
|
1327 |
+
.btn-warning.active,
|
1328 |
+
.open > .dropdown-toggle.btn-warning {
|
1329 |
+
background-image: none;
|
1330 |
+
}
|
1331 |
+
.btn-warning.disabled,
|
1332 |
+
.btn-warning[disabled],
|
1333 |
+
fieldset[disabled] .btn-warning,
|
1334 |
+
.btn-warning.disabled:hover,
|
1335 |
+
.btn-warning[disabled]:hover,
|
1336 |
+
fieldset[disabled] .btn-warning:hover,
|
1337 |
+
.btn-warning.disabled:focus,
|
1338 |
+
.btn-warning[disabled]:focus,
|
1339 |
+
fieldset[disabled] .btn-warning:focus,
|
1340 |
+
.btn-warning.disabled.focus,
|
1341 |
+
.btn-warning[disabled].focus,
|
1342 |
+
fieldset[disabled] .btn-warning.focus,
|
1343 |
+
.btn-warning.disabled:active,
|
1344 |
+
.btn-warning[disabled]:active,
|
1345 |
+
fieldset[disabled] .btn-warning:active,
|
1346 |
+
.btn-warning.disabled.active,
|
1347 |
+
.btn-warning[disabled].active,
|
1348 |
+
fieldset[disabled] .btn-warning.active {
|
1349 |
+
background-color: #f0ad4e;
|
1350 |
+
border-color: #eea236;
|
1351 |
+
}
|
1352 |
+
.btn-warning .badge {
|
1353 |
+
color: #f0ad4e;
|
1354 |
+
background-color: #ffffff;
|
1355 |
+
}
|
1356 |
+
.btn-danger {
|
1357 |
+
color: #ffffff;
|
1358 |
+
background-color: #d9534f;
|
1359 |
+
border-color: #d43f3a;
|
1360 |
+
}
|
1361 |
+
.btn-danger:focus,
|
1362 |
+
.btn-danger.focus {
|
1363 |
+
color: #ffffff;
|
1364 |
+
background-color: #c9302c;
|
1365 |
+
border-color: #761c19;
|
1366 |
+
}
|
1367 |
+
.btn-danger:hover {
|
1368 |
+
color: #ffffff;
|
1369 |
+
background-color: #c9302c;
|
1370 |
+
border-color: #ac2925;
|
1371 |
+
}
|
1372 |
+
.btn-danger:active,
|
1373 |
+
.btn-danger.active,
|
1374 |
+
.open > .dropdown-toggle.btn-danger {
|
1375 |
+
color: #ffffff;
|
1376 |
+
background-color: #c9302c;
|
1377 |
+
border-color: #ac2925;
|
1378 |
+
}
|
1379 |
+
.btn-danger:active:hover,
|
1380 |
+
.btn-danger.active:hover,
|
1381 |
+
.open > .dropdown-toggle.btn-danger:hover,
|
1382 |
+
.btn-danger:active:focus,
|
1383 |
+
.btn-danger.active:focus,
|
1384 |
+
.open > .dropdown-toggle.btn-danger:focus,
|
1385 |
+
.btn-danger:active.focus,
|
1386 |
+
.btn-danger.active.focus,
|
1387 |
+
.open > .dropdown-toggle.btn-danger.focus {
|
1388 |
+
color: #ffffff;
|
1389 |
+
background-color: #ac2925;
|
1390 |
+
border-color: #761c19;
|
1391 |
+
}
|
1392 |
+
.btn-danger:active,
|
1393 |
+
.btn-danger.active,
|
1394 |
+
.open > .dropdown-toggle.btn-danger {
|
1395 |
+
background-image: none;
|
1396 |
+
}
|
1397 |
+
.btn-danger.disabled,
|
1398 |
+
.btn-danger[disabled],
|
1399 |
+
fieldset[disabled] .btn-danger,
|
1400 |
+
.btn-danger.disabled:hover,
|
1401 |
+
.btn-danger[disabled]:hover,
|
1402 |
+
fieldset[disabled] .btn-danger:hover,
|
1403 |
+
.btn-danger.disabled:focus,
|
1404 |
+
.btn-danger[disabled]:focus,
|
1405 |
+
fieldset[disabled] .btn-danger:focus,
|
1406 |
+
.btn-danger.disabled.focus,
|
1407 |
+
.btn-danger[disabled].focus,
|
1408 |
+
fieldset[disabled] .btn-danger.focus,
|
1409 |
+
.btn-danger.disabled:active,
|
1410 |
+
.btn-danger[disabled]:active,
|
1411 |
+
fieldset[disabled] .btn-danger:active,
|
1412 |
+
.btn-danger.disabled.active,
|
1413 |
+
.btn-danger[disabled].active,
|
1414 |
+
fieldset[disabled] .btn-danger.active {
|
1415 |
+
background-color: #d9534f;
|
1416 |
+
border-color: #d43f3a;
|
1417 |
+
}
|
1418 |
+
.btn-danger .badge {
|
1419 |
+
color: #d9534f;
|
1420 |
+
background-color: #ffffff;
|
1421 |
+
}
|
1422 |
+
.btn-link {
|
1423 |
+
color: #337ab7;
|
1424 |
+
font-weight: normal;
|
1425 |
+
border-radius: 0;
|
1426 |
+
}
|
1427 |
+
.btn-link,
|
1428 |
+
.btn-link:active,
|
1429 |
+
.btn-link.active,
|
1430 |
+
.btn-link[disabled],
|
1431 |
+
fieldset[disabled] .btn-link {
|
1432 |
+
background-color: transparent;
|
1433 |
+
-webkit-box-shadow: none;
|
1434 |
+
box-shadow: none;
|
1435 |
+
}
|
1436 |
+
.btn-link,
|
1437 |
+
.btn-link:hover,
|
1438 |
+
.btn-link:focus,
|
1439 |
+
.btn-link:active {
|
1440 |
+
border-color: transparent;
|
1441 |
+
}
|
1442 |
+
.btn-link:hover,
|
1443 |
+
.btn-link:focus {
|
1444 |
+
color: #23527c;
|
1445 |
+
text-decoration: underline;
|
1446 |
+
background-color: transparent;
|
1447 |
+
}
|
1448 |
+
.btn-link[disabled]:hover,
|
1449 |
+
fieldset[disabled] .btn-link:hover,
|
1450 |
+
.btn-link[disabled]:focus,
|
1451 |
+
fieldset[disabled] .btn-link:focus {
|
1452 |
+
color: #777777;
|
1453 |
+
text-decoration: none;
|
1454 |
+
}
|
1455 |
+
.btn-lg {
|
1456 |
+
padding: 10px 16px;
|
1457 |
+
font-size: 18px;
|
1458 |
+
line-height: 1.3333333;
|
1459 |
+
border-radius: 6px;
|
1460 |
+
}
|
1461 |
+
.btn-sm {
|
1462 |
+
padding: 5px 10px;
|
1463 |
+
font-size: 12px;
|
1464 |
+
line-height: 1.5;
|
1465 |
+
border-radius: 3px;
|
1466 |
+
}
|
1467 |
+
.btn-xs {
|
1468 |
+
padding: 1px 5px;
|
1469 |
+
font-size: 12px;
|
1470 |
+
line-height: 1.5;
|
1471 |
+
border-radius: 3px;
|
1472 |
+
}
|
1473 |
+
.btn-block {
|
1474 |
+
display: block;
|
1475 |
+
width: 100%;
|
1476 |
+
}
|
1477 |
+
.btn-block + .btn-block {
|
1478 |
+
margin-top: 5px;
|
1479 |
+
}
|
1480 |
+
input[type="submit"].btn-block,
|
1481 |
+
input[type="reset"].btn-block,
|
1482 |
+
input[type="button"].btn-block {
|
1483 |
+
width: 100%;
|
1484 |
+
}
|
1485 |
+
.media {
|
1486 |
+
margin-top: 15px;
|
1487 |
+
}
|
1488 |
+
.media:first-child {
|
1489 |
+
margin-top: 0;
|
1490 |
+
}
|
1491 |
+
.media,
|
1492 |
+
.media-body {
|
1493 |
+
zoom: 1;
|
1494 |
+
overflow: hidden;
|
1495 |
+
}
|
1496 |
+
.media-body {
|
1497 |
+
width: 10000px;
|
1498 |
+
}
|
1499 |
+
.media-object {
|
1500 |
+
display: block;
|
1501 |
+
}
|
1502 |
+
.media-object.img-thumbnail {
|
1503 |
+
max-width: none;
|
1504 |
+
}
|
1505 |
+
.media-right,
|
1506 |
+
.media > .pull-right {
|
1507 |
+
padding-left: 10px;
|
1508 |
+
}
|
1509 |
+
.media-left,
|
1510 |
+
.media > .pull-left {
|
1511 |
+
padding-right: 10px;
|
1512 |
+
}
|
1513 |
+
.media-left,
|
1514 |
+
.media-right,
|
1515 |
+
.media-body {
|
1516 |
+
display: table-cell;
|
1517 |
+
vertical-align: top;
|
1518 |
+
}
|
1519 |
+
.media-middle {
|
1520 |
+
vertical-align: middle;
|
1521 |
+
}
|
1522 |
+
.media-bottom {
|
1523 |
+
vertical-align: bottom;
|
1524 |
+
}
|
1525 |
+
.media-heading {
|
1526 |
+
margin-top: 0;
|
1527 |
+
margin-bottom: 5px;
|
1528 |
+
}
|
1529 |
+
.media-list {
|
1530 |
+
padding-left: 0;
|
1531 |
+
list-style: none;
|
1532 |
+
}
|
1533 |
+
.clearfix:before,
|
1534 |
+
.clearfix:after,
|
1535 |
+
.container:before,
|
1536 |
+
.container:after,
|
1537 |
+
.container-fluid:before,
|
1538 |
+
.container-fluid:after,
|
1539 |
+
.row:before,
|
1540 |
+
.row:after {
|
1541 |
+
content: " ";
|
1542 |
+
display: table;
|
1543 |
+
}
|
1544 |
+
.clearfix:after,
|
1545 |
+
.container:after,
|
1546 |
+
.container-fluid:after,
|
1547 |
+
.row:after {
|
1548 |
+
clear: both;
|
1549 |
+
}
|
1550 |
+
.center-block {
|
1551 |
+
display: block;
|
1552 |
+
margin-left: auto;
|
1553 |
+
margin-right: auto;
|
1554 |
+
}
|
1555 |
+
.pull-right {
|
1556 |
+
float: right !important;
|
1557 |
+
}
|
1558 |
+
.pull-left {
|
1559 |
+
float: left !important;
|
1560 |
+
}
|
1561 |
+
.hide {
|
1562 |
+
display: none !important;
|
1563 |
+
}
|
1564 |
+
.show {
|
1565 |
+
display: block !important;
|
1566 |
+
}
|
1567 |
+
.invisible {
|
1568 |
+
visibility: hidden;
|
1569 |
+
}
|
1570 |
+
.text-hide {
|
1571 |
+
font: 0/0 a;
|
1572 |
+
color: transparent;
|
1573 |
+
text-shadow: none;
|
1574 |
+
background-color: transparent;
|
1575 |
+
border: 0;
|
1576 |
+
}
|
1577 |
+
.hidden {
|
1578 |
+
display: none !important;
|
1579 |
+
}
|
1580 |
+
.affix {
|
1581 |
+
position: fixed;
|
1582 |
+
}
|
bootstrap/css/bootstrap.css.map
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
{"version":3,"sources":["bootstrap.css","less/normalize.less","less/print.less","less/glyphicons.less","less/scaffolding.less","less/mixins/vendor-prefixes.less","less/mixins/tab-focus.less","less/mixins/image.less","less/type.less","less/mixins/text-emphasis.less","less/mixins/background-variant.less","less/mixins/text-overflow.less","less/code.less","less/grid.less","less/mixins/grid.less","less/mixins/grid-framework.less","less/tables.less","less/mixins/table-row.less","less/forms.less","less/mixins/forms.less","less/buttons.less","less/mixins/buttons.less","less/mixins/opacity.less","less/component-animations.less","less/dropdowns.less","less/mixins/nav-divider.less","less/mixins/reset-filter.less","less/button-groups.less","less/mixins/border-radius.less","less/input-groups.less","less/navs.less","less/navbar.less","less/mixins/nav-vertical-align.less","less/utilities.less","less/breadcrumbs.less","less/pagination.less","less/mixins/pagination.less","less/pager.less","less/labels.less","less/mixins/labels.less","less/badges.less","less/jumbotron.less","less/thumbnails.less","less/alerts.less","less/mixins/alerts.less","less/progress-bars.less","less/mixins/gradients.less","less/mixins/progress-bar.less","less/media.less","less/list-group.less","less/mixins/list-group.less","less/panels.less","less/mixins/panels.less","less/responsive-embed.less","less/wells.less","less/close.less","less/modals.less","less/tooltip.less","less/popovers.less","less/carousel.less","less/mixins/clearfix.less","less/mixins/center-block.less","less/mixins/hide-text.less","less/responsive-utilities.less","less/mixins/responsive-visibility.less"],"names":[],"mappings":"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AAA;EHqR9C;AGpRmC;EAAW,kBAAA;EHuR9C;AGtRmC;EAAW,kBAAA;EHyR9C;AGxRmC;EAAW,kBAAA;EH2R9C;AG1RmC;EAAW,kBAAA;EH6R9C;AG5RmC;EAAW,kBAAA;EH+R9C;AG9RmC;EAAW,kBAAA;EHiS9C;AGhSmC;EAAW,kBAAA;EHmS9C;AGlSmC;EAAW,kBAAA;EHqS9C;AGpSmC;EAAW,kBAAA;EHuS9C;AGtSmC;EAAW,kBAAA;EHyS9C;AGxSmC;EAAW,kBAAA;EH2S9C;AG1SmC;EAAW,kBAAA;EH6S9C;AG5SmC;EAAW,kBAAA;EH+S9C;AG9SmC;EAAW,kBAAA;EHiT9C;AGhTmC;EAAW,kBAAA;EHmT9C;AGlTmC;EAAW,kBAAA;EHqT9C;AGpTmC;EAAW,kBAAA;EHuT9C;AGtTmC;EAAW,kBAAA;EHyT9C;AGxTmC;EAAW,kBAAA;EH2T9C;AG1TmC;EAAW,kBAAA;EH6T9C;AG5TmC;EAAW,kBAAA;EH+T9C;AG9TmC;EAAW,kBAAA;EHiU9C;AGhUmC;EAAW,kBAAA;EHmU9C;AGlUmC;EAAW,kBAAA;EHqU9C;AGpUmC;EAAW,kBAAA;EHuU9C;AGtUmC;EAAW,kBAAA;EHyU9C;AGxUmC;EAAW,kBAAA;EH2U9C;AG1UmC;EAAW,kBAAA;EH6U9C;AG5UmC;EAAW,kBAAA;EH+U9C;AG9UmC;EAAW,kBAAA;EHiV9C;AGhVmC;EAAW,kBAAA;EHmV9C;AGlVmC;EAAW,kBAAA;EHqV9C;AGpVmC;EAAW,kBAAA;EHuV9C;AGtVmC;EAAW,kBAAA;EHyV9C;AGxVmC;EAAW,kBAAA;EH2V9C;AG1VmC;EAAW,kBAAA;EH6V9C;AG5VmC;EAAW,kBAAA;EH+V9C;AG9VmC;EAAW,kBAAA;EHiW9C;AGhWmC;EAAW,kBAAA;EHmW9C;AGlWmC;EAAW,kBAAA;EHqW9C;AGpWmC;EAAW,kBAAA;EHuW9C;AGtWmC;EAAW,kBAAA;EHyW9C;AGxWmC;EAAW,kBAAA;EH2W9C;AG1WmC;EAAW,kBAAA;EH6W9C;AG5WmC;EAAW,kBAAA;EH+W9C;AG9WmC;EAAW,kBAAA;EHiX9C;AGhXmC;EAAW,kBAAA;EHmX9C;AGlXmC;EAAW,kBAAA;EHqX9C;AGpXmC;EAAW,kBAAA;EHuX9C;AGtXmC;EAAW,kBAAA;EHyX9C;AGxXmC;EAAW,kBAAA;EH2X9C;AG1XmC;EAAW,kBAAA;EH6X9C;AG5XmC;EAAW,kBAAA;EH+X9C;AG9XmC;EAAW,kBAAA;EHiY9C;AGhYmC;EAAW,kBAAA;EHmY9C;AGlYmC;EAAW,kBAAA;EHqY9C;AGpYmC;EAAW,kBAAA;EHuY9C;AGtYmC;EAAW,kBAAA;EHyY9C;AGxYmC;EAAW,kBAAA;EH2Y9C;AG1YmC;EAAW,kBAAA;EH6Y9C;AG5YmC;EAAW,kBAAA;EH+Y9C;AG9YmC;EAAW,kBAAA;EHiZ9C;AGhZmC;EAAW,kBAAA;EHmZ9C;AGlZmC;EAAW,kBAAA;EHqZ9C;AGpZmC;EAAW,kBAAA;EHuZ9C;AGtZmC;EAAW,kBAAA;EHyZ9C;AGxZmC;EAAW,kBAAA;EH2Z9C;AG1ZmC;EAAW,kBAAA;EH6Z9C;AG5ZmC;EAAW,kBAAA;EH+Z9C;AG9ZmC;EAAW,kBAAA;EHia9C;AGhamC;EAAW,kBAAA;EHma9C;AGlamC;EAAW,kBAAA;EHqa9C;AGpamC;EAAW,kBAAA;EHua9C;AGtamC;EAAW,kBAAA;EHya9C;AGxamC;EAAW,kBAAA;EH2a9C;AG1amC;EAAW,kBAAA;EH6a9C;AG5amC;EAAW,kBAAA;EH+a9C;AG9amC;EAAW,kBAAA;EHib9C;AGhbmC;EAAW,kBAAA;EHmb9C;AGlbmC;EAAW,kBAAA;EHqb9C;AGpbmC;EAAW,kBAAA;EHub9C;AGtbmC;EAAW,kBAAA;EHyb9C;AGxbmC;EAAW,kBAAA;EH2b9C;AG1bmC;EAAW,kBAAA;EH6b9C;AG5bmC;EAAW,kBAAA;EH+b9C;AG9bmC;EAAW,kBAAA;EHic9C;AGhcmC;EAAW,kBAAA;EHmc9C;AGlcmC;EAAW,kBAAA;EHqc9C;AGpcmC;EAAW,kBAAA;EHuc9C;AGtcmC;EAAW,kBAAA;EHyc9C;AGxcmC;EAAW,kBAAA;EH2c9C;AG1cmC;EAAW,kBAAA;EH6c9C;AG5cmC;EAAW,kBAAA;EH+c9C;AG9cmC;EAAW,kBAAA;EHid9C;AGhdmC;EAAW,kBAAA;EHmd9C;AGldmC;EAAW,kBAAA;EHqd9C;AGpdmC;EAAW,kBAAA;EHud9C;AGtdmC;EAAW,kBAAA;EHyd9C;AGxdmC;EAAW,kBAAA;EH2d9C;AG1dmC;EAAW,kBAAA;EH6d9C;AG5dmC;EAAW,kBAAA;EH+d9C;AG9dmC;EAAW,kBAAA;EHie9C;AGhemC;EAAW,kBAAA;EHme9C;AGlemC;EAAW,kBAAA;EHqe9C;AGpemC;EAAW,kBAAA;EHue9C;AGtemC;EAAW,kBAAA;EHye9C;AGxemC;EAAW,kBAAA;EH2e9C;AG1emC;EAAW,kBAAA;EH6e9C;AG5emC;EAAW,kBAAA;EH+e9C;AG9emC;EAAW,kBAAA;EHif9C;AGhfmC;EAAW,kBAAA;EHmf9C;AGlfmC;EAAW,kBAAA;EHqf9C;AGpfmC;EAAW,kBAAA;EHuf9C;AGtfmC;EAAW,kBAAA;EHyf9C;AGxfmC;EAAW,kBAAA;EH2f9C;AG1fmC;EAAW,kBAAA;EH6f9C;AG5fmC;EAAW,kBAAA;EH+f9C;AG9fmC;EAAW,kBAAA;EHigB9C;AGhgBmC;EAAW,kBAAA;EHmgB9C;AGlgBmC;EAAW,kBAAA;EHqgB9C;AGpgBmC;EAAW,kBAAA;EHugB9C;AGtgBmC;EAAW,kBAAA;EHygB9C;AGxgBmC;EAAW,kBAAA;EH2gB9C;AG1gBmC;EAAW,kBAAA;EH6gB9C;AG5gBmC;EAAW,kBAAA;EH+gB9C;AG9gBmC;EAAW,kBAAA;EHihB9C;AGhhBmC;EAAW,kBAAA;EHmhB9C;AGlhBmC;EAAW,kBAAA;EHqhB9C;AGphBmC;EAAW,kBAAA;EHuhB9C;AGthBmC;EAAW,kBAAA;EHyhB9C;AGxhBmC;EAAW,kBAAA;EH2hB9C;AG1hBmC;EAAW,kBAAA;EH6hB9C;AG5hBmC;EAAW,kBAAA;EH+hB9C;AG9hBmC;EAAW,kBAAA;EHiiB9C;AGhiBmC;EAAW,kBAAA;EHmiB9C;AGliBmC;EAAW,kBAAA;EHqiB9C;AGpiBmC;EAAW,kBAAA;EHuiB9C;AGtiBmC;EAAW,kBAAA;EHyiB9C;AGxiBmC;EAAW,kBAAA;EH2iB9C;AG1iBmC;EAAW,kBAAA;EH6iB9C;AG5iBmC;EAAW,kBAAA;EH+iB9C;AG9iBmC;EAAW,kBAAA;EHijB9C;AGhjBmC;EAAW,kBAAA;EHmjB9C;AGljBmC;EAAW,kBAAA;EHqjB9C;AGpjBmC;EAAW,kBAAA;EHujB9C;AGtjBmC;EAAW,kBAAA;EHyjB9C;AGxjBmC;EAAW,kBAAA;EH2jB9C;AG1jBmC;EAAW,kBAAA;EH6jB9C;AG5jBmC;EAAW,kBAAA;EH+jB9C;AG9jBmC;EAAW,kBAAA;EHikB9C;AGhkBmC;EAAW,kBAAA;EHmkB9C;AGlkBmC;EAAW,kBAAA;EHqkB9C;AGpkBmC;EAAW,kBAAA;EHukB9C;AGtkBmC;EAAW,kBAAA;EHykB9C;AGxkBmC;EAAW,kBAAA;EH2kB9C;AG1kBmC;EAAW,kBAAA;EH6kB9C;AG5kBmC;EAAW,kBAAA;EH+kB9C;AG9kBmC;EAAW,kBAAA;EHilB9C;AGhlBmC;EAAW,kBAAA;EHmlB9C;AGllBmC;EAAW,kBAAA;EHqlB9C;AGplBmC;EAAW,kBAAA;EHulB9C;AGtlBmC;EAAW,kBAAA;EHylB9C;AGxlBmC;EAAW,kBAAA;EH2lB9C;AG1lBmC;EAAW,kBAAA;EH6lB9C;AG5lBmC;EAAW,kBAAA;EH+lB9C;AG9lBmC;EAAW,kBAAA;EHimB9C;AGhmBmC;EAAW,kBAAA;EHmmB9C;AGlmBmC;EAAW,kBAAA;EHqmB9C;AGpmBmC;EAAW,kBAAA;EHumB9C;AGtmBmC;EAAW,kBAAA;EHymB9C;AGxmBmC;EAAW,kBAAA;EH2mB9C;AG1mBmC;EAAW,kBAAA;EH6mB9C;AG5mBmC;EAAW,kBAAA;EH+mB9C;AG9mBmC;EAAW,kBAAA;EHinB9C;AGhnBmC;EAAW,kBAAA;EHmnB9C;AGlnBmC;EAAW,kBAAA;EHqnB9C;AGpnBmC;EAAW,kBAAA;EHunB9C;AGtnBmC;EAAW,kBAAA;EHynB9C;AGxnBmC;EAAW,kBAAA;EH2nB9C;AG1nBmC;EAAW,kBAAA;EH6nB9C;AG5nBmC;EAAW,kBAAA;EH+nB9C;AG9nBmC;EAAW,kBAAA;EHioB9C;AGhoBmC;EAAW,kBAAA;EHmoB9C;AGloBmC;EAAW,kBAAA;EHqoB9C;AGpoBmC;EAAW,kBAAA;EHuoB9C;AGtoBmC;EAAW,kBAAA;EHyoB9C;AGhoBmC;EAAW,kBAAA;EHmoB9C;AGloBmC;EAAW,kBAAA;EHqoB9C;AGpoBmC;EAAW,kBAAA;EHuoB9C;AGtoBmC;EAAW,kBAAA;EHyoB9C;AGxoBmC;EAAW,kBAAA;EH2oB9C;AG1oBmC;EAAW,kBAAA;EH6oB9C;AG5oBmC;EAAW,kBAAA;EH+oB9C;AG9oBmC;EAAW,kBAAA;EHipB9C;AGhpBmC;EAAW,kBAAA;EHmpB9C;AGlpBmC;EAAW,kBAAA;EHqpB9C;AGppBmC;EAAW,kBAAA;EHupB9C;AGtpBmC;EAAW,kBAAA;EHypB9C;AGxpBmC;EAAW,kBAAA;EH2pB9C;AG1pBmC;EAAW,kBAAA;EH6pB9C;AG5pBmC;EAAW,kBAAA;EH+pB9C;AG9pBmC;EAAW,kBAAA;EHiqB9C;AGhqBmC;EAAW,kBAAA;EHmqB9C;AGlqBmC;EAAW,kBAAA;EHqqB9C;AGpqBmC;EAAW,kBAAA;EHuqB9C;AGtqBmC;EAAW,kBAAA;EHyqB9C;AGxqBmC;EAAW,kBAAA;EH2qB9C;AG1qBmC;EAAW,kBAAA;EH6qB9C;AG5qBmC;EAAW,kBAAA;EH+qB9C;AG9qBmC;EAAW,kBAAA;EHirB9C;AGhrBmC;EAAW,kBAAA;EHmrB9C;AGlrBmC;EAAW,kBAAA;EHqrB9C;AGprBmC;EAAW,kBAAA;EHurB9C;AGtrBmC;EAAW,kBAAA;EHyrB9C;AGxrBmC;EAAW,kBAAA;EH2rB9C;AG1rBmC;EAAW,kBAAA;EH6rB9C;AG5rBmC;EAAW,kBAAA;EH+rB9C;AG9rBmC;EAAW,kBAAA;EHisB9C;AGhsBmC;EAAW,kBAAA;EHmsB9C;AGlsBmC;EAAW,kBAAA;EHqsB9C;AGpsBmC;EAAW,kBAAA;EHusB9C;AGtsBmC;EAAW,kBAAA;EHysB9C;AGxsBmC;EAAW,kBAAA;EH2sB9C;AG1sBmC;EAAW,kBAAA;EH6sB9C;AG5sBmC;EAAW,kBAAA;EH+sB9C;AG9sBmC;EAAW,kBAAA;EHitB9C;AGhtBmC;EAAW,kBAAA;EHmtB9C;AGltBmC;EAAW,kBAAA;EHqtB9C;AGptBmC;EAAW,kBAAA;EHutB9C;AGttBmC;EAAW,kBAAA;EHytB9C;AGxtBmC;EAAW,k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H;Ae1jDC;EACE,YAAA;Ef4jDH;Ae7jDC;EACE,qBAAA;Ef+jDH;AehkDC;EACE,qBAAA;EfkkDH;AenkDC;EACE,YAAA;EfqkDH;AetkDC;EACE,qBAAA;EfwkDH;AezkDC;EACE,oBAAA;Ef2kDH;AevkDC;EACE,aAAA;EfykDH;AezlDC;EACE,YAAA;Ef2lDH;Ae5lDC;EACE,oBAAA;Ef8lDH;Ae/lDC;EACE,oBAAA;EfimDH;AelmDC;EACE,WAAA;EfomDH;AermDC;EACE,oBAAA;EfumDH;AexmDC;EACE,oBAAA;Ef0mDH;Ae3mDC;EACE,WAAA;Ef6mDH;Ae9mDC;EACE,oBAAA;EfgnDH;AejnDC;EACE,oBAAA;EfmnDH;AepnDC;EACE,WAAA;EfsnDH;AevnDC;EACE,oBAAA;EfynDH;Ae1nDC;EACE,mBAAA;Ef4nDH;AexnDC;EACE,YAAA;Ef0nDH;Ae5mDC;EACE,mBAAA;Ef8mDH;Ae/mDC;EACE,2BAAA;EfinDH;AelnDC;EACE,2BAAA;EfonDH;AernDC;EACE,kBAAA;EfunDH;AexnDC;EACE,2BAAA;Ef0nDH;Ae3nDC;EACE,2BAAA;Ef6nDH;Ae9nDC;EACE,kBAAA;EfgoDH;AejoDC;EACE,2BAAA;EfmoDH;AepoDC;EACE,2BAAA;EfsoDH;AevoDC;EACE,kBAAA;EfyoDH;Ae1oDC;EACE,2BAAA;Ef4oDH;Ae7oDC;EACE,0BAAA;Ef+oDH;AehpDC;EACE,iBAAA;EfkpDH;AalpDD;EElCI;IACE,aAAA;IfurDH;EehrDD;IACE,aAAA;IfkrDD;EenrDD;IACE,qBAAA;IfqrDD;EetrDD;IACE,qBAAA;IfwrDD;EezrDD;IACE,YAAA;If2rDD;Ee5rDD;IACE,qBAAA;If8rDD;Ee/rDD;IACE,qBAAA;IfisDD;EelsDD;IACE,YAAA;IfosDD;EersDD;IACE,qBAAA;IfusDD;EexsDD;IACE,qBAAA;If0sDD;Ee3sDD;IACE,YAAA;If6sDD;Ee9sDD;IACE,qBAAA;IfgtDD;EejtDD;IACE,oBAAA;IfmtDD;EersDD;IACE,aAAA;IfusDD;EexsDD;IACE,qBAAA;If0sDD;Ee3sDD;IACE,qBAAA;If6sDD;Ee9sDD;IACE,YAAA;IfgtDD;EejtDD;IACE,qBAAA;IfmtDD;EeptDD;IACE,qBAAA;IfstDD;EevtDD;IACE,YAAA;IfytDD;Ee1tDD;IACE,qBAAA;If4tDD;Ee7tDD;IACE,qBAAA;If+tDD;EehuDD;IACE,YAAA;IfkuDD;EenuDD;IACE,qBAAA;IfquDD;EetuDD;IACE,oBAAA;IfwuDD;EepuDD;IACE,aAAA;IfsuDD;EetvDD;IACE,YAAA;IfwvDD;EezvDD;IACE,oBAAA;If2vDD;Ee5vDD;IACE,oBAAA;If8vDD;Ee/vDD;IACE,WAAA;IfiwDD;EelwDD;IACE,oBAAA;IfowDD;EerwDD;IACE,oBAAA;IfuwDD;EexwDD;IACE,WAAA;If0wDD;Ee3wDD;IACE,oBAAA;If6wDD;Ee9wDD;IACE,oBAAA;IfgxDD;EejxDD;IACE,WAAA;IfmxDD;EepxDD;IACE,oBAAA;IfsxDD;EevxDD;IACE,mBAAA;IfyxDD;EerxDD;IACE,YAAA;IfuxDD;EezwDD;IACE,mBAAA;If2wDD;Ee5wDD;IACE,2BAAA;If8wDD;Ee/wDD;IACE,2BAAA;IfixDD;EelxDD;IACE,kBAAA;IfoxDD;EerxDD;IACE,2BAAA;IfuxDD;EexxDD;IACE,2BAAA;If0xDD;Ee3xDD;IACE,kBAAA;If6xDD;Ee9xDD;IACE,2BAAA;IfgyDD;EejyDD;IACE,2BAAA;IfmyDD;EepyDD;IACE,kBAAA;IfsyDD;EevyDD;IACE,2BAAA;IfyyDD;Ee1yDD;IACE,0BAAA;If4yDD;Ee7yDD;IACE,iBAAA;If+yDD;EACF;AavyDD;EE3CI;IACE,aAAA;Ifq1DH;Ee90DD;IACE,aAAA;Ifg1DD;Eej1DD;IACE,qBAAA;Ifm1DD;Eep1DD;IACE,qBAAA;Ifs1DD;Eev1DD;IACE,YAAA;Ify1DD;Ee11DD;IACE,qBAAA;If41DD;Ee71DD;IACE,qBAAA;If+1DD;Eeh2DD;IACE,YAAA;Ifk2DD;Een2DD;IACE,qBAAA;Ifq2DD;Eet2DD;IACE,qBAAA;Ifw2DD;Eez2DD;IACE,YAAA;If22DD;Ee52DD;IACE,qBAAA;If82DD;Ee/2DD;IACE,oBAAA;Ifi3DD;Een2DD;IACE,aAAA;Ifq2DD;Eet2DD;IACE,qBAAA;Ifw2DD;Eez2DD;IACE,qBAAA;If22DD;Ee52DD;IACE,YAAA;If82DD;Ee/2DD;IACE,qBAAA;Ifi3DD;Eel3DD;IACE,qBAAA;Ifo3DD;Eer3DD;IACE,YAAA;Ifu3DD;Eex3DD;IACE,qBAAA;If03DD;Ee33DD;IACE,qBAAA;If63DD;Ee93DD;IACE,YAAA;Ifg4DD;Eej4DD;IACE,qBAAA;Ifm4DD;Eep4DD;IACE,oBAAA;Ifs4DD;Eel4DD;IACE,aAAA;Ifo4DD;Eep5DD;IACE,YAAA;Ifs5DD;Eev5DD;IACE,oBAAA;Ify5DD;Ee15DD;IACE,oBAAA;If45DD;Ee75DD;IACE,WAAA;If+5DD;Eeh6DD;IACE,oBAAA;Ifk6DD;Een6DD;IACE,oBAAA;Ifq6DD;Eet6DD;IACE,WAAA;Ifw6DD;Eez6DD;IACE,oBAAA;If26DD;Ee56DD;IACE,oBAAA;If86DD;Ee/6DD;IACE,WAAA;Ifi7DD;Eel7DD;IACE,oBAAA;Ifo7DD;Eer7DD;IACE,mBAAA;Ifu7DD;Een7DD;IACE,YAAA;Ifq7DD;Eev6DD;IACE,mBAAA;Ify6DD;Ee16DD;IACE,2BAAA;If46DD;Ee76DD;IACE,2BAAA;If+6DD;Eeh7DD;IACE,kBAAA;Ifk7DD;Een7DD;IACE,2BAAA;Ifq7DD;Eet7DD;IACE,2BAAA;Ifw7DD;Eez7DD;IACE,kBAAA;If27DD;Ee57DD;IACE,2BAAA;If87DD;Ee/7DD;IACE,2BAAA;Ifi8DD;Eel8DD;IACE,kBAAA;Ifo8DD;Eer8DD;IACE,2BAAA;Ifu8DD;Eex8DD;IACE,0BAAA;If08DD;Ee38DD;IACE,iBAAA;If68DD;EACF;Aal8DD;EE9CI;IACE,aAAA;Ifm/DH;Ee5+DD;IACE,aAAA;If8+DD;Ee/+DD;IACE,qBAAA;Ifi/DD;Eel/DD;IACE,qBAAA;Ifo/DD;Eer/DD;IACE,YAAA;Ifu/DD;Eex/DD;IACE,qBAAA;If0/DD;Ee3/DD;IACE,qBAAA;If6/DD;Ee9/DD;IACE,YAAA;IfggED;EejgED;IACE,qBAAA;IfmgED;EepgED;IACE,qBAAA;IfsgED;EevgED;IACE,YAAA;IfygED;Ee1gED;IACE,qBAAA;If4gED;Ee7gED;IACE,oBAAA;If+gED;EejgED;IACE,aAAA;IfmgED;EepgED;IACE,qBAAA;IfsgED;EevgED;IACE,qBAAA;IfygED;Ee1gED;IACE,YAAA;If4gED;Ee7gED;IACE,qBAAA;If+gED;EehhED;IACE,qBAAA;IfkhED;EenhED;IACE,YAAA;IfqhED;EethED;IACE,qBAAA;IfwhED;EezhED;IACE,qBAAA;If2hED;Ee5hED;IACE,YAAA;If8hED;Ee/hED;IACE,qBAAA;IfiiED;EeliED;IACE,oBAAA;IfoiED;EehiED;IACE,aAAA;IfkiED;EeljED;IACE,YAAA;IfojED;EerjED;IACE,oBAAA;IfujED;EexjED;IACE,oBAAA;If0jED;Ee3jED;IACE,WAAA;If6jED;Ee9jED;IACE,oBAAA;IfgkED;EejkED;IACE,oBAAA;IfmkED;EepkED;IACE,WAAA;IfskED;EevkED;IACE,oBAAA;IfykED;Ee1kED;IACE,oBAAA;If4kED;Ee7kED;IACE,WAAA;If+kED;EehlED;IACE,oBAAA;IfklED;EenlED;IACE,mBAAA;IfqlED;EejlED;IACE,YAAA;IfmlED;EerkED;IACE,mBAAA;IfukED;EexkED;IACE,2BAAA;If0kED;Ee3kED;IACE,2BAAA;If6kED;Ee9kED;IACE,kBAAA;IfglED;EejlED;IACE,2BAAA;IfmlED;EeplED;IACE,2BAAA;IfslED;EevlED;IACE,kBAAA;IfylED;Ee1lED;IACE,2BAAA;If4lED;Ee7lED;IACE,2BAAA;If+lED;EehmED;IACE,kBAAA;IfkmED;EenmED;IACE,2BAAA;IfqmED;EetmED;IACE,0BAAA;IfwmED;EezmED;IACE,iBAAA;If2mED;EACF;AgB/qED;EACE,+BAAA;EhBirED;AgB/qED;EACE,kBAAA;EACA,qBAAA;EACA,gBAAA;EACA,kBAAA;EhBirED;AgB/qE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","file":"bootstrap.css","sourcesContent":["/*! normalize.css v3.0.2 | MIT License | git.io/normalize */\nhtml {\n font-family: sans-serif;\n -ms-text-size-adjust: 100%;\n -webkit-text-size-adjust: 100%;\n}\nbody {\n margin: 0;\n}\narticle,\naside,\ndetails,\nfigcaption,\nfigure,\nfooter,\nheader,\nhgroup,\nmain,\nmenu,\nnav,\nsection,\nsummary {\n display: block;\n}\naudio,\ncanvas,\nprogress,\nvideo {\n display: inline-block;\n vertical-align: baseline;\n}\naudio:not([controls]) {\n display: none;\n height: 0;\n}\n[hidden],\ntemplate {\n display: none;\n}\na {\n background-color: transparent;\n}\na:active,\na:hover {\n outline: 0;\n}\nabbr[title] {\n border-bottom: 1px dotted;\n}\nb,\nstrong {\n font-weight: bold;\n}\ndfn {\n font-style: italic;\n}\nh1 {\n font-size: 2em;\n margin: 0.67em 0;\n}\nmark {\n background: #ff0;\n color: #000;\n}\nsmall {\n font-size: 80%;\n}\nsub,\nsup {\n font-size: 75%;\n line-height: 0;\n position: relative;\n vertical-align: baseline;\n}\nsup {\n top: -0.5em;\n}\nsub {\n bottom: -0.25em;\n}\nimg {\n border: 0;\n}\nsvg:not(:root) {\n overflow: hidden;\n}\nfigure {\n margin: 1em 40px;\n}\nhr {\n -moz-box-sizing: content-box;\n box-sizing: content-box;\n height: 0;\n}\npre {\n overflow: auto;\n}\ncode,\nkbd,\npre,\nsamp {\n font-family: monospace, monospace;\n font-size: 1em;\n}\nbutton,\ninput,\noptgroup,\nselect,\ntextarea {\n color: inherit;\n font: inherit;\n margin: 0;\n}\nbutton {\n overflow: visible;\n}\nbutton,\nselect {\n text-transform: none;\n}\nbutton,\nhtml input[type=\"button\"],\ninput[type=\"reset\"],\ninput[type=\"submit\"] {\n -webkit-appearance: button;\n cursor: pointer;\n}\nbutton[disabled],\nhtml input[disabled] {\n cursor: default;\n}\nbutton::-moz-focus-inner,\ninput::-moz-focus-inner {\n border: 0;\n padding: 0;\n}\ninput {\n line-height: normal;\n}\ninput[type=\"checkbox\"],\ninput[type=\"radio\"] {\n box-sizing: border-box;\n padding: 0;\n}\ninput[type=\"number\"]::-webkit-inner-spin-button,\ninput[type=\"number\"]::-webkit-outer-spin-button {\n height: auto;\n}\ninput[type=\"search\"] {\n -webkit-appearance: textfield;\n -moz-box-sizing: content-box;\n -webkit-box-sizing: content-box;\n box-sizing: content-box;\n}\ninput[type=\"search\"]::-webkit-search-cancel-button,\ninput[type=\"search\"]::-webkit-search-decoration {\n -webkit-appearance: none;\n}\nfieldset {\n border: 1px solid #c0c0c0;\n margin: 0 2px;\n padding: 0.35em 0.625em 0.75em;\n}\nlegend {\n border: 0;\n padding: 0;\n}\ntextarea {\n overflow: auto;\n}\noptgroup {\n font-weight: bold;\n}\ntable {\n border-collapse: collapse;\n border-spacing: 0;\n}\ntd,\nth {\n padding: 0;\n}\n/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */\n@media print {\n *,\n *:before,\n *:after {\n background: transparent !important;\n color: #000 !important;\n box-shadow: none !important;\n text-shadow: none !important;\n }\n a,\n a:visited {\n text-decoration: underline;\n }\n a[href]:after {\n content: \" (\" attr(href) \")\";\n }\n abbr[title]:after {\n content: \" (\" attr(title) \")\";\n }\n a[href^=\"#\"]:after,\n a[href^=\"javascript:\"]:after {\n content: \"\";\n }\n pre,\n blockquote {\n border: 1px solid #999;\n page-break-inside: avoid;\n }\n thead {\n display: table-header-group;\n }\n tr,\n img {\n page-break-inside: avoid;\n }\n img {\n max-width: 100% !important;\n }\n p,\n h2,\n h3 {\n orphans: 3;\n widows: 3;\n }\n h2,\n h3 {\n page-break-after: avoid;\n }\n select {\n background: #fff !important;\n }\n .navbar {\n display: none;\n }\n .btn > .caret,\n .dropup > .btn > .caret {\n border-top-color: #000 !important;\n }\n .label {\n border: 1px solid #000;\n }\n .table {\n border-collapse: collapse !important;\n }\n .table td,\n .table th {\n background-color: #fff !important;\n }\n .table-bordered th,\n .table-bordered td {\n border: 1px solid #ddd !important;\n }\n}\n@font-face {\n font-family: 'Glyphicons Halflings';\n src: url('../fonts/glyphicons-halflings-regular.eot');\n src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');\n}\n.glyphicon {\n position: relative;\n top: 1px;\n display: inline-block;\n font-family: 'Glyphicons Halflings';\n font-style: normal;\n font-weight: normal;\n line-height: 1;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n.glyphicon-asterisk:before {\n content: \"\\2a\";\n}\n.glyphicon-plus:before {\n content: \"\\2b\";\n}\n.glyphicon-euro:before,\n.glyphicon-eur:before {\n content: \"\\20ac\";\n}\n.glyphicon-minus:before {\n content: \"\\2212\";\n}\n.glyphicon-cloud:before {\n content: \"\\2601\";\n}\n.glyphicon-envelope:before {\n content: \"\\2709\";\n}\n.glyphicon-pencil:before {\n content: \"\\270f\";\n}\n.glyphicon-glass:before {\n content: \"\\e001\";\n}\n.glyphicon-music:before {\n content: \"\\e002\";\n}\n.glyphicon-search:before {\n content: \"\\e003\";\n}\n.glyphicon-heart:before {\n content: \"\\e005\";\n}\n.glyphicon-star:before {\n content: \"\\e006\";\n}\n.glyphicon-star-empty:before {\n content: \"\\e007\";\n}\n.glyphicon-user:before {\n content: \"\\e008\";\n}\n.glyphicon-film:before {\n content: \"\\e009\";\n}\n.glyphicon-th-large:before {\n content: \"\\e010\";\n}\n.glyphicon-th:before {\n content: \"\\e011\";\n}\n.glyphicon-th-list:before {\n content: \"\\e012\";\n}\n.glyphicon-ok:before {\n content: \"\\e013\";\n}\n.glyphicon-remove:before {\n content: \"\\e014\";\n}\n.glyphicon-zoom-in:before {\n content: \"\\e015\";\n}\n.glyphicon-zoom-out:before {\n content: \"\\e016\";\n}\n.glyphicon-off:before {\n content: \"\\e017\";\n}\n.glyphicon-signal:before {\n content: \"\\e018\";\n}\n.glyphicon-cog:before {\n content: \"\\e019\";\n}\n.glyphicon-trash:before {\n content: \"\\e020\";\n}\n.glyphicon-home:before {\n content: \"\\e021\";\n}\n.glyphicon-file:before {\n content: \"\\e022\";\n}\n.glyphicon-time:before {\n content: \"\\e023\";\n}\n.glyphicon-road:before {\n content: \"\\e024\";\n}\n.glyphicon-download-alt:before {\n content: \"\\e025\";\n}\n.glyphicon-download:before {\n content: \"\\e026\";\n}\n.glyphicon-upload:before {\n content: \"\\e027\";\n}\n.glyphicon-inbox:before {\n content: \"\\e028\";\n}\n.glyphicon-play-circle:before {\n content: \"\\e029\";\n}\n.glyphicon-repeat:before {\n content: \"\\e030\";\n}\n.glyphicon-refresh:before {\n content: \"\\e031\";\n}\n.glyphicon-list-alt:before {\n content: \"\\e032\";\n}\n.glyphicon-lock:before {\n content: \"\\e033\";\n}\n.glyphicon-flag:before {\n content: \"\\e034\";\n}\n.glyphicon-headphones:before {\n content: \"\\e035\";\n}\n.glyphicon-volume-off:before {\n content: \"\\e036\";\n}\n.glyphicon-volume-down:before {\n content: \"\\e037\";\n}\n.glyphicon-volume-up:before {\n content: \"\\e038\";\n}\n.glyphicon-qrcode:before {\n content: \"\\e039\";\n}\n.glyphicon-barcode:before {\n content: \"\\e040\";\n}\n.glyphicon-tag:before {\n content: \"\\e041\";\n}\n.glyphicon-tags:before {\n content: \"\\e042\";\n}\n.glyphicon-book:before {\n content: \"\\e043\";\n}\n.glyphicon-bookmark:before {\n content: \"\\e044\";\n}\n.glyphicon-print:before {\n content: \"\\e045\";\n}\n.glyphicon-camera:before {\n content: \"\\e046\";\n}\n.glyphicon-font:before {\n content: \"\\e047\";\n}\n.glyphicon-bold:before {\n content: \"\\e048\";\n}\n.glyphicon-italic:before {\n content: \"\\e049\";\n}\n.glyphicon-text-height:before {\n content: \"\\e050\";\n}\n.glyphicon-text-width:before {\n content: \"\\e051\";\n}\n.glyphicon-align-left:before {\n content: \"\\e052\";\n}\n.glyphicon-align-center:before {\n content: \"\\e053\";\n}\n.glyphicon-align-right:before {\n content: \"\\e054\";\n}\n.glyphicon-align-justify:before {\n content: \"\\e055\";\n}\n.glyphicon-list:before {\n content: \"\\e056\";\n}\n.glyphicon-indent-left:before {\n content: \"\\e057\";\n}\n.glyphicon-indent-right:before {\n content: \"\\e058\";\n}\n.glyphicon-facetime-video:before {\n content: \"\\e059\";\n}\n.glyphicon-picture:before {\n content: \"\\e060\";\n}\n.glyphicon-map-marker:before {\n content: \"\\e062\";\n}\n.glyphicon-adjust:before {\n content: \"\\e063\";\n}\n.glyphicon-tint:before {\n content: \"\\e064\";\n}\n.glyphicon-edit:before {\n content: \"\\e065\";\n}\n.glyphicon-share:before {\n content: \"\\e066\";\n}\n.glyphicon-check:before {\n content: \"\\e067\";\n}\n.glyphicon-move:before {\n content: \"\\e068\";\n}\n.glyphicon-step-backward:before {\n content: \"\\e069\";\n}\n.glyphicon-fast-backward:before {\n content: \"\\e070\";\n}\n.glyphicon-backward:before {\n content: \"\\e071\";\n}\n.glyphicon-play:before {\n content: \"\\e072\";\n}\n.glyphicon-pause:before {\n content: \"\\e073\";\n}\n.glyphicon-stop:before {\n content: \"\\e074\";\n}\n.glyphicon-forward:before {\n content: \"\\e075\";\n}\n.glyphicon-fast-forward:before {\n content: \"\\e076\";\n}\n.glyphicon-step-forward:before {\n content: \"\\e077\";\n}\n.glyphicon-eject:before {\n content: \"\\e078\";\n}\n.glyphicon-chevron-left:before {\n content: \"\\e079\";\n}\n.glyphicon-chevron-right:before {\n content: \"\\e080\";\n}\n.glyphicon-plus-sign:before {\n content: \"\\e081\";\n}\n.glyphicon-minus-sign:before {\n content: \"\\e082\";\n}\n.glyphicon-remove-sign:before {\n content: \"\\e083\";\n}\n.glyphicon-ok-sign:before {\n content: \"\\e084\";\n}\n.glyphicon-question-sign:before {\n content: \"\\e085\";\n}\n.glyphicon-info-sign:before {\n content: \"\\e086\";\n}\n.glyphicon-screenshot:before {\n content: \"\\e087\";\n}\n.glyphicon-remove-circle:before {\n content: \"\\e088\";\n}\n.glyphicon-ok-circle:before {\n content: \"\\e089\";\n}\n.glyphicon-ban-circle:before {\n content: \"\\e090\";\n}\n.glyphicon-arrow-left:before {\n content: \"\\e091\";\n}\n.glyphicon-arrow-right:before {\n content: \"\\e092\";\n}\n.glyphicon-arrow-up:before {\n content: \"\\e093\";\n}\n.glyphicon-arrow-down:before {\n content: \"\\e094\";\n}\n.glyphicon-share-alt:before {\n content: \"\\e095\";\n}\n.glyphicon-resize-full:before {\n content: \"\\e096\";\n}\n.glyphicon-resize-small:before {\n content: \"\\e097\";\n}\n.glyphicon-exclamation-sign:before {\n content: \"\\e101\";\n}\n.glyphicon-gift:before {\n content: \"\\e102\";\n}\n.glyphicon-leaf:before {\n content: \"\\e103\";\n}\n.glyphicon-fire:before {\n content: \"\\e104\";\n}\n.glyphicon-eye-open:before {\n content: \"\\e105\";\n}\n.glyphicon-eye-close:before {\n content: \"\\e106\";\n}\n.glyphicon-warning-sign:before {\n content: \"\\e107\";\n}\n.glyphicon-plane:before {\n content: \"\\e108\";\n}\n.glyphicon-calendar:before {\n content: \"\\e109\";\n}\n.glyphicon-random:before {\n content: \"\\e110\";\n}\n.glyphicon-comment:before {\n content: \"\\e111\";\n}\n.glyphicon-magnet:before {\n content: \"\\e112\";\n}\n.glyphicon-chevron-up:before {\n content: \"\\e113\";\n}\n.glyphicon-chevron-down:before {\n content: \"\\e114\";\n}\n.glyphicon-retweet:before {\n content: \"\\e115\";\n}\n.glyphicon-shopping-cart:before {\n content: \"\\e116\";\n}\n.glyphicon-folder-close:before {\n content: \"\\e117\";\n}\n.glyphicon-folder-open:before {\n content: \"\\e118\";\n}\n.glyphicon-resize-vertical:before {\n content: \"\\e119\";\n}\n.glyphicon-resize-horizontal:before {\n content: \"\\e120\";\n}\n.glyphicon-hdd:before {\n content: \"\\e121\";\n}\n.glyphicon-bullhorn:before {\n content: \"\\e122\";\n}\n.glyphicon-bell:before {\n content: \"\\e123\";\n}\n.glyphicon-certificate:before {\n content: \"\\e124\";\n}\n.glyphicon-thumbs-up:before {\n content: \"\\e125\";\n}\n.glyphicon-thumbs-down:before {\n content: \"\\e126\";\n}\n.glyphicon-hand-right:before {\n content: \"\\e127\";\n}\n.glyphicon-hand-left:before {\n content: \"\\e128\";\n}\n.glyphicon-hand-up:before {\n content: \"\\e129\";\n}\n.glyphicon-hand-down:before {\n content: \"\\e130\";\n}\n.glyphicon-circle-arrow-right:before {\n content: \"\\e131\";\n}\n.glyphicon-circle-arrow-left:before {\n content: \"\\e132\";\n}\n.glyphicon-circle-arrow-up:before {\n content: \"\\e133\";\n}\n.glyphicon-circle-arrow-down:before {\n content: \"\\e134\";\n}\n.glyphicon-globe:before {\n content: \"\\e135\";\n}\n.glyphicon-wrench:before {\n content: \"\\e136\";\n}\n.glyphicon-tasks:before {\n content: \"\\e137\";\n}\n.glyphicon-filter:before {\n content: \"\\e138\";\n}\n.glyphicon-briefcase:before {\n content: \"\\e139\";\n}\n.glyphicon-fullscreen:before {\n content: \"\\e140\";\n}\n.glyphicon-dashboard:before {\n content: \"\\e141\";\n}\n.glyphicon-paperclip:before {\n content: \"\\e142\";\n}\n.glyphicon-heart-empty:before {\n content: \"\\e143\";\n}\n.glyphicon-link:before {\n content: \"\\e144\";\n}\n.glyphicon-phone:before {\n content: \"\\e145\";\n}\n.glyphicon-pushpin:before {\n content: \"\\e146\";\n}\n.glyphicon-usd:before {\n content: \"\\e148\";\n}\n.glyphicon-gbp:before {\n content: \"\\e149\";\n}\n.glyphicon-sort:before {\n content: \"\\e150\";\n}\n.glyphicon-sort-by-alphabet:before {\n content: \"\\e151\";\n}\n.glyphicon-sort-by-alphabet-alt:before {\n content: \"\\e152\";\n}\n.glyphicon-sort-by-order:before {\n content: \"\\e153\";\n}\n.glyphicon-sort-by-order-alt:before {\n content: \"\\e154\";\n}\n.glyphicon-sort-by-attributes:before {\n content: \"\\e155\";\n}\n.glyphicon-sort-by-attributes-alt:before {\n content: \"\\e156\";\n}\n.glyphicon-unchecked:before {\n content: \"\\e157\";\n}\n.glyphicon-expand:before {\n content: \"\\e158\";\n}\n.glyphicon-collapse-down:before {\n content: \"\\e159\";\n}\n.glyphicon-collapse-up:before {\n content: \"\\e160\";\n}\n.glyphicon-log-in:before {\n content: \"\\e161\";\n}\n.glyphicon-flash:before {\n content: \"\\e162\";\n}\n.glyphicon-log-out:before {\n content: \"\\e163\";\n}\n.glyphicon-new-window:before {\n content: \"\\e164\";\n}\n.glyphicon-record:before {\n content: \"\\e165\";\n}\n.glyphicon-save:before {\n content: \"\\e166\";\n}\n.glyphicon-open:before {\n content: \"\\e167\";\n}\n.glyphicon-saved:before {\n content: \"\\e168\";\n}\n.glyphicon-import:before {\n content: \"\\e169\";\n}\n.glyphicon-export:before {\n content: \"\\e170\";\n}\n.glyphicon-send:before {\n content: \"\\e171\";\n}\n.glyphicon-floppy-disk:before {\n content: \"\\e172\";\n}\n.glyphicon-floppy-saved:before {\n content: \"\\e173\";\n}\n.glyphicon-floppy-remove:before {\n content: \"\\e174\";\n}\n.glyphicon-floppy-save:before {\n content: \"\\e175\";\n}\n.glyphicon-floppy-open:before {\n content: \"\\e176\";\n}\n.glyphicon-credit-card:before {\n content: \"\\e177\";\n}\n.glyphicon-transfer:before {\n content: \"\\e178\";\n}\n.glyphicon-cutlery:before {\n content: \"\\e179\";\n}\n.glyphicon-header:before {\n content: \"\\e180\";\n}\n.glyphicon-compressed:before {\n content: \"\\e181\";\n}\n.glyphicon-earphone:before {\n content: \"\\e182\";\n}\n.glyphicon-phone-alt:before {\n content: \"\\e183\";\n}\n.glyphicon-tower:before {\n content: \"\\e184\";\n}\n.glyphicon-stats:before {\n content: \"\\e185\";\n}\n.glyphicon-sd-video:before {\n content: \"\\e186\";\n}\n.glyphicon-hd-video:before {\n content: \"\\e187\";\n}\n.glyphicon-subtitles:before {\n content: \"\\e188\";\n}\n.glyphicon-sound-stereo:before {\n content: \"\\e189\";\n}\n.glyphicon-sound-dolby:before {\n content: \"\\e190\";\n}\n.glyphicon-sound-5-1:before {\n content: \"\\e191\";\n}\n.glyphicon-sound-6-1:before {\n content: \"\\e192\";\n}\n.glyphicon-sound-7-1:before {\n content: \"\\e193\";\n}\n.glyphicon-copyright-mark:before {\n content: \"\\e194\";\n}\n.glyphicon-registration-mark:before {\n content: \"\\e195\";\n}\n.glyphicon-cloud-download:before {\n content: \"\\e197\";\n}\n.glyphicon-cloud-upload:before {\n content: \"\\e198\";\n}\n.glyphicon-tree-conifer:before {\n content: \"\\e199\";\n}\n.glyphicon-tree-deciduous:before {\n content: \"\\e200\";\n}\n.glyphicon-cd:before {\n content: \"\\e201\";\n}\n.glyphicon-save-file:before {\n content: \"\\e202\";\n}\n.glyphicon-open-file:before {\n content: \"\\e203\";\n}\n.glyphicon-level-up:before {\n content: \"\\e204\";\n}\n.glyphicon-copy:before {\n content: \"\\e205\";\n}\n.glyphicon-paste:before {\n content: \"\\e206\";\n}\n.glyphicon-alert:before {\n content: \"\\e209\";\n}\n.glyphicon-equalizer:before {\n content: \"\\e210\";\n}\n.glyphicon-king:before {\n content: \"\\e211\";\n}\n.glyphicon-queen:before {\n content: \"\\e212\";\n}\n.glyphicon-pawn:before {\n content: \"\\e213\";\n}\n.glyphicon-bishop:before {\n content: \"\\e214\";\n}\n.glyphicon-knight:before {\n content: \"\\e215\";\n}\n.glyphicon-baby-formula:before {\n content: \"\\e216\";\n}\n.glyphicon-tent:before {\n content: \"\\26fa\";\n}\n.glyphicon-blackboard:before {\n content: \"\\e218\";\n}\n.glyphicon-bed:before {\n content: \"\\e219\";\n}\n.glyphicon-apple:before {\n content: \"\\f8ff\";\n}\n.glyphicon-erase:before {\n content: \"\\e221\";\n}\n.glyphicon-hourglass:before {\n content: \"\\231b\";\n}\n.glyphicon-lamp:before {\n content: \"\\e223\";\n}\n.glyphicon-duplicate:before {\n content: \"\\e224\";\n}\n.glyphicon-piggy-bank:before {\n content: \"\\e225\";\n}\n.glyphicon-scissors:before {\n content: \"\\e226\";\n}\n.glyphicon-bitcoin:before {\n content: \"\\e227\";\n}\n.glyphicon-btc:before {\n content: \"\\e227\";\n}\n.glyphicon-xbt:before {\n content: \"\\e227\";\n}\n.glyphicon-yen:before {\n content: \"\\00a5\";\n}\n.glyphicon-jpy:before {\n content: \"\\00a5\";\n}\n.glyphicon-ruble:before {\n content: \"\\20bd\";\n}\n.glyphicon-rub:before {\n content: \"\\20bd\";\n}\n.glyphicon-scale:before {\n content: \"\\e230\";\n}\n.glyphicon-ice-lolly:before {\n content: \"\\e231\";\n}\n.glyphicon-ice-lolly-tasted:before {\n content: \"\\e232\";\n}\n.glyphicon-education:before {\n content: \"\\e233\";\n}\n.glyphicon-option-horizontal:before {\n content: \"\\e234\";\n}\n.glyphicon-option-vertical:before {\n content: \"\\e235\";\n}\n.glyphicon-menu-hamburger:before {\n content: \"\\e236\";\n}\n.glyphicon-modal-window:before {\n content: \"\\e237\";\n}\n.glyphicon-oil:before {\n content: \"\\e238\";\n}\n.glyphicon-grain:before {\n content: \"\\e239\";\n}\n.glyphicon-sunglasses:before {\n content: \"\\e240\";\n}\n.glyphicon-text-size:before {\n content: \"\\e241\";\n}\n.glyphicon-text-color:before {\n content: \"\\e242\";\n}\n.glyphicon-text-background:before {\n content: \"\\e243\";\n}\n.glyphicon-object-align-top:before {\n content: \"\\e244\";\n}\n.glyphicon-object-align-bottom:before {\n content: \"\\e245\";\n}\n.glyphicon-object-align-horizontal:before {\n content: \"\\e246\";\n}\n.glyphicon-object-align-left:before {\n content: \"\\e247\";\n}\n.glyphicon-object-align-vertical:before {\n content: \"\\e248\";\n}\n.glyphicon-object-align-right:before {\n content: \"\\e249\";\n}\n.glyphicon-triangle-right:before {\n content: \"\\e250\";\n}\n.glyphicon-triangle-left:before {\n content: \"\\e251\";\n}\n.glyphicon-triangle-bottom:before {\n content: \"\\e252\";\n}\n.glyphicon-triangle-top:before {\n content: \"\\e253\";\n}\n.glyphicon-console:before {\n content: \"\\e254\";\n}\n.glyphicon-superscript:before {\n content: \"\\e255\";\n}\n.glyphicon-subscript:before {\n content: \"\\e256\";\n}\n.glyphicon-menu-left:before {\n content: \"\\e257\";\n}\n.glyphicon-menu-right:before {\n content: \"\\e258\";\n}\n.glyphicon-menu-down:before {\n content: \"\\e259\";\n}\n.glyphicon-menu-up:before {\n content: \"\\e260\";\n}\n* {\n -webkit-box-sizing: border-box;\n -moz-box-sizing: border-box;\n box-sizing: border-box;\n}\n*:before,\n*:after {\n -webkit-box-sizing: border-box;\n -moz-box-sizing: border-box;\n box-sizing: border-box;\n}\nhtml {\n font-size: 10px;\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\n}\nbody {\n font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n font-size: 14px;\n line-height: 1.42857143;\n color: #333333;\n background-color: #ffffff;\n}\ninput,\nbutton,\nselect,\ntextarea {\n font-family: inherit;\n font-size: inherit;\n line-height: inherit;\n}\na {\n color: #337ab7;\n text-decoration: none;\n}\na:hover,\na:focus {\n color: #23527c;\n text-decoration: underline;\n}\na:focus {\n outline: thin dotted;\n outline: 5px auto -webkit-focus-ring-color;\n outline-offset: -2px;\n}\nfigure {\n margin: 0;\n}\nimg {\n vertical-align: middle;\n}\n.img-responsive,\n.thumbnail > img,\n.thumbnail a > img,\n.carousel-inner > .item > img,\n.carousel-inner > .item > a > img {\n display: block;\n max-width: 100%;\n height: auto;\n}\n.img-rounded {\n border-radius: 6px;\n}\n.img-thumbnail {\n padding: 4px;\n line-height: 1.42857143;\n background-color: #ffffff;\n border: 1px solid #dddddd;\n border-radius: 4px;\n -webkit-transition: all 0.2s ease-in-out;\n -o-transition: all 0.2s ease-in-out;\n transition: all 0.2s ease-in-out;\n display: inline-block;\n max-width: 100%;\n height: auto;\n}\n.img-circle {\n border-radius: 50%;\n}\nhr {\n margin-top: 20px;\n margin-bottom: 20px;\n border: 0;\n border-top: 1px solid #eeeeee;\n}\n.sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n margin: -1px;\n padding: 0;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n border: 0;\n}\n.sr-only-focusable:active,\n.sr-only-focusable:focus {\n position: static;\n width: auto;\n height: auto;\n margin: 0;\n overflow: visible;\n clip: auto;\n}\n[role=\"button\"] {\n cursor: pointer;\n}\nh1,\nh2,\nh3,\nh4,\nh5,\nh6,\n.h1,\n.h2,\n.h3,\n.h4,\n.h5,\n.h6 {\n font-family: inherit;\n font-weight: 500;\n line-height: 1.1;\n color: inherit;\n}\nh1 small,\nh2 small,\nh3 small,\nh4 small,\nh5 small,\nh6 small,\n.h1 small,\n.h2 small,\n.h3 small,\n.h4 small,\n.h5 small,\n.h6 small,\nh1 .small,\nh2 .small,\nh3 .small,\nh4 .small,\nh5 .small,\nh6 .small,\n.h1 .small,\n.h2 .small,\n.h3 .small,\n.h4 .small,\n.h5 .small,\n.h6 .small {\n font-weight: normal;\n line-height: 1;\n color: #777777;\n}\nh1,\n.h1,\nh2,\n.h2,\nh3,\n.h3 {\n margin-top: 20px;\n margin-bottom: 10px;\n}\nh1 small,\n.h1 small,\nh2 small,\n.h2 small,\nh3 small,\n.h3 small,\nh1 .small,\n.h1 .small,\nh2 .small,\n.h2 .small,\nh3 .small,\n.h3 .small {\n font-size: 65%;\n}\nh4,\n.h4,\nh5,\n.h5,\nh6,\n.h6 {\n margin-top: 10px;\n margin-bottom: 10px;\n}\nh4 small,\n.h4 small,\nh5 small,\n.h5 small,\nh6 small,\n.h6 small,\nh4 .small,\n.h4 .small,\nh5 .small,\n.h5 .small,\nh6 .small,\n.h6 .small {\n font-size: 75%;\n}\nh1,\n.h1 {\n font-size: 36px;\n}\nh2,\n.h2 {\n font-size: 30px;\n}\nh3,\n.h3 {\n font-size: 24px;\n}\nh4,\n.h4 {\n font-size: 18px;\n}\nh5,\n.h5 {\n font-size: 14px;\n}\nh6,\n.h6 {\n font-size: 12px;\n}\np {\n margin: 0 0 10px;\n}\n.lead {\n margin-bottom: 20px;\n font-size: 16px;\n font-weight: 300;\n line-height: 1.4;\n}\n@media (min-width: 768px) {\n .lead {\n font-size: 21px;\n }\n}\nsmall,\n.small {\n font-size: 85%;\n}\nmark,\n.mark {\n background-color: #fcf8e3;\n padding: .2em;\n}\n.text-left {\n text-align: left;\n}\n.text-right {\n text-align: right;\n}\n.text-center {\n text-align: center;\n}\n.text-justify {\n text-align: justify;\n}\n.text-nowrap {\n white-space: nowrap;\n}\n.text-lowercase {\n text-transform: lowercase;\n}\n.text-uppercase {\n text-transform: uppercase;\n}\n.text-capitalize {\n text-transform: capitalize;\n}\n.text-muted {\n color: #777777;\n}\n.text-primary {\n color: #337ab7;\n}\na.text-primary:hover {\n color: #286090;\n}\n.text-success {\n color: #3c763d;\n}\na.text-success:hover {\n color: #2b542c;\n}\n.text-info {\n color: #31708f;\n}\na.text-info:hover {\n color: #245269;\n}\n.text-warning {\n color: #8a6d3b;\n}\na.text-warning:hover {\n color: #66512c;\n}\n.text-danger {\n color: #a94442;\n}\na.text-danger:hover {\n color: #843534;\n}\n.bg-primary {\n color: #fff;\n background-color: #337ab7;\n}\na.bg-primary:hover {\n background-color: #286090;\n}\n.bg-success {\n background-color: #dff0d8;\n}\na.bg-success:hover {\n background-color: #c1e2b3;\n}\n.bg-info {\n background-color: #d9edf7;\n}\na.bg-info:hover {\n background-color: #afd9ee;\n}\n.bg-warning {\n background-color: #fcf8e3;\n}\na.bg-warning:hover {\n background-color: #f7ecb5;\n}\n.bg-danger {\n background-color: #f2dede;\n}\na.bg-danger:hover {\n background-color: #e4b9b9;\n}\n.page-header {\n padding-bottom: 9px;\n margin: 40px 0 20px;\n border-bottom: 1px solid #eeeeee;\n}\nul,\nol {\n margin-top: 0;\n margin-bottom: 10px;\n}\nul ul,\nol ul,\nul ol,\nol ol {\n margin-bottom: 0;\n}\n.list-unstyled {\n padding-left: 0;\n list-style: none;\n}\n.list-inline {\n padding-left: 0;\n list-style: none;\n margin-left: -5px;\n}\n.list-inline > li {\n display: inline-block;\n padding-left: 5px;\n padding-right: 5px;\n}\ndl {\n margin-top: 0;\n margin-bottom: 20px;\n}\ndt,\ndd {\n line-height: 1.42857143;\n}\ndt {\n font-weight: bold;\n}\ndd {\n margin-left: 0;\n}\n@media (min-width: 768px) {\n .dl-horizontal dt {\n float: left;\n width: 160px;\n clear: left;\n text-align: right;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n }\n .dl-horizontal dd {\n margin-left: 180px;\n }\n}\nabbr[title],\nabbr[data-original-title] {\n cursor: help;\n border-bottom: 1px dotted #777777;\n}\n.initialism {\n font-size: 90%;\n text-transform: uppercase;\n}\nblockquote {\n padding: 10px 20px;\n margin: 0 0 20px;\n font-size: 17.5px;\n border-left: 5px solid #eeeeee;\n}\nblockquote p:last-child,\nblockquote ul:last-child,\nblockquote ol:last-child {\n margin-bottom: 0;\n}\nblockquote footer,\nblockquote small,\nblockquote .small {\n display: block;\n font-size: 80%;\n line-height: 1.42857143;\n color: #777777;\n}\nblockquote footer:before,\nblockquote small:before,\nblockquote .small:before {\n content: '\\2014 \\00A0';\n}\n.blockquote-reverse,\nblockquote.pull-right {\n padding-right: 15px;\n padding-left: 0;\n border-right: 5px solid #eeeeee;\n border-left: 0;\n text-align: right;\n}\n.blockquote-reverse footer:before,\nblockquote.pull-right footer:before,\n.blockquote-reverse small:before,\nblockquote.pull-right small:before,\n.blockquote-reverse .small:before,\nblockquote.pull-right .small:before {\n content: '';\n}\n.blockquote-reverse footer:after,\nblockquote.pull-right footer:after,\n.blockquote-reverse small:after,\nblockquote.pull-right small:after,\n.blockquote-reverse .small:after,\nblockquote.pull-right .small:after {\n content: '\\00A0 \\2014';\n}\naddress {\n margin-bottom: 20px;\n font-style: normal;\n line-height: 1.42857143;\n}\ncode,\nkbd,\npre,\nsamp {\n font-family: Menlo, Monaco, Consolas, \"Courier New\", monospace;\n}\ncode {\n padding: 2px 4px;\n font-size: 90%;\n color: #c7254e;\n background-color: #f9f2f4;\n border-radius: 4px;\n}\nkbd {\n padding: 2px 4px;\n font-size: 90%;\n color: #ffffff;\n background-color: #333333;\n border-radius: 3px;\n box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);\n}\nkbd kbd {\n padding: 0;\n font-size: 100%;\n font-weight: bold;\n box-shadow: none;\n}\npre {\n display: block;\n padding: 9.5px;\n margin: 0 0 10px;\n font-size: 13px;\n line-height: 1.42857143;\n word-break: break-all;\n word-wrap: break-word;\n color: #333333;\n background-color: #f5f5f5;\n border: 1px solid #cccccc;\n border-radius: 4px;\n}\npre code {\n padding: 0;\n font-size: inherit;\n color: inherit;\n white-space: pre-wrap;\n background-color: transparent;\n border-radius: 0;\n}\n.pre-scrollable {\n max-height: 340px;\n overflow-y: scroll;\n}\n.container {\n margin-right: auto;\n margin-left: auto;\n padding-left: 15px;\n padding-right: 15px;\n}\n@media (min-width: 768px) {\n .container {\n width: 750px;\n }\n}\n@media (min-width: 992px) {\n .container {\n width: 970px;\n }\n}\n@media (min-width: 1200px) {\n .container {\n width: 1170px;\n }\n}\n.container-fluid {\n margin-right: auto;\n margin-left: auto;\n padding-left: 15px;\n padding-right: 15px;\n}\n.row {\n margin-left: -15px;\n margin-right: -15px;\n}\n.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {\n position: relative;\n min-height: 1px;\n padding-left: 15px;\n padding-right: 15px;\n}\n.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {\n float: left;\n}\n.col-xs-12 {\n width: 100%;\n}\n.col-xs-11 {\n width: 91.66666667%;\n}\n.col-xs-10 {\n width: 83.33333333%;\n}\n.col-xs-9 {\n width: 75%;\n}\n.col-xs-8 {\n width: 66.66666667%;\n}\n.col-xs-7 {\n width: 58.33333333%;\n}\n.col-xs-6 {\n width: 50%;\n}\n.col-xs-5 {\n width: 41.66666667%;\n}\n.col-xs-4 {\n width: 33.33333333%;\n}\n.col-xs-3 {\n width: 25%;\n}\n.col-xs-2 {\n width: 16.66666667%;\n}\n.col-xs-1 {\n width: 8.33333333%;\n}\n.col-xs-pull-12 {\n right: 100%;\n}\n.col-xs-pull-11 {\n right: 91.66666667%;\n}\n.col-xs-pull-10 {\n right: 83.33333333%;\n}\n.col-xs-pull-9 {\n right: 75%;\n}\n.col-xs-pull-8 {\n right: 66.66666667%;\n}\n.col-xs-pull-7 {\n right: 58.33333333%;\n}\n.col-xs-pull-6 {\n right: 50%;\n}\n.col-xs-pull-5 {\n right: 41.66666667%;\n}\n.col-xs-pull-4 {\n right: 33.33333333%;\n}\n.col-xs-pull-3 {\n right: 25%;\n}\n.col-xs-pull-2 {\n right: 16.66666667%;\n}\n.col-xs-pull-1 {\n right: 8.33333333%;\n}\n.col-xs-pull-0 {\n right: auto;\n}\n.col-xs-push-12 {\n left: 100%;\n}\n.col-xs-push-11 {\n left: 91.66666667%;\n}\n.col-xs-push-10 {\n left: 83.33333333%;\n}\n.col-xs-push-9 {\n left: 75%;\n}\n.col-xs-push-8 {\n left: 66.66666667%;\n}\n.col-xs-push-7 {\n left: 58.33333333%;\n}\n.col-xs-push-6 {\n left: 50%;\n}\n.col-xs-push-5 {\n left: 41.66666667%;\n}\n.col-xs-push-4 {\n left: 33.33333333%;\n}\n.col-xs-push-3 {\n left: 25%;\n}\n.col-xs-push-2 {\n left: 16.66666667%;\n}\n.col-xs-push-1 {\n left: 8.33333333%;\n}\n.col-xs-push-0 {\n left: auto;\n}\n.col-xs-offset-12 {\n margin-left: 100%;\n}\n.col-xs-offset-11 {\n margin-left: 91.66666667%;\n}\n.col-xs-offset-10 {\n margin-left: 83.33333333%;\n}\n.col-xs-offset-9 {\n margin-left: 75%;\n}\n.col-xs-offset-8 {\n margin-left: 66.66666667%;\n}\n.col-xs-offset-7 {\n margin-left: 58.33333333%;\n}\n.col-xs-offset-6 {\n margin-left: 50%;\n}\n.col-xs-offset-5 {\n margin-left: 41.66666667%;\n}\n.col-xs-offset-4 {\n margin-left: 33.33333333%;\n}\n.col-xs-offset-3 {\n margin-left: 25%;\n}\n.col-xs-offset-2 {\n margin-left: 16.66666667%;\n}\n.col-xs-offset-1 {\n margin-left: 8.33333333%;\n}\n.col-xs-offset-0 {\n margin-left: 0%;\n}\n@media (min-width: 768px) {\n .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 {\n float: left;\n }\n .col-sm-12 {\n width: 100%;\n }\n .col-sm-11 {\n width: 91.66666667%;\n }\n .col-sm-10 {\n width: 83.33333333%;\n }\n .col-sm-9 {\n width: 75%;\n }\n .col-sm-8 {\n width: 66.66666667%;\n }\n .col-sm-7 {\n width: 58.33333333%;\n }\n .col-sm-6 {\n width: 50%;\n }\n .col-sm-5 {\n width: 41.66666667%;\n }\n .col-sm-4 {\n width: 33.33333333%;\n }\n .col-sm-3 {\n width: 25%;\n }\n .col-sm-2 {\n width: 16.66666667%;\n }\n .col-sm-1 {\n width: 8.33333333%;\n }\n .col-sm-pull-12 {\n right: 100%;\n }\n .col-sm-pull-11 {\n right: 91.66666667%;\n }\n .col-sm-pull-10 {\n right: 83.33333333%;\n }\n .col-sm-pull-9 {\n right: 75%;\n }\n .col-sm-pull-8 {\n right: 66.66666667%;\n }\n .col-sm-pull-7 {\n right: 58.33333333%;\n }\n .col-sm-pull-6 {\n right: 50%;\n }\n .col-sm-pull-5 {\n right: 41.66666667%;\n }\n .col-sm-pull-4 {\n right: 33.33333333%;\n }\n .col-sm-pull-3 {\n right: 25%;\n }\n .col-sm-pull-2 {\n right: 16.66666667%;\n }\n .col-sm-pull-1 {\n right: 8.33333333%;\n }\n .col-sm-pull-0 {\n right: auto;\n }\n .col-sm-push-12 {\n left: 100%;\n }\n .col-sm-push-11 {\n left: 91.66666667%;\n }\n .col-sm-push-10 {\n left: 83.33333333%;\n }\n .col-sm-push-9 {\n left: 75%;\n }\n .col-sm-push-8 {\n left: 66.66666667%;\n }\n .col-sm-push-7 {\n left: 58.33333333%;\n }\n .col-sm-push-6 {\n left: 50%;\n }\n .col-sm-push-5 {\n left: 41.66666667%;\n }\n .col-sm-push-4 {\n left: 33.33333333%;\n }\n .col-sm-push-3 {\n left: 25%;\n }\n .col-sm-push-2 {\n left: 16.66666667%;\n }\n .col-sm-push-1 {\n left: 8.33333333%;\n }\n .col-sm-push-0 {\n left: auto;\n }\n .col-sm-offset-12 {\n margin-left: 100%;\n }\n .col-sm-offset-11 {\n margin-left: 91.66666667%;\n }\n .col-sm-offset-10 {\n margin-left: 83.33333333%;\n }\n .col-sm-offset-9 {\n margin-left: 75%;\n }\n .col-sm-offset-8 {\n margin-left: 66.66666667%;\n }\n .col-sm-offset-7 {\n margin-left: 58.33333333%;\n }\n .col-sm-offset-6 {\n margin-left: 50%;\n }\n .col-sm-offset-5 {\n margin-left: 41.66666667%;\n }\n .col-sm-offset-4 {\n margin-left: 33.33333333%;\n }\n .col-sm-offset-3 {\n margin-left: 25%;\n }\n .col-sm-offset-2 {\n margin-left: 16.66666667%;\n }\n .col-sm-offset-1 {\n margin-left: 8.33333333%;\n }\n .col-sm-offset-0 {\n margin-left: 0%;\n }\n}\n@media (min-width: 992px) {\n .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {\n float: left;\n }\n .col-md-12 {\n width: 100%;\n }\n .col-md-11 {\n width: 91.66666667%;\n }\n .col-md-10 {\n width: 83.33333333%;\n }\n .col-md-9 {\n width: 75%;\n }\n .col-md-8 {\n width: 66.66666667%;\n }\n .col-md-7 {\n width: 58.33333333%;\n }\n .col-md-6 {\n width: 50%;\n }\n .col-md-5 {\n width: 41.66666667%;\n }\n .col-md-4 {\n width: 33.33333333%;\n }\n .col-md-3 {\n width: 25%;\n }\n .col-md-2 {\n width: 16.66666667%;\n }\n .col-md-1 {\n width: 8.33333333%;\n }\n .col-md-pull-12 {\n right: 100%;\n }\n .col-md-pull-11 {\n right: 91.66666667%;\n }\n .col-md-pull-10 {\n right: 83.33333333%;\n }\n .col-md-pull-9 {\n right: 75%;\n }\n .col-md-pull-8 {\n right: 66.66666667%;\n }\n .col-md-pull-7 {\n right: 58.33333333%;\n }\n .col-md-pull-6 {\n right: 50%;\n }\n .col-md-pull-5 {\n right: 41.66666667%;\n }\n .col-md-pull-4 {\n right: 33.33333333%;\n }\n .col-md-pull-3 {\n right: 25%;\n }\n .col-md-pull-2 {\n right: 16.66666667%;\n }\n .col-md-pull-1 {\n right: 8.33333333%;\n }\n .col-md-pull-0 {\n right: auto;\n }\n .col-md-push-12 {\n left: 100%;\n }\n .col-md-push-11 {\n left: 91.66666667%;\n }\n .col-md-push-10 {\n left: 83.33333333%;\n }\n .col-md-push-9 {\n left: 75%;\n }\n .col-md-push-8 {\n left: 66.66666667%;\n }\n .col-md-push-7 {\n left: 58.33333333%;\n }\n .col-md-push-6 {\n left: 50%;\n }\n .col-md-push-5 {\n left: 41.66666667%;\n }\n .col-md-push-4 {\n left: 33.33333333%;\n }\n .col-md-push-3 {\n left: 25%;\n }\n .col-md-push-2 {\n left: 16.66666667%;\n }\n .col-md-push-1 {\n left: 8.33333333%;\n }\n .col-md-push-0 {\n left: auto;\n }\n .col-md-offset-12 {\n margin-left: 100%;\n }\n .col-md-offset-11 {\n margin-left: 91.66666667%;\n }\n .col-md-offset-10 {\n margin-left: 83.33333333%;\n }\n .col-md-offset-9 {\n margin-left: 75%;\n }\n .col-md-offset-8 {\n margin-left: 66.66666667%;\n }\n .col-md-offset-7 {\n margin-left: 58.33333333%;\n }\n .col-md-offset-6 {\n margin-left: 50%;\n }\n .col-md-offset-5 {\n margin-left: 41.66666667%;\n }\n .col-md-offset-4 {\n margin-left: 33.33333333%;\n }\n .col-md-offset-3 {\n margin-left: 25%;\n }\n .col-md-offset-2 {\n margin-left: 16.66666667%;\n }\n .col-md-offset-1 {\n margin-left: 8.33333333%;\n }\n .col-md-offset-0 {\n margin-left: 0%;\n }\n}\n@media (min-width: 1200px) {\n .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 {\n float: left;\n }\n .col-lg-12 {\n width: 100%;\n }\n .col-lg-11 {\n width: 91.66666667%;\n }\n .col-lg-10 {\n width: 83.33333333%;\n }\n .col-lg-9 {\n width: 75%;\n }\n .col-lg-8 {\n width: 66.66666667%;\n }\n .col-lg-7 {\n width: 58.33333333%;\n }\n .col-lg-6 {\n width: 50%;\n }\n .col-lg-5 {\n width: 41.66666667%;\n }\n .col-lg-4 {\n width: 33.33333333%;\n }\n .col-lg-3 {\n width: 25%;\n }\n .col-lg-2 {\n width: 16.66666667%;\n }\n .col-lg-1 {\n width: 8.33333333%;\n }\n .col-lg-pull-12 {\n right: 100%;\n }\n .col-lg-pull-11 {\n right: 91.66666667%;\n }\n .col-lg-pull-10 {\n right: 83.33333333%;\n }\n .col-lg-pull-9 {\n right: 75%;\n }\n .col-lg-pull-8 {\n right: 66.66666667%;\n }\n .col-lg-pull-7 {\n right: 58.33333333%;\n }\n .col-lg-pull-6 {\n right: 50%;\n }\n .col-lg-pull-5 {\n right: 41.66666667%;\n }\n .col-lg-pull-4 {\n right: 33.33333333%;\n }\n .col-lg-pull-3 {\n right: 25%;\n }\n .col-lg-pull-2 {\n right: 16.66666667%;\n }\n .col-lg-pull-1 {\n right: 8.33333333%;\n }\n .col-lg-pull-0 {\n right: auto;\n }\n .col-lg-push-12 {\n left: 100%;\n }\n .col-lg-push-11 {\n left: 91.66666667%;\n }\n .col-lg-push-10 {\n left: 83.33333333%;\n }\n .col-lg-push-9 {\n left: 75%;\n }\n .col-lg-push-8 {\n left: 66.66666667%;\n }\n .col-lg-push-7 {\n left: 58.33333333%;\n }\n .col-lg-push-6 {\n left: 50%;\n }\n .col-lg-push-5 {\n left: 41.66666667%;\n }\n .col-lg-push-4 {\n left: 33.33333333%;\n }\n .col-lg-push-3 {\n left: 25%;\n }\n .col-lg-push-2 {\n left: 16.66666667%;\n }\n .col-lg-push-1 {\n left: 8.33333333%;\n }\n .col-lg-push-0 {\n left: auto;\n }\n .col-lg-offset-12 {\n margin-left: 100%;\n }\n .col-lg-offset-11 {\n margin-left: 91.66666667%;\n }\n .col-lg-offset-10 {\n margin-left: 83.33333333%;\n }\n .col-lg-offset-9 {\n margin-left: 75%;\n }\n .col-lg-offset-8 {\n margin-left: 66.66666667%;\n }\n .col-lg-offset-7 {\n margin-left: 58.33333333%;\n }\n .col-lg-offset-6 {\n margin-left: 50%;\n }\n .col-lg-offset-5 {\n margin-left: 41.66666667%;\n }\n .col-lg-offset-4 {\n margin-left: 33.33333333%;\n }\n .col-lg-offset-3 {\n margin-left: 25%;\n }\n .col-lg-offset-2 {\n margin-left: 16.66666667%;\n }\n .col-lg-offset-1 {\n margin-left: 8.33333333%;\n }\n .col-lg-offset-0 {\n margin-left: 0%;\n }\n}\ntable {\n background-color: transparent;\n}\ncaption {\n padding-top: 8px;\n padding-bottom: 8px;\n color: #777777;\n text-align: left;\n}\nth {\n text-align: left;\n}\n.table {\n width: 100%;\n max-width: 100%;\n margin-bottom: 20px;\n}\n.table > thead > tr > th,\n.table > tbody > tr > th,\n.table > tfoot > tr > th,\n.table > thead > tr > td,\n.table > tbody > tr > td,\n.table > tfoot > tr > td {\n padding: 8px;\n line-height: 1.42857143;\n vertical-align: top;\n border-top: 1px solid #dddddd;\n}\n.table > thead > tr > th {\n vertical-align: bottom;\n border-bottom: 2px solid #dddddd;\n}\n.table > caption + thead > tr:first-child > th,\n.table > colgroup + thead > tr:first-child > th,\n.table > thead:first-child > tr:first-child > th,\n.table > caption + thead > tr:first-child > td,\n.table > colgroup + thead > tr:first-child > td,\n.table > thead:first-child > tr:first-child > td {\n border-top: 0;\n}\n.table > tbody + tbody {\n border-top: 2px solid #dddddd;\n}\n.table .table {\n background-color: #ffffff;\n}\n.table-condensed > thead > tr > th,\n.table-condensed > tbody > tr > th,\n.table-condensed > tfoot > tr > th,\n.table-condensed > thead > tr > td,\n.table-condensed > tbody > tr > td,\n.table-condensed > tfoot > tr > td {\n padding: 5px;\n}\n.table-bordered {\n border: 1px solid #dddddd;\n}\n.table-bordered > thead > tr > th,\n.table-bordered > tbody > tr > th,\n.table-bordered > tfoot > tr > th,\n.table-bordered > thead > tr > td,\n.table-bordered > tbody > tr > td,\n.table-bordered > tfoot > tr > td {\n border: 1px solid #dddddd;\n}\n.table-bordered > thead > tr > th,\n.table-bordered > thead > tr > td {\n border-bottom-width: 2px;\n}\n.table-striped > tbody > tr:nth-of-type(odd) {\n background-color: #f9f9f9;\n}\n.table-hover > tbody > tr:hover {\n background-color: #f5f5f5;\n}\ntable col[class*=\"col-\"] {\n position: static;\n float: none;\n display: table-column;\n}\ntable td[class*=\"col-\"],\ntable th[class*=\"col-\"] {\n position: static;\n float: none;\n display: table-cell;\n}\n.table > thead > tr > td.active,\n.table > tbody > tr > td.active,\n.table > tfoot > tr > td.active,\n.table > thead > tr > th.active,\n.table > tbody > tr > th.active,\n.table > tfoot > tr > th.active,\n.table > thead > tr.active > td,\n.table > tbody > tr.active > td,\n.table > tfoot > tr.active > td,\n.table > thead > tr.active > th,\n.table > tbody > tr.active > th,\n.table > tfoot > tr.active > th {\n background-color: #f5f5f5;\n}\n.table-hover > tbody > tr > td.active:hover,\n.table-hover > tbody > tr > th.active:hover,\n.table-hover > tbody > tr.active:hover > td,\n.table-hover > tbody > tr:hover > .active,\n.table-hover > tbody > tr.active:hover > th {\n background-color: #e8e8e8;\n}\n.table > thead > tr > td.success,\n.table > tbody > tr > td.success,\n.table > tfoot > tr > td.success,\n.table > thead > tr > th.success,\n.table > tbody > tr > th.success,\n.table > tfoot > tr > th.success,\n.table > thead > tr.success > td,\n.table > tbody > tr.success > td,\n.table > tfoot > tr.success > td,\n.table > thead > tr.success > th,\n.table > tbody > tr.success > th,\n.table > tfoot > tr.success > th {\n background-color: #dff0d8;\n}\n.table-hover > tbody > tr > td.success:hover,\n.table-hover > tbody > tr > th.success:hover,\n.table-hover > tbody > tr.success:hover > td,\n.table-hover > tbody > tr:hover > .success,\n.table-hover > tbody > tr.success:hover > th {\n background-color: #d0e9c6;\n}\n.table > thead > tr > td.info,\n.table > tbody > tr > td.info,\n.table > tfoot > tr > td.info,\n.table > thead > tr > th.info,\n.table > tbody > tr > th.info,\n.table > tfoot > tr > th.info,\n.table > thead > tr.info > td,\n.table > tbody > tr.info > td,\n.table > tfoot > tr.info > td,\n.table > thead > tr.info > th,\n.table > tbody > tr.info > th,\n.table > tfoot > tr.info > th {\n background-color: #d9edf7;\n}\n.table-hover > tbody > tr > td.info:hover,\n.table-hover > tbody > tr > th.info:hover,\n.table-hover > tbody > tr.info:hover > td,\n.table-hover > tbody > tr:hover > .info,\n.table-hover > tbody > tr.info:hover > th {\n background-color: #c4e3f3;\n}\n.table > thead > tr > td.warning,\n.table > tbody > tr > td.warning,\n.table > tfoot > tr > td.warning,\n.table > thead > tr > th.warning,\n.table > tbody > tr > th.warning,\n.table > tfoot > tr > th.warning,\n.table > thead > tr.warning > td,\n.table > tbody > tr.warning > td,\n.table > tfoot > tr.warning > td,\n.table > thead > tr.warning > th,\n.table > tbody > tr.warning > th,\n.table > tfoot > tr.warning > th {\n background-color: #fcf8e3;\n}\n.table-hover > tbody > tr > td.warning:hover,\n.table-hover > tbody > tr > th.warning:hover,\n.table-hover > tbody > tr.warning:hover > td,\n.table-hover > tbody > tr:hover > .warning,\n.table-hover > tbody > tr.warning:hover > th {\n background-color: #faf2cc;\n}\n.table > thead > tr > td.danger,\n.table > tbody > tr > td.danger,\n.table > tfoot > tr > td.danger,\n.table > thead > tr > th.danger,\n.table > tbody > tr > th.danger,\n.table > tfoot > tr > th.danger,\n.table > thead > tr.danger > td,\n.table > tbody > tr.danger > td,\n.table > tfoot > tr.danger > td,\n.table > thead > tr.danger > th,\n.table > tbody > tr.danger > th,\n.table > tfoot > tr.danger > th {\n background-color: #f2dede;\n}\n.table-hover > tbody > tr > td.danger:hover,\n.table-hover > tbody > tr > th.danger:hover,\n.table-hover > tbody > tr.danger:hover > td,\n.table-hover > tbody > tr:hover > .danger,\n.table-hover > tbody > tr.danger:hover > th {\n background-color: #ebcccc;\n}\n.table-responsive {\n overflow-x: auto;\n min-height: 0.01%;\n}\n@media screen and (max-width: 767px) {\n .table-responsive {\n width: 100%;\n margin-bottom: 15px;\n overflow-y: hidden;\n -ms-overflow-style: -ms-autohiding-scrollbar;\n border: 1px solid #dddddd;\n }\n .table-responsive > .table {\n margin-bottom: 0;\n }\n .table-responsive > .table > thead > tr > th,\n .table-responsive > .table > tbody > tr > th,\n .table-responsive > .table > tfoot > tr > th,\n .table-responsive > .table > thead > tr > td,\n .table-responsive > .table > tbody > tr > td,\n .table-responsive > .table > tfoot > tr > td {\n white-space: nowrap;\n }\n .table-responsive > .table-bordered {\n border: 0;\n }\n .table-responsive > .table-bordered > thead > tr > th:first-child,\n .table-responsive > .table-bordered > tbody > tr > th:first-child,\n .table-responsive > .table-bordered > tfoot > tr > th:first-child,\n .table-responsive > .table-bordered > thead > tr > td:first-child,\n .table-responsive > .table-bordered > tbody > tr > td:first-child,\n .table-responsive > .table-bordered > tfoot > tr > td:first-child {\n border-left: 0;\n }\n .table-responsive > .table-bordered > thead > tr > th:last-child,\n .table-responsive > .table-bordered > tbody > tr > th:last-child,\n .table-responsive > .table-bordered > tfoot > tr > th:last-child,\n .table-responsive > .table-bordered > thead > tr > td:last-child,\n .table-responsive > .table-bordered > tbody > tr > td:last-child,\n .table-responsive > .table-bordered > tfoot > tr > td:last-child {\n border-right: 0;\n }\n .table-responsive > .table-bordered > tbody > tr:last-child > th,\n .table-responsive > .table-bordered > tfoot > tr:last-child > th,\n .table-responsive > .table-bordered > tbody > tr:last-child > td,\n .table-responsive > .table-bordered > tfoot > tr:last-child > td {\n border-bottom: 0;\n }\n}\nfieldset {\n padding: 0;\n margin: 0;\n border: 0;\n min-width: 0;\n}\nlegend {\n display: block;\n width: 100%;\n padding: 0;\n margin-bottom: 20px;\n font-size: 21px;\n line-height: inherit;\n color: #333333;\n border: 0;\n border-bottom: 1px solid #e5e5e5;\n}\nlabel {\n display: inline-block;\n max-width: 100%;\n margin-bottom: 5px;\n font-weight: bold;\n}\ninput[type=\"search\"] {\n -webkit-box-sizing: border-box;\n -moz-box-sizing: border-box;\n box-sizing: border-box;\n}\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n margin: 4px 0 0;\n margin-top: 1px \\9;\n line-height: normal;\n}\ninput[type=\"file\"] {\n display: block;\n}\ninput[type=\"range\"] {\n display: block;\n width: 100%;\n}\nselect[multiple],\nselect[size] {\n height: auto;\n}\ninput[type=\"file\"]:focus,\ninput[type=\"radio\"]:focus,\ninput[type=\"checkbox\"]:focus {\n outline: thin dotted;\n outline: 5px auto -webkit-focus-ring-color;\n outline-offset: -2px;\n}\noutput {\n display: block;\n padding-top: 7px;\n font-size: 14px;\n line-height: 1.42857143;\n color: #555555;\n}\n.form-control {\n display: block;\n width: 100%;\n height: 34px;\n padding: 6px 12px;\n font-size: 14px;\n line-height: 1.42857143;\n color: #555555;\n background-color: #ffffff;\n background-image: none;\n border: 1px solid #cccccc;\n border-radius: 4px;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;\n -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;\n transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;\n}\n.form-control:focus {\n border-color: #66afe9;\n outline: 0;\n -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);\n box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);\n}\n.form-control::-moz-placeholder {\n color: #999999;\n opacity: 1;\n}\n.form-control:-ms-input-placeholder {\n color: #999999;\n}\n.form-control::-webkit-input-placeholder {\n color: #999999;\n}\n.form-control[disabled],\n.form-control[readonly],\nfieldset[disabled] .form-control {\n background-color: #eeeeee;\n opacity: 1;\n}\n.form-control[disabled],\nfieldset[disabled] .form-control {\n cursor: not-allowed;\n}\ntextarea.form-control {\n height: auto;\n}\ninput[type=\"search\"] {\n -webkit-appearance: none;\n}\n@media screen and (-webkit-min-device-pixel-ratio: 0) {\n input[type=\"date\"],\n input[type=\"time\"],\n input[type=\"datetime-local\"],\n input[type=\"month\"] {\n line-height: 34px;\n }\n input[type=\"date\"].input-sm,\n input[type=\"time\"].input-sm,\n input[type=\"datetime-local\"].input-sm,\n input[type=\"month\"].input-sm,\n .input-group-sm input[type=\"date\"],\n .input-group-sm input[type=\"time\"],\n .input-group-sm input[type=\"datetime-local\"],\n .input-group-sm input[type=\"month\"] {\n line-height: 30px;\n }\n input[type=\"date\"].input-lg,\n input[type=\"time\"].input-lg,\n input[type=\"datetime-local\"].input-lg,\n input[type=\"month\"].input-lg,\n .input-group-lg input[type=\"date\"],\n .input-group-lg input[type=\"time\"],\n .input-group-lg input[type=\"datetime-local\"],\n .input-group-lg input[type=\"month\"] {\n line-height: 46px;\n }\n}\n.form-group {\n margin-bottom: 15px;\n}\n.radio,\n.checkbox {\n position: relative;\n display: block;\n margin-top: 10px;\n margin-bottom: 10px;\n}\n.radio label,\n.checkbox label {\n min-height: 20px;\n padding-left: 20px;\n margin-bottom: 0;\n font-weight: normal;\n cursor: pointer;\n}\n.radio input[type=\"radio\"],\n.radio-inline input[type=\"radio\"],\n.checkbox input[type=\"checkbox\"],\n.checkbox-inline input[type=\"checkbox\"] {\n position: absolute;\n margin-left: -20px;\n margin-top: 4px \\9;\n}\n.radio + .radio,\n.checkbox + .checkbox {\n margin-top: -5px;\n}\n.radio-inline,\n.checkbox-inline {\n position: relative;\n display: inline-block;\n padding-left: 20px;\n margin-bottom: 0;\n vertical-align: middle;\n font-weight: normal;\n cursor: pointer;\n}\n.radio-inline + .radio-inline,\n.checkbox-inline + .checkbox-inline {\n margin-top: 0;\n margin-left: 10px;\n}\ninput[type=\"radio\"][disabled],\ninput[type=\"checkbox\"][disabled],\ninput[type=\"radio\"].disabled,\ninput[type=\"checkbox\"].disabled,\nfieldset[disabled] input[type=\"radio\"],\nfieldset[disabled] input[type=\"checkbox\"] {\n cursor: not-allowed;\n}\n.radio-inline.disabled,\n.checkbox-inline.disabled,\nfieldset[disabled] .radio-inline,\nfieldset[disabled] .checkbox-inline {\n cursor: not-allowed;\n}\n.radio.disabled label,\n.checkbox.disabled label,\nfieldset[disabled] .radio label,\nfieldset[disabled] .checkbox label {\n cursor: not-allowed;\n}\n.form-control-static {\n padding-top: 7px;\n padding-bottom: 7px;\n margin-bottom: 0;\n min-height: 34px;\n}\n.form-control-static.input-lg,\n.form-control-static.input-sm {\n padding-left: 0;\n padding-right: 0;\n}\n.input-sm {\n height: 30px;\n padding: 5px 10px;\n font-size: 12px;\n line-height: 1.5;\n border-radius: 3px;\n}\nselect.input-sm {\n height: 30px;\n line-height: 30px;\n}\ntextarea.input-sm,\nselect[multiple].input-sm {\n height: auto;\n}\n.form-group-sm .form-control {\n height: 30px;\n padding: 5px 10px;\n font-size: 12px;\n line-height: 1.5;\n border-radius: 3px;\n}\nselect.form-group-sm .form-control {\n height: 30px;\n line-height: 30px;\n}\ntextarea.form-group-sm .form-control,\nselect[multiple].form-group-sm .form-control {\n height: auto;\n}\n.form-group-sm .form-control-static {\n height: 30px;\n padding: 5px 10px;\n font-size: 12px;\n line-height: 1.5;\n min-height: 32px;\n}\n.input-lg {\n height: 46px;\n padding: 10px 16px;\n font-size: 18px;\n line-height: 1.3333333;\n border-radius: 6px;\n}\nselect.input-lg {\n height: 46px;\n line-height: 46px;\n}\ntextarea.input-lg,\nselect[multiple].input-lg {\n height: auto;\n}\n.form-group-lg .form-control {\n height: 46px;\n padding: 10px 16px;\n font-size: 18px;\n line-height: 1.3333333;\n border-radius: 6px;\n}\nselect.form-group-lg .form-control {\n height: 46px;\n line-height: 46px;\n}\ntextarea.form-group-lg .form-control,\nselect[multiple].form-group-lg .form-control {\n height: auto;\n}\n.form-group-lg .form-control-static {\n height: 46px;\n padding: 10px 16px;\n font-size: 18px;\n line-height: 1.3333333;\n min-height: 38px;\n}\n.has-feedback {\n position: relative;\n}\n.has-feedback .form-control {\n padding-right: 42.5px;\n}\n.form-control-feedback {\n position: absolute;\n top: 0;\n right: 0;\n z-index: 2;\n display: block;\n width: 34px;\n height: 34px;\n line-height: 34px;\n text-align: center;\n pointer-events: none;\n}\n.input-lg + .form-control-feedback {\n width: 46px;\n height: 46px;\n line-height: 46px;\n}\n.input-sm + .form-control-feedback {\n width: 30px;\n height: 30px;\n line-height: 30px;\n}\n.has-success .help-block,\n.has-success .control-label,\n.has-success .radio,\n.has-success .checkbox,\n.has-success .radio-inline,\n.has-success .checkbox-inline,\n.has-success.radio label,\n.has-success.checkbox label,\n.has-success.radio-inline label,\n.has-success.checkbox-inline label {\n color: #3c763d;\n}\n.has-success .form-control {\n border-color: #3c763d;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n}\n.has-success .form-control:focus {\n border-color: #2b542c;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;\n}\n.has-success .input-group-addon {\n color: #3c763d;\n border-color: #3c763d;\n background-color: #dff0d8;\n}\n.has-success .form-control-feedback {\n color: #3c763d;\n}\n.has-warning .help-block,\n.has-warning .control-label,\n.has-warning .radio,\n.has-warning .checkbox,\n.has-warning .radio-inline,\n.has-warning .checkbox-inline,\n.has-warning.radio label,\n.has-warning.checkbox label,\n.has-warning.radio-inline label,\n.has-warning.checkbox-inline label {\n color: #8a6d3b;\n}\n.has-warning .form-control {\n border-color: #8a6d3b;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n}\n.has-warning .form-control:focus {\n border-color: #66512c;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;\n}\n.has-warning .input-group-addon {\n color: #8a6d3b;\n border-color: #8a6d3b;\n background-color: #fcf8e3;\n}\n.has-warning .form-control-feedback {\n color: #8a6d3b;\n}\n.has-error .help-block,\n.has-error .control-label,\n.has-error .radio,\n.has-error .checkbox,\n.has-error .radio-inline,\n.has-error .checkbox-inline,\n.has-error.radio label,\n.has-error.checkbox label,\n.has-error.radio-inline label,\n.has-error.checkbox-inline label {\n color: #a94442;\n}\n.has-error .form-control {\n border-color: #a94442;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n}\n.has-error .form-control:focus {\n border-color: #843534;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;\n}\n.has-error .input-group-addon {\n color: #a94442;\n border-color: #a94442;\n background-color: #f2dede;\n}\n.has-error .form-control-feedback {\n color: #a94442;\n}\n.has-feedback label ~ .form-control-feedback {\n top: 25px;\n}\n.has-feedback label.sr-only ~ .form-control-feedback {\n top: 0;\n}\n.help-block {\n display: block;\n margin-top: 5px;\n margin-bottom: 10px;\n color: #737373;\n}\n@media (min-width: 768px) {\n .form-inline .form-group {\n display: inline-block;\n margin-bottom: 0;\n vertical-align: middle;\n }\n .form-inline .form-control {\n display: inline-block;\n width: auto;\n vertical-align: middle;\n }\n .form-inline .form-control-static {\n display: inline-block;\n }\n .form-inline .input-group {\n display: inline-table;\n vertical-align: middle;\n }\n .form-inline .input-group .input-group-addon,\n .form-inline .input-group .input-group-btn,\n .form-inline .input-group .form-control {\n width: auto;\n }\n .form-inline .input-group > .form-control {\n width: 100%;\n }\n .form-inline .control-label {\n margin-bottom: 0;\n vertical-align: middle;\n }\n .form-inline .radio,\n .form-inline .checkbox {\n display: inline-block;\n margin-top: 0;\n margin-bottom: 0;\n vertical-align: middle;\n }\n .form-inline .radio label,\n .form-inline .checkbox label {\n padding-left: 0;\n }\n .form-inline .radio input[type=\"radio\"],\n .form-inline .checkbox input[type=\"checkbox\"] {\n position: relative;\n margin-left: 0;\n }\n .form-inline .has-feedback .form-control-feedback {\n top: 0;\n }\n}\n.form-horizontal .radio,\n.form-horizontal .checkbox,\n.form-horizontal .radio-inline,\n.form-horizontal .checkbox-inline {\n margin-top: 0;\n margin-bottom: 0;\n padding-top: 7px;\n}\n.form-horizontal .radio,\n.form-horizontal .checkbox {\n min-height: 27px;\n}\n.form-horizontal .form-group {\n margin-left: -15px;\n margin-right: -15px;\n}\n@media (min-width: 768px) {\n .form-horizontal .control-label {\n text-align: right;\n margin-bottom: 0;\n padding-top: 7px;\n }\n}\n.form-horizontal .has-feedback .form-control-feedback {\n right: 15px;\n}\n@media (min-width: 768px) {\n .form-horizontal .form-group-lg .control-label {\n padding-top: 14.333333px;\n }\n}\n@media (min-width: 768px) {\n .form-horizontal .form-group-sm .control-label {\n padding-top: 6px;\n }\n}\n.btn {\n display: inline-block;\n margin-bottom: 0;\n font-weight: normal;\n text-align: center;\n vertical-align: middle;\n touch-action: manipulation;\n cursor: pointer;\n background-image: none;\n border: 1px solid transparent;\n white-space: nowrap;\n padding: 6px 12px;\n font-size: 14px;\n line-height: 1.42857143;\n border-radius: 4px;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n}\n.btn:focus,\n.btn:active:focus,\n.btn.active:focus,\n.btn.focus,\n.btn:active.focus,\n.btn.active.focus {\n outline: thin dotted;\n outline: 5px auto -webkit-focus-ring-color;\n outline-offset: -2px;\n}\n.btn:hover,\n.btn:focus,\n.btn.focus {\n color: #333333;\n text-decoration: none;\n}\n.btn:active,\n.btn.active {\n outline: 0;\n background-image: none;\n -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n}\n.btn.disabled,\n.btn[disabled],\nfieldset[disabled] .btn {\n cursor: not-allowed;\n pointer-events: none;\n opacity: 0.65;\n filter: alpha(opacity=65);\n -webkit-box-shadow: none;\n box-shadow: none;\n}\n.btn-default {\n color: #333333;\n background-color: #ffffff;\n border-color: #cccccc;\n}\n.btn-default:hover,\n.btn-default:focus,\n.btn-default.focus,\n.btn-default:active,\n.btn-default.active,\n.open > .dropdown-toggle.btn-default {\n color: #333333;\n background-color: #e6e6e6;\n border-color: #adadad;\n}\n.btn-default:active,\n.btn-default.active,\n.open > .dropdown-toggle.btn-default {\n background-image: none;\n}\n.btn-default.disabled,\n.btn-default[disabled],\nfieldset[disabled] .btn-default,\n.btn-default.disabled:hover,\n.btn-default[disabled]:hover,\nfieldset[disabled] .btn-default:hover,\n.btn-default.disabled:focus,\n.btn-default[disabled]:focus,\nfieldset[disabled] .btn-default:focus,\n.btn-default.disabled.focus,\n.btn-default[disabled].focus,\nfieldset[disabled] .btn-default.focus,\n.btn-default.disabled:active,\n.btn-default[disabled]:active,\nfieldset[disabled] .btn-default:active,\n.btn-default.disabled.active,\n.btn-default[disabled].active,\nfieldset[disabled] .btn-default.active {\n background-color: #ffffff;\n border-color: #cccccc;\n}\n.btn-default .badge {\n color: #ffffff;\n background-color: #333333;\n}\n.btn-primary {\n color: #ffffff;\n background-color: #337ab7;\n border-color: #2e6da4;\n}\n.btn-primary:hover,\n.btn-primary:focus,\n.btn-primary.focus,\n.btn-primary:active,\n.btn-primary.active,\n.open > .dropdown-toggle.btn-primary {\n color: #ffffff;\n background-color: #286090;\n border-color: #204d74;\n}\n.btn-primary:active,\n.btn-primary.active,\n.open > .dropdown-toggle.btn-primary {\n background-image: none;\n}\n.btn-primary.disabled,\n.btn-primary[disabled],\nfieldset[disabled] .btn-primary,\n.btn-primary.disabled:hover,\n.btn-primary[disabled]:hover,\nfieldset[disabled] .btn-primary:hover,\n.btn-primary.disabled:focus,\n.btn-primary[disabled]:focus,\nfieldset[disabled] .btn-primary:focus,\n.btn-primary.disabled.focus,\n.btn-primary[disabled].focus,\nfieldset[disabled] .btn-primary.focus,\n.btn-primary.disabled:active,\n.btn-primary[disabled]:active,\nfieldset[disabled] .btn-primary:active,\n.btn-primary.disabled.active,\n.btn-primary[disabled].active,\nfieldset[disabled] .btn-primary.active {\n background-color: #337ab7;\n border-color: #2e6da4;\n}\n.btn-primary .badge {\n color: #337ab7;\n background-color: #ffffff;\n}\n.btn-success {\n color: #ffffff;\n background-color: #5cb85c;\n border-color: #4cae4c;\n}\n.btn-success:hover,\n.btn-success:focus,\n.btn-success.focus,\n.btn-success:active,\n.btn-success.active,\n.open > .dropdown-toggle.btn-success {\n color: #ffffff;\n background-color: #449d44;\n border-color: #398439;\n}\n.btn-success:active,\n.btn-success.active,\n.open > .dropdown-toggle.btn-success {\n background-image: none;\n}\n.btn-success.disabled,\n.btn-success[disabled],\nfieldset[disabled] .btn-success,\n.btn-success.disabled:hover,\n.btn-success[disabled]:hover,\nfieldset[disabled] .btn-success:hover,\n.btn-success.disabled:focus,\n.btn-success[disabled]:focus,\nfieldset[disabled] .btn-success:focus,\n.btn-success.disabled.focus,\n.btn-success[disabled].focus,\nfieldset[disabled] .btn-success.focus,\n.btn-success.disabled:active,\n.btn-success[disabled]:active,\nfieldset[disabled] .btn-success:active,\n.btn-success.disabled.active,\n.btn-success[disabled].active,\nfieldset[disabled] .btn-success.active {\n background-color: #5cb85c;\n border-color: #4cae4c;\n}\n.btn-success .badge {\n color: #5cb85c;\n background-color: #ffffff;\n}\n.btn-info {\n color: #ffffff;\n background-color: #5bc0de;\n border-color: #46b8da;\n}\n.btn-info:hover,\n.btn-info:focus,\n.btn-info.focus,\n.btn-info:active,\n.btn-info.active,\n.open > .dropdown-toggle.btn-info {\n color: #ffffff;\n background-color: #31b0d5;\n border-color: #269abc;\n}\n.btn-info:active,\n.btn-info.active,\n.open > .dropdown-toggle.btn-info {\n background-image: none;\n}\n.btn-info.disabled,\n.btn-info[disabled],\nfieldset[disabled] .btn-info,\n.btn-info.disabled:hover,\n.btn-info[disabled]:hover,\nfieldset[disabled] .btn-info:hover,\n.btn-info.disabled:focus,\n.btn-info[disabled]:focus,\nfieldset[disabled] .btn-info:focus,\n.btn-info.disabled.focus,\n.btn-info[disabled].focus,\nfieldset[disabled] .btn-info.focus,\n.btn-info.disabled:active,\n.btn-info[disabled]:active,\nfieldset[disabled] .btn-info:active,\n.btn-info.disabled.active,\n.btn-info[disabled].active,\nfieldset[disabled] .btn-info.active {\n background-color: #5bc0de;\n border-color: #46b8da;\n}\n.btn-info .badge {\n color: #5bc0de;\n background-color: #ffffff;\n}\n.btn-warning {\n color: #ffffff;\n background-color: #f0ad4e;\n border-color: #eea236;\n}\n.btn-warning:hover,\n.btn-warning:focus,\n.btn-warning.focus,\n.btn-warning:active,\n.btn-warning.active,\n.open > .dropdown-toggle.btn-warning {\n color: #ffffff;\n background-color: #ec971f;\n border-color: #d58512;\n}\n.btn-warning:active,\n.btn-warning.active,\n.open > .dropdown-toggle.btn-warning {\n background-image: none;\n}\n.btn-warning.disabled,\n.btn-warning[disabled],\nfieldset[disabled] .btn-warning,\n.btn-warning.disabled:hover,\n.btn-warning[disabled]:hover,\nfieldset[disabled] .btn-warning:hover,\n.btn-warning.disabled:focus,\n.btn-warning[disabled]:focus,\nfieldset[disabled] .btn-warning:focus,\n.btn-warning.disabled.focus,\n.btn-warning[disabled].focus,\nfieldset[disabled] .btn-warning.focus,\n.btn-warning.disabled:active,\n.btn-warning[disabled]:active,\nfieldset[disabled] .btn-warning:active,\n.btn-warning.disabled.active,\n.btn-warning[disabled].active,\nfieldset[disabled] .btn-warning.active {\n background-color: #f0ad4e;\n border-color: #eea236;\n}\n.btn-warning .badge {\n color: #f0ad4e;\n background-color: #ffffff;\n}\n.btn-danger {\n color: #ffffff;\n background-color: #d9534f;\n border-color: #d43f3a;\n}\n.btn-danger:hover,\n.btn-danger:focus,\n.btn-danger.focus,\n.btn-danger:active,\n.btn-danger.active,\n.open > .dropdown-toggle.btn-danger {\n color: #ffffff;\n background-color: #c9302c;\n border-color: #ac2925;\n}\n.btn-danger:active,\n.btn-danger.active,\n.open > .dropdown-toggle.btn-danger {\n background-image: none;\n}\n.btn-danger.disabled,\n.btn-danger[disabled],\nfieldset[disabled] .btn-danger,\n.btn-danger.disabled:hover,\n.btn-danger[disabled]:hover,\nfieldset[disabled] .btn-danger:hover,\n.btn-danger.disabled:focus,\n.btn-danger[disabled]:focus,\nfieldset[disabled] .btn-danger:focus,\n.btn-danger.disabled.focus,\n.btn-danger[disabled].focus,\nfieldset[disabled] .btn-danger.focus,\n.btn-danger.disabled:active,\n.btn-danger[disabled]:active,\nfieldset[disabled] .btn-danger:active,\n.btn-danger.disabled.active,\n.btn-danger[disabled].active,\nfieldset[disabled] .btn-danger.active {\n background-color: #d9534f;\n border-color: #d43f3a;\n}\n.btn-danger .badge {\n color: #d9534f;\n background-color: #ffffff;\n}\n.btn-link {\n color: #337ab7;\n font-weight: normal;\n border-radius: 0;\n}\n.btn-link,\n.btn-link:active,\n.btn-link.active,\n.btn-link[disabled],\nfieldset[disabled] .btn-link {\n background-color: transparent;\n -webkit-box-shadow: none;\n box-shadow: none;\n}\n.btn-link,\n.btn-link:hover,\n.btn-link:focus,\n.btn-link:active {\n border-color: transparent;\n}\n.btn-link:hover,\n.btn-link:focus {\n color: #23527c;\n text-decoration: underline;\n background-color: transparent;\n}\n.btn-link[disabled]:hover,\nfieldset[disabled] .btn-link:hover,\n.btn-link[disabled]:focus,\nfieldset[disabled] .btn-link:focus {\n color: #777777;\n text-decoration: none;\n}\n.btn-lg,\n.btn-group-lg > .btn {\n padding: 10px 16px;\n font-size: 18px;\n line-height: 1.3333333;\n border-radius: 6px;\n}\n.btn-sm,\n.btn-group-sm > .btn {\n padding: 5px 10px;\n font-size: 12px;\n line-height: 1.5;\n border-radius: 3px;\n}\n.btn-xs,\n.btn-group-xs > .btn {\n padding: 1px 5px;\n font-size: 12px;\n line-height: 1.5;\n border-radius: 3px;\n}\n.btn-block {\n display: block;\n width: 100%;\n}\n.btn-block + .btn-block {\n margin-top: 5px;\n}\ninput[type=\"submit\"].btn-block,\ninput[type=\"reset\"].btn-block,\ninput[type=\"button\"].btn-block {\n width: 100%;\n}\n.fade {\n opacity: 0;\n -webkit-transition: opacity 0.15s linear;\n -o-transition: opacity 0.15s linear;\n transition: opacity 0.15s linear;\n}\n.fade.in {\n opacity: 1;\n}\n.collapse {\n display: none;\n}\n.collapse.in {\n display: block;\n}\ntr.collapse.in {\n display: table-row;\n}\ntbody.collapse.in {\n display: table-row-group;\n}\n.collapsing {\n position: relative;\n height: 0;\n overflow: hidden;\n -webkit-transition-property: height, visibility;\n transition-property: height, visibility;\n -webkit-transition-duration: 0.35s;\n transition-duration: 0.35s;\n -webkit-transition-timing-function: ease;\n transition-timing-function: ease;\n}\n.caret {\n display: inline-block;\n width: 0;\n height: 0;\n margin-left: 2px;\n vertical-align: middle;\n border-top: 4px dashed;\n border-right: 4px solid transparent;\n border-left: 4px solid transparent;\n}\n.dropup,\n.dropdown {\n position: relative;\n}\n.dropdown-toggle:focus {\n outline: 0;\n}\n.dropdown-menu {\n position: absolute;\n top: 100%;\n left: 0;\n z-index: 1000;\n display: none;\n float: left;\n min-width: 160px;\n padding: 5px 0;\n margin: 2px 0 0;\n list-style: none;\n font-size: 14px;\n text-align: left;\n background-color: #ffffff;\n border: 1px solid #cccccc;\n border: 1px solid rgba(0, 0, 0, 0.15);\n border-radius: 4px;\n -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);\n box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);\n background-clip: padding-box;\n}\n.dropdown-menu.pull-right {\n right: 0;\n left: auto;\n}\n.dropdown-menu .divider {\n height: 1px;\n margin: 9px 0;\n overflow: hidden;\n background-color: #e5e5e5;\n}\n.dropdown-menu > li > a {\n display: block;\n padding: 3px 20px;\n clear: both;\n font-weight: normal;\n line-height: 1.42857143;\n color: #333333;\n white-space: nowrap;\n}\n.dropdown-menu > li > a:hover,\n.dropdown-menu > li > a:focus {\n text-decoration: none;\n color: #262626;\n background-color: #f5f5f5;\n}\n.dropdown-menu > .active > a,\n.dropdown-menu > .active > a:hover,\n.dropdown-menu > .active > a:focus {\n color: #ffffff;\n text-decoration: none;\n outline: 0;\n background-color: #337ab7;\n}\n.dropdown-menu > .disabled > a,\n.dropdown-menu > .disabled > a:hover,\n.dropdown-menu > .disabled > a:focus {\n color: #777777;\n}\n.dropdown-menu > .disabled > a:hover,\n.dropdown-menu > .disabled > a:focus {\n text-decoration: none;\n background-color: transparent;\n background-image: none;\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n cursor: not-allowed;\n}\n.open > .dropdown-menu {\n display: block;\n}\n.open > a {\n outline: 0;\n}\n.dropdown-menu-right {\n left: auto;\n right: 0;\n}\n.dropdown-menu-left {\n left: 0;\n right: auto;\n}\n.dropdown-header {\n display: block;\n padding: 3px 20px;\n font-size: 12px;\n line-height: 1.42857143;\n color: #777777;\n white-space: nowrap;\n}\n.dropdown-backdrop {\n position: fixed;\n left: 0;\n right: 0;\n bottom: 0;\n top: 0;\n z-index: 990;\n}\n.pull-right > .dropdown-menu {\n right: 0;\n left: auto;\n}\n.dropup .caret,\n.navbar-fixed-bottom .dropdown .caret {\n border-top: 0;\n border-bottom: 4px solid;\n content: \"\";\n}\n.dropup .dropdown-menu,\n.navbar-fixed-bottom .dropdown .dropdown-menu {\n top: auto;\n bottom: 100%;\n margin-bottom: 2px;\n}\n@media (min-width: 768px) {\n .navbar-right .dropdown-menu {\n left: auto;\n right: 0;\n }\n .navbar-right .dropdown-menu-left {\n left: 0;\n right: auto;\n }\n}\n.btn-group,\n.btn-group-vertical {\n position: relative;\n display: inline-block;\n vertical-align: middle;\n}\n.btn-group > .btn,\n.btn-group-vertical > .btn {\n position: relative;\n float: left;\n}\n.btn-group > .btn:hover,\n.btn-group-vertical > .btn:hover,\n.btn-group > .btn:focus,\n.btn-group-vertical > .btn:focus,\n.btn-group > .btn:active,\n.btn-group-vertical > .btn:active,\n.btn-group > .btn.active,\n.btn-group-vertical > .btn.active {\n z-index: 2;\n}\n.btn-group .btn + .btn,\n.btn-group .btn + .btn-group,\n.btn-group .btn-group + .btn,\n.btn-group .btn-group + .btn-group {\n margin-left: -1px;\n}\n.btn-toolbar {\n margin-left: -5px;\n}\n.btn-toolbar .btn-group,\n.btn-toolbar .input-group {\n float: left;\n}\n.btn-toolbar > .btn,\n.btn-toolbar > .btn-group,\n.btn-toolbar > .input-group {\n margin-left: 5px;\n}\n.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {\n border-radius: 0;\n}\n.btn-group > .btn:first-child {\n margin-left: 0;\n}\n.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {\n border-bottom-right-radius: 0;\n border-top-right-radius: 0;\n}\n.btn-group > .btn:last-child:not(:first-child),\n.btn-group > .dropdown-toggle:not(:first-child) {\n border-bottom-left-radius: 0;\n border-top-left-radius: 0;\n}\n.btn-group > .btn-group {\n float: left;\n}\n.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {\n border-radius: 0;\n}\n.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,\n.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {\n border-bottom-right-radius: 0;\n border-top-right-radius: 0;\n}\n.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {\n border-bottom-left-radius: 0;\n border-top-left-radius: 0;\n}\n.btn-group .dropdown-toggle:active,\n.btn-group.open .dropdown-toggle {\n outline: 0;\n}\n.btn-group > .btn + .dropdown-toggle {\n padding-left: 8px;\n padding-right: 8px;\n}\n.btn-group > .btn-lg + .dropdown-toggle {\n padding-left: 12px;\n padding-right: 12px;\n}\n.btn-group.open .dropdown-toggle {\n -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n}\n.btn-group.open .dropdown-toggle.btn-link {\n -webkit-box-shadow: none;\n box-shadow: none;\n}\n.btn .caret {\n margin-left: 0;\n}\n.btn-lg .caret {\n border-width: 5px 5px 0;\n border-bottom-width: 0;\n}\n.dropup .btn-lg .caret {\n border-width: 0 5px 5px;\n}\n.btn-group-vertical > .btn,\n.btn-group-vertical > .btn-group,\n.btn-group-vertical > .btn-group > .btn {\n display: block;\n float: none;\n width: 100%;\n max-width: 100%;\n}\n.btn-group-vertical > .btn-group > .btn {\n float: none;\n}\n.btn-group-vertical > .btn + .btn,\n.btn-group-vertical > .btn + .btn-group,\n.btn-group-vertical > .btn-group + .btn,\n.btn-group-vertical > .btn-group + .btn-group {\n margin-top: -1px;\n margin-left: 0;\n}\n.btn-group-vertical > .btn:not(:first-child):not(:last-child) {\n border-radius: 0;\n}\n.btn-group-vertical > .btn:first-child:not(:last-child) {\n border-top-right-radius: 4px;\n border-bottom-right-radius: 0;\n border-bottom-left-radius: 0;\n}\n.btn-group-vertical > .btn:last-child:not(:first-child) {\n border-bottom-left-radius: 4px;\n border-top-right-radius: 0;\n border-top-left-radius: 0;\n}\n.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {\n border-radius: 0;\n}\n.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,\n.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {\n border-bottom-right-radius: 0;\n border-bottom-left-radius: 0;\n}\n.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {\n border-top-right-radius: 0;\n border-top-left-radius: 0;\n}\n.btn-group-justified {\n display: table;\n width: 100%;\n table-layout: fixed;\n border-collapse: separate;\n}\n.btn-group-justified > .btn,\n.btn-group-justified > .btn-group {\n float: none;\n display: table-cell;\n width: 1%;\n}\n.btn-group-justified > .btn-group .btn {\n width: 100%;\n}\n.btn-group-justified > .btn-group .dropdown-menu {\n left: auto;\n}\n[data-toggle=\"buttons\"] > .btn input[type=\"radio\"],\n[data-toggle=\"buttons\"] > .btn-group > .btn input[type=\"radio\"],\n[data-toggle=\"buttons\"] > .btn input[type=\"checkbox\"],\n[data-toggle=\"buttons\"] > .btn-group > .btn input[type=\"checkbox\"] {\n position: absolute;\n clip: rect(0, 0, 0, 0);\n pointer-events: none;\n}\n.input-group {\n position: relative;\n display: table;\n border-collapse: separate;\n}\n.input-group[class*=\"col-\"] {\n float: none;\n padding-left: 0;\n padding-right: 0;\n}\n.input-group .form-control {\n position: relative;\n z-index: 2;\n float: left;\n width: 100%;\n margin-bottom: 0;\n}\n.input-group-lg > .form-control,\n.input-group-lg > .input-group-addon,\n.input-group-lg > .input-group-btn > .btn {\n height: 46px;\n padding: 10px 16px;\n font-size: 18px;\n line-height: 1.3333333;\n border-radius: 6px;\n}\nselect.input-group-lg > .form-control,\nselect.input-group-lg > .input-group-addon,\nselect.input-group-lg > .input-group-btn > .btn {\n height: 46px;\n line-height: 46px;\n}\ntextarea.input-group-lg > .form-control,\ntextarea.input-group-lg > .input-group-addon,\ntextarea.input-group-lg > .input-group-btn > .btn,\nselect[multiple].input-group-lg > .form-control,\nselect[multiple].input-group-lg > .input-group-addon,\nselect[multiple].input-group-lg > .input-group-btn > .btn {\n height: auto;\n}\n.input-group-sm > .form-control,\n.input-group-sm > .input-group-addon,\n.input-group-sm > .input-group-btn > .btn {\n height: 30px;\n padding: 5px 10px;\n font-size: 12px;\n line-height: 1.5;\n border-radius: 3px;\n}\nselect.input-group-sm > .form-control,\nselect.input-group-sm > .input-group-addon,\nselect.input-group-sm > .input-group-btn > .btn {\n height: 30px;\n line-height: 30px;\n}\ntextarea.input-group-sm > .form-control,\ntextarea.input-group-sm > .input-group-addon,\ntextarea.input-group-sm > .input-group-btn > .btn,\nselect[multiple].input-group-sm > .form-control,\nselect[multiple].input-group-sm > .input-group-addon,\nselect[multiple].input-group-sm > .input-group-btn > .btn {\n height: auto;\n}\n.input-group-addon,\n.input-group-btn,\n.input-group .form-control {\n display: table-cell;\n}\n.input-group-addon:not(:first-child):not(:last-child),\n.input-group-btn:not(:first-child):not(:last-child),\n.input-group .form-control:not(:first-child):not(:last-child) {\n border-radius: 0;\n}\n.input-group-addon,\n.input-group-btn {\n width: 1%;\n white-space: nowrap;\n vertical-align: middle;\n}\n.input-group-addon {\n padding: 6px 12px;\n font-size: 14px;\n font-weight: normal;\n line-height: 1;\n color: #555555;\n text-align: center;\n background-color: #eeeeee;\n border: 1px solid #cccccc;\n border-radius: 4px;\n}\n.input-group-addon.input-sm {\n padding: 5px 10px;\n font-size: 12px;\n border-radius: 3px;\n}\n.input-group-addon.input-lg {\n padding: 10px 16px;\n font-size: 18px;\n border-radius: 6px;\n}\n.input-group-addon input[type=\"radio\"],\n.input-group-addon input[type=\"checkbox\"] {\n margin-top: 0;\n}\n.input-group .form-control:first-child,\n.input-group-addon:first-child,\n.input-group-btn:first-child > .btn,\n.input-group-btn:first-child > .btn-group > .btn,\n.input-group-btn:first-child > .dropdown-toggle,\n.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),\n.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {\n border-bottom-right-radius: 0;\n border-top-right-radius: 0;\n}\n.input-group-addon:first-child {\n border-right: 0;\n}\n.input-group .form-control:last-child,\n.input-group-addon:last-child,\n.input-group-btn:last-child > .btn,\n.input-group-btn:last-child > .btn-group > .btn,\n.input-group-btn:last-child > .dropdown-toggle,\n.input-group-btn:first-child > .btn:not(:first-child),\n.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {\n border-bottom-left-radius: 0;\n border-top-left-radius: 0;\n}\n.input-group-addon:last-child {\n border-left: 0;\n}\n.input-group-btn {\n position: relative;\n font-size: 0;\n white-space: nowrap;\n}\n.input-group-btn > .btn {\n position: relative;\n}\n.input-group-btn > .btn + .btn {\n margin-left: -1px;\n}\n.input-group-btn > .btn:hover,\n.input-group-btn > .btn:focus,\n.input-group-btn > .btn:active {\n z-index: 2;\n}\n.input-group-btn:first-child > .btn,\n.input-group-btn:first-child > .btn-group {\n margin-right: -1px;\n}\n.input-group-btn:last-child > .btn,\n.input-group-btn:last-child > .btn-group {\n margin-left: -1px;\n}\n.nav {\n margin-bottom: 0;\n padding-left: 0;\n list-style: none;\n}\n.nav > li {\n position: relative;\n display: block;\n}\n.nav > li > a {\n position: relative;\n display: block;\n padding: 10px 15px;\n}\n.nav > li > a:hover,\n.nav > li > a:focus {\n text-decoration: none;\n background-color: #eeeeee;\n}\n.nav > li.disabled > a {\n color: #777777;\n}\n.nav > li.disabled > a:hover,\n.nav > li.disabled > a:focus {\n color: #777777;\n text-decoration: none;\n background-color: transparent;\n cursor: not-allowed;\n}\n.nav .open > a,\n.nav .open > a:hover,\n.nav .open > a:focus {\n background-color: #eeeeee;\n border-color: #337ab7;\n}\n.nav .nav-divider {\n height: 1px;\n margin: 9px 0;\n overflow: hidden;\n background-color: #e5e5e5;\n}\n.nav > li > a > img {\n max-width: none;\n}\n.nav-tabs {\n border-bottom: 1px solid #dddddd;\n}\n.nav-tabs > li {\n float: left;\n margin-bottom: -1px;\n}\n.nav-tabs > li > a {\n margin-right: 2px;\n line-height: 1.42857143;\n border: 1px solid transparent;\n border-radius: 4px 4px 0 0;\n}\n.nav-tabs > li > a:hover {\n border-color: #eeeeee #eeeeee #dddddd;\n}\n.nav-tabs > li.active > a,\n.nav-tabs > li.active > a:hover,\n.nav-tabs > li.active > a:focus {\n color: #555555;\n background-color: #ffffff;\n border: 1px solid #dddddd;\n border-bottom-color: transparent;\n cursor: default;\n}\n.nav-tabs.nav-justified {\n width: 100%;\n border-bottom: 0;\n}\n.nav-tabs.nav-justified > li {\n float: none;\n}\n.nav-tabs.nav-justified > li > a {\n text-align: center;\n margin-bottom: 5px;\n}\n.nav-tabs.nav-justified > .dropdown .dropdown-menu {\n top: auto;\n left: auto;\n}\n@media (min-width: 768px) {\n .nav-tabs.nav-justified > li {\n display: table-cell;\n width: 1%;\n }\n .nav-tabs.nav-justified > li > a {\n margin-bottom: 0;\n }\n}\n.nav-tabs.nav-justified > li > a {\n margin-right: 0;\n border-radius: 4px;\n}\n.nav-tabs.nav-justified > .active > a,\n.nav-tabs.nav-justified > .active > a:hover,\n.nav-tabs.nav-justified > .active > a:focus {\n border: 1px solid #dddddd;\n}\n@media (min-width: 768px) {\n .nav-tabs.nav-justified > li > a {\n border-bottom: 1px solid #dddddd;\n border-radius: 4px 4px 0 0;\n }\n .nav-tabs.nav-justified > .active > a,\n .nav-tabs.nav-justified > .active > a:hover,\n .nav-tabs.nav-justified > .active > a:focus {\n border-bottom-color: #ffffff;\n }\n}\n.nav-pills > li {\n float: left;\n}\n.nav-pills > li > a {\n border-radius: 4px;\n}\n.nav-pills > li + li {\n margin-left: 2px;\n}\n.nav-pills > li.active > a,\n.nav-pills > li.active > a:hover,\n.nav-pills > li.active > a:focus {\n color: #ffffff;\n background-color: #337ab7;\n}\n.nav-stacked > li {\n float: none;\n}\n.nav-stacked > li + li {\n margin-top: 2px;\n margin-left: 0;\n}\n.nav-justified {\n width: 100%;\n}\n.nav-justified > li {\n float: none;\n}\n.nav-justified > li > a {\n text-align: center;\n margin-bottom: 5px;\n}\n.nav-justified > .dropdown .dropdown-menu {\n top: auto;\n left: auto;\n}\n@media (min-width: 768px) {\n .nav-justified > li {\n display: table-cell;\n width: 1%;\n }\n .nav-justified > li > a {\n margin-bottom: 0;\n }\n}\n.nav-tabs-justified {\n border-bottom: 0;\n}\n.nav-tabs-justified > li > a {\n margin-right: 0;\n border-radius: 4px;\n}\n.nav-tabs-justified > .active > a,\n.nav-tabs-justified > .active > a:hover,\n.nav-tabs-justified > .active > a:focus {\n border: 1px solid #dddddd;\n}\n@media (min-width: 768px) {\n .nav-tabs-justified > li > a {\n border-bottom: 1px solid #dddddd;\n border-radius: 4px 4px 0 0;\n }\n .nav-tabs-justified > .active > a,\n .nav-tabs-justified > .active > a:hover,\n .nav-tabs-justified > .active > a:focus {\n border-bottom-color: #ffffff;\n }\n}\n.tab-content > .tab-pane {\n display: none;\n}\n.tab-content > .active {\n display: block;\n}\n.nav-tabs .dropdown-menu {\n margin-top: -1px;\n border-top-right-radius: 0;\n border-top-left-radius: 0;\n}\n.navbar {\n position: relative;\n min-height: 50px;\n margin-bottom: 20px;\n border: 1px solid transparent;\n}\n@media (min-width: 768px) {\n .navbar {\n border-radius: 4px;\n }\n}\n@media (min-width: 768px) {\n .navbar-header {\n float: left;\n }\n}\n.navbar-collapse {\n overflow-x: visible;\n padding-right: 15px;\n padding-left: 15px;\n border-top: 1px solid transparent;\n box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);\n -webkit-overflow-scrolling: touch;\n}\n.navbar-collapse.in {\n overflow-y: auto;\n}\n@media (min-width: 768px) {\n .navbar-collapse {\n width: auto;\n border-top: 0;\n box-shadow: none;\n }\n .navbar-collapse.collapse {\n display: block !important;\n height: auto !important;\n padding-bottom: 0;\n overflow: visible !important;\n }\n .navbar-collapse.in {\n overflow-y: visible;\n }\n .navbar-fixed-top .navbar-collapse,\n .navbar-static-top .navbar-collapse,\n .navbar-fixed-bottom .navbar-collapse {\n padding-left: 0;\n padding-right: 0;\n }\n}\n.navbar-fixed-top .navbar-collapse,\n.navbar-fixed-bottom .navbar-collapse {\n max-height: 340px;\n}\n@media (max-device-width: 480px) and (orientation: landscape) {\n .navbar-fixed-top .navbar-collapse,\n .navbar-fixed-bottom .navbar-collapse {\n max-height: 200px;\n }\n}\n.container > .navbar-header,\n.container-fluid > .navbar-header,\n.container > .navbar-collapse,\n.container-fluid > .navbar-collapse {\n margin-right: -15px;\n margin-left: -15px;\n}\n@media (min-width: 768px) {\n .container > .navbar-header,\n .container-fluid > .navbar-header,\n .container > .navbar-collapse,\n .container-fluid > .navbar-collapse {\n margin-right: 0;\n margin-left: 0;\n }\n}\n.navbar-static-top {\n z-index: 1000;\n border-width: 0 0 1px;\n}\n@media (min-width: 768px) {\n .navbar-static-top {\n border-radius: 0;\n }\n}\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n position: fixed;\n right: 0;\n left: 0;\n z-index: 1030;\n}\n@media (min-width: 768px) {\n .navbar-fixed-top,\n .navbar-fixed-bottom {\n border-radius: 0;\n }\n}\n.navbar-fixed-top {\n top: 0;\n border-width: 0 0 1px;\n}\n.navbar-fixed-bottom {\n bottom: 0;\n margin-bottom: 0;\n border-width: 1px 0 0;\n}\n.navbar-brand {\n float: left;\n padding: 15px 15px;\n font-size: 18px;\n line-height: 20px;\n height: 50px;\n}\n.navbar-brand:hover,\n.navbar-brand:focus {\n text-decoration: none;\n}\n.navbar-brand > img {\n display: block;\n}\n@media (min-width: 768px) {\n .navbar > .container .navbar-brand,\n .navbar > .container-fluid .navbar-brand {\n margin-left: -15px;\n }\n}\n.navbar-toggle {\n position: relative;\n float: right;\n margin-right: 15px;\n padding: 9px 10px;\n margin-top: 8px;\n margin-bottom: 8px;\n background-color: transparent;\n background-image: none;\n border: 1px solid transparent;\n border-radius: 4px;\n}\n.navbar-toggle:focus {\n outline: 0;\n}\n.navbar-toggle .icon-bar {\n display: block;\n width: 22px;\n height: 2px;\n border-radius: 1px;\n}\n.navbar-toggle .icon-bar + .icon-bar {\n margin-top: 4px;\n}\n@media (min-width: 768px) {\n .navbar-toggle {\n display: none;\n }\n}\n.navbar-nav {\n margin: 7.5px -15px;\n}\n.navbar-nav > li > a {\n padding-top: 10px;\n padding-bottom: 10px;\n line-height: 20px;\n}\n@media (max-width: 767px) {\n .navbar-nav .open .dropdown-menu {\n position: static;\n float: none;\n width: auto;\n margin-top: 0;\n background-color: transparent;\n border: 0;\n box-shadow: none;\n }\n .navbar-nav .open .dropdown-menu > li > a,\n .navbar-nav .open .dropdown-menu .dropdown-header {\n padding: 5px 15px 5px 25px;\n }\n .navbar-nav .open .dropdown-menu > li > a {\n line-height: 20px;\n }\n .navbar-nav .open .dropdown-menu > li > a:hover,\n .navbar-nav .open .dropdown-menu > li > a:focus {\n background-image: none;\n }\n}\n@media (min-width: 768px) {\n .navbar-nav {\n float: left;\n margin: 0;\n }\n .navbar-nav > li {\n float: left;\n }\n .navbar-nav > li > a {\n padding-top: 15px;\n padding-bottom: 15px;\n }\n}\n.navbar-form {\n margin-left: -15px;\n margin-right: -15px;\n padding: 10px 15px;\n border-top: 1px solid transparent;\n border-bottom: 1px solid transparent;\n -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);\n box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);\n margin-top: 8px;\n margin-bottom: 8px;\n}\n@media (min-width: 768px) {\n .navbar-form .form-group {\n display: inline-block;\n margin-bottom: 0;\n vertical-align: middle;\n }\n .navbar-form .form-control {\n display: inline-block;\n width: auto;\n vertical-align: middle;\n }\n .navbar-form .form-control-static {\n display: inline-block;\n }\n .navbar-form .input-group {\n display: inline-table;\n vertical-align: middle;\n }\n .navbar-form .input-group .input-group-addon,\n .navbar-form .input-group .input-group-btn,\n .navbar-form .input-group .form-control {\n width: auto;\n }\n .navbar-form .input-group > .form-control {\n width: 100%;\n }\n .navbar-form .control-label {\n margin-bottom: 0;\n vertical-align: middle;\n }\n .navbar-form .radio,\n .navbar-form .checkbox {\n display: inline-block;\n margin-top: 0;\n margin-bottom: 0;\n vertical-align: middle;\n }\n .navbar-form .radio label,\n .navbar-form .checkbox label {\n padding-left: 0;\n }\n .navbar-form .radio input[type=\"radio\"],\n .navbar-form .checkbox input[type=\"checkbox\"] {\n position: relative;\n margin-left: 0;\n }\n .navbar-form .has-feedback .form-control-feedback {\n top: 0;\n }\n}\n@media (max-width: 767px) {\n .navbar-form .form-group {\n margin-bottom: 5px;\n }\n .navbar-form .form-group:last-child {\n margin-bottom: 0;\n }\n}\n@media (min-width: 768px) {\n .navbar-form {\n width: auto;\n border: 0;\n margin-left: 0;\n margin-right: 0;\n padding-top: 0;\n padding-bottom: 0;\n -webkit-box-shadow: none;\n box-shadow: none;\n }\n}\n.navbar-nav > li > .dropdown-menu {\n margin-top: 0;\n border-top-right-radius: 0;\n border-top-left-radius: 0;\n}\n.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {\n margin-bottom: 0;\n border-top-right-radius: 4px;\n border-top-left-radius: 4px;\n border-bottom-right-radius: 0;\n border-bottom-left-radius: 0;\n}\n.navbar-btn {\n margin-top: 8px;\n margin-bottom: 8px;\n}\n.navbar-btn.btn-sm {\n margin-top: 10px;\n margin-bottom: 10px;\n}\n.navbar-btn.btn-xs {\n margin-top: 14px;\n margin-bottom: 14px;\n}\n.navbar-text {\n margin-top: 15px;\n margin-bottom: 15px;\n}\n@media (min-width: 768px) {\n .navbar-text {\n float: left;\n margin-left: 15px;\n margin-right: 15px;\n }\n}\n@media (min-width: 768px) {\n .navbar-left {\n float: left !important;\n }\n .navbar-right {\n float: right !important;\n margin-right: -15px;\n }\n .navbar-right ~ .navbar-right {\n margin-right: 0;\n }\n}\n.navbar-default {\n background-color: #f8f8f8;\n border-color: #e7e7e7;\n}\n.navbar-default .navbar-brand {\n color: #777777;\n}\n.navbar-default .navbar-brand:hover,\n.navbar-default .navbar-brand:focus {\n color: #5e5e5e;\n background-color: transparent;\n}\n.navbar-default .navbar-text {\n color: #777777;\n}\n.navbar-default .navbar-nav > li > a {\n color: #777777;\n}\n.navbar-default .navbar-nav > li > a:hover,\n.navbar-default .navbar-nav > li > a:focus {\n color: #333333;\n background-color: transparent;\n}\n.navbar-default .navbar-nav > .active > a,\n.navbar-default .navbar-nav > .active > a:hover,\n.navbar-default .navbar-nav > .active > a:focus {\n color: #555555;\n background-color: #e7e7e7;\n}\n.navbar-default .navbar-nav > .disabled > a,\n.navbar-default .navbar-nav > .disabled > a:hover,\n.navbar-default .navbar-nav > .disabled > a:focus {\n color: #cccccc;\n background-color: transparent;\n}\n.navbar-default .navbar-toggle {\n border-color: #dddddd;\n}\n.navbar-default .navbar-toggle:hover,\n.navbar-default .navbar-toggle:focus {\n background-color: #dddddd;\n}\n.navbar-default .navbar-toggle .icon-bar {\n background-color: #888888;\n}\n.navbar-default .navbar-collapse,\n.navbar-default .navbar-form {\n border-color: #e7e7e7;\n}\n.navbar-default .navbar-nav > .open > a,\n.navbar-default .navbar-nav > .open > a:hover,\n.navbar-default .navbar-nav > .open > a:focus {\n background-color: #e7e7e7;\n color: #555555;\n}\n@media (max-width: 767px) {\n .navbar-default .navbar-nav .open .dropdown-menu > li > a {\n color: #777777;\n }\n .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,\n .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {\n color: #333333;\n background-color: transparent;\n }\n .navbar-default .navbar-nav .open .dropdown-menu > .active > a,\n .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,\n .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {\n color: #555555;\n background-color: #e7e7e7;\n }\n .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,\n .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,\n .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {\n color: #cccccc;\n background-color: transparent;\n }\n}\n.navbar-default .navbar-link {\n color: #777777;\n}\n.navbar-default .navbar-link:hover {\n color: #333333;\n}\n.navbar-default .btn-link {\n color: #777777;\n}\n.navbar-default .btn-link:hover,\n.navbar-default .btn-link:focus {\n color: #333333;\n}\n.navbar-default .btn-link[disabled]:hover,\nfieldset[disabled] .navbar-default .btn-link:hover,\n.navbar-default .btn-link[disabled]:focus,\nfieldset[disabled] .navbar-default .btn-link:focus {\n color: #cccccc;\n}\n.navbar-inverse {\n background-color: #222222;\n border-color: #080808;\n}\n.navbar-inverse .navbar-brand {\n color: #9d9d9d;\n}\n.navbar-inverse .navbar-brand:hover,\n.navbar-inverse .navbar-brand:focus {\n color: #ffffff;\n background-color: transparent;\n}\n.navbar-inverse .navbar-text {\n color: #9d9d9d;\n}\n.navbar-inverse .navbar-nav > li > a {\n color: #9d9d9d;\n}\n.navbar-inverse .navbar-nav > li > a:hover,\n.navbar-inverse .navbar-nav > li > a:focus {\n color: #ffffff;\n background-color: transparent;\n}\n.navbar-inverse .navbar-nav > .active > a,\n.navbar-inverse .navbar-nav > .active > a:hover,\n.navbar-inverse .navbar-nav > .active > a:focus {\n color: #ffffff;\n background-color: #080808;\n}\n.navbar-inverse .navbar-nav > .disabled > a,\n.navbar-inverse .navbar-nav > .disabled > a:hover,\n.navbar-inverse .navbar-nav > .disabled > a:focus {\n color: #444444;\n background-color: transparent;\n}\n.navbar-inverse .navbar-toggle {\n border-color: #333333;\n}\n.navbar-inverse .navbar-toggle:hover,\n.navbar-inverse .navbar-toggle:focus {\n background-color: #333333;\n}\n.navbar-inverse .navbar-toggle .icon-bar {\n background-color: #ffffff;\n}\n.navbar-inverse .navbar-collapse,\n.navbar-inverse .navbar-form {\n border-color: #101010;\n}\n.navbar-inverse .navbar-nav > .open > a,\n.navbar-inverse .navbar-nav > .open > a:hover,\n.navbar-inverse .navbar-nav > .open > a:focus {\n background-color: #080808;\n color: #ffffff;\n}\n@media (max-width: 767px) {\n .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {\n border-color: #080808;\n }\n .navbar-inverse .navbar-nav .open .dropdown-menu .divider {\n background-color: #080808;\n }\n .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {\n color: #9d9d9d;\n }\n .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,\n .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {\n color: #ffffff;\n background-color: transparent;\n }\n .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,\n .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,\n .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {\n color: #ffffff;\n background-color: #080808;\n }\n .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,\n .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,\n .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {\n color: #444444;\n background-color: transparent;\n }\n}\n.navbar-inverse .navbar-link {\n color: #9d9d9d;\n}\n.navbar-inverse .navbar-link:hover {\n color: #ffffff;\n}\n.navbar-inverse .btn-link {\n color: #9d9d9d;\n}\n.navbar-inverse .btn-link:hover,\n.navbar-inverse .btn-link:focus {\n color: #ffffff;\n}\n.navbar-inverse .btn-link[disabled]:hover,\nfieldset[disabled] .navbar-inverse .btn-link:hover,\n.navbar-inverse .btn-link[disabled]:focus,\nfieldset[disabled] .navbar-inverse .btn-link:focus {\n color: #444444;\n}\n.breadcrumb {\n padding: 8px 15px;\n margin-bottom: 20px;\n list-style: none;\n background-color: #f5f5f5;\n border-radius: 4px;\n}\n.breadcrumb > li {\n display: inline-block;\n}\n.breadcrumb > li + li:before {\n content: \"/\\00a0\";\n padding: 0 5px;\n color: #cccccc;\n}\n.breadcrumb > .active {\n color: #777777;\n}\n.pagination {\n display: inline-block;\n padding-left: 0;\n margin: 20px 0;\n border-radius: 4px;\n}\n.pagination > li {\n display: inline;\n}\n.pagination > li > a,\n.pagination > li > span {\n position: relative;\n float: left;\n padding: 6px 12px;\n line-height: 1.42857143;\n text-decoration: none;\n color: #337ab7;\n background-color: #ffffff;\n border: 1px solid #dddddd;\n margin-left: -1px;\n}\n.pagination > li:first-child > a,\n.pagination > li:first-child > span {\n margin-left: 0;\n border-bottom-left-radius: 4px;\n border-top-left-radius: 4px;\n}\n.pagination > li:last-child > a,\n.pagination > li:last-child > span {\n border-bottom-right-radius: 4px;\n border-top-right-radius: 4px;\n}\n.pagination > li > a:hover,\n.pagination > li > span:hover,\n.pagination > li > a:focus,\n.pagination > li > span:focus {\n color: #23527c;\n background-color: #eeeeee;\n border-color: #dddddd;\n}\n.pagination > .active > a,\n.pagination > .active > span,\n.pagination > .active > a:hover,\n.pagination > .active > span:hover,\n.pagination > .active > a:focus,\n.pagination > .active > span:focus {\n z-index: 2;\n color: #ffffff;\n background-color: #337ab7;\n border-color: #337ab7;\n cursor: default;\n}\n.pagination > .disabled > span,\n.pagination > .disabled > span:hover,\n.pagination > .disabled > span:focus,\n.pagination > .disabled > a,\n.pagination > .disabled > a:hover,\n.pagination > .disabled > a:focus {\n color: #777777;\n background-color: #ffffff;\n border-color: #dddddd;\n cursor: not-allowed;\n}\n.pagination-lg > li > a,\n.pagination-lg > li > span {\n padding: 10px 16px;\n font-size: 18px;\n}\n.pagination-lg > li:first-child > a,\n.pagination-lg > li:first-child > span {\n border-bottom-left-radius: 6px;\n border-top-left-radius: 6px;\n}\n.pagination-lg > li:last-child > a,\n.pagination-lg > li:last-child > span {\n border-bottom-right-radius: 6px;\n border-top-right-radius: 6px;\n}\n.pagination-sm > li > a,\n.pagination-sm > li > span {\n padding: 5px 10px;\n font-size: 12px;\n}\n.pagination-sm > li:first-child > a,\n.pagination-sm > li:first-child > span {\n border-bottom-left-radius: 3px;\n border-top-left-radius: 3px;\n}\n.pagination-sm > li:last-child > a,\n.pagination-sm > li:last-child > span {\n border-bottom-right-radius: 3px;\n border-top-right-radius: 3px;\n}\n.pager {\n padding-left: 0;\n margin: 20px 0;\n list-style: none;\n text-align: center;\n}\n.pager li {\n display: inline;\n}\n.pager li > a,\n.pager li > span {\n display: inline-block;\n padding: 5px 14px;\n background-color: #ffffff;\n border: 1px solid #dddddd;\n border-radius: 15px;\n}\n.pager li > a:hover,\n.pager li > a:focus {\n text-decoration: none;\n background-color: #eeeeee;\n}\n.pager .next > a,\n.pager .next > span {\n float: right;\n}\n.pager .previous > a,\n.pager .previous > span {\n float: left;\n}\n.pager .disabled > a,\n.pager .disabled > a:hover,\n.pager .disabled > a:focus,\n.pager .disabled > span {\n color: #777777;\n background-color: #ffffff;\n cursor: not-allowed;\n}\n.label {\n display: inline;\n padding: .2em .6em .3em;\n font-size: 75%;\n font-weight: bold;\n line-height: 1;\n color: #ffffff;\n text-align: center;\n white-space: nowrap;\n vertical-align: baseline;\n border-radius: .25em;\n}\na.label:hover,\na.label:focus {\n color: #ffffff;\n text-decoration: none;\n cursor: pointer;\n}\n.label:empty {\n display: none;\n}\n.btn .label {\n position: relative;\n top: -1px;\n}\n.label-default {\n background-color: #777777;\n}\n.label-default[href]:hover,\n.label-default[href]:focus {\n background-color: #5e5e5e;\n}\n.label-primary {\n background-color: #337ab7;\n}\n.label-primary[href]:hover,\n.label-primary[href]:focus {\n background-color: #286090;\n}\n.label-success {\n background-color: #5cb85c;\n}\n.label-success[href]:hover,\n.label-success[href]:focus {\n background-color: #449d44;\n}\n.label-info {\n background-color: #5bc0de;\n}\n.label-info[href]:hover,\n.label-info[href]:focus {\n background-color: #31b0d5;\n}\n.label-warning {\n background-color: #f0ad4e;\n}\n.label-warning[href]:hover,\n.label-warning[href]:focus {\n background-color: #ec971f;\n}\n.label-danger {\n background-color: #d9534f;\n}\n.label-danger[href]:hover,\n.label-danger[href]:focus {\n background-color: #c9302c;\n}\n.badge {\n display: inline-block;\n min-width: 10px;\n padding: 3px 7px;\n font-size: 12px;\n font-weight: bold;\n color: #ffffff;\n line-height: 1;\n vertical-align: baseline;\n white-space: nowrap;\n text-align: center;\n background-color: #777777;\n border-radius: 10px;\n}\n.badge:empty {\n display: none;\n}\n.btn .badge {\n position: relative;\n top: -1px;\n}\n.btn-xs .badge,\n.btn-group-xs > .btn .badge {\n top: 0;\n padding: 1px 5px;\n}\na.badge:hover,\na.badge:focus {\n color: #ffffff;\n text-decoration: none;\n cursor: pointer;\n}\n.list-group-item.active > .badge,\n.nav-pills > .active > a > .badge {\n color: #337ab7;\n background-color: #ffffff;\n}\n.list-group-item > .badge {\n float: right;\n}\n.list-group-item > .badge + .badge {\n margin-right: 5px;\n}\n.nav-pills > li > a > .badge {\n margin-left: 3px;\n}\n.jumbotron {\n padding: 30px 15px;\n margin-bottom: 30px;\n color: inherit;\n background-color: #eeeeee;\n}\n.jumbotron h1,\n.jumbotron .h1 {\n color: inherit;\n}\n.jumbotron p {\n margin-bottom: 15px;\n font-size: 21px;\n font-weight: 200;\n}\n.jumbotron > hr {\n border-top-color: #d5d5d5;\n}\n.container .jumbotron,\n.container-fluid .jumbotron {\n border-radius: 6px;\n}\n.jumbotron .container {\n max-width: 100%;\n}\n@media screen and (min-width: 768px) {\n .jumbotron {\n padding: 48px 0;\n }\n .container .jumbotron,\n .container-fluid .jumbotron {\n padding-left: 60px;\n padding-right: 60px;\n }\n .jumbotron h1,\n .jumbotron .h1 {\n font-size: 63px;\n }\n}\n.thumbnail {\n display: block;\n padding: 4px;\n margin-bottom: 20px;\n line-height: 1.42857143;\n background-color: #ffffff;\n border: 1px solid #dddddd;\n border-radius: 4px;\n -webkit-transition: border 0.2s ease-in-out;\n -o-transition: border 0.2s ease-in-out;\n transition: border 0.2s ease-in-out;\n}\n.thumbnail > img,\n.thumbnail a > img {\n margin-left: auto;\n margin-right: auto;\n}\na.thumbnail:hover,\na.thumbnail:focus,\na.thumbnail.active {\n border-color: #337ab7;\n}\n.thumbnail .caption {\n padding: 9px;\n color: #333333;\n}\n.alert {\n padding: 15px;\n margin-bottom: 20px;\n border: 1px solid transparent;\n border-radius: 4px;\n}\n.alert h4 {\n margin-top: 0;\n color: inherit;\n}\n.alert .alert-link {\n font-weight: bold;\n}\n.alert > p,\n.alert > ul {\n margin-bottom: 0;\n}\n.alert > p + p {\n margin-top: 5px;\n}\n.alert-dismissable,\n.alert-dismissible {\n padding-right: 35px;\n}\n.alert-dismissable .close,\n.alert-dismissible .close {\n position: relative;\n top: -2px;\n right: -21px;\n color: inherit;\n}\n.alert-success {\n background-color: #dff0d8;\n border-color: #d6e9c6;\n color: #3c763d;\n}\n.alert-success hr {\n border-top-color: #c9e2b3;\n}\n.alert-success .alert-link {\n color: #2b542c;\n}\n.alert-info {\n background-color: #d9edf7;\n border-color: #bce8f1;\n color: #31708f;\n}\n.alert-info hr {\n border-top-color: #a6e1ec;\n}\n.alert-info .alert-link {\n color: #245269;\n}\n.alert-warning {\n background-color: #fcf8e3;\n border-color: #faebcc;\n color: #8a6d3b;\n}\n.alert-warning hr {\n border-top-color: #f7e1b5;\n}\n.alert-warning .alert-link {\n color: #66512c;\n}\n.alert-danger {\n background-color: #f2dede;\n border-color: #ebccd1;\n color: #a94442;\n}\n.alert-danger hr {\n border-top-color: #e4b9c0;\n}\n.alert-danger .alert-link {\n color: #843534;\n}\n@-webkit-keyframes progress-bar-stripes {\n from {\n background-position: 40px 0;\n }\n to {\n background-position: 0 0;\n }\n}\n@keyframes progress-bar-stripes {\n from {\n background-position: 40px 0;\n }\n to {\n background-position: 0 0;\n }\n}\n.progress {\n overflow: hidden;\n height: 20px;\n margin-bottom: 20px;\n background-color: #f5f5f5;\n border-radius: 4px;\n -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);\n box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);\n}\n.progress-bar {\n float: left;\n width: 0%;\n height: 100%;\n font-size: 12px;\n line-height: 20px;\n color: #ffffff;\n text-align: center;\n background-color: #337ab7;\n -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);\n box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);\n -webkit-transition: width 0.6s ease;\n -o-transition: width 0.6s ease;\n transition: width 0.6s ease;\n}\n.progress-striped .progress-bar,\n.progress-bar-striped {\n 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);\n background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n 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);\n background-size: 40px 40px;\n}\n.progress.active .progress-bar,\n.progress-bar.active {\n -webkit-animation: progress-bar-stripes 2s linear infinite;\n -o-animation: progress-bar-stripes 2s linear infinite;\n animation: progress-bar-stripes 2s linear infinite;\n}\n.progress-bar-success {\n background-color: #5cb85c;\n}\n.progress-striped .progress-bar-success {\n 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);\n background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n 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);\n}\n.progress-bar-info {\n background-color: #5bc0de;\n}\n.progress-striped .progress-bar-info {\n 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);\n background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n 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);\n}\n.progress-bar-warning {\n background-color: #f0ad4e;\n}\n.progress-striped .progress-bar-warning {\n 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);\n background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n 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);\n}\n.progress-bar-danger {\n background-color: #d9534f;\n}\n.progress-striped .progress-bar-danger {\n 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);\n background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n 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);\n}\n.media {\n margin-top: 15px;\n}\n.media:first-child {\n margin-top: 0;\n}\n.media,\n.media-body {\n zoom: 1;\n overflow: hidden;\n}\n.media-body {\n width: 10000px;\n}\n.media-object {\n display: block;\n}\n.media-right,\n.media > .pull-right {\n padding-left: 10px;\n}\n.media-left,\n.media > .pull-left {\n padding-right: 10px;\n}\n.media-left,\n.media-right,\n.media-body {\n display: table-cell;\n vertical-align: top;\n}\n.media-middle {\n vertical-align: middle;\n}\n.media-bottom {\n vertical-align: bottom;\n}\n.media-heading {\n margin-top: 0;\n margin-bottom: 5px;\n}\n.media-list {\n padding-left: 0;\n list-style: none;\n}\n.list-group {\n margin-bottom: 20px;\n padding-left: 0;\n}\n.list-group-item {\n position: relative;\n display: block;\n padding: 10px 15px;\n margin-bottom: -1px;\n background-color: #ffffff;\n border: 1px solid #dddddd;\n}\n.list-group-item:first-child {\n border-top-right-radius: 4px;\n border-top-left-radius: 4px;\n}\n.list-group-item:last-child {\n margin-bottom: 0;\n border-bottom-right-radius: 4px;\n border-bottom-left-radius: 4px;\n}\na.list-group-item {\n color: #555555;\n}\na.list-group-item .list-group-item-heading {\n color: #333333;\n}\na.list-group-item:hover,\na.list-group-item:focus {\n text-decoration: none;\n color: #555555;\n background-color: #f5f5f5;\n}\n.list-group-item.disabled,\n.list-group-item.disabled:hover,\n.list-group-item.disabled:focus {\n background-color: #eeeeee;\n color: #777777;\n cursor: not-allowed;\n}\n.list-group-item.disabled .list-group-item-heading,\n.list-group-item.disabled:hover .list-group-item-heading,\n.list-group-item.disabled:focus .list-group-item-heading {\n color: inherit;\n}\n.list-group-item.disabled .list-group-item-text,\n.list-group-item.disabled:hover .list-group-item-text,\n.list-group-item.disabled:focus .list-group-item-text {\n color: #777777;\n}\n.list-group-item.active,\n.list-group-item.active:hover,\n.list-group-item.active:focus {\n z-index: 2;\n color: #ffffff;\n background-color: #337ab7;\n border-color: #337ab7;\n}\n.list-group-item.active .list-group-item-heading,\n.list-group-item.active:hover .list-group-item-heading,\n.list-group-item.active:focus .list-group-item-heading,\n.list-group-item.active .list-group-item-heading > small,\n.list-group-item.active:hover .list-group-item-heading > small,\n.list-group-item.active:focus .list-group-item-heading > small,\n.list-group-item.active .list-group-item-heading > .small,\n.list-group-item.active:hover .list-group-item-heading > .small,\n.list-group-item.active:focus .list-group-item-heading > .small {\n color: inherit;\n}\n.list-group-item.active .list-group-item-text,\n.list-group-item.active:hover .list-group-item-text,\n.list-group-item.active:focus .list-group-item-text {\n color: #c7ddef;\n}\n.list-group-item-success {\n color: #3c763d;\n background-color: #dff0d8;\n}\na.list-group-item-success {\n color: #3c763d;\n}\na.list-group-item-success .list-group-item-heading {\n color: inherit;\n}\na.list-group-item-success:hover,\na.list-group-item-success:focus {\n color: #3c763d;\n background-color: #d0e9c6;\n}\na.list-group-item-success.active,\na.list-group-item-success.active:hover,\na.list-group-item-success.active:focus {\n color: #fff;\n background-color: #3c763d;\n border-color: #3c763d;\n}\n.list-group-item-info {\n color: #31708f;\n background-color: #d9edf7;\n}\na.list-group-item-info {\n color: #31708f;\n}\na.list-group-item-info .list-group-item-heading {\n color: inherit;\n}\na.list-group-item-info:hover,\na.list-group-item-info:focus {\n color: #31708f;\n background-color: #c4e3f3;\n}\na.list-group-item-info.active,\na.list-group-item-info.active:hover,\na.list-group-item-info.active:focus {\n color: #fff;\n background-color: #31708f;\n border-color: #31708f;\n}\n.list-group-item-warning {\n color: #8a6d3b;\n background-color: #fcf8e3;\n}\na.list-group-item-warning {\n color: #8a6d3b;\n}\na.list-group-item-warning .list-group-item-heading {\n color: inherit;\n}\na.list-group-item-warning:hover,\na.list-group-item-warning:focus {\n color: #8a6d3b;\n background-color: #faf2cc;\n}\na.list-group-item-warning.active,\na.list-group-item-warning.active:hover,\na.list-group-item-warning.active:focus {\n color: #fff;\n background-color: #8a6d3b;\n border-color: #8a6d3b;\n}\n.list-group-item-danger {\n color: #a94442;\n background-color: #f2dede;\n}\na.list-group-item-danger {\n color: #a94442;\n}\na.list-group-item-danger .list-group-item-heading {\n color: inherit;\n}\na.list-group-item-danger:hover,\na.list-group-item-danger:focus {\n color: #a94442;\n background-color: #ebcccc;\n}\na.list-group-item-danger.active,\na.list-group-item-danger.active:hover,\na.list-group-item-danger.active:focus {\n color: #fff;\n background-color: #a94442;\n border-color: #a94442;\n}\n.list-group-item-heading {\n margin-top: 0;\n margin-bottom: 5px;\n}\n.list-group-item-text {\n margin-bottom: 0;\n line-height: 1.3;\n}\n.panel {\n margin-bottom: 20px;\n background-color: #ffffff;\n border: 1px solid transparent;\n border-radius: 4px;\n -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);\n box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);\n}\n.panel-body {\n padding: 15px;\n}\n.panel-heading {\n padding: 10px 15px;\n border-bottom: 1px solid transparent;\n border-top-right-radius: 3px;\n border-top-left-radius: 3px;\n}\n.panel-heading > .dropdown .dropdown-toggle {\n color: inherit;\n}\n.panel-title {\n margin-top: 0;\n margin-bottom: 0;\n font-size: 16px;\n color: inherit;\n}\n.panel-title > a,\n.panel-title > small,\n.panel-title > .small,\n.panel-title > small > a,\n.panel-title > .small > a {\n color: inherit;\n}\n.panel-footer {\n padding: 10px 15px;\n background-color: #f5f5f5;\n border-top: 1px solid #dddddd;\n border-bottom-right-radius: 3px;\n border-bottom-left-radius: 3px;\n}\n.panel > .list-group,\n.panel > .panel-collapse > .list-group {\n margin-bottom: 0;\n}\n.panel > .list-group .list-group-item,\n.panel > .panel-collapse > .list-group .list-group-item {\n border-width: 1px 0;\n border-radius: 0;\n}\n.panel > .list-group:first-child .list-group-item:first-child,\n.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {\n border-top: 0;\n border-top-right-radius: 3px;\n border-top-left-radius: 3px;\n}\n.panel > .list-group:last-child .list-group-item:last-child,\n.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {\n border-bottom: 0;\n border-bottom-right-radius: 3px;\n border-bottom-left-radius: 3px;\n}\n.panel-heading + .list-group .list-group-item:first-child {\n border-top-width: 0;\n}\n.list-group + .panel-footer {\n border-top-width: 0;\n}\n.panel > .table,\n.panel > .table-responsive > .table,\n.panel > .panel-collapse > .table {\n margin-bottom: 0;\n}\n.panel > .table caption,\n.panel > .table-responsive > .table caption,\n.panel > .panel-collapse > .table caption {\n padding-left: 15px;\n padding-right: 15px;\n}\n.panel > .table:first-child,\n.panel > .table-responsive:first-child > .table:first-child {\n border-top-right-radius: 3px;\n border-top-left-radius: 3px;\n}\n.panel > .table:first-child > thead:first-child > tr:first-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {\n border-top-left-radius: 3px;\n border-top-right-radius: 3px;\n}\n.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,\n.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {\n border-top-left-radius: 3px;\n}\n.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,\n.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {\n border-top-right-radius: 3px;\n}\n.panel > .table:last-child,\n.panel > .table-responsive:last-child > .table:last-child {\n border-bottom-right-radius: 3px;\n border-bottom-left-radius: 3px;\n}\n.panel > .table:last-child > tbody:last-child > tr:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {\n border-bottom-left-radius: 3px;\n border-bottom-right-radius: 3px;\n}\n.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,\n.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {\n border-bottom-left-radius: 3px;\n}\n.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,\n.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {\n border-bottom-right-radius: 3px;\n}\n.panel > .panel-body + .table,\n.panel > .panel-body + .table-responsive,\n.panel > .table + .panel-body,\n.panel > .table-responsive + .panel-body {\n border-top: 1px solid #dddddd;\n}\n.panel > .table > tbody:first-child > tr:first-child th,\n.panel > .table > tbody:first-child > tr:first-child td {\n border-top: 0;\n}\n.panel > .table-bordered,\n.panel > .table-responsive > .table-bordered {\n border: 0;\n}\n.panel > .table-bordered > thead > tr > th:first-child,\n.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,\n.panel > .table-bordered > tbody > tr > th:first-child,\n.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,\n.panel > .table-bordered > tfoot > tr > th:first-child,\n.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,\n.panel > .table-bordered > thead > tr > td:first-child,\n.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,\n.panel > .table-bordered > tbody > tr > td:first-child,\n.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,\n.panel > .table-bordered > tfoot > tr > td:first-child,\n.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {\n border-left: 0;\n}\n.panel > .table-bordered > thead > tr > th:last-child,\n.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,\n.panel > .table-bordered > tbody > tr > th:last-child,\n.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,\n.panel > .table-bordered > tfoot > tr > th:last-child,\n.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,\n.panel > .table-bordered > thead > tr > td:last-child,\n.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,\n.panel > .table-bordered > tbody > tr > td:last-child,\n.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,\n.panel > .table-bordered > tfoot > tr > td:last-child,\n.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {\n border-right: 0;\n}\n.panel > .table-bordered > thead > tr:first-child > td,\n.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,\n.panel > .table-bordered > tbody > tr:first-child > td,\n.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,\n.panel > .table-bordered > thead > tr:first-child > th,\n.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,\n.panel > .table-bordered > tbody > tr:first-child > th,\n.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {\n border-bottom: 0;\n}\n.panel > .table-bordered > tbody > tr:last-child > td,\n.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,\n.panel > .table-bordered > tfoot > tr:last-child > td,\n.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,\n.panel > .table-bordered > tbody > tr:last-child > th,\n.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,\n.panel > .table-bordered > tfoot > tr:last-child > th,\n.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {\n border-bottom: 0;\n}\n.panel > .table-responsive {\n border: 0;\n margin-bottom: 0;\n}\n.panel-group {\n margin-bottom: 20px;\n}\n.panel-group .panel {\n margin-bottom: 0;\n border-radius: 4px;\n}\n.panel-group .panel + .panel {\n margin-top: 5px;\n}\n.panel-group .panel-heading {\n border-bottom: 0;\n}\n.panel-group .panel-heading + .panel-collapse > .panel-body,\n.panel-group .panel-heading + .panel-collapse > .list-group {\n border-top: 1px solid #dddddd;\n}\n.panel-group .panel-footer {\n border-top: 0;\n}\n.panel-group .panel-footer + .panel-collapse .panel-body {\n border-bottom: 1px solid #dddddd;\n}\n.panel-default {\n border-color: #dddddd;\n}\n.panel-default > .panel-heading {\n color: #333333;\n background-color: #f5f5f5;\n border-color: #dddddd;\n}\n.panel-default > .panel-heading + .panel-collapse > .panel-body {\n border-top-color: #dddddd;\n}\n.panel-default > .panel-heading .badge {\n color: #f5f5f5;\n background-color: #333333;\n}\n.panel-default > .panel-footer + .panel-collapse > .panel-body {\n border-bottom-color: #dddddd;\n}\n.panel-primary {\n border-color: #337ab7;\n}\n.panel-primary > .panel-heading {\n color: #ffffff;\n background-color: #337ab7;\n border-color: #337ab7;\n}\n.panel-primary > .panel-heading + .panel-collapse > .panel-body {\n border-top-color: #337ab7;\n}\n.panel-primary > .panel-heading .badge {\n color: #337ab7;\n background-color: #ffffff;\n}\n.panel-primary > .panel-footer + .panel-collapse > .panel-body {\n border-bottom-color: #337ab7;\n}\n.panel-success {\n border-color: #d6e9c6;\n}\n.panel-success > .panel-heading {\n color: #3c763d;\n background-color: #dff0d8;\n border-color: #d6e9c6;\n}\n.panel-success > .panel-heading + .panel-collapse > .panel-body {\n border-top-color: #d6e9c6;\n}\n.panel-success > .panel-heading .badge {\n color: #dff0d8;\n background-color: #3c763d;\n}\n.panel-success > .panel-footer + .panel-collapse > .panel-body {\n border-bottom-color: #d6e9c6;\n}\n.panel-info {\n border-color: #bce8f1;\n}\n.panel-info > .panel-heading {\n color: #31708f;\n background-color: #d9edf7;\n border-color: #bce8f1;\n}\n.panel-info > .panel-heading + .panel-collapse > .panel-body {\n border-top-color: #bce8f1;\n}\n.panel-info > .panel-heading .badge {\n color: #d9edf7;\n background-color: #31708f;\n}\n.panel-info > .panel-footer + .panel-collapse > .panel-body {\n border-bottom-color: #bce8f1;\n}\n.panel-warning {\n border-color: #faebcc;\n}\n.panel-warning > .panel-heading {\n color: #8a6d3b;\n background-color: #fcf8e3;\n border-color: #faebcc;\n}\n.panel-warning > .panel-heading + .panel-collapse > .panel-body {\n border-top-color: #faebcc;\n}\n.panel-warning > .panel-heading .badge {\n color: #fcf8e3;\n background-color: #8a6d3b;\n}\n.panel-warning > .panel-footer + .panel-collapse > .panel-body {\n border-bottom-color: #faebcc;\n}\n.panel-danger {\n border-color: #ebccd1;\n}\n.panel-danger > .panel-heading {\n color: #a94442;\n background-color: #f2dede;\n border-color: #ebccd1;\n}\n.panel-danger > .panel-heading + .panel-collapse > .panel-body {\n border-top-color: #ebccd1;\n}\n.panel-danger > .panel-heading .badge {\n color: #f2dede;\n background-color: #a94442;\n}\n.panel-danger > .panel-footer + .panel-collapse > .panel-body {\n border-bottom-color: #ebccd1;\n}\n.embed-responsive {\n position: relative;\n display: block;\n height: 0;\n padding: 0;\n overflow: hidden;\n}\n.embed-responsive .embed-responsive-item,\n.embed-responsive iframe,\n.embed-responsive embed,\n.embed-responsive object,\n.embed-responsive video {\n position: absolute;\n top: 0;\n left: 0;\n bottom: 0;\n height: 100%;\n width: 100%;\n border: 0;\n}\n.embed-responsive-16by9 {\n padding-bottom: 56.25%;\n}\n.embed-responsive-4by3 {\n padding-bottom: 75%;\n}\n.well {\n min-height: 20px;\n padding: 19px;\n margin-bottom: 20px;\n background-color: #f5f5f5;\n border: 1px solid #e3e3e3;\n border-radius: 4px;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);\n}\n.well blockquote {\n border-color: #ddd;\n border-color: rgba(0, 0, 0, 0.15);\n}\n.well-lg {\n padding: 24px;\n border-radius: 6px;\n}\n.well-sm {\n padding: 9px;\n border-radius: 3px;\n}\n.close {\n float: right;\n font-size: 21px;\n font-weight: bold;\n line-height: 1;\n color: #000000;\n text-shadow: 0 1px 0 #ffffff;\n opacity: 0.2;\n filter: alpha(opacity=20);\n}\n.close:hover,\n.close:focus {\n color: #000000;\n text-decoration: none;\n cursor: pointer;\n opacity: 0.5;\n filter: alpha(opacity=50);\n}\nbutton.close {\n padding: 0;\n cursor: pointer;\n background: transparent;\n border: 0;\n -webkit-appearance: none;\n}\n.modal-open {\n overflow: hidden;\n}\n.modal {\n display: none;\n overflow: hidden;\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: 1050;\n -webkit-overflow-scrolling: touch;\n outline: 0;\n}\n.modal.fade .modal-dialog {\n -webkit-transform: translate(0, -25%);\n -ms-transform: translate(0, -25%);\n -o-transform: translate(0, -25%);\n transform: translate(0, -25%);\n -webkit-transition: -webkit-transform 0.3s ease-out;\n -moz-transition: -moz-transform 0.3s ease-out;\n -o-transition: -o-transform 0.3s ease-out;\n transition: transform 0.3s ease-out;\n}\n.modal.in .modal-dialog {\n -webkit-transform: translate(0, 0);\n -ms-transform: translate(0, 0);\n -o-transform: translate(0, 0);\n transform: translate(0, 0);\n}\n.modal-open .modal {\n overflow-x: hidden;\n overflow-y: auto;\n}\n.modal-dialog {\n position: relative;\n width: auto;\n margin: 10px;\n}\n.modal-content {\n position: relative;\n background-color: #ffffff;\n border: 1px solid #999999;\n border: 1px solid rgba(0, 0, 0, 0.2);\n border-radius: 6px;\n -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);\n box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);\n background-clip: padding-box;\n outline: 0;\n}\n.modal-backdrop {\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: 1040;\n background-color: #000000;\n}\n.modal-backdrop.fade {\n opacity: 0;\n filter: alpha(opacity=0);\n}\n.modal-backdrop.in {\n opacity: 0.5;\n filter: alpha(opacity=50);\n}\n.modal-header {\n padding: 15px;\n border-bottom: 1px solid #e5e5e5;\n min-height: 16.42857143px;\n}\n.modal-header .close {\n margin-top: -2px;\n}\n.modal-title {\n margin: 0;\n line-height: 1.42857143;\n}\n.modal-body {\n position: relative;\n padding: 15px;\n}\n.modal-footer {\n padding: 15px;\n text-align: right;\n border-top: 1px solid #e5e5e5;\n}\n.modal-footer .btn + .btn {\n margin-left: 5px;\n margin-bottom: 0;\n}\n.modal-footer .btn-group .btn + .btn {\n margin-left: -1px;\n}\n.modal-footer .btn-block + .btn-block {\n margin-left: 0;\n}\n.modal-scrollbar-measure {\n position: absolute;\n top: -9999px;\n width: 50px;\n height: 50px;\n overflow: scroll;\n}\n@media (min-width: 768px) {\n .modal-dialog {\n width: 600px;\n margin: 30px auto;\n }\n .modal-content {\n -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);\n box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);\n }\n .modal-sm {\n width: 300px;\n }\n}\n@media (min-width: 992px) {\n .modal-lg {\n width: 900px;\n }\n}\n.tooltip {\n position: absolute;\n z-index: 1070;\n display: block;\n font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n font-size: 12px;\n font-weight: normal;\n line-height: 1.4;\n opacity: 0;\n filter: alpha(opacity=0);\n}\n.tooltip.in {\n opacity: 0.9;\n filter: alpha(opacity=90);\n}\n.tooltip.top {\n margin-top: -3px;\n padding: 5px 0;\n}\n.tooltip.right {\n margin-left: 3px;\n padding: 0 5px;\n}\n.tooltip.bottom {\n margin-top: 3px;\n padding: 5px 0;\n}\n.tooltip.left {\n margin-left: -3px;\n padding: 0 5px;\n}\n.tooltip-inner {\n max-width: 200px;\n padding: 3px 8px;\n color: #ffffff;\n text-align: center;\n text-decoration: none;\n background-color: #000000;\n border-radius: 4px;\n}\n.tooltip-arrow {\n position: absolute;\n width: 0;\n height: 0;\n border-color: transparent;\n border-style: solid;\n}\n.tooltip.top .tooltip-arrow {\n bottom: 0;\n left: 50%;\n margin-left: -5px;\n border-width: 5px 5px 0;\n border-top-color: #000000;\n}\n.tooltip.top-left .tooltip-arrow {\n bottom: 0;\n right: 5px;\n margin-bottom: -5px;\n border-width: 5px 5px 0;\n border-top-color: #000000;\n}\n.tooltip.top-right .tooltip-arrow {\n bottom: 0;\n left: 5px;\n margin-bottom: -5px;\n border-width: 5px 5px 0;\n border-top-color: #000000;\n}\n.tooltip.right .tooltip-arrow {\n top: 50%;\n left: 0;\n margin-top: -5px;\n border-width: 5px 5px 5px 0;\n border-right-color: #000000;\n}\n.tooltip.left .tooltip-arrow {\n top: 50%;\n right: 0;\n margin-top: -5px;\n border-width: 5px 0 5px 5px;\n border-left-color: #000000;\n}\n.tooltip.bottom .tooltip-arrow {\n top: 0;\n left: 50%;\n margin-left: -5px;\n border-width: 0 5px 5px;\n border-bottom-color: #000000;\n}\n.tooltip.bottom-left .tooltip-arrow {\n top: 0;\n right: 5px;\n margin-top: -5px;\n border-width: 0 5px 5px;\n border-bottom-color: #000000;\n}\n.tooltip.bottom-right .tooltip-arrow {\n top: 0;\n left: 5px;\n margin-top: -5px;\n border-width: 0 5px 5px;\n border-bottom-color: #000000;\n}\n.popover {\n position: absolute;\n top: 0;\n left: 0;\n z-index: 1060;\n display: none;\n max-width: 276px;\n padding: 1px;\n font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n font-size: 14px;\n font-weight: normal;\n line-height: 1.42857143;\n text-align: left;\n background-color: #ffffff;\n background-clip: padding-box;\n border: 1px solid #cccccc;\n border: 1px solid rgba(0, 0, 0, 0.2);\n border-radius: 6px;\n -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);\n box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);\n white-space: normal;\n}\n.popover.top {\n margin-top: -10px;\n}\n.popover.right {\n margin-left: 10px;\n}\n.popover.bottom {\n margin-top: 10px;\n}\n.popover.left {\n margin-left: -10px;\n}\n.popover-title {\n margin: 0;\n padding: 8px 14px;\n font-size: 14px;\n background-color: #f7f7f7;\n border-bottom: 1px solid #ebebeb;\n border-radius: 5px 5px 0 0;\n}\n.popover-content {\n padding: 9px 14px;\n}\n.popover > .arrow,\n.popover > .arrow:after {\n position: absolute;\n display: block;\n width: 0;\n height: 0;\n border-color: transparent;\n border-style: solid;\n}\n.popover > .arrow {\n border-width: 11px;\n}\n.popover > .arrow:after {\n border-width: 10px;\n content: \"\";\n}\n.popover.top > .arrow {\n left: 50%;\n margin-left: -11px;\n border-bottom-width: 0;\n border-top-color: #999999;\n border-top-color: rgba(0, 0, 0, 0.25);\n bottom: -11px;\n}\n.popover.top > .arrow:after {\n content: \" \";\n bottom: 1px;\n margin-left: -10px;\n border-bottom-width: 0;\n border-top-color: #ffffff;\n}\n.popover.right > .arrow {\n top: 50%;\n left: -11px;\n margin-top: -11px;\n border-left-width: 0;\n border-right-color: #999999;\n border-right-color: rgba(0, 0, 0, 0.25);\n}\n.popover.right > .arrow:after {\n content: \" \";\n left: 1px;\n bottom: -10px;\n border-left-width: 0;\n border-right-color: #ffffff;\n}\n.popover.bottom > .arrow {\n left: 50%;\n margin-left: -11px;\n border-top-width: 0;\n border-bottom-color: #999999;\n border-bottom-color: rgba(0, 0, 0, 0.25);\n top: -11px;\n}\n.popover.bottom > .arrow:after {\n content: \" \";\n top: 1px;\n margin-left: -10px;\n border-top-width: 0;\n border-bottom-color: #ffffff;\n}\n.popover.left > .arrow {\n top: 50%;\n right: -11px;\n margin-top: -11px;\n border-right-width: 0;\n border-left-color: #999999;\n border-left-color: rgba(0, 0, 0, 0.25);\n}\n.popover.left > .arrow:after {\n content: \" \";\n right: 1px;\n border-right-width: 0;\n border-left-color: #ffffff;\n bottom: -10px;\n}\n.carousel {\n position: relative;\n}\n.carousel-inner {\n position: relative;\n overflow: hidden;\n width: 100%;\n}\n.carousel-inner > .item {\n display: none;\n position: relative;\n -webkit-transition: 0.6s ease-in-out left;\n -o-transition: 0.6s ease-in-out left;\n transition: 0.6s ease-in-out left;\n}\n.carousel-inner > .item > img,\n.carousel-inner > .item > a > img {\n line-height: 1;\n}\n@media all and (transform-3d), (-webkit-transform-3d) {\n .carousel-inner > .item {\n -webkit-transition: -webkit-transform 0.6s ease-in-out;\n -moz-transition: -moz-transform 0.6s ease-in-out;\n -o-transition: -o-transform 0.6s ease-in-out;\n transition: transform 0.6s ease-in-out;\n -webkit-backface-visibility: hidden;\n -moz-backface-visibility: hidden;\n backface-visibility: hidden;\n -webkit-perspective: 1000;\n -moz-perspective: 1000;\n perspective: 1000;\n }\n .carousel-inner > .item.next,\n .carousel-inner > .item.active.right {\n -webkit-transform: translate3d(100%, 0, 0);\n transform: translate3d(100%, 0, 0);\n left: 0;\n }\n .carousel-inner > .item.prev,\n .carousel-inner > .item.active.left {\n -webkit-transform: translate3d(-100%, 0, 0);\n transform: translate3d(-100%, 0, 0);\n left: 0;\n }\n .carousel-inner > .item.next.left,\n .carousel-inner > .item.prev.right,\n .carousel-inner > .item.active {\n -webkit-transform: translate3d(0, 0, 0);\n transform: translate3d(0, 0, 0);\n left: 0;\n }\n}\n.carousel-inner > .active,\n.carousel-inner > .next,\n.carousel-inner > .prev {\n display: block;\n}\n.carousel-inner > .active {\n left: 0;\n}\n.carousel-inner > .next,\n.carousel-inner > .prev {\n position: absolute;\n top: 0;\n width: 100%;\n}\n.carousel-inner > .next {\n left: 100%;\n}\n.carousel-inner > .prev {\n left: -100%;\n}\n.carousel-inner > .next.left,\n.carousel-inner > .prev.right {\n left: 0;\n}\n.carousel-inner > .active.left {\n left: -100%;\n}\n.carousel-inner > .active.right {\n left: 100%;\n}\n.carousel-control {\n position: absolute;\n top: 0;\n left: 0;\n bottom: 0;\n width: 15%;\n opacity: 0.5;\n filter: alpha(opacity=50);\n font-size: 20px;\n color: #ffffff;\n text-align: center;\n text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);\n}\n.carousel-control.left {\n background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);\n background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);\n background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);\n}\n.carousel-control.right {\n left: auto;\n right: 0;\n background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);\n background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);\n background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);\n}\n.carousel-control:hover,\n.carousel-control:focus {\n outline: 0;\n color: #ffffff;\n text-decoration: none;\n opacity: 0.9;\n filter: alpha(opacity=90);\n}\n.carousel-control .icon-prev,\n.carousel-control .icon-next,\n.carousel-control .glyphicon-chevron-left,\n.carousel-control .glyphicon-chevron-right {\n position: absolute;\n top: 50%;\n z-index: 5;\n display: inline-block;\n}\n.carousel-control .icon-prev,\n.carousel-control .glyphicon-chevron-left {\n left: 50%;\n margin-left: -10px;\n}\n.carousel-control .icon-next,\n.carousel-control .glyphicon-chevron-right {\n right: 50%;\n margin-right: -10px;\n}\n.carousel-control .icon-prev,\n.carousel-control .icon-next {\n width: 20px;\n height: 20px;\n margin-top: -10px;\n line-height: 1;\n font-family: serif;\n}\n.carousel-control .icon-prev:before {\n content: '\\2039';\n}\n.carousel-control .icon-next:before {\n content: '\\203a';\n}\n.carousel-indicators {\n position: absolute;\n bottom: 10px;\n left: 50%;\n z-index: 15;\n width: 60%;\n margin-left: -30%;\n padding-left: 0;\n list-style: none;\n text-align: center;\n}\n.carousel-indicators li {\n display: inline-block;\n width: 10px;\n height: 10px;\n margin: 1px;\n text-indent: -999px;\n border: 1px solid #ffffff;\n border-radius: 10px;\n cursor: pointer;\n background-color: #000 \\9;\n background-color: rgba(0, 0, 0, 0);\n}\n.carousel-indicators .active {\n margin: 0;\n width: 12px;\n height: 12px;\n background-color: #ffffff;\n}\n.carousel-caption {\n position: absolute;\n left: 15%;\n right: 15%;\n bottom: 20px;\n z-index: 10;\n padding-top: 20px;\n padding-bottom: 20px;\n color: #ffffff;\n text-align: center;\n text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);\n}\n.carousel-caption .btn {\n text-shadow: none;\n}\n@media screen and (min-width: 768px) {\n .carousel-control .glyphicon-chevron-left,\n .carousel-control .glyphicon-chevron-right,\n .carousel-control .icon-prev,\n .carousel-control .icon-next {\n width: 30px;\n height: 30px;\n margin-top: -15px;\n font-size: 30px;\n }\n .carousel-control .glyphicon-chevron-left,\n .carousel-control .icon-prev {\n margin-left: -15px;\n }\n .carousel-control .glyphicon-chevron-right,\n .carousel-control .icon-next {\n margin-right: -15px;\n }\n .carousel-caption {\n left: 20%;\n right: 20%;\n padding-bottom: 30px;\n }\n .carousel-indicators {\n bottom: 20px;\n }\n}\n.clearfix:before,\n.clearfix:after,\n.dl-horizontal dd:before,\n.dl-horizontal dd:after,\n.container:before,\n.container:after,\n.container-fluid:before,\n.container-fluid:after,\n.row:before,\n.row:after,\n.form-horizontal .form-group:before,\n.form-horizontal .form-group:after,\n.btn-toolbar:before,\n.btn-toolbar:after,\n.btn-group-vertical > .btn-group:before,\n.btn-group-vertical > .btn-group:after,\n.nav:before,\n.nav:after,\n.navbar:before,\n.navbar:after,\n.navbar-header:before,\n.navbar-header:after,\n.navbar-collapse:before,\n.navbar-collapse:after,\n.pager:before,\n.pager:after,\n.panel-body:before,\n.panel-body:after,\n.modal-footer:before,\n.modal-footer:after {\n content: \" \";\n display: table;\n}\n.clearfix:after,\n.dl-horizontal dd:after,\n.container:after,\n.container-fluid:after,\n.row:after,\n.form-horizontal .form-group:after,\n.btn-toolbar:after,\n.btn-group-vertical > .btn-group:after,\n.nav:after,\n.navbar:after,\n.navbar-header:after,\n.navbar-collapse:after,\n.pager:after,\n.panel-body:after,\n.modal-footer:after {\n clear: both;\n}\n.center-block {\n display: block;\n margin-left: auto;\n margin-right: auto;\n}\n.pull-right {\n float: right !important;\n}\n.pull-left {\n float: left !important;\n}\n.hide {\n display: none !important;\n}\n.show {\n display: block !important;\n}\n.invisible {\n visibility: hidden;\n}\n.text-hide {\n font: 0/0 a;\n color: transparent;\n text-shadow: none;\n background-color: transparent;\n border: 0;\n}\n.hidden {\n display: none !important;\n}\n.affix {\n position: fixed;\n}\n@-ms-viewport {\n width: device-width;\n}\n.visible-xs,\n.visible-sm,\n.visible-md,\n.visible-lg {\n display: none !important;\n}\n.visible-xs-block,\n.visible-xs-inline,\n.visible-xs-inline-block,\n.visible-sm-block,\n.visible-sm-inline,\n.visible-sm-inline-block,\n.visible-md-block,\n.visible-md-inline,\n.visible-md-inline-block,\n.visible-lg-block,\n.visible-lg-inline,\n.visible-lg-inline-block {\n display: none !important;\n}\n@media (max-width: 767px) {\n .visible-xs {\n display: block !important;\n }\n table.visible-xs {\n display: table;\n }\n tr.visible-xs {\n display: table-row !important;\n }\n th.visible-xs,\n td.visible-xs {\n display: table-cell !important;\n }\n}\n@media (max-width: 767px) {\n .visible-xs-block {\n display: block !important;\n }\n}\n@media (max-width: 767px) {\n .visible-xs-inline {\n display: inline !important;\n }\n}\n@media (max-width: 767px) {\n .visible-xs-inline-block {\n display: inline-block !important;\n }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n .visible-sm {\n display: block !important;\n }\n table.visible-sm {\n display: table;\n }\n tr.visible-sm {\n display: table-row !important;\n }\n th.visible-sm,\n td.visible-sm {\n display: table-cell !important;\n }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n .visible-sm-block {\n display: block !important;\n }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n .visible-sm-inline {\n display: inline !important;\n }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n .visible-sm-inline-block {\n display: inline-block !important;\n }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n .visible-md {\n display: block !important;\n }\n table.visible-md {\n display: table;\n }\n tr.visible-md {\n display: table-row !important;\n }\n th.visible-md,\n td.visible-md {\n display: table-cell !important;\n }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n .visible-md-block {\n display: block !important;\n }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n .visible-md-inline {\n display: inline !important;\n }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n .visible-md-inline-block {\n display: inline-block !important;\n }\n}\n@media (min-width: 1200px) {\n .visible-lg {\n display: block !important;\n }\n table.visible-lg {\n display: table;\n }\n tr.visible-lg {\n display: table-row !important;\n }\n th.visible-lg,\n td.visible-lg {\n display: table-cell !important;\n }\n}\n@media (min-width: 1200px) {\n .visible-lg-block {\n display: block !important;\n }\n}\n@media (min-width: 1200px) {\n .visible-lg-inline {\n display: inline !important;\n }\n}\n@media (min-width: 1200px) {\n .visible-lg-inline-block {\n display: inline-block !important;\n }\n}\n@media (max-width: 767px) {\n .hidden-xs {\n display: none !important;\n }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n .hidden-sm {\n display: none !important;\n }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n .hidden-md {\n display: none !important;\n }\n}\n@media (min-width: 1200px) {\n .hidden-lg {\n display: none !important;\n }\n}\n.visible-print {\n display: none !important;\n}\n@media print {\n .visible-print {\n display: block !important;\n }\n table.visible-print {\n display: table;\n }\n tr.visible-print {\n display: table-row !important;\n }\n th.visible-print,\n td.visible-print {\n display: table-cell !important;\n }\n}\n.visible-print-block {\n display: none !important;\n}\n@media print {\n .visible-print-block {\n display: block !important;\n }\n}\n.visible-print-inline {\n display: none !important;\n}\n@media print {\n .visible-print-inline {\n display: inline !important;\n }\n}\n.visible-print-inline-block {\n display: none !important;\n}\n@media print {\n .visible-print-inline-block {\n display: inline-block !important;\n }\n}\n@media print {\n .hidden-print {\n display: none !important;\n }\n}\n/*# sourceMappingURL=bootstrap.css.map */","/*! normalize.css v3.0.2 | MIT License | git.io/normalize */\n\n//\n// 1. Set default font family to sans-serif.\n// 2. Prevent iOS text size adjust after orientation change, without disabling\n// user zoom.\n//\n\nhtml {\n font-family: sans-serif; // 1\n -ms-text-size-adjust: 100%; // 2\n -webkit-text-size-adjust: 100%; // 2\n}\n\n//\n// Remove default margin.\n//\n\nbody {\n margin: 0;\n}\n\n// HTML5 display definitions\n// ==========================================================================\n\n//\n// Correct `block` display not defined for any HTML5 element in IE 8/9.\n// Correct `block` display not defined for `details` or `summary` in IE 10/11\n// and Firefox.\n// Correct `block` display not defined for `main` in IE 11.\n//\n\narticle,\naside,\ndetails,\nfigcaption,\nfigure,\nfooter,\nheader,\nhgroup,\nmain,\nmenu,\nnav,\nsection,\nsummary {\n display: block;\n}\n\n//\n// 1. Correct `inline-block` display not defined in IE 8/9.\n// 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.\n//\n\naudio,\ncanvas,\nprogress,\nvideo {\n display: inline-block; // 1\n vertical-align: baseline; // 2\n}\n\n//\n// Prevent modern browsers from displaying `audio` without controls.\n// Remove excess height in iOS 5 devices.\n//\n\naudio:not([controls]) {\n display: none;\n height: 0;\n}\n\n//\n// Address `[hidden]` styling not present in IE 8/9/10.\n// Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.\n//\n\n[hidden],\ntemplate {\n display: none;\n}\n\n// Links\n// ==========================================================================\n\n//\n// Remove the gray background color from active links in IE 10.\n//\n\na {\n background-color: transparent;\n}\n\n//\n// Improve readability when focused and also mouse hovered in all browsers.\n//\n\na:active,\na:hover {\n outline: 0;\n}\n\n// Text-level semantics\n// ==========================================================================\n\n//\n// Address styling not present in IE 8/9/10/11, Safari, and Chrome.\n//\n\nabbr[title] {\n border-bottom: 1px dotted;\n}\n\n//\n// Address style set to `bolder` in Firefox 4+, Safari, and Chrome.\n//\n\nb,\nstrong {\n font-weight: bold;\n}\n\n//\n// Address styling not present in Safari and Chrome.\n//\n\ndfn {\n font-style: italic;\n}\n\n//\n// Address variable `h1` font-size and margin within `section` and `article`\n// contexts in Firefox 4+, Safari, and Chrome.\n//\n\nh1 {\n font-size: 2em;\n margin: 0.67em 0;\n}\n\n//\n// Address styling not present in IE 8/9.\n//\n\nmark {\n background: #ff0;\n color: #000;\n}\n\n//\n// Address inconsistent and variable font size in all browsers.\n//\n\nsmall {\n font-size: 80%;\n}\n\n//\n// Prevent `sub` and `sup` affecting `line-height` in all browsers.\n//\n\nsub,\nsup {\n font-size: 75%;\n line-height: 0;\n position: relative;\n vertical-align: baseline;\n}\n\nsup {\n top: -0.5em;\n}\n\nsub {\n bottom: -0.25em;\n}\n\n// Embedded content\n// ==========================================================================\n\n//\n// Remove border when inside `a` element in IE 8/9/10.\n//\n\nimg {\n border: 0;\n}\n\n//\n// Correct overflow not hidden in IE 9/10/11.\n//\n\nsvg:not(:root) {\n overflow: hidden;\n}\n\n// Grouping content\n// ==========================================================================\n\n//\n// Address margin not present in IE 8/9 and Safari.\n//\n\nfigure {\n margin: 1em 40px;\n}\n\n//\n// Address differences between Firefox and other browsers.\n//\n\nhr {\n -moz-box-sizing: content-box;\n box-sizing: content-box;\n height: 0;\n}\n\n//\n// Contain overflow in all browsers.\n//\n\npre {\n overflow: auto;\n}\n\n//\n// Address odd `em`-unit font size rendering in all browsers.\n//\n\ncode,\nkbd,\npre,\nsamp {\n font-family: monospace, monospace;\n font-size: 1em;\n}\n\n// Forms\n// ==========================================================================\n\n//\n// Known limitation: by default, Chrome and Safari on OS X allow very limited\n// styling of `select`, unless a `border` property is set.\n//\n\n//\n// 1. Correct color not being inherited.\n// Known issue: affects color of disabled elements.\n// 2. Correct font properties not being inherited.\n// 3. Address margins set differently in Firefox 4+, Safari, and Chrome.\n//\n\nbutton,\ninput,\noptgroup,\nselect,\ntextarea {\n color: inherit; // 1\n font: inherit; // 2\n margin: 0; // 3\n}\n\n//\n// Address `overflow` set to `hidden` in IE 8/9/10/11.\n//\n\nbutton {\n overflow: visible;\n}\n\n//\n// Address inconsistent `text-transform` inheritance for `button` and `select`.\n// All other form control elements do not inherit `text-transform` values.\n// Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.\n// Correct `select` style inheritance in Firefox.\n//\n\nbutton,\nselect {\n text-transform: none;\n}\n\n//\n// 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`\n// and `video` controls.\n// 2. Correct inability to style clickable `input` types in iOS.\n// 3. Improve usability and consistency of cursor style between image-type\n// `input` and others.\n//\n\nbutton,\nhtml input[type=\"button\"], // 1\ninput[type=\"reset\"],\ninput[type=\"submit\"] {\n -webkit-appearance: button; // 2\n cursor: pointer; // 3\n}\n\n//\n// Re-set default cursor for disabled elements.\n//\n\nbutton[disabled],\nhtml input[disabled] {\n cursor: default;\n}\n\n//\n// Remove inner padding and border in Firefox 4+.\n//\n\nbutton::-moz-focus-inner,\ninput::-moz-focus-inner {\n border: 0;\n padding: 0;\n}\n\n//\n// Address Firefox 4+ setting `line-height` on `input` using `!important` in\n// the UA stylesheet.\n//\n\ninput {\n line-height: normal;\n}\n\n//\n// It's recommended that you don't attempt to style these elements.\n// Firefox's implementation doesn't respect box-sizing, padding, or width.\n//\n// 1. Address box sizing set to `content-box` in IE 8/9/10.\n// 2. Remove excess padding in IE 8/9/10.\n//\n\ninput[type=\"checkbox\"],\ninput[type=\"radio\"] {\n box-sizing: border-box; // 1\n padding: 0; // 2\n}\n\n//\n// Fix the cursor style for Chrome's increment/decrement buttons. For certain\n// `font-size` values of the `input`, it causes the cursor style of the\n// decrement button to change from `default` to `text`.\n//\n\ninput[type=\"number\"]::-webkit-inner-spin-button,\ninput[type=\"number\"]::-webkit-outer-spin-button {\n height: auto;\n}\n\n//\n// 1. Address `appearance` set to `searchfield` in Safari and Chrome.\n// 2. Address `box-sizing` set to `border-box` in Safari and Chrome\n// (include `-moz` to future-proof).\n//\n\ninput[type=\"search\"] {\n -webkit-appearance: textfield; // 1\n -moz-box-sizing: content-box;\n -webkit-box-sizing: content-box; // 2\n box-sizing: content-box;\n}\n\n//\n// Remove inner padding and search cancel button in Safari and Chrome on OS X.\n// Safari (but not Chrome) clips the cancel button when the search input has\n// padding (and `textfield` appearance).\n//\n\ninput[type=\"search\"]::-webkit-search-cancel-button,\ninput[type=\"search\"]::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n\n//\n// Define consistent border, margin, and padding.\n//\n\nfieldset {\n border: 1px solid #c0c0c0;\n margin: 0 2px;\n padding: 0.35em 0.625em 0.75em;\n}\n\n//\n// 1. Correct `color` not being inherited in IE 8/9/10/11.\n// 2. Remove padding so people aren't caught out if they zero out fieldsets.\n//\n\nlegend {\n border: 0; // 1\n padding: 0; // 2\n}\n\n//\n// Remove default vertical scrollbar in IE 8/9/10/11.\n//\n\ntextarea {\n overflow: auto;\n}\n\n//\n// Don't inherit the `font-weight` (applied by a rule above).\n// NOTE: the default cannot safely be changed in Chrome and Safari on OS X.\n//\n\noptgroup {\n font-weight: bold;\n}\n\n// Tables\n// ==========================================================================\n\n//\n// Remove most spacing between table cells.\n//\n\ntable {\n border-collapse: collapse;\n border-spacing: 0;\n}\n\ntd,\nth {\n padding: 0;\n}\n","/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */\n\n// ==========================================================================\n// Print styles.\n// Inlined to avoid the additional HTTP request: h5bp.com/r\n// ==========================================================================\n\n@media print {\n *,\n *:before,\n *:after {\n background: transparent !important;\n color: #000 !important; // Black prints faster: h5bp.com/s\n box-shadow: none !important;\n text-shadow: none !important;\n }\n\n a,\n a:visited {\n text-decoration: underline;\n }\n\n a[href]:after {\n content: \" (\" attr(href) \")\";\n }\n\n abbr[title]:after {\n content: \" (\" attr(title) \")\";\n }\n\n // Don't show links that are fragment identifiers,\n // or use the `javascript:` pseudo protocol\n a[href^=\"#\"]:after,\n a[href^=\"javascript:\"]:after {\n content: \"\";\n }\n\n pre,\n blockquote {\n border: 1px solid #999;\n page-break-inside: avoid;\n }\n\n thead {\n display: table-header-group; // h5bp.com/t\n }\n\n tr,\n img {\n page-break-inside: avoid;\n }\n\n img {\n max-width: 100% !important;\n }\n\n p,\n h2,\n h3 {\n orphans: 3;\n widows: 3;\n }\n\n h2,\n h3 {\n page-break-after: avoid;\n }\n\n // Bootstrap specific changes start\n //\n // Chrome (OSX) fix for https://github.com/twbs/bootstrap/issues/11245\n // Once fixed, we can just straight up remove this.\n select {\n background: #fff !important;\n }\n\n // Bootstrap components\n .navbar {\n display: none;\n }\n .btn,\n .dropup > .btn {\n > .caret {\n border-top-color: #000 !important;\n }\n }\n .label {\n border: 1px solid #000;\n }\n\n .table {\n border-collapse: collapse !important;\n\n td,\n th {\n background-color: #fff !important;\n }\n }\n .table-bordered {\n th,\n td {\n border: 1px solid #ddd !important;\n }\n }\n\n // Bootstrap specific changes end\n}\n","//\n// Glyphicons for Bootstrap\n//\n// Since icons are fonts, they can be placed anywhere text is placed and are\n// thus automatically sized to match the surrounding child. To use, create an\n// inline element with the appropriate classes, like so:\n//\n// <a href=\"#\"><span class=\"glyphicon glyphicon-star\"></span> Star</a>\n\n// Import the fonts\n@font-face {\n font-family: 'Glyphicons Halflings';\n src: url('@{icon-font-path}@{icon-font-name}.eot');\n src: url('@{icon-font-path}@{icon-font-name}.eot?#iefix') format('embedded-opentype'),\n url('@{icon-font-path}@{icon-font-name}.woff2') format('woff2'),\n url('@{icon-font-path}@{icon-font-name}.woff') format('woff'),\n url('@{icon-font-path}@{icon-font-name}.ttf') format('truetype'),\n url('@{icon-font-path}@{icon-font-name}.svg#@{icon-font-svg-id}') format('svg');\n}\n\n// Catchall baseclass\n.glyphicon {\n position: relative;\n top: 1px;\n display: inline-block;\n font-family: 'Glyphicons Halflings';\n font-style: normal;\n font-weight: normal;\n line-height: 1;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n\n// Individual icons\n.glyphicon-asterisk { &:before { content: \"\\2a\"; } }\n.glyphicon-plus { &:before { content: \"\\2b\"; } }\n.glyphicon-euro,\n.glyphicon-eur { &:before { content: \"\\20ac\"; } }\n.glyphicon-minus { &:before { content: \"\\2212\"; } }\n.glyphicon-cloud { &:before { content: \"\\2601\"; } }\n.glyphicon-envelope { &:before { content: \"\\2709\"; } }\n.glyphicon-pencil { &:before { content: \"\\270f\"; } }\n.glyphicon-glass { &:before { content: \"\\e001\"; } }\n.glyphicon-music { &:before { content: \"\\e002\"; } }\n.glyphicon-search { &:before { content: \"\\e003\"; } }\n.glyphicon-heart { &:before { content: \"\\e005\"; } }\n.glyphicon-star { &:before { content: \"\\e006\"; } }\n.glyphicon-star-empty { &:before { content: \"\\e007\"; } }\n.glyphicon-user { &:before { content: \"\\e008\"; } }\n.glyphicon-film { &:before { content: \"\\e009\"; } }\n.glyphicon-th-large { &:before { content: \"\\e010\"; } }\n.glyphicon-th { &:before { content: \"\\e011\"; } }\n.glyphicon-th-list { &:before { content: \"\\e012\"; } }\n.glyphicon-ok { &:before { content: \"\\e013\"; } }\n.glyphicon-remove { &:before { content: \"\\e014\"; } }\n.glyphicon-zoom-in { &:before { content: \"\\e015\"; } }\n.glyphicon-zoom-out { &:before { content: \"\\e016\"; } }\n.glyphicon-off { &:before { content: \"\\e017\"; } }\n.glyphicon-signal { &:before { content: \"\\e018\"; } }\n.glyphicon-cog { &:before { content: \"\\e019\"; } }\n.glyphicon-trash { &:before { content: \"\\e020\"; } }\n.glyphicon-home { &:before { content: \"\\e021\"; } }\n.glyphicon-file { &:before { content: \"\\e022\"; } }\n.glyphicon-time { &:before { content: \"\\e023\"; } }\n.glyphicon-road { &:before { content: \"\\e024\"; } }\n.glyphicon-download-alt { &:before { content: \"\\e025\"; } }\n.glyphicon-download { &:before { content: \"\\e026\"; } }\n.glyphicon-upload { &:before { content: \"\\e027\"; } }\n.glyphicon-inbox { &:before { content: \"\\e028\"; } }\n.glyphicon-play-circle { &:before { content: \"\\e029\"; } }\n.glyphicon-repeat { &:before { content: \"\\e030\"; } }\n.glyphicon-refresh { &:before { content: \"\\e031\"; } }\n.glyphicon-list-alt { &:before { content: \"\\e032\"; } }\n.glyphicon-lock { &:before { content: \"\\e033\"; } }\n.glyphicon-flag { &:before { content: \"\\e034\"; } }\n.glyphicon-headphones { &:before { content: \"\\e035\"; } }\n.glyphicon-volume-off { &:before { content: \"\\e036\"; } }\n.glyphicon-volume-down { &:before { content: \"\\e037\"; } }\n.glyphicon-volume-up { &:before { content: \"\\e038\"; } }\n.glyphicon-qrcode { &:before { content: \"\\e039\"; } }\n.glyphicon-barcode { &:before { content: \"\\e040\"; } }\n.glyphicon-tag { &:before { content: \"\\e041\"; } }\n.glyphicon-tags { &:before { content: \"\\e042\"; } }\n.glyphicon-book { &:before { content: \"\\e043\"; } }\n.glyphicon-bookmark { &:before { content: \"\\e044\"; } }\n.glyphicon-print { &:before { content: \"\\e045\"; } }\n.glyphicon-camera { &:before { content: \"\\e046\"; } }\n.glyphicon-font { &:before { content: \"\\e047\"; } }\n.glyphicon-bold { &:before { content: \"\\e048\"; } }\n.glyphicon-italic { &:before { content: \"\\e049\"; } }\n.glyphicon-text-height { &:before { content: \"\\e050\"; } }\n.glyphicon-text-width { &:before { content: \"\\e051\"; } }\n.glyphicon-align-left { &:before { content: \"\\e052\"; } }\n.glyphicon-align-center { &:before { content: \"\\e053\"; } }\n.glyphicon-align-right { &:before { content: \"\\e054\"; } }\n.glyphicon-align-justify { &:before { content: \"\\e055\"; } }\n.glyphicon-list { &:before { content: \"\\e056\"; } }\n.glyphicon-indent-left { &:before { content: \"\\e057\"; } }\n.glyphicon-indent-right { &:before { content: \"\\e058\"; } }\n.glyphicon-facetime-video { &:before { content: \"\\e059\"; } }\n.glyphicon-picture { &:before { content: \"\\e060\"; } }\n.glyphicon-map-marker { &:before { content: \"\\e062\"; } }\n.glyphicon-adjust { &:before { content: \"\\e063\"; } }\n.glyphicon-tint { &:before { content: \"\\e064\"; } }\n.glyphicon-edit { &:before { content: \"\\e065\"; } }\n.glyphicon-share { &:before { content: \"\\e066\"; } }\n.glyphicon-check { &:before { content: \"\\e067\"; } }\n.glyphicon-move { &:before { content: \"\\e068\"; } }\n.glyphicon-step-backward { &:before { content: \"\\e069\"; } }\n.glyphicon-fast-backward { &:before { content: \"\\e070\"; } }\n.glyphicon-backward { &:before { content: \"\\e071\"; } }\n.glyphicon-play { &:before { content: \"\\e072\"; } }\n.glyphicon-pause { &:before { content: \"\\e073\"; } }\n.glyphicon-stop { &:before { content: \"\\e074\"; } }\n.glyphicon-forward { &:before { content: \"\\e075\"; } }\n.glyphicon-fast-forward { &:before { content: \"\\e076\"; } }\n.glyphicon-step-forward { &:before { content: \"\\e077\"; } }\n.glyphicon-eject { &:before { content: \"\\e078\"; } }\n.glyphicon-chevron-left { &:before { content: \"\\e079\"; } }\n.glyphicon-chevron-right { &:before { content: \"\\e080\"; } }\n.glyphicon-plus-sign { &:before { content: \"\\e081\"; } }\n.glyphicon-minus-sign { &:before { content: \"\\e082\"; } }\n.glyphicon-remove-sign { &:before { content: \"\\e083\"; } }\n.glyphicon-ok-sign { &:before { content: \"\\e084\"; } }\n.glyphicon-question-sign { &:before { content: \"\\e085\"; } }\n.glyphicon-info-sign { &:before { content: \"\\e086\"; } }\n.glyphicon-screenshot { &:before { content: \"\\e087\"; } }\n.glyphicon-remove-circle { &:before { content: \"\\e088\"; } }\n.glyphicon-ok-circle { &:before { content: \"\\e089\"; } }\n.glyphicon-ban-circle { &:before { content: \"\\e090\"; } }\n.glyphicon-arrow-left { &:before { content: \"\\e091\"; } }\n.glyphicon-arrow-right { &:before { content: \"\\e092\"; } }\n.glyphicon-arrow-up { &:before { content: \"\\e093\"; } }\n.glyphicon-arrow-down { &:before { content: \"\\e094\"; } }\n.glyphicon-share-alt { &:before { content: \"\\e095\"; } }\n.glyphicon-resize-full { &:before { content: \"\\e096\"; } }\n.glyphicon-resize-small { &:before { content: \"\\e097\"; } }\n.glyphicon-exclamation-sign { &:before { content: \"\\e101\"; } }\n.glyphicon-gift { &:before { content: \"\\e102\"; } }\n.glyphicon-leaf { &:before { content: \"\\e103\"; } }\n.glyphicon-fire { &:before { content: \"\\e104\"; } }\n.glyphicon-eye-open { &:before { content: \"\\e105\"; } }\n.glyphicon-eye-close { &:before { content: \"\\e106\"; } }\n.glyphicon-warning-sign { &:before { content: \"\\e107\"; } }\n.glyphicon-plane { &:before { content: \"\\e108\"; } }\n.glyphicon-calendar { &:before { content: \"\\e109\"; } }\n.glyphicon-random { &:before { content: \"\\e110\"; } }\n.glyphicon-comment { &:before { content: \"\\e111\"; } }\n.glyphicon-magnet { &:before { content: \"\\e112\"; } }\n.glyphicon-chevron-up { &:before { content: \"\\e113\"; } }\n.glyphicon-chevron-down { &:before { content: \"\\e114\"; } }\n.glyphicon-retweet { &:before { content: \"\\e115\"; } }\n.glyphicon-shopping-cart { &:before { content: \"\\e116\"; } }\n.glyphicon-folder-close { &:before { content: \"\\e117\"; } }\n.glyphicon-folder-open { &:before { content: \"\\e118\"; } }\n.glyphicon-resize-vertical { &:before { content: \"\\e119\"; } }\n.glyphicon-resize-horizontal { &:before { content: \"\\e120\"; } }\n.glyphicon-hdd { &:before { content: \"\\e121\"; } }\n.glyphicon-bullhorn { &:before { content: \"\\e122\"; } }\n.glyphicon-bell { &:before { content: \"\\e123\"; } }\n.glyphicon-certificate { &:before { content: \"\\e124\"; } }\n.glyphicon-thumbs-up { &:before { content: \"\\e125\"; } }\n.glyphicon-thumbs-down { &:before { content: \"\\e126\"; } }\n.glyphicon-hand-right { &:before { content: \"\\e127\"; } }\n.glyphicon-hand-left { &:before { content: \"\\e128\"; } }\n.glyphicon-hand-up { &:before { content: \"\\e129\"; } }\n.glyphicon-hand-down { &:before { content: \"\\e130\"; } }\n.glyphicon-circle-arrow-right { &:before { content: \"\\e131\"; } }\n.glyphicon-circle-arrow-left { &:before { content: \"\\e132\"; } }\n.glyphicon-circle-arrow-up { &:before { content: \"\\e133\"; } }\n.glyphicon-circle-arrow-down { &:before { content: \"\\e134\"; } }\n.glyphicon-globe { &:before { content: \"\\e135\"; } }\n.glyphicon-wrench { &:before { content: \"\\e136\"; } }\n.glyphicon-tasks { &:before { content: \"\\e137\"; } }\n.glyphicon-filter { &:before { content: \"\\e138\"; } }\n.glyphicon-briefcase { &:before { content: \"\\e139\"; } }\n.glyphicon-fullscreen { &:before { content: \"\\e140\"; } }\n.glyphicon-dashboard { &:before { content: \"\\e141\"; } }\n.glyphicon-paperclip { &:before { content: \"\\e142\"; } }\n.glyphicon-heart-empty { &:before { content: \"\\e143\"; } }\n.glyphicon-link { &:before { content: \"\\e144\"; } }\n.glyphicon-phone { &:before { content: \"\\e145\"; } }\n.glyphicon-pushpin { &:before { content: \"\\e146\"; } }\n.glyphicon-usd { &:before { content: \"\\e148\"; } }\n.glyphicon-gbp { &:before { content: \"\\e149\"; } }\n.glyphicon-sort { &:before { content: \"\\e150\"; } }\n.glyphicon-sort-by-alphabet { &:before { content: \"\\e151\"; } }\n.glyphicon-sort-by-alphabet-alt { &:before { content: \"\\e152\"; } }\n.glyphicon-sort-by-order { &:before { content: \"\\e153\"; } }\n.glyphicon-sort-by-order-alt { &:before { content: \"\\e154\"; } }\n.glyphicon-sort-by-attributes { &:before { content: \"\\e155\"; } }\n.glyphicon-sort-by-attributes-alt { &:before { content: \"\\e156\"; } }\n.glyphicon-unchecked { &:before { content: \"\\e157\"; } }\n.glyphicon-expand { &:before { content: \"\\e158\"; } }\n.glyphicon-collapse-down { &:before { content: \"\\e159\"; } }\n.glyphicon-collapse-up { &:before { content: \"\\e160\"; } }\n.glyphicon-log-in { &:before { content: \"\\e161\"; } }\n.glyphicon-flash { &:before { content: \"\\e162\"; } }\n.glyphicon-log-out { &:before { content: \"\\e163\"; } }\n.glyphicon-new-window { &:before { content: \"\\e164\"; } }\n.glyphicon-record { &:before { content: \"\\e165\"; } }\n.glyphicon-save { &:before { content: \"\\e166\"; } }\n.glyphicon-open { &:before { content: \"\\e167\"; } }\n.glyphicon-saved { &:before { content: \"\\e168\"; } }\n.glyphicon-import { &:before { content: \"\\e169\"; } }\n.glyphicon-export { &:before { content: \"\\e170\"; } }\n.glyphicon-send { &:before { content: \"\\e171\"; } }\n.glyphicon-floppy-disk { &:before { content: \"\\e172\"; } }\n.glyphicon-floppy-saved { &:before { content: \"\\e173\"; } }\n.glyphicon-floppy-remove { &:before { content: \"\\e174\"; } }\n.glyphicon-floppy-save { &:before { content: \"\\e175\"; } }\n.glyphicon-floppy-open { &:before { content: \"\\e176\"; } }\n.glyphicon-credit-card { &:before { content: \"\\e177\"; } }\n.glyphicon-transfer { &:before { content: \"\\e178\"; } }\n.glyphicon-cutlery { &:before { content: \"\\e179\"; } }\n.glyphicon-header { &:before { content: \"\\e180\"; } }\n.glyphicon-compressed { &:before { content: \"\\e181\"; } }\n.glyphicon-earphone { &:before { content: \"\\e182\"; } }\n.glyphicon-phone-alt { &:before { content: \"\\e183\"; } }\n.glyphicon-tower { &:before { content: \"\\e184\"; } }\n.glyphicon-stats { &:before { content: \"\\e185\"; } }\n.glyphicon-sd-video { &:before { content: \"\\e186\"; } }\n.glyphicon-hd-video { &:before { content: \"\\e187\"; } }\n.glyphicon-subtitles { &:before { content: \"\\e188\"; } }\n.glyphicon-sound-stereo { &:before { content: \"\\e189\"; } }\n.glyphicon-sound-dolby { &:before { content: \"\\e190\"; } }\n.glyphicon-sound-5-1 { &:before { content: \"\\e191\"; } }\n.glyphicon-sound-6-1 { &:before { content: \"\\e192\"; } }\n.glyphicon-sound-7-1 { &:before { content: \"\\e193\"; } }\n.glyphicon-copyright-mark { &:before { content: \"\\e194\"; } }\n.glyphicon-registration-mark { &:before { content: \"\\e195\"; } }\n.glyphicon-cloud-download { &:before { content: \"\\e197\"; } }\n.glyphicon-cloud-upload { &:before { content: \"\\e198\"; } }\n.glyphicon-tree-conifer { &:before { content: \"\\e199\"; } }\n.glyphicon-tree-deciduous { &:before { content: \"\\e200\"; } }\n.glyphicon-cd { &:before { content: \"\\e201\"; } }\n.glyphicon-save-file { &:before { content: \"\\e202\"; } }\n.glyphicon-open-file { &:before { content: \"\\e203\"; } }\n.glyphicon-level-up { &:before { content: \"\\e204\"; } }\n.glyphicon-copy { &:before { content: \"\\e205\"; } }\n.glyphicon-paste { &:before { content: \"\\e206\"; } }\n// The following 2 Glyphicons are omitted for the time being because\n// they currently use Unicode codepoints that are outside the\n// Basic Multilingual Plane (BMP). Older buggy versions of WebKit can't handle\n// non-BMP codepoints in CSS string escapes, and thus can't display these two icons.\n// Notably, the bug affects some older versions of the Android Browser.\n// More info: https://github.com/twbs/bootstrap/issues/10106\n// .glyphicon-door { &:before { content: \"\\1f6aa\"; } }\n// .glyphicon-key { &:before { content: \"\\1f511\"; } }\n.glyphicon-alert { &:before { content: \"\\e209\"; } }\n.glyphicon-equalizer { &:before { content: \"\\e210\"; } }\n.glyphicon-king { &:before { content: \"\\e211\"; } }\n.glyphicon-queen { &:before { content: \"\\e212\"; } }\n.glyphicon-pawn { &:before { content: \"\\e213\"; } }\n.glyphicon-bishop { &:before { content: \"\\e214\"; } }\n.glyphicon-knight { &:before { content: \"\\e215\"; } }\n.glyphicon-baby-formula { &:before { content: \"\\e216\"; } }\n.glyphicon-tent { &:before { content: \"\\26fa\"; } }\n.glyphicon-blackboard { &:before { content: \"\\e218\"; } }\n.glyphicon-bed { &:before { content: \"\\e219\"; } }\n.glyphicon-apple { &:before { content: \"\\f8ff\"; } }\n.glyphicon-erase { &:before { content: \"\\e221\"; } }\n.glyphicon-hourglass { &:before { content: \"\\231b\"; } }\n.glyphicon-lamp { &:before { content: \"\\e223\"; } }\n.glyphicon-duplicate { &:before { content: \"\\e224\"; } }\n.glyphicon-piggy-bank { &:before { content: \"\\e225\"; } }\n.glyphicon-scissors { &:before { content: \"\\e226\"; } }\n.glyphicon-bitcoin { &:before { content: \"\\e227\"; } }\n.glyphicon-btc { &:before { content: \"\\e227\"; } }\n.glyphicon-xbt { &:before { content: \"\\e227\"; } }\n.glyphicon-yen { &:before { content: \"\\00a5\"; } }\n.glyphicon-jpy { &:before { content: \"\\00a5\"; } }\n.glyphicon-ruble { &:before { content: \"\\20bd\"; } }\n.glyphicon-rub { &:before { content: \"\\20bd\"; } }\n.glyphicon-scale { &:before { content: \"\\e230\"; } }\n.glyphicon-ice-lolly { &:before { content: \"\\e231\"; } }\n.glyphicon-ice-lolly-tasted { &:before { content: \"\\e232\"; } }\n.glyphicon-education { &:before { content: \"\\e233\"; } }\n.glyphicon-option-horizontal { &:before { content: \"\\e234\"; } }\n.glyphicon-option-vertical { &:before { content: \"\\e235\"; } }\n.glyphicon-menu-hamburger { &:before { content: \"\\e236\"; } }\n.glyphicon-modal-window { &:before { content: \"\\e237\"; } }\n.glyphicon-oil { &:before { content: \"\\e238\"; } }\n.glyphicon-grain { &:before { content: \"\\e239\"; } }\n.glyphicon-sunglasses { &:before { content: \"\\e240\"; } }\n.glyphicon-text-size { &:before { content: \"\\e241\"; } }\n.glyphicon-text-color { &:before { content: \"\\e242\"; } }\n.glyphicon-text-background { &:before { content: \"\\e243\"; } }\n.glyphicon-object-align-top { &:before { content: \"\\e244\"; } }\n.glyphicon-object-align-bottom { &:before { content: \"\\e245\"; } }\n.glyphicon-object-align-horizontal{ &:before { content: \"\\e246\"; } }\n.glyphicon-object-align-left { &:before { content: \"\\e247\"; } }\n.glyphicon-object-align-vertical { &:before { content: \"\\e248\"; } }\n.glyphicon-object-align-right { &:before { content: \"\\e249\"; } }\n.glyphicon-triangle-right { &:before { content: \"\\e250\"; } }\n.glyphicon-triangle-left { &:before { content: \"\\e251\"; } }\n.glyphicon-triangle-bottom { &:before { content: \"\\e252\"; } }\n.glyphicon-triangle-top { &:before { content: \"\\e253\"; } }\n.glyphicon-console { &:before { content: \"\\e254\"; } }\n.glyphicon-superscript { &:before { content: \"\\e255\"; } }\n.glyphicon-subscript { &:before { content: \"\\e256\"; } }\n.glyphicon-menu-left { &:before { content: \"\\e257\"; } }\n.glyphicon-menu-right { &:before { content: \"\\e258\"; } }\n.glyphicon-menu-down { &:before { content: \"\\e259\"; } }\n.glyphicon-menu-up { &:before { content: \"\\e260\"; } }\n","//\n// Scaffolding\n// --------------------------------------------------\n\n\n// Reset the box-sizing\n//\n// Heads up! This reset may cause conflicts with some third-party widgets.\n// For recommendations on resolving such conflicts, see\n// http://getbootstrap.com/getting-started/#third-box-sizing\n* {\n .box-sizing(border-box);\n}\n*:before,\n*:after {\n .box-sizing(border-box);\n}\n\n\n// Body reset\n\nhtml {\n font-size: 10px;\n -webkit-tap-highlight-color: rgba(0,0,0,0);\n}\n\nbody {\n font-family: @font-family-base;\n font-size: @font-size-base;\n line-height: @line-height-base;\n color: @text-color;\n background-color: @body-bg;\n}\n\n// Reset fonts for relevant elements\ninput,\nbutton,\nselect,\ntextarea {\n font-family: inherit;\n font-size: inherit;\n line-height: inherit;\n}\n\n\n// Links\n\na {\n color: @link-color;\n text-decoration: none;\n\n &:hover,\n &:focus {\n color: @link-hover-color;\n text-decoration: @link-hover-decoration;\n }\n\n &:focus {\n .tab-focus();\n }\n}\n\n\n// Figures\n//\n// We reset this here because previously Normalize had no `figure` margins. This\n// ensures we don't break anyone's use of the element.\n\nfigure {\n margin: 0;\n}\n\n\n// Images\n\nimg {\n vertical-align: middle;\n}\n\n// Responsive images (ensure images don't scale beyond their parents)\n.img-responsive {\n .img-responsive();\n}\n\n// Rounded corners\n.img-rounded {\n border-radius: @border-radius-large;\n}\n\n// Image thumbnails\n//\n// Heads up! This is mixin-ed into thumbnails.less for `.thumbnail`.\n.img-thumbnail {\n padding: @thumbnail-padding;\n line-height: @line-height-base;\n background-color: @thumbnail-bg;\n border: 1px solid @thumbnail-border;\n border-radius: @thumbnail-border-radius;\n .transition(all .2s ease-in-out);\n\n // Keep them at most 100% wide\n .img-responsive(inline-block);\n}\n\n// Perfect circle\n.img-circle {\n border-radius: 50%; // set radius in percents\n}\n\n\n// Horizontal rules\n\nhr {\n margin-top: @line-height-computed;\n margin-bottom: @line-height-computed;\n border: 0;\n border-top: 1px solid @hr-border;\n}\n\n\n// Only display content to screen readers\n//\n// See: http://a11yproject.com/posts/how-to-hide-content/\n\n.sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n margin: -1px;\n padding: 0;\n overflow: hidden;\n clip: rect(0,0,0,0);\n border: 0;\n}\n\n// Use in conjunction with .sr-only to only display content when it's focused.\n// Useful for \"Skip to main content\" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1\n// Credit: HTML5 Boilerplate\n\n.sr-only-focusable {\n &:active,\n &:focus {\n position: static;\n width: auto;\n height: auto;\n margin: 0;\n overflow: visible;\n clip: auto;\n }\n}\n\n\n// iOS \"clickable elements\" fix for role=\"button\"\n//\n// Fixes \"clickability\" issue (and more generally, the firing of events such as focus as well)\n// for traditionally non-focusable elements with role=\"button\"\n// see https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile\n// Upstream patch for normalize.css submitted: https://github.com/necolas/normalize.css/pull/379 - remove this fix once that is merged\n\n[role=\"button\"] {\n cursor: pointer;\n}","// Vendor Prefixes\n//\n// All vendor mixins are deprecated as of v3.2.0 due to the introduction of\n// Autoprefixer in our Gruntfile. They will be removed in v4.\n\n// - Animations\n// - Backface visibility\n// - Box shadow\n// - Box sizing\n// - Content columns\n// - Hyphens\n// - Placeholder text\n// - Transformations\n// - Transitions\n// - User Select\n\n\n// Animations\n.animation(@animation) {\n -webkit-animation: @animation;\n -o-animation: @animation;\n animation: @animation;\n}\n.animation-name(@name) {\n -webkit-animation-name: @name;\n animation-name: @name;\n}\n.animation-duration(@duration) {\n -webkit-animation-duration: @duration;\n animation-duration: @duration;\n}\n.animation-timing-function(@timing-function) {\n -webkit-animation-timing-function: @timing-function;\n animation-timing-function: @timing-function;\n}\n.animation-delay(@delay) {\n -webkit-animation-delay: @delay;\n animation-delay: @delay;\n}\n.animation-iteration-count(@iteration-count) {\n -webkit-animation-iteration-count: @iteration-count;\n animation-iteration-count: @iteration-count;\n}\n.animation-direction(@direction) {\n -webkit-animation-direction: @direction;\n animation-direction: @direction;\n}\n.animation-fill-mode(@fill-mode) {\n -webkit-animation-fill-mode: @fill-mode;\n animation-fill-mode: @fill-mode;\n}\n\n// Backface visibility\n// Prevent browsers from flickering when using CSS 3D transforms.\n// Default value is `visible`, but can be changed to `hidden`\n\n.backface-visibility(@visibility){\n -webkit-backface-visibility: @visibility;\n -moz-backface-visibility: @visibility;\n backface-visibility: @visibility;\n}\n\n// Drop shadows\n//\n// Note: Deprecated `.box-shadow()` as of v3.1.0 since all of Bootstrap's\n// supported browsers that have box shadow capabilities now support it.\n\n.box-shadow(@shadow) {\n -webkit-box-shadow: @shadow; // iOS <4.3 & Android <4.1\n box-shadow: @shadow;\n}\n\n// Box sizing\n.box-sizing(@boxmodel) {\n -webkit-box-sizing: @boxmodel;\n -moz-box-sizing: @boxmodel;\n box-sizing: @boxmodel;\n}\n\n// CSS3 Content Columns\n.content-columns(@column-count; @column-gap: @grid-gutter-width) {\n -webkit-column-count: @column-count;\n -moz-column-count: @column-count;\n column-count: @column-count;\n -webkit-column-gap: @column-gap;\n -moz-column-gap: @column-gap;\n column-gap: @column-gap;\n}\n\n// Optional hyphenation\n.hyphens(@mode: auto) {\n word-wrap: break-word;\n -webkit-hyphens: @mode;\n -moz-hyphens: @mode;\n -ms-hyphens: @mode; // IE10+\n -o-hyphens: @mode;\n hyphens: @mode;\n}\n\n// Placeholder text\n.placeholder(@color: @input-color-placeholder) {\n // Firefox\n &::-moz-placeholder {\n color: @color;\n opacity: 1; // Override Firefox's unusual default opacity; see https://github.com/twbs/bootstrap/pull/11526\n }\n &:-ms-input-placeholder { color: @color; } // Internet Explorer 10+\n &::-webkit-input-placeholder { color: @color; } // Safari and Chrome\n}\n\n// Transformations\n.scale(@ratio) {\n -webkit-transform: scale(@ratio);\n -ms-transform: scale(@ratio); // IE9 only\n -o-transform: scale(@ratio);\n transform: scale(@ratio);\n}\n.scale(@ratioX; @ratioY) {\n -webkit-transform: scale(@ratioX, @ratioY);\n -ms-transform: scale(@ratioX, @ratioY); // IE9 only\n -o-transform: scale(@ratioX, @ratioY);\n transform: scale(@ratioX, @ratioY);\n}\n.scaleX(@ratio) {\n -webkit-transform: scaleX(@ratio);\n -ms-transform: scaleX(@ratio); // IE9 only\n -o-transform: scaleX(@ratio);\n transform: scaleX(@ratio);\n}\n.scaleY(@ratio) {\n -webkit-transform: scaleY(@ratio);\n -ms-transform: scaleY(@ratio); // IE9 only\n -o-transform: scaleY(@ratio);\n transform: scaleY(@ratio);\n}\n.skew(@x; @y) {\n -webkit-transform: skewX(@x) skewY(@y);\n -ms-transform: skewX(@x) skewY(@y); // See https://github.com/twbs/bootstrap/issues/4885; IE9+\n -o-transform: skewX(@x) skewY(@y);\n transform: skewX(@x) skewY(@y);\n}\n.translate(@x; @y) {\n -webkit-transform: translate(@x, @y);\n -ms-transform: translate(@x, @y); // IE9 only\n -o-transform: translate(@x, @y);\n transform: translate(@x, @y);\n}\n.translate3d(@x; @y; @z) {\n -webkit-transform: translate3d(@x, @y, @z);\n transform: translate3d(@x, @y, @z);\n}\n.rotate(@degrees) {\n -webkit-transform: rotate(@degrees);\n -ms-transform: rotate(@degrees); // IE9 only\n -o-transform: rotate(@degrees);\n transform: rotate(@degrees);\n}\n.rotateX(@degrees) {\n -webkit-transform: rotateX(@degrees);\n -ms-transform: rotateX(@degrees); // IE9 only\n -o-transform: rotateX(@degrees);\n transform: rotateX(@degrees);\n}\n.rotateY(@degrees) {\n -webkit-transform: rotateY(@degrees);\n -ms-transform: rotateY(@degrees); // IE9 only\n -o-transform: rotateY(@degrees);\n transform: rotateY(@degrees);\n}\n.perspective(@perspective) {\n -webkit-perspective: @perspective;\n -moz-perspective: @perspective;\n perspective: @perspective;\n}\n.perspective-origin(@perspective) {\n -webkit-perspective-origin: @perspective;\n -moz-perspective-origin: @perspective;\n perspective-origin: @perspective;\n}\n.transform-origin(@origin) {\n -webkit-transform-origin: @origin;\n -moz-transform-origin: @origin;\n -ms-transform-origin: @origin; // IE9 only\n transform-origin: @origin;\n}\n\n\n// Transitions\n\n.transition(@transition) {\n -webkit-transition: @transition;\n -o-transition: @transition;\n transition: @transition;\n}\n.transition-property(@transition-property) {\n -webkit-transition-property: @transition-property;\n transition-property: @transition-property;\n}\n.transition-delay(@transition-delay) {\n -webkit-transition-delay: @transition-delay;\n transition-delay: @transition-delay;\n}\n.transition-duration(@transition-duration) {\n -webkit-transition-duration: @transition-duration;\n transition-duration: @transition-duration;\n}\n.transition-timing-function(@timing-function) {\n -webkit-transition-timing-function: @timing-function;\n transition-timing-function: @timing-function;\n}\n.transition-transform(@transition) {\n -webkit-transition: -webkit-transform @transition;\n -moz-transition: -moz-transform @transition;\n -o-transition: -o-transform @transition;\n transition: transform @transition;\n}\n\n\n// User select\n// For selecting text on the page\n\n.user-select(@select) {\n -webkit-user-select: @select;\n -moz-user-select: @select;\n -ms-user-select: @select; // IE10+\n user-select: @select;\n}\n","// WebKit-style focus\n\n.tab-focus() {\n // Default\n outline: thin dotted;\n // WebKit\n outline: 5px auto -webkit-focus-ring-color;\n outline-offset: -2px;\n}\n","// Image Mixins\n// - Responsive image\n// - Retina image\n\n\n// Responsive image\n//\n// Keep images from scaling beyond the width of their parents.\n.img-responsive(@display: block) {\n display: @display;\n max-width: 100%; // Part 1: Set a maximum relative to the parent\n height: auto; // Part 2: Scale the height according to the width, otherwise you get stretching\n}\n\n\n// Retina image\n//\n// Short retina mixin for setting background-image and -size. Note that the\n// spelling of `min--moz-device-pixel-ratio` is intentional.\n.img-retina(@file-1x; @file-2x; @width-1x; @height-1x) {\n background-image: url(\"@{file-1x}\");\n\n @media\n only screen and (-webkit-min-device-pixel-ratio: 2),\n only screen and ( min--moz-device-pixel-ratio: 2),\n only screen and ( -o-min-device-pixel-ratio: 2/1),\n only screen and ( min-device-pixel-ratio: 2),\n only screen and ( min-resolution: 192dpi),\n only screen and ( min-resolution: 2dppx) {\n background-image: url(\"@{file-2x}\");\n background-size: @width-1x @height-1x;\n }\n}\n","//\n// Typography\n// --------------------------------------------------\n\n\n// Headings\n// -------------------------\n\nh1, h2, h3, h4, h5, h6,\n.h1, .h2, .h3, .h4, .h5, .h6 {\n font-family: @headings-font-family;\n font-weight: @headings-font-weight;\n line-height: @headings-line-height;\n color: @headings-color;\n\n small,\n .small {\n font-weight: normal;\n line-height: 1;\n color: @headings-small-color;\n }\n}\n\nh1, .h1,\nh2, .h2,\nh3, .h3 {\n margin-top: @line-height-computed;\n margin-bottom: (@line-height-computed / 2);\n\n small,\n .small {\n font-size: 65%;\n }\n}\nh4, .h4,\nh5, .h5,\nh6, .h6 {\n margin-top: (@line-height-computed / 2);\n margin-bottom: (@line-height-computed / 2);\n\n small,\n .small {\n font-size: 75%;\n }\n}\n\nh1, .h1 { font-size: @font-size-h1; }\nh2, .h2 { font-size: @font-size-h2; }\nh3, .h3 { font-size: @font-size-h3; }\nh4, .h4 { font-size: @font-size-h4; }\nh5, .h5 { font-size: @font-size-h5; }\nh6, .h6 { font-size: @font-size-h6; }\n\n\n// Body text\n// -------------------------\n\np {\n margin: 0 0 (@line-height-computed / 2);\n}\n\n.lead {\n margin-bottom: @line-height-computed;\n font-size: floor((@font-size-base * 1.15));\n font-weight: 300;\n line-height: 1.4;\n\n @media (min-width: @screen-sm-min) {\n font-size: (@font-size-base * 1.5);\n }\n}\n\n\n// Emphasis & misc\n// -------------------------\n\n// Ex: (12px small font / 14px base font) * 100% = about 85%\nsmall,\n.small {\n font-size: floor((100% * @font-size-small / @font-size-base));\n}\n\nmark,\n.mark {\n background-color: @state-warning-bg;\n padding: .2em;\n}\n\n// Alignment\n.text-left { text-align: left; }\n.text-right { text-align: right; }\n.text-center { text-align: center; }\n.text-justify { text-align: justify; }\n.text-nowrap { white-space: nowrap; }\n\n// Transformation\n.text-lowercase { text-transform: lowercase; }\n.text-uppercase { text-transform: uppercase; }\n.text-capitalize { text-transform: capitalize; }\n\n// Contextual colors\n.text-muted {\n color: @text-muted;\n}\n.text-primary {\n .text-emphasis-variant(@brand-primary);\n}\n.text-success {\n .text-emphasis-variant(@state-success-text);\n}\n.text-info {\n .text-emphasis-variant(@state-info-text);\n}\n.text-warning {\n .text-emphasis-variant(@state-warning-text);\n}\n.text-danger {\n .text-emphasis-variant(@state-danger-text);\n}\n\n// Contextual backgrounds\n// For now we'll leave these alongside the text classes until v4 when we can\n// safely shift things around (per SemVer rules).\n.bg-primary {\n // Given the contrast here, this is the only class to have its color inverted\n // automatically.\n color: #fff;\n .bg-variant(@brand-primary);\n}\n.bg-success {\n .bg-variant(@state-success-bg);\n}\n.bg-info {\n .bg-variant(@state-info-bg);\n}\n.bg-warning {\n .bg-variant(@state-warning-bg);\n}\n.bg-danger {\n .bg-variant(@state-danger-bg);\n}\n\n\n// Page header\n// -------------------------\n\n.page-header {\n padding-bottom: ((@line-height-computed / 2) - 1);\n margin: (@line-height-computed * 2) 0 @line-height-computed;\n border-bottom: 1px solid @page-header-border-color;\n}\n\n\n// Lists\n// -------------------------\n\n// Unordered and Ordered lists\nul,\nol {\n margin-top: 0;\n margin-bottom: (@line-height-computed / 2);\n ul,\n ol {\n margin-bottom: 0;\n }\n}\n\n// List options\n\n// Unstyled keeps list items block level, just removes default browser padding and list-style\n.list-unstyled {\n padding-left: 0;\n list-style: none;\n}\n\n// Inline turns list items into inline-block\n.list-inline {\n .list-unstyled();\n margin-left: -5px;\n\n > li {\n display: inline-block;\n padding-left: 5px;\n padding-right: 5px;\n }\n}\n\n// Description Lists\ndl {\n margin-top: 0; // Remove browser default\n margin-bottom: @line-height-computed;\n}\ndt,\ndd {\n line-height: @line-height-base;\n}\ndt {\n font-weight: bold;\n}\ndd {\n margin-left: 0; // Undo browser default\n}\n\n// Horizontal description lists\n//\n// Defaults to being stacked without any of the below styles applied, until the\n// grid breakpoint is reached (default of ~768px).\n\n.dl-horizontal {\n dd {\n &:extend(.clearfix all); // Clear the floated `dt` if an empty `dd` is present\n }\n\n @media (min-width: @grid-float-breakpoint) {\n dt {\n float: left;\n width: (@dl-horizontal-offset - 20);\n clear: left;\n text-align: right;\n .text-overflow();\n }\n dd {\n margin-left: @dl-horizontal-offset;\n }\n }\n}\n\n\n// Misc\n// -------------------------\n\n// Abbreviations and acronyms\nabbr[title],\n// Add data-* attribute to help out our tooltip plugin, per https://github.com/twbs/bootstrap/issues/5257\nabbr[data-original-title] {\n cursor: help;\n border-bottom: 1px dotted @abbr-border-color;\n}\n.initialism {\n font-size: 90%;\n .text-uppercase();\n}\n\n// Blockquotes\nblockquote {\n padding: (@line-height-computed / 2) @line-height-computed;\n margin: 0 0 @line-height-computed;\n font-size: @blockquote-font-size;\n border-left: 5px solid @blockquote-border-color;\n\n p,\n ul,\n ol {\n &:last-child {\n margin-bottom: 0;\n }\n }\n\n // Note: Deprecated small and .small as of v3.1.0\n // Context: https://github.com/twbs/bootstrap/issues/11660\n footer,\n small,\n .small {\n display: block;\n font-size: 80%; // back to default font-size\n line-height: @line-height-base;\n color: @blockquote-small-color;\n\n &:before {\n content: '\\2014 \\00A0'; // em dash, nbsp\n }\n }\n}\n\n// Opposite alignment of blockquote\n//\n// Heads up: `blockquote.pull-right` has been deprecated as of v3.1.0.\n.blockquote-reverse,\nblockquote.pull-right {\n padding-right: 15px;\n padding-left: 0;\n border-right: 5px solid @blockquote-border-color;\n border-left: 0;\n text-align: right;\n\n // Account for citation\n footer,\n small,\n .small {\n &:before { content: ''; }\n &:after {\n content: '\\00A0 \\2014'; // nbsp, em dash\n }\n }\n}\n\n// Addresses\naddress {\n margin-bottom: @line-height-computed;\n font-style: normal;\n line-height: @line-height-base;\n}\n","// Typography\n\n.text-emphasis-variant(@color) {\n color: @color;\n a&:hover {\n color: darken(@color, 10%);\n }\n}\n","// Contextual backgrounds\n\n.bg-variant(@color) {\n background-color: @color;\n a&:hover {\n background-color: darken(@color, 10%);\n }\n}\n","// Text overflow\n// Requires inline-block or block for proper styling\n\n.text-overflow() {\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n","//\n// Code (inline and block)\n// --------------------------------------------------\n\n\n// Inline and block code styles\ncode,\nkbd,\npre,\nsamp {\n font-family: @font-family-monospace;\n}\n\n// Inline code\ncode {\n padding: 2px 4px;\n font-size: 90%;\n color: @code-color;\n background-color: @code-bg;\n border-radius: @border-radius-base;\n}\n\n// User input typically entered via keyboard\nkbd {\n padding: 2px 4px;\n font-size: 90%;\n color: @kbd-color;\n background-color: @kbd-bg;\n border-radius: @border-radius-small;\n box-shadow: inset 0 -1px 0 rgba(0,0,0,.25);\n\n kbd {\n padding: 0;\n font-size: 100%;\n font-weight: bold;\n box-shadow: none;\n }\n}\n\n// Blocks of code\npre {\n display: block;\n padding: ((@line-height-computed - 1) / 2);\n margin: 0 0 (@line-height-computed / 2);\n font-size: (@font-size-base - 1); // 14px to 13px\n line-height: @line-height-base;\n word-break: break-all;\n word-wrap: break-word;\n color: @pre-color;\n background-color: @pre-bg;\n border: 1px solid @pre-border-color;\n border-radius: @border-radius-base;\n\n // Account for some code outputs that place code tags in pre tags\n code {\n padding: 0;\n font-size: inherit;\n color: inherit;\n white-space: pre-wrap;\n background-color: transparent;\n border-radius: 0;\n }\n}\n\n// Enable scrollable blocks of code\n.pre-scrollable {\n max-height: @pre-scrollable-max-height;\n overflow-y: scroll;\n}\n","//\n// Grid system\n// --------------------------------------------------\n\n\n// Container widths\n//\n// Set the container width, and override it for fixed navbars in media queries.\n\n.container {\n .container-fixed();\n\n @media (min-width: @screen-sm-min) {\n width: @container-sm;\n }\n @media (min-width: @screen-md-min) {\n width: @container-md;\n }\n @media (min-width: @screen-lg-min) {\n width: @container-lg;\n }\n}\n\n\n// Fluid container\n//\n// Utilizes the mixin meant for fixed width containers, but without any defined\n// width for fluid, full width layouts.\n\n.container-fluid {\n .container-fixed();\n}\n\n\n// Row\n//\n// Rows contain and clear the floats of your columns.\n\n.row {\n .make-row();\n}\n\n\n// Columns\n//\n// Common styles for small and large grid columns\n\n.make-grid-columns();\n\n\n// Extra small grid\n//\n// Columns, offsets, pushes, and pulls for extra small devices like\n// smartphones.\n\n.make-grid(xs);\n\n\n// Small grid\n//\n// Columns, offsets, pushes, and pulls for the small device range, from phones\n// to tablets.\n\n@media (min-width: @screen-sm-min) {\n .make-grid(sm);\n}\n\n\n// Medium grid\n//\n// Columns, offsets, pushes, and pulls for the desktop device range.\n\n@media (min-width: @screen-md-min) {\n .make-grid(md);\n}\n\n\n// Large grid\n//\n// Columns, offsets, pushes, and pulls for the large desktop device range.\n\n@media (min-width: @screen-lg-min) {\n .make-grid(lg);\n}\n","// Grid system\n//\n// Generate semantic grid columns with these mixins.\n\n// Centered container element\n.container-fixed(@gutter: @grid-gutter-width) {\n margin-right: auto;\n margin-left: auto;\n padding-left: (@gutter / 2);\n padding-right: (@gutter / 2);\n &:extend(.clearfix all);\n}\n\n// Creates a wrapper for a series of columns\n.make-row(@gutter: @grid-gutter-width) {\n margin-left: (@gutter / -2);\n margin-right: (@gutter / -2);\n &:extend(.clearfix all);\n}\n\n// Generate the extra small columns\n.make-xs-column(@columns; @gutter: @grid-gutter-width) {\n position: relative;\n float: left;\n width: percentage((@columns / @grid-columns));\n min-height: 1px;\n padding-left: (@gutter / 2);\n padding-right: (@gutter / 2);\n}\n.make-xs-column-offset(@columns) {\n margin-left: percentage((@columns / @grid-columns));\n}\n.make-xs-column-push(@columns) {\n left: percentage((@columns / @grid-columns));\n}\n.make-xs-column-pull(@columns) {\n right: percentage((@columns / @grid-columns));\n}\n\n// Generate the small columns\n.make-sm-column(@columns; @gutter: @grid-gutter-width) {\n position: relative;\n min-height: 1px;\n padding-left: (@gutter / 2);\n padding-right: (@gutter / 2);\n\n @media (min-width: @screen-sm-min) {\n float: left;\n width: percentage((@columns / @grid-columns));\n }\n}\n.make-sm-column-offset(@columns) {\n @media (min-width: @screen-sm-min) {\n margin-left: percentage((@columns / @grid-columns));\n }\n}\n.make-sm-column-push(@columns) {\n @media (min-width: @screen-sm-min) {\n left: percentage((@columns / @grid-columns));\n }\n}\n.make-sm-column-pull(@columns) {\n @media (min-width: @screen-sm-min) {\n right: percentage((@columns / @grid-columns));\n }\n}\n\n// Generate the medium columns\n.make-md-column(@columns; @gutter: @grid-gutter-width) {\n position: relative;\n min-height: 1px;\n padding-left: (@gutter / 2);\n padding-right: (@gutter / 2);\n\n @media (min-width: @screen-md-min) {\n float: left;\n width: percentage((@columns / @grid-columns));\n }\n}\n.make-md-column-offset(@columns) {\n @media (min-width: @screen-md-min) {\n margin-left: percentage((@columns / @grid-columns));\n }\n}\n.make-md-column-push(@columns) {\n @media (min-width: @screen-md-min) {\n left: percentage((@columns / @grid-columns));\n }\n}\n.make-md-column-pull(@columns) {\n @media (min-width: @screen-md-min) {\n right: percentage((@columns / @grid-columns));\n }\n}\n\n// Generate the large columns\n.make-lg-column(@columns; @gutter: @grid-gutter-width) {\n position: relative;\n min-height: 1px;\n padding-left: (@gutter / 2);\n padding-right: (@gutter / 2);\n\n @media (min-width: @screen-lg-min) {\n float: left;\n width: percentage((@columns / @grid-columns));\n }\n}\n.make-lg-column-offset(@columns) {\n @media (min-width: @screen-lg-min) {\n margin-left: percentage((@columns / @grid-columns));\n }\n}\n.make-lg-column-push(@columns) {\n @media (min-width: @screen-lg-min) {\n left: percentage((@columns / @grid-columns));\n }\n}\n.make-lg-column-pull(@columns) {\n @media (min-width: @screen-lg-min) {\n right: percentage((@columns / @grid-columns));\n }\n}\n","// Framework grid generation\n//\n// Used only by Bootstrap to generate the correct number of grid classes given\n// any value of `@grid-columns`.\n\n.make-grid-columns() {\n // Common styles for all sizes of grid columns, widths 1-12\n .col(@index) { // initial\n @item: ~\".col-xs-@{index}, .col-sm-@{index}, .col-md-@{index}, .col-lg-@{index}\";\n .col((@index + 1), @item);\n }\n .col(@index, @list) when (@index =< @grid-columns) { // general; \"=<\" isn't a typo\n @item: ~\".col-xs-@{index}, .col-sm-@{index}, .col-md-@{index}, .col-lg-@{index}\";\n .col((@index + 1), ~\"@{list}, @{item}\");\n }\n .col(@index, @list) when (@index > @grid-columns) { // terminal\n @{list} {\n position: relative;\n // Prevent columns from collapsing when empty\n min-height: 1px;\n // Inner gutter via padding\n padding-left: (@grid-gutter-width / 2);\n padding-right: (@grid-gutter-width / 2);\n }\n }\n .col(1); // kickstart it\n}\n\n.float-grid-columns(@class) {\n .col(@index) { // initial\n @item: ~\".col-@{class}-@{index}\";\n .col((@index + 1), @item);\n }\n .col(@index, @list) when (@index =< @grid-columns) { // general\n @item: ~\".col-@{class}-@{index}\";\n .col((@index + 1), ~\"@{list}, @{item}\");\n }\n .col(@index, @list) when (@index > @grid-columns) { // terminal\n @{list} {\n float: left;\n }\n }\n .col(1); // kickstart it\n}\n\n.calc-grid-column(@index, @class, @type) when (@type = width) and (@index > 0) {\n .col-@{class}-@{index} {\n width: percentage((@index / @grid-columns));\n }\n}\n.calc-grid-column(@index, @class, @type) when (@type = push) and (@index > 0) {\n .col-@{class}-push-@{index} {\n left: percentage((@index / @grid-columns));\n }\n}\n.calc-grid-column(@index, @class, @type) when (@type = push) and (@index = 0) {\n .col-@{class}-push-0 {\n left: auto;\n }\n}\n.calc-grid-column(@index, @class, @type) when (@type = pull) and (@index > 0) {\n .col-@{class}-pull-@{index} {\n right: percentage((@index / @grid-columns));\n }\n}\n.calc-grid-column(@index, @class, @type) when (@type = pull) and (@index = 0) {\n .col-@{class}-pull-0 {\n right: auto;\n }\n}\n.calc-grid-column(@index, @class, @type) when (@type = offset) {\n .col-@{class}-offset-@{index} {\n margin-left: percentage((@index / @grid-columns));\n }\n}\n\n// Basic looping in LESS\n.loop-grid-columns(@index, @class, @type) when (@index >= 0) {\n .calc-grid-column(@index, @class, @type);\n // next iteration\n .loop-grid-columns((@index - 1), @class, @type);\n}\n\n// Create grid for specific class\n.make-grid(@class) {\n .float-grid-columns(@class);\n .loop-grid-columns(@grid-columns, @class, width);\n .loop-grid-columns(@grid-columns, @class, pull);\n .loop-grid-columns(@grid-columns, @class, push);\n .loop-grid-columns(@grid-columns, @class, offset);\n}\n","//\n// Tables\n// --------------------------------------------------\n\n\ntable {\n background-color: @table-bg;\n}\ncaption {\n padding-top: @table-cell-padding;\n padding-bottom: @table-cell-padding;\n color: @text-muted;\n text-align: left;\n}\nth {\n text-align: left;\n}\n\n\n// Baseline styles\n\n.table {\n width: 100%;\n max-width: 100%;\n margin-bottom: @line-height-computed;\n // Cells\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th,\n > td {\n padding: @table-cell-padding;\n line-height: @line-height-base;\n vertical-align: top;\n border-top: 1px solid @table-border-color;\n }\n }\n }\n // Bottom align for column headings\n > thead > tr > th {\n vertical-align: bottom;\n border-bottom: 2px solid @table-border-color;\n }\n // Remove top border from thead by default\n > caption + thead,\n > colgroup + thead,\n > thead:first-child {\n > tr:first-child {\n > th,\n > td {\n border-top: 0;\n }\n }\n }\n // Account for multiple tbody instances\n > tbody + tbody {\n border-top: 2px solid @table-border-color;\n }\n\n // Nesting\n .table {\n background-color: @body-bg;\n }\n}\n\n\n// Condensed table w/ half padding\n\n.table-condensed {\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th,\n > td {\n padding: @table-condensed-cell-padding;\n }\n }\n }\n}\n\n\n// Bordered version\n//\n// Add borders all around the table and between all the columns.\n\n.table-bordered {\n border: 1px solid @table-border-color;\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th,\n > td {\n border: 1px solid @table-border-color;\n }\n }\n }\n > thead > tr {\n > th,\n > td {\n border-bottom-width: 2px;\n }\n }\n}\n\n\n// Zebra-striping\n//\n// Default zebra-stripe styles (alternating gray and transparent backgrounds)\n\n.table-striped {\n > tbody > tr:nth-of-type(odd) {\n background-color: @table-bg-accent;\n }\n}\n\n\n// Hover effect\n//\n// Placed here since it has to come after the potential zebra striping\n\n.table-hover {\n > tbody > tr:hover {\n background-color: @table-bg-hover;\n }\n}\n\n\n// Table cell sizing\n//\n// Reset default table behavior\n\ntable col[class*=\"col-\"] {\n position: static; // Prevent border hiding in Firefox and IE9-11 (see https://github.com/twbs/bootstrap/issues/11623)\n float: none;\n display: table-column;\n}\ntable {\n td,\n th {\n &[class*=\"col-\"] {\n position: static; // Prevent border hiding in Firefox and IE9-11 (see https://github.com/twbs/bootstrap/issues/11623)\n float: none;\n display: table-cell;\n }\n }\n}\n\n\n// Table backgrounds\n//\n// Exact selectors below required to override `.table-striped` and prevent\n// inheritance to nested tables.\n\n// Generate the contextual variants\n.table-row-variant(active; @table-bg-active);\n.table-row-variant(success; @state-success-bg);\n.table-row-variant(info; @state-info-bg);\n.table-row-variant(warning; @state-warning-bg);\n.table-row-variant(danger; @state-danger-bg);\n\n\n// Responsive tables\n//\n// Wrap your tables in `.table-responsive` and we'll make them mobile friendly\n// by enabling horizontal scrolling. Only applies <768px. Everything above that\n// will display normally.\n\n.table-responsive {\n overflow-x: auto;\n min-height: 0.01%; // Workaround for IE9 bug (see https://github.com/twbs/bootstrap/issues/14837)\n\n @media screen and (max-width: @screen-xs-max) {\n width: 100%;\n margin-bottom: (@line-height-computed * 0.75);\n overflow-y: hidden;\n -ms-overflow-style: -ms-autohiding-scrollbar;\n border: 1px solid @table-border-color;\n\n // Tighten up spacing\n > .table {\n margin-bottom: 0;\n\n // Ensure the content doesn't wrap\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th,\n > td {\n white-space: nowrap;\n }\n }\n }\n }\n\n // Special overrides for the bordered tables\n > .table-bordered {\n border: 0;\n\n // Nuke the appropriate borders so that the parent can handle them\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th:first-child,\n > td:first-child {\n border-left: 0;\n }\n > th:last-child,\n > td:last-child {\n border-right: 0;\n }\n }\n }\n\n // Only nuke the last row's bottom-border in `tbody` and `tfoot` since\n // chances are there will be only one `tr` in a `thead` and that would\n // remove the border altogether.\n > tbody,\n > tfoot {\n > tr:last-child {\n > th,\n > td {\n border-bottom: 0;\n }\n }\n }\n\n }\n }\n}\n","// Tables\n\n.table-row-variant(@state; @background) {\n // Exact selectors below required to override `.table-striped` and prevent\n // inheritance to nested tables.\n .table > thead > tr,\n .table > tbody > tr,\n .table > tfoot > tr {\n > td.@{state},\n > th.@{state},\n &.@{state} > td,\n &.@{state} > th {\n background-color: @background;\n }\n }\n\n // Hover states for `.table-hover`\n // Note: this is not available for cells or rows within `thead` or `tfoot`.\n .table-hover > tbody > tr {\n > td.@{state}:hover,\n > th.@{state}:hover,\n &.@{state}:hover > td,\n &:hover > .@{state},\n &.@{state}:hover > th {\n background-color: darken(@background, 5%);\n }\n }\n}\n","//\n// Forms\n// --------------------------------------------------\n\n\n// Normalize non-controls\n//\n// Restyle and baseline non-control form elements.\n\nfieldset {\n padding: 0;\n margin: 0;\n border: 0;\n // Chrome and Firefox set a `min-width: min-content;` on fieldsets,\n // so we reset that to ensure it behaves more like a standard block element.\n // See https://github.com/twbs/bootstrap/issues/12359.\n min-width: 0;\n}\n\nlegend {\n display: block;\n width: 100%;\n padding: 0;\n margin-bottom: @line-height-computed;\n font-size: (@font-size-base * 1.5);\n line-height: inherit;\n color: @legend-color;\n border: 0;\n border-bottom: 1px solid @legend-border-color;\n}\n\nlabel {\n display: inline-block;\n max-width: 100%; // Force IE8 to wrap long content (see https://github.com/twbs/bootstrap/issues/13141)\n margin-bottom: 5px;\n font-weight: bold;\n}\n\n\n// Normalize form controls\n//\n// While most of our form styles require extra classes, some basic normalization\n// is required to ensure optimum display with or without those classes to better\n// address browser inconsistencies.\n\n// Override content-box in Normalize (* isn't specific enough)\ninput[type=\"search\"] {\n .box-sizing(border-box);\n}\n\n// Position radios and checkboxes better\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n margin: 4px 0 0;\n margin-top: 1px \\9; // IE8-9\n line-height: normal;\n}\n\n// Set the height of file controls to match text inputs\ninput[type=\"file\"] {\n display: block;\n}\n\n// Make range inputs behave like textual form controls\ninput[type=\"range\"] {\n display: block;\n width: 100%;\n}\n\n// Make multiple select elements height not fixed\nselect[multiple],\nselect[size] {\n height: auto;\n}\n\n// Focus for file, radio, and checkbox\ninput[type=\"file\"]:focus,\ninput[type=\"radio\"]:focus,\ninput[type=\"checkbox\"]:focus {\n .tab-focus();\n}\n\n// Adjust output element\noutput {\n display: block;\n padding-top: (@padding-base-vertical + 1);\n font-size: @font-size-base;\n line-height: @line-height-base;\n color: @input-color;\n}\n\n\n// Common form controls\n//\n// Shared size and type resets for form controls. Apply `.form-control` to any\n// of the following form controls:\n//\n// select\n// textarea\n// input[type=\"text\"]\n// input[type=\"password\"]\n// input[type=\"datetime\"]\n// input[type=\"datetime-local\"]\n// input[type=\"date\"]\n// input[type=\"month\"]\n// input[type=\"time\"]\n// input[type=\"week\"]\n// input[type=\"number\"]\n// input[type=\"email\"]\n// input[type=\"url\"]\n// input[type=\"search\"]\n// input[type=\"tel\"]\n// input[type=\"color\"]\n\n.form-control {\n display: block;\n width: 100%;\n height: @input-height-base; // Make inputs at least the height of their button counterpart (base line-height + padding + border)\n padding: @padding-base-vertical @padding-base-horizontal;\n font-size: @font-size-base;\n line-height: @line-height-base;\n color: @input-color;\n background-color: @input-bg;\n background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214\n border: 1px solid @input-border;\n border-radius: @input-border-radius; // Note: This has no effect on <select>s in some browsers, due to the limited stylability of <select>s in CSS.\n .box-shadow(inset 0 1px 1px rgba(0,0,0,.075));\n .transition(~\"border-color ease-in-out .15s, box-shadow ease-in-out .15s\");\n\n // Customize the `:focus` state to imitate native WebKit styles.\n .form-control-focus();\n\n // Placeholder\n .placeholder();\n\n // Disabled and read-only inputs\n //\n // HTML5 says that controls under a fieldset > legend:first-child won't be\n // disabled if the fieldset is disabled. Due to implementation difficulty, we\n // don't honor that edge case; we style them as disabled anyway.\n &[disabled],\n &[readonly],\n fieldset[disabled] & {\n background-color: @input-bg-disabled;\n opacity: 1; // iOS fix for unreadable disabled content; see https://github.com/twbs/bootstrap/issues/11655\n }\n\n &[disabled],\n fieldset[disabled] & {\n cursor: @cursor-disabled;\n }\n\n // Reset height for `textarea`s\n textarea& {\n height: auto;\n }\n}\n\n\n// Search inputs in iOS\n//\n// This overrides the extra rounded corners on search inputs in iOS so that our\n// `.form-control` class can properly style them. Note that this cannot simply\n// be added to `.form-control` as it's not specific enough. For details, see\n// https://github.com/twbs/bootstrap/issues/11586.\n\ninput[type=\"search\"] {\n -webkit-appearance: none;\n}\n\n\n// Special styles for iOS temporal inputs\n//\n// In Mobile Safari, setting `display: block` on temporal inputs causes the\n// text within the input to become vertically misaligned. As a workaround, we\n// set a pixel line-height that matches the given height of the input, but only\n// for Safari. See https://bugs.webkit.org/show_bug.cgi?id=139848\n\n@media screen and (-webkit-min-device-pixel-ratio: 0) {\n input[type=\"date\"],\n input[type=\"time\"],\n input[type=\"datetime-local\"],\n input[type=\"month\"] {\n line-height: @input-height-base;\n\n &.input-sm,\n .input-group-sm & {\n line-height: @input-height-small;\n }\n\n &.input-lg,\n .input-group-lg & {\n line-height: @input-height-large;\n }\n }\n}\n\n\n// Form groups\n//\n// Designed to help with the organization and spacing of vertical forms. For\n// horizontal forms, use the predefined grid classes.\n\n.form-group {\n margin-bottom: @form-group-margin-bottom;\n}\n\n\n// Checkboxes and radios\n//\n// Indent the labels to position radios/checkboxes as hanging controls.\n\n.radio,\n.checkbox {\n position: relative;\n display: block;\n margin-top: 10px;\n margin-bottom: 10px;\n\n label {\n min-height: @line-height-computed; // Ensure the input doesn't jump when there is no text\n padding-left: 20px;\n margin-bottom: 0;\n font-weight: normal;\n cursor: pointer;\n }\n}\n.radio input[type=\"radio\"],\n.radio-inline input[type=\"radio\"],\n.checkbox input[type=\"checkbox\"],\n.checkbox-inline input[type=\"checkbox\"] {\n position: absolute;\n margin-left: -20px;\n margin-top: 4px \\9;\n}\n\n.radio + .radio,\n.checkbox + .checkbox {\n margin-top: -5px; // Move up sibling radios or checkboxes for tighter spacing\n}\n\n// Radios and checkboxes on same line\n.radio-inline,\n.checkbox-inline {\n position: relative;\n display: inline-block;\n padding-left: 20px;\n margin-bottom: 0;\n vertical-align: middle;\n font-weight: normal;\n cursor: pointer;\n}\n.radio-inline + .radio-inline,\n.checkbox-inline + .checkbox-inline {\n margin-top: 0;\n margin-left: 10px; // space out consecutive inline controls\n}\n\n// Apply same disabled cursor tweak as for inputs\n// Some special care is needed because <label>s don't inherit their parent's `cursor`.\n//\n// Note: Neither radios nor checkboxes can be readonly.\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n &[disabled],\n &.disabled,\n fieldset[disabled] & {\n cursor: @cursor-disabled;\n }\n}\n// These classes are used directly on <label>s\n.radio-inline,\n.checkbox-inline {\n &.disabled,\n fieldset[disabled] & {\n cursor: @cursor-disabled;\n }\n}\n// These classes are used on elements with <label> descendants\n.radio,\n.checkbox {\n &.disabled,\n fieldset[disabled] & {\n label {\n cursor: @cursor-disabled;\n }\n }\n}\n\n\n// Static form control text\n//\n// Apply class to a `p` element to make any string of text align with labels in\n// a horizontal form layout.\n\n.form-control-static {\n // Size it appropriately next to real form controls\n padding-top: (@padding-base-vertical + 1);\n padding-bottom: (@padding-base-vertical + 1);\n // Remove default margin from `p`\n margin-bottom: 0;\n min-height: (@line-height-computed + @font-size-base);\n\n &.input-lg,\n &.input-sm {\n padding-left: 0;\n padding-right: 0;\n }\n}\n\n\n// Form control sizing\n//\n// Build on `.form-control` with modifier classes to decrease or increase the\n// height and font-size of form controls.\n//\n// The `.form-group-* form-control` variations are sadly duplicated to avoid the\n// issue documented in https://github.com/twbs/bootstrap/issues/15074.\n\n.input-sm {\n .input-size(@input-height-small; @padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @input-border-radius-small);\n}\n.form-group-sm {\n .form-control {\n .input-size(@input-height-small; @padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @input-border-radius-small);\n }\n .form-control-static {\n height: @input-height-small;\n padding: @padding-small-vertical @padding-small-horizontal;\n font-size: @font-size-small;\n line-height: @line-height-small;\n min-height: (@line-height-computed + @font-size-small);\n }\n}\n\n.input-lg {\n .input-size(@input-height-large; @padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @input-border-radius-large);\n}\n.form-group-lg {\n .form-control {\n .input-size(@input-height-large; @padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @input-border-radius-large);\n }\n .form-control-static {\n height: @input-height-large;\n padding: @padding-large-vertical @padding-large-horizontal;\n font-size: @font-size-large;\n line-height: @line-height-large;\n min-height: (@line-height-computed + @font-size-large);\n }\n}\n\n\n// Form control feedback states\n//\n// Apply contextual and semantic states to individual form controls.\n\n.has-feedback {\n // Enable absolute positioning\n position: relative;\n\n // Ensure icons don't overlap text\n .form-control {\n padding-right: (@input-height-base * 1.25);\n }\n}\n// Feedback icon (requires .glyphicon classes)\n.form-control-feedback {\n position: absolute;\n top: 0;\n right: 0;\n z-index: 2; // Ensure icon is above input groups\n display: block;\n width: @input-height-base;\n height: @input-height-base;\n line-height: @input-height-base;\n text-align: center;\n pointer-events: none;\n}\n.input-lg + .form-control-feedback {\n width: @input-height-large;\n height: @input-height-large;\n line-height: @input-height-large;\n}\n.input-sm + .form-control-feedback {\n width: @input-height-small;\n height: @input-height-small;\n line-height: @input-height-small;\n}\n\n// Feedback states\n.has-success {\n .form-control-validation(@state-success-text; @state-success-text; @state-success-bg);\n}\n.has-warning {\n .form-control-validation(@state-warning-text; @state-warning-text; @state-warning-bg);\n}\n.has-error {\n .form-control-validation(@state-danger-text; @state-danger-text; @state-danger-bg);\n}\n\n// Reposition feedback icon if input has visible label above\n.has-feedback label {\n\n & ~ .form-control-feedback {\n top: (@line-height-computed + 5); // Height of the `label` and its margin\n }\n &.sr-only ~ .form-control-feedback {\n top: 0;\n }\n}\n\n\n// Help text\n//\n// Apply to any element you wish to create light text for placement immediately\n// below a form control. Use for general help, formatting, or instructional text.\n\n.help-block {\n display: block; // account for any element using help-block\n margin-top: 5px;\n margin-bottom: 10px;\n color: lighten(@text-color, 25%); // lighten the text some for contrast\n}\n\n\n// Inline forms\n//\n// Make forms appear inline(-block) by adding the `.form-inline` class. Inline\n// forms begin stacked on extra small (mobile) devices and then go inline when\n// viewports reach <768px.\n//\n// Requires wrapping inputs and labels with `.form-group` for proper display of\n// default HTML form controls and our custom form controls (e.g., input groups).\n//\n// Heads up! This is mixin-ed into `.navbar-form` in navbars.less.\n\n.form-inline {\n\n // Kick in the inline\n @media (min-width: @screen-sm-min) {\n // Inline-block all the things for \"inline\"\n .form-group {\n display: inline-block;\n margin-bottom: 0;\n vertical-align: middle;\n }\n\n // In navbar-form, allow folks to *not* use `.form-group`\n .form-control {\n display: inline-block;\n width: auto; // Prevent labels from stacking above inputs in `.form-group`\n vertical-align: middle;\n }\n\n // Make static controls behave like regular ones\n .form-control-static {\n display: inline-block;\n }\n\n .input-group {\n display: inline-table;\n vertical-align: middle;\n\n .input-group-addon,\n .input-group-btn,\n .form-control {\n width: auto;\n }\n }\n\n // Input groups need that 100% width though\n .input-group > .form-control {\n width: 100%;\n }\n\n .control-label {\n margin-bottom: 0;\n vertical-align: middle;\n }\n\n // Remove default margin on radios/checkboxes that were used for stacking, and\n // then undo the floating of radios and checkboxes to match.\n .radio,\n .checkbox {\n display: inline-block;\n margin-top: 0;\n margin-bottom: 0;\n vertical-align: middle;\n\n label {\n padding-left: 0;\n }\n }\n .radio input[type=\"radio\"],\n .checkbox input[type=\"checkbox\"] {\n position: relative;\n margin-left: 0;\n }\n\n // Re-override the feedback icon.\n .has-feedback .form-control-feedback {\n top: 0;\n }\n }\n}\n\n\n// Horizontal forms\n//\n// Horizontal forms are built on grid classes and allow you to create forms with\n// labels on the left and inputs on the right.\n\n.form-horizontal {\n\n // Consistent vertical alignment of radios and checkboxes\n //\n // Labels also get some reset styles, but that is scoped to a media query below.\n .radio,\n .checkbox,\n .radio-inline,\n .checkbox-inline {\n margin-top: 0;\n margin-bottom: 0;\n padding-top: (@padding-base-vertical + 1); // Default padding plus a border\n }\n // Account for padding we're adding to ensure the alignment and of help text\n // and other content below items\n .radio,\n .checkbox {\n min-height: (@line-height-computed + (@padding-base-vertical + 1));\n }\n\n // Make form groups behave like rows\n .form-group {\n .make-row();\n }\n\n // Reset spacing and right align labels, but scope to media queries so that\n // labels on narrow viewports stack the same as a default form example.\n @media (min-width: @screen-sm-min) {\n .control-label {\n text-align: right;\n margin-bottom: 0;\n padding-top: (@padding-base-vertical + 1); // Default padding plus a border\n }\n }\n\n // Validation states\n //\n // Reposition the icon because it's now within a grid column and columns have\n // `position: relative;` on them. Also accounts for the grid gutter padding.\n .has-feedback .form-control-feedback {\n right: (@grid-gutter-width / 2);\n }\n\n // Form group sizes\n //\n // Quick utility class for applying `.input-lg` and `.input-sm` styles to the\n // inputs and labels within a `.form-group`.\n .form-group-lg {\n @media (min-width: @screen-sm-min) {\n .control-label {\n padding-top: ((@padding-large-vertical * @line-height-large) + 1);\n }\n }\n }\n .form-group-sm {\n @media (min-width: @screen-sm-min) {\n .control-label {\n padding-top: (@padding-small-vertical + 1);\n }\n }\n }\n}\n","// Form validation states\n//\n// Used in forms.less to generate the form validation CSS for warnings, errors,\n// and successes.\n\n.form-control-validation(@text-color: #555; @border-color: #ccc; @background-color: #f5f5f5) {\n // Color the label and help text\n .help-block,\n .control-label,\n .radio,\n .checkbox,\n .radio-inline,\n .checkbox-inline,\n &.radio label,\n &.checkbox label,\n &.radio-inline label,\n &.checkbox-inline label {\n color: @text-color;\n }\n // Set the border and box shadow on specific inputs to match\n .form-control {\n border-color: @border-color;\n .box-shadow(inset 0 1px 1px rgba(0,0,0,.075)); // Redeclare so transitions work\n &:focus {\n border-color: darken(@border-color, 10%);\n @shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 6px lighten(@border-color, 20%);\n .box-shadow(@shadow);\n }\n }\n // Set validation states also for addons\n .input-group-addon {\n color: @text-color;\n border-color: @border-color;\n background-color: @background-color;\n }\n // Optional feedback icon\n .form-control-feedback {\n color: @text-color;\n }\n}\n\n\n// Form control focus state\n//\n// Generate a customized focus state and for any input with the specified color,\n// which defaults to the `@input-border-focus` variable.\n//\n// We highly encourage you to not customize the default value, but instead use\n// this to tweak colors on an as-needed basis. This aesthetic change is based on\n// WebKit's default styles, but applicable to a wider range of browsers. Its\n// usability and accessibility should be taken into account with any change.\n//\n// Example usage: change the default blue border and shadow to white for better\n// contrast against a dark gray background.\n.form-control-focus(@color: @input-border-focus) {\n @color-rgba: rgba(red(@color), green(@color), blue(@color), .6);\n &:focus {\n border-color: @color;\n outline: 0;\n .box-shadow(~\"inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px @{color-rgba}\");\n }\n}\n\n// Form control sizing\n//\n// Relative text size, padding, and border-radii changes for form controls. For\n// horizontal sizing, wrap controls in the predefined grid classes. `<select>`\n// element gets special love because it's special, and that's a fact!\n.input-size(@input-height; @padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {\n height: @input-height;\n padding: @padding-vertical @padding-horizontal;\n font-size: @font-size;\n line-height: @line-height;\n border-radius: @border-radius;\n\n select& {\n height: @input-height;\n line-height: @input-height;\n }\n\n textarea&,\n select[multiple]& {\n height: auto;\n }\n}\n","//\n// Buttons\n// --------------------------------------------------\n\n\n// Base styles\n// --------------------------------------------------\n\n.btn {\n display: inline-block;\n margin-bottom: 0; // For input.btn\n font-weight: @btn-font-weight;\n text-align: center;\n vertical-align: middle;\n touch-action: manipulation;\n cursor: pointer;\n background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214\n border: 1px solid transparent;\n white-space: nowrap;\n .button-size(@padding-base-vertical; @padding-base-horizontal; @font-size-base; @line-height-base; @border-radius-base);\n .user-select(none);\n\n &,\n &:active,\n &.active {\n &:focus,\n &.focus {\n .tab-focus();\n }\n }\n\n &:hover,\n &:focus,\n &.focus {\n color: @btn-default-color;\n text-decoration: none;\n }\n\n &:active,\n &.active {\n outline: 0;\n background-image: none;\n .box-shadow(inset 0 3px 5px rgba(0,0,0,.125));\n }\n\n &.disabled,\n &[disabled],\n fieldset[disabled] & {\n cursor: @cursor-disabled;\n pointer-events: none; // Future-proof disabling of clicks\n .opacity(.65);\n .box-shadow(none);\n }\n}\n\n\n// Alternate buttons\n// --------------------------------------------------\n\n.btn-default {\n .button-variant(@btn-default-color; @btn-default-bg; @btn-default-border);\n}\n.btn-primary {\n .button-variant(@btn-primary-color; @btn-primary-bg; @btn-primary-border);\n}\n// Success appears as green\n.btn-success {\n .button-variant(@btn-success-color; @btn-success-bg; @btn-success-border);\n}\n// Info appears as blue-green\n.btn-info {\n .button-variant(@btn-info-color; @btn-info-bg; @btn-info-border);\n}\n// Warning appears as orange\n.btn-warning {\n .button-variant(@btn-warning-color; @btn-warning-bg; @btn-warning-border);\n}\n// Danger and error appear as red\n.btn-danger {\n .button-variant(@btn-danger-color; @btn-danger-bg; @btn-danger-border);\n}\n\n\n// Link buttons\n// -------------------------\n\n// Make a button look and behave like a link\n.btn-link {\n color: @link-color;\n font-weight: normal;\n border-radius: 0;\n\n &,\n &:active,\n &.active,\n &[disabled],\n fieldset[disabled] & {\n background-color: transparent;\n .box-shadow(none);\n }\n &,\n &:hover,\n &:focus,\n &:active {\n border-color: transparent;\n }\n &:hover,\n &:focus {\n color: @link-hover-color;\n text-decoration: @link-hover-decoration;\n background-color: transparent;\n }\n &[disabled],\n fieldset[disabled] & {\n &:hover,\n &:focus {\n color: @btn-link-disabled-color;\n text-decoration: none;\n }\n }\n}\n\n\n// Button Sizes\n// --------------------------------------------------\n\n.btn-lg {\n // line-height: ensure even-numbered height of button next to large input\n .button-size(@padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @border-radius-large);\n}\n.btn-sm {\n // line-height: ensure proper height of button next to small input\n .button-size(@padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @border-radius-small);\n}\n.btn-xs {\n .button-size(@padding-xs-vertical; @padding-xs-horizontal; @font-size-small; @line-height-small; @border-radius-small);\n}\n\n\n// Block button\n// --------------------------------------------------\n\n.btn-block {\n display: block;\n width: 100%;\n}\n\n// Vertically space out multiple block buttons\n.btn-block + .btn-block {\n margin-top: 5px;\n}\n\n// Specificity overrides\ninput[type=\"submit\"],\ninput[type=\"reset\"],\ninput[type=\"button\"] {\n &.btn-block {\n width: 100%;\n }\n}\n","// Button variants\n//\n// Easily pump out default styles, as well as :hover, :focus, :active,\n// and disabled options for all buttons\n\n.button-variant(@color; @background; @border) {\n color: @color;\n background-color: @background;\n border-color: @border;\n\n &:hover,\n &:focus,\n &.focus,\n &:active,\n &.active,\n .open > .dropdown-toggle& {\n color: @color;\n background-color: darken(@background, 10%);\n border-color: darken(@border, 12%);\n }\n &:active,\n &.active,\n .open > .dropdown-toggle& {\n background-image: none;\n }\n &.disabled,\n &[disabled],\n fieldset[disabled] & {\n &,\n &:hover,\n &:focus,\n &.focus,\n &:active,\n &.active {\n background-color: @background;\n border-color: @border;\n }\n }\n\n .badge {\n color: @background;\n background-color: @color;\n }\n}\n\n// Button sizes\n.button-size(@padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {\n padding: @padding-vertical @padding-horizontal;\n font-size: @font-size;\n line-height: @line-height;\n border-radius: @border-radius;\n}\n","// Opacity\n\n.opacity(@opacity) {\n opacity: @opacity;\n // IE8 filter\n @opacity-ie: (@opacity * 100);\n filter: ~\"alpha(opacity=@{opacity-ie})\";\n}\n","//\n// Component animations\n// --------------------------------------------------\n\n// Heads up!\n//\n// We don't use the `.opacity()` mixin here since it causes a bug with text\n// fields in IE7-8. Source: https://github.com/twbs/bootstrap/pull/3552.\n\n.fade {\n opacity: 0;\n .transition(opacity .15s linear);\n &.in {\n opacity: 1;\n }\n}\n\n.collapse {\n display: none;\n\n &.in { display: block; }\n tr&.in { display: table-row; }\n tbody&.in { display: table-row-group; }\n}\n\n.collapsing {\n position: relative;\n height: 0;\n overflow: hidden;\n .transition-property(~\"height, visibility\");\n .transition-duration(.35s);\n .transition-timing-function(ease);\n}\n","//\n// Dropdown menus\n// --------------------------------------------------\n\n\n// Dropdown arrow/caret\n.caret {\n display: inline-block;\n width: 0;\n height: 0;\n margin-left: 2px;\n vertical-align: middle;\n border-top: @caret-width-base dashed;\n border-right: @caret-width-base solid transparent;\n border-left: @caret-width-base solid transparent;\n}\n\n// The dropdown wrapper (div)\n.dropup,\n.dropdown {\n position: relative;\n}\n\n// Prevent the focus on the dropdown toggle when closing dropdowns\n.dropdown-toggle:focus {\n outline: 0;\n}\n\n// The dropdown menu (ul)\n.dropdown-menu {\n position: absolute;\n top: 100%;\n left: 0;\n z-index: @zindex-dropdown;\n display: none; // none by default, but block on \"open\" of the menu\n float: left;\n min-width: 160px;\n padding: 5px 0;\n margin: 2px 0 0; // override default ul\n list-style: none;\n font-size: @font-size-base;\n text-align: left; // Ensures proper alignment if parent has it changed (e.g., modal footer)\n background-color: @dropdown-bg;\n border: 1px solid @dropdown-fallback-border; // IE8 fallback\n border: 1px solid @dropdown-border;\n border-radius: @border-radius-base;\n .box-shadow(0 6px 12px rgba(0,0,0,.175));\n background-clip: padding-box;\n\n // Aligns the dropdown menu to right\n //\n // Deprecated as of 3.1.0 in favor of `.dropdown-menu-[dir]`\n &.pull-right {\n right: 0;\n left: auto;\n }\n\n // Dividers (basically an hr) within the dropdown\n .divider {\n .nav-divider(@dropdown-divider-bg);\n }\n\n // Links within the dropdown menu\n > li > a {\n display: block;\n padding: 3px 20px;\n clear: both;\n font-weight: normal;\n line-height: @line-height-base;\n color: @dropdown-link-color;\n white-space: nowrap; // prevent links from randomly breaking onto new lines\n }\n}\n\n// Hover/Focus state\n.dropdown-menu > li > a {\n &:hover,\n &:focus {\n text-decoration: none;\n color: @dropdown-link-hover-color;\n background-color: @dropdown-link-hover-bg;\n }\n}\n\n// Active state\n.dropdown-menu > .active > a {\n &,\n &:hover,\n &:focus {\n color: @dropdown-link-active-color;\n text-decoration: none;\n outline: 0;\n background-color: @dropdown-link-active-bg;\n }\n}\n\n// Disabled state\n//\n// Gray out text and ensure the hover/focus state remains gray\n\n.dropdown-menu > .disabled > a {\n &,\n &:hover,\n &:focus {\n color: @dropdown-link-disabled-color;\n }\n\n // Nuke hover/focus effects\n &:hover,\n &:focus {\n text-decoration: none;\n background-color: transparent;\n background-image: none; // Remove CSS gradient\n .reset-filter();\n cursor: @cursor-disabled;\n }\n}\n\n// Open state for the dropdown\n.open {\n // Show the menu\n > .dropdown-menu {\n display: block;\n }\n\n // Remove the outline when :focus is triggered\n > a {\n outline: 0;\n }\n}\n\n// Menu positioning\n//\n// Add extra class to `.dropdown-menu` to flip the alignment of the dropdown\n// menu with the parent.\n.dropdown-menu-right {\n left: auto; // Reset the default from `.dropdown-menu`\n right: 0;\n}\n// With v3, we enabled auto-flipping if you have a dropdown within a right\n// aligned nav component. To enable the undoing of that, we provide an override\n// to restore the default dropdown menu alignment.\n//\n// This is only for left-aligning a dropdown menu within a `.navbar-right` or\n// `.pull-right` nav component.\n.dropdown-menu-left {\n left: 0;\n right: auto;\n}\n\n// Dropdown section headers\n.dropdown-header {\n display: block;\n padding: 3px 20px;\n font-size: @font-size-small;\n line-height: @line-height-base;\n color: @dropdown-header-color;\n white-space: nowrap; // as with > li > a\n}\n\n// Backdrop to catch body clicks on mobile, etc.\n.dropdown-backdrop {\n position: fixed;\n left: 0;\n right: 0;\n bottom: 0;\n top: 0;\n z-index: (@zindex-dropdown - 10);\n}\n\n// Right aligned dropdowns\n.pull-right > .dropdown-menu {\n right: 0;\n left: auto;\n}\n\n// Allow for dropdowns to go bottom up (aka, dropup-menu)\n//\n// Just add .dropup after the standard .dropdown class and you're set, bro.\n// TODO: abstract this so that the navbar fixed styles are not placed here?\n\n.dropup,\n.navbar-fixed-bottom .dropdown {\n // Reverse the caret\n .caret {\n border-top: 0;\n border-bottom: @caret-width-base solid;\n content: \"\";\n }\n // Different positioning for bottom up menu\n .dropdown-menu {\n top: auto;\n bottom: 100%;\n margin-bottom: 2px;\n }\n}\n\n\n// Component alignment\n//\n// Reiterate per navbar.less and the modified component alignment there.\n\n@media (min-width: @grid-float-breakpoint) {\n .navbar-right {\n .dropdown-menu {\n .dropdown-menu-right();\n }\n // Necessary for overrides of the default right aligned menu.\n // Will remove come v4 in all likelihood.\n .dropdown-menu-left {\n .dropdown-menu-left();\n }\n }\n}\n","// Horizontal dividers\n//\n// Dividers (basically an hr) within dropdowns and nav lists\n\n.nav-divider(@color: #e5e5e5) {\n height: 1px;\n margin: ((@line-height-computed / 2) - 1) 0;\n overflow: hidden;\n background-color: @color;\n}\n","// Reset filters for IE\n//\n// When you need to remove a gradient background, do not forget to use this to reset\n// the IE filter for IE9 and below.\n\n.reset-filter() {\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(enabled = false)\"));\n}\n","//\n// Button groups\n// --------------------------------------------------\n\n// Make the div behave like a button\n.btn-group,\n.btn-group-vertical {\n position: relative;\n display: inline-block;\n vertical-align: middle; // match .btn alignment given font-size hack above\n > .btn {\n position: relative;\n float: left;\n // Bring the \"active\" button to the front\n &:hover,\n &:focus,\n &:active,\n &.active {\n z-index: 2;\n }\n }\n}\n\n// Prevent double borders when buttons are next to each other\n.btn-group {\n .btn + .btn,\n .btn + .btn-group,\n .btn-group + .btn,\n .btn-group + .btn-group {\n margin-left: -1px;\n }\n}\n\n// Optional: Group multiple button groups together for a toolbar\n.btn-toolbar {\n margin-left: -5px; // Offset the first child's margin\n &:extend(.clearfix all);\n\n .btn-group,\n .input-group {\n float: left;\n }\n > .btn,\n > .btn-group,\n > .input-group {\n margin-left: 5px;\n }\n}\n\n.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {\n border-radius: 0;\n}\n\n// Set corners individual because sometimes a single button can be in a .btn-group and we need :first-child and :last-child to both match\n.btn-group > .btn:first-child {\n margin-left: 0;\n &:not(:last-child):not(.dropdown-toggle) {\n .border-right-radius(0);\n }\n}\n// Need .dropdown-toggle since :last-child doesn't apply given a .dropdown-menu immediately after it\n.btn-group > .btn:last-child:not(:first-child),\n.btn-group > .dropdown-toggle:not(:first-child) {\n .border-left-radius(0);\n}\n\n// Custom edits for including btn-groups within btn-groups (useful for including dropdown buttons within a btn-group)\n.btn-group > .btn-group {\n float: left;\n}\n.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {\n border-radius: 0;\n}\n.btn-group > .btn-group:first-child:not(:last-child) {\n > .btn:last-child,\n > .dropdown-toggle {\n .border-right-radius(0);\n }\n}\n.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {\n .border-left-radius(0);\n}\n\n// On active and open, don't show outline\n.btn-group .dropdown-toggle:active,\n.btn-group.open .dropdown-toggle {\n outline: 0;\n}\n\n\n// Sizing\n//\n// Remix the default button sizing classes into new ones for easier manipulation.\n\n.btn-group-xs > .btn { &:extend(.btn-xs); }\n.btn-group-sm > .btn { &:extend(.btn-sm); }\n.btn-group-lg > .btn { &:extend(.btn-lg); }\n\n\n// Split button dropdowns\n// ----------------------\n\n// Give the line between buttons some depth\n.btn-group > .btn + .dropdown-toggle {\n padding-left: 8px;\n padding-right: 8px;\n}\n.btn-group > .btn-lg + .dropdown-toggle {\n padding-left: 12px;\n padding-right: 12px;\n}\n\n// The clickable button for toggling the menu\n// Remove the gradient and set the same inset shadow as the :active state\n.btn-group.open .dropdown-toggle {\n .box-shadow(inset 0 3px 5px rgba(0,0,0,.125));\n\n // Show no shadow for `.btn-link` since it has no other button styles.\n &.btn-link {\n .box-shadow(none);\n }\n}\n\n\n// Reposition the caret\n.btn .caret {\n margin-left: 0;\n}\n// Carets in other button sizes\n.btn-lg .caret {\n border-width: @caret-width-large @caret-width-large 0;\n border-bottom-width: 0;\n}\n// Upside down carets for .dropup\n.dropup .btn-lg .caret {\n border-width: 0 @caret-width-large @caret-width-large;\n}\n\n\n// Vertical button groups\n// ----------------------\n\n.btn-group-vertical {\n > .btn,\n > .btn-group,\n > .btn-group > .btn {\n display: block;\n float: none;\n width: 100%;\n max-width: 100%;\n }\n\n // Clear floats so dropdown menus can be properly placed\n > .btn-group {\n &:extend(.clearfix all);\n > .btn {\n float: none;\n }\n }\n\n > .btn + .btn,\n > .btn + .btn-group,\n > .btn-group + .btn,\n > .btn-group + .btn-group {\n margin-top: -1px;\n margin-left: 0;\n }\n}\n\n.btn-group-vertical > .btn {\n &:not(:first-child):not(:last-child) {\n border-radius: 0;\n }\n &:first-child:not(:last-child) {\n border-top-right-radius: @border-radius-base;\n .border-bottom-radius(0);\n }\n &:last-child:not(:first-child) {\n border-bottom-left-radius: @border-radius-base;\n .border-top-radius(0);\n }\n}\n.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {\n border-radius: 0;\n}\n.btn-group-vertical > .btn-group:first-child:not(:last-child) {\n > .btn:last-child,\n > .dropdown-toggle {\n .border-bottom-radius(0);\n }\n}\n.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {\n .border-top-radius(0);\n}\n\n\n// Justified button groups\n// ----------------------\n\n.btn-group-justified {\n display: table;\n width: 100%;\n table-layout: fixed;\n border-collapse: separate;\n > .btn,\n > .btn-group {\n float: none;\n display: table-cell;\n width: 1%;\n }\n > .btn-group .btn {\n width: 100%;\n }\n\n > .btn-group .dropdown-menu {\n left: auto;\n }\n}\n\n\n// Checkbox and radio options\n//\n// In order to support the browser's form validation feedback, powered by the\n// `required` attribute, we have to \"hide\" the inputs via `clip`. We cannot use\n// `display: none;` or `visibility: hidden;` as that also hides the popover.\n// Simply visually hiding the inputs via `opacity` would leave them clickable in\n// certain cases which is prevented by using `clip` and `pointer-events`.\n// This way, we ensure a DOM element is visible to position the popover from.\n//\n// See https://github.com/twbs/bootstrap/pull/12794 and\n// https://github.com/twbs/bootstrap/pull/14559 for more information.\n\n[data-toggle=\"buttons\"] {\n > .btn,\n > .btn-group > .btn {\n input[type=\"radio\"],\n input[type=\"checkbox\"] {\n position: absolute;\n clip: rect(0,0,0,0);\n pointer-events: none;\n }\n }\n}\n","// Single side border-radius\n\n.border-top-radius(@radius) {\n border-top-right-radius: @radius;\n border-top-left-radius: @radius;\n}\n.border-right-radius(@radius) {\n border-bottom-right-radius: @radius;\n border-top-right-radius: @radius;\n}\n.border-bottom-radius(@radius) {\n border-bottom-right-radius: @radius;\n border-bottom-left-radius: @radius;\n}\n.border-left-radius(@radius) {\n border-bottom-left-radius: @radius;\n border-top-left-radius: @radius;\n}\n","//\n// Input groups\n// --------------------------------------------------\n\n// Base styles\n// -------------------------\n.input-group {\n position: relative; // For dropdowns\n display: table;\n border-collapse: separate; // prevent input groups from inheriting border styles from table cells when placed within a table\n\n // Undo padding and float of grid classes\n &[class*=\"col-\"] {\n float: none;\n padding-left: 0;\n padding-right: 0;\n }\n\n .form-control {\n // Ensure that the input is always above the *appended* addon button for\n // proper border colors.\n position: relative;\n z-index: 2;\n\n // IE9 fubars the placeholder attribute in text inputs and the arrows on\n // select elements in input groups. To fix it, we float the input. Details:\n // https://github.com/twbs/bootstrap/issues/11561#issuecomment-28936855\n float: left;\n\n width: 100%;\n margin-bottom: 0;\n }\n}\n\n// Sizing options\n//\n// Remix the default form control sizing classes into new ones for easier\n// manipulation.\n\n.input-group-lg > .form-control,\n.input-group-lg > .input-group-addon,\n.input-group-lg > .input-group-btn > .btn {\n .input-lg();\n}\n.input-group-sm > .form-control,\n.input-group-sm > .input-group-addon,\n.input-group-sm > .input-group-btn > .btn {\n .input-sm();\n}\n\n\n// Display as table-cell\n// -------------------------\n.input-group-addon,\n.input-group-btn,\n.input-group .form-control {\n display: table-cell;\n\n &:not(:first-child):not(:last-child) {\n border-radius: 0;\n }\n}\n// Addon and addon wrapper for buttons\n.input-group-addon,\n.input-group-btn {\n width: 1%;\n white-space: nowrap;\n vertical-align: middle; // Match the inputs\n}\n\n// Text input groups\n// -------------------------\n.input-group-addon {\n padding: @padding-base-vertical @padding-base-horizontal;\n font-size: @font-size-base;\n font-weight: normal;\n line-height: 1;\n color: @input-color;\n text-align: center;\n background-color: @input-group-addon-bg;\n border: 1px solid @input-group-addon-border-color;\n border-radius: @border-radius-base;\n\n // Sizing\n &.input-sm {\n padding: @padding-small-vertical @padding-small-horizontal;\n font-size: @font-size-small;\n border-radius: @border-radius-small;\n }\n &.input-lg {\n padding: @padding-large-vertical @padding-large-horizontal;\n font-size: @font-size-large;\n border-radius: @border-radius-large;\n }\n\n // Nuke default margins from checkboxes and radios to vertically center within.\n input[type=\"radio\"],\n input[type=\"checkbox\"] {\n margin-top: 0;\n }\n}\n\n// Reset rounded corners\n.input-group .form-control:first-child,\n.input-group-addon:first-child,\n.input-group-btn:first-child > .btn,\n.input-group-btn:first-child > .btn-group > .btn,\n.input-group-btn:first-child > .dropdown-toggle,\n.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),\n.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {\n .border-right-radius(0);\n}\n.input-group-addon:first-child {\n border-right: 0;\n}\n.input-group .form-control:last-child,\n.input-group-addon:last-child,\n.input-group-btn:last-child > .btn,\n.input-group-btn:last-child > .btn-group > .btn,\n.input-group-btn:last-child > .dropdown-toggle,\n.input-group-btn:first-child > .btn:not(:first-child),\n.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {\n .border-left-radius(0);\n}\n.input-group-addon:last-child {\n border-left: 0;\n}\n\n// Button input groups\n// -------------------------\n.input-group-btn {\n position: relative;\n // Jankily prevent input button groups from wrapping with `white-space` and\n // `font-size` in combination with `inline-block` on buttons.\n font-size: 0;\n white-space: nowrap;\n\n // Negative margin for spacing, position for bringing hovered/focused/actived\n // element above the siblings.\n > .btn {\n position: relative;\n + .btn {\n margin-left: -1px;\n }\n // Bring the \"active\" button to the front\n &:hover,\n &:focus,\n &:active {\n z-index: 2;\n }\n }\n\n // Negative margin to only have a 1px border between the two\n &:first-child {\n > .btn,\n > .btn-group {\n margin-right: -1px;\n }\n }\n &:last-child {\n > .btn,\n > .btn-group {\n margin-left: -1px;\n }\n }\n}\n","//\n// Navs\n// --------------------------------------------------\n\n\n// Base class\n// --------------------------------------------------\n\n.nav {\n margin-bottom: 0;\n padding-left: 0; // Override default ul/ol\n list-style: none;\n &:extend(.clearfix all);\n\n > li {\n position: relative;\n display: block;\n\n > a {\n position: relative;\n display: block;\n padding: @nav-link-padding;\n &:hover,\n &:focus {\n text-decoration: none;\n background-color: @nav-link-hover-bg;\n }\n }\n\n // Disabled state sets text to gray and nukes hover/tab effects\n &.disabled > a {\n color: @nav-disabled-link-color;\n\n &:hover,\n &:focus {\n color: @nav-disabled-link-hover-color;\n text-decoration: none;\n background-color: transparent;\n cursor: @cursor-disabled;\n }\n }\n }\n\n // Open dropdowns\n .open > a {\n &,\n &:hover,\n &:focus {\n background-color: @nav-link-hover-bg;\n border-color: @link-color;\n }\n }\n\n // Nav dividers (deprecated with v3.0.1)\n //\n // This should have been removed in v3 with the dropping of `.nav-list`, but\n // we missed it. We don't currently support this anywhere, but in the interest\n // of maintaining backward compatibility in case you use it, it's deprecated.\n .nav-divider {\n .nav-divider();\n }\n\n // Prevent IE8 from misplacing imgs\n //\n // See https://github.com/h5bp/html5-boilerplate/issues/984#issuecomment-3985989\n > li > a > img {\n max-width: none;\n }\n}\n\n\n// Tabs\n// -------------------------\n\n// Give the tabs something to sit on\n.nav-tabs {\n border-bottom: 1px solid @nav-tabs-border-color;\n > li {\n float: left;\n // Make the list-items overlay the bottom border\n margin-bottom: -1px;\n\n // Actual tabs (as links)\n > a {\n margin-right: 2px;\n line-height: @line-height-base;\n border: 1px solid transparent;\n border-radius: @border-radius-base @border-radius-base 0 0;\n &:hover {\n border-color: @nav-tabs-link-hover-border-color @nav-tabs-link-hover-border-color @nav-tabs-border-color;\n }\n }\n\n // Active state, and its :hover to override normal :hover\n &.active > a {\n &,\n &:hover,\n &:focus {\n color: @nav-tabs-active-link-hover-color;\n background-color: @nav-tabs-active-link-hover-bg;\n border: 1px solid @nav-tabs-active-link-hover-border-color;\n border-bottom-color: transparent;\n cursor: default;\n }\n }\n }\n // pulling this in mainly for less shorthand\n &.nav-justified {\n .nav-justified();\n .nav-tabs-justified();\n }\n}\n\n\n// Pills\n// -------------------------\n.nav-pills {\n > li {\n float: left;\n\n // Links rendered as pills\n > a {\n border-radius: @nav-pills-border-radius;\n }\n + li {\n margin-left: 2px;\n }\n\n // Active state\n &.active > a {\n &,\n &:hover,\n &:focus {\n color: @nav-pills-active-link-hover-color;\n background-color: @nav-pills-active-link-hover-bg;\n }\n }\n }\n}\n\n\n// Stacked pills\n.nav-stacked {\n > li {\n float: none;\n + li {\n margin-top: 2px;\n margin-left: 0; // no need for this gap between nav items\n }\n }\n}\n\n\n// Nav variations\n// --------------------------------------------------\n\n// Justified nav links\n// -------------------------\n\n.nav-justified {\n width: 100%;\n\n > li {\n float: none;\n > a {\n text-align: center;\n margin-bottom: 5px;\n }\n }\n\n > .dropdown .dropdown-menu {\n top: auto;\n left: auto;\n }\n\n @media (min-width: @screen-sm-min) {\n > li {\n display: table-cell;\n width: 1%;\n > a {\n margin-bottom: 0;\n }\n }\n }\n}\n\n// Move borders to anchors instead of bottom of list\n//\n// Mixin for adding on top the shared `.nav-justified` styles for our tabs\n.nav-tabs-justified {\n border-bottom: 0;\n\n > li > a {\n // Override margin from .nav-tabs\n margin-right: 0;\n border-radius: @border-radius-base;\n }\n\n > .active > a,\n > .active > a:hover,\n > .active > a:focus {\n border: 1px solid @nav-tabs-justified-link-border-color;\n }\n\n @media (min-width: @screen-sm-min) {\n > li > a {\n border-bottom: 1px solid @nav-tabs-justified-link-border-color;\n border-radius: @border-radius-base @border-radius-base 0 0;\n }\n > .active > a,\n > .active > a:hover,\n > .active > a:focus {\n border-bottom-color: @nav-tabs-justified-active-link-border-color;\n }\n }\n}\n\n\n// Tabbable tabs\n// -------------------------\n\n// Hide tabbable panes to start, show them when `.active`\n.tab-content {\n > .tab-pane {\n display: none;\n }\n > .active {\n display: block;\n }\n}\n\n\n// Dropdowns\n// -------------------------\n\n// Specific dropdowns\n.nav-tabs .dropdown-menu {\n // make dropdown border overlap tab border\n margin-top: -1px;\n // Remove the top rounded corners here since there is a hard edge above the menu\n .border-top-radius(0);\n}\n","//\n// Navbars\n// --------------------------------------------------\n\n\n// Wrapper and base class\n//\n// Provide a static navbar from which we expand to create full-width, fixed, and\n// other navbar variations.\n\n.navbar {\n position: relative;\n min-height: @navbar-height; // Ensure a navbar always shows (e.g., without a .navbar-brand in collapsed mode)\n margin-bottom: @navbar-margin-bottom;\n border: 1px solid transparent;\n\n // Prevent floats from breaking the navbar\n &:extend(.clearfix all);\n\n @media (min-width: @grid-float-breakpoint) {\n border-radius: @navbar-border-radius;\n }\n}\n\n\n// Navbar heading\n//\n// Groups `.navbar-brand` and `.navbar-toggle` into a single component for easy\n// styling of responsive aspects.\n\n.navbar-header {\n &:extend(.clearfix all);\n\n @media (min-width: @grid-float-breakpoint) {\n float: left;\n }\n}\n\n\n// Navbar collapse (body)\n//\n// Group your navbar content into this for easy collapsing and expanding across\n// various device sizes. By default, this content is collapsed when <768px, but\n// will expand past that for a horizontal display.\n//\n// To start (on mobile devices) the navbar links, forms, and buttons are stacked\n// vertically and include a `max-height` to overflow in case you have too much\n// content for the user's viewport.\n\n.navbar-collapse {\n overflow-x: visible;\n padding-right: @navbar-padding-horizontal;\n padding-left: @navbar-padding-horizontal;\n border-top: 1px solid transparent;\n box-shadow: inset 0 1px 0 rgba(255,255,255,.1);\n &:extend(.clearfix all);\n -webkit-overflow-scrolling: touch;\n\n &.in {\n overflow-y: auto;\n }\n\n @media (min-width: @grid-float-breakpoint) {\n width: auto;\n border-top: 0;\n box-shadow: none;\n\n &.collapse {\n display: block !important;\n height: auto !important;\n padding-bottom: 0; // Override default setting\n overflow: visible !important;\n }\n\n &.in {\n overflow-y: visible;\n }\n\n // Undo the collapse side padding for navbars with containers to ensure\n // alignment of right-aligned contents.\n .navbar-fixed-top &,\n .navbar-static-top &,\n .navbar-fixed-bottom & {\n padding-left: 0;\n padding-right: 0;\n }\n }\n}\n\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n .navbar-collapse {\n max-height: @navbar-collapse-max-height;\n\n @media (max-device-width: @screen-xs-min) and (orientation: landscape) {\n max-height: 200px;\n }\n }\n}\n\n\n// Both navbar header and collapse\n//\n// When a container is present, change the behavior of the header and collapse.\n\n.container,\n.container-fluid {\n > .navbar-header,\n > .navbar-collapse {\n margin-right: -@navbar-padding-horizontal;\n margin-left: -@navbar-padding-horizontal;\n\n @media (min-width: @grid-float-breakpoint) {\n margin-right: 0;\n margin-left: 0;\n }\n }\n}\n\n\n//\n// Navbar alignment options\n//\n// Display the navbar across the entirety of the page or fixed it to the top or\n// bottom of the page.\n\n// Static top (unfixed, but 100% wide) navbar\n.navbar-static-top {\n z-index: @zindex-navbar;\n border-width: 0 0 1px;\n\n @media (min-width: @grid-float-breakpoint) {\n border-radius: 0;\n }\n}\n\n// Fix the top/bottom navbars when screen real estate supports it\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n position: fixed;\n right: 0;\n left: 0;\n z-index: @zindex-navbar-fixed;\n\n // Undo the rounded corners\n @media (min-width: @grid-float-breakpoint) {\n border-radius: 0;\n }\n}\n.navbar-fixed-top {\n top: 0;\n border-width: 0 0 1px;\n}\n.navbar-fixed-bottom {\n bottom: 0;\n margin-bottom: 0; // override .navbar defaults\n border-width: 1px 0 0;\n}\n\n\n// Brand/project name\n\n.navbar-brand {\n float: left;\n padding: @navbar-padding-vertical @navbar-padding-horizontal;\n font-size: @font-size-large;\n line-height: @line-height-computed;\n height: @navbar-height;\n\n &:hover,\n &:focus {\n text-decoration: none;\n }\n\n > img {\n display: block;\n }\n\n @media (min-width: @grid-float-breakpoint) {\n .navbar > .container &,\n .navbar > .container-fluid & {\n margin-left: -@navbar-padding-horizontal;\n }\n }\n}\n\n\n// Navbar toggle\n//\n// Custom button for toggling the `.navbar-collapse`, powered by the collapse\n// JavaScript plugin.\n\n.navbar-toggle {\n position: relative;\n float: right;\n margin-right: @navbar-padding-horizontal;\n padding: 9px 10px;\n .navbar-vertical-align(34px);\n background-color: transparent;\n background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214\n border: 1px solid transparent;\n border-radius: @border-radius-base;\n\n // We remove the `outline` here, but later compensate by attaching `:hover`\n // styles to `:focus`.\n &:focus {\n outline: 0;\n }\n\n // Bars\n .icon-bar {\n display: block;\n width: 22px;\n height: 2px;\n border-radius: 1px;\n }\n .icon-bar + .icon-bar {\n margin-top: 4px;\n }\n\n @media (min-width: @grid-float-breakpoint) {\n display: none;\n }\n}\n\n\n// Navbar nav links\n//\n// Builds on top of the `.nav` components with its own modifier class to make\n// the nav the full height of the horizontal nav (above 768px).\n\n.navbar-nav {\n margin: (@navbar-padding-vertical / 2) -@navbar-padding-horizontal;\n\n > li > a {\n padding-top: 10px;\n padding-bottom: 10px;\n line-height: @line-height-computed;\n }\n\n @media (max-width: @grid-float-breakpoint-max) {\n // Dropdowns get custom display when collapsed\n .open .dropdown-menu {\n position: static;\n float: none;\n width: auto;\n margin-top: 0;\n background-color: transparent;\n border: 0;\n box-shadow: none;\n > li > a,\n .dropdown-header {\n padding: 5px 15px 5px 25px;\n }\n > li > a {\n line-height: @line-height-computed;\n &:hover,\n &:focus {\n background-image: none;\n }\n }\n }\n }\n\n // Uncollapse the nav\n @media (min-width: @grid-float-breakpoint) {\n float: left;\n margin: 0;\n\n > li {\n float: left;\n > a {\n padding-top: @navbar-padding-vertical;\n padding-bottom: @navbar-padding-vertical;\n }\n }\n }\n}\n\n\n// Navbar form\n//\n// Extension of the `.form-inline` with some extra flavor for optimum display in\n// our navbars.\n\n.navbar-form {\n margin-left: -@navbar-padding-horizontal;\n margin-right: -@navbar-padding-horizontal;\n padding: 10px @navbar-padding-horizontal;\n border-top: 1px solid transparent;\n border-bottom: 1px solid transparent;\n @shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);\n .box-shadow(@shadow);\n\n // Mixin behavior for optimum display\n .form-inline();\n\n .form-group {\n @media (max-width: @grid-float-breakpoint-max) {\n margin-bottom: 5px;\n\n &:last-child {\n margin-bottom: 0;\n }\n }\n }\n\n // Vertically center in expanded, horizontal navbar\n .navbar-vertical-align(@input-height-base);\n\n // Undo 100% width for pull classes\n @media (min-width: @grid-float-breakpoint) {\n width: auto;\n border: 0;\n margin-left: 0;\n margin-right: 0;\n padding-top: 0;\n padding-bottom: 0;\n .box-shadow(none);\n }\n}\n\n\n// Dropdown menus\n\n// Menu position and menu carets\n.navbar-nav > li > .dropdown-menu {\n margin-top: 0;\n .border-top-radius(0);\n}\n// Menu position and menu caret support for dropups via extra dropup class\n.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {\n margin-bottom: 0;\n .border-top-radius(@navbar-border-radius);\n .border-bottom-radius(0);\n}\n\n\n// Buttons in navbars\n//\n// Vertically center a button within a navbar (when *not* in a form).\n\n.navbar-btn {\n .navbar-vertical-align(@input-height-base);\n\n &.btn-sm {\n .navbar-vertical-align(@input-height-small);\n }\n &.btn-xs {\n .navbar-vertical-align(22);\n }\n}\n\n\n// Text in navbars\n//\n// Add a class to make any element properly align itself vertically within the navbars.\n\n.navbar-text {\n .navbar-vertical-align(@line-height-computed);\n\n @media (min-width: @grid-float-breakpoint) {\n float: left;\n margin-left: @navbar-padding-horizontal;\n margin-right: @navbar-padding-horizontal;\n }\n}\n\n\n// Component alignment\n//\n// Repurpose the pull utilities as their own navbar utilities to avoid specificity\n// issues with parents and chaining. Only do this when the navbar is uncollapsed\n// though so that navbar contents properly stack and align in mobile.\n//\n// Declared after the navbar components to ensure more specificity on the margins.\n\n@media (min-width: @grid-float-breakpoint) {\n .navbar-left { .pull-left(); }\n .navbar-right {\n .pull-right();\n margin-right: -@navbar-padding-horizontal;\n\n ~ .navbar-right {\n margin-right: 0;\n }\n }\n}\n\n\n// Alternate navbars\n// --------------------------------------------------\n\n// Default navbar\n.navbar-default {\n background-color: @navbar-default-bg;\n border-color: @navbar-default-border;\n\n .navbar-brand {\n color: @navbar-default-brand-color;\n &:hover,\n &:focus {\n color: @navbar-default-brand-hover-color;\n background-color: @navbar-default-brand-hover-bg;\n }\n }\n\n .navbar-text {\n color: @navbar-default-color;\n }\n\n .navbar-nav {\n > li > a {\n color: @navbar-default-link-color;\n\n &:hover,\n &:focus {\n color: @navbar-default-link-hover-color;\n background-color: @navbar-default-link-hover-bg;\n }\n }\n > .active > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-default-link-active-color;\n background-color: @navbar-default-link-active-bg;\n }\n }\n > .disabled > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-default-link-disabled-color;\n background-color: @navbar-default-link-disabled-bg;\n }\n }\n }\n\n .navbar-toggle {\n border-color: @navbar-default-toggle-border-color;\n &:hover,\n &:focus {\n background-color: @navbar-default-toggle-hover-bg;\n }\n .icon-bar {\n background-color: @navbar-default-toggle-icon-bar-bg;\n }\n }\n\n .navbar-collapse,\n .navbar-form {\n border-color: @navbar-default-border;\n }\n\n // Dropdown menu items\n .navbar-nav {\n // Remove background color from open dropdown\n > .open > a {\n &,\n &:hover,\n &:focus {\n background-color: @navbar-default-link-active-bg;\n color: @navbar-default-link-active-color;\n }\n }\n\n @media (max-width: @grid-float-breakpoint-max) {\n // Dropdowns get custom display when collapsed\n .open .dropdown-menu {\n > li > a {\n color: @navbar-default-link-color;\n &:hover,\n &:focus {\n color: @navbar-default-link-hover-color;\n background-color: @navbar-default-link-hover-bg;\n }\n }\n > .active > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-default-link-active-color;\n background-color: @navbar-default-link-active-bg;\n }\n }\n > .disabled > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-default-link-disabled-color;\n background-color: @navbar-default-link-disabled-bg;\n }\n }\n }\n }\n }\n\n\n // Links in navbars\n //\n // Add a class to ensure links outside the navbar nav are colored correctly.\n\n .navbar-link {\n color: @navbar-default-link-color;\n &:hover {\n color: @navbar-default-link-hover-color;\n }\n }\n\n .btn-link {\n color: @navbar-default-link-color;\n &:hover,\n &:focus {\n color: @navbar-default-link-hover-color;\n }\n &[disabled],\n fieldset[disabled] & {\n &:hover,\n &:focus {\n color: @navbar-default-link-disabled-color;\n }\n }\n }\n}\n\n// Inverse navbar\n\n.navbar-inverse {\n background-color: @navbar-inverse-bg;\n border-color: @navbar-inverse-border;\n\n .navbar-brand {\n color: @navbar-inverse-brand-color;\n &:hover,\n &:focus {\n color: @navbar-inverse-brand-hover-color;\n background-color: @navbar-inverse-brand-hover-bg;\n }\n }\n\n .navbar-text {\n color: @navbar-inverse-color;\n }\n\n .navbar-nav {\n > li > a {\n color: @navbar-inverse-link-color;\n\n &:hover,\n &:focus {\n color: @navbar-inverse-link-hover-color;\n background-color: @navbar-inverse-link-hover-bg;\n }\n }\n > .active > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-inverse-link-active-color;\n background-color: @navbar-inverse-link-active-bg;\n }\n }\n > .disabled > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-inverse-link-disabled-color;\n background-color: @navbar-inverse-link-disabled-bg;\n }\n }\n }\n\n // Darken the responsive nav toggle\n .navbar-toggle {\n border-color: @navbar-inverse-toggle-border-color;\n &:hover,\n &:focus {\n background-color: @navbar-inverse-toggle-hover-bg;\n }\n .icon-bar {\n background-color: @navbar-inverse-toggle-icon-bar-bg;\n }\n }\n\n .navbar-collapse,\n .navbar-form {\n border-color: darken(@navbar-inverse-bg, 7%);\n }\n\n // Dropdowns\n .navbar-nav {\n > .open > a {\n &,\n &:hover,\n &:focus {\n background-color: @navbar-inverse-link-active-bg;\n color: @navbar-inverse-link-active-color;\n }\n }\n\n @media (max-width: @grid-float-breakpoint-max) {\n // Dropdowns get custom display\n .open .dropdown-menu {\n > .dropdown-header {\n border-color: @navbar-inverse-border;\n }\n .divider {\n background-color: @navbar-inverse-border;\n }\n > li > a {\n color: @navbar-inverse-link-color;\n &:hover,\n &:focus {\n color: @navbar-inverse-link-hover-color;\n background-color: @navbar-inverse-link-hover-bg;\n }\n }\n > .active > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-inverse-link-active-color;\n background-color: @navbar-inverse-link-active-bg;\n }\n }\n > .disabled > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-inverse-link-disabled-color;\n background-color: @navbar-inverse-link-disabled-bg;\n }\n }\n }\n }\n }\n\n .navbar-link {\n color: @navbar-inverse-link-color;\n &:hover {\n color: @navbar-inverse-link-hover-color;\n }\n }\n\n .btn-link {\n color: @navbar-inverse-link-color;\n &:hover,\n &:focus {\n color: @navbar-inverse-link-hover-color;\n }\n &[disabled],\n fieldset[disabled] & {\n &:hover,\n &:focus {\n color: @navbar-inverse-link-disabled-color;\n }\n }\n }\n}\n","// Navbar vertical align\n//\n// Vertically center elements in the navbar.\n// Example: an element has a height of 30px, so write out `.navbar-vertical-align(30px);` to calculate the appropriate top margin.\n\n.navbar-vertical-align(@element-height) {\n margin-top: ((@navbar-height - @element-height) / 2);\n margin-bottom: ((@navbar-height - @element-height) / 2);\n}\n","//\n// Utility classes\n// --------------------------------------------------\n\n\n// Floats\n// -------------------------\n\n.clearfix {\n .clearfix();\n}\n.center-block {\n .center-block();\n}\n.pull-right {\n float: right !important;\n}\n.pull-left {\n float: left !important;\n}\n\n\n// Toggling content\n// -------------------------\n\n// Note: Deprecated .hide in favor of .hidden or .sr-only (as appropriate) in v3.0.1\n.hide {\n display: none !important;\n}\n.show {\n display: block !important;\n}\n.invisible {\n visibility: hidden;\n}\n.text-hide {\n .text-hide();\n}\n\n\n// Hide from screenreaders and browsers\n//\n// Credit: HTML5 Boilerplate\n\n.hidden {\n display: none !important;\n}\n\n\n// For Affix plugin\n// -------------------------\n\n.affix {\n position: fixed;\n}\n","//\n// Breadcrumbs\n// --------------------------------------------------\n\n\n.breadcrumb {\n padding: @breadcrumb-padding-vertical @breadcrumb-padding-horizontal;\n margin-bottom: @line-height-computed;\n list-style: none;\n background-color: @breadcrumb-bg;\n border-radius: @border-radius-base;\n\n > li {\n display: inline-block;\n\n + li:before {\n content: \"@{breadcrumb-separator}\\00a0\"; // Unicode space added since inline-block means non-collapsing white-space\n padding: 0 5px;\n color: @breadcrumb-color;\n }\n }\n\n > .active {\n color: @breadcrumb-active-color;\n }\n}\n","//\n// Pagination (multiple pages)\n// --------------------------------------------------\n.pagination {\n display: inline-block;\n padding-left: 0;\n margin: @line-height-computed 0;\n border-radius: @border-radius-base;\n\n > li {\n display: inline; // Remove list-style and block-level defaults\n > a,\n > span {\n position: relative;\n float: left; // Collapse white-space\n padding: @padding-base-vertical @padding-base-horizontal;\n line-height: @line-height-base;\n text-decoration: none;\n color: @pagination-color;\n background-color: @pagination-bg;\n border: 1px solid @pagination-border;\n margin-left: -1px;\n }\n &:first-child {\n > a,\n > span {\n margin-left: 0;\n .border-left-radius(@border-radius-base);\n }\n }\n &:last-child {\n > a,\n > span {\n .border-right-radius(@border-radius-base);\n }\n }\n }\n\n > li > a,\n > li > span {\n &:hover,\n &:focus {\n color: @pagination-hover-color;\n background-color: @pagination-hover-bg;\n border-color: @pagination-hover-border;\n }\n }\n\n > .active > a,\n > .active > span {\n &,\n &:hover,\n &:focus {\n z-index: 2;\n color: @pagination-active-color;\n background-color: @pagination-active-bg;\n border-color: @pagination-active-border;\n cursor: default;\n }\n }\n\n > .disabled {\n > span,\n > span:hover,\n > span:focus,\n > a,\n > a:hover,\n > a:focus {\n color: @pagination-disabled-color;\n background-color: @pagination-disabled-bg;\n border-color: @pagination-disabled-border;\n cursor: @cursor-disabled;\n }\n }\n}\n\n// Sizing\n// --------------------------------------------------\n\n// Large\n.pagination-lg {\n .pagination-size(@padding-large-vertical; @padding-large-horizontal; @font-size-large; @border-radius-large);\n}\n\n// Small\n.pagination-sm {\n .pagination-size(@padding-small-vertical; @padding-small-horizontal; @font-size-small; @border-radius-small);\n}\n","// Pagination\n\n.pagination-size(@padding-vertical; @padding-horizontal; @font-size; @border-radius) {\n > li {\n > a,\n > span {\n padding: @padding-vertical @padding-horizontal;\n font-size: @font-size;\n }\n &:first-child {\n > a,\n > span {\n .border-left-radius(@border-radius);\n }\n }\n &:last-child {\n > a,\n > span {\n .border-right-radius(@border-radius);\n }\n }\n }\n}\n","//\n// Pager pagination\n// --------------------------------------------------\n\n\n.pager {\n padding-left: 0;\n margin: @line-height-computed 0;\n list-style: none;\n text-align: center;\n &:extend(.clearfix all);\n li {\n display: inline;\n > a,\n > span {\n display: inline-block;\n padding: 5px 14px;\n background-color: @pager-bg;\n border: 1px solid @pager-border;\n border-radius: @pager-border-radius;\n }\n\n > a:hover,\n > a:focus {\n text-decoration: none;\n background-color: @pager-hover-bg;\n }\n }\n\n .next {\n > a,\n > span {\n float: right;\n }\n }\n\n .previous {\n > a,\n > span {\n float: left;\n }\n }\n\n .disabled {\n > a,\n > a:hover,\n > a:focus,\n > span {\n color: @pager-disabled-color;\n background-color: @pager-bg;\n cursor: @cursor-disabled;\n }\n }\n}\n","//\n// Labels\n// --------------------------------------------------\n\n.label {\n display: inline;\n padding: .2em .6em .3em;\n font-size: 75%;\n font-weight: bold;\n line-height: 1;\n color: @label-color;\n text-align: center;\n white-space: nowrap;\n vertical-align: baseline;\n border-radius: .25em;\n\n // Add hover effects, but only for links\n a& {\n &:hover,\n &:focus {\n color: @label-link-hover-color;\n text-decoration: none;\n cursor: pointer;\n }\n }\n\n // Empty labels collapse automatically (not available in IE8)\n &:empty {\n display: none;\n }\n\n // Quick fix for labels in buttons\n .btn & {\n position: relative;\n top: -1px;\n }\n}\n\n// Colors\n// Contextual variations (linked labels get darker on :hover)\n\n.label-default {\n .label-variant(@label-default-bg);\n}\n\n.label-primary {\n .label-variant(@label-primary-bg);\n}\n\n.label-success {\n .label-variant(@label-success-bg);\n}\n\n.label-info {\n .label-variant(@label-info-bg);\n}\n\n.label-warning {\n .label-variant(@label-warning-bg);\n}\n\n.label-danger {\n .label-variant(@label-danger-bg);\n}\n","// Labels\n\n.label-variant(@color) {\n background-color: @color;\n\n &[href] {\n &:hover,\n &:focus {\n background-color: darken(@color, 10%);\n }\n }\n}\n","//\n// Badges\n// --------------------------------------------------\n\n\n// Base class\n.badge {\n display: inline-block;\n min-width: 10px;\n padding: 3px 7px;\n font-size: @font-size-small;\n font-weight: @badge-font-weight;\n color: @badge-color;\n line-height: @badge-line-height;\n vertical-align: baseline;\n white-space: nowrap;\n text-align: center;\n background-color: @badge-bg;\n border-radius: @badge-border-radius;\n\n // Empty badges collapse automatically (not available in IE8)\n &:empty {\n display: none;\n }\n\n // Quick fix for badges in buttons\n .btn & {\n position: relative;\n top: -1px;\n }\n\n .btn-xs &,\n .btn-group-xs > .btn & {\n top: 0;\n padding: 1px 5px;\n }\n\n // Hover state, but only for links\n a& {\n &:hover,\n &:focus {\n color: @badge-link-hover-color;\n text-decoration: none;\n cursor: pointer;\n }\n }\n\n // Account for badges in navs\n .list-group-item.active > &,\n .nav-pills > .active > a > & {\n color: @badge-active-color;\n background-color: @badge-active-bg;\n }\n\n .list-group-item > & {\n float: right;\n }\n\n .list-group-item > & + & {\n margin-right: 5px;\n }\n\n .nav-pills > li > a > & {\n margin-left: 3px;\n }\n}\n","//\n// Jumbotron\n// --------------------------------------------------\n\n\n.jumbotron {\n padding: @jumbotron-padding (@jumbotron-padding / 2);\n margin-bottom: @jumbotron-padding;\n color: @jumbotron-color;\n background-color: @jumbotron-bg;\n\n h1,\n .h1 {\n color: @jumbotron-heading-color;\n }\n\n p {\n margin-bottom: (@jumbotron-padding / 2);\n font-size: @jumbotron-font-size;\n font-weight: 200;\n }\n\n > hr {\n border-top-color: darken(@jumbotron-bg, 10%);\n }\n\n .container &,\n .container-fluid & {\n border-radius: @border-radius-large; // Only round corners at higher resolutions if contained in a container\n }\n\n .container {\n max-width: 100%;\n }\n\n @media screen and (min-width: @screen-sm-min) {\n padding: (@jumbotron-padding * 1.6) 0;\n\n .container &,\n .container-fluid & {\n padding-left: (@jumbotron-padding * 2);\n padding-right: (@jumbotron-padding * 2);\n }\n\n h1,\n .h1 {\n font-size: (@font-size-base * 4.5);\n }\n }\n}\n","//\n// Thumbnails\n// --------------------------------------------------\n\n\n// Mixin and adjust the regular image class\n.thumbnail {\n display: block;\n padding: @thumbnail-padding;\n margin-bottom: @line-height-computed;\n line-height: @line-height-base;\n background-color: @thumbnail-bg;\n border: 1px solid @thumbnail-border;\n border-radius: @thumbnail-border-radius;\n .transition(border .2s ease-in-out);\n\n > img,\n a > img {\n &:extend(.img-responsive);\n margin-left: auto;\n margin-right: auto;\n }\n\n // Add a hover state for linked versions only\n a&:hover,\n a&:focus,\n a&.active {\n border-color: @link-color;\n }\n\n // Image captions\n .caption {\n padding: @thumbnail-caption-padding;\n color: @thumbnail-caption-color;\n }\n}\n","//\n// Alerts\n// --------------------------------------------------\n\n\n// Base styles\n// -------------------------\n\n.alert {\n padding: @alert-padding;\n margin-bottom: @line-height-computed;\n border: 1px solid transparent;\n border-radius: @alert-border-radius;\n\n // Headings for larger alerts\n h4 {\n margin-top: 0;\n // Specified for the h4 to prevent conflicts of changing @headings-color\n color: inherit;\n }\n\n // Provide class for links that match alerts\n .alert-link {\n font-weight: @alert-link-font-weight;\n }\n\n // Improve alignment and spacing of inner content\n > p,\n > ul {\n margin-bottom: 0;\n }\n\n > p + p {\n margin-top: 5px;\n }\n}\n\n// Dismissible alerts\n//\n// Expand the right padding and account for the close button's positioning.\n\n.alert-dismissable, // The misspelled .alert-dismissable was deprecated in 3.2.0.\n.alert-dismissible {\n padding-right: (@alert-padding + 20);\n\n // Adjust close link position\n .close {\n position: relative;\n top: -2px;\n right: -21px;\n color: inherit;\n }\n}\n\n// Alternate styles\n//\n// Generate contextual modifier classes for colorizing the alert.\n\n.alert-success {\n .alert-variant(@alert-success-bg; @alert-success-border; @alert-success-text);\n}\n\n.alert-info {\n .alert-variant(@alert-info-bg; @alert-info-border; @alert-info-text);\n}\n\n.alert-warning {\n .alert-variant(@alert-warning-bg; @alert-warning-border; @alert-warning-text);\n}\n\n.alert-danger {\n .alert-variant(@alert-danger-bg; @alert-danger-border; @alert-danger-text);\n}\n","// Alerts\n\n.alert-variant(@background; @border; @text-color) {\n background-color: @background;\n border-color: @border;\n color: @text-color;\n\n hr {\n border-top-color: darken(@border, 5%);\n }\n .alert-link {\n color: darken(@text-color, 10%);\n }\n}\n","//\n// Progress bars\n// --------------------------------------------------\n\n\n// Bar animations\n// -------------------------\n\n// WebKit\n@-webkit-keyframes progress-bar-stripes {\n from { background-position: 40px 0; }\n to { background-position: 0 0; }\n}\n\n// Spec and IE10+\n@keyframes progress-bar-stripes {\n from { background-position: 40px 0; }\n to { background-position: 0 0; }\n}\n\n\n// Bar itself\n// -------------------------\n\n// Outer container\n.progress {\n overflow: hidden;\n height: @line-height-computed;\n margin-bottom: @line-height-computed;\n background-color: @progress-bg;\n border-radius: @progress-border-radius;\n .box-shadow(inset 0 1px 2px rgba(0,0,0,.1));\n}\n\n// Bar of progress\n.progress-bar {\n float: left;\n width: 0%;\n height: 100%;\n font-size: @font-size-small;\n line-height: @line-height-computed;\n color: @progress-bar-color;\n text-align: center;\n background-color: @progress-bar-bg;\n .box-shadow(inset 0 -1px 0 rgba(0,0,0,.15));\n .transition(width .6s ease);\n}\n\n// Striped bars\n//\n// `.progress-striped .progress-bar` is deprecated as of v3.2.0 in favor of the\n// `.progress-bar-striped` class, which you just add to an existing\n// `.progress-bar`.\n.progress-striped .progress-bar,\n.progress-bar-striped {\n #gradient > .striped();\n background-size: 40px 40px;\n}\n\n// Call animation for the active one\n//\n// `.progress.active .progress-bar` is deprecated as of v3.2.0 in favor of the\n// `.progress-bar.active` approach.\n.progress.active .progress-bar,\n.progress-bar.active {\n .animation(progress-bar-stripes 2s linear infinite);\n}\n\n\n// Variations\n// -------------------------\n\n.progress-bar-success {\n .progress-bar-variant(@progress-bar-success-bg);\n}\n\n.progress-bar-info {\n .progress-bar-variant(@progress-bar-info-bg);\n}\n\n.progress-bar-warning {\n .progress-bar-variant(@progress-bar-warning-bg);\n}\n\n.progress-bar-danger {\n .progress-bar-variant(@progress-bar-danger-bg);\n}\n","// Gradients\n\n#gradient {\n\n // Horizontal gradient, from left to right\n //\n // Creates two color stops, start and end, by specifying a color and position for each color stop.\n // Color stops are not available in IE9 and below.\n .horizontal(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n background-image: -webkit-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Safari 5.1-6, Chrome 10+\n background-image: -o-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Opera 12\n background-image: linear-gradient(to right, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n background-repeat: repeat-x;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down\n }\n\n // Vertical gradient, from top to bottom\n //\n // Creates two color stops, start and end, by specifying a color and position for each color stop.\n // Color stops are not available in IE9 and below.\n .vertical(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n background-image: -webkit-linear-gradient(top, @start-color @start-percent, @end-color @end-percent); // Safari 5.1-6, Chrome 10+\n background-image: -o-linear-gradient(top, @start-color @start-percent, @end-color @end-percent); // Opera 12\n background-image: linear-gradient(to bottom, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n background-repeat: repeat-x;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",argb(@start-color),argb(@end-color))); // IE9 and down\n }\n\n .directional(@start-color: #555; @end-color: #333; @deg: 45deg) {\n background-repeat: repeat-x;\n background-image: -webkit-linear-gradient(@deg, @start-color, @end-color); // Safari 5.1-6, Chrome 10+\n background-image: -o-linear-gradient(@deg, @start-color, @end-color); // Opera 12\n background-image: linear-gradient(@deg, @start-color, @end-color); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n }\n .horizontal-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n background-image: -webkit-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);\n background-image: -o-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);\n background-image: linear-gradient(to right, @start-color, @mid-color @color-stop, @end-color);\n background-repeat: no-repeat;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n }\n .vertical-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n background-image: -webkit-linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n background-image: -o-linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n background-image: linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n background-repeat: no-repeat;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n }\n .radial(@inner-color: #555; @outer-color: #333) {\n background-image: -webkit-radial-gradient(circle, @inner-color, @outer-color);\n background-image: radial-gradient(circle, @inner-color, @outer-color);\n background-repeat: no-repeat;\n }\n .striped(@color: rgba(255,255,255,.15); @angle: 45deg) {\n background-image: -webkit-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n background-image: -o-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n background-image: linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n }\n}\n","// Progress bars\n\n.progress-bar-variant(@color) {\n background-color: @color;\n\n // Deprecated parent class requirement as of v3.2.0\n .progress-striped & {\n #gradient > .striped();\n }\n}\n",".media {\n // Proper spacing between instances of .media\n margin-top: 15px;\n\n &:first-child {\n margin-top: 0;\n }\n}\n\n.media,\n.media-body {\n zoom: 1;\n overflow: hidden;\n}\n\n.media-body {\n width: 10000px;\n}\n\n.media-object {\n display: block;\n}\n\n.media-right,\n.media > .pull-right {\n padding-left: 10px;\n}\n\n.media-left,\n.media > .pull-left {\n padding-right: 10px;\n}\n\n.media-left,\n.media-right,\n.media-body {\n display: table-cell;\n vertical-align: top;\n}\n\n.media-middle {\n vertical-align: middle;\n}\n\n.media-bottom {\n vertical-align: bottom;\n}\n\n// Reset margins on headings for tighter default spacing\n.media-heading {\n margin-top: 0;\n margin-bottom: 5px;\n}\n\n// Media list variation\n//\n// Undo default ul/ol styles\n.media-list {\n padding-left: 0;\n list-style: none;\n}\n","//\n// List groups\n// --------------------------------------------------\n\n\n// Base class\n//\n// Easily usable on <ul>, <ol>, or <div>.\n\n.list-group {\n // No need to set list-style: none; since .list-group-item is block level\n margin-bottom: 20px;\n padding-left: 0; // reset padding because ul and ol\n}\n\n\n// Individual list items\n//\n// Use on `li`s or `div`s within the `.list-group` parent.\n\n.list-group-item {\n position: relative;\n display: block;\n padding: 10px 15px;\n // Place the border on the list items and negative margin up for better styling\n margin-bottom: -1px;\n background-color: @list-group-bg;\n border: 1px solid @list-group-border;\n\n // Round the first and last items\n &:first-child {\n .border-top-radius(@list-group-border-radius);\n }\n &:last-child {\n margin-bottom: 0;\n .border-bottom-radius(@list-group-border-radius);\n }\n}\n\n\n// Linked list items\n//\n// Use anchor elements instead of `li`s or `div`s to create linked list items.\n// Includes an extra `.active` modifier class for showing selected items.\n\na.list-group-item {\n color: @list-group-link-color;\n\n .list-group-item-heading {\n color: @list-group-link-heading-color;\n }\n\n // Hover state\n &:hover,\n &:focus {\n text-decoration: none;\n color: @list-group-link-hover-color;\n background-color: @list-group-hover-bg;\n }\n}\n\n.list-group-item {\n // Disabled state\n &.disabled,\n &.disabled:hover,\n &.disabled:focus {\n background-color: @list-group-disabled-bg;\n color: @list-group-disabled-color;\n cursor: @cursor-disabled;\n\n // Force color to inherit for custom content\n .list-group-item-heading {\n color: inherit;\n }\n .list-group-item-text {\n color: @list-group-disabled-text-color;\n }\n }\n\n // Active class on item itself, not parent\n &.active,\n &.active:hover,\n &.active:focus {\n z-index: 2; // Place active items above their siblings for proper border styling\n color: @list-group-active-color;\n background-color: @list-group-active-bg;\n border-color: @list-group-active-border;\n\n // Force color to inherit for custom content\n .list-group-item-heading,\n .list-group-item-heading > small,\n .list-group-item-heading > .small {\n color: inherit;\n }\n .list-group-item-text {\n color: @list-group-active-text-color;\n }\n }\n}\n\n\n// Contextual variants\n//\n// Add modifier classes to change text and background color on individual items.\n// Organizationally, this must come after the `:hover` states.\n\n.list-group-item-variant(success; @state-success-bg; @state-success-text);\n.list-group-item-variant(info; @state-info-bg; @state-info-text);\n.list-group-item-variant(warning; @state-warning-bg; @state-warning-text);\n.list-group-item-variant(danger; @state-danger-bg; @state-danger-text);\n\n\n// Custom content options\n//\n// Extra classes for creating well-formatted content within `.list-group-item`s.\n\n.list-group-item-heading {\n margin-top: 0;\n margin-bottom: 5px;\n}\n.list-group-item-text {\n margin-bottom: 0;\n line-height: 1.3;\n}\n","// List Groups\n\n.list-group-item-variant(@state; @background; @color) {\n .list-group-item-@{state} {\n color: @color;\n background-color: @background;\n\n a& {\n color: @color;\n\n .list-group-item-heading {\n color: inherit;\n }\n\n &:hover,\n &:focus {\n color: @color;\n background-color: darken(@background, 5%);\n }\n &.active,\n &.active:hover,\n &.active:focus {\n color: #fff;\n background-color: @color;\n border-color: @color;\n }\n }\n }\n}\n","//\n// Panels\n// --------------------------------------------------\n\n\n// Base class\n.panel {\n margin-bottom: @line-height-computed;\n background-color: @panel-bg;\n border: 1px solid transparent;\n border-radius: @panel-border-radius;\n .box-shadow(0 1px 1px rgba(0,0,0,.05));\n}\n\n// Panel contents\n.panel-body {\n padding: @panel-body-padding;\n &:extend(.clearfix all);\n}\n\n// Optional heading\n.panel-heading {\n padding: @panel-heading-padding;\n border-bottom: 1px solid transparent;\n .border-top-radius((@panel-border-radius - 1));\n\n > .dropdown .dropdown-toggle {\n color: inherit;\n }\n}\n\n// Within heading, strip any `h*` tag of its default margins for spacing.\n.panel-title {\n margin-top: 0;\n margin-bottom: 0;\n font-size: ceil((@font-size-base * 1.125));\n color: inherit;\n\n > a,\n > small,\n > .small,\n > small > a,\n > .small > a {\n color: inherit;\n }\n}\n\n// Optional footer (stays gray in every modifier class)\n.panel-footer {\n padding: @panel-footer-padding;\n background-color: @panel-footer-bg;\n border-top: 1px solid @panel-inner-border;\n .border-bottom-radius((@panel-border-radius - 1));\n}\n\n\n// List groups in panels\n//\n// By default, space out list group content from panel headings to account for\n// any kind of custom content between the two.\n\n.panel {\n > .list-group,\n > .panel-collapse > .list-group {\n margin-bottom: 0;\n\n .list-group-item {\n border-width: 1px 0;\n border-radius: 0;\n }\n\n // Add border top radius for first one\n &:first-child {\n .list-group-item:first-child {\n border-top: 0;\n .border-top-radius((@panel-border-radius - 1));\n }\n }\n // Add border bottom radius for last one\n &:last-child {\n .list-group-item:last-child {\n border-bottom: 0;\n .border-bottom-radius((@panel-border-radius - 1));\n }\n }\n }\n}\n// Collapse space between when there's no additional content.\n.panel-heading + .list-group {\n .list-group-item:first-child {\n border-top-width: 0;\n }\n}\n.list-group + .panel-footer {\n border-top-width: 0;\n}\n\n// Tables in panels\n//\n// Place a non-bordered `.table` within a panel (not within a `.panel-body`) and\n// watch it go full width.\n\n.panel {\n > .table,\n > .table-responsive > .table,\n > .panel-collapse > .table {\n margin-bottom: 0;\n\n caption {\n padding-left: @panel-body-padding;\n padding-right: @panel-body-padding;\n }\n }\n // Add border top radius for first one\n > .table:first-child,\n > .table-responsive:first-child > .table:first-child {\n .border-top-radius((@panel-border-radius - 1));\n\n > thead:first-child,\n > tbody:first-child {\n > tr:first-child {\n border-top-left-radius: (@panel-border-radius - 1);\n border-top-right-radius: (@panel-border-radius - 1);\n\n td:first-child,\n th:first-child {\n border-top-left-radius: (@panel-border-radius - 1);\n }\n td:last-child,\n th:last-child {\n border-top-right-radius: (@panel-border-radius - 1);\n }\n }\n }\n }\n // Add border bottom radius for last one\n > .table:last-child,\n > .table-responsive:last-child > .table:last-child {\n .border-bottom-radius((@panel-border-radius - 1));\n\n > tbody:last-child,\n > tfoot:last-child {\n > tr:last-child {\n border-bottom-left-radius: (@panel-border-radius - 1);\n border-bottom-right-radius: (@panel-border-radius - 1);\n\n td:first-child,\n th:first-child {\n border-bottom-left-radius: (@panel-border-radius - 1);\n }\n td:last-child,\n th:last-child {\n border-bottom-right-radius: (@panel-border-radius - 1);\n }\n }\n }\n }\n > .panel-body + .table,\n > .panel-body + .table-responsive,\n > .table + .panel-body,\n > .table-responsive + .panel-body {\n border-top: 1px solid @table-border-color;\n }\n > .table > tbody:first-child > tr:first-child th,\n > .table > tbody:first-child > tr:first-child td {\n border-top: 0;\n }\n > .table-bordered,\n > .table-responsive > .table-bordered {\n border: 0;\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th:first-child,\n > td:first-child {\n border-left: 0;\n }\n > th:last-child,\n > td:last-child {\n border-right: 0;\n }\n }\n }\n > thead,\n > tbody {\n > tr:first-child {\n > td,\n > th {\n border-bottom: 0;\n }\n }\n }\n > tbody,\n > tfoot {\n > tr:last-child {\n > td,\n > th {\n border-bottom: 0;\n }\n }\n }\n }\n > .table-responsive {\n border: 0;\n margin-bottom: 0;\n }\n}\n\n\n// Collapsable panels (aka, accordion)\n//\n// Wrap a series of panels in `.panel-group` to turn them into an accordion with\n// the help of our collapse JavaScript plugin.\n\n.panel-group {\n margin-bottom: @line-height-computed;\n\n // Tighten up margin so it's only between panels\n .panel {\n margin-bottom: 0;\n border-radius: @panel-border-radius;\n\n + .panel {\n margin-top: 5px;\n }\n }\n\n .panel-heading {\n border-bottom: 0;\n\n + .panel-collapse > .panel-body,\n + .panel-collapse > .list-group {\n border-top: 1px solid @panel-inner-border;\n }\n }\n\n .panel-footer {\n border-top: 0;\n + .panel-collapse .panel-body {\n border-bottom: 1px solid @panel-inner-border;\n }\n }\n}\n\n\n// Contextual variations\n.panel-default {\n .panel-variant(@panel-default-border; @panel-default-text; @panel-default-heading-bg; @panel-default-border);\n}\n.panel-primary {\n .panel-variant(@panel-primary-border; @panel-primary-text; @panel-primary-heading-bg; @panel-primary-border);\n}\n.panel-success {\n .panel-variant(@panel-success-border; @panel-success-text; @panel-success-heading-bg; @panel-success-border);\n}\n.panel-info {\n .panel-variant(@panel-info-border; @panel-info-text; @panel-info-heading-bg; @panel-info-border);\n}\n.panel-warning {\n .panel-variant(@panel-warning-border; @panel-warning-text; @panel-warning-heading-bg; @panel-warning-border);\n}\n.panel-danger {\n .panel-variant(@panel-danger-border; @panel-danger-text; @panel-danger-heading-bg; @panel-danger-border);\n}\n","// Panels\n\n.panel-variant(@border; @heading-text-color; @heading-bg-color; @heading-border) {\n border-color: @border;\n\n & > .panel-heading {\n color: @heading-text-color;\n background-color: @heading-bg-color;\n border-color: @heading-border;\n\n + .panel-collapse > .panel-body {\n border-top-color: @border;\n }\n .badge {\n color: @heading-bg-color;\n background-color: @heading-text-color;\n }\n }\n & > .panel-footer {\n + .panel-collapse > .panel-body {\n border-bottom-color: @border;\n }\n }\n}\n","// Embeds responsive\n//\n// Credit: Nicolas Gallagher and SUIT CSS.\n\n.embed-responsive {\n position: relative;\n display: block;\n height: 0;\n padding: 0;\n overflow: hidden;\n\n .embed-responsive-item,\n iframe,\n embed,\n object,\n video {\n position: absolute;\n top: 0;\n left: 0;\n bottom: 0;\n height: 100%;\n width: 100%;\n border: 0;\n }\n}\n\n// Modifier class for 16:9 aspect ratio\n.embed-responsive-16by9 {\n padding-bottom: 56.25%;\n}\n\n// Modifier class for 4:3 aspect ratio\n.embed-responsive-4by3 {\n padding-bottom: 75%;\n}\n","//\n// Wells\n// --------------------------------------------------\n\n\n// Base class\n.well {\n min-height: 20px;\n padding: 19px;\n margin-bottom: 20px;\n background-color: @well-bg;\n border: 1px solid @well-border;\n border-radius: @border-radius-base;\n .box-shadow(inset 0 1px 1px rgba(0,0,0,.05));\n blockquote {\n border-color: #ddd;\n border-color: rgba(0,0,0,.15);\n }\n}\n\n// Sizes\n.well-lg {\n padding: 24px;\n border-radius: @border-radius-large;\n}\n.well-sm {\n padding: 9px;\n border-radius: @border-radius-small;\n}\n","//\n// Close icons\n// --------------------------------------------------\n\n\n.close {\n float: right;\n font-size: (@font-size-base * 1.5);\n font-weight: @close-font-weight;\n line-height: 1;\n color: @close-color;\n text-shadow: @close-text-shadow;\n .opacity(.2);\n\n &:hover,\n &:focus {\n color: @close-color;\n text-decoration: none;\n cursor: pointer;\n .opacity(.5);\n }\n\n // Additional properties for button version\n // iOS requires the button element instead of an anchor tag.\n // If you want the anchor version, it requires `href=\"#\"`.\n // See https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile\n button& {\n padding: 0;\n cursor: pointer;\n background: transparent;\n border: 0;\n -webkit-appearance: none;\n }\n}\n","//\n// Modals\n// --------------------------------------------------\n\n// .modal-open - body class for killing the scroll\n// .modal - container to scroll within\n// .modal-dialog - positioning shell for the actual modal\n// .modal-content - actual modal w/ bg and corners and shit\n\n// Kill the scroll on the body\n.modal-open {\n overflow: hidden;\n}\n\n// Container that the modal scrolls within\n.modal {\n display: none;\n overflow: hidden;\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: @zindex-modal;\n -webkit-overflow-scrolling: touch;\n\n // Prevent Chrome on Windows from adding a focus outline. For details, see\n // https://github.com/twbs/bootstrap/pull/10951.\n outline: 0;\n\n // When fading in the modal, animate it to slide down\n &.fade .modal-dialog {\n .translate(0, -25%);\n .transition-transform(~\"0.3s ease-out\");\n }\n &.in .modal-dialog { .translate(0, 0) }\n}\n.modal-open .modal {\n overflow-x: hidden;\n overflow-y: auto;\n}\n\n// Shell div to position the modal with bottom padding\n.modal-dialog {\n position: relative;\n width: auto;\n margin: 10px;\n}\n\n// Actual modal\n.modal-content {\n position: relative;\n background-color: @modal-content-bg;\n border: 1px solid @modal-content-fallback-border-color; //old browsers fallback (ie8 etc)\n border: 1px solid @modal-content-border-color;\n border-radius: @border-radius-large;\n .box-shadow(0 3px 9px rgba(0,0,0,.5));\n background-clip: padding-box;\n // Remove focus outline from opened modal\n outline: 0;\n}\n\n// Modal background\n.modal-backdrop {\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: @zindex-modal-background;\n background-color: @modal-backdrop-bg;\n // Fade for backdrop\n &.fade { .opacity(0); }\n &.in { .opacity(@modal-backdrop-opacity); }\n}\n\n// Modal header\n// Top section of the modal w/ title and dismiss\n.modal-header {\n padding: @modal-title-padding;\n border-bottom: 1px solid @modal-header-border-color;\n min-height: (@modal-title-padding + @modal-title-line-height);\n}\n// Close icon\n.modal-header .close {\n margin-top: -2px;\n}\n\n// Title text within header\n.modal-title {\n margin: 0;\n line-height: @modal-title-line-height;\n}\n\n// Modal body\n// Where all modal content resides (sibling of .modal-header and .modal-footer)\n.modal-body {\n position: relative;\n padding: @modal-inner-padding;\n}\n\n// Footer (for actions)\n.modal-footer {\n padding: @modal-inner-padding;\n text-align: right; // right align buttons\n border-top: 1px solid @modal-footer-border-color;\n &:extend(.clearfix all); // clear it in case folks use .pull-* classes on buttons\n\n // Properly space out buttons\n .btn + .btn {\n margin-left: 5px;\n margin-bottom: 0; // account for input[type=\"submit\"] which gets the bottom margin like all other inputs\n }\n // but override that for button groups\n .btn-group .btn + .btn {\n margin-left: -1px;\n }\n // and override it for block buttons as well\n .btn-block + .btn-block {\n margin-left: 0;\n }\n}\n\n// Measure scrollbar width for padding body during modal show/hide\n.modal-scrollbar-measure {\n position: absolute;\n top: -9999px;\n width: 50px;\n height: 50px;\n overflow: scroll;\n}\n\n// Scale up the modal\n@media (min-width: @screen-sm-min) {\n // Automatically set modal's width for larger viewports\n .modal-dialog {\n width: @modal-md;\n margin: 30px auto;\n }\n .modal-content {\n .box-shadow(0 5px 15px rgba(0,0,0,.5));\n }\n\n // Modal sizes\n .modal-sm { width: @modal-sm; }\n}\n\n@media (min-width: @screen-md-min) {\n .modal-lg { width: @modal-lg; }\n}\n","//\n// Tooltips\n// --------------------------------------------------\n\n\n// Base class\n.tooltip {\n position: absolute;\n z-index: @zindex-tooltip;\n display: block;\n // Reset font and text properties given new insertion method\n font-family: @font-family-base;\n font-size: @font-size-small;\n font-weight: normal;\n line-height: 1.4;\n .opacity(0);\n\n &.in { .opacity(@tooltip-opacity); }\n &.top { margin-top: -3px; padding: @tooltip-arrow-width 0; }\n &.right { margin-left: 3px; padding: 0 @tooltip-arrow-width; }\n &.bottom { margin-top: 3px; padding: @tooltip-arrow-width 0; }\n &.left { margin-left: -3px; padding: 0 @tooltip-arrow-width; }\n}\n\n// Wrapper for the tooltip content\n.tooltip-inner {\n max-width: @tooltip-max-width;\n padding: 3px 8px;\n color: @tooltip-color;\n text-align: center;\n text-decoration: none;\n background-color: @tooltip-bg;\n border-radius: @border-radius-base;\n}\n\n// Arrows\n.tooltip-arrow {\n position: absolute;\n width: 0;\n height: 0;\n border-color: transparent;\n border-style: solid;\n}\n// Note: Deprecated .top-left, .top-right, .bottom-left, and .bottom-right as of v3.3.1\n.tooltip {\n &.top .tooltip-arrow {\n bottom: 0;\n left: 50%;\n margin-left: -@tooltip-arrow-width;\n border-width: @tooltip-arrow-width @tooltip-arrow-width 0;\n border-top-color: @tooltip-arrow-color;\n }\n &.top-left .tooltip-arrow {\n bottom: 0;\n right: @tooltip-arrow-width;\n margin-bottom: -@tooltip-arrow-width;\n border-width: @tooltip-arrow-width @tooltip-arrow-width 0;\n border-top-color: @tooltip-arrow-color;\n }\n &.top-right .tooltip-arrow {\n bottom: 0;\n left: @tooltip-arrow-width;\n margin-bottom: -@tooltip-arrow-width;\n border-width: @tooltip-arrow-width @tooltip-arrow-width 0;\n border-top-color: @tooltip-arrow-color;\n }\n &.right .tooltip-arrow {\n top: 50%;\n left: 0;\n margin-top: -@tooltip-arrow-width;\n border-width: @tooltip-arrow-width @tooltip-arrow-width @tooltip-arrow-width 0;\n border-right-color: @tooltip-arrow-color;\n }\n &.left .tooltip-arrow {\n top: 50%;\n right: 0;\n margin-top: -@tooltip-arrow-width;\n border-width: @tooltip-arrow-width 0 @tooltip-arrow-width @tooltip-arrow-width;\n border-left-color: @tooltip-arrow-color;\n }\n &.bottom .tooltip-arrow {\n top: 0;\n left: 50%;\n margin-left: -@tooltip-arrow-width;\n border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;\n border-bottom-color: @tooltip-arrow-color;\n }\n &.bottom-left .tooltip-arrow {\n top: 0;\n right: @tooltip-arrow-width;\n margin-top: -@tooltip-arrow-width;\n border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;\n border-bottom-color: @tooltip-arrow-color;\n }\n &.bottom-right .tooltip-arrow {\n top: 0;\n left: @tooltip-arrow-width;\n margin-top: -@tooltip-arrow-width;\n border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;\n border-bottom-color: @tooltip-arrow-color;\n }\n}\n","//\n// Popovers\n// --------------------------------------------------\n\n\n.popover {\n position: absolute;\n top: 0;\n left: 0;\n z-index: @zindex-popover;\n display: none;\n max-width: @popover-max-width;\n padding: 1px;\n // Reset font and text properties given new insertion method\n font-family: @font-family-base;\n font-size: @font-size-base;\n font-weight: normal;\n line-height: @line-height-base;\n text-align: left;\n background-color: @popover-bg;\n background-clip: padding-box;\n border: 1px solid @popover-fallback-border-color;\n border: 1px solid @popover-border-color;\n border-radius: @border-radius-large;\n .box-shadow(0 5px 10px rgba(0,0,0,.2));\n\n // Overrides for proper insertion\n white-space: normal;\n\n // Offset the popover to account for the popover arrow\n &.top { margin-top: -@popover-arrow-width; }\n &.right { margin-left: @popover-arrow-width; }\n &.bottom { margin-top: @popover-arrow-width; }\n &.left { margin-left: -@popover-arrow-width; }\n}\n\n.popover-title {\n margin: 0; // reset heading margin\n padding: 8px 14px;\n font-size: @font-size-base;\n background-color: @popover-title-bg;\n border-bottom: 1px solid darken(@popover-title-bg, 5%);\n border-radius: (@border-radius-large - 1) (@border-radius-large - 1) 0 0;\n}\n\n.popover-content {\n padding: 9px 14px;\n}\n\n// Arrows\n//\n// .arrow is outer, .arrow:after is inner\n\n.popover > .arrow {\n &,\n &:after {\n position: absolute;\n display: block;\n width: 0;\n height: 0;\n border-color: transparent;\n border-style: solid;\n }\n}\n.popover > .arrow {\n border-width: @popover-arrow-outer-width;\n}\n.popover > .arrow:after {\n border-width: @popover-arrow-width;\n content: \"\";\n}\n\n.popover {\n &.top > .arrow {\n left: 50%;\n margin-left: -@popover-arrow-outer-width;\n border-bottom-width: 0;\n border-top-color: @popover-arrow-outer-fallback-color; // IE8 fallback\n border-top-color: @popover-arrow-outer-color;\n bottom: -@popover-arrow-outer-width;\n &:after {\n content: \" \";\n bottom: 1px;\n margin-left: -@popover-arrow-width;\n border-bottom-width: 0;\n border-top-color: @popover-arrow-color;\n }\n }\n &.right > .arrow {\n top: 50%;\n left: -@popover-arrow-outer-width;\n margin-top: -@popover-arrow-outer-width;\n border-left-width: 0;\n border-right-color: @popover-arrow-outer-fallback-color; // IE8 fallback\n border-right-color: @popover-arrow-outer-color;\n &:after {\n content: \" \";\n left: 1px;\n bottom: -@popover-arrow-width;\n border-left-width: 0;\n border-right-color: @popover-arrow-color;\n }\n }\n &.bottom > .arrow {\n left: 50%;\n margin-left: -@popover-arrow-outer-width;\n border-top-width: 0;\n border-bottom-color: @popover-arrow-outer-fallback-color; // IE8 fallback\n border-bottom-color: @popover-arrow-outer-color;\n top: -@popover-arrow-outer-width;\n &:after {\n content: \" \";\n top: 1px;\n margin-left: -@popover-arrow-width;\n border-top-width: 0;\n border-bottom-color: @popover-arrow-color;\n }\n }\n\n &.left > .arrow {\n top: 50%;\n right: -@popover-arrow-outer-width;\n margin-top: -@popover-arrow-outer-width;\n border-right-width: 0;\n border-left-color: @popover-arrow-outer-fallback-color; // IE8 fallback\n border-left-color: @popover-arrow-outer-color;\n &:after {\n content: \" \";\n right: 1px;\n border-right-width: 0;\n border-left-color: @popover-arrow-color;\n bottom: -@popover-arrow-width;\n }\n }\n}\n","//\n// Carousel\n// --------------------------------------------------\n\n\n// Wrapper for the slide container and indicators\n.carousel {\n position: relative;\n}\n\n.carousel-inner {\n position: relative;\n overflow: hidden;\n width: 100%;\n\n > .item {\n display: none;\n position: relative;\n .transition(.6s ease-in-out left);\n\n // Account for jankitude on images\n > img,\n > a > img {\n &:extend(.img-responsive);\n line-height: 1;\n }\n\n // WebKit CSS3 transforms for supported devices\n @media all and (transform-3d), (-webkit-transform-3d) {\n .transition-transform(~'0.6s ease-in-out');\n .backface-visibility(~'hidden');\n .perspective(1000);\n\n &.next,\n &.active.right {\n .translate3d(100%, 0, 0);\n left: 0;\n }\n &.prev,\n &.active.left {\n .translate3d(-100%, 0, 0);\n left: 0;\n }\n &.next.left,\n &.prev.right,\n &.active {\n .translate3d(0, 0, 0);\n left: 0;\n }\n }\n }\n\n > .active,\n > .next,\n > .prev {\n display: block;\n }\n\n > .active {\n left: 0;\n }\n\n > .next,\n > .prev {\n position: absolute;\n top: 0;\n width: 100%;\n }\n\n > .next {\n left: 100%;\n }\n > .prev {\n left: -100%;\n }\n > .next.left,\n > .prev.right {\n left: 0;\n }\n\n > .active.left {\n left: -100%;\n }\n > .active.right {\n left: 100%;\n }\n\n}\n\n// Left/right controls for nav\n// ---------------------------\n\n.carousel-control {\n position: absolute;\n top: 0;\n left: 0;\n bottom: 0;\n width: @carousel-control-width;\n .opacity(@carousel-control-opacity);\n font-size: @carousel-control-font-size;\n color: @carousel-control-color;\n text-align: center;\n text-shadow: @carousel-text-shadow;\n // We can't have this transition here because WebKit cancels the carousel\n // animation if you trip this while in the middle of another animation.\n\n // Set gradients for backgrounds\n &.left {\n #gradient > .horizontal(@start-color: rgba(0,0,0,.5); @end-color: rgba(0,0,0,.0001));\n }\n &.right {\n left: auto;\n right: 0;\n #gradient > .horizontal(@start-color: rgba(0,0,0,.0001); @end-color: rgba(0,0,0,.5));\n }\n\n // Hover/focus state\n &:hover,\n &:focus {\n outline: 0;\n color: @carousel-control-color;\n text-decoration: none;\n .opacity(.9);\n }\n\n // Toggles\n .icon-prev,\n .icon-next,\n .glyphicon-chevron-left,\n .glyphicon-chevron-right {\n position: absolute;\n top: 50%;\n z-index: 5;\n display: inline-block;\n }\n .icon-prev,\n .glyphicon-chevron-left {\n left: 50%;\n margin-left: -10px;\n }\n .icon-next,\n .glyphicon-chevron-right {\n right: 50%;\n margin-right: -10px;\n }\n .icon-prev,\n .icon-next {\n width: 20px;\n height: 20px;\n margin-top: -10px;\n line-height: 1;\n font-family: serif;\n }\n\n\n .icon-prev {\n &:before {\n content: '\\2039';// SINGLE LEFT-POINTING ANGLE QUOTATION MARK (U+2039)\n }\n }\n .icon-next {\n &:before {\n content: '\\203a';// SINGLE RIGHT-POINTING ANGLE QUOTATION MARK (U+203A)\n }\n }\n}\n\n// Optional indicator pips\n//\n// Add an unordered list with the following class and add a list item for each\n// slide your carousel holds.\n\n.carousel-indicators {\n position: absolute;\n bottom: 10px;\n left: 50%;\n z-index: 15;\n width: 60%;\n margin-left: -30%;\n padding-left: 0;\n list-style: none;\n text-align: center;\n\n li {\n display: inline-block;\n width: 10px;\n height: 10px;\n margin: 1px;\n text-indent: -999px;\n border: 1px solid @carousel-indicator-border-color;\n border-radius: 10px;\n cursor: pointer;\n\n // IE8-9 hack for event handling\n //\n // Internet Explorer 8-9 does not support clicks on elements without a set\n // `background-color`. We cannot use `filter` since that's not viewed as a\n // background color by the browser. Thus, a hack is needed.\n // See https://developer.mozilla.org/en-US/docs/Web/Events/click#Internet_Explorer\n //\n // For IE8, we set solid black as it doesn't support `rgba()`. For IE9, we\n // set alpha transparency for the best results possible.\n background-color: #000 \\9; // IE8\n background-color: rgba(0,0,0,0); // IE9\n }\n .active {\n margin: 0;\n width: 12px;\n height: 12px;\n background-color: @carousel-indicator-active-bg;\n }\n}\n\n// Optional captions\n// -----------------------------\n// Hidden by default for smaller viewports\n.carousel-caption {\n position: absolute;\n left: 15%;\n right: 15%;\n bottom: 20px;\n z-index: 10;\n padding-top: 20px;\n padding-bottom: 20px;\n color: @carousel-caption-color;\n text-align: center;\n text-shadow: @carousel-text-shadow;\n & .btn {\n text-shadow: none; // No shadow for button elements in carousel-caption\n }\n}\n\n\n// Scale up controls for tablets and up\n@media screen and (min-width: @screen-sm-min) {\n\n // Scale up the controls a smidge\n .carousel-control {\n .glyphicon-chevron-left,\n .glyphicon-chevron-right,\n .icon-prev,\n .icon-next {\n width: 30px;\n height: 30px;\n margin-top: -15px;\n font-size: 30px;\n }\n .glyphicon-chevron-left,\n .icon-prev {\n margin-left: -15px;\n }\n .glyphicon-chevron-right,\n .icon-next {\n margin-right: -15px;\n }\n }\n\n // Show and left align the captions\n .carousel-caption {\n left: 20%;\n right: 20%;\n padding-bottom: 30px;\n }\n\n // Move up the indicators\n .carousel-indicators {\n bottom: 20px;\n }\n}\n","// Clearfix\n//\n// For modern browsers\n// 1. The space content is one way to avoid an Opera bug when the\n// contenteditable attribute is included anywhere else in the document.\n// Otherwise it causes space to appear at the top and bottom of elements\n// that are clearfixed.\n// 2. The use of `table` rather than `block` is only necessary if using\n// `:before` to contain the top-margins of child elements.\n//\n// Source: http://nicolasgallagher.com/micro-clearfix-hack/\n\n.clearfix() {\n &:before,\n &:after {\n content: \" \"; // 1\n display: table; // 2\n }\n &:after {\n clear: both;\n }\n}\n","// Center-align a block level element\n\n.center-block() {\n display: block;\n margin-left: auto;\n margin-right: auto;\n}\n","// CSS image replacement\n//\n// Heads up! v3 launched with with only `.hide-text()`, but per our pattern for\n// mixins being reused as classes with the same name, this doesn't hold up. As\n// of v3.0.1 we have added `.text-hide()` and deprecated `.hide-text()`.\n//\n// Source: https://github.com/h5bp/html5-boilerplate/commit/aa0396eae757\n\n// Deprecated as of v3.0.1 (will be removed in v4)\n.hide-text() {\n font: ~\"0/0\" a;\n color: transparent;\n text-shadow: none;\n background-color: transparent;\n border: 0;\n}\n\n// New mixin to use as of v3.0.1\n.text-hide() {\n .hide-text();\n}\n","//\n// Responsive: Utility classes\n// --------------------------------------------------\n\n\n// IE10 in Windows (Phone) 8\n//\n// Support for responsive views via media queries is kind of borked in IE10, for\n// Surface/desktop in split view and for Windows Phone 8. This particular fix\n// must be accompanied by a snippet of JavaScript to sniff the user agent and\n// apply some conditional CSS to *only* the Surface/desktop Windows 8. Look at\n// our Getting Started page for more information on this bug.\n//\n// For more information, see the following:\n//\n// Issue: https://github.com/twbs/bootstrap/issues/10497\n// Docs: http://getbootstrap.com/getting-started/#support-ie10-width\n// Source: http://timkadlec.com/2013/01/windows-phone-8-and-device-width/\n// Source: http://timkadlec.com/2012/10/ie10-snap-mode-and-responsive-design/\n\n@-ms-viewport {\n width: device-width;\n}\n\n\n// Visibility utilities\n// Note: Deprecated .visible-xs, .visible-sm, .visible-md, and .visible-lg as of v3.2.0\n.visible-xs,\n.visible-sm,\n.visible-md,\n.visible-lg {\n .responsive-invisibility();\n}\n\n.visible-xs-block,\n.visible-xs-inline,\n.visible-xs-inline-block,\n.visible-sm-block,\n.visible-sm-inline,\n.visible-sm-inline-block,\n.visible-md-block,\n.visible-md-inline,\n.visible-md-inline-block,\n.visible-lg-block,\n.visible-lg-inline,\n.visible-lg-inline-block {\n display: none !important;\n}\n\n.visible-xs {\n @media (max-width: @screen-xs-max) {\n .responsive-visibility();\n }\n}\n.visible-xs-block {\n @media (max-width: @screen-xs-max) {\n display: block !important;\n }\n}\n.visible-xs-inline {\n @media (max-width: @screen-xs-max) {\n display: inline !important;\n }\n}\n.visible-xs-inline-block {\n @media (max-width: @screen-xs-max) {\n display: inline-block !important;\n }\n}\n\n.visible-sm {\n @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n .responsive-visibility();\n }\n}\n.visible-sm-block {\n @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n display: block !important;\n }\n}\n.visible-sm-inline {\n @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n display: inline !important;\n }\n}\n.visible-sm-inline-block {\n @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n display: inline-block !important;\n }\n}\n\n.visible-md {\n @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n .responsive-visibility();\n }\n}\n.visible-md-block {\n @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n display: block !important;\n }\n}\n.visible-md-inline {\n @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n display: inline !important;\n }\n}\n.visible-md-inline-block {\n @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n display: inline-block !important;\n }\n}\n\n.visible-lg {\n @media (min-width: @screen-lg-min) {\n .responsive-visibility();\n }\n}\n.visible-lg-block {\n @media (min-width: @screen-lg-min) {\n display: block !important;\n }\n}\n.visible-lg-inline {\n @media (min-width: @screen-lg-min) {\n display: inline !important;\n }\n}\n.visible-lg-inline-block {\n @media (min-width: @screen-lg-min) {\n display: inline-block !important;\n }\n}\n\n.hidden-xs {\n @media (max-width: @screen-xs-max) {\n .responsive-invisibility();\n }\n}\n.hidden-sm {\n @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n .responsive-invisibility();\n }\n}\n.hidden-md {\n @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n .responsive-invisibility();\n }\n}\n.hidden-lg {\n @media (min-width: @screen-lg-min) {\n .responsive-invisibility();\n }\n}\n\n\n// Print utilities\n//\n// Media queries are placed on the inside to be mixin-friendly.\n\n// Note: Deprecated .visible-print as of v3.2.0\n.visible-print {\n .responsive-invisibility();\n\n @media print {\n .responsive-visibility();\n }\n}\n.visible-print-block {\n display: none !important;\n\n @media print {\n display: block !important;\n }\n}\n.visible-print-inline {\n display: none !important;\n\n @media print {\n display: inline !important;\n }\n}\n.visible-print-inline-block {\n display: none !important;\n\n @media print {\n display: inline-block !important;\n }\n}\n\n.hidden-print {\n @media print {\n .responsive-invisibility();\n }\n}\n","// Responsive utilities\n\n//\n// More easily include all the states for responsive-utilities.less.\n.responsive-visibility() {\n display: block !important;\n table& { display: table; }\n tr& { display: table-row !important; }\n th&,\n td& { display: table-cell !important; }\n}\n\n.responsive-invisibility() {\n display: none !important;\n}\n"]}
|
bootstrap/css/bootstrap.min.css
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*!
|
2 |
+
* Bootstrap v3.3.5 (http://getbootstrap.com)
|
3 |
+
* Copyright 2011-2015 Twitter, Inc.
|
4 |
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
5 |
+
*/
|
6 |
+
|
7 |
+
/*!
|
8 |
+
* Generated using the Bootstrap Customizer (http://getbootstrap.com/customize/?id=7345914a18fe4c024e9a)
|
9 |
+
* Config saved to config.json and https://gist.github.com/7345914a18fe4c024e9a
|
10 |
+
*//*!
|
11 |
+
* Bootstrap v3.3.5 (http://getbootstrap.com)
|
12 |
+
* Copyright 2011-2015 Twitter, Inc.
|
13 |
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
14 |
+
*//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{font-size:2em;margin:0.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace, monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-appearance:textfield;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#337ab7;text-decoration:none}a:hover,a:focus{color:#23527c;text-decoration:underline}a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.img-responsive{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role="button"]{cursor:pointer}.container{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}.row{margin-left:-15px;margin-right:-15px}.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.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-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.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-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}.btn{display:inline-block;margin-bottom:0;font-weight:normal;text-align:center;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;background-image:none;border:1px solid transparent;white-space:nowrap;padding:6px 12px;font-size:14px;line-height:1.42857143;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.btn:focus,.btn:active:focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn.active.focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn:hover,.btn:focus,.btn.focus{color:#333;text-decoration:none}.btn:active,.btn.active{outline:0;background-image:none;-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{cursor:not-allowed;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default:focus,.btn-default.focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default:active:hover,.btn-default.active:hover,.open>.dropdown-toggle.btn-default:hover,.btn-default:active:focus,.btn-default.active:focus,.open>.dropdown-toggle.btn-default:focus,.btn-default:active.focus,.btn-default.active.focus,.open>.dropdown-toggle.btn-default.focus{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{background-image:none}.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.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:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary:focus,.btn-primary.focus{color:#fff;background-color:#286090;border-color:#122b40}.btn-primary:hover{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary:active:hover,.btn-primary.active:hover,.open>.dropdown-toggle.btn-primary:hover,.btn-primary:active:focus,.btn-primary.active:focus,.open>.dropdown-toggle.btn-primary:focus,.btn-primary:active.focus,.btn-primary.active.focus,.open>.dropdown-toggle.btn-primary.focus{color:#fff;background-color:#204d74;border-color:#122b40}.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{background-image:none}.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.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:#337ab7;border-color:#2e6da4}.btn-primary .badge{color:#337ab7;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success:focus,.btn-success.focus{color:#fff;background-color:#449d44;border-color:#255625}.btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439}.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success:active:hover,.btn-success.active:hover,.open>.dropdown-toggle.btn-success:hover,.btn-success:active:focus,.btn-success.active:focus,.open>.dropdown-toggle.btn-success:focus,.btn-success:active.focus,.btn-success.active.focus,.open>.dropdown-toggle.btn-success.focus{color:#fff;background-color:#398439;border-color:#255625}.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{background-image:none}.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.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:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info:focus,.btn-info.focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info:active:hover,.btn-info.active:hover,.open>.dropdown-toggle.btn-info:hover,.btn-info:active:focus,.btn-info.active:focus,.open>.dropdown-toggle.btn-info:focus,.btn-info:active.focus,.btn-info.active.focus,.open>.dropdown-toggle.btn-info.focus{color:#fff;background-color:#269abc;border-color:#1b6d85}.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{background-image:none}.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.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:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning:focus,.btn-warning.focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning:active:hover,.btn-warning.active:hover,.open>.dropdown-toggle.btn-warning:hover,.btn-warning:active:focus,.btn-warning.active:focus,.open>.dropdown-toggle.btn-warning:focus,.btn-warning:active.focus,.btn-warning.active.focus,.open>.dropdown-toggle.btn-warning.focus{color:#fff;background-color:#d58512;border-color:#985f0d}.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{background-image:none}.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.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:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger:focus,.btn-danger.focus{color:#fff;background-color:#c9302c;border-color:#761c19}.btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger:active:hover,.btn-danger.active:hover,.open>.dropdown-toggle.btn-danger:hover,.btn-danger:active:focus,.btn-danger.active:focus,.open>.dropdown-toggle.btn-danger:focus,.btn-danger:active.focus,.btn-danger.active.focus,.open>.dropdown-toggle.btn-danger.focus{color:#fff;background-color:#ac2925;border-color:#761c19}.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{background-image:none}.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.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:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{color:#337ab7;font-weight:normal;border-radius:0}.btn-link,.btn-link:active,.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:#23527c;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:#777;text-decoration:none}.btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{zoom:1;overflow:hidden}.media-body{width:10000px}.media-object{display:block}.media-object.img-thumbnail{max-width:none}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-left,.media-right,.media-body{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.clearfix:before,.clearfix:after,.container:before,.container:after,.container-fluid:before,.container-fluid:after,.row:before,.row:after{content:" ";display:table}.clearfix:after,.container:after,.container-fluid:after,.row:after{clear:both}.center-block{display:block;margin-left:auto;margin-right:auto}.pull-right{float:right !important}.pull-left{float:left !important}.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}.hidden{display:none !important}.affix{position:fixed}
|
bootstrap/fonts/glyphicons-halflings-regular.eot
ADDED
Binary file
|
bootstrap/fonts/glyphicons-halflings-regular.svg
ADDED
@@ -0,0 +1,288 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" standalone="no"?>
|
2 |
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
3 |
+
<svg xmlns="http://www.w3.org/2000/svg">
|
4 |
+
<metadata></metadata>
|
5 |
+
<defs>
|
6 |
+
<font id="glyphicons_halflingsregular" horiz-adv-x="1200" >
|
7 |
+
<font-face units-per-em="1200" ascent="960" descent="-240" />
|
8 |
+
<missing-glyph horiz-adv-x="500" />
|
9 |
+
<glyph horiz-adv-x="0" />
|
10 |
+
<glyph horiz-adv-x="400" />
|
11 |
+
<glyph unicode=" " />
|
12 |
+
<glyph unicode="*" d="M600 1100q15 0 34 -1.5t30 -3.5l11 -1q10 -2 17.5 -10.5t7.5 -18.5v-224l158 158q7 7 18 8t19 -6l106 -106q7 -8 6 -19t-8 -18l-158 -158h224q10 0 18.5 -7.5t10.5 -17.5q6 -41 6 -75q0 -15 -1.5 -34t-3.5 -30l-1 -11q-2 -10 -10.5 -17.5t-18.5 -7.5h-224l158 -158 q7 -7 8 -18t-6 -19l-106 -106q-8 -7 -19 -6t-18 8l-158 158v-224q0 -10 -7.5 -18.5t-17.5 -10.5q-41 -6 -75 -6q-15 0 -34 1.5t-30 3.5l-11 1q-10 2 -17.5 10.5t-7.5 18.5v224l-158 -158q-7 -7 -18 -8t-19 6l-106 106q-7 8 -6 19t8 18l158 158h-224q-10 0 -18.5 7.5 t-10.5 17.5q-6 41 -6 75q0 15 1.5 34t3.5 30l1 11q2 10 10.5 17.5t18.5 7.5h224l-158 158q-7 7 -8 18t6 19l106 106q8 7 19 6t18 -8l158 -158v224q0 10 7.5 18.5t17.5 10.5q41 6 75 6z" />
|
13 |
+
<glyph unicode="+" d="M450 1100h200q21 0 35.5 -14.5t14.5 -35.5v-350h350q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-350v-350q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v350h-350q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5 h350v350q0 21 14.5 35.5t35.5 14.5z" />
|
14 |
+
<glyph unicode=" " />
|
15 |
+
<glyph unicode="¥" d="M825 1100h250q10 0 12.5 -5t-5.5 -13l-364 -364q-6 -6 -11 -18h268q10 0 13 -6t-3 -14l-120 -160q-6 -8 -18 -14t-22 -6h-125v-100h275q10 0 13 -6t-3 -14l-120 -160q-6 -8 -18 -14t-22 -6h-125v-174q0 -11 -7.5 -18.5t-18.5 -7.5h-148q-11 0 -18.5 7.5t-7.5 18.5v174 h-275q-10 0 -13 6t3 14l120 160q6 8 18 14t22 6h125v100h-275q-10 0 -13 6t3 14l120 160q6 8 18 14t22 6h118q-5 12 -11 18l-364 364q-8 8 -5.5 13t12.5 5h250q25 0 43 -18l164 -164q8 -8 18 -8t18 8l164 164q18 18 43 18z" />
|
16 |
+
<glyph unicode=" " horiz-adv-x="650" />
|
17 |
+
<glyph unicode=" " horiz-adv-x="1300" />
|
18 |
+
<glyph unicode=" " horiz-adv-x="650" />
|
19 |
+
<glyph unicode=" " horiz-adv-x="1300" />
|
20 |
+
<glyph unicode=" " horiz-adv-x="433" />
|
21 |
+
<glyph unicode=" " horiz-adv-x="325" />
|
22 |
+
<glyph unicode=" " horiz-adv-x="216" />
|
23 |
+
<glyph unicode=" " horiz-adv-x="216" />
|
24 |
+
<glyph unicode=" " horiz-adv-x="162" />
|
25 |
+
<glyph unicode=" " horiz-adv-x="260" />
|
26 |
+
<glyph unicode=" " horiz-adv-x="72" />
|
27 |
+
<glyph unicode=" " horiz-adv-x="260" />
|
28 |
+
<glyph unicode=" " horiz-adv-x="325" />
|
29 |
+
<glyph unicode="€" d="M744 1198q242 0 354 -189q60 -104 66 -209h-181q0 45 -17.5 82.5t-43.5 61.5t-58 40.5t-60.5 24t-51.5 7.5q-19 0 -40.5 -5.5t-49.5 -20.5t-53 -38t-49 -62.5t-39 -89.5h379l-100 -100h-300q-6 -50 -6 -100h406l-100 -100h-300q9 -74 33 -132t52.5 -91t61.5 -54.5t59 -29 t47 -7.5q22 0 50.5 7.5t60.5 24.5t58 41t43.5 61t17.5 80h174q-30 -171 -128 -278q-107 -117 -274 -117q-206 0 -324 158q-36 48 -69 133t-45 204h-217l100 100h112q1 47 6 100h-218l100 100h134q20 87 51 153.5t62 103.5q117 141 297 141z" />
|
30 |
+
<glyph unicode="₽" d="M428 1200h350q67 0 120 -13t86 -31t57 -49.5t35 -56.5t17 -64.5t6.5 -60.5t0.5 -57v-16.5v-16.5q0 -36 -0.5 -57t-6.5 -61t-17 -65t-35 -57t-57 -50.5t-86 -31.5t-120 -13h-178l-2 -100h288q10 0 13 -6t-3 -14l-120 -160q-6 -8 -18 -14t-22 -6h-138v-175q0 -11 -5.5 -18 t-15.5 -7h-149q-10 0 -17.5 7.5t-7.5 17.5v175h-267q-10 0 -13 6t3 14l120 160q6 8 18 14t22 6h117v100h-267q-10 0 -13 6t3 14l120 160q6 8 18 14t22 6h117v475q0 10 7.5 17.5t17.5 7.5zM600 1000v-300h203q64 0 86.5 33t22.5 119q0 84 -22.5 116t-86.5 32h-203z" />
|
31 |
+
<glyph unicode="−" d="M250 700h800q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5z" />
|
32 |
+
<glyph unicode="⌛" d="M1000 1200v-150q0 -21 -14.5 -35.5t-35.5 -14.5h-50v-100q0 -91 -49.5 -165.5t-130.5 -109.5q81 -35 130.5 -109.5t49.5 -165.5v-150h50q21 0 35.5 -14.5t14.5 -35.5v-150h-800v150q0 21 14.5 35.5t35.5 14.5h50v150q0 91 49.5 165.5t130.5 109.5q-81 35 -130.5 109.5 t-49.5 165.5v100h-50q-21 0 -35.5 14.5t-14.5 35.5v150h800zM400 1000v-100q0 -60 32.5 -109.5t87.5 -73.5q28 -12 44 -37t16 -55t-16 -55t-44 -37q-55 -24 -87.5 -73.5t-32.5 -109.5v-150h400v150q0 60 -32.5 109.5t-87.5 73.5q-28 12 -44 37t-16 55t16 55t44 37 q55 24 87.5 73.5t32.5 109.5v100h-400z" />
|
33 |
+
<glyph unicode="◼" horiz-adv-x="500" d="M0 0z" />
|
34 |
+
<glyph unicode="☁" d="M503 1089q110 0 200.5 -59.5t134.5 -156.5q44 14 90 14q120 0 205 -86.5t85 -206.5q0 -121 -85 -207.5t-205 -86.5h-750q-79 0 -135.5 57t-56.5 137q0 69 42.5 122.5t108.5 67.5q-2 12 -2 37q0 153 108 260.5t260 107.5z" />
|
35 |
+
<glyph unicode="⛺" d="M774 1193.5q16 -9.5 20.5 -27t-5.5 -33.5l-136 -187l467 -746h30q20 0 35 -18.5t15 -39.5v-42h-1200v42q0 21 15 39.5t35 18.5h30l468 746l-135 183q-10 16 -5.5 34t20.5 28t34 5.5t28 -20.5l111 -148l112 150q9 16 27 20.5t34 -5zM600 200h377l-182 112l-195 534v-646z " />
|
36 |
+
<glyph unicode="✉" d="M25 1100h1150q10 0 12.5 -5t-5.5 -13l-564 -567q-8 -8 -18 -8t-18 8l-564 567q-8 8 -5.5 13t12.5 5zM18 882l264 -264q8 -8 8 -18t-8 -18l-264 -264q-8 -8 -13 -5.5t-5 12.5v550q0 10 5 12.5t13 -5.5zM918 618l264 264q8 8 13 5.5t5 -12.5v-550q0 -10 -5 -12.5t-13 5.5 l-264 264q-8 8 -8 18t8 18zM818 482l364 -364q8 -8 5.5 -13t-12.5 -5h-1150q-10 0 -12.5 5t5.5 13l364 364q8 8 18 8t18 -8l164 -164q8 -8 18 -8t18 8l164 164q8 8 18 8t18 -8z" />
|
37 |
+
<glyph unicode="✏" d="M1011 1210q19 0 33 -13l153 -153q13 -14 13 -33t-13 -33l-99 -92l-214 214l95 96q13 14 32 14zM1013 800l-615 -614l-214 214l614 614zM317 96l-333 -112l110 335z" />
|
38 |
+
<glyph unicode="" d="M700 650v-550h250q21 0 35.5 -14.5t14.5 -35.5v-50h-800v50q0 21 14.5 35.5t35.5 14.5h250v550l-500 550h1200z" />
|
39 |
+
<glyph unicode="" d="M368 1017l645 163q39 15 63 0t24 -49v-831q0 -55 -41.5 -95.5t-111.5 -63.5q-79 -25 -147 -4.5t-86 75t25.5 111.5t122.5 82q72 24 138 8v521l-600 -155v-606q0 -42 -44 -90t-109 -69q-79 -26 -147 -5.5t-86 75.5t25.5 111.5t122.5 82.5q72 24 138 7v639q0 38 14.5 59 t53.5 34z" />
|
40 |
+
<glyph unicode="" d="M500 1191q100 0 191 -39t156.5 -104.5t104.5 -156.5t39 -191l-1 -2l1 -5q0 -141 -78 -262l275 -274q23 -26 22.5 -44.5t-22.5 -42.5l-59 -58q-26 -20 -46.5 -20t-39.5 20l-275 274q-119 -77 -261 -77l-5 1l-2 -1q-100 0 -191 39t-156.5 104.5t-104.5 156.5t-39 191 t39 191t104.5 156.5t156.5 104.5t191 39zM500 1022q-88 0 -162 -43t-117 -117t-43 -162t43 -162t117 -117t162 -43t162 43t117 117t43 162t-43 162t-117 117t-162 43z" />
|
41 |
+
<glyph unicode="" d="M649 949q48 68 109.5 104t121.5 38.5t118.5 -20t102.5 -64t71 -100.5t27 -123q0 -57 -33.5 -117.5t-94 -124.5t-126.5 -127.5t-150 -152.5t-146 -174q-62 85 -145.5 174t-150 152.5t-126.5 127.5t-93.5 124.5t-33.5 117.5q0 64 28 123t73 100.5t104 64t119 20 t120.5 -38.5t104.5 -104z" />
|
42 |
+
<glyph unicode="" d="M407 800l131 353q7 19 17.5 19t17.5 -19l129 -353h421q21 0 24 -8.5t-14 -20.5l-342 -249l130 -401q7 -20 -0.5 -25.5t-24.5 6.5l-343 246l-342 -247q-17 -12 -24.5 -6.5t-0.5 25.5l130 400l-347 251q-17 12 -14 20.5t23 8.5h429z" />
|
43 |
+
<glyph unicode="" d="M407 800l131 353q7 19 17.5 19t17.5 -19l129 -353h421q21 0 24 -8.5t-14 -20.5l-342 -249l130 -401q7 -20 -0.5 -25.5t-24.5 6.5l-343 246l-342 -247q-17 -12 -24.5 -6.5t-0.5 25.5l130 400l-347 251q-17 12 -14 20.5t23 8.5h429zM477 700h-240l197 -142l-74 -226 l193 139l195 -140l-74 229l192 140h-234l-78 211z" />
|
44 |
+
<glyph unicode="" d="M600 1200q124 0 212 -88t88 -212v-250q0 -46 -31 -98t-69 -52v-75q0 -10 6 -21.5t15 -17.5l358 -230q9 -5 15 -16.5t6 -21.5v-93q0 -10 -7.5 -17.5t-17.5 -7.5h-1150q-10 0 -17.5 7.5t-7.5 17.5v93q0 10 6 21.5t15 16.5l358 230q9 6 15 17.5t6 21.5v75q-38 0 -69 52 t-31 98v250q0 124 88 212t212 88z" />
|
45 |
+
<glyph unicode="" d="M25 1100h1150q10 0 17.5 -7.5t7.5 -17.5v-1050q0 -10 -7.5 -17.5t-17.5 -7.5h-1150q-10 0 -17.5 7.5t-7.5 17.5v1050q0 10 7.5 17.5t17.5 7.5zM100 1000v-100h100v100h-100zM875 1000h-550q-10 0 -17.5 -7.5t-7.5 -17.5v-350q0 -10 7.5 -17.5t17.5 -7.5h550 q10 0 17.5 7.5t7.5 17.5v350q0 10 -7.5 17.5t-17.5 7.5zM1000 1000v-100h100v100h-100zM100 800v-100h100v100h-100zM1000 800v-100h100v100h-100zM100 600v-100h100v100h-100zM1000 600v-100h100v100h-100zM875 500h-550q-10 0 -17.5 -7.5t-7.5 -17.5v-350q0 -10 7.5 -17.5 t17.5 -7.5h550q10 0 17.5 7.5t7.5 17.5v350q0 10 -7.5 17.5t-17.5 7.5zM100 400v-100h100v100h-100zM1000 400v-100h100v100h-100zM100 200v-100h100v100h-100zM1000 200v-100h100v100h-100z" />
|
46 |
+
<glyph unicode="" d="M50 1100h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM650 1100h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400 q0 21 14.5 35.5t35.5 14.5zM50 500h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM650 500h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400 q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5z" />
|
47 |
+
<glyph unicode="" d="M50 1100h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 1100h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200 q0 21 14.5 35.5t35.5 14.5zM850 1100h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM50 700h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200 q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 700h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM850 700h200q21 0 35.5 -14.5t14.5 -35.5v-200 q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM50 300h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 300h200 q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM850 300h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5 t35.5 14.5z" />
|
48 |
+
<glyph unicode="" d="M50 1100h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 1100h700q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-700q-21 0 -35.5 14.5t-14.5 35.5v200 q0 21 14.5 35.5t35.5 14.5zM50 700h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 700h700q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-700 q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM50 300h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 300h700q21 0 35.5 -14.5t14.5 -35.5v-200 q0 -21 -14.5 -35.5t-35.5 -14.5h-700q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5z" />
|
49 |
+
<glyph unicode="" d="M465 477l571 571q8 8 18 8t17 -8l177 -177q8 -7 8 -17t-8 -18l-783 -784q-7 -8 -17.5 -8t-17.5 8l-384 384q-8 8 -8 18t8 17l177 177q7 8 17 8t18 -8l171 -171q7 -7 18 -7t18 7z" />
|
50 |
+
<glyph unicode="" d="M904 1083l178 -179q8 -8 8 -18.5t-8 -17.5l-267 -268l267 -268q8 -7 8 -17.5t-8 -18.5l-178 -178q-8 -8 -18.5 -8t-17.5 8l-268 267l-268 -267q-7 -8 -17.5 -8t-18.5 8l-178 178q-8 8 -8 18.5t8 17.5l267 268l-267 268q-8 7 -8 17.5t8 18.5l178 178q8 8 18.5 8t17.5 -8 l268 -267l268 268q7 7 17.5 7t18.5 -7z" />
|
51 |
+
<glyph unicode="" d="M507 1177q98 0 187.5 -38.5t154.5 -103.5t103.5 -154.5t38.5 -187.5q0 -141 -78 -262l300 -299q8 -8 8 -18.5t-8 -18.5l-109 -108q-7 -8 -17.5 -8t-18.5 8l-300 299q-119 -77 -261 -77q-98 0 -188 38.5t-154.5 103t-103 154.5t-38.5 188t38.5 187.5t103 154.5 t154.5 103.5t188 38.5zM506.5 1023q-89.5 0 -165.5 -44t-120 -120.5t-44 -166t44 -165.5t120 -120t165.5 -44t166 44t120.5 120t44 165.5t-44 166t-120.5 120.5t-166 44zM425 900h150q10 0 17.5 -7.5t7.5 -17.5v-75h75q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5 t-17.5 -7.5h-75v-75q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v75h-75q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5h75v75q0 10 7.5 17.5t17.5 7.5z" />
|
52 |
+
<glyph unicode="" d="M507 1177q98 0 187.5 -38.5t154.5 -103.5t103.5 -154.5t38.5 -187.5q0 -141 -78 -262l300 -299q8 -8 8 -18.5t-8 -18.5l-109 -108q-7 -8 -17.5 -8t-18.5 8l-300 299q-119 -77 -261 -77q-98 0 -188 38.5t-154.5 103t-103 154.5t-38.5 188t38.5 187.5t103 154.5 t154.5 103.5t188 38.5zM506.5 1023q-89.5 0 -165.5 -44t-120 -120.5t-44 -166t44 -165.5t120 -120t165.5 -44t166 44t120.5 120t44 165.5t-44 166t-120.5 120.5t-166 44zM325 800h350q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-350q-10 0 -17.5 7.5 t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5z" />
|
53 |
+
<glyph unicode="" d="M550 1200h100q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM800 975v166q167 -62 272 -209.5t105 -331.5q0 -117 -45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5 t-184.5 123t-123 184.5t-45.5 224q0 184 105 331.5t272 209.5v-166q-103 -55 -165 -155t-62 -220q0 -116 57 -214.5t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5q0 120 -62 220t-165 155z" />
|
54 |
+
<glyph unicode="" d="M1025 1200h150q10 0 17.5 -7.5t7.5 -17.5v-1150q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v1150q0 10 7.5 17.5t17.5 7.5zM725 800h150q10 0 17.5 -7.5t7.5 -17.5v-750q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v750 q0 10 7.5 17.5t17.5 7.5zM425 500h150q10 0 17.5 -7.5t7.5 -17.5v-450q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v450q0 10 7.5 17.5t17.5 7.5zM125 300h150q10 0 17.5 -7.5t7.5 -17.5v-250q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5 v250q0 10 7.5 17.5t17.5 7.5z" />
|
55 |
+
<glyph unicode="" d="M600 1174q33 0 74 -5l38 -152l5 -1q49 -14 94 -39l5 -2l134 80q61 -48 104 -105l-80 -134l3 -5q25 -44 39 -93l1 -6l152 -38q5 -43 5 -73q0 -34 -5 -74l-152 -38l-1 -6q-15 -49 -39 -93l-3 -5l80 -134q-48 -61 -104 -105l-134 81l-5 -3q-44 -25 -94 -39l-5 -2l-38 -151 q-43 -5 -74 -5q-33 0 -74 5l-38 151l-5 2q-49 14 -94 39l-5 3l-134 -81q-60 48 -104 105l80 134l-3 5q-25 45 -38 93l-2 6l-151 38q-6 42 -6 74q0 33 6 73l151 38l2 6q13 48 38 93l3 5l-80 134q47 61 105 105l133 -80l5 2q45 25 94 39l5 1l38 152q43 5 74 5zM600 815 q-89 0 -152 -63t-63 -151.5t63 -151.5t152 -63t152 63t63 151.5t-63 151.5t-152 63z" />
|
56 |
+
<glyph unicode="" d="M500 1300h300q41 0 70.5 -29.5t29.5 -70.5v-100h275q10 0 17.5 -7.5t7.5 -17.5v-75h-1100v75q0 10 7.5 17.5t17.5 7.5h275v100q0 41 29.5 70.5t70.5 29.5zM500 1200v-100h300v100h-300zM1100 900v-800q0 -41 -29.5 -70.5t-70.5 -29.5h-700q-41 0 -70.5 29.5t-29.5 70.5 v800h900zM300 800v-700h100v700h-100zM500 800v-700h100v700h-100zM700 800v-700h100v700h-100zM900 800v-700h100v700h-100z" />
|
57 |
+
<glyph unicode="" d="M18 618l620 608q8 7 18.5 7t17.5 -7l608 -608q8 -8 5.5 -13t-12.5 -5h-175v-575q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v375h-300v-375q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v575h-175q-10 0 -12.5 5t5.5 13z" />
|
58 |
+
<glyph unicode="" d="M600 1200v-400q0 -41 29.5 -70.5t70.5 -29.5h300v-650q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v1100q0 21 14.5 35.5t35.5 14.5h450zM1000 800h-250q-21 0 -35.5 14.5t-14.5 35.5v250z" />
|
59 |
+
<glyph unicode="" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM525 900h50q10 0 17.5 -7.5t7.5 -17.5v-275h175q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v350q0 10 7.5 17.5t17.5 7.5z" />
|
60 |
+
<glyph unicode="" d="M1300 0h-538l-41 400h-242l-41 -400h-538l431 1200h209l-21 -300h162l-20 300h208zM515 800l-27 -300h224l-27 300h-170z" />
|
61 |
+
<glyph unicode="" d="M550 1200h200q21 0 35.5 -14.5t14.5 -35.5v-450h191q20 0 25.5 -11.5t-7.5 -27.5l-327 -400q-13 -16 -32 -16t-32 16l-327 400q-13 16 -7.5 27.5t25.5 11.5h191v450q0 21 14.5 35.5t35.5 14.5zM1125 400h50q10 0 17.5 -7.5t7.5 -17.5v-350q0 -10 -7.5 -17.5t-17.5 -7.5 h-1050q-10 0 -17.5 7.5t-7.5 17.5v350q0 10 7.5 17.5t17.5 7.5h50q10 0 17.5 -7.5t7.5 -17.5v-175h900v175q0 10 7.5 17.5t17.5 7.5z" />
|
62 |
+
<glyph unicode="" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM525 900h150q10 0 17.5 -7.5t7.5 -17.5v-275h137q21 0 26 -11.5t-8 -27.5l-223 -275q-13 -16 -32 -16t-32 16l-223 275q-13 16 -8 27.5t26 11.5h137v275q0 10 7.5 17.5t17.5 7.5z " />
|
63 |
+
<glyph unicode="" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM632 914l223 -275q13 -16 8 -27.5t-26 -11.5h-137v-275q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v275h-137q-21 0 -26 11.5t8 27.5l223 275q13 16 32 16 t32 -16z" />
|
64 |
+
<glyph unicode="" d="M225 1200h750q10 0 19.5 -7t12.5 -17l186 -652q7 -24 7 -49v-425q0 -12 -4 -27t-9 -17q-12 -6 -37 -6h-1100q-12 0 -27 4t-17 8q-6 13 -6 38l1 425q0 25 7 49l185 652q3 10 12.5 17t19.5 7zM878 1000h-556q-10 0 -19 -7t-11 -18l-87 -450q-2 -11 4 -18t16 -7h150 q10 0 19.5 -7t11.5 -17l38 -152q2 -10 11.5 -17t19.5 -7h250q10 0 19.5 7t11.5 17l38 152q2 10 11.5 17t19.5 7h150q10 0 16 7t4 18l-87 450q-2 11 -11 18t-19 7z" />
|
65 |
+
<glyph unicode="" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM540 820l253 -190q17 -12 17 -30t-17 -30l-253 -190q-16 -12 -28 -6.5t-12 26.5v400q0 21 12 26.5t28 -6.5z" />
|
66 |
+
<glyph unicode="" d="M947 1060l135 135q7 7 12.5 5t5.5 -13v-362q0 -10 -7.5 -17.5t-17.5 -7.5h-362q-11 0 -13 5.5t5 12.5l133 133q-109 76 -238 76q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5h150q0 -117 -45.5 -224 t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5q192 0 347 -117z" />
|
67 |
+
<glyph unicode="" d="M947 1060l135 135q7 7 12.5 5t5.5 -13v-361q0 -11 -7.5 -18.5t-18.5 -7.5h-361q-11 0 -13 5.5t5 12.5l134 134q-110 75 -239 75q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5h-150q0 117 45.5 224t123 184.5t184.5 123t224 45.5q192 0 347 -117zM1027 600h150 q0 -117 -45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5q-192 0 -348 118l-134 -134q-7 -8 -12.5 -5.5t-5.5 12.5v360q0 11 7.5 18.5t18.5 7.5h360q10 0 12.5 -5.5t-5.5 -12.5l-133 -133q110 -76 240 -76q116 0 214.5 57t155.5 155.5t57 214.5z" />
|
68 |
+
<glyph unicode="" d="M125 1200h1050q10 0 17.5 -7.5t7.5 -17.5v-1150q0 -10 -7.5 -17.5t-17.5 -7.5h-1050q-10 0 -17.5 7.5t-7.5 17.5v1150q0 10 7.5 17.5t17.5 7.5zM1075 1000h-850q-10 0 -17.5 -7.5t-7.5 -17.5v-850q0 -10 7.5 -17.5t17.5 -7.5h850q10 0 17.5 7.5t7.5 17.5v850 q0 10 -7.5 17.5t-17.5 7.5zM325 900h50q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5zM525 900h450q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-450q-10 0 -17.5 7.5t-7.5 17.5v50 q0 10 7.5 17.5t17.5 7.5zM325 700h50q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5zM525 700h450q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-450q-10 0 -17.5 7.5t-7.5 17.5v50 q0 10 7.5 17.5t17.5 7.5zM325 500h50q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5zM525 500h450q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-450q-10 0 -17.5 7.5t-7.5 17.5v50 q0 10 7.5 17.5t17.5 7.5zM325 300h50q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5zM525 300h450q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-450q-10 0 -17.5 7.5t-7.5 17.5v50 q0 10 7.5 17.5t17.5 7.5z" />
|
69 |
+
<glyph unicode="" d="M900 800v200q0 83 -58.5 141.5t-141.5 58.5h-300q-82 0 -141 -59t-59 -141v-200h-100q-41 0 -70.5 -29.5t-29.5 -70.5v-600q0 -41 29.5 -70.5t70.5 -29.5h900q41 0 70.5 29.5t29.5 70.5v600q0 41 -29.5 70.5t-70.5 29.5h-100zM400 800v150q0 21 15 35.5t35 14.5h200 q20 0 35 -14.5t15 -35.5v-150h-300z" />
|
70 |
+
<glyph unicode="" d="M125 1100h50q10 0 17.5 -7.5t7.5 -17.5v-1075h-100v1075q0 10 7.5 17.5t17.5 7.5zM1075 1052q4 0 9 -2q16 -6 16 -23v-421q0 -6 -3 -12q-33 -59 -66.5 -99t-65.5 -58t-56.5 -24.5t-52.5 -6.5q-26 0 -57.5 6.5t-52.5 13.5t-60 21q-41 15 -63 22.5t-57.5 15t-65.5 7.5 q-85 0 -160 -57q-7 -5 -15 -5q-6 0 -11 3q-14 7 -14 22v438q22 55 82 98.5t119 46.5q23 2 43 0.5t43 -7t32.5 -8.5t38 -13t32.5 -11q41 -14 63.5 -21t57 -14t63.5 -7q103 0 183 87q7 8 18 8z" />
|
71 |
+
<glyph unicode="" d="M600 1175q116 0 227 -49.5t192.5 -131t131 -192.5t49.5 -227v-300q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v300q0 127 -70.5 231.5t-184.5 161.5t-245 57t-245 -57t-184.5 -161.5t-70.5 -231.5v-300q0 -10 -7.5 -17.5t-17.5 -7.5h-50 q-10 0 -17.5 7.5t-7.5 17.5v300q0 116 49.5 227t131 192.5t192.5 131t227 49.5zM220 500h160q8 0 14 -6t6 -14v-460q0 -8 -6 -14t-14 -6h-160q-8 0 -14 6t-6 14v460q0 8 6 14t14 6zM820 500h160q8 0 14 -6t6 -14v-460q0 -8 -6 -14t-14 -6h-160q-8 0 -14 6t-6 14v460 q0 8 6 14t14 6z" />
|
72 |
+
<glyph unicode="" d="M321 814l258 172q9 6 15 2.5t6 -13.5v-750q0 -10 -6 -13.5t-15 2.5l-258 172q-21 14 -46 14h-250q-10 0 -17.5 7.5t-7.5 17.5v350q0 10 7.5 17.5t17.5 7.5h250q25 0 46 14zM900 668l120 120q7 7 17 7t17 -7l34 -34q7 -7 7 -17t-7 -17l-120 -120l120 -120q7 -7 7 -17 t-7 -17l-34 -34q-7 -7 -17 -7t-17 7l-120 119l-120 -119q-7 -7 -17 -7t-17 7l-34 34q-7 7 -7 17t7 17l119 120l-119 120q-7 7 -7 17t7 17l34 34q7 8 17 8t17 -8z" />
|
73 |
+
<glyph unicode="" d="M321 814l258 172q9 6 15 2.5t6 -13.5v-750q0 -10 -6 -13.5t-15 2.5l-258 172q-21 14 -46 14h-250q-10 0 -17.5 7.5t-7.5 17.5v350q0 10 7.5 17.5t17.5 7.5h250q25 0 46 14zM766 900h4q10 -1 16 -10q96 -129 96 -290q0 -154 -90 -281q-6 -9 -17 -10l-3 -1q-9 0 -16 6 l-29 23q-7 7 -8.5 16.5t4.5 17.5q72 103 72 229q0 132 -78 238q-6 8 -4.5 18t9.5 17l29 22q7 5 15 5z" />
|
74 |
+
<glyph unicode="" d="M967 1004h3q11 -1 17 -10q135 -179 135 -396q0 -105 -34 -206.5t-98 -185.5q-7 -9 -17 -10h-3q-9 0 -16 6l-42 34q-8 6 -9 16t5 18q111 150 111 328q0 90 -29.5 176t-84.5 157q-6 9 -5 19t10 16l42 33q7 5 15 5zM321 814l258 172q9 6 15 2.5t6 -13.5v-750q0 -10 -6 -13.5 t-15 2.5l-258 172q-21 14 -46 14h-250q-10 0 -17.5 7.5t-7.5 17.5v350q0 10 7.5 17.5t17.5 7.5h250q25 0 46 14zM766 900h4q10 -1 16 -10q96 -129 96 -290q0 -154 -90 -281q-6 -9 -17 -10l-3 -1q-9 0 -16 6l-29 23q-7 7 -8.5 16.5t4.5 17.5q72 103 72 229q0 132 -78 238 q-6 8 -4.5 18.5t9.5 16.5l29 22q7 5 15 5z" />
|
75 |
+
<glyph unicode="" d="M500 900h100v-100h-100v-100h-400v-100h-100v600h500v-300zM1200 700h-200v-100h200v-200h-300v300h-200v300h-100v200h600v-500zM100 1100v-300h300v300h-300zM800 1100v-300h300v300h-300zM300 900h-100v100h100v-100zM1000 900h-100v100h100v-100zM300 500h200v-500 h-500v500h200v100h100v-100zM800 300h200v-100h-100v-100h-200v100h-100v100h100v200h-200v100h300v-300zM100 400v-300h300v300h-300zM300 200h-100v100h100v-100zM1200 200h-100v100h100v-100zM700 0h-100v100h100v-100zM1200 0h-300v100h300v-100z" />
|
76 |
+
<glyph unicode="" d="M100 200h-100v1000h100v-1000zM300 200h-100v1000h100v-1000zM700 200h-200v1000h200v-1000zM900 200h-100v1000h100v-1000zM1200 200h-200v1000h200v-1000zM400 0h-300v100h300v-100zM600 0h-100v91h100v-91zM800 0h-100v91h100v-91zM1100 0h-200v91h200v-91z" />
|
77 |
+
<glyph unicode="" d="M500 1200l682 -682q8 -8 8 -18t-8 -18l-464 -464q-8 -8 -18 -8t-18 8l-682 682l1 475q0 10 7.5 17.5t17.5 7.5h474zM319.5 1024.5q-29.5 29.5 -71 29.5t-71 -29.5t-29.5 -71.5t29.5 -71.5t71 -29.5t71 29.5t29.5 71.5t-29.5 71.5z" />
|
78 |
+
<glyph unicode="" d="M500 1200l682 -682q8 -8 8 -18t-8 -18l-464 -464q-8 -8 -18 -8t-18 8l-682 682l1 475q0 10 7.5 17.5t17.5 7.5h474zM800 1200l682 -682q8 -8 8 -18t-8 -18l-464 -464q-8 -8 -18 -8t-18 8l-56 56l424 426l-700 700h150zM319.5 1024.5q-29.5 29.5 -71 29.5t-71 -29.5 t-29.5 -71.5t29.5 -71.5t71 -29.5t71 29.5t29.5 71.5t-29.5 71.5z" />
|
79 |
+
<glyph unicode="" d="M300 1200h825q75 0 75 -75v-900q0 -25 -18 -43l-64 -64q-8 -8 -13 -5.5t-5 12.5v950q0 10 -7.5 17.5t-17.5 7.5h-700q-25 0 -43 -18l-64 -64q-8 -8 -5.5 -13t12.5 -5h700q10 0 17.5 -7.5t7.5 -17.5v-950q0 -10 -7.5 -17.5t-17.5 -7.5h-850q-10 0 -17.5 7.5t-7.5 17.5v975 q0 25 18 43l139 139q18 18 43 18z" />
|
80 |
+
<glyph unicode="" d="M250 1200h800q21 0 35.5 -14.5t14.5 -35.5v-1150l-450 444l-450 -445v1151q0 21 14.5 35.5t35.5 14.5z" />
|
81 |
+
<glyph unicode="" d="M822 1200h-444q-11 0 -19 -7.5t-9 -17.5l-78 -301q-7 -24 7 -45l57 -108q6 -9 17.5 -15t21.5 -6h450q10 0 21.5 6t17.5 15l62 108q14 21 7 45l-83 301q-1 10 -9 17.5t-19 7.5zM1175 800h-150q-10 0 -21 -6.5t-15 -15.5l-78 -156q-4 -9 -15 -15.5t-21 -6.5h-550 q-10 0 -21 6.5t-15 15.5l-78 156q-4 9 -15 15.5t-21 6.5h-150q-10 0 -17.5 -7.5t-7.5 -17.5v-650q0 -10 7.5 -17.5t17.5 -7.5h150q10 0 17.5 7.5t7.5 17.5v150q0 10 7.5 17.5t17.5 7.5h750q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 7.5 -17.5t17.5 -7.5h150q10 0 17.5 7.5 t7.5 17.5v650q0 10 -7.5 17.5t-17.5 7.5zM850 200h-500q-10 0 -19.5 -7t-11.5 -17l-38 -152q-2 -10 3.5 -17t15.5 -7h600q10 0 15.5 7t3.5 17l-38 152q-2 10 -11.5 17t-19.5 7z" />
|
82 |
+
<glyph unicode="" d="M500 1100h200q56 0 102.5 -20.5t72.5 -50t44 -59t25 -50.5l6 -20h150q41 0 70.5 -29.5t29.5 -70.5v-600q0 -41 -29.5 -70.5t-70.5 -29.5h-1000q-41 0 -70.5 29.5t-29.5 70.5v600q0 41 29.5 70.5t70.5 29.5h150q2 8 6.5 21.5t24 48t45 61t72 48t102.5 21.5zM900 800v-100 h100v100h-100zM600 730q-95 0 -162.5 -67.5t-67.5 -162.5t67.5 -162.5t162.5 -67.5t162.5 67.5t67.5 162.5t-67.5 162.5t-162.5 67.5zM600 603q43 0 73 -30t30 -73t-30 -73t-73 -30t-73 30t-30 73t30 73t73 30z" />
|
83 |
+
<glyph unicode="" d="M681 1199l385 -998q20 -50 60 -92q18 -19 36.5 -29.5t27.5 -11.5l10 -2v-66h-417v66q53 0 75 43.5t5 88.5l-82 222h-391q-58 -145 -92 -234q-11 -34 -6.5 -57t25.5 -37t46 -20t55 -6v-66h-365v66q56 24 84 52q12 12 25 30.5t20 31.5l7 13l399 1006h93zM416 521h340 l-162 457z" />
|
84 |
+
<glyph unicode="" d="M753 641q5 -1 14.5 -4.5t36 -15.5t50.5 -26.5t53.5 -40t50.5 -54.5t35.5 -70t14.5 -87q0 -67 -27.5 -125.5t-71.5 -97.5t-98.5 -66.5t-108.5 -40.5t-102 -13h-500v89q41 7 70.5 32.5t29.5 65.5v827q0 24 -0.5 34t-3.5 24t-8.5 19.5t-17 13.5t-28 12.5t-42.5 11.5v71 l471 -1q57 0 115.5 -20.5t108 -57t80.5 -94t31 -124.5q0 -51 -15.5 -96.5t-38 -74.5t-45 -50.5t-38.5 -30.5zM400 700h139q78 0 130.5 48.5t52.5 122.5q0 41 -8.5 70.5t-29.5 55.5t-62.5 39.5t-103.5 13.5h-118v-350zM400 200h216q80 0 121 50.5t41 130.5q0 90 -62.5 154.5 t-156.5 64.5h-159v-400z" />
|
85 |
+
<glyph unicode="" d="M877 1200l2 -57q-83 -19 -116 -45.5t-40 -66.5l-132 -839q-9 -49 13 -69t96 -26v-97h-500v97q186 16 200 98l173 832q3 17 3 30t-1.5 22.5t-9 17.5t-13.5 12.5t-21.5 10t-26 8.5t-33.5 10q-13 3 -19 5v57h425z" />
|
86 |
+
<glyph unicode="" d="M1300 900h-50q0 21 -4 37t-9.5 26.5t-18 17.5t-22 11t-28.5 5.5t-31 2t-37 0.5h-200v-850q0 -22 25 -34.5t50 -13.5l25 -2v-100h-400v100q4 0 11 0.5t24 3t30 7t24 15t11 24.5v850h-200q-25 0 -37 -0.5t-31 -2t-28.5 -5.5t-22 -11t-18 -17.5t-9.5 -26.5t-4 -37h-50v300 h1000v-300zM175 1000h-75v-800h75l-125 -167l-125 167h75v800h-75l125 167z" />
|
87 |
+
<glyph unicode="" d="M1100 900h-50q0 21 -4 37t-9.5 26.5t-18 17.5t-22 11t-28.5 5.5t-31 2t-37 0.5h-200v-650q0 -22 25 -34.5t50 -13.5l25 -2v-100h-400v100q4 0 11 0.5t24 3t30 7t24 15t11 24.5v650h-200q-25 0 -37 -0.5t-31 -2t-28.5 -5.5t-22 -11t-18 -17.5t-9.5 -26.5t-4 -37h-50v300 h1000v-300zM1167 50l-167 -125v75h-800v-75l-167 125l167 125v-75h800v75z" />
|
88 |
+
<glyph unicode="" d="M50 1100h600q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-600q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 800h1000q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1000q-21 0 -35.5 14.5t-14.5 35.5v100 q0 21 14.5 35.5t35.5 14.5zM50 500h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 200h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
|
89 |
+
<glyph unicode="" d="M250 1100h700q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-700q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 800h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v100 q0 21 14.5 35.5t35.5 14.5zM250 500h700q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-700q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 200h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
|
90 |
+
<glyph unicode="" d="M500 950v100q0 21 14.5 35.5t35.5 14.5h600q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-600q-21 0 -35.5 14.5t-14.5 35.5zM100 650v100q0 21 14.5 35.5t35.5 14.5h1000q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1000 q-21 0 -35.5 14.5t-14.5 35.5zM300 350v100q0 21 14.5 35.5t35.5 14.5h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5zM0 50v100q0 21 14.5 35.5t35.5 14.5h1100q21 0 35.5 -14.5t14.5 -35.5v-100 q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5z" />
|
91 |
+
<glyph unicode="" d="M50 1100h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 800h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v100 q0 21 14.5 35.5t35.5 14.5zM50 500h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 200h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
|
92 |
+
<glyph unicode="" d="M50 1100h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM350 1100h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v100 q0 21 14.5 35.5t35.5 14.5zM50 800h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM350 800h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-800 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 500h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM350 500h800q21 0 35.5 -14.5t14.5 -35.5v-100 q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 200h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM350 200h800 q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
|
93 |
+
<glyph unicode="" d="M400 0h-100v1100h100v-1100zM550 1100h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM550 800h500q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-500 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM267 550l-167 -125v75h-200v100h200v75zM550 500h300q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-300q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM550 200h600 q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-600q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
|
94 |
+
<glyph unicode="" d="M50 1100h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM900 0h-100v1100h100v-1100zM50 800h500q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-500 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM1100 600h200v-100h-200v-75l-167 125l167 125v-75zM50 500h300q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-300q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 200h600 q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-600q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
|
95 |
+
<glyph unicode="" d="M75 1000h750q31 0 53 -22t22 -53v-650q0 -31 -22 -53t-53 -22h-750q-31 0 -53 22t-22 53v650q0 31 22 53t53 22zM1200 300l-300 300l300 300v-600z" />
|
96 |
+
<glyph unicode="" d="M44 1100h1112q18 0 31 -13t13 -31v-1012q0 -18 -13 -31t-31 -13h-1112q-18 0 -31 13t-13 31v1012q0 18 13 31t31 13zM100 1000v-737l247 182l298 -131l-74 156l293 318l236 -288v500h-1000zM342 884q56 0 95 -39t39 -94.5t-39 -95t-95 -39.5t-95 39.5t-39 95t39 94.5 t95 39z" />
|
97 |
+
<glyph unicode="" d="M648 1169q117 0 216 -60t156.5 -161t57.5 -218q0 -115 -70 -258q-69 -109 -158 -225.5t-143 -179.5l-54 -62q-9 8 -25.5 24.5t-63.5 67.5t-91 103t-98.5 128t-95.5 148q-60 132 -60 249q0 88 34 169.5t91.5 142t137 96.5t166.5 36zM652.5 974q-91.5 0 -156.5 -65 t-65 -157t65 -156.5t156.5 -64.5t156.5 64.5t65 156.5t-65 157t-156.5 65z" />
|
98 |
+
<glyph unicode="" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 173v854q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57z" />
|
99 |
+
<glyph unicode="" d="M554 1295q21 -72 57.5 -143.5t76 -130t83 -118t82.5 -117t70 -116t49.5 -126t18.5 -136.5q0 -71 -25.5 -135t-68.5 -111t-99 -82t-118.5 -54t-125.5 -23q-84 5 -161.5 34t-139.5 78.5t-99 125t-37 164.5q0 69 18 136.5t49.5 126.5t69.5 116.5t81.5 117.5t83.5 119 t76.5 131t58.5 143zM344 710q-23 -33 -43.5 -70.5t-40.5 -102.5t-17 -123q1 -37 14.5 -69.5t30 -52t41 -37t38.5 -24.5t33 -15q21 -7 32 -1t13 22l6 34q2 10 -2.5 22t-13.5 19q-5 4 -14 12t-29.5 40.5t-32.5 73.5q-26 89 6 271q2 11 -6 11q-8 1 -15 -10z" />
|
100 |
+
<glyph unicode="" d="M1000 1013l108 115q2 1 5 2t13 2t20.5 -1t25 -9.5t28.5 -21.5q22 -22 27 -43t0 -32l-6 -10l-108 -115zM350 1100h400q50 0 105 -13l-187 -187h-368q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5v182l200 200v-332 q0 -165 -93.5 -257.5t-256.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 165 92.5 257.5t257.5 92.5zM1009 803l-362 -362l-161 -50l55 170l355 355z" />
|
101 |
+
<glyph unicode="" d="M350 1100h361q-164 -146 -216 -200h-195q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5l200 153v-103q0 -165 -92.5 -257.5t-257.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 165 92.5 257.5t257.5 92.5z M824 1073l339 -301q8 -7 8 -17.5t-8 -17.5l-340 -306q-7 -6 -12.5 -4t-6.5 11v203q-26 1 -54.5 0t-78.5 -7.5t-92 -17.5t-86 -35t-70 -57q10 59 33 108t51.5 81.5t65 58.5t68.5 40.5t67 24.5t56 13.5t40 4.5v210q1 10 6.5 12.5t13.5 -4.5z" />
|
102 |
+
<glyph unicode="" d="M350 1100h350q60 0 127 -23l-178 -177h-349q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5v69l200 200v-219q0 -165 -92.5 -257.5t-257.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 165 92.5 257.5t257.5 92.5z M643 639l395 395q7 7 17.5 7t17.5 -7l101 -101q7 -7 7 -17.5t-7 -17.5l-531 -532q-7 -7 -17.5 -7t-17.5 7l-248 248q-7 7 -7 17.5t7 17.5l101 101q7 7 17.5 7t17.5 -7l111 -111q8 -7 18 -7t18 7z" />
|
103 |
+
<glyph unicode="" d="M318 918l264 264q8 8 18 8t18 -8l260 -264q7 -8 4.5 -13t-12.5 -5h-170v-200h200v173q0 10 5 12t13 -5l264 -260q8 -7 8 -17.5t-8 -17.5l-264 -265q-8 -7 -13 -5t-5 12v173h-200v-200h170q10 0 12.5 -5t-4.5 -13l-260 -264q-8 -8 -18 -8t-18 8l-264 264q-8 8 -5.5 13 t12.5 5h175v200h-200v-173q0 -10 -5 -12t-13 5l-264 265q-8 7 -8 17.5t8 17.5l264 260q8 7 13 5t5 -12v-173h200v200h-175q-10 0 -12.5 5t5.5 13z" />
|
104 |
+
<glyph unicode="" d="M250 1100h100q21 0 35.5 -14.5t14.5 -35.5v-438l464 453q15 14 25.5 10t10.5 -25v-1000q0 -21 -10.5 -25t-25.5 10l-464 453v-438q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v1000q0 21 14.5 35.5t35.5 14.5z" />
|
105 |
+
<glyph unicode="" d="M50 1100h100q21 0 35.5 -14.5t14.5 -35.5v-438l464 453q15 14 25.5 10t10.5 -25v-438l464 453q15 14 25.5 10t10.5 -25v-1000q0 -21 -10.5 -25t-25.5 10l-464 453v-438q0 -21 -10.5 -25t-25.5 10l-464 453v-438q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5 t-14.5 35.5v1000q0 21 14.5 35.5t35.5 14.5z" />
|
106 |
+
<glyph unicode="" d="M1200 1050v-1000q0 -21 -10.5 -25t-25.5 10l-464 453v-438q0 -21 -10.5 -25t-25.5 10l-492 480q-15 14 -15 35t15 35l492 480q15 14 25.5 10t10.5 -25v-438l464 453q15 14 25.5 10t10.5 -25z" />
|
107 |
+
<glyph unicode="" d="M243 1074l814 -498q18 -11 18 -26t-18 -26l-814 -498q-18 -11 -30.5 -4t-12.5 28v1000q0 21 12.5 28t30.5 -4z" />
|
108 |
+
<glyph unicode="" d="M250 1000h200q21 0 35.5 -14.5t14.5 -35.5v-800q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v800q0 21 14.5 35.5t35.5 14.5zM650 1000h200q21 0 35.5 -14.5t14.5 -35.5v-800q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v800 q0 21 14.5 35.5t35.5 14.5z" />
|
109 |
+
<glyph unicode="" d="M1100 950v-800q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v800q0 21 14.5 35.5t35.5 14.5h800q21 0 35.5 -14.5t14.5 -35.5z" />
|
110 |
+
<glyph unicode="" d="M500 612v438q0 21 10.5 25t25.5 -10l492 -480q15 -14 15 -35t-15 -35l-492 -480q-15 -14 -25.5 -10t-10.5 25v438l-464 -453q-15 -14 -25.5 -10t-10.5 25v1000q0 21 10.5 25t25.5 -10z" />
|
111 |
+
<glyph unicode="" d="M1048 1102l100 1q20 0 35 -14.5t15 -35.5l5 -1000q0 -21 -14.5 -35.5t-35.5 -14.5l-100 -1q-21 0 -35.5 14.5t-14.5 35.5l-2 437l-463 -454q-14 -15 -24.5 -10.5t-10.5 25.5l-2 437l-462 -455q-15 -14 -25.5 -9.5t-10.5 24.5l-5 1000q0 21 10.5 25.5t25.5 -10.5l466 -450 l-2 438q0 20 10.5 24.5t25.5 -9.5l466 -451l-2 438q0 21 14.5 35.5t35.5 14.5z" />
|
112 |
+
<glyph unicode="" d="M850 1100h100q21 0 35.5 -14.5t14.5 -35.5v-1000q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v438l-464 -453q-15 -14 -25.5 -10t-10.5 25v1000q0 21 10.5 25t25.5 -10l464 -453v438q0 21 14.5 35.5t35.5 14.5z" />
|
113 |
+
<glyph unicode="" d="M686 1081l501 -540q15 -15 10.5 -26t-26.5 -11h-1042q-22 0 -26.5 11t10.5 26l501 540q15 15 36 15t36 -15zM150 400h1000q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1000q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
|
114 |
+
<glyph unicode="" d="M885 900l-352 -353l352 -353l-197 -198l-552 552l552 550z" />
|
115 |
+
<glyph unicode="" d="M1064 547l-551 -551l-198 198l353 353l-353 353l198 198z" />
|
116 |
+
<glyph unicode="" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM650 900h-100q-21 0 -35.5 -14.5t-14.5 -35.5v-150h-150 q-21 0 -35.5 -14.5t-14.5 -35.5v-100q0 -21 14.5 -35.5t35.5 -14.5h150v-150q0 -21 14.5 -35.5t35.5 -14.5h100q21 0 35.5 14.5t14.5 35.5v150h150q21 0 35.5 14.5t14.5 35.5v100q0 21 -14.5 35.5t-35.5 14.5h-150v150q0 21 -14.5 35.5t-35.5 14.5z" />
|
117 |
+
<glyph unicode="" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM850 700h-500q-21 0 -35.5 -14.5t-14.5 -35.5v-100q0 -21 14.5 -35.5 t35.5 -14.5h500q21 0 35.5 14.5t14.5 35.5v100q0 21 -14.5 35.5t-35.5 14.5z" />
|
118 |
+
<glyph unicode="" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM741.5 913q-12.5 0 -21.5 -9l-120 -120l-120 120q-9 9 -21.5 9 t-21.5 -9l-141 -141q-9 -9 -9 -21.5t9 -21.5l120 -120l-120 -120q-9 -9 -9 -21.5t9 -21.5l141 -141q9 -9 21.5 -9t21.5 9l120 120l120 -120q9 -9 21.5 -9t21.5 9l141 141q9 9 9 21.5t-9 21.5l-120 120l120 120q9 9 9 21.5t-9 21.5l-141 141q-9 9 -21.5 9z" />
|
119 |
+
<glyph unicode="" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM546 623l-84 85q-7 7 -17.5 7t-18.5 -7l-139 -139q-7 -8 -7 -18t7 -18 l242 -241q7 -8 17.5 -8t17.5 8l375 375q7 7 7 17.5t-7 18.5l-139 139q-7 7 -17.5 7t-17.5 -7z" />
|
120 |
+
<glyph unicode="" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM588 941q-29 0 -59 -5.5t-63 -20.5t-58 -38.5t-41.5 -63t-16.5 -89.5 q0 -25 20 -25h131q30 -5 35 11q6 20 20.5 28t45.5 8q20 0 31.5 -10.5t11.5 -28.5q0 -23 -7 -34t-26 -18q-1 0 -13.5 -4t-19.5 -7.5t-20 -10.5t-22 -17t-18.5 -24t-15.5 -35t-8 -46q-1 -8 5.5 -16.5t20.5 -8.5h173q7 0 22 8t35 28t37.5 48t29.5 74t12 100q0 47 -17 83 t-42.5 57t-59.5 34.5t-64 18t-59 4.5zM675 400h-150q-10 0 -17.5 -7.5t-7.5 -17.5v-150q0 -10 7.5 -17.5t17.5 -7.5h150q10 0 17.5 7.5t7.5 17.5v150q0 10 -7.5 17.5t-17.5 7.5z" />
|
121 |
+
<glyph unicode="" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM675 1000h-150q-10 0 -17.5 -7.5t-7.5 -17.5v-150q0 -10 7.5 -17.5 t17.5 -7.5h150q10 0 17.5 7.5t7.5 17.5v150q0 10 -7.5 17.5t-17.5 7.5zM675 700h-250q-10 0 -17.5 -7.5t-7.5 -17.5v-50q0 -10 7.5 -17.5t17.5 -7.5h75v-200h-75q-10 0 -17.5 -7.5t-7.5 -17.5v-50q0 -10 7.5 -17.5t17.5 -7.5h350q10 0 17.5 7.5t7.5 17.5v50q0 10 -7.5 17.5 t-17.5 7.5h-75v275q0 10 -7.5 17.5t-17.5 7.5z" />
|
122 |
+
<glyph unicode="" d="M525 1200h150q10 0 17.5 -7.5t7.5 -17.5v-194q103 -27 178.5 -102.5t102.5 -178.5h194q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-194q-27 -103 -102.5 -178.5t-178.5 -102.5v-194q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v194 q-103 27 -178.5 102.5t-102.5 178.5h-194q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5h194q27 103 102.5 178.5t178.5 102.5v194q0 10 7.5 17.5t17.5 7.5zM700 893v-168q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v168q-68 -23 -119 -74 t-74 -119h168q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-168q23 -68 74 -119t119 -74v168q0 10 7.5 17.5t17.5 7.5h150q10 0 17.5 -7.5t7.5 -17.5v-168q68 23 119 74t74 119h-168q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5h168 q-23 68 -74 119t-119 74z" />
|
123 |
+
<glyph unicode="" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM759 823l64 -64q7 -7 7 -17.5t-7 -17.5l-124 -124l124 -124q7 -7 7 -17.5t-7 -17.5l-64 -64q-7 -7 -17.5 -7t-17.5 7l-124 124l-124 -124q-7 -7 -17.5 -7t-17.5 7l-64 64 q-7 7 -7 17.5t7 17.5l124 124l-124 124q-7 7 -7 17.5t7 17.5l64 64q7 7 17.5 7t17.5 -7l124 -124l124 124q7 7 17.5 7t17.5 -7z" />
|
124 |
+
<glyph unicode="" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM782 788l106 -106q7 -7 7 -17.5t-7 -17.5l-320 -321q-8 -7 -18 -7t-18 7l-202 203q-8 7 -8 17.5t8 17.5l106 106q7 8 17.5 8t17.5 -8l79 -79l197 197q7 7 17.5 7t17.5 -7z" />
|
125 |
+
<glyph unicode="" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5q0 -120 65 -225 l587 587q-105 65 -225 65zM965 819l-584 -584q104 -62 219 -62q116 0 214.5 57t155.5 155.5t57 214.5q0 115 -62 219z" />
|
126 |
+
<glyph unicode="" d="M39 582l522 427q16 13 27.5 8t11.5 -26v-291h550q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-550v-291q0 -21 -11.5 -26t-27.5 8l-522 427q-16 13 -16 32t16 32z" />
|
127 |
+
<glyph unicode="" d="M639 1009l522 -427q16 -13 16 -32t-16 -32l-522 -427q-16 -13 -27.5 -8t-11.5 26v291h-550q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5h550v291q0 21 11.5 26t27.5 -8z" />
|
128 |
+
<glyph unicode="" d="M682 1161l427 -522q13 -16 8 -27.5t-26 -11.5h-291v-550q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v550h-291q-21 0 -26 11.5t8 27.5l427 522q13 16 32 16t32 -16z" />
|
129 |
+
<glyph unicode="" d="M550 1200h200q21 0 35.5 -14.5t14.5 -35.5v-550h291q21 0 26 -11.5t-8 -27.5l-427 -522q-13 -16 -32 -16t-32 16l-427 522q-13 16 -8 27.5t26 11.5h291v550q0 21 14.5 35.5t35.5 14.5z" />
|
130 |
+
<glyph unicode="" d="M639 1109l522 -427q16 -13 16 -32t-16 -32l-522 -427q-16 -13 -27.5 -8t-11.5 26v291q-94 -2 -182 -20t-170.5 -52t-147 -92.5t-100.5 -135.5q5 105 27 193.5t67.5 167t113 135t167 91.5t225.5 42v262q0 21 11.5 26t27.5 -8z" />
|
131 |
+
<glyph unicode="" d="M850 1200h300q21 0 35.5 -14.5t14.5 -35.5v-300q0 -21 -10.5 -25t-24.5 10l-94 94l-249 -249q-8 -7 -18 -7t-18 7l-106 106q-7 8 -7 18t7 18l249 249l-94 94q-14 14 -10 24.5t25 10.5zM350 0h-300q-21 0 -35.5 14.5t-14.5 35.5v300q0 21 10.5 25t24.5 -10l94 -94l249 249 q8 7 18 7t18 -7l106 -106q7 -8 7 -18t-7 -18l-249 -249l94 -94q14 -14 10 -24.5t-25 -10.5z" />
|
132 |
+
<glyph unicode="" d="M1014 1120l106 -106q7 -8 7 -18t-7 -18l-249 -249l94 -94q14 -14 10 -24.5t-25 -10.5h-300q-21 0 -35.5 14.5t-14.5 35.5v300q0 21 10.5 25t24.5 -10l94 -94l249 249q8 7 18 7t18 -7zM250 600h300q21 0 35.5 -14.5t14.5 -35.5v-300q0 -21 -10.5 -25t-24.5 10l-94 94 l-249 -249q-8 -7 -18 -7t-18 7l-106 106q-7 8 -7 18t7 18l249 249l-94 94q-14 14 -10 24.5t25 10.5z" />
|
133 |
+
<glyph unicode="" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM704 900h-208q-20 0 -32 -14.5t-8 -34.5l58 -302q4 -20 21.5 -34.5 t37.5 -14.5h54q20 0 37.5 14.5t21.5 34.5l58 302q4 20 -8 34.5t-32 14.5zM675 400h-150q-10 0 -17.5 -7.5t-7.5 -17.5v-150q0 -10 7.5 -17.5t17.5 -7.5h150q10 0 17.5 7.5t7.5 17.5v150q0 10 -7.5 17.5t-17.5 7.5z" />
|
134 |
+
<glyph unicode="" d="M260 1200q9 0 19 -2t15 -4l5 -2q22 -10 44 -23l196 -118q21 -13 36 -24q29 -21 37 -12q11 13 49 35l196 118q22 13 45 23q17 7 38 7q23 0 47 -16.5t37 -33.5l13 -16q14 -21 18 -45l25 -123l8 -44q1 -9 8.5 -14.5t17.5 -5.5h61q10 0 17.5 -7.5t7.5 -17.5v-50 q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 -7.5t-7.5 -17.5v-175h-400v300h-200v-300h-400v175q0 10 -7.5 17.5t-17.5 7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5h61q11 0 18 3t7 8q0 4 9 52l25 128q5 25 19 45q2 3 5 7t13.5 15t21.5 19.5t26.5 15.5 t29.5 7zM915 1079l-166 -162q-7 -7 -5 -12t12 -5h219q10 0 15 7t2 17l-51 149q-3 10 -11 12t-15 -6zM463 917l-177 157q-8 7 -16 5t-11 -12l-51 -143q-3 -10 2 -17t15 -7h231q11 0 12.5 5t-5.5 12zM500 0h-375q-10 0 -17.5 7.5t-7.5 17.5v375h400v-400zM1100 400v-375 q0 -10 -7.5 -17.5t-17.5 -7.5h-375v400h400z" />
|
135 |
+
<glyph unicode="" d="M1165 1190q8 3 21 -6.5t13 -17.5q-2 -178 -24.5 -323.5t-55.5 -245.5t-87 -174.5t-102.5 -118.5t-118 -68.5t-118.5 -33t-120 -4.5t-105 9.5t-90 16.5q-61 12 -78 11q-4 1 -12.5 0t-34 -14.5t-52.5 -40.5l-153 -153q-26 -24 -37 -14.5t-11 43.5q0 64 42 102q8 8 50.5 45 t66.5 58q19 17 35 47t13 61q-9 55 -10 102.5t7 111t37 130t78 129.5q39 51 80 88t89.5 63.5t94.5 45t113.5 36t129 31t157.5 37t182 47.5zM1116 1098q-8 9 -22.5 -3t-45.5 -50q-38 -47 -119 -103.5t-142 -89.5l-62 -33q-56 -30 -102 -57t-104 -68t-102.5 -80.5t-85.5 -91 t-64 -104.5q-24 -56 -31 -86t2 -32t31.5 17.5t55.5 59.5q25 30 94 75.5t125.5 77.5t147.5 81q70 37 118.5 69t102 79.5t99 111t86.5 148.5q22 50 24 60t-6 19z" />
|
136 |
+
<glyph unicode="" d="M653 1231q-39 -67 -54.5 -131t-10.5 -114.5t24.5 -96.5t47.5 -80t63.5 -62.5t68.5 -46.5t65 -30q-4 7 -17.5 35t-18.5 39.5t-17 39.5t-17 43t-13 42t-9.5 44.5t-2 42t4 43t13.5 39t23 38.5q96 -42 165 -107.5t105 -138t52 -156t13 -159t-19 -149.5q-13 -55 -44 -106.5 t-68 -87t-78.5 -64.5t-72.5 -45t-53 -22q-72 -22 -127 -11q-31 6 -13 19q6 3 17 7q13 5 32.5 21t41 44t38.5 63.5t21.5 81.5t-6.5 94.5t-50 107t-104 115.5q10 -104 -0.5 -189t-37 -140.5t-65 -93t-84 -52t-93.5 -11t-95 24.5q-80 36 -131.5 114t-53.5 171q-2 23 0 49.5 t4.5 52.5t13.5 56t27.5 60t46 64.5t69.5 68.5q-8 -53 -5 -102.5t17.5 -90t34 -68.5t44.5 -39t49 -2q31 13 38.5 36t-4.5 55t-29 64.5t-36 75t-26 75.5q-15 85 2 161.5t53.5 128.5t85.5 92.5t93.5 61t81.5 25.5z" />
|
137 |
+
<glyph unicode="" d="M600 1094q82 0 160.5 -22.5t140 -59t116.5 -82.5t94.5 -95t68 -95t42.5 -82.5t14 -57.5t-14 -57.5t-43 -82.5t-68.5 -95t-94.5 -95t-116.5 -82.5t-140 -59t-159.5 -22.5t-159.5 22.5t-140 59t-116.5 82.5t-94.5 95t-68.5 95t-43 82.5t-14 57.5t14 57.5t42.5 82.5t68 95 t94.5 95t116.5 82.5t140 59t160.5 22.5zM888 829q-15 15 -18 12t5 -22q25 -57 25 -119q0 -124 -88 -212t-212 -88t-212 88t-88 212q0 59 23 114q8 19 4.5 22t-17.5 -12q-70 -69 -160 -184q-13 -16 -15 -40.5t9 -42.5q22 -36 47 -71t70 -82t92.5 -81t113 -58.5t133.5 -24.5 t133.5 24t113 58.5t92.5 81.5t70 81.5t47 70.5q11 18 9 42.5t-14 41.5q-90 117 -163 189zM448 727l-35 -36q-15 -15 -19.5 -38.5t4.5 -41.5q37 -68 93 -116q16 -13 38.5 -11t36.5 17l35 34q14 15 12.5 33.5t-16.5 33.5q-44 44 -89 117q-11 18 -28 20t-32 -12z" />
|
138 |
+
<glyph unicode="" d="M592 0h-148l31 120q-91 20 -175.5 68.5t-143.5 106.5t-103.5 119t-66.5 110t-22 76q0 21 14 57.5t42.5 82.5t68 95t94.5 95t116.5 82.5t140 59t160.5 22.5q61 0 126 -15l32 121h148zM944 770l47 181q108 -85 176.5 -192t68.5 -159q0 -26 -19.5 -71t-59.5 -102t-93 -112 t-129 -104.5t-158 -75.5l46 173q77 49 136 117t97 131q11 18 9 42.5t-14 41.5q-54 70 -107 130zM310 824q-70 -69 -160 -184q-13 -16 -15 -40.5t9 -42.5q18 -30 39 -60t57 -70.5t74 -73t90 -61t105 -41.5l41 154q-107 18 -178.5 101.5t-71.5 193.5q0 59 23 114q8 19 4.5 22 t-17.5 -12zM448 727l-35 -36q-15 -15 -19.5 -38.5t4.5 -41.5q37 -68 93 -116q16 -13 38.5 -11t36.5 17l12 11l22 86l-3 4q-44 44 -89 117q-11 18 -28 20t-32 -12z" />
|
139 |
+
<glyph unicode="" d="M-90 100l642 1066q20 31 48 28.5t48 -35.5l642 -1056q21 -32 7.5 -67.5t-50.5 -35.5h-1294q-37 0 -50.5 34t7.5 66zM155 200h345v75q0 10 7.5 17.5t17.5 7.5h150q10 0 17.5 -7.5t7.5 -17.5v-75h345l-445 723zM496 700h208q20 0 32 -14.5t8 -34.5l-58 -252 q-4 -20 -21.5 -34.5t-37.5 -14.5h-54q-20 0 -37.5 14.5t-21.5 34.5l-58 252q-4 20 8 34.5t32 14.5z" />
|
140 |
+
<glyph unicode="" d="M650 1200q62 0 106 -44t44 -106v-339l363 -325q15 -14 26 -38.5t11 -44.5v-41q0 -20 -12 -26.5t-29 5.5l-359 249v-263q100 -93 100 -113v-64q0 -21 -13 -29t-32 1l-205 128l-205 -128q-19 -9 -32 -1t-13 29v64q0 20 100 113v263l-359 -249q-17 -12 -29 -5.5t-12 26.5v41 q0 20 11 44.5t26 38.5l363 325v339q0 62 44 106t106 44z" />
|
141 |
+
<glyph unicode="" d="M850 1200h100q21 0 35.5 -14.5t14.5 -35.5v-50h50q21 0 35.5 -14.5t14.5 -35.5v-150h-1100v150q0 21 14.5 35.5t35.5 14.5h50v50q0 21 14.5 35.5t35.5 14.5h100q21 0 35.5 -14.5t14.5 -35.5v-50h500v50q0 21 14.5 35.5t35.5 14.5zM1100 800v-750q0 -21 -14.5 -35.5 t-35.5 -14.5h-1000q-21 0 -35.5 14.5t-14.5 35.5v750h1100zM100 600v-100h100v100h-100zM300 600v-100h100v100h-100zM500 600v-100h100v100h-100zM700 600v-100h100v100h-100zM900 600v-100h100v100h-100zM100 400v-100h100v100h-100zM300 400v-100h100v100h-100zM500 400 v-100h100v100h-100zM700 400v-100h100v100h-100zM900 400v-100h100v100h-100zM100 200v-100h100v100h-100zM300 200v-100h100v100h-100zM500 200v-100h100v100h-100zM700 200v-100h100v100h-100zM900 200v-100h100v100h-100z" />
|
142 |
+
<glyph unicode="" d="M1135 1165l249 -230q15 -14 15 -35t-15 -35l-249 -230q-14 -14 -24.5 -10t-10.5 25v150h-159l-600 -600h-291q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h209l600 600h241v150q0 21 10.5 25t24.5 -10zM522 819l-141 -141l-122 122h-209q-21 0 -35.5 14.5 t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h291zM1135 565l249 -230q15 -14 15 -35t-15 -35l-249 -230q-14 -14 -24.5 -10t-10.5 25v150h-241l-181 181l141 141l122 -122h159v150q0 21 10.5 25t24.5 -10z" />
|
143 |
+
<glyph unicode="" d="M100 1100h1000q41 0 70.5 -29.5t29.5 -70.5v-600q0 -41 -29.5 -70.5t-70.5 -29.5h-596l-304 -300v300h-100q-41 0 -70.5 29.5t-29.5 70.5v600q0 41 29.5 70.5t70.5 29.5z" />
|
144 |
+
<glyph unicode="" d="M150 1200h200q21 0 35.5 -14.5t14.5 -35.5v-250h-300v250q0 21 14.5 35.5t35.5 14.5zM850 1200h200q21 0 35.5 -14.5t14.5 -35.5v-250h-300v250q0 21 14.5 35.5t35.5 14.5zM1100 800v-300q0 -41 -3 -77.5t-15 -89.5t-32 -96t-58 -89t-89 -77t-129 -51t-174 -20t-174 20 t-129 51t-89 77t-58 89t-32 96t-15 89.5t-3 77.5v300h300v-250v-27v-42.5t1.5 -41t5 -38t10 -35t16.5 -30t25.5 -24.5t35 -19t46.5 -12t60 -4t60 4.5t46.5 12.5t35 19.5t25 25.5t17 30.5t10 35t5 38t2 40.5t-0.5 42v25v250h300z" />
|
145 |
+
<glyph unicode="" d="M1100 411l-198 -199l-353 353l-353 -353l-197 199l551 551z" />
|
146 |
+
<glyph unicode="" d="M1101 789l-550 -551l-551 551l198 199l353 -353l353 353z" />
|
147 |
+
<glyph unicode="" d="M404 1000h746q21 0 35.5 -14.5t14.5 -35.5v-551h150q21 0 25 -10.5t-10 -24.5l-230 -249q-14 -15 -35 -15t-35 15l-230 249q-14 14 -10 24.5t25 10.5h150v401h-381zM135 984l230 -249q14 -14 10 -24.5t-25 -10.5h-150v-400h385l215 -200h-750q-21 0 -35.5 14.5 t-14.5 35.5v550h-150q-21 0 -25 10.5t10 24.5l230 249q14 15 35 15t35 -15z" />
|
148 |
+
<glyph unicode="" d="M56 1200h94q17 0 31 -11t18 -27l38 -162h896q24 0 39 -18.5t10 -42.5l-100 -475q-5 -21 -27 -42.5t-55 -21.5h-633l48 -200h535q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-50v-50q0 -21 -14.5 -35.5t-35.5 -14.5t-35.5 14.5t-14.5 35.5v50h-300v-50 q0 -21 -14.5 -35.5t-35.5 -14.5t-35.5 14.5t-14.5 35.5v50h-31q-18 0 -32.5 10t-20.5 19l-5 10l-201 961h-54q-20 0 -35 14.5t-15 35.5t15 35.5t35 14.5z" />
|
149 |
+
<glyph unicode="" d="M1200 1000v-100h-1200v100h200q0 41 29.5 70.5t70.5 29.5h300q41 0 70.5 -29.5t29.5 -70.5h500zM0 800h1200v-800h-1200v800z" />
|
150 |
+
<glyph unicode="" d="M200 800l-200 -400v600h200q0 41 29.5 70.5t70.5 29.5h300q42 0 71 -29.5t29 -70.5h500v-200h-1000zM1500 700l-300 -700h-1200l300 700h1200z" />
|
151 |
+
<glyph unicode="" d="M635 1184l230 -249q14 -14 10 -24.5t-25 -10.5h-150v-601h150q21 0 25 -10.5t-10 -24.5l-230 -249q-14 -15 -35 -15t-35 15l-230 249q-14 14 -10 24.5t25 10.5h150v601h-150q-21 0 -25 10.5t10 24.5l230 249q14 15 35 15t35 -15z" />
|
152 |
+
<glyph unicode="" d="M936 864l249 -229q14 -15 14 -35.5t-14 -35.5l-249 -229q-15 -15 -25.5 -10.5t-10.5 24.5v151h-600v-151q0 -20 -10.5 -24.5t-25.5 10.5l-249 229q-14 15 -14 35.5t14 35.5l249 229q15 15 25.5 10.5t10.5 -25.5v-149h600v149q0 21 10.5 25.5t25.5 -10.5z" />
|
153 |
+
<glyph unicode="" d="M1169 400l-172 732q-5 23 -23 45.5t-38 22.5h-672q-20 0 -38 -20t-23 -41l-172 -739h1138zM1100 300h-1000q-41 0 -70.5 -29.5t-29.5 -70.5v-100q0 -41 29.5 -70.5t70.5 -29.5h1000q41 0 70.5 29.5t29.5 70.5v100q0 41 -29.5 70.5t-70.5 29.5zM800 100v100h100v-100h-100 zM1000 100v100h100v-100h-100z" />
|
154 |
+
<glyph unicode="" d="M1150 1100q21 0 35.5 -14.5t14.5 -35.5v-850q0 -21 -14.5 -35.5t-35.5 -14.5t-35.5 14.5t-14.5 35.5v850q0 21 14.5 35.5t35.5 14.5zM1000 200l-675 200h-38l47 -276q3 -16 -5.5 -20t-29.5 -4h-7h-84q-20 0 -34.5 14t-18.5 35q-55 337 -55 351v250v6q0 16 1 23.5t6.5 14 t17.5 6.5h200l675 250v-850zM0 750v-250q-4 0 -11 0.5t-24 6t-30 15t-24 30t-11 48.5v50q0 26 10.5 46t25 30t29 16t25.5 7z" />
|
155 |
+
<glyph unicode="" d="M553 1200h94q20 0 29 -10.5t3 -29.5l-18 -37q83 -19 144 -82.5t76 -140.5l63 -327l118 -173h17q19 0 33 -14.5t14 -35t-13 -40.5t-31 -27q-8 -4 -23 -9.5t-65 -19.5t-103 -25t-132.5 -20t-158.5 -9q-57 0 -115 5t-104 12t-88.5 15.5t-73.5 17.5t-54.5 16t-35.5 12l-11 4 q-18 8 -31 28t-13 40.5t14 35t33 14.5h17l118 173l63 327q15 77 76 140t144 83l-18 32q-6 19 3.5 32t28.5 13zM498 110q50 -6 102 -6q53 0 102 6q-12 -49 -39.5 -79.5t-62.5 -30.5t-63 30.5t-39 79.5z" />
|
156 |
+
<glyph unicode="" d="M800 946l224 78l-78 -224l234 -45l-180 -155l180 -155l-234 -45l78 -224l-224 78l-45 -234l-155 180l-155 -180l-45 234l-224 -78l78 224l-234 45l180 155l-180 155l234 45l-78 224l224 -78l45 234l155 -180l155 180z" />
|
157 |
+
<glyph unicode="" d="M650 1200h50q40 0 70 -40.5t30 -84.5v-150l-28 -125h328q40 0 70 -40.5t30 -84.5v-100q0 -45 -29 -74l-238 -344q-16 -24 -38 -40.5t-45 -16.5h-250q-7 0 -42 25t-66 50l-31 25h-61q-45 0 -72.5 18t-27.5 57v400q0 36 20 63l145 196l96 198q13 28 37.5 48t51.5 20z M650 1100l-100 -212l-150 -213v-375h100l136 -100h214l250 375v125h-450l50 225v175h-50zM50 800h100q21 0 35.5 -14.5t14.5 -35.5v-500q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v500q0 21 14.5 35.5t35.5 14.5z" />
|
158 |
+
<glyph unicode="" d="M600 1100h250q23 0 45 -16.5t38 -40.5l238 -344q29 -29 29 -74v-100q0 -44 -30 -84.5t-70 -40.5h-328q28 -118 28 -125v-150q0 -44 -30 -84.5t-70 -40.5h-50q-27 0 -51.5 20t-37.5 48l-96 198l-145 196q-20 27 -20 63v400q0 39 27.5 57t72.5 18h61q124 100 139 100z M50 1000h100q21 0 35.5 -14.5t14.5 -35.5v-500q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v500q0 21 14.5 35.5t35.5 14.5zM636 1000l-136 -100h-100v-375l150 -213l100 -212h50v175l-50 225h450v125l-250 375h-214z" />
|
159 |
+
<glyph unicode="" d="M356 873l363 230q31 16 53 -6l110 -112q13 -13 13.5 -32t-11.5 -34l-84 -121h302q84 0 138 -38t54 -110t-55 -111t-139 -39h-106l-131 -339q-6 -21 -19.5 -41t-28.5 -20h-342q-7 0 -90 81t-83 94v525q0 17 14 35.5t28 28.5zM400 792v-503l100 -89h293l131 339 q6 21 19.5 41t28.5 20h203q21 0 30.5 25t0.5 50t-31 25h-456h-7h-6h-5.5t-6 0.5t-5 1.5t-5 2t-4 2.5t-4 4t-2.5 4.5q-12 25 5 47l146 183l-86 83zM50 800h100q21 0 35.5 -14.5t14.5 -35.5v-500q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v500 q0 21 14.5 35.5t35.5 14.5z" />
|
160 |
+
<glyph unicode="" d="M475 1103l366 -230q2 -1 6 -3.5t14 -10.5t18 -16.5t14.5 -20t6.5 -22.5v-525q0 -13 -86 -94t-93 -81h-342q-15 0 -28.5 20t-19.5 41l-131 339h-106q-85 0 -139.5 39t-54.5 111t54 110t138 38h302l-85 121q-11 15 -10.5 34t13.5 32l110 112q22 22 53 6zM370 945l146 -183 q17 -22 5 -47q-2 -2 -3.5 -4.5t-4 -4t-4 -2.5t-5 -2t-5 -1.5t-6 -0.5h-6h-6.5h-6h-475v-100h221q15 0 29 -20t20 -41l130 -339h294l106 89v503l-342 236zM1050 800h100q21 0 35.5 -14.5t14.5 -35.5v-500q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5 v500q0 21 14.5 35.5t35.5 14.5z" />
|
161 |
+
<glyph unicode="" d="M550 1294q72 0 111 -55t39 -139v-106l339 -131q21 -6 41 -19.5t20 -28.5v-342q0 -7 -81 -90t-94 -83h-525q-17 0 -35.5 14t-28.5 28l-9 14l-230 363q-16 31 6 53l112 110q13 13 32 13.5t34 -11.5l121 -84v302q0 84 38 138t110 54zM600 972v203q0 21 -25 30.5t-50 0.5 t-25 -31v-456v-7v-6v-5.5t-0.5 -6t-1.5 -5t-2 -5t-2.5 -4t-4 -4t-4.5 -2.5q-25 -12 -47 5l-183 146l-83 -86l236 -339h503l89 100v293l-339 131q-21 6 -41 19.5t-20 28.5zM450 200h500q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-500 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
|
162 |
+
<glyph unicode="" d="M350 1100h500q21 0 35.5 14.5t14.5 35.5v100q0 21 -14.5 35.5t-35.5 14.5h-500q-21 0 -35.5 -14.5t-14.5 -35.5v-100q0 -21 14.5 -35.5t35.5 -14.5zM600 306v-106q0 -84 -39 -139t-111 -55t-110 54t-38 138v302l-121 -84q-15 -12 -34 -11.5t-32 13.5l-112 110 q-22 22 -6 53l230 363q1 2 3.5 6t10.5 13.5t16.5 17t20 13.5t22.5 6h525q13 0 94 -83t81 -90v-342q0 -15 -20 -28.5t-41 -19.5zM308 900l-236 -339l83 -86l183 146q22 17 47 5q2 -1 4.5 -2.5t4 -4t2.5 -4t2 -5t1.5 -5t0.5 -6v-5.5v-6v-7v-456q0 -22 25 -31t50 0.5t25 30.5 v203q0 15 20 28.5t41 19.5l339 131v293l-89 100h-503z" />
|
163 |
+
<glyph unicode="" d="M600 1178q118 0 225 -45.5t184.5 -123t123 -184.5t45.5 -225t-45.5 -225t-123 -184.5t-184.5 -123t-225 -45.5t-225 45.5t-184.5 123t-123 184.5t-45.5 225t45.5 225t123 184.5t184.5 123t225 45.5zM914 632l-275 223q-16 13 -27.5 8t-11.5 -26v-137h-275 q-10 0 -17.5 -7.5t-7.5 -17.5v-150q0 -10 7.5 -17.5t17.5 -7.5h275v-137q0 -21 11.5 -26t27.5 8l275 223q16 13 16 32t-16 32z" />
|
164 |
+
<glyph unicode="" d="M600 1178q118 0 225 -45.5t184.5 -123t123 -184.5t45.5 -225t-45.5 -225t-123 -184.5t-184.5 -123t-225 -45.5t-225 45.5t-184.5 123t-123 184.5t-45.5 225t45.5 225t123 184.5t184.5 123t225 45.5zM561 855l-275 -223q-16 -13 -16 -32t16 -32l275 -223q16 -13 27.5 -8 t11.5 26v137h275q10 0 17.5 7.5t7.5 17.5v150q0 10 -7.5 17.5t-17.5 7.5h-275v137q0 21 -11.5 26t-27.5 -8z" />
|
165 |
+
<glyph unicode="" d="M600 1178q118 0 225 -45.5t184.5 -123t123 -184.5t45.5 -225t-45.5 -225t-123 -184.5t-184.5 -123t-225 -45.5t-225 45.5t-184.5 123t-123 184.5t-45.5 225t45.5 225t123 184.5t184.5 123t225 45.5zM855 639l-223 275q-13 16 -32 16t-32 -16l-223 -275q-13 -16 -8 -27.5 t26 -11.5h137v-275q0 -10 7.5 -17.5t17.5 -7.5h150q10 0 17.5 7.5t7.5 17.5v275h137q21 0 26 11.5t-8 27.5z" />
|
166 |
+
<glyph unicode="" d="M600 1178q118 0 225 -45.5t184.5 -123t123 -184.5t45.5 -225t-45.5 -225t-123 -184.5t-184.5 -123t-225 -45.5t-225 45.5t-184.5 123t-123 184.5t-45.5 225t45.5 225t123 184.5t184.5 123t225 45.5zM675 900h-150q-10 0 -17.5 -7.5t-7.5 -17.5v-275h-137q-21 0 -26 -11.5 t8 -27.5l223 -275q13 -16 32 -16t32 16l223 275q13 16 8 27.5t-26 11.5h-137v275q0 10 -7.5 17.5t-17.5 7.5z" />
|
167 |
+
<glyph unicode="" d="M600 1176q116 0 222.5 -46t184 -123.5t123.5 -184t46 -222.5t-46 -222.5t-123.5 -184t-184 -123.5t-222.5 -46t-222.5 46t-184 123.5t-123.5 184t-46 222.5t46 222.5t123.5 184t184 123.5t222.5 46zM627 1101q-15 -12 -36.5 -20.5t-35.5 -12t-43 -8t-39 -6.5 q-15 -3 -45.5 0t-45.5 -2q-20 -7 -51.5 -26.5t-34.5 -34.5q-3 -11 6.5 -22.5t8.5 -18.5q-3 -34 -27.5 -91t-29.5 -79q-9 -34 5 -93t8 -87q0 -9 17 -44.5t16 -59.5q12 0 23 -5t23.5 -15t19.5 -14q16 -8 33 -15t40.5 -15t34.5 -12q21 -9 52.5 -32t60 -38t57.5 -11 q7 -15 -3 -34t-22.5 -40t-9.5 -38q13 -21 23 -34.5t27.5 -27.5t36.5 -18q0 -7 -3.5 -16t-3.5 -14t5 -17q104 -2 221 112q30 29 46.5 47t34.5 49t21 63q-13 8 -37 8.5t-36 7.5q-15 7 -49.5 15t-51.5 19q-18 0 -41 -0.5t-43 -1.5t-42 -6.5t-38 -16.5q-51 -35 -66 -12 q-4 1 -3.5 25.5t0.5 25.5q-6 13 -26.5 17.5t-24.5 6.5q1 15 -0.5 30.5t-7 28t-18.5 11.5t-31 -21q-23 -25 -42 4q-19 28 -8 58q6 16 22 22q6 -1 26 -1.5t33.5 -4t19.5 -13.5q7 -12 18 -24t21.5 -20.5t20 -15t15.5 -10.5l5 -3q2 12 7.5 30.5t8 34.5t-0.5 32q-3 18 3.5 29 t18 22.5t15.5 24.5q6 14 10.5 35t8 31t15.5 22.5t34 22.5q-6 18 10 36q8 0 24 -1.5t24.5 -1.5t20 4.5t20.5 15.5q-10 23 -31 42.5t-37.5 29.5t-49 27t-43.5 23q0 1 2 8t3 11.5t1.5 10.5t-1 9.5t-4.5 4.5q31 -13 58.5 -14.5t38.5 2.5l12 5q5 28 -9.5 46t-36.5 24t-50 15 t-41 20q-18 -4 -37 0zM613 994q0 -17 8 -42t17 -45t9 -23q-8 1 -39.5 5.5t-52.5 10t-37 16.5q3 11 16 29.5t16 25.5q10 -10 19 -10t14 6t13.5 14.5t16.5 12.5z" />
|
168 |
+
<glyph unicode="" d="M756 1157q164 92 306 -9l-259 -138l145 -232l251 126q6 -89 -34 -156.5t-117 -110.5q-60 -34 -127 -39.5t-126 16.5l-596 -596q-15 -16 -36.5 -16t-36.5 16l-111 110q-15 15 -15 36.5t15 37.5l600 599q-34 101 5.5 201.5t135.5 154.5z" />
|
169 |
+
<glyph unicode="" horiz-adv-x="1220" d="M100 1196h1000q41 0 70.5 -29.5t29.5 -70.5v-100q0 -41 -29.5 -70.5t-70.5 -29.5h-1000q-41 0 -70.5 29.5t-29.5 70.5v100q0 41 29.5 70.5t70.5 29.5zM1100 1096h-200v-100h200v100zM100 796h1000q41 0 70.5 -29.5t29.5 -70.5v-100q0 -41 -29.5 -70.5t-70.5 -29.5h-1000 q-41 0 -70.5 29.5t-29.5 70.5v100q0 41 29.5 70.5t70.5 29.5zM1100 696h-500v-100h500v100zM100 396h1000q41 0 70.5 -29.5t29.5 -70.5v-100q0 -41 -29.5 -70.5t-70.5 -29.5h-1000q-41 0 -70.5 29.5t-29.5 70.5v100q0 41 29.5 70.5t70.5 29.5zM1100 296h-300v-100h300v100z " />
|
170 |
+
<glyph unicode="" d="M150 1200h900q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-900q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM700 500v-300l-200 -200v500l-350 500h900z" />
|
171 |
+
<glyph unicode="" d="M500 1200h200q41 0 70.5 -29.5t29.5 -70.5v-100h300q41 0 70.5 -29.5t29.5 -70.5v-400h-500v100h-200v-100h-500v400q0 41 29.5 70.5t70.5 29.5h300v100q0 41 29.5 70.5t70.5 29.5zM500 1100v-100h200v100h-200zM1200 400v-200q0 -41 -29.5 -70.5t-70.5 -29.5h-1000 q-41 0 -70.5 29.5t-29.5 70.5v200h1200z" />
|
172 |
+
<glyph unicode="" d="M50 1200h300q21 0 25 -10.5t-10 -24.5l-94 -94l199 -199q7 -8 7 -18t-7 -18l-106 -106q-8 -7 -18 -7t-18 7l-199 199l-94 -94q-14 -14 -24.5 -10t-10.5 25v300q0 21 14.5 35.5t35.5 14.5zM850 1200h300q21 0 35.5 -14.5t14.5 -35.5v-300q0 -21 -10.5 -25t-24.5 10l-94 94 l-199 -199q-8 -7 -18 -7t-18 7l-106 106q-7 8 -7 18t7 18l199 199l-94 94q-14 14 -10 24.5t25 10.5zM364 470l106 -106q7 -8 7 -18t-7 -18l-199 -199l94 -94q14 -14 10 -24.5t-25 -10.5h-300q-21 0 -35.5 14.5t-14.5 35.5v300q0 21 10.5 25t24.5 -10l94 -94l199 199 q8 7 18 7t18 -7zM1071 271l94 94q14 14 24.5 10t10.5 -25v-300q0 -21 -14.5 -35.5t-35.5 -14.5h-300q-21 0 -25 10.5t10 24.5l94 94l-199 199q-7 8 -7 18t7 18l106 106q8 7 18 7t18 -7z" />
|
173 |
+
<glyph unicode="" d="M596 1192q121 0 231.5 -47.5t190 -127t127 -190t47.5 -231.5t-47.5 -231.5t-127 -190.5t-190 -127t-231.5 -47t-231.5 47t-190.5 127t-127 190.5t-47 231.5t47 231.5t127 190t190.5 127t231.5 47.5zM596 1010q-112 0 -207.5 -55.5t-151 -151t-55.5 -207.5t55.5 -207.5 t151 -151t207.5 -55.5t207.5 55.5t151 151t55.5 207.5t-55.5 207.5t-151 151t-207.5 55.5zM454.5 905q22.5 0 38.5 -16t16 -38.5t-16 -39t-38.5 -16.5t-38.5 16.5t-16 39t16 38.5t38.5 16zM754.5 905q22.5 0 38.5 -16t16 -38.5t-16 -39t-38 -16.5q-14 0 -29 10l-55 -145 q17 -23 17 -51q0 -36 -25.5 -61.5t-61.5 -25.5t-61.5 25.5t-25.5 61.5q0 32 20.5 56.5t51.5 29.5l122 126l1 1q-9 14 -9 28q0 23 16 39t38.5 16zM345.5 709q22.5 0 38.5 -16t16 -38.5t-16 -38.5t-38.5 -16t-38.5 16t-16 38.5t16 38.5t38.5 16zM854.5 709q22.5 0 38.5 -16 t16 -38.5t-16 -38.5t-38.5 -16t-38.5 16t-16 38.5t16 38.5t38.5 16z" />
|
174 |
+
<glyph unicode="" d="M546 173l469 470q91 91 99 192q7 98 -52 175.5t-154 94.5q-22 4 -47 4q-34 0 -66.5 -10t-56.5 -23t-55.5 -38t-48 -41.5t-48.5 -47.5q-376 -375 -391 -390q-30 -27 -45 -41.5t-37.5 -41t-32 -46.5t-16 -47.5t-1.5 -56.5q9 -62 53.5 -95t99.5 -33q74 0 125 51l548 548 q36 36 20 75q-7 16 -21.5 26t-32.5 10q-26 0 -50 -23q-13 -12 -39 -38l-341 -338q-15 -15 -35.5 -15.5t-34.5 13.5t-14 34.5t14 34.5q327 333 361 367q35 35 67.5 51.5t78.5 16.5q14 0 29 -1q44 -8 74.5 -35.5t43.5 -68.5q14 -47 2 -96.5t-47 -84.5q-12 -11 -32 -32 t-79.5 -81t-114.5 -115t-124.5 -123.5t-123 -119.5t-96.5 -89t-57 -45q-56 -27 -120 -27q-70 0 -129 32t-93 89q-48 78 -35 173t81 163l511 511q71 72 111 96q91 55 198 55q80 0 152 -33q78 -36 129.5 -103t66.5 -154q17 -93 -11 -183.5t-94 -156.5l-482 -476 q-15 -15 -36 -16t-37 14t-17.5 34t14.5 35z" />
|
175 |
+
<glyph unicode="" d="M649 949q48 68 109.5 104t121.5 38.5t118.5 -20t102.5 -64t71 -100.5t27 -123q0 -57 -33.5 -117.5t-94 -124.5t-126.5 -127.5t-150 -152.5t-146 -174q-62 85 -145.5 174t-150 152.5t-126.5 127.5t-93.5 124.5t-33.5 117.5q0 64 28 123t73 100.5t104 64t119 20 t120.5 -38.5t104.5 -104zM896 972q-33 0 -64.5 -19t-56.5 -46t-47.5 -53.5t-43.5 -45.5t-37.5 -19t-36 19t-40 45.5t-43 53.5t-54 46t-65.5 19q-67 0 -122.5 -55.5t-55.5 -132.5q0 -23 13.5 -51t46 -65t57.5 -63t76 -75l22 -22q15 -14 44 -44t50.5 -51t46 -44t41 -35t23 -12 t23.5 12t42.5 36t46 44t52.5 52t44 43q4 4 12 13q43 41 63.5 62t52 55t46 55t26 46t11.5 44q0 79 -53 133.5t-120 54.5z" />
|
176 |
+
<glyph unicode="" d="M776.5 1214q93.5 0 159.5 -66l141 -141q66 -66 66 -160q0 -42 -28 -95.5t-62 -87.5l-29 -29q-31 53 -77 99l-18 18l95 95l-247 248l-389 -389l212 -212l-105 -106l-19 18l-141 141q-66 66 -66 159t66 159l283 283q65 66 158.5 66zM600 706l105 105q10 -8 19 -17l141 -141 q66 -66 66 -159t-66 -159l-283 -283q-66 -66 -159 -66t-159 66l-141 141q-66 66 -66 159.5t66 159.5l55 55q29 -55 75 -102l18 -17l-95 -95l247 -248l389 389z" />
|
177 |
+
<glyph unicode="" d="M603 1200q85 0 162 -15t127 -38t79 -48t29 -46v-953q0 -41 -29.5 -70.5t-70.5 -29.5h-600q-41 0 -70.5 29.5t-29.5 70.5v953q0 21 30 46.5t81 48t129 37.5t163 15zM300 1000v-700h600v700h-600zM600 254q-43 0 -73.5 -30.5t-30.5 -73.5t30.5 -73.5t73.5 -30.5t73.5 30.5 t30.5 73.5t-30.5 73.5t-73.5 30.5z" />
|
178 |
+
<glyph unicode="" d="M902 1185l283 -282q15 -15 15 -36t-14.5 -35.5t-35.5 -14.5t-35 15l-36 35l-279 -267v-300l-212 210l-308 -307l-280 -203l203 280l307 308l-210 212h300l267 279l-35 36q-15 14 -15 35t14.5 35.5t35.5 14.5t35 -15z" />
|
179 |
+
<glyph unicode="" d="M700 1248v-78q38 -5 72.5 -14.5t75.5 -31.5t71 -53.5t52 -84t24 -118.5h-159q-4 36 -10.5 59t-21 45t-40 35.5t-64.5 20.5v-307l64 -13q34 -7 64 -16.5t70 -32t67.5 -52.5t47.5 -80t20 -112q0 -139 -89 -224t-244 -97v-77h-100v79q-150 16 -237 103q-40 40 -52.5 93.5 t-15.5 139.5h139q5 -77 48.5 -126t117.5 -65v335l-27 8q-46 14 -79 26.5t-72 36t-63 52t-40 72.5t-16 98q0 70 25 126t67.5 92t94.5 57t110 27v77h100zM600 754v274q-29 -4 -50 -11t-42 -21.5t-31.5 -41.5t-10.5 -65q0 -29 7 -50.5t16.5 -34t28.5 -22.5t31.5 -14t37.5 -10 q9 -3 13 -4zM700 547v-310q22 2 42.5 6.5t45 15.5t41.5 27t29 42t12 59.5t-12.5 59.5t-38 44.5t-53 31t-66.5 24.5z" />
|
180 |
+
<glyph unicode="" d="M561 1197q84 0 160.5 -40t123.5 -109.5t47 -147.5h-153q0 40 -19.5 71.5t-49.5 48.5t-59.5 26t-55.5 9q-37 0 -79 -14.5t-62 -35.5q-41 -44 -41 -101q0 -26 13.5 -63t26.5 -61t37 -66q6 -9 9 -14h241v-100h-197q8 -50 -2.5 -115t-31.5 -95q-45 -62 -99 -112 q34 10 83 17.5t71 7.5q32 1 102 -16t104 -17q83 0 136 30l50 -147q-31 -19 -58 -30.5t-55 -15.5t-42 -4.5t-46 -0.5q-23 0 -76 17t-111 32.5t-96 11.5q-39 -3 -82 -16t-67 -25l-23 -11l-55 145q4 3 16 11t15.5 10.5t13 9t15.5 12t14.5 14t17.5 18.5q48 55 54 126.5 t-30 142.5h-221v100h166q-23 47 -44 104q-7 20 -12 41.5t-6 55.5t6 66.5t29.5 70.5t58.5 71q97 88 263 88z" />
|
181 |
+
<glyph unicode="" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM935 1184l230 -249q14 -14 10 -24.5t-25 -10.5h-150v-900h-200v900h-150q-21 0 -25 10.5t10 24.5l230 249q14 15 35 15t35 -15z" />
|
182 |
+
<glyph unicode="" d="M1000 700h-100v100h-100v-100h-100v500h300v-500zM400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM801 1100v-200h100v200h-100zM1000 350l-200 -250h200v-100h-300v150l200 250h-200v100h300v-150z " />
|
183 |
+
<glyph unicode="" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM1000 1050l-200 -250h200v-100h-300v150l200 250h-200v100h300v-150zM1000 0h-100v100h-100v-100h-100v500h300v-500zM801 400v-200h100v200h-100z " />
|
184 |
+
<glyph unicode="" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM1000 700h-100v400h-100v100h200v-500zM1100 0h-100v100h-200v400h300v-500zM901 400v-200h100v200h-100z" />
|
185 |
+
<glyph unicode="" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM1100 700h-100v100h-200v400h300v-500zM901 1100v-200h100v200h-100zM1000 0h-100v400h-100v100h200v-500z" />
|
186 |
+
<glyph unicode="" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM900 1000h-200v200h200v-200zM1000 700h-300v200h300v-200zM1100 400h-400v200h400v-200zM1200 100h-500v200h500v-200z" />
|
187 |
+
<glyph unicode="" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM1200 1000h-500v200h500v-200zM1100 700h-400v200h400v-200zM1000 400h-300v200h300v-200zM900 100h-200v200h200v-200z" />
|
188 |
+
<glyph unicode="" d="M350 1100h400q162 0 256 -93.5t94 -256.5v-400q0 -165 -93.5 -257.5t-256.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 165 92.5 257.5t257.5 92.5zM800 900h-500q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5 v500q0 41 -29.5 70.5t-70.5 29.5z" />
|
189 |
+
<glyph unicode="" d="M350 1100h400q165 0 257.5 -92.5t92.5 -257.5v-400q0 -165 -92.5 -257.5t-257.5 -92.5h-400q-163 0 -256.5 92.5t-93.5 257.5v400q0 163 94 256.5t256 93.5zM800 900h-500q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5 v500q0 41 -29.5 70.5t-70.5 29.5zM440 770l253 -190q17 -12 17 -30t-17 -30l-253 -190q-16 -12 -28 -6.5t-12 26.5v400q0 21 12 26.5t28 -6.5z" />
|
190 |
+
<glyph unicode="" d="M350 1100h400q163 0 256.5 -94t93.5 -256v-400q0 -165 -92.5 -257.5t-257.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 163 92.5 256.5t257.5 93.5zM800 900h-500q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5 v500q0 41 -29.5 70.5t-70.5 29.5zM350 700h400q21 0 26.5 -12t-6.5 -28l-190 -253q-12 -17 -30 -17t-30 17l-190 253q-12 16 -6.5 28t26.5 12z" />
|
191 |
+
<glyph unicode="" d="M350 1100h400q165 0 257.5 -92.5t92.5 -257.5v-400q0 -163 -92.5 -256.5t-257.5 -93.5h-400q-163 0 -256.5 94t-93.5 256v400q0 165 92.5 257.5t257.5 92.5zM800 900h-500q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5 v500q0 41 -29.5 70.5t-70.5 29.5zM580 693l190 -253q12 -16 6.5 -28t-26.5 -12h-400q-21 0 -26.5 12t6.5 28l190 253q12 17 30 17t30 -17z" />
|
192 |
+
<glyph unicode="" d="M550 1100h400q165 0 257.5 -92.5t92.5 -257.5v-400q0 -165 -92.5 -257.5t-257.5 -92.5h-400q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h450q41 0 70.5 29.5t29.5 70.5v500q0 41 -29.5 70.5t-70.5 29.5h-450q-21 0 -35.5 14.5t-14.5 35.5v100 q0 21 14.5 35.5t35.5 14.5zM338 867l324 -284q16 -14 16 -33t-16 -33l-324 -284q-16 -14 -27 -9t-11 26v150h-250q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5h250v150q0 21 11 26t27 -9z" />
|
193 |
+
<glyph unicode="" d="M793 1182l9 -9q8 -10 5 -27q-3 -11 -79 -225.5t-78 -221.5l300 1q24 0 32.5 -17.5t-5.5 -35.5q-1 0 -133.5 -155t-267 -312.5t-138.5 -162.5q-12 -15 -26 -15h-9l-9 8q-9 11 -4 32q2 9 42 123.5t79 224.5l39 110h-302q-23 0 -31 19q-10 21 6 41q75 86 209.5 237.5 t228 257t98.5 111.5q9 16 25 16h9z" />
|
194 |
+
<glyph unicode="" d="M350 1100h400q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-450q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h450q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400 q0 165 92.5 257.5t257.5 92.5zM938 867l324 -284q16 -14 16 -33t-16 -33l-324 -284q-16 -14 -27 -9t-11 26v150h-250q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5h250v150q0 21 11 26t27 -9z" />
|
195 |
+
<glyph unicode="" d="M750 1200h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -10.5 -25t-24.5 10l-109 109l-312 -312q-15 -15 -35.5 -15t-35.5 15l-141 141q-15 15 -15 35.5t15 35.5l312 312l-109 109q-14 14 -10 24.5t25 10.5zM456 900h-156q-41 0 -70.5 -29.5t-29.5 -70.5v-500 q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5v148l200 200v-298q0 -165 -93.5 -257.5t-256.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 165 92.5 257.5t257.5 92.5h300z" />
|
196 |
+
<glyph unicode="" d="M600 1186q119 0 227.5 -46.5t187 -125t125 -187t46.5 -227.5t-46.5 -227.5t-125 -187t-187 -125t-227.5 -46.5t-227.5 46.5t-187 125t-125 187t-46.5 227.5t46.5 227.5t125 187t187 125t227.5 46.5zM600 1022q-115 0 -212 -56.5t-153.5 -153.5t-56.5 -212t56.5 -212 t153.5 -153.5t212 -56.5t212 56.5t153.5 153.5t56.5 212t-56.5 212t-153.5 153.5t-212 56.5zM600 794q80 0 137 -57t57 -137t-57 -137t-137 -57t-137 57t-57 137t57 137t137 57z" />
|
197 |
+
<glyph unicode="" d="M450 1200h200q21 0 35.5 -14.5t14.5 -35.5v-350h245q20 0 25 -11t-9 -26l-383 -426q-14 -15 -33.5 -15t-32.5 15l-379 426q-13 15 -8.5 26t25.5 11h250v350q0 21 14.5 35.5t35.5 14.5zM50 300h1000q21 0 35.5 -14.5t14.5 -35.5v-250h-1100v250q0 21 14.5 35.5t35.5 14.5z M900 200v-50h100v50h-100z" />
|
198 |
+
<glyph unicode="" d="M583 1182l378 -435q14 -15 9 -31t-26 -16h-244v-250q0 -20 -17 -35t-39 -15h-200q-20 0 -32 14.5t-12 35.5v250h-250q-20 0 -25.5 16.5t8.5 31.5l383 431q14 16 33.5 17t33.5 -14zM50 300h1000q21 0 35.5 -14.5t14.5 -35.5v-250h-1100v250q0 21 14.5 35.5t35.5 14.5z M900 200v-50h100v50h-100z" />
|
199 |
+
<glyph unicode="" d="M396 723l369 369q7 7 17.5 7t17.5 -7l139 -139q7 -8 7 -18.5t-7 -17.5l-525 -525q-7 -8 -17.5 -8t-17.5 8l-292 291q-7 8 -7 18t7 18l139 139q8 7 18.5 7t17.5 -7zM50 300h1000q21 0 35.5 -14.5t14.5 -35.5v-250h-1100v250q0 21 14.5 35.5t35.5 14.5zM900 200v-50h100v50 h-100z" />
|
200 |
+
<glyph unicode="" d="M135 1023l142 142q14 14 35 14t35 -14l77 -77l-212 -212l-77 76q-14 15 -14 36t14 35zM655 855l210 210q14 14 24.5 10t10.5 -25l-2 -599q-1 -20 -15.5 -35t-35.5 -15l-597 -1q-21 0 -25 10.5t10 24.5l208 208l-154 155l212 212zM50 300h1000q21 0 35.5 -14.5t14.5 -35.5 v-250h-1100v250q0 21 14.5 35.5t35.5 14.5zM900 200v-50h100v50h-100z" />
|
201 |
+
<glyph unicode="" d="M350 1200l599 -2q20 -1 35 -15.5t15 -35.5l1 -597q0 -21 -10.5 -25t-24.5 10l-208 208l-155 -154l-212 212l155 154l-210 210q-14 14 -10 24.5t25 10.5zM524 512l-76 -77q-15 -14 -36 -14t-35 14l-142 142q-14 14 -14 35t14 35l77 77zM50 300h1000q21 0 35.5 -14.5 t14.5 -35.5v-250h-1100v250q0 21 14.5 35.5t35.5 14.5zM900 200v-50h100v50h-100z" />
|
202 |
+
<glyph unicode="" d="M1200 103l-483 276l-314 -399v423h-399l1196 796v-1096zM483 424v-230l683 953z" />
|
203 |
+
<glyph unicode="" d="M1100 1000v-850q0 -21 -14.5 -35.5t-35.5 -14.5h-150v400h-700v-400h-150q-21 0 -35.5 14.5t-14.5 35.5v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100zM700 1000h-100v200h100v-200z" />
|
204 |
+
<glyph unicode="" d="M1100 1000l-2 -149l-299 -299l-95 95q-9 9 -21.5 9t-21.5 -9l-149 -147h-312v-400h-150q-21 0 -35.5 14.5t-14.5 35.5v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100zM700 1000h-100v200h100v-200zM1132 638l106 -106q7 -7 7 -17.5t-7 -17.5l-420 -421q-8 -7 -18 -7 t-18 7l-202 203q-8 7 -8 17.5t8 17.5l106 106q7 8 17.5 8t17.5 -8l79 -79l297 297q7 7 17.5 7t17.5 -7z" />
|
205 |
+
<glyph unicode="" d="M1100 1000v-269l-103 -103l-134 134q-15 15 -33.5 16.5t-34.5 -12.5l-266 -266h-329v-400h-150q-21 0 -35.5 14.5t-14.5 35.5v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100zM700 1000h-100v200h100v-200zM1202 572l70 -70q15 -15 15 -35.5t-15 -35.5l-131 -131 l131 -131q15 -15 15 -35.5t-15 -35.5l-70 -70q-15 -15 -35.5 -15t-35.5 15l-131 131l-131 -131q-15 -15 -35.5 -15t-35.5 15l-70 70q-15 15 -15 35.5t15 35.5l131 131l-131 131q-15 15 -15 35.5t15 35.5l70 70q15 15 35.5 15t35.5 -15l131 -131l131 131q15 15 35.5 15 t35.5 -15z" />
|
206 |
+
<glyph unicode="" d="M1100 1000v-300h-350q-21 0 -35.5 -14.5t-14.5 -35.5v-150h-500v-400h-150q-21 0 -35.5 14.5t-14.5 35.5v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100zM700 1000h-100v200h100v-200zM850 600h100q21 0 35.5 -14.5t14.5 -35.5v-250h150q21 0 25 -10.5t-10 -24.5 l-230 -230q-14 -14 -35 -14t-35 14l-230 230q-14 14 -10 24.5t25 10.5h150v250q0 21 14.5 35.5t35.5 14.5z" />
|
207 |
+
<glyph unicode="" d="M1100 1000v-400l-165 165q-14 15 -35 15t-35 -15l-263 -265h-402v-400h-150q-21 0 -35.5 14.5t-14.5 35.5v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100zM700 1000h-100v200h100v-200zM935 565l230 -229q14 -15 10 -25.5t-25 -10.5h-150v-250q0 -20 -14.5 -35 t-35.5 -15h-100q-21 0 -35.5 15t-14.5 35v250h-150q-21 0 -25 10.5t10 25.5l230 229q14 15 35 15t35 -15z" />
|
208 |
+
<glyph unicode="" d="M50 1100h1100q21 0 35.5 -14.5t14.5 -35.5v-150h-1200v150q0 21 14.5 35.5t35.5 14.5zM1200 800v-550q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v550h1200zM100 500v-200h400v200h-400z" />
|
209 |
+
<glyph unicode="" d="M935 1165l248 -230q14 -14 14 -35t-14 -35l-248 -230q-14 -14 -24.5 -10t-10.5 25v150h-400v200h400v150q0 21 10.5 25t24.5 -10zM200 800h-50q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h50v-200zM400 800h-100v200h100v-200zM18 435l247 230 q14 14 24.5 10t10.5 -25v-150h400v-200h-400v-150q0 -21 -10.5 -25t-24.5 10l-247 230q-15 14 -15 35t15 35zM900 300h-100v200h100v-200zM1000 500h51q20 0 34.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-34.5 -14.5h-51v200z" />
|
210 |
+
<glyph unicode="" d="M862 1073l276 116q25 18 43.5 8t18.5 -41v-1106q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v397q-4 1 -11 5t-24 17.5t-30 29t-24 42t-11 56.5v359q0 31 18.5 65t43.5 52zM550 1200q22 0 34.5 -12.5t14.5 -24.5l1 -13v-450q0 -28 -10.5 -59.5 t-25 -56t-29 -45t-25.5 -31.5l-10 -11v-447q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v447q-4 4 -11 11.5t-24 30.5t-30 46t-24 55t-11 60v450q0 2 0.5 5.5t4 12t8.5 15t14.5 12t22.5 5.5q20 0 32.5 -12.5t14.5 -24.5l3 -13v-350h100v350v5.5t2.5 12 t7 15t15 12t25.5 5.5q23 0 35.5 -12.5t13.5 -24.5l1 -13v-350h100v350q0 2 0.5 5.5t3 12t7 15t15 12t24.5 5.5z" />
|
211 |
+
<glyph unicode="" d="M1200 1100v-56q-4 0 -11 -0.5t-24 -3t-30 -7.5t-24 -15t-11 -24v-888q0 -22 25 -34.5t50 -13.5l25 -2v-56h-400v56q75 0 87.5 6.5t12.5 43.5v394h-500v-394q0 -37 12.5 -43.5t87.5 -6.5v-56h-400v56q4 0 11 0.5t24 3t30 7.5t24 15t11 24v888q0 22 -25 34.5t-50 13.5 l-25 2v56h400v-56q-75 0 -87.5 -6.5t-12.5 -43.5v-394h500v394q0 37 -12.5 43.5t-87.5 6.5v56h400z" />
|
212 |
+
<glyph unicode="" d="M675 1000h375q21 0 35.5 -14.5t14.5 -35.5v-150h-105l-295 -98v98l-200 200h-400l100 100h375zM100 900h300q41 0 70.5 -29.5t29.5 -70.5v-500q0 -41 -29.5 -70.5t-70.5 -29.5h-300q-41 0 -70.5 29.5t-29.5 70.5v500q0 41 29.5 70.5t70.5 29.5zM100 800v-200h300v200 h-300zM1100 535l-400 -133v163l400 133v-163zM100 500v-200h300v200h-300zM1100 398v-248q0 -21 -14.5 -35.5t-35.5 -14.5h-375l-100 -100h-375l-100 100h400l200 200h105z" />
|
213 |
+
<glyph unicode="" d="M17 1007l162 162q17 17 40 14t37 -22l139 -194q14 -20 11 -44.5t-20 -41.5l-119 -118q102 -142 228 -268t267 -227l119 118q17 17 42.5 19t44.5 -12l192 -136q19 -14 22.5 -37.5t-13.5 -40.5l-163 -162q-3 -1 -9.5 -1t-29.5 2t-47.5 6t-62.5 14.5t-77.5 26.5t-90 42.5 t-101.5 60t-111 83t-119 108.5q-74 74 -133.5 150.5t-94.5 138.5t-60 119.5t-34.5 100t-15 74.5t-4.5 48z" />
|
214 |
+
<glyph unicode="" d="M600 1100q92 0 175 -10.5t141.5 -27t108.5 -36.5t81.5 -40t53.5 -37t31 -27l9 -10v-200q0 -21 -14.5 -33t-34.5 -9l-202 34q-20 3 -34.5 20t-14.5 38v146q-141 24 -300 24t-300 -24v-146q0 -21 -14.5 -38t-34.5 -20l-202 -34q-20 -3 -34.5 9t-14.5 33v200q3 4 9.5 10.5 t31 26t54 37.5t80.5 39.5t109 37.5t141 26.5t175 10.5zM600 795q56 0 97 -9.5t60 -23.5t30 -28t12 -24l1 -10v-50l365 -303q14 -15 24.5 -40t10.5 -45v-212q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v212q0 20 10.5 45t24.5 40l365 303v50 q0 4 1 10.5t12 23t30 29t60 22.5t97 10z" />
|
215 |
+
<glyph unicode="" d="M1100 700l-200 -200h-600l-200 200v500h200v-200h200v200h200v-200h200v200h200v-500zM250 400h700q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-12l137 -100h-950l137 100h-12q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5 t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" />
|
216 |
+
<glyph unicode="" d="M700 1100h-100q-41 0 -70.5 -29.5t-29.5 -70.5v-1000h300v1000q0 41 -29.5 70.5t-70.5 29.5zM1100 800h-100q-41 0 -70.5 -29.5t-29.5 -70.5v-700h300v700q0 41 -29.5 70.5t-70.5 29.5zM400 0h-300v400q0 41 29.5 70.5t70.5 29.5h100q41 0 70.5 -29.5t29.5 -70.5v-400z " />
|
217 |
+
<glyph unicode="" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 700h-200v-100h200v-300h-300v100h200v100h-200v300h300v-100zM900 700v-300l-100 -100h-200v500h200z M700 700v-300h100v300h-100z" />
|
218 |
+
<glyph unicode="" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 300h-100v200h-100v-200h-100v500h100v-200h100v200h100v-500zM900 700v-300l-100 -100h-200v500h200z M700 700v-300h100v300h-100z" />
|
219 |
+
<glyph unicode="" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 700h-200v-300h200v-100h-300v500h300v-100zM900 700h-200v-300h200v-100h-300v500h300v-100z" />
|
220 |
+
<glyph unicode="" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 400l-300 150l300 150v-300zM900 550l-300 -150v300z" />
|
221 |
+
<glyph unicode="" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM900 300h-700v500h700v-500zM800 700h-130q-38 0 -66.5 -43t-28.5 -108t27 -107t68 -42h130v300zM300 700v-300 h130q41 0 68 42t27 107t-28.5 108t-66.5 43h-130z" />
|
222 |
+
<glyph unicode="" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 700h-200v-100h200v-300h-300v100h200v100h-200v300h300v-100zM900 300h-100v400h-100v100h200v-500z M700 300h-100v100h100v-100z" />
|
223 |
+
<glyph unicode="" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM300 700h200v-400h-300v500h100v-100zM900 300h-100v400h-100v100h200v-500zM300 600v-200h100v200h-100z M700 300h-100v100h100v-100z" />
|
224 |
+
<glyph unicode="" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 500l-199 -200h-100v50l199 200v150h-200v100h300v-300zM900 300h-100v400h-100v100h200v-500zM701 300h-100 v100h100v-100z" />
|
225 |
+
<glyph unicode="" d="M600 1191q120 0 229.5 -47t188.5 -126t126 -188.5t47 -229.5t-47 -229.5t-126 -188.5t-188.5 -126t-229.5 -47t-229.5 47t-188.5 126t-126 188.5t-47 229.5t47 229.5t126 188.5t188.5 126t229.5 47zM600 1021q-114 0 -211 -56.5t-153.5 -153.5t-56.5 -211t56.5 -211 t153.5 -153.5t211 -56.5t211 56.5t153.5 153.5t56.5 211t-56.5 211t-153.5 153.5t-211 56.5zM800 700h-300v-200h300v-100h-300l-100 100v200l100 100h300v-100z" />
|
226 |
+
<glyph unicode="" d="M600 1191q120 0 229.5 -47t188.5 -126t126 -188.5t47 -229.5t-47 -229.5t-126 -188.5t-188.5 -126t-229.5 -47t-229.5 47t-188.5 126t-126 188.5t-47 229.5t47 229.5t126 188.5t188.5 126t229.5 47zM600 1021q-114 0 -211 -56.5t-153.5 -153.5t-56.5 -211t56.5 -211 t153.5 -153.5t211 -56.5t211 56.5t153.5 153.5t56.5 211t-56.5 211t-153.5 153.5t-211 56.5zM800 700v-100l-50 -50l100 -100v-50h-100l-100 100h-150v-100h-100v400h300zM500 700v-100h200v100h-200z" />
|
227 |
+
<glyph unicode="" d="M503 1089q110 0 200.5 -59.5t134.5 -156.5q44 14 90 14q120 0 205 -86.5t85 -207t-85 -207t-205 -86.5h-128v250q0 21 -14.5 35.5t-35.5 14.5h-300q-21 0 -35.5 -14.5t-14.5 -35.5v-250h-222q-80 0 -136 57.5t-56 136.5q0 69 43 122.5t108 67.5q-2 19 -2 37q0 100 49 185 t134 134t185 49zM525 500h150q10 0 17.5 -7.5t7.5 -17.5v-275h137q21 0 26 -11.5t-8 -27.5l-223 -244q-13 -16 -32 -16t-32 16l-223 244q-13 16 -8 27.5t26 11.5h137v275q0 10 7.5 17.5t17.5 7.5z" />
|
228 |
+
<glyph unicode="" d="M502 1089q110 0 201 -59.5t135 -156.5q43 15 89 15q121 0 206 -86.5t86 -206.5q0 -99 -60 -181t-150 -110l-378 360q-13 16 -31.5 16t-31.5 -16l-381 -365h-9q-79 0 -135.5 57.5t-56.5 136.5q0 69 43 122.5t108 67.5q-2 19 -2 38q0 100 49 184.5t133.5 134t184.5 49.5z M632 467l223 -228q13 -16 8 -27.5t-26 -11.5h-137v-275q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v275h-137q-21 0 -26 11.5t8 27.5q199 204 223 228q19 19 31.5 19t32.5 -19z" />
|
229 |
+
<glyph unicode="" d="M700 100v100h400l-270 300h170l-270 300h170l-300 333l-300 -333h170l-270 -300h170l-270 -300h400v-100h-50q-21 0 -35.5 -14.5t-14.5 -35.5v-50h400v50q0 21 -14.5 35.5t-35.5 14.5h-50z" />
|
230 |
+
<glyph unicode="" d="M600 1179q94 0 167.5 -56.5t99.5 -145.5q89 -6 150.5 -71.5t61.5 -155.5q0 -61 -29.5 -112.5t-79.5 -82.5q9 -29 9 -55q0 -74 -52.5 -126.5t-126.5 -52.5q-55 0 -100 30v-251q21 0 35.5 -14.5t14.5 -35.5v-50h-300v50q0 21 14.5 35.5t35.5 14.5v251q-45 -30 -100 -30 q-74 0 -126.5 52.5t-52.5 126.5q0 18 4 38q-47 21 -75.5 65t-28.5 97q0 74 52.5 126.5t126.5 52.5q5 0 23 -2q0 2 -1 10t-1 13q0 116 81.5 197.5t197.5 81.5z" />
|
231 |
+
<glyph unicode="" d="M1010 1010q111 -111 150.5 -260.5t0 -299t-150.5 -260.5q-83 -83 -191.5 -126.5t-218.5 -43.5t-218.5 43.5t-191.5 126.5q-111 111 -150.5 260.5t0 299t150.5 260.5q83 83 191.5 126.5t218.5 43.5t218.5 -43.5t191.5 -126.5zM476 1065q-4 0 -8 -1q-121 -34 -209.5 -122.5 t-122.5 -209.5q-4 -12 2.5 -23t18.5 -14l36 -9q3 -1 7 -1q23 0 29 22q27 96 98 166q70 71 166 98q11 3 17.5 13.5t3.5 22.5l-9 35q-3 13 -14 19q-7 4 -15 4zM512 920q-4 0 -9 -2q-80 -24 -138.5 -82.5t-82.5 -138.5q-4 -13 2 -24t19 -14l34 -9q4 -1 8 -1q22 0 28 21 q18 58 58.5 98.5t97.5 58.5q12 3 18 13.5t3 21.5l-9 35q-3 12 -14 19q-7 4 -15 4zM719.5 719.5q-49.5 49.5 -119.5 49.5t-119.5 -49.5t-49.5 -119.5t49.5 -119.5t119.5 -49.5t119.5 49.5t49.5 119.5t-49.5 119.5zM855 551q-22 0 -28 -21q-18 -58 -58.5 -98.5t-98.5 -57.5 q-11 -4 -17 -14.5t-3 -21.5l9 -35q3 -12 14 -19q7 -4 15 -4q4 0 9 2q80 24 138.5 82.5t82.5 138.5q4 13 -2.5 24t-18.5 14l-34 9q-4 1 -8 1zM1000 515q-23 0 -29 -22q-27 -96 -98 -166q-70 -71 -166 -98q-11 -3 -17.5 -13.5t-3.5 -22.5l9 -35q3 -13 14 -19q7 -4 15 -4 q4 0 8 1q121 34 209.5 122.5t122.5 209.5q4 12 -2.5 23t-18.5 14l-36 9q-3 1 -7 1z" />
|
232 |
+
<glyph unicode="" d="M700 800h300v-380h-180v200h-340v-200h-380v755q0 10 7.5 17.5t17.5 7.5h575v-400zM1000 900h-200v200zM700 300h162l-212 -212l-212 212h162v200h100v-200zM520 0h-395q-10 0 -17.5 7.5t-7.5 17.5v395zM1000 220v-195q0 -10 -7.5 -17.5t-17.5 -7.5h-195z" />
|
233 |
+
<glyph unicode="" d="M700 800h300v-520l-350 350l-550 -550v1095q0 10 7.5 17.5t17.5 7.5h575v-400zM1000 900h-200v200zM862 200h-162v-200h-100v200h-162l212 212zM480 0h-355q-10 0 -17.5 7.5t-7.5 17.5v55h380v-80zM1000 80v-55q0 -10 -7.5 -17.5t-17.5 -7.5h-155v80h180z" />
|
234 |
+
<glyph unicode="" d="M1162 800h-162v-200h100l100 -100h-300v300h-162l212 212zM200 800h200q27 0 40 -2t29.5 -10.5t23.5 -30t7 -57.5h300v-100h-600l-200 -350v450h100q0 36 7 57.5t23.5 30t29.5 10.5t40 2zM800 400h240l-240 -400h-800l300 500h500v-100z" />
|
235 |
+
<glyph unicode="" d="M650 1100h100q21 0 35.5 -14.5t14.5 -35.5v-50h50q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-300q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h50v50q0 21 14.5 35.5t35.5 14.5zM1000 850v150q41 0 70.5 -29.5t29.5 -70.5v-800 q0 -41 -29.5 -70.5t-70.5 -29.5h-600q-1 0 -20 4l246 246l-326 326v324q0 41 29.5 70.5t70.5 29.5v-150q0 -62 44 -106t106 -44h300q62 0 106 44t44 106zM412 250l-212 -212v162h-200v100h200v162z" />
|
236 |
+
<glyph unicode="" d="M450 1100h100q21 0 35.5 -14.5t14.5 -35.5v-50h50q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-300q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h50v50q0 21 14.5 35.5t35.5 14.5zM800 850v150q41 0 70.5 -29.5t29.5 -70.5v-500 h-200v-300h200q0 -36 -7 -57.5t-23.5 -30t-29.5 -10.5t-40 -2h-600q-41 0 -70.5 29.5t-29.5 70.5v800q0 41 29.5 70.5t70.5 29.5v-150q0 -62 44 -106t106 -44h300q62 0 106 44t44 106zM1212 250l-212 -212v162h-200v100h200v162z" />
|
237 |
+
<glyph unicode="" d="M658 1197l637 -1104q23 -38 7 -65.5t-60 -27.5h-1276q-44 0 -60 27.5t7 65.5l637 1104q22 39 54 39t54 -39zM704 800h-208q-20 0 -32 -14.5t-8 -34.5l58 -302q4 -20 21.5 -34.5t37.5 -14.5h54q20 0 37.5 14.5t21.5 34.5l58 302q4 20 -8 34.5t-32 14.5zM500 300v-100h200 v100h-200z" />
|
238 |
+
<glyph unicode="" d="M425 1100h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM425 800h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5 t17.5 7.5zM825 800h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM25 500h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150 q0 10 7.5 17.5t17.5 7.5zM425 500h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM825 500h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5 v150q0 10 7.5 17.5t17.5 7.5zM25 200h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM425 200h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5 t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM825 200h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5z" />
|
239 |
+
<glyph unicode="" d="M700 1200h100v-200h-100v-100h350q62 0 86.5 -39.5t-3.5 -94.5l-66 -132q-41 -83 -81 -134h-772q-40 51 -81 134l-66 132q-28 55 -3.5 94.5t86.5 39.5h350v100h-100v200h100v100h200v-100zM250 400h700q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-12l137 -100 h-950l138 100h-13q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" />
|
240 |
+
<glyph unicode="" d="M600 1300q40 0 68.5 -29.5t28.5 -70.5h-194q0 41 28.5 70.5t68.5 29.5zM443 1100h314q18 -37 18 -75q0 -8 -3 -25h328q41 0 44.5 -16.5t-30.5 -38.5l-175 -145h-678l-178 145q-34 22 -29 38.5t46 16.5h328q-3 17 -3 25q0 38 18 75zM250 700h700q21 0 35.5 -14.5 t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-150v-200l275 -200h-950l275 200v200h-150q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" />
|
241 |
+
<glyph unicode="" d="M600 1181q75 0 128 -53t53 -128t-53 -128t-128 -53t-128 53t-53 128t53 128t128 53zM602 798h46q34 0 55.5 -28.5t21.5 -86.5q0 -76 39 -183h-324q39 107 39 183q0 58 21.5 86.5t56.5 28.5h45zM250 400h700q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-13 l138 -100h-950l137 100h-12q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" />
|
242 |
+
<glyph unicode="" d="M600 1300q47 0 92.5 -53.5t71 -123t25.5 -123.5q0 -78 -55.5 -133.5t-133.5 -55.5t-133.5 55.5t-55.5 133.5q0 62 34 143l144 -143l111 111l-163 163q34 26 63 26zM602 798h46q34 0 55.5 -28.5t21.5 -86.5q0 -76 39 -183h-324q39 107 39 183q0 58 21.5 86.5t56.5 28.5h45 zM250 400h700q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-13l138 -100h-950l137 100h-12q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" />
|
243 |
+
<glyph unicode="" d="M600 1200l300 -161v-139h-300q0 -57 18.5 -108t50 -91.5t63 -72t70 -67.5t57.5 -61h-530q-60 83 -90.5 177.5t-30.5 178.5t33 164.5t87.5 139.5t126 96.5t145.5 41.5v-98zM250 400h700q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-13l138 -100h-950l137 100 h-12q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" />
|
244 |
+
<glyph unicode="" d="M600 1300q41 0 70.5 -29.5t29.5 -70.5v-78q46 -26 73 -72t27 -100v-50h-400v50q0 54 27 100t73 72v78q0 41 29.5 70.5t70.5 29.5zM400 800h400q54 0 100 -27t72 -73h-172v-100h200v-100h-200v-100h200v-100h-200v-100h200q0 -83 -58.5 -141.5t-141.5 -58.5h-400 q-83 0 -141.5 58.5t-58.5 141.5v400q0 83 58.5 141.5t141.5 58.5z" />
|
245 |
+
<glyph unicode="" d="M150 1100h900q21 0 35.5 -14.5t14.5 -35.5v-500q0 -21 -14.5 -35.5t-35.5 -14.5h-900q-21 0 -35.5 14.5t-14.5 35.5v500q0 21 14.5 35.5t35.5 14.5zM125 400h950q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-283l224 -224q13 -13 13 -31.5t-13 -32 t-31.5 -13.5t-31.5 13l-88 88h-524l-87 -88q-13 -13 -32 -13t-32 13.5t-13 32t13 31.5l224 224h-289q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5zM541 300l-100 -100h324l-100 100h-124z" />
|
246 |
+
<glyph unicode="" d="M200 1100h800q83 0 141.5 -58.5t58.5 -141.5v-200h-100q0 41 -29.5 70.5t-70.5 29.5h-250q-41 0 -70.5 -29.5t-29.5 -70.5h-100q0 41 -29.5 70.5t-70.5 29.5h-250q-41 0 -70.5 -29.5t-29.5 -70.5h-100v200q0 83 58.5 141.5t141.5 58.5zM100 600h1000q41 0 70.5 -29.5 t29.5 -70.5v-300h-1200v300q0 41 29.5 70.5t70.5 29.5zM300 100v-50q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v50h200zM1100 100v-50q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v50h200z" />
|
247 |
+
<glyph unicode="" d="M480 1165l682 -683q31 -31 31 -75.5t-31 -75.5l-131 -131h-481l-517 518q-32 31 -32 75.5t32 75.5l295 296q31 31 75.5 31t76.5 -31zM108 794l342 -342l303 304l-341 341zM250 100h800q21 0 35.5 -14.5t14.5 -35.5v-50h-900v50q0 21 14.5 35.5t35.5 14.5z" />
|
248 |
+
<glyph unicode="" d="M1057 647l-189 506q-8 19 -27.5 33t-40.5 14h-400q-21 0 -40.5 -14t-27.5 -33l-189 -506q-8 -19 1.5 -33t30.5 -14h625v-150q0 -21 14.5 -35.5t35.5 -14.5t35.5 14.5t14.5 35.5v150h125q21 0 30.5 14t1.5 33zM897 0h-595v50q0 21 14.5 35.5t35.5 14.5h50v50 q0 21 14.5 35.5t35.5 14.5h48v300h200v-300h47q21 0 35.5 -14.5t14.5 -35.5v-50h50q21 0 35.5 -14.5t14.5 -35.5v-50z" />
|
249 |
+
<glyph unicode="" d="M900 800h300v-575q0 -10 -7.5 -17.5t-17.5 -7.5h-375v591l-300 300v84q0 10 7.5 17.5t17.5 7.5h375v-400zM1200 900h-200v200zM400 600h300v-575q0 -10 -7.5 -17.5t-17.5 -7.5h-650q-10 0 -17.5 7.5t-7.5 17.5v950q0 10 7.5 17.5t17.5 7.5h375v-400zM700 700h-200v200z " />
|
250 |
+
<glyph unicode="" d="M484 1095h195q75 0 146 -32.5t124 -86t89.5 -122.5t48.5 -142q18 -14 35 -20q31 -10 64.5 6.5t43.5 48.5q10 34 -15 71q-19 27 -9 43q5 8 12.5 11t19 -1t23.5 -16q41 -44 39 -105q-3 -63 -46 -106.5t-104 -43.5h-62q-7 -55 -35 -117t-56 -100l-39 -234q-3 -20 -20 -34.5 t-38 -14.5h-100q-21 0 -33 14.5t-9 34.5l12 70q-49 -14 -91 -14h-195q-24 0 -65 8l-11 -64q-3 -20 -20 -34.5t-38 -14.5h-100q-21 0 -33 14.5t-9 34.5l26 157q-84 74 -128 175l-159 53q-19 7 -33 26t-14 40v50q0 21 14.5 35.5t35.5 14.5h124q11 87 56 166l-111 95 q-16 14 -12.5 23.5t24.5 9.5h203q116 101 250 101zM675 1000h-250q-10 0 -17.5 -7.5t-7.5 -17.5v-50q0 -10 7.5 -17.5t17.5 -7.5h250q10 0 17.5 7.5t7.5 17.5v50q0 10 -7.5 17.5t-17.5 7.5z" />
|
251 |
+
<glyph unicode="" d="M641 900l423 247q19 8 42 2.5t37 -21.5l32 -38q14 -15 12.5 -36t-17.5 -34l-139 -120h-390zM50 1100h106q67 0 103 -17t66 -71l102 -212h823q21 0 35.5 -14.5t14.5 -35.5v-50q0 -21 -14 -40t-33 -26l-737 -132q-23 -4 -40 6t-26 25q-42 67 -100 67h-300q-62 0 -106 44 t-44 106v200q0 62 44 106t106 44zM173 928h-80q-19 0 -28 -14t-9 -35v-56q0 -51 42 -51h134q16 0 21.5 8t5.5 24q0 11 -16 45t-27 51q-18 28 -43 28zM550 727q-32 0 -54.5 -22.5t-22.5 -54.5t22.5 -54.5t54.5 -22.5t54.5 22.5t22.5 54.5t-22.5 54.5t-54.5 22.5zM130 389 l152 130q18 19 34 24t31 -3.5t24.5 -17.5t25.5 -28q28 -35 50.5 -51t48.5 -13l63 5l48 -179q13 -61 -3.5 -97.5t-67.5 -79.5l-80 -69q-47 -40 -109 -35.5t-103 51.5l-130 151q-40 47 -35.5 109.5t51.5 102.5zM380 377l-102 -88q-31 -27 2 -65l37 -43q13 -15 27.5 -19.5 t31.5 6.5l61 53q19 16 14 49q-2 20 -12 56t-17 45q-11 12 -19 14t-23 -8z" />
|
252 |
+
<glyph unicode="" d="M625 1200h150q10 0 17.5 -7.5t7.5 -17.5v-109q79 -33 131 -87.5t53 -128.5q1 -46 -15 -84.5t-39 -61t-46 -38t-39 -21.5l-17 -6q6 0 15 -1.5t35 -9t50 -17.5t53 -30t50 -45t35.5 -64t14.5 -84q0 -59 -11.5 -105.5t-28.5 -76.5t-44 -51t-49.5 -31.5t-54.5 -16t-49.5 -6.5 t-43.5 -1v-75q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v75h-100v-75q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v75h-175q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5h75v600h-75q-10 0 -17.5 7.5t-7.5 17.5v150 q0 10 7.5 17.5t17.5 7.5h175v75q0 10 7.5 17.5t17.5 7.5h150q10 0 17.5 -7.5t7.5 -17.5v-75h100v75q0 10 7.5 17.5t17.5 7.5zM400 900v-200h263q28 0 48.5 10.5t30 25t15 29t5.5 25.5l1 10q0 4 -0.5 11t-6 24t-15 30t-30 24t-48.5 11h-263zM400 500v-200h363q28 0 48.5 10.5 t30 25t15 29t5.5 25.5l1 10q0 4 -0.5 11t-6 24t-15 30t-30 24t-48.5 11h-363z" />
|
253 |
+
<glyph unicode="" d="M212 1198h780q86 0 147 -61t61 -147v-416q0 -51 -18 -142.5t-36 -157.5l-18 -66q-29 -87 -93.5 -146.5t-146.5 -59.5h-572q-82 0 -147 59t-93 147q-8 28 -20 73t-32 143.5t-20 149.5v416q0 86 61 147t147 61zM600 1045q-70 0 -132.5 -11.5t-105.5 -30.5t-78.5 -41.5 t-57 -45t-36 -41t-20.5 -30.5l-6 -12l156 -243h560l156 243q-2 5 -6 12.5t-20 29.5t-36.5 42t-57 44.5t-79 42t-105 29.5t-132.5 12zM762 703h-157l195 261z" />
|
254 |
+
<glyph unicode="" d="M475 1300h150q103 0 189 -86t86 -189v-500q0 -41 -42 -83t-83 -42h-450q-41 0 -83 42t-42 83v500q0 103 86 189t189 86zM700 300v-225q0 -21 -27 -48t-48 -27h-150q-21 0 -48 27t-27 48v225h300z" />
|
255 |
+
<glyph unicode="" d="M475 1300h96q0 -150 89.5 -239.5t239.5 -89.5v-446q0 -41 -42 -83t-83 -42h-450q-41 0 -83 42t-42 83v500q0 103 86 189t189 86zM700 300v-225q0 -21 -27 -48t-48 -27h-150q-21 0 -48 27t-27 48v225h300z" />
|
256 |
+
<glyph unicode="" d="M1294 767l-638 -283l-378 170l-78 -60v-224l100 -150v-199l-150 148l-150 -149v200l100 150v250q0 4 -0.5 10.5t0 9.5t1 8t3 8t6.5 6l47 40l-147 65l642 283zM1000 380l-350 -166l-350 166v147l350 -165l350 165v-147z" />
|
257 |
+
<glyph unicode="" d="M250 800q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44zM650 800q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44zM1050 800q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44z" />
|
258 |
+
<glyph unicode="" d="M550 1100q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44zM550 700q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44zM550 300q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44z" />
|
259 |
+
<glyph unicode="" d="M125 1100h950q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-950q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM125 700h950q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-950q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5 t17.5 7.5zM125 300h950q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-950q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5z" />
|
260 |
+
<glyph unicode="" d="M350 1200h500q162 0 256 -93.5t94 -256.5v-500q0 -165 -93.5 -257.5t-256.5 -92.5h-500q-165 0 -257.5 92.5t-92.5 257.5v500q0 165 92.5 257.5t257.5 92.5zM900 1000h-600q-41 0 -70.5 -29.5t-29.5 -70.5v-600q0 -41 29.5 -70.5t70.5 -29.5h600q41 0 70.5 29.5 t29.5 70.5v600q0 41 -29.5 70.5t-70.5 29.5zM350 900h500q21 0 35.5 -14.5t14.5 -35.5v-300q0 -21 -14.5 -35.5t-35.5 -14.5h-500q-21 0 -35.5 14.5t-14.5 35.5v300q0 21 14.5 35.5t35.5 14.5zM400 800v-200h400v200h-400z" />
|
261 |
+
<glyph unicode="" d="M150 1100h1000q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-50v-200h50q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-50v-200h50q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-50v-200h50q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5 t-35.5 -14.5h-1000q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5h50v200h-50q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5h50v200h-50q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5h50v200h-50q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5z" />
|
262 |
+
<glyph unicode="" d="M650 1187q87 -67 118.5 -156t0 -178t-118.5 -155q-87 66 -118.5 155t0 178t118.5 156zM300 800q124 0 212 -88t88 -212q-124 0 -212 88t-88 212zM1000 800q0 -124 -88 -212t-212 -88q0 124 88 212t212 88zM300 500q124 0 212 -88t88 -212q-124 0 -212 88t-88 212z M1000 500q0 -124 -88 -212t-212 -88q0 124 88 212t212 88zM700 199v-144q0 -21 -14.5 -35.5t-35.5 -14.5t-35.5 14.5t-14.5 35.5v142q40 -4 43 -4q17 0 57 6z" />
|
263 |
+
<glyph unicode="" d="M745 878l69 19q25 6 45 -12l298 -295q11 -11 15 -26.5t-2 -30.5q-5 -14 -18 -23.5t-28 -9.5h-8q1 0 1 -13q0 -29 -2 -56t-8.5 -62t-20 -63t-33 -53t-51 -39t-72.5 -14h-146q-184 0 -184 288q0 24 10 47q-20 4 -62 4t-63 -4q11 -24 11 -47q0 -288 -184 -288h-142 q-48 0 -84.5 21t-56 51t-32 71.5t-16 75t-3.5 68.5q0 13 2 13h-7q-15 0 -27.5 9.5t-18.5 23.5q-6 15 -2 30.5t15 25.5l298 296q20 18 46 11l76 -19q20 -5 30.5 -22.5t5.5 -37.5t-22.5 -31t-37.5 -5l-51 12l-182 -193h891l-182 193l-44 -12q-20 -5 -37.5 6t-22.5 31t6 37.5 t31 22.5z" />
|
264 |
+
<glyph unicode="" d="M1200 900h-50q0 21 -4 37t-9.5 26.5t-18 17.5t-22 11t-28.5 5.5t-31 2t-37 0.5h-200v-850q0 -22 25 -34.5t50 -13.5l25 -2v-100h-400v100q4 0 11 0.5t24 3t30 7t24 15t11 24.5v850h-200q-25 0 -37 -0.5t-31 -2t-28.5 -5.5t-22 -11t-18 -17.5t-9.5 -26.5t-4 -37h-50v300 h1000v-300zM500 450h-25q0 15 -4 24.5t-9 14.5t-17 7.5t-20 3t-25 0.5h-100v-425q0 -11 12.5 -17.5t25.5 -7.5h12v-50h-200v50q50 0 50 25v425h-100q-17 0 -25 -0.5t-20 -3t-17 -7.5t-9 -14.5t-4 -24.5h-25v150h500v-150z" />
|
265 |
+
<glyph unicode="" d="M1000 300v50q-25 0 -55 32q-14 14 -25 31t-16 27l-4 11l-289 747h-69l-300 -754q-18 -35 -39 -56q-9 -9 -24.5 -18.5t-26.5 -14.5l-11 -5v-50h273v50q-49 0 -78.5 21.5t-11.5 67.5l69 176h293l61 -166q13 -34 -3.5 -66.5t-55.5 -32.5v-50h312zM412 691l134 342l121 -342 h-255zM1100 150v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1000q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h1000q21 0 35.5 -14.5t14.5 -35.5z" />
|
266 |
+
<glyph unicode="" d="M50 1200h1100q21 0 35.5 -14.5t14.5 -35.5v-1100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v1100q0 21 14.5 35.5t35.5 14.5zM611 1118h-70q-13 0 -18 -12l-299 -753q-17 -32 -35 -51q-18 -18 -56 -34q-12 -5 -12 -18v-50q0 -8 5.5 -14t14.5 -6 h273q8 0 14 6t6 14v50q0 8 -6 14t-14 6q-55 0 -71 23q-10 14 0 39l63 163h266l57 -153q11 -31 -6 -55q-12 -17 -36 -17q-8 0 -14 -6t-6 -14v-50q0 -8 6 -14t14 -6h313q8 0 14 6t6 14v50q0 7 -5.5 13t-13.5 7q-17 0 -42 25q-25 27 -40 63h-1l-288 748q-5 12 -19 12zM639 611 h-197l103 264z" />
|
267 |
+
<glyph unicode="" d="M1200 1100h-1200v100h1200v-100zM50 1000h400q21 0 35.5 -14.5t14.5 -35.5v-900q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v900q0 21 14.5 35.5t35.5 14.5zM650 1000h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400 q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM700 900v-300h300v300h-300z" />
|
268 |
+
<glyph unicode="" d="M50 1200h400q21 0 35.5 -14.5t14.5 -35.5v-900q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v900q0 21 14.5 35.5t35.5 14.5zM650 700h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400 q0 21 14.5 35.5t35.5 14.5zM700 600v-300h300v300h-300zM1200 0h-1200v100h1200v-100z" />
|
269 |
+
<glyph unicode="" d="M50 1000h400q21 0 35.5 -14.5t14.5 -35.5v-350h100v150q0 21 14.5 35.5t35.5 14.5h400q21 0 35.5 -14.5t14.5 -35.5v-150h100v-100h-100v-150q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v150h-100v-350q0 -21 -14.5 -35.5t-35.5 -14.5h-400 q-21 0 -35.5 14.5t-14.5 35.5v800q0 21 14.5 35.5t35.5 14.5zM700 700v-300h300v300h-300z" />
|
270 |
+
<glyph unicode="" d="M100 0h-100v1200h100v-1200zM250 1100h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM300 1000v-300h300v300h-300zM250 500h900q21 0 35.5 -14.5t14.5 -35.5v-400 q0 -21 -14.5 -35.5t-35.5 -14.5h-900q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5z" />
|
271 |
+
<glyph unicode="" d="M600 1100h150q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-150v-100h450q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-900q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5h350v100h-150q-21 0 -35.5 14.5 t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5h150v100h100v-100zM400 1000v-300h300v300h-300z" />
|
272 |
+
<glyph unicode="" d="M1200 0h-100v1200h100v-1200zM550 1100h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM600 1000v-300h300v300h-300zM50 500h900q21 0 35.5 -14.5t14.5 -35.5v-400 q0 -21 -14.5 -35.5t-35.5 -14.5h-900q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5z" />
|
273 |
+
<glyph unicode="" d="M865 565l-494 -494q-23 -23 -41 -23q-14 0 -22 13.5t-8 38.5v1000q0 25 8 38.5t22 13.5q18 0 41 -23l494 -494q14 -14 14 -35t-14 -35z" />
|
274 |
+
<glyph unicode="" d="M335 635l494 494q29 29 50 20.5t21 -49.5v-1000q0 -41 -21 -49.5t-50 20.5l-494 494q-14 14 -14 35t14 35z" />
|
275 |
+
<glyph unicode="" d="M100 900h1000q41 0 49.5 -21t-20.5 -50l-494 -494q-14 -14 -35 -14t-35 14l-494 494q-29 29 -20.5 50t49.5 21z" />
|
276 |
+
<glyph unicode="" d="M635 865l494 -494q29 -29 20.5 -50t-49.5 -21h-1000q-41 0 -49.5 21t20.5 50l494 494q14 14 35 14t35 -14z" />
|
277 |
+
<glyph unicode="" d="M700 741v-182l-692 -323v221l413 193l-413 193v221zM1200 0h-800v200h800v-200z" />
|
278 |
+
<glyph unicode="" d="M1200 900h-200v-100h200v-100h-300v300h200v100h-200v100h300v-300zM0 700h50q0 21 4 37t9.5 26.5t18 17.5t22 11t28.5 5.5t31 2t37 0.5h100v-550q0 -22 -25 -34.5t-50 -13.5l-25 -2v-100h400v100q-4 0 -11 0.5t-24 3t-30 7t-24 15t-11 24.5v550h100q25 0 37 -0.5t31 -2 t28.5 -5.5t22 -11t18 -17.5t9.5 -26.5t4 -37h50v300h-800v-300z" />
|
279 |
+
<glyph unicode="" d="M800 700h-50q0 21 -4 37t-9.5 26.5t-18 17.5t-22 11t-28.5 5.5t-31 2t-37 0.5h-100v-550q0 -22 25 -34.5t50 -14.5l25 -1v-100h-400v100q4 0 11 0.5t24 3t30 7t24 15t11 24.5v550h-100q-25 0 -37 -0.5t-31 -2t-28.5 -5.5t-22 -11t-18 -17.5t-9.5 -26.5t-4 -37h-50v300 h800v-300zM1100 200h-200v-100h200v-100h-300v300h200v100h-200v100h300v-300z" />
|
280 |
+
<glyph unicode="" d="M701 1098h160q16 0 21 -11t-7 -23l-464 -464l464 -464q12 -12 7 -23t-21 -11h-160q-13 0 -23 9l-471 471q-7 8 -7 18t7 18l471 471q10 9 23 9z" />
|
281 |
+
<glyph unicode="" d="M339 1098h160q13 0 23 -9l471 -471q7 -8 7 -18t-7 -18l-471 -471q-10 -9 -23 -9h-160q-16 0 -21 11t7 23l464 464l-464 464q-12 12 -7 23t21 11z" />
|
282 |
+
<glyph unicode="" d="M1087 882q11 -5 11 -21v-160q0 -13 -9 -23l-471 -471q-8 -7 -18 -7t-18 7l-471 471q-9 10 -9 23v160q0 16 11 21t23 -7l464 -464l464 464q12 12 23 7z" />
|
283 |
+
<glyph unicode="" d="M618 993l471 -471q9 -10 9 -23v-160q0 -16 -11 -21t-23 7l-464 464l-464 -464q-12 -12 -23 -7t-11 21v160q0 13 9 23l471 471q8 7 18 7t18 -7z" />
|
284 |
+
<glyph unicode="" d="M1000 1200q0 -124 -88 -212t-212 -88q0 124 88 212t212 88zM450 1000h100q21 0 40 -14t26 -33l79 -194q5 1 16 3q34 6 54 9.5t60 7t65.5 1t61 -10t56.5 -23t42.5 -42t29 -64t5 -92t-19.5 -121.5q-1 -7 -3 -19.5t-11 -50t-20.5 -73t-32.5 -81.5t-46.5 -83t-64 -70 t-82.5 -50q-13 -5 -42 -5t-65.5 2.5t-47.5 2.5q-14 0 -49.5 -3.5t-63 -3.5t-43.5 7q-57 25 -104.5 78.5t-75 111.5t-46.5 112t-26 90l-7 35q-15 63 -18 115t4.5 88.5t26 64t39.5 43.5t52 25.5t58.5 13t62.5 2t59.5 -4.5t55.5 -8l-147 192q-12 18 -5.5 30t27.5 12z" />
|
285 |
+
<glyph unicode="🔑" d="M250 1200h600q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-150v-500l-255 -178q-19 -9 -32 -1t-13 29v650h-150q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM400 1100v-100h300v100h-300z" />
|
286 |
+
<glyph unicode="🚪" d="M250 1200h750q39 0 69.5 -40.5t30.5 -84.5v-933l-700 -117v950l600 125h-700v-1000h-100v1025q0 23 15.5 49t34.5 26zM500 525v-100l100 20v100z" />
|
287 |
+
</font>
|
288 |
+
</defs></svg>
|
bootstrap/fonts/glyphicons-halflings-regular.ttf
ADDED
Binary file
|
bootstrap/fonts/glyphicons-halflings-regular.woff
ADDED
Binary file
|
bootstrap/fonts/glyphicons-halflings-regular.woff2
ADDED
Binary file
|
bootstrap/js/bootstrap.js
ADDED
@@ -0,0 +1,2317 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*!
|
2 |
+
* Bootstrap v3.3.4 (http://getbootstrap.com)
|
3 |
+
* Copyright 2011-2015 Twitter, Inc.
|
4 |
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
5 |
+
*/
|
6 |
+
|
7 |
+
if (typeof jQuery === 'undefined') {
|
8 |
+
throw new Error('Bootstrap\'s JavaScript requires jQuery')
|
9 |
+
}
|
10 |
+
|
11 |
+
+function ($) {
|
12 |
+
'use strict';
|
13 |
+
var version = $.fn.jquery.split(' ')[0].split('.')
|
14 |
+
if ((version[0] < 2 && version[1] < 9) || (version[0] == 1 && version[1] == 9 && version[2] < 1)) {
|
15 |
+
throw new Error('Bootstrap\'s JavaScript requires jQuery version 1.9.1 or higher')
|
16 |
+
}
|
17 |
+
}(jQuery);
|
18 |
+
|
19 |
+
/* ========================================================================
|
20 |
+
* Bootstrap: transition.js v3.3.4
|
21 |
+
* http://getbootstrap.com/javascript/#transitions
|
22 |
+
* ========================================================================
|
23 |
+
* Copyright 2011-2015 Twitter, Inc.
|
24 |
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
25 |
+
* ======================================================================== */
|
26 |
+
|
27 |
+
|
28 |
+
+function ($) {
|
29 |
+
'use strict';
|
30 |
+
|
31 |
+
// CSS TRANSITION SUPPORT (Shoutout: http://www.modernizr.com/)
|
32 |
+
// ============================================================
|
33 |
+
|
34 |
+
function transitionEnd() {
|
35 |
+
var el = document.createElement('bootstrap')
|
36 |
+
|
37 |
+
var transEndEventNames = {
|
38 |
+
WebkitTransition : 'webkitTransitionEnd',
|
39 |
+
MozTransition : 'transitionend',
|
40 |
+
OTransition : 'oTransitionEnd otransitionend',
|
41 |
+
transition : 'transitionend'
|
42 |
+
}
|
43 |
+
|
44 |
+
for (var name in transEndEventNames) {
|
45 |
+
if (el.style[name] !== undefined) {
|
46 |
+
return { end: transEndEventNames[name] }
|
47 |
+
}
|
48 |
+
}
|
49 |
+
|
50 |
+
return false // explicit for ie8 ( ._.)
|
51 |
+
}
|
52 |
+
|
53 |
+
// http://blog.alexmaccaw.com/css-transitions
|
54 |
+
$.fn.emulateTransitionEnd = function (duration) {
|
55 |
+
var called = false
|
56 |
+
var $el = this
|
57 |
+
$(this).one('bsTransitionEnd', function () { called = true })
|
58 |
+
var callback = function () { if (!called) $($el).trigger($.support.transition.end) }
|
59 |
+
setTimeout(callback, duration)
|
60 |
+
return this
|
61 |
+
}
|
62 |
+
|
63 |
+
$(function () {
|
64 |
+
$.support.transition = transitionEnd()
|
65 |
+
|
66 |
+
if (!$.support.transition) return
|
67 |
+
|
68 |
+
$.event.special.bsTransitionEnd = {
|
69 |
+
bindType: $.support.transition.end,
|
70 |
+
delegateType: $.support.transition.end,
|
71 |
+
handle: function (e) {
|
72 |
+
if ($(e.target).is(this)) return e.handleObj.handler.apply(this, arguments)
|
73 |
+
}
|
74 |
+
}
|
75 |
+
})
|
76 |
+
|
77 |
+
}(jQuery);
|
78 |
+
|
79 |
+
/* ========================================================================
|
80 |
+
* Bootstrap: alert.js v3.3.4
|
81 |
+
* http://getbootstrap.com/javascript/#alerts
|
82 |
+
* ========================================================================
|
83 |
+
* Copyright 2011-2015 Twitter, Inc.
|
84 |
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
85 |
+
* ======================================================================== */
|
86 |
+
|
87 |
+
|
88 |
+
+function ($) {
|
89 |
+
'use strict';
|
90 |
+
|
91 |
+
// ALERT CLASS DEFINITION
|
92 |
+
// ======================
|
93 |
+
|
94 |
+
var dismiss = '[data-dismiss="alert"]'
|
95 |
+
var Alert = function (el) {
|
96 |
+
$(el).on('click', dismiss, this.close)
|
97 |
+
}
|
98 |
+
|
99 |
+
Alert.VERSION = '3.3.4'
|
100 |
+
|
101 |
+
Alert.TRANSITION_DURATION = 150
|
102 |
+
|
103 |
+
Alert.prototype.close = function (e) {
|
104 |
+
var $this = $(this)
|
105 |
+
var selector = $this.attr('data-target')
|
106 |
+
|
107 |
+
if (!selector) {
|
108 |
+
selector = $this.attr('href')
|
109 |
+
selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7
|
110 |
+
}
|
111 |
+
|
112 |
+
var $parent = $(selector)
|
113 |
+
|
114 |
+
if (e) e.preventDefault()
|
115 |
+
|
116 |
+
if (!$parent.length) {
|
117 |
+
$parent = $this.closest('.alert')
|
118 |
+
}
|
119 |
+
|
120 |
+
$parent.trigger(e = $.Event('close.bs.alert'))
|
121 |
+
|
122 |
+
if (e.isDefaultPrevented()) return
|
123 |
+
|
124 |
+
$parent.removeClass('in')
|
125 |
+
|
126 |
+
function removeElement() {
|
127 |
+
// detach from parent, fire event then clean up data
|
128 |
+
$parent.detach().trigger('closed.bs.alert').remove()
|
129 |
+
}
|
130 |
+
|
131 |
+
$.support.transition && $parent.hasClass('fade') ?
|
132 |
+
$parent
|
133 |
+
.one('bsTransitionEnd', removeElement)
|
134 |
+
.emulateTransitionEnd(Alert.TRANSITION_DURATION) :
|
135 |
+
removeElement()
|
136 |
+
}
|
137 |
+
|
138 |
+
|
139 |
+
// ALERT PLUGIN DEFINITION
|
140 |
+
// =======================
|
141 |
+
|
142 |
+
function Plugin(option) {
|
143 |
+
return this.each(function () {
|
144 |
+
var $this = $(this)
|
145 |
+
var data = $this.data('bs.alert')
|
146 |
+
|
147 |
+
if (!data) $this.data('bs.alert', (data = new Alert(this)))
|
148 |
+
if (typeof option == 'string') data[option].call($this)
|
149 |
+
})
|
150 |
+
}
|
151 |
+
|
152 |
+
var old = $.fn.alert
|
153 |
+
|
154 |
+
$.fn.alert = Plugin
|
155 |
+
$.fn.alert.Constructor = Alert
|
156 |
+
|
157 |
+
|
158 |
+
// ALERT NO CONFLICT
|
159 |
+
// =================
|
160 |
+
|
161 |
+
$.fn.alert.noConflict = function () {
|
162 |
+
$.fn.alert = old
|
163 |
+
return this
|
164 |
+
}
|
165 |
+
|
166 |
+
|
167 |
+
// ALERT DATA-API
|
168 |
+
// ==============
|
169 |
+
|
170 |
+
$(document).on('click.bs.alert.data-api', dismiss, Alert.prototype.close)
|
171 |
+
|
172 |
+
}(jQuery);
|
173 |
+
|
174 |
+
/* ========================================================================
|
175 |
+
* Bootstrap: button.js v3.3.4
|
176 |
+
* http://getbootstrap.com/javascript/#buttons
|
177 |
+
* ========================================================================
|
178 |
+
* Copyright 2011-2015 Twitter, Inc.
|
179 |
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
180 |
+
* ======================================================================== */
|
181 |
+
|
182 |
+
|
183 |
+
+function ($) {
|
184 |
+
'use strict';
|
185 |
+
|
186 |
+
// BUTTON PUBLIC CLASS DEFINITION
|
187 |
+
// ==============================
|
188 |
+
|
189 |
+
var Button = function (element, options) {
|
190 |
+
this.$element = $(element)
|
191 |
+
this.options = $.extend({}, Button.DEFAULTS, options)
|
192 |
+
this.isLoading = false
|
193 |
+
}
|
194 |
+
|
195 |
+
Button.VERSION = '3.3.4'
|
196 |
+
|
197 |
+
Button.DEFAULTS = {
|
198 |
+
loadingText: 'loading...'
|
199 |
+
}
|
200 |
+
|
201 |
+
Button.prototype.setState = function (state) {
|
202 |
+
var d = 'disabled'
|
203 |
+
var $el = this.$element
|
204 |
+
var val = $el.is('input') ? 'val' : 'html'
|
205 |
+
var data = $el.data()
|
206 |
+
|
207 |
+
state = state + 'Text'
|
208 |
+
|
209 |
+
if (data.resetText == null) $el.data('resetText', $el[val]())
|
210 |
+
|
211 |
+
// push to event loop to allow forms to submit
|
212 |
+
setTimeout($.proxy(function () {
|
213 |
+
$el[val](data[state] == null ? this.options[state] : data[state])
|
214 |
+
|
215 |
+
if (state == 'loadingText') {
|
216 |
+
this.isLoading = true
|
217 |
+
$el.addClass(d).attr(d, d)
|
218 |
+
} else if (this.isLoading) {
|
219 |
+
this.isLoading = false
|
220 |
+
$el.removeClass(d).removeAttr(d)
|
221 |
+
}
|
222 |
+
}, this), 0)
|
223 |
+
}
|
224 |
+
|
225 |
+
Button.prototype.toggle = function () {
|
226 |
+
var changed = true
|
227 |
+
var $parent = this.$element.closest('[data-toggle="buttons"]')
|
228 |
+
|
229 |
+
if ($parent.length) {
|
230 |
+
var $input = this.$element.find('input')
|
231 |
+
if ($input.prop('type') == 'radio') {
|
232 |
+
if ($input.prop('checked') && this.$element.hasClass('active')) changed = false
|
233 |
+
else $parent.find('.active').removeClass('active')
|
234 |
+
}
|
235 |
+
if (changed) $input.prop('checked', !this.$element.hasClass('active')).trigger('change')
|
236 |
+
} else {
|
237 |
+
this.$element.attr('aria-pressed', !this.$element.hasClass('active'))
|
238 |
+
}
|
239 |
+
|
240 |
+
if (changed) this.$element.toggleClass('active')
|
241 |
+
}
|
242 |
+
|
243 |
+
|
244 |
+
// BUTTON PLUGIN DEFINITION
|
245 |
+
// ========================
|
246 |
+
|
247 |
+
function Plugin(option) {
|
248 |
+
return this.each(function () {
|
249 |
+
var $this = $(this)
|
250 |
+
var data = $this.data('bs.button')
|
251 |
+
var options = typeof option == 'object' && option
|
252 |
+
|
253 |
+
if (!data) $this.data('bs.button', (data = new Button(this, options)))
|
254 |
+
|
255 |
+
if (option == 'toggle') data.toggle()
|
256 |
+
else if (option) data.setState(option)
|
257 |
+
})
|
258 |
+
}
|
259 |
+
|
260 |
+
var old = $.fn.button
|
261 |
+
|
262 |
+
$.fn.button = Plugin
|
263 |
+
$.fn.button.Constructor = Button
|
264 |
+
|
265 |
+
|
266 |
+
// BUTTON NO CONFLICT
|
267 |
+
// ==================
|
268 |
+
|
269 |
+
$.fn.button.noConflict = function () {
|
270 |
+
$.fn.button = old
|
271 |
+
return this
|
272 |
+
}
|
273 |
+
|
274 |
+
|
275 |
+
// BUTTON DATA-API
|
276 |
+
// ===============
|
277 |
+
|
278 |
+
$(document)
|
279 |
+
.on('click.bs.button.data-api', '[data-toggle^="button"]', function (e) {
|
280 |
+
var $btn = $(e.target)
|
281 |
+
if (!$btn.hasClass('btn')) $btn = $btn.closest('.btn')
|
282 |
+
Plugin.call($btn, 'toggle')
|
283 |
+
e.preventDefault()
|
284 |
+
})
|
285 |
+
.on('focus.bs.button.data-api blur.bs.button.data-api', '[data-toggle^="button"]', function (e) {
|
286 |
+
$(e.target).closest('.btn').toggleClass('focus', /^focus(in)?$/.test(e.type))
|
287 |
+
})
|
288 |
+
|
289 |
+
}(jQuery);
|
290 |
+
|
291 |
+
/* ========================================================================
|
292 |
+
* Bootstrap: carousel.js v3.3.4
|
293 |
+
* http://getbootstrap.com/javascript/#carousel
|
294 |
+
* ========================================================================
|
295 |
+
* Copyright 2011-2015 Twitter, Inc.
|
296 |
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
297 |
+
* ======================================================================== */
|
298 |
+
|
299 |
+
|
300 |
+
+function ($) {
|
301 |
+
'use strict';
|
302 |
+
|
303 |
+
// CAROUSEL CLASS DEFINITION
|
304 |
+
// =========================
|
305 |
+
|
306 |
+
var Carousel = function (element, options) {
|
307 |
+
this.$element = $(element)
|
308 |
+
this.$indicators = this.$element.find('.carousel-indicators')
|
309 |
+
this.options = options
|
310 |
+
this.paused = null
|
311 |
+
this.sliding = null
|
312 |
+
this.interval = null
|
313 |
+
this.$active = null
|
314 |
+
this.$items = null
|
315 |
+
|
316 |
+
this.options.keyboard && this.$element.on('keydown.bs.carousel', $.proxy(this.keydown, this))
|
317 |
+
|
318 |
+
this.options.pause == 'hover' && !('ontouchstart' in document.documentElement) && this.$element
|
319 |
+
.on('mouseenter.bs.carousel', $.proxy(this.pause, this))
|
320 |
+
.on('mouseleave.bs.carousel', $.proxy(this.cycle, this))
|
321 |
+
}
|
322 |
+
|
323 |
+
Carousel.VERSION = '3.3.4'
|
324 |
+
|
325 |
+
Carousel.TRANSITION_DURATION = 600
|
326 |
+
|
327 |
+
Carousel.DEFAULTS = {
|
328 |
+
interval: 5000,
|
329 |
+
pause: 'hover',
|
330 |
+
wrap: true,
|
331 |
+
keyboard: true
|
332 |
+
}
|
333 |
+
|
334 |
+
Carousel.prototype.keydown = function (e) {
|
335 |
+
if (/input|textarea/i.test(e.target.tagName)) return
|
336 |
+
switch (e.which) {
|
337 |
+
case 37: this.prev(); break
|
338 |
+
case 39: this.next(); break
|
339 |
+
default: return
|
340 |
+
}
|
341 |
+
|
342 |
+
e.preventDefault()
|
343 |
+
}
|
344 |
+
|
345 |
+
Carousel.prototype.cycle = function (e) {
|
346 |
+
e || (this.paused = false)
|
347 |
+
|
348 |
+
this.interval && clearInterval(this.interval)
|
349 |
+
|
350 |
+
this.options.interval
|
351 |
+
&& !this.paused
|
352 |
+
&& (this.interval = setInterval($.proxy(this.next, this), this.options.interval))
|
353 |
+
|
354 |
+
return this
|
355 |
+
}
|
356 |
+
|
357 |
+
Carousel.prototype.getItemIndex = function (item) {
|
358 |
+
this.$items = item.parent().children('.item')
|
359 |
+
return this.$items.index(item || this.$active)
|
360 |
+
}
|
361 |
+
|
362 |
+
Carousel.prototype.getItemForDirection = function (direction, active) {
|
363 |
+
var activeIndex = this.getItemIndex(active)
|
364 |
+
var willWrap = (direction == 'prev' && activeIndex === 0)
|
365 |
+
|| (direction == 'next' && activeIndex == (this.$items.length - 1))
|
366 |
+
if (willWrap && !this.options.wrap) return active
|
367 |
+
var delta = direction == 'prev' ? -1 : 1
|
368 |
+
var itemIndex = (activeIndex + delta) % this.$items.length
|
369 |
+
return this.$items.eq(itemIndex)
|
370 |
+
}
|
371 |
+
|
372 |
+
Carousel.prototype.to = function (pos) {
|
373 |
+
var that = this
|
374 |
+
var activeIndex = this.getItemIndex(this.$active = this.$element.find('.item.active'))
|
375 |
+
|
376 |
+
if (pos > (this.$items.length - 1) || pos < 0) return
|
377 |
+
|
378 |
+
if (this.sliding) return this.$element.one('slid.bs.carousel', function () { that.to(pos) }) // yes, "slid"
|
379 |
+
if (activeIndex == pos) return this.pause().cycle()
|
380 |
+
|
381 |
+
return this.slide(pos > activeIndex ? 'next' : 'prev', this.$items.eq(pos))
|
382 |
+
}
|
383 |
+
|
384 |
+
Carousel.prototype.pause = function (e) {
|
385 |
+
e || (this.paused = true)
|
386 |
+
|
387 |
+
if (this.$element.find('.next, .prev').length && $.support.transition) {
|
388 |
+
this.$element.trigger($.support.transition.end)
|
389 |
+
this.cycle(true)
|
390 |
+
}
|
391 |
+
|
392 |
+
this.interval = clearInterval(this.interval)
|
393 |
+
|
394 |
+
return this
|
395 |
+
}
|
396 |
+
|
397 |
+
Carousel.prototype.next = function () {
|
398 |
+
if (this.sliding) return
|
399 |
+
return this.slide('next')
|
400 |
+
}
|
401 |
+
|
402 |
+
Carousel.prototype.prev = function () {
|
403 |
+
if (this.sliding) return
|
404 |
+
return this.slide('prev')
|
405 |
+
}
|
406 |
+
|
407 |
+
Carousel.prototype.slide = function (type, next) {
|
408 |
+
var $active = this.$element.find('.item.active')
|
409 |
+
var $next = next || this.getItemForDirection(type, $active)
|
410 |
+
var isCycling = this.interval
|
411 |
+
var direction = type == 'next' ? 'left' : 'right'
|
412 |
+
var that = this
|
413 |
+
|
414 |
+
if ($next.hasClass('active')) return (this.sliding = false)
|
415 |
+
|
416 |
+
var relatedTarget = $next[0]
|
417 |
+
var slideEvent = $.Event('slide.bs.carousel', {
|
418 |
+
relatedTarget: relatedTarget,
|
419 |
+
direction: direction
|
420 |
+
})
|
421 |
+
this.$element.trigger(slideEvent)
|
422 |
+
if (slideEvent.isDefaultPrevented()) return
|
423 |
+
|
424 |
+
this.sliding = true
|
425 |
+
|
426 |
+
isCycling && this.pause()
|
427 |
+
|
428 |
+
if (this.$indicators.length) {
|
429 |
+
this.$indicators.find('.active').removeClass('active')
|
430 |
+
var $nextIndicator = $(this.$indicators.children()[this.getItemIndex($next)])
|
431 |
+
$nextIndicator && $nextIndicator.addClass('active')
|
432 |
+
}
|
433 |
+
|
434 |
+
var slidEvent = $.Event('slid.bs.carousel', { relatedTarget: relatedTarget, direction: direction }) // yes, "slid"
|
435 |
+
if ($.support.transition && this.$element.hasClass('slide')) {
|
436 |
+
$next.addClass(type)
|
437 |
+
$next[0].offsetWidth // force reflow
|
438 |
+
$active.addClass(direction)
|
439 |
+
$next.addClass(direction)
|
440 |
+
$active
|
441 |
+
.one('bsTransitionEnd', function () {
|
442 |
+
$next.removeClass([type, direction].join(' ')).addClass('active')
|
443 |
+
$active.removeClass(['active', direction].join(' '))
|
444 |
+
that.sliding = false
|
445 |
+
setTimeout(function () {
|
446 |
+
that.$element.trigger(slidEvent)
|
447 |
+
}, 0)
|
448 |
+
})
|
449 |
+
.emulateTransitionEnd(Carousel.TRANSITION_DURATION)
|
450 |
+
} else {
|
451 |
+
$active.removeClass('active')
|
452 |
+
$next.addClass('active')
|
453 |
+
this.sliding = false
|
454 |
+
this.$element.trigger(slidEvent)
|
455 |
+
}
|
456 |
+
|
457 |
+
isCycling && this.cycle()
|
458 |
+
|
459 |
+
return this
|
460 |
+
}
|
461 |
+
|
462 |
+
|
463 |
+
// CAROUSEL PLUGIN DEFINITION
|
464 |
+
// ==========================
|
465 |
+
|
466 |
+
function Plugin(option) {
|
467 |
+
return this.each(function () {
|
468 |
+
var $this = $(this)
|
469 |
+
var data = $this.data('bs.carousel')
|
470 |
+
var options = $.extend({}, Carousel.DEFAULTS, $this.data(), typeof option == 'object' && option)
|
471 |
+
var action = typeof option == 'string' ? option : options.slide
|
472 |
+
|
473 |
+
if (!data) $this.data('bs.carousel', (data = new Carousel(this, options)))
|
474 |
+
if (typeof option == 'number') data.to(option)
|
475 |
+
else if (action) data[action]()
|
476 |
+
else if (options.interval) data.pause().cycle()
|
477 |
+
})
|
478 |
+
}
|
479 |
+
|
480 |
+
var old = $.fn.carousel
|
481 |
+
|
482 |
+
$.fn.carousel = Plugin
|
483 |
+
$.fn.carousel.Constructor = Carousel
|
484 |
+
|
485 |
+
|
486 |
+
// CAROUSEL NO CONFLICT
|
487 |
+
// ====================
|
488 |
+
|
489 |
+
$.fn.carousel.noConflict = function () {
|
490 |
+
$.fn.carousel = old
|
491 |
+
return this
|
492 |
+
}
|
493 |
+
|
494 |
+
|
495 |
+
// CAROUSEL DATA-API
|
496 |
+
// =================
|
497 |
+
|
498 |
+
var clickHandler = function (e) {
|
499 |
+
var href
|
500 |
+
var $this = $(this)
|
501 |
+
var $target = $($this.attr('data-target') || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) // strip for ie7
|
502 |
+
if (!$target.hasClass('carousel')) return
|
503 |
+
var options = $.extend({}, $target.data(), $this.data())
|
504 |
+
var slideIndex = $this.attr('data-slide-to')
|
505 |
+
if (slideIndex) options.interval = false
|
506 |
+
|
507 |
+
Plugin.call($target, options)
|
508 |
+
|
509 |
+
if (slideIndex) {
|
510 |
+
$target.data('bs.carousel').to(slideIndex)
|
511 |
+
}
|
512 |
+
|
513 |
+
e.preventDefault()
|
514 |
+
}
|
515 |
+
|
516 |
+
$(document)
|
517 |
+
.on('click.bs.carousel.data-api', '[data-slide]', clickHandler)
|
518 |
+
.on('click.bs.carousel.data-api', '[data-slide-to]', clickHandler)
|
519 |
+
|
520 |
+
$(window).on('load', function () {
|
521 |
+
$('[data-ride="carousel"]').each(function () {
|
522 |
+
var $carousel = $(this)
|
523 |
+
Plugin.call($carousel, $carousel.data())
|
524 |
+
})
|
525 |
+
})
|
526 |
+
|
527 |
+
}(jQuery);
|
528 |
+
|
529 |
+
/* ========================================================================
|
530 |
+
* Bootstrap: collapse.js v3.3.4
|
531 |
+
* http://getbootstrap.com/javascript/#collapse
|
532 |
+
* ========================================================================
|
533 |
+
* Copyright 2011-2015 Twitter, Inc.
|
534 |
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
535 |
+
* ======================================================================== */
|
536 |
+
|
537 |
+
|
538 |
+
+function ($) {
|
539 |
+
'use strict';
|
540 |
+
|
541 |
+
// COLLAPSE PUBLIC CLASS DEFINITION
|
542 |
+
// ================================
|
543 |
+
|
544 |
+
var Collapse = function (element, options) {
|
545 |
+
this.$element = $(element)
|
546 |
+
this.options = $.extend({}, Collapse.DEFAULTS, options)
|
547 |
+
this.$trigger = $('[data-toggle="collapse"][href="#' + element.id + '"],' +
|
548 |
+
'[data-toggle="collapse"][data-target="#' + element.id + '"]')
|
549 |
+
this.transitioning = null
|
550 |
+
|
551 |
+
if (this.options.parent) {
|
552 |
+
this.$parent = this.getParent()
|
553 |
+
} else {
|
554 |
+
this.addAriaAndCollapsedClass(this.$element, this.$trigger)
|
555 |
+
}
|
556 |
+
|
557 |
+
if (this.options.toggle) this.toggle()
|
558 |
+
}
|
559 |
+
|
560 |
+
Collapse.VERSION = '3.3.4'
|
561 |
+
|
562 |
+
Collapse.TRANSITION_DURATION = 350
|
563 |
+
|
564 |
+
Collapse.DEFAULTS = {
|
565 |
+
toggle: true
|
566 |
+
}
|
567 |
+
|
568 |
+
Collapse.prototype.dimension = function () {
|
569 |
+
var hasWidth = this.$element.hasClass('width')
|
570 |
+
return hasWidth ? 'width' : 'height'
|
571 |
+
}
|
572 |
+
|
573 |
+
Collapse.prototype.show = function () {
|
574 |
+
if (this.transitioning || this.$element.hasClass('in')) return
|
575 |
+
|
576 |
+
var activesData
|
577 |
+
var actives = this.$parent && this.$parent.children('.panel').children('.in, .collapsing')
|
578 |
+
|
579 |
+
if (actives && actives.length) {
|
580 |
+
activesData = actives.data('bs.collapse')
|
581 |
+
if (activesData && activesData.transitioning) return
|
582 |
+
}
|
583 |
+
|
584 |
+
var startEvent = $.Event('show.bs.collapse')
|
585 |
+
this.$element.trigger(startEvent)
|
586 |
+
if (startEvent.isDefaultPrevented()) return
|
587 |
+
|
588 |
+
if (actives && actives.length) {
|
589 |
+
Plugin.call(actives, 'hide')
|
590 |
+
activesData || actives.data('bs.collapse', null)
|
591 |
+
}
|
592 |
+
|
593 |
+
var dimension = this.dimension()
|
594 |
+
|
595 |
+
this.$element
|
596 |
+
.removeClass('collapse')
|
597 |
+
.addClass('collapsing')[dimension](0)
|
598 |
+
.attr('aria-expanded', true)
|
599 |
+
|
600 |
+
this.$trigger
|
601 |
+
.removeClass('collapsed')
|
602 |
+
.attr('aria-expanded', true)
|
603 |
+
|
604 |
+
this.transitioning = 1
|
605 |
+
|
606 |
+
var complete = function () {
|
607 |
+
this.$element
|
608 |
+
.removeClass('collapsing')
|
609 |
+
.addClass('collapse in')[dimension]('')
|
610 |
+
this.transitioning = 0
|
611 |
+
this.$element
|
612 |
+
.trigger('shown.bs.collapse')
|
613 |
+
}
|
614 |
+
|
615 |
+
if (!$.support.transition) return complete.call(this)
|
616 |
+
|
617 |
+
var scrollSize = $.camelCase(['scroll', dimension].join('-'))
|
618 |
+
|
619 |
+
this.$element
|
620 |
+
.one('bsTransitionEnd', $.proxy(complete, this))
|
621 |
+
.emulateTransitionEnd(Collapse.TRANSITION_DURATION)[dimension](this.$element[0][scrollSize])
|
622 |
+
}
|
623 |
+
|
624 |
+
Collapse.prototype.hide = function () {
|
625 |
+
if (this.transitioning || !this.$element.hasClass('in')) return
|
626 |
+
|
627 |
+
var startEvent = $.Event('hide.bs.collapse')
|
628 |
+
this.$element.trigger(startEvent)
|
629 |
+
if (startEvent.isDefaultPrevented()) return
|
630 |
+
|
631 |
+
var dimension = this.dimension()
|
632 |
+
|
633 |
+
this.$element[dimension](this.$element[dimension]())[0].offsetHeight
|
634 |
+
|
635 |
+
this.$element
|
636 |
+
.addClass('collapsing')
|
637 |
+
.removeClass('collapse in')
|
638 |
+
.attr('aria-expanded', false)
|
639 |
+
|
640 |
+
this.$trigger
|
641 |
+
.addClass('collapsed')
|
642 |
+
.attr('aria-expanded', false)
|
643 |
+
|
644 |
+
this.transitioning = 1
|
645 |
+
|
646 |
+
var complete = function () {
|
647 |
+
this.transitioning = 0
|
648 |
+
this.$element
|
649 |
+
.removeClass('collapsing')
|
650 |
+
.addClass('collapse')
|
651 |
+
.trigger('hidden.bs.collapse')
|
652 |
+
}
|
653 |
+
|
654 |
+
if (!$.support.transition) return complete.call(this)
|
655 |
+
|
656 |
+
this.$element
|
657 |
+
[dimension](0)
|
658 |
+
.one('bsTransitionEnd', $.proxy(complete, this))
|
659 |
+
.emulateTransitionEnd(Collapse.TRANSITION_DURATION)
|
660 |
+
}
|
661 |
+
|
662 |
+
Collapse.prototype.toggle = function () {
|
663 |
+
this[this.$element.hasClass('in') ? 'hide' : 'show']()
|
664 |
+
}
|
665 |
+
|
666 |
+
Collapse.prototype.getParent = function () {
|
667 |
+
return $(this.options.parent)
|
668 |
+
.find('[data-toggle="collapse"][data-parent="' + this.options.parent + '"]')
|
669 |
+
.each($.proxy(function (i, element) {
|
670 |
+
var $element = $(element)
|
671 |
+
this.addAriaAndCollapsedClass(getTargetFromTrigger($element), $element)
|
672 |
+
}, this))
|
673 |
+
.end()
|
674 |
+
}
|
675 |
+
|
676 |
+
Collapse.prototype.addAriaAndCollapsedClass = function ($element, $trigger) {
|
677 |
+
var isOpen = $element.hasClass('in')
|
678 |
+
|
679 |
+
$element.attr('aria-expanded', isOpen)
|
680 |
+
$trigger
|
681 |
+
.toggleClass('collapsed', !isOpen)
|
682 |
+
.attr('aria-expanded', isOpen)
|
683 |
+
}
|
684 |
+
|
685 |
+
function getTargetFromTrigger($trigger) {
|
686 |
+
var href
|
687 |
+
var target = $trigger.attr('data-target')
|
688 |
+
|| (href = $trigger.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '') // strip for ie7
|
689 |
+
|
690 |
+
return $(target)
|
691 |
+
}
|
692 |
+
|
693 |
+
|
694 |
+
// COLLAPSE PLUGIN DEFINITION
|
695 |
+
// ==========================
|
696 |
+
|
697 |
+
function Plugin(option) {
|
698 |
+
return this.each(function () {
|
699 |
+
var $this = $(this)
|
700 |
+
var data = $this.data('bs.collapse')
|
701 |
+
var options = $.extend({}, Collapse.DEFAULTS, $this.data(), typeof option == 'object' && option)
|
702 |
+
|
703 |
+
if (!data && options.toggle && /show|hide/.test(option)) options.toggle = false
|
704 |
+
if (!data) $this.data('bs.collapse', (data = new Collapse(this, options)))
|
705 |
+
if (typeof option == 'string') data[option]()
|
706 |
+
})
|
707 |
+
}
|
708 |
+
|
709 |
+
var old = $.fn.collapse
|
710 |
+
|
711 |
+
$.fn.collapse = Plugin
|
712 |
+
$.fn.collapse.Constructor = Collapse
|
713 |
+
|
714 |
+
|
715 |
+
// COLLAPSE NO CONFLICT
|
716 |
+
// ====================
|
717 |
+
|
718 |
+
$.fn.collapse.noConflict = function () {
|
719 |
+
$.fn.collapse = old
|
720 |
+
return this
|
721 |
+
}
|
722 |
+
|
723 |
+
|
724 |
+
// COLLAPSE DATA-API
|
725 |
+
// =================
|
726 |
+
|
727 |
+
$(document).on('click.bs.collapse.data-api', '[data-toggle="collapse"]', function (e) {
|
728 |
+
var $this = $(this)
|
729 |
+
|
730 |
+
if (!$this.attr('data-target')) e.preventDefault()
|
731 |
+
|
732 |
+
var $target = getTargetFromTrigger($this)
|
733 |
+
var data = $target.data('bs.collapse')
|
734 |
+
var option = data ? 'toggle' : $this.data()
|
735 |
+
|
736 |
+
Plugin.call($target, option)
|
737 |
+
})
|
738 |
+
|
739 |
+
}(jQuery);
|
740 |
+
|
741 |
+
/* ========================================================================
|
742 |
+
* Bootstrap: dropdown.js v3.3.4
|
743 |
+
* http://getbootstrap.com/javascript/#dropdowns
|
744 |
+
* ========================================================================
|
745 |
+
* Copyright 2011-2015 Twitter, Inc.
|
746 |
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
747 |
+
* ======================================================================== */
|
748 |
+
|
749 |
+
|
750 |
+
+function ($) {
|
751 |
+
'use strict';
|
752 |
+
|
753 |
+
// DROPDOWN CLASS DEFINITION
|
754 |
+
// =========================
|
755 |
+
|
756 |
+
var backdrop = '.dropdown-backdrop'
|
757 |
+
var toggle = '[data-toggle="dropdown"]'
|
758 |
+
var Dropdown = function (element) {
|
759 |
+
$(element).on('click.bs.dropdown', this.toggle)
|
760 |
+
}
|
761 |
+
|
762 |
+
Dropdown.VERSION = '3.3.4'
|
763 |
+
|
764 |
+
Dropdown.prototype.toggle = function (e) {
|
765 |
+
var $this = $(this)
|
766 |
+
|
767 |
+
if ($this.is('.disabled, :disabled')) return
|
768 |
+
|
769 |
+
var $parent = getParent($this)
|
770 |
+
var isActive = $parent.hasClass('open')
|
771 |
+
|
772 |
+
clearMenus()
|
773 |
+
|
774 |
+
if (!isActive) {
|
775 |
+
if ('ontouchstart' in document.documentElement && !$parent.closest('.navbar-nav').length) {
|
776 |
+
// if mobile we use a backdrop because click events don't delegate
|
777 |
+
$('<div class="dropdown-backdrop"/>').insertAfter($(this)).on('click', clearMenus)
|
778 |
+
}
|
779 |
+
|
780 |
+
var relatedTarget = { relatedTarget: this }
|
781 |
+
$parent.trigger(e = $.Event('show.bs.dropdown', relatedTarget))
|
782 |
+
|
783 |
+
if (e.isDefaultPrevented()) return
|
784 |
+
|
785 |
+
$this
|
786 |
+
.trigger('focus')
|
787 |
+
.attr('aria-expanded', 'true')
|
788 |
+
|
789 |
+
$parent
|
790 |
+
.toggleClass('open')
|
791 |
+
.trigger('shown.bs.dropdown', relatedTarget)
|
792 |
+
}
|
793 |
+
|
794 |
+
return false
|
795 |
+
}
|
796 |
+
|
797 |
+
Dropdown.prototype.keydown = function (e) {
|
798 |
+
if (!/(38|40|27|32)/.test(e.which) || /input|textarea/i.test(e.target.tagName)) return
|
799 |
+
|
800 |
+
var $this = $(this)
|
801 |
+
|
802 |
+
e.preventDefault()
|
803 |
+
e.stopPropagation()
|
804 |
+
|
805 |
+
if ($this.is('.disabled, :disabled')) return
|
806 |
+
|
807 |
+
var $parent = getParent($this)
|
808 |
+
var isActive = $parent.hasClass('open')
|
809 |
+
|
810 |
+
if ((!isActive && e.which != 27) || (isActive && e.which == 27)) {
|
811 |
+
if (e.which == 27) $parent.find(toggle).trigger('focus')
|
812 |
+
return $this.trigger('click')
|
813 |
+
}
|
814 |
+
|
815 |
+
var desc = ' li:not(.disabled):visible a'
|
816 |
+
var $items = $parent.find('[role="menu"]' + desc + ', [role="listbox"]' + desc)
|
817 |
+
|
818 |
+
if (!$items.length) return
|
819 |
+
|
820 |
+
var index = $items.index(e.target)
|
821 |
+
|
822 |
+
if (e.which == 38 && index > 0) index-- // up
|
823 |
+
if (e.which == 40 && index < $items.length - 1) index++ // down
|
824 |
+
if (!~index) index = 0
|
825 |
+
|
826 |
+
$items.eq(index).trigger('focus')
|
827 |
+
}
|
828 |
+
|
829 |
+
function clearMenus(e) {
|
830 |
+
if (e && e.which === 3) return
|
831 |
+
$(backdrop).remove()
|
832 |
+
$(toggle).each(function () {
|
833 |
+
var $this = $(this)
|
834 |
+
var $parent = getParent($this)
|
835 |
+
var relatedTarget = { relatedTarget: this }
|
836 |
+
|
837 |
+
if (!$parent.hasClass('open')) return
|
838 |
+
|
839 |
+
$parent.trigger(e = $.Event('hide.bs.dropdown', relatedTarget))
|
840 |
+
|
841 |
+
if (e.isDefaultPrevented()) return
|
842 |
+
|
843 |
+
$this.attr('aria-expanded', 'false')
|
844 |
+
$parent.removeClass('open').trigger('hidden.bs.dropdown', relatedTarget)
|
845 |
+
})
|
846 |
+
}
|
847 |
+
|
848 |
+
function getParent($this) {
|
849 |
+
var selector = $this.attr('data-target')
|
850 |
+
|
851 |
+
if (!selector) {
|
852 |
+
selector = $this.attr('href')
|
853 |
+
selector = selector && /#[A-Za-z]/.test(selector) && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7
|
854 |
+
}
|
855 |
+
|
856 |
+
var $parent = selector && $(selector)
|
857 |
+
|
858 |
+
return $parent && $parent.length ? $parent : $this.parent()
|
859 |
+
}
|
860 |
+
|
861 |
+
|
862 |
+
// DROPDOWN PLUGIN DEFINITION
|
863 |
+
// ==========================
|
864 |
+
|
865 |
+
function Plugin(option) {
|
866 |
+
return this.each(function () {
|
867 |
+
var $this = $(this)
|
868 |
+
var data = $this.data('bs.dropdown')
|
869 |
+
|
870 |
+
if (!data) $this.data('bs.dropdown', (data = new Dropdown(this)))
|
871 |
+
if (typeof option == 'string') data[option].call($this)
|
872 |
+
})
|
873 |
+
}
|
874 |
+
|
875 |
+
var old = $.fn.dropdown
|
876 |
+
|
877 |
+
$.fn.dropdown = Plugin
|
878 |
+
$.fn.dropdown.Constructor = Dropdown
|
879 |
+
|
880 |
+
|
881 |
+
// DROPDOWN NO CONFLICT
|
882 |
+
// ====================
|
883 |
+
|
884 |
+
$.fn.dropdown.noConflict = function () {
|
885 |
+
$.fn.dropdown = old
|
886 |
+
return this
|
887 |
+
}
|
888 |
+
|
889 |
+
|
890 |
+
// APPLY TO STANDARD DROPDOWN ELEMENTS
|
891 |
+
// ===================================
|
892 |
+
|
893 |
+
$(document)
|
894 |
+
.on('click.bs.dropdown.data-api', clearMenus)
|
895 |
+
.on('click.bs.dropdown.data-api', '.dropdown form', function (e) { e.stopPropagation() })
|
896 |
+
.on('click.bs.dropdown.data-api', toggle, Dropdown.prototype.toggle)
|
897 |
+
.on('keydown.bs.dropdown.data-api', toggle, Dropdown.prototype.keydown)
|
898 |
+
.on('keydown.bs.dropdown.data-api', '[role="menu"]', Dropdown.prototype.keydown)
|
899 |
+
.on('keydown.bs.dropdown.data-api', '[role="listbox"]', Dropdown.prototype.keydown)
|
900 |
+
|
901 |
+
}(jQuery);
|
902 |
+
|
903 |
+
/* ========================================================================
|
904 |
+
* Bootstrap: modal.js v3.3.4
|
905 |
+
* http://getbootstrap.com/javascript/#modals
|
906 |
+
* ========================================================================
|
907 |
+
* Copyright 2011-2015 Twitter, Inc.
|
908 |
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
909 |
+
* ======================================================================== */
|
910 |
+
|
911 |
+
|
912 |
+
+function ($) {
|
913 |
+
'use strict';
|
914 |
+
|
915 |
+
// MODAL CLASS DEFINITION
|
916 |
+
// ======================
|
917 |
+
|
918 |
+
var Modal = function (element, options) {
|
919 |
+
this.options = options
|
920 |
+
this.$body = $(document.body)
|
921 |
+
this.$element = $(element)
|
922 |
+
this.$dialog = this.$element.find('.modal-dialog')
|
923 |
+
this.$backdrop = null
|
924 |
+
this.isShown = null
|
925 |
+
this.originalBodyPad = null
|
926 |
+
this.scrollbarWidth = 0
|
927 |
+
this.ignoreBackdropClick = false
|
928 |
+
|
929 |
+
if (this.options.remote) {
|
930 |
+
this.$element
|
931 |
+
.find('.modal-content')
|
932 |
+
.load(this.options.remote, $.proxy(function () {
|
933 |
+
this.$element.trigger('loaded.bs.modal')
|
934 |
+
}, this))
|
935 |
+
}
|
936 |
+
}
|
937 |
+
|
938 |
+
Modal.VERSION = '3.3.4'
|
939 |
+
|
940 |
+
Modal.TRANSITION_DURATION = 300
|
941 |
+
Modal.BACKDROP_TRANSITION_DURATION = 150
|
942 |
+
|
943 |
+
Modal.DEFAULTS = {
|
944 |
+
backdrop: true,
|
945 |
+
keyboard: true,
|
946 |
+
show: true
|
947 |
+
}
|
948 |
+
|
949 |
+
Modal.prototype.toggle = function (_relatedTarget) {
|
950 |
+
return this.isShown ? this.hide() : this.show(_relatedTarget)
|
951 |
+
}
|
952 |
+
|
953 |
+
Modal.prototype.show = function (_relatedTarget) {
|
954 |
+
var that = this
|
955 |
+
var e = $.Event('show.bs.modal', { relatedTarget: _relatedTarget })
|
956 |
+
|
957 |
+
this.$element.trigger(e)
|
958 |
+
|
959 |
+
if (this.isShown || e.isDefaultPrevented()) return
|
960 |
+
|
961 |
+
this.isShown = true
|
962 |
+
|
963 |
+
this.checkScrollbar()
|
964 |
+
this.setScrollbar()
|
965 |
+
this.$body.addClass('modal-open')
|
966 |
+
|
967 |
+
this.escape()
|
968 |
+
this.resize()
|
969 |
+
|
970 |
+
this.$element.on('click.dismiss.bs.modal', '[data-dismiss="modal"]', $.proxy(this.hide, this))
|
971 |
+
|
972 |
+
this.$dialog.on('mousedown.dismiss.bs.modal', function () {
|
973 |
+
that.$element.one('mouseup.dismiss.bs.modal', function (e) {
|
974 |
+
if ($(e.target).is(that.$element)) that.ignoreBackdropClick = true
|
975 |
+
})
|
976 |
+
})
|
977 |
+
|
978 |
+
this.backdrop(function () {
|
979 |
+
var transition = $.support.transition && that.$element.hasClass('fade')
|
980 |
+
|
981 |
+
if (!that.$element.parent().length) {
|
982 |
+
that.$element.appendTo(that.$body) // don't move modals dom position
|
983 |
+
}
|
984 |
+
|
985 |
+
that.$element
|
986 |
+
.show()
|
987 |
+
.scrollTop(0)
|
988 |
+
|
989 |
+
that.adjustDialog()
|
990 |
+
|
991 |
+
if (transition) {
|
992 |
+
that.$element[0].offsetWidth // force reflow
|
993 |
+
}
|
994 |
+
|
995 |
+
that.$element
|
996 |
+
.addClass('in')
|
997 |
+
.attr('aria-hidden', false)
|
998 |
+
|
999 |
+
that.enforceFocus()
|
1000 |
+
|
1001 |
+
var e = $.Event('shown.bs.modal', { relatedTarget: _relatedTarget })
|
1002 |
+
|
1003 |
+
transition ?
|
1004 |
+
that.$dialog // wait for modal to slide in
|
1005 |
+
.one('bsTransitionEnd', function () {
|
1006 |
+
that.$element.trigger('focus').trigger(e)
|
1007 |
+
})
|
1008 |
+
.emulateTransitionEnd(Modal.TRANSITION_DURATION) :
|
1009 |
+
that.$element.trigger('focus').trigger(e)
|
1010 |
+
})
|
1011 |
+
}
|
1012 |
+
|
1013 |
+
Modal.prototype.hide = function (e) {
|
1014 |
+
if (e) e.preventDefault()
|
1015 |
+
|
1016 |
+
e = $.Event('hide.bs.modal')
|
1017 |
+
|
1018 |
+
this.$element.trigger(e)
|
1019 |
+
|
1020 |
+
if (!this.isShown || e.isDefaultPrevented()) return
|
1021 |
+
|
1022 |
+
this.isShown = false
|
1023 |
+
|
1024 |
+
this.escape()
|
1025 |
+
this.resize()
|
1026 |
+
|
1027 |
+
$(document).off('focusin.bs.modal')
|
1028 |
+
|
1029 |
+
this.$element
|
1030 |
+
.removeClass('in')
|
1031 |
+
.attr('aria-hidden', true)
|
1032 |
+
.off('click.dismiss.bs.modal')
|
1033 |
+
.off('mouseup.dismiss.bs.modal')
|
1034 |
+
|
1035 |
+
this.$dialog.off('mousedown.dismiss.bs.modal')
|
1036 |
+
|
1037 |
+
$.support.transition && this.$element.hasClass('fade') ?
|
1038 |
+
this.$element
|
1039 |
+
.one('bsTransitionEnd', $.proxy(this.hideModal, this))
|
1040 |
+
.emulateTransitionEnd(Modal.TRANSITION_DURATION) :
|
1041 |
+
this.hideModal()
|
1042 |
+
}
|
1043 |
+
|
1044 |
+
Modal.prototype.enforceFocus = function () {
|
1045 |
+
$(document)
|
1046 |
+
.off('focusin.bs.modal') // guard against infinite focus loop
|
1047 |
+
.on('focusin.bs.modal', $.proxy(function (e) {
|
1048 |
+
if (this.$element[0] !== e.target && !this.$element.has(e.target).length) {
|
1049 |
+
this.$element.trigger('focus')
|
1050 |
+
}
|
1051 |
+
}, this))
|
1052 |
+
}
|
1053 |
+
|
1054 |
+
Modal.prototype.escape = function () {
|
1055 |
+
if (this.isShown && this.options.keyboard) {
|
1056 |
+
this.$element.on('keydown.dismiss.bs.modal', $.proxy(function (e) {
|
1057 |
+
e.which == 27 && this.hide()
|
1058 |
+
}, this))
|
1059 |
+
} else if (!this.isShown) {
|
1060 |
+
this.$element.off('keydown.dismiss.bs.modal')
|
1061 |
+
}
|
1062 |
+
}
|
1063 |
+
|
1064 |
+
Modal.prototype.resize = function () {
|
1065 |
+
if (this.isShown) {
|
1066 |
+
$(window).on('resize.bs.modal', $.proxy(this.handleUpdate, this))
|
1067 |
+
} else {
|
1068 |
+
$(window).off('resize.bs.modal')
|
1069 |
+
}
|
1070 |
+
}
|
1071 |
+
|
1072 |
+
Modal.prototype.hideModal = function () {
|
1073 |
+
var that = this
|
1074 |
+
this.$element.hide()
|
1075 |
+
this.backdrop(function () {
|
1076 |
+
that.$body.removeClass('modal-open')
|
1077 |
+
that.resetAdjustments()
|
1078 |
+
that.resetScrollbar()
|
1079 |
+
that.$element.trigger('hidden.bs.modal')
|
1080 |
+
})
|
1081 |
+
}
|
1082 |
+
|
1083 |
+
Modal.prototype.removeBackdrop = function () {
|
1084 |
+
this.$backdrop && this.$backdrop.remove()
|
1085 |
+
this.$backdrop = null
|
1086 |
+
}
|
1087 |
+
|
1088 |
+
Modal.prototype.backdrop = function (callback) {
|
1089 |
+
var that = this
|
1090 |
+
var animate = this.$element.hasClass('fade') ? 'fade' : ''
|
1091 |
+
|
1092 |
+
if (this.isShown && this.options.backdrop) {
|
1093 |
+
var doAnimate = $.support.transition && animate
|
1094 |
+
|
1095 |
+
this.$backdrop = $('<div class="modal-backdrop ' + animate + '" />')
|
1096 |
+
.appendTo(this.$body)
|
1097 |
+
|
1098 |
+
this.$element.on('click.dismiss.bs.modal', $.proxy(function (e) {
|
1099 |
+
if (this.ignoreBackdropClick) {
|
1100 |
+
this.ignoreBackdropClick = false
|
1101 |
+
return
|
1102 |
+
}
|
1103 |
+
if (e.target !== e.currentTarget) return
|
1104 |
+
this.options.backdrop == 'static'
|
1105 |
+
? this.$element[0].focus()
|
1106 |
+
: this.hide()
|
1107 |
+
}, this))
|
1108 |
+
|
1109 |
+
if (doAnimate) this.$backdrop[0].offsetWidth // force reflow
|
1110 |
+
|
1111 |
+
this.$backdrop.addClass('in')
|
1112 |
+
|
1113 |
+
if (!callback) return
|
1114 |
+
|
1115 |
+
doAnimate ?
|
1116 |
+
this.$backdrop
|
1117 |
+
.one('bsTransitionEnd', callback)
|
1118 |
+
.emulateTransitionEnd(Modal.BACKDROP_TRANSITION_DURATION) :
|
1119 |
+
callback()
|
1120 |
+
|
1121 |
+
} else if (!this.isShown && this.$backdrop) {
|
1122 |
+
this.$backdrop.removeClass('in')
|
1123 |
+
|
1124 |
+
var callbackRemove = function () {
|
1125 |
+
that.removeBackdrop()
|
1126 |
+
callback && callback()
|
1127 |
+
}
|
1128 |
+
$.support.transition && this.$element.hasClass('fade') ?
|
1129 |
+
this.$backdrop
|
1130 |
+
.one('bsTransitionEnd', callbackRemove)
|
1131 |
+
.emulateTransitionEnd(Modal.BACKDROP_TRANSITION_DURATION) :
|
1132 |
+
callbackRemove()
|
1133 |
+
|
1134 |
+
} else if (callback) {
|
1135 |
+
callback()
|
1136 |
+
}
|
1137 |
+
}
|
1138 |
+
|
1139 |
+
// these following methods are used to handle overflowing modals
|
1140 |
+
|
1141 |
+
Modal.prototype.handleUpdate = function () {
|
1142 |
+
this.adjustDialog()
|
1143 |
+
}
|
1144 |
+
|
1145 |
+
Modal.prototype.adjustDialog = function () {
|
1146 |
+
var modalIsOverflowing = this.$element[0].scrollHeight > document.documentElement.clientHeight
|
1147 |
+
|
1148 |
+
this.$element.css({
|
1149 |
+
paddingLeft: !this.bodyIsOverflowing && modalIsOverflowing ? this.scrollbarWidth : '',
|
1150 |
+
paddingRight: this.bodyIsOverflowing && !modalIsOverflowing ? this.scrollbarWidth : ''
|
1151 |
+
})
|
1152 |
+
}
|
1153 |
+
|
1154 |
+
Modal.prototype.resetAdjustments = function () {
|
1155 |
+
this.$element.css({
|
1156 |
+
paddingLeft: '',
|
1157 |
+
paddingRight: ''
|
1158 |
+
})
|
1159 |
+
}
|
1160 |
+
|
1161 |
+
Modal.prototype.checkScrollbar = function () {
|
1162 |
+
var fullWindowWidth = window.innerWidth
|
1163 |
+
if (!fullWindowWidth) { // workaround for missing window.innerWidth in IE8
|
1164 |
+
var documentElementRect = document.documentElement.getBoundingClientRect()
|
1165 |
+
fullWindowWidth = documentElementRect.right - Math.abs(documentElementRect.left)
|
1166 |
+
}
|
1167 |
+
this.bodyIsOverflowing = document.body.clientWidth < fullWindowWidth
|
1168 |
+
this.scrollbarWidth = this.measureScrollbar()
|
1169 |
+
}
|
1170 |
+
|
1171 |
+
Modal.prototype.setScrollbar = function () {
|
1172 |
+
var bodyPad = parseInt((this.$body.css('padding-right') || 0), 10)
|
1173 |
+
this.originalBodyPad = document.body.style.paddingRight || ''
|
1174 |
+
if (this.bodyIsOverflowing) this.$body.css('padding-right', bodyPad + this.scrollbarWidth)
|
1175 |
+
}
|
1176 |
+
|
1177 |
+
Modal.prototype.resetScrollbar = function () {
|
1178 |
+
this.$body.css('padding-right', this.originalBodyPad)
|
1179 |
+
}
|
1180 |
+
|
1181 |
+
Modal.prototype.measureScrollbar = function () { // thx walsh
|
1182 |
+
var scrollDiv = document.createElement('div')
|
1183 |
+
scrollDiv.className = 'modal-scrollbar-measure'
|
1184 |
+
this.$body.append(scrollDiv)
|
1185 |
+
var scrollbarWidth = scrollDiv.offsetWidth - scrollDiv.clientWidth
|
1186 |
+
this.$body[0].removeChild(scrollDiv)
|
1187 |
+
return scrollbarWidth
|
1188 |
+
}
|
1189 |
+
|
1190 |
+
|
1191 |
+
// MODAL PLUGIN DEFINITION
|
1192 |
+
// =======================
|
1193 |
+
|
1194 |
+
function Plugin(option, _relatedTarget) {
|
1195 |
+
return this.each(function () {
|
1196 |
+
var $this = $(this)
|
1197 |
+
var data = $this.data('bs.modal')
|
1198 |
+
var options = $.extend({}, Modal.DEFAULTS, $this.data(), typeof option == 'object' && option)
|
1199 |
+
|
1200 |
+
if (!data) $this.data('bs.modal', (data = new Modal(this, options)))
|
1201 |
+
if (typeof option == 'string') data[option](_relatedTarget)
|
1202 |
+
else if (options.show) data.show(_relatedTarget)
|
1203 |
+
})
|
1204 |
+
}
|
1205 |
+
|
1206 |
+
var old = $.fn.modal
|
1207 |
+
|
1208 |
+
$.fn.modal = Plugin
|
1209 |
+
$.fn.modal.Constructor = Modal
|
1210 |
+
|
1211 |
+
|
1212 |
+
// MODAL NO CONFLICT
|
1213 |
+
// =================
|
1214 |
+
|
1215 |
+
$.fn.modal.noConflict = function () {
|
1216 |
+
$.fn.modal = old
|
1217 |
+
return this
|
1218 |
+
}
|
1219 |
+
|
1220 |
+
|
1221 |
+
// MODAL DATA-API
|
1222 |
+
// ==============
|
1223 |
+
|
1224 |
+
$(document).on('click.bs.modal.data-api', '[data-toggle="modal"]', function (e) {
|
1225 |
+
var $this = $(this)
|
1226 |
+
var href = $this.attr('href')
|
1227 |
+
var $target = $($this.attr('data-target') || (href && href.replace(/.*(?=#[^\s]+$)/, ''))) // strip for ie7
|
1228 |
+
var option = $target.data('bs.modal') ? 'toggle' : $.extend({ remote: !/#/.test(href) && href }, $target.data(), $this.data())
|
1229 |
+
|
1230 |
+
if ($this.is('a')) e.preventDefault()
|
1231 |
+
|
1232 |
+
$target.one('show.bs.modal', function (showEvent) {
|
1233 |
+
if (showEvent.isDefaultPrevented()) return // only register focus restorer if modal will actually get shown
|
1234 |
+
$target.one('hidden.bs.modal', function () {
|
1235 |
+
$this.is(':visible') && $this.trigger('focus')
|
1236 |
+
})
|
1237 |
+
})
|
1238 |
+
Plugin.call($target, option, this)
|
1239 |
+
})
|
1240 |
+
|
1241 |
+
}(jQuery);
|
1242 |
+
|
1243 |
+
/* ========================================================================
|
1244 |
+
* Bootstrap: tooltip.js v3.3.4
|
1245 |
+
* http://getbootstrap.com/javascript/#tooltip
|
1246 |
+
* Inspired by the original jQuery.tipsy by Jason Frame
|
1247 |
+
* ========================================================================
|
1248 |
+
* Copyright 2011-2015 Twitter, Inc.
|
1249 |
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
1250 |
+
* ======================================================================== */
|
1251 |
+
|
1252 |
+
|
1253 |
+
+function ($) {
|
1254 |
+
'use strict';
|
1255 |
+
|
1256 |
+
// TOOLTIP PUBLIC CLASS DEFINITION
|
1257 |
+
// ===============================
|
1258 |
+
|
1259 |
+
var Tooltip = function (element, options) {
|
1260 |
+
this.type = null
|
1261 |
+
this.options = null
|
1262 |
+
this.enabled = null
|
1263 |
+
this.timeout = null
|
1264 |
+
this.hoverState = null
|
1265 |
+
this.$element = null
|
1266 |
+
|
1267 |
+
this.init('tooltip', element, options)
|
1268 |
+
}
|
1269 |
+
|
1270 |
+
Tooltip.VERSION = '3.3.4'
|
1271 |
+
|
1272 |
+
Tooltip.TRANSITION_DURATION = 150
|
1273 |
+
|
1274 |
+
Tooltip.DEFAULTS = {
|
1275 |
+
animation: true,
|
1276 |
+
placement: 'top',
|
1277 |
+
selector: false,
|
1278 |
+
template: '<div class="tooltip" role="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',
|
1279 |
+
trigger: 'hover focus',
|
1280 |
+
title: '',
|
1281 |
+
delay: 0,
|
1282 |
+
html: false,
|
1283 |
+
container: false,
|
1284 |
+
viewport: {
|
1285 |
+
selector: 'body',
|
1286 |
+
padding: 0
|
1287 |
+
}
|
1288 |
+
}
|
1289 |
+
|
1290 |
+
Tooltip.prototype.init = function (type, element, options) {
|
1291 |
+
this.enabled = true
|
1292 |
+
this.type = type
|
1293 |
+
this.$element = $(element)
|
1294 |
+
this.options = this.getOptions(options)
|
1295 |
+
this.$viewport = this.options.viewport && $(this.options.viewport.selector || this.options.viewport)
|
1296 |
+
|
1297 |
+
if (this.$element[0] instanceof document.constructor && !this.options.selector) {
|
1298 |
+
throw new Error('`selector` option must be specified when initializing ' + this.type + ' on the window.document object!')
|
1299 |
+
}
|
1300 |
+
|
1301 |
+
var triggers = this.options.trigger.split(' ')
|
1302 |
+
|
1303 |
+
for (var i = triggers.length; i--;) {
|
1304 |
+
var trigger = triggers[i]
|
1305 |
+
|
1306 |
+
if (trigger == 'click') {
|
1307 |
+
this.$element.on('click.' + this.type, this.options.selector, $.proxy(this.toggle, this))
|
1308 |
+
} else if (trigger != 'manual') {
|
1309 |
+
var eventIn = trigger == 'hover' ? 'mouseenter' : 'focusin'
|
1310 |
+
var eventOut = trigger == 'hover' ? 'mouseleave' : 'focusout'
|
1311 |
+
|
1312 |
+
this.$element.on(eventIn + '.' + this.type, this.options.selector, $.proxy(this.enter, this))
|
1313 |
+
this.$element.on(eventOut + '.' + this.type, this.options.selector, $.proxy(this.leave, this))
|
1314 |
+
}
|
1315 |
+
}
|
1316 |
+
|
1317 |
+
this.options.selector ?
|
1318 |
+
(this._options = $.extend({}, this.options, { trigger: 'manual', selector: '' })) :
|
1319 |
+
this.fixTitle()
|
1320 |
+
}
|
1321 |
+
|
1322 |
+
Tooltip.prototype.getDefaults = function () {
|
1323 |
+
return Tooltip.DEFAULTS
|
1324 |
+
}
|
1325 |
+
|
1326 |
+
Tooltip.prototype.getOptions = function (options) {
|
1327 |
+
options = $.extend({}, this.getDefaults(), this.$element.data(), options)
|
1328 |
+
|
1329 |
+
if (options.delay && typeof options.delay == 'number') {
|
1330 |
+
options.delay = {
|
1331 |
+
show: options.delay,
|
1332 |
+
hide: options.delay
|
1333 |
+
}
|
1334 |
+
}
|
1335 |
+
|
1336 |
+
return options
|
1337 |
+
}
|
1338 |
+
|
1339 |
+
Tooltip.prototype.getDelegateOptions = function () {
|
1340 |
+
var options = {}
|
1341 |
+
var defaults = this.getDefaults()
|
1342 |
+
|
1343 |
+
this._options && $.each(this._options, function (key, value) {
|
1344 |
+
if (defaults[key] != value) options[key] = value
|
1345 |
+
})
|
1346 |
+
|
1347 |
+
return options
|
1348 |
+
}
|
1349 |
+
|
1350 |
+
Tooltip.prototype.enter = function (obj) {
|
1351 |
+
var self = obj instanceof this.constructor ?
|
1352 |
+
obj : $(obj.currentTarget).data('bs.' + this.type)
|
1353 |
+
|
1354 |
+
if (self && self.$tip && self.$tip.is(':visible')) {
|
1355 |
+
self.hoverState = 'in'
|
1356 |
+
return
|
1357 |
+
}
|
1358 |
+
|
1359 |
+
if (!self) {
|
1360 |
+
self = new this.constructor(obj.currentTarget, this.getDelegateOptions())
|
1361 |
+
$(obj.currentTarget).data('bs.' + this.type, self)
|
1362 |
+
}
|
1363 |
+
|
1364 |
+
clearTimeout(self.timeout)
|
1365 |
+
|
1366 |
+
self.hoverState = 'in'
|
1367 |
+
|
1368 |
+
if (!self.options.delay || !self.options.delay.show) return self.show()
|
1369 |
+
|
1370 |
+
self.timeout = setTimeout(function () {
|
1371 |
+
if (self.hoverState == 'in') self.show()
|
1372 |
+
}, self.options.delay.show)
|
1373 |
+
}
|
1374 |
+
|
1375 |
+
Tooltip.prototype.leave = function (obj) {
|
1376 |
+
var self = obj instanceof this.constructor ?
|
1377 |
+
obj : $(obj.currentTarget).data('bs.' + this.type)
|
1378 |
+
|
1379 |
+
if (!self) {
|
1380 |
+
self = new this.constructor(obj.currentTarget, this.getDelegateOptions())
|
1381 |
+
$(obj.currentTarget).data('bs.' + this.type, self)
|
1382 |
+
}
|
1383 |
+
|
1384 |
+
clearTimeout(self.timeout)
|
1385 |
+
|
1386 |
+
self.hoverState = 'out'
|
1387 |
+
|
1388 |
+
if (!self.options.delay || !self.options.delay.hide) return self.hide()
|
1389 |
+
|
1390 |
+
self.timeout = setTimeout(function () {
|
1391 |
+
if (self.hoverState == 'out') self.hide()
|
1392 |
+
}, self.options.delay.hide)
|
1393 |
+
}
|
1394 |
+
|
1395 |
+
Tooltip.prototype.show = function () {
|
1396 |
+
var e = $.Event('show.bs.' + this.type)
|
1397 |
+
|
1398 |
+
if (this.hasContent() && this.enabled) {
|
1399 |
+
this.$element.trigger(e)
|
1400 |
+
|
1401 |
+
var inDom = $.contains(this.$element[0].ownerDocument.documentElement, this.$element[0])
|
1402 |
+
if (e.isDefaultPrevented() || !inDom) return
|
1403 |
+
var that = this
|
1404 |
+
|
1405 |
+
var $tip = this.tip()
|
1406 |
+
|
1407 |
+
var tipId = this.getUID(this.type)
|
1408 |
+
|
1409 |
+
this.setContent()
|
1410 |
+
$tip.attr('id', tipId)
|
1411 |
+
this.$element.attr('aria-describedby', tipId)
|
1412 |
+
|
1413 |
+
if (this.options.animation) $tip.addClass('fade')
|
1414 |
+
|
1415 |
+
var placement = typeof this.options.placement == 'function' ?
|
1416 |
+
this.options.placement.call(this, $tip[0], this.$element[0]) :
|
1417 |
+
this.options.placement
|
1418 |
+
|
1419 |
+
var autoToken = /\s?auto?\s?/i
|
1420 |
+
var autoPlace = autoToken.test(placement)
|
1421 |
+
if (autoPlace) placement = placement.replace(autoToken, '') || 'top'
|
1422 |
+
|
1423 |
+
$tip
|
1424 |
+
.detach()
|
1425 |
+
.css({ top: 0, left: 0, display: 'block' })
|
1426 |
+
.addClass(placement)
|
1427 |
+
.data('bs.' + this.type, this)
|
1428 |
+
|
1429 |
+
this.options.container ? $tip.appendTo(this.options.container) : $tip.insertAfter(this.$element)
|
1430 |
+
|
1431 |
+
var pos = this.getPosition()
|
1432 |
+
var actualWidth = $tip[0].offsetWidth
|
1433 |
+
var actualHeight = $tip[0].offsetHeight
|
1434 |
+
|
1435 |
+
if (autoPlace) {
|
1436 |
+
var orgPlacement = placement
|
1437 |
+
var $container = this.options.container ? $(this.options.container) : this.$element.parent()
|
1438 |
+
var containerDim = this.getPosition($container)
|
1439 |
+
|
1440 |
+
placement = placement == 'bottom' && pos.bottom + actualHeight > containerDim.bottom ? 'top' :
|
1441 |
+
placement == 'top' && pos.top - actualHeight < containerDim.top ? 'bottom' :
|
1442 |
+
placement == 'right' && pos.right + actualWidth > containerDim.width ? 'left' :
|
1443 |
+
placement == 'left' && pos.left - actualWidth < containerDim.left ? 'right' :
|
1444 |
+
placement
|
1445 |
+
|
1446 |
+
$tip
|
1447 |
+
.removeClass(orgPlacement)
|
1448 |
+
.addClass(placement)
|
1449 |
+
}
|
1450 |
+
|
1451 |
+
var calculatedOffset = this.getCalculatedOffset(placement, pos, actualWidth, actualHeight)
|
1452 |
+
|
1453 |
+
this.applyPlacement(calculatedOffset, placement)
|
1454 |
+
|
1455 |
+
var complete = function () {
|
1456 |
+
var prevHoverState = that.hoverState
|
1457 |
+
that.$element.trigger('shown.bs.' + that.type)
|
1458 |
+
that.hoverState = null
|
1459 |
+
|
1460 |
+
if (prevHoverState == 'out') that.leave(that)
|
1461 |
+
}
|
1462 |
+
|
1463 |
+
$.support.transition && this.$tip.hasClass('fade') ?
|
1464 |
+
$tip
|
1465 |
+
.one('bsTransitionEnd', complete)
|
1466 |
+
.emulateTransitionEnd(Tooltip.TRANSITION_DURATION) :
|
1467 |
+
complete()
|
1468 |
+
}
|
1469 |
+
}
|
1470 |
+
|
1471 |
+
Tooltip.prototype.applyPlacement = function (offset, placement) {
|
1472 |
+
var $tip = this.tip()
|
1473 |
+
var width = $tip[0].offsetWidth
|
1474 |
+
var height = $tip[0].offsetHeight
|
1475 |
+
|
1476 |
+
// manually read margins because getBoundingClientRect includes difference
|
1477 |
+
var marginTop = parseInt($tip.css('margin-top'), 10)
|
1478 |
+
var marginLeft = parseInt($tip.css('margin-left'), 10)
|
1479 |
+
|
1480 |
+
// we must check for NaN for ie 8/9
|
1481 |
+
if (isNaN(marginTop)) marginTop = 0
|
1482 |
+
if (isNaN(marginLeft)) marginLeft = 0
|
1483 |
+
|
1484 |
+
offset.top = offset.top + marginTop
|
1485 |
+
offset.left = offset.left + marginLeft
|
1486 |
+
|
1487 |
+
// $.fn.offset doesn't round pixel values
|
1488 |
+
// so we use setOffset directly with our own function B-0
|
1489 |
+
$.offset.setOffset($tip[0], $.extend({
|
1490 |
+
using: function (props) {
|
1491 |
+
$tip.css({
|
1492 |
+
top: Math.round(props.top),
|
1493 |
+
left: Math.round(props.left)
|
1494 |
+
})
|
1495 |
+
}
|
1496 |
+
}, offset), 0)
|
1497 |
+
|
1498 |
+
$tip.addClass('in')
|
1499 |
+
|
1500 |
+
// check to see if placing tip in new offset caused the tip to resize itself
|
1501 |
+
var actualWidth = $tip[0].offsetWidth
|
1502 |
+
var actualHeight = $tip[0].offsetHeight
|
1503 |
+
|
1504 |
+
if (placement == 'top' && actualHeight != height) {
|
1505 |
+
offset.top = offset.top + height - actualHeight
|
1506 |
+
}
|
1507 |
+
|
1508 |
+
var delta = this.getViewportAdjustedDelta(placement, offset, actualWidth, actualHeight)
|
1509 |
+
|
1510 |
+
if (delta.left) offset.left += delta.left
|
1511 |
+
else offset.top += delta.top
|
1512 |
+
|
1513 |
+
var isVertical = /top|bottom/.test(placement)
|
1514 |
+
var arrowDelta = isVertical ? delta.left * 2 - width + actualWidth : delta.top * 2 - height + actualHeight
|
1515 |
+
var arrowOffsetPosition = isVertical ? 'offsetWidth' : 'offsetHeight'
|
1516 |
+
|
1517 |
+
$tip.offset(offset)
|
1518 |
+
this.replaceArrow(arrowDelta, $tip[0][arrowOffsetPosition], isVertical)
|
1519 |
+
}
|
1520 |
+
|
1521 |
+
Tooltip.prototype.replaceArrow = function (delta, dimension, isVertical) {
|
1522 |
+
this.arrow()
|
1523 |
+
.css(isVertical ? 'left' : 'top', 50 * (1 - delta / dimension) + '%')
|
1524 |
+
.css(isVertical ? 'top' : 'left', '')
|
1525 |
+
}
|
1526 |
+
|
1527 |
+
Tooltip.prototype.setContent = function () {
|
1528 |
+
var $tip = this.tip()
|
1529 |
+
var title = this.getTitle()
|
1530 |
+
|
1531 |
+
$tip.find('.tooltip-inner')[this.options.html ? 'html' : 'text'](title)
|
1532 |
+
$tip.removeClass('fade in top bottom left right')
|
1533 |
+
}
|
1534 |
+
|
1535 |
+
Tooltip.prototype.hide = function (callback) {
|
1536 |
+
var that = this
|
1537 |
+
var $tip = $(this.$tip)
|
1538 |
+
var e = $.Event('hide.bs.' + this.type)
|
1539 |
+
|
1540 |
+
function complete() {
|
1541 |
+
if (that.hoverState != 'in') $tip.detach()
|
1542 |
+
that.$element
|
1543 |
+
.removeAttr('aria-describedby')
|
1544 |
+
.trigger('hidden.bs.' + that.type)
|
1545 |
+
callback && callback()
|
1546 |
+
}
|
1547 |
+
|
1548 |
+
this.$element.trigger(e)
|
1549 |
+
|
1550 |
+
if (e.isDefaultPrevented()) return
|
1551 |
+
|
1552 |
+
$tip.removeClass('in')
|
1553 |
+
|
1554 |
+
$.support.transition && $tip.hasClass('fade') ?
|
1555 |
+
$tip
|
1556 |
+
.one('bsTransitionEnd', complete)
|
1557 |
+
.emulateTransitionEnd(Tooltip.TRANSITION_DURATION) :
|
1558 |
+
complete()
|
1559 |
+
|
1560 |
+
this.hoverState = null
|
1561 |
+
|
1562 |
+
return this
|
1563 |
+
}
|
1564 |
+
|
1565 |
+
Tooltip.prototype.fixTitle = function () {
|
1566 |
+
var $e = this.$element
|
1567 |
+
if ($e.attr('title') || typeof ($e.attr('data-original-title')) != 'string') {
|
1568 |
+
$e.attr('data-original-title', $e.attr('title') || '').attr('title', '')
|
1569 |
+
}
|
1570 |
+
}
|
1571 |
+
|
1572 |
+
Tooltip.prototype.hasContent = function () {
|
1573 |
+
return this.getTitle()
|
1574 |
+
}
|
1575 |
+
|
1576 |
+
Tooltip.prototype.getPosition = function ($element) {
|
1577 |
+
$element = $element || this.$element
|
1578 |
+
|
1579 |
+
var el = $element[0]
|
1580 |
+
var isBody = el.tagName == 'BODY'
|
1581 |
+
|
1582 |
+
var elRect = el.getBoundingClientRect()
|
1583 |
+
if (elRect.width == null) {
|
1584 |
+
// width and height are missing in IE8, so compute them manually; see https://github.com/twbs/bootstrap/issues/14093
|
1585 |
+
elRect = $.extend({}, elRect, { width: elRect.right - elRect.left, height: elRect.bottom - elRect.top })
|
1586 |
+
}
|
1587 |
+
var elOffset = isBody ? { top: 0, left: 0 } : $element.offset()
|
1588 |
+
var scroll = { scroll: isBody ? document.documentElement.scrollTop || document.body.scrollTop : $element.scrollTop() }
|
1589 |
+
var outerDims = isBody ? { width: $(window).width(), height: $(window).height() } : null
|
1590 |
+
|
1591 |
+
return $.extend({}, elRect, scroll, outerDims, elOffset)
|
1592 |
+
}
|
1593 |
+
|
1594 |
+
Tooltip.prototype.getCalculatedOffset = function (placement, pos, actualWidth, actualHeight) {
|
1595 |
+
return placement == 'bottom' ? { top: pos.top + pos.height, left: pos.left + pos.width / 2 - actualWidth / 2 } :
|
1596 |
+
placement == 'top' ? { top: pos.top - actualHeight, left: pos.left + pos.width / 2 - actualWidth / 2 } :
|
1597 |
+
placement == 'left' ? { top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left - actualWidth } :
|
1598 |
+
/* placement == 'right' */ { top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left + pos.width }
|
1599 |
+
|
1600 |
+
}
|
1601 |
+
|
1602 |
+
Tooltip.prototype.getViewportAdjustedDelta = function (placement, pos, actualWidth, actualHeight) {
|
1603 |
+
var delta = { top: 0, left: 0 }
|
1604 |
+
if (!this.$viewport) return delta
|
1605 |
+
|
1606 |
+
var viewportPadding = this.options.viewport && this.options.viewport.padding || 0
|
1607 |
+
var viewportDimensions = this.getPosition(this.$viewport)
|
1608 |
+
|
1609 |
+
if (/right|left/.test(placement)) {
|
1610 |
+
var topEdgeOffset = pos.top - viewportPadding - viewportDimensions.scroll
|
1611 |
+
var bottomEdgeOffset = pos.top + viewportPadding - viewportDimensions.scroll + actualHeight
|
1612 |
+
if (topEdgeOffset < viewportDimensions.top) { // top overflow
|
1613 |
+
delta.top = viewportDimensions.top - topEdgeOffset
|
1614 |
+
} else if (bottomEdgeOffset > viewportDimensions.top + viewportDimensions.height) { // bottom overflow
|
1615 |
+
delta.top = viewportDimensions.top + viewportDimensions.height - bottomEdgeOffset
|
1616 |
+
}
|
1617 |
+
} else {
|
1618 |
+
var leftEdgeOffset = pos.left - viewportPadding
|
1619 |
+
var rightEdgeOffset = pos.left + viewportPadding + actualWidth
|
1620 |
+
if (leftEdgeOffset < viewportDimensions.left) { // left overflow
|
1621 |
+
delta.left = viewportDimensions.left - leftEdgeOffset
|
1622 |
+
} else if (rightEdgeOffset > viewportDimensions.width) { // right overflow
|
1623 |
+
delta.left = viewportDimensions.left + viewportDimensions.width - rightEdgeOffset
|
1624 |
+
}
|
1625 |
+
}
|
1626 |
+
|
1627 |
+
return delta
|
1628 |
+
}
|
1629 |
+
|
1630 |
+
Tooltip.prototype.getTitle = function () {
|
1631 |
+
var title
|
1632 |
+
var $e = this.$element
|
1633 |
+
var o = this.options
|
1634 |
+
|
1635 |
+
title = $e.attr('data-original-title')
|
1636 |
+
|| (typeof o.title == 'function' ? o.title.call($e[0]) : o.title)
|
1637 |
+
|
1638 |
+
return title
|
1639 |
+
}
|
1640 |
+
|
1641 |
+
Tooltip.prototype.getUID = function (prefix) {
|
1642 |
+
do prefix += ~~(Math.random() * 1000000)
|
1643 |
+
while (document.getElementById(prefix))
|
1644 |
+
return prefix
|
1645 |
+
}
|
1646 |
+
|
1647 |
+
Tooltip.prototype.tip = function () {
|
1648 |
+
return (this.$tip = this.$tip || $(this.options.template))
|
1649 |
+
}
|
1650 |
+
|
1651 |
+
Tooltip.prototype.arrow = function () {
|
1652 |
+
return (this.$arrow = this.$arrow || this.tip().find('.tooltip-arrow'))
|
1653 |
+
}
|
1654 |
+
|
1655 |
+
Tooltip.prototype.enable = function () {
|
1656 |
+
this.enabled = true
|
1657 |
+
}
|
1658 |
+
|
1659 |
+
Tooltip.prototype.disable = function () {
|
1660 |
+
this.enabled = false
|
1661 |
+
}
|
1662 |
+
|
1663 |
+
Tooltip.prototype.toggleEnabled = function () {
|
1664 |
+
this.enabled = !this.enabled
|
1665 |
+
}
|
1666 |
+
|
1667 |
+
Tooltip.prototype.toggle = function (e) {
|
1668 |
+
var self = this
|
1669 |
+
if (e) {
|
1670 |
+
self = $(e.currentTarget).data('bs.' + this.type)
|
1671 |
+
if (!self) {
|
1672 |
+
self = new this.constructor(e.currentTarget, this.getDelegateOptions())
|
1673 |
+
$(e.currentTarget).data('bs.' + this.type, self)
|
1674 |
+
}
|
1675 |
+
}
|
1676 |
+
|
1677 |
+
self.tip().hasClass('in') ? self.leave(self) : self.enter(self)
|
1678 |
+
}
|
1679 |
+
|
1680 |
+
Tooltip.prototype.destroy = function () {
|
1681 |
+
var that = this
|
1682 |
+
clearTimeout(this.timeout)
|
1683 |
+
this.hide(function () {
|
1684 |
+
that.$element.off('.' + that.type).removeData('bs.' + that.type)
|
1685 |
+
})
|
1686 |
+
}
|
1687 |
+
|
1688 |
+
|
1689 |
+
// TOOLTIP PLUGIN DEFINITION
|
1690 |
+
// =========================
|
1691 |
+
|
1692 |
+
function Plugin(option) {
|
1693 |
+
return this.each(function () {
|
1694 |
+
var $this = $(this)
|
1695 |
+
var data = $this.data('bs.tooltip')
|
1696 |
+
var options = typeof option == 'object' && option
|
1697 |
+
|
1698 |
+
if (!data && /destroy|hide/.test(option)) return
|
1699 |
+
if (!data) $this.data('bs.tooltip', (data = new Tooltip(this, options)))
|
1700 |
+
if (typeof option == 'string') data[option]()
|
1701 |
+
})
|
1702 |
+
}
|
1703 |
+
|
1704 |
+
var old = $.fn.tooltip
|
1705 |
+
|
1706 |
+
$.fn.tooltip = Plugin
|
1707 |
+
$.fn.tooltip.Constructor = Tooltip
|
1708 |
+
|
1709 |
+
|
1710 |
+
// TOOLTIP NO CONFLICT
|
1711 |
+
// ===================
|
1712 |
+
|
1713 |
+
$.fn.tooltip.noConflict = function () {
|
1714 |
+
$.fn.tooltip = old
|
1715 |
+
return this
|
1716 |
+
}
|
1717 |
+
|
1718 |
+
}(jQuery);
|
1719 |
+
|
1720 |
+
/* ========================================================================
|
1721 |
+
* Bootstrap: popover.js v3.3.4
|
1722 |
+
* http://getbootstrap.com/javascript/#popovers
|
1723 |
+
* ========================================================================
|
1724 |
+
* Copyright 2011-2015 Twitter, Inc.
|
1725 |
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
1726 |
+
* ======================================================================== */
|
1727 |
+
|
1728 |
+
|
1729 |
+
+function ($) {
|
1730 |
+
'use strict';
|
1731 |
+
|
1732 |
+
// POPOVER PUBLIC CLASS DEFINITION
|
1733 |
+
// ===============================
|
1734 |
+
|
1735 |
+
var Popover = function (element, options) {
|
1736 |
+
this.init('popover', element, options)
|
1737 |
+
}
|
1738 |
+
|
1739 |
+
if (!$.fn.tooltip) throw new Error('Popover requires tooltip.js')
|
1740 |
+
|
1741 |
+
Popover.VERSION = '3.3.4'
|
1742 |
+
|
1743 |
+
Popover.DEFAULTS = $.extend({}, $.fn.tooltip.Constructor.DEFAULTS, {
|
1744 |
+
placement: 'right',
|
1745 |
+
trigger: 'click',
|
1746 |
+
content: '',
|
1747 |
+
template: '<div class="popover" role="tooltip"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'
|
1748 |
+
})
|
1749 |
+
|
1750 |
+
|
1751 |
+
// NOTE: POPOVER EXTENDS tooltip.js
|
1752 |
+
// ================================
|
1753 |
+
|
1754 |
+
Popover.prototype = $.extend({}, $.fn.tooltip.Constructor.prototype)
|
1755 |
+
|
1756 |
+
Popover.prototype.constructor = Popover
|
1757 |
+
|
1758 |
+
Popover.prototype.getDefaults = function () {
|
1759 |
+
return Popover.DEFAULTS
|
1760 |
+
}
|
1761 |
+
|
1762 |
+
Popover.prototype.setContent = function () {
|
1763 |
+
var $tip = this.tip()
|
1764 |
+
var title = this.getTitle()
|
1765 |
+
var content = this.getContent()
|
1766 |
+
|
1767 |
+
$tip.find('.popover-title')[this.options.html ? 'html' : 'text'](title)
|
1768 |
+
$tip.find('.popover-content').children().detach().end()[ // we use append for html objects to maintain js events
|
1769 |
+
this.options.html ? (typeof content == 'string' ? 'html' : 'append') : 'text'
|
1770 |
+
](content)
|
1771 |
+
|
1772 |
+
$tip.removeClass('fade top bottom left right in')
|
1773 |
+
|
1774 |
+
// IE8 doesn't accept hiding via the `:empty` pseudo selector, we have to do
|
1775 |
+
// this manually by checking the contents.
|
1776 |
+
if (!$tip.find('.popover-title').html()) $tip.find('.popover-title').hide()
|
1777 |
+
}
|
1778 |
+
|
1779 |
+
Popover.prototype.hasContent = function () {
|
1780 |
+
return this.getTitle() || this.getContent()
|
1781 |
+
}
|
1782 |
+
|
1783 |
+
Popover.prototype.getContent = function () {
|
1784 |
+
var $e = this.$element
|
1785 |
+
var o = this.options
|
1786 |
+
|
1787 |
+
return $e.attr('data-content')
|
1788 |
+
|| (typeof o.content == 'function' ?
|
1789 |
+
o.content.call($e[0]) :
|
1790 |
+
o.content)
|
1791 |
+
}
|
1792 |
+
|
1793 |
+
Popover.prototype.arrow = function () {
|
1794 |
+
return (this.$arrow = this.$arrow || this.tip().find('.arrow'))
|
1795 |
+
}
|
1796 |
+
|
1797 |
+
|
1798 |
+
// POPOVER PLUGIN DEFINITION
|
1799 |
+
// =========================
|
1800 |
+
|
1801 |
+
function Plugin(option) {
|
1802 |
+
return this.each(function () {
|
1803 |
+
var $this = $(this)
|
1804 |
+
var data = $this.data('bs.popover')
|
1805 |
+
var options = typeof option == 'object' && option
|
1806 |
+
|
1807 |
+
if (!data && /destroy|hide/.test(option)) return
|
1808 |
+
if (!data) $this.data('bs.popover', (data = new Popover(this, options)))
|
1809 |
+
if (typeof option == 'string') data[option]()
|
1810 |
+
})
|
1811 |
+
}
|
1812 |
+
|
1813 |
+
var old = $.fn.popover
|
1814 |
+
|
1815 |
+
$.fn.popover = Plugin
|
1816 |
+
$.fn.popover.Constructor = Popover
|
1817 |
+
|
1818 |
+
|
1819 |
+
// POPOVER NO CONFLICT
|
1820 |
+
// ===================
|
1821 |
+
|
1822 |
+
$.fn.popover.noConflict = function () {
|
1823 |
+
$.fn.popover = old
|
1824 |
+
return this
|
1825 |
+
}
|
1826 |
+
|
1827 |
+
}(jQuery);
|
1828 |
+
|
1829 |
+
/* ========================================================================
|
1830 |
+
* Bootstrap: scrollspy.js v3.3.4
|
1831 |
+
* http://getbootstrap.com/javascript/#scrollspy
|
1832 |
+
* ========================================================================
|
1833 |
+
* Copyright 2011-2015 Twitter, Inc.
|
1834 |
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
1835 |
+
* ======================================================================== */
|
1836 |
+
|
1837 |
+
|
1838 |
+
+function ($) {
|
1839 |
+
'use strict';
|
1840 |
+
|
1841 |
+
// SCROLLSPY CLASS DEFINITION
|
1842 |
+
// ==========================
|
1843 |
+
|
1844 |
+
function ScrollSpy(element, options) {
|
1845 |
+
this.$body = $(document.body)
|
1846 |
+
this.$scrollElement = $(element).is(document.body) ? $(window) : $(element)
|
1847 |
+
this.options = $.extend({}, ScrollSpy.DEFAULTS, options)
|
1848 |
+
this.selector = (this.options.target || '') + ' .nav li > a'
|
1849 |
+
this.offsets = []
|
1850 |
+
this.targets = []
|
1851 |
+
this.activeTarget = null
|
1852 |
+
this.scrollHeight = 0
|
1853 |
+
|
1854 |
+
this.$scrollElement.on('scroll.bs.scrollspy', $.proxy(this.process, this))
|
1855 |
+
this.refresh()
|
1856 |
+
this.process()
|
1857 |
+
}
|
1858 |
+
|
1859 |
+
ScrollSpy.VERSION = '3.3.4'
|
1860 |
+
|
1861 |
+
ScrollSpy.DEFAULTS = {
|
1862 |
+
offset: 10
|
1863 |
+
}
|
1864 |
+
|
1865 |
+
ScrollSpy.prototype.getScrollHeight = function () {
|
1866 |
+
return this.$scrollElement[0].scrollHeight || Math.max(this.$body[0].scrollHeight, document.documentElement.scrollHeight)
|
1867 |
+
}
|
1868 |
+
|
1869 |
+
ScrollSpy.prototype.refresh = function () {
|
1870 |
+
var that = this
|
1871 |
+
var offsetMethod = 'offset'
|
1872 |
+
var offsetBase = 0
|
1873 |
+
|
1874 |
+
this.offsets = []
|
1875 |
+
this.targets = []
|
1876 |
+
this.scrollHeight = this.getScrollHeight()
|
1877 |
+
|
1878 |
+
if (!$.isWindow(this.$scrollElement[0])) {
|
1879 |
+
offsetMethod = 'position'
|
1880 |
+
offsetBase = this.$scrollElement.scrollTop()
|
1881 |
+
}
|
1882 |
+
|
1883 |
+
this.$body
|
1884 |
+
.find(this.selector)
|
1885 |
+
.map(function () {
|
1886 |
+
var $el = $(this)
|
1887 |
+
var href = $el.data('target') || $el.attr('href')
|
1888 |
+
var $href = /^#./.test(href) && $(href)
|
1889 |
+
|
1890 |
+
return ($href
|
1891 |
+
&& $href.length
|
1892 |
+
&& $href.is(':visible')
|
1893 |
+
&& [[$href[offsetMethod]().top + offsetBase, href]]) || null
|
1894 |
+
})
|
1895 |
+
.sort(function (a, b) { return a[0] - b[0] })
|
1896 |
+
.each(function () {
|
1897 |
+
that.offsets.push(this[0])
|
1898 |
+
that.targets.push(this[1])
|
1899 |
+
})
|
1900 |
+
}
|
1901 |
+
|
1902 |
+
ScrollSpy.prototype.process = function () {
|
1903 |
+
var scrollTop = this.$scrollElement.scrollTop() + this.options.offset
|
1904 |
+
var scrollHeight = this.getScrollHeight()
|
1905 |
+
var maxScroll = this.options.offset + scrollHeight - this.$scrollElement.height()
|
1906 |
+
var offsets = this.offsets
|
1907 |
+
var targets = this.targets
|
1908 |
+
var activeTarget = this.activeTarget
|
1909 |
+
var i
|
1910 |
+
|
1911 |
+
if (this.scrollHeight != scrollHeight) {
|
1912 |
+
this.refresh()
|
1913 |
+
}
|
1914 |
+
|
1915 |
+
if (scrollTop >= maxScroll) {
|
1916 |
+
return activeTarget != (i = targets[targets.length - 1]) && this.activate(i)
|
1917 |
+
}
|
1918 |
+
|
1919 |
+
if (activeTarget && scrollTop < offsets[0]) {
|
1920 |
+
this.activeTarget = null
|
1921 |
+
return this.clear()
|
1922 |
+
}
|
1923 |
+
|
1924 |
+
for (i = offsets.length; i--;) {
|
1925 |
+
activeTarget != targets[i]
|
1926 |
+
&& scrollTop >= offsets[i]
|
1927 |
+
&& (offsets[i + 1] === undefined || scrollTop < offsets[i + 1])
|
1928 |
+
&& this.activate(targets[i])
|
1929 |
+
}
|
1930 |
+
}
|
1931 |
+
|
1932 |
+
ScrollSpy.prototype.activate = function (target) {
|
1933 |
+
this.activeTarget = target
|
1934 |
+
|
1935 |
+
this.clear()
|
1936 |
+
|
1937 |
+
var selector = this.selector +
|
1938 |
+
'[data-target="' + target + '"],' +
|
1939 |
+
this.selector + '[href="' + target + '"]'
|
1940 |
+
|
1941 |
+
var active = $(selector)
|
1942 |
+
.parents('li')
|
1943 |
+
.addClass('active')
|
1944 |
+
|
1945 |
+
if (active.parent('.dropdown-menu').length) {
|
1946 |
+
active = active
|
1947 |
+
.closest('li.dropdown')
|
1948 |
+
.addClass('active')
|
1949 |
+
}
|
1950 |
+
|
1951 |
+
active.trigger('activate.bs.scrollspy')
|
1952 |
+
}
|
1953 |
+
|
1954 |
+
ScrollSpy.prototype.clear = function () {
|
1955 |
+
$(this.selector)
|
1956 |
+
.parentsUntil(this.options.target, '.active')
|
1957 |
+
.removeClass('active')
|
1958 |
+
}
|
1959 |
+
|
1960 |
+
|
1961 |
+
// SCROLLSPY PLUGIN DEFINITION
|
1962 |
+
// ===========================
|
1963 |
+
|
1964 |
+
function Plugin(option) {
|
1965 |
+
return this.each(function () {
|
1966 |
+
var $this = $(this)
|
1967 |
+
var data = $this.data('bs.scrollspy')
|
1968 |
+
var options = typeof option == 'object' && option
|
1969 |
+
|
1970 |
+
if (!data) $this.data('bs.scrollspy', (data = new ScrollSpy(this, options)))
|
1971 |
+
if (typeof option == 'string') data[option]()
|
1972 |
+
})
|
1973 |
+
}
|
1974 |
+
|
1975 |
+
var old = $.fn.scrollspy
|
1976 |
+
|
1977 |
+
$.fn.scrollspy = Plugin
|
1978 |
+
$.fn.scrollspy.Constructor = ScrollSpy
|
1979 |
+
|
1980 |
+
|
1981 |
+
// SCROLLSPY NO CONFLICT
|
1982 |
+
// =====================
|
1983 |
+
|
1984 |
+
$.fn.scrollspy.noConflict = function () {
|
1985 |
+
$.fn.scrollspy = old
|
1986 |
+
return this
|
1987 |
+
}
|
1988 |
+
|
1989 |
+
|
1990 |
+
// SCROLLSPY DATA-API
|
1991 |
+
// ==================
|
1992 |
+
|
1993 |
+
$(window).on('load.bs.scrollspy.data-api', function () {
|
1994 |
+
$('[data-spy="scroll"]').each(function () {
|
1995 |
+
var $spy = $(this)
|
1996 |
+
Plugin.call($spy, $spy.data())
|
1997 |
+
})
|
1998 |
+
})
|
1999 |
+
|
2000 |
+
}(jQuery);
|
2001 |
+
|
2002 |
+
/* ========================================================================
|
2003 |
+
* Bootstrap: tab.js v3.3.4
|
2004 |
+
* http://getbootstrap.com/javascript/#tabs
|
2005 |
+
* ========================================================================
|
2006 |
+
* Copyright 2011-2015 Twitter, Inc.
|
2007 |
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
2008 |
+
* ======================================================================== */
|
2009 |
+
|
2010 |
+
|
2011 |
+
+function ($) {
|
2012 |
+
'use strict';
|
2013 |
+
|
2014 |
+
// TAB CLASS DEFINITION
|
2015 |
+
// ====================
|
2016 |
+
|
2017 |
+
var Tab = function (element) {
|
2018 |
+
this.element = $(element)
|
2019 |
+
}
|
2020 |
+
|
2021 |
+
Tab.VERSION = '3.3.4'
|
2022 |
+
|
2023 |
+
Tab.TRANSITION_DURATION = 150
|
2024 |
+
|
2025 |
+
Tab.prototype.show = function () {
|
2026 |
+
var $this = this.element
|
2027 |
+
var $ul = $this.closest('ul:not(.dropdown-menu)')
|
2028 |
+
var selector = $this.data('target')
|
2029 |
+
|
2030 |
+
if (!selector) {
|
2031 |
+
selector = $this.attr('href')
|
2032 |
+
selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7
|
2033 |
+
}
|
2034 |
+
|
2035 |
+
if ($this.parent('li').hasClass('active')) return
|
2036 |
+
|
2037 |
+
var $previous = $ul.find('.active:last a')
|
2038 |
+
var hideEvent = $.Event('hide.bs.tab', {
|
2039 |
+
relatedTarget: $this[0]
|
2040 |
+
})
|
2041 |
+
var showEvent = $.Event('show.bs.tab', {
|
2042 |
+
relatedTarget: $previous[0]
|
2043 |
+
})
|
2044 |
+
|
2045 |
+
$previous.trigger(hideEvent)
|
2046 |
+
$this.trigger(showEvent)
|
2047 |
+
|
2048 |
+
if (showEvent.isDefaultPrevented() || hideEvent.isDefaultPrevented()) return
|
2049 |
+
|
2050 |
+
var $target = $(selector)
|
2051 |
+
|
2052 |
+
this.activate($this.closest('li'), $ul)
|
2053 |
+
this.activate($target, $target.parent(), function () {
|
2054 |
+
$previous.trigger({
|
2055 |
+
type: 'hidden.bs.tab',
|
2056 |
+
relatedTarget: $this[0]
|
2057 |
+
})
|
2058 |
+
$this.trigger({
|
2059 |
+
type: 'shown.bs.tab',
|
2060 |
+
relatedTarget: $previous[0]
|
2061 |
+
})
|
2062 |
+
})
|
2063 |
+
}
|
2064 |
+
|
2065 |
+
Tab.prototype.activate = function (element, container, callback) {
|
2066 |
+
var $active = container.find('> .active')
|
2067 |
+
var transition = callback
|
2068 |
+
&& $.support.transition
|
2069 |
+
&& (($active.length && $active.hasClass('fade')) || !!container.find('> .fade').length)
|
2070 |
+
|
2071 |
+
function next() {
|
2072 |
+
$active
|
2073 |
+
.removeClass('active')
|
2074 |
+
.find('> .dropdown-menu > .active')
|
2075 |
+
.removeClass('active')
|
2076 |
+
.end()
|
2077 |
+
.find('[data-toggle="tab"]')
|
2078 |
+
.attr('aria-expanded', false)
|
2079 |
+
|
2080 |
+
element
|
2081 |
+
.addClass('active')
|
2082 |
+
.find('[data-toggle="tab"]')
|
2083 |
+
.attr('aria-expanded', true)
|
2084 |
+
|
2085 |
+
if (transition) {
|
2086 |
+
element[0].offsetWidth // reflow for transition
|
2087 |
+
element.addClass('in')
|
2088 |
+
} else {
|
2089 |
+
element.removeClass('fade')
|
2090 |
+
}
|
2091 |
+
|
2092 |
+
if (element.parent('.dropdown-menu').length) {
|
2093 |
+
element
|
2094 |
+
.closest('li.dropdown')
|
2095 |
+
.addClass('active')
|
2096 |
+
.end()
|
2097 |
+
.find('[data-toggle="tab"]')
|
2098 |
+
.attr('aria-expanded', true)
|
2099 |
+
}
|
2100 |
+
|
2101 |
+
callback && callback()
|
2102 |
+
}
|
2103 |
+
|
2104 |
+
$active.length && transition ?
|
2105 |
+
$active
|
2106 |
+
.one('bsTransitionEnd', next)
|
2107 |
+
.emulateTransitionEnd(Tab.TRANSITION_DURATION) :
|
2108 |
+
next()
|
2109 |
+
|
2110 |
+
$active.removeClass('in')
|
2111 |
+
}
|
2112 |
+
|
2113 |
+
|
2114 |
+
// TAB PLUGIN DEFINITION
|
2115 |
+
// =====================
|
2116 |
+
|
2117 |
+
function Plugin(option) {
|
2118 |
+
return this.each(function () {
|
2119 |
+
var $this = $(this)
|
2120 |
+
var data = $this.data('bs.tab')
|
2121 |
+
|
2122 |
+
if (!data) $this.data('bs.tab', (data = new Tab(this)))
|
2123 |
+
if (typeof option == 'string') data[option]()
|
2124 |
+
})
|
2125 |
+
}
|
2126 |
+
|
2127 |
+
var old = $.fn.tab
|
2128 |
+
|
2129 |
+
$.fn.tab = Plugin
|
2130 |
+
$.fn.tab.Constructor = Tab
|
2131 |
+
|
2132 |
+
|
2133 |
+
// TAB NO CONFLICT
|
2134 |
+
// ===============
|
2135 |
+
|
2136 |
+
$.fn.tab.noConflict = function () {
|
2137 |
+
$.fn.tab = old
|
2138 |
+
return this
|
2139 |
+
}
|
2140 |
+
|
2141 |
+
|
2142 |
+
// TAB DATA-API
|
2143 |
+
// ============
|
2144 |
+
|
2145 |
+
var clickHandler = function (e) {
|
2146 |
+
e.preventDefault()
|
2147 |
+
Plugin.call($(this), 'show')
|
2148 |
+
}
|
2149 |
+
|
2150 |
+
$(document)
|
2151 |
+
.on('click.bs.tab.data-api', '[data-toggle="tab"]', clickHandler)
|
2152 |
+
.on('click.bs.tab.data-api', '[data-toggle="pill"]', clickHandler)
|
2153 |
+
|
2154 |
+
}(jQuery);
|
2155 |
+
|
2156 |
+
/* ========================================================================
|
2157 |
+
* Bootstrap: affix.js v3.3.4
|
2158 |
+
* http://getbootstrap.com/javascript/#affix
|
2159 |
+
* ========================================================================
|
2160 |
+
* Copyright 2011-2015 Twitter, Inc.
|
2161 |
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
2162 |
+
* ======================================================================== */
|
2163 |
+
|
2164 |
+
|
2165 |
+
+function ($) {
|
2166 |
+
'use strict';
|
2167 |
+
|
2168 |
+
// AFFIX CLASS DEFINITION
|
2169 |
+
// ======================
|
2170 |
+
|
2171 |
+
var Affix = function (element, options) {
|
2172 |
+
this.options = $.extend({}, Affix.DEFAULTS, options)
|
2173 |
+
|
2174 |
+
this.$target = $(this.options.target)
|
2175 |
+
.on('scroll.bs.affix.data-api', $.proxy(this.checkPosition, this))
|
2176 |
+
.on('click.bs.affix.data-api', $.proxy(this.checkPositionWithEventLoop, this))
|
2177 |
+
|
2178 |
+
this.$element = $(element)
|
2179 |
+
this.affixed = null
|
2180 |
+
this.unpin = null
|
2181 |
+
this.pinnedOffset = null
|
2182 |
+
|
2183 |
+
this.checkPosition()
|
2184 |
+
}
|
2185 |
+
|
2186 |
+
Affix.VERSION = '3.3.4'
|
2187 |
+
|
2188 |
+
Affix.RESET = 'affix affix-top affix-bottom'
|
2189 |
+
|
2190 |
+
Affix.DEFAULTS = {
|
2191 |
+
offset: 0,
|
2192 |
+
target: window
|
2193 |
+
}
|
2194 |
+
|
2195 |
+
Affix.prototype.getState = function (scrollHeight, height, offsetTop, offsetBottom) {
|
2196 |
+
var scrollTop = this.$target.scrollTop()
|
2197 |
+
var position = this.$element.offset()
|
2198 |
+
var targetHeight = this.$target.height()
|
2199 |
+
|
2200 |
+
if (offsetTop != null && this.affixed == 'top') return scrollTop < offsetTop ? 'top' : false
|
2201 |
+
|
2202 |
+
if (this.affixed == 'bottom') {
|
2203 |
+
if (offsetTop != null) return (scrollTop + this.unpin <= position.top) ? false : 'bottom'
|
2204 |
+
return (scrollTop + targetHeight <= scrollHeight - offsetBottom) ? false : 'bottom'
|
2205 |
+
}
|
2206 |
+
|
2207 |
+
var initializing = this.affixed == null
|
2208 |
+
var colliderTop = initializing ? scrollTop : position.top
|
2209 |
+
var colliderHeight = initializing ? targetHeight : height
|
2210 |
+
|
2211 |
+
if (offsetTop != null && scrollTop <= offsetTop) return 'top'
|
2212 |
+
if (offsetBottom != null && (colliderTop + colliderHeight >= scrollHeight - offsetBottom)) return 'bottom'
|
2213 |
+
|
2214 |
+
return false
|
2215 |
+
}
|
2216 |
+
|
2217 |
+
Affix.prototype.getPinnedOffset = function () {
|
2218 |
+
if (this.pinnedOffset) return this.pinnedOffset
|
2219 |
+
this.$element.removeClass(Affix.RESET).addClass('affix')
|
2220 |
+
var scrollTop = this.$target.scrollTop()
|
2221 |
+
var position = this.$element.offset()
|
2222 |
+
return (this.pinnedOffset = position.top - scrollTop)
|
2223 |
+
}
|
2224 |
+
|
2225 |
+
Affix.prototype.checkPositionWithEventLoop = function () {
|
2226 |
+
setTimeout($.proxy(this.checkPosition, this), 1)
|
2227 |
+
}
|
2228 |
+
|
2229 |
+
Affix.prototype.checkPosition = function () {
|
2230 |
+
if (!this.$element.is(':visible')) return
|
2231 |
+
|
2232 |
+
var height = this.$element.height()
|
2233 |
+
var offset = this.options.offset
|
2234 |
+
var offsetTop = offset.top
|
2235 |
+
var offsetBottom = offset.bottom
|
2236 |
+
var scrollHeight = $(document.body).height()
|
2237 |
+
|
2238 |
+
if (typeof offset != 'object') offsetBottom = offsetTop = offset
|
2239 |
+
if (typeof offsetTop == 'function') offsetTop = offset.top(this.$element)
|
2240 |
+
if (typeof offsetBottom == 'function') offsetBottom = offset.bottom(this.$element)
|
2241 |
+
|
2242 |
+
var affix = this.getState(scrollHeight, height, offsetTop, offsetBottom)
|
2243 |
+
|
2244 |
+
if (this.affixed != affix) {
|
2245 |
+
if (this.unpin != null) this.$element.css('top', '')
|
2246 |
+
|
2247 |
+
var affixType = 'affix' + (affix ? '-' + affix : '')
|
2248 |
+
var e = $.Event(affixType + '.bs.affix')
|
2249 |
+
|
2250 |
+
this.$element.trigger(e)
|
2251 |
+
|
2252 |
+
if (e.isDefaultPrevented()) return
|
2253 |
+
|
2254 |
+
this.affixed = affix
|
2255 |
+
this.unpin = affix == 'bottom' ? this.getPinnedOffset() : null
|
2256 |
+
|
2257 |
+
this.$element
|
2258 |
+
.removeClass(Affix.RESET)
|
2259 |
+
.addClass(affixType)
|
2260 |
+
.trigger(affixType.replace('affix', 'affixed') + '.bs.affix')
|
2261 |
+
}
|
2262 |
+
|
2263 |
+
if (affix == 'bottom') {
|
2264 |
+
this.$element.offset({
|
2265 |
+
top: scrollHeight - height - offsetBottom
|
2266 |
+
})
|
2267 |
+
}
|
2268 |
+
}
|
2269 |
+
|
2270 |
+
|
2271 |
+
// AFFIX PLUGIN DEFINITION
|
2272 |
+
// =======================
|
2273 |
+
|
2274 |
+
function Plugin(option) {
|
2275 |
+
return this.each(function () {
|
2276 |
+
var $this = $(this)
|
2277 |
+
var data = $this.data('bs.affix')
|
2278 |
+
var options = typeof option == 'object' && option
|
2279 |
+
|
2280 |
+
if (!data) $this.data('bs.affix', (data = new Affix(this, options)))
|
2281 |
+
if (typeof option == 'string') data[option]()
|
2282 |
+
})
|
2283 |
+
}
|
2284 |
+
|
2285 |
+
var old = $.fn.affix
|
2286 |
+
|
2287 |
+
$.fn.affix = Plugin
|
2288 |
+
$.fn.affix.Constructor = Affix
|
2289 |
+
|
2290 |
+
|
2291 |
+
// AFFIX NO CONFLICT
|
2292 |
+
// =================
|
2293 |
+
|
2294 |
+
$.fn.affix.noConflict = function () {
|
2295 |
+
$.fn.affix = old
|
2296 |
+
return this
|
2297 |
+
}
|
2298 |
+
|
2299 |
+
|
2300 |
+
// AFFIX DATA-API
|
2301 |
+
// ==============
|
2302 |
+
|
2303 |
+
$(window).on('load', function () {
|
2304 |
+
$('[data-spy="affix"]').each(function () {
|
2305 |
+
var $spy = $(this)
|
2306 |
+
var data = $spy.data()
|
2307 |
+
|
2308 |
+
data.offset = data.offset || {}
|
2309 |
+
|
2310 |
+
if (data.offsetBottom != null) data.offset.bottom = data.offsetBottom
|
2311 |
+
if (data.offsetTop != null) data.offset.top = data.offsetTop
|
2312 |
+
|
2313 |
+
Plugin.call($spy, data)
|
2314 |
+
})
|
2315 |
+
})
|
2316 |
+
|
2317 |
+
}(jQuery);
|
bootstrap/js/bootstrap.min.js
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*!
|
2 |
+
* Bootstrap v3.3.4 (http://getbootstrap.com)
|
3 |
+
* Copyright 2011-2015 Twitter, Inc.
|
4 |
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
5 |
+
*/
|
6 |
+
if("undefined"==typeof jQuery)throw new Error("Bootstrap's JavaScript requires jQuery");+function(a){"use strict";var b=a.fn.jquery.split(" ")[0].split(".");if(b[0]<2&&b[1]<9||1==b[0]&&9==b[1]&&b[2]<1)throw new Error("Bootstrap's JavaScript requires jQuery version 1.9.1 or higher")}(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]};return!1}a.fn.emulateTransitionEnd=function(b){var c=!1,d=this;a(this).one("bsTransitionEnd",function(){c=!0});var e=function(){c||a(d).trigger(a.support.transition.end)};return setTimeout(e,b),this},a(function(){a.support.transition=b(),a.support.transition&&(a.event.special.bsTransitionEnd={bindType:a.support.transition.end,delegateType:a.support.transition.end,handle:function(b){return a(b.target).is(this)?b.handleObj.handler.apply(this,arguments):void 0}})})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var c=a(this),e=c.data("bs.alert");e||c.data("bs.alert",e=new d(this)),"string"==typeof b&&e[b].call(c)})}var c='[data-dismiss="alert"]',d=function(b){a(b).on("click",c,this.close)};d.VERSION="3.3.4",d.TRANSITION_DURATION=150,d.prototype.close=function(b){function c(){g.detach().trigger("closed.bs.alert").remove()}var e=a(this),f=e.attr("data-target");f||(f=e.attr("href"),f=f&&f.replace(/.*(?=#[^\s]*$)/,""));var g=a(f);b&&b.preventDefault(),g.length||(g=e.closest(".alert")),g.trigger(b=a.Event("close.bs.alert")),b.isDefaultPrevented()||(g.removeClass("in"),a.support.transition&&g.hasClass("fade")?g.one("bsTransitionEnd",c).emulateTransitionEnd(d.TRANSITION_DURATION):c())};var e=a.fn.alert;a.fn.alert=b,a.fn.alert.Constructor=d,a.fn.alert.noConflict=function(){return a.fn.alert=e,this},a(document).on("click.bs.alert.data-api",c,d.prototype.close)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.button"),f="object"==typeof b&&b;e||d.data("bs.button",e=new c(this,f)),"toggle"==b?e.toggle():b&&e.setState(b)})}var c=function(b,d){this.$element=a(b),this.options=a.extend({},c.DEFAULTS,d),this.isLoading=!1};c.VERSION="3.3.4",c.DEFAULTS={loadingText:"loading..."},c.prototype.setState=function(b){var c="disabled",d=this.$element,e=d.is("input")?"val":"html",f=d.data();b+="Text",null==f.resetText&&d.data("resetText",d[e]()),setTimeout(a.proxy(function(){d[e](null==f[b]?this.options[b]:f[b]),"loadingText"==b?(this.isLoading=!0,d.addClass(c).attr(c,c)):this.isLoading&&(this.isLoading=!1,d.removeClass(c).removeAttr(c))},this),0)},c.prototype.toggle=function(){var a=!0,b=this.$element.closest('[data-toggle="buttons"]');if(b.length){var c=this.$element.find("input");"radio"==c.prop("type")&&(c.prop("checked")&&this.$element.hasClass("active")?a=!1:b.find(".active").removeClass("active")),a&&c.prop("checked",!this.$element.hasClass("active")).trigger("change")}else this.$element.attr("aria-pressed",!this.$element.hasClass("active"));a&&this.$element.toggleClass("active")};var d=a.fn.button;a.fn.button=b,a.fn.button.Constructor=c,a.fn.button.noConflict=function(){return a.fn.button=d,this},a(document).on("click.bs.button.data-api",'[data-toggle^="button"]',function(c){var d=a(c.target);d.hasClass("btn")||(d=d.closest(".btn")),b.call(d,"toggle"),c.preventDefault()}).on("focus.bs.button.data-api blur.bs.button.data-api",'[data-toggle^="button"]',function(b){a(b.target).closest(".btn").toggleClass("focus",/^focus(in)?$/.test(b.type))})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.carousel"),f=a.extend({},c.DEFAULTS,d.data(),"object"==typeof b&&b),g="string"==typeof b?b:f.slide;e||d.data("bs.carousel",e=new c(this,f)),"number"==typeof b?e.to(b):g?e[g]():f.interval&&e.pause().cycle()})}var c=function(b,c){this.$element=a(b),this.$indicators=this.$element.find(".carousel-indicators"),this.options=c,this.paused=null,this.sliding=null,this.interval=null,this.$active=null,this.$items=null,this.options.keyboard&&this.$element.on("keydown.bs.carousel",a.proxy(this.keydown,this)),"hover"==this.options.pause&&!("ontouchstart"in document.documentElement)&&this.$element.on("mouseenter.bs.carousel",a.proxy(this.pause,this)).on("mouseleave.bs.carousel",a.proxy(this.cycle,this))};c.VERSION="3.3.4",c.TRANSITION_DURATION=600,c.DEFAULTS={interval:5e3,pause:"hover",wrap:!0,keyboard:!0},c.prototype.keydown=function(a){if(!/input|textarea/i.test(a.target.tagName)){switch(a.which){case 37:this.prev();break;case 39:this.next();break;default:return}a.preventDefault()}},c.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},c.prototype.getItemIndex=function(a){return this.$items=a.parent().children(".item"),this.$items.index(a||this.$active)},c.prototype.getItemForDirection=function(a,b){var c=this.getItemIndex(b),d="prev"==a&&0===c||"next"==a&&c==this.$items.length-1;if(d&&!this.options.wrap)return b;var e="prev"==a?-1:1,f=(c+e)%this.$items.length;return this.$items.eq(f)},c.prototype.to=function(a){var b=this,c=this.getItemIndex(this.$active=this.$element.find(".item.active"));return a>this.$items.length-1||0>a?void 0:this.sliding?this.$element.one("slid.bs.carousel",function(){b.to(a)}):c==a?this.pause().cycle():this.slide(a>c?"next":"prev",this.$items.eq(a))},c.prototype.pause=function(b){return b||(this.paused=!0),this.$element.find(".next, .prev").length&&a.support.transition&&(this.$element.trigger(a.support.transition.end),this.cycle(!0)),this.interval=clearInterval(this.interval),this},c.prototype.next=function(){return this.sliding?void 0:this.slide("next")},c.prototype.prev=function(){return this.sliding?void 0:this.slide("prev")},c.prototype.slide=function(b,d){var e=this.$element.find(".item.active"),f=d||this.getItemForDirection(b,e),g=this.interval,h="next"==b?"left":"right",i=this;if(f.hasClass("active"))return this.sliding=!1;var j=f[0],k=a.Event("slide.bs.carousel",{relatedTarget:j,direction:h});if(this.$element.trigger(k),!k.isDefaultPrevented()){if(this.sliding=!0,g&&this.pause(),this.$indicators.length){this.$indicators.find(".active").removeClass("active");var l=a(this.$indicators.children()[this.getItemIndex(f)]);l&&l.addClass("active")}var m=a.Event("slid.bs.carousel",{relatedTarget:j,direction:h});return a.support.transition&&this.$element.hasClass("slide")?(f.addClass(b),f[0].offsetWidth,e.addClass(h),f.addClass(h),e.one("bsTransitionEnd",function(){f.removeClass([b,h].join(" ")).addClass("active"),e.removeClass(["active",h].join(" ")),i.sliding=!1,setTimeout(function(){i.$element.trigger(m)},0)}).emulateTransitionEnd(c.TRANSITION_DURATION)):(e.removeClass("active"),f.addClass("active"),this.sliding=!1,this.$element.trigger(m)),g&&this.cycle(),this}};var d=a.fn.carousel;a.fn.carousel=b,a.fn.carousel.Constructor=c,a.fn.carousel.noConflict=function(){return a.fn.carousel=d,this};var e=function(c){var d,e=a(this),f=a(e.attr("data-target")||(d=e.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,""));if(f.hasClass("carousel")){var g=a.extend({},f.data(),e.data()),h=e.attr("data-slide-to");h&&(g.interval=!1),b.call(f,g),h&&f.data("bs.carousel").to(h),c.preventDefault()}};a(document).on("click.bs.carousel.data-api","[data-slide]",e).on("click.bs.carousel.data-api","[data-slide-to]",e),a(window).on("load",function(){a('[data-ride="carousel"]').each(function(){var c=a(this);b.call(c,c.data())})})}(jQuery),+function(a){"use strict";function b(b){var c,d=b.attr("data-target")||(c=b.attr("href"))&&c.replace(/.*(?=#[^\s]+$)/,"");return a(d)}function c(b){return this.each(function(){var c=a(this),e=c.data("bs.collapse"),f=a.extend({},d.DEFAULTS,c.data(),"object"==typeof b&&b);!e&&f.toggle&&/show|hide/.test(b)&&(f.toggle=!1),e||c.data("bs.collapse",e=new d(this,f)),"string"==typeof b&&e[b]()})}var d=function(b,c){this.$element=a(b),this.options=a.extend({},d.DEFAULTS,c),this.$trigger=a('[data-toggle="collapse"][href="#'+b.id+'"],[data-toggle="collapse"][data-target="#'+b.id+'"]'),this.transitioning=null,this.options.parent?this.$parent=this.getParent():this.addAriaAndCollapsedClass(this.$element,this.$trigger),this.options.toggle&&this.toggle()};d.VERSION="3.3.4",d.TRANSITION_DURATION=350,d.DEFAULTS={toggle:!0},d.prototype.dimension=function(){var a=this.$element.hasClass("width");return a?"width":"height"},d.prototype.show=function(){if(!this.transitioning&&!this.$element.hasClass("in")){var b,e=this.$parent&&this.$parent.children(".panel").children(".in, .collapsing");if(!(e&&e.length&&(b=e.data("bs.collapse"),b&&b.transitioning))){var f=a.Event("show.bs.collapse");if(this.$element.trigger(f),!f.isDefaultPrevented()){e&&e.length&&(c.call(e,"hide"),b||e.data("bs.collapse",null));var g=this.dimension();this.$element.removeClass("collapse").addClass("collapsing")[g](0).attr("aria-expanded",!0),this.$trigger.removeClass("collapsed").attr("aria-expanded",!0),this.transitioning=1;var h=function(){this.$element.removeClass("collapsing").addClass("collapse in")[g](""),this.transitioning=0,this.$element.trigger("shown.bs.collapse")};if(!a.support.transition)return h.call(this);var i=a.camelCase(["scroll",g].join("-"));this.$element.one("bsTransitionEnd",a.proxy(h,this)).emulateTransitionEnd(d.TRANSITION_DURATION)[g](this.$element[0][i])}}}},d.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 in").attr("aria-expanded",!1),this.$trigger.addClass("collapsed").attr("aria-expanded",!1),this.transitioning=1;var e=function(){this.transitioning=0,this.$element.removeClass("collapsing").addClass("collapse").trigger("hidden.bs.collapse")};return a.support.transition?void this.$element[c](0).one("bsTransitionEnd",a.proxy(e,this)).emulateTransitionEnd(d.TRANSITION_DURATION):e.call(this)}}},d.prototype.toggle=function(){this[this.$element.hasClass("in")?"hide":"show"]()},d.prototype.getParent=function(){return a(this.options.parent).find('[data-toggle="collapse"][data-parent="'+this.options.parent+'"]').each(a.proxy(function(c,d){var e=a(d);this.addAriaAndCollapsedClass(b(e),e)},this)).end()},d.prototype.addAriaAndCollapsedClass=function(a,b){var c=a.hasClass("in");a.attr("aria-expanded",c),b.toggleClass("collapsed",!c).attr("aria-expanded",c)};var e=a.fn.collapse;a.fn.collapse=c,a.fn.collapse.Constructor=d,a.fn.collapse.noConflict=function(){return a.fn.collapse=e,this},a(document).on("click.bs.collapse.data-api",'[data-toggle="collapse"]',function(d){var e=a(this);e.attr("data-target")||d.preventDefault();var f=b(e),g=f.data("bs.collapse"),h=g?"toggle":e.data();c.call(f,h)})}(jQuery),+function(a){"use strict";function b(b){b&&3===b.which||(a(e).remove(),a(f).each(function(){var d=a(this),e=c(d),f={relatedTarget:this};e.hasClass("open")&&(e.trigger(b=a.Event("hide.bs.dropdown",f)),b.isDefaultPrevented()||(d.attr("aria-expanded","false"),e.removeClass("open").trigger("hidden.bs.dropdown",f)))}))}function c(b){var c=b.attr("data-target");c||(c=b.attr("href"),c=c&&/#[A-Za-z]/.test(c)&&c.replace(/.*(?=#[^\s]*$)/,""));var d=c&&a(c);return d&&d.length?d:b.parent()}function d(b){return this.each(function(){var c=a(this),d=c.data("bs.dropdown");d||c.data("bs.dropdown",d=new g(this)),"string"==typeof b&&d[b].call(c)})}var e=".dropdown-backdrop",f='[data-toggle="dropdown"]',g=function(b){a(b).on("click.bs.dropdown",this.toggle)};g.VERSION="3.3.4",g.prototype.toggle=function(d){var e=a(this);if(!e.is(".disabled, :disabled")){var f=c(e),g=f.hasClass("open");if(b(),!g){"ontouchstart"in document.documentElement&&!f.closest(".navbar-nav").length&&a('<div class="dropdown-backdrop"/>').insertAfter(a(this)).on("click",b);var h={relatedTarget:this};if(f.trigger(d=a.Event("show.bs.dropdown",h)),d.isDefaultPrevented())return;e.trigger("focus").attr("aria-expanded","true"),f.toggleClass("open").trigger("shown.bs.dropdown",h)}return!1}},g.prototype.keydown=function(b){if(/(38|40|27|32)/.test(b.which)&&!/input|textarea/i.test(b.target.tagName)){var d=a(this);if(b.preventDefault(),b.stopPropagation(),!d.is(".disabled, :disabled")){var e=c(d),g=e.hasClass("open");if(!g&&27!=b.which||g&&27==b.which)return 27==b.which&&e.find(f).trigger("focus"),d.trigger("click");var h=" li:not(.disabled):visible a",i=e.find('[role="menu"]'+h+', [role="listbox"]'+h);if(i.length){var j=i.index(b.target);38==b.which&&j>0&&j--,40==b.which&&j<i.length-1&&j++,~j||(j=0),i.eq(j).trigger("focus")}}}};var h=a.fn.dropdown;a.fn.dropdown=d,a.fn.dropdown.Constructor=g,a.fn.dropdown.noConflict=function(){return a.fn.dropdown=h,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",f,g.prototype.toggle).on("keydown.bs.dropdown.data-api",f,g.prototype.keydown).on("keydown.bs.dropdown.data-api",'[role="menu"]',g.prototype.keydown).on("keydown.bs.dropdown.data-api",'[role="listbox"]',g.prototype.keydown)}(jQuery),+function(a){"use strict";function b(b,d){return this.each(function(){var e=a(this),f=e.data("bs.modal"),g=a.extend({},c.DEFAULTS,e.data(),"object"==typeof b&&b);f||e.data("bs.modal",f=new c(this,g)),"string"==typeof b?f[b](d):g.show&&f.show(d)})}var c=function(b,c){this.options=c,this.$body=a(document.body),this.$element=a(b),this.$dialog=this.$element.find(".modal-dialog"),this.$backdrop=null,this.isShown=null,this.originalBodyPad=null,this.scrollbarWidth=0,this.ignoreBackdropClick=!1,this.options.remote&&this.$element.find(".modal-content").load(this.options.remote,a.proxy(function(){this.$element.trigger("loaded.bs.modal")},this))};c.VERSION="3.3.4",c.TRANSITION_DURATION=300,c.BACKDROP_TRANSITION_DURATION=150,c.DEFAULTS={backdrop:!0,keyboard:!0,show:!0},c.prototype.toggle=function(a){return this.isShown?this.hide():this.show(a)},c.prototype.show=function(b){var d=this,e=a.Event("show.bs.modal",{relatedTarget:b});this.$element.trigger(e),this.isShown||e.isDefaultPrevented()||(this.isShown=!0,this.checkScrollbar(),this.setScrollbar(),this.$body.addClass("modal-open"),this.escape(),this.resize(),this.$element.on("click.dismiss.bs.modal",'[data-dismiss="modal"]',a.proxy(this.hide,this)),this.$dialog.on("mousedown.dismiss.bs.modal",function(){d.$element.one("mouseup.dismiss.bs.modal",function(b){a(b.target).is(d.$element)&&(d.ignoreBackdropClick=!0)})}),this.backdrop(function(){var e=a.support.transition&&d.$element.hasClass("fade");d.$element.parent().length||d.$element.appendTo(d.$body),d.$element.show().scrollTop(0),d.adjustDialog(),e&&d.$element[0].offsetWidth,d.$element.addClass("in").attr("aria-hidden",!1),d.enforceFocus();var f=a.Event("shown.bs.modal",{relatedTarget:b});e?d.$dialog.one("bsTransitionEnd",function(){d.$element.trigger("focus").trigger(f)}).emulateTransitionEnd(c.TRANSITION_DURATION):d.$element.trigger("focus").trigger(f)}))},c.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(),this.resize(),a(document).off("focusin.bs.modal"),this.$element.removeClass("in").attr("aria-hidden",!0).off("click.dismiss.bs.modal").off("mouseup.dismiss.bs.modal"),this.$dialog.off("mousedown.dismiss.bs.modal"),a.support.transition&&this.$element.hasClass("fade")?this.$element.one("bsTransitionEnd",a.proxy(this.hideModal,this)).emulateTransitionEnd(c.TRANSITION_DURATION):this.hideModal())},c.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.trigger("focus")},this))},c.prototype.escape=function(){this.isShown&&this.options.keyboard?this.$element.on("keydown.dismiss.bs.modal",a.proxy(function(a){27==a.which&&this.hide()},this)):this.isShown||this.$element.off("keydown.dismiss.bs.modal")},c.prototype.resize=function(){this.isShown?a(window).on("resize.bs.modal",a.proxy(this.handleUpdate,this)):a(window).off("resize.bs.modal")},c.prototype.hideModal=function(){var a=this;this.$element.hide(),this.backdrop(function(){a.$body.removeClass("modal-open"),a.resetAdjustments(),a.resetScrollbar(),a.$element.trigger("hidden.bs.modal")})},c.prototype.removeBackdrop=function(){this.$backdrop&&this.$backdrop.remove(),this.$backdrop=null},c.prototype.backdrop=function(b){var d=this,e=this.$element.hasClass("fade")?"fade":"";if(this.isShown&&this.options.backdrop){var f=a.support.transition&&e;if(this.$backdrop=a('<div class="modal-backdrop '+e+'" />').appendTo(this.$body),this.$element.on("click.dismiss.bs.modal",a.proxy(function(a){return this.ignoreBackdropClick?void(this.ignoreBackdropClick=!1):void(a.target===a.currentTarget&&("static"==this.options.backdrop?this.$element[0].focus():this.hide()))},this)),f&&this.$backdrop[0].offsetWidth,this.$backdrop.addClass("in"),!b)return;f?this.$backdrop.one("bsTransitionEnd",b).emulateTransitionEnd(c.BACKDROP_TRANSITION_DURATION):b()}else if(!this.isShown&&this.$backdrop){this.$backdrop.removeClass("in");var g=function(){d.removeBackdrop(),b&&b()};a.support.transition&&this.$element.hasClass("fade")?this.$backdrop.one("bsTransitionEnd",g).emulateTransitionEnd(c.BACKDROP_TRANSITION_DURATION):g()}else b&&b()},c.prototype.handleUpdate=function(){this.adjustDialog()},c.prototype.adjustDialog=function(){var a=this.$element[0].scrollHeight>document.documentElement.clientHeight;this.$element.css({paddingLeft:!this.bodyIsOverflowing&&a?this.scrollbarWidth:"",paddingRight:this.bodyIsOverflowing&&!a?this.scrollbarWidth:""})},c.prototype.resetAdjustments=function(){this.$element.css({paddingLeft:"",paddingRight:""})},c.prototype.checkScrollbar=function(){var a=window.innerWidth;if(!a){var b=document.documentElement.getBoundingClientRect();a=b.right-Math.abs(b.left)}this.bodyIsOverflowing=document.body.clientWidth<a,this.scrollbarWidth=this.measureScrollbar()},c.prototype.setScrollbar=function(){var a=parseInt(this.$body.css("padding-right")||0,10);this.originalBodyPad=document.body.style.paddingRight||"",this.bodyIsOverflowing&&this.$body.css("padding-right",a+this.scrollbarWidth)},c.prototype.resetScrollbar=function(){this.$body.css("padding-right",this.originalBodyPad)},c.prototype.measureScrollbar=function(){var a=document.createElement("div");a.className="modal-scrollbar-measure",this.$body.append(a);var b=a.offsetWidth-a.clientWidth;return this.$body[0].removeChild(a),b};var d=a.fn.modal;a.fn.modal=b,a.fn.modal.Constructor=c,a.fn.modal.noConflict=function(){return a.fn.modal=d,this},a(document).on("click.bs.modal.data-api",'[data-toggle="modal"]',function(c){var d=a(this),e=d.attr("href"),f=a(d.attr("data-target")||e&&e.replace(/.*(?=#[^\s]+$)/,"")),g=f.data("bs.modal")?"toggle":a.extend({remote:!/#/.test(e)&&e},f.data(),d.data());d.is("a")&&c.preventDefault(),f.one("show.bs.modal",function(a){a.isDefaultPrevented()||f.one("hidden.bs.modal",function(){d.is(":visible")&&d.trigger("focus")})}),b.call(f,g,this)})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.tooltip"),f="object"==typeof b&&b;(e||!/destroy|hide/.test(b))&&(e||d.data("bs.tooltip",e=new c(this,f)),"string"==typeof b&&e[b]())})}var c=function(a,b){this.type=null,this.options=null,this.enabled=null,this.timeout=null,this.hoverState=null,this.$element=null,this.init("tooltip",a,b)};c.VERSION="3.3.4",c.TRANSITION_DURATION=150,c.DEFAULTS={animation:!0,placement:"top",selector:!1,template:'<div class="tooltip" role="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',trigger:"hover focus",title:"",delay:0,html:!1,container:!1,viewport:{selector:"body",padding:0}},c.prototype.init=function(b,c,d){if(this.enabled=!0,this.type=b,this.$element=a(c),this.options=this.getOptions(d),this.$viewport=this.options.viewport&&a(this.options.viewport.selector||this.options.viewport),this.$element[0]instanceof document.constructor&&!this.options.selector)throw new Error("`selector` option must be specified when initializing "+this.type+" on the window.document object!");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":"focusin",i="hover"==g?"mouseleave":"focusout";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()},c.prototype.getDefaults=function(){return c.DEFAULTS},c.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},c.prototype.getDelegateOptions=function(){var b={},c=this.getDefaults();return this._options&&a.each(this._options,function(a,d){c[a]!=d&&(b[a]=d)}),b},c.prototype.enter=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);return c&&c.$tip&&c.$tip.is(":visible")?void(c.hoverState="in"):(c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),clearTimeout(c.timeout),c.hoverState="in",c.options.delay&&c.options.delay.show?void(c.timeout=setTimeout(function(){"in"==c.hoverState&&c.show()},c.options.delay.show)):c.show())},c.prototype.leave=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);return c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),clearTimeout(c.timeout),c.hoverState="out",c.options.delay&&c.options.delay.hide?void(c.timeout=setTimeout(function(){"out"==c.hoverState&&c.hide()},c.options.delay.hide)):c.hide()},c.prototype.show=function(){var b=a.Event("show.bs."+this.type);if(this.hasContent()&&this.enabled){this.$element.trigger(b);var d=a.contains(this.$element[0].ownerDocument.documentElement,this.$element[0]);if(b.isDefaultPrevented()||!d)return;var e=this,f=this.tip(),g=this.getUID(this.type);this.setContent(),f.attr("id",g),this.$element.attr("aria-describedby",g),this.options.animation&&f.addClass("fade");var h="function"==typeof this.options.placement?this.options.placement.call(this,f[0],this.$element[0]):this.options.placement,i=/\s?auto?\s?/i,j=i.test(h);j&&(h=h.replace(i,"")||"top"),f.detach().css({top:0,left:0,display:"block"}).addClass(h).data("bs."+this.type,this),this.options.container?f.appendTo(this.options.container):f.insertAfter(this.$element);var k=this.getPosition(),l=f[0].offsetWidth,m=f[0].offsetHeight;if(j){var n=h,o=this.options.container?a(this.options.container):this.$element.parent(),p=this.getPosition(o);h="bottom"==h&&k.bottom+m>p.bottom?"top":"top"==h&&k.top-m<p.top?"bottom":"right"==h&&k.right+l>p.width?"left":"left"==h&&k.left-l<p.left?"right":h,f.removeClass(n).addClass(h)}var q=this.getCalculatedOffset(h,k,l,m);this.applyPlacement(q,h);var r=function(){var a=e.hoverState;e.$element.trigger("shown.bs."+e.type),e.hoverState=null,"out"==a&&e.leave(e)};a.support.transition&&this.$tip.hasClass("fade")?f.one("bsTransitionEnd",r).emulateTransitionEnd(c.TRANSITION_DURATION):r()}},c.prototype.applyPlacement=function(b,c){var d=this.tip(),e=d[0].offsetWidth,f=d[0].offsetHeight,g=parseInt(d.css("margin-top"),10),h=parseInt(d.css("margin-left"),10);isNaN(g)&&(g=0),isNaN(h)&&(h=0),b.top=b.top+g,b.left=b.left+h,a.offset.setOffset(d[0],a.extend({using:function(a){d.css({top:Math.round(a.top),left:Math.round(a.left)})}},b),0),d.addClass("in");var i=d[0].offsetWidth,j=d[0].offsetHeight;"top"==c&&j!=f&&(b.top=b.top+f-j);var k=this.getViewportAdjustedDelta(c,b,i,j);k.left?b.left+=k.left:b.top+=k.top;var l=/top|bottom/.test(c),m=l?2*k.left-e+i:2*k.top-f+j,n=l?"offsetWidth":"offsetHeight";d.offset(b),this.replaceArrow(m,d[0][n],l)},c.prototype.replaceArrow=function(a,b,c){this.arrow().css(c?"left":"top",50*(1-a/b)+"%").css(c?"top":"left","")},c.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")},c.prototype.hide=function(b){function d(){"in"!=e.hoverState&&f.detach(),e.$element.removeAttr("aria-describedby").trigger("hidden.bs."+e.type),b&&b()}var e=this,f=a(this.$tip),g=a.Event("hide.bs."+this.type);return this.$element.trigger(g),g.isDefaultPrevented()?void 0:(f.removeClass("in"),a.support.transition&&f.hasClass("fade")?f.one("bsTransitionEnd",d).emulateTransitionEnd(c.TRANSITION_DURATION):d(),this.hoverState=null,this)},c.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","")},c.prototype.hasContent=function(){return this.getTitle()},c.prototype.getPosition=function(b){b=b||this.$element;var c=b[0],d="BODY"==c.tagName,e=c.getBoundingClientRect();null==e.width&&(e=a.extend({},e,{width:e.right-e.left,height:e.bottom-e.top}));var f=d?{top:0,left:0}:b.offset(),g={scroll:d?document.documentElement.scrollTop||document.body.scrollTop:b.scrollTop()},h=d?{width:a(window).width(),height:a(window).height()}:null;return a.extend({},e,g,h,f)},c.prototype.getCalculatedOffset=function(a,b,c,d){return"bottom"==a?{top:b.top+b.height,left:b.left+b.width/2-c/2}:"top"==a?{top:b.top-d,left:b.left+b.width/2-c/2}:"left"==a?{top:b.top+b.height/2-d/2,left:b.left-c}:{top:b.top+b.height/2-d/2,left:b.left+b.width}},c.prototype.getViewportAdjustedDelta=function(a,b,c,d){var e={top:0,left:0};if(!this.$viewport)return e;var f=this.options.viewport&&this.options.viewport.padding||0,g=this.getPosition(this.$viewport);if(/right|left/.test(a)){var h=b.top-f-g.scroll,i=b.top+f-g.scroll+d;h<g.top?e.top=g.top-h:i>g.top+g.height&&(e.top=g.top+g.height-i)}else{var j=b.left-f,k=b.left+f+c;j<g.left?e.left=g.left-j:k>g.width&&(e.left=g.left+g.width-k)}return e},c.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)},c.prototype.getUID=function(a){do a+=~~(1e6*Math.random());while(document.getElementById(a));return a},c.prototype.tip=function(){return this.$tip=this.$tip||a(this.options.template)},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".tooltip-arrow")},c.prototype.enable=function(){this.enabled=!0},c.prototype.disable=function(){this.enabled=!1},c.prototype.toggleEnabled=function(){this.enabled=!this.enabled},c.prototype.toggle=function(b){var c=this;b&&(c=a(b.currentTarget).data("bs."+this.type),c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c))),c.tip().hasClass("in")?c.leave(c):c.enter(c)},c.prototype.destroy=function(){var a=this;clearTimeout(this.timeout),this.hide(function(){a.$element.off("."+a.type).removeData("bs."+a.type)})};var d=a.fn.tooltip;a.fn.tooltip=b,a.fn.tooltip.Constructor=c,a.fn.tooltip.noConflict=function(){return a.fn.tooltip=d,this}}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.popover"),f="object"==typeof b&&b;(e||!/destroy|hide/.test(b))&&(e||d.data("bs.popover",e=new c(this,f)),"string"==typeof b&&e[b]())})}var c=function(a,b){this.init("popover",a,b)};if(!a.fn.tooltip)throw new Error("Popover requires tooltip.js");c.VERSION="3.3.4",c.DEFAULTS=a.extend({},a.fn.tooltip.Constructor.DEFAULTS,{placement:"right",trigger:"click",content:"",template:'<div class="popover" role="tooltip"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'}),c.prototype=a.extend({},a.fn.tooltip.Constructor.prototype),c.prototype.constructor=c,c.prototype.getDefaults=function(){return c.DEFAULTS},c.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").children().detach().end()[this.options.html?"string"==typeof c?"html":"append":"text"](c),a.removeClass("fade top bottom left right in"),a.find(".popover-title").html()||a.find(".popover-title").hide()},c.prototype.hasContent=function(){return this.getTitle()||this.getContent()},c.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)},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".arrow")};var d=a.fn.popover;a.fn.popover=b,a.fn.popover.Constructor=c,a.fn.popover.noConflict=function(){return a.fn.popover=d,this}}(jQuery),+function(a){"use strict";function b(c,d){this.$body=a(document.body),this.$scrollElement=a(a(c).is(document.body)?window:c),this.options=a.extend({},b.DEFAULTS,d),this.selector=(this.options.target||"")+" .nav li > a",this.offsets=[],this.targets=[],this.activeTarget=null,this.scrollHeight=0,this.$scrollElement.on("scroll.bs.scrollspy",a.proxy(this.process,this)),this.refresh(),this.process()}function c(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]()})}b.VERSION="3.3.4",b.DEFAULTS={offset:10},b.prototype.getScrollHeight=function(){return this.$scrollElement[0].scrollHeight||Math.max(this.$body[0].scrollHeight,document.documentElement.scrollHeight)},b.prototype.refresh=function(){var b=this,c="offset",d=0;this.offsets=[],this.targets=[],this.scrollHeight=this.getScrollHeight(),a.isWindow(this.$scrollElement[0])||(c="position",d=this.$scrollElement.scrollTop()),this.$body.find(this.selector).map(function(){var b=a(this),e=b.data("target")||b.attr("href"),f=/^#./.test(e)&&a(e);return f&&f.length&&f.is(":visible")&&[[f[c]().top+d,e]]||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.getScrollHeight(),d=this.options.offset+c-this.$scrollElement.height(),e=this.offsets,f=this.targets,g=this.activeTarget;if(this.scrollHeight!=c&&this.refresh(),b>=d)return g!=(a=f[f.length-1])&&this.activate(a);if(g&&b<e[0])return this.activeTarget=null,this.clear();for(a=e.length;a--;)g!=f[a]&&b>=e[a]&&(void 0===e[a+1]||b<e[a+1])&&this.activate(f[a])},b.prototype.activate=function(b){this.activeTarget=b,this.clear();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.bs.scrollspy")},b.prototype.clear=function(){a(this.selector).parentsUntil(this.options.target,".active").removeClass("active")};var d=a.fn.scrollspy;a.fn.scrollspy=c,a.fn.scrollspy.Constructor=b,a.fn.scrollspy.noConflict=function(){return a.fn.scrollspy=d,this},a(window).on("load.bs.scrollspy.data-api",function(){a('[data-spy="scroll"]').each(function(){var b=a(this);c.call(b,b.data())})})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.tab");e||d.data("bs.tab",e=new c(this)),"string"==typeof b&&e[b]()})}var c=function(b){this.element=a(b)};c.VERSION="3.3.4",c.TRANSITION_DURATION=150,c.prototype.show=function(){var b=this.element,c=b.closest("ul:not(.dropdown-menu)"),d=b.data("target");if(d||(d=b.attr("href"),d=d&&d.replace(/.*(?=#[^\s]*$)/,"")),!b.parent("li").hasClass("active")){
|
7 |
+
var e=c.find(".active:last a"),f=a.Event("hide.bs.tab",{relatedTarget:b[0]}),g=a.Event("show.bs.tab",{relatedTarget:e[0]});if(e.trigger(f),b.trigger(g),!g.isDefaultPrevented()&&!f.isDefaultPrevented()){var h=a(d);this.activate(b.closest("li"),c),this.activate(h,h.parent(),function(){e.trigger({type:"hidden.bs.tab",relatedTarget:b[0]}),b.trigger({type:"shown.bs.tab",relatedTarget:e[0]})})}}},c.prototype.activate=function(b,d,e){function f(){g.removeClass("active").find("> .dropdown-menu > .active").removeClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!1),b.addClass("active").find('[data-toggle="tab"]').attr("aria-expanded",!0),h?(b[0].offsetWidth,b.addClass("in")):b.removeClass("fade"),b.parent(".dropdown-menu").length&&b.closest("li.dropdown").addClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!0),e&&e()}var g=d.find("> .active"),h=e&&a.support.transition&&(g.length&&g.hasClass("fade")||!!d.find("> .fade").length);g.length&&h?g.one("bsTransitionEnd",f).emulateTransitionEnd(c.TRANSITION_DURATION):f(),g.removeClass("in")};var d=a.fn.tab;a.fn.tab=b,a.fn.tab.Constructor=c,a.fn.tab.noConflict=function(){return a.fn.tab=d,this};var e=function(c){c.preventDefault(),b.call(a(this),"show")};a(document).on("click.bs.tab.data-api",'[data-toggle="tab"]',e).on("click.bs.tab.data-api",'[data-toggle="pill"]',e)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.affix"),f="object"==typeof b&&b;e||d.data("bs.affix",e=new c(this,f)),"string"==typeof b&&e[b]()})}var c=function(b,d){this.options=a.extend({},c.DEFAULTS,d),this.$target=a(this.options.target).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(b),this.affixed=null,this.unpin=null,this.pinnedOffset=null,this.checkPosition()};c.VERSION="3.3.4",c.RESET="affix affix-top affix-bottom",c.DEFAULTS={offset:0,target:window},c.prototype.getState=function(a,b,c,d){var e=this.$target.scrollTop(),f=this.$element.offset(),g=this.$target.height();if(null!=c&&"top"==this.affixed)return c>e?"top":!1;if("bottom"==this.affixed)return null!=c?e+this.unpin<=f.top?!1:"bottom":a-d>=e+g?!1:"bottom";var h=null==this.affixed,i=h?e:f.top,j=h?g:b;return null!=c&&c>=e?"top":null!=d&&i+j>=a-d?"bottom":!1},c.prototype.getPinnedOffset=function(){if(this.pinnedOffset)return this.pinnedOffset;this.$element.removeClass(c.RESET).addClass("affix");var a=this.$target.scrollTop(),b=this.$element.offset();return this.pinnedOffset=b.top-a},c.prototype.checkPositionWithEventLoop=function(){setTimeout(a.proxy(this.checkPosition,this),1)},c.prototype.checkPosition=function(){if(this.$element.is(":visible")){var b=this.$element.height(),d=this.options.offset,e=d.top,f=d.bottom,g=a(document.body).height();"object"!=typeof d&&(f=e=d),"function"==typeof e&&(e=d.top(this.$element)),"function"==typeof f&&(f=d.bottom(this.$element));var h=this.getState(g,b,e,f);if(this.affixed!=h){null!=this.unpin&&this.$element.css("top","");var i="affix"+(h?"-"+h:""),j=a.Event(i+".bs.affix");if(this.$element.trigger(j),j.isDefaultPrevented())return;this.affixed=h,this.unpin="bottom"==h?this.getPinnedOffset():null,this.$element.removeClass(c.RESET).addClass(i).trigger(i.replace("affix","affixed")+".bs.affix")}"bottom"==h&&this.$element.offset({top:g-b-f})}};var d=a.fn.affix;a.fn.affix=b,a.fn.affix.Constructor=c,a.fn.affix.noConflict=function(){return a.fn.affix=d,this},a(window).on("load",function(){a('[data-spy="affix"]').each(function(){var c=a(this),d=c.data();d.offset=d.offset||{},null!=d.offsetBottom&&(d.offset.bottom=d.offsetBottom),null!=d.offsetTop&&(d.offset.top=d.offsetTop),b.call(c,d)})})}(jQuery);
|
bootstrap/js/npm.js
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
// This file is autogenerated via the `commonjs` Grunt task. You can require() this file in a CommonJS environment.
|
2 |
+
require('../../js/transition.js')
|
3 |
+
require('../../js/alert.js')
|
4 |
+
require('../../js/button.js')
|
5 |
+
require('../../js/carousel.js')
|
6 |
+
require('../../js/collapse.js')
|
7 |
+
require('../../js/dropdown.js')
|
8 |
+
require('../../js/modal.js')
|
9 |
+
require('../../js/tooltip.js')
|
10 |
+
require('../../js/popover.js')
|
11 |
+
require('../../js/scrollspy.js')
|
12 |
+
require('../../js/tab.js')
|
13 |
+
require('../../js/affix.js')
|
common_helpers.php
ADDED
@@ -0,0 +1,267 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/*-------------------------------------------*/
|
3 |
+
/* basic setting
|
4 |
+
/*-------------------------------------------*/
|
5 |
+
/* Chack use post top page
|
6 |
+
/*-------------------------------------------*/
|
7 |
+
/* Chack post type info
|
8 |
+
/*-------------------------------------------*/
|
9 |
+
/* Head title
|
10 |
+
/*-------------------------------------------*/
|
11 |
+
/* Page description
|
12 |
+
/*-------------------------------------------*/
|
13 |
+
/* Archive title
|
14 |
+
/*-------------------------------------------*/
|
15 |
+
|
16 |
+
/*-------------------------------------------*/
|
17 |
+
/* basic setting
|
18 |
+
/*-------------------------------------------*/
|
19 |
+
function vkExUnit_get_name() {
|
20 |
+
$system_name = 'VK All in one Expansion Unit';
|
21 |
+
return $system_name;
|
22 |
+
}
|
23 |
+
function vkExUnit_get_short_name() {
|
24 |
+
$short_name = 'VK';
|
25 |
+
return $short_name;
|
26 |
+
}
|
27 |
+
function vkExUnit_get_capability_required(){
|
28 |
+
$capability_required = 'activate_plugins';
|
29 |
+
return $capability_required;
|
30 |
+
}
|
31 |
+
/*-------------------------------------------*/
|
32 |
+
/* Chack use post top page
|
33 |
+
/*-------------------------------------------*/
|
34 |
+
function vkExUnit_get_page_for_posts(){
|
35 |
+
// Get post top page by setting display page.
|
36 |
+
$page_for_posts['post_top_id'] = get_option('page_for_posts');
|
37 |
+
|
38 |
+
// Set use post top page flag.
|
39 |
+
$page_for_posts['post_top_use'] = ( isset($page_for_posts['post_top_id']) && $page_for_posts['post_top_id'] ) ? true : false ;
|
40 |
+
|
41 |
+
// When use post top page that get post top page name.
|
42 |
+
$page_for_posts['post_top_name'] = ( $page_for_posts['post_top_use'] ) ? get_the_title( $page_for_posts['post_top_id'] ) : '';
|
43 |
+
|
44 |
+
return $page_for_posts;
|
45 |
+
}
|
46 |
+
|
47 |
+
/*-------------------------------------------*/
|
48 |
+
/* Chack post type info
|
49 |
+
/*-------------------------------------------*/
|
50 |
+
function vkExUnit_get_post_type(){
|
51 |
+
|
52 |
+
$page_for_posts = vkExUnit_get_page_for_posts();
|
53 |
+
|
54 |
+
// Get post type slug
|
55 |
+
/*-------------------------------------------*/
|
56 |
+
$postType['slug'] = get_post_type();
|
57 |
+
if ( !$postType['slug'] ) {
|
58 |
+
global $wp_query;
|
59 |
+
if ($wp_query->query_vars['post_type']) {
|
60 |
+
$postType['slug'] = $wp_query->query_vars['post_type'];
|
61 |
+
} else {
|
62 |
+
// Case of tax archive and no posts
|
63 |
+
$taxonomy = get_queried_object()->taxonomy;
|
64 |
+
$postType['slug'] = get_taxonomy( $taxonomy )->object_type[0];
|
65 |
+
}
|
66 |
+
}
|
67 |
+
|
68 |
+
// Get post type name
|
69 |
+
/*-------------------------------------------*/
|
70 |
+
$post_type_object = get_post_type_object($postType['slug']);
|
71 |
+
if($post_type_object){
|
72 |
+
if ( $page_for_posts['post_top_use'] && $postType['slug'] == 'post' ){
|
73 |
+
$postType['name'] = esc_html( get_the_title($page_for_posts['post_top_id']) );
|
74 |
+
} else {
|
75 |
+
$postType['name'] = esc_html($post_type_object->labels->name);
|
76 |
+
}
|
77 |
+
}
|
78 |
+
|
79 |
+
// Get post type archive url
|
80 |
+
/*-------------------------------------------*/
|
81 |
+
if ( $page_for_posts['post_top_use'] && $postType['slug'] == 'post' ){
|
82 |
+
$postType['url'] = get_the_permalink($page_for_posts['post_top_id']);
|
83 |
+
} else {
|
84 |
+
$postType['url'] = home_url().'/?post_type='.$postType['slug'];
|
85 |
+
}
|
86 |
+
|
87 |
+
$postType = apply_filters('vkExUnit_postType_custom',$postType);
|
88 |
+
return $postType;
|
89 |
+
}
|
90 |
+
/*-------------------------------------------*/
|
91 |
+
/* Head title
|
92 |
+
/*-------------------------------------------*/
|
93 |
+
function vkExUnit_get_wp_head_title(){
|
94 |
+
global $wp_query;
|
95 |
+
$post = $wp_query->get_queried_object();
|
96 |
+
$sep = ' | ';
|
97 |
+
$sep = apply_filters( 'vkExUnit_get_wp_head_title', $sep );
|
98 |
+
|
99 |
+
if (is_front_page()) {
|
100 |
+
$title = get_bloginfo('name');
|
101 |
+
} else if ( is_home() && !is_front_page()) {
|
102 |
+
$title = vkExUnit_get_the_archive_title().$sep.get_bloginfo('name');
|
103 |
+
} else if ( is_archive() ) {
|
104 |
+
$title = vkExUnit_get_the_archive_title().$sep.get_bloginfo('name');
|
105 |
+
// Page
|
106 |
+
} else if (is_page()) {
|
107 |
+
// Sub Pages
|
108 |
+
if ( $post->post_parent ) {
|
109 |
+
if($post->ancestors){
|
110 |
+
foreach($post->ancestors as $post_anc_id){
|
111 |
+
$post_id = $post_anc_id;
|
112 |
+
}
|
113 |
+
} else {
|
114 |
+
$post_id = $post->ID;
|
115 |
+
}
|
116 |
+
$title = get_the_title().$sep.get_the_title($post_id).$sep.get_bloginfo('name');
|
117 |
+
// Not Sub Pages
|
118 |
+
} else {
|
119 |
+
$title = get_the_title().$sep.get_bloginfo('name');
|
120 |
+
}
|
121 |
+
} else if ( is_single() || is_attachment() ){
|
122 |
+
$title = get_the_title().$sep.get_bloginfo('name');
|
123 |
+
|
124 |
+
// Search
|
125 |
+
} else if ( is_search() ){
|
126 |
+
$title = sprintf(__('Search Results for : %s', 'vkExUnit'),get_search_query()).$sep.get_bloginfo('name');
|
127 |
+
// 404
|
128 |
+
} else if (is_404()){
|
129 |
+
$title = __('Not found', 'vkExUnit').$sep.get_bloginfo('name');
|
130 |
+
// Other
|
131 |
+
} else {
|
132 |
+
$title = get_bloginfo('name');
|
133 |
+
}
|
134 |
+
|
135 |
+
// Add Page numner.
|
136 |
+
global $paged;
|
137 |
+
if ( $paged >= 2 ){
|
138 |
+
$title = '['.sprintf(__('Page of %s', 'vkExUnit' ),$paged).'] '.$title;
|
139 |
+
}
|
140 |
+
|
141 |
+
$title = apply_filters( 'vkExUnit_get_wp_head_title', $title );
|
142 |
+
|
143 |
+
// Remove Tags(ex:<i>) & return
|
144 |
+
return strip_tags($title);
|
145 |
+
}
|
146 |
+
|
147 |
+
|
148 |
+
/*-------------------------------------------*/
|
149 |
+
/* Page description
|
150 |
+
/*-------------------------------------------*/
|
151 |
+
function vkExUnit_get_pageDescription() {
|
152 |
+
global $wp_query;
|
153 |
+
$post = $wp_query->get_queried_object();
|
154 |
+
if (is_home() || is_front_page() ) {
|
155 |
+
if ( isset($post->post_excerpt) && $post->post_excerpt ) {
|
156 |
+
$pageDescription = get_the_excerpt();
|
157 |
+
} else {
|
158 |
+
$pageDescription = get_bloginfo( 'description' );
|
159 |
+
}
|
160 |
+
} else if (is_category() || is_tax()) {
|
161 |
+
if ( ! $post->description ) {
|
162 |
+
$pageDescription = sprintf(__('About %s', 'vkExUnit'),single_cat_title('',false)).' '.get_bloginfo('name').' '.get_bloginfo('description');
|
163 |
+
} else {
|
164 |
+
$pageDescription = $post->description;
|
165 |
+
}
|
166 |
+
} else if (is_tag()) {
|
167 |
+
$pageDescription = strip_tags(tag_description());
|
168 |
+
$pageDescription = str_replace(array("\r\n","\r","\n"), '', $pageDescription); // delete br
|
169 |
+
if ( ! $pageDescription ) {
|
170 |
+
$pageDescription = sprintf(__('About %s', 'vkExUnit'),single_tag_title('',false)).' '.get_bloginfo('name').' '.get_bloginfo('description');
|
171 |
+
}
|
172 |
+
} else if (is_archive()) {
|
173 |
+
if (is_year()){
|
174 |
+
$description_date = get_the_date( _x( 'Y', 'yearly archives date format', 'vkExUnit' ) );
|
175 |
+
$pageDescription = sprintf(_x('Article of %s.','Yearly archive description', 'vkExUnit'), $description_date );
|
176 |
+
$pageDescription .= ' '.get_bloginfo('name').' '.get_bloginfo('description');
|
177 |
+
} else if (is_month()){
|
178 |
+
$description_date = get_the_date( _x( 'F Y', 'monthly archives date format', 'vkExUnit' ) );
|
179 |
+
$pageDescription = sprintf(_x('Article of %s.','Archive description', 'vkExUnit'),$description_date );
|
180 |
+
$pageDescription .= ' '.get_bloginfo('name').' '.get_bloginfo('description');
|
181 |
+
} else if (is_author()) {
|
182 |
+
$userObj = get_queried_object();
|
183 |
+
$pageDescription = sprintf(_x('Article of %s.','Archive description', 'vkExUnit'),esc_html($userObj->display_name) );
|
184 |
+
$pageDescription .= ' '.get_bloginfo('name').' '.get_bloginfo('description');
|
185 |
+
} else {
|
186 |
+
$postType = get_post_type();
|
187 |
+
$pageDescription = sprintf(_x('Article of %s.','Archive description', 'vkExUnit'),esc_html(get_post_type_object($postType)->labels->name) );
|
188 |
+
$pageDescription .= ' '.get_bloginfo('name').' '.get_bloginfo('description');
|
189 |
+
}
|
190 |
+
} else if (is_page() || is_single()) {
|
191 |
+
$metaExcerpt = $post->post_excerpt;
|
192 |
+
if ($metaExcerpt) {
|
193 |
+
$pageDescription = $metaExcerpt;
|
194 |
+
} else {
|
195 |
+
$pageDescription = mb_substr( strip_tags($post->post_content), 0, 240 ); // kill tags and trim 240 chara
|
196 |
+
}
|
197 |
+
} else {
|
198 |
+
$pageDescription = get_bloginfo('description');
|
199 |
+
}
|
200 |
+
global $paged;
|
201 |
+
if ( $paged != '0'){
|
202 |
+
$pageDescription = '['.sprintf(__('Page of %s', 'vkExUnit' ),$paged).'] '.$pageDescription;
|
203 |
+
}
|
204 |
+
$pageDescription = apply_filters( 'vkExUnit_pageDescriptionCustom', $pageDescription );
|
205 |
+
$pageDescription = esc_html(strip_tags($pageDescription));
|
206 |
+
// Delete Line break
|
207 |
+
$pageDescription = str_replace(array("\r", "\n"), ' ', $pageDescription);
|
208 |
+
return $pageDescription;
|
209 |
+
}
|
210 |
+
|
211 |
+
/*-------------------------------------------*/
|
212 |
+
/* Archive title
|
213 |
+
/*-------------------------------------------*/
|
214 |
+
|
215 |
+
function vkExUnit_get_the_archive_title(){
|
216 |
+
if ( is_category() ) {
|
217 |
+
$title = single_cat_title( '', false );
|
218 |
+
} elseif ( is_tag() ) {
|
219 |
+
$title = single_tag_title( '', false );
|
220 |
+
} elseif ( is_author() ) {
|
221 |
+
$title = sprintf( __( 'Author: %s', 'vkExUnit' ), '<span class="vcard">' . get_the_author() . '</span>' );
|
222 |
+
} elseif ( is_year() ) {
|
223 |
+
$title = get_the_date( _x( 'Y', 'yearly archives date format', 'vkExUnit' ) );
|
224 |
+
} elseif ( is_month() ) {
|
225 |
+
$title = get_the_date( _x( 'F Y', 'monthly archives date format', 'vkExUnit' ) );
|
226 |
+
} elseif ( is_day() ) {
|
227 |
+
$title = get_the_date( _x( 'F j, Y', 'daily archives date format', 'vkExUnit' ) );
|
228 |
+
} elseif ( is_tax( 'post_format' ) ) {
|
229 |
+
if ( is_tax( 'post_format', 'post-format-aside' ) ) {
|
230 |
+
$title = _x( 'Asides', 'post format archive title' );
|
231 |
+
} elseif ( is_tax( 'post_format', 'post-format-gallery' ) ) {
|
232 |
+
$title = _x( 'Galleries', 'post format archive title' );
|
233 |
+
} elseif ( is_tax( 'post_format', 'post-format-image' ) ) {
|
234 |
+
$title = _x( 'Images', 'post format archive title' );
|
235 |
+
} elseif ( is_tax( 'post_format', 'post-format-video' ) ) {
|
236 |
+
$title = _x( 'Videos', 'post format archive title' );
|
237 |
+
} elseif ( is_tax( 'post_format', 'post-format-quote' ) ) {
|
238 |
+
$title = _x( 'Quotes', 'post format archive title' );
|
239 |
+
} elseif ( is_tax( 'post_format', 'post-format-link' ) ) {
|
240 |
+
$title = _x( 'Links', 'post format archive title' );
|
241 |
+
} elseif ( is_tax( 'post_format', 'post-format-status' ) ) {
|
242 |
+
$title = _x( 'Statuses', 'post format archive title' );
|
243 |
+
} elseif ( is_tax( 'post_format', 'post-format-audio' ) ) {
|
244 |
+
$title = _x( 'Audio', 'post format archive title' );
|
245 |
+
} elseif ( is_tax( 'post_format', 'post-format-chat' ) ) {
|
246 |
+
$title = _x( 'Chats', 'post format archive title' );
|
247 |
+
}
|
248 |
+
} elseif ( is_post_type_archive() ) {
|
249 |
+
$title = post_type_archive_title( '', false );
|
250 |
+
} elseif ( is_tax() ) {
|
251 |
+
$title = single_term_title( '', false );
|
252 |
+
} elseif ( is_home() && !is_front_page() ){
|
253 |
+
$vkExUnit_page_for_posts = vkExUnit_get_page_for_posts();
|
254 |
+
$title = $vkExUnit_page_for_posts['post_top_name'];
|
255 |
+
} else {
|
256 |
+
global $wp_query;
|
257 |
+
// get post type
|
258 |
+
$postType = $wp_query->query_vars['post_type'];
|
259 |
+
if ( $postType ) {
|
260 |
+
$title = get_post_type_object($postType)->labels->name;
|
261 |
+
} else {
|
262 |
+
$title = __( 'Archives', 'vkExUnit' );
|
263 |
+
}
|
264 |
+
}
|
265 |
+
|
266 |
+
return apply_filters( 'vkExUnit_get_the_archive_title', $title );
|
267 |
+
}
|
common_init.php
ADDED
@@ -0,0 +1,67 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
function vkExUnit_common_options_init() {
|
3 |
+
if ( false === vkExUnit_get_common_options() )
|
4 |
+
add_option( 'vkExUnit_common_options', vkExUnit_get_common_options_default() );
|
5 |
+
register_setting(
|
6 |
+
'vkExUnit_common_options_fields', // Immediately following form tag of edit page.
|
7 |
+
'vkExUnit_common_options', // name attr
|
8 |
+
'vkExUnit_common_options_validate'
|
9 |
+
);
|
10 |
+
}
|
11 |
+
add_action( 'admin_init', 'vkExUnit_common_options_init' );
|
12 |
+
|
13 |
+
function vkExUnit_get_common_options() {
|
14 |
+
$options = get_option( 'vkExUnit_common_options', vkExUnit_get_common_options_default() );
|
15 |
+
$options_dafault = vkExUnit_get_common_options_default();
|
16 |
+
// foreach ($options_dafault as $key => $value) {
|
17 |
+
// if (isset($options[$key])) {
|
18 |
+
// $options[$key] = $options[$key];
|
19 |
+
// } else {
|
20 |
+
// $options[$key] = $options_dafault[$key];
|
21 |
+
// }
|
22 |
+
// }
|
23 |
+
return apply_filters( 'vkExUnit_common_options', $options );
|
24 |
+
}
|
25 |
+
|
26 |
+
function vkExUnit_get_common_options_default() {
|
27 |
+
$default_options = array(
|
28 |
+
'active_bootstrap' => false,
|
29 |
+
'active_fontawesome' => false,
|
30 |
+
'active_metaDescription' => true,
|
31 |
+
'active_metaKeyword' => true,
|
32 |
+
'active_wpTitle' => true,
|
33 |
+
'active_sns' => true,
|
34 |
+
'active_ga' => true,
|
35 |
+
'active_relatedPosts' => true,
|
36 |
+
'active_childPageIndex' => true,
|
37 |
+
'active_otherWidgets' => true,
|
38 |
+
'active_css_customize' => true,
|
39 |
+
'active_auto_eyecatch' => true,
|
40 |
+
'active_sitemap_page' => true
|
41 |
+
);
|
42 |
+
return apply_filters( 'vkExUnit_common_options_default', $default_options );
|
43 |
+
}
|
44 |
+
|
45 |
+
/*-------------------------------------------*/
|
46 |
+
/* validate
|
47 |
+
/*-------------------------------------------*/
|
48 |
+
|
49 |
+
function vkExUnit_common_options_validate( $input ) {
|
50 |
+
$output = $defaults = vkExUnit_get_common_options_default();
|
51 |
+
$output['active_bootstrap'] = (isset($input['active_bootstrap'])) ? true:false;
|
52 |
+
$output['active_fontawesome'] = (isset($input['active_fontawesome'])) ? true:false;
|
53 |
+
$output['active_metaDescription'] = (isset($input['active_metaDescription'])) ? true:false;
|
54 |
+
$output['active_metaKeyword'] = (isset($input['active_metaKeyword'])) ? true:false;
|
55 |
+
$output['active_icon'] = (isset($input['active_icon'])) ? true:false;
|
56 |
+
$output['active_wpTitle'] = (isset($input['active_wpTitle'])) ? true:false;
|
57 |
+
$output['active_sns'] = (isset($input['active_sns'])) ? true:false;
|
58 |
+
$output['active_ga'] = (isset($input['active_ga'])) ? true:false;
|
59 |
+
$output['active_relatedPosts'] = (isset($input['active_relatedPosts'])) ? true:false;
|
60 |
+
$output['active_childPageIndex'] = (isset($input['active_childPageIndex'])) ? true:false;
|
61 |
+
$output['active_otherWidgets'] = (isset($input['active_otherWidgets'])) ? true:false;
|
62 |
+
$output['active_css_customize'] = (isset($input['active_css_customize'])) ? true:false;
|
63 |
+
$output['active_auto_eyecatch'] = (isset($input['active_auto_eyecatch'])) ? true:false;
|
64 |
+
$output['active_sitemap_page'] = (isset($input['active_sitemap_page'])) ? true:false;
|
65 |
+
|
66 |
+
return apply_filters( 'vkExUnit_common_options_validate', $output, $input, $defaults );
|
67 |
+
}
|
config.rb
ADDED
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
http_path = "/"
|
2 |
+
css_dir = "css"
|
3 |
+
sass_dir = "_scss"
|
4 |
+
images_dir = "images"
|
5 |
+
javascripts_dir = "js"
|
6 |
+
output_style = :compact
|
7 |
+
#output_style = :compressed
|
8 |
+
line_comments = false
|
9 |
+
#sass_options = {:debug_info => false}
|
css/admin.css
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
table.wp-list-table { margin-right: 10%; }
|
2 |
+
|
3 |
+
.optionNav { display: block !important; overflow: hidden; }
|
4 |
+
|
5 |
+
.optionNav ul { display: block; overflow: hidden; margin: 0; padding: 0 5px; }
|
6 |
+
|
7 |
+
.optionNav ul li { display: block; float: left; border-radius: 3px 3px 0 0; border: 1px solid #ccc; border-bottom: none; margin-right: 2px; margin-bottom: 0; }
|
8 |
+
|
9 |
+
.optionNav ul li:hover { background-color: #666; }
|
10 |
+
|
11 |
+
.optionNav ul li a { display: block; overflow: hidden; padding: 0.5em; text-decoration: none; color: #666; font-size: 12px; }
|
12 |
+
|
13 |
+
.optionNav ul li:hover a { color: #fff; border: none; }
|
14 |
+
|
15 |
+
.optionNav ul li.current { background-color: #333; color: #fff; }
|
16 |
+
.optionNav ul li.current a { color: #fff; }
|
17 |
+
|
18 |
+
.vkExUnit_admin_page.wrap h3 { background-color: #333; color: #fff; padding: 10px 15px; font-size: 150%; margin-top: 0; border-left: 5px solid #e50000; }
|
css/style.css
ADDED
@@ -0,0 +1,170 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/* .media(bootstrap)
|
2 |
+
/*-------------------------------------------*/
|
3 |
+
.media { border-bottom: 1px solid #e5e5e5; padding: 2em 0; margin-top: 0; }
|
4 |
+
.media:first-child { border-top: 1px solid #e5e5e5; }
|
5 |
+
.media .postList_thumbnail { width: 160px; margin-bottom: 0.5em; padding-right: 30px; display: block; overflow: hidden; float: left; }
|
6 |
+
.media .postList_thumbnail a { position: relative; display: block; overflow: hidden; }
|
7 |
+
.media .postList_thumbnail img { width: 100%; height: auto; }
|
8 |
+
.media .postList_thumbnail .postList_cateLabel { position: absolute; bottom: 0; left: 0; }
|
9 |
+
.media .media-body .media-heading { font-size: 1.8em; line-height: 1.3em; margin-top: 0; margin-bottom: 0.5em; font-weight: normal; }
|
10 |
+
.media .media-body .media-heading a { color: #464646; }
|
11 |
+
.media .media-body .media-heading a:hover { text-decoration: none; }
|
12 |
+
.media .media-body p { margin-bottom: 0; }
|
13 |
+
.media .media-body a.media-body_excerpt { color: #464646; }
|
14 |
+
|
15 |
+
@media (max-width: 767px) { .media .postList_thumbnail { padding-right: 20px; }
|
16 |
+
.media .media-body .media-heading { font-size: 1.2em; line-height: 1.3em; margin-bottom: 0.5em; } }
|
17 |
+
@media (max-width: 500px) { .media .postList_thumbnail { width: 100px; } }
|
18 |
+
/*-------------------------------------------------*/
|
19 |
+
/* ex_unit
|
20 |
+
/*-------------------------------------------------*/
|
21 |
+
/* .common
|
22 |
+
/*-------------------------------------------*/
|
23 |
+
/* .autoEyeCatchBox
|
24 |
+
/*-------------------------------------------*/
|
25 |
+
/* .sitemap
|
26 |
+
/*-------------------------------------------*/
|
27 |
+
/* fb Page Plugin
|
28 |
+
/*-------------------------------------------*/
|
29 |
+
/* .socialSet
|
30 |
+
/*-------------------------------------------*/
|
31 |
+
/* Profile wiget Plugin
|
32 |
+
/*-------------------------------------------*/
|
33 |
+
/* 3PR area wiget Plugin
|
34 |
+
/*-------------------------------------------*/
|
35 |
+
/* childPageIndex Plugin
|
36 |
+
/*-------------------------------------------*/
|
37 |
+
/*-------------------------------------------*/
|
38 |
+
/* .common
|
39 |
+
/*-------------------------------------------*/
|
40 |
+
.link-list li { padding: 0.5em; }
|
41 |
+
|
42 |
+
/*-------------------------------------------*/
|
43 |
+
/* .autoEyeCatchBox
|
44 |
+
/*-------------------------------------------*/
|
45 |
+
.autoEyeCatchBox { display: block; overflow: hidden; margin-bottom: 2em; }
|
46 |
+
|
47 |
+
/*-------------------------------------------*/
|
48 |
+
/* .sitemap
|
49 |
+
/*-------------------------------------------*/
|
50 |
+
.sitemap .sectionBox { padding-top: 0; }
|
51 |
+
|
52 |
+
.sitemap .sitemap-col { padding-bottom: 2em; }
|
53 |
+
|
54 |
+
/*-------------------------------------------*/
|
55 |
+
/* fb Page Plugin
|
56 |
+
/*-------------------------------------------*/
|
57 |
+
.fb-like-box { margin: 0 auto; border: 4px solid #efefef; background-color: #f9f9f9; text-align: center; }
|
58 |
+
|
59 |
+
.twitter-timeline iframe { margin-right: auto; margin-left: auto; }
|
60 |
+
|
61 |
+
.vkContentAddSection { display: block; clear: both; overflow: hidden; padding-top: 20px; }
|
62 |
+
|
63 |
+
/*-------------------------------------------*/
|
64 |
+
/* .socialSet
|
65 |
+
/*-------------------------------------------*/
|
66 |
+
.socialSet ul { margin: 0px; padding: 0; }
|
67 |
+
|
68 |
+
.socialSet ul li { position: relative; display: block; float: left; overflow: visible; margin-right: 10px; padding: 0px; background: none; }
|
69 |
+
|
70 |
+
.socialSet ul li.sb_icon a { display: block; overflow: hidden; padding: 3px 5px 0px; border: 1px solid #ccc; border-radius: 3px; background-color: #fff; color: #333; text-decoration: none; line-height: 100%; }
|
71 |
+
|
72 |
+
.socialSet ul li.sb_icon a .sns_txt { position: relative; top: -2px; font-size: 11px; }
|
73 |
+
|
74 |
+
.socialSet ul li iframe { border: none; }
|
75 |
+
|
76 |
+
.socialSet ul li a .icon_sns { margin-right: 5px; font-size: 100%; }
|
77 |
+
|
78 |
+
.socialSet ul li.sb_icon.sb_facebook .icon_sns { color: #425dab; }
|
79 |
+
|
80 |
+
.socialSet ul li.sb_icon.sb_hatena .icon_sns { color: #2c6ebd; }
|
81 |
+
|
82 |
+
.socialSet ul li.sb_icon.sb_twitter .icon_sns { color: #00abec; }
|
83 |
+
|
84 |
+
.socialSet ul li.sb_icon.sb_google .icon_sns { color: #dd4b39; }
|
85 |
+
|
86 |
+
.socialSet ul li.sb_icon.sb_line .icon_sns { color: #6ebd30; }
|
87 |
+
|
88 |
+
.socialSet ul li.sb_pocket { margin-left: 5px; }
|
89 |
+
|
90 |
+
.relatedPosts h2 { margin-bottom: 10px; }
|
91 |
+
|
92 |
+
.followSet { display: block; overflow: hidden; margin-top: 20px; padding: 15px; border: 1px solid #f5f5f5; background-color: #efefef; }
|
93 |
+
|
94 |
+
.followSet h3.followSet_title { padding: 6px 10px 4px; border: none; background-color: #333; color: #fff; font-size: 18px; }
|
95 |
+
.followSet h3.followSet_title:after { border: none; }
|
96 |
+
|
97 |
+
.follow_btn { float: left; margin-right: 20px; }
|
98 |
+
|
99 |
+
/*-------------------------------------------*/
|
100 |
+
/* import icon
|
101 |
+
/*-------------------------------------------*/
|
102 |
+
@font-face { font-weight: normal; font-style: normal; font-family: 'vk_sns'; src: url("../plugins/sns/icons/fonts/vk_sns.eot?-bq20cj"); src: url("../plugins/sns/icons/fonts/vk_sns.eot?#iefix-bq20cj") format("embedded-opentype"), url("../plugins/sns/icons/fonts/vk_sns.woff?-bq20cj") format("woff"), url("../plugins/sns/icons/fonts/vk_sns.ttf?-bq20cj") format("truetype"), url("../plugins/sns/icons/fonts/vk_sns.svg?-bq20cj#vk_sns") format("svg"); }
|
103 |
+
[class^="vk_icon_w_r_sns_"], [class*=" vk_icon_w_r_sns_"] { text-transform: none; font-weight: normal; font-style: normal; font-variant: normal; font-family: 'vk_sns'; line-height: 1; /* Better Font Rendering =========== */ speak: none; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
|
104 |
+
|
105 |
+
.vk_icon_w_r_sns_twitter:before { content: "\e600"; }
|
106 |
+
|
107 |
+
.vk_icon_w_r_sns_line:before { content: "\e601"; }
|
108 |
+
|
109 |
+
.vk_icon_w_r_sns_hatena:before { content: "\e602"; }
|
110 |
+
|
111 |
+
.vk_icon_w_r_sns_google:before { content: "\e603"; }
|
112 |
+
|
113 |
+
.vk_icon_w_r_sns_fb:before { content: "\e604"; }
|
114 |
+
|
115 |
+
/*-------------------------------------------*/
|
116 |
+
/* Profile wiget Plugin
|
117 |
+
/*-------------------------------------------*/
|
118 |
+
.profile_media { display: block; overflow: hidden; margin: 0.8em auto; max-width: 100px; border-radius: 100px; }
|
119 |
+
|
120 |
+
.profile_text { margin-bottom: 0.5em; font-size: 14px; }
|
121 |
+
|
122 |
+
.sns_btns { margin: 0; padding: 0; width: 100%; }
|
123 |
+
.sns_btns li { float: left; margin-right: 0.45em; list-style: none; text-align: center; }
|
124 |
+
.sns_btns a { display: block; display: table; width: 45px; height: 45px; border-radius: 23px; color: #fff; text-decoration: none; font-size: 20px; }
|
125 |
+
.sns_btns a:hover { color: #fff; text-decoration: none; opacity: 0.8; }
|
126 |
+
.sns_btns .fa { display: table-cell; vertical-align: middle; text-align: center; }
|
127 |
+
.sns_btns .facebook_btn a { background: #3b5998; }
|
128 |
+
.sns_btns .twitter_btn a { background: #55acee; }
|
129 |
+
.sns_btns .mail_btn a { background: #2F915F; }
|
130 |
+
.sns_btns .youtube_btn a { background: #C81D1C; }
|
131 |
+
.sns_btns .rss_btn a { background: #f26522; }
|
132 |
+
.sns_btns .instagram_btn a { background: #3f729b; }
|
133 |
+
.sns_btns .linkedin_btn a { background: #0077b5; }
|
134 |
+
|
135 |
+
/*-------------------------------------------*/
|
136 |
+
/* 3PR area wiget Plugin
|
137 |
+
/*-------------------------------------------*/
|
138 |
+
.prBox .subSection-title { font-size: 18px; }
|
139 |
+
.prBox .media_pr { margin-bottom: 0.5em; }
|
140 |
+
.prBox .media_pc { display: block; }
|
141 |
+
.prBox .media_sp { display: none; }
|
142 |
+
.prBox .summary { margin-bottom: 0.5em; font-size: 14px; line-height: 1.4em; }
|
143 |
+
.prBox .linkurl a { text-decoration: none; }
|
144 |
+
|
145 |
+
@media screen and (max-width: 992px) { .prBox .media_pc { display: none; }
|
146 |
+
.prBox .media_sp { display: block; }
|
147 |
+
.prBox .linkurl { margin-bottom: 1.5em; } }
|
148 |
+
/*-------------------------------------------*/
|
149 |
+
/* childPageIndex Plugin
|
150 |
+
/*-------------------------------------------*/
|
151 |
+
.childPage_list { margin-top: 4em; }
|
152 |
+
.childPage_list a:hover { text-decoration: none; }
|
153 |
+
|
154 |
+
.childPage_list_box { position: relative; margin-bottom: 2.5em; }
|
155 |
+
.childPage_list_box .childPage_list_title { font-size: 16px; line-height: 1.4; }
|
156 |
+
.childPage_list_box .wp-post-image { float: left; margin-right: 1em; width: 30%; border: solid 1px #ddd; }
|
157 |
+
.childPage_list_box .childPage_list_body { overflow: hidden; color: #333; font-size: 14px; }
|
158 |
+
.childPage_list_box .childPage_list_body:hover { text-decoration: underline; }
|
159 |
+
.childPage_list_box .childPage_list_text { overflow: hidden; margin-bottom: 0; }
|
160 |
+
.childPage_list_box .childPage_list_more { float: right; margin-top: 1.5em; }
|
161 |
+
|
162 |
+
@media screen and (max-width: 992px) { .childPage_list_box .wp-post-image { float: left; margin-right: 1em; width: 25%; border: solid 1px #ddd; } }
|
163 |
+
/*-------------------------------------------*/
|
164 |
+
/* sitemap page Plugin
|
165 |
+
/*-------------------------------------------*/
|
166 |
+
.sitemap-col { margin-top: 2.5em; }
|
167 |
+
.sitemap-col .link-list { margin-top: 0; margin-bottom: 0; }
|
168 |
+
.sitemap-col .page_item { padding: 0; }
|
169 |
+
.sitemap-col .children { margin-bottom: 2em; }
|
170 |
+
.sitemap-col .cat-item { padding: 0; }
|
css/style_in_bs.css
ADDED
@@ -0,0 +1,750 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*!
|
2 |
+
* Bootstrap v3.3.5 (http://getbootstrap.com)
|
3 |
+
* Copyright 2011-2015 Twitter, Inc.
|
4 |
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
5 |
+
*/
|
6 |
+
/*!
|
7 |
+
* Generated using the Bootstrap Customizer (http://getbootstrap.com/customize/?id=7345914a18fe4c024e9a)
|
8 |
+
* Config saved to config.json and https://gist.github.com/7345914a18fe4c024e9a
|
9 |
+
*/
|
10 |
+
/*!
|
11 |
+
* Bootstrap v3.3.5 (http://getbootstrap.com)
|
12 |
+
* Copyright 2011-2015 Twitter, Inc.
|
13 |
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
14 |
+
*/
|
15 |
+
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
|
16 |
+
html { font-family: sans-serif; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; }
|
17 |
+
|
18 |
+
body { margin: 0; }
|
19 |
+
|
20 |
+
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary { display: block; }
|
21 |
+
|
22 |
+
audio, canvas, progress, video { display: inline-block; vertical-align: baseline; }
|
23 |
+
|
24 |
+
audio:not([controls]) { display: none; height: 0; }
|
25 |
+
|
26 |
+
[hidden], template { display: none; }
|
27 |
+
|
28 |
+
a { background-color: transparent; }
|
29 |
+
|
30 |
+
a:active, a:hover { outline: 0; }
|
31 |
+
|
32 |
+
abbr[title] { border-bottom: 1px dotted; }
|
33 |
+
|
34 |
+
b, strong { font-weight: bold; }
|
35 |
+
|
36 |
+
dfn { font-style: italic; }
|
37 |
+
|
38 |
+
h1 { font-size: 2em; margin: 0.67em 0; }
|
39 |
+
|
40 |
+
mark { background: #ff0; color: #000; }
|
41 |
+
|
42 |
+
small { font-size: 80%; }
|
43 |
+
|
44 |
+
sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; }
|
45 |
+
|
46 |
+
sup { top: -0.5em; }
|
47 |
+
|
48 |
+
sub { bottom: -0.25em; }
|
49 |
+
|
50 |
+
img { border: 0; }
|
51 |
+
|
52 |
+
svg:not(:root) { overflow: hidden; }
|
53 |
+
|
54 |
+
figure { margin: 1em 40px; }
|
55 |
+
|
56 |
+
hr { -webkit-box-sizing: content-box; -moz-box-sizing: content-box; box-sizing: content-box; height: 0; }
|
57 |
+
|
58 |
+
pre { overflow: auto; }
|
59 |
+
|
60 |
+
code, kbd, pre, samp { font-family: monospace, monospace; font-size: 1em; }
|
61 |
+
|
62 |
+
button, input, optgroup, select, textarea { color: inherit; font: inherit; margin: 0; }
|
63 |
+
|
64 |
+
button { overflow: visible; }
|
65 |
+
|
66 |
+
button, select { text-transform: none; }
|
67 |
+
|
68 |
+
button, html input[type="button"], input[type="reset"], input[type="submit"] { -webkit-appearance: button; cursor: pointer; }
|
69 |
+
|
70 |
+
button[disabled], html input[disabled] { cursor: default; }
|
71 |
+
|
72 |
+
button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; }
|
73 |
+
|
74 |
+
input { line-height: normal; }
|
75 |
+
|
76 |
+
input[type="checkbox"], input[type="radio"] { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; padding: 0; }
|
77 |
+
|
78 |
+
input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button { height: auto; }
|
79 |
+
|
80 |
+
input[type="search"] { -webkit-appearance: textfield; -webkit-box-sizing: content-box; -moz-box-sizing: content-box; box-sizing: content-box; }
|
81 |
+
|
82 |
+
input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; }
|
83 |
+
|
84 |
+
fieldset { border: 1px solid #c0c0c0; margin: 0 2px; padding: 0.35em 0.625em 0.75em; }
|
85 |
+
|
86 |
+
legend { border: 0; padding: 0; }
|
87 |
+
|
88 |
+
textarea { overflow: auto; }
|
89 |
+
|
90 |
+
optgroup { font-weight: bold; }
|
91 |
+
|
92 |
+
table { border-collapse: collapse; border-spacing: 0; }
|
93 |
+
|
94 |
+
td, th { padding: 0; }
|
95 |
+
|
96 |
+
* { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
|
97 |
+
|
98 |
+
*:before, *:after { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
|
99 |
+
|
100 |
+
html { font-size: 10px; -webkit-tap-highlight-color: transparent; }
|
101 |
+
|
102 |
+
body { font-family: "Helvetica Neue",Helvetica,Arial,sans-serif; font-size: 14px; line-height: 1.42857143; color: #333; background-color: #fff; }
|
103 |
+
|
104 |
+
input, button, select, textarea { font-family: inherit; font-size: inherit; line-height: inherit; }
|
105 |
+
|
106 |
+
a { color: #337ab7; text-decoration: none; }
|
107 |
+
|
108 |
+
a:hover, a:focus { color: #23527c; text-decoration: underline; }
|
109 |
+
|
110 |
+
a:focus { outline: thin dotted; outline: 5px auto -webkit-focus-ring-color; outline-offset: -2px; }
|
111 |
+
|
112 |
+
figure { margin: 0; }
|
113 |
+
|
114 |
+
img { vertical-align: middle; }
|
115 |
+
|
116 |
+
.img-responsive { display: block; max-width: 100%; height: auto; }
|
117 |
+
|
118 |
+
.img-rounded { border-radius: 6px; }
|
119 |
+
|
120 |
+
.img-thumbnail { padding: 4px; line-height: 1.42857143; background-color: #fff; border: 1px solid #ddd; border-radius: 4px; -webkit-transition: all .2s ease-in-out; -o-transition: all .2s ease-in-out; transition: all .2s ease-in-out; display: inline-block; max-width: 100%; height: auto; }
|
121 |
+
|
122 |
+
.img-circle { border-radius: 50%; }
|
123 |
+
|
124 |
+
hr { margin-top: 20px; margin-bottom: 20px; border: 0; border-top: 1px solid #eee; }
|
125 |
+
|
126 |
+
.sr-only { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); border: 0; }
|
127 |
+
|
128 |
+
.sr-only-focusable:active, .sr-only-focusable:focus { position: static; width: auto; height: auto; margin: 0; overflow: visible; clip: auto; }
|
129 |
+
|
130 |
+
[role="button"] { cursor: pointer; }
|
131 |
+
|
132 |
+
.container { margin-right: auto; margin-left: auto; padding-left: 15px; padding-right: 15px; }
|
133 |
+
|
134 |
+
@media (min-width: 768px) { .container { width: 750px; } }
|
135 |
+
@media (min-width: 992px) { .container { width: 970px; } }
|
136 |
+
@media (min-width: 1200px) { .container { width: 1170px; } }
|
137 |
+
.container-fluid { margin-right: auto; margin-left: auto; padding-left: 15px; padding-right: 15px; }
|
138 |
+
|
139 |
+
.row { margin-left: -15px; margin-right: -15px; }
|
140 |
+
|
141 |
+
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 { position: relative; min-height: 1px; padding-left: 15px; padding-right: 15px; }
|
142 |
+
|
143 |
+
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 { float: left; }
|
144 |
+
|
145 |
+
.col-xs-12 { width: 100%; }
|
146 |
+
|
147 |
+
.col-xs-11 { width: 91.66666667%; }
|
148 |
+
|
149 |
+
.col-xs-10 { width: 83.33333333%; }
|
150 |
+
|
151 |
+
.col-xs-9 { width: 75%; }
|
152 |
+
|
153 |
+
.col-xs-8 { width: 66.66666667%; }
|
154 |
+
|
155 |
+
.col-xs-7 { width: 58.33333333%; }
|
156 |
+
|
157 |
+
.col-xs-6 { width: 50%; }
|
158 |
+
|
159 |
+
.col-xs-5 { width: 41.66666667%; }
|
160 |
+
|
161 |
+
.col-xs-4 { width: 33.33333333%; }
|
162 |
+
|
163 |
+
.col-xs-3 { width: 25%; }
|
164 |
+
|
165 |
+
.col-xs-2 { width: 16.66666667%; }
|
166 |
+
|
167 |
+
.col-xs-1 { width: 8.33333333%; }
|
168 |
+
|
169 |
+
.col-xs-pull-12 { right: 100%; }
|
170 |
+
|
171 |
+
.col-xs-pull-11 { right: 91.66666667%; }
|
172 |
+
|
173 |
+
.col-xs-pull-10 { right: 83.33333333%; }
|
174 |
+
|
175 |
+
.col-xs-pull-9 { right: 75%; }
|
176 |
+
|
177 |
+
.col-xs-pull-8 { right: 66.66666667%; }
|
178 |
+
|
179 |
+
.col-xs-pull-7 { right: 58.33333333%; }
|
180 |
+
|
181 |
+
.col-xs-pull-6 { right: 50%; }
|
182 |
+
|
183 |
+
.col-xs-pull-5 { right: 41.66666667%; }
|
184 |
+
|
185 |
+
.col-xs-pull-4 { right: 33.33333333%; }
|
186 |
+
|
187 |
+
.col-xs-pull-3 { right: 25%; }
|
188 |
+
|
189 |
+
.col-xs-pull-2 { right: 16.66666667%; }
|
190 |
+
|
191 |
+
.col-xs-pull-1 { right: 8.33333333%; }
|
192 |
+
|
193 |
+
.col-xs-pull-0 { right: auto; }
|
194 |
+
|
195 |
+
.col-xs-push-12 { left: 100%; }
|
196 |
+
|
197 |
+
.col-xs-push-11 { left: 91.66666667%; }
|
198 |
+
|
199 |
+
.col-xs-push-10 { left: 83.33333333%; }
|
200 |
+
|
201 |
+
.col-xs-push-9 { left: 75%; }
|
202 |
+
|
203 |
+
.col-xs-push-8 { left: 66.66666667%; }
|
204 |
+
|
205 |
+
.col-xs-push-7 { left: 58.33333333%; }
|
206 |
+
|
207 |
+
.col-xs-push-6 { left: 50%; }
|
208 |
+
|
209 |
+
.col-xs-push-5 { left: 41.66666667%; }
|
210 |
+
|
211 |
+
.col-xs-push-4 { left: 33.33333333%; }
|
212 |
+
|
213 |
+
.col-xs-push-3 { left: 25%; }
|
214 |
+
|
215 |
+
.col-xs-push-2 { left: 16.66666667%; }
|
216 |
+
|
217 |
+
.col-xs-push-1 { left: 8.33333333%; }
|
218 |
+
|
219 |
+
.col-xs-push-0 { left: auto; }
|
220 |
+
|
221 |
+
.col-xs-offset-12 { margin-left: 100%; }
|
222 |
+
|
223 |
+
.col-xs-offset-11 { margin-left: 91.66666667%; }
|
224 |
+
|
225 |
+
.col-xs-offset-10 { margin-left: 83.33333333%; }
|
226 |
+
|
227 |
+
.col-xs-offset-9 { margin-left: 75%; }
|
228 |
+
|
229 |
+
.col-xs-offset-8 { margin-left: 66.66666667%; }
|
230 |
+
|
231 |
+
.col-xs-offset-7 { margin-left: 58.33333333%; }
|
232 |
+
|
233 |
+
.col-xs-offset-6 { margin-left: 50%; }
|
234 |
+
|
235 |
+
.col-xs-offset-5 { margin-left: 41.66666667%; }
|
236 |
+
|
237 |
+
.col-xs-offset-4 { margin-left: 33.33333333%; }
|
238 |
+
|
239 |
+
.col-xs-offset-3 { margin-left: 25%; }
|
240 |
+
|
241 |
+
.col-xs-offset-2 { margin-left: 16.66666667%; }
|
242 |
+
|
243 |
+
.col-xs-offset-1 { margin-left: 8.33333333%; }
|
244 |
+
|
245 |
+
.col-xs-offset-0 { margin-left: 0; }
|
246 |
+
|
247 |
+
@media (min-width: 768px) { .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; }
|
248 |
+
.col-sm-12 { width: 100%; }
|
249 |
+
.col-sm-11 { width: 91.66666667%; }
|
250 |
+
.col-sm-10 { width: 83.33333333%; }
|
251 |
+
.col-sm-9 { width: 75%; }
|
252 |
+
.col-sm-8 { width: 66.66666667%; }
|
253 |
+
.col-sm-7 { width: 58.33333333%; }
|
254 |
+
.col-sm-6 { width: 50%; }
|
255 |
+
.col-sm-5 { width: 41.66666667%; }
|
256 |
+
.col-sm-4 { width: 33.33333333%; }
|
257 |
+
.col-sm-3 { width: 25%; }
|
258 |
+
.col-sm-2 { width: 16.66666667%; }
|
259 |
+
.col-sm-1 { width: 8.33333333%; }
|
260 |
+
.col-sm-pull-12 { right: 100%; }
|
261 |
+
.col-sm-pull-11 { right: 91.66666667%; }
|
262 |
+
.col-sm-pull-10 { right: 83.33333333%; }
|
263 |
+
.col-sm-pull-9 { right: 75%; }
|
264 |
+
.col-sm-pull-8 { right: 66.66666667%; }
|
265 |
+
.col-sm-pull-7 { right: 58.33333333%; }
|
266 |
+
.col-sm-pull-6 { right: 50%; }
|
267 |
+
.col-sm-pull-5 { right: 41.66666667%; }
|
268 |
+
.col-sm-pull-4 { right: 33.33333333%; }
|
269 |
+
.col-sm-pull-3 { right: 25%; }
|
270 |
+
.col-sm-pull-2 { right: 16.66666667%; }
|
271 |
+
.col-sm-pull-1 { right: 8.33333333%; }
|
272 |
+
.col-sm-pull-0 { right: auto; }
|
273 |
+
.col-sm-push-12 { left: 100%; }
|
274 |
+
.col-sm-push-11 { left: 91.66666667%; }
|
275 |
+
.col-sm-push-10 { left: 83.33333333%; }
|
276 |
+
.col-sm-push-9 { left: 75%; }
|
277 |
+
.col-sm-push-8 { left: 66.66666667%; }
|
278 |
+
.col-sm-push-7 { left: 58.33333333%; }
|
279 |
+
.col-sm-push-6 { left: 50%; }
|
280 |
+
.col-sm-push-5 { left: 41.66666667%; }
|
281 |
+
.col-sm-push-4 { left: 33.33333333%; }
|
282 |
+
.col-sm-push-3 { left: 25%; }
|
283 |
+
.col-sm-push-2 { left: 16.66666667%; }
|
284 |
+
.col-sm-push-1 { left: 8.33333333%; }
|
285 |
+
.col-sm-push-0 { left: auto; }
|
286 |
+
.col-sm-offset-12 { margin-left: 100%; }
|
287 |
+
.col-sm-offset-11 { margin-left: 91.66666667%; }
|
288 |
+
.col-sm-offset-10 { margin-left: 83.33333333%; }
|
289 |
+
.col-sm-offset-9 { margin-left: 75%; }
|
290 |
+
.col-sm-offset-8 { margin-left: 66.66666667%; }
|
291 |
+
.col-sm-offset-7 { margin-left: 58.33333333%; }
|
292 |
+
.col-sm-offset-6 { margin-left: 50%; }
|
293 |
+
.col-sm-offset-5 { margin-left: 41.66666667%; }
|
294 |
+
.col-sm-offset-4 { margin-left: 33.33333333%; }
|
295 |
+
.col-sm-offset-3 { margin-left: 25%; }
|
296 |
+
.col-sm-offset-2 { margin-left: 16.66666667%; }
|
297 |
+
.col-sm-offset-1 { margin-left: 8.33333333%; }
|
298 |
+
.col-sm-offset-0 { margin-left: 0; } }
|
299 |
+
@media (min-width: 992px) { .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 { float: left; }
|
300 |
+
.col-md-12 { width: 100%; }
|
301 |
+
.col-md-11 { width: 91.66666667%; }
|
302 |
+
.col-md-10 { width: 83.33333333%; }
|
303 |
+
.col-md-9 { width: 75%; }
|
304 |
+
.col-md-8 { width: 66.66666667%; }
|
305 |
+
.col-md-7 { width: 58.33333333%; }
|
306 |
+
.col-md-6 { width: 50%; }
|
307 |
+
.col-md-5 { width: 41.66666667%; }
|
308 |
+
.col-md-4 { width: 33.33333333%; }
|
309 |
+
.col-md-3 { width: 25%; }
|
310 |
+
.col-md-2 { width: 16.66666667%; }
|
311 |
+
.col-md-1 { width: 8.33333333%; }
|
312 |
+
.col-md-pull-12 { right: 100%; }
|
313 |
+
.col-md-pull-11 { right: 91.66666667%; }
|
314 |
+
.col-md-pull-10 { right: 83.33333333%; }
|
315 |
+
.col-md-pull-9 { right: 75%; }
|
316 |
+
.col-md-pull-8 { right: 66.66666667%; }
|
317 |
+
.col-md-pull-7 { right: 58.33333333%; }
|
318 |
+
.col-md-pull-6 { right: 50%; }
|
319 |
+
.col-md-pull-5 { right: 41.66666667%; }
|
320 |
+
.col-md-pull-4 { right: 33.33333333%; }
|
321 |
+
.col-md-pull-3 { right: 25%; }
|
322 |
+
.col-md-pull-2 { right: 16.66666667%; }
|
323 |
+
.col-md-pull-1 { right: 8.33333333%; }
|
324 |
+
.col-md-pull-0 { right: auto; }
|
325 |
+
.col-md-push-12 { left: 100%; }
|
326 |
+
.col-md-push-11 { left: 91.66666667%; }
|
327 |
+
.col-md-push-10 { left: 83.33333333%; }
|
328 |
+
.col-md-push-9 { left: 75%; }
|
329 |
+
.col-md-push-8 { left: 66.66666667%; }
|
330 |
+
.col-md-push-7 { left: 58.33333333%; }
|
331 |
+
.col-md-push-6 { left: 50%; }
|
332 |
+
.col-md-push-5 { left: 41.66666667%; }
|
333 |
+
.col-md-push-4 { left: 33.33333333%; }
|
334 |
+
.col-md-push-3 { left: 25%; }
|
335 |
+
.col-md-push-2 { left: 16.66666667%; }
|
336 |
+
.col-md-push-1 { left: 8.33333333%; }
|
337 |
+
.col-md-push-0 { left: auto; }
|
338 |
+
.col-md-offset-12 { margin-left: 100%; }
|
339 |
+
.col-md-offset-11 { margin-left: 91.66666667%; }
|
340 |
+
.col-md-offset-10 { margin-left: 83.33333333%; }
|
341 |
+
.col-md-offset-9 { margin-left: 75%; }
|
342 |
+
.col-md-offset-8 { margin-left: 66.66666667%; }
|
343 |
+
.col-md-offset-7 { margin-left: 58.33333333%; }
|
344 |
+
.col-md-offset-6 { margin-left: 50%; }
|
345 |
+
.col-md-offset-5 { margin-left: 41.66666667%; }
|
346 |
+
.col-md-offset-4 { margin-left: 33.33333333%; }
|
347 |
+
.col-md-offset-3 { margin-left: 25%; }
|
348 |
+
.col-md-offset-2 { margin-left: 16.66666667%; }
|
349 |
+
.col-md-offset-1 { margin-left: 8.33333333%; }
|
350 |
+
.col-md-offset-0 { margin-left: 0; } }
|
351 |
+
@media (min-width: 1200px) { .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; }
|
352 |
+
.col-lg-12 { width: 100%; }
|
353 |
+
.col-lg-11 { width: 91.66666667%; }
|
354 |
+
.col-lg-10 { width: 83.33333333%; }
|
355 |
+
.col-lg-9 { width: 75%; }
|
356 |
+
.col-lg-8 { width: 66.66666667%; }
|
357 |
+
.col-lg-7 { width: 58.33333333%; }
|
358 |
+
.col-lg-6 { width: 50%; }
|
359 |
+
.col-lg-5 { width: 41.66666667%; }
|
360 |
+
.col-lg-4 { width: 33.33333333%; }
|
361 |
+
.col-lg-3 { width: 25%; }
|
362 |
+
.col-lg-2 { width: 16.66666667%; }
|
363 |
+
.col-lg-1 { width: 8.33333333%; }
|
364 |
+
.col-lg-pull-12 { right: 100%; }
|
365 |
+
.col-lg-pull-11 { right: 91.66666667%; }
|
366 |
+
.col-lg-pull-10 { right: 83.33333333%; }
|
367 |
+
.col-lg-pull-9 { right: 75%; }
|
368 |
+
.col-lg-pull-8 { right: 66.66666667%; }
|
369 |
+
.col-lg-pull-7 { right: 58.33333333%; }
|
370 |
+
.col-lg-pull-6 { right: 50%; }
|
371 |
+
.col-lg-pull-5 { right: 41.66666667%; }
|
372 |
+
.col-lg-pull-4 { right: 33.33333333%; }
|
373 |
+
.col-lg-pull-3 { right: 25%; }
|
374 |
+
.col-lg-pull-2 { right: 16.66666667%; }
|
375 |
+
.col-lg-pull-1 { right: 8.33333333%; }
|
376 |
+
.col-lg-pull-0 { right: auto; }
|
377 |
+
.col-lg-push-12 { left: 100%; }
|
378 |
+
.col-lg-push-11 { left: 91.66666667%; }
|
379 |
+
.col-lg-push-10 { left: 83.33333333%; }
|
380 |
+
.col-lg-push-9 { left: 75%; }
|
381 |
+
.col-lg-push-8 { left: 66.66666667%; }
|
382 |
+
.col-lg-push-7 { left: 58.33333333%; }
|
383 |
+
.col-lg-push-6 { left: 50%; }
|
384 |
+
.col-lg-push-5 { left: 41.66666667%; }
|
385 |
+
.col-lg-push-4 { left: 33.33333333%; }
|
386 |
+
.col-lg-push-3 { left: 25%; }
|
387 |
+
.col-lg-push-2 { left: 16.66666667%; }
|
388 |
+
.col-lg-push-1 { left: 8.33333333%; }
|
389 |
+
.col-lg-push-0 { left: auto; }
|
390 |
+
.col-lg-offset-12 { margin-left: 100%; }
|
391 |
+
.col-lg-offset-11 { margin-left: 91.66666667%; }
|
392 |
+
.col-lg-offset-10 { margin-left: 83.33333333%; }
|
393 |
+
.col-lg-offset-9 { margin-left: 75%; }
|
394 |
+
.col-lg-offset-8 { margin-left: 66.66666667%; }
|
395 |
+
.col-lg-offset-7 { margin-left: 58.33333333%; }
|
396 |
+
.col-lg-offset-6 { margin-left: 50%; }
|
397 |
+
.col-lg-offset-5 { margin-left: 41.66666667%; }
|
398 |
+
.col-lg-offset-4 { margin-left: 33.33333333%; }
|
399 |
+
.col-lg-offset-3 { margin-left: 25%; }
|
400 |
+
.col-lg-offset-2 { margin-left: 16.66666667%; }
|
401 |
+
.col-lg-offset-1 { margin-left: 8.33333333%; }
|
402 |
+
.col-lg-offset-0 { margin-left: 0; } }
|
403 |
+
.btn { display: inline-block; margin-bottom: 0; font-weight: normal; text-align: center; vertical-align: middle; -ms-touch-action: manipulation; touch-action: manipulation; cursor: pointer; background-image: none; border: 1px solid transparent; white-space: nowrap; padding: 6px 12px; font-size: 14px; line-height: 1.42857143; border-radius: 4px; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; }
|
404 |
+
|
405 |
+
.btn:focus, .btn:active:focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn.active.focus { outline: thin dotted; outline: 5px auto -webkit-focus-ring-color; outline-offset: -2px; }
|
406 |
+
|
407 |
+
.btn:hover, .btn:focus, .btn.focus { color: #333; text-decoration: none; }
|
408 |
+
|
409 |
+
.btn:active, .btn.active { outline: 0; background-image: none; -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); }
|
410 |
+
|
411 |
+
.btn.disabled, .btn[disabled], fieldset[disabled] .btn { cursor: not-allowed; opacity: .65; filter: alpha(opacity=65); -webkit-box-shadow: none; box-shadow: none; }
|
412 |
+
|
413 |
+
a.btn.disabled, fieldset[disabled] a.btn { pointer-events: none; }
|
414 |
+
|
415 |
+
.btn-default { color: #333; background-color: #fff; border-color: #ccc; }
|
416 |
+
|
417 |
+
.btn-default:focus, .btn-default.focus { color: #333; background-color: #e6e6e6; border-color: #8c8c8c; }
|
418 |
+
|
419 |
+
.btn-default:hover { color: #333; background-color: #e6e6e6; border-color: #adadad; }
|
420 |
+
|
421 |
+
.btn-default:active, .btn-default.active, .open > .dropdown-toggle.btn-default { color: #333; background-color: #e6e6e6; border-color: #adadad; }
|
422 |
+
|
423 |
+
.btn-default:active:hover, .btn-default.active:hover, .open > .dropdown-toggle.btn-default:hover, .btn-default:active:focus, .btn-default.active:focus, .open > .dropdown-toggle.btn-default:focus, .btn-default:active.focus, .btn-default.active.focus, .open > .dropdown-toggle.btn-default.focus { color: #333; background-color: #d4d4d4; border-color: #8c8c8c; }
|
424 |
+
|
425 |
+
.btn-default:active, .btn-default.active, .open > .dropdown-toggle.btn-default { background-image: none; }
|
426 |
+
|
427 |
+
.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.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: #fff; border-color: #ccc; }
|
428 |
+
|
429 |
+
.btn-default .badge { color: #fff; background-color: #333; }
|
430 |
+
|
431 |
+
.btn-primary { color: #fff; background-color: #337ab7; border-color: #2e6da4; }
|
432 |
+
|
433 |
+
.btn-primary:focus, .btn-primary.focus { color: #fff; background-color: #286090; border-color: #122b40; }
|
434 |
+
|
435 |
+
.btn-primary:hover { color: #fff; background-color: #286090; border-color: #204d74; }
|
436 |
+
|
437 |
+
.btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary { color: #fff; background-color: #286090; border-color: #204d74; }
|
438 |
+
|
439 |
+
.btn-primary:active:hover, .btn-primary.active:hover, .open > .dropdown-toggle.btn-primary:hover, .btn-primary:active:focus, .btn-primary.active:focus, .open > .dropdown-toggle.btn-primary:focus, .btn-primary:active.focus, .btn-primary.active.focus, .open > .dropdown-toggle.btn-primary.focus { color: #fff; background-color: #204d74; border-color: #122b40; }
|
440 |
+
|
441 |
+
.btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary { background-image: none; }
|
442 |
+
|
443 |
+
.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.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: #337ab7; border-color: #2e6da4; }
|
444 |
+
|
445 |
+
.btn-primary .badge { color: #337ab7; background-color: #fff; }
|
446 |
+
|
447 |
+
.btn-success { color: #fff; background-color: #5cb85c; border-color: #4cae4c; }
|
448 |
+
|
449 |
+
.btn-success:focus, .btn-success.focus { color: #fff; background-color: #449d44; border-color: #255625; }
|
450 |
+
|
451 |
+
.btn-success:hover { color: #fff; background-color: #449d44; border-color: #398439; }
|
452 |
+
|
453 |
+
.btn-success:active, .btn-success.active, .open > .dropdown-toggle.btn-success { color: #fff; background-color: #449d44; border-color: #398439; }
|
454 |
+
|
455 |
+
.btn-success:active:hover, .btn-success.active:hover, .open > .dropdown-toggle.btn-success:hover, .btn-success:active:focus, .btn-success.active:focus, .open > .dropdown-toggle.btn-success:focus, .btn-success:active.focus, .btn-success.active.focus, .open > .dropdown-toggle.btn-success.focus { color: #fff; background-color: #398439; border-color: #255625; }
|
456 |
+
|
457 |
+
.btn-success:active, .btn-success.active, .open > .dropdown-toggle.btn-success { background-image: none; }
|
458 |
+
|
459 |
+
.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.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: #4cae4c; }
|
460 |
+
|
461 |
+
.btn-success .badge { color: #5cb85c; background-color: #fff; }
|
462 |
+
|
463 |
+
.btn-info { color: #fff; background-color: #5bc0de; border-color: #46b8da; }
|
464 |
+
|
465 |
+
.btn-info:focus, .btn-info.focus { color: #fff; background-color: #31b0d5; border-color: #1b6d85; }
|
466 |
+
|
467 |
+
.btn-info:hover { color: #fff; background-color: #31b0d5; border-color: #269abc; }
|
468 |
+
|
469 |
+
.btn-info:active, .btn-info.active, .open > .dropdown-toggle.btn-info { color: #fff; background-color: #31b0d5; border-color: #269abc; }
|
470 |
+
|
471 |
+
.btn-info:active:hover, .btn-info.active:hover, .open > .dropdown-toggle.btn-info:hover, .btn-info:active:focus, .btn-info.active:focus, .open > .dropdown-toggle.btn-info:focus, .btn-info:active.focus, .btn-info.active.focus, .open > .dropdown-toggle.btn-info.focus { color: #fff; background-color: #269abc; border-color: #1b6d85; }
|
472 |
+
|
473 |
+
.btn-info:active, .btn-info.active, .open > .dropdown-toggle.btn-info { background-image: none; }
|
474 |
+
|
475 |
+
.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.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: #46b8da; }
|
476 |
+
|
477 |
+
.btn-info .badge { color: #5bc0de; background-color: #fff; }
|
478 |
+
|
479 |
+
.btn-warning { color: #fff; background-color: #f0ad4e; border-color: #eea236; }
|
480 |
+
|
481 |
+
.btn-warning:focus, .btn-warning.focus { color: #fff; background-color: #ec971f; border-color: #985f0d; }
|
482 |
+
|
483 |
+
.btn-warning:hover { color: #fff; background-color: #ec971f; border-color: #d58512; }
|
484 |
+
|
485 |
+
.btn-warning:active, .btn-warning.active, .open > .dropdown-toggle.btn-warning { color: #fff; background-color: #ec971f; border-color: #d58512; }
|
486 |
+
|
487 |
+
.btn-warning:active:hover, .btn-warning.active:hover, .open > .dropdown-toggle.btn-warning:hover, .btn-warning:active:focus, .btn-warning.active:focus, .open > .dropdown-toggle.btn-warning:focus, .btn-warning:active.focus, .btn-warning.active.focus, .open > .dropdown-toggle.btn-warning.focus { color: #fff; background-color: #d58512; border-color: #985f0d; }
|
488 |
+
|
489 |
+
.btn-warning:active, .btn-warning.active, .open > .dropdown-toggle.btn-warning { background-image: none; }
|
490 |
+
|
491 |
+
.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.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: #eea236; }
|
492 |
+
|
493 |
+
.btn-warning .badge { color: #f0ad4e; background-color: #fff; }
|
494 |
+
|
495 |
+
.btn-danger { color: #fff; background-color: #d9534f; border-color: #d43f3a; }
|
496 |
+
|
497 |
+
.btn-danger:focus, .btn-danger.focus { color: #fff; background-color: #c9302c; border-color: #761c19; }
|
498 |
+
|
499 |
+
.btn-danger:hover { color: #fff; background-color: #c9302c; border-color: #ac2925; }
|
500 |
+
|
501 |
+
.btn-danger:active, .btn-danger.active, .open > .dropdown-toggle.btn-danger { color: #fff; background-color: #c9302c; border-color: #ac2925; }
|
502 |
+
|
503 |
+
.btn-danger:active:hover, .btn-danger.active:hover, .open > .dropdown-toggle.btn-danger:hover, .btn-danger:active:focus, .btn-danger.active:focus, .open > .dropdown-toggle.btn-danger:focus, .btn-danger:active.focus, .btn-danger.active.focus, .open > .dropdown-toggle.btn-danger.focus { color: #fff; background-color: #ac2925; border-color: #761c19; }
|
504 |
+
|
505 |
+
.btn-danger:active, .btn-danger.active, .open > .dropdown-toggle.btn-danger { background-image: none; }
|
506 |
+
|
507 |
+
.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.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: #d43f3a; }
|
508 |
+
|
509 |
+
.btn-danger .badge { color: #d9534f; background-color: #fff; }
|
510 |
+
|
511 |
+
.btn-link { color: #337ab7; font-weight: normal; border-radius: 0; }
|
512 |
+
|
513 |
+
.btn-link, .btn-link:active, .btn-link.active, .btn-link[disabled], fieldset[disabled] .btn-link { background-color: transparent; -webkit-box-shadow: none; box-shadow: none; }
|
514 |
+
|
515 |
+
.btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active { border-color: transparent; }
|
516 |
+
|
517 |
+
.btn-link:hover, .btn-link:focus { color: #23527c; text-decoration: underline; background-color: transparent; }
|
518 |
+
|
519 |
+
.btn-link[disabled]:hover, fieldset[disabled] .btn-link:hover, .btn-link[disabled]:focus, fieldset[disabled] .btn-link:focus { color: #777; text-decoration: none; }
|
520 |
+
|
521 |
+
.btn-lg { padding: 10px 16px; font-size: 18px; line-height: 1.3333333; border-radius: 6px; }
|
522 |
+
|
523 |
+
.btn-sm { padding: 5px 10px; font-size: 12px; line-height: 1.5; border-radius: 3px; }
|
524 |
+
|
525 |
+
.btn-xs { padding: 1px 5px; font-size: 12px; line-height: 1.5; border-radius: 3px; }
|
526 |
+
|
527 |
+
.btn-block { display: block; width: 100%; }
|
528 |
+
|
529 |
+
.btn-block + .btn-block { margin-top: 5px; }
|
530 |
+
|
531 |
+
input[type="submit"].btn-block, input[type="reset"].btn-block, input[type="button"].btn-block { width: 100%; }
|
532 |
+
|
533 |
+
.media { margin-top: 15px; }
|
534 |
+
|
535 |
+
.media:first-child { margin-top: 0; }
|
536 |
+
|
537 |
+
.media, .media-body { zoom: 1; overflow: hidden; }
|
538 |
+
|
539 |
+
.media-body { width: 10000px; }
|
540 |
+
|
541 |
+
.media-object { display: block; }
|
542 |
+
|
543 |
+
.media-object.img-thumbnail { max-width: none; }
|
544 |
+
|
545 |
+
.media-right, .media > .pull-right { padding-left: 10px; }
|
546 |
+
|
547 |
+
.media-left, .media > .pull-left { padding-right: 10px; }
|
548 |
+
|
549 |
+
.media-left, .media-right, .media-body { display: table-cell; vertical-align: top; }
|
550 |
+
|
551 |
+
.media-middle { vertical-align: middle; }
|
552 |
+
|
553 |
+
.media-bottom { vertical-align: bottom; }
|
554 |
+
|
555 |
+
.media-heading { margin-top: 0; margin-bottom: 5px; }
|
556 |
+
|
557 |
+
.media-list { padding-left: 0; list-style: none; }
|
558 |
+
|
559 |
+
.clearfix:before, .clearfix:after, .container:before, .container:after, .container-fluid:before, .container-fluid:after, .row:before, .row:after { content: " "; display: table; }
|
560 |
+
|
561 |
+
.clearfix:after, .container:after, .container-fluid:after, .row:after { clear: both; }
|
562 |
+
|
563 |
+
.center-block { display: block; margin-left: auto; margin-right: auto; }
|
564 |
+
|
565 |
+
.pull-right { float: right !important; }
|
566 |
+
|
567 |
+
.pull-left { float: left !important; }
|
568 |
+
|
569 |
+
.hide { display: none !important; }
|
570 |
+
|
571 |
+
.show { display: block !important; }
|
572 |
+
|
573 |
+
.invisible { visibility: hidden; }
|
574 |
+
|
575 |
+
.text-hide { font: 0/0 a; color: transparent; text-shadow: none; background-color: transparent; border: 0; }
|
576 |
+
|
577 |
+
.hidden { display: none !important; }
|
578 |
+
|
579 |
+
.affix { position: fixed; }
|
580 |
+
|
581 |
+
/* .media(bootstrap)
|
582 |
+
/*-------------------------------------------*/
|
583 |
+
.media { border-bottom: 1px solid #e5e5e5; padding: 2em 0; margin-top: 0; }
|
584 |
+
.media:first-child { border-top: 1px solid #e5e5e5; }
|
585 |
+
.media .postList_thumbnail { width: 160px; margin-bottom: 0.5em; padding-right: 30px; display: block; overflow: hidden; float: left; }
|
586 |
+
.media .postList_thumbnail a { position: relative; display: block; overflow: hidden; }
|
587 |
+
.media .postList_thumbnail img { width: 100%; height: auto; }
|
588 |
+
.media .postList_thumbnail .postList_cateLabel { position: absolute; bottom: 0; left: 0; }
|
589 |
+
.media .media-body .media-heading { font-size: 1.8em; line-height: 1.3em; margin-top: 0; margin-bottom: 0.5em; font-weight: normal; }
|
590 |
+
.media .media-body .media-heading a { color: #464646; }
|
591 |
+
.media .media-body .media-heading a:hover { text-decoration: none; }
|
592 |
+
.media .media-body p { margin-bottom: 0; }
|
593 |
+
.media .media-body a.media-body_excerpt { color: #464646; }
|
594 |
+
|
595 |
+
@media (max-width: 767px) { .media .postList_thumbnail { padding-right: 20px; }
|
596 |
+
.media .media-body .media-heading { font-size: 1.2em; line-height: 1.3em; margin-bottom: 0.5em; } }
|
597 |
+
@media (max-width: 500px) { .media .postList_thumbnail { width: 100px; } }
|
598 |
+
/*-------------------------------------------------*/
|
599 |
+
/* ex_unit
|
600 |
+
/*-------------------------------------------------*/
|
601 |
+
/* .common
|
602 |
+
/*-------------------------------------------*/
|
603 |
+
/* .autoEyeCatchBox
|
604 |
+
/*-------------------------------------------*/
|
605 |
+
/* .sitemap
|
606 |
+
/*-------------------------------------------*/
|
607 |
+
/* fb Page Plugin
|
608 |
+
/*-------------------------------------------*/
|
609 |
+
/* .socialSet
|
610 |
+
/*-------------------------------------------*/
|
611 |
+
/* Profile wiget Plugin
|
612 |
+
/*-------------------------------------------*/
|
613 |
+
/* 3PR area wiget Plugin
|
614 |
+
/*-------------------------------------------*/
|
615 |
+
/* childPageIndex Plugin
|
616 |
+
/*-------------------------------------------*/
|
617 |
+
/*-------------------------------------------*/
|
618 |
+
/* .common
|
619 |
+
/*-------------------------------------------*/
|
620 |
+
.link-list li { padding: 0.5em; }
|
621 |
+
|
622 |
+
/*-------------------------------------------*/
|
623 |
+
/* .autoEyeCatchBox
|
624 |
+
/*-------------------------------------------*/
|
625 |
+
.autoEyeCatchBox { display: block; overflow: hidden; margin-bottom: 2em; }
|
626 |
+
|
627 |
+
/*-------------------------------------------*/
|
628 |
+
/* .sitemap
|
629 |
+
/*-------------------------------------------*/
|
630 |
+
.sitemap .sectionBox { padding-top: 0; }
|
631 |
+
|
632 |
+
.sitemap .sitemap-col { padding-bottom: 2em; }
|
633 |
+
|
634 |
+
/*-------------------------------------------*/
|
635 |
+
/* fb Page Plugin
|
636 |
+
/*-------------------------------------------*/
|
637 |
+
.fb-like-box { margin: 0 auto; border: 4px solid #efefef; background-color: #f9f9f9; text-align: center; }
|
638 |
+
|
639 |
+
.twitter-timeline iframe { margin-right: auto; margin-left: auto; }
|
640 |
+
|
641 |
+
.vkContentAddSection { display: block; clear: both; overflow: hidden; padding-top: 20px; }
|
642 |
+
|
643 |
+
/*-------------------------------------------*/
|
644 |
+
/* .socialSet
|
645 |
+
/*-------------------------------------------*/
|
646 |
+
.socialSet ul { margin: 0px; padding: 0; }
|
647 |
+
|
648 |
+
.socialSet ul li { position: relative; display: block; float: left; overflow: visible; margin-right: 10px; padding: 0px; background: none; }
|
649 |
+
|
650 |
+
.socialSet ul li.sb_icon a { display: block; overflow: hidden; padding: 3px 5px 0px; border: 1px solid #ccc; border-radius: 3px; background-color: #fff; color: #333; text-decoration: none; line-height: 100%; }
|
651 |
+
|
652 |
+
.socialSet ul li.sb_icon a .sns_txt { position: relative; top: -2px; font-size: 11px; }
|
653 |
+
|
654 |
+
.socialSet ul li iframe { border: none; }
|
655 |
+
|
656 |
+
.socialSet ul li a .icon_sns { margin-right: 5px; font-size: 100%; }
|
657 |
+
|
658 |
+
.socialSet ul li.sb_icon.sb_facebook .icon_sns { color: #425dab; }
|
659 |
+
|
660 |
+
.socialSet ul li.sb_icon.sb_hatena .icon_sns { color: #2c6ebd; }
|
661 |
+
|
662 |
+
.socialSet ul li.sb_icon.sb_twitter .icon_sns { color: #00abec; }
|
663 |
+
|
664 |
+
.socialSet ul li.sb_icon.sb_google .icon_sns { color: #dd4b39; }
|
665 |
+
|
666 |
+
.socialSet ul li.sb_icon.sb_line .icon_sns { color: #6ebd30; }
|
667 |
+
|
668 |
+
.socialSet ul li.sb_pocket { margin-left: 5px; }
|
669 |
+
|
670 |
+
.relatedPosts h2 { margin-bottom: 10px; }
|
671 |
+
|
672 |
+
.followSet { display: block; overflow: hidden; margin-top: 20px; padding: 15px; border: 1px solid #f5f5f5; background-color: #efefef; }
|
673 |
+
|
674 |
+
.followSet h3.followSet_title { padding: 6px 10px 4px; border: none; background-color: #333; color: #fff; font-size: 18px; }
|
675 |
+
.followSet h3.followSet_title:after { border: none; }
|
676 |
+
|
677 |
+
.follow_btn { float: left; margin-right: 20px; }
|
678 |
+
|
679 |
+
/*-------------------------------------------*/
|
680 |
+
/* import icon
|
681 |
+
/*-------------------------------------------*/
|
682 |
+
@font-face { font-weight: normal; font-style: normal; font-family: 'vk_sns'; src: url("../plugins/sns/icons/fonts/vk_sns.eot?-bq20cj"); src: url("../plugins/sns/icons/fonts/vk_sns.eot?#iefix-bq20cj") format("embedded-opentype"), url("../plugins/sns/icons/fonts/vk_sns.woff?-bq20cj") format("woff"), url("../plugins/sns/icons/fonts/vk_sns.ttf?-bq20cj") format("truetype"), url("../plugins/sns/icons/fonts/vk_sns.svg?-bq20cj#vk_sns") format("svg"); }
|
683 |
+
[class^="vk_icon_w_r_sns_"], [class*=" vk_icon_w_r_sns_"] { text-transform: none; font-weight: normal; font-style: normal; font-variant: normal; font-family: 'vk_sns'; line-height: 1; /* Better Font Rendering =========== */ speak: none; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
|
684 |
+
|
685 |
+
.vk_icon_w_r_sns_twitter:before { content: "\e600"; }
|
686 |
+
|
687 |
+
.vk_icon_w_r_sns_line:before { content: "\e601"; }
|
688 |
+
|
689 |
+
.vk_icon_w_r_sns_hatena:before { content: "\e602"; }
|
690 |
+
|
691 |
+
.vk_icon_w_r_sns_google:before { content: "\e603"; }
|
692 |
+
|
693 |
+
.vk_icon_w_r_sns_fb:before { content: "\e604"; }
|
694 |
+
|
695 |
+
/*-------------------------------------------*/
|
696 |
+
/* Profile wiget Plugin
|
697 |
+
/*-------------------------------------------*/
|
698 |
+
.profile_media { display: block; overflow: hidden; margin: 0.8em auto; max-width: 100px; border-radius: 100px; }
|
699 |
+
|
700 |
+
.profile_text { margin-bottom: 0.5em; font-size: 14px; }
|
701 |
+
|
702 |
+
.sns_btns { margin: 0; padding: 0; width: 100%; }
|
703 |
+
.sns_btns li { float: left; margin-right: 0.45em; list-style: none; text-align: center; }
|
704 |
+
.sns_btns a { display: block; display: table; width: 45px; height: 45px; border-radius: 23px; color: #fff; text-decoration: none; font-size: 20px; }
|
705 |
+
.sns_btns a:hover { color: #fff; text-decoration: none; opacity: 0.8; }
|
706 |
+
.sns_btns .fa { display: table-cell; vertical-align: middle; text-align: center; }
|
707 |
+
.sns_btns .facebook_btn a { background: #3b5998; }
|
708 |
+
.sns_btns .twitter_btn a { background: #55acee; }
|
709 |
+
.sns_btns .mail_btn a { background: #2F915F; }
|
710 |
+
.sns_btns .youtube_btn a { background: #C81D1C; }
|
711 |
+
.sns_btns .rss_btn a { background: #f26522; }
|
712 |
+
.sns_btns .instagram_btn a { background: #3f729b; }
|
713 |
+
.sns_btns .linkedin_btn a { background: #0077b5; }
|
714 |
+
|
715 |
+
/*-------------------------------------------*/
|
716 |
+
/* 3PR area wiget Plugin
|
717 |
+
/*-------------------------------------------*/
|
718 |
+
.prBox .subSection-title { font-size: 18px; }
|
719 |
+
.prBox .media_pr { margin-bottom: 0.5em; }
|
720 |
+
.prBox .media_pc { display: block; }
|
721 |
+
.prBox .media_sp { display: none; }
|
722 |
+
.prBox .summary { margin-bottom: 0.5em; font-size: 14px; line-height: 1.4em; }
|
723 |
+
.prBox .linkurl a { text-decoration: none; }
|
724 |
+
|
725 |
+
@media screen and (max-width: 992px) { .prBox .media_pc { display: none; }
|
726 |
+
.prBox .media_sp { display: block; }
|
727 |
+
.prBox .linkurl { margin-bottom: 1.5em; } }
|
728 |
+
/*-------------------------------------------*/
|
729 |
+
/* childPageIndex Plugin
|
730 |
+
/*-------------------------------------------*/
|
731 |
+
.childPage_list { margin-top: 4em; }
|
732 |
+
.childPage_list a:hover { text-decoration: none; }
|
733 |
+
|
734 |
+
.childPage_list_box { position: relative; margin-bottom: 2.5em; }
|
735 |
+
.childPage_list_box .childPage_list_title { font-size: 16px; line-height: 1.4; }
|
736 |
+
.childPage_list_box .wp-post-image { float: left; margin-right: 1em; width: 30%; border: solid 1px #ddd; }
|
737 |
+
.childPage_list_box .childPage_list_body { overflow: hidden; color: #333; font-size: 14px; }
|
738 |
+
.childPage_list_box .childPage_list_body:hover { text-decoration: underline; }
|
739 |
+
.childPage_list_box .childPage_list_text { overflow: hidden; margin-bottom: 0; }
|
740 |
+
.childPage_list_box .childPage_list_more { float: right; margin-top: 1.5em; }
|
741 |
+
|
742 |
+
@media screen and (max-width: 992px) { .childPage_list_box .wp-post-image { float: left; margin-right: 1em; width: 25%; border: solid 1px #ddd; } }
|
743 |
+
/*-------------------------------------------*/
|
744 |
+
/* sitemap page Plugin
|
745 |
+
/*-------------------------------------------*/
|
746 |
+
.sitemap-col { margin-top: 2.5em; }
|
747 |
+
.sitemap-col .link-list { margin-top: 0; margin-bottom: 0; }
|
748 |
+
.sitemap-col .page_item { padding: 0; }
|
749 |
+
.sitemap-col .children { margin-bottom: 2em; }
|
750 |
+
.sitemap-col .cat-item { padding: 0; }
|
gulpfile.js
ADDED
@@ -0,0 +1,74 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
var gulp = require('gulp');
|
2 |
+
|
3 |
+
var cssmin = require('gulp-cssmin');
|
4 |
+
// ファイルリネーム(.min作成用)
|
5 |
+
var rename = require('gulp-rename');
|
6 |
+
// ファイル結合
|
7 |
+
var concat = require('gulp-concat');
|
8 |
+
// js最小化
|
9 |
+
var jsmin = require('gulp-jsmin');
|
10 |
+
// エラーでも監視を続行させる
|
11 |
+
var plumber = require('gulp-plumber');
|
12 |
+
// sudo npm install gulp.spritesmith --save-dev
|
13 |
+
var spritesmith = require('gulp.spritesmith');
|
14 |
+
// http://blog.e-riverstyle.com/2014/02/gulpspritesmithcss-spritegulp.html
|
15 |
+
|
16 |
+
// // Task
|
17 |
+
// gulp.task('cssmin', function () {
|
18 |
+
// gulp.src('css/**/*.css')
|
19 |
+
// .pipe(plumber()) // エラーでも監視を続行
|
20 |
+
// .pipe(cssmin())
|
21 |
+
// .pipe(rename({suffix: '.min'}))
|
22 |
+
// .pipe(gulp.dest('css'));
|
23 |
+
// });
|
24 |
+
|
25 |
+
gulp.task( 'copy', function() {
|
26 |
+
// bootstrapのcssをscssディレクトリに複製
|
27 |
+
gulp.src( './bootstrap/css/bootstrap.min.css' )
|
28 |
+
.pipe(rename({prefix: "_",extname: ".scss"})) // 拡張子をscssに
|
29 |
+
.pipe( gulp.dest( './_scss/' ) ); // _scss ディレクトリに保存
|
30 |
+
} );
|
31 |
+
|
32 |
+
// ファイル結合
|
33 |
+
gulp.task('scripts', function() {
|
34 |
+
return gulp.src(['./js/jquery.flatheights.js','./js/master.js'])
|
35 |
+
.pipe(concat('all.js'))
|
36 |
+
.pipe(gulp.dest('./js/'));
|
37 |
+
});
|
38 |
+
gulp.task('scripts_in_bs', function() {
|
39 |
+
// bootstrap use
|
40 |
+
return gulp.src(['./js/jquery.flatheights.js','./bootstrap/js/bootstrap.min.js','./js/master.js'])
|
41 |
+
.pipe(concat('all_in_bs.js'))
|
42 |
+
.pipe(gulp.dest('./js/'));
|
43 |
+
});
|
44 |
+
|
45 |
+
// js最小化
|
46 |
+
gulp.task('jsmin', function () {
|
47 |
+
gulp.src(['./js/all.js'])
|
48 |
+
.pipe(plumber()) // エラーでも監視を続行
|
49 |
+
.pipe(jsmin())
|
50 |
+
.pipe(rename({suffix: '.min'}))
|
51 |
+
.pipe(gulp.dest('./js'));
|
52 |
+
});
|
53 |
+
|
54 |
+
gulp.task('jsmin_in_bs', function () {
|
55 |
+
gulp.src(['./js/all_in_bs.js'])
|
56 |
+
.pipe(plumber()) // エラーでも監視を続行
|
57 |
+
.pipe(jsmin())
|
58 |
+
.pipe(rename({suffix: '.min'}))
|
59 |
+
.pipe(gulp.dest('./js'));
|
60 |
+
});
|
61 |
+
|
62 |
+
|
63 |
+
// Watch
|
64 |
+
gulp.task('watch', function() {
|
65 |
+
// gulp.watch('css/*.css', ['cssmin'])
|
66 |
+
// gulp.watch('js/*.js', ['scripts']);
|
67 |
+
gulp.watch('js/master.js', ['scripts','scripts_in_bs']);
|
68 |
+
gulp.watch('js/all.js', ['jsmin']);
|
69 |
+
gulp.watch('js/all_in_bs.js', ['jsmin_in_bs']);
|
70 |
+
gulp.watch('_scss/style.scss', ['copy']);
|
71 |
+
});
|
72 |
+
|
73 |
+
// gulp.task('default', ['scripts','watch','sprite']);
|
74 |
+
gulp.task('default', ['scripts','jsmin','watch']);
|
icon-128x128.png
DELETED
Binary file
|
icon.svg
DELETED
@@ -1,243 +0,0 @@
|
|
1 |
-
<?xml version="1.0" encoding="utf-8"?>
|
2 |
-
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3 |
-
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
4 |
-
viewBox="0 0 128 128" style="enable-background:new 0 0 128 128;" xml:space="preserve">
|
5 |
-
<style type="text/css">
|
6 |
-
.st0{fill:#FFFFFF;}
|
7 |
-
.st1{opacity:0.5;fill:#EAEAEA;}
|
8 |
-
.st2{fill:#E5E5E5;}
|
9 |
-
.st3{display:none;}
|
10 |
-
.st4{display:inline;}
|
11 |
-
.st5{fill:#D70C19;}
|
12 |
-
.st6{fill:#4D4D4D;stroke:#FFFFFF;stroke-miterlimit:10;}
|
13 |
-
.st7{fill:#7C7C7C;stroke:#FFFFFF;stroke-miterlimit:10;}
|
14 |
-
.st8{fill:#9FA0A0;stroke:#FFFFFF;stroke-miterlimit:10;}
|
15 |
-
.st9{fill:#216289;stroke:#FFFFFF;stroke-miterlimit:10;}
|
16 |
-
.st10{fill:#004D6A;stroke:#FFFFFF;stroke-miterlimit:10;}
|
17 |
-
.st11{fill:none;stroke:#FFFFFF;stroke-miterlimit:10;}
|
18 |
-
.st12{fill:#333333;stroke:#FFFFFF;stroke-miterlimit:10;}
|
19 |
-
.st13{fill:#4D4D4D;}
|
20 |
-
.st14{fill:#636262;}
|
21 |
-
.st15{fill:#9FA0A0;}
|
22 |
-
.st16{fill:#C63239;}
|
23 |
-
.st17{fill:#595959;}
|
24 |
-
.st18{fill:none;stroke:#055177;stroke-width:0.25;stroke-miterlimit:10;}
|
25 |
-
.st19{fill:#333333;}
|
26 |
-
</style>
|
27 |
-
<g id="レイヤー_11">
|
28 |
-
<rect class="st0" width="128" height="128"/>
|
29 |
-
<path class="st1" d="M63.7,91.4c-25.8,0-48.8-9-63.7-23.1V111h128V67.7C113.2,82.1,89.9,91.4,63.7,91.4z"/>
|
30 |
-
<path class="st2" d="M63.7,108.4c-25.8,0-48.8-9-63.7-23.1V128h128V84.7C113.2,99.1,89.9,108.4,63.7,108.4z"/>
|
31 |
-
</g>
|
32 |
-
<g id="レイヤー_10" class="st3">
|
33 |
-
<g class="st4">
|
34 |
-
<rect x="10" y="14" class="st0" width="108" height="99"/>
|
35 |
-
<path class="st5" d="M13.2,116H52v4h-6.1c-1.6,0-2.8,1.5-2.8,3c0,1.5,1.2,3,2.8,3h36.9c1.5,0,2.8-1.5,2.8-3c0-1.5-1.3-3-2.8-3H76
|
36 |
-
v-4h40.4c2.4,0,3.8-1.1,5-3.1c0.5-0.9,0.6-2,0.6-3.1v-94c0-2.8-2.1-5.8-4.9-5.8H12.5C9.7,10,7,10,7,15.8v94c0,1.2,0.4,2.2,0.9,3.1
|
37 |
-
C9.1,114.9,10.9,116,13.2,116z M13,15c0.3,0,102.2,0,102.9,0s1.1,0.5,1.1,1.3c0,0.8,0,93.5,0,93.5c0,0.7-0.5,1.2-1.1,1.2H13.2
|
38 |
-
c-0.5,0-1.2-0.8-1.2-1.5c0,0,0-92.8,0-93.5C12,15.2,12.4,15,13,15z"/>
|
39 |
-
</g>
|
40 |
-
</g>
|
41 |
-
<g id="EX下">
|
42 |
-
</g>
|
43 |
-
<g id="ノーマル">
|
44 |
-
</g>
|
45 |
-
<g id="ノーマルのみ">
|
46 |
-
</g>
|
47 |
-
<g id="ノーマル上">
|
48 |
-
</g>
|
49 |
-
<g id="EX上">
|
50 |
-
<g>
|
51 |
-
<g>
|
52 |
-
<path class="st6" d="M33.2,27.5l0.3,21.6c0,0,0.4,1.8,1.7,1.8s2-1.8,2-1.8l-1.3-21.6c0,0-0.6-1.4-1.5-1.4S33.2,27.5,33.2,27.5z"
|
53 |
-
/>
|
54 |
-
<path class="st6" d="M28,27.5l-0.3,21.6c0,0-0.4,1.8-1.7,1.8c-1.3,0-2-1.8-2-1.8l1.3-21.6c0,0,0.6-1.4,1.5-1.4S28,27.5,28,27.5z"
|
55 |
-
/>
|
56 |
-
<polygon class="st6" points="29.6,60.5 29.6,52 32.5,53 31.8,16.8 33.2,15.7 31.8,7.1 29.3,7.1 28,15.6 29.2,16.8 28.7,61.1
|
57 |
-
"/>
|
58 |
-
<polygon class="st6" points="28.4,75.7 29.9,74.2 29.9,65.8 28.7,66.8 "/>
|
59 |
-
<polygon class="st6" points="23.8,96.5 26.1,98 26.1,109.9 23.3,111.9 19.9,110.1 20.3,98.2 "/>
|
60 |
-
<path class="st7" d="M38.8,109.4l-6.3-1.9v-7.3l4.7-1l-0.4-3.3l-5,0.2V85.7l4.6-0.8l-0.1-2.6l-1.7,0.2l-0.1-3.9l-1.5-1.4l0.8-0.8
|
61 |
-
L33,54.1l-2.6-0.6v7.7l-8,5.8l-1.3,18l4.7,6.8l-0.2,4.3l2.2,1.3v13.2l-4.4,3.6v6.8l2.3,0.8h12.5l1.1-1.7L38.8,109.4z M30.5,75
|
62 |
-
l-4,3.5l-0.5,8.3l-2.6-3.2l1.2-15.8l6-3.6V75z M30.9,79.5l1.3-1.5l1.3,1.1v3.6l-2.6,0.5V79.5z"/>
|
63 |
-
</g>
|
64 |
-
<g>
|
65 |
-
<path class="st8" d="M61.6,85.5c-3-0.4-5.2-1.4-5.6-2c-0.4,0.2-0.7,0.6-0.8,1c-0.1,0.4-0.9,2,5.8,3c5.8,0.9,6.8-0.2,7-0.8
|
66 |
-
c0.1-0.6-0.3-1.5-0.3-1.5C66.3,85.8,64.6,86,61.6,85.5z"/>
|
67 |
-
<path class="st8" d="M59.7,65.7l3.7-1.6v-0.6L55,46.7h-0.6l-2.7,1.2v0.6l7.2,17.3H59.7z M55.7,51l-1.1,0.5h-0.2l-1.1-3v-0.2
|
68 |
-
L54,48h0.2l1.5,2.9V51z"/>
|
69 |
-
<path class="st8" d="M88.7,83.5c-0.4,0.6-2.6,1.6-5.6,2c-3,0.4-4.7,0.3-6.1-0.3c0,0-0.5,0.9-0.3,1.5c0.1,0.6,1.2,1.7,7,0.8
|
70 |
-
c6.8-1.1,5.9-2.6,5.8-3C89.5,84.1,89.1,83.7,88.7,83.5z"/>
|
71 |
-
<path class="st8" d="M83.2,84.6c6.4-1,6.2-3.4,5.8-4.5c-0.5-1.1-2.3-1.2-2.3-1.2l0.7-0.6l-0.7-2.6l2.3-1.5l-0.6-8.9l-0.9-0.6
|
72 |
-
l-0.9,2.2l-1.5,0.3L80.2,65v-1.5l0.7-1.3l-4.2,0.4l-0.6,1.5h-3.7h0h-3.7l-0.6-1.5l-4.2-0.4l0.7,1.3V65l-4.9,2.2l-1.5-0.3
|
73 |
-
l-0.9-2.2l-0.9,0.6l-0.6,8.9l2.3,1.5l-0.7,2.6l0.7,0.6c0,0-1.9,0.2-2.3,1.2c-0.5,1.1-0.7,3.5,5.8,4.5c6.1,0.9,6.4-0.5,6.7-1.1
|
74 |
-
c0.3-0.6,0.1-1.3-0.3-2c0.6-0.2,1.8-0.8,1.8-0.8h2.6h0H75c0,0,1.2,0.6,1.8,0.8c-0.3,0.6-0.6,1.4-0.3,2
|
75 |
-
C76.8,84.1,77,85.5,83.2,84.6z"/>
|
76 |
-
<path class="st8" d="M90.4,46.7h-0.6l-8.4,16.8v0.6l3.7,1.6h0.8l7.2-17.3v-0.6L90.4,46.7z M91.6,48.5l-1.1,3h-0.2L89.1,51v-0.2
|
77 |
-
l1.5-2.9h0.2l0.8,0.3V48.5z"/>
|
78 |
-
</g>
|
79 |
-
<g>
|
80 |
-
<g>
|
81 |
-
<polygon class="st9" points="78.8,114.1 90.4,114.1 91.5,114.4 97.6,118.2 98.6,121.4 98,121.6 78,121.6 76.7,121.1 76.7,119
|
82 |
-
77.3,118.7 77.3,115 "/>
|
83 |
-
<polygon class="st10" points="78,106.4 82.3,104.5 83.5,101 84.1,100.4 88,100 88.9,100.7 91.5,110.8 90.3,112.2 78.7,112.2
|
84 |
-
77.7,111.3 77.7,107 "/>
|
85 |
-
<path class="st9" d="M78.3,93.7c0,0,6.9-2.2,7.4-2.4c0.6-0.2,0.6,0.1,0.8,0.5c0.2,0.4,1.1,3.8,1.2,4.3s0.2,0.9-0.6,1.2
|
86 |
-
c-1,0.4-3.9,1.3-5.1,1.7c-0.6,0.2-0.9,0.5-1,1.1c-0.1,0.5-0.2,1.5-0.3,2.2c-0.1,0.8-1,1.2-1,1.2l-1.6,0.6c0,0-0.6,0-0.6-0.4
|
87 |
-
c0-2,0-7.9,0-8.4C77.7,94.7,77.7,93.9,78.3,93.7z"/>
|
88 |
-
</g>
|
89 |
-
<g>
|
90 |
-
<polygon class="st9" points="66,114.1 54.4,114.1 53.3,114.4 47.2,118.2 46.1,121.4 46.8,121.6 66.8,121.6 68.1,121.1 68.1,119
|
91 |
-
67.5,118.7 67.5,115 "/>
|
92 |
-
<polygon class="st10" points="66.8,106.4 62.5,104.5 61.3,101 60.7,100.4 56.8,100 55.9,100.7 53.3,110.8 54.5,112.2
|
93 |
-
66.1,112.2 67.1,111.3 67.1,107 "/>
|
94 |
-
<path class="st9" d="M66.5,93.7c0,0-6.9-2.2-7.4-2.4s-0.6,0.1-0.8,0.5c-0.2,0.4-1.1,3.8-1.2,4.3s-0.2,0.9,0.6,1.2
|
95 |
-
c1,0.4,3.9,1.3,5.1,1.7c0.6,0.2,0.9,0.5,1,1.1c0.1,0.5,0.2,1.5,0.3,2.2c0.1,0.8,1,1.2,1,1.2l1.6,0.6c0,0,0.6,0,0.6-0.4
|
96 |
-
c0-2,0-7.9,0-8.4C67.1,94.7,67.1,93.9,66.5,93.7z"/>
|
97 |
-
</g>
|
98 |
-
</g>
|
99 |
-
<g>
|
100 |
-
<path class="st11" d="M72.4,52.1"/>
|
101 |
-
<polygon class="st12" points="77.8,47.4 78.7,46.9 78.4,35.3 78.3,35.1 78.3,34.5 78.6,34.5 78.6,33.9 77.4,33.9 77.4,34.5
|
102 |
-
77.7,34.5 77.7,35.1 77.6,35.4 77.2,47.1 "/>
|
103 |
-
<polygon class="st12" points="77,47.7 77.9,48 78.9,47.4 79.7,48 79.7,49.4 80,50 80,59.1 79.4,59.9 76.8,59.9 76.5,59.6
|
104 |
-
76.5,48.3 "/>
|
105 |
-
<polygon class="st12" points="67,47.4 66.1,46.9 66.4,35.3 66.5,35.1 66.5,34.5 66.2,34.5 66.2,33.9 67.4,33.9 67.4,34.5
|
106 |
-
67.1,34.5 67.1,35.1 67.2,35.4 67.6,47.1 "/>
|
107 |
-
<polygon class="st12" points="67.8,47.7 66.9,48 65.9,47.4 65.1,48 65.1,49.4 64.8,50 64.8,59.1 65.4,59.9 68,59.9 68.3,59.6
|
108 |
-
68.3,48.3 "/>
|
109 |
-
</g>
|
110 |
-
<g>
|
111 |
-
<g>
|
112 |
-
<path class="st9" d="M96.1,92.4L96,91.5c-0.2,0-0.4,0-0.6,0c-1.4-0.4-2.2-1.8-1.8-3.1c0.1-0.5,0.4-0.9,0.8-1.2
|
113 |
-
c-1.1-0.5-1.7-1.7-1.4-2.9c0.2-0.8,0.8-1.4,1.5-1.7l-0.2-1.1l-2.4-1l-0.7,0.2l0.5,22.3l0.5,0.4l1.5-0.7l0.7-8.7L96.1,92.4z"/>
|
114 |
-
<circle class="st6" cx="95.4" cy="84.9" r="2"/>
|
115 |
-
<circle class="st6" cx="96" cy="89" r="2"/>
|
116 |
-
</g>
|
117 |
-
<g>
|
118 |
-
<path class="st9" d="M48.7,92.4l0.1-0.9c0.2,0,0.4,0,0.6,0c1.4-0.4,2.2-1.8,1.8-3.1c-0.1-0.5-0.4-0.9-0.8-1.2
|
119 |
-
c1.1-0.5,1.7-1.7,1.4-2.9c-0.2-0.8-0.8-1.4-1.5-1.7l0.2-1.1l2.4-1l0.7,0.2L53,102.9l-0.5,0.4l-1.5-0.7l-0.7-8.7L48.7,92.4z"/>
|
120 |
-
<circle class="st6" cx="49.4" cy="84.9" r="2"/>
|
121 |
-
<circle class="st6" cx="48.8" cy="89" r="2"/>
|
122 |
-
</g>
|
123 |
-
</g>
|
124 |
-
<g>
|
125 |
-
<g>
|
126 |
-
<polygon class="st6" points="96.7,103.5 107.7,103.6 108,105.1 96.5,105 "/>
|
127 |
-
<polygon class="st6" points="98.3,92.9 99,99.5 106.1,99.5 107.3,102.7 97,102.6 "/>
|
128 |
-
<path class="st9" d="M105.4,95.9l-0.8-1l-1.2-23.1l1.3-2.9l-2.3-7.6c-0.2,0-0.5,0-0.7-0.1c-1.6-0.4-2.6-2.1-2.2-3.7
|
129 |
-
c0.1-0.5,0.4-0.9,0.7-1.3c-1.6-0.5-2.5-2.1-2-3.7c0.2-0.7,0.6-1.2,1-1.6l-0.6-1.8l-3.9-1l0.3,19.6l1.3,1.5l3.6,28.9l5.5-0.1
|
130 |
-
L105.4,95.9z M102.2,71.1l-5.3-3.7l1.4-2.1l4.9,3.7L102.2,71.1z"/>
|
131 |
-
<circle class="st6" cx="101.2" cy="53.3" r="2.6"/>
|
132 |
-
<circle class="st6" cx="102.5" cy="58.3" r="2.6"/>
|
133 |
-
</g>
|
134 |
-
<g>
|
135 |
-
<polygon class="st6" points="48.1,103.5 37.1,103.6 36.8,105.1 48.3,105 "/>
|
136 |
-
<polygon class="st6" points="46.5,92.9 45.8,99.5 38.6,99.5 37.5,102.7 47.8,102.6 "/>
|
137 |
-
<path class="st9" d="M39.3,97.9l5.5,0.1l3.6-28.9l1.3-1.5L49.9,48l-3.9,1l-0.6,1.8c0.5,0.4,0.9,0.9,1,1.6c0.4,1.6-0.5,3.2-2,3.7
|
138 |
-
c0.3,0.4,0.6,0.8,0.7,1.3c0.4,1.6-0.5,3.3-2.2,3.7c-0.3,0.1-0.5,0.1-0.7,0.1L40,68.9l1.3,2.9l-1.2,23.1l-0.8,1L39.3,97.9z
|
139 |
-
M41.5,68.9l4.9-3.7l1.4,2.1l-5.3,3.7L41.5,68.9z"/>
|
140 |
-
<circle class="st6" cx="43.6" cy="53.3" r="2.6"/>
|
141 |
-
<circle class="st6" cx="42.3" cy="58.3" r="2.6"/>
|
142 |
-
</g>
|
143 |
-
</g>
|
144 |
-
</g>
|
145 |
-
<g>
|
146 |
-
<g>
|
147 |
-
<path class="st13" d="M33.2,27.5l0.3,21.6c0,0,0.4,1.8,1.7,1.8s2-1.8,2-1.8l-1.3-21.6c0,0-0.6-1.4-1.5-1.4S33.2,27.5,33.2,27.5z"
|
148 |
-
/>
|
149 |
-
<path class="st13" d="M28,27.5l-0.3,21.6c0,0-0.4,1.8-1.7,1.8c-1.3,0-2-1.8-2-1.8l1.3-21.6c0,0,0.6-1.4,1.5-1.4S28,27.5,28,27.5z
|
150 |
-
"/>
|
151 |
-
<polygon class="st13" points="29.6,60.5 29.6,52 32.5,53 31.8,16.8 33.2,15.7 31.8,7.1 29.3,7.1 28,15.6 29.2,16.8 28.7,61.1
|
152 |
-
"/>
|
153 |
-
<polygon class="st13" points="28.4,75.7 29.9,74.2 29.9,65.8 28.7,66.8 "/>
|
154 |
-
<polygon class="st13" points="23.8,96.5 26.1,98 26.1,109.9 23.3,111.9 19.9,110.1 20.3,98.2 "/>
|
155 |
-
<path class="st14" d="M38.8,109.4l-6.3-1.9v-7.3l4.7-1l-0.4-3.3l-5,0.2V85.7l4.6-0.8l-0.1-2.6l-1.7,0.2l-0.1-3.9l-1.5-1.4
|
156 |
-
l0.8-0.8L33,54.1l-2.6-0.6v7.7l-8,5.8l-1.3,18l4.7,6.8l-0.2,4.3l2.2,1.3v13.2l-4.4,3.6v6.8l2.3,0.8h12.5l1.1-1.7L38.8,109.4z
|
157 |
-
M30.5,75l-4,3.5l-0.5,8.3l-2.6-3.2l1.2-15.8l6-3.6V75z M30.9,79.5l1.3-1.5l1.3,1.1v3.6l-2.6,0.5V79.5z"/>
|
158 |
-
</g>
|
159 |
-
<g>
|
160 |
-
<path class="st15" d="M61.6,85.5c-3-0.4-5.2-1.4-5.6-2c-0.4,0.2-0.7,0.6-0.8,1c-0.1,0.4-0.9,2,5.8,3c5.8,0.9,6.8-0.2,7-0.8
|
161 |
-
c0.1-0.6-0.3-1.5-0.3-1.5C66.3,85.8,64.6,86,61.6,85.5z"/>
|
162 |
-
<path class="st15" d="M59.7,65.7l3.7-1.6v-0.6L55,46.7h-0.6l-2.7,1.2v0.6l7.2,17.3H59.7z M55.7,51l-1.1,0.5h-0.2l-1.1-3v-0.2
|
163 |
-
L54,48h0.2l1.5,2.9V51z"/>
|
164 |
-
<path class="st15" d="M88.7,83.5c-0.4,0.6-2.6,1.6-5.6,2c-3,0.4-4.7,0.3-6.1-0.3c0,0-0.5,0.9-0.3,1.5c0.1,0.6,1.2,1.7,7,0.8
|
165 |
-
c6.8-1.1,5.9-2.6,5.8-3C89.5,84.1,89.1,83.7,88.7,83.5z"/>
|
166 |
-
<path class="st15" d="M83.2,84.6c6.4-1,6.2-3.4,5.8-4.5c-0.5-1.1-2.3-1.2-2.3-1.2l0.7-0.6l-0.7-2.6l2.3-1.5l-0.6-8.9l-0.9-0.6
|
167 |
-
l-0.9,2.2l-1.5,0.3L80.2,65v-1.5l0.7-1.3l-4.2,0.4l-0.6,1.5h-3.7h0h-3.7l-0.6-1.5l-4.2-0.4l0.7,1.3V65l-4.9,2.2l-1.5-0.3
|
168 |
-
l-0.9-2.2l-0.9,0.6l-0.6,8.9l2.3,1.5l-0.7,2.6l0.7,0.6c0,0-1.9,0.2-2.3,1.2c-0.5,1.1-0.7,3.5,5.8,4.5c6.1,0.9,6.4-0.5,6.7-1.1
|
169 |
-
c0.3-0.6,0.1-1.3-0.3-2c0.6-0.2,1.8-0.8,1.8-0.8h2.6h0H75c0,0,1.2,0.6,1.8,0.8c-0.3,0.6-0.6,1.4-0.3,2
|
170 |
-
C76.8,84.1,77,85.5,83.2,84.6z"/>
|
171 |
-
<path class="st15" d="M90.4,46.7h-0.6l-8.4,16.8v0.6l3.7,1.6h0.8l7.2-17.3v-0.6L90.4,46.7z M91.6,48.5l-1.1,3h-0.2L89.1,51v-0.2
|
172 |
-
l1.5-2.9h0.2l0.8,0.3V48.5z"/>
|
173 |
-
</g>
|
174 |
-
<g>
|
175 |
-
<g>
|
176 |
-
<polygon class="st16" points="78.8,114.1 90.4,114.1 91.5,114.4 97.6,118.2 98.6,121.4 98,121.6 78,121.6 76.7,121.1 76.7,119
|
177 |
-
77.3,118.7 77.3,115 "/>
|
178 |
-
<polygon class="st17" points="78,106.4 82.3,104.5 83.5,101 84.1,100.4 88,100 88.9,100.7 91.5,110.8 90.3,112.2 78.7,112.2
|
179 |
-
77.7,111.3 77.7,107 "/>
|
180 |
-
<path class="st16" d="M78.3,93.7c0,0,6.9-2.2,7.4-2.4c0.6-0.2,0.6,0.1,0.8,0.5c0.2,0.4,1.1,3.8,1.2,4.3s0.2,0.9-0.6,1.2
|
181 |
-
c-1,0.4-3.9,1.3-5.1,1.7c-0.6,0.2-0.9,0.5-1,1.1c-0.1,0.5-0.2,1.5-0.3,2.2c-0.1,0.8-1,1.2-1,1.2l-1.6,0.6c0,0-0.6,0-0.6-0.4
|
182 |
-
c0-2,0-7.9,0-8.4C77.7,94.7,77.7,93.9,78.3,93.7z"/>
|
183 |
-
</g>
|
184 |
-
<g>
|
185 |
-
<polygon class="st16" points="66,114.1 54.4,114.1 53.3,114.4 47.2,118.2 46.1,121.4 46.8,121.6 66.8,121.6 68.1,121.1
|
186 |
-
68.1,119 67.5,118.7 67.5,115 "/>
|
187 |
-
<polygon class="st17" points="66.8,106.4 62.5,104.5 61.3,101 60.7,100.4 56.8,100 55.9,100.7 53.3,110.8 54.5,112.2
|
188 |
-
66.1,112.2 67.1,111.3 67.1,107 "/>
|
189 |
-
<path class="st16" d="M66.5,93.7c0,0-6.9-2.2-7.4-2.4s-0.6,0.1-0.8,0.5c-0.2,0.4-1.1,3.8-1.2,4.3s-0.2,0.9,0.6,1.2
|
190 |
-
c1,0.4,3.9,1.3,5.1,1.7c0.6,0.2,0.9,0.5,1,1.1c0.1,0.5,0.2,1.5,0.3,2.2c0.1,0.8,1,1.2,1,1.2l1.6,0.6c0,0,0.6,0,0.6-0.4
|
191 |
-
c0-2,0-7.9,0-8.4C67.1,94.7,67.1,93.9,66.5,93.7z"/>
|
192 |
-
</g>
|
193 |
-
</g>
|
194 |
-
<g>
|
195 |
-
<path class="st18" d="M72.4,52.1"/>
|
196 |
-
<polygon class="st19" points="77.8,47.4 78.7,46.9 78.4,35.3 78.3,35.1 78.3,34.5 78.6,34.5 78.6,33.9 77.4,33.9 77.4,34.5
|
197 |
-
77.7,34.5 77.7,35.1 77.6,35.4 77.2,47.1 "/>
|
198 |
-
<polygon class="st19" points="77,47.7 77.9,48 78.9,47.4 79.7,48 79.7,49.4 80,50 80,59.1 79.4,59.9 76.8,59.9 76.5,59.6
|
199 |
-
76.5,48.3 "/>
|
200 |
-
<polygon class="st19" points="67,47.4 66.1,46.9 66.4,35.3 66.5,35.1 66.5,34.5 66.2,34.5 66.2,33.9 67.4,33.9 67.4,34.5
|
201 |
-
67.1,34.5 67.1,35.1 67.2,35.4 67.6,47.1 "/>
|
202 |
-
<polygon class="st19" points="67.8,47.7 66.9,48 65.9,47.4 65.1,48 65.1,49.4 64.8,50 64.8,59.1 65.4,59.9 68,59.9 68.3,59.6
|
203 |
-
68.3,48.3 "/>
|
204 |
-
</g>
|
205 |
-
<g>
|
206 |
-
<g>
|
207 |
-
<path class="st16" d="M96.1,92.4L96,91.5c-0.2,0-0.4,0-0.6,0c-1.4-0.4-2.2-1.8-1.8-3.1c0.1-0.5,0.4-0.9,0.8-1.2
|
208 |
-
c-1.1-0.5-1.7-1.7-1.4-2.9c0.2-0.8,0.8-1.4,1.5-1.7l-0.2-1.1l-2.4-1l-0.7,0.2l0.5,22.3l0.5,0.4l1.5-0.7l0.7-8.7L96.1,92.4z"/>
|
209 |
-
<circle class="st13" cx="95.4" cy="84.9" r="2"/>
|
210 |
-
<circle class="st13" cx="96" cy="89" r="2"/>
|
211 |
-
</g>
|
212 |
-
<g>
|
213 |
-
<path class="st16" d="M48.7,92.4l0.1-0.9c0.2,0,0.4,0,0.6,0c1.4-0.4,2.2-1.8,1.8-3.1c-0.1-0.5-0.4-0.9-0.8-1.2
|
214 |
-
c1.1-0.5,1.7-1.7,1.4-2.9c-0.2-0.8-0.8-1.4-1.5-1.7l0.2-1.1l2.4-1l0.7,0.2L53,102.9l-0.5,0.4l-1.5-0.7l-0.7-8.7L48.7,92.4z"/>
|
215 |
-
<circle class="st13" cx="49.4" cy="84.9" r="2"/>
|
216 |
-
<circle class="st13" cx="48.8" cy="89" r="2"/>
|
217 |
-
</g>
|
218 |
-
</g>
|
219 |
-
<g>
|
220 |
-
<g>
|
221 |
-
<polygon class="st13" points="96.7,103.5 107.7,103.6 108,105.1 96.5,105 "/>
|
222 |
-
<polygon class="st13" points="98.3,92.9 99,99.5 106.1,99.5 107.3,102.7 97,102.6 "/>
|
223 |
-
<path class="st16" d="M105.4,95.9l-0.8-1l-1.2-23.1l1.3-2.9l-2.3-7.6c-0.2,0-0.5,0-0.7-0.1c-1.6-0.4-2.6-2.1-2.2-3.7
|
224 |
-
c0.1-0.5,0.4-0.9,0.7-1.3c-1.6-0.5-2.5-2.1-2-3.7c0.2-0.7,0.6-1.2,1-1.6l-0.6-1.8l-3.9-1l0.3,19.6l1.3,1.5l3.6,28.9l5.5-0.1
|
225 |
-
L105.4,95.9z M102.2,71.1l-5.3-3.7l1.4-2.1l4.9,3.7L102.2,71.1z"/>
|
226 |
-
<circle class="st13" cx="101.2" cy="53.3" r="2.6"/>
|
227 |
-
<circle class="st13" cx="102.5" cy="58.3" r="2.6"/>
|
228 |
-
</g>
|
229 |
-
<g>
|
230 |
-
<polygon class="st13" points="48.1,103.5 37.1,103.6 36.8,105.1 48.3,105 "/>
|
231 |
-
<polygon class="st13" points="46.5,92.9 45.8,99.5 38.6,99.5 37.5,102.7 47.8,102.6 "/>
|
232 |
-
<path class="st16" d="M39.3,97.9l5.5,0.1l3.6-28.9l1.3-1.5L49.9,48l-3.9,1l-0.6,1.8c0.5,0.4,0.9,0.9,1,1.6
|
233 |
-
c0.4,1.6-0.5,3.2-2,3.7c0.3,0.4,0.6,0.8,0.7,1.3c0.4,1.6-0.5,3.3-2.2,3.7c-0.3,0.1-0.5,0.1-0.7,0.1L40,68.9l1.3,2.9l-1.2,23.1
|
234 |
-
l-0.8,1L39.3,97.9z M41.5,68.9l4.9-3.7l1.4,2.1l-5.3,3.7L41.5,68.9z"/>
|
235 |
-
<circle class="st13" cx="43.6" cy="53.3" r="2.6"/>
|
236 |
-
<circle class="st13" cx="42.3" cy="58.3" r="2.6"/>
|
237 |
-
</g>
|
238 |
-
</g>
|
239 |
-
</g>
|
240 |
-
</g>
|
241 |
-
<g id="レイヤー_6">
|
242 |
-
</g>
|
243 |
-
</svg>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
js/all.js
ADDED
@@ -0,0 +1,151 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*
|
2 |
+
======================================================================
|
3 |
+
jquery.flatheights.js
|
4 |
+
Version: 2010-09-15
|
5 |
+
http://www.akatsukinishisu.net/itazuragaki/js/i20070801.html
|
6 |
+
======================================================================
|
7 |
+
/*-------------------------------------------*/
|
8 |
+
/* $.changeLetterSize.addHandler(func)
|
9 |
+
/* 文字の大きさが変化した時に実行する処理を追加
|
10 |
+
/*-------------------------------------------*/
|
11 |
+
jQuery.changeLetterSize = {
|
12 |
+
handlers : [],
|
13 |
+
interval : 1000,
|
14 |
+
currentSize: 0
|
15 |
+
};
|
16 |
+
|
17 |
+
(function($) {
|
18 |
+
|
19 |
+
var self = $.changeLetterSize;
|
20 |
+
|
21 |
+
/* 文字の大きさを確認するためのins要素 */
|
22 |
+
var ins = $('<ins>M</ins>').css({
|
23 |
+
display: 'block',
|
24 |
+
visibility: 'hidden',
|
25 |
+
position: 'absolute',
|
26 |
+
padding: '0',
|
27 |
+
top: '0'
|
28 |
+
});
|
29 |
+
|
30 |
+
/* 文字の大きさが変わったか */
|
31 |
+
var isChanged = function() {
|
32 |
+
ins.appendTo('body');
|
33 |
+
var size = ins[0].offsetHeight;
|
34 |
+
ins.remove();
|
35 |
+
if (self.currentSize == size) return false;
|
36 |
+
self.currentSize = size;
|
37 |
+
return true;
|
38 |
+
};
|
39 |
+
|
40 |
+
/* 文書を読み込んだ時点で
|
41 |
+
文字の大きさを確認しておく */
|
42 |
+
$(isChanged);
|
43 |
+
|
44 |
+
/* 文字の大きさが変わっていたら、
|
45 |
+
handlers中の関数を順に実行 */
|
46 |
+
var observer = function() {
|
47 |
+
if (!isChanged()) return;
|
48 |
+
$.each(self.handlers, function(i, handler) {
|
49 |
+
handler();
|
50 |
+
});
|
51 |
+
};
|
52 |
+
|
53 |
+
/* ハンドラを登録し、
|
54 |
+
最初の登録であれば、定期処理を開始 */
|
55 |
+
self.addHandler = function(func) {
|
56 |
+
self.handlers.push(func);
|
57 |
+
if (self.handlers.length == 1) {
|
58 |
+
setInterval(observer, self.interval);
|
59 |
+
}
|
60 |
+
};
|
61 |
+
|
62 |
+
})(jQuery);
|
63 |
+
|
64 |
+
|
65 |
+
/*-------------------------------------------*/
|
66 |
+
/* $(expr).flatHeights()
|
67 |
+
/* $(expr)で選択した複数の要素について、それぞれ高さを
|
68 |
+
/* 一番高いものに揃える
|
69 |
+
/*-------------------------------------------*/
|
70 |
+
|
71 |
+
(function($) {
|
72 |
+
|
73 |
+
/* 対象となる要素群の集合 */
|
74 |
+
var sets = [];
|
75 |
+
|
76 |
+
/* 高さ揃えの処理本体 */
|
77 |
+
var flatHeights = function(set) {
|
78 |
+
var maxHeight = 0;
|
79 |
+
set.each(function(){
|
80 |
+
var height = this.offsetHeight;
|
81 |
+
if (height > maxHeight) maxHeight = height;
|
82 |
+
});
|
83 |
+
set.css('height', maxHeight + 'px');
|
84 |
+
};
|
85 |
+
|
86 |
+
/* 要素群の高さを揃え、setsに追加 */
|
87 |
+
jQuery.fn.flatHeights = function() {
|
88 |
+
if (this.length > 1) {
|
89 |
+
flatHeights(this);
|
90 |
+
sets.push(this);
|
91 |
+
}
|
92 |
+
return this;
|
93 |
+
};
|
94 |
+
|
95 |
+
/* 高さ揃えを再実行する処理 */
|
96 |
+
var reflatting = function() {
|
97 |
+
$.each(sets, function() {
|
98 |
+
this.height('auto');
|
99 |
+
flatHeights(this);
|
100 |
+
});
|
101 |
+
};
|
102 |
+
|
103 |
+
/* 文字の大きさが変わった時に高さ揃えを再実行 */
|
104 |
+
$.changeLetterSize.addHandler(reflatting);
|
105 |
+
|
106 |
+
/* ウィンドウの大きさが変わった時に高さ揃えを再実行 */
|
107 |
+
$(window).resize(reflatting);
|
108 |
+
|
109 |
+
})(jQuery);
|
110 |
+
|
111 |
+
jQuery(document).ready(function($){
|
112 |
+
// .topPrTitには高さのpaddingを入れる事もあるので a に対して指定
|
113 |
+
jQuery('.topPrTit a').flatHeights();
|
114 |
+
jQuery('.topPrDescription').flatHeights();
|
115 |
+
jQuery('.child_page_block').flatHeights();
|
116 |
+
jQuery('.child_page_block p').flatHeights();
|
117 |
+
jQuery('#content .child_page_block h4 a').flatHeights();
|
118 |
+
});
|
119 |
+
pagePluginReSize();
|
120 |
+
jQuery(window).resize(function(){
|
121 |
+
pagePluginReSize();
|
122 |
+
});
|
123 |
+
|
124 |
+
/*-------------------------------------------*/
|
125 |
+
/* facebookLikeBox
|
126 |
+
/*-------------------------------------------*/
|
127 |
+
function pagePluginReSize(){
|
128 |
+
// jQuery('.fb_iframe_widget').each(function(){
|
129 |
+
// var element = jQuery(this).parent().width();
|
130 |
+
// console.log(element);
|
131 |
+
// jQuery(this).attr('data-width',element);
|
132 |
+
// jQuery(this).children('span:first').css({"width":element});
|
133 |
+
// jQuery(this).children('span iframe.fb_ltr').css({"width":element});
|
134 |
+
// });
|
135 |
+
}
|
136 |
+
|
137 |
+
!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');
|
138 |
+
|
139 |
+
/*-------------------------------------------*/
|
140 |
+
/* jquery.flatheights.js
|
141 |
+
/*-------------------------------------------*/
|
142 |
+
(function($){
|
143 |
+
$(function() {
|
144 |
+
$('.prArea > .subSection-title').flatHeights();
|
145 |
+
$('.prArea > .summary').flatHeights();
|
146 |
+
$('.childPage_list_title').flatHeights();
|
147 |
+
});
|
148 |
+
window.onload = function() {
|
149 |
+
$('.childPage_list_box').flatHeights();
|
150 |
+
}
|
151 |
+
})(jQuery);
|
js/all.min.js
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
jQuery.changeLetterSize={handlers:[],interval:1000,currentSize:0};(function($){var self=$.changeLetterSize;var ins=$('<ins>M</ins>').css({display:'block',visibility:'hidden',position:'absolute',padding:'0',top:'0'});var isChanged=function(){ins.appendTo('body');var size=ins[0].offsetHeight;ins.remove();if(self.currentSize==size)return false;self.currentSize=size;return true;};$(isChanged);var observer=function(){if(!isChanged())return;$.each(self.handlers,function(i,handler){handler();});};self.addHandler=function(func){self.handlers.push(func);if(self.handlers.length==1){setInterval(observer,self.interval);}};})(jQuery);(function($){var sets=[];var flatHeights=function(set){var maxHeight=0;set.each(function(){var height=this.offsetHeight;if(height>maxHeight)maxHeight=height;});set.css('height',maxHeight+'px');};jQuery.fn.flatHeights=function(){if(this.length>1){flatHeights(this);sets.push(this);}
|
3 |
+
return this;};var reflatting=function(){$.each(sets,function(){this.height('auto');flatHeights(this);});};$.changeLetterSize.addHandler(reflatting);$(window).resize(reflatting);})(jQuery);jQuery(document).ready(function($){jQuery('.topPrTit a').flatHeights();jQuery('.topPrDescription').flatHeights();jQuery('.child_page_block').flatHeights();jQuery('.child_page_block p').flatHeights();jQuery('#content .child_page_block h4 a').flatHeights();});pagePluginReSize();jQuery(window).resize(function(){pagePluginReSize();});function pagePluginReSize(){}
|
4 |
+
!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document,'script','twitter-wjs');(function($){$(function(){$('.prArea > .subSection-title').flatHeights();$('.prArea > .summary').flatHeights();$('.childPage_list_title').flatHeights();});window.onload=function(){$('.childPage_list_box').flatHeights();}})(jQuery);
|
js/all_in_bs.js
ADDED
@@ -0,0 +1,158 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*
|
2 |
+
======================================================================
|
3 |
+
jquery.flatheights.js
|
4 |
+
Version: 2010-09-15
|
5 |
+
http://www.akatsukinishisu.net/itazuragaki/js/i20070801.html
|
6 |
+
======================================================================
|
7 |
+
/*-------------------------------------------*/
|
8 |
+
/* $.changeLetterSize.addHandler(func)
|
9 |
+
/* 文字の大きさが変化した時に実行する処理を追加
|
10 |
+
/*-------------------------------------------*/
|
11 |
+
jQuery.changeLetterSize = {
|
12 |
+
handlers : [],
|
13 |
+
interval : 1000,
|
14 |
+
currentSize: 0
|
15 |
+
};
|
16 |
+
|
17 |
+
(function($) {
|
18 |
+
|
19 |
+
var self = $.changeLetterSize;
|
20 |
+
|
21 |
+
/* 文字の大きさを確認するためのins要素 */
|
22 |
+
var ins = $('<ins>M</ins>').css({
|
23 |
+
display: 'block',
|
24 |
+
visibility: 'hidden',
|
25 |
+
position: 'absolute',
|
26 |
+
padding: '0',
|
27 |
+
top: '0'
|
28 |
+
});
|
29 |
+
|
30 |
+
/* 文字の大きさが変わったか */
|
31 |
+
var isChanged = function() {
|
32 |
+
ins.appendTo('body');
|
33 |
+
var size = ins[0].offsetHeight;
|
34 |
+
ins.remove();
|
35 |
+
if (self.currentSize == size) return false;
|
36 |
+
self.currentSize = size;
|
37 |
+
return true;
|
38 |
+
};
|
39 |
+
|
40 |
+
/* 文書を読み込んだ時点で
|
41 |
+
文字の大きさを確認しておく */
|
42 |
+
$(isChanged);
|
43 |
+
|
44 |
+
/* 文字の大きさが変わっていたら、
|
45 |
+
handlers中の関数を順に実行 */
|
46 |
+
var observer = function() {
|
47 |
+
if (!isChanged()) return;
|
48 |
+
$.each(self.handlers, function(i, handler) {
|
49 |
+
handler();
|
50 |
+
});
|
51 |
+
};
|
52 |
+
|
53 |
+
/* ハンドラを登録し、
|
54 |
+
最初の登録であれば、定期処理を開始 */
|
55 |
+
self.addHandler = function(func) {
|
56 |
+
self.handlers.push(func);
|
57 |
+
if (self.handlers.length == 1) {
|
58 |
+
setInterval(observer, self.interval);
|
59 |
+
}
|
60 |
+
};
|
61 |
+
|
62 |
+
})(jQuery);
|
63 |
+
|
64 |
+
|
65 |
+
/*-------------------------------------------*/
|
66 |
+
/* $(expr).flatHeights()
|
67 |
+
/* $(expr)で選択した複数の要素について、それぞれ高さを
|
68 |
+
/* 一番高いものに揃える
|
69 |
+
/*-------------------------------------------*/
|
70 |
+
|
71 |
+
(function($) {
|
72 |
+
|
73 |
+
/* 対象となる要素群の集合 */
|
74 |
+
var sets = [];
|
75 |
+
|
76 |
+
/* 高さ揃えの処理本体 */
|
77 |
+
var flatHeights = function(set) {
|
78 |
+
var maxHeight = 0;
|
79 |
+
set.each(function(){
|
80 |
+
var height = this.offsetHeight;
|
81 |
+
if (height > maxHeight) maxHeight = height;
|
82 |
+
});
|
83 |
+
set.css('height', maxHeight + 'px');
|
84 |
+
};
|
85 |
+
|
86 |
+
/* 要素群の高さを揃え、setsに追加 */
|
87 |
+
jQuery.fn.flatHeights = function() {
|
88 |
+
if (this.length > 1) {
|
89 |
+
flatHeights(this);
|
90 |
+
sets.push(this);
|
91 |
+
}
|
92 |
+
return this;
|
93 |
+
};
|
94 |
+
|
95 |
+
/* 高さ揃えを再実行する処理 */
|
96 |
+
var reflatting = function() {
|
97 |
+
$.each(sets, function() {
|
98 |
+
this.height('auto');
|
99 |
+
flatHeights(this);
|
100 |
+
});
|
101 |
+
};
|
102 |
+
|
103 |
+
/* 文字の大きさが変わった時に高さ揃えを再実行 */
|
104 |
+
$.changeLetterSize.addHandler(reflatting);
|
105 |
+
|
106 |
+
/* ウィンドウの大きさが変わった時に高さ揃えを再実行 */
|
107 |
+
$(window).resize(reflatting);
|
108 |
+
|
109 |
+
})(jQuery);
|
110 |
+
|
111 |
+
jQuery(document).ready(function($){
|
112 |
+
// .topPrTitには高さのpaddingを入れる事もあるので a に対して指定
|
113 |
+
jQuery('.topPrTit a').flatHeights();
|
114 |
+
jQuery('.topPrDescription').flatHeights();
|
115 |
+
jQuery('.child_page_block').flatHeights();
|
116 |
+
jQuery('.child_page_block p').flatHeights();
|
117 |
+
jQuery('#content .child_page_block h4 a').flatHeights();
|
118 |
+
});
|
119 |
+
/*!
|
120 |
+
* Bootstrap v3.3.4 (http://getbootstrap.com)
|
121 |
+
* Copyright 2011-2015 Twitter, Inc.
|
122 |
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
123 |
+
*/
|
124 |
+
if("undefined"==typeof jQuery)throw new Error("Bootstrap's JavaScript requires jQuery");+function(a){"use strict";var b=a.fn.jquery.split(" ")[0].split(".");if(b[0]<2&&b[1]<9||1==b[0]&&9==b[1]&&b[2]<1)throw new Error("Bootstrap's JavaScript requires jQuery version 1.9.1 or higher")}(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]};return!1}a.fn.emulateTransitionEnd=function(b){var c=!1,d=this;a(this).one("bsTransitionEnd",function(){c=!0});var e=function(){c||a(d).trigger(a.support.transition.end)};return setTimeout(e,b),this},a(function(){a.support.transition=b(),a.support.transition&&(a.event.special.bsTransitionEnd={bindType:a.support.transition.end,delegateType:a.support.transition.end,handle:function(b){return a(b.target).is(this)?b.handleObj.handler.apply(this,arguments):void 0}})})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var c=a(this),e=c.data("bs.alert");e||c.data("bs.alert",e=new d(this)),"string"==typeof b&&e[b].call(c)})}var c='[data-dismiss="alert"]',d=function(b){a(b).on("click",c,this.close)};d.VERSION="3.3.4",d.TRANSITION_DURATION=150,d.prototype.close=function(b){function c(){g.detach().trigger("closed.bs.alert").remove()}var e=a(this),f=e.attr("data-target");f||(f=e.attr("href"),f=f&&f.replace(/.*(?=#[^\s]*$)/,""));var g=a(f);b&&b.preventDefault(),g.length||(g=e.closest(".alert")),g.trigger(b=a.Event("close.bs.alert")),b.isDefaultPrevented()||(g.removeClass("in"),a.support.transition&&g.hasClass("fade")?g.one("bsTransitionEnd",c).emulateTransitionEnd(d.TRANSITION_DURATION):c())};var e=a.fn.alert;a.fn.alert=b,a.fn.alert.Constructor=d,a.fn.alert.noConflict=function(){return a.fn.alert=e,this},a(document).on("click.bs.alert.data-api",c,d.prototype.close)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.button"),f="object"==typeof b&&b;e||d.data("bs.button",e=new c(this,f)),"toggle"==b?e.toggle():b&&e.setState(b)})}var c=function(b,d){this.$element=a(b),this.options=a.extend({},c.DEFAULTS,d),this.isLoading=!1};c.VERSION="3.3.4",c.DEFAULTS={loadingText:"loading..."},c.prototype.setState=function(b){var c="disabled",d=this.$element,e=d.is("input")?"val":"html",f=d.data();b+="Text",null==f.resetText&&d.data("resetText",d[e]()),setTimeout(a.proxy(function(){d[e](null==f[b]?this.options[b]:f[b]),"loadingText"==b?(this.isLoading=!0,d.addClass(c).attr(c,c)):this.isLoading&&(this.isLoading=!1,d.removeClass(c).removeAttr(c))},this),0)},c.prototype.toggle=function(){var a=!0,b=this.$element.closest('[data-toggle="buttons"]');if(b.length){var c=this.$element.find("input");"radio"==c.prop("type")&&(c.prop("checked")&&this.$element.hasClass("active")?a=!1:b.find(".active").removeClass("active")),a&&c.prop("checked",!this.$element.hasClass("active")).trigger("change")}else this.$element.attr("aria-pressed",!this.$element.hasClass("active"));a&&this.$element.toggleClass("active")};var d=a.fn.button;a.fn.button=b,a.fn.button.Constructor=c,a.fn.button.noConflict=function(){return a.fn.button=d,this},a(document).on("click.bs.button.data-api",'[data-toggle^="button"]',function(c){var d=a(c.target);d.hasClass("btn")||(d=d.closest(".btn")),b.call(d,"toggle"),c.preventDefault()}).on("focus.bs.button.data-api blur.bs.button.data-api",'[data-toggle^="button"]',function(b){a(b.target).closest(".btn").toggleClass("focus",/^focus(in)?$/.test(b.type))})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.carousel"),f=a.extend({},c.DEFAULTS,d.data(),"object"==typeof b&&b),g="string"==typeof b?b:f.slide;e||d.data("bs.carousel",e=new c(this,f)),"number"==typeof b?e.to(b):g?e[g]():f.interval&&e.pause().cycle()})}var c=function(b,c){this.$element=a(b),this.$indicators=this.$element.find(".carousel-indicators"),this.options=c,this.paused=null,this.sliding=null,this.interval=null,this.$active=null,this.$items=null,this.options.keyboard&&this.$element.on("keydown.bs.carousel",a.proxy(this.keydown,this)),"hover"==this.options.pause&&!("ontouchstart"in document.documentElement)&&this.$element.on("mouseenter.bs.carousel",a.proxy(this.pause,this)).on("mouseleave.bs.carousel",a.proxy(this.cycle,this))};c.VERSION="3.3.4",c.TRANSITION_DURATION=600,c.DEFAULTS={interval:5e3,pause:"hover",wrap:!0,keyboard:!0},c.prototype.keydown=function(a){if(!/input|textarea/i.test(a.target.tagName)){switch(a.which){case 37:this.prev();break;case 39:this.next();break;default:return}a.preventDefault()}},c.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},c.prototype.getItemIndex=function(a){return this.$items=a.parent().children(".item"),this.$items.index(a||this.$active)},c.prototype.getItemForDirection=function(a,b){var c=this.getItemIndex(b),d="prev"==a&&0===c||"next"==a&&c==this.$items.length-1;if(d&&!this.options.wrap)return b;var e="prev"==a?-1:1,f=(c+e)%this.$items.length;return this.$items.eq(f)},c.prototype.to=function(a){var b=this,c=this.getItemIndex(this.$active=this.$element.find(".item.active"));return a>this.$items.length-1||0>a?void 0:this.sliding?this.$element.one("slid.bs.carousel",function(){b.to(a)}):c==a?this.pause().cycle():this.slide(a>c?"next":"prev",this.$items.eq(a))},c.prototype.pause=function(b){return b||(this.paused=!0),this.$element.find(".next, .prev").length&&a.support.transition&&(this.$element.trigger(a.support.transition.end),this.cycle(!0)),this.interval=clearInterval(this.interval),this},c.prototype.next=function(){return this.sliding?void 0:this.slide("next")},c.prototype.prev=function(){return this.sliding?void 0:this.slide("prev")},c.prototype.slide=function(b,d){var e=this.$element.find(".item.active"),f=d||this.getItemForDirection(b,e),g=this.interval,h="next"==b?"left":"right",i=this;if(f.hasClass("active"))return this.sliding=!1;var j=f[0],k=a.Event("slide.bs.carousel",{relatedTarget:j,direction:h});if(this.$element.trigger(k),!k.isDefaultPrevented()){if(this.sliding=!0,g&&this.pause(),this.$indicators.length){this.$indicators.find(".active").removeClass("active");var l=a(this.$indicators.children()[this.getItemIndex(f)]);l&&l.addClass("active")}var m=a.Event("slid.bs.carousel",{relatedTarget:j,direction:h});return a.support.transition&&this.$element.hasClass("slide")?(f.addClass(b),f[0].offsetWidth,e.addClass(h),f.addClass(h),e.one("bsTransitionEnd",function(){f.removeClass([b,h].join(" ")).addClass("active"),e.removeClass(["active",h].join(" ")),i.sliding=!1,setTimeout(function(){i.$element.trigger(m)},0)}).emulateTransitionEnd(c.TRANSITION_DURATION)):(e.removeClass("active"),f.addClass("active"),this.sliding=!1,this.$element.trigger(m)),g&&this.cycle(),this}};var d=a.fn.carousel;a.fn.carousel=b,a.fn.carousel.Constructor=c,a.fn.carousel.noConflict=function(){return a.fn.carousel=d,this};var e=function(c){var d,e=a(this),f=a(e.attr("data-target")||(d=e.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,""));if(f.hasClass("carousel")){var g=a.extend({},f.data(),e.data()),h=e.attr("data-slide-to");h&&(g.interval=!1),b.call(f,g),h&&f.data("bs.carousel").to(h),c.preventDefault()}};a(document).on("click.bs.carousel.data-api","[data-slide]",e).on("click.bs.carousel.data-api","[data-slide-to]",e),a(window).on("load",function(){a('[data-ride="carousel"]').each(function(){var c=a(this);b.call(c,c.data())})})}(jQuery),+function(a){"use strict";function b(b){var c,d=b.attr("data-target")||(c=b.attr("href"))&&c.replace(/.*(?=#[^\s]+$)/,"");return a(d)}function c(b){return this.each(function(){var c=a(this),e=c.data("bs.collapse"),f=a.extend({},d.DEFAULTS,c.data(),"object"==typeof b&&b);!e&&f.toggle&&/show|hide/.test(b)&&(f.toggle=!1),e||c.data("bs.collapse",e=new d(this,f)),"string"==typeof b&&e[b]()})}var d=function(b,c){this.$element=a(b),this.options=a.extend({},d.DEFAULTS,c),this.$trigger=a('[data-toggle="collapse"][href="#'+b.id+'"],[data-toggle="collapse"][data-target="#'+b.id+'"]'),this.transitioning=null,this.options.parent?this.$parent=this.getParent():this.addAriaAndCollapsedClass(this.$element,this.$trigger),this.options.toggle&&this.toggle()};d.VERSION="3.3.4",d.TRANSITION_DURATION=350,d.DEFAULTS={toggle:!0},d.prototype.dimension=function(){var a=this.$element.hasClass("width");return a?"width":"height"},d.prototype.show=function(){if(!this.transitioning&&!this.$element.hasClass("in")){var b,e=this.$parent&&this.$parent.children(".panel").children(".in, .collapsing");if(!(e&&e.length&&(b=e.data("bs.collapse"),b&&b.transitioning))){var f=a.Event("show.bs.collapse");if(this.$element.trigger(f),!f.isDefaultPrevented()){e&&e.length&&(c.call(e,"hide"),b||e.data("bs.collapse",null));var g=this.dimension();this.$element.removeClass("collapse").addClass("collapsing")[g](0).attr("aria-expanded",!0),this.$trigger.removeClass("collapsed").attr("aria-expanded",!0),this.transitioning=1;var h=function(){this.$element.removeClass("collapsing").addClass("collapse in")[g](""),this.transitioning=0,this.$element.trigger("shown.bs.collapse")};if(!a.support.transition)return h.call(this);var i=a.camelCase(["scroll",g].join("-"));this.$element.one("bsTransitionEnd",a.proxy(h,this)).emulateTransitionEnd(d.TRANSITION_DURATION)[g](this.$element[0][i])}}}},d.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 in").attr("aria-expanded",!1),this.$trigger.addClass("collapsed").attr("aria-expanded",!1),this.transitioning=1;var e=function(){this.transitioning=0,this.$element.removeClass("collapsing").addClass("collapse").trigger("hidden.bs.collapse")};return a.support.transition?void this.$element[c](0).one("bsTransitionEnd",a.proxy(e,this)).emulateTransitionEnd(d.TRANSITION_DURATION):e.call(this)}}},d.prototype.toggle=function(){this[this.$element.hasClass("in")?"hide":"show"]()},d.prototype.getParent=function(){return a(this.options.parent).find('[data-toggle="collapse"][data-parent="'+this.options.parent+'"]').each(a.proxy(function(c,d){var e=a(d);this.addAriaAndCollapsedClass(b(e),e)},this)).end()},d.prototype.addAriaAndCollapsedClass=function(a,b){var c=a.hasClass("in");a.attr("aria-expanded",c),b.toggleClass("collapsed",!c).attr("aria-expanded",c)};var e=a.fn.collapse;a.fn.collapse=c,a.fn.collapse.Constructor=d,a.fn.collapse.noConflict=function(){return a.fn.collapse=e,this},a(document).on("click.bs.collapse.data-api",'[data-toggle="collapse"]',function(d){var e=a(this);e.attr("data-target")||d.preventDefault();var f=b(e),g=f.data("bs.collapse"),h=g?"toggle":e.data();c.call(f,h)})}(jQuery),+function(a){"use strict";function b(b){b&&3===b.which||(a(e).remove(),a(f).each(function(){var d=a(this),e=c(d),f={relatedTarget:this};e.hasClass("open")&&(e.trigger(b=a.Event("hide.bs.dropdown",f)),b.isDefaultPrevented()||(d.attr("aria-expanded","false"),e.removeClass("open").trigger("hidden.bs.dropdown",f)))}))}function c(b){var c=b.attr("data-target");c||(c=b.attr("href"),c=c&&/#[A-Za-z]/.test(c)&&c.replace(/.*(?=#[^\s]*$)/,""));var d=c&&a(c);return d&&d.length?d:b.parent()}function d(b){return this.each(function(){var c=a(this),d=c.data("bs.dropdown");d||c.data("bs.dropdown",d=new g(this)),"string"==typeof b&&d[b].call(c)})}var e=".dropdown-backdrop",f='[data-toggle="dropdown"]',g=function(b){a(b).on("click.bs.dropdown",this.toggle)};g.VERSION="3.3.4",g.prototype.toggle=function(d){var e=a(this);if(!e.is(".disabled, :disabled")){var f=c(e),g=f.hasClass("open");if(b(),!g){"ontouchstart"in document.documentElement&&!f.closest(".navbar-nav").length&&a('<div class="dropdown-backdrop"/>').insertAfter(a(this)).on("click",b);var h={relatedTarget:this};if(f.trigger(d=a.Event("show.bs.dropdown",h)),d.isDefaultPrevented())return;e.trigger("focus").attr("aria-expanded","true"),f.toggleClass("open").trigger("shown.bs.dropdown",h)}return!1}},g.prototype.keydown=function(b){if(/(38|40|27|32)/.test(b.which)&&!/input|textarea/i.test(b.target.tagName)){var d=a(this);if(b.preventDefault(),b.stopPropagation(),!d.is(".disabled, :disabled")){var e=c(d),g=e.hasClass("open");if(!g&&27!=b.which||g&&27==b.which)return 27==b.which&&e.find(f).trigger("focus"),d.trigger("click");var h=" li:not(.disabled):visible a",i=e.find('[role="menu"]'+h+', [role="listbox"]'+h);if(i.length){var j=i.index(b.target);38==b.which&&j>0&&j--,40==b.which&&j<i.length-1&&j++,~j||(j=0),i.eq(j).trigger("focus")}}}};var h=a.fn.dropdown;a.fn.dropdown=d,a.fn.dropdown.Constructor=g,a.fn.dropdown.noConflict=function(){return a.fn.dropdown=h,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",f,g.prototype.toggle).on("keydown.bs.dropdown.data-api",f,g.prototype.keydown).on("keydown.bs.dropdown.data-api",'[role="menu"]',g.prototype.keydown).on("keydown.bs.dropdown.data-api",'[role="listbox"]',g.prototype.keydown)}(jQuery),+function(a){"use strict";function b(b,d){return this.each(function(){var e=a(this),f=e.data("bs.modal"),g=a.extend({},c.DEFAULTS,e.data(),"object"==typeof b&&b);f||e.data("bs.modal",f=new c(this,g)),"string"==typeof b?f[b](d):g.show&&f.show(d)})}var c=function(b,c){this.options=c,this.$body=a(document.body),this.$element=a(b),this.$dialog=this.$element.find(".modal-dialog"),this.$backdrop=null,this.isShown=null,this.originalBodyPad=null,this.scrollbarWidth=0,this.ignoreBackdropClick=!1,this.options.remote&&this.$element.find(".modal-content").load(this.options.remote,a.proxy(function(){this.$element.trigger("loaded.bs.modal")},this))};c.VERSION="3.3.4",c.TRANSITION_DURATION=300,c.BACKDROP_TRANSITION_DURATION=150,c.DEFAULTS={backdrop:!0,keyboard:!0,show:!0},c.prototype.toggle=function(a){return this.isShown?this.hide():this.show(a)},c.prototype.show=function(b){var d=this,e=a.Event("show.bs.modal",{relatedTarget:b});this.$element.trigger(e),this.isShown||e.isDefaultPrevented()||(this.isShown=!0,this.checkScrollbar(),this.setScrollbar(),this.$body.addClass("modal-open"),this.escape(),this.resize(),this.$element.on("click.dismiss.bs.modal",'[data-dismiss="modal"]',a.proxy(this.hide,this)),this.$dialog.on("mousedown.dismiss.bs.modal",function(){d.$element.one("mouseup.dismiss.bs.modal",function(b){a(b.target).is(d.$element)&&(d.ignoreBackdropClick=!0)})}),this.backdrop(function(){var e=a.support.transition&&d.$element.hasClass("fade");d.$element.parent().length||d.$element.appendTo(d.$body),d.$element.show().scrollTop(0),d.adjustDialog(),e&&d.$element[0].offsetWidth,d.$element.addClass("in").attr("aria-hidden",!1),d.enforceFocus();var f=a.Event("shown.bs.modal",{relatedTarget:b});e?d.$dialog.one("bsTransitionEnd",function(){d.$element.trigger("focus").trigger(f)}).emulateTransitionEnd(c.TRANSITION_DURATION):d.$element.trigger("focus").trigger(f)}))},c.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(),this.resize(),a(document).off("focusin.bs.modal"),this.$element.removeClass("in").attr("aria-hidden",!0).off("click.dismiss.bs.modal").off("mouseup.dismiss.bs.modal"),this.$dialog.off("mousedown.dismiss.bs.modal"),a.support.transition&&this.$element.hasClass("fade")?this.$element.one("bsTransitionEnd",a.proxy(this.hideModal,this)).emulateTransitionEnd(c.TRANSITION_DURATION):this.hideModal())},c.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.trigger("focus")},this))},c.prototype.escape=function(){this.isShown&&this.options.keyboard?this.$element.on("keydown.dismiss.bs.modal",a.proxy(function(a){27==a.which&&this.hide()},this)):this.isShown||this.$element.off("keydown.dismiss.bs.modal")},c.prototype.resize=function(){this.isShown?a(window).on("resize.bs.modal",a.proxy(this.handleUpdate,this)):a(window).off("resize.bs.modal")},c.prototype.hideModal=function(){var a=this;this.$element.hide(),this.backdrop(function(){a.$body.removeClass("modal-open"),a.resetAdjustments(),a.resetScrollbar(),a.$element.trigger("hidden.bs.modal")})},c.prototype.removeBackdrop=function(){this.$backdrop&&this.$backdrop.remove(),this.$backdrop=null},c.prototype.backdrop=function(b){var d=this,e=this.$element.hasClass("fade")?"fade":"";if(this.isShown&&this.options.backdrop){var f=a.support.transition&&e;if(this.$backdrop=a('<div class="modal-backdrop '+e+'" />').appendTo(this.$body),this.$element.on("click.dismiss.bs.modal",a.proxy(function(a){return this.ignoreBackdropClick?void(this.ignoreBackdropClick=!1):void(a.target===a.currentTarget&&("static"==this.options.backdrop?this.$element[0].focus():this.hide()))},this)),f&&this.$backdrop[0].offsetWidth,this.$backdrop.addClass("in"),!b)return;f?this.$backdrop.one("bsTransitionEnd",b).emulateTransitionEnd(c.BACKDROP_TRANSITION_DURATION):b()}else if(!this.isShown&&this.$backdrop){this.$backdrop.removeClass("in");var g=function(){d.removeBackdrop(),b&&b()};a.support.transition&&this.$element.hasClass("fade")?this.$backdrop.one("bsTransitionEnd",g).emulateTransitionEnd(c.BACKDROP_TRANSITION_DURATION):g()}else b&&b()},c.prototype.handleUpdate=function(){this.adjustDialog()},c.prototype.adjustDialog=function(){var a=this.$element[0].scrollHeight>document.documentElement.clientHeight;this.$element.css({paddingLeft:!this.bodyIsOverflowing&&a?this.scrollbarWidth:"",paddingRight:this.bodyIsOverflowing&&!a?this.scrollbarWidth:""})},c.prototype.resetAdjustments=function(){this.$element.css({paddingLeft:"",paddingRight:""})},c.prototype.checkScrollbar=function(){var a=window.innerWidth;if(!a){var b=document.documentElement.getBoundingClientRect();a=b.right-Math.abs(b.left)}this.bodyIsOverflowing=document.body.clientWidth<a,this.scrollbarWidth=this.measureScrollbar()},c.prototype.setScrollbar=function(){var a=parseInt(this.$body.css("padding-right")||0,10);this.originalBodyPad=document.body.style.paddingRight||"",this.bodyIsOverflowing&&this.$body.css("padding-right",a+this.scrollbarWidth)},c.prototype.resetScrollbar=function(){this.$body.css("padding-right",this.originalBodyPad)},c.prototype.measureScrollbar=function(){var a=document.createElement("div");a.className="modal-scrollbar-measure",this.$body.append(a);var b=a.offsetWidth-a.clientWidth;return this.$body[0].removeChild(a),b};var d=a.fn.modal;a.fn.modal=b,a.fn.modal.Constructor=c,a.fn.modal.noConflict=function(){return a.fn.modal=d,this},a(document).on("click.bs.modal.data-api",'[data-toggle="modal"]',function(c){var d=a(this),e=d.attr("href"),f=a(d.attr("data-target")||e&&e.replace(/.*(?=#[^\s]+$)/,"")),g=f.data("bs.modal")?"toggle":a.extend({remote:!/#/.test(e)&&e},f.data(),d.data());d.is("a")&&c.preventDefault(),f.one("show.bs.modal",function(a){a.isDefaultPrevented()||f.one("hidden.bs.modal",function(){d.is(":visible")&&d.trigger("focus")})}),b.call(f,g,this)})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.tooltip"),f="object"==typeof b&&b;(e||!/destroy|hide/.test(b))&&(e||d.data("bs.tooltip",e=new c(this,f)),"string"==typeof b&&e[b]())})}var c=function(a,b){this.type=null,this.options=null,this.enabled=null,this.timeout=null,this.hoverState=null,this.$element=null,this.init("tooltip",a,b)};c.VERSION="3.3.4",c.TRANSITION_DURATION=150,c.DEFAULTS={animation:!0,placement:"top",selector:!1,template:'<div class="tooltip" role="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',trigger:"hover focus",title:"",delay:0,html:!1,container:!1,viewport:{selector:"body",padding:0}},c.prototype.init=function(b,c,d){if(this.enabled=!0,this.type=b,this.$element=a(c),this.options=this.getOptions(d),this.$viewport=this.options.viewport&&a(this.options.viewport.selector||this.options.viewport),this.$element[0]instanceof document.constructor&&!this.options.selector)throw new Error("`selector` option must be specified when initializing "+this.type+" on the window.document object!");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":"focusin",i="hover"==g?"mouseleave":"focusout";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()},c.prototype.getDefaults=function(){return c.DEFAULTS},c.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},c.prototype.getDelegateOptions=function(){var b={},c=this.getDefaults();return this._options&&a.each(this._options,function(a,d){c[a]!=d&&(b[a]=d)}),b},c.prototype.enter=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);return c&&c.$tip&&c.$tip.is(":visible")?void(c.hoverState="in"):(c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),clearTimeout(c.timeout),c.hoverState="in",c.options.delay&&c.options.delay.show?void(c.timeout=setTimeout(function(){"in"==c.hoverState&&c.show()},c.options.delay.show)):c.show())},c.prototype.leave=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);return c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),clearTimeout(c.timeout),c.hoverState="out",c.options.delay&&c.options.delay.hide?void(c.timeout=setTimeout(function(){"out"==c.hoverState&&c.hide()},c.options.delay.hide)):c.hide()},c.prototype.show=function(){var b=a.Event("show.bs."+this.type);if(this.hasContent()&&this.enabled){this.$element.trigger(b);var d=a.contains(this.$element[0].ownerDocument.documentElement,this.$element[0]);if(b.isDefaultPrevented()||!d)return;var e=this,f=this.tip(),g=this.getUID(this.type);this.setContent(),f.attr("id",g),this.$element.attr("aria-describedby",g),this.options.animation&&f.addClass("fade");var h="function"==typeof this.options.placement?this.options.placement.call(this,f[0],this.$element[0]):this.options.placement,i=/\s?auto?\s?/i,j=i.test(h);j&&(h=h.replace(i,"")||"top"),f.detach().css({top:0,left:0,display:"block"}).addClass(h).data("bs."+this.type,this),this.options.container?f.appendTo(this.options.container):f.insertAfter(this.$element);var k=this.getPosition(),l=f[0].offsetWidth,m=f[0].offsetHeight;if(j){var n=h,o=this.options.container?a(this.options.container):this.$element.parent(),p=this.getPosition(o);h="bottom"==h&&k.bottom+m>p.bottom?"top":"top"==h&&k.top-m<p.top?"bottom":"right"==h&&k.right+l>p.width?"left":"left"==h&&k.left-l<p.left?"right":h,f.removeClass(n).addClass(h)}var q=this.getCalculatedOffset(h,k,l,m);this.applyPlacement(q,h);var r=function(){var a=e.hoverState;e.$element.trigger("shown.bs."+e.type),e.hoverState=null,"out"==a&&e.leave(e)};a.support.transition&&this.$tip.hasClass("fade")?f.one("bsTransitionEnd",r).emulateTransitionEnd(c.TRANSITION_DURATION):r()}},c.prototype.applyPlacement=function(b,c){var d=this.tip(),e=d[0].offsetWidth,f=d[0].offsetHeight,g=parseInt(d.css("margin-top"),10),h=parseInt(d.css("margin-left"),10);isNaN(g)&&(g=0),isNaN(h)&&(h=0),b.top=b.top+g,b.left=b.left+h,a.offset.setOffset(d[0],a.extend({using:function(a){d.css({top:Math.round(a.top),left:Math.round(a.left)})}},b),0),d.addClass("in");var i=d[0].offsetWidth,j=d[0].offsetHeight;"top"==c&&j!=f&&(b.top=b.top+f-j);var k=this.getViewportAdjustedDelta(c,b,i,j);k.left?b.left+=k.left:b.top+=k.top;var l=/top|bottom/.test(c),m=l?2*k.left-e+i:2*k.top-f+j,n=l?"offsetWidth":"offsetHeight";d.offset(b),this.replaceArrow(m,d[0][n],l)},c.prototype.replaceArrow=function(a,b,c){this.arrow().css(c?"left":"top",50*(1-a/b)+"%").css(c?"top":"left","")},c.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")},c.prototype.hide=function(b){function d(){"in"!=e.hoverState&&f.detach(),e.$element.removeAttr("aria-describedby").trigger("hidden.bs."+e.type),b&&b()}var e=this,f=a(this.$tip),g=a.Event("hide.bs."+this.type);return this.$element.trigger(g),g.isDefaultPrevented()?void 0:(f.removeClass("in"),a.support.transition&&f.hasClass("fade")?f.one("bsTransitionEnd",d).emulateTransitionEnd(c.TRANSITION_DURATION):d(),this.hoverState=null,this)},c.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","")},c.prototype.hasContent=function(){return this.getTitle()},c.prototype.getPosition=function(b){b=b||this.$element;var c=b[0],d="BODY"==c.tagName,e=c.getBoundingClientRect();null==e.width&&(e=a.extend({},e,{width:e.right-e.left,height:e.bottom-e.top}));var f=d?{top:0,left:0}:b.offset(),g={scroll:d?document.documentElement.scrollTop||document.body.scrollTop:b.scrollTop()},h=d?{width:a(window).width(),height:a(window).height()}:null;return a.extend({},e,g,h,f)},c.prototype.getCalculatedOffset=function(a,b,c,d){return"bottom"==a?{top:b.top+b.height,left:b.left+b.width/2-c/2}:"top"==a?{top:b.top-d,left:b.left+b.width/2-c/2}:"left"==a?{top:b.top+b.height/2-d/2,left:b.left-c}:{top:b.top+b.height/2-d/2,left:b.left+b.width}},c.prototype.getViewportAdjustedDelta=function(a,b,c,d){var e={top:0,left:0};if(!this.$viewport)return e;var f=this.options.viewport&&this.options.viewport.padding||0,g=this.getPosition(this.$viewport);if(/right|left/.test(a)){var h=b.top-f-g.scroll,i=b.top+f-g.scroll+d;h<g.top?e.top=g.top-h:i>g.top+g.height&&(e.top=g.top+g.height-i)}else{var j=b.left-f,k=b.left+f+c;j<g.left?e.left=g.left-j:k>g.width&&(e.left=g.left+g.width-k)}return e},c.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)},c.prototype.getUID=function(a){do a+=~~(1e6*Math.random());while(document.getElementById(a));return a},c.prototype.tip=function(){return this.$tip=this.$tip||a(this.options.template)},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".tooltip-arrow")},c.prototype.enable=function(){this.enabled=!0},c.prototype.disable=function(){this.enabled=!1},c.prototype.toggleEnabled=function(){this.enabled=!this.enabled},c.prototype.toggle=function(b){var c=this;b&&(c=a(b.currentTarget).data("bs."+this.type),c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c))),c.tip().hasClass("in")?c.leave(c):c.enter(c)},c.prototype.destroy=function(){var a=this;clearTimeout(this.timeout),this.hide(function(){a.$element.off("."+a.type).removeData("bs."+a.type)})};var d=a.fn.tooltip;a.fn.tooltip=b,a.fn.tooltip.Constructor=c,a.fn.tooltip.noConflict=function(){return a.fn.tooltip=d,this}}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.popover"),f="object"==typeof b&&b;(e||!/destroy|hide/.test(b))&&(e||d.data("bs.popover",e=new c(this,f)),"string"==typeof b&&e[b]())})}var c=function(a,b){this.init("popover",a,b)};if(!a.fn.tooltip)throw new Error("Popover requires tooltip.js");c.VERSION="3.3.4",c.DEFAULTS=a.extend({},a.fn.tooltip.Constructor.DEFAULTS,{placement:"right",trigger:"click",content:"",template:'<div class="popover" role="tooltip"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'}),c.prototype=a.extend({},a.fn.tooltip.Constructor.prototype),c.prototype.constructor=c,c.prototype.getDefaults=function(){return c.DEFAULTS},c.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").children().detach().end()[this.options.html?"string"==typeof c?"html":"append":"text"](c),a.removeClass("fade top bottom left right in"),a.find(".popover-title").html()||a.find(".popover-title").hide()},c.prototype.hasContent=function(){return this.getTitle()||this.getContent()},c.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)},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".arrow")};var d=a.fn.popover;a.fn.popover=b,a.fn.popover.Constructor=c,a.fn.popover.noConflict=function(){return a.fn.popover=d,this}}(jQuery),+function(a){"use strict";function b(c,d){this.$body=a(document.body),this.$scrollElement=a(a(c).is(document.body)?window:c),this.options=a.extend({},b.DEFAULTS,d),this.selector=(this.options.target||"")+" .nav li > a",this.offsets=[],this.targets=[],this.activeTarget=null,this.scrollHeight=0,this.$scrollElement.on("scroll.bs.scrollspy",a.proxy(this.process,this)),this.refresh(),this.process()}function c(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]()})}b.VERSION="3.3.4",b.DEFAULTS={offset:10},b.prototype.getScrollHeight=function(){return this.$scrollElement[0].scrollHeight||Math.max(this.$body[0].scrollHeight,document.documentElement.scrollHeight)},b.prototype.refresh=function(){var b=this,c="offset",d=0;this.offsets=[],this.targets=[],this.scrollHeight=this.getScrollHeight(),a.isWindow(this.$scrollElement[0])||(c="position",d=this.$scrollElement.scrollTop()),this.$body.find(this.selector).map(function(){var b=a(this),e=b.data("target")||b.attr("href"),f=/^#./.test(e)&&a(e);return f&&f.length&&f.is(":visible")&&[[f[c]().top+d,e]]||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.getScrollHeight(),d=this.options.offset+c-this.$scrollElement.height(),e=this.offsets,f=this.targets,g=this.activeTarget;if(this.scrollHeight!=c&&this.refresh(),b>=d)return g!=(a=f[f.length-1])&&this.activate(a);if(g&&b<e[0])return this.activeTarget=null,this.clear();for(a=e.length;a--;)g!=f[a]&&b>=e[a]&&(void 0===e[a+1]||b<e[a+1])&&this.activate(f[a])},b.prototype.activate=function(b){this.activeTarget=b,this.clear();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.bs.scrollspy")},b.prototype.clear=function(){a(this.selector).parentsUntil(this.options.target,".active").removeClass("active")};var d=a.fn.scrollspy;a.fn.scrollspy=c,a.fn.scrollspy.Constructor=b,a.fn.scrollspy.noConflict=function(){return a.fn.scrollspy=d,this},a(window).on("load.bs.scrollspy.data-api",function(){a('[data-spy="scroll"]').each(function(){var b=a(this);c.call(b,b.data())})})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.tab");e||d.data("bs.tab",e=new c(this)),"string"==typeof b&&e[b]()})}var c=function(b){this.element=a(b)};c.VERSION="3.3.4",c.TRANSITION_DURATION=150,c.prototype.show=function(){var b=this.element,c=b.closest("ul:not(.dropdown-menu)"),d=b.data("target");if(d||(d=b.attr("href"),d=d&&d.replace(/.*(?=#[^\s]*$)/,"")),!b.parent("li").hasClass("active")){
|
125 |
+
var e=c.find(".active:last a"),f=a.Event("hide.bs.tab",{relatedTarget:b[0]}),g=a.Event("show.bs.tab",{relatedTarget:e[0]});if(e.trigger(f),b.trigger(g),!g.isDefaultPrevented()&&!f.isDefaultPrevented()){var h=a(d);this.activate(b.closest("li"),c),this.activate(h,h.parent(),function(){e.trigger({type:"hidden.bs.tab",relatedTarget:b[0]}),b.trigger({type:"shown.bs.tab",relatedTarget:e[0]})})}}},c.prototype.activate=function(b,d,e){function f(){g.removeClass("active").find("> .dropdown-menu > .active").removeClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!1),b.addClass("active").find('[data-toggle="tab"]').attr("aria-expanded",!0),h?(b[0].offsetWidth,b.addClass("in")):b.removeClass("fade"),b.parent(".dropdown-menu").length&&b.closest("li.dropdown").addClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!0),e&&e()}var g=d.find("> .active"),h=e&&a.support.transition&&(g.length&&g.hasClass("fade")||!!d.find("> .fade").length);g.length&&h?g.one("bsTransitionEnd",f).emulateTransitionEnd(c.TRANSITION_DURATION):f(),g.removeClass("in")};var d=a.fn.tab;a.fn.tab=b,a.fn.tab.Constructor=c,a.fn.tab.noConflict=function(){return a.fn.tab=d,this};var e=function(c){c.preventDefault(),b.call(a(this),"show")};a(document).on("click.bs.tab.data-api",'[data-toggle="tab"]',e).on("click.bs.tab.data-api",'[data-toggle="pill"]',e)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.affix"),f="object"==typeof b&&b;e||d.data("bs.affix",e=new c(this,f)),"string"==typeof b&&e[b]()})}var c=function(b,d){this.options=a.extend({},c.DEFAULTS,d),this.$target=a(this.options.target).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(b),this.affixed=null,this.unpin=null,this.pinnedOffset=null,this.checkPosition()};c.VERSION="3.3.4",c.RESET="affix affix-top affix-bottom",c.DEFAULTS={offset:0,target:window},c.prototype.getState=function(a,b,c,d){var e=this.$target.scrollTop(),f=this.$element.offset(),g=this.$target.height();if(null!=c&&"top"==this.affixed)return c>e?"top":!1;if("bottom"==this.affixed)return null!=c?e+this.unpin<=f.top?!1:"bottom":a-d>=e+g?!1:"bottom";var h=null==this.affixed,i=h?e:f.top,j=h?g:b;return null!=c&&c>=e?"top":null!=d&&i+j>=a-d?"bottom":!1},c.prototype.getPinnedOffset=function(){if(this.pinnedOffset)return this.pinnedOffset;this.$element.removeClass(c.RESET).addClass("affix");var a=this.$target.scrollTop(),b=this.$element.offset();return this.pinnedOffset=b.top-a},c.prototype.checkPositionWithEventLoop=function(){setTimeout(a.proxy(this.checkPosition,this),1)},c.prototype.checkPosition=function(){if(this.$element.is(":visible")){var b=this.$element.height(),d=this.options.offset,e=d.top,f=d.bottom,g=a(document.body).height();"object"!=typeof d&&(f=e=d),"function"==typeof e&&(e=d.top(this.$element)),"function"==typeof f&&(f=d.bottom(this.$element));var h=this.getState(g,b,e,f);if(this.affixed!=h){null!=this.unpin&&this.$element.css("top","");var i="affix"+(h?"-"+h:""),j=a.Event(i+".bs.affix");if(this.$element.trigger(j),j.isDefaultPrevented())return;this.affixed=h,this.unpin="bottom"==h?this.getPinnedOffset():null,this.$element.removeClass(c.RESET).addClass(i).trigger(i.replace("affix","affixed")+".bs.affix")}"bottom"==h&&this.$element.offset({top:g-b-f})}};var d=a.fn.affix;a.fn.affix=b,a.fn.affix.Constructor=c,a.fn.affix.noConflict=function(){return a.fn.affix=d,this},a(window).on("load",function(){a('[data-spy="affix"]').each(function(){var c=a(this),d=c.data();d.offset=d.offset||{},null!=d.offsetBottom&&(d.offset.bottom=d.offsetBottom),null!=d.offsetTop&&(d.offset.top=d.offsetTop),b.call(c,d)})})}(jQuery);
|
126 |
+
pagePluginReSize();
|
127 |
+
jQuery(window).resize(function(){
|
128 |
+
pagePluginReSize();
|
129 |
+
});
|
130 |
+
|
131 |
+
/*-------------------------------------------*/
|
132 |
+
/* facebookLikeBox
|
133 |
+
/*-------------------------------------------*/
|
134 |
+
function pagePluginReSize(){
|
135 |
+
// jQuery('.fb_iframe_widget').each(function(){
|
136 |
+
// var element = jQuery(this).parent().width();
|
137 |
+
// console.log(element);
|
138 |
+
// jQuery(this).attr('data-width',element);
|
139 |
+
// jQuery(this).children('span:first').css({"width":element});
|
140 |
+
// jQuery(this).children('span iframe.fb_ltr').css({"width":element});
|
141 |
+
// });
|
142 |
+
}
|
143 |
+
|
144 |
+
!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');
|
145 |
+
|
146 |
+
/*-------------------------------------------*/
|
147 |
+
/* jquery.flatheights.js
|
148 |
+
/*-------------------------------------------*/
|
149 |
+
(function($){
|
150 |
+
$(function() {
|
151 |
+
$('.prArea > .subSection-title').flatHeights();
|
152 |
+
$('.prArea > .summary').flatHeights();
|
153 |
+
$('.childPage_list_title').flatHeights();
|
154 |
+
});
|
155 |
+
window.onload = function() {
|
156 |
+
$('.childPage_list_box').flatHeights();
|
157 |
+
}
|
158 |
+
})(jQuery);
|
js/all_in_bs.min.js
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
jQuery.changeLetterSize={handlers:[],interval:1000,currentSize:0};(function($){var self=$.changeLetterSize;var ins=$('<ins>M</ins>').css({display:'block',visibility:'hidden',position:'absolute',padding:'0',top:'0'});var isChanged=function(){ins.appendTo('body');var size=ins[0].offsetHeight;ins.remove();if(self.currentSize==size)return false;self.currentSize=size;return true;};$(isChanged);var observer=function(){if(!isChanged())return;$.each(self.handlers,function(i,handler){handler();});};self.addHandler=function(func){self.handlers.push(func);if(self.handlers.length==1){setInterval(observer,self.interval);}};})(jQuery);(function($){var sets=[];var flatHeights=function(set){var maxHeight=0;set.each(function(){var height=this.offsetHeight;if(height>maxHeight)maxHeight=height;});set.css('height',maxHeight+'px');};jQuery.fn.flatHeights=function(){if(this.length>1){flatHeights(this);sets.push(this);}
|
3 |
+
return this;};var reflatting=function(){$.each(sets,function(){this.height('auto');flatHeights(this);});};$.changeLetterSize.addHandler(reflatting);$(window).resize(reflatting);})(jQuery);jQuery(document).ready(function($){jQuery('.topPrTit a').flatHeights();jQuery('.topPrDescription').flatHeights();jQuery('.child_page_block').flatHeights();jQuery('.child_page_block p').flatHeights();jQuery('#content .child_page_block h4 a').flatHeights();});if("undefined"==typeof jQuery)throw new Error("Bootstrap's JavaScript requires jQuery");+function(a){"use strict";var b=a.fn.jquery.split(" ")[0].split(".");if(b[0]<2&&b[1]<9||1==b[0]&&9==b[1]&&b[2]<1)throw new Error("Bootstrap's JavaScript requires jQuery version 1.9.1 or higher")}(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]};return!1}a.fn.emulateTransitionEnd=function(b){var c=!1,d=this;a(this).one("bsTransitionEnd",function(){c=!0});var e=function(){c||a(d).trigger(a.support.transition.end)};return setTimeout(e,b),this},a(function(){a.support.transition=b(),a.support.transition&&(a.event.special.bsTransitionEnd={bindType:a.support.transition.end,delegateType:a.support.transition.end,handle:function(b){return a(b.target).is(this)?b.handleObj.handler.apply(this,arguments):void 0}})})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var c=a(this),e=c.data("bs.alert");e||c.data("bs.alert",e=new d(this)),"string"==typeof b&&e[b].call(c)})}var c='[data-dismiss="alert"]',d=function(b){a(b).on("click",c,this.close)};d.VERSION="3.3.4",d.TRANSITION_DURATION=150,d.prototype.close=function(b){function c(){g.detach().trigger("closed.bs.alert").remove()}var e=a(this),f=e.attr("data-target");f||(f=e.attr("href"),f=f&&f.replace(/.*(?=#[^\s]*$)/,""));var g=a(f);b&&b.preventDefault(),g.length||(g=e.closest(".alert")),g.trigger(b=a.Event("close.bs.alert")),b.isDefaultPrevented()||(g.removeClass("in"),a.support.transition&&g.hasClass("fade")?g.one("bsTransitionEnd",c).emulateTransitionEnd(d.TRANSITION_DURATION):c())};var e=a.fn.alert;a.fn.alert=b,a.fn.alert.Constructor=d,a.fn.alert.noConflict=function(){return a.fn.alert=e,this},a(document).on("click.bs.alert.data-api",c,d.prototype.close)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.button"),f="object"==typeof b&&b;e||d.data("bs.button",e=new c(this,f)),"toggle"==b?e.toggle():b&&e.setState(b)})}var c=function(b,d){this.$element=a(b),this.options=a.extend({},c.DEFAULTS,d),this.isLoading=!1};c.VERSION="3.3.4",c.DEFAULTS={loadingText:"loading..."},c.prototype.setState=function(b){var c="disabled",d=this.$element,e=d.is("input")?"val":"html",f=d.data();b+="Text",null==f.resetText&&d.data("resetText",d[e]()),setTimeout(a.proxy(function(){d[e](null==f[b]?this.options[b]:f[b]),"loadingText"==b?(this.isLoading=!0,d.addClass(c).attr(c,c)):this.isLoading&&(this.isLoading=!1,d.removeClass(c).removeAttr(c))},this),0)},c.prototype.toggle=function(){var a=!0,b=this.$element.closest('[data-toggle="buttons"]');if(b.length){var c=this.$element.find("input");"radio"==c.prop("type")&&(c.prop("checked")&&this.$element.hasClass("active")?a=!1:b.find(".active").removeClass("active")),a&&c.prop("checked",!this.$element.hasClass("active")).trigger("change")}else this.$element.attr("aria-pressed",!this.$element.hasClass("active"));a&&this.$element.toggleClass("active")};var d=a.fn.button;a.fn.button=b,a.fn.button.Constructor=c,a.fn.button.noConflict=function(){return a.fn.button=d,this},a(document).on("click.bs.button.data-api",'[data-toggle^="button"]',function(c){var d=a(c.target);d.hasClass("btn")||(d=d.closest(".btn")),b.call(d,"toggle"),c.preventDefault()}).on("focus.bs.button.data-api blur.bs.button.data-api",'[data-toggle^="button"]',function(b){a(b.target).closest(".btn").toggleClass("focus",/^focus(in)?$/.test(b.type))})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.carousel"),f=a.extend({},c.DEFAULTS,d.data(),"object"==typeof b&&b),g="string"==typeof b?b:f.slide;e||d.data("bs.carousel",e=new c(this,f)),"number"==typeof b?e.to(b):g?e[g]():f.interval&&e.pause().cycle()})}var c=function(b,c){this.$element=a(b),this.$indicators=this.$element.find(".carousel-indicators"),this.options=c,this.paused=null,this.sliding=null,this.interval=null,this.$active=null,this.$items=null,this.options.keyboard&&this.$element.on("keydown.bs.carousel",a.proxy(this.keydown,this)),"hover"==this.options.pause&&!("ontouchstart"in document.documentElement)&&this.$element.on("mouseenter.bs.carousel",a.proxy(this.pause,this)).on("mouseleave.bs.carousel",a.proxy(this.cycle,this))};c.VERSION="3.3.4",c.TRANSITION_DURATION=600,c.DEFAULTS={interval:5e3,pause:"hover",wrap:!0,keyboard:!0},c.prototype.keydown=function(a){if(!/input|textarea/i.test(a.target.tagName)){switch(a.which){case 37:this.prev();break;case 39:this.next();break;default:return}a.preventDefault()}},c.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},c.prototype.getItemIndex=function(a){return this.$items=a.parent().children(".item"),this.$items.index(a||this.$active)},c.prototype.getItemForDirection=function(a,b){var c=this.getItemIndex(b),d="prev"==a&&0===c||"next"==a&&c==this.$items.length-1;if(d&&!this.options.wrap)return b;var e="prev"==a?-1:1,f=(c+e)%this.$items.length;return this.$items.eq(f)},c.prototype.to=function(a){var b=this,c=this.getItemIndex(this.$active=this.$element.find(".item.active"));return a>this.$items.length-1||0>a?void 0:this.sliding?this.$element.one("slid.bs.carousel",function(){b.to(a)}):c==a?this.pause().cycle():this.slide(a>c?"next":"prev",this.$items.eq(a))},c.prototype.pause=function(b){return b||(this.paused=!0),this.$element.find(".next, .prev").length&&a.support.transition&&(this.$element.trigger(a.support.transition.end),this.cycle(!0)),this.interval=clearInterval(this.interval),this},c.prototype.next=function(){return this.sliding?void 0:this.slide("next")},c.prototype.prev=function(){return this.sliding?void 0:this.slide("prev")},c.prototype.slide=function(b,d){var e=this.$element.find(".item.active"),f=d||this.getItemForDirection(b,e),g=this.interval,h="next"==b?"left":"right",i=this;if(f.hasClass("active"))return this.sliding=!1;var j=f[0],k=a.Event("slide.bs.carousel",{relatedTarget:j,direction:h});if(this.$element.trigger(k),!k.isDefaultPrevented()){if(this.sliding=!0,g&&this.pause(),this.$indicators.length){this.$indicators.find(".active").removeClass("active");var l=a(this.$indicators.children()[this.getItemIndex(f)]);l&&l.addClass("active")}var m=a.Event("slid.bs.carousel",{relatedTarget:j,direction:h});return a.support.transition&&this.$element.hasClass("slide")?(f.addClass(b),f[0].offsetWidth,e.addClass(h),f.addClass(h),e.one("bsTransitionEnd",function(){f.removeClass([b,h].join(" ")).addClass("active"),e.removeClass(["active",h].join(" ")),i.sliding=!1,setTimeout(function(){i.$element.trigger(m)},0)}).emulateTransitionEnd(c.TRANSITION_DURATION)):(e.removeClass("active"),f.addClass("active"),this.sliding=!1,this.$element.trigger(m)),g&&this.cycle(),this}};var d=a.fn.carousel;a.fn.carousel=b,a.fn.carousel.Constructor=c,a.fn.carousel.noConflict=function(){return a.fn.carousel=d,this};var e=function(c){var d,e=a(this),f=a(e.attr("data-target")||(d=e.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,""));if(f.hasClass("carousel")){var g=a.extend({},f.data(),e.data()),h=e.attr("data-slide-to");h&&(g.interval=!1),b.call(f,g),h&&f.data("bs.carousel").to(h),c.preventDefault()}};a(document).on("click.bs.carousel.data-api","[data-slide]",e).on("click.bs.carousel.data-api","[data-slide-to]",e),a(window).on("load",function(){a('[data-ride="carousel"]').each(function(){var c=a(this);b.call(c,c.data())})})}(jQuery),+function(a){"use strict";function b(b){var c,d=b.attr("data-target")||(c=b.attr("href"))&&c.replace(/.*(?=#[^\s]+$)/,"");return a(d)}function c(b){return this.each(function(){var c=a(this),e=c.data("bs.collapse"),f=a.extend({},d.DEFAULTS,c.data(),"object"==typeof b&&b);!e&&f.toggle&&/show|hide/.test(b)&&(f.toggle=!1),e||c.data("bs.collapse",e=new d(this,f)),"string"==typeof b&&e[b]()})}var d=function(b,c){this.$element=a(b),this.options=a.extend({},d.DEFAULTS,c),this.$trigger=a('[data-toggle="collapse"][href="#'+b.id+'"],[data-toggle="collapse"][data-target="#'+b.id+'"]'),this.transitioning=null,this.options.parent?this.$parent=this.getParent():this.addAriaAndCollapsedClass(this.$element,this.$trigger),this.options.toggle&&this.toggle()};d.VERSION="3.3.4",d.TRANSITION_DURATION=350,d.DEFAULTS={toggle:!0},d.prototype.dimension=function(){var a=this.$element.hasClass("width");return a?"width":"height"},d.prototype.show=function(){if(!this.transitioning&&!this.$element.hasClass("in")){var b,e=this.$parent&&this.$parent.children(".panel").children(".in, .collapsing");if(!(e&&e.length&&(b=e.data("bs.collapse"),b&&b.transitioning))){var f=a.Event("show.bs.collapse");if(this.$element.trigger(f),!f.isDefaultPrevented()){e&&e.length&&(c.call(e,"hide"),b||e.data("bs.collapse",null));var g=this.dimension();this.$element.removeClass("collapse").addClass("collapsing")[g](0).attr("aria-expanded",!0),this.$trigger.removeClass("collapsed").attr("aria-expanded",!0),this.transitioning=1;var h=function(){this.$element.removeClass("collapsing").addClass("collapse in")[g](""),this.transitioning=0,this.$element.trigger("shown.bs.collapse")};if(!a.support.transition)return h.call(this);var i=a.camelCase(["scroll",g].join("-"));this.$element.one("bsTransitionEnd",a.proxy(h,this)).emulateTransitionEnd(d.TRANSITION_DURATION)[g](this.$element[0][i])}}}},d.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 in").attr("aria-expanded",!1),this.$trigger.addClass("collapsed").attr("aria-expanded",!1),this.transitioning=1;var e=function(){this.transitioning=0,this.$element.removeClass("collapsing").addClass("collapse").trigger("hidden.bs.collapse")};return a.support.transition?void this.$element[c](0).one("bsTransitionEnd",a.proxy(e,this)).emulateTransitionEnd(d.TRANSITION_DURATION):e.call(this)}}},d.prototype.toggle=function(){this[this.$element.hasClass("in")?"hide":"show"]()},d.prototype.getParent=function(){return a(this.options.parent).find('[data-toggle="collapse"][data-parent="'+this.options.parent+'"]').each(a.proxy(function(c,d){var e=a(d);this.addAriaAndCollapsedClass(b(e),e)},this)).end()},d.prototype.addAriaAndCollapsedClass=function(a,b){var c=a.hasClass("in");a.attr("aria-expanded",c),b.toggleClass("collapsed",!c).attr("aria-expanded",c)};var e=a.fn.collapse;a.fn.collapse=c,a.fn.collapse.Constructor=d,a.fn.collapse.noConflict=function(){return a.fn.collapse=e,this},a(document).on("click.bs.collapse.data-api",'[data-toggle="collapse"]',function(d){var e=a(this);e.attr("data-target")||d.preventDefault();var f=b(e),g=f.data("bs.collapse"),h=g?"toggle":e.data();c.call(f,h)})}(jQuery),+function(a){"use strict";function b(b){b&&3===b.which||(a(e).remove(),a(f).each(function(){var d=a(this),e=c(d),f={relatedTarget:this};e.hasClass("open")&&(e.trigger(b=a.Event("hide.bs.dropdown",f)),b.isDefaultPrevented()||(d.attr("aria-expanded","false"),e.removeClass("open").trigger("hidden.bs.dropdown",f)))}))}function c(b){var c=b.attr("data-target");c||(c=b.attr("href"),c=c&&/#[A-Za-z]/.test(c)&&c.replace(/.*(?=#[^\s]*$)/,""));var d=c&&a(c);return d&&d.length?d:b.parent()}function d(b){return this.each(function(){var c=a(this),d=c.data("bs.dropdown");d||c.data("bs.dropdown",d=new g(this)),"string"==typeof b&&d[b].call(c)})}var e=".dropdown-backdrop",f='[data-toggle="dropdown"]',g=function(b){a(b).on("click.bs.dropdown",this.toggle)};g.VERSION="3.3.4",g.prototype.toggle=function(d){var e=a(this);if(!e.is(".disabled, :disabled")){var f=c(e),g=f.hasClass("open");if(b(),!g){"ontouchstart"in document.documentElement&&!f.closest(".navbar-nav").length&&a('<div class="dropdown-backdrop"/>').insertAfter(a(this)).on("click",b);var h={relatedTarget:this};if(f.trigger(d=a.Event("show.bs.dropdown",h)),d.isDefaultPrevented())return;e.trigger("focus").attr("aria-expanded","true"),f.toggleClass("open").trigger("shown.bs.dropdown",h)}return!1}},g.prototype.keydown=function(b){if(/(38|40|27|32)/.test(b.which)&&!/input|textarea/i.test(b.target.tagName)){var d=a(this);if(b.preventDefault(),b.stopPropagation(),!d.is(".disabled, :disabled")){var e=c(d),g=e.hasClass("open");if(!g&&27!=b.which||g&&27==b.which)return 27==b.which&&e.find(f).trigger("focus"),d.trigger("click");var h=" li:not(.disabled):visible a",i=e.find('[role="menu"]'+h+', [role="listbox"]'+h);if(i.length){var j=i.index(b.target);38==b.which&&j>0&&j--,40==b.which&&j<i.length-1&&j++,~j||(j=0),i.eq(j).trigger("focus")}}}};var h=a.fn.dropdown;a.fn.dropdown=d,a.fn.dropdown.Constructor=g,a.fn.dropdown.noConflict=function(){return a.fn.dropdown=h,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",f,g.prototype.toggle).on("keydown.bs.dropdown.data-api",f,g.prototype.keydown).on("keydown.bs.dropdown.data-api",'[role="menu"]',g.prototype.keydown).on("keydown.bs.dropdown.data-api",'[role="listbox"]',g.prototype.keydown)}(jQuery),+function(a){"use strict";function b(b,d){return this.each(function(){var e=a(this),f=e.data("bs.modal"),g=a.extend({},c.DEFAULTS,e.data(),"object"==typeof b&&b);f||e.data("bs.modal",f=new c(this,g)),"string"==typeof b?f[b](d):g.show&&f.show(d)})}var c=function(b,c){this.options=c,this.$body=a(document.body),this.$element=a(b),this.$dialog=this.$element.find(".modal-dialog"),this.$backdrop=null,this.isShown=null,this.originalBodyPad=null,this.scrollbarWidth=0,this.ignoreBackdropClick=!1,this.options.remote&&this.$element.find(".modal-content").load(this.options.remote,a.proxy(function(){this.$element.trigger("loaded.bs.modal")},this))};c.VERSION="3.3.4",c.TRANSITION_DURATION=300,c.BACKDROP_TRANSITION_DURATION=150,c.DEFAULTS={backdrop:!0,keyboard:!0,show:!0},c.prototype.toggle=function(a){return this.isShown?this.hide():this.show(a)},c.prototype.show=function(b){var d=this,e=a.Event("show.bs.modal",{relatedTarget:b});this.$element.trigger(e),this.isShown||e.isDefaultPrevented()||(this.isShown=!0,this.checkScrollbar(),this.setScrollbar(),this.$body.addClass("modal-open"),this.escape(),this.resize(),this.$element.on("click.dismiss.bs.modal",'[data-dismiss="modal"]',a.proxy(this.hide,this)),this.$dialog.on("mousedown.dismiss.bs.modal",function(){d.$element.one("mouseup.dismiss.bs.modal",function(b){a(b.target).is(d.$element)&&(d.ignoreBackdropClick=!0)})}),this.backdrop(function(){var e=a.support.transition&&d.$element.hasClass("fade");d.$element.parent().length||d.$element.appendTo(d.$body),d.$element.show().scrollTop(0),d.adjustDialog(),e&&d.$element[0].offsetWidth,d.$element.addClass("in").attr("aria-hidden",!1),d.enforceFocus();var f=a.Event("shown.bs.modal",{relatedTarget:b});e?d.$dialog.one("bsTransitionEnd",function(){d.$element.trigger("focus").trigger(f)}).emulateTransitionEnd(c.TRANSITION_DURATION):d.$element.trigger("focus").trigger(f)}))},c.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(),this.resize(),a(document).off("focusin.bs.modal"),this.$element.removeClass("in").attr("aria-hidden",!0).off("click.dismiss.bs.modal").off("mouseup.dismiss.bs.modal"),this.$dialog.off("mousedown.dismiss.bs.modal"),a.support.transition&&this.$element.hasClass("fade")?this.$element.one("bsTransitionEnd",a.proxy(this.hideModal,this)).emulateTransitionEnd(c.TRANSITION_DURATION):this.hideModal())},c.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.trigger("focus")},this))},c.prototype.escape=function(){this.isShown&&this.options.keyboard?this.$element.on("keydown.dismiss.bs.modal",a.proxy(function(a){27==a.which&&this.hide()},this)):this.isShown||this.$element.off("keydown.dismiss.bs.modal")},c.prototype.resize=function(){this.isShown?a(window).on("resize.bs.modal",a.proxy(this.handleUpdate,this)):a(window).off("resize.bs.modal")},c.prototype.hideModal=function(){var a=this;this.$element.hide(),this.backdrop(function(){a.$body.removeClass("modal-open"),a.resetAdjustments(),a.resetScrollbar(),a.$element.trigger("hidden.bs.modal")})},c.prototype.removeBackdrop=function(){this.$backdrop&&this.$backdrop.remove(),this.$backdrop=null},c.prototype.backdrop=function(b){var d=this,e=this.$element.hasClass("fade")?"fade":"";if(this.isShown&&this.options.backdrop){var f=a.support.transition&&e;if(this.$backdrop=a('<div class="modal-backdrop '+e+'" />').appendTo(this.$body),this.$element.on("click.dismiss.bs.modal",a.proxy(function(a){return this.ignoreBackdropClick?void(this.ignoreBackdropClick=!1):void(a.target===a.currentTarget&&("static"==this.options.backdrop?this.$element[0].focus():this.hide()))},this)),f&&this.$backdrop[0].offsetWidth,this.$backdrop.addClass("in"),!b)return;f?this.$backdrop.one("bsTransitionEnd",b).emulateTransitionEnd(c.BACKDROP_TRANSITION_DURATION):b()}else if(!this.isShown&&this.$backdrop){this.$backdrop.removeClass("in");var g=function(){d.removeBackdrop(),b&&b()};a.support.transition&&this.$element.hasClass("fade")?this.$backdrop.one("bsTransitionEnd",g).emulateTransitionEnd(c.BACKDROP_TRANSITION_DURATION):g()}else b&&b()},c.prototype.handleUpdate=function(){this.adjustDialog()},c.prototype.adjustDialog=function(){var a=this.$element[0].scrollHeight>document.documentElement.clientHeight;this.$element.css({paddingLeft:!this.bodyIsOverflowing&&a?this.scrollbarWidth:"",paddingRight:this.bodyIsOverflowing&&!a?this.scrollbarWidth:""})},c.prototype.resetAdjustments=function(){this.$element.css({paddingLeft:"",paddingRight:""})},c.prototype.checkScrollbar=function(){var a=window.innerWidth;if(!a){var b=document.documentElement.getBoundingClientRect();a=b.right-Math.abs(b.left)}this.bodyIsOverflowing=document.body.clientWidth<a,this.scrollbarWidth=this.measureScrollbar()},c.prototype.setScrollbar=function(){var a=parseInt(this.$body.css("padding-right")||0,10);this.originalBodyPad=document.body.style.paddingRight||"",this.bodyIsOverflowing&&this.$body.css("padding-right",a+this.scrollbarWidth)},c.prototype.resetScrollbar=function(){this.$body.css("padding-right",this.originalBodyPad)},c.prototype.measureScrollbar=function(){var a=document.createElement("div");a.className="modal-scrollbar-measure",this.$body.append(a);var b=a.offsetWidth-a.clientWidth;return this.$body[0].removeChild(a),b};var d=a.fn.modal;a.fn.modal=b,a.fn.modal.Constructor=c,a.fn.modal.noConflict=function(){return a.fn.modal=d,this},a(document).on("click.bs.modal.data-api",'[data-toggle="modal"]',function(c){var d=a(this),e=d.attr("href"),f=a(d.attr("data-target")||e&&e.replace(/.*(?=#[^\s]+$)/,"")),g=f.data("bs.modal")?"toggle":a.extend({remote:!/#/.test(e)&&e},f.data(),d.data());d.is("a")&&c.preventDefault(),f.one("show.bs.modal",function(a){a.isDefaultPrevented()||f.one("hidden.bs.modal",function(){d.is(":visible")&&d.trigger("focus")})}),b.call(f,g,this)})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.tooltip"),f="object"==typeof b&&b;(e||!/destroy|hide/.test(b))&&(e||d.data("bs.tooltip",e=new c(this,f)),"string"==typeof b&&e[b]())})}var c=function(a,b){this.type=null,this.options=null,this.enabled=null,this.timeout=null,this.hoverState=null,this.$element=null,this.init("tooltip",a,b)};c.VERSION="3.3.4",c.TRANSITION_DURATION=150,c.DEFAULTS={animation:!0,placement:"top",selector:!1,template:'<div class="tooltip" role="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',trigger:"hover focus",title:"",delay:0,html:!1,container:!1,viewport:{selector:"body",padding:0}},c.prototype.init=function(b,c,d){if(this.enabled=!0,this.type=b,this.$element=a(c),this.options=this.getOptions(d),this.$viewport=this.options.viewport&&a(this.options.viewport.selector||this.options.viewport),this.$element[0]instanceof document.constructor&&!this.options.selector)throw new Error("`selector` option must be specified when initializing "+this.type+" on the window.document object!");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":"focusin",i="hover"==g?"mouseleave":"focusout";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()},c.prototype.getDefaults=function(){return c.DEFAULTS},c.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},c.prototype.getDelegateOptions=function(){var b={},c=this.getDefaults();return this._options&&a.each(this._options,function(a,d){c[a]!=d&&(b[a]=d)}),b},c.prototype.enter=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);return c&&c.$tip&&c.$tip.is(":visible")?void(c.hoverState="in"):(c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),clearTimeout(c.timeout),c.hoverState="in",c.options.delay&&c.options.delay.show?void(c.timeout=setTimeout(function(){"in"==c.hoverState&&c.show()},c.options.delay.show)):c.show())},c.prototype.leave=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);return c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),clearTimeout(c.timeout),c.hoverState="out",c.options.delay&&c.options.delay.hide?void(c.timeout=setTimeout(function(){"out"==c.hoverState&&c.hide()},c.options.delay.hide)):c.hide()},c.prototype.show=function(){var b=a.Event("show.bs."+this.type);if(this.hasContent()&&this.enabled){this.$element.trigger(b);var d=a.contains(this.$element[0].ownerDocument.documentElement,this.$element[0]);if(b.isDefaultPrevented()||!d)return;var e=this,f=this.tip(),g=this.getUID(this.type);this.setContent(),f.attr("id",g),this.$element.attr("aria-describedby",g),this.options.animation&&f.addClass("fade");var h="function"==typeof this.options.placement?this.options.placement.call(this,f[0],this.$element[0]):this.options.placement,i=/\s?auto?\s?/i,j=i.test(h);j&&(h=h.replace(i,"")||"top"),f.detach().css({top:0,left:0,display:"block"}).addClass(h).data("bs."+this.type,this),this.options.container?f.appendTo(this.options.container):f.insertAfter(this.$element);var k=this.getPosition(),l=f[0].offsetWidth,m=f[0].offsetHeight;if(j){var n=h,o=this.options.container?a(this.options.container):this.$element.parent(),p=this.getPosition(o);h="bottom"==h&&k.bottom+m>p.bottom?"top":"top"==h&&k.top-m<p.top?"bottom":"right"==h&&k.right+l>p.width?"left":"left"==h&&k.left-l<p.left?"right":h,f.removeClass(n).addClass(h)}var q=this.getCalculatedOffset(h,k,l,m);this.applyPlacement(q,h);var r=function(){var a=e.hoverState;e.$element.trigger("shown.bs."+e.type),e.hoverState=null,"out"==a&&e.leave(e)};a.support.transition&&this.$tip.hasClass("fade")?f.one("bsTransitionEnd",r).emulateTransitionEnd(c.TRANSITION_DURATION):r()}},c.prototype.applyPlacement=function(b,c){var d=this.tip(),e=d[0].offsetWidth,f=d[0].offsetHeight,g=parseInt(d.css("margin-top"),10),h=parseInt(d.css("margin-left"),10);isNaN(g)&&(g=0),isNaN(h)&&(h=0),b.top=b.top+g,b.left=b.left+h,a.offset.setOffset(d[0],a.extend({using:function(a){d.css({top:Math.round(a.top),left:Math.round(a.left)})}},b),0),d.addClass("in");var i=d[0].offsetWidth,j=d[0].offsetHeight;"top"==c&&j!=f&&(b.top=b.top+f-j);var k=this.getViewportAdjustedDelta(c,b,i,j);k.left?b.left+=k.left:b.top+=k.top;var l=/top|bottom/.test(c),m=l?2*k.left-e+i:2*k.top-f+j,n=l?"offsetWidth":"offsetHeight";d.offset(b),this.replaceArrow(m,d[0][n],l)},c.prototype.replaceArrow=function(a,b,c){this.arrow().css(c?"left":"top",50*(1-a/b)+"%").css(c?"top":"left","")},c.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")},c.prototype.hide=function(b){function d(){"in"!=e.hoverState&&f.detach(),e.$element.removeAttr("aria-describedby").trigger("hidden.bs."+e.type),b&&b()}var e=this,f=a(this.$tip),g=a.Event("hide.bs."+this.type);return this.$element.trigger(g),g.isDefaultPrevented()?void 0:(f.removeClass("in"),a.support.transition&&f.hasClass("fade")?f.one("bsTransitionEnd",d).emulateTransitionEnd(c.TRANSITION_DURATION):d(),this.hoverState=null,this)},c.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","")},c.prototype.hasContent=function(){return this.getTitle()},c.prototype.getPosition=function(b){b=b||this.$element;var c=b[0],d="BODY"==c.tagName,e=c.getBoundingClientRect();null==e.width&&(e=a.extend({},e,{width:e.right-e.left,height:e.bottom-e.top}));var f=d?{top:0,left:0}:b.offset(),g={scroll:d?document.documentElement.scrollTop||document.body.scrollTop:b.scrollTop()},h=d?{width:a(window).width(),height:a(window).height()}:null;return a.extend({},e,g,h,f)},c.prototype.getCalculatedOffset=function(a,b,c,d){return"bottom"==a?{top:b.top+b.height,left:b.left+b.width/2-c/2}:"top"==a?{top:b.top-d,left:b.left+b.width/2-c/2}:"left"==a?{top:b.top+b.height/2-d/2,left:b.left-c}:{top:b.top+b.height/2-d/2,left:b.left+b.width}},c.prototype.getViewportAdjustedDelta=function(a,b,c,d){var e={top:0,left:0};if(!this.$viewport)return e;var f=this.options.viewport&&this.options.viewport.padding||0,g=this.getPosition(this.$viewport);if(/right|left/.test(a)){var h=b.top-f-g.scroll,i=b.top+f-g.scroll+d;h<g.top?e.top=g.top-h:i>g.top+g.height&&(e.top=g.top+g.height-i)}else{var j=b.left-f,k=b.left+f+c;j<g.left?e.left=g.left-j:k>g.width&&(e.left=g.left+g.width-k)}return e},c.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)},c.prototype.getUID=function(a){do a+=~~(1e6*Math.random());while(document.getElementById(a));return a},c.prototype.tip=function(){return this.$tip=this.$tip||a(this.options.template)},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".tooltip-arrow")},c.prototype.enable=function(){this.enabled=!0},c.prototype.disable=function(){this.enabled=!1},c.prototype.toggleEnabled=function(){this.enabled=!this.enabled},c.prototype.toggle=function(b){var c=this;b&&(c=a(b.currentTarget).data("bs."+this.type),c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c))),c.tip().hasClass("in")?c.leave(c):c.enter(c)},c.prototype.destroy=function(){var a=this;clearTimeout(this.timeout),this.hide(function(){a.$element.off("."+a.type).removeData("bs."+a.type)})};var d=a.fn.tooltip;a.fn.tooltip=b,a.fn.tooltip.Constructor=c,a.fn.tooltip.noConflict=function(){return a.fn.tooltip=d,this}}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.popover"),f="object"==typeof b&&b;(e||!/destroy|hide/.test(b))&&(e||d.data("bs.popover",e=new c(this,f)),"string"==typeof b&&e[b]())})}var c=function(a,b){this.init("popover",a,b)};if(!a.fn.tooltip)throw new Error("Popover requires tooltip.js");c.VERSION="3.3.4",c.DEFAULTS=a.extend({},a.fn.tooltip.Constructor.DEFAULTS,{placement:"right",trigger:"click",content:"",template:'<div class="popover" role="tooltip"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'}),c.prototype=a.extend({},a.fn.tooltip.Constructor.prototype),c.prototype.constructor=c,c.prototype.getDefaults=function(){return c.DEFAULTS},c.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").children().detach().end()[this.options.html?"string"==typeof c?"html":"append":"text"](c),a.removeClass("fade top bottom left right in"),a.find(".popover-title").html()||a.find(".popover-title").hide()},c.prototype.hasContent=function(){return this.getTitle()||this.getContent()},c.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)},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".arrow")};var d=a.fn.popover;a.fn.popover=b,a.fn.popover.Constructor=c,a.fn.popover.noConflict=function(){return a.fn.popover=d,this}}(jQuery),+function(a){"use strict";function b(c,d){this.$body=a(document.body),this.$scrollElement=a(a(c).is(document.body)?window:c),this.options=a.extend({},b.DEFAULTS,d),this.selector=(this.options.target||"")+" .nav li > a",this.offsets=[],this.targets=[],this.activeTarget=null,this.scrollHeight=0,this.$scrollElement.on("scroll.bs.scrollspy",a.proxy(this.process,this)),this.refresh(),this.process()}function c(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]()})}b.VERSION="3.3.4",b.DEFAULTS={offset:10},b.prototype.getScrollHeight=function(){return this.$scrollElement[0].scrollHeight||Math.max(this.$body[0].scrollHeight,document.documentElement.scrollHeight)},b.prototype.refresh=function(){var b=this,c="offset",d=0;this.offsets=[],this.targets=[],this.scrollHeight=this.getScrollHeight(),a.isWindow(this.$scrollElement[0])||(c="position",d=this.$scrollElement.scrollTop()),this.$body.find(this.selector).map(function(){var b=a(this),e=b.data("target")||b.attr("href"),f=/^#./.test(e)&&a(e);return f&&f.length&&f.is(":visible")&&[[f[c]().top+d,e]]||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.getScrollHeight(),d=this.options.offset+c-this.$scrollElement.height(),e=this.offsets,f=this.targets,g=this.activeTarget;if(this.scrollHeight!=c&&this.refresh(),b>=d)return g!=(a=f[f.length-1])&&this.activate(a);if(g&&b<e[0])return this.activeTarget=null,this.clear();for(a=e.length;a--;)g!=f[a]&&b>=e[a]&&(void 0===e[a+1]||b<e[a+1])&&this.activate(f[a])},b.prototype.activate=function(b){this.activeTarget=b,this.clear();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.bs.scrollspy")},b.prototype.clear=function(){a(this.selector).parentsUntil(this.options.target,".active").removeClass("active")};var d=a.fn.scrollspy;a.fn.scrollspy=c,a.fn.scrollspy.Constructor=b,a.fn.scrollspy.noConflict=function(){return a.fn.scrollspy=d,this},a(window).on("load.bs.scrollspy.data-api",function(){a('[data-spy="scroll"]').each(function(){var b=a(this);c.call(b,b.data())})})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.tab");e||d.data("bs.tab",e=new c(this)),"string"==typeof b&&e[b]()})}var c=function(b){this.element=a(b)};c.VERSION="3.3.4",c.TRANSITION_DURATION=150,c.prototype.show=function(){var b=this.element,c=b.closest("ul:not(.dropdown-menu)"),d=b.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"),f=a.Event("hide.bs.tab",{relatedTarget:b[0]}),g=a.Event("show.bs.tab",{relatedTarget:e[0]});if(e.trigger(f),b.trigger(g),!g.isDefaultPrevented()&&!f.isDefaultPrevented()){var h=a(d);this.activate(b.closest("li"),c),this.activate(h,h.parent(),function(){e.trigger({type:"hidden.bs.tab",relatedTarget:b[0]}),b.trigger({type:"shown.bs.tab",relatedTarget:e[0]})})}}},c.prototype.activate=function(b,d,e){function f(){g.removeClass("active").find("> .dropdown-menu > .active").removeClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!1),b.addClass("active").find('[data-toggle="tab"]').attr("aria-expanded",!0),h?(b[0].offsetWidth,b.addClass("in")):b.removeClass("fade"),b.parent(".dropdown-menu").length&&b.closest("li.dropdown").addClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!0),e&&e()}var g=d.find("> .active"),h=e&&a.support.transition&&(g.length&&g.hasClass("fade")||!!d.find("> .fade").length);g.length&&h?g.one("bsTransitionEnd",f).emulateTransitionEnd(c.TRANSITION_DURATION):f(),g.removeClass("in")};var d=a.fn.tab;a.fn.tab=b,a.fn.tab.Constructor=c,a.fn.tab.noConflict=function(){return a.fn.tab=d,this};var e=function(c){c.preventDefault(),b.call(a(this),"show")};a(document).on("click.bs.tab.data-api",'[data-toggle="tab"]',e).on("click.bs.tab.data-api",'[data-toggle="pill"]',e)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.affix"),f="object"==typeof b&&b;e||d.data("bs.affix",e=new c(this,f)),"string"==typeof b&&e[b]()})}var c=function(b,d){this.options=a.extend({},c.DEFAULTS,d),this.$target=a(this.options.target).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(b),this.affixed=null,this.unpin=null,this.pinnedOffset=null,this.checkPosition()};c.VERSION="3.3.4",c.RESET="affix affix-top affix-bottom",c.DEFAULTS={offset:0,target:window},c.prototype.getState=function(a,b,c,d){var e=this.$target.scrollTop(),f=this.$element.offset(),g=this.$target.height();if(null!=c&&"top"==this.affixed)return c>e?"top":!1;if("bottom"==this.affixed)return null!=c?e+this.unpin<=f.top?!1:"bottom":a-d>=e+g?!1:"bottom";var h=null==this.affixed,i=h?e:f.top,j=h?g:b;return null!=c&&c>=e?"top":null!=d&&i+j>=a-d?"bottom":!1},c.prototype.getPinnedOffset=function(){if(this.pinnedOffset)return this.pinnedOffset;this.$element.removeClass(c.RESET).addClass("affix");var a=this.$target.scrollTop(),b=this.$element.offset();return this.pinnedOffset=b.top-a},c.prototype.checkPositionWithEventLoop=function(){setTimeout(a.proxy(this.checkPosition,this),1)},c.prototype.checkPosition=function(){if(this.$element.is(":visible")){var b=this.$element.height(),d=this.options.offset,e=d.top,f=d.bottom,g=a(document.body).height();"object"!=typeof d&&(f=e=d),"function"==typeof e&&(e=d.top(this.$element)),"function"==typeof f&&(f=d.bottom(this.$element));var h=this.getState(g,b,e,f);if(this.affixed!=h){null!=this.unpin&&this.$element.css("top","");var i="affix"+(h?"-"+h:""),j=a.Event(i+".bs.affix");if(this.$element.trigger(j),j.isDefaultPrevented())return;this.affixed=h,this.unpin="bottom"==h?this.getPinnedOffset():null,this.$element.removeClass(c.RESET).addClass(i).trigger(i.replace("affix","affixed")+".bs.affix")}"bottom"==h&&this.$element.offset({top:g-b-f})}};var d=a.fn.affix;a.fn.affix=b,a.fn.affix.Constructor=c,a.fn.affix.noConflict=function(){return a.fn.affix=d,this},a(window).on("load",function(){a('[data-spy="affix"]').each(function(){var c=a(this),d=c.data();d.offset=d.offset||{},null!=d.offsetBottom&&(d.offset.bottom=d.offsetBottom),null!=d.offsetTop&&(d.offset.top=d.offsetTop),b.call(c,d)})})}(jQuery);pagePluginReSize();jQuery(window).resize(function(){pagePluginReSize();});function pagePluginReSize(){}
|
4 |
+
!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document,'script','twitter-wjs');(function($){$(function(){$('.prArea > .subSection-title').flatHeights();$('.prArea > .summary').flatHeights();$('.childPage_list_title').flatHeights();});window.onload=function(){$('.childPage_list_box').flatHeights();}})(jQuery);
|
js/jquery.flatheights.js
ADDED
@@ -0,0 +1,118 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*
|
2 |
+
======================================================================
|
3 |
+
jquery.flatheights.js
|
4 |
+
Version: 2010-09-15
|
5 |
+
http://www.akatsukinishisu.net/itazuragaki/js/i20070801.html
|
6 |
+
======================================================================
|
7 |
+
/*-------------------------------------------*/
|
8 |
+
/* $.changeLetterSize.addHandler(func)
|
9 |
+
/* 文字の大きさが変化した時に実行する処理を追加
|
10 |
+
/*-------------------------------------------*/
|
11 |
+
jQuery.changeLetterSize = {
|
12 |
+
handlers : [],
|
13 |
+
interval : 1000,
|
14 |
+
currentSize: 0
|
15 |
+
};
|
16 |
+
|
17 |
+
(function($) {
|
18 |
+
|
19 |
+
var self = $.changeLetterSize;
|
20 |
+
|
21 |
+
/* 文字の大きさを確認するためのins要素 */
|
22 |
+
var ins = $('<ins>M</ins>').css({
|
23 |
+
display: 'block',
|
24 |
+
visibility: 'hidden',
|
25 |
+
position: 'absolute',
|
26 |
+
padding: '0',
|
27 |
+
top: '0'
|
28 |
+
});
|
29 |
+
|
30 |
+
/* 文字の大きさが変わったか */
|
31 |
+
var isChanged = function() {
|
32 |
+
ins.appendTo('body');
|
33 |
+
var size = ins[0].offsetHeight;
|
34 |
+
ins.remove();
|
35 |
+
if (self.currentSize == size) return false;
|
36 |
+
self.currentSize = size;
|
37 |
+
return true;
|
38 |
+
};
|
39 |
+
|
40 |
+
/* 文書を読み込んだ時点で
|
41 |
+
文字の大きさを確認しておく */
|
42 |
+
$(isChanged);
|
43 |
+
|
44 |
+
/* 文字の大きさが変わっていたら、
|
45 |
+
handlers中の関数を順に実行 */
|
46 |
+
var observer = function() {
|
47 |
+
if (!isChanged()) return;
|
48 |
+
$.each(self.handlers, function(i, handler) {
|
49 |
+
handler();
|
50 |
+
});
|
51 |
+
};
|
52 |
+
|
53 |
+
/* ハンドラを登録し、
|
54 |
+
最初の登録であれば、定期処理を開始 */
|
55 |
+
self.addHandler = function(func) {
|
56 |
+
self.handlers.push(func);
|
57 |
+
if (self.handlers.length == 1) {
|
58 |
+
setInterval(observer, self.interval);
|
59 |
+
}
|
60 |
+
};
|
61 |
+
|
62 |
+
})(jQuery);
|
63 |
+
|
64 |
+
|
65 |
+
/*-------------------------------------------*/
|
66 |
+
/* $(expr).flatHeights()
|
67 |
+
/* $(expr)で選択した複数の要素について、それぞれ高さを
|
68 |
+
/* 一番高いものに揃える
|
69 |
+
/*-------------------------------------------*/
|
70 |
+
|
71 |
+
(function($) {
|
72 |
+
|
73 |
+
/* 対象となる要素群の集合 */
|
74 |
+
var sets = [];
|
75 |
+
|
76 |
+
/* 高さ揃えの処理本体 */
|
77 |
+
var flatHeights = function(set) {
|
78 |
+
var maxHeight = 0;
|
79 |
+
set.each(function(){
|
80 |
+
var height = this.offsetHeight;
|
81 |
+
if (height > maxHeight) maxHeight = height;
|
82 |
+
});
|
83 |
+
set.css('height', maxHeight + 'px');
|
84 |
+
};
|
85 |
+
|
86 |
+
/* 要素群の高さを揃え、setsに追加 */
|
87 |
+
jQuery.fn.flatHeights = function() {
|
88 |
+
if (this.length > 1) {
|
89 |
+
flatHeights(this);
|
90 |
+
sets.push(this);
|
91 |
+
}
|
92 |
+
return this;
|
93 |
+
};
|
94 |
+
|
95 |
+
/* 高さ揃えを再実行する処理 */
|
96 |
+
var reflatting = function() {
|
97 |
+
$.each(sets, function() {
|
98 |
+
this.height('auto');
|
99 |
+
flatHeights(this);
|
100 |
+
});
|
101 |
+
};
|
102 |
+
|
103 |
+
/* 文字の大きさが変わった時に高さ揃えを再実行 */
|
104 |
+
$.changeLetterSize.addHandler(reflatting);
|
105 |
+
|
106 |
+
/* ウィンドウの大きさが変わった時に高さ揃えを再実行 */
|
107 |
+
$(window).resize(reflatting);
|
108 |
+
|
109 |
+
})(jQuery);
|
110 |
+
|
111 |
+
jQuery(document).ready(function($){
|
112 |
+
// .topPrTitには高さのpaddingを入れる事もあるので a に対して指定
|
113 |
+
jQuery('.topPrTit a').flatHeights();
|
114 |
+
jQuery('.topPrDescription').flatHeights();
|
115 |
+
jQuery('.child_page_block').flatHeights();
|
116 |
+
jQuery('.child_page_block p').flatHeights();
|
117 |
+
jQuery('#content .child_page_block h4 a').flatHeights();
|
118 |
+
});
|
js/master.js
ADDED
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
pagePluginReSize();
|
2 |
+
jQuery(window).resize(function(){
|
3 |
+
pagePluginReSize();
|
4 |
+
});
|
5 |
+
|
6 |
+
/*-------------------------------------------*/
|
7 |
+
/* facebookLikeBox
|
8 |
+
/*-------------------------------------------*/
|
9 |
+
function pagePluginReSize(){
|
10 |
+
// jQuery('.fb_iframe_widget').each(function(){
|
11 |
+
// var element = jQuery(this).parent().width();
|
12 |
+
// console.log(element);
|
13 |
+
// jQuery(this).attr('data-width',element);
|
14 |
+
// jQuery(this).children('span:first').css({"width":element});
|
15 |
+
// jQuery(this).children('span iframe.fb_ltr').css({"width":element});
|
16 |
+
// });
|
17 |
+
}
|
18 |
+
|
19 |
+
!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');
|
20 |
+
|
21 |
+
/*-------------------------------------------*/
|
22 |
+
/* jquery.flatheights.js
|
23 |
+
/*-------------------------------------------*/
|
24 |
+
(function($){
|
25 |
+
$(function() {
|
26 |
+
$('.prArea > .subSection-title').flatHeights();
|
27 |
+
$('.prArea > .summary').flatHeights();
|
28 |
+
$('.childPage_list_title').flatHeights();
|
29 |
+
});
|
30 |
+
window.onload = function() {
|
31 |
+
$('.childPage_list_box').flatHeights();
|
32 |
+
}
|
33 |
+
})(jQuery);
|
js/vkExUnit_admin.js
ADDED
@@ -0,0 +1,53 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
/*-------------------------------------------*/
|
3 |
+
/* メディアアップローダー
|
4 |
+
/*-------------------------------------------*/
|
5 |
+
jQuery(document).ready(function($){
|
6 |
+
var custom_uploader;
|
7 |
+
// var media_id = new Array(2); //配列の宣言
|
8 |
+
// media_id[0] = "head_logo";
|
9 |
+
// media_id[1] = "foot_logo";
|
10 |
+
|
11 |
+
//for (i = 0; i < media_id.length; i++) { //iという変数に0をいれループ一回ごとに加算する
|
12 |
+
|
13 |
+
// var media_btn = '#media_' + media_id[i];
|
14 |
+
// var media_target = '#' + media_id[i];
|
15 |
+
jQuery('.media_btn').click(function(e) {
|
16 |
+
media_target = jQuery(this).attr('id').replace(/media_/g,'#');
|
17 |
+
e.preventDefault();
|
18 |
+
if (custom_uploader) {
|
19 |
+
custom_uploader.open();
|
20 |
+
return;
|
21 |
+
}
|
22 |
+
custom_uploader = wp.media({
|
23 |
+
title: 'Choose Image',
|
24 |
+
// 以下のコメントアウトを解除すると画像のみに限定される。 → されないみたい
|
25 |
+
library: {
|
26 |
+
type: 'image'
|
27 |
+
},
|
28 |
+
button: {
|
29 |
+
text: 'Choose Image'
|
30 |
+
},
|
31 |
+
multiple: false, // falseにすると画像を1つしか選択できなくなる
|
32 |
+
});
|
33 |
+
custom_uploader.on('select', function() {
|
34 |
+
var images = custom_uploader.state().get('selection');
|
35 |
+
images.each(function(file){
|
36 |
+
//$('#head_logo').append('<img src="'+file.toJSON().url+'" />');
|
37 |
+
jQuery(media_target).attr('value', file.toJSON().url );
|
38 |
+
});
|
39 |
+
});
|
40 |
+
custom_uploader.open();
|
41 |
+
});
|
42 |
+
//}
|
43 |
+
|
44 |
+
});
|
45 |
+
|
46 |
+
/*-------------------------------------------*/
|
47 |
+
/* ページ内の表示/非表示切り替えセクションの追加
|
48 |
+
/*-------------------------------------------*/
|
49 |
+
jQuery(document).ready(function($){
|
50 |
+
jQuery('.showHideSection .showHideBtn').on("click", function() {
|
51 |
+
jQuery(this).next().slideToggle();
|
52 |
+
});
|
53 |
+
});
|
languages/vkExUnit-ja.mo
ADDED
Binary file
|
languages/vkExUnit-ja.po
ADDED
@@ -0,0 +1,1228 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: \n"
|
4 |
+
"POT-Creation-Date: 2015-07-23 13:31+0900\n"
|
5 |
+
"PO-Revision-Date: \n"
|
6 |
+
"Last-Translator: Kurudrive <kurudrive@gmail.com>\n"
|
7 |
+
"Language-Team: Vektor translate Team <info@vektor-inc.co.jp>\n"
|
8 |
+
"Language: ja\n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.5.7\n"
|
13 |
+
"X-Poedit-Basepath: .\n"
|
14 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
+
"X-Poedit-KeywordsList: __;_x;_e\n"
|
16 |
+
"X-Poedit-SearchPath-0: ..\n"
|
17 |
+
|
18 |
+
#: ../admin_wrapper.php:7 ../admin_wrapper.php:8
|
19 |
+
#: ../plugins/meta_keyword/meta_keyword.php:84
|
20 |
+
msgid "Main setting"
|
21 |
+
msgstr "メイン設定"
|
22 |
+
|
23 |
+
#: ../common_helpers.php:126
|
24 |
+
#, php-format
|
25 |
+
msgid "Search Results for : %s"
|
26 |
+
msgstr "検索結果 : %s"
|
27 |
+
|
28 |
+
#: ../common_helpers.php:129
|
29 |
+
msgid "Not found"
|
30 |
+
msgstr "見つかりません"
|
31 |
+
|
32 |
+
#: ../common_helpers.php:138 ../common_helpers.php:202
|
33 |
+
#, php-format
|
34 |
+
msgid "Page of %s"
|
35 |
+
msgstr "%s のページ"
|
36 |
+
|
37 |
+
#: ../common_helpers.php:162 ../common_helpers.php:170
|
38 |
+
#, php-format
|
39 |
+
msgid "About %s"
|
40 |
+
msgstr "%s について"
|
41 |
+
|
42 |
+
#: ../common_helpers.php:174 ../common_helpers.php:223
|
43 |
+
msgid "Y"
|
44 |
+
msgstr "年"
|
45 |
+
|
46 |
+
#: ../common_helpers.php:175 ../common_helpers.php:179
|
47 |
+
#: ../common_helpers.php:183 ../common_helpers.php:187
|
48 |
+
#, php-format
|
49 |
+
msgid "Article of %s."
|
50 |
+
msgstr "%s の記事"
|
51 |
+
|
52 |
+
#: ../common_helpers.php:178 ../common_helpers.php:225
|
53 |
+
msgid "F Y"
|
54 |
+
msgstr "年月"
|
55 |
+
|
56 |
+
#: ../common_helpers.php:221
|
57 |
+
#, php-format
|
58 |
+
msgid "Author: %s"
|
59 |
+
msgstr "著者: %s"
|
60 |
+
|
61 |
+
#: ../common_helpers.php:227
|
62 |
+
msgid "F j, Y"
|
63 |
+
msgstr "月日, 年"
|
64 |
+
|
65 |
+
#: ../common_helpers.php:230
|
66 |
+
msgid "Asides"
|
67 |
+
msgstr "サイド"
|
68 |
+
|
69 |
+
#: ../common_helpers.php:232
|
70 |
+
msgid "Galleries"
|
71 |
+
msgstr "ギャラリー"
|
72 |
+
|
73 |
+
#: ../common_helpers.php:234
|
74 |
+
msgid "Images"
|
75 |
+
msgstr "画像"
|
76 |
+
|
77 |
+
#: ../common_helpers.php:236
|
78 |
+
msgid "Videos"
|
79 |
+
msgstr "ビデオ"
|
80 |
+
|
81 |
+
#: ../common_helpers.php:238
|
82 |
+
msgid "Quotes"
|
83 |
+
msgstr "引用"
|
84 |
+
|
85 |
+
#: ../common_helpers.php:240
|
86 |
+
msgid "Links"
|
87 |
+
msgstr "リンク"
|
88 |
+
|
89 |
+
#: ../common_helpers.php:242
|
90 |
+
msgid "Statuses"
|
91 |
+
msgstr "ステータス"
|
92 |
+
|
93 |
+
#: ../common_helpers.php:244
|
94 |
+
msgid "Audio"
|
95 |
+
msgstr "オーディオ"
|
96 |
+
|
97 |
+
#: ../common_helpers.php:246
|
98 |
+
msgid "Chats"
|
99 |
+
msgstr "チャット"
|
100 |
+
|
101 |
+
#: ../common_helpers.php:262 ../plugins/other_widget/widget-taxonomies.php:81
|
102 |
+
#: ../plugins/other_widget/old/widget-taxonomy-list.php:81
|
103 |
+
msgid "Archives"
|
104 |
+
msgstr "アーカイブ"
|
105 |
+
|
106 |
+
#: ../vkExUnit_admin.php:12 ../vkExUnit_admin.php:334
|
107 |
+
msgid "Select all"
|
108 |
+
msgstr "全てを選択"
|
109 |
+
|
110 |
+
#: ../vkExUnit_admin.php:12 ../vkExUnit_admin.php:334
|
111 |
+
msgid "Function"
|
112 |
+
msgstr "有効化"
|
113 |
+
|
114 |
+
#: ../vkExUnit_admin.php:12 ../vkExUnit_admin.php:334
|
115 |
+
msgid "Description"
|
116 |
+
msgstr "説明"
|
117 |
+
|
118 |
+
#: ../vkExUnit_admin.php:21
|
119 |
+
msgid "Choose Print Bootstrap css"
|
120 |
+
msgstr "Bootstrap の CSS を出力するか選択"
|
121 |
+
|
122 |
+
#: ../vkExUnit_admin.php:26
|
123 |
+
msgid "Print Bootstrap css and js"
|
124 |
+
msgstr "Bootstrap の CSS と js を出力"
|
125 |
+
|
126 |
+
#: ../vkExUnit_admin.php:30
|
127 |
+
msgid ""
|
128 |
+
"If your using theme has already including Bootstrap, you deactivate this "
|
129 |
+
"item."
|
130 |
+
msgstr ""
|
131 |
+
"Bootstrap の CSS と js を読み込むためのタグを html head 内へ出力します。使用"
|
132 |
+
"中のテーマやプラグインで Bootstrap を既に読み込んでいる場合はチェックを外して"
|
133 |
+
"下さい。"
|
134 |
+
|
135 |
+
#: ../vkExUnit_admin.php:39
|
136 |
+
msgid "Choose Print link fontawesome."
|
137 |
+
msgstr "出力する fontawesome link を選択して下さい。"
|
138 |
+
|
139 |
+
#: ../vkExUnit_admin.php:44
|
140 |
+
msgid "Print link fontawesome."
|
141 |
+
msgstr "fontawesome link タグを出力"
|
142 |
+
|
143 |
+
#: ../vkExUnit_admin.php:48
|
144 |
+
msgid "Print fontawesome link tag to html head."
|
145 |
+
msgstr ""
|
146 |
+
"fontawesome を読み込むための link タグを html head 内へ出力します。使用中の"
|
147 |
+
"テーマやプラグインで fontawesome を既に読み込んでいる場合はチェックを外して下"
|
148 |
+
"さい。"
|
149 |
+
|
150 |
+
#: ../vkExUnit_admin.php:57 ../vkExUnit_admin.php:121
|
151 |
+
msgid "Choose Print meta description."
|
152 |
+
msgstr "出力する meta description を選択して下さい。"
|
153 |
+
|
154 |
+
#: ../vkExUnit_admin.php:62
|
155 |
+
msgid "Favicon setting"
|
156 |
+
msgstr "ファビコン設定"
|
157 |
+
|
158 |
+
#: ../vkExUnit_admin.php:66
|
159 |
+
msgid "About favicon."
|
160 |
+
msgstr ""
|
161 |
+
"ブラウザでページを表示した際にタブやウィンドウのタイトルに表示されるアイコン"
|
162 |
+
"(ファビコン)を設定します。"
|
163 |
+
|
164 |
+
#: ../vkExUnit_admin.php:75
|
165 |
+
msgid "Choose Rewrite the title tag"
|
166 |
+
msgstr "タイトルタグの書き換えを選択する"
|
167 |
+
|
168 |
+
#: ../vkExUnit_admin.php:80
|
169 |
+
msgid "Rewrite the title tag"
|
170 |
+
msgstr "タイトルタグの書き換え"
|
171 |
+
|
172 |
+
#: ../vkExUnit_admin.php:84
|
173 |
+
msgid "Print is rewritten by its own rules to html head."
|
174 |
+
msgstr ""
|
175 |
+
"head title タグ内へ出力される内容を VK EX Unit のルールで出力します。 ( VK "
|
176 |
+
"EX Unit 側で wp_title() をフィルターフックでカスタマイズ ) 使用中のテーマやプ"
|
177 |
+
"ラグインで title タグの内容を出力する場合はチェックを外して下さい。"
|
178 |
+
|
179 |
+
#: ../vkExUnit_admin.php:93
|
180 |
+
msgid "Choose Print meta Keyword."
|
181 |
+
msgstr "メタキーワードを選んでください。"
|
182 |
+
|
183 |
+
#: ../vkExUnit_admin.php:98
|
184 |
+
msgid "Print meta Keyword"
|
185 |
+
msgstr "メタキーワードを出力"
|
186 |
+
|
187 |
+
#: ../vkExUnit_admin.php:104 ../vkExUnit_admin.php:150
|
188 |
+
#: ../vkExUnit_admin.php:188 ../vkExUnit_admin.php:267
|
189 |
+
#: ../vkExUnit_admin.php:300
|
190 |
+
msgid "Setting"
|
191 |
+
msgstr "設定"
|
192 |
+
|
193 |
+
#: ../vkExUnit_admin.php:112
|
194 |
+
msgid "Print meta Keyword to html head."
|
195 |
+
msgstr "ヘッダーにメタキーワードを出力します。"
|
196 |
+
|
197 |
+
#: ../vkExUnit_admin.php:126
|
198 |
+
msgid "Print meta description"
|
199 |
+
msgstr "メタディスクリプションタグを出力"
|
200 |
+
|
201 |
+
#: ../vkExUnit_admin.php:130
|
202 |
+
msgid "Print meta description to html head."
|
203 |
+
msgstr ""
|
204 |
+
"投稿画面「抜粋」欄に入力されたテキストを meta description タグとして html "
|
205 |
+
"head 内へ出力します。使用中のテーマやプラグインで meta description タグを出力"
|
206 |
+
"している場合はチェックを外して下さい。"
|
207 |
+
|
208 |
+
#: ../vkExUnit_admin.php:139
|
209 |
+
msgid "Choose Social media cooperation."
|
210 |
+
msgstr "連携するソーシャルメディアを選択します。"
|
211 |
+
|
212 |
+
#: ../vkExUnit_admin.php:144
|
213 |
+
msgid "Social media cooperation."
|
214 |
+
msgstr "ソーシャルメディアとの連携"
|
215 |
+
|
216 |
+
#: ../vkExUnit_admin.php:159
|
217 |
+
msgid "Print og tags to html head."
|
218 |
+
msgstr "OG タグを html head 内へ出力します。"
|
219 |
+
|
220 |
+
#: ../vkExUnit_admin.php:160
|
221 |
+
msgid "Print twitter card tags to html head."
|
222 |
+
msgstr "Twitter カードタグを html head 内へ出力します。"
|
223 |
+
|
224 |
+
#: ../vkExUnit_admin.php:161
|
225 |
+
msgid "Print social bookmark buttons."
|
226 |
+
msgstr "ソーシャルブックマークボタンを表示します。"
|
227 |
+
|
228 |
+
#: ../vkExUnit_admin.php:162
|
229 |
+
msgid "Facebook Page Plugin widget."
|
230 |
+
msgstr "Facebookページプラグインウィジェット"
|
231 |
+
|
232 |
+
#: ../vkExUnit_admin.php:163
|
233 |
+
msgid "Print Follow me box to content bottom."
|
234 |
+
msgstr "Follow me box を記事コンテンツ下のエリアへ表示します。"
|
235 |
+
|
236 |
+
#: ../vkExUnit_admin.php:166
|
237 |
+
msgid "Main setting page"
|
238 |
+
msgstr "メイン設定画面"
|
239 |
+
|
240 |
+
#: ../vkExUnit_admin.php:167
|
241 |
+
#, php-format
|
242 |
+
msgid "* You can stop the function separately from the %s."
|
243 |
+
msgstr "%s から個別に機能を停止する事ができます。"
|
244 |
+
|
245 |
+
#: ../vkExUnit_admin.php:177
|
246 |
+
msgid "Choose Print Google Analytics tracking code."
|
247 |
+
msgstr "出力する Google アナリティクスのトラッキングコードを選択します。"
|
248 |
+
|
249 |
+
#: ../vkExUnit_admin.php:196
|
250 |
+
msgid "Print Google Analytics tracking code."
|
251 |
+
msgstr ""
|
252 |
+
"Google アナリティクスのトラッキングコードを出力します。有効化した後「設定」の"
|
253 |
+
"リンクより設定画面へすすみ Google アナリティクス ID を入力して下さい。使用中"
|
254 |
+
"のテーマやプラグインで Google アナリティクスのトラッキングコードを埋め込む場"
|
255 |
+
"合はチェックを外して下さい。"
|
256 |
+
|
257 |
+
#: ../vkExUnit_admin.php:205
|
258 |
+
msgid "Choose Related posts."
|
259 |
+
msgstr "関連記事を選択"
|
260 |
+
|
261 |
+
#: ../vkExUnit_admin.php:210 ../plugins/related_posts/related_posts.php:34
|
262 |
+
msgid "Related posts"
|
263 |
+
msgstr "関連記事を表示"
|
264 |
+
|
265 |
+
#: ../vkExUnit_admin.php:214
|
266 |
+
msgid "Print Related posts lists to post content bottom."
|
267 |
+
msgstr "関連記事を記事コンテンツ下のエリアへ表示します。"
|
268 |
+
|
269 |
+
#: ../vkExUnit_admin.php:223
|
270 |
+
msgid "Choose display a child page index to posts."
|
271 |
+
msgstr "子ページの一覧を表示するか選択"
|
272 |
+
|
273 |
+
#: ../vkExUnit_admin.php:228
|
274 |
+
msgid "Child page index"
|
275 |
+
msgstr "子ページの一覧表示"
|
276 |
+
|
277 |
+
#: ../vkExUnit_admin.php:232
|
278 |
+
msgid ""
|
279 |
+
"At the bottom of the specified page, it will display a list of the child "
|
280 |
+
"page."
|
281 |
+
msgstr ""
|
282 |
+
"指定した固定ページの下部へ、その固定ページの下層子ページの「ページタイトル / "
|
283 |
+
"サムネイル / 抜粋文 / 該当ページへのリンク」をセットで一覧表示します。"
|
284 |
+
|
285 |
+
#: ../vkExUnit_admin.php:241
|
286 |
+
msgid "Insert Site Map"
|
287 |
+
msgstr "サイトマップを挿入する"
|
288 |
+
|
289 |
+
#: ../vkExUnit_admin.php:246
|
290 |
+
msgid "Display HTML Site Map"
|
291 |
+
msgstr "HTMLサイトマップの表示"
|
292 |
+
|
293 |
+
#: ../vkExUnit_admin.php:250
|
294 |
+
msgid "It displays a HTML Site Map to the specified page."
|
295 |
+
msgstr "指定した固定ページにHTMLサイトマップを表示します。"
|
296 |
+
|
297 |
+
#: ../vkExUnit_admin.php:259 ../vkExUnit_admin.php:290
|
298 |
+
msgid "Choose other widgets."
|
299 |
+
msgstr "Other ウィジェットを選択"
|
300 |
+
|
301 |
+
#: ../vkExUnit_admin.php:264
|
302 |
+
msgid "Widgets"
|
303 |
+
msgstr "ウィジェット"
|
304 |
+
|
305 |
+
#: ../vkExUnit_admin.php:272
|
306 |
+
msgid "You can use various widgets."
|
307 |
+
msgstr ""
|
308 |
+
"以下の機能を持ったウィジェットを追加します。各ウィジェットの設定は「外観」→"
|
309 |
+
"「ウィジェット」の設定画面より行って下さい。"
|
310 |
+
|
311 |
+
#: ../vkExUnit_admin.php:274
|
312 |
+
msgid ""
|
313 |
+
"VK_Recent Posts - display the link text and the date of the latest article "
|
314 |
+
"title."
|
315 |
+
msgstr "VK_最新記事 - 最新記事タイトルのリンクテキストと日付を表示します。"
|
316 |
+
|
317 |
+
#: ../vkExUnit_admin.php:275
|
318 |
+
msgid ""
|
319 |
+
"VK_Page content to widget - display the contents of the page to the widgets."
|
320 |
+
msgstr ""
|
321 |
+
"VK_固定ページ本文 - 固定ページのコンテンツ部分をウィジェットに表示します。"
|
322 |
+
|
323 |
+
#: ../vkExUnit_admin.php:276
|
324 |
+
msgid "VK_Profile - display the profile entered in the widget."
|
325 |
+
msgstr "VK_プロフィール - ウィジェットに入力されたプロフィールを表示します。"
|
326 |
+
|
327 |
+
#: ../vkExUnit_admin.php:277
|
328 |
+
msgid "VK_FB Page Plugin - display the Facebook Page Plugin."
|
329 |
+
msgstr "VK_FB Page Plugin - Facebook ページプラグインを表示します。"
|
330 |
+
|
331 |
+
#: ../vkExUnit_admin.php:278
|
332 |
+
msgid "VK_3PR area - display the 3PR area."
|
333 |
+
msgstr "VK_3PR エリア - 3PR エリアを表示します。"
|
334 |
+
|
335 |
+
#: ../vkExUnit_admin.php:279
|
336 |
+
#: ../plugins/other_widget/old/widget-taxonomy-list.php:17
|
337 |
+
msgid "categories/tags list"
|
338 |
+
msgstr "カテゴリー/タグ リスト"
|
339 |
+
|
340 |
+
#: ../vkExUnit_admin.php:279
|
341 |
+
#: ../plugins/other_widget/old/widget-taxonomy-list.php:11
|
342 |
+
msgid "Displays a categories, tags or format list."
|
343 |
+
msgstr "カテゴリ・タグまたは、フォーマットリストを表示します。"
|
344 |
+
|
345 |
+
#: ../vkExUnit_admin.php:280 ../plugins/other_widget/widget-archives.php:14
|
346 |
+
#: ../plugins/other_widget/old/widget-archive-list.php:14
|
347 |
+
msgid "archive list"
|
348 |
+
msgstr "アーカイブリスト"
|
349 |
+
|
350 |
+
#: ../vkExUnit_admin.php:280 ../plugins/other_widget/widget-archives.php:12
|
351 |
+
#: ../plugins/other_widget/old/widget-archive-list.php:12
|
352 |
+
msgid ""
|
353 |
+
"Displays a list of archives. You can choose the post type and also to "
|
354 |
+
"display archives by month or by year."
|
355 |
+
msgstr ""
|
356 |
+
"アーカイブの一覧を表示します。月ごともしくは年ごとでの表示。また、ポストタイ"
|
357 |
+
"プを選択できます。"
|
358 |
+
|
359 |
+
#: ../vkExUnit_admin.php:295
|
360 |
+
msgid "CSS customize"
|
361 |
+
msgstr "CSSカスタマイズ"
|
362 |
+
|
363 |
+
#: ../vkExUnit_admin.php:307
|
364 |
+
msgid "You can set Customize CSS."
|
365 |
+
msgstr ""
|
366 |
+
"テーマデザインをカスタマイズする CSS を管理画面より追加できるようになります。"
|
367 |
+
"追加する CSS コードは「VK Ex Unit」→「CSS カスタマイズ」の画面にて入力して下"
|
368 |
+
"さい。"
|
369 |
+
|
370 |
+
#: ../vkExUnit_admin.php:316 ../vkExUnit_admin.php:321
|
371 |
+
msgid "Automatic Eye Catch insert"
|
372 |
+
msgstr "アイキャッチ画像自動挿入"
|
373 |
+
|
374 |
+
#: ../vkExUnit_admin.php:325
|
375 |
+
msgid "Display Eye Catch image at before content."
|
376 |
+
msgstr ""
|
377 |
+
"アイキャッチ画像を本文の最初に表示します。各記事毎に非表示にする事も出来ま"
|
378 |
+
"す。"
|
379 |
+
|
380 |
+
#: ../plugins/auto_eyecatch.php:32
|
381 |
+
msgid "Automatic EyeCatch"
|
382 |
+
msgstr "アイキャッチ自動挿入"
|
383 |
+
|
384 |
+
#: ../plugins/auto_eyecatch.php:42
|
385 |
+
msgid "Do not set eyecatch image automatic."
|
386 |
+
msgstr "アイキャッチ画像を自動挿入しない"
|
387 |
+
|
388 |
+
#: ../plugins/icons.php:26 ../plugins/icons.php:54
|
389 |
+
msgid "icon setting"
|
390 |
+
msgstr "アイコン設定"
|
391 |
+
|
392 |
+
#: ../plugins/icons.php:59
|
393 |
+
msgid "Favicon Setting"
|
394 |
+
msgstr "ファビコン設定"
|
395 |
+
|
396 |
+
#: ../plugins/icons.php:61
|
397 |
+
msgid "Choose icon"
|
398 |
+
msgstr "アイコンを選択"
|
399 |
+
|
400 |
+
#: ../plugins/icons.php:62
|
401 |
+
msgid "Please upload your \".ico\" file"
|
402 |
+
msgstr "作成したicoファイルをアップロードしてください"
|
403 |
+
|
404 |
+
#: ../plugins/page_custom_field.php:12
|
405 |
+
msgid "Setting of insert items"
|
406 |
+
msgstr "挿入アイテムの設定"
|
407 |
+
|
408 |
+
#: ../plugins/page_custom_field.php:22 ../plugins/page_custom_field.php:32
|
409 |
+
msgid "Choose display a child page index"
|
410 |
+
msgstr "子ページの一覧を表示するか選択"
|
411 |
+
|
412 |
+
#: ../plugins/page_custom_field.php:27
|
413 |
+
msgid "if checked you will display a child page index "
|
414 |
+
msgstr ""
|
415 |
+
"チェックを入れると個別ページ下へ同じ親ページをもつ子ページ一覧を表示します。"
|
416 |
+
|
417 |
+
#: ../plugins/page_custom_field.php:37
|
418 |
+
msgid "if checked you will display a sitemap"
|
419 |
+
msgstr "チェックを入れるとHTMLサイトマップを表示します。"
|
420 |
+
|
421 |
+
#: ../plugins/child_page_index/child_page_index.php:34
|
422 |
+
#: ../plugins/child_page_index/child_page_index.php:48
|
423 |
+
#: ../plugins/other_widget/widget-3pr-area.php:274
|
424 |
+
#: ../plugins/other_widget/widget-3pr-area.php:316
|
425 |
+
#: ../plugins/other_widget/widget-3pr-area.php:359
|
426 |
+
msgid "Read more"
|
427 |
+
msgstr "詳しくはこちら"
|
428 |
+
|
429 |
+
#: ../plugins/css_customize/css_customize-edit.php:2
|
430 |
+
#: ../plugins/css_customize/css_customize.php:35
|
431 |
+
#: ../plugins/css_customize/css_customize.php:36
|
432 |
+
msgid "CSS Customize"
|
433 |
+
msgstr "CSSカスタマイズ"
|
434 |
+
|
435 |
+
#: ../plugins/css_customize/css_customize-edit.php:5
|
436 |
+
msgid "You can add custom CSS here."
|
437 |
+
msgstr "デザインをカスタマイズする場合は下のテキストエリアにCSSを入力します"
|
438 |
+
|
439 |
+
#: ../plugins/css_customize/css_customize-edit.php:10
|
440 |
+
msgid "Save CSS"
|
441 |
+
msgstr "CSSを保存する"
|
442 |
+
|
443 |
+
#: ../plugins/css_customize/css_customize.php:94
|
444 |
+
msgid "Your custom CSS was saved."
|
445 |
+
msgstr "CSSが保存されました"
|
446 |
+
|
447 |
+
#: ../plugins/css_customize/css_customize.php:99
|
448 |
+
msgid "Error occured. Please try again."
|
449 |
+
msgstr "何らかのエラー!! また試してみてください"
|
450 |
+
|
451 |
+
#: ../plugins/google_analytics/ga_admin.php:9
|
452 |
+
#: ../plugins/google_analytics/ga_admin.php:13
|
453 |
+
#: ../plugins/google_analytics/google_analytics.php:18
|
454 |
+
msgid "Google Analytics Settings"
|
455 |
+
msgstr "Google Analytics設定"
|
456 |
+
|
457 |
+
#: ../plugins/google_analytics/ga_admin.php:14
|
458 |
+
msgid ""
|
459 |
+
"Please fill in the Google Analytics ID from the Analytics embed code used in "
|
460 |
+
"the site."
|
461 |
+
msgstr "このサイトで使用する Google アナリティクスの ID を入力して下さい。"
|
462 |
+
|
463 |
+
#: ../plugins/google_analytics/ga_admin.php:16 ../plugins/sns/sns_admin.php:31
|
464 |
+
#: ../plugins/sns/old/sns_admin.php:20 ../plugins/sns/old/sns_admin.php:61
|
465 |
+
#: ../plugins/sns/old/sns_admin.php:79 ../plugins/sns/old/sns_admin.php:98
|
466 |
+
#: ../plugins/sns/old/sns_admin.php:115
|
467 |
+
msgid "ex) "
|
468 |
+
msgstr "例: "
|
469 |
+
|
470 |
+
#: ../plugins/google_analytics/ga_admin.php:19
|
471 |
+
msgid ""
|
472 |
+
"Please select the type of Analytics code . (If you are unsure you can skip "
|
473 |
+
"this.)"
|
474 |
+
msgstr ""
|
475 |
+
"アナリティクスコードの種類を選択して下さい。( 不明な場合この設定は省略できま"
|
476 |
+
"す )"
|
477 |
+
|
478 |
+
#: ../plugins/google_analytics/ga_admin.php:23
|
479 |
+
msgid "To output the Universal Analytics code (default)"
|
480 |
+
msgstr "ユニバーサル アナリティクスのコードを出力します。( デフォルト )"
|
481 |
+
|
482 |
+
#: ../plugins/google_analytics/ga_admin.php:24
|
483 |
+
msgid "To output only normal code"
|
484 |
+
msgstr "ノーマルのコードのみを出力します。"
|
485 |
+
|
486 |
+
#: ../plugins/google_analytics/ga_admin.php:25
|
487 |
+
msgid "To output both types"
|
488 |
+
msgstr "両タイプのコードを出力します。"
|
489 |
+
|
490 |
+
#: ../plugins/meta_description/meta_description.php:7
|
491 |
+
#: ../plugins/meta_description/meta_description.php:19
|
492 |
+
msgid "Meta Description"
|
493 |
+
msgstr "メタディスクリプション"
|
494 |
+
|
495 |
+
#: ../plugins/meta_description/meta_description.php:25
|
496 |
+
msgid ""
|
497 |
+
"What you have to complete the \"excerpt\" column of the edit screen of each "
|
498 |
+
"page will be reflected in the description of the meta tag."
|
499 |
+
msgstr ""
|
500 |
+
"各ページの編集画面の「抜粋」欄に記入した内容がmetaタグのディスクリプションに"
|
501 |
+
"反映されます"
|
502 |
+
|
503 |
+
#: ../plugins/meta_description/meta_description.php:26
|
504 |
+
msgid ""
|
505 |
+
"Description of meta tags in the search results screen of search sites such "
|
506 |
+
"as Google, will be Displayed, such as the bottom of the site title. If the "
|
507 |
+
"excerpt column is blank, is 240 characters than text beginning of a sentence "
|
508 |
+
"has become a specification that is applied as a description."
|
509 |
+
msgstr ""
|
510 |
+
"トップページのメタディスクリプションにはサイトのキャッチフレーズが適用されま"
|
511 |
+
"す。しかし、トップページに設定した固定ページに抜粋が記入されている場合はその"
|
512 |
+
"内容が反映されます。"
|
513 |
+
|
514 |
+
#: ../plugins/meta_description/meta_description.php:27
|
515 |
+
msgid ""
|
516 |
+
"The meta description of the top page is subject to the catchphrase of the "
|
517 |
+
"site. However, its contents will be reflected if the excerpt is entered in "
|
518 |
+
"fixed page that was set on the top page."
|
519 |
+
msgstr ""
|
520 |
+
"トップページのメタディスクリプションにはサイトのキャッチフレーズが適用されま"
|
521 |
+
"す。しかし、トップページに設定した固定ページに抜粋が記入されている場合はその"
|
522 |
+
"内容が反映されます。"
|
523 |
+
|
524 |
+
#: ../plugins/meta_description/meta_description.php:28
|
525 |
+
msgid ""
|
526 |
+
"If \"excerpt\" column is not found, Click \"Display Option\" of page top at "
|
527 |
+
"each article edit page, and check the expert column display."
|
528 |
+
msgstr ""
|
529 |
+
"抜粋欄が表示されていない場合は、編集画面の右上に「表示」というタブがあります"
|
530 |
+
"ので、そこをクリックすると「抜粋」欄を表示するチェックボックスが出てきますの"
|
531 |
+
"で、チェックして下さい。"
|
532 |
+
|
533 |
+
#: ../plugins/meta_keyword/meta_keyword.php:28
|
534 |
+
#: ../plugins/meta_keyword/meta_keyword.php:74
|
535 |
+
#: ../plugins/meta_keyword/meta_keyword.php:75
|
536 |
+
#: ../plugins/meta_keyword/meta_keyword.php:82
|
537 |
+
msgid "Meta Keywords"
|
538 |
+
msgstr "メタキーワード"
|
539 |
+
|
540 |
+
#: ../plugins/meta_keyword/meta_keyword.php:54
|
541 |
+
msgid "Meta Keyword"
|
542 |
+
msgstr "メタキーワード"
|
543 |
+
|
544 |
+
#: ../plugins/meta_keyword/meta_keyword.php:57
|
545 |
+
msgid "Common Keywords"
|
546 |
+
msgstr "共通キーワード設定"
|
547 |
+
|
548 |
+
#: ../plugins/meta_keyword/meta_keyword.php:58
|
549 |
+
msgid ""
|
550 |
+
"Keywords for meta tag. This words will set Meta Keyword with post keywords. "
|
551 |
+
"if you want multiple keywords, enter with separator of \",\"."
|
552 |
+
msgstr ""
|
553 |
+
"メタタグに入力するキーワードを入力します。ここでは全てのページで使用する共通"
|
554 |
+
"のキーワードを設定します。複数ある場合は「,」で区切ってください。"
|
555 |
+
|
556 |
+
#: ../plugins/meta_keyword/meta_keyword.php:61
|
557 |
+
msgid "This is not seriously, Because the SearchEngine does not care this."
|
558 |
+
msgstr ""
|
559 |
+
"あまり深く考える必要はありません。現状のサーチエンジンではそこまで重要なファ"
|
560 |
+
"クターとはなりません。"
|
561 |
+
|
562 |
+
#: ../plugins/meta_keyword/meta_keyword.php:62
|
563 |
+
msgid ""
|
564 |
+
"For each page individual keyword is enter at the edit screen of each "
|
565 |
+
"article. 10 keywords maximum, together with a each article keywords is "
|
566 |
+
"desirable."
|
567 |
+
msgstr ""
|
568 |
+
"個々のページのキーワードはそれぞれの投稿ページのキーワード入力欄から追加して"
|
569 |
+
"ください。それらと合わせて10個程度のキーワード数であることが望ましいです。"
|
570 |
+
|
571 |
+
#: ../plugins/meta_keyword/meta_keyword.php:63
|
572 |
+
msgid "\",\" separator at end of the last keyword is do not need."
|
573 |
+
msgstr "最後のキーワードの後ろに「,」は必要ありません。"
|
574 |
+
|
575 |
+
#: ../plugins/meta_keyword/meta_keyword.php:64
|
576 |
+
msgid "Example: WordPress,template,theme,free,GPL"
|
577 |
+
msgstr "【例】 WordPress,テンプレート,テーマ,無料,GPL"
|
578 |
+
|
579 |
+
#: ../plugins/meta_keyword/meta_keyword.php:83
|
580 |
+
msgid ""
|
581 |
+
"To distinguish between individual keywords, please enter a , delimiter "
|
582 |
+
"(optional)."
|
583 |
+
msgstr "キーワードを複数入力する場合は , ( カンマ )で区切って下さい。"
|
584 |
+
|
585 |
+
#: ../plugins/meta_keyword/meta_keyword.php:85
|
586 |
+
#, php-format
|
587 |
+
msgid "* keywords common to the entire site can be set from %s."
|
588 |
+
msgstr "サイト全体のキーワードは %s より設定することができます。"
|
589 |
+
|
590 |
+
#: ../plugins/other_widget/widget-3pr-area.php:11
|
591 |
+
msgid "Displays a 3PR area"
|
592 |
+
msgstr "3PR エリアを表示します。"
|
593 |
+
|
594 |
+
#: ../plugins/other_widget/widget-3pr-area.php:13
|
595 |
+
#: ../plugins/other_widget/widget-3pr-area.php:245
|
596 |
+
#: ../plugins/other_widget/widget-3pr-area.php:287
|
597 |
+
#: ../plugins/other_widget/widget-3pr-area.php:330
|
598 |
+
msgid "3PR area"
|
599 |
+
msgstr "3PR エリア"
|
600 |
+
|
601 |
+
#: ../plugins/other_widget/widget-3pr-area.php:18
|
602 |
+
msgid "3PR area1 title"
|
603 |
+
msgstr "3PR エリア1 タイトル"
|
604 |
+
|
605 |
+
#: ../plugins/other_widget/widget-3pr-area.php:26
|
606 |
+
msgid "3PR area2 title"
|
607 |
+
msgstr "3PR エリア2 タイトル"
|
608 |
+
|
609 |
+
#: ../plugins/other_widget/widget-3pr-area.php:34
|
610 |
+
msgid "3PR area3 title"
|
611 |
+
msgstr "3PR エリア3 タイトル"
|
612 |
+
|
613 |
+
#: ../plugins/other_widget/widget-3pr-area.php:47
|
614 |
+
msgid "3PR area1 setting"
|
615 |
+
msgstr "3PR エリア1 設定"
|
616 |
+
|
617 |
+
#: ../plugins/other_widget/widget-3pr-area.php:49
|
618 |
+
#: ../plugins/other_widget/widget-3pr-area.php:102
|
619 |
+
#: ../plugins/other_widget/widget-3pr-area.php:154
|
620 |
+
#: ../plugins/other_widget/widget-new-posts.php:75
|
621 |
+
#: ../plugins/other_widget/widget-profile.php:35
|
622 |
+
#: ../plugins/sns/function_fbPagePlugin.php:75
|
623 |
+
msgid "Title:"
|
624 |
+
msgstr "タイトル"
|
625 |
+
|
626 |
+
#: ../plugins/other_widget/widget-3pr-area.php:55
|
627 |
+
#: ../plugins/other_widget/widget-3pr-area.php:108
|
628 |
+
#: ../plugins/other_widget/widget-3pr-area.php:160
|
629 |
+
msgid "Select image for PC:"
|
630 |
+
msgstr "PC 用に表示される画像を選択(横 300px 程度推奨)"
|
631 |
+
|
632 |
+
#: ../plugins/other_widget/widget-3pr-area.php:61
|
633 |
+
#: ../plugins/other_widget/widget-3pr-area.php:78
|
634 |
+
#: ../plugins/other_widget/widget-3pr-area.php:114
|
635 |
+
#: ../plugins/other_widget/widget-3pr-area.php:132
|
636 |
+
#: ../plugins/other_widget/widget-3pr-area.php:166
|
637 |
+
#: ../plugins/other_widget/widget-3pr-area.php:183
|
638 |
+
#: ../plugins/other_widget/widget-profile.php:46
|
639 |
+
msgid "Select image"
|
640 |
+
msgstr "画像を選択"
|
641 |
+
|
642 |
+
#: ../plugins/other_widget/widget-3pr-area.php:62
|
643 |
+
#: ../plugins/other_widget/widget-3pr-area.php:79
|
644 |
+
#: ../plugins/other_widget/widget-3pr-area.php:115
|
645 |
+
#: ../plugins/other_widget/widget-3pr-area.php:133
|
646 |
+
#: ../plugins/other_widget/widget-3pr-area.php:167
|
647 |
+
#: ../plugins/other_widget/widget-3pr-area.php:184
|
648 |
+
#: ../plugins/other_widget/widget-profile.php:47
|
649 |
+
msgid "Clear image"
|
650 |
+
msgstr "画像クリア"
|
651 |
+
|
652 |
+
#: ../plugins/other_widget/widget-3pr-area.php:72
|
653 |
+
#: ../plugins/other_widget/widget-3pr-area.php:126
|
654 |
+
#: ../plugins/other_widget/widget-3pr-area.php:177
|
655 |
+
msgid "Select image for Mobile:"
|
656 |
+
msgstr ""
|
657 |
+
"スマホ用(ウィンドウサイズが 992px 以下の場合)に表示される画像を選択(橫 "
|
658 |
+
"690px 以上推奨。空欄も可)"
|
659 |
+
|
660 |
+
#: ../plugins/other_widget/widget-3pr-area.php:88
|
661 |
+
#: ../plugins/other_widget/widget-3pr-area.php:142
|
662 |
+
#: ../plugins/other_widget/widget-3pr-area.php:194
|
663 |
+
msgid "Summary Text:"
|
664 |
+
msgstr "概要となるテキスト"
|
665 |
+
|
666 |
+
#: ../plugins/other_widget/widget-3pr-area.php:94
|
667 |
+
#: ../plugins/other_widget/widget-3pr-area.php:146
|
668 |
+
#: ../plugins/other_widget/widget-3pr-area.php:199
|
669 |
+
msgid "Link URL:"
|
670 |
+
msgstr "リンク先ページのURL"
|
671 |
+
|
672 |
+
#: ../plugins/other_widget/widget-3pr-area.php:100
|
673 |
+
msgid "3PR area2 setting"
|
674 |
+
msgstr "3PR エリア2 設定"
|
675 |
+
|
676 |
+
#: ../plugins/other_widget/widget-3pr-area.php:152
|
677 |
+
msgid "3PR area3 setting"
|
678 |
+
msgstr "3PR エリア3 設定"
|
679 |
+
|
680 |
+
#: ../plugins/other_widget/widget-archives.php:49
|
681 |
+
#: ../plugins/other_widget/widget-archives.php:50
|
682 |
+
#: ../plugins/other_widget/old/widget-archive-list.php:49
|
683 |
+
#: ../plugins/other_widget/old/widget-archive-list.php:50
|
684 |
+
msgid "Monthly archives"
|
685 |
+
msgstr "月別アーカイブ"
|
686 |
+
|
687 |
+
#: ../plugins/other_widget/widget-archives.php:59
|
688 |
+
#: ../plugins/other_widget/old/widget-archive-list.php:59
|
689 |
+
msgid "Title"
|
690 |
+
msgstr "タイトル"
|
691 |
+
|
692 |
+
#: ../plugins/other_widget/widget-archives.php:63
|
693 |
+
#: ../plugins/other_widget/old/widget-archive-list.php:63
|
694 |
+
msgid "Post type"
|
695 |
+
msgstr "ポストタイプ"
|
696 |
+
|
697 |
+
#: ../plugins/other_widget/widget-new-posts.php:11
|
698 |
+
msgid "Displays a list of your most recent posts"
|
699 |
+
msgstr "最新の投稿記事リストを表示します。"
|
700 |
+
|
701 |
+
#: ../plugins/other_widget/widget-new-posts.php:13
|
702 |
+
#: ../plugins/other_widget/widget-new-posts.php:23
|
703 |
+
#: ../plugins/other_widget/widget-new-posts.php:66
|
704 |
+
msgid "Recent Posts"
|
705 |
+
msgstr "最新記事"
|
706 |
+
|
707 |
+
#: ../plugins/other_widget/widget-new-posts.php:80
|
708 |
+
msgid "Display count"
|
709 |
+
msgstr "表示する記事数"
|
710 |
+
|
711 |
+
#: ../plugins/other_widget/widget-new-posts.php:85
|
712 |
+
msgid "Slug for the custom type you want to display"
|
713 |
+
msgstr "表示したい記事タイプ"
|
714 |
+
|
715 |
+
#: ../plugins/other_widget/widget-page.php:11
|
716 |
+
msgid "Displays a page contents to widget."
|
717 |
+
msgstr "選択したページの内容を表示します。"
|
718 |
+
|
719 |
+
#: ../plugins/other_widget/widget-page.php:13
|
720 |
+
msgid "page content to widget"
|
721 |
+
msgstr "固定ページ本文"
|
722 |
+
|
723 |
+
#: ../plugins/other_widget/widget-page.php:30
|
724 |
+
#: ../plugins/other_widget/widget-taxonomies.php:60
|
725 |
+
#: ../plugins/other_widget/old/widget-page-content.php:30
|
726 |
+
#: ../plugins/other_widget/old/widget-taxonomy-list.php:61
|
727 |
+
msgid "Display page"
|
728 |
+
msgstr "ページを表示"
|
729 |
+
|
730 |
+
#: ../plugins/other_widget/widget-page.php:38
|
731 |
+
#: ../plugins/other_widget/old/widget-page-content.php:38
|
732 |
+
msgid "display title"
|
733 |
+
msgstr "タイトルを表示"
|
734 |
+
|
735 |
+
#: ../plugins/other_widget/widget-page.php:64
|
736 |
+
#: ../plugins/other_widget/old/widget-page-content.php:61
|
737 |
+
msgid "Edit"
|
738 |
+
msgstr "編集"
|
739 |
+
|
740 |
+
#: ../plugins/other_widget/widget-profile.php:11
|
741 |
+
msgid "Displays a your profile"
|
742 |
+
msgstr ""
|
743 |
+
"ブログのサイドバーに運営者情報を表示したり、フッターに企業情報を表示します。"
|
744 |
+
|
745 |
+
#: ../plugins/other_widget/widget-profile.php:13
|
746 |
+
#: ../plugins/other_widget/widget-profile.php:19
|
747 |
+
msgid "Profile"
|
748 |
+
msgstr "プロフィール"
|
749 |
+
|
750 |
+
#: ../plugins/other_widget/widget-profile.php:22
|
751 |
+
msgid "Profile Text"
|
752 |
+
msgstr "プロフィールテキスト"
|
753 |
+
|
754 |
+
#: ../plugins/other_widget/widget-profile.php:40
|
755 |
+
msgid "Select Profile image:"
|
756 |
+
msgstr "プロフィール用画像を選択"
|
757 |
+
|
758 |
+
#: ../plugins/other_widget/widget-profile.php:57
|
759 |
+
msgid "Profile Text:"
|
760 |
+
msgstr "プロフィールテキスト"
|
761 |
+
|
762 |
+
#: ../plugins/other_widget/widget-profile.php:62
|
763 |
+
msgid "Facebook URL:"
|
764 |
+
msgstr "Facebook リンク先ページのURL"
|
765 |
+
|
766 |
+
#: ../plugins/other_widget/widget-profile.php:67
|
767 |
+
msgid "Twitter URL:"
|
768 |
+
msgstr "twitterリンク先ページのURL"
|
769 |
+
|
770 |
+
#: ../plugins/other_widget/widget-profile.php:72
|
771 |
+
msgid "Email Address:"
|
772 |
+
msgstr "Email リンク先ページのURL"
|
773 |
+
|
774 |
+
#: ../plugins/other_widget/widget-profile.php:77
|
775 |
+
msgid "Youtube URL:"
|
776 |
+
msgstr "Youtube リンク先ページのURL"
|
777 |
+
|
778 |
+
#: ../plugins/other_widget/widget-profile.php:82
|
779 |
+
msgid "RSS URL:"
|
780 |
+
msgstr "RSS リンク先ページのURL"
|
781 |
+
|
782 |
+
#: ../plugins/other_widget/widget-profile.php:87
|
783 |
+
msgid "instagram URL:"
|
784 |
+
msgstr "instagram リンク先ページのURL"
|
785 |
+
|
786 |
+
#: ../plugins/other_widget/widget-profile.php:91
|
787 |
+
msgid "linkedin URL:"
|
788 |
+
msgstr "linkedin リンク先ページのURL"
|
789 |
+
|
790 |
+
#: ../plugins/other_widget/widget-profile.php:121
|
791 |
+
msgid "Site's Profile"
|
792 |
+
msgstr "プロフィール"
|
793 |
+
|
794 |
+
#: ../plugins/other_widget/widget-taxonomies.php:12
|
795 |
+
msgid "Displays a categories and custom taxonomies list."
|
796 |
+
msgstr "カテゴリーやカスタム分類のリストを表示します。"
|
797 |
+
|
798 |
+
#: ../plugins/other_widget/widget-taxonomies.php:14
|
799 |
+
msgid "Categories/Custom taxonomies list"
|
800 |
+
msgstr "カテゴリー/カスタム分類リスト"
|
801 |
+
|
802 |
+
#: ../plugins/other_widget/widget-taxonomies.php:47
|
803 |
+
#: ../plugins/other_widget/widget-taxonomies.php:48
|
804 |
+
#: ../plugins/other_widget/old/widget-taxonomy-list.php:48
|
805 |
+
#: ../plugins/other_widget/old/widget-taxonomy-list.php:49
|
806 |
+
msgid "Category"
|
807 |
+
msgstr "カテゴリー"
|
808 |
+
|
809 |
+
#: ../plugins/other_widget/widget-taxonomies.php:56
|
810 |
+
#: ../plugins/other_widget/old/widget-taxonomy-list.php:57
|
811 |
+
msgid "Label to display"
|
812 |
+
msgstr "表示するラベル"
|
813 |
+
|
814 |
+
#: ../plugins/other_widget/widget-taxonomies.php:76
|
815 |
+
#: ../plugins/other_widget/old/widget-taxonomy-list.php:76
|
816 |
+
msgid "Blog"
|
817 |
+
msgstr "ブログ"
|
818 |
+
|
819 |
+
#: ../plugins/other_widget/old/widget-child-page-list.php:9
|
820 |
+
msgid "Displays list of child page for the current page."
|
821 |
+
msgstr "現在のページの子ページのリストを表示します。"
|
822 |
+
|
823 |
+
#: ../plugins/other_widget/old/widget-child-page-list.php:11
|
824 |
+
msgid "child pages list"
|
825 |
+
msgstr "子ページのリスト"
|
826 |
+
|
827 |
+
#: ../plugins/other_widget/old/widget-page-content.php:10
|
828 |
+
msgid "Displays the content of a chosen page."
|
829 |
+
msgstr "選択したページの内容を表示します。"
|
830 |
+
|
831 |
+
#: ../plugins/other_widget/old/widget-page-content.php:12
|
832 |
+
msgid "page content for top"
|
833 |
+
msgstr "固定ページ本文"
|
834 |
+
|
835 |
+
#: ../plugins/other_widget/old/widget-rss-widget.php:9
|
836 |
+
msgid "Displays entries list from a RSS feed link."
|
837 |
+
msgstr "RSSフィードリンクからエントリーリストを表示します。"
|
838 |
+
|
839 |
+
#: ../plugins/other_widget/old/widget-rss-widget.php:11
|
840 |
+
msgid "RSS entries for top"
|
841 |
+
msgstr "トップのRSSエントリー"
|
842 |
+
|
843 |
+
#: ../plugins/other_widget/old/widget-rss-widget.php:25
|
844 |
+
msgid "Blog entries"
|
845 |
+
msgstr "ブログエントリー"
|
846 |
+
|
847 |
+
#: ../plugins/other_widget/old/widget-rss-widget.php:30
|
848 |
+
msgid "Heading title"
|
849 |
+
msgstr "見出しタイトル"
|
850 |
+
|
851 |
+
#: ../plugins/sitemap_page/sitemap_admin.php:9
|
852 |
+
msgid "HTML Sitemap Settings"
|
853 |
+
msgstr "HTMLサイトマップ設定"
|
854 |
+
|
855 |
+
#: ../plugins/sitemap_page/sitemap_admin.php:13
|
856 |
+
msgid "Exclude page Settings"
|
857 |
+
msgstr "除外ページ設定"
|
858 |
+
|
859 |
+
#: ../plugins/sitemap_page/sitemap_admin.php:15
|
860 |
+
msgid "Input you want to exclude page id."
|
861 |
+
msgstr "HTMLサイトマップから除外したい固定ページのIDを入力してください。"
|
862 |
+
|
863 |
+
#: ../plugins/sitemap_page/sitemap_admin.php:17
|
864 |
+
msgid ""
|
865 |
+
"* Please enter separated by \",\"(commas) if there is more than one page ID "
|
866 |
+
"that you want to exclude."
|
867 |
+
msgstr "複数のページを除外する場合は , (コンマ)で区切って入力してください。"
|
868 |
+
|
869 |
+
#: ../plugins/sitemap_page/sitemap_page.php:17
|
870 |
+
msgid "HTML Sitemap"
|
871 |
+
msgstr "HTMLサイトマップ"
|
872 |
+
|
873 |
+
#: ../plugins/sns/function_fbPagePlugin.php:10
|
874 |
+
msgid "Displays a Facebook Page Plugin"
|
875 |
+
msgstr "Facebook ページプラグインを表示します。"
|
876 |
+
|
877 |
+
#: ../plugins/sns/function_fbPagePlugin.php:85
|
878 |
+
msgid "Height"
|
879 |
+
msgstr "高さ"
|
880 |
+
|
881 |
+
#: ../plugins/sns/function_fbPagePlugin.php:90
|
882 |
+
msgid "Show Friend's Faces"
|
883 |
+
msgstr "アイコンを表示する"
|
884 |
+
|
885 |
+
#: ../plugins/sns/function_fbPagePlugin.php:95
|
886 |
+
msgid "Hide Cover Photo"
|
887 |
+
msgstr "カバー画像を表示しない"
|
888 |
+
|
889 |
+
#: ../plugins/sns/function_fbPagePlugin.php:100
|
890 |
+
msgid "Show Page Posts"
|
891 |
+
msgstr "タイムラインを表示"
|
892 |
+
|
893 |
+
#: ../plugins/sns/function_follow.php:11
|
894 |
+
msgid "Follow me"
|
895 |
+
msgstr "このサイトをフォローする"
|
896 |
+
|
897 |
+
#: ../plugins/sns/sns.php:17
|
898 |
+
msgid "SNS"
|
899 |
+
msgstr "SNS"
|
900 |
+
|
901 |
+
#: ../plugins/sns/sns_admin.php:1
|
902 |
+
msgid "SNS Settings"
|
903 |
+
msgstr "SNS設定"
|
904 |
+
|
905 |
+
#: ../plugins/sns/sns_admin.php:13 ../plugins/sns/old/sns_admin.php:26
|
906 |
+
msgid "facebook application ID"
|
907 |
+
msgstr "facebookアプリケーションID"
|
908 |
+
|
909 |
+
#: ../plugins/sns/sns_admin.php:15 ../plugins/sns/old/sns_admin.php:28
|
910 |
+
msgid "I will check and get the application ID"
|
911 |
+
msgstr "アプリケーションIDを確認・取得する "
|
912 |
+
|
913 |
+
#: ../plugins/sns/sns_admin.php:16 ../plugins/sns/old/sns_admin.php:29
|
914 |
+
msgid ""
|
915 |
+
"* If an application ID is not specified, neither a Like button nor the "
|
916 |
+
"comment field displays and operates correctly."
|
917 |
+
msgstr ""
|
918 |
+
"※アプリケーションIDを入力しないとボタンやコメント欄が表示・正しく動作しませ"
|
919 |
+
"ん。"
|
920 |
+
|
921 |
+
#: ../plugins/sns/sns_admin.php:17 ../plugins/sns/old/sns_admin.php:30
|
922 |
+
msgid ""
|
923 |
+
"Please search for terms as [get Facebook application ID] If you do not know "
|
924 |
+
"much about how to get application ID for Facebook."
|
925 |
+
msgstr ""
|
926 |
+
"facebookのアプリケーションIDの取得方法についてよくわからない場合は「facebook "
|
927 |
+
"アプリケーションID 取得」などで検索して下さい。"
|
928 |
+
|
929 |
+
#: ../plugins/sns/sns_admin.php:21
|
930 |
+
msgid "facebook page URL"
|
931 |
+
msgstr "FacebookページURL"
|
932 |
+
|
933 |
+
#: ../plugins/sns/sns_admin.php:26
|
934 |
+
msgid "OG default image"
|
935 |
+
msgstr "デフォルトのOGPイメージ"
|
936 |
+
|
937 |
+
#: ../plugins/sns/sns_admin.php:27 ../plugins/sns/old/sns_admin.php:57
|
938 |
+
msgid ""
|
939 |
+
"If, for example someone pressed the Facebook [Like] button, this is the "
|
940 |
+
"image that appears on the Facebook timeline."
|
941 |
+
msgstr ""
|
942 |
+
"Facebookの「いいね!」ボタンを押した際、ここで設定した画像が Facebook のタイ"
|
943 |
+
"ムラインに表示されます。"
|
944 |
+
|
945 |
+
#: ../plugins/sns/sns_admin.php:28 ../plugins/sns/old/sns_admin.php:58
|
946 |
+
msgid "If a featured image is specified for the page, it takes precedence."
|
947 |
+
msgstr ""
|
948 |
+
"ページにアイキャッチ画像が指定されている場合は、アイキャッチ画像が優先されま"
|
949 |
+
"す。"
|
950 |
+
|
951 |
+
#: ../plugins/sns/sns_admin.php:30 ../plugins/sns/old/sns_admin.php:60
|
952 |
+
msgid "Select an image"
|
953 |
+
msgstr "画像を選択"
|
954 |
+
|
955 |
+
#: ../plugins/sns/sns_admin.php:32 ../plugins/sns/old/sns_admin.php:62
|
956 |
+
msgid ""
|
957 |
+
"* Picture sizes are 300x300 pixels or more and picture ratio 16:9 is "
|
958 |
+
"recommended."
|
959 |
+
msgstr "画像サイズ 橫 300px 縦 300px 以上、画像比率 16:9 を推奨します。"
|
960 |
+
|
961 |
+
#: ../plugins/sns/sns_admin.php:36
|
962 |
+
msgid "twitter ID"
|
963 |
+
msgstr "twitterアカウント"
|
964 |
+
|
965 |
+
#: ../plugins/sns/sns_admin.php:41
|
966 |
+
msgid "OG tags"
|
967 |
+
msgstr "OGタグ"
|
968 |
+
|
969 |
+
#: ../plugins/sns/sns_admin.php:43
|
970 |
+
msgid "Print the OG tags"
|
971 |
+
msgstr "OGタグを出力する"
|
972 |
+
|
973 |
+
#: ../plugins/sns/sns_admin.php:44
|
974 |
+
msgid ""
|
975 |
+
"If other plug-ins are used for the OG, do not output the OG using this "
|
976 |
+
"plugin."
|
977 |
+
msgstr ""
|
978 |
+
"OGタグの出力を選択して下さい。もし他のプラグインやテーマでOGタグを出力してい"
|
979 |
+
"る場合は、このプラグインでの出力は必要ありません。"
|
980 |
+
|
981 |
+
#: ../plugins/sns/sns_admin.php:49
|
982 |
+
msgid "Twitter Card tags"
|
983 |
+
msgstr "Twitterカードタグ"
|
984 |
+
|
985 |
+
#: ../plugins/sns/sns_admin.php:51
|
986 |
+
msgid "Print the Twitter Card tags"
|
987 |
+
msgstr "Twitter カードタグを html head 内へ出力します。"
|
988 |
+
|
989 |
+
#: ../plugins/sns/sns_admin.php:56
|
990 |
+
msgid "Social bookmark buttons"
|
991 |
+
msgstr "ソーシャルボタン"
|
992 |
+
|
993 |
+
#: ../plugins/sns/sns_admin.php:57
|
994 |
+
msgid "Print the social bookmark buttons"
|
995 |
+
msgstr "ソーシャルブックマーク(シェアボタンやtweetボタン)を表示します。"
|
996 |
+
|
997 |
+
#: ../plugins/sns/sns_admin.php:61
|
998 |
+
msgid "Follow me box"
|
999 |
+
msgstr "Follow me box"
|
1000 |
+
|
1001 |
+
#: ../plugins/sns/sns_admin.php:62
|
1002 |
+
msgid "Print the Follow me box"
|
1003 |
+
msgstr "Follow me ユニットを本文の下に表示する"
|
1004 |
+
|
1005 |
+
#: ../plugins/sns/old/sns.php:378
|
1006 |
+
msgid "* It is necessary to set the Theme options page."
|
1007 |
+
msgstr "* テーマオプションページで設定する必要があります。"
|
1008 |
+
|
1009 |
+
#: ../plugins/sns/old/sns_admin.php:12
|
1010 |
+
msgid "Social media"
|
1011 |
+
msgstr "ソーシャルメディア"
|
1012 |
+
|
1013 |
+
#: ../plugins/sns/old/sns_admin.php:13
|
1014 |
+
msgid "If you are unsure, you can leave for later."
|
1015 |
+
msgstr "不明な場合は後で設定することができます。"
|
1016 |
+
|
1017 |
+
#: ../plugins/sns/old/sns_admin.php:18
|
1018 |
+
msgid ""
|
1019 |
+
"If you wish to link to a personal account or a Facebook page banner will be "
|
1020 |
+
"displayed if you enter the URL."
|
1021 |
+
msgstr ""
|
1022 |
+
"個人アカウントやFacebookページのバナーにリンクしたい場合は URL を入力して下さ"
|
1023 |
+
"い。"
|
1024 |
+
|
1025 |
+
#: ../plugins/sns/old/sns_admin.php:35
|
1026 |
+
msgid "Facebook user ID (optional)"
|
1027 |
+
msgstr "Facebook ユーザーID( オプション )"
|
1028 |
+
|
1029 |
+
#: ../plugins/sns/old/sns_admin.php:36
|
1030 |
+
msgid "Please enter the Facebook user ID of the administrator."
|
1031 |
+
msgstr "管理者のFacebookユーザーIDを入力してください。"
|
1032 |
+
|
1033 |
+
#: ../plugins/sns/old/sns_admin.php:38
|
1034 |
+
msgid "* It is not the application ID of the Facebook page."
|
1035 |
+
msgstr "* FacebookページのアプリケーションIDではありません。"
|
1036 |
+
|
1037 |
+
#: ../plugins/sns/old/sns_admin.php:39
|
1038 |
+
msgid ""
|
1039 |
+
"You can see the personal Facebook ID when you access the following url "
|
1040 |
+
"http://graph.facebook.com/(own url name(example: hidekazu.ishikawa))."
|
1041 |
+
msgstr ""
|
1042 |
+
"このアドレス [ http://graph.facebook.com/( 自分の名前のURL (例 : hidekazu."
|
1043 |
+
"ishikawa) ) ] にアクセスして個人の Facebook ID を確認できます。"
|
1044 |
+
|
1045 |
+
#: ../plugins/sns/old/sns_admin.php:40
|
1046 |
+
msgid ""
|
1047 |
+
"Please search for terms as [find facebook user ID] if you are still not sure."
|
1048 |
+
msgstr ""
|
1049 |
+
"まだ不明な場合は、[ FacebookのユーザーIDを検索 ] などのキーワードで検索して下"
|
1050 |
+
"さい。"
|
1051 |
+
|
1052 |
+
#: ../plugins/sns/old/sns_admin.php:45
|
1053 |
+
msgid "twitter account"
|
1054 |
+
msgstr "Twitter アカウント"
|
1055 |
+
|
1056 |
+
#: ../plugins/sns/old/sns_admin.php:46
|
1057 |
+
msgid ""
|
1058 |
+
"If you would like to link to a Twitter account, banner will be displayed if "
|
1059 |
+
"you enter the account name."
|
1060 |
+
msgstr ""
|
1061 |
+
"Twitterアカウントをバナーにリンクしたい場合は、アカウント名を入力して下さい。"
|
1062 |
+
|
1063 |
+
#: ../plugins/sns/old/sns_admin.php:48
|
1064 |
+
msgid "widget"
|
1065 |
+
msgstr "ウィジェット"
|
1066 |
+
|
1067 |
+
#: ../plugins/sns/old/sns_admin.php:49
|
1068 |
+
#, php-format
|
1069 |
+
msgid ""
|
1070 |
+
"* If you prefer to use Twitter widgets etc, this can be left blank, paste "
|
1071 |
+
"the source code into a [text] %s here."
|
1072 |
+
msgstr ""
|
1073 |
+
"Twitter のウィジェットなどを使用する時、ここを空にできます。%s にソースコード"
|
1074 |
+
"を貼り付けます。"
|
1075 |
+
|
1076 |
+
#: ../plugins/sns/old/sns_admin.php:56
|
1077 |
+
msgid "OGP default image"
|
1078 |
+
msgstr "OGP デフォルト画像"
|
1079 |
+
|
1080 |
+
#: ../plugins/sns/old/sns_admin.php:67
|
1081 |
+
msgid "Social buttons"
|
1082 |
+
msgstr "ソーシャルボタン"
|
1083 |
+
|
1084 |
+
#: ../plugins/sns/old/sns_admin.php:68
|
1085 |
+
msgid "Please check the type of page that displays the social button."
|
1086 |
+
msgstr "ページに表示するソーシャルボタンの種類を選択して下さい。"
|
1087 |
+
|
1088 |
+
#: ../plugins/sns/old/sns_admin.php:77 ../plugins/sns/old/sns_admin.php:96
|
1089 |
+
msgid ""
|
1090 |
+
"Within the type of page that is checked, if there is a particular page you "
|
1091 |
+
"do not wish to display, enter the Page ID. If multiple pages, please "
|
1092 |
+
"separate by commas."
|
1093 |
+
msgstr ""
|
1094 |
+
"表示したくない特定のページが有る場合にページ ID を入力して下さい。複数のペー"
|
1095 |
+
"ジがある場合は、カンマで区切って入力して下さい。"
|
1096 |
+
|
1097 |
+
#: ../plugins/sns/old/sns_admin.php:84
|
1098 |
+
msgid "facebook comments box"
|
1099 |
+
msgstr "Facebookのコメントボックス"
|
1100 |
+
|
1101 |
+
#: ../plugins/sns/old/sns_admin.php:85
|
1102 |
+
msgid "Please check the type of the page to display Facebook comments."
|
1103 |
+
msgstr "Facebook のコメントを表示するページタイプを確認して下さい。"
|
1104 |
+
|
1105 |
+
#: ../plugins/sns/old/sns_admin.php:104
|
1106 |
+
msgid "If you wish to use Facebook LikeBox, please check the location."
|
1107 |
+
msgstr "Facebook のいいねボックスを使用する場合は、場所を確認して下さい。"
|
1108 |
+
|
1109 |
+
#: ../plugins/sns/old/sns_admin.php:105
|
1110 |
+
msgid "* Please be sure to set Facebook application ID."
|
1111 |
+
msgstr "Facebook のアプリケーションIDを設定してください。"
|
1112 |
+
|
1113 |
+
#: ../plugins/sns/old/sns_admin.php:113
|
1114 |
+
msgid "URL of the Facebook page."
|
1115 |
+
msgstr "Facebook ページの URL"
|
1116 |
+
|
1117 |
+
#: ../plugins/sns/old/sns_admin.php:116
|
1118 |
+
msgid "Display stream"
|
1119 |
+
msgstr "タイムラインを表示する"
|
1120 |
+
|
1121 |
+
#: ../plugins/sns/old/sns_admin.php:117 ../plugins/sns/old/sns_admin.php:119
|
1122 |
+
msgid "Display"
|
1123 |
+
msgstr "表示"
|
1124 |
+
|
1125 |
+
#: ../plugins/sns/old/sns_admin.php:118
|
1126 |
+
msgid "Display faces"
|
1127 |
+
msgstr "アイコンを表示する"
|
1128 |
+
|
1129 |
+
#: ../plugins/sns/old/sns_admin.php:120
|
1130 |
+
msgid "Height of LikeBox"
|
1131 |
+
msgstr "いいねボックスの高さ"
|
1132 |
+
|
1133 |
+
#: ../plugins/sns/old/sns_admin.php:128
|
1134 |
+
msgid "Do not output the OGP"
|
1135 |
+
msgstr "OGP を出力しません"
|
1136 |
+
|
1137 |
+
#: ../plugins/sns/old/sns_admin.php:130
|
1138 |
+
msgid ""
|
1139 |
+
"If other plug-ins are used for the OGP, do not output the OGP using "
|
1140 |
+
"BizVektor."
|
1141 |
+
msgstr ""
|
1142 |
+
"他の OGP プラグインを使用している場合は、BizVektor を使用して出力しません。"
|
1143 |
+
|
1144 |
+
#: ../plugins/sns/old/sns_admin.php:133
|
1145 |
+
msgid "I want to output the OGP tags using BizVektor"
|
1146 |
+
msgstr "BizVektor を使用して OGP タグを出力したい。"
|
1147 |
+
|
1148 |
+
#: ../plugins/sns/old/sns_admin.php:134
|
1149 |
+
msgid "Do not output OGP tags using BizVektor"
|
1150 |
+
msgstr "BizVektor を使用して OGP タグを出力しない。"
|
1151 |
+
|
1152 |
+
#: ../plugins/sns/old/sns_admin.php:149
|
1153 |
+
msgid "Page top"
|
1154 |
+
msgstr "ページ先頭へ"
|
1155 |
+
|
1156 |
+
#~ msgid "Display a child page index"
|
1157 |
+
#~ msgstr "子ページ一覧の表示"
|
1158 |
+
|
1159 |
+
#~ msgid "Other Widgets"
|
1160 |
+
#~ msgstr "Other ウィジェット"
|
1161 |
+
|
1162 |
+
#~ msgid "Do not output the OG"
|
1163 |
+
#~ msgstr "OGタグ出力設定"
|
1164 |
+
|
1165 |
+
#~ msgid "Output OG tags(default)"
|
1166 |
+
#~ msgstr "OGタグを出力する"
|
1167 |
+
|
1168 |
+
#~ msgctxt "Archive description"
|
1169 |
+
#~ msgid "Article of %s."
|
1170 |
+
#~ msgstr "%s の記事"
|
1171 |
+
|
1172 |
+
#~ msgctxt "sns display"
|
1173 |
+
#~ msgid "Home page"
|
1174 |
+
#~ msgstr "ホームページ"
|
1175 |
+
|
1176 |
+
#~ msgctxt "sns display"
|
1177 |
+
#~ msgid "Page"
|
1178 |
+
#~ msgstr "ページ"
|
1179 |
+
|
1180 |
+
#~ msgctxt "sns display"
|
1181 |
+
#~ msgid "Post"
|
1182 |
+
#~ msgstr "投稿"
|
1183 |
+
|
1184 |
+
#~ msgctxt "sns display"
|
1185 |
+
#~ msgid "Side bar"
|
1186 |
+
#~ msgstr "サイドバー"
|
1187 |
+
|
1188 |
+
#~ msgid "WebClip Setting"
|
1189 |
+
#~ msgstr "ウェブクリップ設定"
|
1190 |
+
|
1191 |
+
#~ msgid "Choose image"
|
1192 |
+
#~ msgstr "画像を選択"
|
1193 |
+
|
1194 |
+
#~ msgid ""
|
1195 |
+
#~ "Description of meta tags in the search results screen of search sites "
|
1196 |
+
#~ "such as Google, will be Displayed, such as the bottom of the site title.\n"
|
1197 |
+
#~ "If the excerpt column is blank, is 240 characters than text beginning of "
|
1198 |
+
#~ "a sentence has become a specification that is applied as a description."
|
1199 |
+
#~ msgstr ""
|
1200 |
+
#~ "メタタグのディスクリプションはGoogleなどの検索サイトの検索結果画面で、サイ"
|
1201 |
+
#~ "トタイトルの下などに表示されます。"
|
1202 |
+
|
1203 |
+
#~ msgid "Displays a your site's profile"
|
1204 |
+
#~ msgstr "サイトのプロフィールを表示します"
|
1205 |
+
|
1206 |
+
#~ msgid "Site's Profile Text"
|
1207 |
+
#~ msgstr "Site's Profile Text"
|
1208 |
+
|
1209 |
+
#~ msgid "3PR area Title-1"
|
1210 |
+
#~ msgstr "3PR エリア1 タイトル"
|
1211 |
+
|
1212 |
+
#~ msgid "3PR area Title-2"
|
1213 |
+
#~ msgstr "3PR エリア2 タイトル"
|
1214 |
+
|
1215 |
+
#~ msgid "3PR area Title-3"
|
1216 |
+
#~ msgstr "3PR エリア3 タイトル"
|
1217 |
+
|
1218 |
+
#~ msgid "3PR Box1 Setting"
|
1219 |
+
#~ msgstr "3PR ボックス1 設定"
|
1220 |
+
|
1221 |
+
#~ msgid "3PR Box2 Setting"
|
1222 |
+
#~ msgstr "3PR ボックス2 設定"
|
1223 |
+
|
1224 |
+
#~ msgid "3PR Box3 Setting"
|
1225 |
+
#~ msgstr "3PR ボックス3 設定"
|
1226 |
+
|
1227 |
+
#~ msgid "VK Ex Unit"
|
1228 |
+
#~ msgstr "VK Ex Unit"
|
languages/vkexunit.mo
ADDED
Binary file
|
languages/vkexunit.pot
ADDED
@@ -0,0 +1,1036 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
#, fuzzy
|
2 |
+
msgid ""
|
3 |
+
msgstr ""
|
4 |
+
"Project-Id-Version: \n"
|
5 |
+
"POT-Creation-Date: 2015-07-13 18:38+0900\n"
|
6 |
+
"PO-Revision-Date: \n"
|
7 |
+
"Last-Translator: Kurudrive <kurudrive@gmail.com>\n"
|
8 |
+
"Language-Team: Vektor,Inc. <info@vektor-inc.co.jp>\n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.8.2\n"
|
13 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
14 |
+
"X-Poedit-KeywordsList: __;_e;_x\n"
|
15 |
+
"X-Poedit-Basepath: ..\n"
|
16 |
+
"X-Poedit-SearchPath-0: .\n"
|
17 |
+
|
18 |
+
#: admin_wrapper.php:7 admin_wrapper.php:8
|
19 |
+
#: plugins/meta_keyword/meta_keyword.php:84
|
20 |
+
msgid "Main setting"
|
21 |
+
msgstr ""
|
22 |
+
|
23 |
+
#: common_helpers.php:126
|
24 |
+
#, php-format
|
25 |
+
msgid "Search Results for : %s"
|
26 |
+
msgstr ""
|
27 |
+
|
28 |
+
#: common_helpers.php:129
|
29 |
+
msgid "Not found"
|
30 |
+
msgstr ""
|
31 |
+
|
32 |
+
#: common_helpers.php:138 common_helpers.php:202
|
33 |
+
#, php-format
|
34 |
+
msgid "Page of %s"
|
35 |
+
msgstr ""
|
36 |
+
|
37 |
+
#: common_helpers.php:162 common_helpers.php:170
|
38 |
+
#, php-format
|
39 |
+
msgid "About %s"
|
40 |
+
msgstr ""
|
41 |
+
|
42 |
+
#: common_helpers.php:174 common_helpers.php:223
|
43 |
+
msgid "Y"
|
44 |
+
msgstr ""
|
45 |
+
|
46 |
+
#: common_helpers.php:175 common_helpers.php:179 common_helpers.php:183
|
47 |
+
#: common_helpers.php:187
|
48 |
+
#, php-format
|
49 |
+
msgid "Article of %s."
|
50 |
+
msgstr ""
|
51 |
+
|
52 |
+
#: common_helpers.php:178 common_helpers.php:225
|
53 |
+
msgid "F Y"
|
54 |
+
msgstr ""
|
55 |
+
|
56 |
+
#: common_helpers.php:221
|
57 |
+
#, php-format
|
58 |
+
msgid "Author: %s"
|
59 |
+
msgstr ""
|
60 |
+
|
61 |
+
#: common_helpers.php:227
|
62 |
+
msgid "F j, Y"
|
63 |
+
msgstr ""
|
64 |
+
|
65 |
+
#: common_helpers.php:230
|
66 |
+
msgid "Asides"
|
67 |
+
msgstr ""
|
68 |
+
|
69 |
+
#: common_helpers.php:232
|
70 |
+
msgid "Galleries"
|
71 |
+
msgstr ""
|
72 |
+
|
73 |
+
#: common_helpers.php:234
|
74 |
+
msgid "Images"
|
75 |
+
msgstr ""
|
76 |
+
|
77 |
+
#: common_helpers.php:236
|
78 |
+
msgid "Videos"
|
79 |
+
msgstr ""
|
80 |
+
|
81 |
+
#: common_helpers.php:238
|
82 |
+
msgid "Quotes"
|
83 |
+
msgstr ""
|
84 |
+
|
85 |
+
#: common_helpers.php:240
|
86 |
+
msgid "Links"
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
+
#: common_helpers.php:242
|
90 |
+
msgid "Statuses"
|
91 |
+
msgstr ""
|
92 |
+
|
93 |
+
#: common_helpers.php:244
|
94 |
+
msgid "Audio"
|
95 |
+
msgstr ""
|
96 |
+
|
97 |
+
#: common_helpers.php:246
|
98 |
+
msgid "Chats"
|
99 |
+
msgstr ""
|
100 |
+
|
101 |
+
#: common_helpers.php:262 plugins/other_widget/old/widget-taxonomy-list.php:81
|
102 |
+
#: plugins/other_widget/widget-taxonomies.php:81
|
103 |
+
msgid "Archives"
|
104 |
+
msgstr ""
|
105 |
+
|
106 |
+
#: plugins/auto_eyecatch.php:32
|
107 |
+
msgid "Automatic EyeCatch"
|
108 |
+
msgstr ""
|
109 |
+
|
110 |
+
#: plugins/auto_eyecatch.php:42
|
111 |
+
msgid "Do not set eyecatch image automatic."
|
112 |
+
msgstr ""
|
113 |
+
|
114 |
+
#: plugins/child_page_index/child_page_index.php:12
|
115 |
+
msgid "Display a child page index"
|
116 |
+
msgstr ""
|
117 |
+
|
118 |
+
#: plugins/child_page_index/child_page_index.php:20
|
119 |
+
msgid "Choose display a child page index"
|
120 |
+
msgstr ""
|
121 |
+
|
122 |
+
#: plugins/child_page_index/child_page_index.php:25
|
123 |
+
msgid "if checked you will display a child page index "
|
124 |
+
msgstr ""
|
125 |
+
|
126 |
+
#: plugins/child_page_index/child_page_index.php:74
|
127 |
+
#: plugins/child_page_index/child_page_index.php:89
|
128 |
+
#: plugins/other_widget/widget-3pr-area.php:274
|
129 |
+
#: plugins/other_widget/widget-3pr-area.php:316
|
130 |
+
#: plugins/other_widget/widget-3pr-area.php:359
|
131 |
+
msgid "Read more"
|
132 |
+
msgstr ""
|
133 |
+
|
134 |
+
#: plugins/css_customize/css_customize-edit.php:2
|
135 |
+
#: plugins/css_customize/css_customize.php:35
|
136 |
+
#: plugins/css_customize/css_customize.php:36
|
137 |
+
msgid "CSS Customize"
|
138 |
+
msgstr ""
|
139 |
+
|
140 |
+
#: plugins/css_customize/css_customize-edit.php:5
|
141 |
+
msgid "You can add custom CSS here."
|
142 |
+
msgstr ""
|
143 |
+
|
144 |
+
#: plugins/css_customize/css_customize-edit.php:10
|
145 |
+
msgid "Save CSS"
|
146 |
+
msgstr ""
|
147 |
+
|
148 |
+
#: plugins/css_customize/css_customize.php:94
|
149 |
+
msgid "Your custom CSS was saved."
|
150 |
+
msgstr ""
|
151 |
+
|
152 |
+
#: plugins/css_customize/css_customize.php:99
|
153 |
+
msgid "Error occured. Please try again."
|
154 |
+
msgstr ""
|
155 |
+
|
156 |
+
#: plugins/google_analytics/ga_admin.php:9
|
157 |
+
#: plugins/google_analytics/ga_admin.php:13
|
158 |
+
#: plugins/google_analytics/google_analytics.php:18
|
159 |
+
msgid "Google Analytics Settings"
|
160 |
+
msgstr ""
|
161 |
+
|
162 |
+
#: plugins/google_analytics/ga_admin.php:14
|
163 |
+
msgid ""
|
164 |
+
"Please fill in the Google Analytics ID from the Analytics embed code used in "
|
165 |
+
"the site."
|
166 |
+
msgstr ""
|
167 |
+
|
168 |
+
#: plugins/google_analytics/ga_admin.php:16 plugins/sns/old/sns_admin.php:20
|
169 |
+
#: plugins/sns/old/sns_admin.php:61 plugins/sns/old/sns_admin.php:79
|
170 |
+
#: plugins/sns/old/sns_admin.php:98 plugins/sns/old/sns_admin.php:115
|
171 |
+
#: plugins/sns/sns_admin.php:31
|
172 |
+
msgid "ex) "
|
173 |
+
msgstr ""
|
174 |
+
|
175 |
+
#: plugins/google_analytics/ga_admin.php:19
|
176 |
+
msgid ""
|
177 |
+
"Please select the type of Analytics code . (If you are unsure you can skip "
|
178 |
+
"this.)"
|
179 |
+
msgstr ""
|
180 |
+
|
181 |
+
#: plugins/google_analytics/ga_admin.php:23
|
182 |
+
msgid "To output the Universal Analytics code (default)"
|
183 |
+
msgstr ""
|
184 |
+
|
185 |
+
#: plugins/google_analytics/ga_admin.php:24
|
186 |
+
msgid "To output only normal code"
|
187 |
+
msgstr ""
|
188 |
+
|
189 |
+
#: plugins/google_analytics/ga_admin.php:25
|
190 |
+
msgid "To output both types"
|
191 |
+
msgstr ""
|
192 |
+
|
193 |
+
#: plugins/icons.php:26 plugins/icons.php:54
|
194 |
+
msgid "icon setting"
|
195 |
+
msgstr ""
|
196 |
+
|
197 |
+
#: plugins/icons.php:59
|
198 |
+
msgid "Favicon Setting"
|
199 |
+
msgstr ""
|
200 |
+
|
201 |
+
#: plugins/icons.php:61
|
202 |
+
msgid "Choose icon"
|
203 |
+
msgstr ""
|
204 |
+
|
205 |
+
#: plugins/icons.php:62
|
206 |
+
msgid "Please upload your \".ico\" file"
|
207 |
+
msgstr ""
|
208 |
+
|
209 |
+
#: plugins/meta_description/meta_description.php:7
|
210 |
+
#: plugins/meta_description/meta_description.php:19
|
211 |
+
msgid "Meta Description"
|
212 |
+
msgstr ""
|
213 |
+
|
214 |
+
#: plugins/meta_description/meta_description.php:25
|
215 |
+
msgid ""
|
216 |
+
"What you have to complete the \"excerpt\" column of the edit screen of each "
|
217 |
+
"page will be reflected in the description of the meta tag."
|
218 |
+
msgstr ""
|
219 |
+
|
220 |
+
#: plugins/meta_description/meta_description.php:26
|
221 |
+
msgid ""
|
222 |
+
"Description of meta tags in the search results screen of search sites such "
|
223 |
+
"as Google, will be Displayed, such as the bottom of the site title. If the "
|
224 |
+
"excerpt column is blank, is 240 characters than text beginning of a sentence "
|
225 |
+
"has become a specification that is applied as a description."
|
226 |
+
msgstr ""
|
227 |
+
|
228 |
+
#: plugins/meta_description/meta_description.php:27
|
229 |
+
msgid ""
|
230 |
+
"The meta description of the top page is subject to the catchphrase of the "
|
231 |
+
"site. However, its contents will be reflected if the excerpt is entered in "
|
232 |
+
"fixed page that was set on the top page."
|
233 |
+
msgstr ""
|
234 |
+
|
235 |
+
#: plugins/meta_description/meta_description.php:28
|
236 |
+
msgid ""
|
237 |
+
"If \"excerpt\" column is not found, Click \"Display Option\" of page top at "
|
238 |
+
"each article edit page, and check the expert column display."
|
239 |
+
msgstr ""
|
240 |
+
|
241 |
+
#: plugins/meta_keyword/meta_keyword.php:28
|
242 |
+
#: plugins/meta_keyword/meta_keyword.php:74
|
243 |
+
#: plugins/meta_keyword/meta_keyword.php:75
|
244 |
+
#: plugins/meta_keyword/meta_keyword.php:82
|
245 |
+
msgid "Meta Keywords"
|
246 |
+
msgstr ""
|
247 |
+
|
248 |
+
#: plugins/meta_keyword/meta_keyword.php:54
|
249 |
+
msgid "Meta Keyword"
|
250 |
+
msgstr ""
|
251 |
+
|
252 |
+
#: plugins/meta_keyword/meta_keyword.php:57
|
253 |
+
msgid "Common Keywords"
|
254 |
+
msgstr ""
|
255 |
+
|
256 |
+
#: plugins/meta_keyword/meta_keyword.php:58
|
257 |
+
msgid ""
|
258 |
+
"Keywords for meta tag. This words will set Meta Keyword with post keywords. "
|
259 |
+
"if you want multiple keywords, enter with separator of \",\"."
|
260 |
+
msgstr ""
|
261 |
+
|
262 |
+
#: plugins/meta_keyword/meta_keyword.php:61
|
263 |
+
msgid "This is not seriously, Because the SearchEngine does not care this."
|
264 |
+
msgstr ""
|
265 |
+
|
266 |
+
#: plugins/meta_keyword/meta_keyword.php:62
|
267 |
+
msgid ""
|
268 |
+
"For each page individual keyword is enter at the edit screen of each "
|
269 |
+
"article. 10 keywords maximum, together with a each article keywords is "
|
270 |
+
"desirable."
|
271 |
+
msgstr ""
|
272 |
+
|
273 |
+
#: plugins/meta_keyword/meta_keyword.php:63
|
274 |
+
msgid "\",\" separator at end of the last keyword is do not need."
|
275 |
+
msgstr ""
|
276 |
+
|
277 |
+
#: plugins/meta_keyword/meta_keyword.php:64
|
278 |
+
msgid "Example: WordPress,template,theme,free,GPL"
|
279 |
+
msgstr ""
|
280 |
+
|
281 |
+
#: plugins/meta_keyword/meta_keyword.php:83
|
282 |
+
msgid ""
|
283 |
+
"To distinguish between individual keywords, please enter a , delimiter "
|
284 |
+
"(optional)."
|
285 |
+
msgstr ""
|
286 |
+
|
287 |
+
#: plugins/meta_keyword/meta_keyword.php:85
|
288 |
+
#, php-format
|
289 |
+
msgid "* keywords common to the entire site can be set from %s."
|
290 |
+
msgstr ""
|
291 |
+
|
292 |
+
#: plugins/other_widget/old/widget-archive-list.php:12
|
293 |
+
#: plugins/other_widget/widget-archives.php:12 vkExUnit_admin.php:262
|
294 |
+
msgid ""
|
295 |
+
"Displays a list of archives. You can choose the post type and also to "
|
296 |
+
"display archives by month or by year."
|
297 |
+
msgstr ""
|
298 |
+
|
299 |
+
#: plugins/other_widget/old/widget-archive-list.php:14
|
300 |
+
#: plugins/other_widget/widget-archives.php:14 vkExUnit_admin.php:262
|
301 |
+
msgid "archive list"
|
302 |
+
msgstr ""
|
303 |
+
|
304 |
+
#: plugins/other_widget/old/widget-archive-list.php:49
|
305 |
+
#: plugins/other_widget/old/widget-archive-list.php:50
|
306 |
+
#: plugins/other_widget/widget-archives.php:49
|
307 |
+
#: plugins/other_widget/widget-archives.php:50
|
308 |
+
msgid "Monthly archives"
|
309 |
+
msgstr ""
|
310 |
+
|
311 |
+
#: plugins/other_widget/old/widget-archive-list.php:59
|
312 |
+
#: plugins/other_widget/widget-archives.php:59
|
313 |
+
msgid "Title"
|
314 |
+
msgstr ""
|
315 |
+
|
316 |
+
#: plugins/other_widget/old/widget-archive-list.php:63
|
317 |
+
#: plugins/other_widget/widget-archives.php:63
|
318 |
+
msgid "Post type"
|
319 |
+
msgstr ""
|
320 |
+
|
321 |
+
#: plugins/other_widget/old/widget-child-page-list.php:9
|
322 |
+
msgid "Displays list of child page for the current page."
|
323 |
+
msgstr ""
|
324 |
+
|
325 |
+
#: plugins/other_widget/old/widget-child-page-list.php:11
|
326 |
+
msgid "child pages list"
|
327 |
+
msgstr ""
|
328 |
+
|
329 |
+
#: plugins/other_widget/old/widget-page-content.php:10
|
330 |
+
msgid "Displays the content of a chosen page."
|
331 |
+
msgstr ""
|
332 |
+
|
333 |
+
#: plugins/other_widget/old/widget-page-content.php:12
|
334 |
+
msgid "page content for top"
|
335 |
+
msgstr ""
|
336 |
+
|
337 |
+
#: plugins/other_widget/old/widget-page-content.php:30
|
338 |
+
#: plugins/other_widget/old/widget-taxonomy-list.php:61
|
339 |
+
#: plugins/other_widget/widget-page.php:30
|
340 |
+
#: plugins/other_widget/widget-taxonomies.php:60
|
341 |
+
msgid "Display page"
|
342 |
+
msgstr ""
|
343 |
+
|
344 |
+
#: plugins/other_widget/old/widget-page-content.php:38
|
345 |
+
#: plugins/other_widget/widget-page.php:38
|
346 |
+
msgid "display title"
|
347 |
+
msgstr ""
|
348 |
+
|
349 |
+
#: plugins/other_widget/old/widget-page-content.php:61
|
350 |
+
#: plugins/other_widget/widget-page.php:60
|
351 |
+
msgid "Edit"
|
352 |
+
msgstr ""
|
353 |
+
|
354 |
+
#: plugins/other_widget/old/widget-rss-widget.php:9
|
355 |
+
msgid "Displays entries list from a RSS feed link."
|
356 |
+
msgstr ""
|
357 |
+
|
358 |
+
#: plugins/other_widget/old/widget-rss-widget.php:11
|
359 |
+
msgid "RSS entries for top"
|
360 |
+
msgstr ""
|
361 |
+
|
362 |
+
#: plugins/other_widget/old/widget-rss-widget.php:25
|
363 |
+
msgid "Blog entries"
|
364 |
+
msgstr ""
|
365 |
+
|
366 |
+
#: plugins/other_widget/old/widget-rss-widget.php:30
|
367 |
+
msgid "Heading title"
|
368 |
+
msgstr ""
|
369 |
+
|
370 |
+
#: plugins/other_widget/old/widget-taxonomy-list.php:11 vkExUnit_admin.php:261
|
371 |
+
msgid "Displays a categories, tags or format list."
|
372 |
+
msgstr ""
|
373 |
+
|
374 |
+
#: plugins/other_widget/old/widget-taxonomy-list.php:17 vkExUnit_admin.php:261
|
375 |
+
msgid "categories/tags list"
|
376 |
+
msgstr ""
|
377 |
+
|
378 |
+
#: plugins/other_widget/old/widget-taxonomy-list.php:48
|
379 |
+
#: plugins/other_widget/old/widget-taxonomy-list.php:49
|
380 |
+
#: plugins/other_widget/widget-taxonomies.php:47
|
381 |
+
#: plugins/other_widget/widget-taxonomies.php:48
|
382 |
+
msgid "Category"
|
383 |
+
msgstr ""
|
384 |
+
|
385 |
+
#: plugins/other_widget/old/widget-taxonomy-list.php:57
|
386 |
+
#: plugins/other_widget/widget-taxonomies.php:56
|
387 |
+
msgid "Label to display"
|
388 |
+
msgstr ""
|
389 |
+
|
390 |
+
#: plugins/other_widget/old/widget-taxonomy-list.php:76
|
391 |
+
#: plugins/other_widget/widget-taxonomies.php:76
|
392 |
+
msgid "Blog"
|
393 |
+
msgstr ""
|
394 |
+
|
395 |
+
#: plugins/other_widget/widget-3pr-area.php:11
|
396 |
+
msgid "Displays a 3PR area"
|
397 |
+
msgstr ""
|
398 |
+
|
399 |
+
#: plugins/other_widget/widget-3pr-area.php:13
|
400 |
+
#: plugins/other_widget/widget-3pr-area.php:245
|
401 |
+
#: plugins/other_widget/widget-3pr-area.php:287
|
402 |
+
#: plugins/other_widget/widget-3pr-area.php:330
|
403 |
+
msgid "3PR area"
|
404 |
+
msgstr ""
|
405 |
+
|
406 |
+
#: plugins/other_widget/widget-3pr-area.php:18
|
407 |
+
msgid "3PR area1 title"
|
408 |
+
msgstr ""
|
409 |
+
|
410 |
+
#: plugins/other_widget/widget-3pr-area.php:26
|
411 |
+
msgid "3PR area2 title"
|
412 |
+
msgstr ""
|
413 |
+
|
414 |
+
#: plugins/other_widget/widget-3pr-area.php:34
|
415 |
+
msgid "3PR area3 title"
|
416 |
+
msgstr ""
|
417 |
+
|
418 |
+
#: plugins/other_widget/widget-3pr-area.php:47
|
419 |
+
msgid "3PR area1 setting"
|
420 |
+
msgstr ""
|
421 |
+
|
422 |
+
#: plugins/other_widget/widget-3pr-area.php:49
|
423 |
+
#: plugins/other_widget/widget-3pr-area.php:102
|
424 |
+
#: plugins/other_widget/widget-3pr-area.php:154
|
425 |
+
#: plugins/other_widget/widget-new-posts.php:75
|
426 |
+
#: plugins/other_widget/widget-profile.php:35
|
427 |
+
#: plugins/sns/function_fbPagePlugin.php:75
|
428 |
+
msgid "Title:"
|
429 |
+
msgstr ""
|
430 |
+
|
431 |
+
#: plugins/other_widget/widget-3pr-area.php:55
|
432 |
+
#: plugins/other_widget/widget-3pr-area.php:108
|
433 |
+
#: plugins/other_widget/widget-3pr-area.php:160
|
434 |
+
msgid "Select image for PC:"
|
435 |
+
msgstr ""
|
436 |
+
|
437 |
+
#: plugins/other_widget/widget-3pr-area.php:61
|
438 |
+
#: plugins/other_widget/widget-3pr-area.php:78
|
439 |
+
#: plugins/other_widget/widget-3pr-area.php:114
|
440 |
+
#: plugins/other_widget/widget-3pr-area.php:132
|
441 |
+
#: plugins/other_widget/widget-3pr-area.php:166
|
442 |
+
#: plugins/other_widget/widget-3pr-area.php:183
|
443 |
+
#: plugins/other_widget/widget-profile.php:46
|
444 |
+
msgid "Select image"
|
445 |
+
msgstr ""
|
446 |
+
|
447 |
+
#: plugins/other_widget/widget-3pr-area.php:62
|
448 |
+
#: plugins/other_widget/widget-3pr-area.php:79
|
449 |
+
#: plugins/other_widget/widget-3pr-area.php:115
|
450 |
+
#: plugins/other_widget/widget-3pr-area.php:133
|
451 |
+
#: plugins/other_widget/widget-3pr-area.php:167
|
452 |
+
#: plugins/other_widget/widget-3pr-area.php:184
|
453 |
+
#: plugins/other_widget/widget-profile.php:47
|
454 |
+
msgid "Clear image"
|
455 |
+
msgstr ""
|
456 |
+
|
457 |
+
#: plugins/other_widget/widget-3pr-area.php:72
|
458 |
+
#: plugins/other_widget/widget-3pr-area.php:126
|
459 |
+
#: plugins/other_widget/widget-3pr-area.php:177
|
460 |
+
msgid "Select image for Mobile:"
|
461 |
+
msgstr ""
|
462 |
+
|
463 |
+
#: plugins/other_widget/widget-3pr-area.php:88
|
464 |
+
#: plugins/other_widget/widget-3pr-area.php:142
|
465 |
+
#: plugins/other_widget/widget-3pr-area.php:194
|
466 |
+
msgid "Summary Text:"
|
467 |
+
msgstr ""
|
468 |
+
|
469 |
+
#: plugins/other_widget/widget-3pr-area.php:94
|
470 |
+
#: plugins/other_widget/widget-3pr-area.php:146
|
471 |
+
#: plugins/other_widget/widget-3pr-area.php:199
|
472 |
+
msgid "Link URL:"
|
473 |
+
msgstr ""
|
474 |
+
|
475 |
+
#: plugins/other_widget/widget-3pr-area.php:100
|
476 |
+
msgid "3PR area2 setting"
|
477 |
+
msgstr ""
|
478 |
+
|
479 |
+
#: plugins/other_widget/widget-3pr-area.php:152
|
480 |
+
msgid "3PR area3 setting"
|
481 |
+
msgstr ""
|
482 |
+
|
483 |
+
#: plugins/other_widget/widget-new-posts.php:11
|
484 |
+
msgid "Displays a list of your most recent posts"
|
485 |
+
msgstr ""
|
486 |
+
|
487 |
+
#: plugins/other_widget/widget-new-posts.php:13
|
488 |
+
#: plugins/other_widget/widget-new-posts.php:23
|
489 |
+
#: plugins/other_widget/widget-new-posts.php:66
|
490 |
+
msgid "Recent Posts"
|
491 |
+
msgstr ""
|
492 |
+
|
493 |
+
#: plugins/other_widget/widget-new-posts.php:80
|
494 |
+
msgid "Display count"
|
495 |
+
msgstr ""
|
496 |
+
|
497 |
+
#: plugins/other_widget/widget-new-posts.php:85
|
498 |
+
msgid "Slug for the custom type you want to display"
|
499 |
+
msgstr ""
|
500 |
+
|
501 |
+
#: plugins/other_widget/widget-page.php:11
|
502 |
+
msgid "Displays a page contents to widget."
|
503 |
+
msgstr ""
|
504 |
+
|
505 |
+
#: plugins/other_widget/widget-page.php:13
|
506 |
+
msgid "page content to widget"
|
507 |
+
msgstr ""
|
508 |
+
|
509 |
+
#: plugins/other_widget/widget-profile.php:11
|
510 |
+
msgid "Displays a your profile"
|
511 |
+
msgstr ""
|
512 |
+
|
513 |
+
#: plugins/other_widget/widget-profile.php:13
|
514 |
+
#: plugins/other_widget/widget-profile.php:19
|
515 |
+
msgid "Profile"
|
516 |
+
msgstr ""
|
517 |
+
|
518 |
+
#: plugins/other_widget/widget-profile.php:22
|
519 |
+
msgid "Profile Text"
|
520 |
+
msgstr ""
|
521 |
+
|
522 |
+
#: plugins/other_widget/widget-profile.php:40
|
523 |
+
msgid "Select Profile image:"
|
524 |
+
msgstr ""
|
525 |
+
|
526 |
+
#: plugins/other_widget/widget-profile.php:57
|
527 |
+
msgid "Profile Text:"
|
528 |
+
msgstr ""
|
529 |
+
|
530 |
+
#: plugins/other_widget/widget-profile.php:62
|
531 |
+
msgid "Facebook URL:"
|
532 |
+
msgstr ""
|
533 |
+
|
534 |
+
#: plugins/other_widget/widget-profile.php:67
|
535 |
+
msgid "Twitter URL:"
|
536 |
+
msgstr ""
|
537 |
+
|
538 |
+
#: plugins/other_widget/widget-profile.php:72
|
539 |
+
msgid "Email Address:"
|
540 |
+
msgstr ""
|
541 |
+
|
542 |
+
#: plugins/other_widget/widget-profile.php:77
|
543 |
+
msgid "Youtube URL:"
|
544 |
+
msgstr ""
|
545 |
+
|
546 |
+
#: plugins/other_widget/widget-profile.php:82
|
547 |
+
msgid "RSS URL:"
|
548 |
+
msgstr ""
|
549 |
+
|
550 |
+
#: plugins/other_widget/widget-profile.php:87
|
551 |
+
msgid "instagram URL:"
|
552 |
+
msgstr ""
|
553 |
+
|
554 |
+
#: plugins/other_widget/widget-profile.php:91
|
555 |
+
msgid "linkedin URL:"
|
556 |
+
msgstr ""
|
557 |
+
|
558 |
+
#: plugins/other_widget/widget-profile.php:121
|
559 |
+
msgid "Site's Profile"
|
560 |
+
msgstr ""
|
561 |
+
|
562 |
+
#: plugins/other_widget/widget-taxonomies.php:12
|
563 |
+
msgid "Displays a categories and custom taxonomies list."
|
564 |
+
msgstr ""
|
565 |
+
|
566 |
+
#: plugins/other_widget/widget-taxonomies.php:14
|
567 |
+
msgid "Categories/Custom taxonomies list"
|
568 |
+
msgstr ""
|
569 |
+
|
570 |
+
#: plugins/related_posts/related_posts.php:34 vkExUnit_admin.php:210
|
571 |
+
msgid "Related posts"
|
572 |
+
msgstr ""
|
573 |
+
|
574 |
+
#: plugins/sns/function_fbPagePlugin.php:10
|
575 |
+
msgid "Displays a Facebook Page Plugin"
|
576 |
+
msgstr ""
|
577 |
+
|
578 |
+
#: plugins/sns/function_fbPagePlugin.php:85
|
579 |
+
msgid "Height"
|
580 |
+
msgstr ""
|
581 |
+
|
582 |
+
#: plugins/sns/function_fbPagePlugin.php:90
|
583 |
+
msgid "Show Friend's Faces"
|
584 |
+
msgstr ""
|
585 |
+
|
586 |
+
#: plugins/sns/function_fbPagePlugin.php:95
|
587 |
+
msgid "Hide Cover Photo"
|
588 |
+
msgstr ""
|
589 |
+
|
590 |
+
#: plugins/sns/function_fbPagePlugin.php:100
|
591 |
+
msgid "Show Page Posts"
|
592 |
+
msgstr ""
|
593 |
+
|
594 |
+
#: plugins/sns/function_follow.php:11
|
595 |
+
msgid "Follow me"
|
596 |
+
msgstr ""
|
597 |
+
|
598 |
+
#: plugins/sns/old/sns.php:378
|
599 |
+
msgid "* It is necessary to set the Theme options page."
|
600 |
+
msgstr ""
|
601 |
+
|
602 |
+
#: plugins/sns/old/sns_admin.php:12
|
603 |
+
msgid "Social media"
|
604 |
+
msgstr ""
|
605 |
+
|
606 |
+
#: plugins/sns/old/sns_admin.php:13
|
607 |
+
msgid "If you are unsure, you can leave for later."
|
608 |
+
msgstr ""
|
609 |
+
|
610 |
+
#: plugins/sns/old/sns_admin.php:18
|
611 |
+
msgid ""
|
612 |
+
"If you wish to link to a personal account or a Facebook page banner will be "
|
613 |
+
"displayed if you enter the URL."
|
614 |
+
msgstr ""
|
615 |
+
|
616 |
+
#: plugins/sns/old/sns_admin.php:26 plugins/sns/sns_admin.php:13
|
617 |
+
msgid "facebook application ID"
|
618 |
+
msgstr ""
|
619 |
+
|
620 |
+
#: plugins/sns/old/sns_admin.php:28 plugins/sns/sns_admin.php:15
|
621 |
+
msgid "I will check and get the application ID"
|
622 |
+
msgstr ""
|
623 |
+
|
624 |
+
#: plugins/sns/old/sns_admin.php:29 plugins/sns/sns_admin.php:16
|
625 |
+
msgid ""
|
626 |
+
"* If an application ID is not specified, neither a Like button nor the "
|
627 |
+
"comment field displays and operates correctly."
|
628 |
+
msgstr ""
|
629 |
+
|
630 |
+
#: plugins/sns/old/sns_admin.php:30 plugins/sns/sns_admin.php:17
|
631 |
+
msgid ""
|
632 |
+
"Please search for terms as [get Facebook application ID] If you do not know "
|
633 |
+
"much about how to get application ID for Facebook."
|
634 |
+
msgstr ""
|
635 |
+
|
636 |
+
#: plugins/sns/old/sns_admin.php:35
|
637 |
+
msgid "Facebook user ID (optional)"
|
638 |
+
msgstr ""
|
639 |
+
|
640 |
+
#: plugins/sns/old/sns_admin.php:36
|
641 |
+
msgid "Please enter the Facebook user ID of the administrator."
|
642 |
+
msgstr ""
|
643 |
+
|
644 |
+
#: plugins/sns/old/sns_admin.php:38
|
645 |
+
msgid "* It is not the application ID of the Facebook page."
|
646 |
+
msgstr ""
|
647 |
+
|
648 |
+
#: plugins/sns/old/sns_admin.php:39
|
649 |
+
msgid ""
|
650 |
+
"You can see the personal Facebook ID when you access the following url "
|
651 |
+
"http://graph.facebook.com/(own url name(example: hidekazu.ishikawa))."
|
652 |
+
msgstr ""
|
653 |
+
|
654 |
+
#: plugins/sns/old/sns_admin.php:40
|
655 |
+
msgid ""
|
656 |
+
"Please search for terms as [find facebook user ID] if you are still not sure."
|
657 |
+
msgstr ""
|
658 |
+
|
659 |
+
#: plugins/sns/old/sns_admin.php:45
|
660 |
+
msgid "twitter account"
|
661 |
+
msgstr ""
|
662 |
+
|
663 |
+
#: plugins/sns/old/sns_admin.php:46
|
664 |
+
msgid ""
|
665 |
+
"If you would like to link to a Twitter account, banner will be displayed if "
|
666 |
+
"you enter the account name."
|
667 |
+
msgstr ""
|
668 |
+
|
669 |
+
#: plugins/sns/old/sns_admin.php:48
|
670 |
+
msgid "widget"
|
671 |
+
msgstr ""
|
672 |
+
|
673 |
+
#: plugins/sns/old/sns_admin.php:49
|
674 |
+
#, php-format
|
675 |
+
msgid ""
|
676 |
+
"* If you prefer to use Twitter widgets etc, this can be left blank, paste "
|
677 |
+
"the source code into a [text] %s here."
|
678 |
+
msgstr ""
|
679 |
+
|
680 |
+
#: plugins/sns/old/sns_admin.php:56
|
681 |
+
msgid "OGP default image"
|
682 |
+
msgstr ""
|
683 |
+
|
684 |
+
#: plugins/sns/old/sns_admin.php:57 plugins/sns/sns_admin.php:27
|
685 |
+
msgid ""
|
686 |
+
"If, for example someone pressed the Facebook [Like] button, this is the "
|
687 |
+
"image that appears on the Facebook timeline."
|
688 |
+
msgstr ""
|
689 |
+
|
690 |
+
#: plugins/sns/old/sns_admin.php:58 plugins/sns/sns_admin.php:28
|
691 |
+
msgid "If a featured image is specified for the page, it takes precedence."
|
692 |
+
msgstr ""
|
693 |
+
|
694 |
+
#: plugins/sns/old/sns_admin.php:60 plugins/sns/sns_admin.php:30
|
695 |
+
msgid "Select an image"
|
696 |
+
msgstr ""
|
697 |
+
|
698 |
+
#: plugins/sns/old/sns_admin.php:62 plugins/sns/sns_admin.php:32
|
699 |
+
msgid ""
|
700 |
+
"* Picture sizes are 300x300 pixels or more and picture ratio 16:9 is "
|
701 |
+
"recommended."
|
702 |
+
msgstr ""
|
703 |
+
|
704 |
+
#: plugins/sns/old/sns_admin.php:67
|
705 |
+
msgid "Social buttons"
|
706 |
+
msgstr ""
|
707 |
+
|
708 |
+
#: plugins/sns/old/sns_admin.php:68
|
709 |
+
msgid "Please check the type of page that displays the social button."
|
710 |
+
msgstr ""
|
711 |
+
|
712 |
+
#: plugins/sns/old/sns_admin.php:77 plugins/sns/old/sns_admin.php:96
|
713 |
+
msgid ""
|
714 |
+
"Within the type of page that is checked, if there is a particular page you "
|
715 |
+
"do not wish to display, enter the Page ID. If multiple pages, please "
|
716 |
+
"separate by commas."
|
717 |
+
msgstr ""
|
718 |
+
|
719 |
+
#: plugins/sns/old/sns_admin.php:84
|
720 |
+
msgid "facebook comments box"
|
721 |
+
msgstr ""
|
722 |
+
|
723 |
+
#: plugins/sns/old/sns_admin.php:85
|
724 |
+
msgid "Please check the type of the page to display Facebook comments."
|
725 |
+
msgstr ""
|
726 |
+
|
727 |
+
#: plugins/sns/old/sns_admin.php:104
|
728 |
+
msgid "If you wish to use Facebook LikeBox, please check the location."
|
729 |
+
msgstr ""
|
730 |
+
|
731 |
+
#: plugins/sns/old/sns_admin.php:105
|
732 |
+
msgid "* Please be sure to set Facebook application ID."
|
733 |
+
msgstr ""
|
734 |
+
|
735 |
+
#: plugins/sns/old/sns_admin.php:113
|
736 |
+
msgid "URL of the Facebook page."
|
737 |
+
msgstr ""
|
738 |
+
|
739 |
+
#: plugins/sns/old/sns_admin.php:116
|
740 |
+
msgid "Display stream"
|
741 |
+
msgstr ""
|
742 |
+
|
743 |
+
#: plugins/sns/old/sns_admin.php:117 plugins/sns/old/sns_admin.php:119
|
744 |
+
msgid "Display"
|
745 |
+
msgstr ""
|
746 |
+
|
747 |
+
#: plugins/sns/old/sns_admin.php:118
|
748 |
+
msgid "Display faces"
|
749 |
+
msgstr ""
|
750 |
+
|
751 |
+
#: plugins/sns/old/sns_admin.php:120
|
752 |
+
msgid "Height of LikeBox"
|
753 |
+
msgstr ""
|
754 |
+
|
755 |
+
#: plugins/sns/old/sns_admin.php:128
|
756 |
+
msgid "Do not output the OGP"
|
757 |
+
msgstr ""
|
758 |
+
|
759 |
+
#: plugins/sns/old/sns_admin.php:130
|
760 |
+
msgid ""
|
761 |
+
"If other plug-ins are used for the OGP, do not output the OGP using "
|
762 |
+
"BizVektor."
|
763 |
+
msgstr ""
|
764 |
+
|
765 |
+
#: plugins/sns/old/sns_admin.php:133
|
766 |
+
msgid "I want to output the OGP tags using BizVektor"
|
767 |
+
msgstr ""
|
768 |
+
|
769 |
+
#: plugins/sns/old/sns_admin.php:134
|
770 |
+
msgid "Do not output OGP tags using BizVektor"
|
771 |
+
msgstr ""
|
772 |
+
|
773 |
+
#: plugins/sns/old/sns_admin.php:149
|
774 |
+
msgid "Page top"
|
775 |
+
msgstr ""
|
776 |
+
|
777 |
+
#: plugins/sns/sns.php:17
|
778 |
+
msgid "SNS"
|
779 |
+
msgstr ""
|
780 |
+
|
781 |
+
#: plugins/sns/sns_admin.php:1
|
782 |
+
msgid "SNS Settings"
|
783 |
+
msgstr ""
|
784 |
+
|
785 |
+
#: plugins/sns/sns_admin.php:21
|
786 |
+
msgid "facebook page URL"
|
787 |
+
msgstr ""
|
788 |
+
|
789 |
+
#: plugins/sns/sns_admin.php:26
|
790 |
+
msgid "OG default image"
|
791 |
+
msgstr ""
|
792 |
+
|
793 |
+
#: plugins/sns/sns_admin.php:36
|
794 |
+
msgid "twitter ID"
|
795 |
+
msgstr ""
|
796 |
+
|
797 |
+
#: plugins/sns/sns_admin.php:41
|
798 |
+
msgid "OG tags"
|
799 |
+
msgstr ""
|
800 |
+
|
801 |
+
#: plugins/sns/sns_admin.php:43
|
802 |
+
msgid "Print the OG tags"
|
803 |
+
msgstr ""
|
804 |
+
|
805 |
+
#: plugins/sns/sns_admin.php:44
|
806 |
+
msgid ""
|
807 |
+
"If other plug-ins are used for the OG, do not output the OG using this "
|
808 |
+
"plugin."
|
809 |
+
msgstr ""
|
810 |
+
|
811 |
+
#: plugins/sns/sns_admin.php:49
|
812 |
+
msgid "Twitter Card tags"
|
813 |
+
msgstr ""
|
814 |
+
|
815 |
+
#: plugins/sns/sns_admin.php:51
|
816 |
+
msgid "Print the Twitter Card tags"
|
817 |
+
msgstr ""
|
818 |
+
|
819 |
+
#: plugins/sns/sns_admin.php:56
|
820 |
+
msgid "Social bookmark buttons"
|
821 |
+
msgstr ""
|
822 |
+
|
823 |
+
#: plugins/sns/sns_admin.php:57
|
824 |
+
msgid "Print the social bookmark buttons"
|
825 |
+
msgstr ""
|
826 |
+
|
827 |
+
#: plugins/sns/sns_admin.php:61
|
828 |
+
msgid "Follow me box"
|
829 |
+
msgstr ""
|
830 |
+
|
831 |
+
#: plugins/sns/sns_admin.php:62
|
832 |
+
msgid "Print the Follow me box"
|
833 |
+
msgstr ""
|
834 |
+
|
835 |
+
#: vkExUnit_admin.php:12 vkExUnit_admin.php:316
|
836 |
+
msgid "Select all"
|
837 |
+
msgstr ""
|
838 |
+
|
839 |
+
#: vkExUnit_admin.php:12 vkExUnit_admin.php:316
|
840 |
+
msgid "Function"
|
841 |
+
msgstr ""
|
842 |
+
|
843 |
+
#: vkExUnit_admin.php:12 vkExUnit_admin.php:316
|
844 |
+
msgid "Description"
|
845 |
+
msgstr ""
|
846 |
+
|
847 |
+
#: vkExUnit_admin.php:21
|
848 |
+
msgid "Choose Print Bootstrap css"
|
849 |
+
msgstr ""
|
850 |
+
|
851 |
+
#: vkExUnit_admin.php:26
|
852 |
+
msgid "Print Bootstrap css and js"
|
853 |
+
msgstr ""
|
854 |
+
|
855 |
+
#: vkExUnit_admin.php:30
|
856 |
+
msgid ""
|
857 |
+
"If your using theme has already including Bootstrap, you deactivate this "
|
858 |
+
"item."
|
859 |
+
msgstr ""
|
860 |
+
|
861 |
+
#: vkExUnit_admin.php:39
|
862 |
+
msgid "Choose Print link fontawesome."
|
863 |
+
msgstr ""
|
864 |
+
|
865 |
+
#: vkExUnit_admin.php:44
|
866 |
+
msgid "Print link fontawesome."
|
867 |
+
msgstr ""
|
868 |
+
|
869 |
+
#: vkExUnit_admin.php:48
|
870 |
+
msgid "Print fontawesome link tag to html head."
|
871 |
+
msgstr ""
|
872 |
+
|
873 |
+
#: vkExUnit_admin.php:57 vkExUnit_admin.php:121
|
874 |
+
msgid "Choose Print meta description."
|
875 |
+
msgstr ""
|
876 |
+
|
877 |
+
#: vkExUnit_admin.php:62
|
878 |
+
msgid "Favicon setting"
|
879 |
+
msgstr ""
|
880 |
+
|
881 |
+
#: vkExUnit_admin.php:66
|
882 |
+
msgid "About favicon."
|
883 |
+
msgstr ""
|
884 |
+
|
885 |
+
#: vkExUnit_admin.php:75
|
886 |
+
msgid "Choose Rewrite the title tag"
|
887 |
+
msgstr ""
|
888 |
+
|
889 |
+
#: vkExUnit_admin.php:80
|
890 |
+
msgid "Rewrite the title tag"
|
891 |
+
msgstr ""
|
892 |
+
|
893 |
+
#: vkExUnit_admin.php:84
|
894 |
+
msgid "Print is rewritten by its own rules to html head."
|
895 |
+
msgstr ""
|
896 |
+
|
897 |
+
#: vkExUnit_admin.php:93
|
898 |
+
msgid "Choose Print meta Keyword."
|
899 |
+
msgstr ""
|
900 |
+
|
901 |
+
#: vkExUnit_admin.php:98
|
902 |
+
msgid "Print meta Keyword"
|
903 |
+
msgstr ""
|
904 |
+
|
905 |
+
#: vkExUnit_admin.php:104 vkExUnit_admin.php:150 vkExUnit_admin.php:188
|
906 |
+
#: vkExUnit_admin.php:249 vkExUnit_admin.php:282
|
907 |
+
msgid "Setting"
|
908 |
+
msgstr ""
|
909 |
+
|
910 |
+
#: vkExUnit_admin.php:112
|
911 |
+
msgid "Print meta Keyword to html head."
|
912 |
+
msgstr ""
|
913 |
+
|
914 |
+
#: vkExUnit_admin.php:126
|
915 |
+
msgid "Print meta description"
|
916 |
+
msgstr ""
|
917 |
+
|
918 |
+
#: vkExUnit_admin.php:130
|
919 |
+
msgid "Print meta description to html head."
|
920 |
+
msgstr ""
|
921 |
+
|
922 |
+
#: vkExUnit_admin.php:139
|
923 |
+
msgid "Choose Social media cooperation."
|
924 |
+
msgstr ""
|
925 |
+
|
926 |
+
#: vkExUnit_admin.php:144
|
927 |
+
msgid "Social media cooperation."
|
928 |
+
msgstr ""
|
929 |
+
|
930 |
+
#: vkExUnit_admin.php:159
|
931 |
+
msgid "Print og tags to html head."
|
932 |
+
msgstr ""
|
933 |
+
|
934 |
+
#: vkExUnit_admin.php:160
|
935 |
+
msgid "Print twitter card tags to html head."
|
936 |
+
msgstr ""
|
937 |
+
|
938 |
+
#: vkExUnit_admin.php:161
|
939 |
+
msgid "Print social bookmark buttons."
|
940 |
+
msgstr ""
|
941 |
+
|
942 |
+
#: vkExUnit_admin.php:162
|
943 |
+
msgid "Facebook Page Plugin widget."
|
944 |
+
msgstr ""
|
945 |
+
|
946 |
+
#: vkExUnit_admin.php:163
|
947 |
+
msgid "Print Follow me box to content bottom."
|
948 |
+
msgstr ""
|
949 |
+
|
950 |
+
#: vkExUnit_admin.php:166
|
951 |
+
msgid "Main setting page"
|
952 |
+
msgstr ""
|
953 |
+
|
954 |
+
#: vkExUnit_admin.php:167
|
955 |
+
#, php-format
|
956 |
+
msgid "* You can stop the function separately from the %s."
|
957 |
+
msgstr ""
|
958 |
+
|
959 |
+
#: vkExUnit_admin.php:177
|
960 |
+
msgid "Choose Print Google Analytics tracking code."
|
961 |
+
msgstr ""
|
962 |
+
|
963 |
+
#: vkExUnit_admin.php:196
|
964 |
+
msgid "Print Google Analytics tracking code."
|
965 |
+
msgstr ""
|
966 |
+
|
967 |
+
#: vkExUnit_admin.php:205
|
968 |
+
msgid "Choose Related posts."
|
969 |
+
msgstr ""
|
970 |
+
|
971 |
+
#: vkExUnit_admin.php:214
|
972 |
+
msgid "Print Related posts lists to post content bottom."
|
973 |
+
msgstr ""
|
974 |
+
|
975 |
+
#: vkExUnit_admin.php:223
|
976 |
+
msgid "Choose display a child page index to posts."
|
977 |
+
msgstr ""
|
978 |
+
|
979 |
+
#: vkExUnit_admin.php:228
|
980 |
+
msgid "Child page index"
|
981 |
+
msgstr ""
|
982 |
+
|
983 |
+
#: vkExUnit_admin.php:232
|
984 |
+
msgid "Display a child page index to posts."
|
985 |
+
msgstr ""
|
986 |
+
|
987 |
+
#: vkExUnit_admin.php:241 vkExUnit_admin.php:272
|
988 |
+
msgid "Choose other widgets."
|
989 |
+
msgstr ""
|
990 |
+
|
991 |
+
#: vkExUnit_admin.php:246
|
992 |
+
msgid "Widgets"
|
993 |
+
msgstr ""
|
994 |
+
|
995 |
+
#: vkExUnit_admin.php:254
|
996 |
+
msgid "You can use various widgets."
|
997 |
+
msgstr ""
|
998 |
+
|
999 |
+
#: vkExUnit_admin.php:256
|
1000 |
+
msgid ""
|
1001 |
+
"VK_Recent Posts - display the link text and the date of the latest article "
|
1002 |
+
"title."
|
1003 |
+
msgstr ""
|
1004 |
+
|
1005 |
+
#: vkExUnit_admin.php:257
|
1006 |
+
msgid ""
|
1007 |
+
"VK_Page content to widget - display the contents of the page to the widgets."
|
1008 |
+
msgstr ""
|
1009 |
+
|
1010 |
+
#: vkExUnit_admin.php:258
|
1011 |
+
msgid "VK_Profile - display the profile entered in the widget."
|
1012 |
+
msgstr ""
|
1013 |
+
|
1014 |
+
#: vkExUnit_admin.php:259
|
1015 |
+
msgid "VK_FB Page Plugin - display the Facebook Page Plugin."
|
1016 |
+
msgstr ""
|
1017 |
+
|
1018 |
+
#: vkExUnit_admin.php:260
|
1019 |
+
msgid "VK_3PR area - display the 3PR area."
|
1020 |
+
msgstr ""
|
1021 |
+
|
1022 |
+
#: vkExUnit_admin.php:277
|
1023 |
+
msgid "CSS customize"
|
1024 |
+
msgstr ""
|
1025 |
+
|
1026 |
+
#: vkExUnit_admin.php:289
|
1027 |
+
msgid "You can set Customize CSS."
|
1028 |
+
msgstr ""
|
1029 |
+
|
1030 |
+
#: vkExUnit_admin.php:298 vkExUnit_admin.php:303
|
1031 |
+
msgid "Automatic Eye Catch insert"
|
1032 |
+
msgstr ""
|
1033 |
+
|
1034 |
+
#: vkExUnit_admin.php:307
|
1035 |
+
msgid "Display Eye Catch image at before content."
|
1036 |
+
msgstr ""
|
plugins/auto_eyecatch.php
ADDED
@@ -0,0 +1,113 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
class vExUnit_eyecatch {
|
4 |
+
private static $instance;
|
5 |
+
|
6 |
+
public static $allowed_post_types = array( 'post', 'page' );
|
7 |
+
|
8 |
+
public static function instance() {
|
9 |
+
if ( isset( self::$instance ) )
|
10 |
+
return self::$instance;
|
11 |
+
|
12 |
+
self::$instance = new vExUnit_eyecatch;
|
13 |
+
self::$instance->run_init();
|
14 |
+
return self::$instance;
|
15 |
+
}
|
16 |
+
|
17 |
+
|
18 |
+
private function __construct() {
|
19 |
+
}
|
20 |
+
|
21 |
+
|
22 |
+
protected function run_init() {
|
23 |
+
add_action('admin_menu', array($this, 'add_custom_field'));
|
24 |
+
add_action('save_post' , array($this, 'save_custom_field'));
|
25 |
+
add_filter('the_content', array($this, 'set_eyecatch' ), 1);
|
26 |
+
}
|
27 |
+
|
28 |
+
|
29 |
+
public function add_custom_field(){
|
30 |
+
|
31 |
+
foreach( self::$allowed_post_types as $post_type ){
|
32 |
+
add_meta_box('vkExUnit_EyeCatch', __('Automatic EyeCatch', 'vkExUnit'), array( $this, 'render_meta_box' ), $post_type, 'normal', 'high');
|
33 |
+
}
|
34 |
+
}
|
35 |
+
|
36 |
+
|
37 |
+
public function render_meta_box(){
|
38 |
+
global $post;
|
39 |
+
$disable_autoeyecatch = get_post_meta(get_the_id(), 'vkExUnit_EyeCatch_disable', true);
|
40 |
+
|
41 |
+
echo '<input type="hidden" name="_nonce_vkExUnit__custom_auto_eyecatch" id="_nonce_vkExUnit__custom_auto_eyecatch_noonce" value="'.wp_create_nonce(plugin_basename(__FILE__)).'" />';
|
42 |
+
echo '<label ><input type="checkbox" name="vkExUnit_auto_eyecatch" value="true" ' . ( ($disable_autoeyecatch)? 'checked' : '' ) . ' />'.__("Do not set eyecatch image automatic.", 'vkExUnit').'</label>';
|
43 |
+
|
44 |
+
}
|
45 |
+
|
46 |
+
|
47 |
+
public function save_custom_field($post_id){
|
48 |
+
|
49 |
+
$metaKeyword = isset($_POST['_nonce_vkExUnit__custom_auto_eyecatch']) ? htmlspecialchars($_POST['_nonce_vkExUnit__custom_auto_eyecatch']) : null;
|
50 |
+
|
51 |
+
$keyword = get_post_meta($post_id, 'vkExUnit_metaKeyword', true);
|
52 |
+
|
53 |
+
// if autosave then deny
|
54 |
+
if( defined('DOING_AUTOSAVE') && DOING_AUTOSAVE )
|
55 |
+
return $post_id;
|
56 |
+
|
57 |
+
if(!wp_verify_nonce($metaKeyword, plugin_basename(__FILE__))){
|
58 |
+
return $post_id;
|
59 |
+
}
|
60 |
+
|
61 |
+
delete_post_meta($post_id, 'vkExUnit_EyeCatch_disable');
|
62 |
+
if( isset($_POST['vkExUnit_auto_eyecatch']) && $_POST['vkExUnit_auto_eyecatch'] ){
|
63 |
+
add_post_meta($post_id, 'vkExUnit_EyeCatch_disable', true );
|
64 |
+
}
|
65 |
+
}
|
66 |
+
|
67 |
+
|
68 |
+
public static function is_my_turn(){
|
69 |
+
|
70 |
+
if(get_the_id()){
|
71 |
+
|
72 |
+
if( in_array( get_post_type(get_the_id()), self::$allowed_post_types ) ){
|
73 |
+
|
74 |
+
if( has_post_thumbnail( get_the_id() ) ){
|
75 |
+
|
76 |
+
if(!get_post_meta( get_the_id(), 'vkExUnit_EyeCatch_disable', true) ){
|
77 |
+
|
78 |
+
return true;
|
79 |
+
}
|
80 |
+
}
|
81 |
+
}
|
82 |
+
}
|
83 |
+
|
84 |
+
return false;
|
85 |
+
}
|
86 |
+
|
87 |
+
|
88 |
+
public function set_eyecatch($content){
|
89 |
+
|
90 |
+
if( !self::is_my_turn() ){ return $content; }
|
91 |
+
|
92 |
+
$imageHtml = self::render_eyecatch( get_the_id() );
|
93 |
+
|
94 |
+
$content = $imageHtml . $content;
|
95 |
+
|
96 |
+
return $content;
|
97 |
+
}
|
98 |
+
|
99 |
+
|
100 |
+
public function render_eyecatch($post_id){
|
101 |
+
$html = '';
|
102 |
+
|
103 |
+
$image_tag = get_the_post_thumbnail( $post_id, 'large' );
|
104 |
+
|
105 |
+
$html = <<<EOF
|
106 |
+
<div class="autoEyeCatchBox">{$image_tag}</div>
|
107 |
+
EOF;
|
108 |
+
return $html;
|
109 |
+
}
|
110 |
+
|
111 |
+
}
|
112 |
+
|
113 |
+
vExUnit_eyecatch::instance();
|
plugins/child_page_index/child_page_index.php
ADDED
@@ -0,0 +1,60 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
|
4 |
+
/*-------------------------------------------*/
|
5 |
+
/* Child page index
|
6 |
+
/*-------------------------------------------*/
|
7 |
+
add_filter('the_content', 'show_childPageIndex', 7);
|
8 |
+
remove_filter('the_content','wpautop');
|
9 |
+
|
10 |
+
function show_childPageIndex($content) {
|
11 |
+
global $post;
|
12 |
+
$childPageIndex_value = get_post_meta( $post->ID, 'vkExUnit_childPageIndex' );
|
13 |
+
if(!empty($childPageIndex_value)){
|
14 |
+
// check the childPageIndex_value
|
15 |
+
if( is_page() && $childPageIndex_value[0] == 'active'){
|
16 |
+
|
17 |
+
$my_wp_query = new WP_Query();
|
18 |
+
$all_wp_pages = $my_wp_query -> query(array('post_type' => 'page', 'posts_per_page' => -1, 'order' => 'ASC'));
|
19 |
+
|
20 |
+
$childrens = get_page_children( $post->post_parent, $all_wp_pages );
|
21 |
+
$parentId = $post->ID;
|
22 |
+
|
23 |
+
$childPageList = PHP_EOL.'<div class="row childPage_list
|