casein 4.0.0 → 5.0.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (83) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE +246 -0
  3. data/PUBLIC_VERSION.yml +2 -2
  4. data/README.rdoc +73 -49
  5. data/Rakefile +7 -5
  6. data/app/assets/fonts/casein/glyphiconshalflings-regular.eot +0 -0
  7. data/app/assets/fonts/casein/glyphiconshalflings-regular.otf +0 -0
  8. data/app/assets/fonts/casein/glyphiconshalflings-regular.svg +175 -0
  9. data/app/assets/fonts/casein/glyphiconshalflings-regular.ttf +0 -0
  10. data/app/assets/fonts/casein/glyphiconshalflings-regular.woff +0 -0
  11. data/app/assets/images/casein/casein.png +0 -0
  12. data/app/assets/javascripts/casein/bootstrap.js +1966 -0
  13. data/app/assets/javascripts/casein/casein.js +34 -19
  14. data/app/assets/javascripts/casein/html5shiv.js +8 -0
  15. data/app/assets/stylesheets/casein/bootstrap-glyphicons.css.scss +2 -0
  16. data/app/assets/stylesheets/casein/bootstrap.css +4692 -0
  17. data/app/assets/stylesheets/casein/casein-bootstrap-overrides.css.scss +76 -0
  18. data/app/assets/stylesheets/casein/casein.css.scss +258 -3
  19. data/app/assets/stylesheets/casein/login.css.scss +48 -109
  20. data/app/controllers/casein/{user_sessions_controller.rb → admin_user_sessions_controller.rb} +6 -10
  21. data/app/controllers/casein/admin_users_controller.rb +124 -0
  22. data/app/controllers/casein/casein_controller.rb +11 -9
  23. data/app/controllers/casein/password_resets_controller.rb +8 -10
  24. data/app/helpers/casein/casein_helper.rb +94 -31
  25. data/app/mailers/casein/casein_notification.rb +13 -13
  26. data/app/models/casein/{user.rb → admin_user.rb} +2 -2
  27. data/app/models/casein/{user_session.rb → admin_user_session.rb} +1 -1
  28. data/app/views/casein/admin_user_sessions/new.html.erb +56 -0
  29. data/app/views/casein/admin_users/index.html.erb +39 -0
  30. data/app/views/casein/admin_users/new.html.erb +57 -0
  31. data/app/views/casein/admin_users/show.html.erb +104 -0
  32. data/app/views/casein/casein/blank.html.erb +12 -1
  33. data/app/views/casein/casein_notification/generate_new_password.erb +1 -1
  34. data/app/views/casein/casein_notification/new_user_information.erb +1 -1
  35. data/app/views/casein/casein_notification/password_reset_instructions.erb +1 -1
  36. data/app/views/casein/password_resets/edit.html.erb +21 -33
  37. data/app/views/layouts/casein_auth.html.erb +34 -22
  38. data/app/views/layouts/casein_main.html.erb +111 -64
  39. data/config/initializers/will_paginate.rb +40 -0
  40. data/config/routes.rb +2 -2
  41. data/lib/casein.rb +9 -3
  42. data/lib/casein/engine.rb +5 -1
  43. data/lib/generators/casein/install/install_generator.rb +3 -3
  44. data/lib/generators/casein/install/templates/app/helpers/casein/config_helper.rb +10 -11
  45. data/lib/generators/casein/install/templates/app/views/casein/layouts/{_left_navigation.html.erb → _tab_navigation.html.erb} +0 -0
  46. data/lib/generators/casein/install/templates/app/views/casein/layouts/_top_navigation.html.erb +4 -0
  47. data/lib/generators/casein/install/templates/db/migrate/{casein_create_users.rb → casein_create_admin_users.rb} +3 -3
  48. data/lib/generators/casein/scaffold/scaffold_generator.rb +20 -8
  49. data/lib/generators/casein/scaffold/templates/controller.rb +6 -6
  50. data/lib/generators/casein/scaffold/templates/views/_form.html.erb +11 -8
  51. data/lib/generators/casein/scaffold/templates/views/_table.html.erb +12 -10
  52. data/lib/generators/casein/scaffold/templates/views/index.html.erb +7 -3
  53. data/lib/generators/casein/scaffold/templates/views/new.html.erb +3 -3
  54. data/lib/generators/casein/scaffold/templates/views/show.html.erb +5 -5
  55. data/lib/railties/tasks.rake +15 -13
  56. metadata +67 -46
  57. data/MIT-LICENSE +0 -21
  58. data/app/assets/images/casein/header.png +0 -0
  59. data/app/assets/images/casein/icons/add.png +0 -0
  60. data/app/assets/images/casein/icons/delete.png +0 -0
  61. data/app/assets/images/casein/icons/table.png +0 -0
  62. data/app/assets/images/casein/login/alertBg.png +0 -0
  63. data/app/assets/images/casein/login/background.png +0 -0
  64. data/app/assets/images/casein/login/bottom.png +0 -0
  65. data/app/assets/images/casein/login/loginBoxBg.png +0 -0
  66. data/app/assets/images/casein/login/loginBoxBottom.png +0 -0
  67. data/app/assets/images/casein/login/loginBoxTop.png +0 -0
  68. data/app/assets/images/casein/login/loginSubmit.png +0 -0
  69. data/app/assets/images/casein/login/recoverSubmit.png +0 -0
  70. data/app/assets/images/casein/login/top.png +0 -0
  71. data/app/assets/images/casein/nav.png +0 -0
  72. data/app/assets/images/casein/rightNav.png +0 -0
  73. data/app/assets/images/casein/rightNavButton.png +0 -0
  74. data/app/assets/images/casein/visitSiteNav.png +0 -0
  75. data/app/assets/javascripts/casein/login.js +0 -27
  76. data/app/assets/stylesheets/casein/elements.css.scss +0 -307
  77. data/app/assets/stylesheets/casein/screen.css.scss +0 -224
  78. data/app/controllers/casein/users_controller.rb +0 -108
  79. data/app/views/casein/user_sessions/new.html.erb +0 -66
  80. data/app/views/casein/users/index.html.erb +0 -35
  81. data/app/views/casein/users/new.html.erb +0 -46
  82. data/app/views/casein/users/show.html.erb +0 -94
  83. data/lib/generators/casein/install/templates/app/views/casein/layouts/_right_navigation.html.erb +0 -1
@@ -1,28 +1,43 @@
1
1
  //= require jquery
2
2
  //= require jquery_ujs
3
+ //= require ./bootstrap.js
3
4
 
4
- jQuery(document).ready(function()
5
- {
6
- var contentHeight = Math.round(jQuery(window).height() - 130);
5
+ jQuery(document).ready(function() {
7
6
 
8
- resizeContent(contentHeight);
7
+ if (current_controller) {
8
+ active_tab = $("#tab-" + current_controller);
9
+ if (active_tab) {
10
+ active_tab.addClass("active");
11
+ }
12
+ }
9
13
 
10
- window.onresize = function()
11
- {
12
- contentHeight = Math.round(jQuery(window).height() - 130);
13
- resizeContent(contentHeight);
14
- };
15
-
16
- if(jQuery("#notice"))
17
- {
18
- setTimeout(function()
19
- {
20
- jQuery("#notice").fadeOut(500);
21
- }, 20000);
14
+ if($("#notice")) {
15
+ setTimeout(function() {
16
+ $("#notice").fadeOut(1000);
17
+ }, 10000);
22
18
  };
19
+
20
+ $("#generate-random-password-checkbox").click(function() {
21
+ if ($(this).is(':checked')) {
22
+ $("#casein_admin_user_password").attr("disabled", true);
23
+ $("#casein_admin_user_password_confirmation").attr("disabled", true);
24
+ }
25
+ else {
26
+ $("#casein_admin_user_password").removeAttr("disabled");
27
+ $("#casein_admin_user_password_confirmation").removeAttr("disabled");
28
+ }
29
+ });
30
+
23
31
  });
24
32
 
25
- resizeContent = function(newHeight)
26
- {
27
- jQuery("#content").css({"height": newHeight+"px"});
33
+ toggleDiv = function(div) {
34
+ switch ($("#"+div).css('display')) {
35
+ case "none":
36
+ $("#"+div).fadeIn(300);
37
+ break;
38
+
39
+ case "block":
40
+ $("#"+div).fadeOut(300);
41
+ break;
42
+ }
28
43
  }
@@ -0,0 +1,8 @@
1
+ /*
2
+ HTML5 Shiv v3.6.2pre | @afarkas @jdalton @jon_neal @rem | MIT/GPL2 Licensed
3
+ */
4
+ (function(l,f){function m(){var a=e.elements;return"string"==typeof a?a.split(" "):a}function i(a){var b=n[a[o]];b||(b={},h++,a[o]=h,n[h]=b);return b}function p(a,b,c){b||(b=f);if(g)return b.createElement(a);c||(c=i(b));b=c.cache[a]?c.cache[a].cloneNode():r.test(a)?(c.cache[a]=c.createElem(a)).cloneNode():c.createElem(a);return b.canHaveChildren&&!s.test(a)?c.frag.appendChild(b):b}function t(a,b){if(!b.cache)b.cache={},b.createElem=a.createElement,b.createFrag=a.createDocumentFragment,b.frag=b.createFrag();
5
+ a.createElement=function(c){return!e.shivMethods?b.createElem(c):p(c,a,b)};a.createDocumentFragment=Function("h,f","return function(){var n=f.cloneNode(),c=n.createElement;h.shivMethods&&("+m().join().replace(/\w+/g,function(a){b.createElem(a);b.frag.createElement(a);return'c("'+a+'")'})+");return n}")(e,b.frag)}function q(a){a||(a=f);var b=i(a);if(e.shivCSS&&!j&&!b.hasCSS){var c,d=a;c=d.createElement("p");d=d.getElementsByTagName("head")[0]||d.documentElement;c.innerHTML="x<style>article,aside,figcaption,figure,footer,header,hgroup,nav,section{display:block}mark{background:#FF0;color:#000}</style>";
6
+ c=d.insertBefore(c.lastChild,d.firstChild);b.hasCSS=!!c}g||t(a,b);return a}var k=l.html5||{},s=/^<|^(?:button|map|select|textarea|object|iframe|option|optgroup)$/i,r=/^(?:a|b|code|div|fieldset|h1|h2|h3|h4|h5|h6|i|label|li|ol|p|q|span|strong|style|table|tbody|td|th|tr|ul)$/i,j,o="_html5shiv",h=0,n={},g;(function(){try{var a=f.createElement("a");a.innerHTML="<xyz></xyz>";j="hidden"in a;var b;if(!(b=1==a.childNodes.length)){f.createElement("a");var c=f.createDocumentFragment();b="undefined"==typeof c.cloneNode||
7
+ "undefined"==typeof c.createDocumentFragment||"undefined"==typeof c.createElement}g=b}catch(d){g=j=!0}})();var e={elements:k.elements||"abbr article aside audio bdi canvas data datalist details figcaption figure footer header hgroup mark meter nav output progress section summary time video",version:"3.6.2pre",shivCSS:!1!==k.shivCSS,supportsUnknownElements:g,shivMethods:!1!==k.shivMethods,type:"default",shivDocument:q,createElement:p,createDocumentFragment:function(a,b){a||(a=f);if(g)return a.createDocumentFragment();
8
+ for(var b=b||i(a),c=b.frag.cloneNode(),d=0,e=m(),h=e.length;d<h;d++)c.createElement(e[d]);return c}};l.html5=e;q(f)})(this,document);
@@ -0,0 +1,2 @@
1
+ @font-face{font-family:'Glyphicons Halflings';src:asset-url("casein/glyphiconshalflings-regular.eot");src:asset-url('casein/glyphiconshalflings-regular.eot?#iefix') format('embedded-opentype'),asset-url('casein/glyphiconshalflings-regular.woff') format('woff'),asset-url('casein/glyphiconshalflings-regular.ttf') format('truetype'),asset-url('casein/glyphiconshalflings-regular.svg#glyphicons_halflingsregular') format('svg')}.glyphicon:before{font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-plus:before{content:"\002b"}.glyphicon-minus:before{content:"\2212"}.glyphicon-asterisk:before{content:"\002a"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-euro:before{content:"\20ac"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse:before{content:"\e159"}.glyphicon-collapse-top:before{content:"\e160"}
2
+ /* This beautiful CSS-File has been crafted with LESS (lesscss.org) and compiled by simpLESS (wearekiss.com/simpless) */
@@ -0,0 +1,4692 @@
1
+ /*!
2
+ * Bootstrap v3.0.0
3
+ *
4
+ * Copyright 2013 Twitter, Inc
5
+ * Licensed under the Apache License v2.0
6
+ * http://www.apache.org/licenses/LICENSE-2.0
7
+ *
8
+ * Designed and built with all the love in the world by @mdo and @fat.
9
+ */
10
+
11
+ /*! normalize.css v2.1.0 | MIT License | git.io/normalize */
12
+
13
+ article,
14
+ aside,
15
+ details,
16
+ figcaption,
17
+ figure,
18
+ footer,
19
+ header,
20
+ hgroup,
21
+ main,
22
+ nav,
23
+ section,
24
+ summary {
25
+ display: block;
26
+ }
27
+
28
+ audio,
29
+ canvas,
30
+ video {
31
+ display: inline-block;
32
+ }
33
+
34
+ audio:not([controls]) {
35
+ display: none;
36
+ height: 0;
37
+ }
38
+
39
+ [hidden] {
40
+ display: none;
41
+ }
42
+
43
+ html {
44
+ font-family: sans-serif;
45
+ -webkit-text-size-adjust: 100%;
46
+ -ms-text-size-adjust: 100%;
47
+ }
48
+
49
+ body {
50
+ margin: 0;
51
+ }
52
+
53
+ a:focus {
54
+ outline: thin dotted;
55
+ }
56
+
57
+ a:active,
58
+ a:hover {
59
+ outline: 0;
60
+ }
61
+
62
+ h1 {
63
+ margin: 0.67em 0;
64
+ font-size: 2em;
65
+ }
66
+
67
+ abbr[title] {
68
+ border-bottom: 1px dotted;
69
+ }
70
+
71
+ b,
72
+ strong {
73
+ font-weight: bold;
74
+ }
75
+
76
+ dfn {
77
+ font-style: italic;
78
+ }
79
+
80
+ hr {
81
+ height: 0;
82
+ -moz-box-sizing: content-box;
83
+ box-sizing: content-box;
84
+ }
85
+
86
+ mark {
87
+ color: #000;
88
+ background: #ff0;
89
+ }
90
+
91
+ code,
92
+ kbd,
93
+ pre,
94
+ samp {
95
+ font-family: monospace, serif;
96
+ font-size: 1em;
97
+ }
98
+
99
+ pre {
100
+ white-space: pre-wrap;
101
+ }
102
+
103
+ q {
104
+ quotes: "\201C" "\201D" "\2018" "\2019";
105
+ }
106
+
107
+ small {
108
+ font-size: 80%;
109
+ }
110
+
111
+ sub,
112
+ sup {
113
+ position: relative;
114
+ font-size: 75%;
115
+ line-height: 0;
116
+ vertical-align: baseline;
117
+ }
118
+
119
+ sup {
120
+ top: -0.5em;
121
+ }
122
+
123
+ sub {
124
+ bottom: -0.25em;
125
+ }
126
+
127
+ img {
128
+ border: 0;
129
+ }
130
+
131
+ svg:not(:root) {
132
+ overflow: hidden;
133
+ }
134
+
135
+ figure {
136
+ margin: 0;
137
+ }
138
+
139
+ fieldset {
140
+ padding: 0.35em 0.625em 0.75em;
141
+ margin: 0 2px;
142
+ border: 1px solid #c0c0c0;
143
+ }
144
+
145
+ legend {
146
+ padding: 0;
147
+ border: 0;
148
+ }
149
+
150
+ button,
151
+ input,
152
+ select,
153
+ textarea {
154
+ margin: 0;
155
+ font-family: inherit;
156
+ font-size: 100%;
157
+ }
158
+
159
+ button,
160
+ input {
161
+ line-height: normal;
162
+ }
163
+
164
+ button,
165
+ select {
166
+ text-transform: none;
167
+ }
168
+
169
+ button,
170
+ html input[type="button"],
171
+ input[type="reset"],
172
+ input[type="submit"] {
173
+ cursor: pointer;
174
+ -webkit-appearance: button;
175
+ }
176
+
177
+ button[disabled],
178
+ html input[disabled] {
179
+ cursor: default;
180
+ }
181
+
182
+ input[type="checkbox"],
183
+ input[type="radio"] {
184
+ padding: 0;
185
+ box-sizing: border-box;
186
+ }
187
+
188
+ input[type="search"] {
189
+ -webkit-box-sizing: content-box;
190
+ -moz-box-sizing: content-box;
191
+ box-sizing: content-box;
192
+ -webkit-appearance: textfield;
193
+ }
194
+
195
+ input[type="search"]::-webkit-search-cancel-button,
196
+ input[type="search"]::-webkit-search-decoration {
197
+ -webkit-appearance: none;
198
+ }
199
+
200
+ button::-moz-focus-inner,
201
+ input::-moz-focus-inner {
202
+ padding: 0;
203
+ border: 0;
204
+ }
205
+
206
+ textarea {
207
+ overflow: auto;
208
+ vertical-align: top;
209
+ }
210
+
211
+ table {
212
+ border-collapse: collapse;
213
+ border-spacing: 0;
214
+ }
215
+
216
+ @media print {
217
+ * {
218
+ color: #000 !important;
219
+ text-shadow: none !important;
220
+ background: transparent !important;
221
+ box-shadow: none !important;
222
+ }
223
+ a,
224
+ a:visited {
225
+ text-decoration: underline;
226
+ }
227
+ a[href]:after {
228
+ content: " (" attr(href) ")";
229
+ }
230
+ abbr[title]:after {
231
+ content: " (" attr(title) ")";
232
+ }
233
+ .ir a:after,
234
+ a[href^="javascript:"]:after,
235
+ a[href^="#"]:after {
236
+ content: "";
237
+ }
238
+ pre,
239
+ blockquote {
240
+ border: 1px solid #999;
241
+ page-break-inside: avoid;
242
+ }
243
+ thead {
244
+ display: table-header-group;
245
+ }
246
+ tr,
247
+ img {
248
+ page-break-inside: avoid;
249
+ }
250
+ img {
251
+ max-width: 100% !important;
252
+ }
253
+ @page {
254
+ margin: 2cm .5cm;
255
+ }
256
+ p,
257
+ h2,
258
+ h3 {
259
+ orphans: 3;
260
+ widows: 3;
261
+ }
262
+ h2,
263
+ h3 {
264
+ page-break-after: avoid;
265
+ }
266
+ .navbar {
267
+ display: none;
268
+ }
269
+ .table td,
270
+ .table th {
271
+ background-color: #fff !important;
272
+ }
273
+ .btn > .caret,
274
+ .dropup > .btn > .caret {
275
+ border-top-color: #000 !important;
276
+ }
277
+ .label {
278
+ border: 1px solid #000;
279
+ }
280
+ .table {
281
+ border-collapse: collapse !important;
282
+ }
283
+ .table-bordered th,
284
+ .table-bordered td {
285
+ border: 1px solid #ddd !important;
286
+ }
287
+ }
288
+
289
+ * {
290
+ -webkit-box-sizing: border-box;
291
+ -moz-box-sizing: border-box;
292
+ box-sizing: border-box;
293
+ }
294
+
295
+ html {
296
+ font-size: 62.5%;
297
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
298
+ }
299
+
300
+ body {
301
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
302
+ font-size: 14px;
303
+ line-height: 1.428571429;
304
+ color: #333333;
305
+ background-color: #ffffff;
306
+ }
307
+
308
+ input,
309
+ button,
310
+ select,
311
+ textarea {
312
+ font-family: inherit;
313
+ font-size: inherit;
314
+ line-height: inherit;
315
+ }
316
+
317
+ a {
318
+ color: #428bca;
319
+ text-decoration: none;
320
+ }
321
+
322
+ a:hover,
323
+ a:focus {
324
+ color: #2a6496;
325
+ text-decoration: underline;
326
+ }
327
+
328
+ a:focus {
329
+ outline: thin dotted #333;
330
+ outline: 5px auto -webkit-focus-ring-color;
331
+ outline-offset: -2px;
332
+ }
333
+
334
+ img {
335
+ vertical-align: middle;
336
+ }
337
+
338
+ .img-responsive {
339
+ display: inline-block;
340
+ height: auto;
341
+ max-width: 100%;
342
+ }
343
+
344
+ .img-rounded {
345
+ border-radius: 6px;
346
+ }
347
+
348
+ .img-circle {
349
+ border-radius: 500px;
350
+ }
351
+
352
+ hr {
353
+ margin-top: 20px;
354
+ margin-bottom: 20px;
355
+ border: 0;
356
+ border-top: 1px solid #eeeeee;
357
+ }
358
+
359
+ p {
360
+ margin: 0 0 10px;
361
+ }
362
+
363
+ .lead {
364
+ margin-bottom: 20px;
365
+ font-size: 16.099999999999998px;
366
+ font-weight: 200;
367
+ line-height: 1.4;
368
+ }
369
+
370
+ @media (min-width: 768px) {
371
+ .lead {
372
+ font-size: 21px;
373
+ }
374
+ }
375
+
376
+ small {
377
+ font-size: 85%;
378
+ }
379
+
380
+ cite {
381
+ font-style: normal;
382
+ }
383
+
384
+ .text-muted {
385
+ color: #999999;
386
+ }
387
+
388
+ .text-primary {
389
+ color: #428bca;
390
+ }
391
+
392
+ .text-warning {
393
+ color: #c09853;
394
+ }
395
+
396
+ .text-danger {
397
+ color: #b94a48;
398
+ }
399
+
400
+ .text-success {
401
+ color: #468847;
402
+ }
403
+
404
+ .text-info {
405
+ color: #3a87ad;
406
+ }
407
+
408
+ .text-left {
409
+ text-align: left;
410
+ }
411
+
412
+ .text-right {
413
+ text-align: right;
414
+ }
415
+
416
+ .text-center {
417
+ text-align: center;
418
+ }
419
+
420
+ h1,
421
+ h2,
422
+ h3,
423
+ h4,
424
+ h5,
425
+ h6,
426
+ .h1,
427
+ .h2,
428
+ .h3,
429
+ .h4,
430
+ .h5,
431
+ .h6 {
432
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
433
+ font-weight: 500;
434
+ line-height: 1.1;
435
+ }
436
+
437
+ h1 small,
438
+ h2 small,
439
+ h3 small,
440
+ h4 small,
441
+ h5 small,
442
+ h6 small,
443
+ .h1 small,
444
+ .h2 small,
445
+ .h3 small,
446
+ .h4 small,
447
+ .h5 small,
448
+ .h6 small {
449
+ font-weight: normal;
450
+ line-height: 1;
451
+ color: #999999;
452
+ }
453
+
454
+ h1,
455
+ h2,
456
+ h3 {
457
+ margin-top: 20px;
458
+ margin-bottom: 10px;
459
+ }
460
+
461
+ h4,
462
+ h5,
463
+ h6 {
464
+ margin-top: 10px;
465
+ margin-bottom: 10px;
466
+ }
467
+
468
+ h1,
469
+ .h1 {
470
+ font-size: 38px;
471
+ }
472
+
473
+ h2,
474
+ .h2 {
475
+ font-size: 32px;
476
+ }
477
+
478
+ h3,
479
+ .h3 {
480
+ font-size: 24px;
481
+ }
482
+
483
+ h4,
484
+ .h4 {
485
+ font-size: 18px;
486
+ }
487
+
488
+ h5,
489
+ .h5 {
490
+ font-size: 14px;
491
+ }
492
+
493
+ h6,
494
+ .h6 {
495
+ font-size: 12px;
496
+ }
497
+
498
+ h1 small,
499
+ .h1 small {
500
+ font-size: 24px;
501
+ }
502
+
503
+ h2 small,
504
+ .h2 small {
505
+ font-size: 18px;
506
+ }
507
+
508
+ h3 small,
509
+ .h3 small,
510
+ h4 small,
511
+ .h4 small {
512
+ font-size: 14px;
513
+ }
514
+
515
+ .page-header {
516
+ padding-bottom: 9px;
517
+ margin: 40px 0 20px;
518
+ border-bottom: 1px solid #eeeeee;
519
+ }
520
+
521
+ ul,
522
+ ol {
523
+ margin-top: 0;
524
+ margin-bottom: 10px;
525
+ }
526
+
527
+ ul ul,
528
+ ol ul,
529
+ ul ol,
530
+ ol ol {
531
+ margin-bottom: 0;
532
+ }
533
+
534
+ .list-unstyled {
535
+ padding-left: 0;
536
+ list-style: none;
537
+ }
538
+
539
+ .list-inline {
540
+ padding-left: 0;
541
+ list-style: none;
542
+ }
543
+
544
+ .list-inline > li {
545
+ display: inline-block;
546
+ padding-right: 5px;
547
+ padding-left: 5px;
548
+ }
549
+
550
+ dl {
551
+ margin-bottom: 20px;
552
+ }
553
+
554
+ dt,
555
+ dd {
556
+ line-height: 1.428571429;
557
+ }
558
+
559
+ dt {
560
+ font-weight: bold;
561
+ }
562
+
563
+ dd {
564
+ margin-left: 0;
565
+ }
566
+
567
+ .dl-horizontal dt {
568
+ float: left;
569
+ width: 160px;
570
+ overflow: hidden;
571
+ clear: left;
572
+ text-align: right;
573
+ text-overflow: ellipsis;
574
+ white-space: nowrap;
575
+ }
576
+
577
+ .dl-horizontal dd {
578
+ margin-left: 180px;
579
+ }
580
+
581
+ .dl-horizontal dd:before,
582
+ .dl-horizontal dd:after {
583
+ display: table;
584
+ content: " ";
585
+ }
586
+
587
+ .dl-horizontal dd:after {
588
+ clear: both;
589
+ }
590
+
591
+ .dl-horizontal dd:before,
592
+ .dl-horizontal dd:after {
593
+ display: table;
594
+ content: " ";
595
+ }
596
+
597
+ .dl-horizontal dd:after {
598
+ clear: both;
599
+ }
600
+
601
+ abbr[title],
602
+ abbr[data-original-title] {
603
+ cursor: help;
604
+ border-bottom: 1px dotted #999999;
605
+ }
606
+
607
+ abbr.initialism {
608
+ font-size: 90%;
609
+ text-transform: uppercase;
610
+ }
611
+
612
+ blockquote {
613
+ padding: 10px 20px;
614
+ margin: 0 0 20px;
615
+ border-left: 5px solid #eeeeee;
616
+ }
617
+
618
+ blockquote p {
619
+ font-size: 17.5px;
620
+ font-weight: 300;
621
+ line-height: 1.25;
622
+ }
623
+
624
+ blockquote p:last-child {
625
+ margin-bottom: 0;
626
+ }
627
+
628
+ blockquote small {
629
+ display: block;
630
+ line-height: 1.428571429;
631
+ color: #999999;
632
+ }
633
+
634
+ blockquote small:before {
635
+ content: '\2014 \00A0';
636
+ }
637
+
638
+ blockquote.pull-right {
639
+ float: right;
640
+ padding-right: 15px;
641
+ padding-left: 0;
642
+ border-right: 5px solid #eeeeee;
643
+ border-left: 0;
644
+ }
645
+
646
+ blockquote.pull-right p,
647
+ blockquote.pull-right small {
648
+ text-align: right;
649
+ }
650
+
651
+ blockquote.pull-right small:before {
652
+ content: '';
653
+ }
654
+
655
+ blockquote.pull-right small:after {
656
+ content: '\00A0 \2014';
657
+ }
658
+
659
+ q:before,
660
+ q:after,
661
+ blockquote:before,
662
+ blockquote:after {
663
+ content: "";
664
+ }
665
+
666
+ address {
667
+ display: block;
668
+ margin-bottom: 20px;
669
+ font-style: normal;
670
+ line-height: 1.428571429;
671
+ }
672
+
673
+ code,
674
+ pre {
675
+ font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
676
+ }
677
+
678
+ code {
679
+ padding: 2px 4px;
680
+ font-size: 90%;
681
+ color: #c7254e;
682
+ white-space: nowrap;
683
+ background-color: #f9f2f4;
684
+ border-radius: 4px;
685
+ }
686
+
687
+ pre {
688
+ display: block;
689
+ padding: 9.5px;
690
+ margin: 0 0 10px;
691
+ font-size: 13px;
692
+ line-height: 1.428571429;
693
+ color: #333333;
694
+ word-break: break-all;
695
+ word-wrap: break-word;
696
+ background-color: #f5f5f5;
697
+ border: 1px solid #cccccc;
698
+ border-radius: 4px;
699
+ }
700
+
701
+ pre.prettyprint {
702
+ margin-bottom: 20px;
703
+ }
704
+
705
+ pre code {
706
+ padding: 0;
707
+ color: inherit;
708
+ white-space: pre-wrap;
709
+ background-color: transparent;
710
+ border: 0;
711
+ }
712
+
713
+ .pre-scrollable {
714
+ max-height: 340px;
715
+ overflow-y: scroll;
716
+ }
717
+
718
+ .container {
719
+ margin-right: auto;
720
+ margin-left: auto;
721
+ }
722
+
723
+ .container:before,
724
+ .container:after {
725
+ display: table;
726
+ content: " ";
727
+ }
728
+
729
+ .container:after {
730
+ clear: both;
731
+ }
732
+
733
+ .container:before,
734
+ .container:after {
735
+ display: table;
736
+ content: " ";
737
+ }
738
+
739
+ .container:after {
740
+ clear: both;
741
+ }
742
+
743
+ .row:before,
744
+ .row:after {
745
+ display: table;
746
+ content: " ";
747
+ }
748
+
749
+ .row:after {
750
+ clear: both;
751
+ }
752
+
753
+ .row:before,
754
+ .row:after {
755
+ display: table;
756
+ content: " ";
757
+ }
758
+
759
+ .row:after {
760
+ clear: both;
761
+ }
762
+
763
+ @media (min-width: 768px) {
764
+ .row {
765
+ margin-right: -15px;
766
+ margin-left: -15px;
767
+ }
768
+ }
769
+
770
+ .row .row {
771
+ margin-right: -15px;
772
+ margin-left: -15px;
773
+ }
774
+
775
+ .col-1,
776
+ .col-2,
777
+ .col-3,
778
+ .col-4,
779
+ .col-5,
780
+ .col-6,
781
+ .col-7,
782
+ .col-8,
783
+ .col-9,
784
+ .col-10,
785
+ .col-11,
786
+ .col-12,
787
+ .col-sm-1,
788
+ .col-sm-2,
789
+ .col-sm-3,
790
+ .col-sm-4,
791
+ .col-sm-5,
792
+ .col-sm-6,
793
+ .col-sm-7,
794
+ .col-sm-8,
795
+ .col-sm-9,
796
+ .col-sm-10,
797
+ .col-sm-11,
798
+ .col-sm-12,
799
+ .col-lg-1,
800
+ .col-lg-2,
801
+ .col-lg-3,
802
+ .col-lg-4,
803
+ .col-lg-5,
804
+ .col-lg-6,
805
+ .col-lg-7,
806
+ .col-lg-8,
807
+ .col-lg-9,
808
+ .col-lg-10,
809
+ .col-lg-11,
810
+ .col-lg-12 {
811
+ position: relative;
812
+ min-height: 1px;
813
+ padding-right: 15px;
814
+ padding-left: 15px;
815
+ }
816
+
817
+ .col-1,
818
+ .col-2,
819
+ .col-3,
820
+ .col-4,
821
+ .col-5,
822
+ .col-6,
823
+ .col-7,
824
+ .col-8,
825
+ .col-9,
826
+ .col-10,
827
+ .col-11,
828
+ .col-12 {
829
+ float: left;
830
+ }
831
+
832
+ .col-1 {
833
+ width: 8.333333333333332%;
834
+ }
835
+
836
+ .col-2 {
837
+ width: 16.666666666666664%;
838
+ }
839
+
840
+ .col-3 {
841
+ width: 25%;
842
+ }
843
+
844
+ .col-4 {
845
+ width: 33.33333333333333%;
846
+ }
847
+
848
+ .col-5 {
849
+ width: 41.66666666666667%;
850
+ }
851
+
852
+ .col-6 {
853
+ width: 50%;
854
+ }
855
+
856
+ .col-7 {
857
+ width: 58.333333333333336%;
858
+ }
859
+
860
+ .col-8 {
861
+ width: 66.66666666666666%;
862
+ }
863
+
864
+ .col-9 {
865
+ width: 75%;
866
+ }
867
+
868
+ .col-10 {
869
+ width: 83.33333333333334%;
870
+ }
871
+
872
+ .col-11 {
873
+ width: 91.66666666666666%;
874
+ }
875
+
876
+ .col-12 {
877
+ width: 100%;
878
+ }
879
+
880
+ @media (min-width: 768px) {
881
+ .container {
882
+ max-width: 728px;
883
+ }
884
+ .col-sm-1,
885
+ .col-sm-2,
886
+ .col-sm-3,
887
+ .col-sm-4,
888
+ .col-sm-5,
889
+ .col-sm-6,
890
+ .col-sm-7,
891
+ .col-sm-8,
892
+ .col-sm-9,
893
+ .col-sm-10,
894
+ .col-sm-11,
895
+ .col-sm-12 {
896
+ float: left;
897
+ }
898
+ .col-sm-1 {
899
+ width: 8.333333333333332%;
900
+ }
901
+ .col-sm-2 {
902
+ width: 16.666666666666664%;
903
+ }
904
+ .col-sm-3 {
905
+ width: 25%;
906
+ }
907
+ .col-sm-4 {
908
+ width: 33.33333333333333%;
909
+ }
910
+ .col-sm-5 {
911
+ width: 41.66666666666667%;
912
+ }
913
+ .col-sm-6 {
914
+ width: 50%;
915
+ }
916
+ .col-sm-7 {
917
+ width: 58.333333333333336%;
918
+ }
919
+ .col-sm-8 {
920
+ width: 66.66666666666666%;
921
+ }
922
+ .col-sm-9 {
923
+ width: 75%;
924
+ }
925
+ .col-sm-10 {
926
+ width: 83.33333333333334%;
927
+ }
928
+ .col-sm-11 {
929
+ width: 91.66666666666666%;
930
+ }
931
+ .col-sm-12 {
932
+ width: 100%;
933
+ }
934
+ .col-push-1 {
935
+ left: 8.333333333333332%;
936
+ }
937
+ .col-push-2 {
938
+ left: 16.666666666666664%;
939
+ }
940
+ .col-push-3 {
941
+ left: 25%;
942
+ }
943
+ .col-push-4 {
944
+ left: 33.33333333333333%;
945
+ }
946
+ .col-push-5 {
947
+ left: 41.66666666666667%;
948
+ }
949
+ .col-push-6 {
950
+ left: 50%;
951
+ }
952
+ .col-push-7 {
953
+ left: 58.333333333333336%;
954
+ }
955
+ .col-push-8 {
956
+ left: 66.66666666666666%;
957
+ }
958
+ .col-push-9 {
959
+ left: 75%;
960
+ }
961
+ .col-push-10 {
962
+ left: 83.33333333333334%;
963
+ }
964
+ .col-push-11 {
965
+ left: 91.66666666666666%;
966
+ }
967
+ .col-pull-1 {
968
+ right: 8.333333333333332%;
969
+ }
970
+ .col-pull-2 {
971
+ right: 16.666666666666664%;
972
+ }
973
+ .col-pull-3 {
974
+ right: 25%;
975
+ }
976
+ .col-pull-4 {
977
+ right: 33.33333333333333%;
978
+ }
979
+ .col-pull-5 {
980
+ right: 41.66666666666667%;
981
+ }
982
+ .col-pull-6 {
983
+ right: 50%;
984
+ }
985
+ .col-pull-7 {
986
+ right: 58.333333333333336%;
987
+ }
988
+ .col-pull-8 {
989
+ right: 66.66666666666666%;
990
+ }
991
+ .col-pull-9 {
992
+ right: 75%;
993
+ }
994
+ .col-pull-10 {
995
+ right: 83.33333333333334%;
996
+ }
997
+ .col-pull-11 {
998
+ right: 91.66666666666666%;
999
+ }
1000
+ }
1001
+
1002
+ @media (min-width: 992px) {
1003
+ .container {
1004
+ max-width: 940px;
1005
+ }
1006
+ .col-lg-1,
1007
+ .col-lg-2,
1008
+ .col-lg-3,
1009
+ .col-lg-4,
1010
+ .col-lg-5,
1011
+ .col-lg-6,
1012
+ .col-lg-7,
1013
+ .col-lg-8,
1014
+ .col-lg-9,
1015
+ .col-lg-10,
1016
+ .col-lg-11,
1017
+ .col-lg-12 {
1018
+ float: left;
1019
+ }
1020
+ .col-lg-1 {
1021
+ width: 8.333333333333332%;
1022
+ }
1023
+ .col-lg-2 {
1024
+ width: 16.666666666666664%;
1025
+ }
1026
+ .col-lg-3 {
1027
+ width: 25%;
1028
+ }
1029
+ .col-lg-4 {
1030
+ width: 33.33333333333333%;
1031
+ }
1032
+ .col-lg-5 {
1033
+ width: 41.66666666666667%;
1034
+ }
1035
+ .col-lg-6 {
1036
+ width: 50%;
1037
+ }
1038
+ .col-lg-7 {
1039
+ width: 58.333333333333336%;
1040
+ }
1041
+ .col-lg-8 {
1042
+ width: 66.66666666666666%;
1043
+ }
1044
+ .col-lg-9 {
1045
+ width: 75%;
1046
+ }
1047
+ .col-lg-10 {
1048
+ width: 83.33333333333334%;
1049
+ }
1050
+ .col-lg-11 {
1051
+ width: 91.66666666666666%;
1052
+ }
1053
+ .col-lg-12 {
1054
+ width: 100%;
1055
+ }
1056
+ .col-offset-1 {
1057
+ margin-left: 8.333333333333332%;
1058
+ }
1059
+ .col-offset-2 {
1060
+ margin-left: 16.666666666666664%;
1061
+ }
1062
+ .col-offset-3 {
1063
+ margin-left: 25%;
1064
+ }
1065
+ .col-offset-4 {
1066
+ margin-left: 33.33333333333333%;
1067
+ }
1068
+ .col-offset-5 {
1069
+ margin-left: 41.66666666666667%;
1070
+ }
1071
+ .col-offset-6 {
1072
+ margin-left: 50%;
1073
+ }
1074
+ .col-offset-7 {
1075
+ margin-left: 58.333333333333336%;
1076
+ }
1077
+ .col-offset-8 {
1078
+ margin-left: 66.66666666666666%;
1079
+ }
1080
+ .col-offset-9 {
1081
+ margin-left: 75%;
1082
+ }
1083
+ .col-offset-10 {
1084
+ margin-left: 83.33333333333334%;
1085
+ }
1086
+ .col-offset-11 {
1087
+ margin-left: 91.66666666666666%;
1088
+ }
1089
+ }
1090
+
1091
+ @media (min-width: 1200px) {
1092
+ .container {
1093
+ max-width: 1170px;
1094
+ }
1095
+ }
1096
+
1097
+ table {
1098
+ max-width: 100%;
1099
+ background-color: transparent;
1100
+ }
1101
+
1102
+ th {
1103
+ text-align: left;
1104
+ }
1105
+
1106
+ .table {
1107
+ width: 100%;
1108
+ margin-bottom: 20px;
1109
+ }
1110
+
1111
+ .table thead > tr > th,
1112
+ .table tbody > tr > th,
1113
+ .table tfoot > tr > th,
1114
+ .table thead > tr > td,
1115
+ .table tbody > tr > td,
1116
+ .table tfoot > tr > td {
1117
+ padding: 8px;
1118
+ line-height: 1.428571429;
1119
+ vertical-align: top;
1120
+ border-top: 1px solid #dddddd;
1121
+ }
1122
+
1123
+ .table thead > tr > th {
1124
+ vertical-align: bottom;
1125
+ }
1126
+
1127
+ .table caption + thead tr:first-child th,
1128
+ .table colgroup + thead tr:first-child th,
1129
+ .table thead:first-child tr:first-child th,
1130
+ .table caption + thead tr:first-child td,
1131
+ .table colgroup + thead tr:first-child td,
1132
+ .table thead:first-child tr:first-child td {
1133
+ border-top: 0;
1134
+ }
1135
+
1136
+ .table tbody + tbody {
1137
+ border-top: 2px solid #dddddd;
1138
+ }
1139
+
1140
+ .table .table {
1141
+ background-color: #ffffff;
1142
+ }
1143
+
1144
+ .table-condensed thead > tr > th,
1145
+ .table-condensed tbody > tr > th,
1146
+ .table-condensed tfoot > tr > th,
1147
+ .table-condensed thead > tr > td,
1148
+ .table-condensed tbody > tr > td,
1149
+ .table-condensed tfoot > tr > td {
1150
+ padding: 5px;
1151
+ }
1152
+
1153
+ .table-bordered {
1154
+ border: 1px solid #dddddd;
1155
+ }
1156
+
1157
+ .table-bordered > thead > tr > th,
1158
+ .table-bordered > tbody > tr > th,
1159
+ .table-bordered > tfoot > tr > th,
1160
+ .table-bordered > thead > tr > td,
1161
+ .table-bordered > tbody > tr > td,
1162
+ .table-bordered > tfoot > tr > td {
1163
+ border: 1px solid #dddddd;
1164
+ }
1165
+
1166
+ .table-striped > tbody > tr:nth-child(odd) > td,
1167
+ .table-striped > tbody > tr:nth-child(odd) > th {
1168
+ background-color: #f9f9f9;
1169
+ }
1170
+
1171
+ .table-hover > tbody > tr:hover > td,
1172
+ .table-hover > tbody > tr:hover > th {
1173
+ background-color: #f5f5f5;
1174
+ }
1175
+
1176
+ table col[class^="col-"] {
1177
+ display: table-column;
1178
+ float: none;
1179
+ }
1180
+
1181
+ table td[class^="col-"],
1182
+ table th[class^="col-"] {
1183
+ display: table-cell;
1184
+ float: none;
1185
+ }
1186
+
1187
+ .table > thead > tr > td.active,
1188
+ .table > tbody > tr > td.active,
1189
+ .table > tfoot > tr > td.active,
1190
+ .table > thead > tr > th.active,
1191
+ .table > tbody > tr > th.active,
1192
+ .table > tfoot > tr > th.active,
1193
+ .table > thead > tr.active > td,
1194
+ .table > tbody > tr.active > td,
1195
+ .table > tfoot > tr.active > td,
1196
+ .table > thead > tr.active > th,
1197
+ .table > tbody > tr.active > th,
1198
+ .table > tfoot > tr.active > th {
1199
+ background-color: #f5f5f5;
1200
+ }
1201
+
1202
+ .table > thead > tr > td.success,
1203
+ .table > tbody > tr > td.success,
1204
+ .table > tfoot > tr > td.success,
1205
+ .table > thead > tr > th.success,
1206
+ .table > tbody > tr > th.success,
1207
+ .table > tfoot > tr > th.success,
1208
+ .table > thead > tr.success > td,
1209
+ .table > tbody > tr.success > td,
1210
+ .table > tfoot > tr.success > td,
1211
+ .table > thead > tr.success > th,
1212
+ .table > tbody > tr.success > th,
1213
+ .table > tfoot > tr.success > th {
1214
+ background-color: #dff0d8;
1215
+ border-color: #d6e9c6;
1216
+ }
1217
+
1218
+ .table > thead > tr > td.danger,
1219
+ .table > tbody > tr > td.danger,
1220
+ .table > tfoot > tr > td.danger,
1221
+ .table > thead > tr > th.danger,
1222
+ .table > tbody > tr > th.danger,
1223
+ .table > tfoot > tr > th.danger,
1224
+ .table > thead > tr.danger > td,
1225
+ .table > tbody > tr.danger > td,
1226
+ .table > tfoot > tr.danger > td,
1227
+ .table > thead > tr.danger > th,
1228
+ .table > tbody > tr.danger > th,
1229
+ .table > tfoot > tr.danger > th {
1230
+ background-color: #f2dede;
1231
+ border-color: #eed3d7;
1232
+ }
1233
+
1234
+ .table > thead > tr > td.warning,
1235
+ .table > tbody > tr > td.warning,
1236
+ .table > tfoot > tr > td.warning,
1237
+ .table > thead > tr > th.warning,
1238
+ .table > tbody > tr > th.warning,
1239
+ .table > tfoot > tr > th.warning,
1240
+ .table > thead > tr.warning > td,
1241
+ .table > tbody > tr.warning > td,
1242
+ .table > tfoot > tr.warning > td,
1243
+ .table > thead > tr.warning > th,
1244
+ .table > tbody > tr.warning > th,
1245
+ .table > tfoot > tr.warning > th {
1246
+ background-color: #fcf8e3;
1247
+ border-color: #fbeed5;
1248
+ }
1249
+
1250
+ .table-hover > tbody > tr > td.success:hover,
1251
+ .table-hover > tbody > tr > th.success:hover,
1252
+ .table-hover > tbody > tr.success:hover > td {
1253
+ background-color: #d0e9c6;
1254
+ border-color: #c9e2b3;
1255
+ }
1256
+
1257
+ .table-hover > tbody > tr > td.danger:hover,
1258
+ .table-hover > tbody > tr > th.danger:hover,
1259
+ .table-hover > tbody > tr.danger:hover > td {
1260
+ background-color: #ebcccc;
1261
+ border-color: #e6c1c7;
1262
+ }
1263
+
1264
+ .table-hover > tbody > tr > td.warning:hover,
1265
+ .table-hover > tbody > tr > th.warning:hover,
1266
+ .table-hover > tbody > tr.warning:hover > td {
1267
+ background-color: #faf2cc;
1268
+ border-color: #f8e5be;
1269
+ }
1270
+
1271
+ fieldset {
1272
+ padding: 0;
1273
+ margin: 0;
1274
+ border: 0;
1275
+ }
1276
+
1277
+ legend {
1278
+ display: block;
1279
+ width: 100%;
1280
+ padding: 0;
1281
+ margin-bottom: 20px;
1282
+ font-size: 21px;
1283
+ line-height: inherit;
1284
+ color: #333333;
1285
+ border: 0;
1286
+ border-bottom: 1px solid #e5e5e5;
1287
+ }
1288
+
1289
+ label {
1290
+ display: inline-block;
1291
+ margin-bottom: 5px;
1292
+ font-weight: bold;
1293
+ }
1294
+
1295
+ input[type="search"] {
1296
+ -webkit-box-sizing: border-box;
1297
+ -moz-box-sizing: border-box;
1298
+ box-sizing: border-box;
1299
+ }
1300
+
1301
+ input[type="radio"],
1302
+ input[type="checkbox"] {
1303
+ margin: 4px 0 0;
1304
+ margin-top: 1px \9;
1305
+ /* IE8-9 */
1306
+
1307
+ line-height: normal;
1308
+ }
1309
+
1310
+ input[type="file"] {
1311
+ display: block;
1312
+ }
1313
+
1314
+ select[multiple],
1315
+ select[size] {
1316
+ height: auto;
1317
+ }
1318
+
1319
+ select optgroup {
1320
+ font-family: inherit;
1321
+ font-size: inherit;
1322
+ font-style: inherit;
1323
+ }
1324
+
1325
+ input[type="file"]:focus,
1326
+ input[type="radio"]:focus,
1327
+ input[type="checkbox"]:focus {
1328
+ outline: thin dotted #333;
1329
+ outline: 5px auto -webkit-focus-ring-color;
1330
+ outline-offset: -2px;
1331
+ }
1332
+
1333
+ input[type="number"]::-webkit-outer-spin-button,
1334
+ input[type="number"]::-webkit-inner-spin-button {
1335
+ height: auto;
1336
+ }
1337
+
1338
+ .form-control:-moz-placeholder {
1339
+ color: #999999;
1340
+ }
1341
+
1342
+ .form-control::-moz-placeholder {
1343
+ color: #999999;
1344
+ }
1345
+
1346
+ .form-control:-ms-input-placeholder {
1347
+ color: #999999;
1348
+ }
1349
+
1350
+ .form-control::-webkit-input-placeholder {
1351
+ color: #999999;
1352
+ }
1353
+
1354
+ .form-control {
1355
+ display: block;
1356
+ width: 100%;
1357
+ height: 38px;
1358
+ padding: 8px 12px;
1359
+ font-size: 14px;
1360
+ line-height: 1.428571429;
1361
+ color: #555555;
1362
+ vertical-align: middle;
1363
+ background-color: #ffffff;
1364
+ border: 1px solid #cccccc;
1365
+ border-radius: 4px;
1366
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1367
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1368
+ -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
1369
+ transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
1370
+ }
1371
+
1372
+ .form-control:focus {
1373
+ border-color: rgba(82, 168, 236, 0.8);
1374
+ outline: 0;
1375
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
1376
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
1377
+ }
1378
+
1379
+ .form-control[disabled],
1380
+ .form-control[readonly],
1381
+ fieldset[disabled] .form-control {
1382
+ cursor: not-allowed;
1383
+ background-color: #eeeeee;
1384
+ }
1385
+
1386
+ textarea.form-control {
1387
+ height: auto;
1388
+ }
1389
+
1390
+ .form-group {
1391
+ margin-bottom: 15px;
1392
+ }
1393
+
1394
+ .radio,
1395
+ .checkbox {
1396
+ display: block;
1397
+ min-height: 20px;
1398
+ padding-left: 20px;
1399
+ margin-top: 10px;
1400
+ margin-bottom: 10px;
1401
+ vertical-align: middle;
1402
+ }
1403
+
1404
+ .radio label,
1405
+ .checkbox label {
1406
+ display: inline;
1407
+ margin-bottom: 0;
1408
+ font-weight: normal;
1409
+ cursor: pointer;
1410
+ }
1411
+
1412
+ .radio input[type="radio"],
1413
+ .radio-inline input[type="radio"],
1414
+ .checkbox input[type="checkbox"],
1415
+ .checkbox-inline input[type="checkbox"] {
1416
+ float: left;
1417
+ margin-left: -20px;
1418
+ }
1419
+
1420
+ .radio + .radio,
1421
+ .checkbox + .checkbox {
1422
+ margin-top: -5px;
1423
+ }
1424
+
1425
+ .radio-inline,
1426
+ .checkbox-inline {
1427
+ display: inline-block;
1428
+ padding-left: 20px;
1429
+ margin-bottom: 0;
1430
+ font-weight: normal;
1431
+ vertical-align: middle;
1432
+ cursor: pointer;
1433
+ }
1434
+
1435
+ .radio-inline + .radio-inline,
1436
+ .checkbox-inline + .checkbox-inline {
1437
+ margin-top: 0;
1438
+ margin-left: 10px;
1439
+ }
1440
+
1441
+ .input-large {
1442
+ height: 56px;
1443
+ padding: 14px 16px;
1444
+ font-size: 18px;
1445
+ border-radius: 6px;
1446
+ }
1447
+
1448
+ .input-small {
1449
+ height: 30px;
1450
+ padding: 5px 10px;
1451
+ font-size: 12px;
1452
+ border-radius: 3px;
1453
+ }
1454
+
1455
+ select.input-large {
1456
+ height: 56px;
1457
+ line-height: 56px;
1458
+ }
1459
+
1460
+ select.input-small {
1461
+ height: 30px;
1462
+ line-height: 30px;
1463
+ }
1464
+
1465
+ textarea.input-large,
1466
+ textarea.input-small {
1467
+ height: auto;
1468
+ }
1469
+
1470
+ .has-warning .help-block,
1471
+ .has-warning .control-label {
1472
+ color: #c09853;
1473
+ }
1474
+
1475
+ .has-warning .form-control {
1476
+ padding-right: 32px;
1477
+ border-color: #c09853;
1478
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1479
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1480
+ }
1481
+
1482
+ .has-warning .form-control:focus {
1483
+ border-color: #a47e3c;
1484
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
1485
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
1486
+ }
1487
+
1488
+ .has-warning .input-group-addon {
1489
+ color: #c09853;
1490
+ background-color: #fcf8e3;
1491
+ border-color: #c09853;
1492
+ }
1493
+
1494
+ .has-error .help-block,
1495
+ .has-error .control-label {
1496
+ color: #b94a48;
1497
+ }
1498
+
1499
+ .has-error .form-control {
1500
+ padding-right: 32px;
1501
+ border-color: #b94a48;
1502
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1503
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1504
+ }
1505
+
1506
+ .has-error .form-control:focus {
1507
+ border-color: #953b39;
1508
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
1509
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
1510
+ }
1511
+
1512
+ .has-error .input-group-addon {
1513
+ color: #b94a48;
1514
+ background-color: #f2dede;
1515
+ border-color: #b94a48;
1516
+ }
1517
+
1518
+ .has-success .help-block,
1519
+ .has-success .control-label {
1520
+ color: #468847;
1521
+ }
1522
+
1523
+ .has-success .form-control {
1524
+ padding-right: 32px;
1525
+ border-color: #468847;
1526
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1527
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1528
+ }
1529
+
1530
+ .has-success .form-control:focus {
1531
+ border-color: #356635;
1532
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
1533
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
1534
+ }
1535
+
1536
+ .has-success .input-group-addon {
1537
+ color: #468847;
1538
+ background-color: #dff0d8;
1539
+ border-color: #468847;
1540
+ }
1541
+
1542
+ .help-block {
1543
+ display: block;
1544
+ margin-top: 5px;
1545
+ margin-bottom: 10px;
1546
+ color: #737373;
1547
+ }
1548
+
1549
+ .btn {
1550
+ display: inline-block;
1551
+ padding: 8px 12px;
1552
+ margin-bottom: 0;
1553
+ font-size: 14px;
1554
+ font-weight: 500;
1555
+ line-height: 1.428571429;
1556
+ text-align: center;
1557
+ white-space: nowrap;
1558
+ vertical-align: middle;
1559
+ cursor: pointer;
1560
+ border: 1px solid transparent;
1561
+ border-radius: 4px;
1562
+ -webkit-user-select: none;
1563
+ -moz-user-select: none;
1564
+ -ms-user-select: none;
1565
+ -o-user-select: none;
1566
+ user-select: none;
1567
+ }
1568
+
1569
+ .btn:focus {
1570
+ outline: thin dotted #333;
1571
+ outline: 5px auto -webkit-focus-ring-color;
1572
+ outline-offset: -2px;
1573
+ }
1574
+
1575
+ .btn:hover,
1576
+ .btn:focus {
1577
+ color: #ffffff;
1578
+ text-decoration: none;
1579
+ }
1580
+
1581
+ .btn:active,
1582
+ .btn.active {
1583
+ outline: 0;
1584
+ -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
1585
+ box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
1586
+ }
1587
+
1588
+ .btn.disabled,
1589
+ .btn[disabled],
1590
+ fieldset[disabled] .btn {
1591
+ pointer-events: none;
1592
+ cursor: default;
1593
+ opacity: 0.65;
1594
+ filter: alpha(opacity=65);
1595
+ -webkit-box-shadow: none;
1596
+ box-shadow: none;
1597
+ }
1598
+
1599
+ .btn-default {
1600
+ color: #ffffff;
1601
+ background-color: #474949;
1602
+ border-color: #474949;
1603
+ }
1604
+
1605
+ .btn-default:hover,
1606
+ .btn-default:focus,
1607
+ .btn-default:active,
1608
+ .btn-default.active {
1609
+ background-color: #3a3c3c;
1610
+ border-color: #2e2f2f;
1611
+ }
1612
+
1613
+ .btn-default.disabled,
1614
+ .btn-default[disabled],
1615
+ fieldset[disabled] .btn-default,
1616
+ .btn-default.disabled:hover,
1617
+ .btn-default[disabled]:hover,
1618
+ fieldset[disabled] .btn-default:hover,
1619
+ .btn-default.disabled:focus,
1620
+ .btn-default[disabled]:focus,
1621
+ fieldset[disabled] .btn-default:focus,
1622
+ .btn-default.disabled:active,
1623
+ .btn-default[disabled]:active,
1624
+ fieldset[disabled] .btn-default:active,
1625
+ .btn-default.disabled.active,
1626
+ .btn-default[disabled].active,
1627
+ fieldset[disabled] .btn-default.active {
1628
+ background-color: #474949;
1629
+ border-color: #474949;
1630
+ }
1631
+
1632
+ .btn-primary {
1633
+ color: #ffffff;
1634
+ background-color: #428bca;
1635
+ border-color: #428bca;
1636
+ }
1637
+
1638
+ .btn-primary:hover,
1639
+ .btn-primary:focus,
1640
+ .btn-primary:active,
1641
+ .btn-primary.active {
1642
+ background-color: #357ebd;
1643
+ border-color: #3071a9;
1644
+ }
1645
+
1646
+ .btn-primary.disabled,
1647
+ .btn-primary[disabled],
1648
+ fieldset[disabled] .btn-primary,
1649
+ .btn-primary.disabled:hover,
1650
+ .btn-primary[disabled]:hover,
1651
+ fieldset[disabled] .btn-primary:hover,
1652
+ .btn-primary.disabled:focus,
1653
+ .btn-primary[disabled]:focus,
1654
+ fieldset[disabled] .btn-primary:focus,
1655
+ .btn-primary.disabled:active,
1656
+ .btn-primary[disabled]:active,
1657
+ fieldset[disabled] .btn-primary:active,
1658
+ .btn-primary.disabled.active,
1659
+ .btn-primary[disabled].active,
1660
+ fieldset[disabled] .btn-primary.active {
1661
+ background-color: #428bca;
1662
+ border-color: #428bca;
1663
+ }
1664
+
1665
+ .btn-warning {
1666
+ color: #ffffff;
1667
+ background-color: #f0ad4e;
1668
+ border-color: #f0ad4e;
1669
+ }
1670
+
1671
+ .btn-warning:hover,
1672
+ .btn-warning:focus,
1673
+ .btn-warning:active,
1674
+ .btn-warning.active {
1675
+ background-color: #eea236;
1676
+ border-color: #ec971f;
1677
+ }
1678
+
1679
+ .btn-warning.disabled,
1680
+ .btn-warning[disabled],
1681
+ fieldset[disabled] .btn-warning,
1682
+ .btn-warning.disabled:hover,
1683
+ .btn-warning[disabled]:hover,
1684
+ fieldset[disabled] .btn-warning:hover,
1685
+ .btn-warning.disabled:focus,
1686
+ .btn-warning[disabled]:focus,
1687
+ fieldset[disabled] .btn-warning:focus,
1688
+ .btn-warning.disabled:active,
1689
+ .btn-warning[disabled]:active,
1690
+ fieldset[disabled] .btn-warning:active,
1691
+ .btn-warning.disabled.active,
1692
+ .btn-warning[disabled].active,
1693
+ fieldset[disabled] .btn-warning.active {
1694
+ background-color: #f0ad4e;
1695
+ border-color: #f0ad4e;
1696
+ }
1697
+
1698
+ .btn-danger {
1699
+ color: #ffffff;
1700
+ background-color: #d9534f;
1701
+ border-color: #d9534f;
1702
+ }
1703
+
1704
+ .btn-danger:hover,
1705
+ .btn-danger:focus,
1706
+ .btn-danger:active,
1707
+ .btn-danger.active {
1708
+ background-color: #d43f3a;
1709
+ border-color: #c9302c;
1710
+ }
1711
+
1712
+ .btn-danger.disabled,
1713
+ .btn-danger[disabled],
1714
+ fieldset[disabled] .btn-danger,
1715
+ .btn-danger.disabled:hover,
1716
+ .btn-danger[disabled]:hover,
1717
+ fieldset[disabled] .btn-danger:hover,
1718
+ .btn-danger.disabled:focus,
1719
+ .btn-danger[disabled]:focus,
1720
+ fieldset[disabled] .btn-danger:focus,
1721
+ .btn-danger.disabled:active,
1722
+ .btn-danger[disabled]:active,
1723
+ fieldset[disabled] .btn-danger:active,
1724
+ .btn-danger.disabled.active,
1725
+ .btn-danger[disabled].active,
1726
+ fieldset[disabled] .btn-danger.active {
1727
+ background-color: #d9534f;
1728
+ border-color: #d9534f;
1729
+ }
1730
+
1731
+ .btn-success {
1732
+ color: #ffffff;
1733
+ background-color: #5cb85c;
1734
+ border-color: #5cb85c;
1735
+ }
1736
+
1737
+ .btn-success:hover,
1738
+ .btn-success:focus,
1739
+ .btn-success:active,
1740
+ .btn-success.active {
1741
+ background-color: #4cae4c;
1742
+ border-color: #449d44;
1743
+ }
1744
+
1745
+ .btn-success.disabled,
1746
+ .btn-success[disabled],
1747
+ fieldset[disabled] .btn-success,
1748
+ .btn-success.disabled:hover,
1749
+ .btn-success[disabled]:hover,
1750
+ fieldset[disabled] .btn-success:hover,
1751
+ .btn-success.disabled:focus,
1752
+ .btn-success[disabled]:focus,
1753
+ fieldset[disabled] .btn-success:focus,
1754
+ .btn-success.disabled:active,
1755
+ .btn-success[disabled]:active,
1756
+ fieldset[disabled] .btn-success:active,
1757
+ .btn-success.disabled.active,
1758
+ .btn-success[disabled].active,
1759
+ fieldset[disabled] .btn-success.active {
1760
+ background-color: #5cb85c;
1761
+ border-color: #5cb85c;
1762
+ }
1763
+
1764
+ .btn-info {
1765
+ color: #ffffff;
1766
+ background-color: #5bc0de;
1767
+ border-color: #5bc0de;
1768
+ }
1769
+
1770
+ .btn-info:hover,
1771
+ .btn-info:focus,
1772
+ .btn-info:active,
1773
+ .btn-info.active {
1774
+ background-color: #46b8da;
1775
+ border-color: #31b0d5;
1776
+ }
1777
+
1778
+ .btn-info.disabled,
1779
+ .btn-info[disabled],
1780
+ fieldset[disabled] .btn-info,
1781
+ .btn-info.disabled:hover,
1782
+ .btn-info[disabled]:hover,
1783
+ fieldset[disabled] .btn-info:hover,
1784
+ .btn-info.disabled:focus,
1785
+ .btn-info[disabled]:focus,
1786
+ fieldset[disabled] .btn-info:focus,
1787
+ .btn-info.disabled:active,
1788
+ .btn-info[disabled]:active,
1789
+ fieldset[disabled] .btn-info:active,
1790
+ .btn-info.disabled.active,
1791
+ .btn-info[disabled].active,
1792
+ fieldset[disabled] .btn-info.active {
1793
+ background-color: #5bc0de;
1794
+ border-color: #5bc0de;
1795
+ }
1796
+
1797
+ .btn-link {
1798
+ font-weight: normal;
1799
+ color: #428bca;
1800
+ cursor: pointer;
1801
+ border-radius: 0;
1802
+ }
1803
+
1804
+ .btn-link,
1805
+ .btn-link:active,
1806
+ .btn-link[disabled],
1807
+ fieldset[disabled] .btn-link {
1808
+ background-color: transparent;
1809
+ -webkit-box-shadow: none;
1810
+ box-shadow: none;
1811
+ }
1812
+
1813
+ .btn-link,
1814
+ .btn-link:hover,
1815
+ .btn-link:focus,
1816
+ .btn-link:active {
1817
+ border-color: transparent;
1818
+ }
1819
+
1820
+ .btn-link:hover,
1821
+ .btn-link:focus {
1822
+ color: #2a6496;
1823
+ text-decoration: underline;
1824
+ background-color: transparent;
1825
+ }
1826
+
1827
+ .btn-link[disabled]:hover,
1828
+ fieldset[disabled] .btn-link:hover,
1829
+ .btn-link[disabled]:focus,
1830
+ fieldset[disabled] .btn-link:focus {
1831
+ color: #333333;
1832
+ text-decoration: none;
1833
+ }
1834
+
1835
+ .btn-large {
1836
+ padding: 14px 16px;
1837
+ font-size: 18px;
1838
+ border-radius: 6px;
1839
+ }
1840
+
1841
+ .btn-small,
1842
+ .btn-mini {
1843
+ padding: 5px 10px;
1844
+ font-size: 12px;
1845
+ line-height: 1.5;
1846
+ border-radius: 3px;
1847
+ }
1848
+
1849
+ .btn-mini {
1850
+ padding: 3px 5px;
1851
+ }
1852
+
1853
+ .btn-block {
1854
+ display: block;
1855
+ width: 100%;
1856
+ padding-right: 0;
1857
+ padding-left: 0;
1858
+ }
1859
+
1860
+ .btn-block + .btn-block {
1861
+ margin-top: 5px;
1862
+ }
1863
+
1864
+ input[type="submit"].btn-block,
1865
+ input[type="reset"].btn-block,
1866
+ input[type="button"].btn-block {
1867
+ width: 100%;
1868
+ }
1869
+
1870
+ .fade {
1871
+ opacity: 0;
1872
+ -webkit-transition: opacity 0.15s linear;
1873
+ transition: opacity 0.15s linear;
1874
+ }
1875
+
1876
+ .fade.in {
1877
+ opacity: 1;
1878
+ }
1879
+
1880
+ .collapse {
1881
+ display: none;
1882
+ }
1883
+
1884
+ .collapse.in {
1885
+ display: block;
1886
+ }
1887
+
1888
+ .collapsing {
1889
+ position: relative;
1890
+ height: 0;
1891
+ overflow: hidden;
1892
+ -webkit-transition: height 0.35s ease;
1893
+ transition: height 0.35s ease;
1894
+ }
1895
+
1896
+ .input-group {
1897
+ display: table;
1898
+ border-collapse: separate;
1899
+ }
1900
+
1901
+ .input-group.col {
1902
+ float: none;
1903
+ padding-right: 0;
1904
+ padding-left: 0;
1905
+ }
1906
+
1907
+ .input-group .form-control {
1908
+ width: 100%;
1909
+ margin-bottom: 0;
1910
+ }
1911
+
1912
+ .input-group-addon,
1913
+ .input-group-btn,
1914
+ .input-group .form-control {
1915
+ display: table-cell;
1916
+ }
1917
+
1918
+ .input-group-addon:not(:first-child):not(:last-child),
1919
+ .input-group-btn:not(:first-child):not(:last-child),
1920
+ .input-group .form-control:not(:first-child):not(:last-child) {
1921
+ border-radius: 0;
1922
+ }
1923
+
1924
+ .input-group-addon,
1925
+ .input-group-btn {
1926
+ width: 1%;
1927
+ white-space: nowrap;
1928
+ vertical-align: middle;
1929
+ }
1930
+
1931
+ .input-group-addon {
1932
+ padding: 8px 12px;
1933
+ font-size: 14px;
1934
+ font-weight: normal;
1935
+ line-height: 1.428571429;
1936
+ text-align: center;
1937
+ background-color: #eeeeee;
1938
+ border: 1px solid #cccccc;
1939
+ border-radius: 4px;
1940
+ -webkit-box-sizing: border-box;
1941
+ -moz-box-sizing: border-box;
1942
+ box-sizing: border-box;
1943
+ }
1944
+
1945
+ .input-group-addon.input-small {
1946
+ padding: 5px 10px;
1947
+ font-size: 12px;
1948
+ border-radius: 3px;
1949
+ }
1950
+
1951
+ .input-group-addon.input-large {
1952
+ padding: 14px 16px;
1953
+ font-size: 18px;
1954
+ border-radius: 6px;
1955
+ }
1956
+
1957
+ .input-group-addon input[type="radio"],
1958
+ .input-group-addon input[type="checkbox"] {
1959
+ margin-top: 0;
1960
+ }
1961
+
1962
+ .input-group .form-control:first-child,
1963
+ .input-group-addon:first-child,
1964
+ .input-group-btn:first-child > .btn,
1965
+ .input-group-btn:first-child > .dropdown-toggle,
1966
+ .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {
1967
+ border-top-right-radius: 0;
1968
+ border-bottom-right-radius: 0;
1969
+ }
1970
+
1971
+ .input-group-addon:first-child {
1972
+ border-right: 0;
1973
+ }
1974
+
1975
+ .input-group .form-control:last-child,
1976
+ .input-group-addon:last-child,
1977
+ .input-group-btn:last-child > .btn,
1978
+ .input-group-btn:last-child > .dropdown-toggle,
1979
+ .input-group-btn:first-child > .btn:not(:first-child) {
1980
+ border-bottom-left-radius: 0;
1981
+ border-top-left-radius: 0;
1982
+ }
1983
+
1984
+ .input-group-addon:last-child {
1985
+ border-left: 0;
1986
+ }
1987
+
1988
+ .input-group-btn {
1989
+ position: relative;
1990
+ white-space: nowrap;
1991
+ }
1992
+
1993
+ .input-group-btn > .btn {
1994
+ position: relative;
1995
+ }
1996
+
1997
+ .input-group-btn > .btn + .btn {
1998
+ margin-left: -4px;
1999
+ }
2000
+
2001
+ .input-group-btn > .btn:hover,
2002
+ .input-group-btn > .btn:active {
2003
+ z-index: 2;
2004
+ }
2005
+
2006
+ .form-inline .form-control,
2007
+ .form-inline .radio,
2008
+ .form-inline .checkbox {
2009
+ display: inline-block;
2010
+ }
2011
+
2012
+ .form-inline .radio,
2013
+ .form-inline .checkbox {
2014
+ margin-top: 0;
2015
+ margin-bottom: 0;
2016
+ }
2017
+
2018
+ .form-horizontal .control-label {
2019
+ padding-top: 9px;
2020
+ }
2021
+
2022
+ .form-horizontal .form-group:before,
2023
+ .form-horizontal .form-group:after {
2024
+ display: table;
2025
+ content: " ";
2026
+ }
2027
+
2028
+ .form-horizontal .form-group:after {
2029
+ clear: both;
2030
+ }
2031
+
2032
+ .form-horizontal .form-group:before,
2033
+ .form-horizontal .form-group:after {
2034
+ display: table;
2035
+ content: " ";
2036
+ }
2037
+
2038
+ .form-horizontal .form-group:after {
2039
+ clear: both;
2040
+ }
2041
+
2042
+ @media (min-width: 768px) {
2043
+ .form-horizontal .form-group {
2044
+ margin-right: -15px;
2045
+ margin-left: -15px;
2046
+ }
2047
+ }
2048
+
2049
+ .form-horizontal .form-group .row {
2050
+ margin-right: -15px;
2051
+ margin-left: -15px;
2052
+ }
2053
+
2054
+ @media (min-width: 768px) {
2055
+ .form-horizontal .control-label {
2056
+ text-align: right;
2057
+ }
2058
+ }
2059
+
2060
+ .caret {
2061
+ display: inline-block;
2062
+ width: 0;
2063
+ height: 0;
2064
+ margin-left: 2px;
2065
+ vertical-align: middle;
2066
+ border-top: 4px solid #000000;
2067
+ border-right: 4px solid transparent;
2068
+ border-left: 4px solid transparent;
2069
+ content: "";
2070
+ }
2071
+
2072
+ .dropdown-menu {
2073
+ position: absolute;
2074
+ top: 100%;
2075
+ left: 0;
2076
+ z-index: 1000;
2077
+ display: none;
2078
+ float: left;
2079
+ min-width: 160px;
2080
+ padding: 5px 0;
2081
+ margin: 2px 0 0;
2082
+ list-style: none;
2083
+ background-color: #ffffff;
2084
+ border: 1px solid #cccccc;
2085
+ border: 1px solid rgba(0, 0, 0, 0.15);
2086
+ border-radius: 4px;
2087
+ -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
2088
+ box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
2089
+ background-clip: padding-box;
2090
+ }
2091
+
2092
+ .dropdown-menu.pull-right {
2093
+ right: 0;
2094
+ left: auto;
2095
+ }
2096
+
2097
+ .dropdown-menu .divider {
2098
+ height: 1px;
2099
+ margin: 9px 0;
2100
+ overflow: hidden;
2101
+ background-color: #e5e5e5;
2102
+ }
2103
+
2104
+ .dropdown-menu > li > a {
2105
+ display: block;
2106
+ padding: 3px 20px;
2107
+ clear: both;
2108
+ font-weight: normal;
2109
+ line-height: 1.428571429;
2110
+ color: #333333;
2111
+ white-space: nowrap;
2112
+ }
2113
+
2114
+ .dropdown-menu > li > a:hover,
2115
+ .dropdown-menu > li > a:focus {
2116
+ color: #ffffff;
2117
+ text-decoration: none;
2118
+ background-color: #357ebd;
2119
+ background-image: -webkit-gradient(linear, left 0%, left 100%, from(#428bca), to(#357ebd));
2120
+ background-image: -webkit-linear-gradient(top, #428bca, 0%, #357ebd, 100%);
2121
+ background-image: -moz-linear-gradient(top, #428bca 0%, #357ebd 100%);
2122
+ background-image: linear-gradient(to bottom, #428bca 0%, #357ebd 100%);
2123
+ background-repeat: repeat-x;
2124
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff357ebd', GradientType=0);
2125
+ }
2126
+
2127
+ .dropdown-menu > .active > a,
2128
+ .dropdown-menu > .active > a:hover,
2129
+ .dropdown-menu > .active > a:focus {
2130
+ color: #ffffff;
2131
+ text-decoration: none;
2132
+ background-color: #357ebd;
2133
+ background-image: -webkit-gradient(linear, left 0%, left 100%, from(#428bca), to(#357ebd));
2134
+ background-image: -webkit-linear-gradient(top, #428bca, 0%, #357ebd, 100%);
2135
+ background-image: -moz-linear-gradient(top, #428bca 0%, #357ebd 100%);
2136
+ background-image: linear-gradient(to bottom, #428bca 0%, #357ebd 100%);
2137
+ background-repeat: repeat-x;
2138
+ outline: 0;
2139
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff357ebd', GradientType=0);
2140
+ }
2141
+
2142
+ .dropdown-menu > .disabled > a,
2143
+ .dropdown-menu > .disabled > a:hover,
2144
+ .dropdown-menu > .disabled > a:focus {
2145
+ color: #999999;
2146
+ }
2147
+
2148
+ .dropdown-menu > .disabled > a:hover,
2149
+ .dropdown-menu > .disabled > a:focus {
2150
+ text-decoration: none;
2151
+ cursor: not-allowed;
2152
+ background-color: transparent;
2153
+ background-image: none;
2154
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
2155
+ }
2156
+
2157
+ .open > .dropdown-menu {
2158
+ display: block;
2159
+ }
2160
+
2161
+ .open > a {
2162
+ outline: 0;
2163
+ }
2164
+
2165
+ .dropdown-header {
2166
+ display: block;
2167
+ padding: 3px 20px;
2168
+ font-size: 12px;
2169
+ line-height: 1.428571429;
2170
+ color: #999999;
2171
+ }
2172
+
2173
+ .dropdown-backdrop {
2174
+ position: fixed;
2175
+ top: 0;
2176
+ right: 0;
2177
+ bottom: 0;
2178
+ left: 0;
2179
+ z-index: 990;
2180
+ }
2181
+
2182
+ .pull-right > .dropdown-menu {
2183
+ right: 0;
2184
+ left: auto;
2185
+ }
2186
+
2187
+ .dropup .caret,
2188
+ .navbar-fixed-bottom .dropdown .caret {
2189
+ border-top: 0;
2190
+ border-bottom: 4px solid #000000;
2191
+ content: "";
2192
+ }
2193
+
2194
+ .dropup .dropdown-menu,
2195
+ .navbar-fixed-bottom .dropdown .dropdown-menu {
2196
+ top: auto;
2197
+ bottom: 100%;
2198
+ margin-bottom: 1px;
2199
+ }
2200
+
2201
+ .list-group {
2202
+ padding-left: 0;
2203
+ margin-bottom: 20px;
2204
+ }
2205
+
2206
+ .list-group-item {
2207
+ position: relative;
2208
+ display: block;
2209
+ padding: 10px 30px 10px 15px;
2210
+ margin-bottom: -1px;
2211
+ background-color: #ffffff;
2212
+ border: 1px solid #dddddd;
2213
+ }
2214
+
2215
+ .list-group-item:first-child {
2216
+ border-top-right-radius: 4px;
2217
+ border-top-left-radius: 4px;
2218
+ }
2219
+
2220
+ .list-group-item:last-child {
2221
+ margin-bottom: 0;
2222
+ border-bottom-right-radius: 4px;
2223
+ border-bottom-left-radius: 4px;
2224
+ }
2225
+
2226
+ .list-group-item > .badge {
2227
+ float: right;
2228
+ margin-right: -15px;
2229
+ }
2230
+
2231
+ .list-group-item-heading {
2232
+ margin-top: 0;
2233
+ margin-bottom: 5px;
2234
+ }
2235
+
2236
+ .list-group-item-text {
2237
+ margin-bottom: 0;
2238
+ line-height: 1.3;
2239
+ }
2240
+
2241
+ a.list-group-item .list-group-item-heading {
2242
+ color: #333333;
2243
+ }
2244
+
2245
+ a.list-group-item .list-group-item-text {
2246
+ color: #555555;
2247
+ }
2248
+
2249
+ a.list-group-item:hover,
2250
+ a.list-group-item:focus {
2251
+ text-decoration: none;
2252
+ background-color: #f5f5f5;
2253
+ }
2254
+
2255
+ a.list-group-item.active {
2256
+ z-index: 2;
2257
+ color: #ffffff;
2258
+ background-color: #428bca;
2259
+ border-color: #428bca;
2260
+ }
2261
+
2262
+ a.list-group-item.active .list-group-item-heading {
2263
+ color: inherit;
2264
+ }
2265
+
2266
+ a.list-group-item.active .list-group-item-text {
2267
+ color: #e1edf7;
2268
+ }
2269
+
2270
+ .panel {
2271
+ padding: 15px;
2272
+ margin-bottom: 20px;
2273
+ background-color: #ffffff;
2274
+ border: 1px solid #dddddd;
2275
+ border-radius: 4px;
2276
+ -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
2277
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
2278
+ }
2279
+
2280
+ .panel-heading {
2281
+ padding: 10px 15px;
2282
+ margin: -15px -15px 15px;
2283
+ background-color: #f5f5f5;
2284
+ border-bottom: 1px solid #dddddd;
2285
+ border-top-right-radius: 3px;
2286
+ border-top-left-radius: 3px;
2287
+ }
2288
+
2289
+ .panel-title {
2290
+ margin-top: 0;
2291
+ margin-bottom: 0;
2292
+ font-size: 17.5px;
2293
+ font-weight: 500;
2294
+ }
2295
+
2296
+ .panel-footer {
2297
+ padding: 10px 15px;
2298
+ margin: 15px -15px -15px;
2299
+ background-color: #f5f5f5;
2300
+ border-top: 1px solid #dddddd;
2301
+ border-bottom-right-radius: 3px;
2302
+ border-bottom-left-radius: 3px;
2303
+ }
2304
+
2305
+ .panel-primary {
2306
+ border-color: #428bca;
2307
+ }
2308
+
2309
+ .panel-primary .panel-heading {
2310
+ color: #ffffff;
2311
+ background-color: #428bca;
2312
+ border-color: #428bca;
2313
+ }
2314
+
2315
+ .panel-success {
2316
+ border-color: #d6e9c6;
2317
+ }
2318
+
2319
+ .panel-success .panel-heading {
2320
+ color: #468847;
2321
+ background-color: #dff0d8;
2322
+ border-color: #d6e9c6;
2323
+ }
2324
+
2325
+ .panel-warning {
2326
+ border-color: #fbeed5;
2327
+ }
2328
+
2329
+ .panel-warning .panel-heading {
2330
+ color: #c09853;
2331
+ background-color: #fcf8e3;
2332
+ border-color: #fbeed5;
2333
+ }
2334
+
2335
+ .panel-danger {
2336
+ border-color: #eed3d7;
2337
+ }
2338
+
2339
+ .panel-danger .panel-heading {
2340
+ color: #b94a48;
2341
+ background-color: #f2dede;
2342
+ border-color: #eed3d7;
2343
+ }
2344
+
2345
+ .panel-info {
2346
+ border-color: #bce8f1;
2347
+ }
2348
+
2349
+ .panel-info .panel-heading {
2350
+ color: #3a87ad;
2351
+ background-color: #d9edf7;
2352
+ border-color: #bce8f1;
2353
+ }
2354
+
2355
+ .list-group-flush {
2356
+ margin: 15px -15px -15px;
2357
+ }
2358
+
2359
+ .list-group-flush .list-group-item {
2360
+ border-width: 1px 0;
2361
+ }
2362
+
2363
+ .list-group-flush .list-group-item:first-child {
2364
+ border-top-right-radius: 0;
2365
+ border-top-left-radius: 0;
2366
+ }
2367
+
2368
+ .list-group-flush .list-group-item:last-child {
2369
+ border-bottom: 0;
2370
+ }
2371
+
2372
+ .well {
2373
+ min-height: 20px;
2374
+ padding: 19px;
2375
+ margin-bottom: 20px;
2376
+ background-color: #f5f5f5;
2377
+ border: 1px solid #e3e3e3;
2378
+ border-radius: 4px;
2379
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
2380
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
2381
+ }
2382
+
2383
+ .well blockquote {
2384
+ border-color: #ddd;
2385
+ border-color: rgba(0, 0, 0, 0.15);
2386
+ }
2387
+
2388
+ .well-large {
2389
+ padding: 24px;
2390
+ border-radius: 6px;
2391
+ }
2392
+
2393
+ .well-small {
2394
+ padding: 9px;
2395
+ border-radius: 3px;
2396
+ }
2397
+
2398
+ .close {
2399
+ float: right;
2400
+ font-size: 21px;
2401
+ font-weight: bold;
2402
+ line-height: 1;
2403
+ color: #000000;
2404
+ text-shadow: 0 1px 0 #ffffff;
2405
+ opacity: 0.2;
2406
+ filter: alpha(opacity=20);
2407
+ }
2408
+
2409
+ .close:hover,
2410
+ .close:focus {
2411
+ color: #000000;
2412
+ text-decoration: none;
2413
+ cursor: pointer;
2414
+ opacity: 0.5;
2415
+ filter: alpha(opacity=50);
2416
+ }
2417
+
2418
+ button.close {
2419
+ padding: 0;
2420
+ cursor: pointer;
2421
+ background: transparent;
2422
+ border: 0;
2423
+ -webkit-appearance: none;
2424
+ }
2425
+
2426
+ .nav {
2427
+ padding-left: 0;
2428
+ margin-bottom: 0;
2429
+ list-style: none;
2430
+ }
2431
+
2432
+ .nav:before,
2433
+ .nav:after {
2434
+ display: table;
2435
+ content: " ";
2436
+ }
2437
+
2438
+ .nav:after {
2439
+ clear: both;
2440
+ }
2441
+
2442
+ .nav:before,
2443
+ .nav:after {
2444
+ display: table;
2445
+ content: " ";
2446
+ }
2447
+
2448
+ .nav:after {
2449
+ clear: both;
2450
+ }
2451
+
2452
+ .nav > li {
2453
+ position: relative;
2454
+ display: block;
2455
+ }
2456
+
2457
+ .nav > li > a {
2458
+ position: relative;
2459
+ display: block;
2460
+ padding: 10px 15px;
2461
+ }
2462
+
2463
+ .nav > li > a:hover,
2464
+ .nav > li > a:focus {
2465
+ text-decoration: none;
2466
+ background-color: #eeeeee;
2467
+ }
2468
+
2469
+ .nav > li.disabled > a {
2470
+ color: #999999;
2471
+ }
2472
+
2473
+ .nav > li.disabled > a:hover,
2474
+ .nav > li.disabled > a:focus {
2475
+ color: #999999;
2476
+ text-decoration: none;
2477
+ cursor: not-allowed;
2478
+ background-color: transparent;
2479
+ }
2480
+
2481
+ .nav.open > a,
2482
+ .nav.open > a:hover,
2483
+ .nav.open > a:focus {
2484
+ color: #ffffff;
2485
+ background-color: #428bca;
2486
+ border-color: #428bca;
2487
+ }
2488
+
2489
+ .nav.open > a .caret,
2490
+ .nav.open > a:hover .caret,
2491
+ .nav.open > a:focus .caret {
2492
+ border-top-color: #ffffff;
2493
+ border-bottom-color: #ffffff;
2494
+ }
2495
+
2496
+ .nav > .pull-right {
2497
+ float: right;
2498
+ }
2499
+
2500
+ .nav .nav-divider {
2501
+ height: 1px;
2502
+ margin: 9px 0;
2503
+ overflow: hidden;
2504
+ background-color: #e5e5e5;
2505
+ }
2506
+
2507
+ .nav-tabs {
2508
+ border-bottom: 1px solid #dddddd;
2509
+ }
2510
+
2511
+ .nav-tabs > li {
2512
+ float: left;
2513
+ margin-bottom: -1px;
2514
+ }
2515
+
2516
+ .nav-tabs > li > a {
2517
+ margin-right: 2px;
2518
+ line-height: 1.428571429;
2519
+ border: 1px solid transparent;
2520
+ border-radius: 4px 4px 0 0;
2521
+ }
2522
+
2523
+ .nav-tabs > li > a:hover {
2524
+ border-color: #eeeeee;
2525
+ }
2526
+
2527
+ .nav-tabs > li.active > a,
2528
+ .nav-tabs > li.active > a:hover,
2529
+ .nav-tabs > li.active > a:focus {
2530
+ color: #555555;
2531
+ cursor: default;
2532
+ background-color: #ffffff;
2533
+ border: 1px solid #dddddd;
2534
+ border-bottom-color: transparent;
2535
+ }
2536
+
2537
+ .nav-tabs.nav-justified {
2538
+ width: 100%;
2539
+ border-bottom: 0;
2540
+ }
2541
+
2542
+ .nav-tabs.nav-justified > li {
2543
+ display: table-cell;
2544
+ float: none;
2545
+ width: 1%;
2546
+ }
2547
+
2548
+ .nav-tabs.nav-justified > li > a {
2549
+ text-align: center;
2550
+ }
2551
+
2552
+ .nav-tabs.nav-justified > li > a {
2553
+ margin-right: 0;
2554
+ border-bottom: 1px solid #dddddd;
2555
+ }
2556
+
2557
+ .nav-tabs.nav-justified > .active > a {
2558
+ border-bottom-color: #ffffff;
2559
+ }
2560
+
2561
+ .nav-pills > li {
2562
+ float: left;
2563
+ }
2564
+
2565
+ .nav-pills > li > a {
2566
+ border-radius: 5px;
2567
+ }
2568
+
2569
+ .nav-pills > li + li {
2570
+ margin-left: 2px;
2571
+ }
2572
+
2573
+ .nav-pills > li.active > a,
2574
+ .nav-pills > li.active > a:hover,
2575
+ .nav-pills > li.active > a:focus {
2576
+ color: #ffffff;
2577
+ background-color: #428bca;
2578
+ }
2579
+
2580
+ .nav-stacked > li {
2581
+ float: none;
2582
+ }
2583
+
2584
+ .nav-stacked > li + li {
2585
+ margin-top: 2px;
2586
+ margin-left: 0;
2587
+ }
2588
+
2589
+ .nav-justified {
2590
+ width: 100%;
2591
+ }
2592
+
2593
+ .nav-justified > li {
2594
+ display: table-cell;
2595
+ float: none;
2596
+ width: 1%;
2597
+ }
2598
+
2599
+ .nav-justified > li > a {
2600
+ text-align: center;
2601
+ }
2602
+
2603
+ .nav-tabs-justified {
2604
+ border-bottom: 0;
2605
+ }
2606
+
2607
+ .nav-tabs-justified > li > a {
2608
+ margin-right: 0;
2609
+ border-bottom: 1px solid #dddddd;
2610
+ }
2611
+
2612
+ .nav-tabs-justified > .active > a {
2613
+ border-bottom-color: #ffffff;
2614
+ }
2615
+
2616
+ .tabbable:before,
2617
+ .tabbable:after {
2618
+ display: table;
2619
+ content: " ";
2620
+ }
2621
+
2622
+ .tabbable:after {
2623
+ clear: both;
2624
+ }
2625
+
2626
+ .tabbable:before,
2627
+ .tabbable:after {
2628
+ display: table;
2629
+ content: " ";
2630
+ }
2631
+
2632
+ .tabbable:after {
2633
+ clear: both;
2634
+ }
2635
+
2636
+ .tab-content > .tab-pane,
2637
+ .pill-content > .pill-pane {
2638
+ display: none;
2639
+ }
2640
+
2641
+ .tab-content > .active,
2642
+ .pill-content > .active {
2643
+ display: block;
2644
+ }
2645
+
2646
+ .nav .caret {
2647
+ border-top-color: #428bca;
2648
+ border-bottom-color: #428bca;
2649
+ }
2650
+
2651
+ .nav a:hover .caret {
2652
+ border-top-color: #2a6496;
2653
+ border-bottom-color: #2a6496;
2654
+ }
2655
+
2656
+ .nav-tabs .dropdown-menu {
2657
+ margin-top: -1px;
2658
+ border-top-right-radius: 0;
2659
+ border-top-left-radius: 0;
2660
+ }
2661
+
2662
+ .navbar {
2663
+ position: relative;
2664
+ min-height: 50px;
2665
+ padding-right: 15px;
2666
+ padding-left: 15px;
2667
+ margin-bottom: 20px;
2668
+ background-color: #eeeeee;
2669
+ border-radius: 4px;
2670
+ }
2671
+
2672
+ .navbar:before,
2673
+ .navbar:after {
2674
+ display: table;
2675
+ content: " ";
2676
+ }
2677
+
2678
+ .navbar:after {
2679
+ clear: both;
2680
+ }
2681
+
2682
+ .navbar:before,
2683
+ .navbar:after {
2684
+ display: table;
2685
+ content: " ";
2686
+ }
2687
+
2688
+ .navbar:after {
2689
+ clear: both;
2690
+ }
2691
+
2692
+ .navbar-nav {
2693
+ margin-top: 10px;
2694
+ margin-bottom: 15px;
2695
+ }
2696
+
2697
+ .navbar-nav > li > a {
2698
+ padding-top: 15px;
2699
+ padding-bottom: 15px;
2700
+ line-height: 20px;
2701
+ color: #777777;
2702
+ border-radius: 4px;
2703
+ }
2704
+
2705
+ .navbar-nav > li > a:hover,
2706
+ .navbar-nav > li > a:focus {
2707
+ color: #333333;
2708
+ background-color: transparent;
2709
+ }
2710
+
2711
+ .navbar-nav > .active > a,
2712
+ .navbar-nav > .active > a:hover,
2713
+ .navbar-nav > .active > a:focus {
2714
+ color: #555555;
2715
+ background-color: #d5d5d5;
2716
+ }
2717
+
2718
+ .navbar-nav > .disabled > a,
2719
+ .navbar-nav > .disabled > a:hover,
2720
+ .navbar-nav > .disabled > a:focus {
2721
+ color: #cccccc;
2722
+ background-color: transparent;
2723
+ }
2724
+
2725
+ .navbar-nav.pull-right {
2726
+ width: 100%;
2727
+ }
2728
+
2729
+ .navbar-static-top {
2730
+ border-radius: 0;
2731
+ }
2732
+
2733
+ .navbar-fixed-top,
2734
+ .navbar-fixed-bottom {
2735
+ position: fixed;
2736
+ right: 0;
2737
+ left: 0;
2738
+ z-index: 1030;
2739
+ border-radius: 0;
2740
+ }
2741
+
2742
+ .navbar-fixed-top {
2743
+ top: 0;
2744
+ }
2745
+
2746
+ .navbar-fixed-bottom {
2747
+ bottom: 0;
2748
+ margin-bottom: 0;
2749
+ }
2750
+
2751
+ .navbar-brand {
2752
+ display: block;
2753
+ max-width: 200px;
2754
+ padding: 15px 15px;
2755
+ margin-right: auto;
2756
+ margin-left: auto;
2757
+ font-size: 18px;
2758
+ font-weight: 500;
2759
+ line-height: 20px;
2760
+ color: #777777;
2761
+ text-align: center;
2762
+ }
2763
+
2764
+ .navbar-brand:hover,
2765
+ .navbar-brand:focus {
2766
+ color: #5e5e5e;
2767
+ text-decoration: none;
2768
+ background-color: transparent;
2769
+ }
2770
+
2771
+ .navbar-toggle {
2772
+ position: absolute;
2773
+ top: 9px;
2774
+ right: 10px;
2775
+ width: 48px;
2776
+ height: 32px;
2777
+ padding: 8px 12px;
2778
+ background-color: transparent;
2779
+ border: 1px solid #dddddd;
2780
+ border-radius: 4px;
2781
+ }
2782
+
2783
+ .navbar-toggle:hover,
2784
+ .navbar-toggle:focus {
2785
+ background-color: #dddddd;
2786
+ }
2787
+
2788
+ .navbar-toggle .icon-bar {
2789
+ display: block;
2790
+ width: 22px;
2791
+ height: 2px;
2792
+ background-color: #cccccc;
2793
+ border-radius: 1px;
2794
+ }
2795
+
2796
+ .navbar-toggle .icon-bar + .icon-bar {
2797
+ margin-top: 4px;
2798
+ }
2799
+
2800
+ .navbar-form {
2801
+ margin-top: 6px;
2802
+ margin-bottom: 6px;
2803
+ }
2804
+
2805
+ .navbar-form .form-control,
2806
+ .navbar-form .radio,
2807
+ .navbar-form .checkbox {
2808
+ display: inline-block;
2809
+ }
2810
+
2811
+ .navbar-form .radio,
2812
+ .navbar-form .checkbox {
2813
+ margin-top: 0;
2814
+ margin-bottom: 0;
2815
+ }
2816
+
2817
+ .navbar-nav > li > .dropdown-menu {
2818
+ margin-top: 0;
2819
+ border-top-right-radius: 0;
2820
+ border-top-left-radius: 0;
2821
+ }
2822
+
2823
+ .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
2824
+ border-bottom-right-radius: 0;
2825
+ border-bottom-left-radius: 0;
2826
+ }
2827
+
2828
+ .navbar-nav > .dropdown > a:hover .caret,
2829
+ .navbar-nav > .dropdown > a:focus .caret {
2830
+ border-top-color: #333333;
2831
+ border-bottom-color: #333333;
2832
+ }
2833
+
2834
+ .navbar-nav > .open > a,
2835
+ .navbar-nav > .open > a:hover,
2836
+ .navbar-nav > .open > a:focus {
2837
+ color: #555555;
2838
+ background-color: #d5d5d5;
2839
+ }
2840
+
2841
+ .navbar-nav > .open > a .caret,
2842
+ .navbar-nav > .open > a:hover .caret,
2843
+ .navbar-nav > .open > a:focus .caret {
2844
+ border-top-color: #555555;
2845
+ border-bottom-color: #555555;
2846
+ }
2847
+
2848
+ .navbar-nav > .dropdown > a .caret {
2849
+ border-top-color: #777777;
2850
+ border-bottom-color: #777777;
2851
+ }
2852
+
2853
+ .navbar-nav.pull-right > li > .dropdown-menu,
2854
+ .navbar-nav > li > .dropdown-menu.pull-right {
2855
+ right: 0;
2856
+ left: auto;
2857
+ }
2858
+
2859
+ .navbar-inverse {
2860
+ background-color: #222222;
2861
+ }
2862
+
2863
+ .navbar-inverse .navbar-brand {
2864
+ color: #999999;
2865
+ }
2866
+
2867
+ .navbar-inverse .navbar-brand:hover,
2868
+ .navbar-inverse .navbar-brand:focus {
2869
+ color: #ffffff;
2870
+ background-color: transparent;
2871
+ }
2872
+
2873
+ .navbar-inverse .navbar-text {
2874
+ color: #999999;
2875
+ }
2876
+
2877
+ .navbar-inverse .navbar-nav > li > a {
2878
+ color: #999999;
2879
+ }
2880
+
2881
+ .navbar-inverse .navbar-nav > li > a:hover,
2882
+ .navbar-inverse .navbar-nav > li > a:focus {
2883
+ color: #ffffff;
2884
+ background-color: transparent;
2885
+ }
2886
+
2887
+ .navbar-inverse .navbar-nav > .active > a,
2888
+ .navbar-inverse .navbar-nav > .active > a:hover,
2889
+ .navbar-inverse .navbar-nav > .active > a:focus {
2890
+ color: #ffffff;
2891
+ background-color: #080808;
2892
+ }
2893
+
2894
+ .navbar-inverse .navbar-nav > .disabled > a,
2895
+ .navbar-inverse .navbar-nav > .disabled > a:hover,
2896
+ .navbar-inverse .navbar-nav > .disabled > a:focus {
2897
+ color: #444444;
2898
+ background-color: transparent;
2899
+ }
2900
+
2901
+ .navbar-inverse .navbar-toggle {
2902
+ border-color: #333333;
2903
+ }
2904
+
2905
+ .navbar-inverse .navbar-toggle:hover,
2906
+ .navbar-inverse .navbar-toggle:focus {
2907
+ background-color: #333333;
2908
+ }
2909
+
2910
+ .navbar-inverse .navbar-toggle .icon-bar {
2911
+ background-color: #ffffff;
2912
+ }
2913
+
2914
+ .navbar-inverse .navbar-nav > .open > a,
2915
+ .navbar-inverse .navbar-nav > .open > a:hover,
2916
+ .navbar-inverse .navbar-nav > .open > a:focus {
2917
+ color: #ffffff;
2918
+ background-color: #080808;
2919
+ }
2920
+
2921
+ .navbar-inverse .navbar-nav > .dropdown > a:hover .caret {
2922
+ border-top-color: #ffffff;
2923
+ border-bottom-color: #ffffff;
2924
+ }
2925
+
2926
+ .navbar-inverse .navbar-nav > .dropdown > a .caret {
2927
+ border-top-color: #999999;
2928
+ border-bottom-color: #999999;
2929
+ }
2930
+
2931
+ .navbar-inverse .navbar-nav > .open > a .caret,
2932
+ .navbar-inverse .navbar-nav > .open > a:hover .caret,
2933
+ .navbar-inverse .navbar-nav > .open > a:focus .caret {
2934
+ border-top-color: #ffffff;
2935
+ border-bottom-color: #ffffff;
2936
+ }
2937
+
2938
+ @media screen and (min-width: 768px) {
2939
+ .navbar-brand {
2940
+ float: left;
2941
+ margin-right: 5px;
2942
+ margin-left: -15px;
2943
+ }
2944
+ .navbar-nav {
2945
+ float: left;
2946
+ margin-top: 0;
2947
+ margin-bottom: 0;
2948
+ }
2949
+ .navbar-nav > li {
2950
+ float: left;
2951
+ }
2952
+ .navbar-nav > li > a {
2953
+ border-radius: 0;
2954
+ }
2955
+ .navbar-nav.pull-right {
2956
+ float: right;
2957
+ width: auto;
2958
+ }
2959
+ .navbar-toggle {
2960
+ position: relative;
2961
+ top: auto;
2962
+ left: auto;
2963
+ display: none;
2964
+ }
2965
+ .nav-collapse.collapse {
2966
+ display: block !important;
2967
+ height: auto !important;
2968
+ overflow: visible !important;
2969
+ }
2970
+ }
2971
+
2972
+ .navbar-btn {
2973
+ margin-top: 6px;
2974
+ }
2975
+
2976
+ .navbar-text {
2977
+ margin-top: 15px;
2978
+ margin-bottom: 15px;
2979
+ }
2980
+
2981
+ .navbar-link {
2982
+ color: #777777;
2983
+ }
2984
+
2985
+ .navbar-link:hover {
2986
+ color: #333333;
2987
+ }
2988
+
2989
+ .navbar-inverse .navbar-link {
2990
+ color: #999999;
2991
+ }
2992
+
2993
+ .navbar-inverse .navbar-link:hover {
2994
+ color: #ffffff;
2995
+ }
2996
+
2997
+ .btn .caret {
2998
+ border-top-color: #ffffff;
2999
+ }
3000
+
3001
+ .dropup .btn .caret {
3002
+ border-bottom-color: #ffffff;
3003
+ }
3004
+
3005
+ .btn-group,
3006
+ .btn-group-vertical {
3007
+ position: relative;
3008
+ display: inline-block;
3009
+ vertical-align: middle;
3010
+ }
3011
+
3012
+ .btn-group > .btn,
3013
+ .btn-group-vertical > .btn {
3014
+ position: relative;
3015
+ float: left;
3016
+ }
3017
+
3018
+ .btn-group > .btn:hover,
3019
+ .btn-group-vertical > .btn:hover,
3020
+ .btn-group > .btn:focus,
3021
+ .btn-group-vertical > .btn:focus,
3022
+ .btn-group > .btn:active,
3023
+ .btn-group-vertical > .btn:active {
3024
+ z-index: 2;
3025
+ }
3026
+
3027
+ .btn-group .btn + .btn {
3028
+ margin-left: -1px;
3029
+ }
3030
+
3031
+ .btn-toolbar:before,
3032
+ .btn-toolbar:after {
3033
+ display: table;
3034
+ content: " ";
3035
+ }
3036
+
3037
+ .btn-toolbar:after {
3038
+ clear: both;
3039
+ }
3040
+
3041
+ .btn-toolbar:before,
3042
+ .btn-toolbar:after {
3043
+ display: table;
3044
+ content: " ";
3045
+ }
3046
+
3047
+ .btn-toolbar:after {
3048
+ clear: both;
3049
+ }
3050
+
3051
+ .btn-toolbar .btn-group {
3052
+ float: left;
3053
+ }
3054
+
3055
+ .btn-toolbar > .btn + .btn,
3056
+ .btn-toolbar > .btn-group + .btn,
3057
+ .btn-toolbar > .btn + .btn-group,
3058
+ .btn-toolbar > .btn-group + .btn-group {
3059
+ margin-left: 5px;
3060
+ }
3061
+
3062
+ .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
3063
+ border-radius: 0;
3064
+ }
3065
+
3066
+ .btn-group > .btn:first-child {
3067
+ margin-left: 0;
3068
+ }
3069
+
3070
+ .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
3071
+ border-top-right-radius: 0;
3072
+ border-bottom-right-radius: 0;
3073
+ }
3074
+
3075
+ .btn-group > .btn:last-child:not(:first-child),
3076
+ .btn-group > .dropdown-toggle:not(:first-child) {
3077
+ border-bottom-left-radius: 0;
3078
+ border-top-left-radius: 0;
3079
+ }
3080
+
3081
+ .btn-group > .btn-group {
3082
+ float: left;
3083
+ }
3084
+
3085
+ .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
3086
+ border-radius: 0;
3087
+ }
3088
+
3089
+ .btn-group > .btn-group:first-child > .btn:last-child,
3090
+ .btn-group > .btn-group:first-child > .dropdown-toggle {
3091
+ border-top-right-radius: 0;
3092
+ border-bottom-right-radius: 0;
3093
+ }
3094
+
3095
+ .btn-group > .btn-group:last-child > .btn:first-child {
3096
+ border-bottom-left-radius: 0;
3097
+ border-top-left-radius: 0;
3098
+ }
3099
+
3100
+ .btn-group .dropdown-toggle:active,
3101
+ .btn-group.open .dropdown-toggle {
3102
+ outline: 0;
3103
+ }
3104
+
3105
+ .btn-group > .btn + .dropdown-toggle {
3106
+ padding-right: 8px;
3107
+ padding-left: 8px;
3108
+ }
3109
+
3110
+ .btn-group > .btn-large + .dropdown-toggle {
3111
+ padding-right: 12px;
3112
+ padding-left: 12px;
3113
+ }
3114
+
3115
+ .btn-group.open .dropdown-toggle {
3116
+ -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3117
+ box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3118
+ }
3119
+
3120
+ .btn .caret {
3121
+ margin-left: 0;
3122
+ }
3123
+
3124
+ .btn-large .caret {
3125
+ border-width: 5px;
3126
+ }
3127
+
3128
+ .dropup .btn-large .caret {
3129
+ border-bottom-width: 5px;
3130
+ }
3131
+
3132
+ .btn-group-vertical > .btn {
3133
+ display: block;
3134
+ float: none;
3135
+ width: 100%;
3136
+ max-width: 100%;
3137
+ }
3138
+
3139
+ .btn-group-vertical > .btn + .btn {
3140
+ margin-top: -1px;
3141
+ }
3142
+
3143
+ .btn-group-vertical .btn:not(:first-child):not(:last-child) {
3144
+ border-radius: 0;
3145
+ }
3146
+
3147
+ .btn-group-vertical .btn:first-child {
3148
+ border-bottom-right-radius: 0;
3149
+ border-bottom-left-radius: 0;
3150
+ }
3151
+
3152
+ .btn-group-vertical .btn:last-child {
3153
+ border-top-right-radius: 0;
3154
+ border-top-left-radius: 0;
3155
+ }
3156
+
3157
+ .btn-group-justified {
3158
+ display: table;
3159
+ width: 100%;
3160
+ }
3161
+
3162
+ .btn-group-justified .btn {
3163
+ display: table-cell;
3164
+ float: none;
3165
+ width: 1%;
3166
+ }
3167
+
3168
+ .btn-group[data-toggle="buttons"] > .btn > input[type="radio"],
3169
+ .btn-group[data-toggle="buttons"] > .btn > input[type="checkbox"] {
3170
+ display: none;
3171
+ }
3172
+
3173
+ .breadcrumb {
3174
+ padding: 8px 15px;
3175
+ margin-bottom: 20px;
3176
+ list-style: none;
3177
+ background-color: #f5f5f5;
3178
+ border-radius: 4px;
3179
+ }
3180
+
3181
+ .breadcrumb > li {
3182
+ display: inline-block;
3183
+ }
3184
+
3185
+ .breadcrumb > li + li:before {
3186
+ padding: 0 5px;
3187
+ color: #cccccc;
3188
+ content: "/\00a0";
3189
+ }
3190
+
3191
+ .breadcrumb > .active {
3192
+ color: #999999;
3193
+ }
3194
+
3195
+ .pagination {
3196
+ display: inline-block;
3197
+ padding-left: 0;
3198
+ margin: 20px 0;
3199
+ border-radius: 4px;
3200
+ }
3201
+
3202
+ .pagination > li {
3203
+ display: inline;
3204
+ }
3205
+
3206
+ .pagination > li > a,
3207
+ .pagination > li > span {
3208
+ float: left;
3209
+ padding: 4px 12px;
3210
+ line-height: 1.428571429;
3211
+ text-decoration: none;
3212
+ background-color: #ffffff;
3213
+ border: 1px solid #dddddd;
3214
+ border-left-width: 0;
3215
+ }
3216
+
3217
+ .pagination > li:first-child > a,
3218
+ .pagination > li:first-child > span {
3219
+ border-left-width: 1px;
3220
+ border-bottom-left-radius: 4px;
3221
+ border-top-left-radius: 4px;
3222
+ }
3223
+
3224
+ .pagination > li:last-child > a,
3225
+ .pagination > li:last-child > span {
3226
+ border-top-right-radius: 4px;
3227
+ border-bottom-right-radius: 4px;
3228
+ }
3229
+
3230
+ .pagination > li > a:hover,
3231
+ .pagination > li > a:focus,
3232
+ .pagination > .active > a,
3233
+ .pagination > .active > span {
3234
+ background-color: #f5f5f5;
3235
+ }
3236
+
3237
+ .pagination > .active > a,
3238
+ .pagination > .active > span {
3239
+ color: #999999;
3240
+ cursor: default;
3241
+ }
3242
+
3243
+ .pagination > .disabled > span,
3244
+ .pagination > .disabled > a,
3245
+ .pagination > .disabled > a:hover,
3246
+ .pagination > .disabled > a:focus {
3247
+ color: #999999;
3248
+ cursor: not-allowed;
3249
+ background-color: #ffffff;
3250
+ }
3251
+
3252
+ .pagination-large > li > a,
3253
+ .pagination-large > li > span {
3254
+ padding: 14px 16px;
3255
+ font-size: 18px;
3256
+ }
3257
+
3258
+ .pagination-large > li:first-child > a,
3259
+ .pagination-large > li:first-child > span {
3260
+ border-bottom-left-radius: 6px;
3261
+ border-top-left-radius: 6px;
3262
+ }
3263
+
3264
+ .pagination-large > li:last-child > a,
3265
+ .pagination-large > li:last-child > span {
3266
+ border-top-right-radius: 6px;
3267
+ border-bottom-right-radius: 6px;
3268
+ }
3269
+
3270
+ .pagination-small > li > a,
3271
+ .pagination-small > li > span {
3272
+ padding: 5px 10px;
3273
+ font-size: 12px;
3274
+ }
3275
+
3276
+ .pagination-small > li:first-child > a,
3277
+ .pagination-small > li:first-child > span {
3278
+ border-bottom-left-radius: 3px;
3279
+ border-top-left-radius: 3px;
3280
+ }
3281
+
3282
+ .pagination-small > li:last-child > a,
3283
+ .pagination-small > li:last-child > span {
3284
+ border-top-right-radius: 3px;
3285
+ border-bottom-right-radius: 3px;
3286
+ }
3287
+
3288
+ .pager {
3289
+ padding-left: 0;
3290
+ margin: 20px 0;
3291
+ text-align: center;
3292
+ list-style: none;
3293
+ }
3294
+
3295
+ .pager:before,
3296
+ .pager:after {
3297
+ display: table;
3298
+ content: " ";
3299
+ }
3300
+
3301
+ .pager:after {
3302
+ clear: both;
3303
+ }
3304
+
3305
+ .pager:before,
3306
+ .pager:after {
3307
+ display: table;
3308
+ content: " ";
3309
+ }
3310
+
3311
+ .pager:after {
3312
+ clear: both;
3313
+ }
3314
+
3315
+ .pager li {
3316
+ display: inline;
3317
+ }
3318
+
3319
+ .pager li > a,
3320
+ .pager li > span {
3321
+ display: inline-block;
3322
+ padding: 5px 14px;
3323
+ background-color: #ffffff;
3324
+ border: 1px solid #dddddd;
3325
+ border-radius: 15px;
3326
+ }
3327
+
3328
+ .pager li > a:hover,
3329
+ .pager li > a:focus {
3330
+ text-decoration: none;
3331
+ background-color: #f5f5f5;
3332
+ }
3333
+
3334
+ .pager .next > a,
3335
+ .pager .next > span {
3336
+ float: right;
3337
+ }
3338
+
3339
+ .pager .previous > a,
3340
+ .pager .previous > span {
3341
+ float: left;
3342
+ }
3343
+
3344
+ .pager .disabled > a,
3345
+ .pager .disabled > a:hover,
3346
+ .pager .disabled > a:focus,
3347
+ .pager .disabled > span {
3348
+ color: #999999;
3349
+ cursor: not-allowed;
3350
+ background-color: #ffffff;
3351
+ }
3352
+
3353
+ .modal-open {
3354
+ overflow: hidden;
3355
+ }
3356
+
3357
+ .modal {
3358
+ position: fixed;
3359
+ top: 0;
3360
+ right: 0;
3361
+ bottom: 0;
3362
+ left: 0;
3363
+ z-index: 1040;
3364
+ display: none;
3365
+ overflow: auto;
3366
+ overflow-y: scroll;
3367
+ }
3368
+
3369
+ .modal.fade .modal-dialog {
3370
+ -webkit-transform: translate(0, -25%);
3371
+ -ms-transform: translate(0, -25%);
3372
+ transform: translate(0, -25%);
3373
+ -webkit-transition: -webkit-transform 0.3s ease-out;
3374
+ -moz-transition: -moz-transform 0.3s ease-out;
3375
+ -o-transition: -o-transform 0.3s ease-out;
3376
+ transition: transform 0.3s ease-out;
3377
+ }
3378
+
3379
+ .modal.fade.in .modal-dialog {
3380
+ -webkit-transform: translate(0, 0);
3381
+ -ms-transform: translate(0, 0);
3382
+ transform: translate(0, 0);
3383
+ }
3384
+
3385
+ .modal-dialog {
3386
+ z-index: 1050;
3387
+ width: auto;
3388
+ padding: 10px;
3389
+ margin-right: auto;
3390
+ margin-left: auto;
3391
+ }
3392
+
3393
+ .modal-content {
3394
+ position: relative;
3395
+ background-color: #ffffff;
3396
+ border: 1px solid #999999;
3397
+ border: 1px solid rgba(0, 0, 0, 0.2);
3398
+ border-radius: 6px;
3399
+ outline: none;
3400
+ -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
3401
+ box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
3402
+ background-clip: padding-box;
3403
+ }
3404
+
3405
+ .modal-backdrop {
3406
+ position: fixed;
3407
+ top: 0;
3408
+ right: 0;
3409
+ bottom: 0;
3410
+ left: 0;
3411
+ z-index: 1030;
3412
+ background-color: #000000;
3413
+ }
3414
+
3415
+ .modal-backdrop.fade {
3416
+ opacity: 0;
3417
+ filter: alpha(opacity=0);
3418
+ }
3419
+
3420
+ .modal-backdrop.fade.in {
3421
+ opacity: 0.5;
3422
+ filter: alpha(opacity=50);
3423
+ }
3424
+
3425
+ .modal-header {
3426
+ min-height: 16.428571429px;
3427
+ padding: 15px;
3428
+ border-bottom: 1px solid #e5e5e5;
3429
+ }
3430
+
3431
+ .modal-header .close {
3432
+ margin-top: -2px;
3433
+ }
3434
+
3435
+ .modal-title {
3436
+ margin: 0;
3437
+ line-height: 1.428571429;
3438
+ }
3439
+
3440
+ .modal-body {
3441
+ position: relative;
3442
+ padding: 20px;
3443
+ }
3444
+
3445
+ .modal-footer {
3446
+ padding: 19px 20px 20px;
3447
+ margin-top: 15px;
3448
+ text-align: right;
3449
+ border-top: 1px solid #e5e5e5;
3450
+ }
3451
+
3452
+ .modal-footer:before,
3453
+ .modal-footer:after {
3454
+ display: table;
3455
+ content: " ";
3456
+ }
3457
+
3458
+ .modal-footer:after {
3459
+ clear: both;
3460
+ }
3461
+
3462
+ .modal-footer:before,
3463
+ .modal-footer:after {
3464
+ display: table;
3465
+ content: " ";
3466
+ }
3467
+
3468
+ .modal-footer:after {
3469
+ clear: both;
3470
+ }
3471
+
3472
+ .modal-footer .btn + .btn {
3473
+ margin-bottom: 0;
3474
+ margin-left: 5px;
3475
+ }
3476
+
3477
+ .modal-footer .btn-group .btn + .btn {
3478
+ margin-left: -1px;
3479
+ }
3480
+
3481
+ .modal-footer .btn-block + .btn-block {
3482
+ margin-left: 0;
3483
+ }
3484
+
3485
+ @media screen and (min-width: 768px) {
3486
+ .modal-dialog {
3487
+ right: auto;
3488
+ left: 50%;
3489
+ width: 600px;
3490
+ padding-top: 30px;
3491
+ padding-bottom: 30px;
3492
+ }
3493
+ .modal-content {
3494
+ -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
3495
+ box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
3496
+ }
3497
+ }
3498
+
3499
+ .tooltip {
3500
+ position: absolute;
3501
+ z-index: 1030;
3502
+ display: block;
3503
+ font-size: 12px;
3504
+ line-height: 1.4;
3505
+ opacity: 0;
3506
+ filter: alpha(opacity=0);
3507
+ visibility: visible;
3508
+ }
3509
+
3510
+ .tooltip.in {
3511
+ opacity: 1;
3512
+ filter: alpha(opacity=100);
3513
+ }
3514
+
3515
+ .tooltip.top {
3516
+ padding: 5px 0;
3517
+ margin-top: -3px;
3518
+ }
3519
+
3520
+ .tooltip.right {
3521
+ padding: 0 5px;
3522
+ margin-left: 3px;
3523
+ }
3524
+
3525
+ .tooltip.bottom {
3526
+ padding: 5px 0;
3527
+ margin-top: 3px;
3528
+ }
3529
+
3530
+ .tooltip.left {
3531
+ padding: 0 5px;
3532
+ margin-left: -3px;
3533
+ }
3534
+
3535
+ .tooltip-inner {
3536
+ max-width: 200px;
3537
+ padding: 3px 8px;
3538
+ color: #ffffff;
3539
+ text-align: center;
3540
+ text-decoration: none;
3541
+ background-color: rgba(0, 0, 0, 0.9);
3542
+ border-radius: 4px;
3543
+ }
3544
+
3545
+ .tooltip-arrow {
3546
+ position: absolute;
3547
+ width: 0;
3548
+ height: 0;
3549
+ border-color: transparent;
3550
+ border-style: solid;
3551
+ }
3552
+
3553
+ .tooltip.top .tooltip-arrow {
3554
+ bottom: 0;
3555
+ left: 50%;
3556
+ margin-left: -5px;
3557
+ border-top-color: rgba(0, 0, 0, 0.9);
3558
+ border-width: 5px 5px 0;
3559
+ }
3560
+
3561
+ .tooltip.top-left .tooltip-arrow {
3562
+ bottom: 0;
3563
+ left: 5px;
3564
+ border-top-color: rgba(0, 0, 0, 0.9);
3565
+ border-width: 5px 5px 0;
3566
+ }
3567
+
3568
+ .tooltip.top-right .tooltip-arrow {
3569
+ right: 5px;
3570
+ bottom: 0;
3571
+ border-top-color: rgba(0, 0, 0, 0.9);
3572
+ border-width: 5px 5px 0;
3573
+ }
3574
+
3575
+ .tooltip.right .tooltip-arrow {
3576
+ top: 50%;
3577
+ left: 0;
3578
+ margin-top: -5px;
3579
+ border-right-color: rgba(0, 0, 0, 0.9);
3580
+ border-width: 5px 5px 5px 0;
3581
+ }
3582
+
3583
+ .tooltip.left .tooltip-arrow {
3584
+ top: 50%;
3585
+ right: 0;
3586
+ margin-top: -5px;
3587
+ border-left-color: rgba(0, 0, 0, 0.9);
3588
+ border-width: 5px 0 5px 5px;
3589
+ }
3590
+
3591
+ .tooltip.bottom .tooltip-arrow {
3592
+ top: 0;
3593
+ left: 50%;
3594
+ margin-left: -5px;
3595
+ border-bottom-color: rgba(0, 0, 0, 0.9);
3596
+ border-width: 0 5px 5px;
3597
+ }
3598
+
3599
+ .tooltip.bottom-left .tooltip-arrow {
3600
+ top: 0;
3601
+ left: 5px;
3602
+ border-bottom-color: rgba(0, 0, 0, 0.9);
3603
+ border-width: 0 5px 5px;
3604
+ }
3605
+
3606
+ .tooltip.bottom-right .tooltip-arrow {
3607
+ top: 0;
3608
+ right: 5px;
3609
+ border-bottom-color: rgba(0, 0, 0, 0.9);
3610
+ border-width: 0 5px 5px;
3611
+ }
3612
+
3613
+ .popover {
3614
+ position: absolute;
3615
+ top: 0;
3616
+ left: 0;
3617
+ z-index: 1010;
3618
+ display: none;
3619
+ max-width: 276px;
3620
+ padding: 1px;
3621
+ text-align: left;
3622
+ white-space: normal;
3623
+ background-color: #ffffff;
3624
+ border: 1px solid #cccccc;
3625
+ border: 1px solid rgba(0, 0, 0, 0.2);
3626
+ border-radius: 6px;
3627
+ -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
3628
+ box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
3629
+ background-clip: padding-box;
3630
+ -webkit-bg-clip: padding-box;
3631
+ -moz-bg-clip: padding;
3632
+ }
3633
+
3634
+ .popover.top {
3635
+ margin-top: -10px;
3636
+ }
3637
+
3638
+ .popover.right {
3639
+ margin-left: 10px;
3640
+ }
3641
+
3642
+ .popover.bottom {
3643
+ margin-top: 10px;
3644
+ }
3645
+
3646
+ .popover.left {
3647
+ margin-left: -10px;
3648
+ }
3649
+
3650
+ .popover-title {
3651
+ padding: 8px 14px;
3652
+ margin: 0;
3653
+ font-size: 14px;
3654
+ font-weight: normal;
3655
+ line-height: 18px;
3656
+ background-color: #f7f7f7;
3657
+ border-bottom: 1px solid #ebebeb;
3658
+ border-radius: 5px 5px 0 0;
3659
+ }
3660
+
3661
+ .popover-content {
3662
+ padding: 9px 14px;
3663
+ }
3664
+
3665
+ .popover .arrow,
3666
+ .popover .arrow:after {
3667
+ position: absolute;
3668
+ display: block;
3669
+ width: 0;
3670
+ height: 0;
3671
+ border-color: transparent;
3672
+ border-style: solid;
3673
+ }
3674
+
3675
+ .popover .arrow {
3676
+ border-width: 11px;
3677
+ }
3678
+
3679
+ .popover .arrow:after {
3680
+ border-width: 10px;
3681
+ content: "";
3682
+ }
3683
+
3684
+ .popover.top .arrow {
3685
+ bottom: -11px;
3686
+ left: 50%;
3687
+ margin-left: -11px;
3688
+ border-top-color: #999999;
3689
+ border-top-color: rgba(0, 0, 0, 0.25);
3690
+ border-bottom-width: 0;
3691
+ }
3692
+
3693
+ .popover.top .arrow:after {
3694
+ bottom: 1px;
3695
+ margin-left: -10px;
3696
+ border-top-color: #ffffff;
3697
+ border-bottom-width: 0;
3698
+ content: " ";
3699
+ }
3700
+
3701
+ .popover.right .arrow {
3702
+ top: 50%;
3703
+ left: -11px;
3704
+ margin-top: -11px;
3705
+ border-right-color: #999999;
3706
+ border-right-color: rgba(0, 0, 0, 0.25);
3707
+ border-left-width: 0;
3708
+ }
3709
+
3710
+ .popover.right .arrow:after {
3711
+ bottom: -10px;
3712
+ left: 1px;
3713
+ border-right-color: #ffffff;
3714
+ border-left-width: 0;
3715
+ content: " ";
3716
+ }
3717
+
3718
+ .popover.bottom .arrow {
3719
+ top: -11px;
3720
+ left: 50%;
3721
+ margin-left: -11px;
3722
+ border-bottom-color: #999999;
3723
+ border-bottom-color: rgba(0, 0, 0, 0.25);
3724
+ border-top-width: 0;
3725
+ }
3726
+
3727
+ .popover.bottom .arrow:after {
3728
+ top: 1px;
3729
+ margin-left: -10px;
3730
+ border-bottom-color: #ffffff;
3731
+ border-top-width: 0;
3732
+ content: " ";
3733
+ }
3734
+
3735
+ .popover.left .arrow {
3736
+ top: 50%;
3737
+ right: -11px;
3738
+ margin-top: -11px;
3739
+ border-left-color: #999999;
3740
+ border-left-color: rgba(0, 0, 0, 0.25);
3741
+ border-right-width: 0;
3742
+ }
3743
+
3744
+ .popover.left .arrow:after {
3745
+ right: 1px;
3746
+ bottom: -10px;
3747
+ border-left-color: #ffffff;
3748
+ border-right-width: 0;
3749
+ content: " ";
3750
+ }
3751
+
3752
+ .alert {
3753
+ padding: 10px 35px 10px 15px;
3754
+ margin-bottom: 20px;
3755
+ color: #c09853;
3756
+ background-color: #fcf8e3;
3757
+ border: 1px solid #fbeed5;
3758
+ border-radius: 4px;
3759
+ }
3760
+
3761
+ .alert h4 {
3762
+ margin-top: 0;
3763
+ color: inherit;
3764
+ }
3765
+
3766
+ .alert hr {
3767
+ border-top-color: #f8e5be;
3768
+ }
3769
+
3770
+ .alert .alert-link {
3771
+ font-weight: 500;
3772
+ color: #a47e3c;
3773
+ }
3774
+
3775
+ .alert .close {
3776
+ position: relative;
3777
+ top: -2px;
3778
+ right: -21px;
3779
+ color: inherit;
3780
+ }
3781
+
3782
+ .alert-success {
3783
+ color: #468847;
3784
+ background-color: #dff0d8;
3785
+ border-color: #d6e9c6;
3786
+ }
3787
+
3788
+ .alert-success hr {
3789
+ border-top-color: #c9e2b3;
3790
+ }
3791
+
3792
+ .alert-success .alert-link {
3793
+ color: #356635;
3794
+ }
3795
+
3796
+ .alert-danger {
3797
+ color: #b94a48;
3798
+ background-color: #f2dede;
3799
+ border-color: #eed3d7;
3800
+ }
3801
+
3802
+ .alert-danger hr {
3803
+ border-top-color: #e6c1c7;
3804
+ }
3805
+
3806
+ .alert-danger .alert-link {
3807
+ color: #953b39;
3808
+ }
3809
+
3810
+ .alert-info {
3811
+ color: #3a87ad;
3812
+ background-color: #d9edf7;
3813
+ border-color: #bce8f1;
3814
+ }
3815
+
3816
+ .alert-info hr {
3817
+ border-top-color: #a6e1ec;
3818
+ }
3819
+
3820
+ .alert-info .alert-link {
3821
+ color: #2d6987;
3822
+ }
3823
+
3824
+ .alert-block {
3825
+ padding-top: 15px;
3826
+ padding-bottom: 15px;
3827
+ }
3828
+
3829
+ .alert-block > p,
3830
+ .alert-block > ul {
3831
+ margin-bottom: 0;
3832
+ }
3833
+
3834
+ .alert-block p + p {
3835
+ margin-top: 5px;
3836
+ }
3837
+
3838
+ .thumbnail,
3839
+ .img-thumbnail {
3840
+ padding: 4px;
3841
+ line-height: 1.428571429;
3842
+ background-color: #ffffff;
3843
+ border: 1px solid #dddddd;
3844
+ border-radius: 4px;
3845
+ -webkit-transition: all 0.2s ease-in-out;
3846
+ transition: all 0.2s ease-in-out;
3847
+ }
3848
+
3849
+ .thumbnail {
3850
+ display: block;
3851
+ }
3852
+
3853
+ .thumbnail > img,
3854
+ .img-thumbnail {
3855
+ display: inline-block;
3856
+ height: auto;
3857
+ max-width: 100%;
3858
+ }
3859
+
3860
+ a.thumbnail:hover,
3861
+ a.thumbnail:focus {
3862
+ border-color: #428bca;
3863
+ }
3864
+
3865
+ .thumbnail > img {
3866
+ margin-right: auto;
3867
+ margin-left: auto;
3868
+ }
3869
+
3870
+ .thumbnail .caption {
3871
+ padding: 9px;
3872
+ color: #333333;
3873
+ }
3874
+
3875
+ .media,
3876
+ .media-body {
3877
+ overflow: hidden;
3878
+ zoom: 1;
3879
+ }
3880
+
3881
+ .media,
3882
+ .media .media {
3883
+ margin-top: 15px;
3884
+ }
3885
+
3886
+ .media:first-child {
3887
+ margin-top: 0;
3888
+ }
3889
+
3890
+ .media-object {
3891
+ display: block;
3892
+ }
3893
+
3894
+ .media-heading {
3895
+ margin: 0 0 5px;
3896
+ }
3897
+
3898
+ .media > .pull-left {
3899
+ margin-right: 10px;
3900
+ }
3901
+
3902
+ .media > .pull-right {
3903
+ margin-left: 10px;
3904
+ }
3905
+
3906
+ .media-list {
3907
+ padding-left: 0;
3908
+ list-style: none;
3909
+ }
3910
+
3911
+ .label {
3912
+ display: inline;
3913
+ padding: .25em .6em;
3914
+ font-size: 75%;
3915
+ font-weight: 500;
3916
+ line-height: 1;
3917
+ color: #ffffff;
3918
+ text-align: center;
3919
+ white-space: nowrap;
3920
+ vertical-align: middle;
3921
+ background-color: #999999;
3922
+ border-radius: .25em;
3923
+ }
3924
+
3925
+ .label[href]:hover,
3926
+ .label[href]:focus {
3927
+ color: #ffffff;
3928
+ text-decoration: none;
3929
+ cursor: pointer;
3930
+ background-color: #808080;
3931
+ }
3932
+
3933
+ .label-danger {
3934
+ background-color: #d9534f;
3935
+ }
3936
+
3937
+ .label-danger[href]:hover,
3938
+ .label-danger[href]:focus {
3939
+ background-color: #c9302c;
3940
+ }
3941
+
3942
+ .label-success {
3943
+ background-color: #5cb85c;
3944
+ }
3945
+
3946
+ .label-success[href]:hover,
3947
+ .label-success[href]:focus {
3948
+ background-color: #449d44;
3949
+ }
3950
+
3951
+ .label-warning {
3952
+ background-color: #f0ad4e;
3953
+ }
3954
+
3955
+ .label-warning[href]:hover,
3956
+ .label-warning[href]:focus {
3957
+ background-color: #ec971f;
3958
+ }
3959
+
3960
+ .label-info {
3961
+ background-color: #5bc0de;
3962
+ }
3963
+
3964
+ .label-info[href]:hover,
3965
+ .label-info[href]:focus {
3966
+ background-color: #31b0d5;
3967
+ }
3968
+
3969
+ .badge {
3970
+ display: inline-block;
3971
+ min-width: 10px;
3972
+ padding: 3px 7px;
3973
+ font-size: 12px;
3974
+ font-weight: bold;
3975
+ line-height: 1;
3976
+ color: #ffffff;
3977
+ text-align: center;
3978
+ white-space: nowrap;
3979
+ vertical-align: middle;
3980
+ background-color: #999999;
3981
+ border-radius: 10px;
3982
+ }
3983
+
3984
+ .badge:empty {
3985
+ display: none;
3986
+ }
3987
+
3988
+ a.badge:hover,
3989
+ a.badge:focus {
3990
+ color: #ffffff;
3991
+ text-decoration: none;
3992
+ cursor: pointer;
3993
+ }
3994
+
3995
+ .btn .badge {
3996
+ position: relative;
3997
+ top: -1px;
3998
+ }
3999
+
4000
+ a.list-group-item.active > .badge,
4001
+ .nav-pills > .active > a > .badge {
4002
+ color: #428bca;
4003
+ background-color: #ffffff;
4004
+ }
4005
+
4006
+ .nav-pills > li > a > .badge {
4007
+ margin-left: 3px;
4008
+ }
4009
+
4010
+ @-webkit-keyframes progress-bar-stripes {
4011
+ from {
4012
+ background-position: 40px 0;
4013
+ }
4014
+ to {
4015
+ background-position: 0 0;
4016
+ }
4017
+ }
4018
+
4019
+ @-moz-keyframes progress-bar-stripes {
4020
+ from {
4021
+ background-position: 40px 0;
4022
+ }
4023
+ to {
4024
+ background-position: 0 0;
4025
+ }
4026
+ }
4027
+
4028
+ @-ms-keyframes progress-bar-stripes {
4029
+ from {
4030
+ background-position: 40px 0;
4031
+ }
4032
+ to {
4033
+ background-position: 0 0;
4034
+ }
4035
+ }
4036
+
4037
+ @-o-keyframes progress-bar-stripes {
4038
+ from {
4039
+ background-position: 0 0;
4040
+ }
4041
+ to {
4042
+ background-position: 40px 0;
4043
+ }
4044
+ }
4045
+
4046
+ @keyframes progress-bar-stripes {
4047
+ from {
4048
+ background-position: 40px 0;
4049
+ }
4050
+ to {
4051
+ background-position: 0 0;
4052
+ }
4053
+ }
4054
+
4055
+ .progress {
4056
+ height: 20px;
4057
+ margin-bottom: 20px;
4058
+ overflow: hidden;
4059
+ background-color: #f5f5f5;
4060
+ border-radius: 4px;
4061
+ -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
4062
+ box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
4063
+ }
4064
+
4065
+ .progress-bar {
4066
+ float: left;
4067
+ width: 0;
4068
+ height: 100%;
4069
+ font-size: 12px;
4070
+ color: #ffffff;
4071
+ text-align: center;
4072
+ background-color: #428bca;
4073
+ -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
4074
+ box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
4075
+ -webkit-transition: width 0.6s ease;
4076
+ transition: width 0.6s ease;
4077
+ }
4078
+
4079
+ .progress-striped .progress-bar {
4080
+ background-color: #428bca;
4081
+ background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
4082
+ 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);
4083
+ background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4084
+ 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);
4085
+ background-size: 40px 40px;
4086
+ }
4087
+
4088
+ .progress.active .progress-bar {
4089
+ -webkit-animation: progress-bar-stripes 2s linear infinite;
4090
+ -moz-animation: progress-bar-stripes 2s linear infinite;
4091
+ -ms-animation: progress-bar-stripes 2s linear infinite;
4092
+ -o-animation: progress-bar-stripes 2s linear infinite;
4093
+ animation: progress-bar-stripes 2s linear infinite;
4094
+ }
4095
+
4096
+ .progress-bar-danger {
4097
+ background-color: #d9534f;
4098
+ }
4099
+
4100
+ .progress-striped .progress-bar-danger {
4101
+ background-color: #d9534f;
4102
+ background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
4103
+ 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);
4104
+ background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4105
+ 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);
4106
+ }
4107
+
4108
+ .progress-bar-success {
4109
+ background-color: #5cb85c;
4110
+ }
4111
+
4112
+ .progress-striped .progress-bar-success {
4113
+ background-color: #5cb85c;
4114
+ background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
4115
+ 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);
4116
+ background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4117
+ 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);
4118
+ }
4119
+
4120
+ .progress-bar-warning {
4121
+ background-color: #f0ad4e;
4122
+ }
4123
+
4124
+ .progress-striped .progress-bar-warning {
4125
+ background-color: #f0ad4e;
4126
+ background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
4127
+ 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);
4128
+ background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4129
+ 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);
4130
+ }
4131
+
4132
+ .progress-bar-info {
4133
+ background-color: #5bc0de;
4134
+ }
4135
+
4136
+ .progress-striped .progress-bar-info {
4137
+ background-color: #5bc0de;
4138
+ background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
4139
+ 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);
4140
+ background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4141
+ 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);
4142
+ }
4143
+
4144
+ .accordion {
4145
+ margin-bottom: 20px;
4146
+ }
4147
+
4148
+ .accordion-group {
4149
+ margin-bottom: 2px;
4150
+ border: 1px solid #e5e5e5;
4151
+ border-radius: 4px;
4152
+ }
4153
+
4154
+ .accordion-heading {
4155
+ border-bottom: 0;
4156
+ }
4157
+
4158
+ .accordion-heading .accordion-toggle {
4159
+ display: block;
4160
+ padding: 8px 15px;
4161
+ cursor: pointer;
4162
+ }
4163
+
4164
+ .accordion-inner {
4165
+ padding: 9px 15px;
4166
+ border-top: 1px solid #e5e5e5;
4167
+ }
4168
+
4169
+ .carousel {
4170
+ position: relative;
4171
+ }
4172
+
4173
+ .carousel-inner {
4174
+ position: relative;
4175
+ width: 100%;
4176
+ overflow: hidden;
4177
+ }
4178
+
4179
+ .carousel-inner > .item {
4180
+ position: relative;
4181
+ display: none;
4182
+ -webkit-transition: 0.6s ease-in-out left;
4183
+ transition: 0.6s ease-in-out left;
4184
+ }
4185
+
4186
+ .carousel-inner > .item > img,
4187
+ .carousel-inner > .item > a > img {
4188
+ display: inline-block;
4189
+ height: auto;
4190
+ max-width: 100%;
4191
+ line-height: 1;
4192
+ }
4193
+
4194
+ .carousel-inner > .active,
4195
+ .carousel-inner > .next,
4196
+ .carousel-inner > .prev {
4197
+ display: block;
4198
+ }
4199
+
4200
+ .carousel-inner > .active {
4201
+ left: 0;
4202
+ }
4203
+
4204
+ .carousel-inner > .next,
4205
+ .carousel-inner > .prev {
4206
+ position: absolute;
4207
+ top: 0;
4208
+ width: 100%;
4209
+ }
4210
+
4211
+ .carousel-inner > .next {
4212
+ left: 100%;
4213
+ }
4214
+
4215
+ .carousel-inner > .prev {
4216
+ left: -100%;
4217
+ }
4218
+
4219
+ .carousel-inner > .next.left,
4220
+ .carousel-inner > .prev.right {
4221
+ left: 0;
4222
+ }
4223
+
4224
+ .carousel-inner > .active.left {
4225
+ left: -100%;
4226
+ }
4227
+
4228
+ .carousel-inner > .active.right {
4229
+ left: 100%;
4230
+ }
4231
+
4232
+ .carousel-control {
4233
+ position: absolute;
4234
+ top: 0;
4235
+ bottom: 0;
4236
+ left: 0;
4237
+ width: 15%;
4238
+ font-size: 20px;
4239
+ color: #ffffff;
4240
+ text-align: center;
4241
+ text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
4242
+ opacity: 0.5;
4243
+ filter: alpha(opacity=50);
4244
+ }
4245
+
4246
+ .carousel-control.left {
4247
+ background-color: rgba(0, 0, 0, 0.0001);
4248
+ background-color: transparent;
4249
+ background-image: -webkit-gradient(linear, 0 top, 100% top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));
4250
+ background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.5) 0), color-stop(rgba(0, 0, 0, 0.0001) 100%));
4251
+ background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);
4252
+ background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);
4253
+ background-repeat: repeat-x;
4254
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
4255
+ }
4256
+
4257
+ .carousel-control.right {
4258
+ right: 0;
4259
+ left: auto;
4260
+ background-color: rgba(0, 0, 0, 0.5);
4261
+ background-color: transparent;
4262
+ background-image: -webkit-gradient(linear, 0 top, 100% top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));
4263
+ background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.0001) 0), color-stop(rgba(0, 0, 0, 0.5) 100%));
4264
+ background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);
4265
+ background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);
4266
+ background-repeat: repeat-x;
4267
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
4268
+ }
4269
+
4270
+ .carousel-control:hover,
4271
+ .carousel-control:focus {
4272
+ color: #ffffff;
4273
+ text-decoration: none;
4274
+ opacity: 0.9;
4275
+ filter: alpha(opacity=90);
4276
+ }
4277
+
4278
+ .carousel-control .glyphicon,
4279
+ .carousel-control .icon-prev,
4280
+ .carousel-control .icon-next {
4281
+ position: absolute;
4282
+ top: 50%;
4283
+ left: 50%;
4284
+ z-index: 5;
4285
+ display: inline-block;
4286
+ width: 20px;
4287
+ height: 20px;
4288
+ margin-top: -10px;
4289
+ margin-left: -10px;
4290
+ font-family: serif;
4291
+ }
4292
+
4293
+ .carousel-control .icon-prev:before {
4294
+ content: '\2039';
4295
+ }
4296
+
4297
+ .carousel-control .icon-next:before {
4298
+ content: '\203a';
4299
+ }
4300
+
4301
+ .carousel-indicators {
4302
+ position: absolute;
4303
+ bottom: 10px;
4304
+ left: 50%;
4305
+ z-index: 15;
4306
+ width: 120px;
4307
+ padding-left: 0;
4308
+ margin-left: -60px;
4309
+ text-align: center;
4310
+ list-style: none;
4311
+ }
4312
+
4313
+ .carousel-indicators li {
4314
+ display: inline-block;
4315
+ width: 10px;
4316
+ height: 10px;
4317
+ margin: 1px;
4318
+ text-indent: -999px;
4319
+ cursor: pointer;
4320
+ border: 1px solid #ffffff;
4321
+ border-radius: 10px;
4322
+ }
4323
+
4324
+ .carousel-indicators .active {
4325
+ width: 12px;
4326
+ height: 12px;
4327
+ margin: 0;
4328
+ background-color: #ffffff;
4329
+ }
4330
+
4331
+ .carousel-caption {
4332
+ position: absolute;
4333
+ right: 15%;
4334
+ bottom: 20px;
4335
+ left: 15%;
4336
+ z-index: 10;
4337
+ padding-top: 20px;
4338
+ padding-bottom: 20px;
4339
+ color: #ffffff;
4340
+ text-align: center;
4341
+ text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
4342
+ }
4343
+
4344
+ .carousel-caption .btn {
4345
+ text-shadow: none;
4346
+ }
4347
+
4348
+ @media screen and (min-width: 768px) {
4349
+ .carousel-control .glyphicon,
4350
+ .carousel-control .icon-prev,
4351
+ .carousel-control .icon-next {
4352
+ width: 30px;
4353
+ height: 30px;
4354
+ margin-top: -15px;
4355
+ margin-left: -15px;
4356
+ font-size: 30px;
4357
+ }
4358
+ .carousel-caption {
4359
+ right: 20%;
4360
+ left: 20%;
4361
+ padding-bottom: 30px;
4362
+ }
4363
+ .carousel-indicators {
4364
+ bottom: 20px;
4365
+ }
4366
+ }
4367
+
4368
+ .jumbotron {
4369
+ padding: 30px;
4370
+ margin-bottom: 30px;
4371
+ font-size: 21px;
4372
+ font-weight: 200;
4373
+ line-height: 2.1428571435;
4374
+ color: inherit;
4375
+ background-color: #eeeeee;
4376
+ }
4377
+
4378
+ .jumbotron h1 {
4379
+ line-height: 1;
4380
+ color: inherit;
4381
+ }
4382
+
4383
+ .jumbotron p {
4384
+ line-height: 1.4;
4385
+ }
4386
+
4387
+ @media screen and (min-width: 768px) {
4388
+ .jumbotron {
4389
+ padding: 50px 60px;
4390
+ border-radius: 6px;
4391
+ }
4392
+ .jumbotron h1 {
4393
+ font-size: 63px;
4394
+ }
4395
+ }
4396
+
4397
+ .clearfix:before,
4398
+ .clearfix:after {
4399
+ display: table;
4400
+ content: " ";
4401
+ }
4402
+
4403
+ .clearfix:after {
4404
+ clear: both;
4405
+ }
4406
+
4407
+ .pull-right {
4408
+ float: right;
4409
+ }
4410
+
4411
+ .pull-left {
4412
+ float: left;
4413
+ }
4414
+
4415
+ .hide {
4416
+ display: none !important;
4417
+ }
4418
+
4419
+ .show {
4420
+ display: block !important;
4421
+ }
4422
+
4423
+ .invisible {
4424
+ visibility: hidden;
4425
+ }
4426
+
4427
+ .text-hide {
4428
+ font: 0/0 a;
4429
+ color: transparent;
4430
+ text-shadow: none;
4431
+ background-color: transparent;
4432
+ border: 0;
4433
+ }
4434
+
4435
+ .affix {
4436
+ position: fixed;
4437
+ }
4438
+
4439
+ @-ms-viewport {
4440
+ width: device-width;
4441
+ }
4442
+
4443
+ @media screen and (max-width: 400px) {
4444
+ @-ms-viewport {
4445
+ width: 320px;
4446
+ }
4447
+ }
4448
+
4449
+ .hidden {
4450
+ display: none !important;
4451
+ visibility: hidden !important;
4452
+ }
4453
+
4454
+ .visible-sm {
4455
+ display: block !important;
4456
+ }
4457
+
4458
+ tr.visible-sm {
4459
+ display: table-row !important;
4460
+ }
4461
+
4462
+ th.visible-sm,
4463
+ td.visible-sm {
4464
+ display: table-cell !important;
4465
+ }
4466
+
4467
+ .visible-md {
4468
+ display: none !important;
4469
+ }
4470
+
4471
+ tr.visible-md {
4472
+ display: none !important;
4473
+ }
4474
+
4475
+ th.visible-md,
4476
+ td.visible-md {
4477
+ display: none !important;
4478
+ }
4479
+
4480
+ .visible-lg {
4481
+ display: none !important;
4482
+ }
4483
+
4484
+ tr.visible-lg {
4485
+ display: none !important;
4486
+ }
4487
+
4488
+ th.visible-lg,
4489
+ td.visible-lg {
4490
+ display: none !important;
4491
+ }
4492
+
4493
+ .hidden-sm {
4494
+ display: none !important;
4495
+ }
4496
+
4497
+ tr.hidden-sm {
4498
+ display: none !important;
4499
+ }
4500
+
4501
+ th.hidden-sm,
4502
+ td.hidden-sm {
4503
+ display: none !important;
4504
+ }
4505
+
4506
+ .hidden-md {
4507
+ display: block !important;
4508
+ }
4509
+
4510
+ tr.hidden-md {
4511
+ display: table-row !important;
4512
+ }
4513
+
4514
+ th.hidden-md,
4515
+ td.hidden-md {
4516
+ display: table-cell !important;
4517
+ }
4518
+
4519
+ .hidden-lg {
4520
+ display: block !important;
4521
+ }
4522
+
4523
+ tr.hidden-lg {
4524
+ display: table-row !important;
4525
+ }
4526
+
4527
+ th.hidden-lg,
4528
+ td.hidden-lg {
4529
+ display: table-cell !important;
4530
+ }
4531
+
4532
+ @media (min-width: 768px) and (max-width: 991px) {
4533
+ .visible-sm {
4534
+ display: none !important;
4535
+ }
4536
+ tr.visible-sm {
4537
+ display: none !important;
4538
+ }
4539
+ th.visible-sm,
4540
+ td.visible-sm {
4541
+ display: none !important;
4542
+ }
4543
+ .visible-md {
4544
+ display: block !important;
4545
+ }
4546
+ tr.visible-md {
4547
+ display: table-row !important;
4548
+ }
4549
+ th.visible-md,
4550
+ td.visible-md {
4551
+ display: table-cell !important;
4552
+ }
4553
+ .visible-lg {
4554
+ display: none !important;
4555
+ }
4556
+ tr.visible-lg {
4557
+ display: none !important;
4558
+ }
4559
+ th.visible-lg,
4560
+ td.visible-lg {
4561
+ display: none !important;
4562
+ }
4563
+ .hidden-sm {
4564
+ display: block !important;
4565
+ }
4566
+ tr.hidden-sm {
4567
+ display: table-row !important;
4568
+ }
4569
+ th.hidden-sm,
4570
+ td.hidden-sm {
4571
+ display: table-cell !important;
4572
+ }
4573
+ .hidden-md {
4574
+ display: none !important;
4575
+ }
4576
+ tr.hidden-md {
4577
+ display: none !important;
4578
+ }
4579
+ th.hidden-md,
4580
+ td.hidden-md {
4581
+ display: none !important;
4582
+ }
4583
+ .hidden-lg {
4584
+ display: block !important;
4585
+ }
4586
+ tr.hidden-lg {
4587
+ display: table-row !important;
4588
+ }
4589
+ th.hidden-lg,
4590
+ td.hidden-lg {
4591
+ display: table-cell !important;
4592
+ }
4593
+ }
4594
+
4595
+ @media (min-width: 992px) {
4596
+ .visible-sm {
4597
+ display: none !important;
4598
+ }
4599
+ tr.visible-sm {
4600
+ display: none !important;
4601
+ }
4602
+ th.visible-sm,
4603
+ td.visible-sm {
4604
+ display: none !important;
4605
+ }
4606
+ .visible-md {
4607
+ display: none !important;
4608
+ }
4609
+ tr.visible-md {
4610
+ display: none !important;
4611
+ }
4612
+ th.visible-md,
4613
+ td.visible-md {
4614
+ display: none !important;
4615
+ }
4616
+ .visible-lg {
4617
+ display: block !important;
4618
+ }
4619
+ tr.visible-lg {
4620
+ display: table-row !important;
4621
+ }
4622
+ th.visible-lg,
4623
+ td.visible-lg {
4624
+ display: table-cell !important;
4625
+ }
4626
+ .hidden-sm {
4627
+ display: block !important;
4628
+ }
4629
+ tr.hidden-sm {
4630
+ display: table-row !important;
4631
+ }
4632
+ th.hidden-sm,
4633
+ td.hidden-sm {
4634
+ display: table-cell !important;
4635
+ }
4636
+ .hidden-md {
4637
+ display: block !important;
4638
+ }
4639
+ tr.hidden-md {
4640
+ display: table-row !important;
4641
+ }
4642
+ th.hidden-md,
4643
+ td.hidden-md {
4644
+ display: table-cell !important;
4645
+ }
4646
+ .hidden-lg {
4647
+ display: none !important;
4648
+ }
4649
+ tr.hidden-lg {
4650
+ display: none !important;
4651
+ }
4652
+ th.hidden-lg,
4653
+ td.hidden-lg {
4654
+ display: none !important;
4655
+ }
4656
+ }
4657
+
4658
+ .visible-print {
4659
+ display: none !important;
4660
+ }
4661
+
4662
+ tr.visible-print {
4663
+ display: none !important;
4664
+ }
4665
+
4666
+ th.visible-print,
4667
+ td.visible-print {
4668
+ display: none !important;
4669
+ }
4670
+
4671
+ @media print {
4672
+ .visible-print {
4673
+ display: block !important;
4674
+ }
4675
+ tr.visible-print {
4676
+ display: table-row !important;
4677
+ }
4678
+ th.visible-print,
4679
+ td.visible-print {
4680
+ display: table-cell !important;
4681
+ }
4682
+ .hidden-print {
4683
+ display: none !important;
4684
+ }
4685
+ tr.hidden-print {
4686
+ display: none !important;
4687
+ }
4688
+ th.hidden-print,
4689
+ td.hidden-print {
4690
+ display: none !important;
4691
+ }
4692
+ }