Benjamin Renard commited on 2014-01-07 14:23:12
Showing 16 changed files, with 9820 additions and 25 deletions.
| ... | ... |
@@ -0,0 +1,21 @@ |
| 1 |
+CACHE MANIFEST |
|
| 2 |
+ |
|
| 3 |
+favicon.png |
|
| 4 |
+inc/myco.js |
|
| 5 |
+inc/myco_confirm.js |
|
| 6 |
+inc/myco_objects.js |
|
| 7 |
+ |
|
| 8 |
+inc/lib/bootstrap/css/bootstrap.min.css |
|
| 9 |
+inc/lib/bootstrap/css/bootstrap-theme.min.css |
|
| 10 |
+inc/lib/bootstrap/js/bootstrap.min.js |
|
| 11 |
+inc/lib/bootstrap/fonts/glyphicons-halflings-regular.ttf |
|
| 12 |
+inc/lib/bootstrap/fonts/glyphicons-halflings-regular.woff |
|
| 13 |
+inc/lib/bootstrap/fonts/glyphicons-halflings-regular.eot |
|
| 14 |
+inc/lib/bootstrap/fonts/glyphicons-halflings-regular.svg |
|
| 15 |
+ |
|
| 16 |
+inc/lib/jquery-1.10.2.min.js |
|
| 17 |
+inc/lib/moment.min.js |
|
| 18 |
+ |
|
| 19 |
+# For IE |
|
| 20 |
+inc/lib/html5shiv.js |
|
| 21 |
+inc/lib/respond.min.js |
| ... | ... |
@@ -0,0 +1,397 @@ |
| 1 |
+/*! |
|
| 2 |
+ * Bootstrap v3.0.3 (http://getbootstrap.com) |
|
| 3 |
+ * Copyright 2013 Twitter, Inc. |
|
| 4 |
+ * Licensed under http://www.apache.org/licenses/LICENSE-2.0 |
|
| 5 |
+ */ |
|
| 6 |
+ |
|
| 7 |
+.btn-default, |
|
| 8 |
+.btn-primary, |
|
| 9 |
+.btn-success, |
|
| 10 |
+.btn-info, |
|
| 11 |
+.btn-warning, |
|
| 12 |
+.btn-danger {
|
|
| 13 |
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2); |
|
| 14 |
+ -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075); |
|
| 15 |
+ box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075); |
|
| 16 |
+} |
|
| 17 |
+ |
|
| 18 |
+.btn-default:active, |
|
| 19 |
+.btn-primary:active, |
|
| 20 |
+.btn-success:active, |
|
| 21 |
+.btn-info:active, |
|
| 22 |
+.btn-warning:active, |
|
| 23 |
+.btn-danger:active, |
|
| 24 |
+.btn-default.active, |
|
| 25 |
+.btn-primary.active, |
|
| 26 |
+.btn-success.active, |
|
| 27 |
+.btn-info.active, |
|
| 28 |
+.btn-warning.active, |
|
| 29 |
+.btn-danger.active {
|
|
| 30 |
+ -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); |
|
| 31 |
+ box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); |
|
| 32 |
+} |
|
| 33 |
+ |
|
| 34 |
+.btn:active, |
|
| 35 |
+.btn.active {
|
|
| 36 |
+ background-image: none; |
|
| 37 |
+} |
|
| 38 |
+ |
|
| 39 |
+.btn-default {
|
|
| 40 |
+ text-shadow: 0 1px 0 #fff; |
|
| 41 |
+ background-image: -webkit-linear-gradient(top, #ffffff 0%, #e0e0e0 100%); |
|
| 42 |
+ background-image: linear-gradient(to bottom, #ffffff 0%, #e0e0e0 100%); |
|
| 43 |
+ background-repeat: repeat-x; |
|
| 44 |
+ border-color: #dbdbdb; |
|
| 45 |
+ border-color: #ccc; |
|
| 46 |
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0); |
|
| 47 |
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); |
|
| 48 |
+} |
|
| 49 |
+ |
|
| 50 |
+.btn-default:hover, |
|
| 51 |
+.btn-default:focus {
|
|
| 52 |
+ background-color: #e0e0e0; |
|
| 53 |
+ background-position: 0 -15px; |
|
| 54 |
+} |
|
| 55 |
+ |
|
| 56 |
+.btn-default:active, |
|
| 57 |
+.btn-default.active {
|
|
| 58 |
+ background-color: #e0e0e0; |
|
| 59 |
+ border-color: #dbdbdb; |
|
| 60 |
+} |
|
| 61 |
+ |
|
| 62 |
+.btn-primary {
|
|
| 63 |
+ background-image: -webkit-linear-gradient(top, #428bca 0%, #2d6ca2 100%); |
|
| 64 |
+ background-image: linear-gradient(to bottom, #428bca 0%, #2d6ca2 100%); |
|
| 65 |
+ background-repeat: repeat-x; |
|
| 66 |
+ border-color: #2b669a; |
|
| 67 |
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff2d6ca2', GradientType=0); |
|
| 68 |
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); |
|
| 69 |
+} |
|
| 70 |
+ |
|
| 71 |
+.btn-primary:hover, |
|
| 72 |
+.btn-primary:focus {
|
|
| 73 |
+ background-color: #2d6ca2; |
|
| 74 |
+ background-position: 0 -15px; |
|
| 75 |
+} |
|
| 76 |
+ |
|
| 77 |
+.btn-primary:active, |
|
| 78 |
+.btn-primary.active {
|
|
| 79 |
+ background-color: #2d6ca2; |
|
| 80 |
+ border-color: #2b669a; |
|
| 81 |
+} |
|
| 82 |
+ |
|
| 83 |
+.btn-success {
|
|
| 84 |
+ background-image: -webkit-linear-gradient(top, #5cb85c 0%, #419641 100%); |
|
| 85 |
+ background-image: linear-gradient(to bottom, #5cb85c 0%, #419641 100%); |
|
| 86 |
+ background-repeat: repeat-x; |
|
| 87 |
+ border-color: #3e8f3e; |
|
| 88 |
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0); |
|
| 89 |
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); |
|
| 90 |
+} |
|
| 91 |
+ |
|
| 92 |
+.btn-success:hover, |
|
| 93 |
+.btn-success:focus {
|
|
| 94 |
+ background-color: #419641; |
|
| 95 |
+ background-position: 0 -15px; |
|
| 96 |
+} |
|
| 97 |
+ |
|
| 98 |
+.btn-success:active, |
|
| 99 |
+.btn-success.active {
|
|
| 100 |
+ background-color: #419641; |
|
| 101 |
+ border-color: #3e8f3e; |
|
| 102 |
+} |
|
| 103 |
+ |
|
| 104 |
+.btn-warning {
|
|
| 105 |
+ background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #eb9316 100%); |
|
| 106 |
+ background-image: linear-gradient(to bottom, #f0ad4e 0%, #eb9316 100%); |
|
| 107 |
+ background-repeat: repeat-x; |
|
| 108 |
+ border-color: #e38d13; |
|
| 109 |
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0); |
|
| 110 |
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); |
|
| 111 |
+} |
|
| 112 |
+ |
|
| 113 |
+.btn-warning:hover, |
|
| 114 |
+.btn-warning:focus {
|
|
| 115 |
+ background-color: #eb9316; |
|
| 116 |
+ background-position: 0 -15px; |
|
| 117 |
+} |
|
| 118 |
+ |
|
| 119 |
+.btn-warning:active, |
|
| 120 |
+.btn-warning.active {
|
|
| 121 |
+ background-color: #eb9316; |
|
| 122 |
+ border-color: #e38d13; |
|
| 123 |
+} |
|
| 124 |
+ |
|
| 125 |
+.btn-danger {
|
|
| 126 |
+ background-image: -webkit-linear-gradient(top, #d9534f 0%, #c12e2a 100%); |
|
| 127 |
+ background-image: linear-gradient(to bottom, #d9534f 0%, #c12e2a 100%); |
|
| 128 |
+ background-repeat: repeat-x; |
|
| 129 |
+ border-color: #b92c28; |
|
| 130 |
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0); |
|
| 131 |
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); |
|
| 132 |
+} |
|
| 133 |
+ |
|
| 134 |
+.btn-danger:hover, |
|
| 135 |
+.btn-danger:focus {
|
|
| 136 |
+ background-color: #c12e2a; |
|
| 137 |
+ background-position: 0 -15px; |
|
| 138 |
+} |
|
| 139 |
+ |
|
| 140 |
+.btn-danger:active, |
|
| 141 |
+.btn-danger.active {
|
|
| 142 |
+ background-color: #c12e2a; |
|
| 143 |
+ border-color: #b92c28; |
|
| 144 |
+} |
|
| 145 |
+ |
|
| 146 |
+.btn-info {
|
|
| 147 |
+ background-image: -webkit-linear-gradient(top, #5bc0de 0%, #2aabd2 100%); |
|
| 148 |
+ background-image: linear-gradient(to bottom, #5bc0de 0%, #2aabd2 100%); |
|
| 149 |
+ background-repeat: repeat-x; |
|
| 150 |
+ border-color: #28a4c9; |
|
| 151 |
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0); |
|
| 152 |
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); |
|
| 153 |
+} |
|
| 154 |
+ |
|
| 155 |
+.btn-info:hover, |
|
| 156 |
+.btn-info:focus {
|
|
| 157 |
+ background-color: #2aabd2; |
|
| 158 |
+ background-position: 0 -15px; |
|
| 159 |
+} |
|
| 160 |
+ |
|
| 161 |
+.btn-info:active, |
|
| 162 |
+.btn-info.active {
|
|
| 163 |
+ background-color: #2aabd2; |
|
| 164 |
+ border-color: #28a4c9; |
|
| 165 |
+} |
|
| 166 |
+ |
|
| 167 |
+.thumbnail, |
|
| 168 |
+.img-thumbnail {
|
|
| 169 |
+ -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075); |
|
| 170 |
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075); |
|
| 171 |
+} |
|
| 172 |
+ |
|
| 173 |
+.dropdown-menu > li > a:hover, |
|
| 174 |
+.dropdown-menu > li > a:focus {
|
|
| 175 |
+ background-color: #e8e8e8; |
|
| 176 |
+ background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%); |
|
| 177 |
+ background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%); |
|
| 178 |
+ background-repeat: repeat-x; |
|
| 179 |
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0); |
|
| 180 |
+} |
|
| 181 |
+ |
|
| 182 |
+.dropdown-menu > .active > a, |
|
| 183 |
+.dropdown-menu > .active > a:hover, |
|
| 184 |
+.dropdown-menu > .active > a:focus {
|
|
| 185 |
+ background-color: #357ebd; |
|
| 186 |
+ background-image: -webkit-linear-gradient(top, #428bca 0%, #357ebd 100%); |
|
| 187 |
+ background-image: linear-gradient(to bottom, #428bca 0%, #357ebd 100%); |
|
| 188 |
+ background-repeat: repeat-x; |
|
| 189 |
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff357ebd', GradientType=0); |
|
| 190 |
+} |
|
| 191 |
+ |
|
| 192 |
+.navbar-default {
|
|
| 193 |
+ background-image: -webkit-linear-gradient(top, #ffffff 0%, #f8f8f8 100%); |
|
| 194 |
+ background-image: linear-gradient(to bottom, #ffffff 0%, #f8f8f8 100%); |
|
| 195 |
+ background-repeat: repeat-x; |
|
| 196 |
+ border-radius: 4px; |
|
| 197 |
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0); |
|
| 198 |
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); |
|
| 199 |
+ -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 5px rgba(0, 0, 0, 0.075); |
|
| 200 |
+ box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 5px rgba(0, 0, 0, 0.075); |
|
| 201 |
+} |
|
| 202 |
+ |
|
| 203 |
+.navbar-default .navbar-nav > .active > a {
|
|
| 204 |
+ background-image: -webkit-linear-gradient(top, #ebebeb 0%, #f3f3f3 100%); |
|
| 205 |
+ background-image: linear-gradient(to bottom, #ebebeb 0%, #f3f3f3 100%); |
|
| 206 |
+ background-repeat: repeat-x; |
|
| 207 |
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff3f3f3', GradientType=0); |
|
| 208 |
+ -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.075); |
|
| 209 |
+ box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.075); |
|
| 210 |
+} |
|
| 211 |
+ |
|
| 212 |
+.navbar-brand, |
|
| 213 |
+.navbar-nav > li > a {
|
|
| 214 |
+ text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25); |
|
| 215 |
+} |
|
| 216 |
+ |
|
| 217 |
+.navbar-inverse {
|
|
| 218 |
+ background-image: -webkit-linear-gradient(top, #3c3c3c 0%, #222222 100%); |
|
| 219 |
+ background-image: linear-gradient(to bottom, #3c3c3c 0%, #222222 100%); |
|
| 220 |
+ background-repeat: repeat-x; |
|
| 221 |
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0); |
|
| 222 |
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); |
|
| 223 |
+} |
|
| 224 |
+ |
|
| 225 |
+.navbar-inverse .navbar-nav > .active > a {
|
|
| 226 |
+ background-image: -webkit-linear-gradient(top, #222222 0%, #282828 100%); |
|
| 227 |
+ background-image: linear-gradient(to bottom, #222222 0%, #282828 100%); |
|
| 228 |
+ background-repeat: repeat-x; |
|
| 229 |
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff222222', endColorstr='#ff282828', GradientType=0); |
|
| 230 |
+ -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.25); |
|
| 231 |
+ box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.25); |
|
| 232 |
+} |
|
| 233 |
+ |
|
| 234 |
+.navbar-inverse .navbar-brand, |
|
| 235 |
+.navbar-inverse .navbar-nav > li > a {
|
|
| 236 |
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); |
|
| 237 |
+} |
|
| 238 |
+ |
|
| 239 |
+.navbar-static-top, |
|
| 240 |
+.navbar-fixed-top, |
|
| 241 |
+.navbar-fixed-bottom {
|
|
| 242 |
+ border-radius: 0; |
|
| 243 |
+} |
|
| 244 |
+ |
|
| 245 |
+.alert {
|
|
| 246 |
+ text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2); |
|
| 247 |
+ -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05); |
|
| 248 |
+ box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05); |
|
| 249 |
+} |
|
| 250 |
+ |
|
| 251 |
+.alert-success {
|
|
| 252 |
+ background-image: -webkit-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%); |
|
| 253 |
+ background-image: linear-gradient(to bottom, #dff0d8 0%, #c8e5bc 100%); |
|
| 254 |
+ background-repeat: repeat-x; |
|
| 255 |
+ border-color: #b2dba1; |
|
| 256 |
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0); |
|
| 257 |
+} |
|
| 258 |
+ |
|
| 259 |
+.alert-info {
|
|
| 260 |
+ background-image: -webkit-linear-gradient(top, #d9edf7 0%, #b9def0 100%); |
|
| 261 |
+ background-image: linear-gradient(to bottom, #d9edf7 0%, #b9def0 100%); |
|
| 262 |
+ background-repeat: repeat-x; |
|
| 263 |
+ border-color: #9acfea; |
|
| 264 |
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0); |
|
| 265 |
+} |
|
| 266 |
+ |
|
| 267 |
+.alert-warning {
|
|
| 268 |
+ background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%); |
|
| 269 |
+ background-image: linear-gradient(to bottom, #fcf8e3 0%, #f8efc0 100%); |
|
| 270 |
+ background-repeat: repeat-x; |
|
| 271 |
+ border-color: #f5e79e; |
|
| 272 |
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0); |
|
| 273 |
+} |
|
| 274 |
+ |
|
| 275 |
+.alert-danger {
|
|
| 276 |
+ background-image: -webkit-linear-gradient(top, #f2dede 0%, #e7c3c3 100%); |
|
| 277 |
+ background-image: linear-gradient(to bottom, #f2dede 0%, #e7c3c3 100%); |
|
| 278 |
+ background-repeat: repeat-x; |
|
| 279 |
+ border-color: #dca7a7; |
|
| 280 |
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0); |
|
| 281 |
+} |
|
| 282 |
+ |
|
| 283 |
+.progress {
|
|
| 284 |
+ background-image: -webkit-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%); |
|
| 285 |
+ background-image: linear-gradient(to bottom, #ebebeb 0%, #f5f5f5 100%); |
|
| 286 |
+ background-repeat: repeat-x; |
|
| 287 |
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0); |
|
| 288 |
+} |
|
| 289 |
+ |
|
| 290 |
+.progress-bar {
|
|
| 291 |
+ background-image: -webkit-linear-gradient(top, #428bca 0%, #3071a9 100%); |
|
| 292 |
+ background-image: linear-gradient(to bottom, #428bca 0%, #3071a9 100%); |
|
| 293 |
+ background-repeat: repeat-x; |
|
| 294 |
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff3071a9', GradientType=0); |
|
| 295 |
+} |
|
| 296 |
+ |
|
| 297 |
+.progress-bar-success {
|
|
| 298 |
+ background-image: -webkit-linear-gradient(top, #5cb85c 0%, #449d44 100%); |
|
| 299 |
+ background-image: linear-gradient(to bottom, #5cb85c 0%, #449d44 100%); |
|
| 300 |
+ background-repeat: repeat-x; |
|
| 301 |
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0); |
|
| 302 |
+} |
|
| 303 |
+ |
|
| 304 |
+.progress-bar-info {
|
|
| 305 |
+ background-image: -webkit-linear-gradient(top, #5bc0de 0%, #31b0d5 100%); |
|
| 306 |
+ background-image: linear-gradient(to bottom, #5bc0de 0%, #31b0d5 100%); |
|
| 307 |
+ background-repeat: repeat-x; |
|
| 308 |
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0); |
|
| 309 |
+} |
|
| 310 |
+ |
|
| 311 |
+.progress-bar-warning {
|
|
| 312 |
+ background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #ec971f 100%); |
|
| 313 |
+ background-image: linear-gradient(to bottom, #f0ad4e 0%, #ec971f 100%); |
|
| 314 |
+ background-repeat: repeat-x; |
|
| 315 |
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0); |
|
| 316 |
+} |
|
| 317 |
+ |
|
| 318 |
+.progress-bar-danger {
|
|
| 319 |
+ background-image: -webkit-linear-gradient(top, #d9534f 0%, #c9302c 100%); |
|
| 320 |
+ background-image: linear-gradient(to bottom, #d9534f 0%, #c9302c 100%); |
|
| 321 |
+ background-repeat: repeat-x; |
|
| 322 |
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0); |
|
| 323 |
+} |
|
| 324 |
+ |
|
| 325 |
+.list-group {
|
|
| 326 |
+ border-radius: 4px; |
|
| 327 |
+ -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075); |
|
| 328 |
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075); |
|
| 329 |
+} |
|
| 330 |
+ |
|
| 331 |
+.list-group-item.active, |
|
| 332 |
+.list-group-item.active:hover, |
|
| 333 |
+.list-group-item.active:focus {
|
|
| 334 |
+ text-shadow: 0 -1px 0 #3071a9; |
|
| 335 |
+ background-image: -webkit-linear-gradient(top, #428bca 0%, #3278b3 100%); |
|
| 336 |
+ background-image: linear-gradient(to bottom, #428bca 0%, #3278b3 100%); |
|
| 337 |
+ background-repeat: repeat-x; |
|
| 338 |
+ border-color: #3278b3; |
|
| 339 |
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff3278b3', GradientType=0); |
|
| 340 |
+} |
|
| 341 |
+ |
|
| 342 |
+.panel {
|
|
| 343 |
+ -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); |
|
| 344 |
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); |
|
| 345 |
+} |
|
| 346 |
+ |
|
| 347 |
+.panel-default > .panel-heading {
|
|
| 348 |
+ background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%); |
|
| 349 |
+ background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%); |
|
| 350 |
+ background-repeat: repeat-x; |
|
| 351 |
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0); |
|
| 352 |
+} |
|
| 353 |
+ |
|
| 354 |
+.panel-primary > .panel-heading {
|
|
| 355 |
+ background-image: -webkit-linear-gradient(top, #428bca 0%, #357ebd 100%); |
|
| 356 |
+ background-image: linear-gradient(to bottom, #428bca 0%, #357ebd 100%); |
|
| 357 |
+ background-repeat: repeat-x; |
|
| 358 |
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff357ebd', GradientType=0); |
|
| 359 |
+} |
|
| 360 |
+ |
|
| 361 |
+.panel-success > .panel-heading {
|
|
| 362 |
+ background-image: -webkit-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%); |
|
| 363 |
+ background-image: linear-gradient(to bottom, #dff0d8 0%, #d0e9c6 100%); |
|
| 364 |
+ background-repeat: repeat-x; |
|
| 365 |
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0); |
|
| 366 |
+} |
|
| 367 |
+ |
|
| 368 |
+.panel-info > .panel-heading {
|
|
| 369 |
+ background-image: -webkit-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%); |
|
| 370 |
+ background-image: linear-gradient(to bottom, #d9edf7 0%, #c4e3f3 100%); |
|
| 371 |
+ background-repeat: repeat-x; |
|
| 372 |
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0); |
|
| 373 |
+} |
|
| 374 |
+ |
|
| 375 |
+.panel-warning > .panel-heading {
|
|
| 376 |
+ background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%); |
|
| 377 |
+ background-image: linear-gradient(to bottom, #fcf8e3 0%, #faf2cc 100%); |
|
| 378 |
+ background-repeat: repeat-x; |
|
| 379 |
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0); |
|
| 380 |
+} |
|
| 381 |
+ |
|
| 382 |
+.panel-danger > .panel-heading {
|
|
| 383 |
+ background-image: -webkit-linear-gradient(top, #f2dede 0%, #ebcccc 100%); |
|
| 384 |
+ background-image: linear-gradient(to bottom, #f2dede 0%, #ebcccc 100%); |
|
| 385 |
+ background-repeat: repeat-x; |
|
| 386 |
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0); |
|
| 387 |
+} |
|
| 388 |
+ |
|
| 389 |
+.well {
|
|
| 390 |
+ background-image: -webkit-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%); |
|
| 391 |
+ background-image: linear-gradient(to bottom, #e8e8e8 0%, #f5f5f5 100%); |
|
| 392 |
+ background-repeat: repeat-x; |
|
| 393 |
+ border-color: #dcdcdc; |
|
| 394 |
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0); |
|
| 395 |
+ -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(255, 255, 255, 0.1); |
|
| 396 |
+ box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(255, 255, 255, 0.1); |
|
| 397 |
+} |
|
| 0 | 398 |
\ No newline at end of file |
| ... | ... |
@@ -0,0 +1,7 @@ |
| 1 |
+/*! |
|
| 2 |
+ * Bootstrap v3.0.3 (http://getbootstrap.com) |
|
| 3 |
+ * Copyright 2013 Twitter, Inc. |
|
| 4 |
+ * Licensed under http://www.apache.org/licenses/LICENSE-2.0 |
|
| 5 |
+ */ |
|
| 6 |
+ |
|
| 7 |
+.btn-default,.btn-primary,.btn-success,.btn-info,.btn-warning,.btn-danger{text-shadow:0 -1px 0 rgba(0,0,0,0.2);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.15),0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 0 rgba(255,255,255,0.15),0 1px 1px rgba(0,0,0,0.075)}.btn-default:active,.btn-primary:active,.btn-success:active,.btn-info:active,.btn-warning:active,.btn-danger:active,.btn-default.active,.btn-primary.active,.btn-success.active,.btn-info.active,.btn-warning.active,.btn-danger.active{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn:active,.btn.active{background-image:none}.btn-default{text-shadow:0 1px 0 #fff;background-image:-webkit-linear-gradient(top,#fff 0,#e0e0e0 100%);background-image:linear-gradient(to bottom,#fff 0,#e0e0e0 100%);background-repeat:repeat-x;border-color:#dbdbdb;border-color:#ccc;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff',endColorstr='#ffe0e0e0',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-default:hover,.btn-default:focus{background-color:#e0e0e0;background-position:0 -15px}.btn-default:active,.btn-default.active{background-color:#e0e0e0;border-color:#dbdbdb}.btn-primary{background-image:-webkit-linear-gradient(top,#428bca 0,#2d6ca2 100%);background-image:linear-gradient(to bottom,#428bca 0,#2d6ca2 100%);background-repeat:repeat-x;border-color:#2b669a;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca',endColorstr='#ff2d6ca2',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-primary:hover,.btn-primary:focus{background-color:#2d6ca2;background-position:0 -15px}.btn-primary:active,.btn-primary.active{background-color:#2d6ca2;border-color:#2b669a}.btn-success{background-image:-webkit-linear-gradient(top,#5cb85c 0,#419641 100%);background-image:linear-gradient(to bottom,#5cb85c 0,#419641 100%);background-repeat:repeat-x;border-color:#3e8f3e;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c',endColorstr='#ff419641',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-success:hover,.btn-success:focus{background-color:#419641;background-position:0 -15px}.btn-success:active,.btn-success.active{background-color:#419641;border-color:#3e8f3e}.btn-warning{background-image:-webkit-linear-gradient(top,#f0ad4e 0,#eb9316 100%);background-image:linear-gradient(to bottom,#f0ad4e 0,#eb9316 100%);background-repeat:repeat-x;border-color:#e38d13;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e',endColorstr='#ffeb9316',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-warning:hover,.btn-warning:focus{background-color:#eb9316;background-position:0 -15px}.btn-warning:active,.btn-warning.active{background-color:#eb9316;border-color:#e38d13}.btn-danger{background-image:-webkit-linear-gradient(top,#d9534f 0,#c12e2a 100%);background-image:linear-gradient(to bottom,#d9534f 0,#c12e2a 100%);background-repeat:repeat-x;border-color:#b92c28;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f',endColorstr='#ffc12e2a',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-danger:hover,.btn-danger:focus{background-color:#c12e2a;background-position:0 -15px}.btn-danger:active,.btn-danger.active{background-color:#c12e2a;border-color:#b92c28}.btn-info{background-image:-webkit-linear-gradient(top,#5bc0de 0,#2aabd2 100%);background-image:linear-gradient(to bottom,#5bc0de 0,#2aabd2 100%);background-repeat:repeat-x;border-color:#28a4c9;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de',endColorstr='#ff2aabd2',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-info:hover,.btn-info:focus{background-color:#2aabd2;background-position:0 -15px}.btn-info:active,.btn-info.active{background-color:#2aabd2;border-color:#28a4c9}.thumbnail,.img-thumbnail{-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.075);box-shadow:0 1px 2px rgba(0,0,0,0.075)}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{background-color:#e8e8e8;background-image:-webkit-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:linear-gradient(to bottom,#f5f5f5 0,#e8e8e8 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5',endColorstr='#ffe8e8e8',GradientType=0)}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{background-color:#357ebd;background-image:-webkit-linear-gradient(top,#428bca 0,#357ebd 100%);background-image:linear-gradient(to bottom,#428bca 0,#357ebd 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca',endColorstr='#ff357ebd',GradientType=0)}.navbar-default{background-image:-webkit-linear-gradient(top,#fff 0,#f8f8f8 100%);background-image:linear-gradient(to bottom,#fff 0,#f8f8f8 100%);background-repeat:repeat-x;border-radius:4px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff',endColorstr='#fff8f8f8',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.15),0 1px 5px rgba(0,0,0,0.075);box-shadow:inset 0 1px 0 rgba(255,255,255,0.15),0 1px 5px rgba(0,0,0,0.075)}.navbar-default .navbar-nav>.active>a{background-image:-webkit-linear-gradient(top,#ebebeb 0,#f3f3f3 100%);background-image:linear-gradient(to bottom,#ebebeb 0,#f3f3f3 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb',endColorstr='#fff3f3f3',GradientType=0);-webkit-box-shadow:inset 0 3px 9px rgba(0,0,0,0.075);box-shadow:inset 0 3px 9px rgba(0,0,0,0.075)}.navbar-brand,.navbar-nav>li>a{text-shadow:0 1px 0 rgba(255,255,255,0.25)}.navbar-inverse{background-image:-webkit-linear-gradient(top,#3c3c3c 0,#222 100%);background-image:linear-gradient(to bottom,#3c3c3c 0,#222 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c',endColorstr='#ff222222',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.navbar-inverse .navbar-nav>.active>a{background-image:-webkit-linear-gradient(top,#222 0,#282828 100%);background-image:linear-gradient(to bottom,#222 0,#282828 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff222222',endColorstr='#ff282828',GradientType=0);-webkit-box-shadow:inset 0 3px 9px rgba(0,0,0,0.25);box-shadow:inset 0 3px 9px rgba(0,0,0,0.25)}.navbar-inverse .navbar-brand,.navbar-inverse .navbar-nav>li>a{text-shadow:0 -1px 0 rgba(0,0,0,0.25)}.navbar-static-top,.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}.alert{text-shadow:0 1px 0 rgba(255,255,255,0.2);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.25),0 1px 2px rgba(0,0,0,0.05);box-shadow:inset 0 1px 0 rgba(255,255,255,0.25),0 1px 2px rgba(0,0,0,0.05)}.alert-success{background-image:-webkit-linear-gradient(top,#dff0d8 0,#c8e5bc 100%);background-image:linear-gradient(to bottom,#dff0d8 0,#c8e5bc 100%);background-repeat:repeat-x;border-color:#b2dba1;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8',endColorstr='#ffc8e5bc',GradientType=0)}.alert-info{background-image:-webkit-linear-gradient(top,#d9edf7 0,#b9def0 100%);background-image:linear-gradient(to bottom,#d9edf7 0,#b9def0 100%);background-repeat:repeat-x;border-color:#9acfea;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7',endColorstr='#ffb9def0',GradientType=0)}.alert-warning{background-image:-webkit-linear-gradient(top,#fcf8e3 0,#f8efc0 100%);background-image:linear-gradient(to bottom,#fcf8e3 0,#f8efc0 100%);background-repeat:repeat-x;border-color:#f5e79e;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3',endColorstr='#fff8efc0',GradientType=0)}.alert-danger{background-image:-webkit-linear-gradient(top,#f2dede 0,#e7c3c3 100%);background-image:linear-gradient(to bottom,#f2dede 0,#e7c3c3 100%);background-repeat:repeat-x;border-color:#dca7a7;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede',endColorstr='#ffe7c3c3',GradientType=0)}.progress{background-image:-webkit-linear-gradient(top,#ebebeb 0,#f5f5f5 100%);background-image:linear-gradient(to bottom,#ebebeb 0,#f5f5f5 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb',endColorstr='#fff5f5f5',GradientType=0)}.progress-bar{background-image:-webkit-linear-gradient(top,#428bca 0,#3071a9 100%);background-image:linear-gradient(to bottom,#428bca 0,#3071a9 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca',endColorstr='#ff3071a9',GradientType=0)}.progress-bar-success{background-image:-webkit-linear-gradient(top,#5cb85c 0,#449d44 100%);background-image:linear-gradient(to bottom,#5cb85c 0,#449d44 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c',endColorstr='#ff449d44',GradientType=0)}.progress-bar-info{background-image:-webkit-linear-gradient(top,#5bc0de 0,#31b0d5 100%);background-image:linear-gradient(to bottom,#5bc0de 0,#31b0d5 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de',endColorstr='#ff31b0d5',GradientType=0)}.progress-bar-warning{background-image:-webkit-linear-gradient(top,#f0ad4e 0,#ec971f 100%);background-image:linear-gradient(to bottom,#f0ad4e 0,#ec971f 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e',endColorstr='#ffec971f',GradientType=0)}.progress-bar-danger{background-image:-webkit-linear-gradient(top,#d9534f 0,#c9302c 100%);background-image:linear-gradient(to bottom,#d9534f 0,#c9302c 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f',endColorstr='#ffc9302c',GradientType=0)}.list-group{border-radius:4px;-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.075);box-shadow:0 1px 2px rgba(0,0,0,0.075)}.list-group-item.active,.list-group-item.active:hover,.list-group-item.active:focus{text-shadow:0 -1px 0 #3071a9;background-image:-webkit-linear-gradient(top,#428bca 0,#3278b3 100%);background-image:linear-gradient(to bottom,#428bca 0,#3278b3 100%);background-repeat:repeat-x;border-color:#3278b3;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca',endColorstr='#ff3278b3',GradientType=0)}.panel{-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.05);box-shadow:0 1px 2px rgba(0,0,0,0.05)}.panel-default>.panel-heading{background-image:-webkit-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:linear-gradient(to bottom,#f5f5f5 0,#e8e8e8 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5',endColorstr='#ffe8e8e8',GradientType=0)}.panel-primary>.panel-heading{background-image:-webkit-linear-gradient(top,#428bca 0,#357ebd 100%);background-image:linear-gradient(to bottom,#428bca 0,#357ebd 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca',endColorstr='#ff357ebd',GradientType=0)}.panel-success>.panel-heading{background-image:-webkit-linear-gradient(top,#dff0d8 0,#d0e9c6 100%);background-image:linear-gradient(to bottom,#dff0d8 0,#d0e9c6 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8',endColorstr='#ffd0e9c6',GradientType=0)}.panel-info>.panel-heading{background-image:-webkit-linear-gradient(top,#d9edf7 0,#c4e3f3 100%);background-image:linear-gradient(to bottom,#d9edf7 0,#c4e3f3 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7',endColorstr='#ffc4e3f3',GradientType=0)}.panel-warning>.panel-heading{background-image:-webkit-linear-gradient(top,#fcf8e3 0,#faf2cc 100%);background-image:linear-gradient(to bottom,#fcf8e3 0,#faf2cc 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3',endColorstr='#fffaf2cc',GradientType=0)}.panel-danger>.panel-heading{background-image:-webkit-linear-gradient(top,#f2dede 0,#ebcccc 100%);background-image:linear-gradient(to bottom,#f2dede 0,#ebcccc 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede',endColorstr='#ffebcccc',GradientType=0)}.well{background-image:-webkit-linear-gradient(top,#e8e8e8 0,#f5f5f5 100%);background-image:linear-gradient(to bottom,#e8e8e8 0,#f5f5f5 100%);background-repeat:repeat-x;border-color:#dcdcdc;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8',endColorstr='#fff5f5f5',GradientType=0);-webkit-box-shadow:inset 0 1px 3px rgba(0,0,0,0.05),0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 3px rgba(0,0,0,0.05),0 1px 0 rgba(255,255,255,0.1)}
|
|
| 0 | 8 |
\ No newline at end of file |
| ... | ... |
@@ -0,0 +1,7118 @@ |
| 1 |
+/*! |
|
| 2 |
+ * Bootstrap v3.0.3 (http://getbootstrap.com) |
|
| 3 |
+ * Copyright 2013 Twitter, Inc. |
|
| 4 |
+ * Licensed under http://www.apache.org/licenses/LICENSE-2.0 |
|
| 5 |
+ */ |
|
| 6 |
+ |
|
| 7 |
+/*! normalize.css v2.1.3 | MIT License | git.io/normalize */ |
|
| 8 |
+ |
|
| 9 |
+article, |
|
| 10 |
+aside, |
|
| 11 |
+details, |
|
| 12 |
+figcaption, |
|
| 13 |
+figure, |
|
| 14 |
+footer, |
|
| 15 |
+header, |
|
| 16 |
+hgroup, |
|
| 17 |
+main, |
|
| 18 |
+nav, |
|
| 19 |
+section, |
|
| 20 |
+summary {
|
|
| 21 |
+ display: block; |
|
| 22 |
+} |
|
| 23 |
+ |
|
| 24 |
+audio, |
|
| 25 |
+canvas, |
|
| 26 |
+video {
|
|
| 27 |
+ display: inline-block; |
|
| 28 |
+} |
|
| 29 |
+ |
|
| 30 |
+audio:not([controls]) {
|
|
| 31 |
+ display: none; |
|
| 32 |
+ height: 0; |
|
| 33 |
+} |
|
| 34 |
+ |
|
| 35 |
+[hidden], |
|
| 36 |
+template {
|
|
| 37 |
+ display: none; |
|
| 38 |
+} |
|
| 39 |
+ |
|
| 40 |
+html {
|
|
| 41 |
+ font-family: sans-serif; |
|
| 42 |
+ -webkit-text-size-adjust: 100%; |
|
| 43 |
+ -ms-text-size-adjust: 100%; |
|
| 44 |
+} |
|
| 45 |
+ |
|
| 46 |
+body {
|
|
| 47 |
+ margin: 0; |
|
| 48 |
+} |
|
| 49 |
+ |
|
| 50 |
+a {
|
|
| 51 |
+ background: transparent; |
|
| 52 |
+} |
|
| 53 |
+ |
|
| 54 |
+a:focus {
|
|
| 55 |
+ outline: thin dotted; |
|
| 56 |
+} |
|
| 57 |
+ |
|
| 58 |
+a:active, |
|
| 59 |
+a:hover {
|
|
| 60 |
+ outline: 0; |
|
| 61 |
+} |
|
| 62 |
+ |
|
| 63 |
+h1 {
|
|
| 64 |
+ margin: 0.67em 0; |
|
| 65 |
+ font-size: 2em; |
|
| 66 |
+} |
|
| 67 |
+ |
|
| 68 |
+abbr[title] {
|
|
| 69 |
+ border-bottom: 1px dotted; |
|
| 70 |
+} |
|
| 71 |
+ |
|
| 72 |
+b, |
|
| 73 |
+strong {
|
|
| 74 |
+ font-weight: bold; |
|
| 75 |
+} |
|
| 76 |
+ |
|
| 77 |
+dfn {
|
|
| 78 |
+ font-style: italic; |
|
| 79 |
+} |
|
| 80 |
+ |
|
| 81 |
+hr {
|
|
| 82 |
+ height: 0; |
|
| 83 |
+ -moz-box-sizing: content-box; |
|
| 84 |
+ box-sizing: content-box; |
|
| 85 |
+} |
|
| 86 |
+ |
|
| 87 |
+mark {
|
|
| 88 |
+ color: #000; |
|
| 89 |
+ background: #ff0; |
|
| 90 |
+} |
|
| 91 |
+ |
|
| 92 |
+code, |
|
| 93 |
+kbd, |
|
| 94 |
+pre, |
|
| 95 |
+samp {
|
|
| 96 |
+ font-family: monospace, serif; |
|
| 97 |
+ font-size: 1em; |
|
| 98 |
+} |
|
| 99 |
+ |
|
| 100 |
+pre {
|
|
| 101 |
+ white-space: pre-wrap; |
|
| 102 |
+} |
|
| 103 |
+ |
|
| 104 |
+q {
|
|
| 105 |
+ quotes: "\201C" "\201D" "\2018" "\2019"; |
|
| 106 |
+} |
|
| 107 |
+ |
|
| 108 |
+small {
|
|
| 109 |
+ font-size: 80%; |
|
| 110 |
+} |
|
| 111 |
+ |
|
| 112 |
+sub, |
|
| 113 |
+sup {
|
|
| 114 |
+ position: relative; |
|
| 115 |
+ font-size: 75%; |
|
| 116 |
+ line-height: 0; |
|
| 117 |
+ vertical-align: baseline; |
|
| 118 |
+} |
|
| 119 |
+ |
|
| 120 |
+sup {
|
|
| 121 |
+ top: -0.5em; |
|
| 122 |
+} |
|
| 123 |
+ |
|
| 124 |
+sub {
|
|
| 125 |
+ bottom: -0.25em; |
|
| 126 |
+} |
|
| 127 |
+ |
|
| 128 |
+img {
|
|
| 129 |
+ border: 0; |
|
| 130 |
+} |
|
| 131 |
+ |
|
| 132 |
+svg:not(:root) {
|
|
| 133 |
+ overflow: hidden; |
|
| 134 |
+} |
|
| 135 |
+ |
|
| 136 |
+figure {
|
|
| 137 |
+ margin: 0; |
|
| 138 |
+} |
|
| 139 |
+ |
|
| 140 |
+fieldset {
|
|
| 141 |
+ padding: 0.35em 0.625em 0.75em; |
|
| 142 |
+ margin: 0 2px; |
|
| 143 |
+ border: 1px solid #c0c0c0; |
|
| 144 |
+} |
|
| 145 |
+ |
|
| 146 |
+legend {
|
|
| 147 |
+ padding: 0; |
|
| 148 |
+ border: 0; |
|
| 149 |
+} |
|
| 150 |
+ |
|
| 151 |
+button, |
|
| 152 |
+input, |
|
| 153 |
+select, |
|
| 154 |
+textarea {
|
|
| 155 |
+ margin: 0; |
|
| 156 |
+ font-family: inherit; |
|
| 157 |
+ font-size: 100%; |
|
| 158 |
+} |
|
| 159 |
+ |
|
| 160 |
+button, |
|
| 161 |
+input {
|
|
| 162 |
+ line-height: normal; |
|
| 163 |
+} |
|
| 164 |
+ |
|
| 165 |
+button, |
|
| 166 |
+select {
|
|
| 167 |
+ text-transform: none; |
|
| 168 |
+} |
|
| 169 |
+ |
|
| 170 |
+button, |
|
| 171 |
+html input[type="button"], |
|
| 172 |
+input[type="reset"], |
|
| 173 |
+input[type="submit"] {
|
|
| 174 |
+ cursor: pointer; |
|
| 175 |
+ -webkit-appearance: button; |
|
| 176 |
+} |
|
| 177 |
+ |
|
| 178 |
+button[disabled], |
|
| 179 |
+html input[disabled] {
|
|
| 180 |
+ cursor: default; |
|
| 181 |
+} |
|
| 182 |
+ |
|
| 183 |
+input[type="checkbox"], |
|
| 184 |
+input[type="radio"] {
|
|
| 185 |
+ padding: 0; |
|
| 186 |
+ box-sizing: border-box; |
|
| 187 |
+} |
|
| 188 |
+ |
|
| 189 |
+input[type="search"] {
|
|
| 190 |
+ -webkit-box-sizing: content-box; |
|
| 191 |
+ -moz-box-sizing: content-box; |
|
| 192 |
+ box-sizing: content-box; |
|
| 193 |
+ -webkit-appearance: textfield; |
|
| 194 |
+} |
|
| 195 |
+ |
|
| 196 |
+input[type="search"]::-webkit-search-cancel-button, |
|
| 197 |
+input[type="search"]::-webkit-search-decoration {
|
|
| 198 |
+ -webkit-appearance: none; |
|
| 199 |
+} |
|
| 200 |
+ |
|
| 201 |
+button::-moz-focus-inner, |
|
| 202 |
+input::-moz-focus-inner {
|
|
| 203 |
+ padding: 0; |
|
| 204 |
+ border: 0; |
|
| 205 |
+} |
|
| 206 |
+ |
|
| 207 |
+textarea {
|
|
| 208 |
+ overflow: auto; |
|
| 209 |
+ vertical-align: top; |
|
| 210 |
+} |
|
| 211 |
+ |
|
| 212 |
+table {
|
|
| 213 |
+ border-collapse: collapse; |
|
| 214 |
+ border-spacing: 0; |
|
| 215 |
+} |
|
| 216 |
+ |
|
| 217 |
+@media print {
|
|
| 218 |
+ * {
|
|
| 219 |
+ color: #000 !important; |
|
| 220 |
+ text-shadow: none !important; |
|
| 221 |
+ background: transparent !important; |
|
| 222 |
+ box-shadow: none !important; |
|
| 223 |
+ } |
|
| 224 |
+ a, |
|
| 225 |
+ a:visited {
|
|
| 226 |
+ text-decoration: underline; |
|
| 227 |
+ } |
|
| 228 |
+ a[href]:after {
|
|
| 229 |
+ content: " (" attr(href) ")";
|
|
| 230 |
+ } |
|
| 231 |
+ abbr[title]:after {
|
|
| 232 |
+ content: " (" attr(title) ")";
|
|
| 233 |
+ } |
|
| 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 |
+ select {
|
|
| 267 |
+ background: #fff !important; |
|
| 268 |
+ } |
|
| 269 |
+ .navbar {
|
|
| 270 |
+ display: none; |
|
| 271 |
+ } |
|
| 272 |
+ .table td, |
|
| 273 |
+ .table th {
|
|
| 274 |
+ background-color: #fff !important; |
|
| 275 |
+ } |
|
| 276 |
+ .btn > .caret, |
|
| 277 |
+ .dropup > .btn > .caret {
|
|
| 278 |
+ border-top-color: #000 !important; |
|
| 279 |
+ } |
|
| 280 |
+ .label {
|
|
| 281 |
+ border: 1px solid #000; |
|
| 282 |
+ } |
|
| 283 |
+ .table {
|
|
| 284 |
+ border-collapse: collapse !important; |
|
| 285 |
+ } |
|
| 286 |
+ .table-bordered th, |
|
| 287 |
+ .table-bordered td {
|
|
| 288 |
+ border: 1px solid #ddd !important; |
|
| 289 |
+ } |
|
| 290 |
+} |
|
| 291 |
+ |
|
| 292 |
+*, |
|
| 293 |
+*:before, |
|
| 294 |
+*:after {
|
|
| 295 |
+ -webkit-box-sizing: border-box; |
|
| 296 |
+ -moz-box-sizing: border-box; |
|
| 297 |
+ box-sizing: border-box; |
|
| 298 |
+} |
|
| 299 |
+ |
|
| 300 |
+html {
|
|
| 301 |
+ font-size: 62.5%; |
|
| 302 |
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0); |
|
| 303 |
+} |
|
| 304 |
+ |
|
| 305 |
+body {
|
|
| 306 |
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; |
|
| 307 |
+ font-size: 14px; |
|
| 308 |
+ line-height: 1.428571429; |
|
| 309 |
+ color: #333333; |
|
| 310 |
+ background-color: #ffffff; |
|
| 311 |
+} |
|
| 312 |
+ |
|
| 313 |
+input, |
|
| 314 |
+button, |
|
| 315 |
+select, |
|
| 316 |
+textarea {
|
|
| 317 |
+ font-family: inherit; |
|
| 318 |
+ font-size: inherit; |
|
| 319 |
+ line-height: inherit; |
|
| 320 |
+} |
|
| 321 |
+ |
|
| 322 |
+a {
|
|
| 323 |
+ color: #428bca; |
|
| 324 |
+ text-decoration: none; |
|
| 325 |
+} |
|
| 326 |
+ |
|
| 327 |
+a:hover, |
|
| 328 |
+a:focus {
|
|
| 329 |
+ color: #2a6496; |
|
| 330 |
+ text-decoration: underline; |
|
| 331 |
+} |
|
| 332 |
+ |
|
| 333 |
+a:focus {
|
|
| 334 |
+ outline: thin dotted; |
|
| 335 |
+ outline: 5px auto -webkit-focus-ring-color; |
|
| 336 |
+ outline-offset: -2px; |
|
| 337 |
+} |
|
| 338 |
+ |
|
| 339 |
+img {
|
|
| 340 |
+ vertical-align: middle; |
|
| 341 |
+} |
|
| 342 |
+ |
|
| 343 |
+.img-responsive {
|
|
| 344 |
+ display: block; |
|
| 345 |
+ height: auto; |
|
| 346 |
+ max-width: 100%; |
|
| 347 |
+} |
|
| 348 |
+ |
|
| 349 |
+.img-rounded {
|
|
| 350 |
+ border-radius: 6px; |
|
| 351 |
+} |
|
| 352 |
+ |
|
| 353 |
+.img-thumbnail {
|
|
| 354 |
+ display: inline-block; |
|
| 355 |
+ height: auto; |
|
| 356 |
+ max-width: 100%; |
|
| 357 |
+ padding: 4px; |
|
| 358 |
+ line-height: 1.428571429; |
|
| 359 |
+ background-color: #ffffff; |
|
| 360 |
+ border: 1px solid #dddddd; |
|
| 361 |
+ border-radius: 4px; |
|
| 362 |
+ -webkit-transition: all 0.2s ease-in-out; |
|
| 363 |
+ transition: all 0.2s ease-in-out; |
|
| 364 |
+} |
|
| 365 |
+ |
|
| 366 |
+.img-circle {
|
|
| 367 |
+ border-radius: 50%; |
|
| 368 |
+} |
|
| 369 |
+ |
|
| 370 |
+hr {
|
|
| 371 |
+ margin-top: 20px; |
|
| 372 |
+ margin-bottom: 20px; |
|
| 373 |
+ border: 0; |
|
| 374 |
+ border-top: 1px solid #eeeeee; |
|
| 375 |
+} |
|
| 376 |
+ |
|
| 377 |
+.sr-only {
|
|
| 378 |
+ position: absolute; |
|
| 379 |
+ width: 1px; |
|
| 380 |
+ height: 1px; |
|
| 381 |
+ padding: 0; |
|
| 382 |
+ margin: -1px; |
|
| 383 |
+ overflow: hidden; |
|
| 384 |
+ clip: rect(0, 0, 0, 0); |
|
| 385 |
+ border: 0; |
|
| 386 |
+} |
|
| 387 |
+ |
|
| 388 |
+h1, |
|
| 389 |
+h2, |
|
| 390 |
+h3, |
|
| 391 |
+h4, |
|
| 392 |
+h5, |
|
| 393 |
+h6, |
|
| 394 |
+.h1, |
|
| 395 |
+.h2, |
|
| 396 |
+.h3, |
|
| 397 |
+.h4, |
|
| 398 |
+.h5, |
|
| 399 |
+.h6 {
|
|
| 400 |
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; |
|
| 401 |
+ font-weight: 500; |
|
| 402 |
+ line-height: 1.1; |
|
| 403 |
+ color: inherit; |
|
| 404 |
+} |
|
| 405 |
+ |
|
| 406 |
+h1 small, |
|
| 407 |
+h2 small, |
|
| 408 |
+h3 small, |
|
| 409 |
+h4 small, |
|
| 410 |
+h5 small, |
|
| 411 |
+h6 small, |
|
| 412 |
+.h1 small, |
|
| 413 |
+.h2 small, |
|
| 414 |
+.h3 small, |
|
| 415 |
+.h4 small, |
|
| 416 |
+.h5 small, |
|
| 417 |
+.h6 small, |
|
| 418 |
+h1 .small, |
|
| 419 |
+h2 .small, |
|
| 420 |
+h3 .small, |
|
| 421 |
+h4 .small, |
|
| 422 |
+h5 .small, |
|
| 423 |
+h6 .small, |
|
| 424 |
+.h1 .small, |
|
| 425 |
+.h2 .small, |
|
| 426 |
+.h3 .small, |
|
| 427 |
+.h4 .small, |
|
| 428 |
+.h5 .small, |
|
| 429 |
+.h6 .small {
|
|
| 430 |
+ font-weight: normal; |
|
| 431 |
+ line-height: 1; |
|
| 432 |
+ color: #999999; |
|
| 433 |
+} |
|
| 434 |
+ |
|
| 435 |
+h1, |
|
| 436 |
+h2, |
|
| 437 |
+h3 {
|
|
| 438 |
+ margin-top: 20px; |
|
| 439 |
+ margin-bottom: 10px; |
|
| 440 |
+} |
|
| 441 |
+ |
|
| 442 |
+h1 small, |
|
| 443 |
+h2 small, |
|
| 444 |
+h3 small, |
|
| 445 |
+h1 .small, |
|
| 446 |
+h2 .small, |
|
| 447 |
+h3 .small {
|
|
| 448 |
+ font-size: 65%; |
|
| 449 |
+} |
|
| 450 |
+ |
|
| 451 |
+h4, |
|
| 452 |
+h5, |
|
| 453 |
+h6 {
|
|
| 454 |
+ margin-top: 10px; |
|
| 455 |
+ margin-bottom: 10px; |
|
| 456 |
+} |
|
| 457 |
+ |
|
| 458 |
+h4 small, |
|
| 459 |
+h5 small, |
|
| 460 |
+h6 small, |
|
| 461 |
+h4 .small, |
|
| 462 |
+h5 .small, |
|
| 463 |
+h6 .small {
|
|
| 464 |
+ font-size: 75%; |
|
| 465 |
+} |
|
| 466 |
+ |
|
| 467 |
+h1, |
|
| 468 |
+.h1 {
|
|
| 469 |
+ font-size: 36px; |
|
| 470 |
+} |
|
| 471 |
+ |
|
| 472 |
+h2, |
|
| 473 |
+.h2 {
|
|
| 474 |
+ font-size: 30px; |
|
| 475 |
+} |
|
| 476 |
+ |
|
| 477 |
+h3, |
|
| 478 |
+.h3 {
|
|
| 479 |
+ font-size: 24px; |
|
| 480 |
+} |
|
| 481 |
+ |
|
| 482 |
+h4, |
|
| 483 |
+.h4 {
|
|
| 484 |
+ font-size: 18px; |
|
| 485 |
+} |
|
| 486 |
+ |
|
| 487 |
+h5, |
|
| 488 |
+.h5 {
|
|
| 489 |
+ font-size: 14px; |
|
| 490 |
+} |
|
| 491 |
+ |
|
| 492 |
+h6, |
|
| 493 |
+.h6 {
|
|
| 494 |
+ font-size: 12px; |
|
| 495 |
+} |
|
| 496 |
+ |
|
| 497 |
+p {
|
|
| 498 |
+ margin: 0 0 10px; |
|
| 499 |
+} |
|
| 500 |
+ |
|
| 501 |
+.lead {
|
|
| 502 |
+ margin-bottom: 20px; |
|
| 503 |
+ font-size: 16px; |
|
| 504 |
+ font-weight: 200; |
|
| 505 |
+ line-height: 1.4; |
|
| 506 |
+} |
|
| 507 |
+ |
|
| 508 |
+@media (min-width: 768px) {
|
|
| 509 |
+ .lead {
|
|
| 510 |
+ font-size: 21px; |
|
| 511 |
+ } |
|
| 512 |
+} |
|
| 513 |
+ |
|
| 514 |
+small, |
|
| 515 |
+.small {
|
|
| 516 |
+ font-size: 85%; |
|
| 517 |
+} |
|
| 518 |
+ |
|
| 519 |
+cite {
|
|
| 520 |
+ font-style: normal; |
|
| 521 |
+} |
|
| 522 |
+ |
|
| 523 |
+.text-muted {
|
|
| 524 |
+ color: #999999; |
|
| 525 |
+} |
|
| 526 |
+ |
|
| 527 |
+.text-primary {
|
|
| 528 |
+ color: #428bca; |
|
| 529 |
+} |
|
| 530 |
+ |
|
| 531 |
+.text-primary:hover {
|
|
| 532 |
+ color: #3071a9; |
|
| 533 |
+} |
|
| 534 |
+ |
|
| 535 |
+.text-warning {
|
|
| 536 |
+ color: #8a6d3b; |
|
| 537 |
+} |
|
| 538 |
+ |
|
| 539 |
+.text-warning:hover {
|
|
| 540 |
+ color: #66512c; |
|
| 541 |
+} |
|
| 542 |
+ |
|
| 543 |
+.text-danger {
|
|
| 544 |
+ color: #a94442; |
|
| 545 |
+} |
|
| 546 |
+ |
|
| 547 |
+.text-danger:hover {
|
|
| 548 |
+ color: #843534; |
|
| 549 |
+} |
|
| 550 |
+ |
|
| 551 |
+.text-success {
|
|
| 552 |
+ color: #3c763d; |
|
| 553 |
+} |
|
| 554 |
+ |
|
| 555 |
+.text-success:hover {
|
|
| 556 |
+ color: #2b542c; |
|
| 557 |
+} |
|
| 558 |
+ |
|
| 559 |
+.text-info {
|
|
| 560 |
+ color: #31708f; |
|
| 561 |
+} |
|
| 562 |
+ |
|
| 563 |
+.text-info:hover {
|
|
| 564 |
+ color: #245269; |
|
| 565 |
+} |
|
| 566 |
+ |
|
| 567 |
+.text-left {
|
|
| 568 |
+ text-align: left; |
|
| 569 |
+} |
|
| 570 |
+ |
|
| 571 |
+.text-right {
|
|
| 572 |
+ text-align: right; |
|
| 573 |
+} |
|
| 574 |
+ |
|
| 575 |
+.text-center {
|
|
| 576 |
+ text-align: center; |
|
| 577 |
+} |
|
| 578 |
+ |
|
| 579 |
+.page-header {
|
|
| 580 |
+ padding-bottom: 9px; |
|
| 581 |
+ margin: 40px 0 20px; |
|
| 582 |
+ border-bottom: 1px solid #eeeeee; |
|
| 583 |
+} |
|
| 584 |
+ |
|
| 585 |
+ul, |
|
| 586 |
+ol {
|
|
| 587 |
+ margin-top: 0; |
|
| 588 |
+ margin-bottom: 10px; |
|
| 589 |
+} |
|
| 590 |
+ |
|
| 591 |
+ul ul, |
|
| 592 |
+ol ul, |
|
| 593 |
+ul ol, |
|
| 594 |
+ol ol {
|
|
| 595 |
+ margin-bottom: 0; |
|
| 596 |
+} |
|
| 597 |
+ |
|
| 598 |
+.list-unstyled {
|
|
| 599 |
+ padding-left: 0; |
|
| 600 |
+ list-style: none; |
|
| 601 |
+} |
|
| 602 |
+ |
|
| 603 |
+.list-inline {
|
|
| 604 |
+ padding-left: 0; |
|
| 605 |
+ list-style: none; |
|
| 606 |
+} |
|
| 607 |
+ |
|
| 608 |
+.list-inline > li {
|
|
| 609 |
+ display: inline-block; |
|
| 610 |
+ padding-right: 5px; |
|
| 611 |
+ padding-left: 5px; |
|
| 612 |
+} |
|
| 613 |
+ |
|
| 614 |
+.list-inline > li:first-child {
|
|
| 615 |
+ padding-left: 0; |
|
| 616 |
+} |
|
| 617 |
+ |
|
| 618 |
+dl {
|
|
| 619 |
+ margin-top: 0; |
|
| 620 |
+ margin-bottom: 20px; |
|
| 621 |
+} |
|
| 622 |
+ |
|
| 623 |
+dt, |
|
| 624 |
+dd {
|
|
| 625 |
+ line-height: 1.428571429; |
|
| 626 |
+} |
|
| 627 |
+ |
|
| 628 |
+dt {
|
|
| 629 |
+ font-weight: bold; |
|
| 630 |
+} |
|
| 631 |
+ |
|
| 632 |
+dd {
|
|
| 633 |
+ margin-left: 0; |
|
| 634 |
+} |
|
| 635 |
+ |
|
| 636 |
+@media (min-width: 768px) {
|
|
| 637 |
+ .dl-horizontal dt {
|
|
| 638 |
+ float: left; |
|
| 639 |
+ width: 160px; |
|
| 640 |
+ overflow: hidden; |
|
| 641 |
+ clear: left; |
|
| 642 |
+ text-align: right; |
|
| 643 |
+ text-overflow: ellipsis; |
|
| 644 |
+ white-space: nowrap; |
|
| 645 |
+ } |
|
| 646 |
+ .dl-horizontal dd {
|
|
| 647 |
+ margin-left: 180px; |
|
| 648 |
+ } |
|
| 649 |
+ .dl-horizontal dd:before, |
|
| 650 |
+ .dl-horizontal dd:after {
|
|
| 651 |
+ display: table; |
|
| 652 |
+ content: " "; |
|
| 653 |
+ } |
|
| 654 |
+ .dl-horizontal dd:after {
|
|
| 655 |
+ clear: both; |
|
| 656 |
+ } |
|
| 657 |
+ .dl-horizontal dd:before, |
|
| 658 |
+ .dl-horizontal dd:after {
|
|
| 659 |
+ display: table; |
|
| 660 |
+ content: " "; |
|
| 661 |
+ } |
|
| 662 |
+ .dl-horizontal dd:after {
|
|
| 663 |
+ clear: both; |
|
| 664 |
+ } |
|
| 665 |
+} |
|
| 666 |
+ |
|
| 667 |
+abbr[title], |
|
| 668 |
+abbr[data-original-title] {
|
|
| 669 |
+ cursor: help; |
|
| 670 |
+ border-bottom: 1px dotted #999999; |
|
| 671 |
+} |
|
| 672 |
+ |
|
| 673 |
+.initialism {
|
|
| 674 |
+ font-size: 90%; |
|
| 675 |
+ text-transform: uppercase; |
|
| 676 |
+} |
|
| 677 |
+ |
|
| 678 |
+blockquote {
|
|
| 679 |
+ padding: 10px 20px; |
|
| 680 |
+ margin: 0 0 20px; |
|
| 681 |
+ border-left: 5px solid #eeeeee; |
|
| 682 |
+} |
|
| 683 |
+ |
|
| 684 |
+blockquote p {
|
|
| 685 |
+ font-size: 17.5px; |
|
| 686 |
+ font-weight: 300; |
|
| 687 |
+ line-height: 1.25; |
|
| 688 |
+} |
|
| 689 |
+ |
|
| 690 |
+blockquote p:last-child {
|
|
| 691 |
+ margin-bottom: 0; |
|
| 692 |
+} |
|
| 693 |
+ |
|
| 694 |
+blockquote small, |
|
| 695 |
+blockquote .small {
|
|
| 696 |
+ display: block; |
|
| 697 |
+ line-height: 1.428571429; |
|
| 698 |
+ color: #999999; |
|
| 699 |
+} |
|
| 700 |
+ |
|
| 701 |
+blockquote small:before, |
|
| 702 |
+blockquote .small:before {
|
|
| 703 |
+ content: '\2014 \00A0'; |
|
| 704 |
+} |
|
| 705 |
+ |
|
| 706 |
+blockquote.pull-right {
|
|
| 707 |
+ padding-right: 15px; |
|
| 708 |
+ padding-left: 0; |
|
| 709 |
+ border-right: 5px solid #eeeeee; |
|
| 710 |
+ border-left: 0; |
|
| 711 |
+} |
|
| 712 |
+ |
|
| 713 |
+blockquote.pull-right p, |
|
| 714 |
+blockquote.pull-right small, |
|
| 715 |
+blockquote.pull-right .small {
|
|
| 716 |
+ text-align: right; |
|
| 717 |
+} |
|
| 718 |
+ |
|
| 719 |
+blockquote.pull-right small:before, |
|
| 720 |
+blockquote.pull-right .small:before {
|
|
| 721 |
+ content: ''; |
|
| 722 |
+} |
|
| 723 |
+ |
|
| 724 |
+blockquote.pull-right small:after, |
|
| 725 |
+blockquote.pull-right .small:after {
|
|
| 726 |
+ content: '\00A0 \2014'; |
|
| 727 |
+} |
|
| 728 |
+ |
|
| 729 |
+blockquote:before, |
|
| 730 |
+blockquote:after {
|
|
| 731 |
+ content: ""; |
|
| 732 |
+} |
|
| 733 |
+ |
|
| 734 |
+address {
|
|
| 735 |
+ margin-bottom: 20px; |
|
| 736 |
+ font-style: normal; |
|
| 737 |
+ line-height: 1.428571429; |
|
| 738 |
+} |
|
| 739 |
+ |
|
| 740 |
+code, |
|
| 741 |
+kbd, |
|
| 742 |
+pre, |
|
| 743 |
+samp {
|
|
| 744 |
+ font-family: Menlo, Monaco, Consolas, "Courier New", monospace; |
|
| 745 |
+} |
|
| 746 |
+ |
|
| 747 |
+code {
|
|
| 748 |
+ padding: 2px 4px; |
|
| 749 |
+ font-size: 90%; |
|
| 750 |
+ color: #c7254e; |
|
| 751 |
+ white-space: nowrap; |
|
| 752 |
+ background-color: #f9f2f4; |
|
| 753 |
+ border-radius: 4px; |
|
| 754 |
+} |
|
| 755 |
+ |
|
| 756 |
+pre {
|
|
| 757 |
+ display: block; |
|
| 758 |
+ padding: 9.5px; |
|
| 759 |
+ margin: 0 0 10px; |
|
| 760 |
+ font-size: 13px; |
|
| 761 |
+ line-height: 1.428571429; |
|
| 762 |
+ color: #333333; |
|
| 763 |
+ word-break: break-all; |
|
| 764 |
+ word-wrap: break-word; |
|
| 765 |
+ background-color: #f5f5f5; |
|
| 766 |
+ border: 1px solid #cccccc; |
|
| 767 |
+ border-radius: 4px; |
|
| 768 |
+} |
|
| 769 |
+ |
|
| 770 |
+pre code {
|
|
| 771 |
+ padding: 0; |
|
| 772 |
+ font-size: inherit; |
|
| 773 |
+ color: inherit; |
|
| 774 |
+ white-space: pre-wrap; |
|
| 775 |
+ background-color: transparent; |
|
| 776 |
+ border-radius: 0; |
|
| 777 |
+} |
|
| 778 |
+ |
|
| 779 |
+.pre-scrollable {
|
|
| 780 |
+ max-height: 340px; |
|
| 781 |
+ overflow-y: scroll; |
|
| 782 |
+} |
|
| 783 |
+ |
|
| 784 |
+.container {
|
|
| 785 |
+ padding-right: 15px; |
|
| 786 |
+ padding-left: 15px; |
|
| 787 |
+ margin-right: auto; |
|
| 788 |
+ margin-left: auto; |
|
| 789 |
+} |
|
| 790 |
+ |
|
| 791 |
+.container:before, |
|
| 792 |
+.container:after {
|
|
| 793 |
+ display: table; |
|
| 794 |
+ content: " "; |
|
| 795 |
+} |
|
| 796 |
+ |
|
| 797 |
+.container:after {
|
|
| 798 |
+ clear: both; |
|
| 799 |
+} |
|
| 800 |
+ |
|
| 801 |
+.container:before, |
|
| 802 |
+.container:after {
|
|
| 803 |
+ display: table; |
|
| 804 |
+ content: " "; |
|
| 805 |
+} |
|
| 806 |
+ |
|
| 807 |
+.container:after {
|
|
| 808 |
+ clear: both; |
|
| 809 |
+} |
|
| 810 |
+ |
|
| 811 |
+@media (min-width: 768px) {
|
|
| 812 |
+ .container {
|
|
| 813 |
+ width: 750px; |
|
| 814 |
+ } |
|
| 815 |
+} |
|
| 816 |
+ |
|
| 817 |
+@media (min-width: 992px) {
|
|
| 818 |
+ .container {
|
|
| 819 |
+ width: 970px; |
|
| 820 |
+ } |
|
| 821 |
+} |
|
| 822 |
+ |
|
| 823 |
+@media (min-width: 1200px) {
|
|
| 824 |
+ .container {
|
|
| 825 |
+ width: 1170px; |
|
| 826 |
+ } |
|
| 827 |
+} |
|
| 828 |
+ |
|
| 829 |
+.row {
|
|
| 830 |
+ margin-right: -15px; |
|
| 831 |
+ margin-left: -15px; |
|
| 832 |
+} |
|
| 833 |
+ |
|
| 834 |
+.row:before, |
|
| 835 |
+.row:after {
|
|
| 836 |
+ display: table; |
|
| 837 |
+ content: " "; |
|
| 838 |
+} |
|
| 839 |
+ |
|
| 840 |
+.row:after {
|
|
| 841 |
+ clear: both; |
|
| 842 |
+} |
|
| 843 |
+ |
|
| 844 |
+.row:before, |
|
| 845 |
+.row:after {
|
|
| 846 |
+ display: table; |
|
| 847 |
+ content: " "; |
|
| 848 |
+} |
|
| 849 |
+ |
|
| 850 |
+.row:after {
|
|
| 851 |
+ clear: both; |
|
| 852 |
+} |
|
| 853 |
+ |
|
| 854 |
+.col-xs-1, |
|
| 855 |
+.col-sm-1, |
|
| 856 |
+.col-md-1, |
|
| 857 |
+.col-lg-1, |
|
| 858 |
+.col-xs-2, |
|
| 859 |
+.col-sm-2, |
|
| 860 |
+.col-md-2, |
|
| 861 |
+.col-lg-2, |
|
| 862 |
+.col-xs-3, |
|
| 863 |
+.col-sm-3, |
|
| 864 |
+.col-md-3, |
|
| 865 |
+.col-lg-3, |
|
| 866 |
+.col-xs-4, |
|
| 867 |
+.col-sm-4, |
|
| 868 |
+.col-md-4, |
|
| 869 |
+.col-lg-4, |
|
| 870 |
+.col-xs-5, |
|
| 871 |
+.col-sm-5, |
|
| 872 |
+.col-md-5, |
|
| 873 |
+.col-lg-5, |
|
| 874 |
+.col-xs-6, |
|
| 875 |
+.col-sm-6, |
|
| 876 |
+.col-md-6, |
|
| 877 |
+.col-lg-6, |
|
| 878 |
+.col-xs-7, |
|
| 879 |
+.col-sm-7, |
|
| 880 |
+.col-md-7, |
|
| 881 |
+.col-lg-7, |
|
| 882 |
+.col-xs-8, |
|
| 883 |
+.col-sm-8, |
|
| 884 |
+.col-md-8, |
|
| 885 |
+.col-lg-8, |
|
| 886 |
+.col-xs-9, |
|
| 887 |
+.col-sm-9, |
|
| 888 |
+.col-md-9, |
|
| 889 |
+.col-lg-9, |
|
| 890 |
+.col-xs-10, |
|
| 891 |
+.col-sm-10, |
|
| 892 |
+.col-md-10, |
|
| 893 |
+.col-lg-10, |
|
| 894 |
+.col-xs-11, |
|
| 895 |
+.col-sm-11, |
|
| 896 |
+.col-md-11, |
|
| 897 |
+.col-lg-11, |
|
| 898 |
+.col-xs-12, |
|
| 899 |
+.col-sm-12, |
|
| 900 |
+.col-md-12, |
|
| 901 |
+.col-lg-12 {
|
|
| 902 |
+ position: relative; |
|
| 903 |
+ min-height: 1px; |
|
| 904 |
+ padding-right: 15px; |
|
| 905 |
+ padding-left: 15px; |
|
| 906 |
+} |
|
| 907 |
+ |
|
| 908 |
+.col-xs-1, |
|
| 909 |
+.col-xs-2, |
|
| 910 |
+.col-xs-3, |
|
| 911 |
+.col-xs-4, |
|
| 912 |
+.col-xs-5, |
|
| 913 |
+.col-xs-6, |
|
| 914 |
+.col-xs-7, |
|
| 915 |
+.col-xs-8, |
|
| 916 |
+.col-xs-9, |
|
| 917 |
+.col-xs-10, |
|
| 918 |
+.col-xs-11, |
|
| 919 |
+.col-xs-12 {
|
|
| 920 |
+ float: left; |
|
| 921 |
+} |
|
| 922 |
+ |
|
| 923 |
+.col-xs-12 {
|
|
| 924 |
+ width: 100%; |
|
| 925 |
+} |
|
| 926 |
+ |
|
| 927 |
+.col-xs-11 {
|
|
| 928 |
+ width: 91.66666666666666%; |
|
| 929 |
+} |
|
| 930 |
+ |
|
| 931 |
+.col-xs-10 {
|
|
| 932 |
+ width: 83.33333333333334%; |
|
| 933 |
+} |
|
| 934 |
+ |
|
| 935 |
+.col-xs-9 {
|
|
| 936 |
+ width: 75%; |
|
| 937 |
+} |
|
| 938 |
+ |
|
| 939 |
+.col-xs-8 {
|
|
| 940 |
+ width: 66.66666666666666%; |
|
| 941 |
+} |
|
| 942 |
+ |
|
| 943 |
+.col-xs-7 {
|
|
| 944 |
+ width: 58.333333333333336%; |
|
| 945 |
+} |
|
| 946 |
+ |
|
| 947 |
+.col-xs-6 {
|
|
| 948 |
+ width: 50%; |
|
| 949 |
+} |
|
| 950 |
+ |
|
| 951 |
+.col-xs-5 {
|
|
| 952 |
+ width: 41.66666666666667%; |
|
| 953 |
+} |
|
| 954 |
+ |
|
| 955 |
+.col-xs-4 {
|
|
| 956 |
+ width: 33.33333333333333%; |
|
| 957 |
+} |
|
| 958 |
+ |
|
| 959 |
+.col-xs-3 {
|
|
| 960 |
+ width: 25%; |
|
| 961 |
+} |
|
| 962 |
+ |
|
| 963 |
+.col-xs-2 {
|
|
| 964 |
+ width: 16.666666666666664%; |
|
| 965 |
+} |
|
| 966 |
+ |
|
| 967 |
+.col-xs-1 {
|
|
| 968 |
+ width: 8.333333333333332%; |
|
| 969 |
+} |
|
| 970 |
+ |
|
| 971 |
+.col-xs-pull-12 {
|
|
| 972 |
+ right: 100%; |
|
| 973 |
+} |
|
| 974 |
+ |
|
| 975 |
+.col-xs-pull-11 {
|
|
| 976 |
+ right: 91.66666666666666%; |
|
| 977 |
+} |
|
| 978 |
+ |
|
| 979 |
+.col-xs-pull-10 {
|
|
| 980 |
+ right: 83.33333333333334%; |
|
| 981 |
+} |
|
| 982 |
+ |
|
| 983 |
+.col-xs-pull-9 {
|
|
| 984 |
+ right: 75%; |
|
| 985 |
+} |
|
| 986 |
+ |
|
| 987 |
+.col-xs-pull-8 {
|
|
| 988 |
+ right: 66.66666666666666%; |
|
| 989 |
+} |
|
| 990 |
+ |
|
| 991 |
+.col-xs-pull-7 {
|
|
| 992 |
+ right: 58.333333333333336%; |
|
| 993 |
+} |
|
| 994 |
+ |
|
| 995 |
+.col-xs-pull-6 {
|
|
| 996 |
+ right: 50%; |
|
| 997 |
+} |
|
| 998 |
+ |
|
| 999 |
+.col-xs-pull-5 {
|
|
| 1000 |
+ right: 41.66666666666667%; |
|
| 1001 |
+} |
|
| 1002 |
+ |
|
| 1003 |
+.col-xs-pull-4 {
|
|
| 1004 |
+ right: 33.33333333333333%; |
|
| 1005 |
+} |
|
| 1006 |
+ |
|
| 1007 |
+.col-xs-pull-3 {
|
|
| 1008 |
+ right: 25%; |
|
| 1009 |
+} |
|
| 1010 |
+ |
|
| 1011 |
+.col-xs-pull-2 {
|
|
| 1012 |
+ right: 16.666666666666664%; |
|
| 1013 |
+} |
|
| 1014 |
+ |
|
| 1015 |
+.col-xs-pull-1 {
|
|
| 1016 |
+ right: 8.333333333333332%; |
|
| 1017 |
+} |
|
| 1018 |
+ |
|
| 1019 |
+.col-xs-pull-0 {
|
|
| 1020 |
+ right: 0; |
|
| 1021 |
+} |
|
| 1022 |
+ |
|
| 1023 |
+.col-xs-push-12 {
|
|
| 1024 |
+ left: 100%; |
|
| 1025 |
+} |
|
| 1026 |
+ |
|
| 1027 |
+.col-xs-push-11 {
|
|
| 1028 |
+ left: 91.66666666666666%; |
|
| 1029 |
+} |
|
| 1030 |
+ |
|
| 1031 |
+.col-xs-push-10 {
|
|
| 1032 |
+ left: 83.33333333333334%; |
|
| 1033 |
+} |
|
| 1034 |
+ |
|
| 1035 |
+.col-xs-push-9 {
|
|
| 1036 |
+ left: 75%; |
|
| 1037 |
+} |
|
| 1038 |
+ |
|
| 1039 |
+.col-xs-push-8 {
|
|
| 1040 |
+ left: 66.66666666666666%; |
|
| 1041 |
+} |
|
| 1042 |
+ |
|
| 1043 |
+.col-xs-push-7 {
|
|
| 1044 |
+ left: 58.333333333333336%; |
|
| 1045 |
+} |
|
| 1046 |
+ |
|
| 1047 |
+.col-xs-push-6 {
|
|
| 1048 |
+ left: 50%; |
|
| 1049 |
+} |
|
| 1050 |
+ |
|
| 1051 |
+.col-xs-push-5 {
|
|
| 1052 |
+ left: 41.66666666666667%; |
|
| 1053 |
+} |
|
| 1054 |
+ |
|
| 1055 |
+.col-xs-push-4 {
|
|
| 1056 |
+ left: 33.33333333333333%; |
|
| 1057 |
+} |
|
| 1058 |
+ |
|
| 1059 |
+.col-xs-push-3 {
|
|
| 1060 |
+ left: 25%; |
|
| 1061 |
+} |
|
| 1062 |
+ |
|
| 1063 |
+.col-xs-push-2 {
|
|
| 1064 |
+ left: 16.666666666666664%; |
|
| 1065 |
+} |
|
| 1066 |
+ |
|
| 1067 |
+.col-xs-push-1 {
|
|
| 1068 |
+ left: 8.333333333333332%; |
|
| 1069 |
+} |
|
| 1070 |
+ |
|
| 1071 |
+.col-xs-push-0 {
|
|
| 1072 |
+ left: 0; |
|
| 1073 |
+} |
|
| 1074 |
+ |
|
| 1075 |
+.col-xs-offset-12 {
|
|
| 1076 |
+ margin-left: 100%; |
|
| 1077 |
+} |
|
| 1078 |
+ |
|
| 1079 |
+.col-xs-offset-11 {
|
|
| 1080 |
+ margin-left: 91.66666666666666%; |
|
| 1081 |
+} |
|
| 1082 |
+ |
|
| 1083 |
+.col-xs-offset-10 {
|
|
| 1084 |
+ margin-left: 83.33333333333334%; |
|
| 1085 |
+} |
|
| 1086 |
+ |
|
| 1087 |
+.col-xs-offset-9 {
|
|
| 1088 |
+ margin-left: 75%; |
|
| 1089 |
+} |
|
| 1090 |
+ |
|
| 1091 |
+.col-xs-offset-8 {
|
|
| 1092 |
+ margin-left: 66.66666666666666%; |
|
| 1093 |
+} |
|
| 1094 |
+ |
|
| 1095 |
+.col-xs-offset-7 {
|
|
| 1096 |
+ margin-left: 58.333333333333336%; |
|
| 1097 |
+} |
|
| 1098 |
+ |
|
| 1099 |
+.col-xs-offset-6 {
|
|
| 1100 |
+ margin-left: 50%; |
|
| 1101 |
+} |
|
| 1102 |
+ |
|
| 1103 |
+.col-xs-offset-5 {
|
|
| 1104 |
+ margin-left: 41.66666666666667%; |
|
| 1105 |
+} |
|
| 1106 |
+ |
|
| 1107 |
+.col-xs-offset-4 {
|
|
| 1108 |
+ margin-left: 33.33333333333333%; |
|
| 1109 |
+} |
|
| 1110 |
+ |
|
| 1111 |
+.col-xs-offset-3 {
|
|
| 1112 |
+ margin-left: 25%; |
|
| 1113 |
+} |
|
| 1114 |
+ |
|
| 1115 |
+.col-xs-offset-2 {
|
|
| 1116 |
+ margin-left: 16.666666666666664%; |
|
| 1117 |
+} |
|
| 1118 |
+ |
|
| 1119 |
+.col-xs-offset-1 {
|
|
| 1120 |
+ margin-left: 8.333333333333332%; |
|
| 1121 |
+} |
|
| 1122 |
+ |
|
| 1123 |
+.col-xs-offset-0 {
|
|
| 1124 |
+ margin-left: 0; |
|
| 1125 |
+} |
|
| 1126 |
+ |
|
| 1127 |
+@media (min-width: 768px) {
|
|
| 1128 |
+ .col-sm-1, |
|
| 1129 |
+ .col-sm-2, |
|
| 1130 |
+ .col-sm-3, |
|
| 1131 |
+ .col-sm-4, |
|
| 1132 |
+ .col-sm-5, |
|
| 1133 |
+ .col-sm-6, |
|
| 1134 |
+ .col-sm-7, |
|
| 1135 |
+ .col-sm-8, |
|
| 1136 |
+ .col-sm-9, |
|
| 1137 |
+ .col-sm-10, |
|
| 1138 |
+ .col-sm-11, |
|
| 1139 |
+ .col-sm-12 {
|
|
| 1140 |
+ float: left; |
|
| 1141 |
+ } |
|
| 1142 |
+ .col-sm-12 {
|
|
| 1143 |
+ width: 100%; |
|
| 1144 |
+ } |
|
| 1145 |
+ .col-sm-11 {
|
|
| 1146 |
+ width: 91.66666666666666%; |
|
| 1147 |
+ } |
|
| 1148 |
+ .col-sm-10 {
|
|
| 1149 |
+ width: 83.33333333333334%; |
|
| 1150 |
+ } |
|
| 1151 |
+ .col-sm-9 {
|
|
| 1152 |
+ width: 75%; |
|
| 1153 |
+ } |
|
| 1154 |
+ .col-sm-8 {
|
|
| 1155 |
+ width: 66.66666666666666%; |
|
| 1156 |
+ } |
|
| 1157 |
+ .col-sm-7 {
|
|
| 1158 |
+ width: 58.333333333333336%; |
|
| 1159 |
+ } |
|
| 1160 |
+ .col-sm-6 {
|
|
| 1161 |
+ width: 50%; |
|
| 1162 |
+ } |
|
| 1163 |
+ .col-sm-5 {
|
|
| 1164 |
+ width: 41.66666666666667%; |
|
| 1165 |
+ } |
|
| 1166 |
+ .col-sm-4 {
|
|
| 1167 |
+ width: 33.33333333333333%; |
|
| 1168 |
+ } |
|
| 1169 |
+ .col-sm-3 {
|
|
| 1170 |
+ width: 25%; |
|
| 1171 |
+ } |
|
| 1172 |
+ .col-sm-2 {
|
|
| 1173 |
+ width: 16.666666666666664%; |
|
| 1174 |
+ } |
|
| 1175 |
+ .col-sm-1 {
|
|
| 1176 |
+ width: 8.333333333333332%; |
|
| 1177 |
+ } |
|
| 1178 |
+ .col-sm-pull-12 {
|
|
| 1179 |
+ right: 100%; |
|
| 1180 |
+ } |
|
| 1181 |
+ .col-sm-pull-11 {
|
|
| 1182 |
+ right: 91.66666666666666%; |
|
| 1183 |
+ } |
|
| 1184 |
+ .col-sm-pull-10 {
|
|
| 1185 |
+ right: 83.33333333333334%; |
|
| 1186 |
+ } |
|
| 1187 |
+ .col-sm-pull-9 {
|
|
| 1188 |
+ right: 75%; |
|
| 1189 |
+ } |
|
| 1190 |
+ .col-sm-pull-8 {
|
|
| 1191 |
+ right: 66.66666666666666%; |
|
| 1192 |
+ } |
|
| 1193 |
+ .col-sm-pull-7 {
|
|
| 1194 |
+ right: 58.333333333333336%; |
|
| 1195 |
+ } |
|
| 1196 |
+ .col-sm-pull-6 {
|
|
| 1197 |
+ right: 50%; |
|
| 1198 |
+ } |
|
| 1199 |
+ .col-sm-pull-5 {
|
|
| 1200 |
+ right: 41.66666666666667%; |
|
| 1201 |
+ } |
|
| 1202 |
+ .col-sm-pull-4 {
|
|
| 1203 |
+ right: 33.33333333333333%; |
|
| 1204 |
+ } |
|
| 1205 |
+ .col-sm-pull-3 {
|
|
| 1206 |
+ right: 25%; |
|
| 1207 |
+ } |
|
| 1208 |
+ .col-sm-pull-2 {
|
|
| 1209 |
+ right: 16.666666666666664%; |
|
| 1210 |
+ } |
|
| 1211 |
+ .col-sm-pull-1 {
|
|
| 1212 |
+ right: 8.333333333333332%; |
|
| 1213 |
+ } |
|
| 1214 |
+ .col-sm-pull-0 {
|
|
| 1215 |
+ right: 0; |
|
| 1216 |
+ } |
|
| 1217 |
+ .col-sm-push-12 {
|
|
| 1218 |
+ left: 100%; |
|
| 1219 |
+ } |
|
| 1220 |
+ .col-sm-push-11 {
|
|
| 1221 |
+ left: 91.66666666666666%; |
|
| 1222 |
+ } |
|
| 1223 |
+ .col-sm-push-10 {
|
|
| 1224 |
+ left: 83.33333333333334%; |
|
| 1225 |
+ } |
|
| 1226 |
+ .col-sm-push-9 {
|
|
| 1227 |
+ left: 75%; |
|
| 1228 |
+ } |
|
| 1229 |
+ .col-sm-push-8 {
|
|
| 1230 |
+ left: 66.66666666666666%; |
|
| 1231 |
+ } |
|
| 1232 |
+ .col-sm-push-7 {
|
|
| 1233 |
+ left: 58.333333333333336%; |
|
| 1234 |
+ } |
|
| 1235 |
+ .col-sm-push-6 {
|
|
| 1236 |
+ left: 50%; |
|
| 1237 |
+ } |
|
| 1238 |
+ .col-sm-push-5 {
|
|
| 1239 |
+ left: 41.66666666666667%; |
|
| 1240 |
+ } |
|
| 1241 |
+ .col-sm-push-4 {
|
|
| 1242 |
+ left: 33.33333333333333%; |
|
| 1243 |
+ } |
|
| 1244 |
+ .col-sm-push-3 {
|
|
| 1245 |
+ left: 25%; |
|
| 1246 |
+ } |
|
| 1247 |
+ .col-sm-push-2 {
|
|
| 1248 |
+ left: 16.666666666666664%; |
|
| 1249 |
+ } |
|
| 1250 |
+ .col-sm-push-1 {
|
|
| 1251 |
+ left: 8.333333333333332%; |
|
| 1252 |
+ } |
|
| 1253 |
+ .col-sm-push-0 {
|
|
| 1254 |
+ left: 0; |
|
| 1255 |
+ } |
|
| 1256 |
+ .col-sm-offset-12 {
|
|
| 1257 |
+ margin-left: 100%; |
|
| 1258 |
+ } |
|
| 1259 |
+ .col-sm-offset-11 {
|
|
| 1260 |
+ margin-left: 91.66666666666666%; |
|
| 1261 |
+ } |
|
| 1262 |
+ .col-sm-offset-10 {
|
|
| 1263 |
+ margin-left: 83.33333333333334%; |
|
| 1264 |
+ } |
|
| 1265 |
+ .col-sm-offset-9 {
|
|
| 1266 |
+ margin-left: 75%; |
|
| 1267 |
+ } |
|
| 1268 |
+ .col-sm-offset-8 {
|
|
| 1269 |
+ margin-left: 66.66666666666666%; |
|
| 1270 |
+ } |
|
| 1271 |
+ .col-sm-offset-7 {
|
|
| 1272 |
+ margin-left: 58.333333333333336%; |
|
| 1273 |
+ } |
|
| 1274 |
+ .col-sm-offset-6 {
|
|
| 1275 |
+ margin-left: 50%; |
|
| 1276 |
+ } |
|
| 1277 |
+ .col-sm-offset-5 {
|
|
| 1278 |
+ margin-left: 41.66666666666667%; |
|
| 1279 |
+ } |
|
| 1280 |
+ .col-sm-offset-4 {
|
|
| 1281 |
+ margin-left: 33.33333333333333%; |
|
| 1282 |
+ } |
|
| 1283 |
+ .col-sm-offset-3 {
|
|
| 1284 |
+ margin-left: 25%; |
|
| 1285 |
+ } |
|
| 1286 |
+ .col-sm-offset-2 {
|
|
| 1287 |
+ margin-left: 16.666666666666664%; |
|
| 1288 |
+ } |
|
| 1289 |
+ .col-sm-offset-1 {
|
|
| 1290 |
+ margin-left: 8.333333333333332%; |
|
| 1291 |
+ } |
|
| 1292 |
+ .col-sm-offset-0 {
|
|
| 1293 |
+ margin-left: 0; |
|
| 1294 |
+ } |
|
| 1295 |
+} |
|
| 1296 |
+ |
|
| 1297 |
+@media (min-width: 992px) {
|
|
| 1298 |
+ .col-md-1, |
|
| 1299 |
+ .col-md-2, |
|
| 1300 |
+ .col-md-3, |
|
| 1301 |
+ .col-md-4, |
|
| 1302 |
+ .col-md-5, |
|
| 1303 |
+ .col-md-6, |
|
| 1304 |
+ .col-md-7, |
|
| 1305 |
+ .col-md-8, |
|
| 1306 |
+ .col-md-9, |
|
| 1307 |
+ .col-md-10, |
|
| 1308 |
+ .col-md-11, |
|
| 1309 |
+ .col-md-12 {
|
|
| 1310 |
+ float: left; |
|
| 1311 |
+ } |
|
| 1312 |
+ .col-md-12 {
|
|
| 1313 |
+ width: 100%; |
|
| 1314 |
+ } |
|
| 1315 |
+ .col-md-11 {
|
|
| 1316 |
+ width: 91.66666666666666%; |
|
| 1317 |
+ } |
|
| 1318 |
+ .col-md-10 {
|
|
| 1319 |
+ width: 83.33333333333334%; |
|
| 1320 |
+ } |
|
| 1321 |
+ .col-md-9 {
|
|
| 1322 |
+ width: 75%; |
|
| 1323 |
+ } |
|
| 1324 |
+ .col-md-8 {
|
|
| 1325 |
+ width: 66.66666666666666%; |
|
| 1326 |
+ } |
|
| 1327 |
+ .col-md-7 {
|
|
| 1328 |
+ width: 58.333333333333336%; |
|
| 1329 |
+ } |
|
| 1330 |
+ .col-md-6 {
|
|
| 1331 |
+ width: 50%; |
|
| 1332 |
+ } |
|
| 1333 |
+ .col-md-5 {
|
|
| 1334 |
+ width: 41.66666666666667%; |
|
| 1335 |
+ } |
|
| 1336 |
+ .col-md-4 {
|
|
| 1337 |
+ width: 33.33333333333333%; |
|
| 1338 |
+ } |
|
| 1339 |
+ .col-md-3 {
|
|
| 1340 |
+ width: 25%; |
|
| 1341 |
+ } |
|
| 1342 |
+ .col-md-2 {
|
|
| 1343 |
+ width: 16.666666666666664%; |
|
| 1344 |
+ } |
|
| 1345 |
+ .col-md-1 {
|
|
| 1346 |
+ width: 8.333333333333332%; |
|
| 1347 |
+ } |
|
| 1348 |
+ .col-md-pull-12 {
|
|
| 1349 |
+ right: 100%; |
|
| 1350 |
+ } |
|
| 1351 |
+ .col-md-pull-11 {
|
|
| 1352 |
+ right: 91.66666666666666%; |
|
| 1353 |
+ } |
|
| 1354 |
+ .col-md-pull-10 {
|
|
| 1355 |
+ right: 83.33333333333334%; |
|
| 1356 |
+ } |
|
| 1357 |
+ .col-md-pull-9 {
|
|
| 1358 |
+ right: 75%; |
|
| 1359 |
+ } |
|
| 1360 |
+ .col-md-pull-8 {
|
|
| 1361 |
+ right: 66.66666666666666%; |
|
| 1362 |
+ } |
|
| 1363 |
+ .col-md-pull-7 {
|
|
| 1364 |
+ right: 58.333333333333336%; |
|
| 1365 |
+ } |
|
| 1366 |
+ .col-md-pull-6 {
|
|
| 1367 |
+ right: 50%; |
|
| 1368 |
+ } |
|
| 1369 |
+ .col-md-pull-5 {
|
|
| 1370 |
+ right: 41.66666666666667%; |
|
| 1371 |
+ } |
|
| 1372 |
+ .col-md-pull-4 {
|
|
| 1373 |
+ right: 33.33333333333333%; |
|
| 1374 |
+ } |
|
| 1375 |
+ .col-md-pull-3 {
|
|
| 1376 |
+ right: 25%; |
|
| 1377 |
+ } |
|
| 1378 |
+ .col-md-pull-2 {
|
|
| 1379 |
+ right: 16.666666666666664%; |
|
| 1380 |
+ } |
|
| 1381 |
+ .col-md-pull-1 {
|
|
| 1382 |
+ right: 8.333333333333332%; |
|
| 1383 |
+ } |
|
| 1384 |
+ .col-md-pull-0 {
|
|
| 1385 |
+ right: 0; |
|
| 1386 |
+ } |
|
| 1387 |
+ .col-md-push-12 {
|
|
| 1388 |
+ left: 100%; |
|
| 1389 |
+ } |
|
| 1390 |
+ .col-md-push-11 {
|
|
| 1391 |
+ left: 91.66666666666666%; |
|
| 1392 |
+ } |
|
| 1393 |
+ .col-md-push-10 {
|
|
| 1394 |
+ left: 83.33333333333334%; |
|
| 1395 |
+ } |
|
| 1396 |
+ .col-md-push-9 {
|
|
| 1397 |
+ left: 75%; |
|
| 1398 |
+ } |
|
| 1399 |
+ .col-md-push-8 {
|
|
| 1400 |
+ left: 66.66666666666666%; |
|
| 1401 |
+ } |
|
| 1402 |
+ .col-md-push-7 {
|
|
| 1403 |
+ left: 58.333333333333336%; |
|
| 1404 |
+ } |
|
| 1405 |
+ .col-md-push-6 {
|
|
| 1406 |
+ left: 50%; |
|
| 1407 |
+ } |
|
| 1408 |
+ .col-md-push-5 {
|
|
| 1409 |
+ left: 41.66666666666667%; |
|
| 1410 |
+ } |
|
| 1411 |
+ .col-md-push-4 {
|
|
| 1412 |
+ left: 33.33333333333333%; |
|
| 1413 |
+ } |
|
| 1414 |
+ .col-md-push-3 {
|
|
| 1415 |
+ left: 25%; |
|
| 1416 |
+ } |
|
| 1417 |
+ .col-md-push-2 {
|
|
| 1418 |
+ left: 16.666666666666664%; |
|
| 1419 |
+ } |
|
| 1420 |
+ .col-md-push-1 {
|
|
| 1421 |
+ left: 8.333333333333332%; |
|
| 1422 |
+ } |
|
| 1423 |
+ .col-md-push-0 {
|
|
| 1424 |
+ left: 0; |
|
| 1425 |
+ } |
|
| 1426 |
+ .col-md-offset-12 {
|
|
| 1427 |
+ margin-left: 100%; |
|
| 1428 |
+ } |
|
| 1429 |
+ .col-md-offset-11 {
|
|
| 1430 |
+ margin-left: 91.66666666666666%; |
|
| 1431 |
+ } |
|
| 1432 |
+ .col-md-offset-10 {
|
|
| 1433 |
+ margin-left: 83.33333333333334%; |
|
| 1434 |
+ } |
|
| 1435 |
+ .col-md-offset-9 {
|
|
| 1436 |
+ margin-left: 75%; |
|
| 1437 |
+ } |
|
| 1438 |
+ .col-md-offset-8 {
|
|
| 1439 |
+ margin-left: 66.66666666666666%; |
|
| 1440 |
+ } |
|
| 1441 |
+ .col-md-offset-7 {
|
|
| 1442 |
+ margin-left: 58.333333333333336%; |
|
| 1443 |
+ } |
|
| 1444 |
+ .col-md-offset-6 {
|
|
| 1445 |
+ margin-left: 50%; |
|
| 1446 |
+ } |
|
| 1447 |
+ .col-md-offset-5 {
|
|
| 1448 |
+ margin-left: 41.66666666666667%; |
|
| 1449 |
+ } |
|
| 1450 |
+ .col-md-offset-4 {
|
|
| 1451 |
+ margin-left: 33.33333333333333%; |
|
| 1452 |
+ } |
|
| 1453 |
+ .col-md-offset-3 {
|
|
| 1454 |
+ margin-left: 25%; |
|
| 1455 |
+ } |
|
| 1456 |
+ .col-md-offset-2 {
|
|
| 1457 |
+ margin-left: 16.666666666666664%; |
|
| 1458 |
+ } |
|
| 1459 |
+ .col-md-offset-1 {
|
|
| 1460 |
+ margin-left: 8.333333333333332%; |
|
| 1461 |
+ } |
|
| 1462 |
+ .col-md-offset-0 {
|
|
| 1463 |
+ margin-left: 0; |
|
| 1464 |
+ } |
|
| 1465 |
+} |
|
| 1466 |
+ |
|
| 1467 |
+@media (min-width: 1200px) {
|
|
| 1468 |
+ .col-lg-1, |
|
| 1469 |
+ .col-lg-2, |
|
| 1470 |
+ .col-lg-3, |
|
| 1471 |
+ .col-lg-4, |
|
| 1472 |
+ .col-lg-5, |
|
| 1473 |
+ .col-lg-6, |
|
| 1474 |
+ .col-lg-7, |
|
| 1475 |
+ .col-lg-8, |
|
| 1476 |
+ .col-lg-9, |
|
| 1477 |
+ .col-lg-10, |
|
| 1478 |
+ .col-lg-11, |
|
| 1479 |
+ .col-lg-12 {
|
|
| 1480 |
+ float: left; |
|
| 1481 |
+ } |
|
| 1482 |
+ .col-lg-12 {
|
|
| 1483 |
+ width: 100%; |
|
| 1484 |
+ } |
|
| 1485 |
+ .col-lg-11 {
|
|
| 1486 |
+ width: 91.66666666666666%; |
|
| 1487 |
+ } |
|
| 1488 |
+ .col-lg-10 {
|
|
| 1489 |
+ width: 83.33333333333334%; |
|
| 1490 |
+ } |
|
| 1491 |
+ .col-lg-9 {
|
|
| 1492 |
+ width: 75%; |
|
| 1493 |
+ } |
|
| 1494 |
+ .col-lg-8 {
|
|
| 1495 |
+ width: 66.66666666666666%; |
|
| 1496 |
+ } |
|
| 1497 |
+ .col-lg-7 {
|
|
| 1498 |
+ width: 58.333333333333336%; |
|
| 1499 |
+ } |
|
| 1500 |
+ .col-lg-6 {
|
|
| 1501 |
+ width: 50%; |
|
| 1502 |
+ } |
|
| 1503 |
+ .col-lg-5 {
|
|
| 1504 |
+ width: 41.66666666666667%; |
|
| 1505 |
+ } |
|
| 1506 |
+ .col-lg-4 {
|
|
| 1507 |
+ width: 33.33333333333333%; |
|
| 1508 |
+ } |
|
| 1509 |
+ .col-lg-3 {
|
|
| 1510 |
+ width: 25%; |
|
| 1511 |
+ } |
|
| 1512 |
+ .col-lg-2 {
|
|
| 1513 |
+ width: 16.666666666666664%; |
|
| 1514 |
+ } |
|
| 1515 |
+ .col-lg-1 {
|
|
| 1516 |
+ width: 8.333333333333332%; |
|
| 1517 |
+ } |
|
| 1518 |
+ .col-lg-pull-12 {
|
|
| 1519 |
+ right: 100%; |
|
| 1520 |
+ } |
|
| 1521 |
+ .col-lg-pull-11 {
|
|
| 1522 |
+ right: 91.66666666666666%; |
|
| 1523 |
+ } |
|
| 1524 |
+ .col-lg-pull-10 {
|
|
| 1525 |
+ right: 83.33333333333334%; |
|
| 1526 |
+ } |
|
| 1527 |
+ .col-lg-pull-9 {
|
|
| 1528 |
+ right: 75%; |
|
| 1529 |
+ } |
|
| 1530 |
+ .col-lg-pull-8 {
|
|
| 1531 |
+ right: 66.66666666666666%; |
|
| 1532 |
+ } |
|
| 1533 |
+ .col-lg-pull-7 {
|
|
| 1534 |
+ right: 58.333333333333336%; |
|
| 1535 |
+ } |
|
| 1536 |
+ .col-lg-pull-6 {
|
|
| 1537 |
+ right: 50%; |
|
| 1538 |
+ } |
|
| 1539 |
+ .col-lg-pull-5 {
|
|
| 1540 |
+ right: 41.66666666666667%; |
|
| 1541 |
+ } |
|
| 1542 |
+ .col-lg-pull-4 {
|
|
| 1543 |
+ right: 33.33333333333333%; |
|
| 1544 |
+ } |
|
| 1545 |
+ .col-lg-pull-3 {
|
|
| 1546 |
+ right: 25%; |
|
| 1547 |
+ } |
|
| 1548 |
+ .col-lg-pull-2 {
|
|
| 1549 |
+ right: 16.666666666666664%; |
|
| 1550 |
+ } |
|
| 1551 |
+ .col-lg-pull-1 {
|
|
| 1552 |
+ right: 8.333333333333332%; |
|
| 1553 |
+ } |
|
| 1554 |
+ .col-lg-pull-0 {
|
|
| 1555 |
+ right: 0; |
|
| 1556 |
+ } |
|
| 1557 |
+ .col-lg-push-12 {
|
|
| 1558 |
+ left: 100%; |
|
| 1559 |
+ } |
|
| 1560 |
+ .col-lg-push-11 {
|
|
| 1561 |
+ left: 91.66666666666666%; |
|
| 1562 |
+ } |
|
| 1563 |
+ .col-lg-push-10 {
|
|
| 1564 |
+ left: 83.33333333333334%; |
|
| 1565 |
+ } |
|
| 1566 |
+ .col-lg-push-9 {
|
|
| 1567 |
+ left: 75%; |
|
| 1568 |
+ } |
|
| 1569 |
+ .col-lg-push-8 {
|
|
| 1570 |
+ left: 66.66666666666666%; |
|
| 1571 |
+ } |
|
| 1572 |
+ .col-lg-push-7 {
|
|
| 1573 |
+ left: 58.333333333333336%; |
|
| 1574 |
+ } |
|
| 1575 |
+ .col-lg-push-6 {
|
|
| 1576 |
+ left: 50%; |
|
| 1577 |
+ } |
|
| 1578 |
+ .col-lg-push-5 {
|
|
| 1579 |
+ left: 41.66666666666667%; |
|
| 1580 |
+ } |
|
| 1581 |
+ .col-lg-push-4 {
|
|
| 1582 |
+ left: 33.33333333333333%; |
|
| 1583 |
+ } |
|
| 1584 |
+ .col-lg-push-3 {
|
|
| 1585 |
+ left: 25%; |
|
| 1586 |
+ } |
|
| 1587 |
+ .col-lg-push-2 {
|
|
| 1588 |
+ left: 16.666666666666664%; |
|
| 1589 |
+ } |
|
| 1590 |
+ .col-lg-push-1 {
|
|
| 1591 |
+ left: 8.333333333333332%; |
|
| 1592 |
+ } |
|
| 1593 |
+ .col-lg-push-0 {
|
|
| 1594 |
+ left: 0; |
|
| 1595 |
+ } |
|
| 1596 |
+ .col-lg-offset-12 {
|
|
| 1597 |
+ margin-left: 100%; |
|
| 1598 |
+ } |
|
| 1599 |
+ .col-lg-offset-11 {
|
|
| 1600 |
+ margin-left: 91.66666666666666%; |
|
| 1601 |
+ } |
|
| 1602 |
+ .col-lg-offset-10 {
|
|
| 1603 |
+ margin-left: 83.33333333333334%; |
|
| 1604 |
+ } |
|
| 1605 |
+ .col-lg-offset-9 {
|
|
| 1606 |
+ margin-left: 75%; |
|
| 1607 |
+ } |
|
| 1608 |
+ .col-lg-offset-8 {
|
|
| 1609 |
+ margin-left: 66.66666666666666%; |
|
| 1610 |
+ } |
|
| 1611 |
+ .col-lg-offset-7 {
|
|
| 1612 |
+ margin-left: 58.333333333333336%; |
|
| 1613 |
+ } |
|
| 1614 |
+ .col-lg-offset-6 {
|
|
| 1615 |
+ margin-left: 50%; |
|
| 1616 |
+ } |
|
| 1617 |
+ .col-lg-offset-5 {
|
|
| 1618 |
+ margin-left: 41.66666666666667%; |
|
| 1619 |
+ } |
|
| 1620 |
+ .col-lg-offset-4 {
|
|
| 1621 |
+ margin-left: 33.33333333333333%; |
|
| 1622 |
+ } |
|
| 1623 |
+ .col-lg-offset-3 {
|
|
| 1624 |
+ margin-left: 25%; |
|
| 1625 |
+ } |
|
| 1626 |
+ .col-lg-offset-2 {
|
|
| 1627 |
+ margin-left: 16.666666666666664%; |
|
| 1628 |
+ } |
|
| 1629 |
+ .col-lg-offset-1 {
|
|
| 1630 |
+ margin-left: 8.333333333333332%; |
|
| 1631 |
+ } |
|
| 1632 |
+ .col-lg-offset-0 {
|
|
| 1633 |
+ margin-left: 0; |
|
| 1634 |
+ } |
|
| 1635 |
+} |
|
| 1636 |
+ |
|
| 1637 |
+table {
|
|
| 1638 |
+ max-width: 100%; |
|
| 1639 |
+ background-color: transparent; |
|
| 1640 |
+} |
|
| 1641 |
+ |
|
| 1642 |
+th {
|
|
| 1643 |
+ text-align: left; |
|
| 1644 |
+} |
|
| 1645 |
+ |
|
| 1646 |
+.table {
|
|
| 1647 |
+ width: 100%; |
|
| 1648 |
+ margin-bottom: 20px; |
|
| 1649 |
+} |
|
| 1650 |
+ |
|
| 1651 |
+.table > thead > tr > th, |
|
| 1652 |
+.table > tbody > tr > th, |
|
| 1653 |
+.table > tfoot > tr > th, |
|
| 1654 |
+.table > thead > tr > td, |
|
| 1655 |
+.table > tbody > tr > td, |
|
| 1656 |
+.table > tfoot > tr > td {
|
|
| 1657 |
+ padding: 8px; |
|
| 1658 |
+ line-height: 1.428571429; |
|
| 1659 |
+ vertical-align: top; |
|
| 1660 |
+ border-top: 1px solid #dddddd; |
|
| 1661 |
+} |
|
| 1662 |
+ |
|
| 1663 |
+.table > thead > tr > th {
|
|
| 1664 |
+ vertical-align: bottom; |
|
| 1665 |
+ border-bottom: 2px solid #dddddd; |
|
| 1666 |
+} |
|
| 1667 |
+ |
|
| 1668 |
+.table > caption + thead > tr:first-child > th, |
|
| 1669 |
+.table > colgroup + thead > tr:first-child > th, |
|
| 1670 |
+.table > thead:first-child > tr:first-child > th, |
|
| 1671 |
+.table > caption + thead > tr:first-child > td, |
|
| 1672 |
+.table > colgroup + thead > tr:first-child > td, |
|
| 1673 |
+.table > thead:first-child > tr:first-child > td {
|
|
| 1674 |
+ border-top: 0; |
|
| 1675 |
+} |
|
| 1676 |
+ |
|
| 1677 |
+.table > tbody + tbody {
|
|
| 1678 |
+ border-top: 2px solid #dddddd; |
|
| 1679 |
+} |
|
| 1680 |
+ |
|
| 1681 |
+.table .table {
|
|
| 1682 |
+ background-color: #ffffff; |
|
| 1683 |
+} |
|
| 1684 |
+ |
|
| 1685 |
+.table-condensed > thead > tr > th, |
|
| 1686 |
+.table-condensed > tbody > tr > th, |
|
| 1687 |
+.table-condensed > tfoot > tr > th, |
|
| 1688 |
+.table-condensed > thead > tr > td, |
|
| 1689 |
+.table-condensed > tbody > tr > td, |
|
| 1690 |
+.table-condensed > tfoot > tr > td {
|
|
| 1691 |
+ padding: 5px; |
|
| 1692 |
+} |
|
| 1693 |
+ |
|
| 1694 |
+.table-bordered {
|
|
| 1695 |
+ border: 1px solid #dddddd; |
|
| 1696 |
+} |
|
| 1697 |
+ |
|
| 1698 |
+.table-bordered > thead > tr > th, |
|
| 1699 |
+.table-bordered > tbody > tr > th, |
|
| 1700 |
+.table-bordered > tfoot > tr > th, |
|
| 1701 |
+.table-bordered > thead > tr > td, |
|
| 1702 |
+.table-bordered > tbody > tr > td, |
|
| 1703 |
+.table-bordered > tfoot > tr > td {
|
|
| 1704 |
+ border: 1px solid #dddddd; |
|
| 1705 |
+} |
|
| 1706 |
+ |
|
| 1707 |
+.table-bordered > thead > tr > th, |
|
| 1708 |
+.table-bordered > thead > tr > td {
|
|
| 1709 |
+ border-bottom-width: 2px; |
|
| 1710 |
+} |
|
| 1711 |
+ |
|
| 1712 |
+.table-striped > tbody > tr:nth-child(odd) > td, |
|
| 1713 |
+.table-striped > tbody > tr:nth-child(odd) > th {
|
|
| 1714 |
+ background-color: #f9f9f9; |
|
| 1715 |
+} |
|
| 1716 |
+ |
|
| 1717 |
+.table-hover > tbody > tr:hover > td, |
|
| 1718 |
+.table-hover > tbody > tr:hover > th {
|
|
| 1719 |
+ background-color: #f5f5f5; |
|
| 1720 |
+} |
|
| 1721 |
+ |
|
| 1722 |
+table col[class*="col-"] {
|
|
| 1723 |
+ position: static; |
|
| 1724 |
+ display: table-column; |
|
| 1725 |
+ float: none; |
|
| 1726 |
+} |
|
| 1727 |
+ |
|
| 1728 |
+table td[class*="col-"], |
|
| 1729 |
+table th[class*="col-"] {
|
|
| 1730 |
+ display: table-cell; |
|
| 1731 |
+ float: none; |
|
| 1732 |
+} |
|
| 1733 |
+ |
|
| 1734 |
+.table > thead > tr > .active, |
|
| 1735 |
+.table > tbody > tr > .active, |
|
| 1736 |
+.table > tfoot > tr > .active, |
|
| 1737 |
+.table > thead > .active > td, |
|
| 1738 |
+.table > tbody > .active > td, |
|
| 1739 |
+.table > tfoot > .active > td, |
|
| 1740 |
+.table > thead > .active > th, |
|
| 1741 |
+.table > tbody > .active > th, |
|
| 1742 |
+.table > tfoot > .active > th {
|
|
| 1743 |
+ background-color: #f5f5f5; |
|
| 1744 |
+} |
|
| 1745 |
+ |
|
| 1746 |
+.table-hover > tbody > tr > .active:hover, |
|
| 1747 |
+.table-hover > tbody > .active:hover > td, |
|
| 1748 |
+.table-hover > tbody > .active:hover > th {
|
|
| 1749 |
+ background-color: #e8e8e8; |
|
| 1750 |
+} |
|
| 1751 |
+ |
|
| 1752 |
+.table > thead > tr > .success, |
|
| 1753 |
+.table > tbody > tr > .success, |
|
| 1754 |
+.table > tfoot > tr > .success, |
|
| 1755 |
+.table > thead > .success > td, |
|
| 1756 |
+.table > tbody > .success > td, |
|
| 1757 |
+.table > tfoot > .success > td, |
|
| 1758 |
+.table > thead > .success > th, |
|
| 1759 |
+.table > tbody > .success > th, |
|
| 1760 |
+.table > tfoot > .success > th {
|
|
| 1761 |
+ background-color: #dff0d8; |
|
| 1762 |
+} |
|
| 1763 |
+ |
|
| 1764 |
+.table-hover > tbody > tr > .success:hover, |
|
| 1765 |
+.table-hover > tbody > .success:hover > td, |
|
| 1766 |
+.table-hover > tbody > .success:hover > th {
|
|
| 1767 |
+ background-color: #d0e9c6; |
|
| 1768 |
+} |
|
| 1769 |
+ |
|
| 1770 |
+.table > thead > tr > .danger, |
|
| 1771 |
+.table > tbody > tr > .danger, |
|
| 1772 |
+.table > tfoot > tr > .danger, |
|
| 1773 |
+.table > thead > .danger > td, |
|
| 1774 |
+.table > tbody > .danger > td, |
|
| 1775 |
+.table > tfoot > .danger > td, |
|
| 1776 |
+.table > thead > .danger > th, |
|
| 1777 |
+.table > tbody > .danger > th, |
|
| 1778 |
+.table > tfoot > .danger > th {
|
|
| 1779 |
+ background-color: #f2dede; |
|
| 1780 |
+} |
|
| 1781 |
+ |
|
| 1782 |
+.table-hover > tbody > tr > .danger:hover, |
|
| 1783 |
+.table-hover > tbody > .danger:hover > td, |
|
| 1784 |
+.table-hover > tbody > .danger:hover > th {
|
|
| 1785 |
+ background-color: #ebcccc; |
|
| 1786 |
+} |
|
| 1787 |
+ |
|
| 1788 |
+.table > thead > tr > .warning, |
|
| 1789 |
+.table > tbody > tr > .warning, |
|
| 1790 |
+.table > tfoot > tr > .warning, |
|
| 1791 |
+.table > thead > .warning > td, |
|
| 1792 |
+.table > tbody > .warning > td, |
|
| 1793 |
+.table > tfoot > .warning > td, |
|
| 1794 |
+.table > thead > .warning > th, |
|
| 1795 |
+.table > tbody > .warning > th, |
|
| 1796 |
+.table > tfoot > .warning > th {
|
|
| 1797 |
+ background-color: #fcf8e3; |
|
| 1798 |
+} |
|
| 1799 |
+ |
|
| 1800 |
+.table-hover > tbody > tr > .warning:hover, |
|
| 1801 |
+.table-hover > tbody > .warning:hover > td, |
|
| 1802 |
+.table-hover > tbody > .warning:hover > th {
|
|
| 1803 |
+ background-color: #faf2cc; |
|
| 1804 |
+} |
|
| 1805 |
+ |
|
| 1806 |
+@media (max-width: 767px) {
|
|
| 1807 |
+ .table-responsive {
|
|
| 1808 |
+ width: 100%; |
|
| 1809 |
+ margin-bottom: 15px; |
|
| 1810 |
+ overflow-x: scroll; |
|
| 1811 |
+ overflow-y: hidden; |
|
| 1812 |
+ border: 1px solid #dddddd; |
|
| 1813 |
+ -ms-overflow-style: -ms-autohiding-scrollbar; |
|
| 1814 |
+ -webkit-overflow-scrolling: touch; |
|
| 1815 |
+ } |
|
| 1816 |
+ .table-responsive > .table {
|
|
| 1817 |
+ margin-bottom: 0; |
|
| 1818 |
+ } |
|
| 1819 |
+ .table-responsive > .table > thead > tr > th, |
|
| 1820 |
+ .table-responsive > .table > tbody > tr > th, |
|
| 1821 |
+ .table-responsive > .table > tfoot > tr > th, |
|
| 1822 |
+ .table-responsive > .table > thead > tr > td, |
|
| 1823 |
+ .table-responsive > .table > tbody > tr > td, |
|
| 1824 |
+ .table-responsive > .table > tfoot > tr > td {
|
|
| 1825 |
+ white-space: nowrap; |
|
| 1826 |
+ } |
|
| 1827 |
+ .table-responsive > .table-bordered {
|
|
| 1828 |
+ border: 0; |
|
| 1829 |
+ } |
|
| 1830 |
+ .table-responsive > .table-bordered > thead > tr > th:first-child, |
|
| 1831 |
+ .table-responsive > .table-bordered > tbody > tr > th:first-child, |
|
| 1832 |
+ .table-responsive > .table-bordered > tfoot > tr > th:first-child, |
|
| 1833 |
+ .table-responsive > .table-bordered > thead > tr > td:first-child, |
|
| 1834 |
+ .table-responsive > .table-bordered > tbody > tr > td:first-child, |
|
| 1835 |
+ .table-responsive > .table-bordered > tfoot > tr > td:first-child {
|
|
| 1836 |
+ border-left: 0; |
|
| 1837 |
+ } |
|
| 1838 |
+ .table-responsive > .table-bordered > thead > tr > th:last-child, |
|
| 1839 |
+ .table-responsive > .table-bordered > tbody > tr > th:last-child, |
|
| 1840 |
+ .table-responsive > .table-bordered > tfoot > tr > th:last-child, |
|
| 1841 |
+ .table-responsive > .table-bordered > thead > tr > td:last-child, |
|
| 1842 |
+ .table-responsive > .table-bordered > tbody > tr > td:last-child, |
|
| 1843 |
+ .table-responsive > .table-bordered > tfoot > tr > td:last-child {
|
|
| 1844 |
+ border-right: 0; |
|
| 1845 |
+ } |
|
| 1846 |
+ .table-responsive > .table-bordered > tbody > tr:last-child > th, |
|
| 1847 |
+ .table-responsive > .table-bordered > tfoot > tr:last-child > th, |
|
| 1848 |
+ .table-responsive > .table-bordered > tbody > tr:last-child > td, |
|
| 1849 |
+ .table-responsive > .table-bordered > tfoot > tr:last-child > td {
|
|
| 1850 |
+ border-bottom: 0; |
|
| 1851 |
+ } |
|
| 1852 |
+} |
|
| 1853 |
+ |
|
| 1854 |
+fieldset {
|
|
| 1855 |
+ padding: 0; |
|
| 1856 |
+ margin: 0; |
|
| 1857 |
+ border: 0; |
|
| 1858 |
+} |
|
| 1859 |
+ |
|
| 1860 |
+legend {
|
|
| 1861 |
+ display: block; |
|
| 1862 |
+ width: 100%; |
|
| 1863 |
+ padding: 0; |
|
| 1864 |
+ margin-bottom: 20px; |
|
| 1865 |
+ font-size: 21px; |
|
| 1866 |
+ line-height: inherit; |
|
| 1867 |
+ color: #333333; |
|
| 1868 |
+ border: 0; |
|
| 1869 |
+ border-bottom: 1px solid #e5e5e5; |
|
| 1870 |
+} |
|
| 1871 |
+ |
|
| 1872 |
+label {
|
|
| 1873 |
+ display: inline-block; |
|
| 1874 |
+ margin-bottom: 5px; |
|
| 1875 |
+ font-weight: bold; |
|
| 1876 |
+} |
|
| 1877 |
+ |
|
| 1878 |
+input[type="search"] {
|
|
| 1879 |
+ -webkit-box-sizing: border-box; |
|
| 1880 |
+ -moz-box-sizing: border-box; |
|
| 1881 |
+ box-sizing: border-box; |
|
| 1882 |
+} |
|
| 1883 |
+ |
|
| 1884 |
+input[type="radio"], |
|
| 1885 |
+input[type="checkbox"] {
|
|
| 1886 |
+ margin: 4px 0 0; |
|
| 1887 |
+ margin-top: 1px \9; |
|
| 1888 |
+ /* IE8-9 */ |
|
| 1889 |
+ |
|
| 1890 |
+ line-height: normal; |
|
| 1891 |
+} |
|
| 1892 |
+ |
|
| 1893 |
+input[type="file"] {
|
|
| 1894 |
+ display: block; |
|
| 1895 |
+} |
|
| 1896 |
+ |
|
| 1897 |
+select[multiple], |
|
| 1898 |
+select[size] {
|
|
| 1899 |
+ height: auto; |
|
| 1900 |
+} |
|
| 1901 |
+ |
|
| 1902 |
+select optgroup {
|
|
| 1903 |
+ font-family: inherit; |
|
| 1904 |
+ font-size: inherit; |
|
| 1905 |
+ font-style: inherit; |
|
| 1906 |
+} |
|
| 1907 |
+ |
|
| 1908 |
+input[type="file"]:focus, |
|
| 1909 |
+input[type="radio"]:focus, |
|
| 1910 |
+input[type="checkbox"]:focus {
|
|
| 1911 |
+ outline: thin dotted; |
|
| 1912 |
+ outline: 5px auto -webkit-focus-ring-color; |
|
| 1913 |
+ outline-offset: -2px; |
|
| 1914 |
+} |
|
| 1915 |
+ |
|
| 1916 |
+input[type="number"]::-webkit-outer-spin-button, |
|
| 1917 |
+input[type="number"]::-webkit-inner-spin-button {
|
|
| 1918 |
+ height: auto; |
|
| 1919 |
+} |
|
| 1920 |
+ |
|
| 1921 |
+output {
|
|
| 1922 |
+ display: block; |
|
| 1923 |
+ padding-top: 7px; |
|
| 1924 |
+ font-size: 14px; |
|
| 1925 |
+ line-height: 1.428571429; |
|
| 1926 |
+ color: #555555; |
|
| 1927 |
+ vertical-align: middle; |
|
| 1928 |
+} |
|
| 1929 |
+ |
|
| 1930 |
+.form-control {
|
|
| 1931 |
+ display: block; |
|
| 1932 |
+ width: 100%; |
|
| 1933 |
+ height: 34px; |
|
| 1934 |
+ padding: 6px 12px; |
|
| 1935 |
+ font-size: 14px; |
|
| 1936 |
+ line-height: 1.428571429; |
|
| 1937 |
+ color: #555555; |
|
| 1938 |
+ vertical-align: middle; |
|
| 1939 |
+ background-color: #ffffff; |
|
| 1940 |
+ background-image: none; |
|
| 1941 |
+ border: 1px solid #cccccc; |
|
| 1942 |
+ border-radius: 4px; |
|
| 1943 |
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); |
|
| 1944 |
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); |
|
| 1945 |
+ -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; |
|
| 1946 |
+ transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; |
|
| 1947 |
+} |
|
| 1948 |
+ |
|
| 1949 |
+.form-control:focus {
|
|
| 1950 |
+ border-color: #66afe9; |
|
| 1951 |
+ outline: 0; |
|
| 1952 |
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); |
|
| 1953 |
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); |
|
| 1954 |
+} |
|
| 1955 |
+ |
|
| 1956 |
+.form-control:-moz-placeholder {
|
|
| 1957 |
+ color: #999999; |
|
| 1958 |
+} |
|
| 1959 |
+ |
|
| 1960 |
+.form-control::-moz-placeholder {
|
|
| 1961 |
+ color: #999999; |
|
| 1962 |
+ opacity: 1; |
|
| 1963 |
+} |
|
| 1964 |
+ |
|
| 1965 |
+.form-control:-ms-input-placeholder {
|
|
| 1966 |
+ color: #999999; |
|
| 1967 |
+} |
|
| 1968 |
+ |
|
| 1969 |
+.form-control::-webkit-input-placeholder {
|
|
| 1970 |
+ color: #999999; |
|
| 1971 |
+} |
|
| 1972 |
+ |
|
| 1973 |
+.form-control[disabled], |
|
| 1974 |
+.form-control[readonly], |
|
| 1975 |
+fieldset[disabled] .form-control {
|
|
| 1976 |
+ cursor: not-allowed; |
|
| 1977 |
+ background-color: #eeeeee; |
|
| 1978 |
+} |
|
| 1979 |
+ |
|
| 1980 |
+textarea.form-control {
|
|
| 1981 |
+ height: auto; |
|
| 1982 |
+} |
|
| 1983 |
+ |
|
| 1984 |
+.form-group {
|
|
| 1985 |
+ margin-bottom: 15px; |
|
| 1986 |
+} |
|
| 1987 |
+ |
|
| 1988 |
+.radio, |
|
| 1989 |
+.checkbox {
|
|
| 1990 |
+ display: block; |
|
| 1991 |
+ min-height: 20px; |
|
| 1992 |
+ padding-left: 20px; |
|
| 1993 |
+ margin-top: 10px; |
|
| 1994 |
+ margin-bottom: 10px; |
|
| 1995 |
+ vertical-align: middle; |
|
| 1996 |
+} |
|
| 1997 |
+ |
|
| 1998 |
+.radio label, |
|
| 1999 |
+.checkbox label {
|
|
| 2000 |
+ display: inline; |
|
| 2001 |
+ margin-bottom: 0; |
|
| 2002 |
+ font-weight: normal; |
|
| 2003 |
+ cursor: pointer; |
|
| 2004 |
+} |
|
| 2005 |
+ |
|
| 2006 |
+.radio input[type="radio"], |
|
| 2007 |
+.radio-inline input[type="radio"], |
|
| 2008 |
+.checkbox input[type="checkbox"], |
|
| 2009 |
+.checkbox-inline input[type="checkbox"] {
|
|
| 2010 |
+ float: left; |
|
| 2011 |
+ margin-left: -20px; |
|
| 2012 |
+} |
|
| 2013 |
+ |
|
| 2014 |
+.radio + .radio, |
|
| 2015 |
+.checkbox + .checkbox {
|
|
| 2016 |
+ margin-top: -5px; |
|
| 2017 |
+} |
|
| 2018 |
+ |
|
| 2019 |
+.radio-inline, |
|
| 2020 |
+.checkbox-inline {
|
|
| 2021 |
+ display: inline-block; |
|
| 2022 |
+ padding-left: 20px; |
|
| 2023 |
+ margin-bottom: 0; |
|
| 2024 |
+ font-weight: normal; |
|
| 2025 |
+ vertical-align: middle; |
|
| 2026 |
+ cursor: pointer; |
|
| 2027 |
+} |
|
| 2028 |
+ |
|
| 2029 |
+.radio-inline + .radio-inline, |
|
| 2030 |
+.checkbox-inline + .checkbox-inline {
|
|
| 2031 |
+ margin-top: 0; |
|
| 2032 |
+ margin-left: 10px; |
|
| 2033 |
+} |
|
| 2034 |
+ |
|
| 2035 |
+input[type="radio"][disabled], |
|
| 2036 |
+input[type="checkbox"][disabled], |
|
| 2037 |
+.radio[disabled], |
|
| 2038 |
+.radio-inline[disabled], |
|
| 2039 |
+.checkbox[disabled], |
|
| 2040 |
+.checkbox-inline[disabled], |
|
| 2041 |
+fieldset[disabled] input[type="radio"], |
|
| 2042 |
+fieldset[disabled] input[type="checkbox"], |
|
| 2043 |
+fieldset[disabled] .radio, |
|
| 2044 |
+fieldset[disabled] .radio-inline, |
|
| 2045 |
+fieldset[disabled] .checkbox, |
|
| 2046 |
+fieldset[disabled] .checkbox-inline {
|
|
| 2047 |
+ cursor: not-allowed; |
|
| 2048 |
+} |
|
| 2049 |
+ |
|
| 2050 |
+.input-sm {
|
|
| 2051 |
+ height: 30px; |
|
| 2052 |
+ padding: 5px 10px; |
|
| 2053 |
+ font-size: 12px; |
|
| 2054 |
+ line-height: 1.5; |
|
| 2055 |
+ border-radius: 3px; |
|
| 2056 |
+} |
|
| 2057 |
+ |
|
| 2058 |
+select.input-sm {
|
|
| 2059 |
+ height: 30px; |
|
| 2060 |
+ line-height: 30px; |
|
| 2061 |
+} |
|
| 2062 |
+ |
|
| 2063 |
+textarea.input-sm {
|
|
| 2064 |
+ height: auto; |
|
| 2065 |
+} |
|
| 2066 |
+ |
|
| 2067 |
+.input-lg {
|
|
| 2068 |
+ height: 46px; |
|
| 2069 |
+ padding: 10px 16px; |
|
| 2070 |
+ font-size: 18px; |
|
| 2071 |
+ line-height: 1.33; |
|
| 2072 |
+ border-radius: 6px; |
|
| 2073 |
+} |
|
| 2074 |
+ |
|
| 2075 |
+select.input-lg {
|
|
| 2076 |
+ height: 46px; |
|
| 2077 |
+ line-height: 46px; |
|
| 2078 |
+} |
|
| 2079 |
+ |
|
| 2080 |
+textarea.input-lg {
|
|
| 2081 |
+ height: auto; |
|
| 2082 |
+} |
|
| 2083 |
+ |
|
| 2084 |
+.has-warning .help-block, |
|
| 2085 |
+.has-warning .control-label, |
|
| 2086 |
+.has-warning .radio, |
|
| 2087 |
+.has-warning .checkbox, |
|
| 2088 |
+.has-warning .radio-inline, |
|
| 2089 |
+.has-warning .checkbox-inline {
|
|
| 2090 |
+ color: #8a6d3b; |
|
| 2091 |
+} |
|
| 2092 |
+ |
|
| 2093 |
+.has-warning .form-control {
|
|
| 2094 |
+ border-color: #8a6d3b; |
|
| 2095 |
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); |
|
| 2096 |
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); |
|
| 2097 |
+} |
|
| 2098 |
+ |
|
| 2099 |
+.has-warning .form-control:focus {
|
|
| 2100 |
+ border-color: #66512c; |
|
| 2101 |
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b; |
|
| 2102 |
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b; |
|
| 2103 |
+} |
|
| 2104 |
+ |
|
| 2105 |
+.has-warning .input-group-addon {
|
|
| 2106 |
+ color: #8a6d3b; |
|
| 2107 |
+ background-color: #fcf8e3; |
|
| 2108 |
+ border-color: #8a6d3b; |
|
| 2109 |
+} |
|
| 2110 |
+ |
|
| 2111 |
+.has-error .help-block, |
|
| 2112 |
+.has-error .control-label, |
|
| 2113 |
+.has-error .radio, |
|
| 2114 |
+.has-error .checkbox, |
|
| 2115 |
+.has-error .radio-inline, |
|
| 2116 |
+.has-error .checkbox-inline {
|
|
| 2117 |
+ color: #a94442; |
|
| 2118 |
+} |
|
| 2119 |
+ |
|
| 2120 |
+.has-error .form-control {
|
|
| 2121 |
+ border-color: #a94442; |
|
| 2122 |
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); |
|
| 2123 |
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); |
|
| 2124 |
+} |
|
| 2125 |
+ |
|
| 2126 |
+.has-error .form-control:focus {
|
|
| 2127 |
+ border-color: #843534; |
|
| 2128 |
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; |
|
| 2129 |
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; |
|
| 2130 |
+} |
|
| 2131 |
+ |
|
| 2132 |
+.has-error .input-group-addon {
|
|
| 2133 |
+ color: #a94442; |
|
| 2134 |
+ background-color: #f2dede; |
|
| 2135 |
+ border-color: #a94442; |
|
| 2136 |
+} |
|
| 2137 |
+ |
|
| 2138 |
+.has-success .help-block, |
|
| 2139 |
+.has-success .control-label, |
|
| 2140 |
+.has-success .radio, |
|
| 2141 |
+.has-success .checkbox, |
|
| 2142 |
+.has-success .radio-inline, |
|
| 2143 |
+.has-success .checkbox-inline {
|
|
| 2144 |
+ color: #3c763d; |
|
| 2145 |
+} |
|
| 2146 |
+ |
|
| 2147 |
+.has-success .form-control {
|
|
| 2148 |
+ border-color: #3c763d; |
|
| 2149 |
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); |
|
| 2150 |
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); |
|
| 2151 |
+} |
|
| 2152 |
+ |
|
| 2153 |
+.has-success .form-control:focus {
|
|
| 2154 |
+ border-color: #2b542c; |
|
| 2155 |
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; |
|
| 2156 |
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; |
|
| 2157 |
+} |
|
| 2158 |
+ |
|
| 2159 |
+.has-success .input-group-addon {
|
|
| 2160 |
+ color: #3c763d; |
|
| 2161 |
+ background-color: #dff0d8; |
|
| 2162 |
+ border-color: #3c763d; |
|
| 2163 |
+} |
|
| 2164 |
+ |
|
| 2165 |
+.form-control-static {
|
|
| 2166 |
+ margin-bottom: 0; |
|
| 2167 |
+} |
|
| 2168 |
+ |
|
| 2169 |
+.help-block {
|
|
| 2170 |
+ display: block; |
|
| 2171 |
+ margin-top: 5px; |
|
| 2172 |
+ margin-bottom: 10px; |
|
| 2173 |
+ color: #737373; |
|
| 2174 |
+} |
|
| 2175 |
+ |
|
| 2176 |
+@media (min-width: 768px) {
|
|
| 2177 |
+ .form-inline .form-group {
|
|
| 2178 |
+ display: inline-block; |
|
| 2179 |
+ margin-bottom: 0; |
|
| 2180 |
+ vertical-align: middle; |
|
| 2181 |
+ } |
|
| 2182 |
+ .form-inline .form-control {
|
|
| 2183 |
+ display: inline-block; |
|
| 2184 |
+ } |
|
| 2185 |
+ .form-inline select.form-control {
|
|
| 2186 |
+ width: auto; |
|
| 2187 |
+ } |
|
| 2188 |
+ .form-inline .radio, |
|
| 2189 |
+ .form-inline .checkbox {
|
|
| 2190 |
+ display: inline-block; |
|
| 2191 |
+ padding-left: 0; |
|
| 2192 |
+ margin-top: 0; |
|
| 2193 |
+ margin-bottom: 0; |
|
| 2194 |
+ } |
|
| 2195 |
+ .form-inline .radio input[type="radio"], |
|
| 2196 |
+ .form-inline .checkbox input[type="checkbox"] {
|
|
| 2197 |
+ float: none; |
|
| 2198 |
+ margin-left: 0; |
|
| 2199 |
+ } |
|
| 2200 |
+} |
|
| 2201 |
+ |
|
| 2202 |
+.form-horizontal .control-label, |
|
| 2203 |
+.form-horizontal .radio, |
|
| 2204 |
+.form-horizontal .checkbox, |
|
| 2205 |
+.form-horizontal .radio-inline, |
|
| 2206 |
+.form-horizontal .checkbox-inline {
|
|
| 2207 |
+ padding-top: 7px; |
|
| 2208 |
+ margin-top: 0; |
|
| 2209 |
+ margin-bottom: 0; |
|
| 2210 |
+} |
|
| 2211 |
+ |
|
| 2212 |
+.form-horizontal .radio, |
|
| 2213 |
+.form-horizontal .checkbox {
|
|
| 2214 |
+ min-height: 27px; |
|
| 2215 |
+} |
|
| 2216 |
+ |
|
| 2217 |
+.form-horizontal .form-group {
|
|
| 2218 |
+ margin-right: -15px; |
|
| 2219 |
+ margin-left: -15px; |
|
| 2220 |
+} |
|
| 2221 |
+ |
|
| 2222 |
+.form-horizontal .form-group:before, |
|
| 2223 |
+.form-horizontal .form-group:after {
|
|
| 2224 |
+ display: table; |
|
| 2225 |
+ content: " "; |
|
| 2226 |
+} |
|
| 2227 |
+ |
|
| 2228 |
+.form-horizontal .form-group:after {
|
|
| 2229 |
+ clear: both; |
|
| 2230 |
+} |
|
| 2231 |
+ |
|
| 2232 |
+.form-horizontal .form-group:before, |
|
| 2233 |
+.form-horizontal .form-group:after {
|
|
| 2234 |
+ display: table; |
|
| 2235 |
+ content: " "; |
|
| 2236 |
+} |
|
| 2237 |
+ |
|
| 2238 |
+.form-horizontal .form-group:after {
|
|
| 2239 |
+ clear: both; |
|
| 2240 |
+} |
|
| 2241 |
+ |
|
| 2242 |
+.form-horizontal .form-control-static {
|
|
| 2243 |
+ padding-top: 7px; |
|
| 2244 |
+} |
|
| 2245 |
+ |
|
| 2246 |
+@media (min-width: 768px) {
|
|
| 2247 |
+ .form-horizontal .control-label {
|
|
| 2248 |
+ text-align: right; |
|
| 2249 |
+ } |
|
| 2250 |
+} |
|
| 2251 |
+ |
|
| 2252 |
+.btn {
|
|
| 2253 |
+ display: inline-block; |
|
| 2254 |
+ padding: 6px 12px; |
|
| 2255 |
+ margin-bottom: 0; |
|
| 2256 |
+ font-size: 14px; |
|
| 2257 |
+ font-weight: normal; |
|
| 2258 |
+ line-height: 1.428571429; |
|
| 2259 |
+ text-align: center; |
|
| 2260 |
+ white-space: nowrap; |
|
| 2261 |
+ vertical-align: middle; |
|
| 2262 |
+ cursor: pointer; |
|
| 2263 |
+ background-image: none; |
|
| 2264 |
+ border: 1px solid transparent; |
|
| 2265 |
+ border-radius: 4px; |
|
| 2266 |
+ -webkit-user-select: none; |
|
| 2267 |
+ -moz-user-select: none; |
|
| 2268 |
+ -ms-user-select: none; |
|
| 2269 |
+ -o-user-select: none; |
|
| 2270 |
+ user-select: none; |
|
| 2271 |
+} |
|
| 2272 |
+ |
|
| 2273 |
+.btn:focus {
|
|
| 2274 |
+ outline: thin dotted; |
|
| 2275 |
+ outline: 5px auto -webkit-focus-ring-color; |
|
| 2276 |
+ outline-offset: -2px; |
|
| 2277 |
+} |
|
| 2278 |
+ |
|
| 2279 |
+.btn:hover, |
|
| 2280 |
+.btn:focus {
|
|
| 2281 |
+ color: #333333; |
|
| 2282 |
+ text-decoration: none; |
|
| 2283 |
+} |
|
| 2284 |
+ |
|
| 2285 |
+.btn:active, |
|
| 2286 |
+.btn.active {
|
|
| 2287 |
+ background-image: none; |
|
| 2288 |
+ outline: 0; |
|
| 2289 |
+ -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); |
|
| 2290 |
+ box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); |
|
| 2291 |
+} |
|
| 2292 |
+ |
|
| 2293 |
+.btn.disabled, |
|
| 2294 |
+.btn[disabled], |
|
| 2295 |
+fieldset[disabled] .btn {
|
|
| 2296 |
+ pointer-events: none; |
|
| 2297 |
+ cursor: not-allowed; |
|
| 2298 |
+ opacity: 0.65; |
|
| 2299 |
+ filter: alpha(opacity=65); |
|
| 2300 |
+ -webkit-box-shadow: none; |
|
| 2301 |
+ box-shadow: none; |
|
| 2302 |
+} |
|
| 2303 |
+ |
|
| 2304 |
+.btn-default {
|
|
| 2305 |
+ color: #333333; |
|
| 2306 |
+ background-color: #ffffff; |
|
| 2307 |
+ border-color: #cccccc; |
|
| 2308 |
+} |
|
| 2309 |
+ |
|
| 2310 |
+.btn-default:hover, |
|
| 2311 |
+.btn-default:focus, |
|
| 2312 |
+.btn-default:active, |
|
| 2313 |
+.btn-default.active, |
|
| 2314 |
+.open .dropdown-toggle.btn-default {
|
|
| 2315 |
+ color: #333333; |
|
| 2316 |
+ background-color: #ebebeb; |
|
| 2317 |
+ border-color: #adadad; |
|
| 2318 |
+} |
|
| 2319 |
+ |
|
| 2320 |
+.btn-default:active, |
|
| 2321 |
+.btn-default.active, |
|
| 2322 |
+.open .dropdown-toggle.btn-default {
|
|
| 2323 |
+ background-image: none; |
|
| 2324 |
+} |
|
| 2325 |
+ |
|
| 2326 |
+.btn-default.disabled, |
|
| 2327 |
+.btn-default[disabled], |
|
| 2328 |
+fieldset[disabled] .btn-default, |
|
| 2329 |
+.btn-default.disabled:hover, |
|
| 2330 |
+.btn-default[disabled]:hover, |
|
| 2331 |
+fieldset[disabled] .btn-default:hover, |
|
| 2332 |
+.btn-default.disabled:focus, |
|
| 2333 |
+.btn-default[disabled]:focus, |
|
| 2334 |
+fieldset[disabled] .btn-default:focus, |
|
| 2335 |
+.btn-default.disabled:active, |
|
| 2336 |
+.btn-default[disabled]:active, |
|
| 2337 |
+fieldset[disabled] .btn-default:active, |
|
| 2338 |
+.btn-default.disabled.active, |
|
| 2339 |
+.btn-default[disabled].active, |
|
| 2340 |
+fieldset[disabled] .btn-default.active {
|
|
| 2341 |
+ background-color: #ffffff; |
|
| 2342 |
+ border-color: #cccccc; |
|
| 2343 |
+} |
|
| 2344 |
+ |
|
| 2345 |
+.btn-default .badge {
|
|
| 2346 |
+ color: #ffffff; |
|
| 2347 |
+ background-color: #fff; |
|
| 2348 |
+} |
|
| 2349 |
+ |
|
| 2350 |
+.btn-primary {
|
|
| 2351 |
+ color: #ffffff; |
|
| 2352 |
+ background-color: #428bca; |
|
| 2353 |
+ border-color: #357ebd; |
|
| 2354 |
+} |
|
| 2355 |
+ |
|
| 2356 |
+.btn-primary:hover, |
|
| 2357 |
+.btn-primary:focus, |
|
| 2358 |
+.btn-primary:active, |
|
| 2359 |
+.btn-primary.active, |
|
| 2360 |
+.open .dropdown-toggle.btn-primary {
|
|
| 2361 |
+ color: #ffffff; |
|
| 2362 |
+ background-color: #3276b1; |
|
| 2363 |
+ border-color: #285e8e; |
|
| 2364 |
+} |
|
| 2365 |
+ |
|
| 2366 |
+.btn-primary:active, |
|
| 2367 |
+.btn-primary.active, |
|
| 2368 |
+.open .dropdown-toggle.btn-primary {
|
|
| 2369 |
+ background-image: none; |
|
| 2370 |
+} |
|
| 2371 |
+ |
|
| 2372 |
+.btn-primary.disabled, |
|
| 2373 |
+.btn-primary[disabled], |
|
| 2374 |
+fieldset[disabled] .btn-primary, |
|
| 2375 |
+.btn-primary.disabled:hover, |
|
| 2376 |
+.btn-primary[disabled]:hover, |
|
| 2377 |
+fieldset[disabled] .btn-primary:hover, |
|
| 2378 |
+.btn-primary.disabled:focus, |
|
| 2379 |
+.btn-primary[disabled]:focus, |
|
| 2380 |
+fieldset[disabled] .btn-primary:focus, |
|
| 2381 |
+.btn-primary.disabled:active, |
|
| 2382 |
+.btn-primary[disabled]:active, |
|
| 2383 |
+fieldset[disabled] .btn-primary:active, |
|
| 2384 |
+.btn-primary.disabled.active, |
|
| 2385 |
+.btn-primary[disabled].active, |
|
| 2386 |
+fieldset[disabled] .btn-primary.active {
|
|
| 2387 |
+ background-color: #428bca; |
|
| 2388 |
+ border-color: #357ebd; |
|
| 2389 |
+} |
|
| 2390 |
+ |
|
| 2391 |
+.btn-primary .badge {
|
|
| 2392 |
+ color: #428bca; |
|
| 2393 |
+ background-color: #fff; |
|
| 2394 |
+} |
|
| 2395 |
+ |
|
| 2396 |
+.btn-warning {
|
|
| 2397 |
+ color: #ffffff; |
|
| 2398 |
+ background-color: #f0ad4e; |
|
| 2399 |
+ border-color: #eea236; |
|
| 2400 |
+} |
|
| 2401 |
+ |
|
| 2402 |
+.btn-warning:hover, |
|
| 2403 |
+.btn-warning:focus, |
|
| 2404 |
+.btn-warning:active, |
|
| 2405 |
+.btn-warning.active, |
|
| 2406 |
+.open .dropdown-toggle.btn-warning {
|
|
| 2407 |
+ color: #ffffff; |
|
| 2408 |
+ background-color: #ed9c28; |
|
| 2409 |
+ border-color: #d58512; |
|
| 2410 |
+} |
|
| 2411 |
+ |
|
| 2412 |
+.btn-warning:active, |
|
| 2413 |
+.btn-warning.active, |
|
| 2414 |
+.open .dropdown-toggle.btn-warning {
|
|
| 2415 |
+ background-image: none; |
|
| 2416 |
+} |
|
| 2417 |
+ |
|
| 2418 |
+.btn-warning.disabled, |
|
| 2419 |
+.btn-warning[disabled], |
|
| 2420 |
+fieldset[disabled] .btn-warning, |
|
| 2421 |
+.btn-warning.disabled:hover, |
|
| 2422 |
+.btn-warning[disabled]:hover, |
|
| 2423 |
+fieldset[disabled] .btn-warning:hover, |
|
| 2424 |
+.btn-warning.disabled:focus, |
|
| 2425 |
+.btn-warning[disabled]:focus, |
|
| 2426 |
+fieldset[disabled] .btn-warning:focus, |
|
| 2427 |
+.btn-warning.disabled:active, |
|
| 2428 |
+.btn-warning[disabled]:active, |
|
| 2429 |
+fieldset[disabled] .btn-warning:active, |
|
| 2430 |
+.btn-warning.disabled.active, |
|
| 2431 |
+.btn-warning[disabled].active, |
|
| 2432 |
+fieldset[disabled] .btn-warning.active {
|
|
| 2433 |
+ background-color: #f0ad4e; |
|
| 2434 |
+ border-color: #eea236; |
|
| 2435 |
+} |
|
| 2436 |
+ |
|
| 2437 |
+.btn-warning .badge {
|
|
| 2438 |
+ color: #f0ad4e; |
|
| 2439 |
+ background-color: #fff; |
|
| 2440 |
+} |
|
| 2441 |
+ |
|
| 2442 |
+.btn-danger {
|
|
| 2443 |
+ color: #ffffff; |
|
| 2444 |
+ background-color: #d9534f; |
|
| 2445 |
+ border-color: #d43f3a; |
|
| 2446 |
+} |
|
| 2447 |
+ |
|
| 2448 |
+.btn-danger:hover, |
|
| 2449 |
+.btn-danger:focus, |
|
| 2450 |
+.btn-danger:active, |
|
| 2451 |
+.btn-danger.active, |
|
| 2452 |
+.open .dropdown-toggle.btn-danger {
|
|
| 2453 |
+ color: #ffffff; |
|
| 2454 |
+ background-color: #d2322d; |
|
| 2455 |
+ border-color: #ac2925; |
|
| 2456 |
+} |
|
| 2457 |
+ |
|
| 2458 |
+.btn-danger:active, |
|
| 2459 |
+.btn-danger.active, |
|
| 2460 |
+.open .dropdown-toggle.btn-danger {
|
|
| 2461 |
+ background-image: none; |
|
| 2462 |
+} |
|
| 2463 |
+ |
|
| 2464 |
+.btn-danger.disabled, |
|
| 2465 |
+.btn-danger[disabled], |
|
| 2466 |
+fieldset[disabled] .btn-danger, |
|
| 2467 |
+.btn-danger.disabled:hover, |
|
| 2468 |
+.btn-danger[disabled]:hover, |
|
| 2469 |
+fieldset[disabled] .btn-danger:hover, |
|
| 2470 |
+.btn-danger.disabled:focus, |
|
| 2471 |
+.btn-danger[disabled]:focus, |
|
| 2472 |
+fieldset[disabled] .btn-danger:focus, |
|
| 2473 |
+.btn-danger.disabled:active, |
|
| 2474 |
+.btn-danger[disabled]:active, |
|
| 2475 |
+fieldset[disabled] .btn-danger:active, |
|
| 2476 |
+.btn-danger.disabled.active, |
|
| 2477 |
+.btn-danger[disabled].active, |
|
| 2478 |
+fieldset[disabled] .btn-danger.active {
|
|
| 2479 |
+ background-color: #d9534f; |
|
| 2480 |
+ border-color: #d43f3a; |
|
| 2481 |
+} |
|
| 2482 |
+ |
|
| 2483 |
+.btn-danger .badge {
|
|
| 2484 |
+ color: #d9534f; |
|
| 2485 |
+ background-color: #fff; |
|
| 2486 |
+} |
|
| 2487 |
+ |
|
| 2488 |
+.btn-success {
|
|
| 2489 |
+ color: #ffffff; |
|
| 2490 |
+ background-color: #5cb85c; |
|
| 2491 |
+ border-color: #4cae4c; |
|
| 2492 |
+} |
|
| 2493 |
+ |
|
| 2494 |
+.btn-success:hover, |
|
| 2495 |
+.btn-success:focus, |
|
| 2496 |
+.btn-success:active, |
|
| 2497 |
+.btn-success.active, |
|
| 2498 |
+.open .dropdown-toggle.btn-success {
|
|
| 2499 |
+ color: #ffffff; |
|
| 2500 |
+ background-color: #47a447; |
|
| 2501 |
+ border-color: #398439; |
|
| 2502 |
+} |
|
| 2503 |
+ |
|
| 2504 |
+.btn-success:active, |
|
| 2505 |
+.btn-success.active, |
|
| 2506 |
+.open .dropdown-toggle.btn-success {
|
|
| 2507 |
+ background-image: none; |
|
| 2508 |
+} |
|
| 2509 |
+ |
|
| 2510 |
+.btn-success.disabled, |
|
| 2511 |
+.btn-success[disabled], |
|
| 2512 |
+fieldset[disabled] .btn-success, |
|
| 2513 |
+.btn-success.disabled:hover, |
|
| 2514 |
+.btn-success[disabled]:hover, |
|
| 2515 |
+fieldset[disabled] .btn-success:hover, |
|
| 2516 |
+.btn-success.disabled:focus, |
|
| 2517 |
+.btn-success[disabled]:focus, |
|
| 2518 |
+fieldset[disabled] .btn-success:focus, |
|
| 2519 |
+.btn-success.disabled:active, |
|
| 2520 |
+.btn-success[disabled]:active, |
|
| 2521 |
+fieldset[disabled] .btn-success:active, |
|
| 2522 |
+.btn-success.disabled.active, |
|
| 2523 |
+.btn-success[disabled].active, |
|
| 2524 |
+fieldset[disabled] .btn-success.active {
|
|
| 2525 |
+ background-color: #5cb85c; |
|
| 2526 |
+ border-color: #4cae4c; |
|
| 2527 |
+} |
|
| 2528 |
+ |
|
| 2529 |
+.btn-success .badge {
|
|
| 2530 |
+ color: #5cb85c; |
|
| 2531 |
+ background-color: #fff; |
|
| 2532 |
+} |
|
| 2533 |
+ |
|
| 2534 |
+.btn-info {
|
|
| 2535 |
+ color: #ffffff; |
|
| 2536 |
+ background-color: #5bc0de; |
|
| 2537 |
+ border-color: #46b8da; |
|
| 2538 |
+} |
|
| 2539 |
+ |
|
| 2540 |
+.btn-info:hover, |
|
| 2541 |
+.btn-info:focus, |
|
| 2542 |
+.btn-info:active, |
|
| 2543 |
+.btn-info.active, |
|
| 2544 |
+.open .dropdown-toggle.btn-info {
|
|
| 2545 |
+ color: #ffffff; |
|
| 2546 |
+ background-color: #39b3d7; |
|
| 2547 |
+ border-color: #269abc; |
|
| 2548 |
+} |
|
| 2549 |
+ |
|
| 2550 |
+.btn-info:active, |
|
| 2551 |
+.btn-info.active, |
|
| 2552 |
+.open .dropdown-toggle.btn-info {
|
|
| 2553 |
+ background-image: none; |
|
| 2554 |
+} |
|
| 2555 |
+ |
|
| 2556 |
+.btn-info.disabled, |
|
| 2557 |
+.btn-info[disabled], |
|
| 2558 |
+fieldset[disabled] .btn-info, |
|
| 2559 |
+.btn-info.disabled:hover, |
|
| 2560 |
+.btn-info[disabled]:hover, |
|
| 2561 |
+fieldset[disabled] .btn-info:hover, |
|
| 2562 |
+.btn-info.disabled:focus, |
|
| 2563 |
+.btn-info[disabled]:focus, |
|
| 2564 |
+fieldset[disabled] .btn-info:focus, |
|
| 2565 |
+.btn-info.disabled:active, |
|
| 2566 |
+.btn-info[disabled]:active, |
|
| 2567 |
+fieldset[disabled] .btn-info:active, |
|
| 2568 |
+.btn-info.disabled.active, |
|
| 2569 |
+.btn-info[disabled].active, |
|
| 2570 |
+fieldset[disabled] .btn-info.active {
|
|
| 2571 |
+ background-color: #5bc0de; |
|
| 2572 |
+ border-color: #46b8da; |
|
| 2573 |
+} |
|
| 2574 |
+ |
|
| 2575 |
+.btn-info .badge {
|
|
| 2576 |
+ color: #5bc0de; |
|
| 2577 |
+ background-color: #fff; |
|
| 2578 |
+} |
|
| 2579 |
+ |
|
| 2580 |
+.btn-link {
|
|
| 2581 |
+ font-weight: normal; |
|
| 2582 |
+ color: #428bca; |
|
| 2583 |
+ cursor: pointer; |
|
| 2584 |
+ border-radius: 0; |
|
| 2585 |
+} |
|
| 2586 |
+ |
|
| 2587 |
+.btn-link, |
|
| 2588 |
+.btn-link:active, |
|
| 2589 |
+.btn-link[disabled], |
|
| 2590 |
+fieldset[disabled] .btn-link {
|
|
| 2591 |
+ background-color: transparent; |
|
| 2592 |
+ -webkit-box-shadow: none; |
|
| 2593 |
+ box-shadow: none; |
|
| 2594 |
+} |
|
| 2595 |
+ |
|
| 2596 |
+.btn-link, |
|
| 2597 |
+.btn-link:hover, |
|
| 2598 |
+.btn-link:focus, |
|
| 2599 |
+.btn-link:active {
|
|
| 2600 |
+ border-color: transparent; |
|
| 2601 |
+} |
|
| 2602 |
+ |
|
| 2603 |
+.btn-link:hover, |
|
| 2604 |
+.btn-link:focus {
|
|
| 2605 |
+ color: #2a6496; |
|
| 2606 |
+ text-decoration: underline; |
|
| 2607 |
+ background-color: transparent; |
|
| 2608 |
+} |
|
| 2609 |
+ |
|
| 2610 |
+.btn-link[disabled]:hover, |
|
| 2611 |
+fieldset[disabled] .btn-link:hover, |
|
| 2612 |
+.btn-link[disabled]:focus, |
|
| 2613 |
+fieldset[disabled] .btn-link:focus {
|
|
| 2614 |
+ color: #999999; |
|
| 2615 |
+ text-decoration: none; |
|
| 2616 |
+} |
|
| 2617 |
+ |
|
| 2618 |
+.btn-lg {
|
|
| 2619 |
+ padding: 10px 16px; |
|
| 2620 |
+ font-size: 18px; |
|
| 2621 |
+ line-height: 1.33; |
|
| 2622 |
+ border-radius: 6px; |
|
| 2623 |
+} |
|
| 2624 |
+ |
|
| 2625 |
+.btn-sm {
|
|
| 2626 |
+ padding: 5px 10px; |
|
| 2627 |
+ font-size: 12px; |
|
| 2628 |
+ line-height: 1.5; |
|
| 2629 |
+ border-radius: 3px; |
|
| 2630 |
+} |
|
| 2631 |
+ |
|
| 2632 |
+.btn-xs {
|
|
| 2633 |
+ padding: 1px 5px; |
|
| 2634 |
+ font-size: 12px; |
|
| 2635 |
+ line-height: 1.5; |
|
| 2636 |
+ border-radius: 3px; |
|
| 2637 |
+} |
|
| 2638 |
+ |
|
| 2639 |
+.btn-block {
|
|
| 2640 |
+ display: block; |
|
| 2641 |
+ width: 100%; |
|
| 2642 |
+ padding-right: 0; |
|
| 2643 |
+ padding-left: 0; |
|
| 2644 |
+} |
|
| 2645 |
+ |
|
| 2646 |
+.btn-block + .btn-block {
|
|
| 2647 |
+ margin-top: 5px; |
|
| 2648 |
+} |
|
| 2649 |
+ |
|
| 2650 |
+input[type="submit"].btn-block, |
|
| 2651 |
+input[type="reset"].btn-block, |
|
| 2652 |
+input[type="button"].btn-block {
|
|
| 2653 |
+ width: 100%; |
|
| 2654 |
+} |
|
| 2655 |
+ |
|
| 2656 |
+.fade {
|
|
| 2657 |
+ opacity: 0; |
|
| 2658 |
+ -webkit-transition: opacity 0.15s linear; |
|
| 2659 |
+ transition: opacity 0.15s linear; |
|
| 2660 |
+} |
|
| 2661 |
+ |
|
| 2662 |
+.fade.in {
|
|
| 2663 |
+ opacity: 1; |
|
| 2664 |
+} |
|
| 2665 |
+ |
|
| 2666 |
+.collapse {
|
|
| 2667 |
+ display: none; |
|
| 2668 |
+} |
|
| 2669 |
+ |
|
| 2670 |
+.collapse.in {
|
|
| 2671 |
+ display: block; |
|
| 2672 |
+} |
|
| 2673 |
+ |
|
| 2674 |
+.collapsing {
|
|
| 2675 |
+ position: relative; |
|
| 2676 |
+ height: 0; |
|
| 2677 |
+ overflow: hidden; |
|
| 2678 |
+ -webkit-transition: height 0.35s ease; |
|
| 2679 |
+ transition: height 0.35s ease; |
|
| 2680 |
+} |
|
| 2681 |
+ |
|
| 2682 |
+@font-face {
|
|
| 2683 |
+ font-family: 'Glyphicons Halflings'; |
|
| 2684 |
+ src: url('../fonts/glyphicons-halflings-regular.eot');
|
|
| 2685 |
+ src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons-halflingsregular') format('svg');
|
|
| 2686 |
+} |
|
| 2687 |
+ |
|
| 2688 |
+.glyphicon {
|
|
| 2689 |
+ position: relative; |
|
| 2690 |
+ top: 1px; |
|
| 2691 |
+ display: inline-block; |
|
| 2692 |
+ font-family: 'Glyphicons Halflings'; |
|
| 2693 |
+ -webkit-font-smoothing: antialiased; |
|
| 2694 |
+ font-style: normal; |
|
| 2695 |
+ font-weight: normal; |
|
| 2696 |
+ line-height: 1; |
|
| 2697 |
+ -moz-osx-font-smoothing: grayscale; |
|
| 2698 |
+} |
|
| 2699 |
+ |
|
| 2700 |
+.glyphicon:empty {
|
|
| 2701 |
+ width: 1em; |
|
| 2702 |
+} |
|
| 2703 |
+ |
|
| 2704 |
+.glyphicon-asterisk:before {
|
|
| 2705 |
+ content: "\2a"; |
|
| 2706 |
+} |
|
| 2707 |
+ |
|
| 2708 |
+.glyphicon-plus:before {
|
|
| 2709 |
+ content: "\2b"; |
|
| 2710 |
+} |
|
| 2711 |
+ |
|
| 2712 |
+.glyphicon-euro:before {
|
|
| 2713 |
+ content: "\20ac"; |
|
| 2714 |
+} |
|
| 2715 |
+ |
|
| 2716 |
+.glyphicon-minus:before {
|
|
| 2717 |
+ content: "\2212"; |
|
| 2718 |
+} |
|
| 2719 |
+ |
|
| 2720 |
+.glyphicon-cloud:before {
|
|
| 2721 |
+ content: "\2601"; |
|
| 2722 |
+} |
|
| 2723 |
+ |
|
| 2724 |
+.glyphicon-envelope:before {
|
|
| 2725 |
+ content: "\2709"; |
|
| 2726 |
+} |
|
| 2727 |
+ |
|
| 2728 |
+.glyphicon-pencil:before {
|
|
| 2729 |
+ content: "\270f"; |
|
| 2730 |
+} |
|
| 2731 |
+ |
|
| 2732 |
+.glyphicon-glass:before {
|
|
| 2733 |
+ content: "\e001"; |
|
| 2734 |
+} |
|
| 2735 |
+ |
|
| 2736 |
+.glyphicon-music:before {
|
|
| 2737 |
+ content: "\e002"; |
|
| 2738 |
+} |
|
| 2739 |
+ |
|
| 2740 |
+.glyphicon-search:before {
|
|
| 2741 |
+ content: "\e003"; |
|
| 2742 |
+} |
|
| 2743 |
+ |
|
| 2744 |
+.glyphicon-heart:before {
|
|
| 2745 |
+ content: "\e005"; |
|
| 2746 |
+} |
|
| 2747 |
+ |
|
| 2748 |
+.glyphicon-star:before {
|
|
| 2749 |
+ content: "\e006"; |
|
| 2750 |
+} |
|
| 2751 |
+ |
|
| 2752 |
+.glyphicon-star-empty:before {
|
|
| 2753 |
+ content: "\e007"; |
|
| 2754 |
+} |
|
| 2755 |
+ |
|
| 2756 |
+.glyphicon-user:before {
|
|
| 2757 |
+ content: "\e008"; |
|
| 2758 |
+} |
|
| 2759 |
+ |
|
| 2760 |
+.glyphicon-film:before {
|
|
| 2761 |
+ content: "\e009"; |
|
| 2762 |
+} |
|
| 2763 |
+ |
|
| 2764 |
+.glyphicon-th-large:before {
|
|
| 2765 |
+ content: "\e010"; |
|
| 2766 |
+} |
|
| 2767 |
+ |
|
| 2768 |
+.glyphicon-th:before {
|
|
| 2769 |
+ content: "\e011"; |
|
| 2770 |
+} |
|
| 2771 |
+ |
|
| 2772 |
+.glyphicon-th-list:before {
|
|
| 2773 |
+ content: "\e012"; |
|
| 2774 |
+} |
|
| 2775 |
+ |
|
| 2776 |
+.glyphicon-ok:before {
|
|
| 2777 |
+ content: "\e013"; |
|
| 2778 |
+} |
|
| 2779 |
+ |
|
| 2780 |
+.glyphicon-remove:before {
|
|
| 2781 |
+ content: "\e014"; |
|
| 2782 |
+} |
|
| 2783 |
+ |
|
| 2784 |
+.glyphicon-zoom-in:before {
|
|
| 2785 |
+ content: "\e015"; |
|
| 2786 |
+} |
|
| 2787 |
+ |
|
| 2788 |
+.glyphicon-zoom-out:before {
|
|
| 2789 |
+ content: "\e016"; |
|
| 2790 |
+} |
|
| 2791 |
+ |
|
| 2792 |
+.glyphicon-off:before {
|
|
| 2793 |
+ content: "\e017"; |
|
| 2794 |
+} |
|
| 2795 |
+ |
|
| 2796 |
+.glyphicon-signal:before {
|
|
| 2797 |
+ content: "\e018"; |
|
| 2798 |
+} |
|
| 2799 |
+ |
|
| 2800 |
+.glyphicon-cog:before {
|
|
| 2801 |
+ content: "\e019"; |
|
| 2802 |
+} |
|
| 2803 |
+ |
|
| 2804 |
+.glyphicon-trash:before {
|
|
| 2805 |
+ content: "\e020"; |
|
| 2806 |
+} |
|
| 2807 |
+ |
|
| 2808 |
+.glyphicon-home:before {
|
|
| 2809 |
+ content: "\e021"; |
|
| 2810 |
+} |
|
| 2811 |
+ |
|
| 2812 |
+.glyphicon-file:before {
|
|
| 2813 |
+ content: "\e022"; |
|
| 2814 |
+} |
|
| 2815 |
+ |
|
| 2816 |
+.glyphicon-time:before {
|
|
| 2817 |
+ content: "\e023"; |
|
| 2818 |
+} |
|
| 2819 |
+ |
|
| 2820 |
+.glyphicon-road:before {
|
|
| 2821 |
+ content: "\e024"; |
|
| 2822 |
+} |
|
| 2823 |
+ |
|
| 2824 |
+.glyphicon-download-alt:before {
|
|
| 2825 |
+ content: "\e025"; |
|
| 2826 |
+} |
|
| 2827 |
+ |
|
| 2828 |
+.glyphicon-download:before {
|
|
| 2829 |
+ content: "\e026"; |
|
| 2830 |
+} |
|
| 2831 |
+ |
|
| 2832 |
+.glyphicon-upload:before {
|
|
| 2833 |
+ content: "\e027"; |
|
| 2834 |
+} |
|
| 2835 |
+ |
|
| 2836 |
+.glyphicon-inbox:before {
|
|
| 2837 |
+ content: "\e028"; |
|
| 2838 |
+} |
|
| 2839 |
+ |
|
| 2840 |
+.glyphicon-play-circle:before {
|
|
| 2841 |
+ content: "\e029"; |
|
| 2842 |
+} |
|
| 2843 |
+ |
|
| 2844 |
+.glyphicon-repeat:before {
|
|
| 2845 |
+ content: "\e030"; |
|
| 2846 |
+} |
|
| 2847 |
+ |
|
| 2848 |
+.glyphicon-refresh:before {
|
|
| 2849 |
+ content: "\e031"; |
|
| 2850 |
+} |
|
| 2851 |
+ |
|
| 2852 |
+.glyphicon-list-alt:before {
|
|
| 2853 |
+ content: "\e032"; |
|
| 2854 |
+} |
|
| 2855 |
+ |
|
| 2856 |
+.glyphicon-lock:before {
|
|
| 2857 |
+ content: "\e033"; |
|
| 2858 |
+} |
|
| 2859 |
+ |
|
| 2860 |
+.glyphicon-flag:before {
|
|
| 2861 |
+ content: "\e034"; |
|
| 2862 |
+} |
|
| 2863 |
+ |
|
| 2864 |
+.glyphicon-headphones:before {
|
|
| 2865 |
+ content: "\e035"; |
|
| 2866 |
+} |
|
| 2867 |
+ |
|
| 2868 |
+.glyphicon-volume-off:before {
|
|
| 2869 |
+ content: "\e036"; |
|
| 2870 |
+} |
|
| 2871 |
+ |
|
| 2872 |
+.glyphicon-volume-down:before {
|
|
| 2873 |
+ content: "\e037"; |
|
| 2874 |
+} |
|
| 2875 |
+ |
|
| 2876 |
+.glyphicon-volume-up:before {
|
|
| 2877 |
+ content: "\e038"; |
|
| 2878 |
+} |
|
| 2879 |
+ |
|
| 2880 |
+.glyphicon-qrcode:before {
|
|
| 2881 |
+ content: "\e039"; |
|
| 2882 |
+} |
|
| 2883 |
+ |
|
| 2884 |
+.glyphicon-barcode:before {
|
|
| 2885 |
+ content: "\e040"; |
|
| 2886 |
+} |
|
| 2887 |
+ |
|
| 2888 |
+.glyphicon-tag:before {
|
|
| 2889 |
+ content: "\e041"; |
|
| 2890 |
+} |
|
| 2891 |
+ |
|
| 2892 |
+.glyphicon-tags:before {
|
|
| 2893 |
+ content: "\e042"; |
|
| 2894 |
+} |
|
| 2895 |
+ |
|
| 2896 |
+.glyphicon-book:before {
|
|
| 2897 |
+ content: "\e043"; |
|
| 2898 |
+} |
|
| 2899 |
+ |
|
| 2900 |
+.glyphicon-bookmark:before {
|
|
| 2901 |
+ content: "\e044"; |
|
| 2902 |
+} |
|
| 2903 |
+ |
|
| 2904 |
+.glyphicon-print:before {
|
|
| 2905 |
+ content: "\e045"; |
|
| 2906 |
+} |
|
| 2907 |
+ |
|
| 2908 |
+.glyphicon-camera:before {
|
|
| 2909 |
+ content: "\e046"; |
|
| 2910 |
+} |
|
| 2911 |
+ |
|
| 2912 |
+.glyphicon-font:before {
|
|
| 2913 |
+ content: "\e047"; |
|
| 2914 |
+} |
|
| 2915 |
+ |
|
| 2916 |
+.glyphicon-bold:before {
|
|
| 2917 |
+ content: "\e048"; |
|
| 2918 |
+} |
|
| 2919 |
+ |
|
| 2920 |
+.glyphicon-italic:before {
|
|
| 2921 |
+ content: "\e049"; |
|
| 2922 |
+} |
|
| 2923 |
+ |
|
| 2924 |
+.glyphicon-text-height:before {
|
|
| 2925 |
+ content: "\e050"; |
|
| 2926 |
+} |
|
| 2927 |
+ |
|
| 2928 |
+.glyphicon-text-width:before {
|
|
| 2929 |
+ content: "\e051"; |
|
| 2930 |
+} |
|
| 2931 |
+ |
|
| 2932 |
+.glyphicon-align-left:before {
|
|
| 2933 |
+ content: "\e052"; |
|
| 2934 |
+} |
|
| 2935 |
+ |
|
| 2936 |
+.glyphicon-align-center:before {
|
|
| 2937 |
+ content: "\e053"; |
|
| 2938 |
+} |
|
| 2939 |
+ |
|
| 2940 |
+.glyphicon-align-right:before {
|
|
| 2941 |
+ content: "\e054"; |
|
| 2942 |
+} |
|
| 2943 |
+ |
|
| 2944 |
+.glyphicon-align-justify:before {
|
|
| 2945 |
+ content: "\e055"; |
|
| 2946 |
+} |
|
| 2947 |
+ |
|
| 2948 |
+.glyphicon-list:before {
|
|
| 2949 |
+ content: "\e056"; |
|
| 2950 |
+} |
|
| 2951 |
+ |
|
| 2952 |
+.glyphicon-indent-left:before {
|
|
| 2953 |
+ content: "\e057"; |
|
| 2954 |
+} |
|
| 2955 |
+ |
|
| 2956 |
+.glyphicon-indent-right:before {
|
|
| 2957 |
+ content: "\e058"; |
|
| 2958 |
+} |
|
| 2959 |
+ |
|
| 2960 |
+.glyphicon-facetime-video:before {
|
|
| 2961 |
+ content: "\e059"; |
|
| 2962 |
+} |
|
| 2963 |
+ |
|
| 2964 |
+.glyphicon-picture:before {
|
|
| 2965 |
+ content: "\e060"; |
|
| 2966 |
+} |
|
| 2967 |
+ |
|
| 2968 |
+.glyphicon-map-marker:before {
|
|
| 2969 |
+ content: "\e062"; |
|
| 2970 |
+} |
|
| 2971 |
+ |
|
| 2972 |
+.glyphicon-adjust:before {
|
|
| 2973 |
+ content: "\e063"; |
|
| 2974 |
+} |
|
| 2975 |
+ |
|
| 2976 |
+.glyphicon-tint:before {
|
|
| 2977 |
+ content: "\e064"; |
|
| 2978 |
+} |
|
| 2979 |
+ |
|
| 2980 |
+.glyphicon-edit:before {
|
|
| 2981 |
+ content: "\e065"; |
|
| 2982 |
+} |
|
| 2983 |
+ |
|
| 2984 |
+.glyphicon-share:before {
|
|
| 2985 |
+ content: "\e066"; |
|
| 2986 |
+} |
|
| 2987 |
+ |
|
| 2988 |
+.glyphicon-check:before {
|
|
| 2989 |
+ content: "\e067"; |
|
| 2990 |
+} |
|
| 2991 |
+ |
|
| 2992 |
+.glyphicon-move:before {
|
|
| 2993 |
+ content: "\e068"; |
|
| 2994 |
+} |
|
| 2995 |
+ |
|
| 2996 |
+.glyphicon-step-backward:before {
|
|
| 2997 |
+ content: "\e069"; |
|
| 2998 |
+} |
|
| 2999 |
+ |
|
| 3000 |
+.glyphicon-fast-backward:before {
|
|
| 3001 |
+ content: "\e070"; |
|
| 3002 |
+} |
|
| 3003 |
+ |
|
| 3004 |
+.glyphicon-backward:before {
|
|
| 3005 |
+ content: "\e071"; |
|
| 3006 |
+} |
|
| 3007 |
+ |
|
| 3008 |
+.glyphicon-play:before {
|
|
| 3009 |
+ content: "\e072"; |
|
| 3010 |
+} |
|
| 3011 |
+ |
|
| 3012 |
+.glyphicon-pause:before {
|
|
| 3013 |
+ content: "\e073"; |
|
| 3014 |
+} |
|
| 3015 |
+ |
|
| 3016 |
+.glyphicon-stop:before {
|
|
| 3017 |
+ content: "\e074"; |
|
| 3018 |
+} |
|
| 3019 |
+ |
|
| 3020 |
+.glyphicon-forward:before {
|
|
| 3021 |
+ content: "\e075"; |
|
| 3022 |
+} |
|
| 3023 |
+ |
|
| 3024 |
+.glyphicon-fast-forward:before {
|
|
| 3025 |
+ content: "\e076"; |
|
| 3026 |
+} |
|
| 3027 |
+ |
|
| 3028 |
+.glyphicon-step-forward:before {
|
|
| 3029 |
+ content: "\e077"; |
|
| 3030 |
+} |
|
| 3031 |
+ |
|
| 3032 |
+.glyphicon-eject:before {
|
|
| 3033 |
+ content: "\e078"; |
|
| 3034 |
+} |
|
| 3035 |
+ |
|
| 3036 |
+.glyphicon-chevron-left:before {
|
|
| 3037 |
+ content: "\e079"; |
|
| 3038 |
+} |
|
| 3039 |
+ |
|
| 3040 |
+.glyphicon-chevron-right:before {
|
|
| 3041 |
+ content: "\e080"; |
|
| 3042 |
+} |
|
| 3043 |
+ |
|
| 3044 |
+.glyphicon-plus-sign:before {
|
|
| 3045 |
+ content: "\e081"; |
|
| 3046 |
+} |
|
| 3047 |
+ |
|
| 3048 |
+.glyphicon-minus-sign:before {
|
|
| 3049 |
+ content: "\e082"; |
|
| 3050 |
+} |
|
| 3051 |
+ |
|
| 3052 |
+.glyphicon-remove-sign:before {
|
|
| 3053 |
+ content: "\e083"; |
|
| 3054 |
+} |
|
| 3055 |
+ |
|
| 3056 |
+.glyphicon-ok-sign:before {
|
|
| 3057 |
+ content: "\e084"; |
|
| 3058 |
+} |
|
| 3059 |
+ |
|
| 3060 |
+.glyphicon-question-sign:before {
|
|
| 3061 |
+ content: "\e085"; |
|
| 3062 |
+} |
|
| 3063 |
+ |
|
| 3064 |
+.glyphicon-info-sign:before {
|
|
| 3065 |
+ content: "\e086"; |
|
| 3066 |
+} |
|
| 3067 |
+ |
|
| 3068 |
+.glyphicon-screenshot:before {
|
|
| 3069 |
+ content: "\e087"; |
|
| 3070 |
+} |
|
| 3071 |
+ |
|
| 3072 |
+.glyphicon-remove-circle:before {
|
|
| 3073 |
+ content: "\e088"; |
|
| 3074 |
+} |
|
| 3075 |
+ |
|
| 3076 |
+.glyphicon-ok-circle:before {
|
|
| 3077 |
+ content: "\e089"; |
|
| 3078 |
+} |
|
| 3079 |
+ |
|
| 3080 |
+.glyphicon-ban-circle:before {
|
|
| 3081 |
+ content: "\e090"; |
|
| 3082 |
+} |
|
| 3083 |
+ |
|
| 3084 |
+.glyphicon-arrow-left:before {
|
|
| 3085 |
+ content: "\e091"; |
|
| 3086 |
+} |
|
| 3087 |
+ |
|
| 3088 |
+.glyphicon-arrow-right:before {
|
|
| 3089 |
+ content: "\e092"; |
|
| 3090 |
+} |
|
| 3091 |
+ |
|
| 3092 |
+.glyphicon-arrow-up:before {
|
|
| 3093 |
+ content: "\e093"; |
|
| 3094 |
+} |
|
| 3095 |
+ |
|
| 3096 |
+.glyphicon-arrow-down:before {
|
|
| 3097 |
+ content: "\e094"; |
|
| 3098 |
+} |
|
| 3099 |
+ |
|
| 3100 |
+.glyphicon-share-alt:before {
|
|
| 3101 |
+ content: "\e095"; |
|
| 3102 |
+} |
|
| 3103 |
+ |
|
| 3104 |
+.glyphicon-resize-full:before {
|
|
| 3105 |
+ content: "\e096"; |
|
| 3106 |
+} |
|
| 3107 |
+ |
|
| 3108 |
+.glyphicon-resize-small:before {
|
|
| 3109 |
+ content: "\e097"; |
|
| 3110 |
+} |
|
| 3111 |
+ |
|
| 3112 |
+.glyphicon-exclamation-sign:before {
|
|
| 3113 |
+ content: "\e101"; |
|
| 3114 |
+} |
|
| 3115 |
+ |
|
| 3116 |
+.glyphicon-gift:before {
|
|
| 3117 |
+ content: "\e102"; |
|
| 3118 |
+} |
|
| 3119 |
+ |
|
| 3120 |
+.glyphicon-leaf:before {
|
|
| 3121 |
+ content: "\e103"; |
|
| 3122 |
+} |
|
| 3123 |
+ |
|
| 3124 |
+.glyphicon-fire:before {
|
|
| 3125 |
+ content: "\e104"; |
|
| 3126 |
+} |
|
| 3127 |
+ |
|
| 3128 |
+.glyphicon-eye-open:before {
|
|
| 3129 |
+ content: "\e105"; |
|
| 3130 |
+} |
|
| 3131 |
+ |
|
| 3132 |
+.glyphicon-eye-close:before {
|
|
| 3133 |
+ content: "\e106"; |
|
| 3134 |
+} |
|
| 3135 |
+ |
|
| 3136 |
+.glyphicon-warning-sign:before {
|
|
| 3137 |
+ content: "\e107"; |
|
| 3138 |
+} |
|
| 3139 |
+ |
|
| 3140 |
+.glyphicon-plane:before {
|
|
| 3141 |
+ content: "\e108"; |
|
| 3142 |
+} |
|
| 3143 |
+ |
|
| 3144 |
+.glyphicon-calendar:before {
|
|
| 3145 |
+ content: "\e109"; |
|
| 3146 |
+} |
|
| 3147 |
+ |
|
| 3148 |
+.glyphicon-random:before {
|
|
| 3149 |
+ content: "\e110"; |
|
| 3150 |
+} |
|
| 3151 |
+ |
|
| 3152 |
+.glyphicon-comment:before {
|
|
| 3153 |
+ content: "\e111"; |
|
| 3154 |
+} |
|
| 3155 |
+ |
|
| 3156 |
+.glyphicon-magnet:before {
|
|
| 3157 |
+ content: "\e112"; |
|
| 3158 |
+} |
|
| 3159 |
+ |
|
| 3160 |
+.glyphicon-chevron-up:before {
|
|
| 3161 |
+ content: "\e113"; |
|
| 3162 |
+} |
|
| 3163 |
+ |
|
| 3164 |
+.glyphicon-chevron-down:before {
|
|
| 3165 |
+ content: "\e114"; |
|
| 3166 |
+} |
|
| 3167 |
+ |
|
| 3168 |
+.glyphicon-retweet:before {
|
|
| 3169 |
+ content: "\e115"; |
|
| 3170 |
+} |
|
| 3171 |
+ |
|
| 3172 |
+.glyphicon-shopping-cart:before {
|
|
| 3173 |
+ content: "\e116"; |
|
| 3174 |
+} |
|
| 3175 |
+ |
|
| 3176 |
+.glyphicon-folder-close:before {
|
|
| 3177 |
+ content: "\e117"; |
|
| 3178 |
+} |
|
| 3179 |
+ |
|
| 3180 |
+.glyphicon-folder-open:before {
|
|
| 3181 |
+ content: "\e118"; |
|
| 3182 |
+} |
|
| 3183 |
+ |
|
| 3184 |
+.glyphicon-resize-vertical:before {
|
|
| 3185 |
+ content: "\e119"; |
|
| 3186 |
+} |
|
| 3187 |
+ |
|
| 3188 |
+.glyphicon-resize-horizontal:before {
|
|
| 3189 |
+ content: "\e120"; |
|
| 3190 |
+} |
|
| 3191 |
+ |
|
| 3192 |
+.glyphicon-hdd:before {
|
|
| 3193 |
+ content: "\e121"; |
|
| 3194 |
+} |
|
| 3195 |
+ |
|
| 3196 |
+.glyphicon-bullhorn:before {
|
|
| 3197 |
+ content: "\e122"; |
|
| 3198 |
+} |
|
| 3199 |
+ |
|
| 3200 |
+.glyphicon-bell:before {
|
|
| 3201 |
+ content: "\e123"; |
|
| 3202 |
+} |
|
| 3203 |
+ |
|
| 3204 |
+.glyphicon-certificate:before {
|
|
| 3205 |
+ content: "\e124"; |
|
| 3206 |
+} |
|
| 3207 |
+ |
|
| 3208 |
+.glyphicon-thumbs-up:before {
|
|
| 3209 |
+ content: "\e125"; |
|
| 3210 |
+} |
|
| 3211 |
+ |
|
| 3212 |
+.glyphicon-thumbs-down:before {
|
|
| 3213 |
+ content: "\e126"; |
|
| 3214 |
+} |
|
| 3215 |
+ |
|
| 3216 |
+.glyphicon-hand-right:before {
|
|
| 3217 |
+ content: "\e127"; |
|
| 3218 |
+} |
|
| 3219 |
+ |
|
| 3220 |
+.glyphicon-hand-left:before {
|
|
| 3221 |
+ content: "\e128"; |
|
| 3222 |
+} |
|
| 3223 |
+ |
|
| 3224 |
+.glyphicon-hand-up:before {
|
|
| 3225 |
+ content: "\e129"; |
|
| 3226 |
+} |
|
| 3227 |
+ |
|
| 3228 |
+.glyphicon-hand-down:before {
|
|
| 3229 |
+ content: "\e130"; |
|
| 3230 |
+} |
|
| 3231 |
+ |
|
| 3232 |
+.glyphicon-circle-arrow-right:before {
|
|
| 3233 |
+ content: "\e131"; |
|
| 3234 |
+} |
|
| 3235 |
+ |
|
| 3236 |
+.glyphicon-circle-arrow-left:before {
|
|
| 3237 |
+ content: "\e132"; |
|
| 3238 |
+} |
|
| 3239 |
+ |
|
| 3240 |
+.glyphicon-circle-arrow-up:before {
|
|
| 3241 |
+ content: "\e133"; |
|
| 3242 |
+} |
|
| 3243 |
+ |
|
| 3244 |
+.glyphicon-circle-arrow-down:before {
|
|
| 3245 |
+ content: "\e134"; |
|
| 3246 |
+} |
|
| 3247 |
+ |
|
| 3248 |
+.glyphicon-globe:before {
|
|
| 3249 |
+ content: "\e135"; |
|
| 3250 |
+} |
|
| 3251 |
+ |
|
| 3252 |
+.glyphicon-wrench:before {
|
|
| 3253 |
+ content: "\e136"; |
|
| 3254 |
+} |
|
| 3255 |
+ |
|
| 3256 |
+.glyphicon-tasks:before {
|
|
| 3257 |
+ content: "\e137"; |
|
| 3258 |
+} |
|
| 3259 |
+ |
|
| 3260 |
+.glyphicon-filter:before {
|
|
| 3261 |
+ content: "\e138"; |
|
| 3262 |
+} |
|
| 3263 |
+ |
|
| 3264 |
+.glyphicon-briefcase:before {
|
|
| 3265 |
+ content: "\e139"; |
|
| 3266 |
+} |
|
| 3267 |
+ |
|
| 3268 |
+.glyphicon-fullscreen:before {
|
|
| 3269 |
+ content: "\e140"; |
|
| 3270 |
+} |
|
| 3271 |
+ |
|
| 3272 |
+.glyphicon-dashboard:before {
|
|
| 3273 |
+ content: "\e141"; |
|
| 3274 |
+} |
|
| 3275 |
+ |
|
| 3276 |
+.glyphicon-paperclip:before {
|
|
| 3277 |
+ content: "\e142"; |
|
| 3278 |
+} |
|
| 3279 |
+ |
|
| 3280 |
+.glyphicon-heart-empty:before {
|
|
| 3281 |
+ content: "\e143"; |
|
| 3282 |
+} |
|
| 3283 |
+ |
|
| 3284 |
+.glyphicon-link:before {
|
|
| 3285 |
+ content: "\e144"; |
|
| 3286 |
+} |
|
| 3287 |
+ |
|
| 3288 |
+.glyphicon-phone:before {
|
|
| 3289 |
+ content: "\e145"; |
|
| 3290 |
+} |
|
| 3291 |
+ |
|
| 3292 |
+.glyphicon-pushpin:before {
|
|
| 3293 |
+ content: "\e146"; |
|
| 3294 |
+} |
|
| 3295 |
+ |
|
| 3296 |
+.glyphicon-usd:before {
|
|
| 3297 |
+ content: "\e148"; |
|
| 3298 |
+} |
|
| 3299 |
+ |
|
| 3300 |
+.glyphicon-gbp:before {
|
|
| 3301 |
+ content: "\e149"; |
|
| 3302 |
+} |
|
| 3303 |
+ |
|
| 3304 |
+.glyphicon-sort:before {
|
|
| 3305 |
+ content: "\e150"; |
|
| 3306 |
+} |
|
| 3307 |
+ |
|
| 3308 |
+.glyphicon-sort-by-alphabet:before {
|
|
| 3309 |
+ content: "\e151"; |
|
| 3310 |
+} |
|
| 3311 |
+ |
|
| 3312 |
+.glyphicon-sort-by-alphabet-alt:before {
|
|
| 3313 |
+ content: "\e152"; |
|
| 3314 |
+} |
|
| 3315 |
+ |
|
| 3316 |
+.glyphicon-sort-by-order:before {
|
|
| 3317 |
+ content: "\e153"; |
|
| 3318 |
+} |
|
| 3319 |
+ |
|
| 3320 |
+.glyphicon-sort-by-order-alt:before {
|
|
| 3321 |
+ content: "\e154"; |
|
| 3322 |
+} |
|
| 3323 |
+ |
|
| 3324 |
+.glyphicon-sort-by-attributes:before {
|
|
| 3325 |
+ content: "\e155"; |
|
| 3326 |
+} |
|
| 3327 |
+ |
|
| 3328 |
+.glyphicon-sort-by-attributes-alt:before {
|
|
| 3329 |
+ content: "\e156"; |
|
| 3330 |
+} |
|
| 3331 |
+ |
|
| 3332 |
+.glyphicon-unchecked:before {
|
|
| 3333 |
+ content: "\e157"; |
|
| 3334 |
+} |
|
| 3335 |
+ |
|
| 3336 |
+.glyphicon-expand:before {
|
|
| 3337 |
+ content: "\e158"; |
|
| 3338 |
+} |
|
| 3339 |
+ |
|
| 3340 |
+.glyphicon-collapse-down:before {
|
|
| 3341 |
+ content: "\e159"; |
|
| 3342 |
+} |
|
| 3343 |
+ |
|
| 3344 |
+.glyphicon-collapse-up:before {
|
|
| 3345 |
+ content: "\e160"; |
|
| 3346 |
+} |
|
| 3347 |
+ |
|
| 3348 |
+.glyphicon-log-in:before {
|
|
| 3349 |
+ content: "\e161"; |
|
| 3350 |
+} |
|
| 3351 |
+ |
|
| 3352 |
+.glyphicon-flash:before {
|
|
| 3353 |
+ content: "\e162"; |
|
| 3354 |
+} |
|
| 3355 |
+ |
|
| 3356 |
+.glyphicon-log-out:before {
|
|
| 3357 |
+ content: "\e163"; |
|
| 3358 |
+} |
|
| 3359 |
+ |
|
| 3360 |
+.glyphicon-new-window:before {
|
|
| 3361 |
+ content: "\e164"; |
|
| 3362 |
+} |
|
| 3363 |
+ |
|
| 3364 |
+.glyphicon-record:before {
|
|
| 3365 |
+ content: "\e165"; |
|
| 3366 |
+} |
|
| 3367 |
+ |
|
| 3368 |
+.glyphicon-save:before {
|
|
| 3369 |
+ content: "\e166"; |
|
| 3370 |
+} |
|
| 3371 |
+ |
|
| 3372 |
+.glyphicon-open:before {
|
|
| 3373 |
+ content: "\e167"; |
|
| 3374 |
+} |
|
| 3375 |
+ |
|
| 3376 |
+.glyphicon-saved:before {
|
|
| 3377 |
+ content: "\e168"; |
|
| 3378 |
+} |
|
| 3379 |
+ |
|
| 3380 |
+.glyphicon-import:before {
|
|
| 3381 |
+ content: "\e169"; |
|
| 3382 |
+} |
|
| 3383 |
+ |
|
| 3384 |
+.glyphicon-export:before {
|
|
| 3385 |
+ content: "\e170"; |
|
| 3386 |
+} |
|
| 3387 |
+ |
|
| 3388 |
+.glyphicon-send:before {
|
|
| 3389 |
+ content: "\e171"; |
|
| 3390 |
+} |
|
| 3391 |
+ |
|
| 3392 |
+.glyphicon-floppy-disk:before {
|
|
| 3393 |
+ content: "\e172"; |
|
| 3394 |
+} |
|
| 3395 |
+ |
|
| 3396 |
+.glyphicon-floppy-saved:before {
|
|
| 3397 |
+ content: "\e173"; |
|
| 3398 |
+} |
|
| 3399 |
+ |
|
| 3400 |
+.glyphicon-floppy-remove:before {
|
|
| 3401 |
+ content: "\e174"; |
|
| 3402 |
+} |
|
| 3403 |
+ |
|
| 3404 |
+.glyphicon-floppy-save:before {
|
|
| 3405 |
+ content: "\e175"; |
|
| 3406 |
+} |
|
| 3407 |
+ |
|
| 3408 |
+.glyphicon-floppy-open:before {
|
|
| 3409 |
+ content: "\e176"; |
|
| 3410 |
+} |
|
| 3411 |
+ |
|
| 3412 |
+.glyphicon-credit-card:before {
|
|
| 3413 |
+ content: "\e177"; |
|
| 3414 |
+} |
|
| 3415 |
+ |
|
| 3416 |
+.glyphicon-transfer:before {
|
|
| 3417 |
+ content: "\e178"; |
|
| 3418 |
+} |
|
| 3419 |
+ |
|
| 3420 |
+.glyphicon-cutlery:before {
|
|
| 3421 |
+ content: "\e179"; |
|
| 3422 |
+} |
|
| 3423 |
+ |
|
| 3424 |
+.glyphicon-header:before {
|
|
| 3425 |
+ content: "\e180"; |
|
| 3426 |
+} |
|
| 3427 |
+ |
|
| 3428 |
+.glyphicon-compressed:before {
|
|
| 3429 |
+ content: "\e181"; |
|
| 3430 |
+} |
|
| 3431 |
+ |
|
| 3432 |
+.glyphicon-earphone:before {
|
|
| 3433 |
+ content: "\e182"; |
|
| 3434 |
+} |
|
| 3435 |
+ |
|
| 3436 |
+.glyphicon-phone-alt:before {
|
|
| 3437 |
+ content: "\e183"; |
|
| 3438 |
+} |
|
| 3439 |
+ |
|
| 3440 |
+.glyphicon-tower:before {
|
|
| 3441 |
+ content: "\e184"; |
|
| 3442 |
+} |
|
| 3443 |
+ |
|
| 3444 |
+.glyphicon-stats:before {
|
|
| 3445 |
+ content: "\e185"; |
|
| 3446 |
+} |
|
| 3447 |
+ |
|
| 3448 |
+.glyphicon-sd-video:before {
|
|
| 3449 |
+ content: "\e186"; |
|
| 3450 |
+} |
|
| 3451 |
+ |
|
| 3452 |
+.glyphicon-hd-video:before {
|
|
| 3453 |
+ content: "\e187"; |
|
| 3454 |
+} |
|
| 3455 |
+ |
|
| 3456 |
+.glyphicon-subtitles:before {
|
|
| 3457 |
+ content: "\e188"; |
|
| 3458 |
+} |
|
| 3459 |
+ |
|
| 3460 |
+.glyphicon-sound-stereo:before {
|
|
| 3461 |
+ content: "\e189"; |
|
| 3462 |
+} |
|
| 3463 |
+ |
|
| 3464 |
+.glyphicon-sound-dolby:before {
|
|
| 3465 |
+ content: "\e190"; |
|
| 3466 |
+} |
|
| 3467 |
+ |
|
| 3468 |
+.glyphicon-sound-5-1:before {
|
|
| 3469 |
+ content: "\e191"; |
|
| 3470 |
+} |
|
| 3471 |
+ |
|
| 3472 |
+.glyphicon-sound-6-1:before {
|
|
| 3473 |
+ content: "\e192"; |
|
| 3474 |
+} |
|
| 3475 |
+ |
|
| 3476 |
+.glyphicon-sound-7-1:before {
|
|
| 3477 |
+ content: "\e193"; |
|
| 3478 |
+} |
|
| 3479 |
+ |
|
| 3480 |
+.glyphicon-copyright-mark:before {
|
|
| 3481 |
+ content: "\e194"; |
|
| 3482 |
+} |
|
| 3483 |
+ |
|
| 3484 |
+.glyphicon-registration-mark:before {
|
|
| 3485 |
+ content: "\e195"; |
|
| 3486 |
+} |
|
| 3487 |
+ |
|
| 3488 |
+.glyphicon-cloud-download:before {
|
|
| 3489 |
+ content: "\e197"; |
|
| 3490 |
+} |
|
| 3491 |
+ |
|
| 3492 |
+.glyphicon-cloud-upload:before {
|
|
| 3493 |
+ content: "\e198"; |
|
| 3494 |
+} |
|
| 3495 |
+ |
|
| 3496 |
+.glyphicon-tree-conifer:before {
|
|
| 3497 |
+ content: "\e199"; |
|
| 3498 |
+} |
|
| 3499 |
+ |
|
| 3500 |
+.glyphicon-tree-deciduous:before {
|
|
| 3501 |
+ content: "\e200"; |
|
| 3502 |
+} |
|
| 3503 |
+ |
|
| 3504 |
+.caret {
|
|
| 3505 |
+ display: inline-block; |
|
| 3506 |
+ width: 0; |
|
| 3507 |
+ height: 0; |
|
| 3508 |
+ margin-left: 2px; |
|
| 3509 |
+ vertical-align: middle; |
|
| 3510 |
+ border-top: 4px solid; |
|
| 3511 |
+ border-right: 4px solid transparent; |
|
| 3512 |
+ border-left: 4px solid transparent; |
|
| 3513 |
+} |
|
| 3514 |
+ |
|
| 3515 |
+.dropdown {
|
|
| 3516 |
+ position: relative; |
|
| 3517 |
+} |
|
| 3518 |
+ |
|
| 3519 |
+.dropdown-toggle:focus {
|
|
| 3520 |
+ outline: 0; |
|
| 3521 |
+} |
|
| 3522 |
+ |
|
| 3523 |
+.dropdown-menu {
|
|
| 3524 |
+ position: absolute; |
|
| 3525 |
+ top: 100%; |
|
| 3526 |
+ left: 0; |
|
| 3527 |
+ z-index: 1000; |
|
| 3528 |
+ display: none; |
|
| 3529 |
+ float: left; |
|
| 3530 |
+ min-width: 160px; |
|
| 3531 |
+ padding: 5px 0; |
|
| 3532 |
+ margin: 2px 0 0; |
|
| 3533 |
+ font-size: 14px; |
|
| 3534 |
+ list-style: none; |
|
| 3535 |
+ background-color: #ffffff; |
|
| 3536 |
+ border: 1px solid #cccccc; |
|
| 3537 |
+ border: 1px solid rgba(0, 0, 0, 0.15); |
|
| 3538 |
+ border-radius: 4px; |
|
| 3539 |
+ -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); |
|
| 3540 |
+ box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); |
|
| 3541 |
+ background-clip: padding-box; |
|
| 3542 |
+} |
|
| 3543 |
+ |
|
| 3544 |
+.dropdown-menu.pull-right {
|
|
| 3545 |
+ right: 0; |
|
| 3546 |
+ left: auto; |
|
| 3547 |
+} |
|
| 3548 |
+ |
|
| 3549 |
+.dropdown-menu .divider {
|
|
| 3550 |
+ height: 1px; |
|
| 3551 |
+ margin: 9px 0; |
|
| 3552 |
+ overflow: hidden; |
|
| 3553 |
+ background-color: #e5e5e5; |
|
| 3554 |
+} |
|
| 3555 |
+ |
|
| 3556 |
+.dropdown-menu > li > a {
|
|
| 3557 |
+ display: block; |
|
| 3558 |
+ padding: 3px 20px; |
|
| 3559 |
+ clear: both; |
|
| 3560 |
+ font-weight: normal; |
|
| 3561 |
+ line-height: 1.428571429; |
|
| 3562 |
+ color: #333333; |
|
| 3563 |
+ white-space: nowrap; |
|
| 3564 |
+} |
|
| 3565 |
+ |
|
| 3566 |
+.dropdown-menu > li > a:hover, |
|
| 3567 |
+.dropdown-menu > li > a:focus {
|
|
| 3568 |
+ color: #262626; |
|
| 3569 |
+ text-decoration: none; |
|
| 3570 |
+ background-color: #f5f5f5; |
|
| 3571 |
+} |
|
| 3572 |
+ |
|
| 3573 |
+.dropdown-menu > .active > a, |
|
| 3574 |
+.dropdown-menu > .active > a:hover, |
|
| 3575 |
+.dropdown-menu > .active > a:focus {
|
|
| 3576 |
+ color: #ffffff; |
|
| 3577 |
+ text-decoration: none; |
|
| 3578 |
+ background-color: #428bca; |
|
| 3579 |
+ outline: 0; |
|
| 3580 |
+} |
|
| 3581 |
+ |
|
| 3582 |
+.dropdown-menu > .disabled > a, |
|
| 3583 |
+.dropdown-menu > .disabled > a:hover, |
|
| 3584 |
+.dropdown-menu > .disabled > a:focus {
|
|
| 3585 |
+ color: #999999; |
|
| 3586 |
+} |
|
| 3587 |
+ |
|
| 3588 |
+.dropdown-menu > .disabled > a:hover, |
|
| 3589 |
+.dropdown-menu > .disabled > a:focus {
|
|
| 3590 |
+ text-decoration: none; |
|
| 3591 |
+ cursor: not-allowed; |
|
| 3592 |
+ background-color: transparent; |
|
| 3593 |
+ background-image: none; |
|
| 3594 |
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); |
|
| 3595 |
+} |
|
| 3596 |
+ |
|
| 3597 |
+.open > .dropdown-menu {
|
|
| 3598 |
+ display: block; |
|
| 3599 |
+} |
|
| 3600 |
+ |
|
| 3601 |
+.open > a {
|
|
| 3602 |
+ outline: 0; |
|
| 3603 |
+} |
|
| 3604 |
+ |
|
| 3605 |
+.dropdown-header {
|
|
| 3606 |
+ display: block; |
|
| 3607 |
+ padding: 3px 20px; |
|
| 3608 |
+ font-size: 12px; |
|
| 3609 |
+ line-height: 1.428571429; |
|
| 3610 |
+ color: #999999; |
|
| 3611 |
+} |
|
| 3612 |
+ |
|
| 3613 |
+.dropdown-backdrop {
|
|
| 3614 |
+ position: fixed; |
|
| 3615 |
+ top: 0; |
|
| 3616 |
+ right: 0; |
|
| 3617 |
+ bottom: 0; |
|
| 3618 |
+ left: 0; |
|
| 3619 |
+ z-index: 990; |
|
| 3620 |
+} |
|
| 3621 |
+ |
|
| 3622 |
+.pull-right > .dropdown-menu {
|
|
| 3623 |
+ right: 0; |
|
| 3624 |
+ left: auto; |
|
| 3625 |
+} |
|
| 3626 |
+ |
|
| 3627 |
+.dropup .caret, |
|
| 3628 |
+.navbar-fixed-bottom .dropdown .caret {
|
|
| 3629 |
+ border-top: 0; |
|
| 3630 |
+ border-bottom: 4px solid; |
|
| 3631 |
+ content: ""; |
|
| 3632 |
+} |
|
| 3633 |
+ |
|
| 3634 |
+.dropup .dropdown-menu, |
|
| 3635 |
+.navbar-fixed-bottom .dropdown .dropdown-menu {
|
|
| 3636 |
+ top: auto; |
|
| 3637 |
+ bottom: 100%; |
|
| 3638 |
+ margin-bottom: 1px; |
|
| 3639 |
+} |
|
| 3640 |
+ |
|
| 3641 |
+@media (min-width: 768px) {
|
|
| 3642 |
+ .navbar-right .dropdown-menu {
|
|
| 3643 |
+ right: 0; |
|
| 3644 |
+ left: auto; |
|
| 3645 |
+ } |
|
| 3646 |
+} |
|
| 3647 |
+ |
|
| 3648 |
+.btn-group, |
|
| 3649 |
+.btn-group-vertical {
|
|
| 3650 |
+ position: relative; |
|
| 3651 |
+ display: inline-block; |
|
| 3652 |
+ vertical-align: middle; |
|
| 3653 |
+} |
|
| 3654 |
+ |
|
| 3655 |
+.btn-group > .btn, |
|
| 3656 |
+.btn-group-vertical > .btn {
|
|
| 3657 |
+ position: relative; |
|
| 3658 |
+ float: left; |
|
| 3659 |
+} |
|
| 3660 |
+ |
|
| 3661 |
+.btn-group > .btn:hover, |
|
| 3662 |
+.btn-group-vertical > .btn:hover, |
|
| 3663 |
+.btn-group > .btn:focus, |
|
| 3664 |
+.btn-group-vertical > .btn:focus, |
|
| 3665 |
+.btn-group > .btn:active, |
|
| 3666 |
+.btn-group-vertical > .btn:active, |
|
| 3667 |
+.btn-group > .btn.active, |
|
| 3668 |
+.btn-group-vertical > .btn.active {
|
|
| 3669 |
+ z-index: 2; |
|
| 3670 |
+} |
|
| 3671 |
+ |
|
| 3672 |
+.btn-group > .btn:focus, |
|
| 3673 |
+.btn-group-vertical > .btn:focus {
|
|
| 3674 |
+ outline: none; |
|
| 3675 |
+} |
|
| 3676 |
+ |
|
| 3677 |
+.btn-group .btn + .btn, |
|
| 3678 |
+.btn-group .btn + .btn-group, |
|
| 3679 |
+.btn-group .btn-group + .btn, |
|
| 3680 |
+.btn-group .btn-group + .btn-group {
|
|
| 3681 |
+ margin-left: -1px; |
|
| 3682 |
+} |
|
| 3683 |
+ |
|
| 3684 |
+.btn-toolbar:before, |
|
| 3685 |
+.btn-toolbar:after {
|
|
| 3686 |
+ display: table; |
|
| 3687 |
+ content: " "; |
|
| 3688 |
+} |
|
| 3689 |
+ |
|
| 3690 |
+.btn-toolbar:after {
|
|
| 3691 |
+ clear: both; |
|
| 3692 |
+} |
|
| 3693 |
+ |
|
| 3694 |
+.btn-toolbar:before, |
|
| 3695 |
+.btn-toolbar:after {
|
|
| 3696 |
+ display: table; |
|
| 3697 |
+ content: " "; |
|
| 3698 |
+} |
|
| 3699 |
+ |
|
| 3700 |
+.btn-toolbar:after {
|
|
| 3701 |
+ clear: both; |
|
| 3702 |
+} |
|
| 3703 |
+ |
|
| 3704 |
+.btn-toolbar .btn-group {
|
|
| 3705 |
+ float: left; |
|
| 3706 |
+} |
|
| 3707 |
+ |
|
| 3708 |
+.btn-toolbar > .btn + .btn, |
|
| 3709 |
+.btn-toolbar > .btn-group + .btn, |
|
| 3710 |
+.btn-toolbar > .btn + .btn-group, |
|
| 3711 |
+.btn-toolbar > .btn-group + .btn-group {
|
|
| 3712 |
+ margin-left: 5px; |
|
| 3713 |
+} |
|
| 3714 |
+ |
|
| 3715 |
+.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
|
|
| 3716 |
+ border-radius: 0; |
|
| 3717 |
+} |
|
| 3718 |
+ |
|
| 3719 |
+.btn-group > .btn:first-child {
|
|
| 3720 |
+ margin-left: 0; |
|
| 3721 |
+} |
|
| 3722 |
+ |
|
| 3723 |
+.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
|
|
| 3724 |
+ border-top-right-radius: 0; |
|
| 3725 |
+ border-bottom-right-radius: 0; |
|
| 3726 |
+} |
|
| 3727 |
+ |
|
| 3728 |
+.btn-group > .btn:last-child:not(:first-child), |
|
| 3729 |
+.btn-group > .dropdown-toggle:not(:first-child) {
|
|
| 3730 |
+ border-bottom-left-radius: 0; |
|
| 3731 |
+ border-top-left-radius: 0; |
|
| 3732 |
+} |
|
| 3733 |
+ |
|
| 3734 |
+.btn-group > .btn-group {
|
|
| 3735 |
+ float: left; |
|
| 3736 |
+} |
|
| 3737 |
+ |
|
| 3738 |
+.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
|
|
| 3739 |
+ border-radius: 0; |
|
| 3740 |
+} |
|
| 3741 |
+ |
|
| 3742 |
+.btn-group > .btn-group:first-child > .btn:last-child, |
|
| 3743 |
+.btn-group > .btn-group:first-child > .dropdown-toggle {
|
|
| 3744 |
+ border-top-right-radius: 0; |
|
| 3745 |
+ border-bottom-right-radius: 0; |
|
| 3746 |
+} |
|
| 3747 |
+ |
|
| 3748 |
+.btn-group > .btn-group:last-child > .btn:first-child {
|
|
| 3749 |
+ border-bottom-left-radius: 0; |
|
| 3750 |
+ border-top-left-radius: 0; |
|
| 3751 |
+} |
|
| 3752 |
+ |
|
| 3753 |
+.btn-group .dropdown-toggle:active, |
|
| 3754 |
+.btn-group.open .dropdown-toggle {
|
|
| 3755 |
+ outline: 0; |
|
| 3756 |
+} |
|
| 3757 |
+ |
|
| 3758 |
+.btn-group-xs > .btn {
|
|
| 3759 |
+ padding: 1px 5px; |
|
| 3760 |
+ font-size: 12px; |
|
| 3761 |
+ line-height: 1.5; |
|
| 3762 |
+ border-radius: 3px; |
|
| 3763 |
+} |
|
| 3764 |
+ |
|
| 3765 |
+.btn-group-sm > .btn {
|
|
| 3766 |
+ padding: 5px 10px; |
|
| 3767 |
+ font-size: 12px; |
|
| 3768 |
+ line-height: 1.5; |
|
| 3769 |
+ border-radius: 3px; |
|
| 3770 |
+} |
|
| 3771 |
+ |
|
| 3772 |
+.btn-group-lg > .btn {
|
|
| 3773 |
+ padding: 10px 16px; |
|
| 3774 |
+ font-size: 18px; |
|
| 3775 |
+ line-height: 1.33; |
|
| 3776 |
+ border-radius: 6px; |
|
| 3777 |
+} |
|
| 3778 |
+ |
|
| 3779 |
+.btn-group > .btn + .dropdown-toggle {
|
|
| 3780 |
+ padding-right: 8px; |
|
| 3781 |
+ padding-left: 8px; |
|
| 3782 |
+} |
|
| 3783 |
+ |
|
| 3784 |
+.btn-group > .btn-lg + .dropdown-toggle {
|
|
| 3785 |
+ padding-right: 12px; |
|
| 3786 |
+ padding-left: 12px; |
|
| 3787 |
+} |
|
| 3788 |
+ |
|
| 3789 |
+.btn-group.open .dropdown-toggle {
|
|
| 3790 |
+ -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); |
|
| 3791 |
+ box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); |
|
| 3792 |
+} |
|
| 3793 |
+ |
|
| 3794 |
+.btn-group.open .dropdown-toggle.btn-link {
|
|
| 3795 |
+ -webkit-box-shadow: none; |
|
| 3796 |
+ box-shadow: none; |
|
| 3797 |
+} |
|
| 3798 |
+ |
|
| 3799 |
+.btn .caret {
|
|
| 3800 |
+ margin-left: 0; |
|
| 3801 |
+} |
|
| 3802 |
+ |
|
| 3803 |
+.btn-lg .caret {
|
|
| 3804 |
+ border-width: 5px 5px 0; |
|
| 3805 |
+ border-bottom-width: 0; |
|
| 3806 |
+} |
|
| 3807 |
+ |
|
| 3808 |
+.dropup .btn-lg .caret {
|
|
| 3809 |
+ border-width: 0 5px 5px; |
|
| 3810 |
+} |
|
| 3811 |
+ |
|
| 3812 |
+.btn-group-vertical > .btn, |
|
| 3813 |
+.btn-group-vertical > .btn-group, |
|
| 3814 |
+.btn-group-vertical > .btn-group > .btn {
|
|
| 3815 |
+ display: block; |
|
| 3816 |
+ float: none; |
|
| 3817 |
+ width: 100%; |
|
| 3818 |
+ max-width: 100%; |
|
| 3819 |
+} |
|
| 3820 |
+ |
|
| 3821 |
+.btn-group-vertical > .btn-group:before, |
|
| 3822 |
+.btn-group-vertical > .btn-group:after {
|
|
| 3823 |
+ display: table; |
|
| 3824 |
+ content: " "; |
|
| 3825 |
+} |
|
| 3826 |
+ |
|
| 3827 |
+.btn-group-vertical > .btn-group:after {
|
|
| 3828 |
+ clear: both; |
|
| 3829 |
+} |
|
| 3830 |
+ |
|
| 3831 |
+.btn-group-vertical > .btn-group:before, |
|
| 3832 |
+.btn-group-vertical > .btn-group:after {
|
|
| 3833 |
+ display: table; |
|
| 3834 |
+ content: " "; |
|
| 3835 |
+} |
|
| 3836 |
+ |
|
| 3837 |
+.btn-group-vertical > .btn-group:after {
|
|
| 3838 |
+ clear: both; |
|
| 3839 |
+} |
|
| 3840 |
+ |
|
| 3841 |
+.btn-group-vertical > .btn-group > .btn {
|
|
| 3842 |
+ float: none; |
|
| 3843 |
+} |
|
| 3844 |
+ |
|
| 3845 |
+.btn-group-vertical > .btn + .btn, |
|
| 3846 |
+.btn-group-vertical > .btn + .btn-group, |
|
| 3847 |
+.btn-group-vertical > .btn-group + .btn, |
|
| 3848 |
+.btn-group-vertical > .btn-group + .btn-group {
|
|
| 3849 |
+ margin-top: -1px; |
|
| 3850 |
+ margin-left: 0; |
|
| 3851 |
+} |
|
| 3852 |
+ |
|
| 3853 |
+.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
|
|
| 3854 |
+ border-radius: 0; |
|
| 3855 |
+} |
|
| 3856 |
+ |
|
| 3857 |
+.btn-group-vertical > .btn:first-child:not(:last-child) {
|
|
| 3858 |
+ border-top-right-radius: 4px; |
|
| 3859 |
+ border-bottom-right-radius: 0; |
|
| 3860 |
+ border-bottom-left-radius: 0; |
|
| 3861 |
+} |
|
| 3862 |
+ |
|
| 3863 |
+.btn-group-vertical > .btn:last-child:not(:first-child) {
|
|
| 3864 |
+ border-top-right-radius: 0; |
|
| 3865 |
+ border-bottom-left-radius: 4px; |
|
| 3866 |
+ border-top-left-radius: 0; |
|
| 3867 |
+} |
|
| 3868 |
+ |
|
| 3869 |
+.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
|
|
| 3870 |
+ border-radius: 0; |
|
| 3871 |
+} |
|
| 3872 |
+ |
|
| 3873 |
+.btn-group-vertical > .btn-group:first-child > .btn:last-child, |
|
| 3874 |
+.btn-group-vertical > .btn-group:first-child > .dropdown-toggle {
|
|
| 3875 |
+ border-bottom-right-radius: 0; |
|
| 3876 |
+ border-bottom-left-radius: 0; |
|
| 3877 |
+} |
|
| 3878 |
+ |
|
| 3879 |
+.btn-group-vertical > .btn-group:last-child > .btn:first-child {
|
|
| 3880 |
+ border-top-right-radius: 0; |
|
| 3881 |
+ border-top-left-radius: 0; |
|
| 3882 |
+} |
|
| 3883 |
+ |
|
| 3884 |
+.btn-group-justified {
|
|
| 3885 |
+ display: table; |
|
| 3886 |
+ width: 100%; |
|
| 3887 |
+ border-collapse: separate; |
|
| 3888 |
+ table-layout: fixed; |
|
| 3889 |
+} |
|
| 3890 |
+ |
|
| 3891 |
+.btn-group-justified > .btn, |
|
| 3892 |
+.btn-group-justified > .btn-group {
|
|
| 3893 |
+ display: table-cell; |
|
| 3894 |
+ float: none; |
|
| 3895 |
+ width: 1%; |
|
| 3896 |
+} |
|
| 3897 |
+ |
|
| 3898 |
+.btn-group-justified > .btn-group .btn {
|
|
| 3899 |
+ width: 100%; |
|
| 3900 |
+} |
|
| 3901 |
+ |
|
| 3902 |
+[data-toggle="buttons"] > .btn > input[type="radio"], |
|
| 3903 |
+[data-toggle="buttons"] > .btn > input[type="checkbox"] {
|
|
| 3904 |
+ display: none; |
|
| 3905 |
+} |
|
| 3906 |
+ |
|
| 3907 |
+.input-group {
|
|
| 3908 |
+ position: relative; |
|
| 3909 |
+ display: table; |
|
| 3910 |
+ border-collapse: separate; |
|
| 3911 |
+} |
|
| 3912 |
+ |
|
| 3913 |
+.input-group[class*="col-"] {
|
|
| 3914 |
+ float: none; |
|
| 3915 |
+ padding-right: 0; |
|
| 3916 |
+ padding-left: 0; |
|
| 3917 |
+} |
|
| 3918 |
+ |
|
| 3919 |
+.input-group .form-control {
|
|
| 3920 |
+ width: 100%; |
|
| 3921 |
+ margin-bottom: 0; |
|
| 3922 |
+} |
|
| 3923 |
+ |
|
| 3924 |
+.input-group-lg > .form-control, |
|
| 3925 |
+.input-group-lg > .input-group-addon, |
|
| 3926 |
+.input-group-lg > .input-group-btn > .btn {
|
|
| 3927 |
+ height: 46px; |
|
| 3928 |
+ padding: 10px 16px; |
|
| 3929 |
+ font-size: 18px; |
|
| 3930 |
+ line-height: 1.33; |
|
| 3931 |
+ border-radius: 6px; |
|
| 3932 |
+} |
|
| 3933 |
+ |
|
| 3934 |
+select.input-group-lg > .form-control, |
|
| 3935 |
+select.input-group-lg > .input-group-addon, |
|
| 3936 |
+select.input-group-lg > .input-group-btn > .btn {
|
|
| 3937 |
+ height: 46px; |
|
| 3938 |
+ line-height: 46px; |
|
| 3939 |
+} |
|
| 3940 |
+ |
|
| 3941 |
+textarea.input-group-lg > .form-control, |
|
| 3942 |
+textarea.input-group-lg > .input-group-addon, |
|
| 3943 |
+textarea.input-group-lg > .input-group-btn > .btn {
|
|
| 3944 |
+ height: auto; |
|
| 3945 |
+} |
|
| 3946 |
+ |
|
| 3947 |
+.input-group-sm > .form-control, |
|
| 3948 |
+.input-group-sm > .input-group-addon, |
|
| 3949 |
+.input-group-sm > .input-group-btn > .btn {
|
|
| 3950 |
+ height: 30px; |
|
| 3951 |
+ padding: 5px 10px; |
|
| 3952 |
+ font-size: 12px; |
|
| 3953 |
+ line-height: 1.5; |
|
| 3954 |
+ border-radius: 3px; |
|
| 3955 |
+} |
|
| 3956 |
+ |
|
| 3957 |
+select.input-group-sm > .form-control, |
|
| 3958 |
+select.input-group-sm > .input-group-addon, |
|
| 3959 |
+select.input-group-sm > .input-group-btn > .btn {
|
|
| 3960 |
+ height: 30px; |
|
| 3961 |
+ line-height: 30px; |
|
| 3962 |
+} |
|
| 3963 |
+ |
|
| 3964 |
+textarea.input-group-sm > .form-control, |
|
| 3965 |
+textarea.input-group-sm > .input-group-addon, |
|
| 3966 |
+textarea.input-group-sm > .input-group-btn > .btn {
|
|
| 3967 |
+ height: auto; |
|
| 3968 |
+} |
|
| 3969 |
+ |
|
| 3970 |
+.input-group-addon, |
|
| 3971 |
+.input-group-btn, |
|
| 3972 |
+.input-group .form-control {
|
|
| 3973 |
+ display: table-cell; |
|
| 3974 |
+} |
|
| 3975 |
+ |
|
| 3976 |
+.input-group-addon:not(:first-child):not(:last-child), |
|
| 3977 |
+.input-group-btn:not(:first-child):not(:last-child), |
|
| 3978 |
+.input-group .form-control:not(:first-child):not(:last-child) {
|
|
| 3979 |
+ border-radius: 0; |
|
| 3980 |
+} |
|
| 3981 |
+ |
|
| 3982 |
+.input-group-addon, |
|
| 3983 |
+.input-group-btn {
|
|
| 3984 |
+ width: 1%; |
|
| 3985 |
+ white-space: nowrap; |
|
| 3986 |
+ vertical-align: middle; |
|
| 3987 |
+} |
|
| 3988 |
+ |
|
| 3989 |
+.input-group-addon {
|
|
| 3990 |
+ padding: 6px 12px; |
|
| 3991 |
+ font-size: 14px; |
|
| 3992 |
+ font-weight: normal; |
|
| 3993 |
+ line-height: 1; |
|
| 3994 |
+ color: #555555; |
|
| 3995 |
+ text-align: center; |
|
| 3996 |
+ background-color: #eeeeee; |
|
| 3997 |
+ border: 1px solid #cccccc; |
|
| 3998 |
+ border-radius: 4px; |
|
| 3999 |
+} |
|
| 4000 |
+ |
|
| 4001 |
+.input-group-addon.input-sm {
|
|
| 4002 |
+ padding: 5px 10px; |
|
| 4003 |
+ font-size: 12px; |
|
| 4004 |
+ border-radius: 3px; |
|
| 4005 |
+} |
|
| 4006 |
+ |
|
| 4007 |
+.input-group-addon.input-lg {
|
|
| 4008 |
+ padding: 10px 16px; |
|
| 4009 |
+ font-size: 18px; |
|
| 4010 |
+ border-radius: 6px; |
|
| 4011 |
+} |
|
| 4012 |
+ |
|
| 4013 |
+.input-group-addon input[type="radio"], |
|
| 4014 |
+.input-group-addon input[type="checkbox"] {
|
|
| 4015 |
+ margin-top: 0; |
|
| 4016 |
+} |
|
| 4017 |
+ |
|
| 4018 |
+.input-group .form-control:first-child, |
|
| 4019 |
+.input-group-addon:first-child, |
|
| 4020 |
+.input-group-btn:first-child > .btn, |
|
| 4021 |
+.input-group-btn:first-child > .dropdown-toggle, |
|
| 4022 |
+.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {
|
|
| 4023 |
+ border-top-right-radius: 0; |
|
| 4024 |
+ border-bottom-right-radius: 0; |
|
| 4025 |
+} |
|
| 4026 |
+ |
|
| 4027 |
+.input-group-addon:first-child {
|
|
| 4028 |
+ border-right: 0; |
|
| 4029 |
+} |
|
| 4030 |
+ |
|
| 4031 |
+.input-group .form-control:last-child, |
|
| 4032 |
+.input-group-addon:last-child, |
|
| 4033 |
+.input-group-btn:last-child > .btn, |
|
| 4034 |
+.input-group-btn:last-child > .dropdown-toggle, |
|
| 4035 |
+.input-group-btn:first-child > .btn:not(:first-child) {
|
|
| 4036 |
+ border-bottom-left-radius: 0; |
|
| 4037 |
+ border-top-left-radius: 0; |
|
| 4038 |
+} |
|
| 4039 |
+ |
|
| 4040 |
+.input-group-addon:last-child {
|
|
| 4041 |
+ border-left: 0; |
|
| 4042 |
+} |
|
| 4043 |
+ |
|
| 4044 |
+.input-group-btn {
|
|
| 4045 |
+ position: relative; |
|
| 4046 |
+ white-space: nowrap; |
|
| 4047 |
+} |
|
| 4048 |
+ |
|
| 4049 |
+.input-group-btn:first-child > .btn {
|
|
| 4050 |
+ margin-right: -1px; |
|
| 4051 |
+} |
|
| 4052 |
+ |
|
| 4053 |
+.input-group-btn:last-child > .btn {
|
|
| 4054 |
+ margin-left: -1px; |
|
| 4055 |
+} |
|
| 4056 |
+ |
|
| 4057 |
+.input-group-btn > .btn {
|
|
| 4058 |
+ position: relative; |
|
| 4059 |
+} |
|
| 4060 |
+ |
|
| 4061 |
+.input-group-btn > .btn + .btn {
|
|
| 4062 |
+ margin-left: -4px; |
|
| 4063 |
+} |
|
| 4064 |
+ |
|
| 4065 |
+.input-group-btn > .btn:hover, |
|
| 4066 |
+.input-group-btn > .btn:active {
|
|
| 4067 |
+ z-index: 2; |
|
| 4068 |
+} |
|
| 4069 |
+ |
|
| 4070 |
+.nav {
|
|
| 4071 |
+ padding-left: 0; |
|
| 4072 |
+ margin-bottom: 0; |
|
| 4073 |
+ list-style: none; |
|
| 4074 |
+} |
|
| 4075 |
+ |
|
| 4076 |
+.nav:before, |
|
| 4077 |
+.nav:after {
|
|
| 4078 |
+ display: table; |
|
| 4079 |
+ content: " "; |
|
| 4080 |
+} |
|
| 4081 |
+ |
|
| 4082 |
+.nav:after {
|
|
| 4083 |
+ clear: both; |
|
| 4084 |
+} |
|
| 4085 |
+ |
|
| 4086 |
+.nav:before, |
|
| 4087 |
+.nav:after {
|
|
| 4088 |
+ display: table; |
|
| 4089 |
+ content: " "; |
|
| 4090 |
+} |
|
| 4091 |
+ |
|
| 4092 |
+.nav:after {
|
|
| 4093 |
+ clear: both; |
|
| 4094 |
+} |
|
| 4095 |
+ |
|
| 4096 |
+.nav > li {
|
|
| 4097 |
+ position: relative; |
|
| 4098 |
+ display: block; |
|
| 4099 |
+} |
|
| 4100 |
+ |
|
| 4101 |
+.nav > li > a {
|
|
| 4102 |
+ position: relative; |
|
| 4103 |
+ display: block; |
|
| 4104 |
+ padding: 10px 15px; |
|
| 4105 |
+} |
|
| 4106 |
+ |
|
| 4107 |
+.nav > li > a:hover, |
|
| 4108 |
+.nav > li > a:focus {
|
|
| 4109 |
+ text-decoration: none; |
|
| 4110 |
+ background-color: #eeeeee; |
|
| 4111 |
+} |
|
| 4112 |
+ |
|
| 4113 |
+.nav > li.disabled > a {
|
|
| 4114 |
+ color: #999999; |
|
| 4115 |
+} |
|
| 4116 |
+ |
|
| 4117 |
+.nav > li.disabled > a:hover, |
|
| 4118 |
+.nav > li.disabled > a:focus {
|
|
| 4119 |
+ color: #999999; |
|
| 4120 |
+ text-decoration: none; |
|
| 4121 |
+ cursor: not-allowed; |
|
| 4122 |
+ background-color: transparent; |
|
| 4123 |
+} |
|
| 4124 |
+ |
|
| 4125 |
+.nav .open > a, |
|
| 4126 |
+.nav .open > a:hover, |
|
| 4127 |
+.nav .open > a:focus {
|
|
| 4128 |
+ background-color: #eeeeee; |
|
| 4129 |
+ border-color: #428bca; |
|
| 4130 |
+} |
|
| 4131 |
+ |
|
| 4132 |
+.nav .nav-divider {
|
|
| 4133 |
+ height: 1px; |
|
| 4134 |
+ margin: 9px 0; |
|
| 4135 |
+ overflow: hidden; |
|
| 4136 |
+ background-color: #e5e5e5; |
|
| 4137 |
+} |
|
| 4138 |
+ |
|
| 4139 |
+.nav > li > a > img {
|
|
| 4140 |
+ max-width: none; |
|
| 4141 |
+} |
|
| 4142 |
+ |
|
| 4143 |
+.nav-tabs {
|
|
| 4144 |
+ border-bottom: 1px solid #dddddd; |
|
| 4145 |
+} |
|
| 4146 |
+ |
|
| 4147 |
+.nav-tabs > li {
|
|
| 4148 |
+ float: left; |
|
| 4149 |
+ margin-bottom: -1px; |
|
| 4150 |
+} |
|
| 4151 |
+ |
|
| 4152 |
+.nav-tabs > li > a {
|
|
| 4153 |
+ margin-right: 2px; |
|
| 4154 |
+ line-height: 1.428571429; |
|
| 4155 |
+ border: 1px solid transparent; |
|
| 4156 |
+ border-radius: 4px 4px 0 0; |
|
| 4157 |
+} |
|
| 4158 |
+ |
|
| 4159 |
+.nav-tabs > li > a:hover {
|
|
| 4160 |
+ border-color: #eeeeee #eeeeee #dddddd; |
|
| 4161 |
+} |
|
| 4162 |
+ |
|
| 4163 |
+.nav-tabs > li.active > a, |
|
| 4164 |
+.nav-tabs > li.active > a:hover, |
|
| 4165 |
+.nav-tabs > li.active > a:focus {
|
|
| 4166 |
+ color: #555555; |
|
| 4167 |
+ cursor: default; |
|
| 4168 |
+ background-color: #ffffff; |
|
| 4169 |
+ border: 1px solid #dddddd; |
|
| 4170 |
+ border-bottom-color: transparent; |
|
| 4171 |
+} |
|
| 4172 |
+ |
|
| 4173 |
+.nav-tabs.nav-justified {
|
|
| 4174 |
+ width: 100%; |
|
| 4175 |
+ border-bottom: 0; |
|
| 4176 |
+} |
|
| 4177 |
+ |
|
| 4178 |
+.nav-tabs.nav-justified > li {
|
|
| 4179 |
+ float: none; |
|
| 4180 |
+} |
|
| 4181 |
+ |
|
| 4182 |
+.nav-tabs.nav-justified > li > a {
|
|
| 4183 |
+ margin-bottom: 5px; |
|
| 4184 |
+ text-align: center; |
|
| 4185 |
+} |
|
| 4186 |
+ |
|
| 4187 |
+.nav-tabs.nav-justified > .dropdown .dropdown-menu {
|
|
| 4188 |
+ top: auto; |
|
| 4189 |
+ left: auto; |
|
| 4190 |
+} |
|
| 4191 |
+ |
|
| 4192 |
+@media (min-width: 768px) {
|
|
| 4193 |
+ .nav-tabs.nav-justified > li {
|
|
| 4194 |
+ display: table-cell; |
|
| 4195 |
+ width: 1%; |
|
| 4196 |
+ } |
|
| 4197 |
+ .nav-tabs.nav-justified > li > a {
|
|
| 4198 |
+ margin-bottom: 0; |
|
| 4199 |
+ } |
|
| 4200 |
+} |
|
| 4201 |
+ |
|
| 4202 |
+.nav-tabs.nav-justified > li > a {
|
|
| 4203 |
+ margin-right: 0; |
|
| 4204 |
+ border-radius: 4px; |
|
| 4205 |
+} |
|
| 4206 |
+ |
|
| 4207 |
+.nav-tabs.nav-justified > .active > a, |
|
| 4208 |
+.nav-tabs.nav-justified > .active > a:hover, |
|
| 4209 |
+.nav-tabs.nav-justified > .active > a:focus {
|
|
| 4210 |
+ border: 1px solid #dddddd; |
|
| 4211 |
+} |
|
| 4212 |
+ |
|
| 4213 |
+@media (min-width: 768px) {
|
|
| 4214 |
+ .nav-tabs.nav-justified > li > a {
|
|
| 4215 |
+ border-bottom: 1px solid #dddddd; |
|
| 4216 |
+ border-radius: 4px 4px 0 0; |
|
| 4217 |
+ } |
|
| 4218 |
+ .nav-tabs.nav-justified > .active > a, |
|
| 4219 |
+ .nav-tabs.nav-justified > .active > a:hover, |
|
| 4220 |
+ .nav-tabs.nav-justified > .active > a:focus {
|
|
| 4221 |
+ border-bottom-color: #ffffff; |
|
| 4222 |
+ } |
|
| 4223 |
+} |
|
| 4224 |
+ |
|
| 4225 |
+.nav-pills > li {
|
|
| 4226 |
+ float: left; |
|
| 4227 |
+} |
|
| 4228 |
+ |
|
| 4229 |
+.nav-pills > li > a {
|
|
| 4230 |
+ border-radius: 4px; |
|
| 4231 |
+} |
|
| 4232 |
+ |
|
| 4233 |
+.nav-pills > li + li {
|
|
| 4234 |
+ margin-left: 2px; |
|
| 4235 |
+} |
|
| 4236 |
+ |
|
| 4237 |
+.nav-pills > li.active > a, |
|
| 4238 |
+.nav-pills > li.active > a:hover, |
|
| 4239 |
+.nav-pills > li.active > a:focus {
|
|
| 4240 |
+ color: #ffffff; |
|
| 4241 |
+ background-color: #428bca; |
|
| 4242 |
+} |
|
| 4243 |
+ |
|
| 4244 |
+.nav-stacked > li {
|
|
| 4245 |
+ float: none; |
|
| 4246 |
+} |
|
| 4247 |
+ |
|
| 4248 |
+.nav-stacked > li + li {
|
|
| 4249 |
+ margin-top: 2px; |
|
| 4250 |
+ margin-left: 0; |
|
| 4251 |
+} |
|
| 4252 |
+ |
|
| 4253 |
+.nav-justified {
|
|
| 4254 |
+ width: 100%; |
|
| 4255 |
+} |
|
| 4256 |
+ |
|
| 4257 |
+.nav-justified > li {
|
|
| 4258 |
+ float: none; |
|
| 4259 |
+} |
|
| 4260 |
+ |
|
| 4261 |
+.nav-justified > li > a {
|
|
| 4262 |
+ margin-bottom: 5px; |
|
| 4263 |
+ text-align: center; |
|
| 4264 |
+} |
|
| 4265 |
+ |
|
| 4266 |
+.nav-justified > .dropdown .dropdown-menu {
|
|
| 4267 |
+ top: auto; |
|
| 4268 |
+ left: auto; |
|
| 4269 |
+} |
|
| 4270 |
+ |
|
| 4271 |
+@media (min-width: 768px) {
|
|
| 4272 |
+ .nav-justified > li {
|
|
| 4273 |
+ display: table-cell; |
|
| 4274 |
+ width: 1%; |
|
| 4275 |
+ } |
|
| 4276 |
+ .nav-justified > li > a {
|
|
| 4277 |
+ margin-bottom: 0; |
|
| 4278 |
+ } |
|
| 4279 |
+} |
|
| 4280 |
+ |
|
| 4281 |
+.nav-tabs-justified {
|
|
| 4282 |
+ border-bottom: 0; |
|
| 4283 |
+} |
|
| 4284 |
+ |
|
| 4285 |
+.nav-tabs-justified > li > a {
|
|
| 4286 |
+ margin-right: 0; |
|
| 4287 |
+ border-radius: 4px; |
|
| 4288 |
+} |
|
| 4289 |
+ |
|
| 4290 |
+.nav-tabs-justified > .active > a, |
|
| 4291 |
+.nav-tabs-justified > .active > a:hover, |
|
| 4292 |
+.nav-tabs-justified > .active > a:focus {
|
|
| 4293 |
+ border: 1px solid #dddddd; |
|
| 4294 |
+} |
|
| 4295 |
+ |
|
| 4296 |
+@media (min-width: 768px) {
|
|
| 4297 |
+ .nav-tabs-justified > li > a {
|
|
| 4298 |
+ border-bottom: 1px solid #dddddd; |
|
| 4299 |
+ border-radius: 4px 4px 0 0; |
|
| 4300 |
+ } |
|
| 4301 |
+ .nav-tabs-justified > .active > a, |
|
| 4302 |
+ .nav-tabs-justified > .active > a:hover, |
|
| 4303 |
+ .nav-tabs-justified > .active > a:focus {
|
|
| 4304 |
+ border-bottom-color: #ffffff; |
|
| 4305 |
+ } |
|
| 4306 |
+} |
|
| 4307 |
+ |
|
| 4308 |
+.tab-content > .tab-pane {
|
|
| 4309 |
+ display: none; |
|
| 4310 |
+} |
|
| 4311 |
+ |
|
| 4312 |
+.tab-content > .active {
|
|
| 4313 |
+ display: block; |
|
| 4314 |
+} |
|
| 4315 |
+ |
|
| 4316 |
+.nav-tabs .dropdown-menu {
|
|
| 4317 |
+ margin-top: -1px; |
|
| 4318 |
+ border-top-right-radius: 0; |
|
| 4319 |
+ border-top-left-radius: 0; |
|
| 4320 |
+} |
|
| 4321 |
+ |
|
| 4322 |
+.navbar {
|
|
| 4323 |
+ position: relative; |
|
| 4324 |
+ min-height: 50px; |
|
| 4325 |
+ margin-bottom: 20px; |
|
| 4326 |
+ border: 1px solid transparent; |
|
| 4327 |
+} |
|
| 4328 |
+ |
|
| 4329 |
+.navbar:before, |
|
| 4330 |
+.navbar:after {
|
|
| 4331 |
+ display: table; |
|
| 4332 |
+ content: " "; |
|
| 4333 |
+} |
|
| 4334 |
+ |
|
| 4335 |
+.navbar:after {
|
|
| 4336 |
+ clear: both; |
|
| 4337 |
+} |
|
| 4338 |
+ |
|
| 4339 |
+.navbar:before, |
|
| 4340 |
+.navbar:after {
|
|
| 4341 |
+ display: table; |
|
| 4342 |
+ content: " "; |
|
| 4343 |
+} |
|
| 4344 |
+ |
|
| 4345 |
+.navbar:after {
|
|
| 4346 |
+ clear: both; |
|
| 4347 |
+} |
|
| 4348 |
+ |
|
| 4349 |
+@media (min-width: 768px) {
|
|
| 4350 |
+ .navbar {
|
|
| 4351 |
+ border-radius: 4px; |
|
| 4352 |
+ } |
|
| 4353 |
+} |
|
| 4354 |
+ |
|
| 4355 |
+.navbar-header:before, |
|
| 4356 |
+.navbar-header:after {
|
|
| 4357 |
+ display: table; |
|
| 4358 |
+ content: " "; |
|
| 4359 |
+} |
|
| 4360 |
+ |
|
| 4361 |
+.navbar-header:after {
|
|
| 4362 |
+ clear: both; |
|
| 4363 |
+} |
|
| 4364 |
+ |
|
| 4365 |
+.navbar-header:before, |
|
| 4366 |
+.navbar-header:after {
|
|
| 4367 |
+ display: table; |
|
| 4368 |
+ content: " "; |
|
| 4369 |
+} |
|
| 4370 |
+ |
|
| 4371 |
+.navbar-header:after {
|
|
| 4372 |
+ clear: both; |
|
| 4373 |
+} |
|
| 4374 |
+ |
|
| 4375 |
+@media (min-width: 768px) {
|
|
| 4376 |
+ .navbar-header {
|
|
| 4377 |
+ float: left; |
|
| 4378 |
+ } |
|
| 4379 |
+} |
|
| 4380 |
+ |
|
| 4381 |
+.navbar-collapse {
|
|
| 4382 |
+ max-height: 340px; |
|
| 4383 |
+ padding-right: 15px; |
|
| 4384 |
+ padding-left: 15px; |
|
| 4385 |
+ overflow-x: visible; |
|
| 4386 |
+ border-top: 1px solid transparent; |
|
| 4387 |
+ box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1); |
|
| 4388 |
+ -webkit-overflow-scrolling: touch; |
|
| 4389 |
+} |
|
| 4390 |
+ |
|
| 4391 |
+.navbar-collapse:before, |
|
| 4392 |
+.navbar-collapse:after {
|
|
| 4393 |
+ display: table; |
|
| 4394 |
+ content: " "; |
|
| 4395 |
+} |
|
| 4396 |
+ |
|
| 4397 |
+.navbar-collapse:after {
|
|
| 4398 |
+ clear: both; |
|
| 4399 |
+} |
|
| 4400 |
+ |
|
| 4401 |
+.navbar-collapse:before, |
|
| 4402 |
+.navbar-collapse:after {
|
|
| 4403 |
+ display: table; |
|
| 4404 |
+ content: " "; |
|
| 4405 |
+} |
|
| 4406 |
+ |
|
| 4407 |
+.navbar-collapse:after {
|
|
| 4408 |
+ clear: both; |
|
| 4409 |
+} |
|
| 4410 |
+ |
|
| 4411 |
+.navbar-collapse.in {
|
|
| 4412 |
+ overflow-y: auto; |
|
| 4413 |
+} |
|
| 4414 |
+ |
|
| 4415 |
+@media (min-width: 768px) {
|
|
| 4416 |
+ .navbar-collapse {
|
|
| 4417 |
+ width: auto; |
|
| 4418 |
+ border-top: 0; |
|
| 4419 |
+ box-shadow: none; |
|
| 4420 |
+ } |
|
| 4421 |
+ .navbar-collapse.collapse {
|
|
| 4422 |
+ display: block !important; |
|
| 4423 |
+ height: auto !important; |
|
| 4424 |
+ padding-bottom: 0; |
|
| 4425 |
+ overflow: visible !important; |
|
| 4426 |
+ } |
|
| 4427 |
+ .navbar-collapse.in {
|
|
| 4428 |
+ overflow-y: visible; |
|
| 4429 |
+ } |
|
| 4430 |
+ .navbar-fixed-top .navbar-collapse, |
|
| 4431 |
+ .navbar-static-top .navbar-collapse, |
|
| 4432 |
+ .navbar-fixed-bottom .navbar-collapse {
|
|
| 4433 |
+ padding-right: 0; |
|
| 4434 |
+ padding-left: 0; |
|
| 4435 |
+ } |
|
| 4436 |
+} |
|
| 4437 |
+ |
|
| 4438 |
+.container > .navbar-header, |
|
| 4439 |
+.container > .navbar-collapse {
|
|
| 4440 |
+ margin-right: -15px; |
|
| 4441 |
+ margin-left: -15px; |
|
| 4442 |
+} |
|
| 4443 |
+ |
|
| 4444 |
+@media (min-width: 768px) {
|
|
| 4445 |
+ .container > .navbar-header, |
|
| 4446 |
+ .container > .navbar-collapse {
|
|
| 4447 |
+ margin-right: 0; |
|
| 4448 |
+ margin-left: 0; |
|
| 4449 |
+ } |
|
| 4450 |
+} |
|
| 4451 |
+ |
|
| 4452 |
+.navbar-static-top {
|
|
| 4453 |
+ z-index: 1000; |
|
| 4454 |
+ border-width: 0 0 1px; |
|
| 4455 |
+} |
|
| 4456 |
+ |
|
| 4457 |
+@media (min-width: 768px) {
|
|
| 4458 |
+ .navbar-static-top {
|
|
| 4459 |
+ border-radius: 0; |
|
| 4460 |
+ } |
|
| 4461 |
+} |
|
| 4462 |
+ |
|
| 4463 |
+.navbar-fixed-top, |
|
| 4464 |
+.navbar-fixed-bottom {
|
|
| 4465 |
+ position: fixed; |
|
| 4466 |
+ right: 0; |
|
| 4467 |
+ left: 0; |
|
| 4468 |
+ z-index: 1030; |
|
| 4469 |
+} |
|
| 4470 |
+ |
|
| 4471 |
+@media (min-width: 768px) {
|
|
| 4472 |
+ .navbar-fixed-top, |
|
| 4473 |
+ .navbar-fixed-bottom {
|
|
| 4474 |
+ border-radius: 0; |
|
| 4475 |
+ } |
|
| 4476 |
+} |
|
| 4477 |
+ |
|
| 4478 |
+.navbar-fixed-top {
|
|
| 4479 |
+ top: 0; |
|
| 4480 |
+ border-width: 0 0 1px; |
|
| 4481 |
+} |
|
| 4482 |
+ |
|
| 4483 |
+.navbar-fixed-bottom {
|
|
| 4484 |
+ bottom: 0; |
|
| 4485 |
+ margin-bottom: 0; |
|
| 4486 |
+ border-width: 1px 0 0; |
|
| 4487 |
+} |
|
| 4488 |
+ |
|
| 4489 |
+.navbar-brand {
|
|
| 4490 |
+ float: left; |
|
| 4491 |
+ padding: 15px 15px; |
|
| 4492 |
+ font-size: 18px; |
|
| 4493 |
+ line-height: 20px; |
|
| 4494 |
+} |
|
| 4495 |
+ |
|
| 4496 |
+.navbar-brand:hover, |
|
| 4497 |
+.navbar-brand:focus {
|
|
| 4498 |
+ text-decoration: none; |
|
| 4499 |
+} |
|
| 4500 |
+ |
|
| 4501 |
+@media (min-width: 768px) {
|
|
| 4502 |
+ .navbar > .container .navbar-brand {
|
|
| 4503 |
+ margin-left: -15px; |
|
| 4504 |
+ } |
|
| 4505 |
+} |
|
| 4506 |
+ |
|
| 4507 |
+.navbar-toggle {
|
|
| 4508 |
+ position: relative; |
|
| 4509 |
+ float: right; |
|
| 4510 |
+ padding: 9px 10px; |
|
| 4511 |
+ margin-top: 8px; |
|
| 4512 |
+ margin-right: 15px; |
|
| 4513 |
+ margin-bottom: 8px; |
|
| 4514 |
+ background-color: transparent; |
|
| 4515 |
+ background-image: none; |
|
| 4516 |
+ border: 1px solid transparent; |
|
| 4517 |
+ border-radius: 4px; |
|
| 4518 |
+} |
|
| 4519 |
+ |
|
| 4520 |
+.navbar-toggle .icon-bar {
|
|
| 4521 |
+ display: block; |
|
| 4522 |
+ width: 22px; |
|
| 4523 |
+ height: 2px; |
|
| 4524 |
+ border-radius: 1px; |
|
| 4525 |
+} |
|
| 4526 |
+ |
|
| 4527 |
+.navbar-toggle .icon-bar + .icon-bar {
|
|
| 4528 |
+ margin-top: 4px; |
|
| 4529 |
+} |
|
| 4530 |
+ |
|
| 4531 |
+@media (min-width: 768px) {
|
|
| 4532 |
+ .navbar-toggle {
|
|
| 4533 |
+ display: none; |
|
| 4534 |
+ } |
|
| 4535 |
+} |
|
| 4536 |
+ |
|
| 4537 |
+.navbar-nav {
|
|
| 4538 |
+ margin: 7.5px -15px; |
|
| 4539 |
+} |
|
| 4540 |
+ |
|
| 4541 |
+.navbar-nav > li > a {
|
|
| 4542 |
+ padding-top: 10px; |
|
| 4543 |
+ padding-bottom: 10px; |
|
| 4544 |
+ line-height: 20px; |
|
| 4545 |
+} |
|
| 4546 |
+ |
|
| 4547 |
+@media (max-width: 767px) {
|
|
| 4548 |
+ .navbar-nav .open .dropdown-menu {
|
|
| 4549 |
+ position: static; |
|
| 4550 |
+ float: none; |
|
| 4551 |
+ width: auto; |
|
| 4552 |
+ margin-top: 0; |
|
| 4553 |
+ background-color: transparent; |
|
| 4554 |
+ border: 0; |
|
| 4555 |
+ box-shadow: none; |
|
| 4556 |
+ } |
|
| 4557 |
+ .navbar-nav .open .dropdown-menu > li > a, |
|
| 4558 |
+ .navbar-nav .open .dropdown-menu .dropdown-header {
|
|
| 4559 |
+ padding: 5px 15px 5px 25px; |
|
| 4560 |
+ } |
|
| 4561 |
+ .navbar-nav .open .dropdown-menu > li > a {
|
|
| 4562 |
+ line-height: 20px; |
|
| 4563 |
+ } |
|
| 4564 |
+ .navbar-nav .open .dropdown-menu > li > a:hover, |
|
| 4565 |
+ .navbar-nav .open .dropdown-menu > li > a:focus {
|
|
| 4566 |
+ background-image: none; |
|
| 4567 |
+ } |
|
| 4568 |
+} |
|
| 4569 |
+ |
|
| 4570 |
+@media (min-width: 768px) {
|
|
| 4571 |
+ .navbar-nav {
|
|
| 4572 |
+ float: left; |
|
| 4573 |
+ margin: 0; |
|
| 4574 |
+ } |
|
| 4575 |
+ .navbar-nav > li {
|
|
| 4576 |
+ float: left; |
|
| 4577 |
+ } |
|
| 4578 |
+ .navbar-nav > li > a {
|
|
| 4579 |
+ padding-top: 15px; |
|
| 4580 |
+ padding-bottom: 15px; |
|
| 4581 |
+ } |
|
| 4582 |
+ .navbar-nav.navbar-right:last-child {
|
|
| 4583 |
+ margin-right: -15px; |
|
| 4584 |
+ } |
|
| 4585 |
+} |
|
| 4586 |
+ |
|
| 4587 |
+@media (min-width: 768px) {
|
|
| 4588 |
+ .navbar-left {
|
|
| 4589 |
+ float: left !important; |
|
| 4590 |
+ } |
|
| 4591 |
+ .navbar-right {
|
|
| 4592 |
+ float: right !important; |
|
| 4593 |
+ } |
|
| 4594 |
+} |
|
| 4595 |
+ |
|
| 4596 |
+.navbar-form {
|
|
| 4597 |
+ padding: 10px 15px; |
|
| 4598 |
+ margin-top: 8px; |
|
| 4599 |
+ margin-right: -15px; |
|
| 4600 |
+ margin-bottom: 8px; |
|
| 4601 |
+ margin-left: -15px; |
|
| 4602 |
+ border-top: 1px solid transparent; |
|
| 4603 |
+ border-bottom: 1px solid transparent; |
|
| 4604 |
+ -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); |
|
| 4605 |
+ box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); |
|
| 4606 |
+} |
|
| 4607 |
+ |
|
| 4608 |
+@media (min-width: 768px) {
|
|
| 4609 |
+ .navbar-form .form-group {
|
|
| 4610 |
+ display: inline-block; |
|
| 4611 |
+ margin-bottom: 0; |
|
| 4612 |
+ vertical-align: middle; |
|
| 4613 |
+ } |
|
| 4614 |
+ .navbar-form .form-control {
|
|
| 4615 |
+ display: inline-block; |
|
| 4616 |
+ } |
|
| 4617 |
+ .navbar-form select.form-control {
|
|
| 4618 |
+ width: auto; |
|
| 4619 |
+ } |
|
| 4620 |
+ .navbar-form .radio, |
|
| 4621 |
+ .navbar-form .checkbox {
|
|
| 4622 |
+ display: inline-block; |
|
| 4623 |
+ padding-left: 0; |
|
| 4624 |
+ margin-top: 0; |
|
| 4625 |
+ margin-bottom: 0; |
|
| 4626 |
+ } |
|
| 4627 |
+ .navbar-form .radio input[type="radio"], |
|
| 4628 |
+ .navbar-form .checkbox input[type="checkbox"] {
|
|
| 4629 |
+ float: none; |
|
| 4630 |
+ margin-left: 0; |
|
| 4631 |
+ } |
|
| 4632 |
+} |
|
| 4633 |
+ |
|
| 4634 |
+@media (max-width: 767px) {
|
|
| 4635 |
+ .navbar-form .form-group {
|
|
| 4636 |
+ margin-bottom: 5px; |
|
| 4637 |
+ } |
|
| 4638 |
+} |
|
| 4639 |
+ |
|
| 4640 |
+@media (min-width: 768px) {
|
|
| 4641 |
+ .navbar-form {
|
|
| 4642 |
+ width: auto; |
|
| 4643 |
+ padding-top: 0; |
|
| 4644 |
+ padding-bottom: 0; |
|
| 4645 |
+ margin-right: 0; |
|
| 4646 |
+ margin-left: 0; |
|
| 4647 |
+ border: 0; |
|
| 4648 |
+ -webkit-box-shadow: none; |
|
| 4649 |
+ box-shadow: none; |
|
| 4650 |
+ } |
|
| 4651 |
+ .navbar-form.navbar-right:last-child {
|
|
| 4652 |
+ margin-right: -15px; |
|
| 4653 |
+ } |
|
| 4654 |
+} |
|
| 4655 |
+ |
|
| 4656 |
+.navbar-nav > li > .dropdown-menu {
|
|
| 4657 |
+ margin-top: 0; |
|
| 4658 |
+ border-top-right-radius: 0; |
|
| 4659 |
+ border-top-left-radius: 0; |
|
| 4660 |
+} |
|
| 4661 |
+ |
|
| 4662 |
+.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
|
|
| 4663 |
+ border-bottom-right-radius: 0; |
|
| 4664 |
+ border-bottom-left-radius: 0; |
|
| 4665 |
+} |
|
| 4666 |
+ |
|
| 4667 |
+.navbar-nav.pull-right > li > .dropdown-menu, |
|
| 4668 |
+.navbar-nav > li > .dropdown-menu.pull-right {
|
|
| 4669 |
+ right: 0; |
|
| 4670 |
+ left: auto; |
|
| 4671 |
+} |
|
| 4672 |
+ |
|
| 4673 |
+.navbar-btn {
|
|
| 4674 |
+ margin-top: 8px; |
|
| 4675 |
+ margin-bottom: 8px; |
|
| 4676 |
+} |
|
| 4677 |
+ |
|
| 4678 |
+.navbar-btn.btn-sm {
|
|
| 4679 |
+ margin-top: 10px; |
|
| 4680 |
+ margin-bottom: 10px; |
|
| 4681 |
+} |
|
| 4682 |
+ |
|
| 4683 |
+.navbar-btn.btn-xs {
|
|
| 4684 |
+ margin-top: 14px; |
|
| 4685 |
+ margin-bottom: 14px; |
|
| 4686 |
+} |
|
| 4687 |
+ |
|
| 4688 |
+.navbar-text {
|
|
| 4689 |
+ margin-top: 15px; |
|
| 4690 |
+ margin-bottom: 15px; |
|
| 4691 |
+} |
|
| 4692 |
+ |
|
| 4693 |
+@media (min-width: 768px) {
|
|
| 4694 |
+ .navbar-text {
|
|
| 4695 |
+ float: left; |
|
| 4696 |
+ margin-right: 15px; |
|
| 4697 |
+ margin-left: 15px; |
|
| 4698 |
+ } |
|
| 4699 |
+ .navbar-text.navbar-right:last-child {
|
|
| 4700 |
+ margin-right: 0; |
|
| 4701 |
+ } |
|
| 4702 |
+} |
|
| 4703 |
+ |
|
| 4704 |
+.navbar-default {
|
|
| 4705 |
+ background-color: #f8f8f8; |
|
| 4706 |
+ border-color: #e7e7e7; |
|
| 4707 |
+} |
|
| 4708 |
+ |
|
| 4709 |
+.navbar-default .navbar-brand {
|
|
| 4710 |
+ color: #777777; |
|
| 4711 |
+} |
|
| 4712 |
+ |
|
| 4713 |
+.navbar-default .navbar-brand:hover, |
|
| 4714 |
+.navbar-default .navbar-brand:focus {
|
|
| 4715 |
+ color: #5e5e5e; |
|
| 4716 |
+ background-color: transparent; |
|
| 4717 |
+} |
|
| 4718 |
+ |
|
| 4719 |
+.navbar-default .navbar-text {
|
|
| 4720 |
+ color: #777777; |
|
| 4721 |
+} |
|
| 4722 |
+ |
|
| 4723 |
+.navbar-default .navbar-nav > li > a {
|
|
| 4724 |
+ color: #777777; |
|
| 4725 |
+} |
|
| 4726 |
+ |
|
| 4727 |
+.navbar-default .navbar-nav > li > a:hover, |
|
| 4728 |
+.navbar-default .navbar-nav > li > a:focus {
|
|
| 4729 |
+ color: #333333; |
|
| 4730 |
+ background-color: transparent; |
|
| 4731 |
+} |
|
| 4732 |
+ |
|
| 4733 |
+.navbar-default .navbar-nav > .active > a, |
|
| 4734 |
+.navbar-default .navbar-nav > .active > a:hover, |
|
| 4735 |
+.navbar-default .navbar-nav > .active > a:focus {
|
|
| 4736 |
+ color: #555555; |
|
| 4737 |
+ background-color: #e7e7e7; |
|
| 4738 |
+} |
|
| 4739 |
+ |
|
| 4740 |
+.navbar-default .navbar-nav > .disabled > a, |
|
| 4741 |
+.navbar-default .navbar-nav > .disabled > a:hover, |
|
| 4742 |
+.navbar-default .navbar-nav > .disabled > a:focus {
|
|
| 4743 |
+ color: #cccccc; |
|
| 4744 |
+ background-color: transparent; |
|
| 4745 |
+} |
|
| 4746 |
+ |
|
| 4747 |
+.navbar-default .navbar-toggle {
|
|
| 4748 |
+ border-color: #dddddd; |
|
| 4749 |
+} |
|
| 4750 |
+ |
|
| 4751 |
+.navbar-default .navbar-toggle:hover, |
|
| 4752 |
+.navbar-default .navbar-toggle:focus {
|
|
| 4753 |
+ background-color: #dddddd; |
|
| 4754 |
+} |
|
| 4755 |
+ |
|
| 4756 |
+.navbar-default .navbar-toggle .icon-bar {
|
|
| 4757 |
+ background-color: #cccccc; |
|
| 4758 |
+} |
|
| 4759 |
+ |
|
| 4760 |
+.navbar-default .navbar-collapse, |
|
| 4761 |
+.navbar-default .navbar-form {
|
|
| 4762 |
+ border-color: #e7e7e7; |
|
| 4763 |
+} |
|
| 4764 |
+ |
|
| 4765 |
+.navbar-default .navbar-nav > .open > a, |
|
| 4766 |
+.navbar-default .navbar-nav > .open > a:hover, |
|
| 4767 |
+.navbar-default .navbar-nav > .open > a:focus {
|
|
| 4768 |
+ color: #555555; |
|
| 4769 |
+ background-color: #e7e7e7; |
|
| 4770 |
+} |
|
| 4771 |
+ |
|
| 4772 |
+@media (max-width: 767px) {
|
|
| 4773 |
+ .navbar-default .navbar-nav .open .dropdown-menu > li > a {
|
|
| 4774 |
+ color: #777777; |
|
| 4775 |
+ } |
|
| 4776 |
+ .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, |
|
| 4777 |
+ .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
|
|
| 4778 |
+ color: #333333; |
|
| 4779 |
+ background-color: transparent; |
|
| 4780 |
+ } |
|
| 4781 |
+ .navbar-default .navbar-nav .open .dropdown-menu > .active > a, |
|
| 4782 |
+ .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, |
|
| 4783 |
+ .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
|
|
| 4784 |
+ color: #555555; |
|
| 4785 |
+ background-color: #e7e7e7; |
|
| 4786 |
+ } |
|
| 4787 |
+ .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, |
|
| 4788 |
+ .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, |
|
| 4789 |
+ .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
|
|
| 4790 |
+ color: #cccccc; |
|
| 4791 |
+ background-color: transparent; |
|
| 4792 |
+ } |
|
| 4793 |
+} |
|
| 4794 |
+ |
|
| 4795 |
+.navbar-default .navbar-link {
|
|
| 4796 |
+ color: #777777; |
|
| 4797 |
+} |
|
| 4798 |
+ |
|
| 4799 |
+.navbar-default .navbar-link:hover {
|
|
| 4800 |
+ color: #333333; |
|
| 4801 |
+} |
|
| 4802 |
+ |
|
| 4803 |
+.navbar-inverse {
|
|
| 4804 |
+ background-color: #222222; |
|
| 4805 |
+ border-color: #080808; |
|
| 4806 |
+} |
|
| 4807 |
+ |
|
| 4808 |
+.navbar-inverse .navbar-brand {
|
|
| 4809 |
+ color: #999999; |
|
| 4810 |
+} |
|
| 4811 |
+ |
|
| 4812 |
+.navbar-inverse .navbar-brand:hover, |
|
| 4813 |
+.navbar-inverse .navbar-brand:focus {
|
|
| 4814 |
+ color: #ffffff; |
|
| 4815 |
+ background-color: transparent; |
|
| 4816 |
+} |
|
| 4817 |
+ |
|
| 4818 |
+.navbar-inverse .navbar-text {
|
|
| 4819 |
+ color: #999999; |
|
| 4820 |
+} |
|
| 4821 |
+ |
|
| 4822 |
+.navbar-inverse .navbar-nav > li > a {
|
|
| 4823 |
+ color: #999999; |
|
| 4824 |
+} |
|
| 4825 |
+ |
|
| 4826 |
+.navbar-inverse .navbar-nav > li > a:hover, |
|
| 4827 |
+.navbar-inverse .navbar-nav > li > a:focus {
|
|
| 4828 |
+ color: #ffffff; |
|
| 4829 |
+ background-color: transparent; |
|
| 4830 |
+} |
|
| 4831 |
+ |
|
| 4832 |
+.navbar-inverse .navbar-nav > .active > a, |
|
| 4833 |
+.navbar-inverse .navbar-nav > .active > a:hover, |
|
| 4834 |
+.navbar-inverse .navbar-nav > .active > a:focus {
|
|
| 4835 |
+ color: #ffffff; |
|
| 4836 |
+ background-color: #080808; |
|
| 4837 |
+} |
|
| 4838 |
+ |
|
| 4839 |
+.navbar-inverse .navbar-nav > .disabled > a, |
|
| 4840 |
+.navbar-inverse .navbar-nav > .disabled > a:hover, |
|
| 4841 |
+.navbar-inverse .navbar-nav > .disabled > a:focus {
|
|
| 4842 |
+ color: #444444; |
|
| 4843 |
+ background-color: transparent; |
|
| 4844 |
+} |
|
| 4845 |
+ |
|
| 4846 |
+.navbar-inverse .navbar-toggle {
|
|
| 4847 |
+ border-color: #333333; |
|
| 4848 |
+} |
|
| 4849 |
+ |
|
| 4850 |
+.navbar-inverse .navbar-toggle:hover, |
|
| 4851 |
+.navbar-inverse .navbar-toggle:focus {
|
|
| 4852 |
+ background-color: #333333; |
|
| 4853 |
+} |
|
| 4854 |
+ |
|
| 4855 |
+.navbar-inverse .navbar-toggle .icon-bar {
|
|
| 4856 |
+ background-color: #ffffff; |
|
| 4857 |
+} |
|
| 4858 |
+ |
|
| 4859 |
+.navbar-inverse .navbar-collapse, |
|
| 4860 |
+.navbar-inverse .navbar-form {
|
|
| 4861 |
+ border-color: #101010; |
|
| 4862 |
+} |
|
| 4863 |
+ |
|
| 4864 |
+.navbar-inverse .navbar-nav > .open > a, |
|
| 4865 |
+.navbar-inverse .navbar-nav > .open > a:hover, |
|
| 4866 |
+.navbar-inverse .navbar-nav > .open > a:focus {
|
|
| 4867 |
+ color: #ffffff; |
|
| 4868 |
+ background-color: #080808; |
|
| 4869 |
+} |
|
| 4870 |
+ |
|
| 4871 |
+@media (max-width: 767px) {
|
|
| 4872 |
+ .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
|
|
| 4873 |
+ border-color: #080808; |
|
| 4874 |
+ } |
|
| 4875 |
+ .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
|
|
| 4876 |
+ background-color: #080808; |
|
| 4877 |
+ } |
|
| 4878 |
+ .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
|
|
| 4879 |
+ color: #999999; |
|
| 4880 |
+ } |
|
| 4881 |
+ .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, |
|
| 4882 |
+ .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
|
|
| 4883 |
+ color: #ffffff; |
|
| 4884 |
+ background-color: transparent; |
|
| 4885 |
+ } |
|
| 4886 |
+ .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, |
|
| 4887 |
+ .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, |
|
| 4888 |
+ .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
|
|
| 4889 |
+ color: #ffffff; |
|
| 4890 |
+ background-color: #080808; |
|
| 4891 |
+ } |
|
| 4892 |
+ .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, |
|
| 4893 |
+ .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, |
|
| 4894 |
+ .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
|
|
| 4895 |
+ color: #444444; |
|
| 4896 |
+ background-color: transparent; |
|
| 4897 |
+ } |
|
| 4898 |
+} |
|
| 4899 |
+ |
|
| 4900 |
+.navbar-inverse .navbar-link {
|
|
| 4901 |
+ color: #999999; |
|
| 4902 |
+} |
|
| 4903 |
+ |
|
| 4904 |
+.navbar-inverse .navbar-link:hover {
|
|
| 4905 |
+ color: #ffffff; |
|
| 4906 |
+} |
|
| 4907 |
+ |
|
| 4908 |
+.breadcrumb {
|
|
| 4909 |
+ padding: 8px 15px; |
|
| 4910 |
+ margin-bottom: 20px; |
|
| 4911 |
+ list-style: none; |
|
| 4912 |
+ background-color: #f5f5f5; |
|
| 4913 |
+ border-radius: 4px; |
|
| 4914 |
+} |
|
| 4915 |
+ |
|
| 4916 |
+.breadcrumb > li {
|
|
| 4917 |
+ display: inline-block; |
|
| 4918 |
+} |
|
| 4919 |
+ |
|
| 4920 |
+.breadcrumb > li + li:before {
|
|
| 4921 |
+ padding: 0 5px; |
|
| 4922 |
+ color: #cccccc; |
|
| 4923 |
+ content: "/\00a0"; |
|
| 4924 |
+} |
|
| 4925 |
+ |
|
| 4926 |
+.breadcrumb > .active {
|
|
| 4927 |
+ color: #999999; |
|
| 4928 |
+} |
|
| 4929 |
+ |
|
| 4930 |
+.pagination {
|
|
| 4931 |
+ display: inline-block; |
|
| 4932 |
+ padding-left: 0; |
|
| 4933 |
+ margin: 20px 0; |
|
| 4934 |
+ border-radius: 4px; |
|
| 4935 |
+} |
|
| 4936 |
+ |
|
| 4937 |
+.pagination > li {
|
|
| 4938 |
+ display: inline; |
|
| 4939 |
+} |
|
| 4940 |
+ |
|
| 4941 |
+.pagination > li > a, |
|
| 4942 |
+.pagination > li > span {
|
|
| 4943 |
+ position: relative; |
|
| 4944 |
+ float: left; |
|
| 4945 |
+ padding: 6px 12px; |
|
| 4946 |
+ margin-left: -1px; |
|
| 4947 |
+ line-height: 1.428571429; |
|
| 4948 |
+ text-decoration: none; |
|
| 4949 |
+ background-color: #ffffff; |
|
| 4950 |
+ border: 1px solid #dddddd; |
|
| 4951 |
+} |
|
| 4952 |
+ |
|
| 4953 |
+.pagination > li:first-child > a, |
|
| 4954 |
+.pagination > li:first-child > span {
|
|
| 4955 |
+ margin-left: 0; |
|
| 4956 |
+ border-bottom-left-radius: 4px; |
|
| 4957 |
+ border-top-left-radius: 4px; |
|
| 4958 |
+} |
|
| 4959 |
+ |
|
| 4960 |
+.pagination > li:last-child > a, |
|
| 4961 |
+.pagination > li:last-child > span {
|
|
| 4962 |
+ border-top-right-radius: 4px; |
|
| 4963 |
+ border-bottom-right-radius: 4px; |
|
| 4964 |
+} |
|
| 4965 |
+ |
|
| 4966 |
+.pagination > li > a:hover, |
|
| 4967 |
+.pagination > li > span:hover, |
|
| 4968 |
+.pagination > li > a:focus, |
|
| 4969 |
+.pagination > li > span:focus {
|
|
| 4970 |
+ background-color: #eeeeee; |
|
| 4971 |
+} |
|
| 4972 |
+ |
|
| 4973 |
+.pagination > .active > a, |
|
| 4974 |
+.pagination > .active > span, |
|
| 4975 |
+.pagination > .active > a:hover, |
|
| 4976 |
+.pagination > .active > span:hover, |
|
| 4977 |
+.pagination > .active > a:focus, |
|
| 4978 |
+.pagination > .active > span:focus {
|
|
| 4979 |
+ z-index: 2; |
|
| 4980 |
+ color: #ffffff; |
|
| 4981 |
+ cursor: default; |
|
| 4982 |
+ background-color: #428bca; |
|
| 4983 |
+ border-color: #428bca; |
|
| 4984 |
+} |
|
| 4985 |
+ |
|
| 4986 |
+.pagination > .disabled > span, |
|
| 4987 |
+.pagination > .disabled > span:hover, |
|
| 4988 |
+.pagination > .disabled > span:focus, |
|
| 4989 |
+.pagination > .disabled > a, |
|
| 4990 |
+.pagination > .disabled > a:hover, |
|
| 4991 |
+.pagination > .disabled > a:focus {
|
|
| 4992 |
+ color: #999999; |
|
| 4993 |
+ cursor: not-allowed; |
|
| 4994 |
+ background-color: #ffffff; |
|
| 4995 |
+ border-color: #dddddd; |
|
| 4996 |
+} |
|
| 4997 |
+ |
|
| 4998 |
+.pagination-lg > li > a, |
|
| 4999 |
+.pagination-lg > li > span {
|
|
| 5000 |
+ padding: 10px 16px; |
|
| 5001 |
+ font-size: 18px; |
|
| 5002 |
+} |
|
| 5003 |
+ |
|
| 5004 |
+.pagination-lg > li:first-child > a, |
|
| 5005 |
+.pagination-lg > li:first-child > span {
|
|
| 5006 |
+ border-bottom-left-radius: 6px; |
|
| 5007 |
+ border-top-left-radius: 6px; |
|
| 5008 |
+} |
|
| 5009 |
+ |
|
| 5010 |
+.pagination-lg > li:last-child > a, |
|
| 5011 |
+.pagination-lg > li:last-child > span {
|
|
| 5012 |
+ border-top-right-radius: 6px; |
|
| 5013 |
+ border-bottom-right-radius: 6px; |
|
| 5014 |
+} |
|
| 5015 |
+ |
|
| 5016 |
+.pagination-sm > li > a, |
|
| 5017 |
+.pagination-sm > li > span {
|
|
| 5018 |
+ padding: 5px 10px; |
|
| 5019 |
+ font-size: 12px; |
|
| 5020 |
+} |
|
| 5021 |
+ |
|
| 5022 |
+.pagination-sm > li:first-child > a, |
|
| 5023 |
+.pagination-sm > li:first-child > span {
|
|
| 5024 |
+ border-bottom-left-radius: 3px; |
|
| 5025 |
+ border-top-left-radius: 3px; |
|
| 5026 |
+} |
|
| 5027 |
+ |
|
| 5028 |
+.pagination-sm > li:last-child > a, |
|
| 5029 |
+.pagination-sm > li:last-child > span {
|
|
| 5030 |
+ border-top-right-radius: 3px; |
|
| 5031 |
+ border-bottom-right-radius: 3px; |
|
| 5032 |
+} |
|
| 5033 |
+ |
|
| 5034 |
+.pager {
|
|
| 5035 |
+ padding-left: 0; |
|
| 5036 |
+ margin: 20px 0; |
|
| 5037 |
+ text-align: center; |
|
| 5038 |
+ list-style: none; |
|
| 5039 |
+} |
|
| 5040 |
+ |
|
| 5041 |
+.pager:before, |
|
| 5042 |
+.pager:after {
|
|
| 5043 |
+ display: table; |
|
| 5044 |
+ content: " "; |
|
| 5045 |
+} |
|
| 5046 |
+ |
|
| 5047 |
+.pager:after {
|
|
| 5048 |
+ clear: both; |
|
| 5049 |
+} |
|
| 5050 |
+ |
|
| 5051 |
+.pager:before, |
|
| 5052 |
+.pager:after {
|
|
| 5053 |
+ display: table; |
|
| 5054 |
+ content: " "; |
|
| 5055 |
+} |
|
| 5056 |
+ |
|
| 5057 |
+.pager:after {
|
|
| 5058 |
+ clear: both; |
|
| 5059 |
+} |
|
| 5060 |
+ |
|
| 5061 |
+.pager li {
|
|
| 5062 |
+ display: inline; |
|
| 5063 |
+} |
|
| 5064 |
+ |
|
| 5065 |
+.pager li > a, |
|
| 5066 |
+.pager li > span {
|
|
| 5067 |
+ display: inline-block; |
|
| 5068 |
+ padding: 5px 14px; |
|
| 5069 |
+ background-color: #ffffff; |
|
| 5070 |
+ border: 1px solid #dddddd; |
|
| 5071 |
+ border-radius: 15px; |
|
| 5072 |
+} |
|
| 5073 |
+ |
|
| 5074 |
+.pager li > a:hover, |
|
| 5075 |
+.pager li > a:focus {
|
|
| 5076 |
+ text-decoration: none; |
|
| 5077 |
+ background-color: #eeeeee; |
|
| 5078 |
+} |
|
| 5079 |
+ |
|
| 5080 |
+.pager .next > a, |
|
| 5081 |
+.pager .next > span {
|
|
| 5082 |
+ float: right; |
|
| 5083 |
+} |
|
| 5084 |
+ |
|
| 5085 |
+.pager .previous > a, |
|
| 5086 |
+.pager .previous > span {
|
|
| 5087 |
+ float: left; |
|
| 5088 |
+} |
|
| 5089 |
+ |
|
| 5090 |
+.pager .disabled > a, |
|
| 5091 |
+.pager .disabled > a:hover, |
|
| 5092 |
+.pager .disabled > a:focus, |
|
| 5093 |
+.pager .disabled > span {
|
|
| 5094 |
+ color: #999999; |
|
| 5095 |
+ cursor: not-allowed; |
|
| 5096 |
+ background-color: #ffffff; |
|
| 5097 |
+} |
|
| 5098 |
+ |
|
| 5099 |
+.label {
|
|
| 5100 |
+ display: inline; |
|
| 5101 |
+ padding: .2em .6em .3em; |
|
| 5102 |
+ font-size: 75%; |
|
| 5103 |
+ font-weight: bold; |
|
| 5104 |
+ line-height: 1; |
|
| 5105 |
+ color: #ffffff; |
|
| 5106 |
+ text-align: center; |
|
| 5107 |
+ white-space: nowrap; |
|
| 5108 |
+ vertical-align: baseline; |
|
| 5109 |
+ border-radius: .25em; |
|
| 5110 |
+} |
|
| 5111 |
+ |
|
| 5112 |
+.label[href]:hover, |
|
| 5113 |
+.label[href]:focus {
|
|
| 5114 |
+ color: #ffffff; |
|
| 5115 |
+ text-decoration: none; |
|
| 5116 |
+ cursor: pointer; |
|
| 5117 |
+} |
|
| 5118 |
+ |
|
| 5119 |
+.label:empty {
|
|
| 5120 |
+ display: none; |
|
| 5121 |
+} |
|
| 5122 |
+ |
|
| 5123 |
+.btn .label {
|
|
| 5124 |
+ position: relative; |
|
| 5125 |
+ top: -1px; |
|
| 5126 |
+} |
|
| 5127 |
+ |
|
| 5128 |
+.label-default {
|
|
| 5129 |
+ background-color: #999999; |
|
| 5130 |
+} |
|
| 5131 |
+ |
|
| 5132 |
+.label-default[href]:hover, |
|
| 5133 |
+.label-default[href]:focus {
|
|
| 5134 |
+ background-color: #808080; |
|
| 5135 |
+} |
|
| 5136 |
+ |
|
| 5137 |
+.label-primary {
|
|
| 5138 |
+ background-color: #428bca; |
|
| 5139 |
+} |
|
| 5140 |
+ |
|
| 5141 |
+.label-primary[href]:hover, |
|
| 5142 |
+.label-primary[href]:focus {
|
|
| 5143 |
+ background-color: #3071a9; |
|
| 5144 |
+} |
|
| 5145 |
+ |
|
| 5146 |
+.label-success {
|
|
| 5147 |
+ background-color: #5cb85c; |
|
| 5148 |
+} |
|
| 5149 |
+ |
|
| 5150 |
+.label-success[href]:hover, |
|
| 5151 |
+.label-success[href]:focus {
|
|
| 5152 |
+ background-color: #449d44; |
|
| 5153 |
+} |
|
| 5154 |
+ |
|
| 5155 |
+.label-info {
|
|
| 5156 |
+ background-color: #5bc0de; |
|
| 5157 |
+} |
|
| 5158 |
+ |
|
| 5159 |
+.label-info[href]:hover, |
|
| 5160 |
+.label-info[href]:focus {
|
|
| 5161 |
+ background-color: #31b0d5; |
|
| 5162 |
+} |
|
| 5163 |
+ |
|
| 5164 |
+.label-warning {
|
|
| 5165 |
+ background-color: #f0ad4e; |
|
| 5166 |
+} |
|
| 5167 |
+ |
|
| 5168 |
+.label-warning[href]:hover, |
|
| 5169 |
+.label-warning[href]:focus {
|
|
| 5170 |
+ background-color: #ec971f; |
|
| 5171 |
+} |
|
| 5172 |
+ |
|
| 5173 |
+.label-danger {
|
|
| 5174 |
+ background-color: #d9534f; |
|
| 5175 |
+} |
|
| 5176 |
+ |
|
| 5177 |
+.label-danger[href]:hover, |
|
| 5178 |
+.label-danger[href]:focus {
|
|
| 5179 |
+ background-color: #c9302c; |
|
| 5180 |
+} |
|
| 5181 |
+ |
|
| 5182 |
+.badge {
|
|
| 5183 |
+ display: inline-block; |
|
| 5184 |
+ min-width: 10px; |
|
| 5185 |
+ padding: 3px 7px; |
|
| 5186 |
+ font-size: 12px; |
|
| 5187 |
+ font-weight: bold; |
|
| 5188 |
+ line-height: 1; |
|
| 5189 |
+ color: #ffffff; |
|
| 5190 |
+ text-align: center; |
|
| 5191 |
+ white-space: nowrap; |
|
| 5192 |
+ vertical-align: baseline; |
|
| 5193 |
+ background-color: #999999; |
|
| 5194 |
+ border-radius: 10px; |
|
| 5195 |
+} |
|
| 5196 |
+ |
|
| 5197 |
+.badge:empty {
|
|
| 5198 |
+ display: none; |
|
| 5199 |
+} |
|
| 5200 |
+ |
|
| 5201 |
+.btn .badge {
|
|
| 5202 |
+ position: relative; |
|
| 5203 |
+ top: -1px; |
|
| 5204 |
+} |
|
| 5205 |
+ |
|
| 5206 |
+a.badge:hover, |
|
| 5207 |
+a.badge:focus {
|
|
| 5208 |
+ color: #ffffff; |
|
| 5209 |
+ text-decoration: none; |
|
| 5210 |
+ cursor: pointer; |
|
| 5211 |
+} |
|
| 5212 |
+ |
|
| 5213 |
+a.list-group-item.active > .badge, |
|
| 5214 |
+.nav-pills > .active > a > .badge {
|
|
| 5215 |
+ color: #428bca; |
|
| 5216 |
+ background-color: #ffffff; |
|
| 5217 |
+} |
|
| 5218 |
+ |
|
| 5219 |
+.nav-pills > li > a > .badge {
|
|
| 5220 |
+ margin-left: 3px; |
|
| 5221 |
+} |
|
| 5222 |
+ |
|
| 5223 |
+.jumbotron {
|
|
| 5224 |
+ padding: 30px; |
|
| 5225 |
+ margin-bottom: 30px; |
|
| 5226 |
+ font-size: 21px; |
|
| 5227 |
+ font-weight: 200; |
|
| 5228 |
+ line-height: 2.1428571435; |
|
| 5229 |
+ color: inherit; |
|
| 5230 |
+ background-color: #eeeeee; |
|
| 5231 |
+} |
|
| 5232 |
+ |
|
| 5233 |
+.jumbotron h1, |
|
| 5234 |
+.jumbotron .h1 {
|
|
| 5235 |
+ line-height: 1; |
|
| 5236 |
+ color: inherit; |
|
| 5237 |
+} |
|
| 5238 |
+ |
|
| 5239 |
+.jumbotron p {
|
|
| 5240 |
+ line-height: 1.4; |
|
| 5241 |
+} |
|
| 5242 |
+ |
|
| 5243 |
+.container .jumbotron {
|
|
| 5244 |
+ border-radius: 6px; |
|
| 5245 |
+} |
|
| 5246 |
+ |
|
| 5247 |
+.jumbotron .container {
|
|
| 5248 |
+ max-width: 100%; |
|
| 5249 |
+} |
|
| 5250 |
+ |
|
| 5251 |
+@media screen and (min-width: 768px) {
|
|
| 5252 |
+ .jumbotron {
|
|
| 5253 |
+ padding-top: 48px; |
|
| 5254 |
+ padding-bottom: 48px; |
|
| 5255 |
+ } |
|
| 5256 |
+ .container .jumbotron {
|
|
| 5257 |
+ padding-right: 60px; |
|
| 5258 |
+ padding-left: 60px; |
|
| 5259 |
+ } |
|
| 5260 |
+ .jumbotron h1, |
|
| 5261 |
+ .jumbotron .h1 {
|
|
| 5262 |
+ font-size: 63px; |
|
| 5263 |
+ } |
|
| 5264 |
+} |
|
| 5265 |
+ |
|
| 5266 |
+.thumbnail {
|
|
| 5267 |
+ display: block; |
|
| 5268 |
+ padding: 4px; |
|
| 5269 |
+ margin-bottom: 20px; |
|
| 5270 |
+ line-height: 1.428571429; |
|
| 5271 |
+ background-color: #ffffff; |
|
| 5272 |
+ border: 1px solid #dddddd; |
|
| 5273 |
+ border-radius: 4px; |
|
| 5274 |
+ -webkit-transition: all 0.2s ease-in-out; |
|
| 5275 |
+ transition: all 0.2s ease-in-out; |
|
| 5276 |
+} |
|
| 5277 |
+ |
|
| 5278 |
+.thumbnail > img, |
|
| 5279 |
+.thumbnail a > img {
|
|
| 5280 |
+ display: block; |
|
| 5281 |
+ height: auto; |
|
| 5282 |
+ max-width: 100%; |
|
| 5283 |
+ margin-right: auto; |
|
| 5284 |
+ margin-left: auto; |
|
| 5285 |
+} |
|
| 5286 |
+ |
|
| 5287 |
+a.thumbnail:hover, |
|
| 5288 |
+a.thumbnail:focus, |
|
| 5289 |
+a.thumbnail.active {
|
|
| 5290 |
+ border-color: #428bca; |
|
| 5291 |
+} |
|
| 5292 |
+ |
|
| 5293 |
+.thumbnail .caption {
|
|
| 5294 |
+ padding: 9px; |
|
| 5295 |
+ color: #333333; |
|
| 5296 |
+} |
|
| 5297 |
+ |
|
| 5298 |
+.alert {
|
|
| 5299 |
+ padding: 15px; |
|
| 5300 |
+ margin-bottom: 20px; |
|
| 5301 |
+ border: 1px solid transparent; |
|
| 5302 |
+ border-radius: 4px; |
|
| 5303 |
+} |
|
| 5304 |
+ |
|
| 5305 |
+.alert h4 {
|
|
| 5306 |
+ margin-top: 0; |
|
| 5307 |
+ color: inherit; |
|
| 5308 |
+} |
|
| 5309 |
+ |
|
| 5310 |
+.alert .alert-link {
|
|
| 5311 |
+ font-weight: bold; |
|
| 5312 |
+} |
|
| 5313 |
+ |
|
| 5314 |
+.alert > p, |
|
| 5315 |
+.alert > ul {
|
|
| 5316 |
+ margin-bottom: 0; |
|
| 5317 |
+} |
|
| 5318 |
+ |
|
| 5319 |
+.alert > p + p {
|
|
| 5320 |
+ margin-top: 5px; |
|
| 5321 |
+} |
|
| 5322 |
+ |
|
| 5323 |
+.alert-dismissable {
|
|
| 5324 |
+ padding-right: 35px; |
|
| 5325 |
+} |
|
| 5326 |
+ |
|
| 5327 |
+.alert-dismissable .close {
|
|
| 5328 |
+ position: relative; |
|
| 5329 |
+ top: -2px; |
|
| 5330 |
+ right: -21px; |
|
| 5331 |
+ color: inherit; |
|
| 5332 |
+} |
|
| 5333 |
+ |
|
| 5334 |
+.alert-success {
|
|
| 5335 |
+ color: #3c763d; |
|
| 5336 |
+ background-color: #dff0d8; |
|
| 5337 |
+ border-color: #d6e9c6; |
|
| 5338 |
+} |
|
| 5339 |
+ |
|
| 5340 |
+.alert-success hr {
|
|
| 5341 |
+ border-top-color: #c9e2b3; |
|
| 5342 |
+} |
|
| 5343 |
+ |
|
| 5344 |
+.alert-success .alert-link {
|
|
| 5345 |
+ color: #2b542c; |
|
| 5346 |
+} |
|
| 5347 |
+ |
|
| 5348 |
+.alert-info {
|
|
| 5349 |
+ color: #31708f; |
|
| 5350 |
+ background-color: #d9edf7; |
|
| 5351 |
+ border-color: #bce8f1; |
|
| 5352 |
+} |
|
| 5353 |
+ |
|
| 5354 |
+.alert-info hr {
|
|
| 5355 |
+ border-top-color: #a6e1ec; |
|
| 5356 |
+} |
|
| 5357 |
+ |
|
| 5358 |
+.alert-info .alert-link {
|
|
| 5359 |
+ color: #245269; |
|
| 5360 |
+} |
|
| 5361 |
+ |
|
| 5362 |
+.alert-warning {
|
|
| 5363 |
+ color: #8a6d3b; |
|
| 5364 |
+ background-color: #fcf8e3; |
|
| 5365 |
+ border-color: #faebcc; |
|
| 5366 |
+} |
|
| 5367 |
+ |
|
| 5368 |
+.alert-warning hr {
|
|
| 5369 |
+ border-top-color: #f7e1b5; |
|
| 5370 |
+} |
|
| 5371 |
+ |
|
| 5372 |
+.alert-warning .alert-link {
|
|
| 5373 |
+ color: #66512c; |
|
| 5374 |
+} |
|
| 5375 |
+ |
|
| 5376 |
+.alert-danger {
|
|
| 5377 |
+ color: #a94442; |
|
| 5378 |
+ background-color: #f2dede; |
|
| 5379 |
+ border-color: #ebccd1; |
|
| 5380 |
+} |
|
| 5381 |
+ |
|
| 5382 |
+.alert-danger hr {
|
|
| 5383 |
+ border-top-color: #e4b9c0; |
|
| 5384 |
+} |
|
| 5385 |
+ |
|
| 5386 |
+.alert-danger .alert-link {
|
|
| 5387 |
+ color: #843534; |
|
| 5388 |
+} |
|
| 5389 |
+ |
|
| 5390 |
+@-webkit-keyframes progress-bar-stripes {
|
|
| 5391 |
+ from {
|
|
| 5392 |
+ background-position: 40px 0; |
|
| 5393 |
+ } |
|
| 5394 |
+ to {
|
|
| 5395 |
+ background-position: 0 0; |
|
| 5396 |
+ } |
|
| 5397 |
+} |
|
| 5398 |
+ |
|
| 5399 |
+@keyframes progress-bar-stripes {
|
|
| 5400 |
+ from {
|
|
| 5401 |
+ background-position: 40px 0; |
|
| 5402 |
+ } |
|
| 5403 |
+ to {
|
|
| 5404 |
+ background-position: 0 0; |
|
| 5405 |
+ } |
|
| 5406 |
+} |
|
| 5407 |
+ |
|
| 5408 |
+.progress {
|
|
| 5409 |
+ height: 20px; |
|
| 5410 |
+ margin-bottom: 20px; |
|
| 5411 |
+ overflow: hidden; |
|
| 5412 |
+ background-color: #f5f5f5; |
|
| 5413 |
+ border-radius: 4px; |
|
| 5414 |
+ -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); |
|
| 5415 |
+ box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); |
|
| 5416 |
+} |
|
| 5417 |
+ |
|
| 5418 |
+.progress-bar {
|
|
| 5419 |
+ float: left; |
|
| 5420 |
+ width: 0; |
|
| 5421 |
+ height: 100%; |
|
| 5422 |
+ font-size: 12px; |
|
| 5423 |
+ line-height: 20px; |
|
| 5424 |
+ color: #ffffff; |
|
| 5425 |
+ text-align: center; |
|
| 5426 |
+ background-color: #428bca; |
|
| 5427 |
+ -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); |
|
| 5428 |
+ box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); |
|
| 5429 |
+ -webkit-transition: width 0.6s ease; |
|
| 5430 |
+ transition: width 0.6s ease; |
|
| 5431 |
+} |
|
| 5432 |
+ |
|
| 5433 |
+.progress-striped .progress-bar {
|
|
| 5434 |
+ 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); |
|
| 5435 |
+ 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); |
|
| 5436 |
+ background-size: 40px 40px; |
|
| 5437 |
+} |
|
| 5438 |
+ |
|
| 5439 |
+.progress.active .progress-bar {
|
|
| 5440 |
+ -webkit-animation: progress-bar-stripes 2s linear infinite; |
|
| 5441 |
+ animation: progress-bar-stripes 2s linear infinite; |
|
| 5442 |
+} |
|
| 5443 |
+ |
|
| 5444 |
+.progress-bar-success {
|
|
| 5445 |
+ background-color: #5cb85c; |
|
| 5446 |
+} |
|
| 5447 |
+ |
|
| 5448 |
+.progress-striped .progress-bar-success {
|
|
| 5449 |
+ 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); |
|
| 5450 |
+ 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); |
|
| 5451 |
+} |
|
| 5452 |
+ |
|
| 5453 |
+.progress-bar-info {
|
|
| 5454 |
+ background-color: #5bc0de; |
|
| 5455 |
+} |
|
| 5456 |
+ |
|
| 5457 |
+.progress-striped .progress-bar-info {
|
|
| 5458 |
+ 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); |
|
| 5459 |
+ 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); |
|
| 5460 |
+} |
|
| 5461 |
+ |
|
| 5462 |
+.progress-bar-warning {
|
|
| 5463 |
+ background-color: #f0ad4e; |
|
| 5464 |
+} |
|
| 5465 |
+ |
|
| 5466 |
+.progress-striped .progress-bar-warning {
|
|
| 5467 |
+ 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); |
|
| 5468 |
+ 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); |
|
| 5469 |
+} |
|
| 5470 |
+ |
|
| 5471 |
+.progress-bar-danger {
|
|
| 5472 |
+ background-color: #d9534f; |
|
| 5473 |
+} |
|
| 5474 |
+ |
|
| 5475 |
+.progress-striped .progress-bar-danger {
|
|
| 5476 |
+ 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); |
|
| 5477 |
+ 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); |
|
| 5478 |
+} |
|
| 5479 |
+ |
|
| 5480 |
+.media, |
|
| 5481 |
+.media-body {
|
|
| 5482 |
+ overflow: hidden; |
|
| 5483 |
+ zoom: 1; |
|
| 5484 |
+} |
|
| 5485 |
+ |
|
| 5486 |
+.media, |
|
| 5487 |
+.media .media {
|
|
| 5488 |
+ margin-top: 15px; |
|
| 5489 |
+} |
|
| 5490 |
+ |
|
| 5491 |
+.media:first-child {
|
|
| 5492 |
+ margin-top: 0; |
|
| 5493 |
+} |
|
| 5494 |
+ |
|
| 5495 |
+.media-object {
|
|
| 5496 |
+ display: block; |
|
| 5497 |
+} |
|
| 5498 |
+ |
|
| 5499 |
+.media-heading {
|
|
| 5500 |
+ margin: 0 0 5px; |
|
| 5501 |
+} |
|
| 5502 |
+ |
|
| 5503 |
+.media > .pull-left {
|
|
| 5504 |
+ margin-right: 10px; |
|
| 5505 |
+} |
|
| 5506 |
+ |
|
| 5507 |
+.media > .pull-right {
|
|
| 5508 |
+ margin-left: 10px; |
|
| 5509 |
+} |
|
| 5510 |
+ |
|
| 5511 |
+.media-list {
|
|
| 5512 |
+ padding-left: 0; |
|
| 5513 |
+ list-style: none; |
|
| 5514 |
+} |
|
| 5515 |
+ |
|
| 5516 |
+.list-group {
|
|
| 5517 |
+ padding-left: 0; |
|
| 5518 |
+ margin-bottom: 20px; |
|
| 5519 |
+} |
|
| 5520 |
+ |
|
| 5521 |
+.list-group-item {
|
|
| 5522 |
+ position: relative; |
|
| 5523 |
+ display: block; |
|
| 5524 |
+ padding: 10px 15px; |
|
| 5525 |
+ margin-bottom: -1px; |
|
| 5526 |
+ background-color: #ffffff; |
|
| 5527 |
+ border: 1px solid #dddddd; |
|
| 5528 |
+} |
|
| 5529 |
+ |
|
| 5530 |
+.list-group-item:first-child {
|
|
| 5531 |
+ border-top-right-radius: 4px; |
|
| 5532 |
+ border-top-left-radius: 4px; |
|
| 5533 |
+} |
|
| 5534 |
+ |
|
| 5535 |
+.list-group-item:last-child {
|
|
| 5536 |
+ margin-bottom: 0; |
|
| 5537 |
+ border-bottom-right-radius: 4px; |
|
| 5538 |
+ border-bottom-left-radius: 4px; |
|
| 5539 |
+} |
|
| 5540 |
+ |
|
| 5541 |
+.list-group-item > .badge {
|
|
| 5542 |
+ float: right; |
|
| 5543 |
+} |
|
| 5544 |
+ |
|
| 5545 |
+.list-group-item > .badge + .badge {
|
|
| 5546 |
+ margin-right: 5px; |
|
| 5547 |
+} |
|
| 5548 |
+ |
|
| 5549 |
+a.list-group-item {
|
|
| 5550 |
+ color: #555555; |
|
| 5551 |
+} |
|
| 5552 |
+ |
|
| 5553 |
+a.list-group-item .list-group-item-heading {
|
|
| 5554 |
+ color: #333333; |
|
| 5555 |
+} |
|
| 5556 |
+ |
|
| 5557 |
+a.list-group-item:hover, |
|
| 5558 |
+a.list-group-item:focus {
|
|
| 5559 |
+ text-decoration: none; |
|
| 5560 |
+ background-color: #f5f5f5; |
|
| 5561 |
+} |
|
| 5562 |
+ |
|
| 5563 |
+a.list-group-item.active, |
|
| 5564 |
+a.list-group-item.active:hover, |
|
| 5565 |
+a.list-group-item.active:focus {
|
|
| 5566 |
+ z-index: 2; |
|
| 5567 |
+ color: #ffffff; |
|
| 5568 |
+ background-color: #428bca; |
|
| 5569 |
+ border-color: #428bca; |
|
| 5570 |
+} |
|
| 5571 |
+ |
|
| 5572 |
+a.list-group-item.active .list-group-item-heading, |
|
| 5573 |
+a.list-group-item.active:hover .list-group-item-heading, |
|
| 5574 |
+a.list-group-item.active:focus .list-group-item-heading {
|
|
| 5575 |
+ color: inherit; |
|
| 5576 |
+} |
|
| 5577 |
+ |
|
| 5578 |
+a.list-group-item.active .list-group-item-text, |
|
| 5579 |
+a.list-group-item.active:hover .list-group-item-text, |
|
| 5580 |
+a.list-group-item.active:focus .list-group-item-text {
|
|
| 5581 |
+ color: #e1edf7; |
|
| 5582 |
+} |
|
| 5583 |
+ |
|
| 5584 |
+.list-group-item-heading {
|
|
| 5585 |
+ margin-top: 0; |
|
| 5586 |
+ margin-bottom: 5px; |
|
| 5587 |
+} |
|
| 5588 |
+ |
|
| 5589 |
+.list-group-item-text {
|
|
| 5590 |
+ margin-bottom: 0; |
|
| 5591 |
+ line-height: 1.3; |
|
| 5592 |
+} |
|
| 5593 |
+ |
|
| 5594 |
+.panel {
|
|
| 5595 |
+ margin-bottom: 20px; |
|
| 5596 |
+ background-color: #ffffff; |
|
| 5597 |
+ border: 1px solid transparent; |
|
| 5598 |
+ border-radius: 4px; |
|
| 5599 |
+ -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); |
|
| 5600 |
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); |
|
| 5601 |
+} |
|
| 5602 |
+ |
|
| 5603 |
+.panel-body {
|
|
| 5604 |
+ padding: 15px; |
|
| 5605 |
+} |
|
| 5606 |
+ |
|
| 5607 |
+.panel-body:before, |
|
| 5608 |
+.panel-body:after {
|
|
| 5609 |
+ display: table; |
|
| 5610 |
+ content: " "; |
|
| 5611 |
+} |
|
| 5612 |
+ |
|
| 5613 |
+.panel-body:after {
|
|
| 5614 |
+ clear: both; |
|
| 5615 |
+} |
|
| 5616 |
+ |
|
| 5617 |
+.panel-body:before, |
|
| 5618 |
+.panel-body:after {
|
|
| 5619 |
+ display: table; |
|
| 5620 |
+ content: " "; |
|
| 5621 |
+} |
|
| 5622 |
+ |
|
| 5623 |
+.panel-body:after {
|
|
| 5624 |
+ clear: both; |
|
| 5625 |
+} |
|
| 5626 |
+ |
|
| 5627 |
+.panel > .list-group {
|
|
| 5628 |
+ margin-bottom: 0; |
|
| 5629 |
+} |
|
| 5630 |
+ |
|
| 5631 |
+.panel > .list-group .list-group-item {
|
|
| 5632 |
+ border-width: 1px 0; |
|
| 5633 |
+} |
|
| 5634 |
+ |
|
| 5635 |
+.panel > .list-group .list-group-item:first-child {
|
|
| 5636 |
+ border-top-right-radius: 0; |
|
| 5637 |
+ border-top-left-radius: 0; |
|
| 5638 |
+} |
|
| 5639 |
+ |
|
| 5640 |
+.panel > .list-group .list-group-item:last-child {
|
|
| 5641 |
+ border-bottom: 0; |
|
| 5642 |
+} |
|
| 5643 |
+ |
|
| 5644 |
+.panel-heading + .list-group .list-group-item:first-child {
|
|
| 5645 |
+ border-top-width: 0; |
|
| 5646 |
+} |
|
| 5647 |
+ |
|
| 5648 |
+.panel > .table, |
|
| 5649 |
+.panel > .table-responsive > .table {
|
|
| 5650 |
+ margin-bottom: 0; |
|
| 5651 |
+} |
|
| 5652 |
+ |
|
| 5653 |
+.panel > .panel-body + .table, |
|
| 5654 |
+.panel > .panel-body + .table-responsive {
|
|
| 5655 |
+ border-top: 1px solid #dddddd; |
|
| 5656 |
+} |
|
| 5657 |
+ |
|
| 5658 |
+.panel > .table > tbody:first-child th, |
|
| 5659 |
+.panel > .table > tbody:first-child td {
|
|
| 5660 |
+ border-top: 0; |
|
| 5661 |
+} |
|
| 5662 |
+ |
|
| 5663 |
+.panel > .table-bordered, |
|
| 5664 |
+.panel > .table-responsive > .table-bordered {
|
|
| 5665 |
+ border: 0; |
|
| 5666 |
+} |
|
| 5667 |
+ |
|
| 5668 |
+.panel > .table-bordered > thead > tr > th:first-child, |
|
| 5669 |
+.panel > .table-responsive > .table-bordered > thead > tr > th:first-child, |
|
| 5670 |
+.panel > .table-bordered > tbody > tr > th:first-child, |
|
| 5671 |
+.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child, |
|
| 5672 |
+.panel > .table-bordered > tfoot > tr > th:first-child, |
|
| 5673 |
+.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child, |
|
| 5674 |
+.panel > .table-bordered > thead > tr > td:first-child, |
|
| 5675 |
+.panel > .table-responsive > .table-bordered > thead > tr > td:first-child, |
|
| 5676 |
+.panel > .table-bordered > tbody > tr > td:first-child, |
|
| 5677 |
+.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child, |
|
| 5678 |
+.panel > .table-bordered > tfoot > tr > td:first-child, |
|
| 5679 |
+.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
|
|
| 5680 |
+ border-left: 0; |
|
| 5681 |
+} |
|
| 5682 |
+ |
|
| 5683 |
+.panel > .table-bordered > thead > tr > th:last-child, |
|
| 5684 |
+.panel > .table-responsive > .table-bordered > thead > tr > th:last-child, |
|
| 5685 |
+.panel > .table-bordered > tbody > tr > th:last-child, |
|
| 5686 |
+.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child, |
|
| 5687 |
+.panel > .table-bordered > tfoot > tr > th:last-child, |
|
| 5688 |
+.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child, |
|
| 5689 |
+.panel > .table-bordered > thead > tr > td:last-child, |
|
| 5690 |
+.panel > .table-responsive > .table-bordered > thead > tr > td:last-child, |
|
| 5691 |
+.panel > .table-bordered > tbody > tr > td:last-child, |
|
| 5692 |
+.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child, |
|
| 5693 |
+.panel > .table-bordered > tfoot > tr > td:last-child, |
|
| 5694 |
+.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
|
|
| 5695 |
+ border-right: 0; |
|
| 5696 |
+} |
|
| 5697 |
+ |
|
| 5698 |
+.panel > .table-bordered > thead > tr:last-child > th, |
|
| 5699 |
+.panel > .table-responsive > .table-bordered > thead > tr:last-child > th, |
|
| 5700 |
+.panel > .table-bordered > tbody > tr:last-child > th, |
|
| 5701 |
+.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th, |
|
| 5702 |
+.panel > .table-bordered > tfoot > tr:last-child > th, |
|
| 5703 |
+.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th, |
|
| 5704 |
+.panel > .table-bordered > thead > tr:last-child > td, |
|
| 5705 |
+.panel > .table-responsive > .table-bordered > thead > tr:last-child > td, |
|
| 5706 |
+.panel > .table-bordered > tbody > tr:last-child > td, |
|
| 5707 |
+.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td, |
|
| 5708 |
+.panel > .table-bordered > tfoot > tr:last-child > td, |
|
| 5709 |
+.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td {
|
|
| 5710 |
+ border-bottom: 0; |
|
| 5711 |
+} |
|
| 5712 |
+ |
|
| 5713 |
+.panel > .table-responsive {
|
|
| 5714 |
+ margin-bottom: 0; |
|
| 5715 |
+ border: 0; |
|
| 5716 |
+} |
|
| 5717 |
+ |
|
| 5718 |
+.panel-heading {
|
|
| 5719 |
+ padding: 10px 15px; |
|
| 5720 |
+ border-bottom: 1px solid transparent; |
|
| 5721 |
+ border-top-right-radius: 3px; |
|
| 5722 |
+ border-top-left-radius: 3px; |
|
| 5723 |
+} |
|
| 5724 |
+ |
|
| 5725 |
+.panel-heading > .dropdown .dropdown-toggle {
|
|
| 5726 |
+ color: inherit; |
|
| 5727 |
+} |
|
| 5728 |
+ |
|
| 5729 |
+.panel-title {
|
|
| 5730 |
+ margin-top: 0; |
|
| 5731 |
+ margin-bottom: 0; |
|
| 5732 |
+ font-size: 16px; |
|
| 5733 |
+ color: inherit; |
|
| 5734 |
+} |
|
| 5735 |
+ |
|
| 5736 |
+.panel-title > a {
|
|
| 5737 |
+ color: inherit; |
|
| 5738 |
+} |
|
| 5739 |
+ |
|
| 5740 |
+.panel-footer {
|
|
| 5741 |
+ padding: 10px 15px; |
|
| 5742 |
+ background-color: #f5f5f5; |
|
| 5743 |
+ border-top: 1px solid #dddddd; |
|
| 5744 |
+ border-bottom-right-radius: 3px; |
|
| 5745 |
+ border-bottom-left-radius: 3px; |
|
| 5746 |
+} |
|
| 5747 |
+ |
|
| 5748 |
+.panel-group .panel {
|
|
| 5749 |
+ margin-bottom: 0; |
|
| 5750 |
+ overflow: hidden; |
|
| 5751 |
+ border-radius: 4px; |
|
| 5752 |
+} |
|
| 5753 |
+ |
|
| 5754 |
+.panel-group .panel + .panel {
|
|
| 5755 |
+ margin-top: 5px; |
|
| 5756 |
+} |
|
| 5757 |
+ |
|
| 5758 |
+.panel-group .panel-heading {
|
|
| 5759 |
+ border-bottom: 0; |
|
| 5760 |
+} |
|
| 5761 |
+ |
|
| 5762 |
+.panel-group .panel-heading + .panel-collapse .panel-body {
|
|
| 5763 |
+ border-top: 1px solid #dddddd; |
|
| 5764 |
+} |
|
| 5765 |
+ |
|
| 5766 |
+.panel-group .panel-footer {
|
|
| 5767 |
+ border-top: 0; |
|
| 5768 |
+} |
|
| 5769 |
+ |
|
| 5770 |
+.panel-group .panel-footer + .panel-collapse .panel-body {
|
|
| 5771 |
+ border-bottom: 1px solid #dddddd; |
|
| 5772 |
+} |
|
| 5773 |
+ |
|
| 5774 |
+.panel-default {
|
|
| 5775 |
+ border-color: #dddddd; |
|
| 5776 |
+} |
|
| 5777 |
+ |
|
| 5778 |
+.panel-default > .panel-heading {
|
|
| 5779 |
+ color: #333333; |
|
| 5780 |
+ background-color: #f5f5f5; |
|
| 5781 |
+ border-color: #dddddd; |
|
| 5782 |
+} |
|
| 5783 |
+ |
|
| 5784 |
+.panel-default > .panel-heading + .panel-collapse .panel-body {
|
|
| 5785 |
+ border-top-color: #dddddd; |
|
| 5786 |
+} |
|
| 5787 |
+ |
|
| 5788 |
+.panel-default > .panel-footer + .panel-collapse .panel-body {
|
|
| 5789 |
+ border-bottom-color: #dddddd; |
|
| 5790 |
+} |
|
| 5791 |
+ |
|
| 5792 |
+.panel-primary {
|
|
| 5793 |
+ border-color: #428bca; |
|
| 5794 |
+} |
|
| 5795 |
+ |
|
| 5796 |
+.panel-primary > .panel-heading {
|
|
| 5797 |
+ color: #ffffff; |
|
| 5798 |
+ background-color: #428bca; |
|
| 5799 |
+ border-color: #428bca; |
|
| 5800 |
+} |
|
| 5801 |
+ |
|
| 5802 |
+.panel-primary > .panel-heading + .panel-collapse .panel-body {
|
|
| 5803 |
+ border-top-color: #428bca; |
|
| 5804 |
+} |
|
| 5805 |
+ |
|
| 5806 |
+.panel-primary > .panel-footer + .panel-collapse .panel-body {
|
|
| 5807 |
+ border-bottom-color: #428bca; |
|
| 5808 |
+} |
|
| 5809 |
+ |
|
| 5810 |
+.panel-success {
|
|
| 5811 |
+ border-color: #d6e9c6; |
|
| 5812 |
+} |
|
| 5813 |
+ |
|
| 5814 |
+.panel-success > .panel-heading {
|
|
| 5815 |
+ color: #3c763d; |
|
| 5816 |
+ background-color: #dff0d8; |
|
| 5817 |
+ border-color: #d6e9c6; |
|
| 5818 |
+} |
|
| 5819 |
+ |
|
| 5820 |
+.panel-success > .panel-heading + .panel-collapse .panel-body {
|
|
| 5821 |
+ border-top-color: #d6e9c6; |
|
| 5822 |
+} |
|
| 5823 |
+ |
|
| 5824 |
+.panel-success > .panel-footer + .panel-collapse .panel-body {
|
|
| 5825 |
+ border-bottom-color: #d6e9c6; |
|
| 5826 |
+} |
|
| 5827 |
+ |
|
| 5828 |
+.panel-warning {
|
|
| 5829 |
+ border-color: #faebcc; |
|
| 5830 |
+} |
|
| 5831 |
+ |
|
| 5832 |
+.panel-warning > .panel-heading {
|
|
| 5833 |
+ color: #8a6d3b; |
|
| 5834 |
+ background-color: #fcf8e3; |
|
| 5835 |
+ border-color: #faebcc; |
|
| 5836 |
+} |
|
| 5837 |
+ |
|
| 5838 |
+.panel-warning > .panel-heading + .panel-collapse .panel-body {
|
|
| 5839 |
+ border-top-color: #faebcc; |
|
| 5840 |
+} |
|
| 5841 |
+ |
|
| 5842 |
+.panel-warning > .panel-footer + .panel-collapse .panel-body {
|
|
| 5843 |
+ border-bottom-color: #faebcc; |
|
| 5844 |
+} |
|
| 5845 |
+ |
|
| 5846 |
+.panel-danger {
|
|
| 5847 |
+ border-color: #ebccd1; |
|
| 5848 |
+} |
|
| 5849 |
+ |
|
| 5850 |
+.panel-danger > .panel-heading {
|
|
| 5851 |
+ color: #a94442; |
|
| 5852 |
+ background-color: #f2dede; |
|
| 5853 |
+ border-color: #ebccd1; |
|
| 5854 |
+} |
|
| 5855 |
+ |
|
| 5856 |
+.panel-danger > .panel-heading + .panel-collapse .panel-body {
|
|
| 5857 |
+ border-top-color: #ebccd1; |
|
| 5858 |
+} |
|
| 5859 |
+ |
|
| 5860 |
+.panel-danger > .panel-footer + .panel-collapse .panel-body {
|
|
| 5861 |
+ border-bottom-color: #ebccd1; |
|
| 5862 |
+} |
|
| 5863 |
+ |
|
| 5864 |
+.panel-info {
|
|
| 5865 |
+ border-color: #bce8f1; |
|
| 5866 |
+} |
|
| 5867 |
+ |
|
| 5868 |
+.panel-info > .panel-heading {
|
|
| 5869 |
+ color: #31708f; |
|
| 5870 |
+ background-color: #d9edf7; |
|
| 5871 |
+ border-color: #bce8f1; |
|
| 5872 |
+} |
|
| 5873 |
+ |
|
| 5874 |
+.panel-info > .panel-heading + .panel-collapse .panel-body {
|
|
| 5875 |
+ border-top-color: #bce8f1; |
|
| 5876 |
+} |
|
| 5877 |
+ |
|
| 5878 |
+.panel-info > .panel-footer + .panel-collapse .panel-body {
|
|
| 5879 |
+ border-bottom-color: #bce8f1; |
|
| 5880 |
+} |
|
| 5881 |
+ |
|
| 5882 |
+.well {
|
|
| 5883 |
+ min-height: 20px; |
|
| 5884 |
+ padding: 19px; |
|
| 5885 |
+ margin-bottom: 20px; |
|
| 5886 |
+ background-color: #f5f5f5; |
|
| 5887 |
+ border: 1px solid #e3e3e3; |
|
| 5888 |
+ border-radius: 4px; |
|
| 5889 |
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); |
|
| 5890 |
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); |
|
| 5891 |
+} |
|
| 5892 |
+ |
|
| 5893 |
+.well blockquote {
|
|
| 5894 |
+ border-color: #ddd; |
|
| 5895 |
+ border-color: rgba(0, 0, 0, 0.15); |
|
| 5896 |
+} |
|
| 5897 |
+ |
|
| 5898 |
+.well-lg {
|
|
| 5899 |
+ padding: 24px; |
|
| 5900 |
+ border-radius: 6px; |
|
| 5901 |
+} |
|
| 5902 |
+ |
|
| 5903 |
+.well-sm {
|
|
| 5904 |
+ padding: 9px; |
|
| 5905 |
+ border-radius: 3px; |
|
| 5906 |
+} |
|
| 5907 |
+ |
|
| 5908 |
+.close {
|
|
| 5909 |
+ float: right; |
|
| 5910 |
+ font-size: 21px; |
|
| 5911 |
+ font-weight: bold; |
|
| 5912 |
+ line-height: 1; |
|
| 5913 |
+ color: #000000; |
|
| 5914 |
+ text-shadow: 0 1px 0 #ffffff; |
|
| 5915 |
+ opacity: 0.2; |
|
| 5916 |
+ filter: alpha(opacity=20); |
|
| 5917 |
+} |
|
| 5918 |
+ |
|
| 5919 |
+.close:hover, |
|
| 5920 |
+.close:focus {
|
|
| 5921 |
+ color: #000000; |
|
| 5922 |
+ text-decoration: none; |
|
| 5923 |
+ cursor: pointer; |
|
| 5924 |
+ opacity: 0.5; |
|
| 5925 |
+ filter: alpha(opacity=50); |
|
| 5926 |
+} |
|
| 5927 |
+ |
|
| 5928 |
+button.close {
|
|
| 5929 |
+ padding: 0; |
|
| 5930 |
+ cursor: pointer; |
|
| 5931 |
+ background: transparent; |
|
| 5932 |
+ border: 0; |
|
| 5933 |
+ -webkit-appearance: none; |
|
| 5934 |
+} |
|
| 5935 |
+ |
|
| 5936 |
+.modal-open {
|
|
| 5937 |
+ overflow: hidden; |
|
| 5938 |
+} |
|
| 5939 |
+ |
|
| 5940 |
+.modal {
|
|
| 5941 |
+ position: fixed; |
|
| 5942 |
+ top: 0; |
|
| 5943 |
+ right: 0; |
|
| 5944 |
+ bottom: 0; |
|
| 5945 |
+ left: 0; |
|
| 5946 |
+ z-index: 1040; |
|
| 5947 |
+ display: none; |
|
| 5948 |
+ overflow: auto; |
|
| 5949 |
+ overflow-y: scroll; |
|
| 5950 |
+} |
|
| 5951 |
+ |
|
| 5952 |
+.modal.fade .modal-dialog {
|
|
| 5953 |
+ -webkit-transform: translate(0, -25%); |
|
| 5954 |
+ -ms-transform: translate(0, -25%); |
|
| 5955 |
+ transform: translate(0, -25%); |
|
| 5956 |
+ -webkit-transition: -webkit-transform 0.3s ease-out; |
|
| 5957 |
+ -moz-transition: -moz-transform 0.3s ease-out; |
|
| 5958 |
+ -o-transition: -o-transform 0.3s ease-out; |
|
| 5959 |
+ transition: transform 0.3s ease-out; |
|
| 5960 |
+} |
|
| 5961 |
+ |
|
| 5962 |
+.modal.in .modal-dialog {
|
|
| 5963 |
+ -webkit-transform: translate(0, 0); |
|
| 5964 |
+ -ms-transform: translate(0, 0); |
|
| 5965 |
+ transform: translate(0, 0); |
|
| 5966 |
+} |
|
| 5967 |
+ |
|
| 5968 |
+.modal-dialog {
|
|
| 5969 |
+ position: relative; |
|
| 5970 |
+ z-index: 1050; |
|
| 5971 |
+ width: auto; |
|
| 5972 |
+ margin: 10px; |
|
| 5973 |
+} |
|
| 5974 |
+ |
|
| 5975 |
+.modal-content {
|
|
| 5976 |
+ position: relative; |
|
| 5977 |
+ background-color: #ffffff; |
|
| 5978 |
+ border: 1px solid #999999; |
|
| 5979 |
+ border: 1px solid rgba(0, 0, 0, 0.2); |
|
| 5980 |
+ border-radius: 6px; |
|
| 5981 |
+ outline: none; |
|
| 5982 |
+ -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); |
|
| 5983 |
+ box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); |
|
| 5984 |
+ background-clip: padding-box; |
|
| 5985 |
+} |
|
| 5986 |
+ |
|
| 5987 |
+.modal-backdrop {
|
|
| 5988 |
+ position: fixed; |
|
| 5989 |
+ top: 0; |
|
| 5990 |
+ right: 0; |
|
| 5991 |
+ bottom: 0; |
|
| 5992 |
+ left: 0; |
|
| 5993 |
+ z-index: 1030; |
|
| 5994 |
+ background-color: #000000; |
|
| 5995 |
+} |
|
| 5996 |
+ |
|
| 5997 |
+.modal-backdrop.fade {
|
|
| 5998 |
+ opacity: 0; |
|
| 5999 |
+ filter: alpha(opacity=0); |
|
| 6000 |
+} |
|
| 6001 |
+ |
|
| 6002 |
+.modal-backdrop.in {
|
|
| 6003 |
+ opacity: 0.5; |
|
| 6004 |
+ filter: alpha(opacity=50); |
|
| 6005 |
+} |
|
| 6006 |
+ |
|
| 6007 |
+.modal-header {
|
|
| 6008 |
+ min-height: 16.428571429px; |
|
| 6009 |
+ padding: 15px; |
|
| 6010 |
+ border-bottom: 1px solid #e5e5e5; |
|
| 6011 |
+} |
|
| 6012 |
+ |
|
| 6013 |
+.modal-header .close {
|
|
| 6014 |
+ margin-top: -2px; |
|
| 6015 |
+} |
|
| 6016 |
+ |
|
| 6017 |
+.modal-title {
|
|
| 6018 |
+ margin: 0; |
|
| 6019 |
+ line-height: 1.428571429; |
|
| 6020 |
+} |
|
| 6021 |
+ |
|
| 6022 |
+.modal-body {
|
|
| 6023 |
+ position: relative; |
|
| 6024 |
+ padding: 20px; |
|
| 6025 |
+} |
|
| 6026 |
+ |
|
| 6027 |
+.modal-footer {
|
|
| 6028 |
+ padding: 19px 20px 20px; |
|
| 6029 |
+ margin-top: 15px; |
|
| 6030 |
+ text-align: right; |
|
| 6031 |
+ border-top: 1px solid #e5e5e5; |
|
| 6032 |
+} |
|
| 6033 |
+ |
|
| 6034 |
+.modal-footer:before, |
|
| 6035 |
+.modal-footer:after {
|
|
| 6036 |
+ display: table; |
|
| 6037 |
+ content: " "; |
|
| 6038 |
+} |
|
| 6039 |
+ |
|
| 6040 |
+.modal-footer:after {
|
|
| 6041 |
+ clear: both; |
|
| 6042 |
+} |
|
| 6043 |
+ |
|
| 6044 |
+.modal-footer:before, |
|
| 6045 |
+.modal-footer:after {
|
|
| 6046 |
+ display: table; |
|
| 6047 |
+ content: " "; |
|
| 6048 |
+} |
|
| 6049 |
+ |
|
| 6050 |
+.modal-footer:after {
|
|
| 6051 |
+ clear: both; |
|
| 6052 |
+} |
|
| 6053 |
+ |
|
| 6054 |
+.modal-footer .btn + .btn {
|
|
| 6055 |
+ margin-bottom: 0; |
|
| 6056 |
+ margin-left: 5px; |
|
| 6057 |
+} |
|
| 6058 |
+ |
|
| 6059 |
+.modal-footer .btn-group .btn + .btn {
|
|
| 6060 |
+ margin-left: -1px; |
|
| 6061 |
+} |
|
| 6062 |
+ |
|
| 6063 |
+.modal-footer .btn-block + .btn-block {
|
|
| 6064 |
+ margin-left: 0; |
|
| 6065 |
+} |
|
| 6066 |
+ |
|
| 6067 |
+@media screen and (min-width: 768px) {
|
|
| 6068 |
+ .modal-dialog {
|
|
| 6069 |
+ width: 600px; |
|
| 6070 |
+ margin: 30px auto; |
|
| 6071 |
+ } |
|
| 6072 |
+ .modal-content {
|
|
| 6073 |
+ -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); |
|
| 6074 |
+ box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); |
|
| 6075 |
+ } |
|
| 6076 |
+} |
|
| 6077 |
+ |
|
| 6078 |
+.tooltip {
|
|
| 6079 |
+ position: absolute; |
|
| 6080 |
+ z-index: 1030; |
|
| 6081 |
+ display: block; |
|
| 6082 |
+ font-size: 12px; |
|
| 6083 |
+ line-height: 1.4; |
|
| 6084 |
+ opacity: 0; |
|
| 6085 |
+ filter: alpha(opacity=0); |
|
| 6086 |
+ visibility: visible; |
|
| 6087 |
+} |
|
| 6088 |
+ |
|
| 6089 |
+.tooltip.in {
|
|
| 6090 |
+ opacity: 0.9; |
|
| 6091 |
+ filter: alpha(opacity=90); |
|
| 6092 |
+} |
|
| 6093 |
+ |
|
| 6094 |
+.tooltip.top {
|
|
| 6095 |
+ padding: 5px 0; |
|
| 6096 |
+ margin-top: -3px; |
|
| 6097 |
+} |
|
| 6098 |
+ |
|
| 6099 |
+.tooltip.right {
|
|
| 6100 |
+ padding: 0 5px; |
|
| 6101 |
+ margin-left: 3px; |
|
| 6102 |
+} |
|
| 6103 |
+ |
|
| 6104 |
+.tooltip.bottom {
|
|
| 6105 |
+ padding: 5px 0; |
|
| 6106 |
+ margin-top: 3px; |
|
| 6107 |
+} |
|
| 6108 |
+ |
|
| 6109 |
+.tooltip.left {
|
|
| 6110 |
+ padding: 0 5px; |
|
| 6111 |
+ margin-left: -3px; |
|
| 6112 |
+} |
|
| 6113 |
+ |
|
| 6114 |
+.tooltip-inner {
|
|
| 6115 |
+ max-width: 200px; |
|
| 6116 |
+ padding: 3px 8px; |
|
| 6117 |
+ color: #ffffff; |
|
| 6118 |
+ text-align: center; |
|
| 6119 |
+ text-decoration: none; |
|
| 6120 |
+ background-color: #000000; |
|
| 6121 |
+ border-radius: 4px; |
|
| 6122 |
+} |
|
| 6123 |
+ |
|
| 6124 |
+.tooltip-arrow {
|
|
| 6125 |
+ position: absolute; |
|
| 6126 |
+ width: 0; |
|
| 6127 |
+ height: 0; |
|
| 6128 |
+ border-color: transparent; |
|
| 6129 |
+ border-style: solid; |
|
| 6130 |
+} |
|
| 6131 |
+ |
|
| 6132 |
+.tooltip.top .tooltip-arrow {
|
|
| 6133 |
+ bottom: 0; |
|
| 6134 |
+ left: 50%; |
|
| 6135 |
+ margin-left: -5px; |
|
| 6136 |
+ border-top-color: #000000; |
|
| 6137 |
+ border-width: 5px 5px 0; |
|
| 6138 |
+} |
|
| 6139 |
+ |
|
| 6140 |
+.tooltip.top-left .tooltip-arrow {
|
|
| 6141 |
+ bottom: 0; |
|
| 6142 |
+ left: 5px; |
|
| 6143 |
+ border-top-color: #000000; |
|
| 6144 |
+ border-width: 5px 5px 0; |
|
| 6145 |
+} |
|
| 6146 |
+ |
|
| 6147 |
+.tooltip.top-right .tooltip-arrow {
|
|
| 6148 |
+ right: 5px; |
|
| 6149 |
+ bottom: 0; |
|
| 6150 |
+ border-top-color: #000000; |
|
| 6151 |
+ border-width: 5px 5px 0; |
|
| 6152 |
+} |
|
| 6153 |
+ |
|
| 6154 |
+.tooltip.right .tooltip-arrow {
|
|
| 6155 |
+ top: 50%; |
|
| 6156 |
+ left: 0; |
|
| 6157 |
+ margin-top: -5px; |
|
| 6158 |
+ border-right-color: #000000; |
|
| 6159 |
+ border-width: 5px 5px 5px 0; |
|
| 6160 |
+} |
|
| 6161 |
+ |
|
| 6162 |
+.tooltip.left .tooltip-arrow {
|
|
| 6163 |
+ top: 50%; |
|
| 6164 |
+ right: 0; |
|
| 6165 |
+ margin-top: -5px; |
|
| 6166 |
+ border-left-color: #000000; |
|
| 6167 |
+ border-width: 5px 0 5px 5px; |
|
| 6168 |
+} |
|
| 6169 |
+ |
|
| 6170 |
+.tooltip.bottom .tooltip-arrow {
|
|
| 6171 |
+ top: 0; |
|
| 6172 |
+ left: 50%; |
|
| 6173 |
+ margin-left: -5px; |
|
| 6174 |
+ border-bottom-color: #000000; |
|
| 6175 |
+ border-width: 0 5px 5px; |
|
| 6176 |
+} |
|
| 6177 |
+ |
|
| 6178 |
+.tooltip.bottom-left .tooltip-arrow {
|
|
| 6179 |
+ top: 0; |
|
| 6180 |
+ left: 5px; |
|
| 6181 |
+ border-bottom-color: #000000; |
|
| 6182 |
+ border-width: 0 5px 5px; |
|
| 6183 |
+} |
|
| 6184 |
+ |
|
| 6185 |
+.tooltip.bottom-right .tooltip-arrow {
|
|
| 6186 |
+ top: 0; |
|
| 6187 |
+ right: 5px; |
|
| 6188 |
+ border-bottom-color: #000000; |
|
| 6189 |
+ border-width: 0 5px 5px; |
|
| 6190 |
+} |
|
| 6191 |
+ |
|
| 6192 |
+.popover {
|
|
| 6193 |
+ position: absolute; |
|
| 6194 |
+ top: 0; |
|
| 6195 |
+ left: 0; |
|
| 6196 |
+ z-index: 1010; |
|
| 6197 |
+ display: none; |
|
| 6198 |
+ max-width: 276px; |
|
| 6199 |
+ padding: 1px; |
|
| 6200 |
+ text-align: left; |
|
| 6201 |
+ white-space: normal; |
|
| 6202 |
+ background-color: #ffffff; |
|
| 6203 |
+ border: 1px solid #cccccc; |
|
| 6204 |
+ border: 1px solid rgba(0, 0, 0, 0.2); |
|
| 6205 |
+ border-radius: 6px; |
|
| 6206 |
+ -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); |
|
| 6207 |
+ box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); |
|
| 6208 |
+ background-clip: padding-box; |
|
| 6209 |
+} |
|
| 6210 |
+ |
|
| 6211 |
+.popover.top {
|
|
| 6212 |
+ margin-top: -10px; |
|
| 6213 |
+} |
|
| 6214 |
+ |
|
| 6215 |
+.popover.right {
|
|
| 6216 |
+ margin-left: 10px; |
|
| 6217 |
+} |
|
| 6218 |
+ |
|
| 6219 |
+.popover.bottom {
|
|
| 6220 |
+ margin-top: 10px; |
|
| 6221 |
+} |
|
| 6222 |
+ |
|
| 6223 |
+.popover.left {
|
|
| 6224 |
+ margin-left: -10px; |
|
| 6225 |
+} |
|
| 6226 |
+ |
|
| 6227 |
+.popover-title {
|
|
| 6228 |
+ padding: 8px 14px; |
|
| 6229 |
+ margin: 0; |
|
| 6230 |
+ font-size: 14px; |
|
| 6231 |
+ font-weight: normal; |
|
| 6232 |
+ line-height: 18px; |
|
| 6233 |
+ background-color: #f7f7f7; |
|
| 6234 |
+ border-bottom: 1px solid #ebebeb; |
|
| 6235 |
+ border-radius: 5px 5px 0 0; |
|
| 6236 |
+} |
|
| 6237 |
+ |
|
| 6238 |
+.popover-content {
|
|
| 6239 |
+ padding: 9px 14px; |
|
| 6240 |
+} |
|
| 6241 |
+ |
|
| 6242 |
+.popover .arrow, |
|
| 6243 |
+.popover .arrow:after {
|
|
| 6244 |
+ position: absolute; |
|
| 6245 |
+ display: block; |
|
| 6246 |
+ width: 0; |
|
| 6247 |
+ height: 0; |
|
| 6248 |
+ border-color: transparent; |
|
| 6249 |
+ border-style: solid; |
|
| 6250 |
+} |
|
| 6251 |
+ |
|
| 6252 |
+.popover .arrow {
|
|
| 6253 |
+ border-width: 11px; |
|
| 6254 |
+} |
|
| 6255 |
+ |
|
| 6256 |
+.popover .arrow:after {
|
|
| 6257 |
+ border-width: 10px; |
|
| 6258 |
+ content: ""; |
|
| 6259 |
+} |
|
| 6260 |
+ |
|
| 6261 |
+.popover.top .arrow {
|
|
| 6262 |
+ bottom: -11px; |
|
| 6263 |
+ left: 50%; |
|
| 6264 |
+ margin-left: -11px; |
|
| 6265 |
+ border-top-color: #999999; |
|
| 6266 |
+ border-top-color: rgba(0, 0, 0, 0.25); |
|
| 6267 |
+ border-bottom-width: 0; |
|
| 6268 |
+} |
|
| 6269 |
+ |
|
| 6270 |
+.popover.top .arrow:after {
|
|
| 6271 |
+ bottom: 1px; |
|
| 6272 |
+ margin-left: -10px; |
|
| 6273 |
+ border-top-color: #ffffff; |
|
| 6274 |
+ border-bottom-width: 0; |
|
| 6275 |
+ content: " "; |
|
| 6276 |
+} |
|
| 6277 |
+ |
|
| 6278 |
+.popover.right .arrow {
|
|
| 6279 |
+ top: 50%; |
|
| 6280 |
+ left: -11px; |
|
| 6281 |
+ margin-top: -11px; |
|
| 6282 |
+ border-right-color: #999999; |
|
| 6283 |
+ border-right-color: rgba(0, 0, 0, 0.25); |
|
| 6284 |
+ border-left-width: 0; |
|
| 6285 |
+} |
|
| 6286 |
+ |
|
| 6287 |
+.popover.right .arrow:after {
|
|
| 6288 |
+ bottom: -10px; |
|
| 6289 |
+ left: 1px; |
|
| 6290 |
+ border-right-color: #ffffff; |
|
| 6291 |
+ border-left-width: 0; |
|
| 6292 |
+ content: " "; |
|
| 6293 |
+} |
|
| 6294 |
+ |
|
| 6295 |
+.popover.bottom .arrow {
|
|
| 6296 |
+ top: -11px; |
|
| 6297 |
+ left: 50%; |
|
| 6298 |
+ margin-left: -11px; |
|
| 6299 |
+ border-bottom-color: #999999; |
|
| 6300 |
+ border-bottom-color: rgba(0, 0, 0, 0.25); |
|
| 6301 |
+ border-top-width: 0; |
|
| 6302 |
+} |
|
| 6303 |
+ |
|
| 6304 |
+.popover.bottom .arrow:after {
|
|
| 6305 |
+ top: 1px; |
|
| 6306 |
+ margin-left: -10px; |
|
| 6307 |
+ border-bottom-color: #ffffff; |
|
| 6308 |
+ border-top-width: 0; |
|
| 6309 |
+ content: " "; |
|
| 6310 |
+} |
|
| 6311 |
+ |
|
| 6312 |
+.popover.left .arrow {
|
|
| 6313 |
+ top: 50%; |
|
| 6314 |
+ right: -11px; |
|
| 6315 |
+ margin-top: -11px; |
|
| 6316 |
+ border-left-color: #999999; |
|
| 6317 |
+ border-left-color: rgba(0, 0, 0, 0.25); |
|
| 6318 |
+ border-right-width: 0; |
|
| 6319 |
+} |
|
| 6320 |
+ |
|
| 6321 |
+.popover.left .arrow:after {
|
|
| 6322 |
+ right: 1px; |
|
| 6323 |
+ bottom: -10px; |
|
| 6324 |
+ border-left-color: #ffffff; |
|
| 6325 |
+ border-right-width: 0; |
|
| 6326 |
+ content: " "; |
|
| 6327 |
+} |
|
| 6328 |
+ |
|
| 6329 |
+.carousel {
|
|
| 6330 |
+ position: relative; |
|
| 6331 |
+} |
|
| 6332 |
+ |
|
| 6333 |
+.carousel-inner {
|
|
| 6334 |
+ position: relative; |
|
| 6335 |
+ width: 100%; |
|
| 6336 |
+ overflow: hidden; |
|
| 6337 |
+} |
|
| 6338 |
+ |
|
| 6339 |
+.carousel-inner > .item {
|
|
| 6340 |
+ position: relative; |
|
| 6341 |
+ display: none; |
|
| 6342 |
+ -webkit-transition: 0.6s ease-in-out left; |
|
| 6343 |
+ transition: 0.6s ease-in-out left; |
|
| 6344 |
+} |
|
| 6345 |
+ |
|
| 6346 |
+.carousel-inner > .item > img, |
|
| 6347 |
+.carousel-inner > .item > a > img {
|
|
| 6348 |
+ display: block; |
|
| 6349 |
+ height: auto; |
|
| 6350 |
+ max-width: 100%; |
|
| 6351 |
+ line-height: 1; |
|
| 6352 |
+} |
|
| 6353 |
+ |
|
| 6354 |
+.carousel-inner > .active, |
|
| 6355 |
+.carousel-inner > .next, |
|
| 6356 |
+.carousel-inner > .prev {
|
|
| 6357 |
+ display: block; |
|
| 6358 |
+} |
|
| 6359 |
+ |
|
| 6360 |
+.carousel-inner > .active {
|
|
| 6361 |
+ left: 0; |
|
| 6362 |
+} |
|
| 6363 |
+ |
|
| 6364 |
+.carousel-inner > .next, |
|
| 6365 |
+.carousel-inner > .prev {
|
|
| 6366 |
+ position: absolute; |
|
| 6367 |
+ top: 0; |
|
| 6368 |
+ width: 100%; |
|
| 6369 |
+} |
|
| 6370 |
+ |
|
| 6371 |
+.carousel-inner > .next {
|
|
| 6372 |
+ left: 100%; |
|
| 6373 |
+} |
|
| 6374 |
+ |
|
| 6375 |
+.carousel-inner > .prev {
|
|
| 6376 |
+ left: -100%; |
|
| 6377 |
+} |
|
| 6378 |
+ |
|
| 6379 |
+.carousel-inner > .next.left, |
|
| 6380 |
+.carousel-inner > .prev.right {
|
|
| 6381 |
+ left: 0; |
|
| 6382 |
+} |
|
| 6383 |
+ |
|
| 6384 |
+.carousel-inner > .active.left {
|
|
| 6385 |
+ left: -100%; |
|
| 6386 |
+} |
|
| 6387 |
+ |
|
| 6388 |
+.carousel-inner > .active.right {
|
|
| 6389 |
+ left: 100%; |
|
| 6390 |
+} |
|
| 6391 |
+ |
|
| 6392 |
+.carousel-control {
|
|
| 6393 |
+ position: absolute; |
|
| 6394 |
+ top: 0; |
|
| 6395 |
+ bottom: 0; |
|
| 6396 |
+ left: 0; |
|
| 6397 |
+ width: 15%; |
|
| 6398 |
+ font-size: 20px; |
|
| 6399 |
+ color: #ffffff; |
|
| 6400 |
+ text-align: center; |
|
| 6401 |
+ text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); |
|
| 6402 |
+ opacity: 0.5; |
|
| 6403 |
+ filter: alpha(opacity=50); |
|
| 6404 |
+} |
|
| 6405 |
+ |
|
| 6406 |
+.carousel-control.left {
|
|
| 6407 |
+ background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.5) 0), color-stop(rgba(0, 0, 0, 0.0001) 100%)); |
|
| 6408 |
+ background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%); |
|
| 6409 |
+ background-repeat: repeat-x; |
|
| 6410 |
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1); |
|
| 6411 |
+} |
|
| 6412 |
+ |
|
| 6413 |
+.carousel-control.right {
|
|
| 6414 |
+ right: 0; |
|
| 6415 |
+ left: auto; |
|
| 6416 |
+ background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.0001) 0), color-stop(rgba(0, 0, 0, 0.5) 100%)); |
|
| 6417 |
+ background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%); |
|
| 6418 |
+ background-repeat: repeat-x; |
|
| 6419 |
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1); |
|
| 6420 |
+} |
|
| 6421 |
+ |
|
| 6422 |
+.carousel-control:hover, |
|
| 6423 |
+.carousel-control:focus {
|
|
| 6424 |
+ color: #ffffff; |
|
| 6425 |
+ text-decoration: none; |
|
| 6426 |
+ outline: none; |
|
| 6427 |
+ opacity: 0.9; |
|
| 6428 |
+ filter: alpha(opacity=90); |
|
| 6429 |
+} |
|
| 6430 |
+ |
|
| 6431 |
+.carousel-control .icon-prev, |
|
| 6432 |
+.carousel-control .icon-next, |
|
| 6433 |
+.carousel-control .glyphicon-chevron-left, |
|
| 6434 |
+.carousel-control .glyphicon-chevron-right {
|
|
| 6435 |
+ position: absolute; |
|
| 6436 |
+ top: 50%; |
|
| 6437 |
+ z-index: 5; |
|
| 6438 |
+ display: inline-block; |
|
| 6439 |
+} |
|
| 6440 |
+ |
|
| 6441 |
+.carousel-control .icon-prev, |
|
| 6442 |
+.carousel-control .glyphicon-chevron-left {
|
|
| 6443 |
+ left: 50%; |
|
| 6444 |
+} |
|
| 6445 |
+ |
|
| 6446 |
+.carousel-control .icon-next, |
|
| 6447 |
+.carousel-control .glyphicon-chevron-right {
|
|
| 6448 |
+ right: 50%; |
|
| 6449 |
+} |
|
| 6450 |
+ |
|
| 6451 |
+.carousel-control .icon-prev, |
|
| 6452 |
+.carousel-control .icon-next {
|
|
| 6453 |
+ width: 20px; |
|
| 6454 |
+ height: 20px; |
|
| 6455 |
+ margin-top: -10px; |
|
| 6456 |
+ margin-left: -10px; |
|
| 6457 |
+ font-family: serif; |
|
| 6458 |
+} |
|
| 6459 |
+ |
|
| 6460 |
+.carousel-control .icon-prev:before {
|
|
| 6461 |
+ content: '\2039'; |
|
| 6462 |
+} |
|
| 6463 |
+ |
|
| 6464 |
+.carousel-control .icon-next:before {
|
|
| 6465 |
+ content: '\203a'; |
|
| 6466 |
+} |
|
| 6467 |
+ |
|
| 6468 |
+.carousel-indicators {
|
|
| 6469 |
+ position: absolute; |
|
| 6470 |
+ bottom: 10px; |
|
| 6471 |
+ left: 50%; |
|
| 6472 |
+ z-index: 15; |
|
| 6473 |
+ width: 60%; |
|
| 6474 |
+ padding-left: 0; |
|
| 6475 |
+ margin-left: -30%; |
|
| 6476 |
+ text-align: center; |
|
| 6477 |
+ list-style: none; |
|
| 6478 |
+} |
|
| 6479 |
+ |
|
| 6480 |
+.carousel-indicators li {
|
|
| 6481 |
+ display: inline-block; |
|
| 6482 |
+ width: 10px; |
|
| 6483 |
+ height: 10px; |
|
| 6484 |
+ margin: 1px; |
|
| 6485 |
+ text-indent: -999px; |
|
| 6486 |
+ cursor: pointer; |
|
| 6487 |
+ background-color: #000 \9; |
|
| 6488 |
+ background-color: rgba(0, 0, 0, 0); |
|
| 6489 |
+ border: 1px solid #ffffff; |
|
| 6490 |
+ border-radius: 10px; |
|
| 6491 |
+} |
|
| 6492 |
+ |
|
| 6493 |
+.carousel-indicators .active {
|
|
| 6494 |
+ width: 12px; |
|
| 6495 |
+ height: 12px; |
|
| 6496 |
+ margin: 0; |
|
| 6497 |
+ background-color: #ffffff; |
|
| 6498 |
+} |
|
| 6499 |
+ |
|
| 6500 |
+.carousel-caption {
|
|
| 6501 |
+ position: absolute; |
|
| 6502 |
+ right: 15%; |
|
| 6503 |
+ bottom: 20px; |
|
| 6504 |
+ left: 15%; |
|
| 6505 |
+ z-index: 10; |
|
| 6506 |
+ padding-top: 20px; |
|
| 6507 |
+ padding-bottom: 20px; |
|
| 6508 |
+ color: #ffffff; |
|
| 6509 |
+ text-align: center; |
|
| 6510 |
+ text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); |
|
| 6511 |
+} |
|
| 6512 |
+ |
|
| 6513 |
+.carousel-caption .btn {
|
|
| 6514 |
+ text-shadow: none; |
|
| 6515 |
+} |
|
| 6516 |
+ |
|
| 6517 |
+@media screen and (min-width: 768px) {
|
|
| 6518 |
+ .carousel-control .glyphicons-chevron-left, |
|
| 6519 |
+ .carousel-control .glyphicons-chevron-right, |
|
| 6520 |
+ .carousel-control .icon-prev, |
|
| 6521 |
+ .carousel-control .icon-next {
|
|
| 6522 |
+ width: 30px; |
|
| 6523 |
+ height: 30px; |
|
| 6524 |
+ margin-top: -15px; |
|
| 6525 |
+ margin-left: -15px; |
|
| 6526 |
+ font-size: 30px; |
|
| 6527 |
+ } |
|
| 6528 |
+ .carousel-caption {
|
|
| 6529 |
+ right: 20%; |
|
| 6530 |
+ left: 20%; |
|
| 6531 |
+ padding-bottom: 30px; |
|
| 6532 |
+ } |
|
| 6533 |
+ .carousel-indicators {
|
|
| 6534 |
+ bottom: 20px; |
|
| 6535 |
+ } |
|
| 6536 |
+} |
|
| 6537 |
+ |
|
| 6538 |
+.clearfix:before, |
|
| 6539 |
+.clearfix:after {
|
|
| 6540 |
+ display: table; |
|
| 6541 |
+ content: " "; |
|
| 6542 |
+} |
|
| 6543 |
+ |
|
| 6544 |
+.clearfix:after {
|
|
| 6545 |
+ clear: both; |
|
| 6546 |
+} |
|
| 6547 |
+ |
|
| 6548 |
+.center-block {
|
|
| 6549 |
+ display: block; |
|
| 6550 |
+ margin-right: auto; |
|
| 6551 |
+ margin-left: auto; |
|
| 6552 |
+} |
|
| 6553 |
+ |
|
| 6554 |
+.pull-right {
|
|
| 6555 |
+ float: right !important; |
|
| 6556 |
+} |
|
| 6557 |
+ |
|
| 6558 |
+.pull-left {
|
|
| 6559 |
+ float: left !important; |
|
| 6560 |
+} |
|
| 6561 |
+ |
|
| 6562 |
+.hide {
|
|
| 6563 |
+ display: none !important; |
|
| 6564 |
+} |
|
| 6565 |
+ |
|
| 6566 |
+.show {
|
|
| 6567 |
+ display: block !important; |
|
| 6568 |
+} |
|
| 6569 |
+ |
|
| 6570 |
+.invisible {
|
|
| 6571 |
+ visibility: hidden; |
|
| 6572 |
+} |
|
| 6573 |
+ |
|
| 6574 |
+.text-hide {
|
|
| 6575 |
+ font: 0/0 a; |
|
| 6576 |
+ color: transparent; |
|
| 6577 |
+ text-shadow: none; |
|
| 6578 |
+ background-color: transparent; |
|
| 6579 |
+ border: 0; |
|
| 6580 |
+} |
|
| 6581 |
+ |
|
| 6582 |
+.hidden {
|
|
| 6583 |
+ display: none !important; |
|
| 6584 |
+ visibility: hidden !important; |
|
| 6585 |
+} |
|
| 6586 |
+ |
|
| 6587 |
+.affix {
|
|
| 6588 |
+ position: fixed; |
|
| 6589 |
+} |
|
| 6590 |
+ |
|
| 6591 |
+@-ms-viewport {
|
|
| 6592 |
+ width: device-width; |
|
| 6593 |
+} |
|
| 6594 |
+ |
|
| 6595 |
+.visible-xs, |
|
| 6596 |
+tr.visible-xs, |
|
| 6597 |
+th.visible-xs, |
|
| 6598 |
+td.visible-xs {
|
|
| 6599 |
+ display: none !important; |
|
| 6600 |
+} |
|
| 6601 |
+ |
|
| 6602 |
+@media (max-width: 767px) {
|
|
| 6603 |
+ .visible-xs {
|
|
| 6604 |
+ display: block !important; |
|
| 6605 |
+ } |
|
| 6606 |
+ table.visible-xs {
|
|
| 6607 |
+ display: table; |
|
| 6608 |
+ } |
|
| 6609 |
+ tr.visible-xs {
|
|
| 6610 |
+ display: table-row !important; |
|
| 6611 |
+ } |
|
| 6612 |
+ th.visible-xs, |
|
| 6613 |
+ td.visible-xs {
|
|
| 6614 |
+ display: table-cell !important; |
|
| 6615 |
+ } |
|
| 6616 |
+} |
|
| 6617 |
+ |
|
| 6618 |
+@media (min-width: 768px) and (max-width: 991px) {
|
|
| 6619 |
+ .visible-xs.visible-sm {
|
|
| 6620 |
+ display: block !important; |
|
| 6621 |
+ } |
|
| 6622 |
+ table.visible-xs.visible-sm {
|
|
| 6623 |
+ display: table; |
|
| 6624 |
+ } |
|
| 6625 |
+ tr.visible-xs.visible-sm {
|
|
| 6626 |
+ display: table-row !important; |
|
| 6627 |
+ } |
|
| 6628 |
+ th.visible-xs.visible-sm, |
|
| 6629 |
+ td.visible-xs.visible-sm {
|
|
| 6630 |
+ display: table-cell !important; |
|
| 6631 |
+ } |
|
| 6632 |
+} |
|
| 6633 |
+ |
|
| 6634 |
+@media (min-width: 992px) and (max-width: 1199px) {
|
|
| 6635 |
+ .visible-xs.visible-md {
|
|
| 6636 |
+ display: block !important; |
|
| 6637 |
+ } |
|
| 6638 |
+ table.visible-xs.visible-md {
|
|
| 6639 |
+ display: table; |
|
| 6640 |
+ } |
|
| 6641 |
+ tr.visible-xs.visible-md {
|
|
| 6642 |
+ display: table-row !important; |
|
| 6643 |
+ } |
|
| 6644 |
+ th.visible-xs.visible-md, |
|
| 6645 |
+ td.visible-xs.visible-md {
|
|
| 6646 |
+ display: table-cell !important; |
|
| 6647 |
+ } |
|
| 6648 |
+} |
|
| 6649 |
+ |
|
| 6650 |
+@media (min-width: 1200px) {
|
|
| 6651 |
+ .visible-xs.visible-lg {
|
|
| 6652 |
+ display: block !important; |
|
| 6653 |
+ } |
|
| 6654 |
+ table.visible-xs.visible-lg {
|
|
| 6655 |
+ display: table; |
|
| 6656 |
+ } |
|
| 6657 |
+ tr.visible-xs.visible-lg {
|
|
| 6658 |
+ display: table-row !important; |
|
| 6659 |
+ } |
|
| 6660 |
+ th.visible-xs.visible-lg, |
|
| 6661 |
+ td.visible-xs.visible-lg {
|
|
| 6662 |
+ display: table-cell !important; |
|
| 6663 |
+ } |
|
| 6664 |
+} |
|
| 6665 |
+ |
|
| 6666 |
+.visible-sm, |
|
| 6667 |
+tr.visible-sm, |
|
| 6668 |
+th.visible-sm, |
|
| 6669 |
+td.visible-sm {
|
|
| 6670 |
+ display: none !important; |
|
| 6671 |
+} |
|
| 6672 |
+ |
|
| 6673 |
+@media (max-width: 767px) {
|
|
| 6674 |
+ .visible-sm.visible-xs {
|
|
| 6675 |
+ display: block !important; |
|
| 6676 |
+ } |
|
| 6677 |
+ table.visible-sm.visible-xs {
|
|
| 6678 |
+ display: table; |
|
| 6679 |
+ } |
|
| 6680 |
+ tr.visible-sm.visible-xs {
|
|
| 6681 |
+ display: table-row !important; |
|
| 6682 |
+ } |
|
| 6683 |
+ th.visible-sm.visible-xs, |
|
| 6684 |
+ td.visible-sm.visible-xs {
|
|
| 6685 |
+ display: table-cell !important; |
|
| 6686 |
+ } |
|
| 6687 |
+} |
|
| 6688 |
+ |
|
| 6689 |
+@media (min-width: 768px) and (max-width: 991px) {
|
|
| 6690 |
+ .visible-sm {
|
|
| 6691 |
+ display: block !important; |
|
| 6692 |
+ } |
|
| 6693 |
+ table.visible-sm {
|
|
| 6694 |
+ display: table; |
|
| 6695 |
+ } |
|
| 6696 |
+ tr.visible-sm {
|
|
| 6697 |
+ display: table-row !important; |
|
| 6698 |
+ } |
|
| 6699 |
+ th.visible-sm, |
|
| 6700 |
+ td.visible-sm {
|
|
| 6701 |
+ display: table-cell !important; |
|
| 6702 |
+ } |
|
| 6703 |
+} |
|
| 6704 |
+ |
|
| 6705 |
+@media (min-width: 992px) and (max-width: 1199px) {
|
|
| 6706 |
+ .visible-sm.visible-md {
|
|
| 6707 |
+ display: block !important; |
|
| 6708 |
+ } |
|
| 6709 |
+ table.visible-sm.visible-md {
|
|
| 6710 |
+ display: table; |
|
| 6711 |
+ } |
|
| 6712 |
+ tr.visible-sm.visible-md {
|
|
| 6713 |
+ display: table-row !important; |
|
| 6714 |
+ } |
|
| 6715 |
+ th.visible-sm.visible-md, |
|
| 6716 |
+ td.visible-sm.visible-md {
|
|
| 6717 |
+ display: table-cell !important; |
|
| 6718 |
+ } |
|
| 6719 |
+} |
|
| 6720 |
+ |
|
| 6721 |
+@media (min-width: 1200px) {
|
|
| 6722 |
+ .visible-sm.visible-lg {
|
|
| 6723 |
+ display: block !important; |
|
| 6724 |
+ } |
|
| 6725 |
+ table.visible-sm.visible-lg {
|
|
| 6726 |
+ display: table; |
|
| 6727 |
+ } |
|
| 6728 |
+ tr.visible-sm.visible-lg {
|
|
| 6729 |
+ display: table-row !important; |
|
| 6730 |
+ } |
|
| 6731 |
+ th.visible-sm.visible-lg, |
|
| 6732 |
+ td.visible-sm.visible-lg {
|
|
| 6733 |
+ display: table-cell !important; |
|
| 6734 |
+ } |
|
| 6735 |
+} |
|
| 6736 |
+ |
|
| 6737 |
+.visible-md, |
|
| 6738 |
+tr.visible-md, |
|
| 6739 |
+th.visible-md, |
|
| 6740 |
+td.visible-md {
|
|
| 6741 |
+ display: none !important; |
|
| 6742 |
+} |
|
| 6743 |
+ |
|
| 6744 |
+@media (max-width: 767px) {
|
|
| 6745 |
+ .visible-md.visible-xs {
|
|
| 6746 |
+ display: block !important; |
|
| 6747 |
+ } |
|
| 6748 |
+ table.visible-md.visible-xs {
|
|
| 6749 |
+ display: table; |
|
| 6750 |
+ } |
|
| 6751 |
+ tr.visible-md.visible-xs {
|
|
| 6752 |
+ display: table-row !important; |
|
| 6753 |
+ } |
|
| 6754 |
+ th.visible-md.visible-xs, |
|
| 6755 |
+ td.visible-md.visible-xs {
|
|
| 6756 |
+ display: table-cell !important; |
|
| 6757 |
+ } |
|
| 6758 |
+} |
|
| 6759 |
+ |
|
| 6760 |
+@media (min-width: 768px) and (max-width: 991px) {
|
|
| 6761 |
+ .visible-md.visible-sm {
|
|
| 6762 |
+ display: block !important; |
|
| 6763 |
+ } |
|
| 6764 |
+ table.visible-md.visible-sm {
|
|
| 6765 |
+ display: table; |
|
| 6766 |
+ } |
|
| 6767 |
+ tr.visible-md.visible-sm {
|
|
| 6768 |
+ display: table-row !important; |
|
| 6769 |
+ } |
|
| 6770 |
+ th.visible-md.visible-sm, |
|
| 6771 |
+ td.visible-md.visible-sm {
|
|
| 6772 |
+ display: table-cell !important; |
|
| 6773 |
+ } |
|
| 6774 |
+} |
|
| 6775 |
+ |
|
| 6776 |
+@media (min-width: 992px) and (max-width: 1199px) {
|
|
| 6777 |
+ .visible-md {
|
|
| 6778 |
+ display: block !important; |
|
| 6779 |
+ } |
|
| 6780 |
+ table.visible-md {
|
|
| 6781 |
+ display: table; |
|
| 6782 |
+ } |
|
| 6783 |
+ tr.visible-md {
|
|
| 6784 |
+ display: table-row !important; |
|
| 6785 |
+ } |
|
| 6786 |
+ th.visible-md, |
|
| 6787 |
+ td.visible-md {
|
|
| 6788 |
+ display: table-cell !important; |
|
| 6789 |
+ } |
|
| 6790 |
+} |
|
| 6791 |
+ |
|
| 6792 |
+@media (min-width: 1200px) {
|
|
| 6793 |
+ .visible-md.visible-lg {
|
|
| 6794 |
+ display: block !important; |
|
| 6795 |
+ } |
|
| 6796 |
+ table.visible-md.visible-lg {
|
|
| 6797 |
+ display: table; |
|
| 6798 |
+ } |
|
| 6799 |
+ tr.visible-md.visible-lg {
|
|
| 6800 |
+ display: table-row !important; |
|
| 6801 |
+ } |
|
| 6802 |
+ th.visible-md.visible-lg, |
|
| 6803 |
+ td.visible-md.visible-lg {
|
|
| 6804 |
+ display: table-cell !important; |
|
| 6805 |
+ } |
|
| 6806 |
+} |
|
| 6807 |
+ |
|
| 6808 |
+.visible-lg, |
|
| 6809 |
+tr.visible-lg, |
|
| 6810 |
+th.visible-lg, |
|
| 6811 |
+td.visible-lg {
|
|
| 6812 |
+ display: none !important; |
|
| 6813 |
+} |
|
| 6814 |
+ |
|
| 6815 |
+@media (max-width: 767px) {
|
|
| 6816 |
+ .visible-lg.visible-xs {
|
|
| 6817 |
+ display: block !important; |
|
| 6818 |
+ } |
|
| 6819 |
+ table.visible-lg.visible-xs {
|
|
| 6820 |
+ display: table; |
|
| 6821 |
+ } |
|
| 6822 |
+ tr.visible-lg.visible-xs {
|
|
| 6823 |
+ display: table-row !important; |
|
| 6824 |
+ } |
|
| 6825 |
+ th.visible-lg.visible-xs, |
|
| 6826 |
+ td.visible-lg.visible-xs {
|
|
| 6827 |
+ display: table-cell !important; |
|
| 6828 |
+ } |
|
| 6829 |
+} |
|
| 6830 |
+ |
|
| 6831 |
+@media (min-width: 768px) and (max-width: 991px) {
|
|
| 6832 |
+ .visible-lg.visible-sm {
|
|
| 6833 |
+ display: block !important; |
|
| 6834 |
+ } |
|
| 6835 |
+ table.visible-lg.visible-sm {
|
|
| 6836 |
+ display: table; |
|
| 6837 |
+ } |
|
| 6838 |
+ tr.visible-lg.visible-sm {
|
|
| 6839 |
+ display: table-row !important; |
|
| 6840 |
+ } |
|
| 6841 |
+ th.visible-lg.visible-sm, |
|
| 6842 |
+ td.visible-lg.visible-sm {
|
|
| 6843 |
+ display: table-cell !important; |
|
| 6844 |
+ } |
|
| 6845 |
+} |
|
| 6846 |
+ |
|
| 6847 |
+@media (min-width: 992px) and (max-width: 1199px) {
|
|
| 6848 |
+ .visible-lg.visible-md {
|
|
| 6849 |
+ display: block !important; |
|
| 6850 |
+ } |
|
| 6851 |
+ table.visible-lg.visible-md {
|
|
| 6852 |
+ display: table; |
|
| 6853 |
+ } |
|
| 6854 |
+ tr.visible-lg.visible-md {
|
|
| 6855 |
+ display: table-row !important; |
|
| 6856 |
+ } |
|
| 6857 |
+ th.visible-lg.visible-md, |
|
| 6858 |
+ td.visible-lg.visible-md {
|
|
| 6859 |
+ display: table-cell !important; |
|
| 6860 |
+ } |
|
| 6861 |
+} |
|
| 6862 |
+ |
|
| 6863 |
+@media (min-width: 1200px) {
|
|
| 6864 |
+ .visible-lg {
|
|
| 6865 |
+ display: block !important; |
|
| 6866 |
+ } |
|
| 6867 |
+ table.visible-lg {
|
|
| 6868 |
+ display: table; |
|
| 6869 |
+ } |
|
| 6870 |
+ tr.visible-lg {
|
|
| 6871 |
+ display: table-row !important; |
|
| 6872 |
+ } |
|
| 6873 |
+ th.visible-lg, |
|
| 6874 |
+ td.visible-lg {
|
|
| 6875 |
+ display: table-cell !important; |
|
| 6876 |
+ } |
|
| 6877 |
+} |
|
| 6878 |
+ |
|
| 6879 |
+.hidden-xs {
|
|
| 6880 |
+ display: block !important; |
|
| 6881 |
+} |
|
| 6882 |
+ |
|
| 6883 |
+table.hidden-xs {
|
|
| 6884 |
+ display: table; |
|
| 6885 |
+} |
|
| 6886 |
+ |
|
| 6887 |
+tr.hidden-xs {
|
|
| 6888 |
+ display: table-row !important; |
|
| 6889 |
+} |
|
| 6890 |
+ |
|
| 6891 |
+th.hidden-xs, |
|
| 6892 |
+td.hidden-xs {
|
|
| 6893 |
+ display: table-cell !important; |
|
| 6894 |
+} |
|
| 6895 |
+ |
|
| 6896 |
+@media (max-width: 767px) {
|
|
| 6897 |
+ .hidden-xs, |
|
| 6898 |
+ tr.hidden-xs, |
|
| 6899 |
+ th.hidden-xs, |
|
| 6900 |
+ td.hidden-xs {
|
|
| 6901 |
+ display: none !important; |
|
| 6902 |
+ } |
|
| 6903 |
+} |
|
| 6904 |
+ |
|
| 6905 |
+@media (min-width: 768px) and (max-width: 991px) {
|
|
| 6906 |
+ .hidden-xs.hidden-sm, |
|
| 6907 |
+ tr.hidden-xs.hidden-sm, |
|
| 6908 |
+ th.hidden-xs.hidden-sm, |
|
| 6909 |
+ td.hidden-xs.hidden-sm {
|
|
| 6910 |
+ display: none !important; |
|
| 6911 |
+ } |
|
| 6912 |
+} |
|
| 6913 |
+ |
|
| 6914 |
+@media (min-width: 992px) and (max-width: 1199px) {
|
|
| 6915 |
+ .hidden-xs.hidden-md, |
|
| 6916 |
+ tr.hidden-xs.hidden-md, |
|
| 6917 |
+ th.hidden-xs.hidden-md, |
|
| 6918 |
+ td.hidden-xs.hidden-md {
|
|
| 6919 |
+ display: none !important; |
|
| 6920 |
+ } |
|
| 6921 |
+} |
|
| 6922 |
+ |
|
| 6923 |
+@media (min-width: 1200px) {
|
|
| 6924 |
+ .hidden-xs.hidden-lg, |
|
| 6925 |
+ tr.hidden-xs.hidden-lg, |
|
| 6926 |
+ th.hidden-xs.hidden-lg, |
|
| 6927 |
+ td.hidden-xs.hidden-lg {
|
|
| 6928 |
+ display: none !important; |
|
| 6929 |
+ } |
|
| 6930 |
+} |
|
| 6931 |
+ |
|
| 6932 |
+.hidden-sm {
|
|
| 6933 |
+ display: block !important; |
|
| 6934 |
+} |
|
| 6935 |
+ |
|
| 6936 |
+table.hidden-sm {
|
|
| 6937 |
+ display: table; |
|
| 6938 |
+} |
|
| 6939 |
+ |
|
| 6940 |
+tr.hidden-sm {
|
|
| 6941 |
+ display: table-row !important; |
|
| 6942 |
+} |
|
| 6943 |
+ |
|
| 6944 |
+th.hidden-sm, |
|
| 6945 |
+td.hidden-sm {
|
|
| 6946 |
+ display: table-cell !important; |
|
| 6947 |
+} |
|
| 6948 |
+ |
|
| 6949 |
+@media (max-width: 767px) {
|
|
| 6950 |
+ .hidden-sm.hidden-xs, |
|
| 6951 |
+ tr.hidden-sm.hidden-xs, |
|
| 6952 |
+ th.hidden-sm.hidden-xs, |
|
| 6953 |
+ td.hidden-sm.hidden-xs {
|
|
| 6954 |
+ display: none !important; |
|
| 6955 |
+ } |
|
| 6956 |
+} |
|
| 6957 |
+ |
|
| 6958 |
+@media (min-width: 768px) and (max-width: 991px) {
|
|
| 6959 |
+ .hidden-sm, |
|
| 6960 |
+ tr.hidden-sm, |
|
| 6961 |
+ th.hidden-sm, |
|
| 6962 |
+ td.hidden-sm {
|
|
| 6963 |
+ display: none !important; |
|
| 6964 |
+ } |
|
| 6965 |
+} |
|
| 6966 |
+ |
|
| 6967 |
+@media (min-width: 992px) and (max-width: 1199px) {
|
|
| 6968 |
+ .hidden-sm.hidden-md, |
|
| 6969 |
+ tr.hidden-sm.hidden-md, |
|
| 6970 |
+ th.hidden-sm.hidden-md, |
|
| 6971 |
+ td.hidden-sm.hidden-md {
|
|
| 6972 |
+ display: none !important; |
|
| 6973 |
+ } |
|
| 6974 |
+} |
|
| 6975 |
+ |
|
| 6976 |
+@media (min-width: 1200px) {
|
|
| 6977 |
+ .hidden-sm.hidden-lg, |
|
| 6978 |
+ tr.hidden-sm.hidden-lg, |
|
| 6979 |
+ th.hidden-sm.hidden-lg, |
|
| 6980 |
+ td.hidden-sm.hidden-lg {
|
|
| 6981 |
+ display: none !important; |
|
| 6982 |
+ } |
|
| 6983 |
+} |
|
| 6984 |
+ |
|
| 6985 |
+.hidden-md {
|
|
| 6986 |
+ display: block !important; |
|
| 6987 |
+} |
|
| 6988 |
+ |
|
| 6989 |
+table.hidden-md {
|
|
| 6990 |
+ display: table; |
|
| 6991 |
+} |
|
| 6992 |
+ |
|
| 6993 |
+tr.hidden-md {
|
|
| 6994 |
+ display: table-row !important; |
|
| 6995 |
+} |
|
| 6996 |
+ |
|
| 6997 |
+th.hidden-md, |
|
| 6998 |
+td.hidden-md {
|
|
| 6999 |
+ display: table-cell !important; |
|
| 7000 |
+} |
|
| 7001 |
+ |
|
| 7002 |
+@media (max-width: 767px) {
|
|
| 7003 |
+ .hidden-md.hidden-xs, |
|
| 7004 |
+ tr.hidden-md.hidden-xs, |
|
| 7005 |
+ th.hidden-md.hidden-xs, |
|
| 7006 |
+ td.hidden-md.hidden-xs {
|
|
| 7007 |
+ display: none !important; |
|
| 7008 |
+ } |
|
| 7009 |
+} |
|
| 7010 |
+ |
|
| 7011 |
+@media (min-width: 768px) and (max-width: 991px) {
|
|
| 7012 |
+ .hidden-md.hidden-sm, |
|
| 7013 |
+ tr.hidden-md.hidden-sm, |
|
| 7014 |
+ th.hidden-md.hidden-sm, |
|
| 7015 |
+ td.hidden-md.hidden-sm {
|
|
| 7016 |
+ display: none !important; |
|
| 7017 |
+ } |
|
| 7018 |
+} |
|
| 7019 |
+ |
|
| 7020 |
+@media (min-width: 992px) and (max-width: 1199px) {
|
|
| 7021 |
+ .hidden-md, |
|
| 7022 |
+ tr.hidden-md, |
|
| 7023 |
+ th.hidden-md, |
|
| 7024 |
+ td.hidden-md {
|
|
| 7025 |
+ display: none !important; |
|
| 7026 |
+ } |
|
| 7027 |
+} |
|
| 7028 |
+ |
|
| 7029 |
+@media (min-width: 1200px) {
|
|
| 7030 |
+ .hidden-md.hidden-lg, |
|
| 7031 |
+ tr.hidden-md.hidden-lg, |
|
| 7032 |
+ th.hidden-md.hidden-lg, |
|
| 7033 |
+ td.hidden-md.hidden-lg {
|
|
| 7034 |
+ display: none !important; |
|
| 7035 |
+ } |
|
| 7036 |
+} |
|
| 7037 |
+ |
|
| 7038 |
+.hidden-lg {
|
|
| 7039 |
+ display: block !important; |
|
| 7040 |
+} |
|
| 7041 |
+ |
|
| 7042 |
+table.hidden-lg {
|
|
| 7043 |
+ display: table; |
|
| 7044 |
+} |
|
| 7045 |
+ |
|
| 7046 |
+tr.hidden-lg {
|
|
| 7047 |
+ display: table-row !important; |
|
| 7048 |
+} |
|
| 7049 |
+ |
|
| 7050 |
+th.hidden-lg, |
|
| 7051 |
+td.hidden-lg {
|
|
| 7052 |
+ display: table-cell !important; |
|
| 7053 |
+} |
|
| 7054 |
+ |
|
| 7055 |
+@media (max-width: 767px) {
|
|
| 7056 |
+ .hidden-lg.hidden-xs, |
|
| 7057 |
+ tr.hidden-lg.hidden-xs, |
|
| 7058 |
+ th.hidden-lg.hidden-xs, |
|
| 7059 |
+ td.hidden-lg.hidden-xs {
|
|
| 7060 |
+ display: none !important; |
|
| 7061 |
+ } |
|
| 7062 |
+} |
|
| 7063 |
+ |
|
| 7064 |
+@media (min-width: 768px) and (max-width: 991px) {
|
|
| 7065 |
+ .hidden-lg.hidden-sm, |
|
| 7066 |
+ tr.hidden-lg.hidden-sm, |
|
| 7067 |
+ th.hidden-lg.hidden-sm, |
|
| 7068 |
+ td.hidden-lg.hidden-sm {
|
|
| 7069 |
+ display: none !important; |
|
| 7070 |
+ } |
|
| 7071 |
+} |
|
| 7072 |
+ |
|
| 7073 |
+@media (min-width: 992px) and (max-width: 1199px) {
|
|
| 7074 |
+ .hidden-lg.hidden-md, |
|
| 7075 |
+ tr.hidden-lg.hidden-md, |
|
| 7076 |
+ th.hidden-lg.hidden-md, |
|
| 7077 |
+ td.hidden-lg.hidden-md {
|
|
| 7078 |
+ display: none !important; |
|
| 7079 |
+ } |
|
| 7080 |
+} |
|
| 7081 |
+ |
|
| 7082 |
+@media (min-width: 1200px) {
|
|
| 7083 |
+ .hidden-lg, |
|
| 7084 |
+ tr.hidden-lg, |
|
| 7085 |
+ th.hidden-lg, |
|
| 7086 |
+ td.hidden-lg {
|
|
| 7087 |
+ display: none !important; |
|
| 7088 |
+ } |
|
| 7089 |
+} |
|
| 7090 |
+ |
|
| 7091 |
+.visible-print, |
|
| 7092 |
+tr.visible-print, |
|
| 7093 |
+th.visible-print, |
|
| 7094 |
+td.visible-print {
|
|
| 7095 |
+ display: none !important; |
|
| 7096 |
+} |
|
| 7097 |
+ |
|
| 7098 |
+@media print {
|
|
| 7099 |
+ .visible-print {
|
|
| 7100 |
+ display: block !important; |
|
| 7101 |
+ } |
|
| 7102 |
+ table.visible-print {
|
|
| 7103 |
+ display: table; |
|
| 7104 |
+ } |
|
| 7105 |
+ tr.visible-print {
|
|
| 7106 |
+ display: table-row !important; |
|
| 7107 |
+ } |
|
| 7108 |
+ th.visible-print, |
|
| 7109 |
+ td.visible-print {
|
|
| 7110 |
+ display: table-cell !important; |
|
| 7111 |
+ } |
|
| 7112 |
+ .hidden-print, |
|
| 7113 |
+ tr.hidden-print, |
|
| 7114 |
+ th.hidden-print, |
|
| 7115 |
+ td.hidden-print {
|
|
| 7116 |
+ display: none !important; |
|
| 7117 |
+ } |
|
| 7118 |
+} |
|
| 0 | 7119 |
\ No newline at end of file |
| ... | ... |
@@ -0,0 +1,7 @@ |
| 1 |
+/*! |
|
| 2 |
+ * Bootstrap v3.0.3 (http://getbootstrap.com) |
|
| 3 |
+ * Copyright 2013 Twitter, Inc. |
|
| 4 |
+ * Licensed under http://www.apache.org/licenses/LICENSE-2.0 |
|
| 5 |
+ */ |
|
| 6 |
+ |
|
| 7 |
+/*! normalize.css v2.1.3 | MIT License | git.io/normalize */article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,video{display:inline-block}audio:not([controls]){display:none;height:0}[hidden],template{display:none}html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}a{background:transparent}a:focus{outline:thin dotted}a:active,a:hover{outline:0}h1{margin:.67em 0;font-size:2em}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}hr{height:0;-moz-box-sizing:content-box;box-sizing:content-box}mark{color:#000;background:#ff0}code,kbd,pre,samp{font-family:monospace,serif;font-size:1em}pre{white-space:pre-wrap}q{quotes:"\201C" "\201D" "\2018" "\2019"}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:0}fieldset{padding:.35em .625em .75em;margin:0 2px;border:1px solid #c0c0c0}legend{padding:0;border:0}button,input,select,textarea{margin:0;font-family:inherit;font-size:100%}button,input{line-height:normal}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{cursor:pointer;-webkit-appearance:button}button[disabled],html input[disabled]{cursor:default}input[type="checkbox"],input[type="radio"]{padding:0;box-sizing:border-box}input[type="search"]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}textarea{overflow:auto;vertical-align:top}table{border-collapse:collapse;border-spacing:0}@media print{*{color:#000!important;text-shadow:none!important;background:transparent!important;box-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="javascript:"]:after,a[href^="#"]:after{content:""}pre,blockquote{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}img{max-width:100%!important}@page{margin:2cm .5cm}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}select{background:#fff!important}.navbar{display:none}.table td,.table th{background-color:#fff!important}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table-bordered th,.table-bordered td{border:1px solid #ddd!important}}*,*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:62.5%;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.428571429;color:#333;background-color:#fff}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#428bca;text-decoration:none}a:hover,a:focus{color:#2a6496;text-decoration:underline}a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}img{vertical-align:middle}.img-responsive{display:block;height:auto;max-width:100%}.img-rounded{border-radius:6px}.img-thumbnail{display:inline-block;height:auto;max-width:100%;padding:4px;line-height:1.428571429;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-weight:500;line-height:1.1;color:inherit}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small,h1 .small,h2 .small,h3 .small,h4 .small,h5 .small,h6 .small,.h1 .small,.h2 .small,.h3 .small,.h4 .small,.h5 .small,.h6 .small{font-weight:normal;line-height:1;color:#999}h1,h2,h3{margin-top:20px;margin-bottom:10px}h1 small,h2 small,h3 small,h1 .small,h2 .small,h3 .small{font-size:65%}h4,h5,h6{margin-top:10px;margin-bottom:10px}h4 small,h5 small,h6 small,h4 .small,h5 .small,h6 .small{font-size:75%}h1,.h1{font-size:36px}h2,.h2{font-size:30px}h3,.h3{font-size:24px}h4,.h4{font-size:18px}h5,.h5{font-size:14px}h6,.h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:200;line-height:1.4}@media(min-width:768px){.lead{font-size:21px}}small,.small{font-size:85%}cite{font-style:normal}.text-muted{color:#999}.text-primary{color:#428bca}.text-primary:hover{color:#3071a9}.text-warning{color:#8a6d3b}.text-warning:hover{color:#66512c}.text-danger{color:#a94442}.text-danger:hover{color:#843534}.text-success{color:#3c763d}.text-success:hover{color:#2b542c}.text-info{color:#31708f}.text-info:hover{color:#245269}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ul,ol{margin-top:0;margin-bottom:10px}ul ul,ol ul,ul ol,ol ol{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}.list-inline>li:first-child{padding-left:0}dl{margin-top:0;margin-bottom:20px}dt,dd{line-height:1.428571429}dt{font-weight:bold}dd{margin-left:0}@media(min-width:768px){.dl-horizontal dt{float:left;width:160px;overflow:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}.dl-horizontal dd:before,.dl-horizontal dd:after{display:table;content:" "}.dl-horizontal dd:after{clear:both}.dl-horizontal dd:before,.dl-horizontal dd:after{display:table;content:" "}.dl-horizontal dd:after{clear:both}}abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #999}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;border-left:5px solid #eee}blockquote p{font-size:17.5px;font-weight:300;line-height:1.25}blockquote p:last-child{margin-bottom:0}blockquote small,blockquote .small{display:block;line-height:1.428571429;color:#999}blockquote small:before,blockquote .small:before{content:'\2014 \00A0'}blockquote.pull-right{padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0}blockquote.pull-right p,blockquote.pull-right small,blockquote.pull-right .small{text-align:right}blockquote.pull-right small:before,blockquote.pull-right .small:before{content:''}blockquote.pull-right small:after,blockquote.pull-right .small:after{content:'\00A0 \2014'}blockquote:before,blockquote:after{content:""}address{margin-bottom:20px;font-style:normal;line-height:1.428571429}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;white-space:nowrap;background-color:#f9f2f4;border-radius:4px}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.428571429;color:#333;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.container:before,.container:after{display:table;content:" "}.container:after{clear:both}.container:before,.container:after{display:table;content:" "}.container:after{clear:both}@media(min-width:768px){.container{width:750px}}@media(min-width:992px){.container{width:970px}}@media(min-width:1200px){.container{width:1170px}}.row{margin-right:-15px;margin-left:-15px}.row:before,.row:after{display:table;content:" "}.row:after{clear:both}.row:before,.row:after{display:table;content:" "}.row:after{clear:both}.col-xs-1,.col-sm-1,.col-md-1,.col-lg-1,.col-xs-2,.col-sm-2,.col-md-2,.col-lg-2,.col-xs-3,.col-sm-3,.col-md-3,.col-lg-3,.col-xs-4,.col-sm-4,.col-md-4,.col-lg-4,.col-xs-5,.col-sm-5,.col-md-5,.col-lg-5,.col-xs-6,.col-sm-6,.col-md-6,.col-lg-6,.col-xs-7,.col-sm-7,.col-md-7,.col-lg-7,.col-xs-8,.col-sm-8,.col-md-8,.col-lg-8,.col-xs-9,.col-sm-9,.col-md-9,.col-lg-9,.col-xs-10,.col-sm-10,.col-md-10,.col-lg-10,.col-xs-11,.col-sm-11,.col-md-11,.col-lg-11,.col-xs-12,.col-sm-12,.col-md-12,.col-lg-12{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.col-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11,.col-xs-12{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666666666666%}.col-xs-10{width:83.33333333333334%}.col-xs-9{width:75%}.col-xs-8{width:66.66666666666666%}.col-xs-7{width:58.333333333333336%}.col-xs-6{width:50%}.col-xs-5{width:41.66666666666667%}.col-xs-4{width:33.33333333333333%}.col-xs-3{width:25%}.col-xs-2{width:16.666666666666664%}.col-xs-1{width:8.333333333333332%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666666666666%}.col-xs-pull-10{right:83.33333333333334%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666666666666%}.col-xs-pull-7{right:58.333333333333336%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666666666667%}.col-xs-pull-4{right:33.33333333333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.666666666666664%}.col-xs-pull-1{right:8.333333333333332%}.col-xs-pull-0{right:0}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666666666666%}.col-xs-push-10{left:83.33333333333334%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666666666666%}.col-xs-push-7{left:58.333333333333336%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666666666667%}.col-xs-push-4{left:33.33333333333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.666666666666664%}.col-xs-push-1{left:8.333333333333332%}.col-xs-push-0{left:0}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666666666666%}.col-xs-offset-10{margin-left:83.33333333333334%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666666666666%}.col-xs-offset-7{margin-left:58.333333333333336%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666666666667%}.col-xs-offset-4{margin-left:33.33333333333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.666666666666664%}.col-xs-offset-1{margin-left:8.333333333333332%}.col-xs-offset-0{margin-left:0}@media(min-width:768px){.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666666666666%}.col-sm-10{width:83.33333333333334%}.col-sm-9{width:75%}.col-sm-8{width:66.66666666666666%}.col-sm-7{width:58.333333333333336%}.col-sm-6{width:50%}.col-sm-5{width:41.66666666666667%}.col-sm-4{width:33.33333333333333%}.col-sm-3{width:25%}.col-sm-2{width:16.666666666666664%}.col-sm-1{width:8.333333333333332%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666666666666%}.col-sm-pull-10{right:83.33333333333334%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666666666666%}.col-sm-pull-7{right:58.333333333333336%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666666666667%}.col-sm-pull-4{right:33.33333333333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.666666666666664%}.col-sm-pull-1{right:8.333333333333332%}.col-sm-pull-0{right:0}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666666666666%}.col-sm-push-10{left:83.33333333333334%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666666666666%}.col-sm-push-7{left:58.333333333333336%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666666666667%}.col-sm-push-4{left:33.33333333333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.666666666666664%}.col-sm-push-1{left:8.333333333333332%}.col-sm-push-0{left:0}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666666666666%}.col-sm-offset-10{margin-left:83.33333333333334%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666666666666%}.col-sm-offset-7{margin-left:58.333333333333336%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666666666667%}.col-sm-offset-4{margin-left:33.33333333333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.666666666666664%}.col-sm-offset-1{margin-left:8.333333333333332%}.col-sm-offset-0{margin-left:0}}@media(min-width:992px){.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666666666666%}.col-md-10{width:83.33333333333334%}.col-md-9{width:75%}.col-md-8{width:66.66666666666666%}.col-md-7{width:58.333333333333336%}.col-md-6{width:50%}.col-md-5{width:41.66666666666667%}.col-md-4{width:33.33333333333333%}.col-md-3{width:25%}.col-md-2{width:16.666666666666664%}.col-md-1{width:8.333333333333332%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666666666666%}.col-md-pull-10{right:83.33333333333334%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666666666666%}.col-md-pull-7{right:58.333333333333336%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666666666667%}.col-md-pull-4{right:33.33333333333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.666666666666664%}.col-md-pull-1{right:8.333333333333332%}.col-md-pull-0{right:0}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666666666666%}.col-md-push-10{left:83.33333333333334%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666666666666%}.col-md-push-7{left:58.333333333333336%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666666666667%}.col-md-push-4{left:33.33333333333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.666666666666664%}.col-md-push-1{left:8.333333333333332%}.col-md-push-0{left:0}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666666666666%}.col-md-offset-10{margin-left:83.33333333333334%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666666666666%}.col-md-offset-7{margin-left:58.333333333333336%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666666666667%}.col-md-offset-4{margin-left:33.33333333333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.666666666666664%}.col-md-offset-1{margin-left:8.333333333333332%}.col-md-offset-0{margin-left:0}}@media(min-width:1200px){.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666666666666%}.col-lg-10{width:83.33333333333334%}.col-lg-9{width:75%}.col-lg-8{width:66.66666666666666%}.col-lg-7{width:58.333333333333336%}.col-lg-6{width:50%}.col-lg-5{width:41.66666666666667%}.col-lg-4{width:33.33333333333333%}.col-lg-3{width:25%}.col-lg-2{width:16.666666666666664%}.col-lg-1{width:8.333333333333332%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666666666666%}.col-lg-pull-10{right:83.33333333333334%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666666666666%}.col-lg-pull-7{right:58.333333333333336%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666666666667%}.col-lg-pull-4{right:33.33333333333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.666666666666664%}.col-lg-pull-1{right:8.333333333333332%}.col-lg-pull-0{right:0}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666666666666%}.col-lg-push-10{left:83.33333333333334%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666666666666%}.col-lg-push-7{left:58.333333333333336%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666666666667%}.col-lg-push-4{left:33.33333333333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.666666666666664%}.col-lg-push-1{left:8.333333333333332%}.col-lg-push-0{left:0}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666666666666%}.col-lg-offset-10{margin-left:83.33333333333334%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666666666666%}.col-lg-offset-7{margin-left:58.333333333333336%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666666666667%}.col-lg-offset-4{margin-left:33.33333333333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.666666666666664%}.col-lg-offset-1{margin-left:8.333333333333332%}.col-lg-offset-0{margin-left:0}}table{max-width:100%;background-color:transparent}th{text-align:left}.table{width:100%;margin-bottom:20px}.table>thead>tr>th,.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>td,.table>tbody>tr>td,.table>tfoot>tr>td{padding:8px;line-height:1.428571429;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>th,.table>caption+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>td,.table>thead:first-child>tr:first-child>td{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>thead>tr>th,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>tbody>tr>td,.table-condensed>tfoot>tr>td{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>tbody>tr>td,.table-bordered>tfoot>tr>td{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>thead>tr>td{border-bottom-width:2px}.table-striped>tbody>tr:nth-child(odd)>td,.table-striped>tbody>tr:nth-child(odd)>th{background-color:#f9f9f9}.table-hover>tbody>tr:hover>td,.table-hover>tbody>tr:hover>th{background-color:#f5f5f5}table col[class*="col-"]{position:static;display:table-column;float:none}table td[class*="col-"],table th[class*="col-"]{display:table-cell;float:none}.table>thead>tr>.active,.table>tbody>tr>.active,.table>tfoot>tr>.active,.table>thead>.active>td,.table>tbody>.active>td,.table>tfoot>.active>td,.table>thead>.active>th,.table>tbody>.active>th,.table>tfoot>.active>th{background-color:#f5f5f5}.table-hover>tbody>tr>.active:hover,.table-hover>tbody>.active:hover>td,.table-hover>tbody>.active:hover>th{background-color:#e8e8e8}.table>thead>tr>.success,.table>tbody>tr>.success,.table>tfoot>tr>.success,.table>thead>.success>td,.table>tbody>.success>td,.table>tfoot>.success>td,.table>thead>.success>th,.table>tbody>.success>th,.table>tfoot>.success>th{background-color:#dff0d8}.table-hover>tbody>tr>.success:hover,.table-hover>tbody>.success:hover>td,.table-hover>tbody>.success:hover>th{background-color:#d0e9c6}.table>thead>tr>.danger,.table>tbody>tr>.danger,.table>tfoot>tr>.danger,.table>thead>.danger>td,.table>tbody>.danger>td,.table>tfoot>.danger>td,.table>thead>.danger>th,.table>tbody>.danger>th,.table>tfoot>.danger>th{background-color:#f2dede}.table-hover>tbody>tr>.danger:hover,.table-hover>tbody>.danger:hover>td,.table-hover>tbody>.danger:hover>th{background-color:#ebcccc}.table>thead>tr>.warning,.table>tbody>tr>.warning,.table>tfoot>tr>.warning,.table>thead>.warning>td,.table>tbody>.warning>td,.table>tfoot>.warning>td,.table>thead>.warning>th,.table>tbody>.warning>th,.table>tfoot>.warning>th{background-color:#fcf8e3}.table-hover>tbody>tr>.warning:hover,.table-hover>tbody>.warning:hover>td,.table-hover>tbody>.warning:hover>th{background-color:#faf2cc}@media(max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-x:scroll;overflow-y:hidden;border:1px solid #ddd;-ms-overflow-style:-ms-autohiding-scrollbar;-webkit-overflow-scrolling:touch}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>thead>tr>th,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tfoot>tr>td{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>thead>tr>th:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.table-responsive>.table-bordered>thead>tr>th:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>th,.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}}fieldset{padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;margin-bottom:5px;font-weight:bold}input[type="search"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type="radio"],input[type="checkbox"]{margin:4px 0 0;margin-top:1px \9;line-height:normal}input[type="file"]{display:block}select[multiple],select[size]{height:auto}select optgroup{font-family:inherit;font-size:inherit;font-style:inherit}input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}input[type="number"]::-webkit-outer-spin-button,input[type="number"]::-webkit-inner-spin-button{height:auto}output{display:block;padding-top:7px;font-size:14px;line-height:1.428571429;color:#555;vertical-align:middle}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.428571429;color:#555;vertical-align:middle;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-webkit-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(102,175,233,0.6);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(102,175,233,0.6)}.form-control:-moz-placeholder{color:#999}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{cursor:not-allowed;background-color:#eee}textarea.form-control{height:auto}.form-group{margin-bottom:15px}.radio,.checkbox{display:block;min-height:20px;padding-left:20px;margin-top:10px;margin-bottom:10px;vertical-align:middle}.radio label,.checkbox label{display:inline;margin-bottom:0;font-weight:normal;cursor:pointer}.radio input[type="radio"],.radio-inline input[type="radio"],.checkbox input[type="checkbox"],.checkbox-inline input[type="checkbox"]{float:left;margin-left:-20px}.radio+.radio,.checkbox+.checkbox{margin-top:-5px}.radio-inline,.checkbox-inline{display:inline-block;padding-left:20px;margin-bottom:0;font-weight:normal;vertical-align:middle;cursor:pointer}.radio-inline+.radio-inline,.checkbox-inline+.checkbox-inline{margin-top:0;margin-left:10px}input[type="radio"][disabled],input[type="checkbox"][disabled],.radio[disabled],.radio-inline[disabled],.checkbox[disabled],.checkbox-inline[disabled],fieldset[disabled] input[type="radio"],fieldset[disabled] input[type="checkbox"],fieldset[disabled] .radio,fieldset[disabled] .radio-inline,fieldset[disabled] .checkbox,fieldset[disabled] .checkbox-inline{cursor:not-allowed}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}textarea.input-sm{height:auto}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}select.input-lg{height:46px;line-height:46px}textarea.input-lg{height:auto}.has-warning .help-block,.has-warning .control-label,.has-warning .radio,.has-warning .checkbox,.has-warning .radio-inline,.has-warning .checkbox-inline{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}.has-error .help-block,.has-error .control-label,.has-error .radio,.has-error .checkbox,.has-error .radio-inline,.has-error .checkbox-inline{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}.has-success .help-block,.has-success .control-label,.has-success .radio,.has-success .checkbox,.has-success .radio-inline,.has-success .checkbox-inline{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}.form-control-static{margin-bottom:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media(min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block}.form-inline select.form-control{width:auto}.form-inline .radio,.form-inline .checkbox{display:inline-block;padding-left:0;margin-top:0;margin-bottom:0}.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{float:none;margin-left:0}}.form-horizontal .control-label,.form-horizontal .radio,.form-horizontal .checkbox,.form-horizontal .radio-inline,.form-horizontal .checkbox-inline{padding-top:7px;margin-top:0;margin-bottom:0}.form-horizontal .radio,.form-horizontal .checkbox{min-height:27px}.form-horizontal .form-group{margin-right:-15px;margin-left:-15px}.form-horizontal .form-group:before,.form-horizontal .form-group:after{display:table;content:" "}.form-horizontal .form-group:after{clear:both}.form-horizontal .form-group:before,.form-horizontal .form-group:after{display:table;content:" "}.form-horizontal .form-group:after{clear:both}.form-horizontal .form-control-static{padding-top:7px}@media(min-width:768px){.form-horizontal .control-label{text-align:right}}.btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:normal;line-height:1.428571429;text-align:center;white-space:nowrap;vertical-align:middle;cursor:pointer;background-image:none;border:1px solid transparent;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none}.btn:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn:hover,.btn:focus{color:#333;text-decoration:none}.btn:active,.btn.active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{pointer-events:none;cursor:not-allowed;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default:hover,.btn-default:focus,.btn-default:active,.btn-default.active,.open .dropdown-toggle.btn-default{color:#333;background-color:#ebebeb;border-color:#adadad}.btn-default:active,.btn-default.active,.open .dropdown-toggle.btn-default{background-image:none}.btn-default.disabled,.btn-default[disabled],fieldset[disabled] .btn-default,.btn-default.disabled:hover,.btn-default[disabled]:hover,fieldset[disabled] .btn-default:hover,.btn-default.disabled:focus,.btn-default[disabled]:focus,fieldset[disabled] .btn-default:focus,.btn-default.disabled:active,.btn-default[disabled]:active,fieldset[disabled] .btn-default:active,.btn-default.disabled.active,.btn-default[disabled].active,fieldset[disabled] .btn-default.active{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#fff}.btn-primary{color:#fff;background-color:#428bca;border-color:#357ebd}.btn-primary:hover,.btn-primary:focus,.btn-primary:active,.btn-primary.active,.open .dropdown-toggle.btn-primary{color:#fff;background-color:#3276b1;border-color:#285e8e}.btn-primary:active,.btn-primary.active,.open .dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled,.btn-primary[disabled],fieldset[disabled] .btn-primary,.btn-primary.disabled:hover,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary:hover,.btn-primary.disabled:focus,.btn-primary[disabled]:focus,fieldset[disabled] .btn-primary:focus,.btn-primary.disabled:active,.btn-primary[disabled]:active,fieldset[disabled] .btn-primary:active,.btn-primary.disabled.active,.btn-primary[disabled].active,fieldset[disabled] .btn-primary.active{background-color:#428bca;border-color:#357ebd}.btn-primary .badge{color:#428bca;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning:hover,.btn-warning:focus,.btn-warning:active,.btn-warning.active,.open .dropdown-toggle.btn-warning{color:#fff;background-color:#ed9c28;border-color:#d58512}.btn-warning:active,.btn-warning.active,.open .dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled,.btn-warning[disabled],fieldset[disabled] .btn-warning,.btn-warning.disabled:hover,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning:hover,.btn-warning.disabled:focus,.btn-warning[disabled]:focus,fieldset[disabled] .btn-warning:focus,.btn-warning.disabled:active,.btn-warning[disabled]:active,fieldset[disabled] .btn-warning:active,.btn-warning.disabled.active,.btn-warning[disabled].active,fieldset[disabled] .btn-warning.active{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger:hover,.btn-danger:focus,.btn-danger:active,.btn-danger.active,.open .dropdown-toggle.btn-danger{color:#fff;background-color:#d2322d;border-color:#ac2925}.btn-danger:active,.btn-danger.active,.open .dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled,.btn-danger[disabled],fieldset[disabled] .btn-danger,.btn-danger.disabled:hover,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger:hover,.btn-danger.disabled:focus,.btn-danger[disabled]:focus,fieldset[disabled] .btn-danger:focus,.btn-danger.disabled:active,.btn-danger[disabled]:active,fieldset[disabled] .btn-danger:active,.btn-danger.disabled.active,.btn-danger[disabled].active,fieldset[disabled] .btn-danger.active{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success:hover,.btn-success:focus,.btn-success:active,.btn-success.active,.open .dropdown-toggle.btn-success{color:#fff;background-color:#47a447;border-color:#398439}.btn-success:active,.btn-success.active,.open .dropdown-toggle.btn-success{background-image:none}.btn-success.disabled,.btn-success[disabled],fieldset[disabled] .btn-success,.btn-success.disabled:hover,.btn-success[disabled]:hover,fieldset[disabled] .btn-success:hover,.btn-success.disabled:focus,.btn-success[disabled]:focus,fieldset[disabled] .btn-success:focus,.btn-success.disabled:active,.btn-success[disabled]:active,fieldset[disabled] .btn-success:active,.btn-success.disabled.active,.btn-success[disabled].active,fieldset[disabled] .btn-success.active{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info:hover,.btn-info:focus,.btn-info:active,.btn-info.active,.open .dropdown-toggle.btn-info{color:#fff;background-color:#39b3d7;border-color:#269abc}.btn-info:active,.btn-info.active,.open .dropdown-toggle.btn-info{background-image:none}.btn-info.disabled,.btn-info[disabled],fieldset[disabled] .btn-info,.btn-info.disabled:hover,.btn-info[disabled]:hover,fieldset[disabled] .btn-info:hover,.btn-info.disabled:focus,.btn-info[disabled]:focus,fieldset[disabled] .btn-info:focus,.btn-info.disabled:active,.btn-info[disabled]:active,fieldset[disabled] .btn-info:active,.btn-info.disabled.active,.btn-info[disabled].active,fieldset[disabled] .btn-info.active{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-link{font-weight:normal;color:#428bca;cursor:pointer;border-radius:0}.btn-link,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active{border-color:transparent}.btn-link:hover,.btn-link:focus{color:#2a6496;text-decoration:underline;background-color:transparent}.btn-link[disabled]:hover,fieldset[disabled] .btn-link:hover,.btn-link[disabled]:focus,fieldset[disabled] .btn-link:focus{color:#999;text-decoration:none}.btn-lg{padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%;padding-right:0;padding-left:0}.btn-block+.btn-block{margin-top:5px}input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition:height .35s ease;transition:height .35s ease}@font-face{font-family:'Glyphicons Halflings';src:url('../fonts/glyphicons-halflings-regular.eot');src:url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'),url('../fonts/glyphicons-halflings-regular.woff') format('woff'),url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'),url('../fonts/glyphicons-halflings-regular.svg#glyphicons-halflingsregular') format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';-webkit-font-smoothing:antialiased;font-style:normal;font-weight:normal;line-height:1;-moz-osx-font-smoothing:grayscale}.glyphicon:empty{width:1em}.glyphicon-asterisk:before{content:"\2a"}.glyphicon-plus:before{content:"\2b"}.glyphicon-euro:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.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-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-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-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-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px solid;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;list-style:none;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.175);box-shadow:0 6px 12px rgba(0,0,0,0.175);background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:1.428571429;color:#333;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{color:#262626;text-decoration:none;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;background-color:#428bca;outline:0}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#999}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.428571429;color:#999}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px solid;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px}@media(min-width:768px){.navbar-right .dropdown-menu{right:0;left:auto}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;float:left}.btn-group>.btn:hover,.btn-group-vertical>.btn:hover,.btn-group>.btn:focus,.btn-group-vertical>.btn:focus,.btn-group>.btn:active,.btn-group-vertical>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn.active{z-index:2}.btn-group>.btn:focus,.btn-group-vertical>.btn:focus{outline:0}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar:before,.btn-toolbar:after{display:table;content:" "}.btn-toolbar:after{clear:both}.btn-toolbar:before,.btn-toolbar:after{display:table;content:" "}.btn-toolbar:after{clear:both}.btn-toolbar .btn-group{float:left}.btn-toolbar>.btn+.btn,.btn-toolbar>.btn-group+.btn,.btn-toolbar>.btn+.btn-group,.btn-toolbar>.btn-group+.btn-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child>.btn:last-child,.btn-group>.btn-group:first-child>.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:last-child>.btn:first-child{border-bottom-left-radius:0;border-top-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group-xs>.btn{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-group-sm>.btn{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-group-lg>.btn{padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}.btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-right:12px;padding-left:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group:before,.btn-group-vertical>.btn-group:after{display:table;content:" "}.btn-group-vertical>.btn-group:after{clear:both}.btn-group-vertical>.btn-group:before,.btn-group-vertical>.btn-group:after{display:table;content:" "}.btn-group-vertical>.btn-group:after{clear:both}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-right-radius:0;border-bottom-left-radius:4px;border-top-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child>.btn:last-child,.btn-group-vertical>.btn-group:first-child>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child>.btn:first-child{border-top-right-radius:0;border-top-left-radius:0}.btn-group-justified{display:table;width:100%;border-collapse:separate;table-layout:fixed}.btn-group-justified>.btn,.btn-group-justified>.btn-group{display:table-cell;float:none;width:1%}.btn-group-justified>.btn-group .btn{width:100%}[data-toggle="buttons"]>.btn>input[type="radio"],[data-toggle="buttons"]>.btn>input[type="checkbox"]{display:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*="col-"]{float:none;padding-right:0;padding-left:0}.input-group .form-control{width:100%;margin-bottom:0}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn{height:auto}.input-group-addon,.input-group-btn,.input-group .form-control{display:table-cell}.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child),.input-group .form-control:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:normal;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type="radio"],.input-group-addon input[type="checkbox"]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:last-child>.btn,.input-group-btn:last-child>.dropdown-toggle,.input-group-btn:first-child>.btn:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;white-space:nowrap}.input-group-btn:first-child>.btn{margin-right:-1px}.input-group-btn:last-child>.btn{margin-left:-1px}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-4px}.input-group-btn>.btn:hover,.input-group-btn>.btn:active{z-index:2}.nav{padding-left:0;margin-bottom:0;list-style:none}.nav:before,.nav:after{display:table;content:" "}.nav:after{clear:both}.nav:before,.nav:after{display:table;content:" "}.nav:after{clear:both}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#999}.nav>li.disabled>a:hover,.nav>li.disabled>a:focus{color:#999;text-decoration:none;cursor:not-allowed;background-color:transparent}.nav .open>a,.nav .open>a:hover,.nav .open>a:focus{background-color:#eee;border-color:#428bca}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.428571429;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media(min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border:1px solid #ddd}@media(min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:hover,.nav-pills>li.active>a:focus{color:#fff;background-color:#428bca}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media(min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border:1px solid #ddd}@media(min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}.navbar:before,.navbar:after{display:table;content:" "}.navbar:after{clear:both}.navbar:before,.navbar:after{display:table;content:" "}.navbar:after{clear:both}@media(min-width:768px){.navbar{border-radius:4px}}.navbar-header:before,.navbar-header:after{display:table;content:" "}.navbar-header:after{clear:both}.navbar-header:before,.navbar-header:after{display:table;content:" "}.navbar-header:after{clear:both}@media(min-width:768px){.navbar-header{float:left}}.navbar-collapse{max-height:340px;padding-right:15px;padding-left:15px;overflow-x:visible;border-top:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,0.1);-webkit-overflow-scrolling:touch}.navbar-collapse:before,.navbar-collapse:after{display:table;content:" "}.navbar-collapse:after{clear:both}.navbar-collapse:before,.navbar-collapse:after{display:table;content:" "}.navbar-collapse:after{clear:both}.navbar-collapse.in{overflow-y:auto}@media(min-width:768px){.navbar-collapse{width:auto;border-top:0;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{padding-right:0;padding-left:0}}.container>.navbar-header,.container>.navbar-collapse{margin-right:-15px;margin-left:-15px}@media(min-width:768px){.container>.navbar-header,.container>.navbar-collapse{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media(min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030}@media(min-width:768px){.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;padding:15px 15px;font-size:18px;line-height:20px}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}@media(min-width:768px){.navbar>.container .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;padding:9px 10px;margin-top:8px;margin-right:15px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media(min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media(max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;box-shadow:none}.navbar-nav .open .dropdown-menu>li>a,.navbar-nav .open .dropdown-menu .dropdown-header{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:hover,.navbar-nav .open .dropdown-menu>li>a:focus{background-image:none}}@media(min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}.navbar-nav.navbar-right:last-child{margin-right:-15px}}@media(min-width:768px){.navbar-left{float:left!important}.navbar-right{float:right!important}}.navbar-form{padding:10px 15px;margin-top:8px;margin-right:-15px;margin-bottom:8px;margin-left:-15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1)}@media(min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block}.navbar-form select.form-control{width:auto}.navbar-form .radio,.navbar-form .checkbox{display:inline-block;padding-left:0;margin-top:0;margin-bottom:0}.navbar-form .radio input[type="radio"],.navbar-form .checkbox input[type="checkbox"]{float:none;margin-left:0}}@media(max-width:767px){.navbar-form .form-group{margin-bottom:5px}}@media(min-width:768px){.navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none}.navbar-form.navbar-right:last-child{margin-right:-15px}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-nav.pull-right>li>.dropdown-menu,.navbar-nav>li>.dropdown-menu.pull-right{right:0;left:auto}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media(min-width:768px){.navbar-text{float:left;margin-right:15px;margin-left:15px}.navbar-text.navbar-right:last-child{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:hover,.navbar-default .navbar-brand:focus{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:hover,.navbar-default .navbar-nav>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:hover,.navbar-default .navbar-nav>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:hover,.navbar-default .navbar-nav>.disabled>a:focus{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:hover,.navbar-default .navbar-toggle:focus{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#ccc}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:hover,.navbar-default .navbar-nav>.open>a:focus{color:#555;background-color:#e7e7e7}@media(max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#999}.navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-brand:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#999}.navbar-inverse .navbar-nav>li>a{color:#999}.navbar-inverse .navbar-nav>li>a:hover,.navbar-inverse .navbar-nav>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:hover,.navbar-inverse .navbar-nav>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:hover,.navbar-inverse .navbar-nav>.disabled>a:focus{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:hover,.navbar-inverse .navbar-toggle:focus{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:hover,.navbar-inverse .navbar-nav>.open>a:focus{color:#fff;background-color:#080808}@media(max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#999}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#999}.navbar-inverse .navbar-link:hover{color:#fff}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{padding:0 5px;color:#ccc;content:"/\00a0"}.breadcrumb>.active{color:#999}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.428571429;text-decoration:none;background-color:#fff;border:1px solid #ddd}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:4px;border-top-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}.pagination>li>a:hover,.pagination>li>span:hover,.pagination>li>a:focus,.pagination>li>span:focus{background-color:#eee}.pagination>.active>a,.pagination>.active>span,.pagination>.active>a:hover,.pagination>.active>span:hover,.pagination>.active>a:focus,.pagination>.active>span:focus{z-index:2;color:#fff;cursor:default;background-color:#428bca;border-color:#428bca}.pagination>.disabled>span,.pagination>.disabled>span:hover,.pagination>.disabled>span:focus,.pagination>.disabled>a,.pagination>.disabled>a:hover,.pagination>.disabled>a:focus{color:#999;cursor:not-allowed;background-color:#fff;border-color:#ddd}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-bottom-left-radius:6px;border-top-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-bottom-left-radius:3px;border-top-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}.pager{padding-left:0;margin:20px 0;text-align:center;list-style:none}.pager:before,.pager:after{display:table;content:" "}.pager:after{clear:both}.pager:before,.pager:after{display:table;content:" "}.pager:after{clear:both}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:hover,.pager li>a:focus{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>a:focus,.pager .disabled>span{color:#999;cursor:not-allowed;background-color:#fff}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:bold;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}.label[href]:hover,.label[href]:focus{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#999}.label-default[href]:hover,.label-default[href]:focus{background-color:#808080}.label-primary{background-color:#428bca}.label-primary[href]:hover,.label-primary[href]:focus{background-color:#3071a9}.label-success{background-color:#5cb85c}.label-success[href]:hover,.label-success[href]:focus{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:hover,.label-info[href]:focus{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:hover,.label-warning[href]:focus{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:hover,.label-danger[href]:focus{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:bold;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;background-color:#999;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}a.badge:hover,a.badge:focus{color:#fff;text-decoration:none;cursor:pointer}a.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#428bca;background-color:#fff}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding:30px;margin-bottom:30px;font-size:21px;font-weight:200;line-height:2.1428571435;color:inherit;background-color:#eee}.jumbotron h1,.jumbotron .h1{line-height:1;color:inherit}.jumbotron p{line-height:1.4}.container .jumbotron{border-radius:6px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron{padding-right:60px;padding-left:60px}.jumbotron h1,.jumbotron .h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.428571429;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.thumbnail>img,.thumbnail a>img{display:block;height:auto;max-width:100%;margin-right:auto;margin-left:auto}a.thumbnail:hover,a.thumbnail:focus,a.thumbnail.active{border-color:#428bca}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:bold}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable{padding-right:35px}.alert-dismissable .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#428bca;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-webkit-transition:width .6s ease;transition:width .6s ease}.progress-striped .progress-bar{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-size:40px 40px}.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image: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)}.media,.media-body{overflow:hidden;zoom:1}.media,.media .media{margin-top:15px}.media:first-child{margin-top:0}.media-object{display:block}.media-heading{margin:0 0 5px}.media>.pull-left{margin-right:10px}.media>.pull-right{margin-left:10px}.media-list{padding-left:0;list-style:none}.list-group{padding-left:0;margin-bottom:20px}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-right-radius:4px;border-top-left-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}a.list-group-item{color:#555}a.list-group-item .list-group-item-heading{color:#333}a.list-group-item:hover,a.list-group-item:focus{text-decoration:none;background-color:#f5f5f5}a.list-group-item.active,a.list-group-item.active:hover,a.list-group-item.active:focus{z-index:2;color:#fff;background-color:#428bca;border-color:#428bca}a.list-group-item.active .list-group-item-heading,a.list-group-item.active:hover .list-group-item-heading,a.list-group-item.active:focus .list-group-item-heading{color:inherit}a.list-group-item.active .list-group-item-text,a.list-group-item.active:hover .list-group-item-text,a.list-group-item.active:focus .list-group-item-text{color:#e1edf7}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.05);box-shadow:0 1px 1px rgba(0,0,0,0.05)}.panel-body{padding:15px}.panel-body:before,.panel-body:after{display:table;content:" "}.panel-body:after{clear:both}.panel-body:before,.panel-body:after{display:table;content:" "}.panel-body:after{clear:both}.panel>.list-group{margin-bottom:0}.panel>.list-group .list-group-item{border-width:1px 0}.panel>.list-group .list-group-item:first-child{border-top-right-radius:0;border-top-left-radius:0}.panel>.list-group .list-group-item:last-child{border-bottom:0}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive{border-top:1px solid #ddd}.panel>.table>tbody:first-child th,.panel>.table>tbody:first-child td{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.panel>.table-bordered>thead>tr:last-child>th,.panel>.table-responsive>.table-bordered>thead>tr:last-child>th,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th,.panel>.table-bordered>thead>tr:last-child>td,.panel>.table-responsive>.table-bordered>thead>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}.panel>.table-responsive{margin-bottom:0;border:0}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-right-radius:3px;border-top-left-radius:3px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel-group .panel{margin-bottom:0;overflow:hidden;border-radius:4px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse .panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse .panel-body{border-top-color:#ddd}.panel-default>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#428bca}.panel-primary>.panel-heading{color:#fff;background-color:#428bca;border-color:#428bca}.panel-primary>.panel-heading+.panel-collapse .panel-body{border-top-color:#428bca}.panel-primary>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#428bca}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse .panel-body{border-top-color:#d6e9c6}.panel-success>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#d6e9c6}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse .panel-body{border-top-color:#faebcc}.panel-warning>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse .panel-body{border-top-color:#ebccd1}.panel-danger>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#ebccd1}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse .panel-body{border-top-color:#bce8f1}.panel-info>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#bce8f1}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);box-shadow:inset 0 1px 1px rgba(0,0,0,0.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,0.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:bold;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer;opacity:.5;filter:alpha(opacity=50)}button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;display:none;overflow:auto;overflow-y:scroll}.modal.fade .modal-dialog{-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);transform:translate(0,-25%);-webkit-transition:-webkit-transform .3s ease-out;-moz-transition:-moz-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out}.modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);transform:translate(0,0)}.modal-dialog{position:relative;z-index:1050;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,0.2);border-radius:6px;outline:0;-webkit-box-shadow:0 3px 9px rgba(0,0,0,0.5);box-shadow:0 3px 9px rgba(0,0,0,0.5);background-clip:padding-box}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1030;background-color:#000}.modal-backdrop.fade{opacity:0;filter:alpha(opacity=0)}.modal-backdrop.in{opacity:.5;filter:alpha(opacity=50)}.modal-header{min-height:16.428571429px;padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.428571429}.modal-body{position:relative;padding:20px}.modal-footer{padding:19px 20px 20px;margin-top:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer:before,.modal-footer:after{display:table;content:" "}.modal-footer:after{clear:both}.modal-footer:before,.modal-footer:after{display:table;content:" "}.modal-footer:after{clear:both}.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}@media screen and (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,0.5);box-shadow:0 5px 15px rgba(0,0,0,0.5)}}.tooltip{position:absolute;z-index:1030;display:block;font-size:12px;line-height:1.4;opacity:0;filter:alpha(opacity=0);visibility:visible}.tooltip.in{opacity:.9;filter:alpha(opacity=90)}.tooltip.top{padding:5px 0;margin-top:-3px}.tooltip.right{padding:0 5px;margin-left:3px}.tooltip.bottom{padding:5px 0;margin-top:3px}.tooltip.left{padding:0 5px;margin-left:-3px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;text-decoration:none;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-top-color:#000;border-width:5px 5px 0}.tooltip.top-left .tooltip-arrow{bottom:0;left:5px;border-top-color:#000;border-width:5px 5px 0}.tooltip.top-right .tooltip-arrow{right:5px;bottom:0;border-top-color:#000;border-width:5px 5px 0}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-right-color:#000;border-width:5px 5px 5px 0}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-left-color:#000;border-width:5px 0 5px 5px}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-bottom-color:#000;border-width:0 5px 5px}.tooltip.bottom-left .tooltip-arrow{top:0;left:5px;border-bottom-color:#000;border-width:0 5px 5px}.tooltip.bottom-right .tooltip-arrow{top:0;right:5px;border-bottom-color:#000;border-width:0 5px 5px}.popover{position:absolute;top:0;left:0;z-index:1010;display:none;max-width:276px;padding:1px;text-align:left;white-space:normal;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2);background-clip:padding-box}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{padding:8px 14px;margin:0;font-size:14px;font-weight:normal;line-height:18px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover .arrow,.popover .arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover .arrow{border-width:11px}.popover .arrow:after{border-width:10px;content:""}.popover.top .arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,0.25);border-bottom-width:0}.popover.top .arrow:after{bottom:1px;margin-left:-10px;border-top-color:#fff;border-bottom-width:0;content:" "}.popover.right .arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,0.25);border-left-width:0}.popover.right .arrow:after{bottom:-10px;left:1px;border-right-color:#fff;border-left-width:0;content:" "}.popover.bottom .arrow{top:-11px;left:50%;margin-left:-11px;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,0.25);border-top-width:0}.popover.bottom .arrow:after{top:1px;margin-left:-10px;border-bottom-color:#fff;border-top-width:0;content:" "}.popover.left .arrow{top:50%;right:-11px;margin-top:-11px;border-left-color:#999;border-left-color:rgba(0,0,0,0.25);border-right-width:0}.popover.left .arrow:after{right:1px;bottom:-10px;border-left-color:#fff;border-right-width:0;content:" "}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner>.item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;height:auto;max-width:100%;line-height:1}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6);opacity:.5;filter:alpha(opacity=50)}.carousel-control.left{background-image:-webkit-linear-gradient(left,color-stop(rgba(0,0,0,0.5) 0),color-stop(rgba(0,0,0,0.0001) 100%));background-image:linear-gradient(to right,rgba(0,0,0,0.5) 0,rgba(0,0,0,0.0001) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000',endColorstr='#00000000',GradientType=1)}.carousel-control.right{right:0;left:auto;background-image:-webkit-linear-gradient(left,color-stop(rgba(0,0,0,0.0001) 0),color-stop(rgba(0,0,0,0.5) 100%));background-image:linear-gradient(to right,rgba(0,0,0,0.0001) 0,rgba(0,0,0,0.5) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000',endColorstr='#80000000',GradientType=1)}.carousel-control:hover,.carousel-control:focus{color:#fff;text-decoration:none;outline:0;opacity:.9;filter:alpha(opacity=90)}.carousel-control .icon-prev,.carousel-control .icon-next,.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right{position:absolute;top:50%;z-index:5;display:inline-block}.carousel-control .icon-prev,.carousel-control .glyphicon-chevron-left{left:50%}.carousel-control .icon-next,.carousel-control .glyphicon-chevron-right{right:50%}.carousel-control .icon-prev,.carousel-control .icon-next{width:20px;height:20px;margin-top:-10px;margin-left:-10px;font-family:serif}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:#000 \9;background-color:rgba(0,0,0,0);border:1px solid #fff;border-radius:10px}.carousel-indicators .active{width:12px;height:12px;margin:0;background-color:#fff}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicons-chevron-left,.carousel-control .glyphicons-chevron-right,.carousel-control .icon-prev,.carousel-control .icon-next{width:30px;height:30px;margin-top:-15px;margin-left:-15px;font-size:30px}.carousel-caption{right:20%;left:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.clearfix:before,.clearfix:after{display:table;content:" "}.clearfix:after{clear:both}.center-block{display:block;margin-right:auto;margin-left:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none!important;visibility:hidden!important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-xs,tr.visible-xs,th.visible-xs,td.visible-xs{display:none!important}@media(max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table}tr.visible-xs{display:table-row!important}th.visible-xs,td.visible-xs{display:table-cell!important}}@media(min-width:768px) and (max-width:991px){.visible-xs.visible-sm{display:block!important}table.visible-xs.visible-sm{display:table}tr.visible-xs.visible-sm{display:table-row!important}th.visible-xs.visible-sm,td.visible-xs.visible-sm{display:table-cell!important}}@media(min-width:992px) and (max-width:1199px){.visible-xs.visible-md{display:block!important}table.visible-xs.visible-md{display:table}tr.visible-xs.visible-md{display:table-row!important}th.visible-xs.visible-md,td.visible-xs.visible-md{display:table-cell!important}}@media(min-width:1200px){.visible-xs.visible-lg{display:block!important}table.visible-xs.visible-lg{display:table}tr.visible-xs.visible-lg{display:table-row!important}th.visible-xs.visible-lg,td.visible-xs.visible-lg{display:table-cell!important}}.visible-sm,tr.visible-sm,th.visible-sm,td.visible-sm{display:none!important}@media(max-width:767px){.visible-sm.visible-xs{display:block!important}table.visible-sm.visible-xs{display:table}tr.visible-sm.visible-xs{display:table-row!important}th.visible-sm.visible-xs,td.visible-sm.visible-xs{display:table-cell!important}}@media(min-width:768px) and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table}tr.visible-sm{display:table-row!important}th.visible-sm,td.visible-sm{display:table-cell!important}}@media(min-width:992px) and (max-width:1199px){.visible-sm.visible-md{display:block!important}table.visible-sm.visible-md{display:table}tr.visible-sm.visible-md{display:table-row!important}th.visible-sm.visible-md,td.visible-sm.visible-md{display:table-cell!important}}@media(min-width:1200px){.visible-sm.visible-lg{display:block!important}table.visible-sm.visible-lg{display:table}tr.visible-sm.visible-lg{display:table-row!important}th.visible-sm.visible-lg,td.visible-sm.visible-lg{display:table-cell!important}}.visible-md,tr.visible-md,th.visible-md,td.visible-md{display:none!important}@media(max-width:767px){.visible-md.visible-xs{display:block!important}table.visible-md.visible-xs{display:table}tr.visible-md.visible-xs{display:table-row!important}th.visible-md.visible-xs,td.visible-md.visible-xs{display:table-cell!important}}@media(min-width:768px) and (max-width:991px){.visible-md.visible-sm{display:block!important}table.visible-md.visible-sm{display:table}tr.visible-md.visible-sm{display:table-row!important}th.visible-md.visible-sm,td.visible-md.visible-sm{display:table-cell!important}}@media(min-width:992px) and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table}tr.visible-md{display:table-row!important}th.visible-md,td.visible-md{display:table-cell!important}}@media(min-width:1200px){.visible-md.visible-lg{display:block!important}table.visible-md.visible-lg{display:table}tr.visible-md.visible-lg{display:table-row!important}th.visible-md.visible-lg,td.visible-md.visible-lg{display:table-cell!important}}.visible-lg,tr.visible-lg,th.visible-lg,td.visible-lg{display:none!important}@media(max-width:767px){.visible-lg.visible-xs{display:block!important}table.visible-lg.visible-xs{display:table}tr.visible-lg.visible-xs{display:table-row!important}th.visible-lg.visible-xs,td.visible-lg.visible-xs{display:table-cell!important}}@media(min-width:768px) and (max-width:991px){.visible-lg.visible-sm{display:block!important}table.visible-lg.visible-sm{display:table}tr.visible-lg.visible-sm{display:table-row!important}th.visible-lg.visible-sm,td.visible-lg.visible-sm{display:table-cell!important}}@media(min-width:992px) and (max-width:1199px){.visible-lg.visible-md{display:block!important}table.visible-lg.visible-md{display:table}tr.visible-lg.visible-md{display:table-row!important}th.visible-lg.visible-md,td.visible-lg.visible-md{display:table-cell!important}}@media(min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table}tr.visible-lg{display:table-row!important}th.visible-lg,td.visible-lg{display:table-cell!important}}.hidden-xs{display:block!important}table.hidden-xs{display:table}tr.hidden-xs{display:table-row!important}th.hidden-xs,td.hidden-xs{display:table-cell!important}@media(max-width:767px){.hidden-xs,tr.hidden-xs,th.hidden-xs,td.hidden-xs{display:none!important}}@media(min-width:768px) and (max-width:991px){.hidden-xs.hidden-sm,tr.hidden-xs.hidden-sm,th.hidden-xs.hidden-sm,td.hidden-xs.hidden-sm{display:none!important}}@media(min-width:992px) and (max-width:1199px){.hidden-xs.hidden-md,tr.hidden-xs.hidden-md,th.hidden-xs.hidden-md,td.hidden-xs.hidden-md{display:none!important}}@media(min-width:1200px){.hidden-xs.hidden-lg,tr.hidden-xs.hidden-lg,th.hidden-xs.hidden-lg,td.hidden-xs.hidden-lg{display:none!important}}.hidden-sm{display:block!important}table.hidden-sm{display:table}tr.hidden-sm{display:table-row!important}th.hidden-sm,td.hidden-sm{display:table-cell!important}@media(max-width:767px){.hidden-sm.hidden-xs,tr.hidden-sm.hidden-xs,th.hidden-sm.hidden-xs,td.hidden-sm.hidden-xs{display:none!important}}@media(min-width:768px) and (max-width:991px){.hidden-sm,tr.hidden-sm,th.hidden-sm,td.hidden-sm{display:none!important}}@media(min-width:992px) and (max-width:1199px){.hidden-sm.hidden-md,tr.hidden-sm.hidden-md,th.hidden-sm.hidden-md,td.hidden-sm.hidden-md{display:none!important}}@media(min-width:1200px){.hidden-sm.hidden-lg,tr.hidden-sm.hidden-lg,th.hidden-sm.hidden-lg,td.hidden-sm.hidden-lg{display:none!important}}.hidden-md{display:block!important}table.hidden-md{display:table}tr.hidden-md{display:table-row!important}th.hidden-md,td.hidden-md{display:table-cell!important}@media(max-width:767px){.hidden-md.hidden-xs,tr.hidden-md.hidden-xs,th.hidden-md.hidden-xs,td.hidden-md.hidden-xs{display:none!important}}@media(min-width:768px) and (max-width:991px){.hidden-md.hidden-sm,tr.hidden-md.hidden-sm,th.hidden-md.hidden-sm,td.hidden-md.hidden-sm{display:none!important}}@media(min-width:992px) and (max-width:1199px){.hidden-md,tr.hidden-md,th.hidden-md,td.hidden-md{display:none!important}}@media(min-width:1200px){.hidden-md.hidden-lg,tr.hidden-md.hidden-lg,th.hidden-md.hidden-lg,td.hidden-md.hidden-lg{display:none!important}}.hidden-lg{display:block!important}table.hidden-lg{display:table}tr.hidden-lg{display:table-row!important}th.hidden-lg,td.hidden-lg{display:table-cell!important}@media(max-width:767px){.hidden-lg.hidden-xs,tr.hidden-lg.hidden-xs,th.hidden-lg.hidden-xs,td.hidden-lg.hidden-xs{display:none!important}}@media(min-width:768px) and (max-width:991px){.hidden-lg.hidden-sm,tr.hidden-lg.hidden-sm,th.hidden-lg.hidden-sm,td.hidden-lg.hidden-sm{display:none!important}}@media(min-width:992px) and (max-width:1199px){.hidden-lg.hidden-md,tr.hidden-lg.hidden-md,th.hidden-lg.hidden-md,td.hidden-lg.hidden-md{display:none!important}}@media(min-width:1200px){.hidden-lg,tr.hidden-lg,th.hidden-lg,td.hidden-lg{display:none!important}}.visible-print,tr.visible-print,th.visible-print,td.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table}tr.visible-print{display:table-row!important}th.visible-print,td.visible-print{display:table-cell!important}.hidden-print,tr.hidden-print,th.hidden-print,td.hidden-print{display:none!important}}
|
|
| 0 | 8 |
\ No newline at end of file |
| ... | ... |
@@ -0,0 +1,229 @@ |
| 1 |
+<?xml version="1.0" standalone="no"?> |
|
| 2 |
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" > |
|
| 3 |
+<svg xmlns="http://www.w3.org/2000/svg"> |
|
| 4 |
+<metadata></metadata> |
|
| 5 |
+<defs> |
|
| 6 |
+<font id="glyphicons_halflingsregular" horiz-adv-x="1200" > |
|
| 7 |
+<font-face units-per-em="1200" ascent="960" descent="-240" /> |
|
| 8 |
+<missing-glyph horiz-adv-x="500" /> |
|
| 9 |
+<glyph /> |
|
| 10 |
+<glyph /> |
|
| 11 |
+<glyph unicode="
" /> |
|
| 12 |
+<glyph unicode=" " /> |
|
| 13 |
+<glyph unicode="*" d="M100 500v200h259l-183 183l141 141l183 -183v259h200v-259l183 183l141 -141l-183 -183h259v-200h-259l183 -183l-141 -141l-183 183v-259h-200v259l-183 -183l-141 141l183 183h-259z" /> |
|
| 14 |
+<glyph unicode="+" d="M0 400v300h400v400h300v-400h400v-300h-400v-400h-300v400h-400z" /> |
|
| 15 |
+<glyph unicode=" " /> |
|
| 16 |
+<glyph unicode=" " horiz-adv-x="652" /> |
|
| 17 |
+<glyph unicode=" " horiz-adv-x="1304" /> |
|
| 18 |
+<glyph unicode=" " horiz-adv-x="652" /> |
|
| 19 |
+<glyph unicode=" " horiz-adv-x="1304" /> |
|
| 20 |
+<glyph unicode=" " horiz-adv-x="434" /> |
|
| 21 |
+<glyph unicode=" " horiz-adv-x="326" /> |
|
| 22 |
+<glyph unicode=" " horiz-adv-x="217" /> |
|
| 23 |
+<glyph unicode=" " horiz-adv-x="217" /> |
|
| 24 |
+<glyph unicode=" " horiz-adv-x="163" /> |
|
| 25 |
+<glyph unicode=" " horiz-adv-x="260" /> |
|
| 26 |
+<glyph unicode=" " horiz-adv-x="72" /> |
|
| 27 |
+<glyph unicode=" " horiz-adv-x="260" /> |
|
| 28 |
+<glyph unicode=" " horiz-adv-x="326" /> |
|
| 29 |
+<glyph unicode="€" d="M100 500l100 100h113q0 47 5 100h-218l100 100h135q37 167 112 257q117 141 297 141q242 0 354 -189q60 -103 66 -209h-181q0 55 -25.5 99t-63.5 68t-75 36.5t-67 12.5q-24 0 -52.5 -10t-62.5 -32t-65.5 -67t-50.5 -107h379l-100 -100h-300q-6 -46 -6 -100h406l-100 -100 h-300q9 -74 33 -132t52.5 -91t62 -54.5t59 -29t46.5 -7.5q29 0 66 13t75 37t63.5 67.5t25.5 96.5h174q-31 -172 -128 -278q-107 -117 -274 -117q-205 0 -324 158q-36 46 -69 131.5t-45 205.5h-217z" /> |
|
| 30 |
+<glyph unicode="−" d="M200 400h900v300h-900v-300z" /> |
|
| 31 |
+<glyph unicode="☁" d="M-14 494q0 -80 56.5 -137t135.5 -57h750q120 0 205 86t85 208q0 120 -85 206.5t-205 86.5q-46 0 -90 -14q-44 97 -134.5 156.5t-200.5 59.5q-152 0 -260 -107.5t-108 -260.5q0 -25 2 -37q-66 -14 -108.5 -67.5t-42.5 -122.5z" /> |
|
| 32 |
+<glyph unicode="✉" d="M0 100l400 400l200 -200l200 200l400 -400h-1200zM0 300v600l300 -300zM0 1100l600 -603l600 603h-1200zM900 600l300 300v-600z" /> |
|
| 33 |
+<glyph unicode="✏" d="M-13 -13l333 112l-223 223zM187 403l214 -214l614 614l-214 214zM887 1103l214 -214l99 92q13 13 13 32.5t-13 33.5l-153 153q-15 13 -33 13t-33 -13z" /> |
|
| 34 |
+<glyph unicode="" horiz-adv-x="500" d="M0 0z" /> |
|
| 35 |
+<glyph unicode="" d="M0 1200h1200l-500 -550v-550h300v-100h-800v100h300v550z" /> |
|
| 36 |
+<glyph unicode="" d="M14 84q18 -55 86 -75.5t147 5.5q65 21 109 69t44 90v606l600 155v-521q-64 16 -138 -7q-79 -26 -122.5 -83t-25.5 -111q17 -55 85.5 -75.5t147.5 4.5q70 23 111.5 63.5t41.5 95.5v881q0 10 -7 15.5t-17 2.5l-752 -193q-10 -3 -17 -12.5t-7 -19.5v-689q-64 17 -138 -7 q-79 -25 -122.5 -82t-25.5 -112z" /> |
|
| 37 |
+<glyph unicode="" d="M23 693q0 200 142 342t342 142t342 -142t142 -342q0 -142 -78 -261l300 -300q7 -8 7 -18t-7 -18l-109 -109q-8 -7 -18 -7t-18 7l-300 300q-119 -78 -261 -78q-200 0 -342 142t-142 342zM176 693q0 -136 97 -233t234 -97t233.5 96.5t96.5 233.5t-96.5 233.5t-233.5 96.5 t-234 -97t-97 -233z" /> |
|
| 38 |
+<glyph unicode="" d="M100 784q0 64 28 123t73 100.5t104.5 64t119 20.5t120 -38.5t104.5 -104.5q48 69 109.5 105t121.5 38t118.5 -20.5t102.5 -64t71 -100.5t27 -123q0 -57 -33.5 -117.5t-94 -124.5t-126.5 -127.5t-150 -152.5t-146 -174q-62 85 -145.5 174t-149.5 152.5t-126.5 127.5 t-94 124.5t-33.5 117.5z" /> |
|
| 39 |
+<glyph unicode="" d="M-72 800h479l146 400h2l146 -400h472l-382 -278l145 -449l-384 275l-382 -275l146 447zM168 71l2 1z" /> |
|
| 40 |
+<glyph unicode="" d="M-72 800h479l146 400h2l146 -400h472l-382 -278l145 -449l-384 275l-382 -275l146 447zM168 71l2 1zM237 700l196 -142l-73 -226l192 140l195 -141l-74 229l193 140h-235l-77 211l-78 -211h-239z" /> |
|
| 41 |
+<glyph unicode="" d="M0 0v143l400 257v100q-37 0 -68.5 74.5t-31.5 125.5v200q0 124 88 212t212 88t212 -88t88 -212v-200q0 -51 -31.5 -125.5t-68.5 -74.5v-100l400 -257v-143h-1200z" /> |
|
| 42 |
+<glyph unicode="" d="M0 0v1100h1200v-1100h-1200zM100 100h100v100h-100v-100zM100 300h100v100h-100v-100zM100 500h100v100h-100v-100zM100 700h100v100h-100v-100zM100 900h100v100h-100v-100zM300 100h600v400h-600v-400zM300 600h600v400h-600v-400zM1000 100h100v100h-100v-100z M1000 300h100v100h-100v-100zM1000 500h100v100h-100v-100zM1000 700h100v100h-100v-100zM1000 900h100v100h-100v-100z" /> |
|
| 43 |
+<glyph unicode="" d="M0 50v400q0 21 14.5 35.5t35.5 14.5h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5zM0 650v400q0 21 14.5 35.5t35.5 14.5h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400 q-21 0 -35.5 14.5t-14.5 35.5zM600 50v400q0 21 14.5 35.5t35.5 14.5h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5zM600 650v400q0 21 14.5 35.5t35.5 14.5h400q21 0 35.5 -14.5t14.5 -35.5v-400 q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5z" /> |
|
| 44 |
+<glyph unicode="" d="M0 50v200q0 21 14.5 35.5t35.5 14.5h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5zM0 450v200q0 21 14.5 35.5t35.5 14.5h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200 q-21 0 -35.5 14.5t-14.5 35.5zM0 850v200q0 21 14.5 35.5t35.5 14.5h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5zM400 50v200q0 21 14.5 35.5t35.5 14.5h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5 t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5zM400 450v200q0 21 14.5 35.5t35.5 14.5h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5zM400 850v200q0 21 14.5 35.5t35.5 14.5h200q21 0 35.5 -14.5t14.5 -35.5 v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5zM800 50v200q0 21 14.5 35.5t35.5 14.5h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5zM800 450v200q0 21 14.5 35.5t35.5 14.5h200 q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5zM800 850v200q0 21 14.5 35.5t35.5 14.5h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5z" /> |
|
| 45 |
+<glyph unicode="" d="M0 50v200q0 21 14.5 35.5t35.5 14.5h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5zM0 450q0 -21 14.5 -35.5t35.5 -14.5h200q21 0 35.5 14.5t14.5 35.5v200q0 21 -14.5 35.5t-35.5 14.5h-200q-21 0 -35.5 -14.5 t-14.5 -35.5v-200zM0 850v200q0 21 14.5 35.5t35.5 14.5h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5zM400 50v200q0 21 14.5 35.5t35.5 14.5h700q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5 t-35.5 -14.5h-700q-21 0 -35.5 14.5t-14.5 35.5zM400 450v200q0 21 14.5 35.5t35.5 14.5h700q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-700q-21 0 -35.5 14.5t-14.5 35.5zM400 850v200q0 21 14.5 35.5t35.5 14.5h700q21 0 35.5 -14.5t14.5 -35.5 v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-700q-21 0 -35.5 14.5t-14.5 35.5z" /> |
|
| 46 |
+<glyph unicode="" d="M29 454l419 -420l818 820l-212 212l-607 -607l-206 207z" /> |
|
| 47 |
+<glyph unicode="" d="M106 318l282 282l-282 282l212 212l282 -282l282 282l212 -212l-282 -282l282 -282l-212 -212l-282 282l-282 -282z" /> |
|
| 48 |
+<glyph unicode="" d="M23 693q0 200 142 342t342 142t342 -142t142 -342q0 -142 -78 -261l300 -300q7 -8 7 -18t-7 -18l-109 -109q-8 -7 -18 -7t-18 7l-300 300q-119 -78 -261 -78q-200 0 -342 142t-142 342zM176 693q0 -136 97 -233t234 -97t233.5 96.5t96.5 233.5t-96.5 233.5t-233.5 96.5 t-234 -97t-97 -233zM300 600v200h100v100h200v-100h100v-200h-100v-100h-200v100h-100z" /> |
|
| 49 |
+<glyph unicode="" d="M23 694q0 200 142 342t342 142t342 -142t142 -342q0 -141 -78 -262l300 -299q7 -7 7 -18t-7 -18l-109 -109q-8 -8 -18 -8t-18 8l-300 299q-120 -77 -261 -77q-200 0 -342 142t-142 342zM176 694q0 -136 97 -233t234 -97t233.5 97t96.5 233t-96.5 233t-233.5 97t-234 -97 t-97 -233zM300 601h400v200h-400v-200z" /> |
|
| 50 |
+<glyph unicode="" d="M23 600q0 183 105 331t272 210v-166q-103 -55 -165 -155t-62 -220q0 -177 125 -302t302 -125t302 125t125 302q0 120 -62 220t-165 155v166q167 -62 272 -210t105 -331q0 -118 -45.5 -224.5t-123 -184t-184 -123t-224.5 -45.5t-224.5 45.5t-184 123t-123 184t-45.5 224.5 zM500 750q0 -21 14.5 -35.5t35.5 -14.5h100q21 0 35.5 14.5t14.5 35.5v400q0 21 -14.5 35.5t-35.5 14.5h-100q-21 0 -35.5 -14.5t-14.5 -35.5v-400z" /> |
|
| 51 |
+<glyph unicode="" d="M100 1h200v300h-200v-300zM400 1v500h200v-500h-200zM700 1v800h200v-800h-200zM1000 1v1200h200v-1200h-200z" /> |
|
| 52 |
+<glyph unicode="" d="M26 601q0 -33 6 -74l151 -38l2 -6q14 -49 38 -93l3 -5l-80 -134q45 -59 105 -105l133 81l5 -3q45 -26 94 -39l5 -2l38 -151q40 -5 74 -5q27 0 74 5l38 151l6 2q46 13 93 39l5 3l134 -81q56 44 104 105l-80 134l3 5q24 44 39 93l1 6l152 38q5 40 5 74q0 28 -5 73l-152 38 l-1 6q-16 51 -39 93l-3 5l80 134q-44 58 -104 105l-134 -81l-5 3q-45 25 -93 39l-6 1l-38 152q-40 5 -74 5q-27 0 -74 -5l-38 -152l-5 -1q-50 -14 -94 -39l-5 -3l-133 81q-59 -47 -105 -105l80 -134l-3 -5q-25 -47 -38 -93l-2 -6l-151 -38q-6 -48 -6 -73zM385 601 q0 88 63 151t152 63t152 -63t63 -151q0 -89 -63 -152t-152 -63t-152 63t-63 152z" /> |
|
| 53 |
+<glyph unicode="" d="M100 1025v50q0 10 7.5 17.5t17.5 7.5h275v100q0 41 29.5 70.5t70.5 29.5h300q41 0 70.5 -29.5t29.5 -70.5v-100h275q10 0 17.5 -7.5t7.5 -17.5v-50q0 -11 -7 -18t-18 -7h-1050q-11 0 -18 7t-7 18zM200 100v800h900v-800q0 -41 -29.5 -71t-70.5 -30h-700q-41 0 -70.5 30 t-29.5 71zM300 100h100v700h-100v-700zM500 100h100v700h-100v-700zM500 1100h300v100h-300v-100zM700 100h100v700h-100v-700zM900 100h100v700h-100v-700z" /> |
|
| 54 |
+<glyph unicode="" d="M1 601l656 644l644 -644h-200v-600h-300v400h-300v-400h-300v600h-200z" /> |
|
| 55 |
+<glyph unicode="" d="M100 25v1150q0 11 7 18t18 7h475v-500h400v-675q0 -11 -7 -18t-18 -7h-850q-11 0 -18 7t-7 18zM700 800v300l300 -300h-300z" /> |
|
| 56 |
+<glyph unicode="" d="M4 600q0 162 80 299t217 217t299 80t299 -80t217 -217t80 -299t-80 -299t-217 -217t-299 -80t-299 80t-217 217t-80 299zM186 600q0 -171 121.5 -292.5t292.5 -121.5t292.5 121.5t121.5 292.5t-121.5 292.5t-292.5 121.5t-292.5 -121.5t-121.5 -292.5zM500 500v400h100 v-300h200v-100h-300z" /> |
|
| 57 |
+<glyph unicode="" d="M-100 0l431 1200h209l-21 -300h162l-20 300h208l431 -1200h-538l-41 400h-242l-40 -400h-539zM488 500h224l-27 300h-170z" /> |
|
| 58 |
+<glyph unicode="" d="M0 0v400h490l-290 300h200v500h300v-500h200l-290 -300h490v-400h-1100zM813 200h175v100h-175v-100z" /> |
|
| 59 |
+<glyph unicode="" d="M1 600q0 122 47.5 233t127.5 191t191 127.5t233 47.5t233 -47.5t191 -127.5t127.5 -191t47.5 -233t-47.5 -233t-127.5 -191t-191 -127.5t-233 -47.5t-233 47.5t-191 127.5t-127.5 191t-47.5 233zM188 600q0 -170 121 -291t291 -121t291 121t121 291t-121 291t-291 121 t-291 -121t-121 -291zM350 600h150v300h200v-300h150l-250 -300z" /> |
|
| 60 |
+<glyph unicode="" d="M4 600q0 162 80 299t217 217t299 80t299 -80t217 -217t80 -299t-80 -299t-217 -217t-299 -80t-299 80t-217 217t-80 299zM186 600q0 -171 121.5 -292.5t292.5 -121.5t292.5 121.5t121.5 292.5t-121.5 292.5t-292.5 121.5t-292.5 -121.5t-121.5 -292.5zM350 600l250 300 l250 -300h-150v-300h-200v300h-150z" /> |
|
| 61 |
+<glyph unicode="" d="M0 25v475l200 700h800q199 -700 200 -700v-475q0 -11 -7 -18t-18 -7h-1150q-11 0 -18 7t-7 18zM200 500h200l50 -200h300l50 200h200l-97 500h-606z" /> |
|
| 62 |
+<glyph unicode="" d="M4 600q0 162 80 299t217 217t299 80t299 -80t217 -217t80 -299t-80 -299t-217 -217t-299 -80t-299 80t-217 217t-80 299zM186 600q0 -172 121.5 -293t292.5 -121t292.5 121t121.5 293q0 171 -121.5 292.5t-292.5 121.5t-292.5 -121.5t-121.5 -292.5zM500 397v401 l297 -200z" /> |
|
| 63 |
+<glyph unicode="" d="M23 600q0 -118 45.5 -224.5t123 -184t184 -123t224.5 -45.5t224.5 45.5t184 123t123 184t45.5 224.5h-150q0 -177 -125 -302t-302 -125t-302 125t-125 302t125 302t302 125q136 0 246 -81l-146 -146h400v400l-145 -145q-157 122 -355 122q-118 0 -224.5 -45.5t-184 -123 t-123 -184t-45.5 -224.5z" /> |
|
| 64 |
+<glyph unicode="" d="M23 600q0 118 45.5 224.5t123 184t184 123t224.5 45.5q198 0 355 -122l145 145v-400h-400l147 147q-112 80 -247 80q-177 0 -302 -125t-125 -302h-150zM100 0v400h400l-147 -147q112 -80 247 -80q177 0 302 125t125 302h150q0 -118 -45.5 -224.5t-123 -184t-184 -123 t-224.5 -45.5q-198 0 -355 122z" /> |
|
| 65 |
+<glyph unicode="" d="M100 0h1100v1200h-1100v-1200zM200 100v900h900v-900h-900zM300 200v100h100v-100h-100zM300 400v100h100v-100h-100zM300 600v100h100v-100h-100zM300 800v100h100v-100h-100zM500 200h500v100h-500v-100zM500 400v100h500v-100h-500zM500 600v100h500v-100h-500z M500 800v100h500v-100h-500z" /> |
|
| 66 |
+<glyph unicode="" d="M0 100v600q0 41 29.5 70.5t70.5 29.5h100v200q0 82 59 141t141 59h300q82 0 141 -59t59 -141v-200h100q41 0 70.5 -29.5t29.5 -70.5v-600q0 -41 -29.5 -70.5t-70.5 -29.5h-900q-41 0 -70.5 29.5t-29.5 70.5zM400 800h300v150q0 21 -14.5 35.5t-35.5 14.5h-200 q-21 0 -35.5 -14.5t-14.5 -35.5v-150z" /> |
|
| 67 |
+<glyph unicode="" d="M100 0v1100h100v-1100h-100zM300 400q60 60 127.5 84t127.5 17.5t122 -23t119 -30t110 -11t103 42t91 120.5v500q-40 -81 -101.5 -115.5t-127.5 -29.5t-138 25t-139.5 40t-125.5 25t-103 -29.5t-65 -115.5v-500z" /> |
|
| 68 |
+<glyph unicode="" d="M0 275q0 -11 7 -18t18 -7h50q11 0 18 7t7 18v300q0 127 70.5 231.5t184.5 161.5t245 57t245 -57t184.5 -161.5t70.5 -231.5v-300q0 -11 7 -18t18 -7h50q11 0 18 7t7 18v300q0 116 -49.5 227t-131 192.5t-192.5 131t-227 49.5t-227 -49.5t-192.5 -131t-131 -192.5 t-49.5 -227v-300zM200 20v460q0 8 6 14t14 6h160q8 0 14 -6t6 -14v-460q0 -8 -6 -14t-14 -6h-160q-8 0 -14 6t-6 14zM800 20v460q0 8 6 14t14 6h160q8 0 14 -6t6 -14v-460q0 -8 -6 -14t-14 -6h-160q-8 0 -14 6t-6 14z" /> |
|
| 69 |
+<glyph unicode="" d="M0 400h300l300 -200v800l-300 -200h-300v-400zM688 459l141 141l-141 141l71 71l141 -141l141 141l71 -71l-141 -141l141 -141l-71 -71l-141 141l-141 -141z" /> |
|
| 70 |
+<glyph unicode="" d="M0 400h300l300 -200v800l-300 -200h-300v-400zM700 857l69 53q111 -135 111 -310q0 -169 -106 -302l-67 54q86 110 86 248q0 146 -93 257z" /> |
|
| 71 |
+<glyph unicode="" d="M0 401v400h300l300 200v-800l-300 200h-300zM702 858l69 53q111 -135 111 -310q0 -170 -106 -303l-67 55q86 110 86 248q0 145 -93 257zM889 951l7 -8q123 -151 123 -344q0 -189 -119 -339l-7 -8l81 -66l6 8q142 178 142 405q0 230 -144 408l-6 8z" /> |
|
| 72 |
+<glyph unicode="" d="M0 0h500v500h-200v100h-100v-100h-200v-500zM0 600h100v100h400v100h100v100h-100v300h-500v-600zM100 100v300h300v-300h-300zM100 800v300h300v-300h-300zM200 200v100h100v-100h-100zM200 900h100v100h-100v-100zM500 500v100h300v-300h200v-100h-100v-100h-200v100 h-100v100h100v200h-200zM600 0v100h100v-100h-100zM600 1000h100v-300h200v-300h300v200h-200v100h200v500h-600v-200zM800 800v300h300v-300h-300zM900 0v100h300v-100h-300zM900 900v100h100v-100h-100zM1100 200v100h100v-100h-100z" /> |
|
| 73 |
+<glyph unicode="" d="M0 200h100v1000h-100v-1000zM100 0v100h300v-100h-300zM200 200v1000h100v-1000h-100zM500 0v91h100v-91h-100zM500 200v1000h200v-1000h-200zM700 0v91h100v-91h-100zM800 200v1000h100v-1000h-100zM900 0v91h200v-91h-200zM1000 200v1000h200v-1000h-200z" /> |
|
| 74 |
+<glyph unicode="" d="M1 700v475q0 10 7.5 17.5t17.5 7.5h474l700 -700l-500 -500zM148 953q0 -42 29 -71q30 -30 71.5 -30t71.5 30q29 29 29 71t-29 71q-30 30 -71.5 30t-71.5 -30q-29 -29 -29 -71z" /> |
|
| 75 |
+<glyph unicode="" d="M2 700v475q0 11 7 18t18 7h474l700 -700l-500 -500zM148 953q0 -42 30 -71q29 -30 71 -30t71 30q30 29 30 71t-30 71q-29 30 -71 30t-71 -30q-30 -29 -30 -71zM701 1200h100l700 -700l-500 -500l-50 50l450 450z" /> |
|
| 76 |
+<glyph unicode="" d="M100 0v1025l175 175h925v-1000l-100 -100v1000h-750l-100 -100h750v-1000h-900z" /> |
|
| 77 |
+<glyph unicode="" d="M200 0l450 444l450 -443v1150q0 20 -14.5 35t-35.5 15h-800q-21 0 -35.5 -15t-14.5 -35v-1151z" /> |
|
| 78 |
+<glyph unicode="" d="M0 100v700h200l100 -200h600l100 200h200v-700h-200v200h-800v-200h-200zM253 829l40 -124h592l62 124l-94 346q-2 11 -10 18t-18 7h-450q-10 0 -18 -7t-10 -18zM281 24l38 152q2 10 11.5 17t19.5 7h500q10 0 19.5 -7t11.5 -17l38 -152q2 -10 -3.5 -17t-15.5 -7h-600 q-10 0 -15.5 7t-3.5 17z" /> |
|
| 79 |
+<glyph unicode="" d="M0 200q0 -41 29.5 -70.5t70.5 -29.5h1000q41 0 70.5 29.5t29.5 70.5v600q0 41 -29.5 70.5t-70.5 29.5h-150q-4 8 -11.5 21.5t-33 48t-53 61t-69 48t-83.5 21.5h-200q-41 0 -82 -20.5t-70 -50t-52 -59t-34 -50.5l-12 -20h-150q-41 0 -70.5 -29.5t-29.5 -70.5v-600z M356 500q0 100 72 172t172 72t172 -72t72 -172t-72 -172t-172 -72t-172 72t-72 172zM494 500q0 -44 31 -75t75 -31t75 31t31 75t-31 75t-75 31t-75 -31t-31 -75zM900 700v100h100v-100h-100z" /> |
|
| 80 |
+<glyph unicode="" d="M53 0h365v66q-41 0 -72 11t-49 38t1 71l92 234h391l82 -222q16 -45 -5.5 -88.5t-74.5 -43.5v-66h417v66q-34 1 -74 43q-18 19 -33 42t-21 37l-6 13l-385 998h-93l-399 -1006q-24 -48 -52 -75q-12 -12 -33 -25t-36 -20l-15 -7v-66zM416 521l178 457l46 -140l116 -317h-340 z" /> |
|
| 81 |
+<glyph unicode="" d="M100 0v89q41 7 70.5 32.5t29.5 65.5v827q0 28 -1 39.5t-5.5 26t-15.5 21t-29 14t-49 14.5v70h471q120 0 213 -88t93 -228q0 -55 -11.5 -101.5t-28 -74t-33.5 -47.5t-28 -28l-12 -7q8 -3 21.5 -9t48 -31.5t60.5 -58t47.5 -91.5t21.5 -129q0 -84 -59 -156.5t-142 -111 t-162 -38.5h-500zM400 200h161q89 0 153 48.5t64 132.5q0 90 -62.5 154.5t-156.5 64.5h-159v-400zM400 700h139q76 0 130 61.5t54 138.5q0 82 -84 130.5t-239 48.5v-379z" /> |
|
| 82 |
+<glyph unicode="" d="M200 0v57q77 7 134.5 40.5t65.5 80.5l173 849q10 56 -10 74t-91 37q-6 1 -10.5 2.5t-9.5 2.5v57h425l2 -57q-33 -8 -62 -25.5t-46 -37t-29.5 -38t-17.5 -30.5l-5 -12l-128 -825q-10 -52 14 -82t95 -36v-57h-500z" /> |
|
| 83 |
+<glyph unicode="" d="M-75 200h75v800h-75l125 167l125 -167h-75v-800h75l-125 -167zM300 900v300h150h700h150v-300h-50q0 29 -8 48.5t-18.5 30t-33.5 15t-39.5 5.5t-50.5 1h-200v-850l100 -50v-100h-400v100l100 50v850h-200q-34 0 -50.5 -1t-40 -5.5t-33.5 -15t-18.5 -30t-8.5 -48.5h-49z " /> |
|
| 84 |
+<glyph unicode="" d="M33 51l167 125v-75h800v75l167 -125l-167 -125v75h-800v-75zM100 901v300h150h700h150v-300h-50q0 29 -8 48.5t-18 30t-33.5 15t-40 5.5t-50.5 1h-200v-650l100 -50v-100h-400v100l100 50v650h-200q-34 0 -50.5 -1t-39.5 -5.5t-33.5 -15t-18.5 -30t-8 -48.5h-50z" /> |
|
| 85 |
+<glyph unicode="" d="M0 50q0 -20 14.5 -35t35.5 -15h1100q21 0 35.5 15t14.5 35v100q0 21 -14.5 35.5t-35.5 14.5h-1100q-21 0 -35.5 -14.5t-14.5 -35.5v-100zM0 350q0 -20 14.5 -35t35.5 -15h800q21 0 35.5 15t14.5 35v100q0 21 -14.5 35.5t-35.5 14.5h-800q-21 0 -35.5 -14.5t-14.5 -35.5 v-100zM0 650q0 -20 14.5 -35t35.5 -15h1000q21 0 35.5 15t14.5 35v100q0 21 -14.5 35.5t-35.5 14.5h-1000q-21 0 -35.5 -14.5t-14.5 -35.5v-100zM0 950q0 -20 14.5 -35t35.5 -15h600q21 0 35.5 15t14.5 35v100q0 21 -14.5 35.5t-35.5 14.5h-600q-21 0 -35.5 -14.5 t-14.5 -35.5v-100z" /> |
|
| 86 |
+<glyph unicode="" d="M0 50q0 -20 14.5 -35t35.5 -15h1100q21 0 35.5 15t14.5 35v100q0 21 -14.5 35.5t-35.5 14.5h-1100q-21 0 -35.5 -14.5t-14.5 -35.5v-100zM0 650q0 -20 14.5 -35t35.5 -15h1100q21 0 35.5 15t14.5 35v100q0 21 -14.5 35.5t-35.5 14.5h-1100q-21 0 -35.5 -14.5t-14.5 -35.5 v-100zM200 350q0 -20 14.5 -35t35.5 -15h700q21 0 35.5 15t14.5 35v100q0 21 -14.5 35.5t-35.5 14.5h-700q-21 0 -35.5 -14.5t-14.5 -35.5v-100zM200 950q0 -20 14.5 -35t35.5 -15h700q21 0 35.5 15t14.5 35v100q0 21 -14.5 35.5t-35.5 14.5h-700q-21 0 -35.5 -14.5 t-14.5 -35.5v-100z" /> |
|
| 87 |
+<glyph unicode="" d="M0 50v100q0 21 14.5 35.5t35.5 14.5h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15h-1100q-21 0 -35.5 15t-14.5 35zM100 650v100q0 21 14.5 35.5t35.5 14.5h1000q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15h-1000q-21 0 -35.5 15 t-14.5 35zM300 350v100q0 21 14.5 35.5t35.5 14.5h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15h-800q-21 0 -35.5 15t-14.5 35zM500 950v100q0 21 14.5 35.5t35.5 14.5h600q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15h-600 q-21 0 -35.5 15t-14.5 35z" /> |
|
| 88 |
+<glyph unicode="" d="M0 50v100q0 21 14.5 35.5t35.5 14.5h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15h-1100q-21 0 -35.5 15t-14.5 35zM0 350v100q0 21 14.5 35.5t35.5 14.5h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15h-1100q-21 0 -35.5 15 t-14.5 35zM0 650v100q0 21 14.5 35.5t35.5 14.5h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15h-1100q-21 0 -35.5 15t-14.5 35zM0 950v100q0 21 14.5 35.5t35.5 14.5h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15h-1100 q-21 0 -35.5 15t-14.5 35z" /> |
|
| 89 |
+<glyph unicode="" d="M0 50v100q0 21 14.5 35.5t35.5 14.5h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15h-100q-21 0 -35.5 15t-14.5 35zM0 350v100q0 21 14.5 35.5t35.5 14.5h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15h-100q-21 0 -35.5 15 t-14.5 35zM0 650v100q0 21 14.5 35.5t35.5 14.5h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15h-100q-21 0 -35.5 15t-14.5 35zM0 950v100q0 21 14.5 35.5t35.5 14.5h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15h-100q-21 0 -35.5 15 t-14.5 35zM300 50v100q0 21 14.5 35.5t35.5 14.5h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15h-800q-21 0 -35.5 15t-14.5 35zM300 350v100q0 21 14.5 35.5t35.5 14.5h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15h-800 q-21 0 -35.5 15t-14.5 35zM300 650v100q0 21 14.5 35.5t35.5 14.5h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15h-800q-21 0 -35.5 15t-14.5 35zM300 950v100q0 21 14.5 35.5t35.5 14.5h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15 h-800q-21 0 -35.5 15t-14.5 35z" /> |
|
| 90 |
+<glyph unicode="" d="M-101 500v100h201v75l166 -125l-166 -125v75h-201zM300 0h100v1100h-100v-1100zM500 50q0 -20 14.5 -35t35.5 -15h600q20 0 35 15t15 35v100q0 21 -15 35.5t-35 14.5h-600q-21 0 -35.5 -14.5t-14.5 -35.5v-100zM500 350q0 -20 14.5 -35t35.5 -15h300q20 0 35 15t15 35 v100q0 21 -15 35.5t-35 14.5h-300q-21 0 -35.5 -14.5t-14.5 -35.5v-100zM500 650q0 -20 14.5 -35t35.5 -15h500q20 0 35 15t15 35v100q0 21 -15 35.5t-35 14.5h-500q-21 0 -35.5 -14.5t-14.5 -35.5v-100zM500 950q0 -20 14.5 -35t35.5 -15h100q20 0 35 15t15 35v100 q0 21 -15 35.5t-35 14.5h-100q-21 0 -35.5 -14.5t-14.5 -35.5v-100z" /> |
|
| 91 |
+<glyph unicode="" d="M1 50q0 -20 14.5 -35t35.5 -15h600q20 0 35 15t15 35v100q0 21 -15 35.5t-35 14.5h-600q-21 0 -35.5 -14.5t-14.5 -35.5v-100zM1 350q0 -20 14.5 -35t35.5 -15h300q20 0 35 15t15 35v100q0 21 -15 35.5t-35 14.5h-300q-21 0 -35.5 -14.5t-14.5 -35.5v-100zM1 650 q0 -20 14.5 -35t35.5 -15h500q20 0 35 15t15 35v100q0 21 -15 35.5t-35 14.5h-500q-21 0 -35.5 -14.5t-14.5 -35.5v-100zM1 950q0 -20 14.5 -35t35.5 -15h100q20 0 35 15t15 35v100q0 21 -15 35.5t-35 14.5h-100q-21 0 -35.5 -14.5t-14.5 -35.5v-100zM801 0v1100h100v-1100 h-100zM934 550l167 -125v75h200v100h-200v75z" /> |
|
| 92 |
+<glyph unicode="" d="M0 275v650q0 31 22 53t53 22h750q31 0 53 -22t22 -53v-650q0 -31 -22 -53t-53 -22h-750q-31 0 -53 22t-22 53zM900 600l300 300v-600z" /> |
|
| 93 |
+<glyph unicode="" d="M0 44v1012q0 18 13 31t31 13h1112q19 0 31.5 -13t12.5 -31v-1012q0 -18 -12.5 -31t-31.5 -13h-1112q-18 0 -31 13t-13 31zM100 263l247 182l298 -131l-74 156l293 318l236 -288v500h-1000v-737zM208 750q0 56 39 95t95 39t95 -39t39 -95t-39 -95t-95 -39t-95 39t-39 95z " /> |
|
| 94 |
+<glyph unicode="" d="M148 745q0 124 60.5 231.5t165 172t226.5 64.5q123 0 227 -63t164.5 -169.5t60.5 -229.5t-73 -272q-73 -114 -166.5 -237t-150.5 -189l-57 -66q-10 9 -27 26t-66.5 70.5t-96 109t-104 135.5t-100.5 155q-63 139 -63 262zM342 772q0 -107 75.5 -182.5t181.5 -75.5 q107 0 182.5 75.5t75.5 182.5t-75.5 182t-182.5 75t-182 -75.5t-75 -181.5z" /> |
|
| 95 |
+<glyph unicode="" d="M1 600q0 122 47.5 233t127.5 191t191 127.5t233 47.5t233 -47.5t191 -127.5t127.5 -191t47.5 -233t-47.5 -233t-127.5 -191t-191 -127.5t-233 -47.5t-233 47.5t-191 127.5t-127.5 191t-47.5 233zM173 600q0 -177 125.5 -302t301.5 -125v854q-176 0 -301.5 -125 t-125.5 -302z" /> |
|
| 96 |
+<glyph unicode="" d="M117 406q0 94 34 186t88.5 172.5t112 159t115 177t87.5 194.5q21 -71 57.5 -142.5t76 -130.5t83 -118.5t82 -117t70 -116t50 -125.5t18.5 -136q0 -89 -39 -165.5t-102 -126.5t-140 -79.5t-156 -33.5q-114 6 -211.5 53t-161.5 138.5t-64 210.5zM243 414q14 -82 59.5 -136 t136.5 -80l16 98q-7 6 -18 17t-34 48t-33 77q-15 73 -14 143.5t10 122.5l9 51q-92 -110 -119.5 -185t-12.5 -156z" /> |
|
| 97 |
+<glyph unicode="" d="M0 400v300q0 165 117.5 282.5t282.5 117.5q366 -6 397 -14l-186 -186h-311q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5v125l200 200v-225q0 -165 -117.5 -282.5t-282.5 -117.5h-300q-165 0 -282.5 117.5 t-117.5 282.5zM436 341l161 50l412 412l-114 113l-405 -405zM995 1015l113 -113l113 113l-21 85l-92 28z" /> |
|
| 98 |
+<glyph unicode="" d="M0 400v300q0 165 117.5 282.5t282.5 117.5h261l2 -80q-133 -32 -218 -120h-145q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5l200 153v-53q0 -165 -117.5 -282.5t-282.5 -117.5h-300q-165 0 -282.5 117.5t-117.5 282.5 zM423 524q30 38 81.5 64t103 35.5t99 14t77.5 3.5l29 -1v-209l360 324l-359 318v-216q-7 0 -19 -1t-48 -8t-69.5 -18.5t-76.5 -37t-76.5 -59t-62 -88t-39.5 -121.5z" /> |
|
| 99 |
+<glyph unicode="" d="M0 400v300q0 165 117.5 282.5t282.5 117.5h300q60 0 127 -23l-178 -177h-349q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5v69l200 200v-169q0 -165 -117.5 -282.5t-282.5 -117.5h-300q-165 0 -282.5 117.5 t-117.5 282.5zM342 632l283 -284l566 567l-136 137l-430 -431l-147 147z" /> |
|
| 100 |
+<glyph unicode="" d="M0 603l300 296v-198h200v200h-200l300 300l295 -300h-195v-200h200v198l300 -296l-300 -300v198h-200v-200h195l-295 -300l-300 300h200v200h-200v-198z" /> |
|
| 101 |
+<glyph unicode="" d="M200 50v1000q0 21 14.5 35.5t35.5 14.5h100q21 0 35.5 -14.5t14.5 -35.5v-437l500 487v-1100l-500 488v-438q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5z" /> |
|
| 102 |
+<glyph unicode="" d="M0 50v1000q0 21 14.5 35.5t35.5 14.5h100q21 0 35.5 -14.5t14.5 -35.5v-437l500 487v-487l500 487v-1100l-500 488v-488l-500 488v-438q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5z" /> |
|
| 103 |
+<glyph unicode="" d="M136 550l564 550v-487l500 487v-1100l-500 488v-488z" /> |
|
| 104 |
+<glyph unicode="" d="M200 0l900 550l-900 550v-1100z" /> |
|
| 105 |
+<glyph unicode="" d="M200 150q0 -21 14.5 -35.5t35.5 -14.5h200q21 0 35.5 14.5t14.5 35.5v800q0 21 -14.5 35.5t-35.5 14.5h-200q-21 0 -35.5 -14.5t-14.5 -35.5v-800zM600 150q0 -21 14.5 -35.5t35.5 -14.5h200q21 0 35.5 14.5t14.5 35.5v800q0 21 -14.5 35.5t-35.5 14.5h-200 q-21 0 -35.5 -14.5t-14.5 -35.5v-800z" /> |
|
| 106 |
+<glyph unicode="" d="M200 150q0 -20 14.5 -35t35.5 -15h800q21 0 35.5 15t14.5 35v800q0 21 -14.5 35.5t-35.5 14.5h-800q-21 0 -35.5 -14.5t-14.5 -35.5v-800z" /> |
|
| 107 |
+<glyph unicode="" d="M0 0v1100l500 -487v487l564 -550l-564 -550v488z" /> |
|
| 108 |
+<glyph unicode="" d="M0 0v1100l500 -487v487l500 -487v437q0 21 14.5 35.5t35.5 14.5h100q21 0 35.5 -14.5t14.5 -35.5v-1000q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v438l-500 -488v488z" /> |
|
| 109 |
+<glyph unicode="" d="M300 0v1100l500 -487v437q0 21 14.5 35.5t35.5 14.5h100q21 0 35.5 -14.5t14.5 -35.5v-1000q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v438z" /> |
|
| 110 |
+<glyph unicode="" d="M100 250v100q0 21 14.5 35.5t35.5 14.5h1000q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1000q-21 0 -35.5 14.5t-14.5 35.5zM100 500h1100l-550 564z" /> |
|
| 111 |
+<glyph unicode="" d="M185 599l592 -592l240 240l-353 353l353 353l-240 240z" /> |
|
| 112 |
+<glyph unicode="" d="M272 194l353 353l-353 353l241 240l572 -571l21 -22l-1 -1v-1l-592 -591z" /> |
|
| 113 |
+<glyph unicode="" d="M3 600q0 162 80 299.5t217.5 217.5t299.5 80t299.5 -80t217.5 -217.5t80 -299.5t-80 -300t-217.5 -218t-299.5 -80t-299.5 80t-217.5 218t-80 300zM300 500h200v-200h200v200h200v200h-200v200h-200v-200h-200v-200z" /> |
|
| 114 |
+<glyph unicode="" d="M3 600q0 162 80 299.5t217.5 217.5t299.5 80t299.5 -80t217.5 -217.5t80 -299.5t-80 -300t-217.5 -218t-299.5 -80t-299.5 80t-217.5 218t-80 300zM300 500h600v200h-600v-200z" /> |
|
| 115 |
+<glyph unicode="" d="M3 600q0 162 80 299.5t217.5 217.5t299.5 80t299.5 -80t217.5 -217.5t80 -299.5t-80 -300t-217.5 -218t-299.5 -80t-299.5 80t-217.5 218t-80 300zM246 459l213 -213l141 142l141 -142l213 213l-142 141l142 141l-213 212l-141 -141l-141 142l-212 -213l141 -141z" /> |
|
| 116 |
+<glyph unicode="" d="M3 600q0 162 80 299.5t217.5 217.5t299.5 80t299.5 -80t217.5 -217.5t80 -299.5t-80 -299.5t-217.5 -217.5t-299.5 -80t-299.5 80t-217.5 217.5t-80 299.5zM270 551l276 -277l411 411l-175 174l-236 -236l-102 102z" /> |
|
| 117 |
+<glyph unicode="" d="M3 600q0 162 80 299.5t217.5 217.5t299.5 80t299.5 -80t217.5 -217.5t80 -299.5t-80 -300t-217.5 -218t-299.5 -80t-299.5 80t-217.5 218t-80 300zM363 700h144q4 0 11.5 -1t11 -1t6.5 3t3 9t1 11t3.5 8.5t3.5 6t5.5 4t6.5 2.5t9 1.5t9 0.5h11.5h12.5q19 0 30 -10t11 -26 q0 -22 -4 -28t-27 -22q-5 -1 -12.5 -3t-27 -13.5t-34 -27t-26.5 -46t-11 -68.5h200q5 3 14 8t31.5 25.5t39.5 45.5t31 69t14 94q0 51 -17.5 89t-42 58t-58.5 32t-58.5 15t-51.5 3q-105 0 -172 -56t-67 -183zM500 300h200v100h-200v-100z" /> |
|
| 118 |
+<glyph unicode="" d="M3 600q0 162 80 299.5t217.5 217.5t299.5 80t299.5 -80t217.5 -217.5t80 -299.5t-80 -300t-217.5 -218t-299.5 -80t-299.5 80t-217.5 218t-80 300zM400 300h400v100h-100v300h-300v-100h100v-200h-100v-100zM500 800h200v100h-200v-100z" /> |
|
| 119 |
+<glyph unicode="" d="M0 500v200h194q15 60 36 104.5t55.5 86t88 69t126.5 40.5v200h200v-200q54 -20 113 -60t112.5 -105.5t71.5 -134.5h203v-200h-203q-25 -102 -116.5 -186t-180.5 -117v-197h-200v197q-140 27 -208 102.5t-98 200.5h-194zM290 500q24 -73 79.5 -127.5t130.5 -78.5v206h200 v-206q149 48 201 206h-201v200h200q-25 74 -76 127.5t-124 76.5v-204h-200v203q-75 -24 -130 -77.5t-79 -125.5h209v-200h-210z" /> |
|
| 120 |
+<glyph unicode="" d="M4 600q0 162 80 299t217 217t299 80t299 -80t217 -217t80 -299t-80 -299t-217 -217t-299 -80t-299 80t-217 217t-80 299zM186 600q0 -171 121.5 -292.5t292.5 -121.5t292.5 121.5t121.5 292.5t-121.5 292.5t-292.5 121.5t-292.5 -121.5t-121.5 -292.5zM356 465l135 135 l-135 135l109 109l135 -135l135 135l109 -109l-135 -135l135 -135l-109 -109l-135 135l-135 -135z" /> |
|
| 121 |
+<glyph unicode="" d="M4 600q0 162 80 299t217 217t299 80t299 -80t217 -217t80 -299t-80 -299t-217 -217t-299 -80t-299 80t-217 217t-80 299zM186 600q0 -171 121.5 -292.5t292.5 -121.5t292.5 121.5t121.5 292.5t-121.5 292.5t-292.5 121.5t-292.5 -121.5t-121.5 -292.5zM322 537l141 141 l87 -87l204 205l142 -142l-346 -345z" /> |
|
| 122 |
+<glyph unicode="" d="M4 600q0 162 80 299t217 217t299 80t299 -80t217 -217t80 -299t-80 -299t-217 -217t-299 -80t-299 80t-217 217t-80 299zM186 600q0 -115 62 -215l568 567q-100 62 -216 62q-171 0 -292.5 -121.5t-121.5 -292.5zM391 245q97 -59 209 -59q171 0 292.5 121.5t121.5 292.5 q0 112 -59 209z" /> |
|
| 123 |
+<glyph unicode="" d="M0 547l600 453v-300h600v-300h-600v-301z" /> |
|
| 124 |
+<glyph unicode="" d="M0 400v300h600v300l600 -453l-600 -448v301h-600z" /> |
|
| 125 |
+<glyph unicode="" d="M204 600l450 600l444 -600h-298v-600h-300v600h-296z" /> |
|
| 126 |
+<glyph unicode="" d="M104 600h296v600h300v-600h298l-449 -600z" /> |
|
| 127 |
+<glyph unicode="" d="M0 200q6 132 41 238.5t103.5 193t184 138t271.5 59.5v271l600 -453l-600 -448v301q-95 -2 -183 -20t-170 -52t-147 -92.5t-100 -135.5z" /> |
|
| 128 |
+<glyph unicode="" d="M0 0v400l129 -129l294 294l142 -142l-294 -294l129 -129h-400zM635 777l142 -142l294 294l129 -129v400h-400l129 -129z" /> |
|
| 129 |
+<glyph unicode="" d="M34 176l295 295l-129 129h400v-400l-129 130l-295 -295zM600 600v400l129 -129l295 295l142 -141l-295 -295l129 -130h-400z" /> |
|
| 130 |
+<glyph unicode="" d="M23 600q0 118 45.5 224.5t123 184t184 123t224.5 45.5t224.5 -45.5t184 -123t123 -184t45.5 -224.5t-45.5 -224.5t-123 -184t-184 -123t-224.5 -45.5t-224.5 45.5t-184 123t-123 184t-45.5 224.5zM456 851l58 -302q4 -20 21.5 -34.5t37.5 -14.5h54q20 0 37.5 14.5 t21.5 34.5l58 302q4 20 -8 34.5t-33 14.5h-207q-20 0 -32 -14.5t-8 -34.5zM500 300h200v100h-200v-100z" /> |
|
| 131 |
+<glyph unicode="" d="M0 800h100v-200h400v300h200v-300h400v200h100v100h-111v6t-1 15t-3 18l-34 172q-11 39 -41.5 63t-69.5 24q-32 0 -61 -17l-239 -144q-22 -13 -40 -35q-19 24 -40 36l-238 144q-33 18 -62 18q-39 0 -69.5 -23t-40.5 -61l-35 -177q-2 -8 -3 -18t-1 -15v-6h-111v-100z M100 0h400v400h-400v-400zM200 900q-3 0 14 48t35 96l18 47l214 -191h-281zM700 0v400h400v-400h-400zM731 900l202 197q5 -12 12 -32.5t23 -64t25 -72t7 -28.5h-269z" /> |
|
| 132 |
+<glyph unicode="" d="M0 -22v143l216 193q-9 53 -13 83t-5.5 94t9 113t38.5 114t74 124q47 60 99.5 102.5t103 68t127.5 48t145.5 37.5t184.5 43.5t220 58.5q0 -189 -22 -343t-59 -258t-89 -181.5t-108.5 -120t-122 -68t-125.5 -30t-121.5 -1.5t-107.5 12.5t-87.5 17t-56.5 7.5l-99 -55z M238.5 300.5q19.5 -6.5 86.5 76.5q55 66 367 234q70 38 118.5 69.5t102 79t99 111.5t86.5 148q22 50 24 60t-6 19q-7 5 -17 5t-26.5 -14.5t-33.5 -39.5q-35 -51 -113.5 -108.5t-139.5 -89.5l-61 -32q-369 -197 -458 -401q-48 -111 -28.5 -117.5z" /> |
|
| 133 |
+<glyph unicode="" d="M111 408q0 -33 5 -63q9 -56 44 -119.5t105 -108.5q31 -21 64 -16t62 23.5t57 49.5t48 61.5t35 60.5q32 66 39 184.5t-13 157.5q79 -80 122 -164t26 -184q-5 -33 -20.5 -69.5t-37.5 -80.5q-10 -19 -14.5 -29t-12 -26t-9 -23.5t-3 -19t2.5 -15.5t11 -9.5t19.5 -5t30.5 2.5 t42 8q57 20 91 34t87.5 44.5t87 64t65.5 88.5t47 122q38 172 -44.5 341.5t-246.5 278.5q22 -44 43 -129q39 -159 -32 -154q-15 2 -33 9q-79 33 -120.5 100t-44 175.5t48.5 257.5q-13 -8 -34 -23.5t-72.5 -66.5t-88.5 -105.5t-60 -138t-8 -166.5q2 -12 8 -41.5t8 -43t6 -39.5 t3.5 -39.5t-1 -33.5t-6 -31.5t-13.5 -24t-21 -20.5t-31 -12q-38 -10 -67 13t-40.5 61.5t-15 81.5t10.5 75q-52 -46 -83.5 -101t-39 -107t-7.5 -85z" /> |
|
| 134 |
+<glyph unicode="" d="M-61 600l26 40q6 10 20 30t49 63.5t74.5 85.5t97 90t116.5 83.5t132.5 59t145.5 23.5t145.5 -23.5t132.5 -59t116.5 -83.5t97 -90t74.5 -85.5t49 -63.5t20 -30l26 -40l-26 -40q-6 -10 -20 -30t-49 -63.5t-74.5 -85.5t-97 -90t-116.5 -83.5t-132.5 -59t-145.5 -23.5 t-145.5 23.5t-132.5 59t-116.5 83.5t-97 90t-74.5 85.5t-49 63.5t-20 30zM120 600q7 -10 40.5 -58t56 -78.5t68 -77.5t87.5 -75t103 -49.5t125 -21.5t123.5 20t100.5 45.5t85.5 71.5t66.5 75.5t58 81.5t47 66q-1 1 -28.5 37.5t-42 55t-43.5 53t-57.5 63.5t-58.5 54 q49 -74 49 -163q0 -124 -88 -212t-212 -88t-212 88t-88 212q0 85 46 158q-102 -87 -226 -258zM377 656q49 -124 154 -191l105 105q-37 24 -75 72t-57 84l-20 36z" /> |
|
| 135 |
+<glyph unicode="" d="M-61 600l26 40q6 10 20 30t49 63.5t74.5 85.5t97 90t116.5 83.5t132.5 59t145.5 23.5q61 0 121 -17l37 142h148l-314 -1200h-148l37 143q-82 21 -165 71.5t-140 102t-109.5 112t-72 88.5t-29.5 43zM120 600q210 -282 393 -336l37 141q-107 18 -178.5 101.5t-71.5 193.5 q0 85 46 158q-102 -87 -226 -258zM377 656q49 -124 154 -191l47 47l23 87q-30 28 -59 69t-44 68l-14 26zM780 161l38 145q22 15 44.5 34t46 44t40.5 44t41 50.5t33.5 43.5t33 44t24.5 34q-97 127 -140 175l39 146q67 -54 131.5 -125.5t87.5 -103.5t36 -52l26 -40l-26 -40 q-7 -12 -25.5 -38t-63.5 -79.5t-95.5 -102.5t-124 -100t-146.5 -79z" /> |
|
| 136 |
+<glyph unicode="" d="M-97.5 34q13.5 -34 50.5 -34h1294q37 0 50.5 35.5t-7.5 67.5l-642 1056q-20 33 -48 36t-48 -29l-642 -1066q-21 -32 -7.5 -66zM155 200l445 723l445 -723h-345v100h-200v-100h-345zM500 600l100 -300l100 300v100h-200v-100z" /> |
|
| 137 |
+<glyph unicode="" d="M100 262v41q0 20 11 44.5t26 38.5l363 325v339q0 62 44 106t106 44t106 -44t44 -106v-339l363 -325q15 -14 26 -38.5t11 -44.5v-41q0 -20 -12 -26.5t-29 5.5l-359 249v-263q100 -91 100 -113v-64q0 -21 -13 -29t-32 1l-94 78h-222l-94 -78q-19 -9 -32 -1t-13 29v64 q0 22 100 113v263l-359 -249q-17 -12 -29 -5.5t-12 26.5z" /> |
|
| 138 |
+<glyph unicode="" d="M0 50q0 -20 14.5 -35t35.5 -15h1000q21 0 35.5 15t14.5 35v750h-1100v-750zM0 900h1100v150q0 21 -14.5 35.5t-35.5 14.5h-150v100h-100v-100h-500v100h-100v-100h-150q-21 0 -35.5 -14.5t-14.5 -35.5v-150zM100 100v100h100v-100h-100zM100 300v100h100v-100h-100z M100 500v100h100v-100h-100zM300 100v100h100v-100h-100zM300 300v100h100v-100h-100zM300 500v100h100v-100h-100zM500 100v100h100v-100h-100zM500 300v100h100v-100h-100zM500 500v100h100v-100h-100zM700 100v100h100v-100h-100zM700 300v100h100v-100h-100zM700 500 v100h100v-100h-100zM900 100v100h100v-100h-100zM900 300v100h100v-100h-100zM900 500v100h100v-100h-100z" /> |
|
| 139 |
+<glyph unicode="" d="M0 200v200h259l600 600h241v198l300 -295l-300 -300v197h-159l-600 -600h-341zM0 800h259l122 -122l141 142l-181 180h-341v-200zM678 381l141 142l122 -123h159v198l300 -295l-300 -300v197h-241z" /> |
|
| 140 |
+<glyph unicode="" d="M0 400v600q0 41 29.5 70.5t70.5 29.5h1000q41 0 70.5 -29.5t29.5 -70.5v-600q0 -41 -29.5 -70.5t-70.5 -29.5h-596l-304 -300v300h-100q-41 0 -70.5 29.5t-29.5 70.5z" /> |
|
| 141 |
+<glyph unicode="" d="M100 600v200h300v-250q0 -113 6 -145q17 -92 102 -117q39 -11 92 -11q37 0 66.5 5.5t50 15.5t36 24t24 31.5t14 37.5t7 42t2.5 45t0 47v25v250h300v-200q0 -42 -3 -83t-15 -104t-31.5 -116t-58 -109.5t-89 -96.5t-129 -65.5t-174.5 -25.5t-174.5 25.5t-129 65.5t-89 96.5 t-58 109.5t-31.5 116t-15 104t-3 83zM100 900v300h300v-300h-300zM800 900v300h300v-300h-300z" /> |
|
| 142 |
+<glyph unicode="" d="M-30 411l227 -227l352 353l353 -353l226 227l-578 579z" /> |
|
| 143 |
+<glyph unicode="" d="M70 797l580 -579l578 579l-226 227l-353 -353l-352 353z" /> |
|
| 144 |
+<glyph unicode="" d="M-198 700l299 283l300 -283h-203v-400h385l215 -200h-800v600h-196zM402 1000l215 -200h381v-400h-198l299 -283l299 283h-200v600h-796z" /> |
|
| 145 |
+<glyph unicode="" d="M18 939q-5 24 10 42q14 19 39 19h896l38 162q5 17 18.5 27.5t30.5 10.5h94q20 0 35 -14.5t15 -35.5t-15 -35.5t-35 -14.5h-54l-201 -961q-2 -4 -6 -10.5t-19 -17.5t-33 -11h-31v-50q0 -20 -14.5 -35t-35.5 -15t-35.5 15t-14.5 35v50h-300v-50q0 -20 -14.5 -35t-35.5 -15 t-35.5 15t-14.5 35v50h-50q-21 0 -35.5 15t-14.5 35q0 21 14.5 35.5t35.5 14.5h535l48 200h-633q-32 0 -54.5 21t-27.5 43z" /> |
|
| 146 |
+<glyph unicode="" d="M0 0v800h1200v-800h-1200zM0 900v100h200q0 41 29.5 70.5t70.5 29.5h300q41 0 70.5 -29.5t29.5 -70.5h500v-100h-1200z" /> |
|
| 147 |
+<glyph unicode="" d="M1 0l300 700h1200l-300 -700h-1200zM1 400v600h200q0 41 29.5 70.5t70.5 29.5h300q41 0 70.5 -29.5t29.5 -70.5h500v-200h-1000z" /> |
|
| 148 |
+<glyph unicode="" d="M302 300h198v600h-198l298 300l298 -300h-198v-600h198l-298 -300z" /> |
|
| 149 |
+<glyph unicode="" d="M0 600l300 298v-198h600v198l300 -298l-300 -297v197h-600v-197z" /> |
|
| 150 |
+<glyph unicode="" d="M0 100v100q0 41 29.5 70.5t70.5 29.5h1000q41 0 70.5 -29.5t29.5 -70.5v-100q0 -41 -29.5 -70.5t-70.5 -29.5h-1000q-41 0 -70.5 29.5t-29.5 70.5zM31 400l172 739q5 22 23 41.5t38 19.5h672q19 0 37.5 -22.5t23.5 -45.5l172 -732h-1138zM800 100h100v100h-100v-100z M1000 100h100v100h-100v-100z" /> |
|
| 151 |
+<glyph unicode="" d="M-101 600v50q0 24 25 49t50 38l25 13v-250l-11 5.5t-24 14t-30 21.5t-24 27.5t-11 31.5zM99 500v250v5q0 13 0.5 18.5t2.5 13t8 10.5t15 3h200l675 250v-850l-675 200h-38l47 -276q2 -12 -3 -17.5t-11 -6t-21 -0.5h-8h-83q-20 0 -34.5 14t-18.5 35q-56 337 -56 351z M1100 200v850q0 21 14.5 35.5t35.5 14.5q20 0 35 -14.5t15 -35.5v-850q0 -20 -15 -35t-35 -15q-21 0 -35.5 15t-14.5 35z" /> |
|
| 152 |
+<glyph unicode="" d="M74 350q0 21 13.5 35.5t33.5 14.5h17l118 173l63 327q15 77 76 140t144 83l-18 32q-6 19 3 32t29 13h94q20 0 29 -10.5t3 -29.5l-18 -37q83 -19 144 -82.5t76 -140.5l63 -327l118 -173h17q20 0 33.5 -14.5t13.5 -35.5q0 -20 -13 -40t-31 -27q-22 -9 -63 -23t-167.5 -37 t-251.5 -23t-245.5 20.5t-178.5 41.5l-58 20q-18 7 -31 27.5t-13 40.5zM497 110q12 -49 40 -79.5t63 -30.5t63 30.5t39 79.5q-48 -6 -102 -6t-103 6z" /> |
|
| 153 |
+<glyph unicode="" d="M21 445l233 -45l-78 -224l224 78l45 -233l155 179l155 -179l45 233l224 -78l-78 224l234 45l-180 155l180 156l-234 44l78 225l-224 -78l-45 233l-155 -180l-155 180l-45 -233l-224 78l78 -225l-233 -44l179 -156z" /> |
|
| 154 |
+<glyph unicode="" d="M0 200h200v600h-200v-600zM300 275q0 -75 100 -75h61q123 -100 139 -100h250q46 0 83 57l238 344q29 31 29 74v100q0 44 -30.5 84.5t-69.5 40.5h-328q28 118 28 125v150q0 44 -30.5 84.5t-69.5 40.5h-50q-27 0 -51 -20t-38 -48l-96 -198l-145 -196q-20 -26 -20 -63v-400z M400 300v375l150 212l100 213h50v-175l-50 -225h450v-125l-250 -375h-214l-136 100h-100z" /> |
|
| 155 |
+<glyph unicode="" d="M0 400v600h200v-600h-200zM300 525v400q0 75 100 75h61q123 100 139 100h250q46 0 83 -57l238 -344q29 -31 29 -74v-100q0 -44 -30.5 -84.5t-69.5 -40.5h-328q28 -118 28 -125v-150q0 -44 -30.5 -84.5t-69.5 -40.5h-50q-27 0 -51 20t-38 48l-96 198l-145 196 q-20 26 -20 63zM400 525l150 -212l100 -213h50v175l-50 225h450v125l-250 375h-214l-136 -100h-100v-375z" /> |
|
| 156 |
+<glyph unicode="" d="M8 200v600h200v-600h-200zM308 275v525q0 17 14 35.5t28 28.5l14 9l362 230q14 6 25 6q17 0 29 -12l109 -112q14 -14 14 -34q0 -18 -11 -32l-85 -121h302q85 0 138.5 -38t53.5 -110t-54.5 -111t-138.5 -39h-107l-130 -339q-7 -22 -20.5 -41.5t-28.5 -19.5h-341 q-7 0 -90 81t-83 94zM408 289l100 -89h293l131 339q6 21 19.5 41t28.5 20h203q16 0 25 15t9 36q0 20 -9 34.5t-25 14.5h-457h-6.5h-7.5t-6.5 0.5t-6 1t-5 1.5t-5.5 2.5t-4 4t-4 5.5q-5 12 -5 20q0 14 10 27l147 183l-86 83l-339 -236v-503z" /> |
|
| 157 |
+<glyph unicode="" d="M-101 651q0 72 54 110t139 37h302l-85 121q-11 16 -11 32q0 21 14 34l109 113q13 12 29 12q11 0 25 -6l365 -230q7 -4 16.5 -10.5t26 -26t16.5 -36.5v-526q0 -13 -85.5 -93.5t-93.5 -80.5h-342q-15 0 -28.5 20t-19.5 41l-131 339h-106q-84 0 -139 39t-55 111zM-1 601h222 q15 0 28.5 -20.5t19.5 -40.5l131 -339h293l106 89v502l-342 237l-87 -83l145 -184q10 -11 10 -26q0 -11 -5 -20q-1 -3 -3.5 -5.5l-4 -4t-5 -2.5t-5.5 -1.5t-6.5 -1t-6.5 -0.5h-7.5h-6.5h-476v-100zM999 201v600h200v-600h-200z" /> |
|
| 158 |
+<glyph unicode="" d="M97 719l230 -363q4 -6 10.5 -15.5t26 -25t36.5 -15.5h525q13 0 94 83t81 90v342q0 15 -20 28.5t-41 19.5l-339 131v106q0 84 -39 139t-111 55t-110 -53.5t-38 -138.5v-302l-121 84q-15 12 -33.5 11.5t-32.5 -13.5l-112 -110q-22 -22 -6 -53zM172 739l83 86l183 -146 q22 -18 47 -5q3 1 5.5 3.5l4 4t2.5 5t1.5 5.5t1 6.5t0.5 6v7.5v7v456q0 22 25 31t50 -0.5t25 -30.5v-202q0 -16 20 -29.5t41 -19.5l339 -130v-294l-89 -100h-503zM400 0v200h600v-200h-600z" /> |
|
| 159 |
+<glyph unicode="" d="M1 585q-15 -31 7 -53l112 -110q13 -13 32 -13.5t34 10.5l121 85l-1 -302q0 -84 38.5 -138t110.5 -54t111 55t39 139v106l339 131q20 6 40.5 19.5t20.5 28.5v342q0 7 -81 90t-94 83h-525q-17 0 -35.5 -14t-28.5 -28l-10 -15zM76 565l237 339h503l89 -100v-294l-340 -130 q-20 -6 -40 -20t-20 -29v-202q0 -22 -25 -31t-50 0t-25 31v456v14.5t-1.5 11.5t-5 12t-9.5 7q-24 13 -46 -5l-184 -146zM305 1104v200h600v-200h-600z" /> |
|
| 160 |
+<glyph unicode="" d="M5 597q0 122 47.5 232.5t127.5 190.5t190.5 127.5t232.5 47.5q162 0 299.5 -80t217.5 -218t80 -300t-80 -299.5t-217.5 -217.5t-299.5 -80t-300 80t-218 217.5t-80 299.5zM300 500h300l-2 -194l402 294l-402 298v-197h-298v-201z" /> |
|
| 161 |
+<glyph unicode="" d="M0 597q0 122 47.5 232.5t127.5 190.5t190.5 127.5t231.5 47.5q122 0 232.5 -47.5t190.5 -127.5t127.5 -190.5t47.5 -232.5q0 -162 -80 -299.5t-218 -217.5t-300 -80t-299.5 80t-217.5 217.5t-80 299.5zM200 600l400 -294v194h302v201h-300v197z" /> |
|
| 162 |
+<glyph unicode="" d="M5 597q0 122 47.5 232.5t127.5 190.5t190.5 127.5t232.5 47.5q121 0 231.5 -47.5t190.5 -127.5t127.5 -190.5t47.5 -232.5q0 -162 -80 -299.5t-217.5 -217.5t-299.5 -80t-300 80t-218 217.5t-80 299.5zM300 600h200v-300h200v300h200l-300 400z" /> |
|
| 163 |
+<glyph unicode="" d="M5 597q0 122 47.5 232.5t127.5 190.5t190.5 127.5t232.5 47.5q121 0 231.5 -47.5t190.5 -127.5t127.5 -190.5t47.5 -232.5q0 -162 -80 -299.5t-217.5 -217.5t-299.5 -80t-300 80t-218 217.5t-80 299.5zM300 600l300 -400l300 400h-200v300h-200v-300h-200z" /> |
|
| 164 |
+<glyph unicode="" d="M5 597q0 122 47.5 232.5t127.5 190.5t190.5 127.5t232.5 47.5q121 0 231.5 -47.5t190.5 -127.5t127.5 -190.5t47.5 -232.5q0 -162 -80 -299.5t-217.5 -217.5t-299.5 -80t-300 80t-218 217.5t-80 299.5zM254 780q-8 -34 5.5 -93t7.5 -87q0 -9 17 -44t16 -60q12 0 23 -5.5 t23 -15t20 -13.5q20 -10 108 -42q22 -8 53 -31.5t59.5 -38.5t57.5 -11q8 -18 -15 -55.5t-20 -57.5q12 -21 22.5 -34.5t28 -27t36.5 -17.5q0 -6 -3 -15.5t-3.5 -14.5t4.5 -17q101 -2 221 111q31 30 47 48t34 49t21 62q-14 9 -37.5 9.5t-35.5 7.5q-14 7 -49 15t-52 19 q-9 0 -39.5 -0.5t-46.5 -1.5t-39 -6.5t-39 -16.5q-50 -35 -66 -12q-4 2 -3.5 25.5t0.5 25.5q-6 13 -26.5 17t-24.5 7q2 22 -2 41t-16.5 28t-38.5 -20q-23 -25 -42 4q-19 28 -8 58q8 16 22 22q6 -1 26 -1.5t33.5 -4.5t19.5 -13q12 -19 32 -37.5t34 -27.5l14 -8q0 3 9.5 39.5 t5.5 57.5q-4 23 14.5 44.5t22.5 31.5q5 14 10 35t8.5 31t15.5 22.5t34 21.5q-6 18 10 37q8 0 23.5 -1.5t24.5 -1.5t20.5 4.5t20.5 15.5q-10 23 -30.5 42.5t-38 30t-49 26.5t-43.5 23q11 41 1 44q31 -13 58.5 -14.5t39.5 3.5l11 4q6 36 -17 53.5t-64 28.5t-56 23 q-19 -3 -37 0q-15 -12 -36.5 -21t-34.5 -12t-44 -8t-39 -6q-15 -3 -46 0t-45 -3q-20 -6 -51.5 -25.5t-34.5 -34.5q-3 -11 6.5 -22.5t8.5 -18.5q-3 -34 -27.5 -91t-29.5 -79zM518 915q3 12 16 30.5t16 25.5q10 -10 18.5 -10t14 6t14.5 14.5t16 12.5q0 -18 8 -42.5t16.5 -44 t9.5 -23.5q-6 1 -39 5t-53.5 10t-36.5 16z" /> |
|
| 165 |
+<glyph unicode="" d="M0 164.5q0 21.5 15 37.5l600 599q-33 101 6 201.5t135 154.5q164 92 306 -9l-259 -138l145 -232l251 126q13 -175 -151 -267q-123 -70 -253 -23l-596 -596q-15 -16 -36.5 -16t-36.5 16l-111 110q-15 15 -15 36.5z" /> |
|
| 166 |
+<glyph unicode="" horiz-adv-x="1220" d="M0 196v100q0 41 29.5 70.5t70.5 29.5h1000q41 0 70.5 -29.5t29.5 -70.5v-100q0 -41 -29.5 -70.5t-70.5 -29.5h-1000q-41 0 -70.5 29.5t-29.5 70.5zM0 596v100q0 41 29.5 70.5t70.5 29.5h1000q41 0 70.5 -29.5t29.5 -70.5v-100q0 -41 -29.5 -70.5t-70.5 -29.5h-1000 q-41 0 -70.5 29.5t-29.5 70.5zM0 996v100q0 41 29.5 70.5t70.5 29.5h1000q41 0 70.5 -29.5t29.5 -70.5v-100q0 -41 -29.5 -70.5t-70.5 -29.5h-1000q-41 0 -70.5 29.5t-29.5 70.5zM600 596h500v100h-500v-100zM800 196h300v100h-300v-100zM900 996h200v100h-200v-100z" /> |
|
| 167 |
+<glyph unicode="" d="M100 1100v100h1000v-100h-1000zM150 1000h900l-350 -500v-300l-200 -200v500z" /> |
|
| 168 |
+<glyph unicode="" d="M0 200v200h1200v-200q0 -41 -29.5 -70.5t-70.5 -29.5h-1000q-41 0 -70.5 29.5t-29.5 70.5zM0 500v400q0 41 29.5 70.5t70.5 29.5h300v100q0 41 29.5 70.5t70.5 29.5h200q41 0 70.5 -29.5t29.5 -70.5v-100h300q41 0 70.5 -29.5t29.5 -70.5v-400h-500v100h-200v-100h-500z M500 1000h200v100h-200v-100z" /> |
|
| 169 |
+<glyph unicode="" d="M0 0v400l129 -129l200 200l142 -142l-200 -200l129 -129h-400zM0 800l129 129l200 -200l142 142l-200 200l129 129h-400v-400zM729 329l142 142l200 -200l129 129v-400h-400l129 129zM729 871l200 200l-129 129h400v-400l-129 129l-200 -200z" /> |
|
| 170 |
+<glyph unicode="" d="M0 596q0 162 80 299t217 217t299 80t299 -80t217 -217t80 -299t-80 -299t-217 -217t-299 -80t-299 80t-217 217t-80 299zM182 596q0 -172 121.5 -293t292.5 -121t292.5 121t121.5 293q0 171 -121.5 292.5t-292.5 121.5t-292.5 -121.5t-121.5 -292.5zM291 655 q0 23 15.5 38.5t38.5 15.5t39 -16t16 -38q0 -23 -16 -39t-39 -16q-22 0 -38 16t-16 39zM400 850q0 22 16 38.5t39 16.5q22 0 38 -16t16 -39t-16 -39t-38 -16q-23 0 -39 16.5t-16 38.5zM513 609q0 32 21 56.5t52 29.5l122 126l1 1q-9 14 -9 28q0 22 16 38.5t39 16.5 q22 0 38 -16t16 -39t-16 -39t-38 -16q-16 0 -29 10l-55 -145q17 -22 17 -51q0 -36 -25.5 -61.5t-61.5 -25.5q-37 0 -62.5 25.5t-25.5 61.5zM800 655q0 22 16 38t39 16t38.5 -15.5t15.5 -38.5t-16 -39t-38 -16q-23 0 -39 16t-16 39z" /> |
|
| 171 |
+<glyph unicode="" d="M-40 375q-13 -95 35 -173q35 -57 94 -89t129 -32q63 0 119 28q33 16 65 40.5t52.5 45.5t59.5 64q40 44 57 61l394 394q35 35 47 84t-3 96q-27 87 -117 104q-20 2 -29 2q-46 0 -79.5 -17t-67.5 -51l-388 -396l-7 -7l69 -67l377 373q20 22 39 38q23 23 50 23q38 0 53 -36 q16 -39 -20 -75l-547 -547q-52 -52 -125 -52q-55 0 -100 33t-54 96q-5 35 2.5 66t31.5 63t42 50t56 54q24 21 44 41l348 348q52 52 82.5 79.5t84 54t107.5 26.5q25 0 48 -4q95 -17 154 -94.5t51 -175.5q-7 -101 -98 -192l-252 -249l-253 -256l7 -7l69 -60l517 511 q67 67 95 157t11 183q-16 87 -67 154t-130 103q-69 33 -152 33q-107 0 -197 -55q-40 -24 -111 -95l-512 -512q-68 -68 -81 -163z" /> |
|
| 172 |
+<glyph unicode="" d="M79 784q0 131 99 229.5t230 98.5q144 0 242 -129q103 129 245 129q130 0 227 -98.5t97 -229.5q0 -46 -17.5 -91t-61 -99t-77 -89.5t-104.5 -105.5q-197 -191 -293 -322l-17 -23l-16 23q-43 58 -100 122.5t-92 99.5t-101 100l-84.5 84.5t-68 74t-60 78t-33.5 70.5t-15 78z M250 784q0 -27 30.5 -70t61.5 -75.5t95 -94.5l22 -22q93 -90 190 -201q82 92 195 203l12 12q64 62 97.5 97t64.5 79t31 72q0 71 -48 119.5t-106 48.5q-73 0 -131 -83l-118 -171l-114 174q-51 80 -124 80q-59 0 -108.5 -49.5t-49.5 -118.5z" /> |
|
| 173 |
+<glyph unicode="" d="M57 353q0 -94 66 -160l141 -141q66 -66 159 -66q95 0 159 66l283 283q66 66 66 159t-66 159l-141 141q-12 12 -19 17l-105 -105l212 -212l-389 -389l-247 248l95 95l-18 18q-46 45 -75 101l-55 -55q-66 -66 -66 -159zM269 706q0 -93 66 -159l141 -141l19 -17l105 105 l-212 212l389 389l247 -247l-95 -96l18 -18q46 -46 77 -99l29 29q35 35 62.5 88t27.5 96q0 93 -66 159l-141 141q-66 66 -159 66q-95 0 -159 -66l-283 -283q-66 -64 -66 -159z" /> |
|
| 174 |
+<glyph unicode="" d="M200 100v953q0 21 30 46t81 48t129 38t163 15t162 -15t127 -38t79 -48t29 -46v-953q0 -41 -29.5 -70.5t-70.5 -29.5h-600q-41 0 -70.5 29.5t-29.5 70.5zM300 300h600v700h-600v-700zM496 150q0 -43 30.5 -73.5t73.5 -30.5t73.5 30.5t30.5 73.5t-30.5 73.5t-73.5 30.5 t-73.5 -30.5t-30.5 -73.5z" /> |
|
| 175 |
+<glyph unicode="" d="M0 0l303 380l207 208l-210 212h300l267 279l-35 36q-15 14 -15 35t15 35q14 15 35 15t35 -15l283 -282q15 -15 15 -36t-15 -35q-14 -15 -35 -15t-35 15l-36 35l-279 -267v-300l-212 210l-208 -207z" /> |
|
| 176 |
+<glyph unicode="" d="M295 433h139q5 -77 48.5 -126.5t117.5 -64.5v335l-27 7q-46 14 -79 26.5t-72 36t-62.5 52t-40 72.5t-16.5 99q0 92 44 159.5t109 101t144 40.5v78h100v-79q38 -4 72.5 -13.5t75.5 -31.5t71 -53.5t51.5 -84t24.5 -118.5h-159q-8 72 -35 109.5t-101 50.5v-307l64 -14 q34 -7 64 -16.5t70 -31.5t67.5 -52t47.5 -80.5t20 -112.5q0 -139 -89 -224t-244 -96v-77h-100v78q-152 17 -237 104q-40 40 -52.5 93.5t-15.5 139.5zM466 889q0 -29 8 -51t16.5 -34t29.5 -22.5t31 -13.5t38 -10q7 -2 11 -3v274q-61 -8 -97.5 -37.5t-36.5 -102.5zM700 237 q170 18 170 151q0 64 -44 99.5t-126 60.5v-311z" /> |
|
| 177 |
+<glyph unicode="" d="M100 600v100h166q-24 49 -44 104q-10 26 -14.5 55.5t-3 72.5t25 90t68.5 87q97 88 263 88q129 0 230 -89t101 -208h-153q0 52 -34 89.5t-74 51.5t-76 14q-37 0 -79 -14.5t-62 -35.5q-41 -44 -41 -101q0 -11 2.5 -24.5t5.5 -24t9.5 -26.5t10.5 -25t14 -27.5t14 -25.5 t15.5 -27t13.5 -24h242v-100h-197q8 -50 -2.5 -115t-31.5 -94q-41 -59 -99 -113q35 11 84 18t70 7q32 1 102 -16t104 -17q76 0 136 30l50 -147q-41 -25 -80.5 -36.5t-59 -13t-61.5 -1.5q-23 0 -128 33t-155 29q-39 -4 -82 -17t-66 -25l-24 -11l-55 145l16.5 11t15.5 10 t13.5 9.5t14.5 12t14.5 14t17.5 18.5q48 55 54 126.5t-30 142.5h-221z" /> |
|
| 178 |
+<glyph unicode="" d="M2 300l298 -300l298 300h-198v900h-200v-900h-198zM602 900l298 300l298 -300h-198v-900h-200v900h-198z" /> |
|
| 179 |
+<glyph unicode="" d="M2 300h198v900h200v-900h198l-298 -300zM700 0v200h100v-100h200v-100h-300zM700 400v100h300v-200h-99v-100h-100v100h99v100h-200zM700 700v500h300v-500h-100v100h-100v-100h-100zM801 900h100v200h-100v-200z" /> |
|
| 180 |
+<glyph unicode="" d="M2 300h198v900h200v-900h198l-298 -300zM700 0v500h300v-500h-100v100h-100v-100h-100zM700 700v200h100v-100h200v-100h-300zM700 1100v100h300v-200h-99v-100h-100v100h99v100h-200zM801 200h100v200h-100v-200z" /> |
|
| 181 |
+<glyph unicode="" d="M2 300l298 -300l298 300h-198v900h-200v-900h-198zM800 100v400h300v-500h-100v100h-200zM800 1100v100h200v-500h-100v400h-100zM901 200h100v200h-100v-200z" /> |
|
| 182 |
+<glyph unicode="" d="M2 300l298 -300l298 300h-198v900h-200v-900h-198zM800 400v100h200v-500h-100v400h-100zM800 800v400h300v-500h-100v100h-200zM901 900h100v200h-100v-200z" /> |
|
| 183 |
+<glyph unicode="" d="M2 300l298 -300l298 300h-198v900h-200v-900h-198zM700 100v200h500v-200h-500zM700 400v200h400v-200h-400zM700 700v200h300v-200h-300zM700 1000v200h200v-200h-200z" /> |
|
| 184 |
+<glyph unicode="" d="M2 300l298 -300l298 300h-198v900h-200v-900h-198zM700 100v200h200v-200h-200zM700 400v200h300v-200h-300zM700 700v200h400v-200h-400zM700 1000v200h500v-200h-500z" /> |
|
| 185 |
+<glyph unicode="" d="M0 400v300q0 165 117.5 282.5t282.5 117.5h300q162 0 281 -118.5t119 -281.5v-300q0 -165 -118.5 -282.5t-281.5 -117.5h-300q-165 0 -282.5 117.5t-117.5 282.5zM200 300q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5v500q0 41 -29.5 70.5t-70.5 29.5 h-500q-41 0 -70.5 -29.5t-29.5 -70.5v-500z" /> |
|
| 186 |
+<glyph unicode="" d="M0 400v300q0 163 119 281.5t281 118.5h300q165 0 282.5 -117.5t117.5 -282.5v-300q0 -165 -117.5 -282.5t-282.5 -117.5h-300q-163 0 -281.5 117.5t-118.5 282.5zM200 300q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5v500q0 41 -29.5 70.5t-70.5 29.5 h-500q-41 0 -70.5 -29.5t-29.5 -70.5v-500zM400 300l333 250l-333 250v-500z" /> |
|
| 187 |
+<glyph unicode="" d="M0 400v300q0 163 117.5 281.5t282.5 118.5h300q163 0 281.5 -119t118.5 -281v-300q0 -165 -117.5 -282.5t-282.5 -117.5h-300q-165 0 -282.5 117.5t-117.5 282.5zM200 300q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5v500q0 41 -29.5 70.5t-70.5 29.5 h-500q-41 0 -70.5 -29.5t-29.5 -70.5v-500zM300 700l250 -333l250 333h-500z" /> |
|
| 188 |
+<glyph unicode="" d="M0 400v300q0 165 117.5 282.5t282.5 117.5h300q165 0 282.5 -117.5t117.5 -282.5v-300q0 -162 -118.5 -281t-281.5 -119h-300q-165 0 -282.5 118.5t-117.5 281.5zM200 300q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5v500q0 41 -29.5 70.5t-70.5 29.5 h-500q-41 0 -70.5 -29.5t-29.5 -70.5v-500zM300 400h500l-250 333z" /> |
|
| 189 |
+<glyph unicode="" d="M0 400v300h300v200l400 -350l-400 -350v200h-300zM500 0v200h500q41 0 70.5 29.5t29.5 70.5v500q0 41 -29.5 70.5t-70.5 29.5h-500v200h400q165 0 282.5 -117.5t117.5 -282.5v-300q0 -165 -117.5 -282.5t-282.5 -117.5h-400z" /> |
|
| 190 |
+<glyph unicode="" d="M216 519q10 -19 32 -19h302q-155 -438 -160 -458q-5 -21 4 -32l9 -8l9 -1q13 0 26 16l538 630q15 19 6 36q-8 18 -32 16h-300q1 4 78 219.5t79 227.5q2 17 -6 27l-8 8h-9q-16 0 -25 -15q-4 -5 -98.5 -111.5t-228 -257t-209.5 -238.5q-17 -19 -7 -40z" /> |
|
| 191 |
+<glyph unicode="" d="M0 400q0 -165 117.5 -282.5t282.5 -117.5h300q47 0 100 15v185h-500q-41 0 -70.5 29.5t-29.5 70.5v500q0 41 29.5 70.5t70.5 29.5h500v185q-14 4 -114 7.5t-193 5.5l-93 2q-165 0 -282.5 -117.5t-117.5 -282.5v-300zM600 400v300h300v200l400 -350l-400 -350v200h-300z " /> |
|
| 192 |
+<glyph unicode="" d="M0 400q0 -165 117.5 -282.5t282.5 -117.5h300q163 0 281.5 117.5t118.5 282.5v98l-78 73l-122 -123v-148q0 -41 -29.5 -70.5t-70.5 -29.5h-500q-41 0 -70.5 29.5t-29.5 70.5v500q0 41 29.5 70.5t70.5 29.5h156l118 122l-74 78h-100q-165 0 -282.5 -117.5t-117.5 -282.5 v-300zM496 709l353 342l-149 149h500v-500l-149 149l-342 -353z" /> |
|
| 193 |
+<glyph unicode="" d="M4 600q0 162 80 299t217 217t299 80t299 -80t217 -217t80 -299t-80 -299t-217 -217t-299 -80t-299 80t-217 217t-80 299zM186 600q0 -171 121.5 -292.5t292.5 -121.5t292.5 121.5t121.5 292.5t-121.5 292.5t-292.5 121.5t-292.5 -121.5t-121.5 -292.5zM406 600 q0 80 57 137t137 57t137 -57t57 -137t-57 -137t-137 -57t-137 57t-57 137z" /> |
|
| 194 |
+<glyph unicode="" d="M0 0v275q0 11 7 18t18 7h1048q11 0 19 -7.5t8 -17.5v-275h-1100zM100 800l445 -500l450 500h-295v400h-300v-400h-300zM900 150h100v50h-100v-50z" /> |
|
| 195 |
+<glyph unicode="" d="M0 0v275q0 11 7 18t18 7h1048q11 0 19 -7.5t8 -17.5v-275h-1100zM100 700h300v-300h300v300h295l-445 500zM900 150h100v50h-100v-50z" /> |
|
| 196 |
+<glyph unicode="" d="M0 0v275q0 11 7 18t18 7h1048q11 0 19 -7.5t8 -17.5v-275h-1100zM100 705l305 -305l596 596l-154 155l-442 -442l-150 151zM900 150h100v50h-100v-50z" /> |
|
| 197 |
+<glyph unicode="" d="M0 0v275q0 11 7 18t18 7h1048q11 0 19 -7.5t8 -17.5v-275h-1100zM100 988l97 -98l212 213l-97 97zM200 401h700v699l-250 -239l-149 149l-212 -212l149 -149zM900 150h100v50h-100v-50z" /> |
|
| 198 |
+<glyph unicode="" d="M0 0v275q0 11 7 18t18 7h1048q11 0 19 -7.5t8 -17.5v-275h-1100zM200 612l212 -212l98 97l-213 212zM300 1200l239 -250l-149 -149l212 -212l149 148l248 -237v700h-699zM900 150h100v50h-100v-50z" /> |
|
| 199 |
+<glyph unicode="" d="M23 415l1177 784v-1079l-475 272l-310 -393v416h-392zM494 210l672 938l-672 -712v-226z" /> |
|
| 200 |
+<glyph unicode="" d="M0 150v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100l200 -200v-850q0 -21 -15 -35.5t-35 -14.5h-150v400h-700v-400h-150q-21 0 -35.5 14.5t-14.5 35.5zM600 1000h100v200h-100v-200z" /> |
|
| 201 |
+<glyph unicode="" d="M0 150v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100l200 -200v-218l-276 -275l-120 120l-126 -127h-378v-400h-150q-21 0 -35.5 14.5t-14.5 35.5zM581 306l123 123l120 -120l353 352l123 -123l-475 -476zM600 1000h100v200h-100v-200z" /> |
|
| 202 |
+<glyph unicode="" d="M0 150v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100l200 -200v-269l-103 -103l-170 170l-298 -298h-329v-400h-150q-21 0 -35.5 14.5t-14.5 35.5zM600 1000h100v200h-100v-200zM700 133l170 170l-170 170l127 127l170 -170l170 170l127 -128l-170 -169l170 -170 l-127 -127l-170 170l-170 -170z" /> |
|
| 203 |
+<glyph unicode="" d="M0 150v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100l200 -200v-300h-400v-200h-500v-400h-150q-21 0 -35.5 14.5t-14.5 35.5zM600 300l300 -300l300 300h-200v300h-200v-300h-200zM600 1000v200h100v-200h-100z" /> |
|
| 204 |
+<glyph unicode="" d="M0 150v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100l200 -200v-402l-200 200l-298 -298h-402v-400h-150q-21 0 -35.5 14.5t-14.5 35.5zM600 300h200v-300h200v300h200l-300 300zM600 1000v200h100v-200h-100z" /> |
|
| 205 |
+<glyph unicode="" d="M0 250q0 -21 14.5 -35.5t35.5 -14.5h1100q21 0 35.5 14.5t14.5 35.5v550h-1200v-550zM0 900h1200v150q0 21 -14.5 35.5t-35.5 14.5h-1100q-21 0 -35.5 -14.5t-14.5 -35.5v-150zM100 300v200h400v-200h-400z" /> |
|
| 206 |
+<glyph unicode="" d="M0 400l300 298v-198h400v-200h-400v-198zM100 800v200h100v-200h-100zM300 800v200h100v-200h-100zM500 800v200h400v198l300 -298l-300 -298v198h-400zM800 300v200h100v-200h-100zM1000 300h100v200h-100v-200z" /> |
|
| 207 |
+<glyph unicode="" d="M100 700v400l50 100l50 -100v-300h100v300l50 100l50 -100v-300h100v300l50 100l50 -100v-400l-100 -203v-447q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v447zM800 597q0 -29 10.5 -55.5t25 -43t29 -28.5t25.5 -18l10 -5v-397q0 -21 14.5 -35.5 t35.5 -14.5h200q21 0 35.5 14.5t14.5 35.5v1106q0 31 -18 40.5t-44 -7.5l-276 -117q-25 -16 -43.5 -50.5t-18.5 -65.5v-359z" /> |
|
| 208 |
+<glyph unicode="" d="M100 0h400v56q-75 0 -87.5 6t-12.5 44v394h500v-394q0 -38 -12.5 -44t-87.5 -6v-56h400v56q-4 0 -11 0.5t-24 3t-30 7t-24 15t-11 24.5v888q0 22 25 34.5t50 13.5l25 2v56h-400v-56q75 0 87.5 -6t12.5 -44v-394h-500v394q0 38 12.5 44t87.5 6v56h-400v-56q4 0 11 -0.5 t24 -3t30 -7t24 -15t11 -24.5v-888q0 -22 -25 -34.5t-50 -13.5l-25 -2v-56z" /> |
|
| 209 |
+<glyph unicode="" d="M0 300q0 -41 29.5 -70.5t70.5 -29.5h300q41 0 70.5 29.5t29.5 70.5v500q0 41 -29.5 70.5t-70.5 29.5h-300q-41 0 -70.5 -29.5t-29.5 -70.5v-500zM100 100h400l200 200h105l295 98v-298h-425l-100 -100h-375zM100 300v200h300v-200h-300zM100 600v200h300v-200h-300z M100 1000h400l200 -200v-98l295 98h105v200h-425l-100 100h-375zM700 402v163l400 133v-163z" /> |
|
| 210 |
+<glyph unicode="" d="M16.5 974.5q0.5 -21.5 16 -90t46.5 -140t104 -177.5t175 -208q103 -103 207.5 -176t180 -103.5t137 -47t92.5 -16.5l31 1l163 162q16 17 13 40.5t-22 37.5l-192 136q-19 14 -45 12t-42 -19l-119 -118q-143 103 -267 227q-126 126 -227 268l118 118q17 17 20 41.5 t-11 44.5l-139 194q-14 19 -36.5 22t-40.5 -14l-162 -162q-1 -11 -0.5 -32.5z" /> |
|
| 211 |
+<glyph unicode="" d="M0 50v212q0 20 10.5 45.5t24.5 39.5l365 303v50q0 4 1 10.5t12 22.5t30 28.5t60 23t97 10.5t97 -10t60 -23.5t30 -27.5t12 -24l1 -10v-50l365 -303q14 -14 24.5 -39.5t10.5 -45.5v-212q0 -21 -15 -35.5t-35 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5zM0 712 q0 -21 14.5 -33.5t34.5 -8.5l202 33q20 4 34.5 21t14.5 38v146q141 24 300 24t300 -24v-146q0 -21 14.5 -38t34.5 -21l202 -33q20 -4 34.5 8.5t14.5 33.5v200q-6 8 -19 20.5t-63 45t-112 57t-171 45t-235 20.5q-92 0 -175 -10.5t-141.5 -27t-108.5 -36.5t-81.5 -40 t-53.5 -36.5t-31 -27.5l-9 -10v-200z" /> |
|
| 212 |
+<glyph unicode="" d="M100 0v100h1100v-100h-1100zM175 200h950l-125 150v250l100 100v400h-100v-200h-100v200h-200v-200h-100v200h-200v-200h-100v200h-100v-400l100 -100v-250z" /> |
|
| 213 |
+<glyph unicode="" d="M100 0h300v400q0 41 -29.5 70.5t-70.5 29.5h-100q-41 0 -70.5 -29.5t-29.5 -70.5v-400zM500 0v1000q0 41 29.5 70.5t70.5 29.5h100q41 0 70.5 -29.5t29.5 -70.5v-1000h-300zM900 0v700q0 41 29.5 70.5t70.5 29.5h100q41 0 70.5 -29.5t29.5 -70.5v-700h-300z" /> |
|
| 214 |
+<glyph unicode="" d="M-100 300v500q0 124 88 212t212 88h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212zM100 200h900v700h-900v-700zM200 300h300v300h-200v100h200v100h-300v-300h200v-100h-200v-100zM600 300h200v100h100v300h-100v100h-200v-500 zM700 400v300h100v-300h-100z" /> |
|
| 215 |
+<glyph unicode="" d="M-100 300v500q0 124 88 212t212 88h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212zM100 200h900v700h-900v-700zM200 300h100v200h100v-200h100v500h-100v-200h-100v200h-100v-500zM600 300h200v100h100v300h-100v100h-200v-500 zM700 400v300h100v-300h-100z" /> |
|
| 216 |
+<glyph unicode="" d="M-100 300v500q0 124 88 212t212 88h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212zM100 200h900v700h-900v-700zM200 300h300v100h-200v300h200v100h-300v-500zM600 300h300v100h-200v300h200v100h-300v-500z" /> |
|
| 217 |
+<glyph unicode="" d="M-100 300v500q0 124 88 212t212 88h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212zM100 200h900v700h-900v-700zM200 550l300 -150v300zM600 400l300 150l-300 150v-300z" /> |
|
| 218 |
+<glyph unicode="" d="M-100 300v500q0 124 88 212t212 88h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212zM100 200h900v700h-900v-700zM200 300v500h700v-500h-700zM300 400h130q41 0 68 42t27 107t-28.5 108t-66.5 43h-130v-300zM575 549 q0 -65 27 -107t68 -42h130v300h-130q-38 0 -66.5 -43t-28.5 -108z" /> |
|
| 219 |
+<glyph unicode="" d="M-100 300v500q0 124 88 212t212 88h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212zM100 200h900v700h-900v-700zM200 300h300v300h-200v100h200v100h-300v-300h200v-100h-200v-100zM601 300h100v100h-100v-100zM700 700h100 v-400h100v500h-200v-100z" /> |
|
| 220 |
+<glyph unicode="" d="M-100 300v500q0 124 88 212t212 88h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212zM100 200h900v700h-900v-700zM200 300h300v400h-200v100h-100v-500zM301 400v200h100v-200h-100zM601 300h100v100h-100v-100zM700 700h100 v-400h100v500h-200v-100z" /> |
|
| 221 |
+<glyph unicode="" d="M-100 300v500q0 124 88 212t212 88h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212zM100 200h900v700h-900v-700zM200 700v100h300v-300h-99v-100h-100v100h99v200h-200zM201 300v100h100v-100h-100zM601 300v100h100v-100h-100z M700 700v100h200v-500h-100v400h-100z" /> |
|
| 222 |
+<glyph unicode="" d="M4 600q0 162 80 299t217 217t299 80t299 -80t217 -217t80 -299t-80 -299t-217 -217t-299 -80t-299 80t-217 217t-80 299zM186 600q0 -171 121.5 -292.5t292.5 -121.5t292.5 121.5t121.5 292.5t-121.5 292.5t-292.5 121.5t-292.5 -121.5t-121.5 -292.5zM400 500v200 l100 100h300v-100h-300v-200h300v-100h-300z" /> |
|
| 223 |
+<glyph unicode="" d="M0 600q0 162 80 299t217 217t299 80t299 -80t217 -217t80 -299t-80 -299t-217 -217t-299 -80t-299 80t-217 217t-80 299zM182 600q0 -171 121.5 -292.5t292.5 -121.5t292.5 121.5t121.5 292.5t-121.5 292.5t-292.5 121.5t-292.5 -121.5t-121.5 -292.5zM400 400v400h300 l100 -100v-100h-100v100h-200v-100h200v-100h-200v-100h-100zM700 400v100h100v-100h-100z" /> |
|
| 224 |
+<glyph unicode="" d="M-14 494q0 -80 56.5 -137t135.5 -57h222v300h400v-300h128q120 0 205 86t85 208q0 120 -85 206.5t-205 86.5q-46 0 -90 -14q-44 97 -134.5 156.5t-200.5 59.5q-152 0 -260 -107.5t-108 -260.5q0 -25 2 -37q-66 -14 -108.5 -67.5t-42.5 -122.5zM300 200h200v300h200v-300 h200l-300 -300z" /> |
|
| 225 |
+<glyph unicode="" d="M-14 494q0 -80 56.5 -137t135.5 -57h8l414 414l403 -403q94 26 154.5 104t60.5 178q0 121 -85 207.5t-205 86.5q-46 0 -90 -14q-44 97 -134.5 156.5t-200.5 59.5q-152 0 -260 -107.5t-108 -260.5q0 -25 2 -37q-66 -14 -108.5 -67.5t-42.5 -122.5zM300 200l300 300 l300 -300h-200v-300h-200v300h-200z" /> |
|
| 226 |
+<glyph unicode="" d="M100 200h400v-155l-75 -45h350l-75 45v155h400l-270 300h170l-270 300h170l-300 333l-300 -333h170l-270 -300h170z" /> |
|
| 227 |
+<glyph unicode="" d="M121 700q0 -53 28.5 -97t75.5 -65q-4 -16 -4 -38q0 -74 52.5 -126.5t126.5 -52.5q56 0 100 30v-306l-75 -45h350l-75 45v306q46 -30 100 -30q74 0 126.5 52.5t52.5 126.5q0 24 -9 55q50 32 79.5 83t29.5 112q0 90 -61.5 155.5t-150.5 71.5q-26 89 -99.5 145.5 t-167.5 56.5q-116 0 -197.5 -81.5t-81.5 -197.5q0 -4 1 -12t1 -11q-14 2 -23 2q-74 0 -126.5 -52.5t-52.5 -126.5z" /> |
|
| 228 |
+</font> |
|
| 229 |
+</defs></svg> |
|
| 0 | 230 |
\ No newline at end of file |
| ... | ... |
@@ -0,0 +1,2006 @@ |
| 1 |
+/*! |
|
| 2 |
+ * Bootstrap v3.0.3 (http://getbootstrap.com) |
|
| 3 |
+ * Copyright 2013 Twitter, Inc. |
|
| 4 |
+ * Licensed under http://www.apache.org/licenses/LICENSE-2.0 |
|
| 5 |
+ */ |
|
| 6 |
+ |
|
| 7 |
+if (typeof jQuery === "undefined") { throw new Error("Bootstrap requires jQuery") }
|
|
| 8 |
+ |
|
| 9 |
+/* ======================================================================== |
|
| 10 |
+ * Bootstrap: transition.js v3.0.3 |
|
| 11 |
+ * http://getbootstrap.com/javascript/#transitions |
|
| 12 |
+ * ======================================================================== |
|
| 13 |
+ * Copyright 2013 Twitter, Inc. |
|
| 14 |
+ * |
|
| 15 |
+ * Licensed under the Apache License, Version 2.0 (the "License"); |
|
| 16 |
+ * you may not use this file except in compliance with the License. |
|
| 17 |
+ * You may obtain a copy of the License at |
|
| 18 |
+ * |
|
| 19 |
+ * http://www.apache.org/licenses/LICENSE-2.0 |
|
| 20 |
+ * |
|
| 21 |
+ * Unless required by applicable law or agreed to in writing, software |
|
| 22 |
+ * distributed under the License is distributed on an "AS IS" BASIS, |
|
| 23 |
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
| 24 |
+ * See the License for the specific language governing permissions and |
|
| 25 |
+ * limitations under the License. |
|
| 26 |
+ * ======================================================================== */ |
|
| 27 |
+ |
|
| 28 |
+ |
|
| 29 |
++function ($) { "use strict";
|
|
| 30 |
+ |
|
| 31 |
+ // CSS TRANSITION SUPPORT (Shoutout: http://www.modernizr.com/) |
|
| 32 |
+ // ============================================================ |
|
| 33 |
+ |
|
| 34 |
+ function transitionEnd() {
|
|
| 35 |
+ var el = document.createElement('bootstrap')
|
|
| 36 |
+ |
|
| 37 |
+ var transEndEventNames = {
|
|
| 38 |
+ 'WebkitTransition' : 'webkitTransitionEnd' |
|
| 39 |
+ , 'MozTransition' : 'transitionend' |
|
| 40 |
+ , 'OTransition' : 'oTransitionEnd otransitionend' |
|
| 41 |
+ , 'transition' : 'transitionend' |
|
| 42 |
+ } |
|
| 43 |
+ |
|
| 44 |
+ for (var name in transEndEventNames) {
|
|
| 45 |
+ if (el.style[name] !== undefined) {
|
|
| 46 |
+ return { end: transEndEventNames[name] }
|
|
| 47 |
+ } |
|
| 48 |
+ } |
|
| 49 |
+ } |
|
| 50 |
+ |
|
| 51 |
+ // http://blog.alexmaccaw.com/css-transitions |
|
| 52 |
+ $.fn.emulateTransitionEnd = function (duration) {
|
|
| 53 |
+ var called = false, $el = this |
|
| 54 |
+ $(this).one($.support.transition.end, function () { called = true })
|
|
| 55 |
+ var callback = function () { if (!called) $($el).trigger($.support.transition.end) }
|
|
| 56 |
+ setTimeout(callback, duration) |
|
| 57 |
+ return this |
|
| 58 |
+ } |
|
| 59 |
+ |
|
| 60 |
+ $(function () {
|
|
| 61 |
+ $.support.transition = transitionEnd() |
|
| 62 |
+ }) |
|
| 63 |
+ |
|
| 64 |
+}(jQuery); |
|
| 65 |
+ |
|
| 66 |
+/* ======================================================================== |
|
| 67 |
+ * Bootstrap: alert.js v3.0.3 |
|
| 68 |
+ * http://getbootstrap.com/javascript/#alerts |
|
| 69 |
+ * ======================================================================== |
|
| 70 |
+ * Copyright 2013 Twitter, Inc. |
|
| 71 |
+ * |
|
| 72 |
+ * Licensed under the Apache License, Version 2.0 (the "License"); |
|
| 73 |
+ * you may not use this file except in compliance with the License. |
|
| 74 |
+ * You may obtain a copy of the License at |
|
| 75 |
+ * |
|
| 76 |
+ * http://www.apache.org/licenses/LICENSE-2.0 |
|
| 77 |
+ * |
|
| 78 |
+ * Unless required by applicable law or agreed to in writing, software |
|
| 79 |
+ * distributed under the License is distributed on an "AS IS" BASIS, |
|
| 80 |
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
| 81 |
+ * See the License for the specific language governing permissions and |
|
| 82 |
+ * limitations under the License. |
|
| 83 |
+ * ======================================================================== */ |
|
| 84 |
+ |
|
| 85 |
+ |
|
| 86 |
++function ($) { "use strict";
|
|
| 87 |
+ |
|
| 88 |
+ // ALERT CLASS DEFINITION |
|
| 89 |
+ // ====================== |
|
| 90 |
+ |
|
| 91 |
+ var dismiss = '[data-dismiss="alert"]' |
|
| 92 |
+ var Alert = function (el) {
|
|
| 93 |
+ $(el).on('click', dismiss, this.close)
|
|
| 94 |
+ } |
|
| 95 |
+ |
|
| 96 |
+ Alert.prototype.close = function (e) {
|
|
| 97 |
+ var $this = $(this) |
|
| 98 |
+ var selector = $this.attr('data-target')
|
|
| 99 |
+ |
|
| 100 |
+ if (!selector) {
|
|
| 101 |
+ selector = $this.attr('href')
|
|
| 102 |
+ selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7 |
|
| 103 |
+ } |
|
| 104 |
+ |
|
| 105 |
+ var $parent = $(selector) |
|
| 106 |
+ |
|
| 107 |
+ if (e) e.preventDefault() |
|
| 108 |
+ |
|
| 109 |
+ if (!$parent.length) {
|
|
| 110 |
+ $parent = $this.hasClass('alert') ? $this : $this.parent()
|
|
| 111 |
+ } |
|
| 112 |
+ |
|
| 113 |
+ $parent.trigger(e = $.Event('close.bs.alert'))
|
|
| 114 |
+ |
|
| 115 |
+ if (e.isDefaultPrevented()) return |
|
| 116 |
+ |
|
| 117 |
+ $parent.removeClass('in')
|
|
| 118 |
+ |
|
| 119 |
+ function removeElement() {
|
|
| 120 |
+ $parent.trigger('closed.bs.alert').remove()
|
|
| 121 |
+ } |
|
| 122 |
+ |
|
| 123 |
+ $.support.transition && $parent.hasClass('fade') ?
|
|
| 124 |
+ $parent |
|
| 125 |
+ .one($.support.transition.end, removeElement) |
|
| 126 |
+ .emulateTransitionEnd(150) : |
|
| 127 |
+ removeElement() |
|
| 128 |
+ } |
|
| 129 |
+ |
|
| 130 |
+ |
|
| 131 |
+ // ALERT PLUGIN DEFINITION |
|
| 132 |
+ // ======================= |
|
| 133 |
+ |
|
| 134 |
+ var old = $.fn.alert |
|
| 135 |
+ |
|
| 136 |
+ $.fn.alert = function (option) {
|
|
| 137 |
+ return this.each(function () {
|
|
| 138 |
+ var $this = $(this) |
|
| 139 |
+ var data = $this.data('bs.alert')
|
|
| 140 |
+ |
|
| 141 |
+ if (!data) $this.data('bs.alert', (data = new Alert(this)))
|
|
| 142 |
+ if (typeof option == 'string') data[option].call($this) |
|
| 143 |
+ }) |
|
| 144 |
+ } |
|
| 145 |
+ |
|
| 146 |
+ $.fn.alert.Constructor = Alert |
|
| 147 |
+ |
|
| 148 |
+ |
|
| 149 |
+ // ALERT NO CONFLICT |
|
| 150 |
+ // ================= |
|
| 151 |
+ |
|
| 152 |
+ $.fn.alert.noConflict = function () {
|
|
| 153 |
+ $.fn.alert = old |
|
| 154 |
+ return this |
|
| 155 |
+ } |
|
| 156 |
+ |
|
| 157 |
+ |
|
| 158 |
+ // ALERT DATA-API |
|
| 159 |
+ // ============== |
|
| 160 |
+ |
|
| 161 |
+ $(document).on('click.bs.alert.data-api', dismiss, Alert.prototype.close)
|
|
| 162 |
+ |
|
| 163 |
+}(jQuery); |
|
| 164 |
+ |
|
| 165 |
+/* ======================================================================== |
|
| 166 |
+ * Bootstrap: button.js v3.0.3 |
|
| 167 |
+ * http://getbootstrap.com/javascript/#buttons |
|
| 168 |
+ * ======================================================================== |
|
| 169 |
+ * Copyright 2013 Twitter, Inc. |
|
| 170 |
+ * |
|
| 171 |
+ * Licensed under the Apache License, Version 2.0 (the "License"); |
|
| 172 |
+ * you may not use this file except in compliance with the License. |
|
| 173 |
+ * You may obtain a copy of the License at |
|
| 174 |
+ * |
|
| 175 |
+ * http://www.apache.org/licenses/LICENSE-2.0 |
|
| 176 |
+ * |
|
| 177 |
+ * Unless required by applicable law or agreed to in writing, software |
|
| 178 |
+ * distributed under the License is distributed on an "AS IS" BASIS, |
|
| 179 |
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
| 180 |
+ * See the License for the specific language governing permissions and |
|
| 181 |
+ * limitations under the License. |
|
| 182 |
+ * ======================================================================== */ |
|
| 183 |
+ |
|
| 184 |
+ |
|
| 185 |
++function ($) { "use strict";
|
|
| 186 |
+ |
|
| 187 |
+ // BUTTON PUBLIC CLASS DEFINITION |
|
| 188 |
+ // ============================== |
|
| 189 |
+ |
|
| 190 |
+ var Button = function (element, options) {
|
|
| 191 |
+ this.$element = $(element) |
|
| 192 |
+ this.options = $.extend({}, Button.DEFAULTS, options)
|
|
| 193 |
+ } |
|
| 194 |
+ |
|
| 195 |
+ Button.DEFAULTS = {
|
|
| 196 |
+ loadingText: 'loading...' |
|
| 197 |
+ } |
|
| 198 |
+ |
|
| 199 |
+ Button.prototype.setState = function (state) {
|
|
| 200 |
+ var d = 'disabled' |
|
| 201 |
+ var $el = this.$element |
|
| 202 |
+ var val = $el.is('input') ? 'val' : 'html'
|
|
| 203 |
+ var data = $el.data() |
|
| 204 |
+ |
|
| 205 |
+ state = state + 'Text' |
|
| 206 |
+ |
|
| 207 |
+ if (!data.resetText) $el.data('resetText', $el[val]())
|
|
| 208 |
+ |
|
| 209 |
+ $el[val](data[state] || this.options[state]) |
|
| 210 |
+ |
|
| 211 |
+ // push to event loop to allow forms to submit |
|
| 212 |
+ setTimeout(function () {
|
|
| 213 |
+ state == 'loadingText' ? |
|
| 214 |
+ $el.addClass(d).attr(d, d) : |
|
| 215 |
+ $el.removeClass(d).removeAttr(d); |
|
| 216 |
+ }, 0) |
|
| 217 |
+ } |
|
| 218 |
+ |
|
| 219 |
+ Button.prototype.toggle = function () {
|
|
| 220 |
+ var $parent = this.$element.closest('[data-toggle="buttons"]')
|
|
| 221 |
+ var changed = true |
|
| 222 |
+ |
|
| 223 |
+ if ($parent.length) {
|
|
| 224 |
+ var $input = this.$element.find('input')
|
|
| 225 |
+ if ($input.prop('type') === 'radio') {
|
|
| 226 |
+ // see if clicking on current one |
|
| 227 |
+ if ($input.prop('checked') && this.$element.hasClass('active'))
|
|
| 228 |
+ changed = false |
|
| 229 |
+ else |
|
| 230 |
+ $parent.find('.active').removeClass('active')
|
|
| 231 |
+ } |
|
| 232 |
+ if (changed) $input.prop('checked', !this.$element.hasClass('active')).trigger('change')
|
|
| 233 |
+ } |
|
| 234 |
+ |
|
| 235 |
+ if (changed) this.$element.toggleClass('active')
|
|
| 236 |
+ } |
|
| 237 |
+ |
|
| 238 |
+ |
|
| 239 |
+ // BUTTON PLUGIN DEFINITION |
|
| 240 |
+ // ======================== |
|
| 241 |
+ |
|
| 242 |
+ var old = $.fn.button |
|
| 243 |
+ |
|
| 244 |
+ $.fn.button = function (option) {
|
|
| 245 |
+ return this.each(function () {
|
|
| 246 |
+ var $this = $(this) |
|
| 247 |
+ var data = $this.data('bs.button')
|
|
| 248 |
+ var options = typeof option == 'object' && option |
|
| 249 |
+ |
|
| 250 |
+ if (!data) $this.data('bs.button', (data = new Button(this, options)))
|
|
| 251 |
+ |
|
| 252 |
+ if (option == 'toggle') data.toggle() |
|
| 253 |
+ else if (option) data.setState(option) |
|
| 254 |
+ }) |
|
| 255 |
+ } |
|
| 256 |
+ |
|
| 257 |
+ $.fn.button.Constructor = Button |
|
| 258 |
+ |
|
| 259 |
+ |
|
| 260 |
+ // BUTTON NO CONFLICT |
|
| 261 |
+ // ================== |
|
| 262 |
+ |
|
| 263 |
+ $.fn.button.noConflict = function () {
|
|
| 264 |
+ $.fn.button = old |
|
| 265 |
+ return this |
|
| 266 |
+ } |
|
| 267 |
+ |
|
| 268 |
+ |
|
| 269 |
+ // BUTTON DATA-API |
|
| 270 |
+ // =============== |
|
| 271 |
+ |
|
| 272 |
+ $(document).on('click.bs.button.data-api', '[data-toggle^=button]', function (e) {
|
|
| 273 |
+ var $btn = $(e.target) |
|
| 274 |
+ if (!$btn.hasClass('btn')) $btn = $btn.closest('.btn')
|
|
| 275 |
+ $btn.button('toggle')
|
|
| 276 |
+ e.preventDefault() |
|
| 277 |
+ }) |
|
| 278 |
+ |
|
| 279 |
+}(jQuery); |
|
| 280 |
+ |
|
| 281 |
+/* ======================================================================== |
|
| 282 |
+ * Bootstrap: carousel.js v3.0.3 |
|
| 283 |
+ * http://getbootstrap.com/javascript/#carousel |
|
| 284 |
+ * ======================================================================== |
|
| 285 |
+ * Copyright 2013 Twitter, Inc. |
|
| 286 |
+ * |
|
| 287 |
+ * Licensed under the Apache License, Version 2.0 (the "License"); |
|
| 288 |
+ * you may not use this file except in compliance with the License. |
|
| 289 |
+ * You may obtain a copy of the License at |
|
| 290 |
+ * |
|
| 291 |
+ * http://www.apache.org/licenses/LICENSE-2.0 |
|
| 292 |
+ * |
|
| 293 |
+ * Unless required by applicable law or agreed to in writing, software |
|
| 294 |
+ * distributed under the License is distributed on an "AS IS" BASIS, |
|
| 295 |
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
| 296 |
+ * See the License for the specific language governing permissions and |
|
| 297 |
+ * limitations under the License. |
|
| 298 |
+ * ======================================================================== */ |
|
| 299 |
+ |
|
| 300 |
+ |
|
| 301 |
++function ($) { "use strict";
|
|
| 302 |
+ |
|
| 303 |
+ // CAROUSEL CLASS DEFINITION |
|
| 304 |
+ // ========================= |
|
| 305 |
+ |
|
| 306 |
+ var Carousel = function (element, options) {
|
|
| 307 |
+ this.$element = $(element) |
|
| 308 |
+ this.$indicators = this.$element.find('.carousel-indicators')
|
|
| 309 |
+ this.options = options |
|
| 310 |
+ this.paused = |
|
| 311 |
+ this.sliding = |
|
| 312 |
+ this.interval = |
|
| 313 |
+ this.$active = |
|
| 314 |
+ this.$items = null |
|
| 315 |
+ |
|
| 316 |
+ this.options.pause == 'hover' && this.$element |
|
| 317 |
+ .on('mouseenter', $.proxy(this.pause, this))
|
|
| 318 |
+ .on('mouseleave', $.proxy(this.cycle, this))
|
|
| 319 |
+ } |
|
| 320 |
+ |
|
| 321 |
+ Carousel.DEFAULTS = {
|
|
| 322 |
+ interval: 5000 |
|
| 323 |
+ , pause: 'hover' |
|
| 324 |
+ , wrap: true |
|
| 325 |
+ } |
|
| 326 |
+ |
|
| 327 |
+ Carousel.prototype.cycle = function (e) {
|
|
| 328 |
+ e || (this.paused = false) |
|
| 329 |
+ |
|
| 330 |
+ this.interval && clearInterval(this.interval) |
|
| 331 |
+ |
|
| 332 |
+ this.options.interval |
|
| 333 |
+ && !this.paused |
|
| 334 |
+ && (this.interval = setInterval($.proxy(this.next, this), this.options.interval)) |
|
| 335 |
+ |
|
| 336 |
+ return this |
|
| 337 |
+ } |
|
| 338 |
+ |
|
| 339 |
+ Carousel.prototype.getActiveIndex = function () {
|
|
| 340 |
+ this.$active = this.$element.find('.item.active')
|
|
| 341 |
+ this.$items = this.$active.parent().children() |
|
| 342 |
+ |
|
| 343 |
+ return this.$items.index(this.$active) |
|
| 344 |
+ } |
|
| 345 |
+ |
|
| 346 |
+ Carousel.prototype.to = function (pos) {
|
|
| 347 |
+ var that = this |
|
| 348 |
+ var activeIndex = this.getActiveIndex() |
|
| 349 |
+ |
|
| 350 |
+ if (pos > (this.$items.length - 1) || pos < 0) return |
|
| 351 |
+ |
|
| 352 |
+ if (this.sliding) return this.$element.one('slid.bs.carousel', function () { that.to(pos) })
|
|
| 353 |
+ if (activeIndex == pos) return this.pause().cycle() |
|
| 354 |
+ |
|
| 355 |
+ return this.slide(pos > activeIndex ? 'next' : 'prev', $(this.$items[pos])) |
|
| 356 |
+ } |
|
| 357 |
+ |
|
| 358 |
+ Carousel.prototype.pause = function (e) {
|
|
| 359 |
+ e || (this.paused = true) |
|
| 360 |
+ |
|
| 361 |
+ if (this.$element.find('.next, .prev').length && $.support.transition.end) {
|
|
| 362 |
+ this.$element.trigger($.support.transition.end) |
|
| 363 |
+ this.cycle(true) |
|
| 364 |
+ } |
|
| 365 |
+ |
|
| 366 |
+ this.interval = clearInterval(this.interval) |
|
| 367 |
+ |
|
| 368 |
+ return this |
|
| 369 |
+ } |
|
| 370 |
+ |
|
| 371 |
+ Carousel.prototype.next = function () {
|
|
| 372 |
+ if (this.sliding) return |
|
| 373 |
+ return this.slide('next')
|
|
| 374 |
+ } |
|
| 375 |
+ |
|
| 376 |
+ Carousel.prototype.prev = function () {
|
|
| 377 |
+ if (this.sliding) return |
|
| 378 |
+ return this.slide('prev')
|
|
| 379 |
+ } |
|
| 380 |
+ |
|
| 381 |
+ Carousel.prototype.slide = function (type, next) {
|
|
| 382 |
+ var $active = this.$element.find('.item.active')
|
|
| 383 |
+ var $next = next || $active[type]() |
|
| 384 |
+ var isCycling = this.interval |
|
| 385 |
+ var direction = type == 'next' ? 'left' : 'right' |
|
| 386 |
+ var fallback = type == 'next' ? 'first' : 'last' |
|
| 387 |
+ var that = this |
|
| 388 |
+ |
|
| 389 |
+ if (!$next.length) {
|
|
| 390 |
+ if (!this.options.wrap) return |
|
| 391 |
+ $next = this.$element.find('.item')[fallback]()
|
|
| 392 |
+ } |
|
| 393 |
+ |
|
| 394 |
+ this.sliding = true |
|
| 395 |
+ |
|
| 396 |
+ isCycling && this.pause() |
|
| 397 |
+ |
|
| 398 |
+ var e = $.Event('slide.bs.carousel', { relatedTarget: $next[0], direction: direction })
|
|
| 399 |
+ |
|
| 400 |
+ if ($next.hasClass('active')) return
|
|
| 401 |
+ |
|
| 402 |
+ if (this.$indicators.length) {
|
|
| 403 |
+ this.$indicators.find('.active').removeClass('active')
|
|
| 404 |
+ this.$element.one('slid.bs.carousel', function () {
|
|
| 405 |
+ var $nextIndicator = $(that.$indicators.children()[that.getActiveIndex()]) |
|
| 406 |
+ $nextIndicator && $nextIndicator.addClass('active')
|
|
| 407 |
+ }) |
|
| 408 |
+ } |
|
| 409 |
+ |
|
| 410 |
+ if ($.support.transition && this.$element.hasClass('slide')) {
|
|
| 411 |
+ this.$element.trigger(e) |
|
| 412 |
+ if (e.isDefaultPrevented()) return |
|
| 413 |
+ $next.addClass(type) |
|
| 414 |
+ $next[0].offsetWidth // force reflow |
|
| 415 |
+ $active.addClass(direction) |
|
| 416 |
+ $next.addClass(direction) |
|
| 417 |
+ $active |
|
| 418 |
+ .one($.support.transition.end, function () {
|
|
| 419 |
+ $next.removeClass([type, direction].join(' ')).addClass('active')
|
|
| 420 |
+ $active.removeClass(['active', direction].join(' '))
|
|
| 421 |
+ that.sliding = false |
|
| 422 |
+ setTimeout(function () { that.$element.trigger('slid.bs.carousel') }, 0)
|
|
| 423 |
+ }) |
|
| 424 |
+ .emulateTransitionEnd(600) |
|
| 425 |
+ } else {
|
|
| 426 |
+ this.$element.trigger(e) |
|
| 427 |
+ if (e.isDefaultPrevented()) return |
|
| 428 |
+ $active.removeClass('active')
|
|
| 429 |
+ $next.addClass('active')
|
|
| 430 |
+ this.sliding = false |
|
| 431 |
+ this.$element.trigger('slid.bs.carousel')
|
|
| 432 |
+ } |
|
| 433 |
+ |
|
| 434 |
+ isCycling && this.cycle() |
|
| 435 |
+ |
|
| 436 |
+ return this |
|
| 437 |
+ } |
|
| 438 |
+ |
|
| 439 |
+ |
|
| 440 |
+ // CAROUSEL PLUGIN DEFINITION |
|
| 441 |
+ // ========================== |
|
| 442 |
+ |
|
| 443 |
+ var old = $.fn.carousel |
|
| 444 |
+ |
|
| 445 |
+ $.fn.carousel = function (option) {
|
|
| 446 |
+ return this.each(function () {
|
|
| 447 |
+ var $this = $(this) |
|
| 448 |
+ var data = $this.data('bs.carousel')
|
|
| 449 |
+ var options = $.extend({}, Carousel.DEFAULTS, $this.data(), typeof option == 'object' && option)
|
|
| 450 |
+ var action = typeof option == 'string' ? option : options.slide |
|
| 451 |
+ |
|
| 452 |
+ if (!data) $this.data('bs.carousel', (data = new Carousel(this, options)))
|
|
| 453 |
+ if (typeof option == 'number') data.to(option) |
|
| 454 |
+ else if (action) data[action]() |
|
| 455 |
+ else if (options.interval) data.pause().cycle() |
|
| 456 |
+ }) |
|
| 457 |
+ } |
|
| 458 |
+ |
|
| 459 |
+ $.fn.carousel.Constructor = Carousel |
|
| 460 |
+ |
|
| 461 |
+ |
|
| 462 |
+ // CAROUSEL NO CONFLICT |
|
| 463 |
+ // ==================== |
|
| 464 |
+ |
|
| 465 |
+ $.fn.carousel.noConflict = function () {
|
|
| 466 |
+ $.fn.carousel = old |
|
| 467 |
+ return this |
|
| 468 |
+ } |
|
| 469 |
+ |
|
| 470 |
+ |
|
| 471 |
+ // CAROUSEL DATA-API |
|
| 472 |
+ // ================= |
|
| 473 |
+ |
|
| 474 |
+ $(document).on('click.bs.carousel.data-api', '[data-slide], [data-slide-to]', function (e) {
|
|
| 475 |
+ var $this = $(this), href |
|
| 476 |
+ var $target = $($this.attr('data-target') || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) //strip for ie7
|
|
| 477 |
+ var options = $.extend({}, $target.data(), $this.data())
|
|
| 478 |
+ var slideIndex = $this.attr('data-slide-to')
|
|
| 479 |
+ if (slideIndex) options.interval = false |
|
| 480 |
+ |
|
| 481 |
+ $target.carousel(options) |
|
| 482 |
+ |
|
| 483 |
+ if (slideIndex = $this.attr('data-slide-to')) {
|
|
| 484 |
+ $target.data('bs.carousel').to(slideIndex)
|
|
| 485 |
+ } |
|
| 486 |
+ |
|
| 487 |
+ e.preventDefault() |
|
| 488 |
+ }) |
|
| 489 |
+ |
|
| 490 |
+ $(window).on('load', function () {
|
|
| 491 |
+ $('[data-ride="carousel"]').each(function () {
|
|
| 492 |
+ var $carousel = $(this) |
|
| 493 |
+ $carousel.carousel($carousel.data()) |
|
| 494 |
+ }) |
|
| 495 |
+ }) |
|
| 496 |
+ |
|
| 497 |
+}(jQuery); |
|
| 498 |
+ |
|
| 499 |
+/* ======================================================================== |
|
| 500 |
+ * Bootstrap: collapse.js v3.0.3 |
|
| 501 |
+ * http://getbootstrap.com/javascript/#collapse |
|
| 502 |
+ * ======================================================================== |
|
| 503 |
+ * Copyright 2013 Twitter, Inc. |
|
| 504 |
+ * |
|
| 505 |
+ * Licensed under the Apache License, Version 2.0 (the "License"); |
|
| 506 |
+ * you may not use this file except in compliance with the License. |
|
| 507 |
+ * You may obtain a copy of the License at |
|
| 508 |
+ * |
|
| 509 |
+ * http://www.apache.org/licenses/LICENSE-2.0 |
|
| 510 |
+ * |
|
| 511 |
+ * Unless required by applicable law or agreed to in writing, software |
|
| 512 |
+ * distributed under the License is distributed on an "AS IS" BASIS, |
|
| 513 |
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
| 514 |
+ * See the License for the specific language governing permissions and |
|
| 515 |
+ * limitations under the License. |
|
| 516 |
+ * ======================================================================== */ |
|
| 517 |
+ |
|
| 518 |
+ |
|
| 519 |
++function ($) { "use strict";
|
|
| 520 |
+ |
|
| 521 |
+ // COLLAPSE PUBLIC CLASS DEFINITION |
|
| 522 |
+ // ================================ |
|
| 523 |
+ |
|
| 524 |
+ var Collapse = function (element, options) {
|
|
| 525 |
+ this.$element = $(element) |
|
| 526 |
+ this.options = $.extend({}, Collapse.DEFAULTS, options)
|
|
| 527 |
+ this.transitioning = null |
|
| 528 |
+ |
|
| 529 |
+ if (this.options.parent) this.$parent = $(this.options.parent) |
|
| 530 |
+ if (this.options.toggle) this.toggle() |
|
| 531 |
+ } |
|
| 532 |
+ |
|
| 533 |
+ Collapse.DEFAULTS = {
|
|
| 534 |
+ toggle: true |
|
| 535 |
+ } |
|
| 536 |
+ |
|
| 537 |
+ Collapse.prototype.dimension = function () {
|
|
| 538 |
+ var hasWidth = this.$element.hasClass('width')
|
|
| 539 |
+ return hasWidth ? 'width' : 'height' |
|
| 540 |
+ } |
|
| 541 |
+ |
|
| 542 |
+ Collapse.prototype.show = function () {
|
|
| 543 |
+ if (this.transitioning || this.$element.hasClass('in')) return
|
|
| 544 |
+ |
|
| 545 |
+ var startEvent = $.Event('show.bs.collapse')
|
|
| 546 |
+ this.$element.trigger(startEvent) |
|
| 547 |
+ if (startEvent.isDefaultPrevented()) return |
|
| 548 |
+ |
|
| 549 |
+ var actives = this.$parent && this.$parent.find('> .panel > .in')
|
|
| 550 |
+ |
|
| 551 |
+ if (actives && actives.length) {
|
|
| 552 |
+ var hasData = actives.data('bs.collapse')
|
|
| 553 |
+ if (hasData && hasData.transitioning) return |
|
| 554 |
+ actives.collapse('hide')
|
|
| 555 |
+ hasData || actives.data('bs.collapse', null)
|
|
| 556 |
+ } |
|
| 557 |
+ |
|
| 558 |
+ var dimension = this.dimension() |
|
| 559 |
+ |
|
| 560 |
+ this.$element |
|
| 561 |
+ .removeClass('collapse')
|
|
| 562 |
+ .addClass('collapsing')
|
|
| 563 |
+ [dimension](0) |
|
| 564 |
+ |
|
| 565 |
+ this.transitioning = 1 |
|
| 566 |
+ |
|
| 567 |
+ var complete = function () {
|
|
| 568 |
+ this.$element |
|
| 569 |
+ .removeClass('collapsing')
|
|
| 570 |
+ .addClass('in')
|
|
| 571 |
+ [dimension]('auto')
|
|
| 572 |
+ this.transitioning = 0 |
|
| 573 |
+ this.$element.trigger('shown.bs.collapse')
|
|
| 574 |
+ } |
|
| 575 |
+ |
|
| 576 |
+ if (!$.support.transition) return complete.call(this) |
|
| 577 |
+ |
|
| 578 |
+ var scrollSize = $.camelCase(['scroll', dimension].join('-'))
|
|
| 579 |
+ |
|
| 580 |
+ this.$element |
|
| 581 |
+ .one($.support.transition.end, $.proxy(complete, this)) |
|
| 582 |
+ .emulateTransitionEnd(350) |
|
| 583 |
+ [dimension](this.$element[0][scrollSize]) |
|
| 584 |
+ } |
|
| 585 |
+ |
|
| 586 |
+ Collapse.prototype.hide = function () {
|
|
| 587 |
+ if (this.transitioning || !this.$element.hasClass('in')) return
|
|
| 588 |
+ |
|
| 589 |
+ var startEvent = $.Event('hide.bs.collapse')
|
|
| 590 |
+ this.$element.trigger(startEvent) |
|
| 591 |
+ if (startEvent.isDefaultPrevented()) return |
|
| 592 |
+ |
|
| 593 |
+ var dimension = this.dimension() |
|
| 594 |
+ |
|
| 595 |
+ this.$element |
|
| 596 |
+ [dimension](this.$element[dimension]()) |
|
| 597 |
+ [0].offsetHeight |
|
| 598 |
+ |
|
| 599 |
+ this.$element |
|
| 600 |
+ .addClass('collapsing')
|
|
| 601 |
+ .removeClass('collapse')
|
|
| 602 |
+ .removeClass('in')
|
|
| 603 |
+ |
|
| 604 |
+ this.transitioning = 1 |
|
| 605 |
+ |
|
| 606 |
+ var complete = function () {
|
|
| 607 |
+ this.transitioning = 0 |
|
| 608 |
+ this.$element |
|
| 609 |
+ .trigger('hidden.bs.collapse')
|
|
| 610 |
+ .removeClass('collapsing')
|
|
| 611 |
+ .addClass('collapse')
|
|
| 612 |
+ } |
|
| 613 |
+ |
|
| 614 |
+ if (!$.support.transition) return complete.call(this) |
|
| 615 |
+ |
|
| 616 |
+ this.$element |
|
| 617 |
+ [dimension](0) |
|
| 618 |
+ .one($.support.transition.end, $.proxy(complete, this)) |
|
| 619 |
+ .emulateTransitionEnd(350) |
|
| 620 |
+ } |
|
| 621 |
+ |
|
| 622 |
+ Collapse.prototype.toggle = function () {
|
|
| 623 |
+ this[this.$element.hasClass('in') ? 'hide' : 'show']()
|
|
| 624 |
+ } |
|
| 625 |
+ |
|
| 626 |
+ |
|
| 627 |
+ // COLLAPSE PLUGIN DEFINITION |
|
| 628 |
+ // ========================== |
|
| 629 |
+ |
|
| 630 |
+ var old = $.fn.collapse |
|
| 631 |
+ |
|
| 632 |
+ $.fn.collapse = function (option) {
|
|
| 633 |
+ return this.each(function () {
|
|
| 634 |
+ var $this = $(this) |
|
| 635 |
+ var data = $this.data('bs.collapse')
|
|
| 636 |
+ var options = $.extend({}, Collapse.DEFAULTS, $this.data(), typeof option == 'object' && option)
|
|
| 637 |
+ |
|
| 638 |
+ if (!data) $this.data('bs.collapse', (data = new Collapse(this, options)))
|
|
| 639 |
+ if (typeof option == 'string') data[option]() |
|
| 640 |
+ }) |
|
| 641 |
+ } |
|
| 642 |
+ |
|
| 643 |
+ $.fn.collapse.Constructor = Collapse |
|
| 644 |
+ |
|
| 645 |
+ |
|
| 646 |
+ // COLLAPSE NO CONFLICT |
|
| 647 |
+ // ==================== |
|
| 648 |
+ |
|
| 649 |
+ $.fn.collapse.noConflict = function () {
|
|
| 650 |
+ $.fn.collapse = old |
|
| 651 |
+ return this |
|
| 652 |
+ } |
|
| 653 |
+ |
|
| 654 |
+ |
|
| 655 |
+ // COLLAPSE DATA-API |
|
| 656 |
+ // ================= |
|
| 657 |
+ |
|
| 658 |
+ $(document).on('click.bs.collapse.data-api', '[data-toggle=collapse]', function (e) {
|
|
| 659 |
+ var $this = $(this), href |
|
| 660 |
+ var target = $this.attr('data-target')
|
|
| 661 |
+ || e.preventDefault() |
|
| 662 |
+ || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '') //strip for ie7
|
|
| 663 |
+ var $target = $(target) |
|
| 664 |
+ var data = $target.data('bs.collapse')
|
|
| 665 |
+ var option = data ? 'toggle' : $this.data() |
|
| 666 |
+ var parent = $this.attr('data-parent')
|
|
| 667 |
+ var $parent = parent && $(parent) |
|
| 668 |
+ |
|
| 669 |
+ if (!data || !data.transitioning) {
|
|
| 670 |
+ if ($parent) $parent.find('[data-toggle=collapse][data-parent="' + parent + '"]').not($this).addClass('collapsed')
|
|
| 671 |
+ $this[$target.hasClass('in') ? 'addClass' : 'removeClass']('collapsed')
|
|
| 672 |
+ } |
|
| 673 |
+ |
|
| 674 |
+ $target.collapse(option) |
|
| 675 |
+ }) |
|
| 676 |
+ |
|
| 677 |
+}(jQuery); |
|
| 678 |
+ |
|
| 679 |
+/* ======================================================================== |
|
| 680 |
+ * Bootstrap: dropdown.js v3.0.3 |
|
| 681 |
+ * http://getbootstrap.com/javascript/#dropdowns |
|
| 682 |
+ * ======================================================================== |
|
| 683 |
+ * Copyright 2013 Twitter, Inc. |
|
| 684 |
+ * |
|
| 685 |
+ * Licensed under the Apache License, Version 2.0 (the "License"); |
|
| 686 |
+ * you may not use this file except in compliance with the License. |
|
| 687 |
+ * You may obtain a copy of the License at |
|
| 688 |
+ * |
|
| 689 |
+ * http://www.apache.org/licenses/LICENSE-2.0 |
|
| 690 |
+ * |
|
| 691 |
+ * Unless required by applicable law or agreed to in writing, software |
|
| 692 |
+ * distributed under the License is distributed on an "AS IS" BASIS, |
|
| 693 |
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
| 694 |
+ * See the License for the specific language governing permissions and |
|
| 695 |
+ * limitations under the License. |
|
| 696 |
+ * ======================================================================== */ |
|
| 697 |
+ |
|
| 698 |
+ |
|
| 699 |
++function ($) { "use strict";
|
|
| 700 |
+ |
|
| 701 |
+ // DROPDOWN CLASS DEFINITION |
|
| 702 |
+ // ========================= |
|
| 703 |
+ |
|
| 704 |
+ var backdrop = '.dropdown-backdrop' |
|
| 705 |
+ var toggle = '[data-toggle=dropdown]' |
|
| 706 |
+ var Dropdown = function (element) {
|
|
| 707 |
+ $(element).on('click.bs.dropdown', this.toggle)
|
|
| 708 |
+ } |
|
| 709 |
+ |
|
| 710 |
+ Dropdown.prototype.toggle = function (e) {
|
|
| 711 |
+ var $this = $(this) |
|
| 712 |
+ |
|
| 713 |
+ if ($this.is('.disabled, :disabled')) return
|
|
| 714 |
+ |
|
| 715 |
+ var $parent = getParent($this) |
|
| 716 |
+ var isActive = $parent.hasClass('open')
|
|
| 717 |
+ |
|
| 718 |
+ clearMenus() |
|
| 719 |
+ |
|
| 720 |
+ if (!isActive) {
|
|
| 721 |
+ if ('ontouchstart' in document.documentElement && !$parent.closest('.navbar-nav').length) {
|
|
| 722 |
+ // if mobile we use a backdrop because click events don't delegate |
|
| 723 |
+ $('<div class="dropdown-backdrop"/>').insertAfter($(this)).on('click', clearMenus)
|
|
| 724 |
+ } |
|
| 725 |
+ |
|
| 726 |
+ $parent.trigger(e = $.Event('show.bs.dropdown'))
|
|
| 727 |
+ |
|
| 728 |
+ if (e.isDefaultPrevented()) return |
|
| 729 |
+ |
|
| 730 |
+ $parent |
|
| 731 |
+ .toggleClass('open')
|
|
| 732 |
+ .trigger('shown.bs.dropdown')
|
|
| 733 |
+ |
|
| 734 |
+ $this.focus() |
|
| 735 |
+ } |
|
| 736 |
+ |
|
| 737 |
+ return false |
|
| 738 |
+ } |
|
| 739 |
+ |
|
| 740 |
+ Dropdown.prototype.keydown = function (e) {
|
|
| 741 |
+ if (!/(38|40|27)/.test(e.keyCode)) return |
|
| 742 |
+ |
|
| 743 |
+ var $this = $(this) |
|
| 744 |
+ |
|
| 745 |
+ e.preventDefault() |
|
| 746 |
+ e.stopPropagation() |
|
| 747 |
+ |
|
| 748 |
+ if ($this.is('.disabled, :disabled')) return
|
|
| 749 |
+ |
|
| 750 |
+ var $parent = getParent($this) |
|
| 751 |
+ var isActive = $parent.hasClass('open')
|
|
| 752 |
+ |
|
| 753 |
+ if (!isActive || (isActive && e.keyCode == 27)) {
|
|
| 754 |
+ if (e.which == 27) $parent.find(toggle).focus() |
|
| 755 |
+ return $this.click() |
|
| 756 |
+ } |
|
| 757 |
+ |
|
| 758 |
+ var $items = $('[role=menu] li:not(.divider):visible a', $parent)
|
|
| 759 |
+ |
|
| 760 |
+ if (!$items.length) return |
|
| 761 |
+ |
|
| 762 |
+ var index = $items.index($items.filter(':focus'))
|
|
| 763 |
+ |
|
| 764 |
+ if (e.keyCode == 38 && index > 0) index-- // up |
|
| 765 |
+ if (e.keyCode == 40 && index < $items.length - 1) index++ // down |
|
| 766 |
+ if (!~index) index=0 |
|
| 767 |
+ |
|
| 768 |
+ $items.eq(index).focus() |
|
| 769 |
+ } |
|
| 770 |
+ |
|
| 771 |
+ function clearMenus() {
|
|
| 772 |
+ $(backdrop).remove() |
|
| 773 |
+ $(toggle).each(function (e) {
|
|
| 774 |
+ var $parent = getParent($(this)) |
|
| 775 |
+ if (!$parent.hasClass('open')) return
|
|
| 776 |
+ $parent.trigger(e = $.Event('hide.bs.dropdown'))
|
|
| 777 |
+ if (e.isDefaultPrevented()) return |
|
| 778 |
+ $parent.removeClass('open').trigger('hidden.bs.dropdown')
|
|
| 779 |
+ }) |
|
| 780 |
+ } |
|
| 781 |
+ |
|
| 782 |
+ function getParent($this) {
|
|
| 783 |
+ var selector = $this.attr('data-target')
|
|
| 784 |
+ |
|
| 785 |
+ if (!selector) {
|
|
| 786 |
+ selector = $this.attr('href')
|
|
| 787 |
+ selector = selector && /#/.test(selector) && selector.replace(/.*(?=#[^\s]*$)/, '') //strip for ie7 |
|
| 788 |
+ } |
|
| 789 |
+ |
|
| 790 |
+ var $parent = selector && $(selector) |
|
| 791 |
+ |
|
| 792 |
+ return $parent && $parent.length ? $parent : $this.parent() |
|
| 793 |
+ } |
|
| 794 |
+ |
|
| 795 |
+ |
|
| 796 |
+ // DROPDOWN PLUGIN DEFINITION |
|
| 797 |
+ // ========================== |
|
| 798 |
+ |
|
| 799 |
+ var old = $.fn.dropdown |
|
| 800 |
+ |
|
| 801 |
+ $.fn.dropdown = function (option) {
|
|
| 802 |
+ return this.each(function () {
|
|
| 803 |
+ var $this = $(this) |
|
| 804 |
+ var data = $this.data('bs.dropdown')
|
|
| 805 |
+ |
|
| 806 |
+ if (!data) $this.data('bs.dropdown', (data = new Dropdown(this)))
|
|
| 807 |
+ if (typeof option == 'string') data[option].call($this) |
|
| 808 |
+ }) |
|
| 809 |
+ } |
|
| 810 |
+ |
|
| 811 |
+ $.fn.dropdown.Constructor = Dropdown |
|
| 812 |
+ |
|
| 813 |
+ |
|
| 814 |
+ // DROPDOWN NO CONFLICT |
|
| 815 |
+ // ==================== |
|
| 816 |
+ |
|
| 817 |
+ $.fn.dropdown.noConflict = function () {
|
|
| 818 |
+ $.fn.dropdown = old |
|
| 819 |
+ return this |
|
| 820 |
+ } |
|
| 821 |
+ |
|
| 822 |
+ |
|
| 823 |
+ // APPLY TO STANDARD DROPDOWN ELEMENTS |
|
| 824 |
+ // =================================== |
|
| 825 |
+ |
|
| 826 |
+ $(document) |
|
| 827 |
+ .on('click.bs.dropdown.data-api', clearMenus)
|
|
| 828 |
+ .on('click.bs.dropdown.data-api', '.dropdown form', function (e) { e.stopPropagation() })
|
|
| 829 |
+ .on('click.bs.dropdown.data-api' , toggle, Dropdown.prototype.toggle)
|
|
| 830 |
+ .on('keydown.bs.dropdown.data-api', toggle + ', [role=menu]' , Dropdown.prototype.keydown)
|
|
| 831 |
+ |
|
| 832 |
+}(jQuery); |
|
| 833 |
+ |
|
| 834 |
+/* ======================================================================== |
|
| 835 |
+ * Bootstrap: modal.js v3.0.3 |
|
| 836 |
+ * http://getbootstrap.com/javascript/#modals |
|
| 837 |
+ * ======================================================================== |
|
| 838 |
+ * Copyright 2013 Twitter, Inc. |
|
| 839 |
+ * |
|
| 840 |
+ * Licensed under the Apache License, Version 2.0 (the "License"); |
|
| 841 |
+ * you may not use this file except in compliance with the License. |
|
| 842 |
+ * You may obtain a copy of the License at |
|
| 843 |
+ * |
|
| 844 |
+ * http://www.apache.org/licenses/LICENSE-2.0 |
|
| 845 |
+ * |
|
| 846 |
+ * Unless required by applicable law or agreed to in writing, software |
|
| 847 |
+ * distributed under the License is distributed on an "AS IS" BASIS, |
|
| 848 |
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
| 849 |
+ * See the License for the specific language governing permissions and |
|
| 850 |
+ * limitations under the License. |
|
| 851 |
+ * ======================================================================== */ |
|
| 852 |
+ |
|
| 853 |
+ |
|
| 854 |
++function ($) { "use strict";
|
|
| 855 |
+ |
|
| 856 |
+ // MODAL CLASS DEFINITION |
|
| 857 |
+ // ====================== |
|
| 858 |
+ |
|
| 859 |
+ var Modal = function (element, options) {
|
|
| 860 |
+ this.options = options |
|
| 861 |
+ this.$element = $(element) |
|
| 862 |
+ this.$backdrop = |
|
| 863 |
+ this.isShown = null |
|
| 864 |
+ |
|
| 865 |
+ if (this.options.remote) this.$element.load(this.options.remote) |
|
| 866 |
+ } |
|
| 867 |
+ |
|
| 868 |
+ Modal.DEFAULTS = {
|
|
| 869 |
+ backdrop: true |
|
| 870 |
+ , keyboard: true |
|
| 871 |
+ , show: true |
|
| 872 |
+ } |
|
| 873 |
+ |
|
| 874 |
+ Modal.prototype.toggle = function (_relatedTarget) {
|
|
| 875 |
+ return this[!this.isShown ? 'show' : 'hide'](_relatedTarget) |
|
| 876 |
+ } |
|
| 877 |
+ |
|
| 878 |
+ Modal.prototype.show = function (_relatedTarget) {
|
|
| 879 |
+ var that = this |
|
| 880 |
+ var e = $.Event('show.bs.modal', { relatedTarget: _relatedTarget })
|
|
| 881 |
+ |
|
| 882 |
+ this.$element.trigger(e) |
|
| 883 |
+ |
|
| 884 |
+ if (this.isShown || e.isDefaultPrevented()) return |
|
| 885 |
+ |
|
| 886 |
+ this.isShown = true |
|
| 887 |
+ |
|
| 888 |
+ this.escape() |
|
| 889 |
+ |
|
| 890 |
+ this.$element.on('click.dismiss.modal', '[data-dismiss="modal"]', $.proxy(this.hide, this))
|
|
| 891 |
+ |
|
| 892 |
+ this.backdrop(function () {
|
|
| 893 |
+ var transition = $.support.transition && that.$element.hasClass('fade')
|
|
| 894 |
+ |
|
| 895 |
+ if (!that.$element.parent().length) {
|
|
| 896 |
+ that.$element.appendTo(document.body) // don't move modals dom position |
|
| 897 |
+ } |
|
| 898 |
+ |
|
| 899 |
+ that.$element.show() |
|
| 900 |
+ |
|
| 901 |
+ if (transition) {
|
|
| 902 |
+ that.$element[0].offsetWidth // force reflow |
|
| 903 |
+ } |
|
| 904 |
+ |
|
| 905 |
+ that.$element |
|
| 906 |
+ .addClass('in')
|
|
| 907 |
+ .attr('aria-hidden', false)
|
|
| 908 |
+ |
|
| 909 |
+ that.enforceFocus() |
|
| 910 |
+ |
|
| 911 |
+ var e = $.Event('shown.bs.modal', { relatedTarget: _relatedTarget })
|
|
| 912 |
+ |
|
| 913 |
+ transition ? |
|
| 914 |
+ that.$element.find('.modal-dialog') // wait for modal to slide in
|
|
| 915 |
+ .one($.support.transition.end, function () {
|
|
| 916 |
+ that.$element.focus().trigger(e) |
|
| 917 |
+ }) |
|
| 918 |
+ .emulateTransitionEnd(300) : |
|
| 919 |
+ that.$element.focus().trigger(e) |
|
| 920 |
+ }) |
|
| 921 |
+ } |
|
| 922 |
+ |
|
| 923 |
+ Modal.prototype.hide = function (e) {
|
|
| 924 |
+ if (e) e.preventDefault() |
|
| 925 |
+ |
|
| 926 |
+ e = $.Event('hide.bs.modal')
|
|
| 927 |
+ |
|
| 928 |
+ this.$element.trigger(e) |
|
| 929 |
+ |
|
| 930 |
+ if (!this.isShown || e.isDefaultPrevented()) return |
|
| 931 |
+ |
|
| 932 |
+ this.isShown = false |
|
| 933 |
+ |
|
| 934 |
+ this.escape() |
|
| 935 |
+ |
|
| 936 |
+ $(document).off('focusin.bs.modal')
|
|
| 937 |
+ |
|
| 938 |
+ this.$element |
|
| 939 |
+ .removeClass('in')
|
|
| 940 |
+ .attr('aria-hidden', true)
|
|
| 941 |
+ .off('click.dismiss.modal')
|
|
| 942 |
+ |
|
| 943 |
+ $.support.transition && this.$element.hasClass('fade') ?
|
|
| 944 |
+ this.$element |
|
| 945 |
+ .one($.support.transition.end, $.proxy(this.hideModal, this)) |
|
| 946 |
+ .emulateTransitionEnd(300) : |
|
| 947 |
+ this.hideModal() |
|
| 948 |
+ } |
|
| 949 |
+ |
|
| 950 |
+ Modal.prototype.enforceFocus = function () {
|
|
| 951 |
+ $(document) |
|
| 952 |
+ .off('focusin.bs.modal') // guard against infinite focus loop
|
|
| 953 |
+ .on('focusin.bs.modal', $.proxy(function (e) {
|
|
| 954 |
+ if (this.$element[0] !== e.target && !this.$element.has(e.target).length) {
|
|
| 955 |
+ this.$element.focus() |
|
| 956 |
+ } |
|
| 957 |
+ }, this)) |
|
| 958 |
+ } |
|
| 959 |
+ |
|
| 960 |
+ Modal.prototype.escape = function () {
|
|
| 961 |
+ if (this.isShown && this.options.keyboard) {
|
|
| 962 |
+ this.$element.on('keyup.dismiss.bs.modal', $.proxy(function (e) {
|
|
| 963 |
+ e.which == 27 && this.hide() |
|
| 964 |
+ }, this)) |
|
| 965 |
+ } else if (!this.isShown) {
|
|
| 966 |
+ this.$element.off('keyup.dismiss.bs.modal')
|
|
| 967 |
+ } |
|
| 968 |
+ } |
|
| 969 |
+ |
|
| 970 |
+ Modal.prototype.hideModal = function () {
|
|
| 971 |
+ var that = this |
|
| 972 |
+ this.$element.hide() |
|
| 973 |
+ this.backdrop(function () {
|
|
| 974 |
+ that.removeBackdrop() |
|
| 975 |
+ that.$element.trigger('hidden.bs.modal')
|
|
| 976 |
+ }) |
|
| 977 |
+ } |
|
| 978 |
+ |
|
| 979 |
+ Modal.prototype.removeBackdrop = function () {
|
|
| 980 |
+ this.$backdrop && this.$backdrop.remove() |
|
| 981 |
+ this.$backdrop = null |
|
| 982 |
+ } |
|
| 983 |
+ |
|
| 984 |
+ Modal.prototype.backdrop = function (callback) {
|
|
| 985 |
+ var that = this |
|
| 986 |
+ var animate = this.$element.hasClass('fade') ? 'fade' : ''
|
|
| 987 |
+ |
|
| 988 |
+ if (this.isShown && this.options.backdrop) {
|
|
| 989 |
+ var doAnimate = $.support.transition && animate |
|
| 990 |
+ |
|
| 991 |
+ this.$backdrop = $('<div class="modal-backdrop ' + animate + '" />')
|
|
| 992 |
+ .appendTo(document.body) |
|
| 993 |
+ |
|
| 994 |
+ this.$element.on('click.dismiss.modal', $.proxy(function (e) {
|
|
| 995 |
+ if (e.target !== e.currentTarget) return |
|
| 996 |
+ this.options.backdrop == 'static' |
|
| 997 |
+ ? this.$element[0].focus.call(this.$element[0]) |
|
| 998 |
+ : this.hide.call(this) |
|
| 999 |
+ }, this)) |
|
| 1000 |
+ |
|
| 1001 |
+ if (doAnimate) this.$backdrop[0].offsetWidth // force reflow |
|
| 1002 |
+ |
|
| 1003 |
+ this.$backdrop.addClass('in')
|
|
| 1004 |
+ |
|
| 1005 |
+ if (!callback) return |
|
| 1006 |
+ |
|
| 1007 |
+ doAnimate ? |
|
| 1008 |
+ this.$backdrop |
|
| 1009 |
+ .one($.support.transition.end, callback) |
|
| 1010 |
+ .emulateTransitionEnd(150) : |
|
| 1011 |
+ callback() |
|
| 1012 |
+ |
|
| 1013 |
+ } else if (!this.isShown && this.$backdrop) {
|
|
| 1014 |
+ this.$backdrop.removeClass('in')
|
|
| 1015 |
+ |
|
| 1016 |
+ $.support.transition && this.$element.hasClass('fade')?
|
|
| 1017 |
+ this.$backdrop |
|
| 1018 |
+ .one($.support.transition.end, callback) |
|
| 1019 |
+ .emulateTransitionEnd(150) : |
|
| 1020 |
+ callback() |
|
| 1021 |
+ |
|
| 1022 |
+ } else if (callback) {
|
|
| 1023 |
+ callback() |
|
| 1024 |
+ } |
|
| 1025 |
+ } |
|
| 1026 |
+ |
|
| 1027 |
+ |
|
| 1028 |
+ // MODAL PLUGIN DEFINITION |
|
| 1029 |
+ // ======================= |
|
| 1030 |
+ |
|
| 1031 |
+ var old = $.fn.modal |
|
| 1032 |
+ |
|
| 1033 |
+ $.fn.modal = function (option, _relatedTarget) {
|
|
| 1034 |
+ return this.each(function () {
|
|
| 1035 |
+ var $this = $(this) |
|
| 1036 |
+ var data = $this.data('bs.modal')
|
|
| 1037 |
+ var options = $.extend({}, Modal.DEFAULTS, $this.data(), typeof option == 'object' && option)
|
|
| 1038 |
+ |
|
| 1039 |
+ if (!data) $this.data('bs.modal', (data = new Modal(this, options)))
|
|
| 1040 |
+ if (typeof option == 'string') data[option](_relatedTarget) |
|
| 1041 |
+ else if (options.show) data.show(_relatedTarget) |
|
| 1042 |
+ }) |
|
| 1043 |
+ } |
|
| 1044 |
+ |
|
| 1045 |
+ $.fn.modal.Constructor = Modal |
|
| 1046 |
+ |
|
| 1047 |
+ |
|
| 1048 |
+ // MODAL NO CONFLICT |
|
| 1049 |
+ // ================= |
|
| 1050 |
+ |
|
| 1051 |
+ $.fn.modal.noConflict = function () {
|
|
| 1052 |
+ $.fn.modal = old |
|
| 1053 |
+ return this |
|
| 1054 |
+ } |
|
| 1055 |
+ |
|
| 1056 |
+ |
|
| 1057 |
+ // MODAL DATA-API |
|
| 1058 |
+ // ============== |
|
| 1059 |
+ |
|
| 1060 |
+ $(document).on('click.bs.modal.data-api', '[data-toggle="modal"]', function (e) {
|
|
| 1061 |
+ var $this = $(this) |
|
| 1062 |
+ var href = $this.attr('href')
|
|
| 1063 |
+ var $target = $($this.attr('data-target') || (href && href.replace(/.*(?=#[^\s]+$)/, ''))) //strip for ie7
|
|
| 1064 |
+ var option = $target.data('modal') ? 'toggle' : $.extend({ remote: !/#/.test(href) && href }, $target.data(), $this.data())
|
|
| 1065 |
+ |
|
| 1066 |
+ e.preventDefault() |
|
| 1067 |
+ |
|
| 1068 |
+ $target |
|
| 1069 |
+ .modal(option, this) |
|
| 1070 |
+ .one('hide', function () {
|
|
| 1071 |
+ $this.is(':visible') && $this.focus()
|
|
| 1072 |
+ }) |
|
| 1073 |
+ }) |
|
| 1074 |
+ |
|
| 1075 |
+ $(document) |
|
| 1076 |
+ .on('show.bs.modal', '.modal', function () { $(document.body).addClass('modal-open') })
|
|
| 1077 |
+ .on('hidden.bs.modal', '.modal', function () { $(document.body).removeClass('modal-open') })
|
|
| 1078 |
+ |
|
| 1079 |
+}(jQuery); |
|
| 1080 |
+ |
|
| 1081 |
+/* ======================================================================== |
|
| 1082 |
+ * Bootstrap: tooltip.js v3.0.3 |
|
| 1083 |
+ * http://getbootstrap.com/javascript/#tooltip |
|
| 1084 |
+ * Inspired by the original jQuery.tipsy by Jason Frame |
|
| 1085 |
+ * ======================================================================== |
|
| 1086 |
+ * Copyright 2013 Twitter, Inc. |
|
| 1087 |
+ * |
|
| 1088 |
+ * Licensed under the Apache License, Version 2.0 (the "License"); |
|
| 1089 |
+ * you may not use this file except in compliance with the License. |
|
| 1090 |
+ * You may obtain a copy of the License at |
|
| 1091 |
+ * |
|
| 1092 |
+ * http://www.apache.org/licenses/LICENSE-2.0 |
|
| 1093 |
+ * |
|
| 1094 |
+ * Unless required by applicable law or agreed to in writing, software |
|
| 1095 |
+ * distributed under the License is distributed on an "AS IS" BASIS, |
|
| 1096 |
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
| 1097 |
+ * See the License for the specific language governing permissions and |
|
| 1098 |
+ * limitations under the License. |
|
| 1099 |
+ * ======================================================================== */ |
|
| 1100 |
+ |
|
| 1101 |
+ |
|
| 1102 |
++function ($) { "use strict";
|
|
| 1103 |
+ |
|
| 1104 |
+ // TOOLTIP PUBLIC CLASS DEFINITION |
|
| 1105 |
+ // =============================== |
|
| 1106 |
+ |
|
| 1107 |
+ var Tooltip = function (element, options) {
|
|
| 1108 |
+ this.type = |
|
| 1109 |
+ this.options = |
|
| 1110 |
+ this.enabled = |
|
| 1111 |
+ this.timeout = |
|
| 1112 |
+ this.hoverState = |
|
| 1113 |
+ this.$element = null |
|
| 1114 |
+ |
|
| 1115 |
+ this.init('tooltip', element, options)
|
|
| 1116 |
+ } |
|
| 1117 |
+ |
|
| 1118 |
+ Tooltip.DEFAULTS = {
|
|
| 1119 |
+ animation: true |
|
| 1120 |
+ , placement: 'top' |
|
| 1121 |
+ , selector: false |
|
| 1122 |
+ , template: '<div class="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>' |
|
| 1123 |
+ , trigger: 'hover focus' |
|
| 1124 |
+ , title: '' |
|
| 1125 |
+ , delay: 0 |
|
| 1126 |
+ , html: false |
|
| 1127 |
+ , container: false |
|
| 1128 |
+ } |
|
| 1129 |
+ |
|
| 1130 |
+ Tooltip.prototype.init = function (type, element, options) {
|
|
| 1131 |
+ this.enabled = true |
|
| 1132 |
+ this.type = type |
|
| 1133 |
+ this.$element = $(element) |
|
| 1134 |
+ this.options = this.getOptions(options) |
|
| 1135 |
+ |
|
| 1136 |
+ var triggers = this.options.trigger.split(' ')
|
|
| 1137 |
+ |
|
| 1138 |
+ for (var i = triggers.length; i--;) {
|
|
| 1139 |
+ var trigger = triggers[i] |
|
| 1140 |
+ |
|
| 1141 |
+ if (trigger == 'click') {
|
|
| 1142 |
+ this.$element.on('click.' + this.type, this.options.selector, $.proxy(this.toggle, this))
|
|
| 1143 |
+ } else if (trigger != 'manual') {
|
|
| 1144 |
+ var eventIn = trigger == 'hover' ? 'mouseenter' : 'focus' |
|
| 1145 |
+ var eventOut = trigger == 'hover' ? 'mouseleave' : 'blur' |
|
| 1146 |
+ |
|
| 1147 |
+ this.$element.on(eventIn + '.' + this.type, this.options.selector, $.proxy(this.enter, this)) |
|
| 1148 |
+ this.$element.on(eventOut + '.' + this.type, this.options.selector, $.proxy(this.leave, this)) |
|
| 1149 |
+ } |
|
| 1150 |
+ } |
|
| 1151 |
+ |
|
| 1152 |
+ this.options.selector ? |
|
| 1153 |
+ (this._options = $.extend({}, this.options, { trigger: 'manual', selector: '' })) :
|
|
| 1154 |
+ this.fixTitle() |
|
| 1155 |
+ } |
|
| 1156 |
+ |
|
| 1157 |
+ Tooltip.prototype.getDefaults = function () {
|
|
| 1158 |
+ return Tooltip.DEFAULTS |
|
| 1159 |
+ } |
|
| 1160 |
+ |
|
| 1161 |
+ Tooltip.prototype.getOptions = function (options) {
|
|
| 1162 |
+ options = $.extend({}, this.getDefaults(), this.$element.data(), options)
|
|
| 1163 |
+ |
|
| 1164 |
+ if (options.delay && typeof options.delay == 'number') {
|
|
| 1165 |
+ options.delay = {
|
|
| 1166 |
+ show: options.delay |
|
| 1167 |
+ , hide: options.delay |
|
| 1168 |
+ } |
|
| 1169 |
+ } |
|
| 1170 |
+ |
|
| 1171 |
+ return options |
|
| 1172 |
+ } |
|
| 1173 |
+ |
|
| 1174 |
+ Tooltip.prototype.getDelegateOptions = function () {
|
|
| 1175 |
+ var options = {}
|
|
| 1176 |
+ var defaults = this.getDefaults() |
|
| 1177 |
+ |
|
| 1178 |
+ this._options && $.each(this._options, function (key, value) {
|
|
| 1179 |
+ if (defaults[key] != value) options[key] = value |
|
| 1180 |
+ }) |
|
| 1181 |
+ |
|
| 1182 |
+ return options |
|
| 1183 |
+ } |
|
| 1184 |
+ |
|
| 1185 |
+ Tooltip.prototype.enter = function (obj) {
|
|
| 1186 |
+ var self = obj instanceof this.constructor ? |
|
| 1187 |
+ obj : $(obj.currentTarget)[this.type](this.getDelegateOptions()).data('bs.' + this.type)
|
|
| 1188 |
+ |
|
| 1189 |
+ clearTimeout(self.timeout) |
|
| 1190 |
+ |
|
| 1191 |
+ self.hoverState = 'in' |
|
| 1192 |
+ |
|
| 1193 |
+ if (!self.options.delay || !self.options.delay.show) return self.show() |
|
| 1194 |
+ |
|
| 1195 |
+ self.timeout = setTimeout(function () {
|
|
| 1196 |
+ if (self.hoverState == 'in') self.show() |
|
| 1197 |
+ }, self.options.delay.show) |
|
| 1198 |
+ } |
|
| 1199 |
+ |
|
| 1200 |
+ Tooltip.prototype.leave = function (obj) {
|
|
| 1201 |
+ var self = obj instanceof this.constructor ? |
|
| 1202 |
+ obj : $(obj.currentTarget)[this.type](this.getDelegateOptions()).data('bs.' + this.type)
|
|
| 1203 |
+ |
|
| 1204 |
+ clearTimeout(self.timeout) |
|
| 1205 |
+ |
|
| 1206 |
+ self.hoverState = 'out' |
|
| 1207 |
+ |
|
| 1208 |
+ if (!self.options.delay || !self.options.delay.hide) return self.hide() |
|
| 1209 |
+ |
|
| 1210 |
+ self.timeout = setTimeout(function () {
|
|
| 1211 |
+ if (self.hoverState == 'out') self.hide() |
|
| 1212 |
+ }, self.options.delay.hide) |
|
| 1213 |
+ } |
|
| 1214 |
+ |
|
| 1215 |
+ Tooltip.prototype.show = function () {
|
|
| 1216 |
+ var e = $.Event('show.bs.'+ this.type)
|
|
| 1217 |
+ |
|
| 1218 |
+ if (this.hasContent() && this.enabled) {
|
|
| 1219 |
+ this.$element.trigger(e) |
|
| 1220 |
+ |
|
| 1221 |
+ if (e.isDefaultPrevented()) return |
|
| 1222 |
+ |
|
| 1223 |
+ var $tip = this.tip() |
|
| 1224 |
+ |
|
| 1225 |
+ this.setContent() |
|
| 1226 |
+ |
|
| 1227 |
+ if (this.options.animation) $tip.addClass('fade')
|
|
| 1228 |
+ |
|
| 1229 |
+ var placement = typeof this.options.placement == 'function' ? |
|
| 1230 |
+ this.options.placement.call(this, $tip[0], this.$element[0]) : |
|
| 1231 |
+ this.options.placement |
|
| 1232 |
+ |
|
| 1233 |
+ var autoToken = /\s?auto?\s?/i |
|
| 1234 |
+ var autoPlace = autoToken.test(placement) |
|
| 1235 |
+ if (autoPlace) placement = placement.replace(autoToken, '') || 'top' |
|
| 1236 |
+ |
|
| 1237 |
+ $tip |
|
| 1238 |
+ .detach() |
|
| 1239 |
+ .css({ top: 0, left: 0, display: 'block' })
|
|
| 1240 |
+ .addClass(placement) |
|
| 1241 |
+ |
|
| 1242 |
+ this.options.container ? $tip.appendTo(this.options.container) : $tip.insertAfter(this.$element) |
|
| 1243 |
+ |
|
| 1244 |
+ var pos = this.getPosition() |
|
| 1245 |
+ var actualWidth = $tip[0].offsetWidth |
|
| 1246 |
+ var actualHeight = $tip[0].offsetHeight |
|
| 1247 |
+ |
|
| 1248 |
+ if (autoPlace) {
|
|
| 1249 |
+ var $parent = this.$element.parent() |
|
| 1250 |
+ |
|
| 1251 |
+ var orgPlacement = placement |
|
| 1252 |
+ var docScroll = document.documentElement.scrollTop || document.body.scrollTop |
|
| 1253 |
+ var parentWidth = this.options.container == 'body' ? window.innerWidth : $parent.outerWidth() |
|
| 1254 |
+ var parentHeight = this.options.container == 'body' ? window.innerHeight : $parent.outerHeight() |
|
| 1255 |
+ var parentLeft = this.options.container == 'body' ? 0 : $parent.offset().left |
|
| 1256 |
+ |
|
| 1257 |
+ placement = placement == 'bottom' && pos.top + pos.height + actualHeight - docScroll > parentHeight ? 'top' : |
|
| 1258 |
+ placement == 'top' && pos.top - docScroll - actualHeight < 0 ? 'bottom' : |
|
| 1259 |
+ placement == 'right' && pos.right + actualWidth > parentWidth ? 'left' : |
|
| 1260 |
+ placement == 'left' && pos.left - actualWidth < parentLeft ? 'right' : |
|
| 1261 |
+ placement |
|
| 1262 |
+ |
|
| 1263 |
+ $tip |
|
| 1264 |
+ .removeClass(orgPlacement) |
|
| 1265 |
+ .addClass(placement) |
|
| 1266 |
+ } |
|
| 1267 |
+ |
|
| 1268 |
+ var calculatedOffset = this.getCalculatedOffset(placement, pos, actualWidth, actualHeight) |
|
| 1269 |
+ |
|
| 1270 |
+ this.applyPlacement(calculatedOffset, placement) |
|
| 1271 |
+ this.$element.trigger('shown.bs.' + this.type)
|
|
| 1272 |
+ } |
|
| 1273 |
+ } |
|
| 1274 |
+ |
|
| 1275 |
+ Tooltip.prototype.applyPlacement = function(offset, placement) {
|
|
| 1276 |
+ var replace |
|
| 1277 |
+ var $tip = this.tip() |
|
| 1278 |
+ var width = $tip[0].offsetWidth |
|
| 1279 |
+ var height = $tip[0].offsetHeight |
|
| 1280 |
+ |
|
| 1281 |
+ // manually read margins because getBoundingClientRect includes difference |
|
| 1282 |
+ var marginTop = parseInt($tip.css('margin-top'), 10)
|
|
| 1283 |
+ var marginLeft = parseInt($tip.css('margin-left'), 10)
|
|
| 1284 |
+ |
|
| 1285 |
+ // we must check for NaN for ie 8/9 |
|
| 1286 |
+ if (isNaN(marginTop)) marginTop = 0 |
|
| 1287 |
+ if (isNaN(marginLeft)) marginLeft = 0 |
|
| 1288 |
+ |
|
| 1289 |
+ offset.top = offset.top + marginTop |
|
| 1290 |
+ offset.left = offset.left + marginLeft |
|
| 1291 |
+ |
|
| 1292 |
+ $tip |
|
| 1293 |
+ .offset(offset) |
|
| 1294 |
+ .addClass('in')
|
|
| 1295 |
+ |
|
| 1296 |
+ // check to see if placing tip in new offset caused the tip to resize itself |
|
| 1297 |
+ var actualWidth = $tip[0].offsetWidth |
|
| 1298 |
+ var actualHeight = $tip[0].offsetHeight |
|
| 1299 |
+ |
|
| 1300 |
+ if (placement == 'top' && actualHeight != height) {
|
|
| 1301 |
+ replace = true |
|
| 1302 |
+ offset.top = offset.top + height - actualHeight |
|
| 1303 |
+ } |
|
| 1304 |
+ |
|
| 1305 |
+ if (/bottom|top/.test(placement)) {
|
|
| 1306 |
+ var delta = 0 |
|
| 1307 |
+ |
|
| 1308 |
+ if (offset.left < 0) {
|
|
| 1309 |
+ delta = offset.left * -2 |
|
| 1310 |
+ offset.left = 0 |
|
| 1311 |
+ |
|
| 1312 |
+ $tip.offset(offset) |
|
| 1313 |
+ |
|
| 1314 |
+ actualWidth = $tip[0].offsetWidth |
|
| 1315 |
+ actualHeight = $tip[0].offsetHeight |
|
| 1316 |
+ } |
|
| 1317 |
+ |
|
| 1318 |
+ this.replaceArrow(delta - width + actualWidth, actualWidth, 'left') |
|
| 1319 |
+ } else {
|
|
| 1320 |
+ this.replaceArrow(actualHeight - height, actualHeight, 'top') |
|
| 1321 |
+ } |
|
| 1322 |
+ |
|
| 1323 |
+ if (replace) $tip.offset(offset) |
|
| 1324 |
+ } |
|
| 1325 |
+ |
|
| 1326 |
+ Tooltip.prototype.replaceArrow = function(delta, dimension, position) {
|
|
| 1327 |
+ this.arrow().css(position, delta ? (50 * (1 - delta / dimension) + "%") : '') |
|
| 1328 |
+ } |
|
| 1329 |
+ |
|
| 1330 |
+ Tooltip.prototype.setContent = function () {
|
|
| 1331 |
+ var $tip = this.tip() |
|
| 1332 |
+ var title = this.getTitle() |
|
| 1333 |
+ |
|
| 1334 |
+ $tip.find('.tooltip-inner')[this.options.html ? 'html' : 'text'](title)
|
|
| 1335 |
+ $tip.removeClass('fade in top bottom left right')
|
|
| 1336 |
+ } |
|
| 1337 |
+ |
|
| 1338 |
+ Tooltip.prototype.hide = function () {
|
|
| 1339 |
+ var that = this |
|
| 1340 |
+ var $tip = this.tip() |
|
| 1341 |
+ var e = $.Event('hide.bs.' + this.type)
|
|
| 1342 |
+ |
|
| 1343 |
+ function complete() {
|
|
| 1344 |
+ if (that.hoverState != 'in') $tip.detach() |
|
| 1345 |
+ } |
|
| 1346 |
+ |
|
| 1347 |
+ this.$element.trigger(e) |
|
| 1348 |
+ |
|
| 1349 |
+ if (e.isDefaultPrevented()) return |
|
| 1350 |
+ |
|
| 1351 |
+ $tip.removeClass('in')
|
|
| 1352 |
+ |
|
| 1353 |
+ $.support.transition && this.$tip.hasClass('fade') ?
|
|
| 1354 |
+ $tip |
|
| 1355 |
+ .one($.support.transition.end, complete) |
|
| 1356 |
+ .emulateTransitionEnd(150) : |
|
| 1357 |
+ complete() |
|
| 1358 |
+ |
|
| 1359 |
+ this.$element.trigger('hidden.bs.' + this.type)
|
|
| 1360 |
+ |
|
| 1361 |
+ return this |
|
| 1362 |
+ } |
|
| 1363 |
+ |
|
| 1364 |
+ Tooltip.prototype.fixTitle = function () {
|
|
| 1365 |
+ var $e = this.$element |
|
| 1366 |
+ if ($e.attr('title') || typeof($e.attr('data-original-title')) != 'string') {
|
|
| 1367 |
+ $e.attr('data-original-title', $e.attr('title') || '').attr('title', '')
|
|
| 1368 |
+ } |
|
| 1369 |
+ } |
|
| 1370 |
+ |
|
| 1371 |
+ Tooltip.prototype.hasContent = function () {
|
|
| 1372 |
+ return this.getTitle() |
|
| 1373 |
+ } |
|
| 1374 |
+ |
|
| 1375 |
+ Tooltip.prototype.getPosition = function () {
|
|
| 1376 |
+ var el = this.$element[0] |
|
| 1377 |
+ return $.extend({}, (typeof el.getBoundingClientRect == 'function') ? el.getBoundingClientRect() : {
|
|
| 1378 |
+ width: el.offsetWidth |
|
| 1379 |
+ , height: el.offsetHeight |
|
| 1380 |
+ }, this.$element.offset()) |
|
| 1381 |
+ } |
|
| 1382 |
+ |
|
| 1383 |
+ Tooltip.prototype.getCalculatedOffset = function (placement, pos, actualWidth, actualHeight) {
|
|
| 1384 |
+ return placement == 'bottom' ? { top: pos.top + pos.height, left: pos.left + pos.width / 2 - actualWidth / 2 } :
|
|
| 1385 |
+ placement == 'top' ? { top: pos.top - actualHeight, left: pos.left + pos.width / 2 - actualWidth / 2 } :
|
|
| 1386 |
+ placement == 'left' ? { top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left - actualWidth } :
|
|
| 1387 |
+ /* placement == 'right' */ { top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left + pos.width }
|
|
| 1388 |
+ } |
|
| 1389 |
+ |
|
| 1390 |
+ Tooltip.prototype.getTitle = function () {
|
|
| 1391 |
+ var title |
|
| 1392 |
+ var $e = this.$element |
|
| 1393 |
+ var o = this.options |
|
| 1394 |
+ |
|
| 1395 |
+ title = $e.attr('data-original-title')
|
|
| 1396 |
+ || (typeof o.title == 'function' ? o.title.call($e[0]) : o.title) |
|
| 1397 |
+ |
|
| 1398 |
+ return title |
|
| 1399 |
+ } |
|
| 1400 |
+ |
|
| 1401 |
+ Tooltip.prototype.tip = function () {
|
|
| 1402 |
+ return this.$tip = this.$tip || $(this.options.template) |
|
| 1403 |
+ } |
|
| 1404 |
+ |
|
| 1405 |
+ Tooltip.prototype.arrow = function () {
|
|
| 1406 |
+ return this.$arrow = this.$arrow || this.tip().find('.tooltip-arrow')
|
|
| 1407 |
+ } |
|
| 1408 |
+ |
|
| 1409 |
+ Tooltip.prototype.validate = function () {
|
|
| 1410 |
+ if (!this.$element[0].parentNode) {
|
|
| 1411 |
+ this.hide() |
|
| 1412 |
+ this.$element = null |
|
| 1413 |
+ this.options = null |
|
| 1414 |
+ } |
|
| 1415 |
+ } |
|
| 1416 |
+ |
|
| 1417 |
+ Tooltip.prototype.enable = function () {
|
|
| 1418 |
+ this.enabled = true |
|
| 1419 |
+ } |
|
| 1420 |
+ |
|
| 1421 |
+ Tooltip.prototype.disable = function () {
|
|
| 1422 |
+ this.enabled = false |
|
| 1423 |
+ } |
|
| 1424 |
+ |
|
| 1425 |
+ Tooltip.prototype.toggleEnabled = function () {
|
|
| 1426 |
+ this.enabled = !this.enabled |
|
| 1427 |
+ } |
|
| 1428 |
+ |
|
| 1429 |
+ Tooltip.prototype.toggle = function (e) {
|
|
| 1430 |
+ var self = e ? $(e.currentTarget)[this.type](this.getDelegateOptions()).data('bs.' + this.type) : this
|
|
| 1431 |
+ self.tip().hasClass('in') ? self.leave(self) : self.enter(self)
|
|
| 1432 |
+ } |
|
| 1433 |
+ |
|
| 1434 |
+ Tooltip.prototype.destroy = function () {
|
|
| 1435 |
+ this.hide().$element.off('.' + this.type).removeData('bs.' + this.type)
|
|
| 1436 |
+ } |
|
| 1437 |
+ |
|
| 1438 |
+ |
|
| 1439 |
+ // TOOLTIP PLUGIN DEFINITION |
|
| 1440 |
+ // ========================= |
|
| 1441 |
+ |
|
| 1442 |
+ var old = $.fn.tooltip |
|
| 1443 |
+ |
|
| 1444 |
+ $.fn.tooltip = function (option) {
|
|
| 1445 |
+ return this.each(function () {
|
|
| 1446 |
+ var $this = $(this) |
|
| 1447 |
+ var data = $this.data('bs.tooltip')
|
|
| 1448 |
+ var options = typeof option == 'object' && option |
|
| 1449 |
+ |
|
| 1450 |
+ if (!data) $this.data('bs.tooltip', (data = new Tooltip(this, options)))
|
|
| 1451 |
+ if (typeof option == 'string') data[option]() |
|
| 1452 |
+ }) |
|
| 1453 |
+ } |
|
| 1454 |
+ |
|
| 1455 |
+ $.fn.tooltip.Constructor = Tooltip |
|
| 1456 |
+ |
|
| 1457 |
+ |
|
| 1458 |
+ // TOOLTIP NO CONFLICT |
|
| 1459 |
+ // =================== |
|
| 1460 |
+ |
|
| 1461 |
+ $.fn.tooltip.noConflict = function () {
|
|
| 1462 |
+ $.fn.tooltip = old |
|
| 1463 |
+ return this |
|
| 1464 |
+ } |
|
| 1465 |
+ |
|
| 1466 |
+}(jQuery); |
|
| 1467 |
+ |
|
| 1468 |
+/* ======================================================================== |
|
| 1469 |
+ * Bootstrap: popover.js v3.0.3 |
|
| 1470 |
+ * http://getbootstrap.com/javascript/#popovers |
|
| 1471 |
+ * ======================================================================== |
|
| 1472 |
+ * Copyright 2013 Twitter, Inc. |
|
| 1473 |
+ * |
|
| 1474 |
+ * Licensed under the Apache License, Version 2.0 (the "License"); |
|
| 1475 |
+ * you may not use this file except in compliance with the License. |
|
| 1476 |
+ * You may obtain a copy of the License at |
|
| 1477 |
+ * |
|
| 1478 |
+ * http://www.apache.org/licenses/LICENSE-2.0 |
|
| 1479 |
+ * |
|
| 1480 |
+ * Unless required by applicable law or agreed to in writing, software |
|
| 1481 |
+ * distributed under the License is distributed on an "AS IS" BASIS, |
|
| 1482 |
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
| 1483 |
+ * See the License for the specific language governing permissions and |
|
| 1484 |
+ * limitations under the License. |
|
| 1485 |
+ * ======================================================================== */ |
|
| 1486 |
+ |
|
| 1487 |
+ |
|
| 1488 |
++function ($) { "use strict";
|
|
| 1489 |
+ |
|
| 1490 |
+ // POPOVER PUBLIC CLASS DEFINITION |
|
| 1491 |
+ // =============================== |
|
| 1492 |
+ |
|
| 1493 |
+ var Popover = function (element, options) {
|
|
| 1494 |
+ this.init('popover', element, options)
|
|
| 1495 |
+ } |
|
| 1496 |
+ |
|
| 1497 |
+ if (!$.fn.tooltip) throw new Error('Popover requires tooltip.js')
|
|
| 1498 |
+ |
|
| 1499 |
+ Popover.DEFAULTS = $.extend({} , $.fn.tooltip.Constructor.DEFAULTS, {
|
|
| 1500 |
+ placement: 'right' |
|
| 1501 |
+ , trigger: 'click' |
|
| 1502 |
+ , content: '' |
|
| 1503 |
+ , template: '<div class="popover"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>' |
|
| 1504 |
+ }) |
|
| 1505 |
+ |
|
| 1506 |
+ |
|
| 1507 |
+ // NOTE: POPOVER EXTENDS tooltip.js |
|
| 1508 |
+ // ================================ |
|
| 1509 |
+ |
|
| 1510 |
+ Popover.prototype = $.extend({}, $.fn.tooltip.Constructor.prototype)
|
|
| 1511 |
+ |
|
| 1512 |
+ Popover.prototype.constructor = Popover |
|
| 1513 |
+ |
|
| 1514 |
+ Popover.prototype.getDefaults = function () {
|
|
| 1515 |
+ return Popover.DEFAULTS |
|
| 1516 |
+ } |
|
| 1517 |
+ |
|
| 1518 |
+ Popover.prototype.setContent = function () {
|
|
| 1519 |
+ var $tip = this.tip() |
|
| 1520 |
+ var title = this.getTitle() |
|
| 1521 |
+ var content = this.getContent() |
|
| 1522 |
+ |
|
| 1523 |
+ $tip.find('.popover-title')[this.options.html ? 'html' : 'text'](title)
|
|
| 1524 |
+ $tip.find('.popover-content')[this.options.html ? 'html' : 'text'](content)
|
|
| 1525 |
+ |
|
| 1526 |
+ $tip.removeClass('fade top bottom left right in')
|
|
| 1527 |
+ |
|
| 1528 |
+ // IE8 doesn't accept hiding via the `:empty` pseudo selector, we have to do |
|
| 1529 |
+ // this manually by checking the contents. |
|
| 1530 |
+ if (!$tip.find('.popover-title').html()) $tip.find('.popover-title').hide()
|
|
| 1531 |
+ } |
|
| 1532 |
+ |
|
| 1533 |
+ Popover.prototype.hasContent = function () {
|
|
| 1534 |
+ return this.getTitle() || this.getContent() |
|
| 1535 |
+ } |
|
| 1536 |
+ |
|
| 1537 |
+ Popover.prototype.getContent = function () {
|
|
| 1538 |
+ var $e = this.$element |
|
| 1539 |
+ var o = this.options |
|
| 1540 |
+ |
|
| 1541 |
+ return $e.attr('data-content')
|
|
| 1542 |
+ || (typeof o.content == 'function' ? |
|
| 1543 |
+ o.content.call($e[0]) : |
|
| 1544 |
+ o.content) |
|
| 1545 |
+ } |
|
| 1546 |
+ |
|
| 1547 |
+ Popover.prototype.arrow = function () {
|
|
| 1548 |
+ return this.$arrow = this.$arrow || this.tip().find('.arrow')
|
|
| 1549 |
+ } |
|
| 1550 |
+ |
|
| 1551 |
+ Popover.prototype.tip = function () {
|
|
| 1552 |
+ if (!this.$tip) this.$tip = $(this.options.template) |
|
| 1553 |
+ return this.$tip |
|
| 1554 |
+ } |
|
| 1555 |
+ |
|
| 1556 |
+ |
|
| 1557 |
+ // POPOVER PLUGIN DEFINITION |
|
| 1558 |
+ // ========================= |
|
| 1559 |
+ |
|
| 1560 |
+ var old = $.fn.popover |
|
| 1561 |
+ |
|
| 1562 |
+ $.fn.popover = function (option) {
|
|
| 1563 |
+ return this.each(function () {
|
|
| 1564 |
+ var $this = $(this) |
|
| 1565 |
+ var data = $this.data('bs.popover')
|
|
| 1566 |
+ var options = typeof option == 'object' && option |
|
| 1567 |
+ |
|
| 1568 |
+ if (!data) $this.data('bs.popover', (data = new Popover(this, options)))
|
|
| 1569 |
+ if (typeof option == 'string') data[option]() |
|
| 1570 |
+ }) |
|
| 1571 |
+ } |
|
| 1572 |
+ |
|
| 1573 |
+ $.fn.popover.Constructor = Popover |
|
| 1574 |
+ |
|
| 1575 |
+ |
|
| 1576 |
+ // POPOVER NO CONFLICT |
|
| 1577 |
+ // =================== |
|
| 1578 |
+ |
|
| 1579 |
+ $.fn.popover.noConflict = function () {
|
|
| 1580 |
+ $.fn.popover = old |
|
| 1581 |
+ return this |
|
| 1582 |
+ } |
|
| 1583 |
+ |
|
| 1584 |
+}(jQuery); |
|
| 1585 |
+ |
|
| 1586 |
+/* ======================================================================== |
|
| 1587 |
+ * Bootstrap: scrollspy.js v3.0.3 |
|
| 1588 |
+ * http://getbootstrap.com/javascript/#scrollspy |
|
| 1589 |
+ * ======================================================================== |
|
| 1590 |
+ * Copyright 2013 Twitter, Inc. |
|
| 1591 |
+ * |
|
| 1592 |
+ * Licensed under the Apache License, Version 2.0 (the "License"); |
|
| 1593 |
+ * you may not use this file except in compliance with the License. |
|
| 1594 |
+ * You may obtain a copy of the License at |
|
| 1595 |
+ * |
|
| 1596 |
+ * http://www.apache.org/licenses/LICENSE-2.0 |
|
| 1597 |
+ * |
|
| 1598 |
+ * Unless required by applicable law or agreed to in writing, software |
|
| 1599 |
+ * distributed under the License is distributed on an "AS IS" BASIS, |
|
| 1600 |
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
| 1601 |
+ * See the License for the specific language governing permissions and |
|
| 1602 |
+ * limitations under the License. |
|
| 1603 |
+ * ======================================================================== */ |
|
| 1604 |
+ |
|
| 1605 |
+ |
|
| 1606 |
++function ($) { "use strict";
|
|
| 1607 |
+ |
|
| 1608 |
+ // SCROLLSPY CLASS DEFINITION |
|
| 1609 |
+ // ========================== |
|
| 1610 |
+ |
|
| 1611 |
+ function ScrollSpy(element, options) {
|
|
| 1612 |
+ var href |
|
| 1613 |
+ var process = $.proxy(this.process, this) |
|
| 1614 |
+ |
|
| 1615 |
+ this.$element = $(element).is('body') ? $(window) : $(element)
|
|
| 1616 |
+ this.$body = $('body')
|
|
| 1617 |
+ this.$scrollElement = this.$element.on('scroll.bs.scroll-spy.data-api', process)
|
|
| 1618 |
+ this.options = $.extend({}, ScrollSpy.DEFAULTS, options)
|
|
| 1619 |
+ this.selector = (this.options.target |
|
| 1620 |
+ || ((href = $(element).attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) //strip for ie7
|
|
| 1621 |
+ || '') + ' .nav li > a' |
|
| 1622 |
+ this.offsets = $([]) |
|
| 1623 |
+ this.targets = $([]) |
|
| 1624 |
+ this.activeTarget = null |
|
| 1625 |
+ |
|
| 1626 |
+ this.refresh() |
|
| 1627 |
+ this.process() |
|
| 1628 |
+ } |
|
| 1629 |
+ |
|
| 1630 |
+ ScrollSpy.DEFAULTS = {
|
|
| 1631 |
+ offset: 10 |
|
| 1632 |
+ } |
|
| 1633 |
+ |
|
| 1634 |
+ ScrollSpy.prototype.refresh = function () {
|
|
| 1635 |
+ var offsetMethod = this.$element[0] == window ? 'offset' : 'position' |
|
| 1636 |
+ |
|
| 1637 |
+ this.offsets = $([]) |
|
| 1638 |
+ this.targets = $([]) |
|
| 1639 |
+ |
|
| 1640 |
+ var self = this |
|
| 1641 |
+ var $targets = this.$body |
|
| 1642 |
+ .find(this.selector) |
|
| 1643 |
+ .map(function () {
|
|
| 1644 |
+ var $el = $(this) |
|
| 1645 |
+ var href = $el.data('target') || $el.attr('href')
|
|
| 1646 |
+ var $href = /^#\w/.test(href) && $(href) |
|
| 1647 |
+ |
|
| 1648 |
+ return ($href |
|
| 1649 |
+ && $href.length |
|
| 1650 |
+ && [[ $href[offsetMethod]().top + (!$.isWindow(self.$scrollElement.get(0)) && self.$scrollElement.scrollTop()), href ]]) || null |
|
| 1651 |
+ }) |
|
| 1652 |
+ .sort(function (a, b) { return a[0] - b[0] })
|
|
| 1653 |
+ .each(function () {
|
|
| 1654 |
+ self.offsets.push(this[0]) |
|
| 1655 |
+ self.targets.push(this[1]) |
|
| 1656 |
+ }) |
|
| 1657 |
+ } |
|
| 1658 |
+ |
|
| 1659 |
+ ScrollSpy.prototype.process = function () {
|
|
| 1660 |
+ var scrollTop = this.$scrollElement.scrollTop() + this.options.offset |
|
| 1661 |
+ var scrollHeight = this.$scrollElement[0].scrollHeight || this.$body[0].scrollHeight |
|
| 1662 |
+ var maxScroll = scrollHeight - this.$scrollElement.height() |
|
| 1663 |
+ var offsets = this.offsets |
|
| 1664 |
+ var targets = this.targets |
|
| 1665 |
+ var activeTarget = this.activeTarget |
|
| 1666 |
+ var i |
|
| 1667 |
+ |
|
| 1668 |
+ if (scrollTop >= maxScroll) {
|
|
| 1669 |
+ return activeTarget != (i = targets.last()[0]) && this.activate(i) |
|
| 1670 |
+ } |
|
| 1671 |
+ |
|
| 1672 |
+ for (i = offsets.length; i--;) {
|
|
| 1673 |
+ activeTarget != targets[i] |
|
| 1674 |
+ && scrollTop >= offsets[i] |
|
| 1675 |
+ && (!offsets[i + 1] || scrollTop <= offsets[i + 1]) |
|
| 1676 |
+ && this.activate( targets[i] ) |
|
| 1677 |
+ } |
|
| 1678 |
+ } |
|
| 1679 |
+ |
|
| 1680 |
+ ScrollSpy.prototype.activate = function (target) {
|
|
| 1681 |
+ this.activeTarget = target |
|
| 1682 |
+ |
|
| 1683 |
+ $(this.selector) |
|
| 1684 |
+ .parents('.active')
|
|
| 1685 |
+ .removeClass('active')
|
|
| 1686 |
+ |
|
| 1687 |
+ var selector = this.selector |
|
| 1688 |
+ + '[data-target="' + target + '"],' |
|
| 1689 |
+ + this.selector + '[href="' + target + '"]' |
|
| 1690 |
+ |
|
| 1691 |
+ var active = $(selector) |
|
| 1692 |
+ .parents('li')
|
|
| 1693 |
+ .addClass('active')
|
|
| 1694 |
+ |
|
| 1695 |
+ if (active.parent('.dropdown-menu').length) {
|
|
| 1696 |
+ active = active |
|
| 1697 |
+ .closest('li.dropdown')
|
|
| 1698 |
+ .addClass('active')
|
|
| 1699 |
+ } |
|
| 1700 |
+ |
|
| 1701 |
+ active.trigger('activate.bs.scrollspy')
|
|
| 1702 |
+ } |
|
| 1703 |
+ |
|
| 1704 |
+ |
|
| 1705 |
+ // SCROLLSPY PLUGIN DEFINITION |
|
| 1706 |
+ // =========================== |
|
| 1707 |
+ |
|
| 1708 |
+ var old = $.fn.scrollspy |
|
| 1709 |
+ |
|
| 1710 |
+ $.fn.scrollspy = function (option) {
|
|
| 1711 |
+ return this.each(function () {
|
|
| 1712 |
+ var $this = $(this) |
|
| 1713 |
+ var data = $this.data('bs.scrollspy')
|
|
| 1714 |
+ var options = typeof option == 'object' && option |
|
| 1715 |
+ |
|
| 1716 |
+ if (!data) $this.data('bs.scrollspy', (data = new ScrollSpy(this, options)))
|
|
| 1717 |
+ if (typeof option == 'string') data[option]() |
|
| 1718 |
+ }) |
|
| 1719 |
+ } |
|
| 1720 |
+ |
|
| 1721 |
+ $.fn.scrollspy.Constructor = ScrollSpy |
|
| 1722 |
+ |
|
| 1723 |
+ |
|
| 1724 |
+ // SCROLLSPY NO CONFLICT |
|
| 1725 |
+ // ===================== |
|
| 1726 |
+ |
|
| 1727 |
+ $.fn.scrollspy.noConflict = function () {
|
|
| 1728 |
+ $.fn.scrollspy = old |
|
| 1729 |
+ return this |
|
| 1730 |
+ } |
|
| 1731 |
+ |
|
| 1732 |
+ |
|
| 1733 |
+ // SCROLLSPY DATA-API |
|
| 1734 |
+ // ================== |
|
| 1735 |
+ |
|
| 1736 |
+ $(window).on('load', function () {
|
|
| 1737 |
+ $('[data-spy="scroll"]').each(function () {
|
|
| 1738 |
+ var $spy = $(this) |
|
| 1739 |
+ $spy.scrollspy($spy.data()) |
|
| 1740 |
+ }) |
|
| 1741 |
+ }) |
|
| 1742 |
+ |
|
| 1743 |
+}(jQuery); |
|
| 1744 |
+ |
|
| 1745 |
+/* ======================================================================== |
|
| 1746 |
+ * Bootstrap: tab.js v3.0.3 |
|
| 1747 |
+ * http://getbootstrap.com/javascript/#tabs |
|
| 1748 |
+ * ======================================================================== |
|
| 1749 |
+ * Copyright 2013 Twitter, Inc. |
|
| 1750 |
+ * |
|
| 1751 |
+ * Licensed under the Apache License, Version 2.0 (the "License"); |
|
| 1752 |
+ * you may not use this file except in compliance with the License. |
|
| 1753 |
+ * You may obtain a copy of the License at |
|
| 1754 |
+ * |
|
| 1755 |
+ * http://www.apache.org/licenses/LICENSE-2.0 |
|
| 1756 |
+ * |
|
| 1757 |
+ * Unless required by applicable law or agreed to in writing, software |
|
| 1758 |
+ * distributed under the License is distributed on an "AS IS" BASIS, |
|
| 1759 |
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
| 1760 |
+ * See the License for the specific language governing permissions and |
|
| 1761 |
+ * limitations under the License. |
|
| 1762 |
+ * ======================================================================== */ |
|
| 1763 |
+ |
|
| 1764 |
+ |
|
| 1765 |
++function ($) { "use strict";
|
|
| 1766 |
+ |
|
| 1767 |
+ // TAB CLASS DEFINITION |
|
| 1768 |
+ // ==================== |
|
| 1769 |
+ |
|
| 1770 |
+ var Tab = function (element) {
|
|
| 1771 |
+ this.element = $(element) |
|
| 1772 |
+ } |
|
| 1773 |
+ |
|
| 1774 |
+ Tab.prototype.show = function () {
|
|
| 1775 |
+ var $this = this.element |
|
| 1776 |
+ var $ul = $this.closest('ul:not(.dropdown-menu)')
|
|
| 1777 |
+ var selector = $this.data('target')
|
|
| 1778 |
+ |
|
| 1779 |
+ if (!selector) {
|
|
| 1780 |
+ selector = $this.attr('href')
|
|
| 1781 |
+ selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') //strip for ie7 |
|
| 1782 |
+ } |
|
| 1783 |
+ |
|
| 1784 |
+ if ($this.parent('li').hasClass('active')) return
|
|
| 1785 |
+ |
|
| 1786 |
+ var previous = $ul.find('.active:last a')[0]
|
|
| 1787 |
+ var e = $.Event('show.bs.tab', {
|
|
| 1788 |
+ relatedTarget: previous |
|
| 1789 |
+ }) |
|
| 1790 |
+ |
|
| 1791 |
+ $this.trigger(e) |
|
| 1792 |
+ |
|
| 1793 |
+ if (e.isDefaultPrevented()) return |
|
| 1794 |
+ |
|
| 1795 |
+ var $target = $(selector) |
|
| 1796 |
+ |
|
| 1797 |
+ this.activate($this.parent('li'), $ul)
|
|
| 1798 |
+ this.activate($target, $target.parent(), function () {
|
|
| 1799 |
+ $this.trigger({
|
|
| 1800 |
+ type: 'shown.bs.tab' |
|
| 1801 |
+ , relatedTarget: previous |
|
| 1802 |
+ }) |
|
| 1803 |
+ }) |
|
| 1804 |
+ } |
|
| 1805 |
+ |
|
| 1806 |
+ Tab.prototype.activate = function (element, container, callback) {
|
|
| 1807 |
+ var $active = container.find('> .active')
|
|
| 1808 |
+ var transition = callback |
|
| 1809 |
+ && $.support.transition |
|
| 1810 |
+ && $active.hasClass('fade')
|
|
| 1811 |
+ |
|
| 1812 |
+ function next() {
|
|
| 1813 |
+ $active |
|
| 1814 |
+ .removeClass('active')
|
|
| 1815 |
+ .find('> .dropdown-menu > .active')
|
|
| 1816 |
+ .removeClass('active')
|
|
| 1817 |
+ |
|
| 1818 |
+ element.addClass('active')
|
|
| 1819 |
+ |
|
| 1820 |
+ if (transition) {
|
|
| 1821 |
+ element[0].offsetWidth // reflow for transition |
|
| 1822 |
+ element.addClass('in')
|
|
| 1823 |
+ } else {
|
|
| 1824 |
+ element.removeClass('fade')
|
|
| 1825 |
+ } |
|
| 1826 |
+ |
|
| 1827 |
+ if (element.parent('.dropdown-menu')) {
|
|
| 1828 |
+ element.closest('li.dropdown').addClass('active')
|
|
| 1829 |
+ } |
|
| 1830 |
+ |
|
| 1831 |
+ callback && callback() |
|
| 1832 |
+ } |
|
| 1833 |
+ |
|
| 1834 |
+ transition ? |
|
| 1835 |
+ $active |
|
| 1836 |
+ .one($.support.transition.end, next) |
|
| 1837 |
+ .emulateTransitionEnd(150) : |
|
| 1838 |
+ next() |
|
| 1839 |
+ |
|
| 1840 |
+ $active.removeClass('in')
|
|
| 1841 |
+ } |
|
| 1842 |
+ |
|
| 1843 |
+ |
|
| 1844 |
+ // TAB PLUGIN DEFINITION |
|
| 1845 |
+ // ===================== |
|
| 1846 |
+ |
|
| 1847 |
+ var old = $.fn.tab |
|
| 1848 |
+ |
|
| 1849 |
+ $.fn.tab = function ( option ) {
|
|
| 1850 |
+ return this.each(function () {
|
|
| 1851 |
+ var $this = $(this) |
|
| 1852 |
+ var data = $this.data('bs.tab')
|
|
| 1853 |
+ |
|
| 1854 |
+ if (!data) $this.data('bs.tab', (data = new Tab(this)))
|
|
| 1855 |
+ if (typeof option == 'string') data[option]() |
|
| 1856 |
+ }) |
|
| 1857 |
+ } |
|
| 1858 |
+ |
|
| 1859 |
+ $.fn.tab.Constructor = Tab |
|
| 1860 |
+ |
|
| 1861 |
+ |
|
| 1862 |
+ // TAB NO CONFLICT |
|
| 1863 |
+ // =============== |
|
| 1864 |
+ |
|
| 1865 |
+ $.fn.tab.noConflict = function () {
|
|
| 1866 |
+ $.fn.tab = old |
|
| 1867 |
+ return this |
|
| 1868 |
+ } |
|
| 1869 |
+ |
|
| 1870 |
+ |
|
| 1871 |
+ // TAB DATA-API |
|
| 1872 |
+ // ============ |
|
| 1873 |
+ |
|
| 1874 |
+ $(document).on('click.bs.tab.data-api', '[data-toggle="tab"], [data-toggle="pill"]', function (e) {
|
|
| 1875 |
+ e.preventDefault() |
|
| 1876 |
+ $(this).tab('show')
|
|
| 1877 |
+ }) |
|
| 1878 |
+ |
|
| 1879 |
+}(jQuery); |
|
| 1880 |
+ |
|
| 1881 |
+/* ======================================================================== |
|
| 1882 |
+ * Bootstrap: affix.js v3.0.3 |
|
| 1883 |
+ * http://getbootstrap.com/javascript/#affix |
|
| 1884 |
+ * ======================================================================== |
|
| 1885 |
+ * Copyright 2013 Twitter, Inc. |
|
| 1886 |
+ * |
|
| 1887 |
+ * Licensed under the Apache License, Version 2.0 (the "License"); |
|
| 1888 |
+ * you may not use this file except in compliance with the License. |
|
| 1889 |
+ * You may obtain a copy of the License at |
|
| 1890 |
+ * |
|
| 1891 |
+ * http://www.apache.org/licenses/LICENSE-2.0 |
|
| 1892 |
+ * |
|
| 1893 |
+ * Unless required by applicable law or agreed to in writing, software |
|
| 1894 |
+ * distributed under the License is distributed on an "AS IS" BASIS, |
|
| 1895 |
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
| 1896 |
+ * See the License for the specific language governing permissions and |
|
| 1897 |
+ * limitations under the License. |
|
| 1898 |
+ * ======================================================================== */ |
|
| 1899 |
+ |
|
| 1900 |
+ |
|
| 1901 |
++function ($) { "use strict";
|
|
| 1902 |
+ |
|
| 1903 |
+ // AFFIX CLASS DEFINITION |
|
| 1904 |
+ // ====================== |
|
| 1905 |
+ |
|
| 1906 |
+ var Affix = function (element, options) {
|
|
| 1907 |
+ this.options = $.extend({}, Affix.DEFAULTS, options)
|
|
| 1908 |
+ this.$window = $(window) |
|
| 1909 |
+ .on('scroll.bs.affix.data-api', $.proxy(this.checkPosition, this))
|
|
| 1910 |
+ .on('click.bs.affix.data-api', $.proxy(this.checkPositionWithEventLoop, this))
|
|
| 1911 |
+ |
|
| 1912 |
+ this.$element = $(element) |
|
| 1913 |
+ this.affixed = |
|
| 1914 |
+ this.unpin = null |
|
| 1915 |
+ |
|
| 1916 |
+ this.checkPosition() |
|
| 1917 |
+ } |
|
| 1918 |
+ |
|
| 1919 |
+ Affix.RESET = 'affix affix-top affix-bottom' |
|
| 1920 |
+ |
|
| 1921 |
+ Affix.DEFAULTS = {
|
|
| 1922 |
+ offset: 0 |
|
| 1923 |
+ } |
|
| 1924 |
+ |
|
| 1925 |
+ Affix.prototype.checkPositionWithEventLoop = function () {
|
|
| 1926 |
+ setTimeout($.proxy(this.checkPosition, this), 1) |
|
| 1927 |
+ } |
|
| 1928 |
+ |
|
| 1929 |
+ Affix.prototype.checkPosition = function () {
|
|
| 1930 |
+ if (!this.$element.is(':visible')) return
|
|
| 1931 |
+ |
|
| 1932 |
+ var scrollHeight = $(document).height() |
|
| 1933 |
+ var scrollTop = this.$window.scrollTop() |
|
| 1934 |
+ var position = this.$element.offset() |
|
| 1935 |
+ var offset = this.options.offset |
|
| 1936 |
+ var offsetTop = offset.top |
|
| 1937 |
+ var offsetBottom = offset.bottom |
|
| 1938 |
+ |
|
| 1939 |
+ if (typeof offset != 'object') offsetBottom = offsetTop = offset |
|
| 1940 |
+ if (typeof offsetTop == 'function') offsetTop = offset.top() |
|
| 1941 |
+ if (typeof offsetBottom == 'function') offsetBottom = offset.bottom() |
|
| 1942 |
+ |
|
| 1943 |
+ var affix = this.unpin != null && (scrollTop + this.unpin <= position.top) ? false : |
|
| 1944 |
+ offsetBottom != null && (position.top + this.$element.height() >= scrollHeight - offsetBottom) ? 'bottom' : |
|
| 1945 |
+ offsetTop != null && (scrollTop <= offsetTop) ? 'top' : false |
|
| 1946 |
+ |
|
| 1947 |
+ if (this.affixed === affix) return |
|
| 1948 |
+ if (this.unpin) this.$element.css('top', '')
|
|
| 1949 |
+ |
|
| 1950 |
+ this.affixed = affix |
|
| 1951 |
+ this.unpin = affix == 'bottom' ? position.top - scrollTop : null |
|
| 1952 |
+ |
|
| 1953 |
+ this.$element.removeClass(Affix.RESET).addClass('affix' + (affix ? '-' + affix : ''))
|
|
| 1954 |
+ |
|
| 1955 |
+ if (affix == 'bottom') {
|
|
| 1956 |
+ this.$element.offset({ top: document.body.offsetHeight - offsetBottom - this.$element.height() })
|
|
| 1957 |
+ } |
|
| 1958 |
+ } |
|
| 1959 |
+ |
|
| 1960 |
+ |
|
| 1961 |
+ // AFFIX PLUGIN DEFINITION |
|
| 1962 |
+ // ======================= |
|
| 1963 |
+ |
|
| 1964 |
+ var old = $.fn.affix |
|
| 1965 |
+ |
|
| 1966 |
+ $.fn.affix = function (option) {
|
|
| 1967 |
+ return this.each(function () {
|
|
| 1968 |
+ var $this = $(this) |
|
| 1969 |
+ var data = $this.data('bs.affix')
|
|
| 1970 |
+ var options = typeof option == 'object' && option |
|
| 1971 |
+ |
|
| 1972 |
+ if (!data) $this.data('bs.affix', (data = new Affix(this, options)))
|
|
| 1973 |
+ if (typeof option == 'string') data[option]() |
|
| 1974 |
+ }) |
|
| 1975 |
+ } |
|
| 1976 |
+ |
|
| 1977 |
+ $.fn.affix.Constructor = Affix |
|
| 1978 |
+ |
|
| 1979 |
+ |
|
| 1980 |
+ // AFFIX NO CONFLICT |
|
| 1981 |
+ // ================= |
|
| 1982 |
+ |
|
| 1983 |
+ $.fn.affix.noConflict = function () {
|
|
| 1984 |
+ $.fn.affix = old |
|
| 1985 |
+ return this |
|
| 1986 |
+ } |
|
| 1987 |
+ |
|
| 1988 |
+ |
|
| 1989 |
+ // AFFIX DATA-API |
|
| 1990 |
+ // ============== |
|
| 1991 |
+ |
|
| 1992 |
+ $(window).on('load', function () {
|
|
| 1993 |
+ $('[data-spy="affix"]').each(function () {
|
|
| 1994 |
+ var $spy = $(this) |
|
| 1995 |
+ var data = $spy.data() |
|
| 1996 |
+ |
|
| 1997 |
+ data.offset = data.offset || {}
|
|
| 1998 |
+ |
|
| 1999 |
+ if (data.offsetBottom) data.offset.bottom = data.offsetBottom |
|
| 2000 |
+ if (data.offsetTop) data.offset.top = data.offsetTop |
|
| 2001 |
+ |
|
| 2002 |
+ $spy.affix(data) |
|
| 2003 |
+ }) |
|
| 2004 |
+ }) |
|
| 2005 |
+ |
|
| 2006 |
+}(jQuery); |
| ... | ... |
@@ -0,0 +1,7 @@ |
| 1 |
+/*! |
|
| 2 |
+ * Bootstrap v3.0.3 (http://getbootstrap.com) |
|
| 3 |
+ * Copyright 2013 Twitter, Inc. |
|
| 4 |
+ * Licensed under http://www.apache.org/licenses/LICENSE-2.0 |
|
| 5 |
+ */ |
|
| 6 |
+ |
|
| 7 |
+if("undefined"==typeof jQuery)throw new Error("Bootstrap requires jQuery");+function(a){"use strict";function b(){var a=document.createElement("bootstrap"),b={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};for(var c in b)if(void 0!==a.style[c])return{end:b[c]}}a.fn.emulateTransitionEnd=function(b){var c=!1,d=this;a(this).one(a.support.transition.end,function(){c=!0});var e=function(){c||a(d).trigger(a.support.transition.end)};return setTimeout(e,b),this},a(function(){a.support.transition=b()})}(jQuery),+function(a){"use strict";var b='[data-dismiss="alert"]',c=function(c){a(c).on("click",b,this.close)};c.prototype.close=function(b){function c(){f.trigger("closed.bs.alert").remove()}var d=a(this),e=d.attr("data-target");e||(e=d.attr("href"),e=e&&e.replace(/.*(?=#[^\s]*$)/,""));var f=a(e);b&&b.preventDefault(),f.length||(f=d.hasClass("alert")?d:d.parent()),f.trigger(b=a.Event("close.bs.alert")),b.isDefaultPrevented()||(f.removeClass("in"),a.support.transition&&f.hasClass("fade")?f.one(a.support.transition.end,c).emulateTransitionEnd(150):c())};var d=a.fn.alert;a.fn.alert=function(b){return this.each(function(){var d=a(this),e=d.data("bs.alert");e||d.data("bs.alert",e=new c(this)),"string"==typeof b&&e[b].call(d)})},a.fn.alert.Constructor=c,a.fn.alert.noConflict=function(){return a.fn.alert=d,this},a(document).on("click.bs.alert.data-api",b,c.prototype.close)}(jQuery),+function(a){"use strict";var b=function(c,d){this.$element=a(c),this.options=a.extend({},b.DEFAULTS,d)};b.DEFAULTS={loadingText:"loading..."},b.prototype.setState=function(a){var b="disabled",c=this.$element,d=c.is("input")?"val":"html",e=c.data();a+="Text",e.resetText||c.data("resetText",c[d]()),c[d](e[a]||this.options[a]),setTimeout(function(){"loadingText"==a?c.addClass(b).attr(b,b):c.removeClass(b).removeAttr(b)},0)},b.prototype.toggle=function(){var a=this.$element.closest('[data-toggle="buttons"]'),b=!0;if(a.length){var c=this.$element.find("input");"radio"===c.prop("type")&&(c.prop("checked")&&this.$element.hasClass("active")?b=!1:a.find(".active").removeClass("active")),b&&c.prop("checked",!this.$element.hasClass("active")).trigger("change")}b&&this.$element.toggleClass("active")};var c=a.fn.button;a.fn.button=function(c){return this.each(function(){var d=a(this),e=d.data("bs.button"),f="object"==typeof c&&c;e||d.data("bs.button",e=new b(this,f)),"toggle"==c?e.toggle():c&&e.setState(c)})},a.fn.button.Constructor=b,a.fn.button.noConflict=function(){return a.fn.button=c,this},a(document).on("click.bs.button.data-api","[data-toggle^=button]",function(b){var c=a(b.target);c.hasClass("btn")||(c=c.closest(".btn")),c.button("toggle"),b.preventDefault()})}(jQuery),+function(a){"use strict";var b=function(b,c){this.$element=a(b),this.$indicators=this.$element.find(".carousel-indicators"),this.options=c,this.paused=this.sliding=this.interval=this.$active=this.$items=null,"hover"==this.options.pause&&this.$element.on("mouseenter",a.proxy(this.pause,this)).on("mouseleave",a.proxy(this.cycle,this))};b.DEFAULTS={interval:5e3,pause:"hover",wrap:!0},b.prototype.cycle=function(b){return b||(this.paused=!1),this.interval&&clearInterval(this.interval),this.options.interval&&!this.paused&&(this.interval=setInterval(a.proxy(this.next,this),this.options.interval)),this},b.prototype.getActiveIndex=function(){return this.$active=this.$element.find(".item.active"),this.$items=this.$active.parent().children(),this.$items.index(this.$active)},b.prototype.to=function(b){var c=this,d=this.getActiveIndex();return b>this.$items.length-1||0>b?void 0:this.sliding?this.$element.one("slid.bs.carousel",function(){c.to(b)}):d==b?this.pause().cycle():this.slide(b>d?"next":"prev",a(this.$items[b]))},b.prototype.pause=function(b){return b||(this.paused=!0),this.$element.find(".next, .prev").length&&a.support.transition.end&&(this.$element.trigger(a.support.transition.end),this.cycle(!0)),this.interval=clearInterval(this.interval),this},b.prototype.next=function(){return this.sliding?void 0:this.slide("next")},b.prototype.prev=function(){return this.sliding?void 0:this.slide("prev")},b.prototype.slide=function(b,c){var d=this.$element.find(".item.active"),e=c||d[b](),f=this.interval,g="next"==b?"left":"right",h="next"==b?"first":"last",i=this;if(!e.length){if(!this.options.wrap)return;e=this.$element.find(".item")[h]()}this.sliding=!0,f&&this.pause();var j=a.Event("slide.bs.carousel",{relatedTarget:e[0],direction:g});if(!e.hasClass("active")){if(this.$indicators.length&&(this.$indicators.find(".active").removeClass("active"),this.$element.one("slid.bs.carousel",function(){var b=a(i.$indicators.children()[i.getActiveIndex()]);b&&b.addClass("active")})),a.support.transition&&this.$element.hasClass("slide")){if(this.$element.trigger(j),j.isDefaultPrevented())return;e.addClass(b),e[0].offsetWidth,d.addClass(g),e.addClass(g),d.one(a.support.transition.end,function(){e.removeClass([b,g].join(" ")).addClass("active"),d.removeClass(["active",g].join(" ")),i.sliding=!1,setTimeout(function(){i.$element.trigger("slid.bs.carousel")},0)}).emulateTransitionEnd(600)}else{if(this.$element.trigger(j),j.isDefaultPrevented())return;d.removeClass("active"),e.addClass("active"),this.sliding=!1,this.$element.trigger("slid.bs.carousel")}return f&&this.cycle(),this}};var c=a.fn.carousel;a.fn.carousel=function(c){return this.each(function(){var d=a(this),e=d.data("bs.carousel"),f=a.extend({},b.DEFAULTS,d.data(),"object"==typeof c&&c),g="string"==typeof c?c:f.slide;e||d.data("bs.carousel",e=new b(this,f)),"number"==typeof c?e.to(c):g?e[g]():f.interval&&e.pause().cycle()})},a.fn.carousel.Constructor=b,a.fn.carousel.noConflict=function(){return a.fn.carousel=c,this},a(document).on("click.bs.carousel.data-api","[data-slide], [data-slide-to]",function(b){var c,d=a(this),e=a(d.attr("data-target")||(c=d.attr("href"))&&c.replace(/.*(?=#[^\s]+$)/,"")),f=a.extend({},e.data(),d.data()),g=d.attr("data-slide-to");g&&(f.interval=!1),e.carousel(f),(g=d.attr("data-slide-to"))&&e.data("bs.carousel").to(g),b.preventDefault()}),a(window).on("load",function(){a('[data-ride="carousel"]').each(function(){var b=a(this);b.carousel(b.data())})})}(jQuery),+function(a){"use strict";var b=function(c,d){this.$element=a(c),this.options=a.extend({},b.DEFAULTS,d),this.transitioning=null,this.options.parent&&(this.$parent=a(this.options.parent)),this.options.toggle&&this.toggle()};b.DEFAULTS={toggle:!0},b.prototype.dimension=function(){var a=this.$element.hasClass("width");return a?"width":"height"},b.prototype.show=function(){if(!this.transitioning&&!this.$element.hasClass("in")){var b=a.Event("show.bs.collapse");if(this.$element.trigger(b),!b.isDefaultPrevented()){var c=this.$parent&&this.$parent.find("> .panel > .in");if(c&&c.length){var d=c.data("bs.collapse");if(d&&d.transitioning)return;c.collapse("hide"),d||c.data("bs.collapse",null)}var e=this.dimension();this.$element.removeClass("collapse").addClass("collapsing")[e](0),this.transitioning=1;var f=function(){this.$element.removeClass("collapsing").addClass("in")[e]("auto"),this.transitioning=0,this.$element.trigger("shown.bs.collapse")};if(!a.support.transition)return f.call(this);var g=a.camelCase(["scroll",e].join("-"));this.$element.one(a.support.transition.end,a.proxy(f,this)).emulateTransitionEnd(350)[e](this.$element[0][g])}}},b.prototype.hide=function(){if(!this.transitioning&&this.$element.hasClass("in")){var b=a.Event("hide.bs.collapse");if(this.$element.trigger(b),!b.isDefaultPrevented()){var c=this.dimension();this.$element[c](this.$element[c]())[0].offsetHeight,this.$element.addClass("collapsing").removeClass("collapse").removeClass("in"),this.transitioning=1;var d=function(){this.transitioning=0,this.$element.trigger("hidden.bs.collapse").removeClass("collapsing").addClass("collapse")};return a.support.transition?(this.$element[c](0).one(a.support.transition.end,a.proxy(d,this)).emulateTransitionEnd(350),void 0):d.call(this)}}},b.prototype.toggle=function(){this[this.$element.hasClass("in")?"hide":"show"]()};var c=a.fn.collapse;a.fn.collapse=function(c){return this.each(function(){var d=a(this),e=d.data("bs.collapse"),f=a.extend({},b.DEFAULTS,d.data(),"object"==typeof c&&c);e||d.data("bs.collapse",e=new b(this,f)),"string"==typeof c&&e[c]()})},a.fn.collapse.Constructor=b,a.fn.collapse.noConflict=function(){return a.fn.collapse=c,this},a(document).on("click.bs.collapse.data-api","[data-toggle=collapse]",function(b){var c,d=a(this),e=d.attr("data-target")||b.preventDefault()||(c=d.attr("href"))&&c.replace(/.*(?=#[^\s]+$)/,""),f=a(e),g=f.data("bs.collapse"),h=g?"toggle":d.data(),i=d.attr("data-parent"),j=i&&a(i);g&&g.transitioning||(j&&j.find('[data-toggle=collapse][data-parent="'+i+'"]').not(d).addClass("collapsed"),d[f.hasClass("in")?"addClass":"removeClass"]("collapsed")),f.collapse(h)})}(jQuery),+function(a){"use strict";function b(){a(d).remove(),a(e).each(function(b){var d=c(a(this));d.hasClass("open")&&(d.trigger(b=a.Event("hide.bs.dropdown")),b.isDefaultPrevented()||d.removeClass("open").trigger("hidden.bs.dropdown"))})}function c(b){var c=b.attr("data-target");c||(c=b.attr("href"),c=c&&/#/.test(c)&&c.replace(/.*(?=#[^\s]*$)/,""));var d=c&&a(c);return d&&d.length?d:b.parent()}var d=".dropdown-backdrop",e="[data-toggle=dropdown]",f=function(b){a(b).on("click.bs.dropdown",this.toggle)};f.prototype.toggle=function(d){var e=a(this);if(!e.is(".disabled, :disabled")){var f=c(e),g=f.hasClass("open");if(b(),!g){if("ontouchstart"in document.documentElement&&!f.closest(".navbar-nav").length&&a('<div class="dropdown-backdrop"/>').insertAfter(a(this)).on("click",b),f.trigger(d=a.Event("show.bs.dropdown")),d.isDefaultPrevented())return;f.toggleClass("open").trigger("shown.bs.dropdown"),e.focus()}return!1}},f.prototype.keydown=function(b){if(/(38|40|27)/.test(b.keyCode)){var d=a(this);if(b.preventDefault(),b.stopPropagation(),!d.is(".disabled, :disabled")){var f=c(d),g=f.hasClass("open");if(!g||g&&27==b.keyCode)return 27==b.which&&f.find(e).focus(),d.click();var h=a("[role=menu] li:not(.divider):visible a",f);if(h.length){var i=h.index(h.filter(":focus"));38==b.keyCode&&i>0&&i--,40==b.keyCode&&i<h.length-1&&i++,~i||(i=0),h.eq(i).focus()}}}};var g=a.fn.dropdown;a.fn.dropdown=function(b){return this.each(function(){var c=a(this),d=c.data("bs.dropdown");d||c.data("bs.dropdown",d=new f(this)),"string"==typeof b&&d[b].call(c)})},a.fn.dropdown.Constructor=f,a.fn.dropdown.noConflict=function(){return a.fn.dropdown=g,this},a(document).on("click.bs.dropdown.data-api",b).on("click.bs.dropdown.data-api",".dropdown form",function(a){a.stopPropagation()}).on("click.bs.dropdown.data-api",e,f.prototype.toggle).on("keydown.bs.dropdown.data-api",e+", [role=menu]",f.prototype.keydown)}(jQuery),+function(a){"use strict";var b=function(b,c){this.options=c,this.$element=a(b),this.$backdrop=this.isShown=null,this.options.remote&&this.$element.load(this.options.remote)};b.DEFAULTS={backdrop:!0,keyboard:!0,show:!0},b.prototype.toggle=function(a){return this[this.isShown?"hide":"show"](a)},b.prototype.show=function(b){var c=this,d=a.Event("show.bs.modal",{relatedTarget:b});this.$element.trigger(d),this.isShown||d.isDefaultPrevented()||(this.isShown=!0,this.escape(),this.$element.on("click.dismiss.modal",'[data-dismiss="modal"]',a.proxy(this.hide,this)),this.backdrop(function(){var d=a.support.transition&&c.$element.hasClass("fade");c.$element.parent().length||c.$element.appendTo(document.body),c.$element.show(),d&&c.$element[0].offsetWidth,c.$element.addClass("in").attr("aria-hidden",!1),c.enforceFocus();var e=a.Event("shown.bs.modal",{relatedTarget:b});d?c.$element.find(".modal-dialog").one(a.support.transition.end,function(){c.$element.focus().trigger(e)}).emulateTransitionEnd(300):c.$element.focus().trigger(e)}))},b.prototype.hide=function(b){b&&b.preventDefault(),b=a.Event("hide.bs.modal"),this.$element.trigger(b),this.isShown&&!b.isDefaultPrevented()&&(this.isShown=!1,this.escape(),a(document).off("focusin.bs.modal"),this.$element.removeClass("in").attr("aria-hidden",!0).off("click.dismiss.modal"),a.support.transition&&this.$element.hasClass("fade")?this.$element.one(a.support.transition.end,a.proxy(this.hideModal,this)).emulateTransitionEnd(300):this.hideModal())},b.prototype.enforceFocus=function(){a(document).off("focusin.bs.modal").on("focusin.bs.modal",a.proxy(function(a){this.$element[0]===a.target||this.$element.has(a.target).length||this.$element.focus()},this))},b.prototype.escape=function(){this.isShown&&this.options.keyboard?this.$element.on("keyup.dismiss.bs.modal",a.proxy(function(a){27==a.which&&this.hide()},this)):this.isShown||this.$element.off("keyup.dismiss.bs.modal")},b.prototype.hideModal=function(){var a=this;this.$element.hide(),this.backdrop(function(){a.removeBackdrop(),a.$element.trigger("hidden.bs.modal")})},b.prototype.removeBackdrop=function(){this.$backdrop&&this.$backdrop.remove(),this.$backdrop=null},b.prototype.backdrop=function(b){var c=this.$element.hasClass("fade")?"fade":"";if(this.isShown&&this.options.backdrop){var d=a.support.transition&&c;if(this.$backdrop=a('<div class="modal-backdrop '+c+'" />').appendTo(document.body),this.$element.on("click.dismiss.modal",a.proxy(function(a){a.target===a.currentTarget&&("static"==this.options.backdrop?this.$element[0].focus.call(this.$element[0]):this.hide.call(this))},this)),d&&this.$backdrop[0].offsetWidth,this.$backdrop.addClass("in"),!b)return;d?this.$backdrop.one(a.support.transition.end,b).emulateTransitionEnd(150):b()}else!this.isShown&&this.$backdrop?(this.$backdrop.removeClass("in"),a.support.transition&&this.$element.hasClass("fade")?this.$backdrop.one(a.support.transition.end,b).emulateTransitionEnd(150):b()):b&&b()};var c=a.fn.modal;a.fn.modal=function(c,d){return this.each(function(){var e=a(this),f=e.data("bs.modal"),g=a.extend({},b.DEFAULTS,e.data(),"object"==typeof c&&c);f||e.data("bs.modal",f=new b(this,g)),"string"==typeof c?f[c](d):g.show&&f.show(d)})},a.fn.modal.Constructor=b,a.fn.modal.noConflict=function(){return a.fn.modal=c,this},a(document).on("click.bs.modal.data-api",'[data-toggle="modal"]',function(b){var c=a(this),d=c.attr("href"),e=a(c.attr("data-target")||d&&d.replace(/.*(?=#[^\s]+$)/,"")),f=e.data("modal")?"toggle":a.extend({remote:!/#/.test(d)&&d},e.data(),c.data());b.preventDefault(),e.modal(f,this).one("hide",function(){c.is(":visible")&&c.focus()})}),a(document).on("show.bs.modal",".modal",function(){a(document.body).addClass("modal-open")}).on("hidden.bs.modal",".modal",function(){a(document.body).removeClass("modal-open")})}(jQuery),+function(a){"use strict";var b=function(a,b){this.type=this.options=this.enabled=this.timeout=this.hoverState=this.$element=null,this.init("tooltip",a,b)};b.DEFAULTS={animation:!0,placement:"top",selector:!1,template:'<div class="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',trigger:"hover focus",title:"",delay:0,html:!1,container:!1},b.prototype.init=function(b,c,d){this.enabled=!0,this.type=b,this.$element=a(c),this.options=this.getOptions(d);for(var e=this.options.trigger.split(" "),f=e.length;f--;){var g=e[f];if("click"==g)this.$element.on("click."+this.type,this.options.selector,a.proxy(this.toggle,this));else if("manual"!=g){var h="hover"==g?"mouseenter":"focus",i="hover"==g?"mouseleave":"blur";this.$element.on(h+"."+this.type,this.options.selector,a.proxy(this.enter,this)),this.$element.on(i+"."+this.type,this.options.selector,a.proxy(this.leave,this))}}this.options.selector?this._options=a.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},b.prototype.getDefaults=function(){return b.DEFAULTS},b.prototype.getOptions=function(b){return b=a.extend({},this.getDefaults(),this.$element.data(),b),b.delay&&"number"==typeof b.delay&&(b.delay={show:b.delay,hide:b.delay}),b},b.prototype.getDelegateOptions=function(){var b={},c=this.getDefaults();return this._options&&a.each(this._options,function(a,d){c[a]!=d&&(b[a]=d)}),b},b.prototype.enter=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget)[this.type](this.getDelegateOptions()).data("bs."+this.type);return clearTimeout(c.timeout),c.hoverState="in",c.options.delay&&c.options.delay.show?(c.timeout=setTimeout(function(){"in"==c.hoverState&&c.show()},c.options.delay.show),void 0):c.show()},b.prototype.leave=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget)[this.type](this.getDelegateOptions()).data("bs."+this.type);return clearTimeout(c.timeout),c.hoverState="out",c.options.delay&&c.options.delay.hide?(c.timeout=setTimeout(function(){"out"==c.hoverState&&c.hide()},c.options.delay.hide),void 0):c.hide()},b.prototype.show=function(){var b=a.Event("show.bs."+this.type);if(this.hasContent()&&this.enabled){if(this.$element.trigger(b),b.isDefaultPrevented())return;var c=this.tip();this.setContent(),this.options.animation&&c.addClass("fade");var d="function"==typeof this.options.placement?this.options.placement.call(this,c[0],this.$element[0]):this.options.placement,e=/\s?auto?\s?/i,f=e.test(d);f&&(d=d.replace(e,"")||"top"),c.detach().css({top:0,left:0,display:"block"}).addClass(d),this.options.container?c.appendTo(this.options.container):c.insertAfter(this.$element);var g=this.getPosition(),h=c[0].offsetWidth,i=c[0].offsetHeight;if(f){var j=this.$element.parent(),k=d,l=document.documentElement.scrollTop||document.body.scrollTop,m="body"==this.options.container?window.innerWidth:j.outerWidth(),n="body"==this.options.container?window.innerHeight:j.outerHeight(),o="body"==this.options.container?0:j.offset().left;d="bottom"==d&&g.top+g.height+i-l>n?"top":"top"==d&&g.top-l-i<0?"bottom":"right"==d&&g.right+h>m?"left":"left"==d&&g.left-h<o?"right":d,c.removeClass(k).addClass(d)}var p=this.getCalculatedOffset(d,g,h,i);this.applyPlacement(p,d),this.$element.trigger("shown.bs."+this.type)}},b.prototype.applyPlacement=function(a,b){var c,d=this.tip(),e=d[0].offsetWidth,f=d[0].offsetHeight,g=parseInt(d.css("margin-top"),10),h=parseInt(d.css("margin-left"),10);isNaN(g)&&(g=0),isNaN(h)&&(h=0),a.top=a.top+g,a.left=a.left+h,d.offset(a).addClass("in");var i=d[0].offsetWidth,j=d[0].offsetHeight;if("top"==b&&j!=f&&(c=!0,a.top=a.top+f-j),/bottom|top/.test(b)){var k=0;a.left<0&&(k=-2*a.left,a.left=0,d.offset(a),i=d[0].offsetWidth,j=d[0].offsetHeight),this.replaceArrow(k-e+i,i,"left")}else this.replaceArrow(j-f,j,"top");c&&d.offset(a)},b.prototype.replaceArrow=function(a,b,c){this.arrow().css(c,a?50*(1-a/b)+"%":"")},b.prototype.setContent=function(){var a=this.tip(),b=this.getTitle();a.find(".tooltip-inner")[this.options.html?"html":"text"](b),a.removeClass("fade in top bottom left right")},b.prototype.hide=function(){function b(){"in"!=c.hoverState&&d.detach()}var c=this,d=this.tip(),e=a.Event("hide.bs."+this.type);return this.$element.trigger(e),e.isDefaultPrevented()?void 0:(d.removeClass("in"),a.support.transition&&this.$tip.hasClass("fade")?d.one(a.support.transition.end,b).emulateTransitionEnd(150):b(),this.$element.trigger("hidden.bs."+this.type),this)},b.prototype.fixTitle=function(){var a=this.$element;(a.attr("title")||"string"!=typeof a.attr("data-original-title"))&&a.attr("data-original-title",a.attr("title")||"").attr("title","")},b.prototype.hasContent=function(){return this.getTitle()},b.prototype.getPosition=function(){var b=this.$element[0];return a.extend({},"function"==typeof b.getBoundingClientRect?b.getBoundingClientRect():{width:b.offsetWidth,height:b.offsetHeight},this.$element.offset())},b.prototype.getCalculatedOffset=function(a,b,c,d){return"bottom"==a?{top:b.top+b.height,left:b.left+b.width/2-c/2}:"top"==a?{top:b.top-d,left:b.left+b.width/2-c/2}:"left"==a?{top:b.top+b.height/2-d/2,left:b.left-c}:{top:b.top+b.height/2-d/2,left:b.left+b.width}},b.prototype.getTitle=function(){var a,b=this.$element,c=this.options;return a=b.attr("data-original-title")||("function"==typeof c.title?c.title.call(b[0]):c.title)},b.prototype.tip=function(){return this.$tip=this.$tip||a(this.options.template)},b.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".tooltip-arrow")},b.prototype.validate=function(){this.$element[0].parentNode||(this.hide(),this.$element=null,this.options=null)},b.prototype.enable=function(){this.enabled=!0},b.prototype.disable=function(){this.enabled=!1},b.prototype.toggleEnabled=function(){this.enabled=!this.enabled},b.prototype.toggle=function(b){var c=b?a(b.currentTarget)[this.type](this.getDelegateOptions()).data("bs."+this.type):this;c.tip().hasClass("in")?c.leave(c):c.enter(c)},b.prototype.destroy=function(){this.hide().$element.off("."+this.type).removeData("bs."+this.type)};var c=a.fn.tooltip;a.fn.tooltip=function(c){return this.each(function(){var d=a(this),e=d.data("bs.tooltip"),f="object"==typeof c&&c;e||d.data("bs.tooltip",e=new b(this,f)),"string"==typeof c&&e[c]()})},a.fn.tooltip.Constructor=b,a.fn.tooltip.noConflict=function(){return a.fn.tooltip=c,this}}(jQuery),+function(a){"use strict";var b=function(a,b){this.init("popover",a,b)};if(!a.fn.tooltip)throw new Error("Popover requires tooltip.js");b.DEFAULTS=a.extend({},a.fn.tooltip.Constructor.DEFAULTS,{placement:"right",trigger:"click",content:"",template:'<div class="popover"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'}),b.prototype=a.extend({},a.fn.tooltip.Constructor.prototype),b.prototype.constructor=b,b.prototype.getDefaults=function(){return b.DEFAULTS},b.prototype.setContent=function(){var a=this.tip(),b=this.getTitle(),c=this.getContent();a.find(".popover-title")[this.options.html?"html":"text"](b),a.find(".popover-content")[this.options.html?"html":"text"](c),a.removeClass("fade top bottom left right in"),a.find(".popover-title").html()||a.find(".popover-title").hide()},b.prototype.hasContent=function(){return this.getTitle()||this.getContent()},b.prototype.getContent=function(){var a=this.$element,b=this.options;return a.attr("data-content")||("function"==typeof b.content?b.content.call(a[0]):b.content)},b.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".arrow")},b.prototype.tip=function(){return this.$tip||(this.$tip=a(this.options.template)),this.$tip};var c=a.fn.popover;a.fn.popover=function(c){return this.each(function(){var d=a(this),e=d.data("bs.popover"),f="object"==typeof c&&c;e||d.data("bs.popover",e=new b(this,f)),"string"==typeof c&&e[c]()})},a.fn.popover.Constructor=b,a.fn.popover.noConflict=function(){return a.fn.popover=c,this}}(jQuery),+function(a){"use strict";function b(c,d){var e,f=a.proxy(this.process,this);this.$element=a(c).is("body")?a(window):a(c),this.$body=a("body"),this.$scrollElement=this.$element.on("scroll.bs.scroll-spy.data-api",f),this.options=a.extend({},b.DEFAULTS,d),this.selector=(this.options.target||(e=a(c).attr("href"))&&e.replace(/.*(?=#[^\s]+$)/,"")||"")+" .nav li > a",this.offsets=a([]),this.targets=a([]),this.activeTarget=null,this.refresh(),this.process()}b.DEFAULTS={offset:10},b.prototype.refresh=function(){var b=this.$element[0]==window?"offset":"position";this.offsets=a([]),this.targets=a([]);var c=this;this.$body.find(this.selector).map(function(){var d=a(this),e=d.data("target")||d.attr("href"),f=/^#\w/.test(e)&&a(e);return f&&f.length&&[[f[b]().top+(!a.isWindow(c.$scrollElement.get(0))&&c.$scrollElement.scrollTop()),e]]||null}).sort(function(a,b){return a[0]-b[0]}).each(function(){c.offsets.push(this[0]),c.targets.push(this[1])})},b.prototype.process=function(){var a,b=this.$scrollElement.scrollTop()+this.options.offset,c=this.$scrollElement[0].scrollHeight||this.$body[0].scrollHeight,d=c-this.$scrollElement.height(),e=this.offsets,f=this.targets,g=this.activeTarget;if(b>=d)return g!=(a=f.last()[0])&&this.activate(a);for(a=e.length;a--;)g!=f[a]&&b>=e[a]&&(!e[a+1]||b<=e[a+1])&&this.activate(f[a])},b.prototype.activate=function(b){this.activeTarget=b,a(this.selector).parents(".active").removeClass("active");var c=this.selector+'[data-target="'+b+'"],'+this.selector+'[href="'+b+'"]',d=a(c).parents("li").addClass("active");d.parent(".dropdown-menu").length&&(d=d.closest("li.dropdown").addClass("active")),d.trigger("activate.bs.scrollspy")};var c=a.fn.scrollspy;a.fn.scrollspy=function(c){return this.each(function(){var d=a(this),e=d.data("bs.scrollspy"),f="object"==typeof c&&c;e||d.data("bs.scrollspy",e=new b(this,f)),"string"==typeof c&&e[c]()})},a.fn.scrollspy.Constructor=b,a.fn.scrollspy.noConflict=function(){return a.fn.scrollspy=c,this},a(window).on("load",function(){a('[data-spy="scroll"]').each(function(){var b=a(this);b.scrollspy(b.data())})})}(jQuery),+function(a){"use strict";var b=function(b){this.element=a(b)};b.prototype.show=function(){var b=this.element,c=b.closest("ul:not(.dropdown-menu)"),d=b.data("target");if(d||(d=b.attr("href"),d=d&&d.replace(/.*(?=#[^\s]*$)/,"")),!b.parent("li").hasClass("active")){var e=c.find(".active:last a")[0],f=a.Event("show.bs.tab",{relatedTarget:e});if(b.trigger(f),!f.isDefaultPrevented()){var g=a(d);this.activate(b.parent("li"),c),this.activate(g,g.parent(),function(){b.trigger({type:"shown.bs.tab",relatedTarget:e})})}}},b.prototype.activate=function(b,c,d){function e(){f.removeClass("active").find("> .dropdown-menu > .active").removeClass("active"),b.addClass("active"),g?(b[0].offsetWidth,b.addClass("in")):b.removeClass("fade"),b.parent(".dropdown-menu")&&b.closest("li.dropdown").addClass("active"),d&&d()}var f=c.find("> .active"),g=d&&a.support.transition&&f.hasClass("fade");g?f.one(a.support.transition.end,e).emulateTransitionEnd(150):e(),f.removeClass("in")};var c=a.fn.tab;a.fn.tab=function(c){return this.each(function(){var d=a(this),e=d.data("bs.tab");e||d.data("bs.tab",e=new b(this)),"string"==typeof c&&e[c]()})},a.fn.tab.Constructor=b,a.fn.tab.noConflict=function(){return a.fn.tab=c,this},a(document).on("click.bs.tab.data-api",'[data-toggle="tab"], [data-toggle="pill"]',function(b){b.preventDefault(),a(this).tab("show")})}(jQuery),+function(a){"use strict";var b=function(c,d){this.options=a.extend({},b.DEFAULTS,d),this.$window=a(window).on("scroll.bs.affix.data-api",a.proxy(this.checkPosition,this)).on("click.bs.affix.data-api",a.proxy(this.checkPositionWithEventLoop,this)),this.$element=a(c),this.affixed=this.unpin=null,this.checkPosition()};b.RESET="affix affix-top affix-bottom",b.DEFAULTS={offset:0},b.prototype.checkPositionWithEventLoop=function(){setTimeout(a.proxy(this.checkPosition,this),1)},b.prototype.checkPosition=function(){if(this.$element.is(":visible")){var c=a(document).height(),d=this.$window.scrollTop(),e=this.$element.offset(),f=this.options.offset,g=f.top,h=f.bottom;"object"!=typeof f&&(h=g=f),"function"==typeof g&&(g=f.top()),"function"==typeof h&&(h=f.bottom());var i=null!=this.unpin&&d+this.unpin<=e.top?!1:null!=h&&e.top+this.$element.height()>=c-h?"bottom":null!=g&&g>=d?"top":!1;this.affixed!==i&&(this.unpin&&this.$element.css("top",""),this.affixed=i,this.unpin="bottom"==i?e.top-d:null,this.$element.removeClass(b.RESET).addClass("affix"+(i?"-"+i:"")),"bottom"==i&&this.$element.offset({top:document.body.offsetHeight-h-this.$element.height()}))}};var c=a.fn.affix;a.fn.affix=function(c){return this.each(function(){var d=a(this),e=d.data("bs.affix"),f="object"==typeof c&&c;e||d.data("bs.affix",e=new b(this,f)),"string"==typeof c&&e[c]()})},a.fn.affix.Constructor=b,a.fn.affix.noConflict=function(){return a.fn.affix=c,this},a(window).on("load",function(){a('[data-spy="affix"]').each(function(){var b=a(this),c=b.data();c.offset=c.offset||{},c.offsetBottom&&(c.offset.bottom=c.offsetBottom),c.offsetTop&&(c.offset.top=c.offsetTop),b.affix(c)})})}(jQuery);
|
|
| 0 | 8 |
\ No newline at end of file |
| ... | ... |
@@ -0,0 +1,8 @@ |
| 1 |
+/* |
|
| 2 |
+ HTML5 Shiv v3.7.0 | @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,dialog,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}mark{background:#FF0;color:#000}template{display:none}</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 dialog figcaption figure footer header hgroup main mark meter nav output progress section summary template time video",version:"3.7.0",shivCSS:!1!==k.shivCSS,supportsUnknownElements:g,shivMethods:!1!==k.shivMethods,type:"default",shivDocument:q,createElement:p,createDocumentFragment:function(a,b){a||(a=f);
|
|
| 8 |
+if(g)return a.createDocumentFragment();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,6 @@ |
| 1 |
+/*! jQuery v1.10.2 | (c) 2005, 2013 jQuery Foundation, Inc. | jquery.org/license |
|
| 2 |
+//@ sourceMappingURL=jquery-1.10.2.min.map |
|
| 3 |
+*/ |
|
| 4 |
+(function(e,t){var n,r,i=typeof t,o=e.location,a=e.document,s=a.documentElement,l=e.jQuery,u=e.$,c={},p=[],f="1.10.2",d=p.concat,h=p.push,g=p.slice,m=p.indexOf,y=c.toString,v=c.hasOwnProperty,b=f.trim,x=function(e,t){return new x.fn.init(e,t,r)},w=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,T=/\S+/g,C=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,N=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,k=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,E=/^[\],:{}\s]*$/,S=/(?:^|:|,)(?:\s*\[)+/g,A=/\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g,j=/"[^"\\\r\n]*"|true|false|null|-?(?:\d+\.|)\d+(?:[eE][+-]?\d+|)/g,D=/^-ms-/,L=/-([\da-z])/gi,H=function(e,t){return t.toUpperCase()},q=function(e){(a.addEventListener||"load"===e.type||"complete"===a.readyState)&&(_(),x.ready())},_=function(){a.addEventListener?(a.removeEventListener("DOMContentLoaded",q,!1),e.removeEventListener("load",q,!1)):(a.detachEvent("onreadystatechange",q),e.detachEvent("onload",q))};x.fn=x.prototype={jquery:f,constructor:x,init:function(e,n,r){var i,o;if(!e)return this;if("string"==typeof e){if(i="<"===e.charAt(0)&&">"===e.charAt(e.length-1)&&e.length>=3?[null,e,null]:N.exec(e),!i||!i[1]&&n)return!n||n.jquery?(n||r).find(e):this.constructor(n).find(e);if(i[1]){if(n=n instanceof x?n[0]:n,x.merge(this,x.parseHTML(i[1],n&&n.nodeType?n.ownerDocument||n:a,!0)),k.test(i[1])&&x.isPlainObject(n))for(i in n)x.isFunction(this[i])?this[i](n[i]):this.attr(i,n[i]);return this}if(o=a.getElementById(i[2]),o&&o.parentNode){if(o.id!==i[2])return r.find(e);this.length=1,this[0]=o}return this.context=a,this.selector=e,this}return e.nodeType?(this.context=this[0]=e,this.length=1,this):x.isFunction(e)?r.ready(e):(e.selector!==t&&(this.selector=e.selector,this.context=e.context),x.makeArray(e,this))},selector:"",length:0,toArray:function(){return g.call(this)},get:function(e){return null==e?this.toArray():0>e?this[this.length+e]:this[e]},pushStack:function(e){var t=x.merge(this.constructor(),e);return t.prevObject=this,t.context=this.context,t},each:function(e,t){return x.each(this,e,t)},ready:function(e){return x.ready.promise().done(e),this},slice:function(){return this.pushStack(g.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(e){var t=this.length,n=+e+(0>e?t:0);return this.pushStack(n>=0&&t>n?[this[n]]:[])},map:function(e){return this.pushStack(x.map(this,function(t,n){return e.call(t,n,t)}))},end:function(){return this.prevObject||this.constructor(null)},push:h,sort:[].sort,splice:[].splice},x.fn.init.prototype=x.fn,x.extend=x.fn.extend=function(){var e,n,r,i,o,a,s=arguments[0]||{},l=1,u=arguments.length,c=!1;for("boolean"==typeof s&&(c=s,s=arguments[1]||{},l=2),"object"==typeof s||x.isFunction(s)||(s={}),u===l&&(s=this,--l);u>l;l++)if(null!=(o=arguments[l]))for(i in o)e=s[i],r=o[i],s!==r&&(c&&r&&(x.isPlainObject(r)||(n=x.isArray(r)))?(n?(n=!1,a=e&&x.isArray(e)?e:[]):a=e&&x.isPlainObject(e)?e:{},s[i]=x.extend(c,a,r)):r!==t&&(s[i]=r));return s},x.extend({expando:"jQuery"+(f+Math.random()).replace(/\D/g,""),noConflict:function(t){return e.$===x&&(e.$=u),t&&e.jQuery===x&&(e.jQuery=l),x},isReady:!1,readyWait:1,holdReady:function(e){e?x.readyWait++:x.ready(!0)},ready:function(e){if(e===!0?!--x.readyWait:!x.isReady){if(!a.body)return setTimeout(x.ready);x.isReady=!0,e!==!0&&--x.readyWait>0||(n.resolveWith(a,[x]),x.fn.trigger&&x(a).trigger("ready").off("ready"))}},isFunction:function(e){return"function"===x.type(e)},isArray:Array.isArray||function(e){return"array"===x.type(e)},isWindow:function(e){return null!=e&&e==e.window},isNumeric:function(e){return!isNaN(parseFloat(e))&&isFinite(e)},type:function(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?c[y.call(e)]||"object":typeof e},isPlainObject:function(e){var n;if(!e||"object"!==x.type(e)||e.nodeType||x.isWindow(e))return!1;try{if(e.constructor&&!v.call(e,"constructor")&&!v.call(e.constructor.prototype,"isPrototypeOf"))return!1}catch(r){return!1}if(x.support.ownLast)for(n in e)return v.call(e,n);for(n in e);return n===t||v.call(e,n)},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},error:function(e){throw Error(e)},parseHTML:function(e,t,n){if(!e||"string"!=typeof e)return null;"boolean"==typeof t&&(n=t,t=!1),t=t||a;var r=k.exec(e),i=!n&&[];return r?[t.createElement(r[1])]:(r=x.buildFragment([e],t,i),i&&x(i).remove(),x.merge([],r.childNodes))},parseJSON:function(n){return e.JSON&&e.JSON.parse?e.JSON.parse(n):null===n?n:"string"==typeof n&&(n=x.trim(n),n&&E.test(n.replace(A,"@").replace(j,"]").replace(S,"")))?Function("return "+n)():(x.error("Invalid JSON: "+n),t)},parseXML:function(n){var r,i;if(!n||"string"!=typeof n)return null;try{e.DOMParser?(i=new DOMParser,r=i.parseFromString(n,"text/xml")):(r=new ActiveXObject("Microsoft.XMLDOM"),r.async="false",r.loadXML(n))}catch(o){r=t}return r&&r.documentElement&&!r.getElementsByTagName("parsererror").length||x.error("Invalid XML: "+n),r},noop:function(){},globalEval:function(t){t&&x.trim(t)&&(e.execScript||function(t){e.eval.call(e,t)})(t)},camelCase:function(e){return e.replace(D,"ms-").replace(L,H)},nodeName:function(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()},each:function(e,t,n){var r,i=0,o=e.length,a=M(e);if(n){if(a){for(;o>i;i++)if(r=t.apply(e[i],n),r===!1)break}else for(i in e)if(r=t.apply(e[i],n),r===!1)break}else if(a){for(;o>i;i++)if(r=t.call(e[i],i,e[i]),r===!1)break}else for(i in e)if(r=t.call(e[i],i,e[i]),r===!1)break;return e},trim:b&&!b.call("\ufeff\u00a0")?function(e){return null==e?"":b.call(e)}:function(e){return null==e?"":(e+"").replace(C,"")},makeArray:function(e,t){var n=t||[];return null!=e&&(M(Object(e))?x.merge(n,"string"==typeof e?[e]:e):h.call(n,e)),n},inArray:function(e,t,n){var r;if(t){if(m)return m.call(t,e,n);for(r=t.length,n=n?0>n?Math.max(0,r+n):n:0;r>n;n++)if(n in t&&t[n]===e)return n}return-1},merge:function(e,n){var r=n.length,i=e.length,o=0;if("number"==typeof r)for(;r>o;o++)e[i++]=n[o];else while(n[o]!==t)e[i++]=n[o++];return e.length=i,e},grep:function(e,t,n){var r,i=[],o=0,a=e.length;for(n=!!n;a>o;o++)r=!!t(e[o],o),n!==r&&i.push(e[o]);return i},map:function(e,t,n){var r,i=0,o=e.length,a=M(e),s=[];if(a)for(;o>i;i++)r=t(e[i],i,n),null!=r&&(s[s.length]=r);else for(i in e)r=t(e[i],i,n),null!=r&&(s[s.length]=r);return d.apply([],s)},guid:1,proxy:function(e,n){var r,i,o;return"string"==typeof n&&(o=e[n],n=e,e=o),x.isFunction(e)?(r=g.call(arguments,2),i=function(){return e.apply(n||this,r.concat(g.call(arguments)))},i.guid=e.guid=e.guid||x.guid++,i):t},access:function(e,n,r,i,o,a,s){var l=0,u=e.length,c=null==r;if("object"===x.type(r)){o=!0;for(l in r)x.access(e,n,l,r[l],!0,a,s)}else if(i!==t&&(o=!0,x.isFunction(i)||(s=!0),c&&(s?(n.call(e,i),n=null):(c=n,n=function(e,t,n){return c.call(x(e),n)})),n))for(;u>l;l++)n(e[l],r,s?i:i.call(e[l],l,n(e[l],r)));return o?e:c?n.call(e):u?n(e[0],r):a},now:function(){return(new Date).getTime()},swap:function(e,t,n,r){var i,o,a={};for(o in t)a[o]=e.style[o],e.style[o]=t[o];i=n.apply(e,r||[]);for(o in t)e.style[o]=a[o];return i}}),x.ready.promise=function(t){if(!n)if(n=x.Deferred(),"complete"===a.readyState)setTimeout(x.ready);else if(a.addEventListener)a.addEventListener("DOMContentLoaded",q,!1),e.addEventListener("load",q,!1);else{a.attachEvent("onreadystatechange",q),e.attachEvent("onload",q);var r=!1;try{r=null==e.frameElement&&a.documentElement}catch(i){}r&&r.doScroll&&function o(){if(!x.isReady){try{r.doScroll("left")}catch(e){return setTimeout(o,50)}_(),x.ready()}}()}return n.promise(t)},x.each("Boolean Number String Function Array Date RegExp Object Error".split(" "),function(e,t){c["[object "+t+"]"]=t.toLowerCase()});function M(e){var t=e.length,n=x.type(e);return x.isWindow(e)?!1:1===e.nodeType&&t?!0:"array"===n||"function"!==n&&(0===t||"number"==typeof t&&t>0&&t-1 in e)}r=x(a),function(e,t){var n,r,i,o,a,s,l,u,c,p,f,d,h,g,m,y,v,b="sizzle"+-new Date,w=e.document,T=0,C=0,N=st(),k=st(),E=st(),S=!1,A=function(e,t){return e===t?(S=!0,0):0},j=typeof t,D=1<<31,L={}.hasOwnProperty,H=[],q=H.pop,_=H.push,M=H.push,O=H.slice,F=H.indexOf||function(e){var t=0,n=this.length;for(;n>t;t++)if(this[t]===e)return t;return-1},B="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",P="[\\x20\\t\\r\\n\\f]",R="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",W=R.replace("w","w#"),$="\\["+P+"*("+R+")"+P+"*(?:([*^$|!~]?=)"+P+"*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|("+W+")|)|)"+P+"*\\]",I=":("+R+")(?:\\(((['\"])((?:\\\\.|[^\\\\])*?)\\3|((?:\\\\.|[^\\\\()[\\]]|"+$.replace(3,8)+")*)|.*)\\)|)",z=RegExp("^"+P+"+|((?:^|[^\\\\])(?:\\\\.)*)"+P+"+$","g"),X=RegExp("^"+P+"*,"+P+"*"),U=RegExp("^"+P+"*([>+~]|"+P+")"+P+"*"),V=RegExp(P+"*[+~]"),Y=RegExp("="+P+"*([^\\]'\"]*)"+P+"*\\]","g"),J=RegExp(I),G=RegExp("^"+W+"$"),Q={ID:RegExp("^#("+R+")"),CLASS:RegExp("^\\.("+R+")"),TAG:RegExp("^("+R.replace("w","w*")+")"),ATTR:RegExp("^"+$),PSEUDO:RegExp("^"+I),CHILD:RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+P+"*(even|odd|(([+-]|)(\\d*)n|)"+P+"*(?:([+-]|)"+P+"*(\\d+)|))"+P+"*\\)|)","i"),bool:RegExp("^(?:"+B+")$","i"),needsContext:RegExp("^"+P+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+P+"*((?:-\\d)?\\d*)"+P+"*\\)|)(?=[^-]|$)","i")},K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,et=/^(?:input|select|textarea|button)$/i,tt=/^h\d$/i,nt=/'|\\/g,rt=RegExp("\\\\([\\da-f]{1,6}"+P+"?|("+P+")|.)","ig"),it=function(e,t,n){var r="0x"+t-65536;return r!==r||n?t:0>r?String.fromCharCode(r+65536):String.fromCharCode(55296|r>>10,56320|1023&r)};try{M.apply(H=O.call(w.childNodes),w.childNodes),H[w.childNodes.length].nodeType}catch(ot){M={apply:H.length?function(e,t){_.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function at(e,t,n,i){var o,a,s,l,u,c,d,m,y,x;if((t?t.ownerDocument||t:w)!==f&&p(t),t=t||f,n=n||[],!e||"string"!=typeof e)return n;if(1!==(l=t.nodeType)&&9!==l)return[];if(h&&!i){if(o=Z.exec(e))if(s=o[1]){if(9===l){if(a=t.getElementById(s),!a||!a.parentNode)return n;if(a.id===s)return n.push(a),n}else if(t.ownerDocument&&(a=t.ownerDocument.getElementById(s))&&v(t,a)&&a.id===s)return n.push(a),n}else{if(o[2])return M.apply(n,t.getElementsByTagName(e)),n;if((s=o[3])&&r.getElementsByClassName&&t.getElementsByClassName)return M.apply(n,t.getElementsByClassName(s)),n}if(r.qsa&&(!g||!g.test(e))){if(m=d=b,y=t,x=9===l&&e,1===l&&"object"!==t.nodeName.toLowerCase()){c=mt(e),(d=t.getAttribute("id"))?m=d.replace(nt,"\\$&"):t.setAttribute("id",m),m="[id='"+m+"'] ",u=c.length;while(u--)c[u]=m+yt(c[u]);y=V.test(e)&&t.parentNode||t,x=c.join(",")}if(x)try{return M.apply(n,y.querySelectorAll(x)),n}catch(T){}finally{d||t.removeAttribute("id")}}}return kt(e.replace(z,"$1"),t,n,i)}function st(){var e=[];function t(n,r){return e.push(n+=" ")>o.cacheLength&&delete t[e.shift()],t[n]=r}return t}function lt(e){return e[b]=!0,e}function ut(e){var t=f.createElement("div");try{return!!e(t)}catch(n){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function ct(e,t){var n=e.split("|"),r=e.length;while(r--)o.attrHandle[n[r]]=t}function pt(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&(~t.sourceIndex||D)-(~e.sourceIndex||D);if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function ft(e){return function(t){var n=t.nodeName.toLowerCase();return"input"===n&&t.type===e}}function dt(e){return function(t){var n=t.nodeName.toLowerCase();return("input"===n||"button"===n)&&t.type===e}}function ht(e){return lt(function(t){return t=+t,lt(function(n,r){var i,o=e([],n.length,t),a=o.length;while(a--)n[i=o[a]]&&(n[i]=!(r[i]=n[i]))})})}s=at.isXML=function(e){var t=e&&(e.ownerDocument||e).documentElement;return t?"HTML"!==t.nodeName:!1},r=at.support={},p=at.setDocument=function(e){var n=e?e.ownerDocument||e:w,i=n.defaultView;return n!==f&&9===n.nodeType&&n.documentElement?(f=n,d=n.documentElement,h=!s(n),i&&i.attachEvent&&i!==i.top&&i.attachEvent("onbeforeunload",function(){p()}),r.attributes=ut(function(e){return e.className="i",!e.getAttribute("className")}),r.getElementsByTagName=ut(function(e){return e.appendChild(n.createComment("")),!e.getElementsByTagName("*").length}),r.getElementsByClassName=ut(function(e){return e.innerHTML="<div class='a'></div><div class='a i'></div>",e.firstChild.className="i",2===e.getElementsByClassName("i").length}),r.getById=ut(function(e){return d.appendChild(e).id=b,!n.getElementsByName||!n.getElementsByName(b).length}),r.getById?(o.find.ID=function(e,t){if(typeof t.getElementById!==j&&h){var n=t.getElementById(e);return n&&n.parentNode?[n]:[]}},o.filter.ID=function(e){var t=e.replace(rt,it);return function(e){return e.getAttribute("id")===t}}):(delete o.find.ID,o.filter.ID=function(e){var t=e.replace(rt,it);return function(e){var n=typeof e.getAttributeNode!==j&&e.getAttributeNode("id");return n&&n.value===t}}),o.find.TAG=r.getElementsByTagName?function(e,n){return typeof n.getElementsByTagName!==j?n.getElementsByTagName(e):t}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},o.find.CLASS=r.getElementsByClassName&&function(e,n){return typeof n.getElementsByClassName!==j&&h?n.getElementsByClassName(e):t},m=[],g=[],(r.qsa=K.test(n.querySelectorAll))&&(ut(function(e){e.innerHTML="<select><option selected=''></option></select>",e.querySelectorAll("[selected]").length||g.push("\\["+P+"*(?:value|"+B+")"),e.querySelectorAll(":checked").length||g.push(":checked")}),ut(function(e){var t=n.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("t",""),e.querySelectorAll("[t^='']").length&&g.push("[*^$]="+P+"*(?:''|\"\")"),e.querySelectorAll(":enabled").length||g.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),g.push(",.*:")})),(r.matchesSelector=K.test(y=d.webkitMatchesSelector||d.mozMatchesSelector||d.oMatchesSelector||d.msMatchesSelector))&&ut(function(e){r.disconnectedMatch=y.call(e,"div"),y.call(e,"[s!='']:x"),m.push("!=",I)}),g=g.length&&RegExp(g.join("|")),m=m.length&&RegExp(m.join("|")),v=K.test(d.contains)||d.compareDocumentPosition?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},A=d.compareDocumentPosition?function(e,t){if(e===t)return S=!0,0;var i=t.compareDocumentPosition&&e.compareDocumentPosition&&e.compareDocumentPosition(t);return i?1&i||!r.sortDetached&&t.compareDocumentPosition(e)===i?e===n||v(w,e)?-1:t===n||v(w,t)?1:c?F.call(c,e)-F.call(c,t):0:4&i?-1:1:e.compareDocumentPosition?-1:1}:function(e,t){var r,i=0,o=e.parentNode,a=t.parentNode,s=[e],l=[t];if(e===t)return S=!0,0;if(!o||!a)return e===n?-1:t===n?1:o?-1:a?1:c?F.call(c,e)-F.call(c,t):0;if(o===a)return pt(e,t);r=e;while(r=r.parentNode)s.unshift(r);r=t;while(r=r.parentNode)l.unshift(r);while(s[i]===l[i])i++;return i?pt(s[i],l[i]):s[i]===w?-1:l[i]===w?1:0},n):f},at.matches=function(e,t){return at(e,null,null,t)},at.matchesSelector=function(e,t){if((e.ownerDocument||e)!==f&&p(e),t=t.replace(Y,"='$1']"),!(!r.matchesSelector||!h||m&&m.test(t)||g&&g.test(t)))try{var n=y.call(e,t);if(n||r.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(i){}return at(t,f,null,[e]).length>0},at.contains=function(e,t){return(e.ownerDocument||e)!==f&&p(e),v(e,t)},at.attr=function(e,n){(e.ownerDocument||e)!==f&&p(e);var i=o.attrHandle[n.toLowerCase()],a=i&&L.call(o.attrHandle,n.toLowerCase())?i(e,n,!h):t;return a===t?r.attributes||!h?e.getAttribute(n):(a=e.getAttributeNode(n))&&a.specified?a.value:null:a},at.error=function(e){throw Error("Syntax error, unrecognized expression: "+e)},at.uniqueSort=function(e){var t,n=[],i=0,o=0;if(S=!r.detectDuplicates,c=!r.sortStable&&e.slice(0),e.sort(A),S){while(t=e[o++])t===e[o]&&(i=n.push(o));while(i--)e.splice(n[i],1)}return e},a=at.getText=function(e){var t,n="",r=0,i=e.nodeType;if(i){if(1===i||9===i||11===i){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=a(e)}else if(3===i||4===i)return e.nodeValue}else for(;t=e[r];r++)n+=a(t);return n},o=at.selectors={cacheLength:50,createPseudo:lt,match:Q,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(rt,it),e[3]=(e[4]||e[5]||"").replace(rt,it),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||at.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&at.error(e[0]),e},PSEUDO:function(e){var n,r=!e[5]&&e[2];return Q.CHILD.test(e[0])?null:(e[3]&&e[4]!==t?e[2]=e[4]:r&&J.test(r)&&(n=mt(r,!0))&&(n=r.indexOf(")",r.length-n)-r.length)&&(e[0]=e[0].slice(0,n),e[2]=r.slice(0,n)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(rt,it).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=N[e+" "];return t||(t=RegExp("(^|"+P+")"+e+"("+P+"|$)"))&&N(e,function(e){return t.test("string"==typeof e.className&&e.className||typeof e.getAttribute!==j&&e.getAttribute("class")||"")})},ATTR:function(e,t,n){return function(r){var i=at.attr(r,e);return null==i?"!="===t:t?(i+="","="===t?i===n:"!="===t?i!==n:"^="===t?n&&0===i.indexOf(n):"*="===t?n&&i.indexOf(n)>-1:"$="===t?n&&i.slice(-n.length)===n:"~="===t?(" "+i+" ").indexOf(n)>-1:"|="===t?i===n||i.slice(0,n.length+1)===n+"-":!1):!0}},CHILD:function(e,t,n,r,i){var o="nth"!==e.slice(0,3),a="last"!==e.slice(-4),s="of-type"===t;return 1===r&&0===i?function(e){return!!e.parentNode}:function(t,n,l){var u,c,p,f,d,h,g=o!==a?"nextSibling":"previousSibling",m=t.parentNode,y=s&&t.nodeName.toLowerCase(),v=!l&&!s;if(m){if(o){while(g){p=t;while(p=p[g])if(s?p.nodeName.toLowerCase()===y:1===p.nodeType)return!1;h=g="only"===e&&!h&&"nextSibling"}return!0}if(h=[a?m.firstChild:m.lastChild],a&&v){c=m[b]||(m[b]={}),u=c[e]||[],d=u[0]===T&&u[1],f=u[0]===T&&u[2],p=d&&m.childNodes[d];while(p=++d&&p&&p[g]||(f=d=0)||h.pop())if(1===p.nodeType&&++f&&p===t){c[e]=[T,d,f];break}}else if(v&&(u=(t[b]||(t[b]={}))[e])&&u[0]===T)f=u[1];else while(p=++d&&p&&p[g]||(f=d=0)||h.pop())if((s?p.nodeName.toLowerCase()===y:1===p.nodeType)&&++f&&(v&&((p[b]||(p[b]={}))[e]=[T,f]),p===t))break;return f-=i,f===r||0===f%r&&f/r>=0}}},PSEUDO:function(e,t){var n,r=o.pseudos[e]||o.setFilters[e.toLowerCase()]||at.error("unsupported pseudo: "+e);return r[b]?r(t):r.length>1?(n=[e,e,"",t],o.setFilters.hasOwnProperty(e.toLowerCase())?lt(function(e,n){var i,o=r(e,t),a=o.length;while(a--)i=F.call(e,o[a]),e[i]=!(n[i]=o[a])}):function(e){return r(e,0,n)}):r}},pseudos:{not:lt(function(e){var t=[],n=[],r=l(e.replace(z,"$1"));return r[b]?lt(function(e,t,n,i){var o,a=r(e,null,i,[]),s=e.length;while(s--)(o=a[s])&&(e[s]=!(t[s]=o))}):function(e,i,o){return t[0]=e,r(t,null,o,n),!n.pop()}}),has:lt(function(e){return function(t){return at(e,t).length>0}}),contains:lt(function(e){return function(t){return(t.textContent||t.innerText||a(t)).indexOf(e)>-1}}),lang:lt(function(e){return G.test(e||"")||at.error("unsupported lang: "+e),e=e.replace(rt,it).toLowerCase(),function(t){var n;do if(n=h?t.lang:t.getAttribute("xml:lang")||t.getAttribute("lang"))return n=n.toLowerCase(),n===e||0===n.indexOf(e+"-");while((t=t.parentNode)&&1===t.nodeType);return!1}}),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===d},focus:function(e){return e===f.activeElement&&(!f.hasFocus||f.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:function(e){return e.disabled===!1},disabled:function(e){return e.disabled===!0},checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,e.selected===!0},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeName>"@"||3===e.nodeType||4===e.nodeType)return!1;return!0},parent:function(e){return!o.pseudos.empty(e)},header:function(e){return tt.test(e.nodeName)},input:function(e){return et.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||t.toLowerCase()===e.type)},first:ht(function(){return[0]}),last:ht(function(e,t){return[t-1]}),eq:ht(function(e,t,n){return[0>n?n+t:n]}),even:ht(function(e,t){var n=0;for(;t>n;n+=2)e.push(n);return e}),odd:ht(function(e,t){var n=1;for(;t>n;n+=2)e.push(n);return e}),lt:ht(function(e,t,n){var r=0>n?n+t:n;for(;--r>=0;)e.push(r);return e}),gt:ht(function(e,t,n){var r=0>n?n+t:n;for(;t>++r;)e.push(r);return e})}},o.pseudos.nth=o.pseudos.eq;for(n in{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})o.pseudos[n]=ft(n);for(n in{submit:!0,reset:!0})o.pseudos[n]=dt(n);function gt(){}gt.prototype=o.filters=o.pseudos,o.setFilters=new gt;function mt(e,t){var n,r,i,a,s,l,u,c=k[e+" "];if(c)return t?0:c.slice(0);s=e,l=[],u=o.preFilter;while(s){(!n||(r=X.exec(s)))&&(r&&(s=s.slice(r[0].length)||s),l.push(i=[])),n=!1,(r=U.exec(s))&&(n=r.shift(),i.push({value:n,type:r[0].replace(z," ")}),s=s.slice(n.length));for(a in o.filter)!(r=Q[a].exec(s))||u[a]&&!(r=u[a](r))||(n=r.shift(),i.push({value:n,type:a,matches:r}),s=s.slice(n.length));if(!n)break}return t?s.length:s?at.error(e):k(e,l).slice(0)}function yt(e){var t=0,n=e.length,r="";for(;n>t;t++)r+=e[t].value;return r}function vt(e,t,n){var r=t.dir,o=n&&"parentNode"===r,a=C++;return t.first?function(t,n,i){while(t=t[r])if(1===t.nodeType||o)return e(t,n,i)}:function(t,n,s){var l,u,c,p=T+" "+a;if(s){while(t=t[r])if((1===t.nodeType||o)&&e(t,n,s))return!0}else while(t=t[r])if(1===t.nodeType||o)if(c=t[b]||(t[b]={}),(u=c[r])&&u[0]===p){if((l=u[1])===!0||l===i)return l===!0}else if(u=c[r]=[p],u[1]=e(t,n,s)||i,u[1]===!0)return!0}}function bt(e){return e.length>1?function(t,n,r){var i=e.length;while(i--)if(!e[i](t,n,r))return!1;return!0}:e[0]}function xt(e,t,n,r,i){var o,a=[],s=0,l=e.length,u=null!=t;for(;l>s;s++)(o=e[s])&&(!n||n(o,r,i))&&(a.push(o),u&&t.push(s));return a}function wt(e,t,n,r,i,o){return r&&!r[b]&&(r=wt(r)),i&&!i[b]&&(i=wt(i,o)),lt(function(o,a,s,l){var u,c,p,f=[],d=[],h=a.length,g=o||Nt(t||"*",s.nodeType?[s]:s,[]),m=!e||!o&&t?g:xt(g,f,e,s,l),y=n?i||(o?e:h||r)?[]:a:m;if(n&&n(m,y,s,l),r){u=xt(y,d),r(u,[],s,l),c=u.length;while(c--)(p=u[c])&&(y[d[c]]=!(m[d[c]]=p))}if(o){if(i||e){if(i){u=[],c=y.length;while(c--)(p=y[c])&&u.push(m[c]=p);i(null,y=[],u,l)}c=y.length;while(c--)(p=y[c])&&(u=i?F.call(o,p):f[c])>-1&&(o[u]=!(a[u]=p))}}else y=xt(y===a?y.splice(h,y.length):y),i?i(null,a,y,l):M.apply(a,y)})}function Tt(e){var t,n,r,i=e.length,a=o.relative[e[0].type],s=a||o.relative[" "],l=a?1:0,c=vt(function(e){return e===t},s,!0),p=vt(function(e){return F.call(t,e)>-1},s,!0),f=[function(e,n,r){return!a&&(r||n!==u)||((t=n).nodeType?c(e,n,r):p(e,n,r))}];for(;i>l;l++)if(n=o.relative[e[l].type])f=[vt(bt(f),n)];else{if(n=o.filter[e[l].type].apply(null,e[l].matches),n[b]){for(r=++l;i>r;r++)if(o.relative[e[r].type])break;return wt(l>1&&bt(f),l>1&&yt(e.slice(0,l-1).concat({value:" "===e[l-2].type?"*":""})).replace(z,"$1"),n,r>l&&Tt(e.slice(l,r)),i>r&&Tt(e=e.slice(r)),i>r&&yt(e))}f.push(n)}return bt(f)}function Ct(e,t){var n=0,r=t.length>0,a=e.length>0,s=function(s,l,c,p,d){var h,g,m,y=[],v=0,b="0",x=s&&[],w=null!=d,C=u,N=s||a&&o.find.TAG("*",d&&l.parentNode||l),k=T+=null==C?1:Math.random()||.1;for(w&&(u=l!==f&&l,i=n);null!=(h=N[b]);b++){if(a&&h){g=0;while(m=e[g++])if(m(h,l,c)){p.push(h);break}w&&(T=k,i=++n)}r&&((h=!m&&h)&&v--,s&&x.push(h))}if(v+=b,r&&b!==v){g=0;while(m=t[g++])m(x,y,l,c);if(s){if(v>0)while(b--)x[b]||y[b]||(y[b]=q.call(p));y=xt(y)}M.apply(p,y),w&&!s&&y.length>0&&v+t.length>1&&at.uniqueSort(p)}return w&&(T=k,u=C),x};return r?lt(s):s}l=at.compile=function(e,t){var n,r=[],i=[],o=E[e+" "];if(!o){t||(t=mt(e)),n=t.length;while(n--)o=Tt(t[n]),o[b]?r.push(o):i.push(o);o=E(e,Ct(i,r))}return o};function Nt(e,t,n){var r=0,i=t.length;for(;i>r;r++)at(e,t[r],n);return n}function kt(e,t,n,i){var a,s,u,c,p,f=mt(e);if(!i&&1===f.length){if(s=f[0]=f[0].slice(0),s.length>2&&"ID"===(u=s[0]).type&&r.getById&&9===t.nodeType&&h&&o.relative[s[1].type]){if(t=(o.find.ID(u.matches[0].replace(rt,it),t)||[])[0],!t)return n;e=e.slice(s.shift().value.length)}a=Q.needsContext.test(e)?0:s.length;while(a--){if(u=s[a],o.relative[c=u.type])break;if((p=o.find[c])&&(i=p(u.matches[0].replace(rt,it),V.test(s[0].type)&&t.parentNode||t))){if(s.splice(a,1),e=i.length&&yt(s),!e)return M.apply(n,i),n;break}}}return l(e,f)(i,t,!h,n,V.test(e)),n}r.sortStable=b.split("").sort(A).join("")===b,r.detectDuplicates=S,p(),r.sortDetached=ut(function(e){return 1&e.compareDocumentPosition(f.createElement("div"))}),ut(function(e){return e.innerHTML="<a href='#'></a>","#"===e.firstChild.getAttribute("href")})||ct("type|href|height|width",function(e,n,r){return r?t:e.getAttribute(n,"type"===n.toLowerCase()?1:2)}),r.attributes&&ut(function(e){return e.innerHTML="<input/>",e.firstChild.setAttribute("value",""),""===e.firstChild.getAttribute("value")})||ct("value",function(e,n,r){return r||"input"!==e.nodeName.toLowerCase()?t:e.defaultValue}),ut(function(e){return null==e.getAttribute("disabled")})||ct(B,function(e,n,r){var i;return r?t:(i=e.getAttributeNode(n))&&i.specified?i.value:e[n]===!0?n.toLowerCase():null}),x.find=at,x.expr=at.selectors,x.expr[":"]=x.expr.pseudos,x.unique=at.uniqueSort,x.text=at.getText,x.isXMLDoc=at.isXML,x.contains=at.contains}(e);var O={};function F(e){var t=O[e]={};return x.each(e.match(T)||[],function(e,n){t[n]=!0}),t}x.Callbacks=function(e){e="string"==typeof e?O[e]||F(e):x.extend({},e);var n,r,i,o,a,s,l=[],u=!e.once&&[],c=function(t){for(r=e.memory&&t,i=!0,a=s||0,s=0,o=l.length,n=!0;l&&o>a;a++)if(l[a].apply(t[0],t[1])===!1&&e.stopOnFalse){r=!1;break}n=!1,l&&(u?u.length&&c(u.shift()):r?l=[]:p.disable())},p={add:function(){if(l){var t=l.length;(function i(t){x.each(t,function(t,n){var r=x.type(n);"function"===r?e.unique&&p.has(n)||l.push(n):n&&n.length&&"string"!==r&&i(n)})})(arguments),n?o=l.length:r&&(s=t,c(r))}return this},remove:function(){return l&&x.each(arguments,function(e,t){var r;while((r=x.inArray(t,l,r))>-1)l.splice(r,1),n&&(o>=r&&o--,a>=r&&a--)}),this},has:function(e){return e?x.inArray(e,l)>-1:!(!l||!l.length)},empty:function(){return l=[],o=0,this},disable:function(){return l=u=r=t,this},disabled:function(){return!l},lock:function(){return u=t,r||p.disable(),this},locked:function(){return!u},fireWith:function(e,t){return!l||i&&!u||(t=t||[],t=[e,t.slice?t.slice():t],n?u.push(t):c(t)),this},fire:function(){return p.fireWith(this,arguments),this},fired:function(){return!!i}};return p},x.extend({Deferred:function(e){var t=[["resolve","done",x.Callbacks("once memory"),"resolved"],["reject","fail",x.Callbacks("once memory"),"rejected"],["notify","progress",x.Callbacks("memory")]],n="pending",r={state:function(){return n},always:function(){return i.done(arguments).fail(arguments),this},then:function(){var e=arguments;return x.Deferred(function(n){x.each(t,function(t,o){var a=o[0],s=x.isFunction(e[t])&&e[t];i[o[1]](function(){var e=s&&s.apply(this,arguments);e&&x.isFunction(e.promise)?e.promise().done(n.resolve).fail(n.reject).progress(n.notify):n[a+"With"](this===r?n.promise():this,s?[e]:arguments)})}),e=null}).promise()},promise:function(e){return null!=e?x.extend(e,r):r}},i={};return r.pipe=r.then,x.each(t,function(e,o){var a=o[2],s=o[3];r[o[1]]=a.add,s&&a.add(function(){n=s},t[1^e][2].disable,t[2][2].lock),i[o[0]]=function(){return i[o[0]+"With"](this===i?r:this,arguments),this},i[o[0]+"With"]=a.fireWith}),r.promise(i),e&&e.call(i,i),i},when:function(e){var t=0,n=g.call(arguments),r=n.length,i=1!==r||e&&x.isFunction(e.promise)?r:0,o=1===i?e:x.Deferred(),a=function(e,t,n){return function(r){t[e]=this,n[e]=arguments.length>1?g.call(arguments):r,n===s?o.notifyWith(t,n):--i||o.resolveWith(t,n)}},s,l,u;if(r>1)for(s=Array(r),l=Array(r),u=Array(r);r>t;t++)n[t]&&x.isFunction(n[t].promise)?n[t].promise().done(a(t,u,n)).fail(o.reject).progress(a(t,l,s)):--i;return i||o.resolveWith(u,n),o.promise()}}),x.support=function(t){var n,r,o,s,l,u,c,p,f,d=a.createElement("div");if(d.setAttribute("className","t"),d.innerHTML=" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",n=d.getElementsByTagName("*")||[],r=d.getElementsByTagName("a")[0],!r||!r.style||!n.length)return t;s=a.createElement("select"),u=s.appendChild(a.createElement("option")),o=d.getElementsByTagName("input")[0],r.style.cssText="top:1px;float:left;opacity:.5",t.getSetAttribute="t"!==d.className,t.leadingWhitespace=3===d.firstChild.nodeType,t.tbody=!d.getElementsByTagName("tbody").length,t.htmlSerialize=!!d.getElementsByTagName("link").length,t.style=/top/.test(r.getAttribute("style")),t.hrefNormalized="/a"===r.getAttribute("href"),t.opacity=/^0.5/.test(r.style.opacity),t.cssFloat=!!r.style.cssFloat,t.checkOn=!!o.value,t.optSelected=u.selected,t.enctype=!!a.createElement("form").enctype,t.html5Clone="<:nav></:nav>"!==a.createElement("nav").cloneNode(!0).outerHTML,t.inlineBlockNeedsLayout=!1,t.shrinkWrapBlocks=!1,t.pixelPosition=!1,t.deleteExpando=!0,t.noCloneEvent=!0,t.reliableMarginRight=!0,t.boxSizingReliable=!0,o.checked=!0,t.noCloneChecked=o.cloneNode(!0).checked,s.disabled=!0,t.optDisabled=!u.disabled;try{delete d.test}catch(h){t.deleteExpando=!1}o=a.createElement("input"),o.setAttribute("value",""),t.input=""===o.getAttribute("value"),o.value="t",o.setAttribute("type","radio"),t.radioValue="t"===o.value,o.setAttribute("checked","t"),o.setAttribute("name","t"),l=a.createDocumentFragment(),l.appendChild(o),t.appendChecked=o.checked,t.checkClone=l.cloneNode(!0).cloneNode(!0).lastChild.checked,d.attachEvent&&(d.attachEvent("onclick",function(){t.noCloneEvent=!1}),d.cloneNode(!0).click());for(f in{submit:!0,change:!0,focusin:!0})d.setAttribute(c="on"+f,"t"),t[f+"Bubbles"]=c in e||d.attributes[c].expando===!1;d.style.backgroundClip="content-box",d.cloneNode(!0).style.backgroundClip="",t.clearCloneStyle="content-box"===d.style.backgroundClip;for(f in x(t))break;return t.ownLast="0"!==f,x(function(){var n,r,o,s="padding:0;margin:0;border:0;display:block;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;",l=a.getElementsByTagName("body")[0];l&&(n=a.createElement("div"),n.style.cssText="border:0;width:0;height:0;position:absolute;top:0;left:-9999px;margin-top:1px",l.appendChild(n).appendChild(d),d.innerHTML="<table><tr><td></td><td>t</td></tr></table>",o=d.getElementsByTagName("td"),o[0].style.cssText="padding:0;margin:0;border:0;display:none",p=0===o[0].offsetHeight,o[0].style.display="",o[1].style.display="none",t.reliableHiddenOffsets=p&&0===o[0].offsetHeight,d.innerHTML="",d.style.cssText="box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%;",x.swap(l,null!=l.style.zoom?{zoom:1}:{},function(){t.boxSizing=4===d.offsetWidth}),e.getComputedStyle&&(t.pixelPosition="1%"!==(e.getComputedStyle(d,null)||{}).top,t.boxSizingReliable="4px"===(e.getComputedStyle(d,null)||{width:"4px"}).width,r=d.appendChild(a.createElement("div")),r.style.cssText=d.style.cssText=s,r.style.marginRight=r.style.width="0",d.style.width="1px",t.reliableMarginRight=!parseFloat((e.getComputedStyle(r,null)||{}).marginRight)),typeof d.style.zoom!==i&&(d.innerHTML="",d.style.cssText=s+"width:1px;padding:1px;display:inline;zoom:1",t.inlineBlockNeedsLayout=3===d.offsetWidth,d.style.display="block",d.innerHTML="<div></div>",d.firstChild.style.width="5px",t.shrinkWrapBlocks=3!==d.offsetWidth,t.inlineBlockNeedsLayout&&(l.style.zoom=1)),l.removeChild(n),n=d=o=r=null)}),n=s=l=u=r=o=null,t
|
|
| 5 |
+}({});var B=/(?:\{[\s\S]*\}|\[[\s\S]*\])$/,P=/([A-Z])/g;function R(e,n,r,i){if(x.acceptData(e)){var o,a,s=x.expando,l=e.nodeType,u=l?x.cache:e,c=l?e[s]:e[s]&&s;if(c&&u[c]&&(i||u[c].data)||r!==t||"string"!=typeof n)return c||(c=l?e[s]=p.pop()||x.guid++:s),u[c]||(u[c]=l?{}:{toJSON:x.noop}),("object"==typeof n||"function"==typeof n)&&(i?u[c]=x.extend(u[c],n):u[c].data=x.extend(u[c].data,n)),a=u[c],i||(a.data||(a.data={}),a=a.data),r!==t&&(a[x.camelCase(n)]=r),"string"==typeof n?(o=a[n],null==o&&(o=a[x.camelCase(n)])):o=a,o}}function W(e,t,n){if(x.acceptData(e)){var r,i,o=e.nodeType,a=o?x.cache:e,s=o?e[x.expando]:x.expando;if(a[s]){if(t&&(r=n?a[s]:a[s].data)){x.isArray(t)?t=t.concat(x.map(t,x.camelCase)):t in r?t=[t]:(t=x.camelCase(t),t=t in r?[t]:t.split(" ")),i=t.length;while(i--)delete r[t[i]];if(n?!I(r):!x.isEmptyObject(r))return}(n||(delete a[s].data,I(a[s])))&&(o?x.cleanData([e],!0):x.support.deleteExpando||a!=a.window?delete a[s]:a[s]=null)}}}x.extend({cache:{},noData:{applet:!0,embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"},hasData:function(e){return e=e.nodeType?x.cache[e[x.expando]]:e[x.expando],!!e&&!I(e)},data:function(e,t,n){return R(e,t,n)},removeData:function(e,t){return W(e,t)},_data:function(e,t,n){return R(e,t,n,!0)},_removeData:function(e,t){return W(e,t,!0)},acceptData:function(e){if(e.nodeType&&1!==e.nodeType&&9!==e.nodeType)return!1;var t=e.nodeName&&x.noData[e.nodeName.toLowerCase()];return!t||t!==!0&&e.getAttribute("classid")===t}}),x.fn.extend({data:function(e,n){var r,i,o=null,a=0,s=this[0];if(e===t){if(this.length&&(o=x.data(s),1===s.nodeType&&!x._data(s,"parsedAttrs"))){for(r=s.attributes;r.length>a;a++)i=r[a].name,0===i.indexOf("data-")&&(i=x.camelCase(i.slice(5)),$(s,i,o[i]));x._data(s,"parsedAttrs",!0)}return o}return"object"==typeof e?this.each(function(){x.data(this,e)}):arguments.length>1?this.each(function(){x.data(this,e,n)}):s?$(s,e,x.data(s,e)):null},removeData:function(e){return this.each(function(){x.removeData(this,e)})}});function $(e,n,r){if(r===t&&1===e.nodeType){var i="data-"+n.replace(P,"-$1").toLowerCase();if(r=e.getAttribute(i),"string"==typeof r){try{r="true"===r?!0:"false"===r?!1:"null"===r?null:+r+""===r?+r:B.test(r)?x.parseJSON(r):r}catch(o){}x.data(e,n,r)}else r=t}return r}function I(e){var t;for(t in e)if(("data"!==t||!x.isEmptyObject(e[t]))&&"toJSON"!==t)return!1;return!0}x.extend({queue:function(e,n,r){var i;return e?(n=(n||"fx")+"queue",i=x._data(e,n),r&&(!i||x.isArray(r)?i=x._data(e,n,x.makeArray(r)):i.push(r)),i||[]):t},dequeue:function(e,t){t=t||"fx";var n=x.queue(e,t),r=n.length,i=n.shift(),o=x._queueHooks(e,t),a=function(){x.dequeue(e,t)};"inprogress"===i&&(i=n.shift(),r--),i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,a,o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return x._data(e,n)||x._data(e,n,{empty:x.Callbacks("once memory").add(function(){x._removeData(e,t+"queue"),x._removeData(e,n)})})}}),x.fn.extend({queue:function(e,n){var r=2;return"string"!=typeof e&&(n=e,e="fx",r--),r>arguments.length?x.queue(this[0],e):n===t?this:this.each(function(){var t=x.queue(this,e,n);x._queueHooks(this,e),"fx"===e&&"inprogress"!==t[0]&&x.dequeue(this,e)})},dequeue:function(e){return this.each(function(){x.dequeue(this,e)})},delay:function(e,t){return e=x.fx?x.fx.speeds[e]||e:e,t=t||"fx",this.queue(t,function(t,n){var r=setTimeout(t,e);n.stop=function(){clearTimeout(r)}})},clearQueue:function(e){return this.queue(e||"fx",[])},promise:function(e,n){var r,i=1,o=x.Deferred(),a=this,s=this.length,l=function(){--i||o.resolveWith(a,[a])};"string"!=typeof e&&(n=e,e=t),e=e||"fx";while(s--)r=x._data(a[s],e+"queueHooks"),r&&r.empty&&(i++,r.empty.add(l));return l(),o.promise(n)}});var z,X,U=/[\t\r\n\f]/g,V=/\r/g,Y=/^(?:input|select|textarea|button|object)$/i,J=/^(?:a|area)$/i,G=/^(?:checked|selected)$/i,Q=x.support.getSetAttribute,K=x.support.input;x.fn.extend({attr:function(e,t){return x.access(this,x.attr,e,t,arguments.length>1)},removeAttr:function(e){return this.each(function(){x.removeAttr(this,e)})},prop:function(e,t){return x.access(this,x.prop,e,t,arguments.length>1)},removeProp:function(e){return e=x.propFix[e]||e,this.each(function(){try{this[e]=t,delete this[e]}catch(n){}})},addClass:function(e){var t,n,r,i,o,a=0,s=this.length,l="string"==typeof e&&e;if(x.isFunction(e))return this.each(function(t){x(this).addClass(e.call(this,t,this.className))});if(l)for(t=(e||"").match(T)||[];s>a;a++)if(n=this[a],r=1===n.nodeType&&(n.className?(" "+n.className+" ").replace(U," "):" ")){o=0;while(i=t[o++])0>r.indexOf(" "+i+" ")&&(r+=i+" ");n.className=x.trim(r)}return this},removeClass:function(e){var t,n,r,i,o,a=0,s=this.length,l=0===arguments.length||"string"==typeof e&&e;if(x.isFunction(e))return this.each(function(t){x(this).removeClass(e.call(this,t,this.className))});if(l)for(t=(e||"").match(T)||[];s>a;a++)if(n=this[a],r=1===n.nodeType&&(n.className?(" "+n.className+" ").replace(U," "):"")){o=0;while(i=t[o++])while(r.indexOf(" "+i+" ")>=0)r=r.replace(" "+i+" "," ");n.className=e?x.trim(r):""}return this},toggleClass:function(e,t){var n=typeof e;return"boolean"==typeof t&&"string"===n?t?this.addClass(e):this.removeClass(e):x.isFunction(e)?this.each(function(n){x(this).toggleClass(e.call(this,n,this.className,t),t)}):this.each(function(){if("string"===n){var t,r=0,o=x(this),a=e.match(T)||[];while(t=a[r++])o.hasClass(t)?o.removeClass(t):o.addClass(t)}else(n===i||"boolean"===n)&&(this.className&&x._data(this,"__className__",this.className),this.className=this.className||e===!1?"":x._data(this,"__className__")||"")})},hasClass:function(e){var t=" "+e+" ",n=0,r=this.length;for(;r>n;n++)if(1===this[n].nodeType&&(" "+this[n].className+" ").replace(U," ").indexOf(t)>=0)return!0;return!1},val:function(e){var n,r,i,o=this[0];{if(arguments.length)return i=x.isFunction(e),this.each(function(n){var o;1===this.nodeType&&(o=i?e.call(this,n,x(this).val()):e,null==o?o="":"number"==typeof o?o+="":x.isArray(o)&&(o=x.map(o,function(e){return null==e?"":e+""})),r=x.valHooks[this.type]||x.valHooks[this.nodeName.toLowerCase()],r&&"set"in r&&r.set(this,o,"value")!==t||(this.value=o))});if(o)return r=x.valHooks[o.type]||x.valHooks[o.nodeName.toLowerCase()],r&&"get"in r&&(n=r.get(o,"value"))!==t?n:(n=o.value,"string"==typeof n?n.replace(V,""):null==n?"":n)}}}),x.extend({valHooks:{option:{get:function(e){var t=x.find.attr(e,"value");return null!=t?t:e.text}},select:{get:function(e){var t,n,r=e.options,i=e.selectedIndex,o="select-one"===e.type||0>i,a=o?null:[],s=o?i+1:r.length,l=0>i?s:o?i:0;for(;s>l;l++)if(n=r[l],!(!n.selected&&l!==i||(x.support.optDisabled?n.disabled:null!==n.getAttribute("disabled"))||n.parentNode.disabled&&x.nodeName(n.parentNode,"optgroup"))){if(t=x(n).val(),o)return t;a.push(t)}return a},set:function(e,t){var n,r,i=e.options,o=x.makeArray(t),a=i.length;while(a--)r=i[a],(r.selected=x.inArray(x(r).val(),o)>=0)&&(n=!0);return n||(e.selectedIndex=-1),o}}},attr:function(e,n,r){var o,a,s=e.nodeType;if(e&&3!==s&&8!==s&&2!==s)return typeof e.getAttribute===i?x.prop(e,n,r):(1===s&&x.isXMLDoc(e)||(n=n.toLowerCase(),o=x.attrHooks[n]||(x.expr.match.bool.test(n)?X:z)),r===t?o&&"get"in o&&null!==(a=o.get(e,n))?a:(a=x.find.attr(e,n),null==a?t:a):null!==r?o&&"set"in o&&(a=o.set(e,r,n))!==t?a:(e.setAttribute(n,r+""),r):(x.removeAttr(e,n),t))},removeAttr:function(e,t){var n,r,i=0,o=t&&t.match(T);if(o&&1===e.nodeType)while(n=o[i++])r=x.propFix[n]||n,x.expr.match.bool.test(n)?K&&Q||!G.test(n)?e[r]=!1:e[x.camelCase("default-"+n)]=e[r]=!1:x.attr(e,n,""),e.removeAttribute(Q?n:r)},attrHooks:{type:{set:function(e,t){if(!x.support.radioValue&&"radio"===t&&x.nodeName(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},propFix:{"for":"htmlFor","class":"className"},prop:function(e,n,r){var i,o,a,s=e.nodeType;if(e&&3!==s&&8!==s&&2!==s)return a=1!==s||!x.isXMLDoc(e),a&&(n=x.propFix[n]||n,o=x.propHooks[n]),r!==t?o&&"set"in o&&(i=o.set(e,r,n))!==t?i:e[n]=r:o&&"get"in o&&null!==(i=o.get(e,n))?i:e[n]},propHooks:{tabIndex:{get:function(e){var t=x.find.attr(e,"tabindex");return t?parseInt(t,10):Y.test(e.nodeName)||J.test(e.nodeName)&&e.href?0:-1}}}}),X={set:function(e,t,n){return t===!1?x.removeAttr(e,n):K&&Q||!G.test(n)?e.setAttribute(!Q&&x.propFix[n]||n,n):e[x.camelCase("default-"+n)]=e[n]=!0,n}},x.each(x.expr.match.bool.source.match(/\w+/g),function(e,n){var r=x.expr.attrHandle[n]||x.find.attr;x.expr.attrHandle[n]=K&&Q||!G.test(n)?function(e,n,i){var o=x.expr.attrHandle[n],a=i?t:(x.expr.attrHandle[n]=t)!=r(e,n,i)?n.toLowerCase():null;return x.expr.attrHandle[n]=o,a}:function(e,n,r){return r?t:e[x.camelCase("default-"+n)]?n.toLowerCase():null}}),K&&Q||(x.attrHooks.value={set:function(e,n,r){return x.nodeName(e,"input")?(e.defaultValue=n,t):z&&z.set(e,n,r)}}),Q||(z={set:function(e,n,r){var i=e.getAttributeNode(r);return i||e.setAttributeNode(i=e.ownerDocument.createAttribute(r)),i.value=n+="","value"===r||n===e.getAttribute(r)?n:t}},x.expr.attrHandle.id=x.expr.attrHandle.name=x.expr.attrHandle.coords=function(e,n,r){var i;return r?t:(i=e.getAttributeNode(n))&&""!==i.value?i.value:null},x.valHooks.button={get:function(e,n){var r=e.getAttributeNode(n);return r&&r.specified?r.value:t},set:z.set},x.attrHooks.contenteditable={set:function(e,t,n){z.set(e,""===t?!1:t,n)}},x.each(["width","height"],function(e,n){x.attrHooks[n]={set:function(e,r){return""===r?(e.setAttribute(n,"auto"),r):t}}})),x.support.hrefNormalized||x.each(["href","src"],function(e,t){x.propHooks[t]={get:function(e){return e.getAttribute(t,4)}}}),x.support.style||(x.attrHooks.style={get:function(e){return e.style.cssText||t},set:function(e,t){return e.style.cssText=t+""}}),x.support.optSelected||(x.propHooks.selected={get:function(e){var t=e.parentNode;return t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex),null}}),x.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){x.propFix[this.toLowerCase()]=this}),x.support.enctype||(x.propFix.enctype="encoding"),x.each(["radio","checkbox"],function(){x.valHooks[this]={set:function(e,n){return x.isArray(n)?e.checked=x.inArray(x(e).val(),n)>=0:t}},x.support.checkOn||(x.valHooks[this].get=function(e){return null===e.getAttribute("value")?"on":e.value})});var Z=/^(?:input|select|textarea)$/i,et=/^key/,tt=/^(?:mouse|contextmenu)|click/,nt=/^(?:focusinfocus|focusoutblur)$/,rt=/^([^.]*)(?:\.(.+)|)$/;function it(){return!0}function ot(){return!1}function at(){try{return a.activeElement}catch(e){}}x.event={global:{},add:function(e,n,r,o,a){var s,l,u,c,p,f,d,h,g,m,y,v=x._data(e);if(v){r.handler&&(c=r,r=c.handler,a=c.selector),r.guid||(r.guid=x.guid++),(l=v.events)||(l=v.events={}),(f=v.handle)||(f=v.handle=function(e){return typeof x===i||e&&x.event.triggered===e.type?t:x.event.dispatch.apply(f.elem,arguments)},f.elem=e),n=(n||"").match(T)||[""],u=n.length;while(u--)s=rt.exec(n[u])||[],g=y=s[1],m=(s[2]||"").split(".").sort(),g&&(p=x.event.special[g]||{},g=(a?p.delegateType:p.bindType)||g,p=x.event.special[g]||{},d=x.extend({type:g,origType:y,data:o,handler:r,guid:r.guid,selector:a,needsContext:a&&x.expr.match.needsContext.test(a),namespace:m.join(".")},c),(h=l[g])||(h=l[g]=[],h.delegateCount=0,p.setup&&p.setup.call(e,o,m,f)!==!1||(e.addEventListener?e.addEventListener(g,f,!1):e.attachEvent&&e.attachEvent("on"+g,f))),p.add&&(p.add.call(e,d),d.handler.guid||(d.handler.guid=r.guid)),a?h.splice(h.delegateCount++,0,d):h.push(d),x.event.global[g]=!0);e=null}},remove:function(e,t,n,r,i){var o,a,s,l,u,c,p,f,d,h,g,m=x.hasData(e)&&x._data(e);if(m&&(c=m.events)){t=(t||"").match(T)||[""],u=t.length;while(u--)if(s=rt.exec(t[u])||[],d=g=s[1],h=(s[2]||"").split(".").sort(),d){p=x.event.special[d]||{},d=(r?p.delegateType:p.bindType)||d,f=c[d]||[],s=s[2]&&RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),l=o=f.length;while(o--)a=f[o],!i&&g!==a.origType||n&&n.guid!==a.guid||s&&!s.test(a.namespace)||r&&r!==a.selector&&("**"!==r||!a.selector)||(f.splice(o,1),a.selector&&f.delegateCount--,p.remove&&p.remove.call(e,a));l&&!f.length&&(p.teardown&&p.teardown.call(e,h,m.handle)!==!1||x.removeEvent(e,d,m.handle),delete c[d])}else for(d in c)x.event.remove(e,d+t[u],n,r,!0);x.isEmptyObject(c)&&(delete m.handle,x._removeData(e,"events"))}},trigger:function(n,r,i,o){var s,l,u,c,p,f,d,h=[i||a],g=v.call(n,"type")?n.type:n,m=v.call(n,"namespace")?n.namespace.split("."):[];if(u=f=i=i||a,3!==i.nodeType&&8!==i.nodeType&&!nt.test(g+x.event.triggered)&&(g.indexOf(".")>=0&&(m=g.split("."),g=m.shift(),m.sort()),l=0>g.indexOf(":")&&"on"+g,n=n[x.expando]?n:new x.Event(g,"object"==typeof n&&n),n.isTrigger=o?2:3,n.namespace=m.join("."),n.namespace_re=n.namespace?RegExp("(^|\\.)"+m.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,n.result=t,n.target||(n.target=i),r=null==r?[n]:x.makeArray(r,[n]),p=x.event.special[g]||{},o||!p.trigger||p.trigger.apply(i,r)!==!1)){if(!o&&!p.noBubble&&!x.isWindow(i)){for(c=p.delegateType||g,nt.test(c+g)||(u=u.parentNode);u;u=u.parentNode)h.push(u),f=u;f===(i.ownerDocument||a)&&h.push(f.defaultView||f.parentWindow||e)}d=0;while((u=h[d++])&&!n.isPropagationStopped())n.type=d>1?c:p.bindType||g,s=(x._data(u,"events")||{})[n.type]&&x._data(u,"handle"),s&&s.apply(u,r),s=l&&u[l],s&&x.acceptData(u)&&s.apply&&s.apply(u,r)===!1&&n.preventDefault();if(n.type=g,!o&&!n.isDefaultPrevented()&&(!p._default||p._default.apply(h.pop(),r)===!1)&&x.acceptData(i)&&l&&i[g]&&!x.isWindow(i)){f=i[l],f&&(i[l]=null),x.event.triggered=g;try{i[g]()}catch(y){}x.event.triggered=t,f&&(i[l]=f)}return n.result}},dispatch:function(e){e=x.event.fix(e);var n,r,i,o,a,s=[],l=g.call(arguments),u=(x._data(this,"events")||{})[e.type]||[],c=x.event.special[e.type]||{};if(l[0]=e,e.delegateTarget=this,!c.preDispatch||c.preDispatch.call(this,e)!==!1){s=x.event.handlers.call(this,e,u),n=0;while((o=s[n++])&&!e.isPropagationStopped()){e.currentTarget=o.elem,a=0;while((i=o.handlers[a++])&&!e.isImmediatePropagationStopped())(!e.namespace_re||e.namespace_re.test(i.namespace))&&(e.handleObj=i,e.data=i.data,r=((x.event.special[i.origType]||{}).handle||i.handler).apply(o.elem,l),r!==t&&(e.result=r)===!1&&(e.preventDefault(),e.stopPropagation()))}return c.postDispatch&&c.postDispatch.call(this,e),e.result}},handlers:function(e,n){var r,i,o,a,s=[],l=n.delegateCount,u=e.target;if(l&&u.nodeType&&(!e.button||"click"!==e.type))for(;u!=this;u=u.parentNode||this)if(1===u.nodeType&&(u.disabled!==!0||"click"!==e.type)){for(o=[],a=0;l>a;a++)i=n[a],r=i.selector+" ",o[r]===t&&(o[r]=i.needsContext?x(r,this).index(u)>=0:x.find(r,this,null,[u]).length),o[r]&&o.push(i);o.length&&s.push({elem:u,handlers:o})}return n.length>l&&s.push({elem:this,handlers:n.slice(l)}),s},fix:function(e){if(e[x.expando])return e;var t,n,r,i=e.type,o=e,s=this.fixHooks[i];s||(this.fixHooks[i]=s=tt.test(i)?this.mouseHooks:et.test(i)?this.keyHooks:{}),r=s.props?this.props.concat(s.props):this.props,e=new x.Event(o),t=r.length;while(t--)n=r[t],e[n]=o[n];return e.target||(e.target=o.srcElement||a),3===e.target.nodeType&&(e.target=e.target.parentNode),e.metaKey=!!e.metaKey,s.filter?s.filter(e,o):e},props:"altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(e,t){return null==e.which&&(e.which=null!=t.charCode?t.charCode:t.keyCode),e}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(e,n){var r,i,o,s=n.button,l=n.fromElement;return null==e.pageX&&null!=n.clientX&&(i=e.target.ownerDocument||a,o=i.documentElement,r=i.body,e.pageX=n.clientX+(o&&o.scrollLeft||r&&r.scrollLeft||0)-(o&&o.clientLeft||r&&r.clientLeft||0),e.pageY=n.clientY+(o&&o.scrollTop||r&&r.scrollTop||0)-(o&&o.clientTop||r&&r.clientTop||0)),!e.relatedTarget&&l&&(e.relatedTarget=l===e.target?n.toElement:l),e.which||s===t||(e.which=1&s?1:2&s?3:4&s?2:0),e}},special:{load:{noBubble:!0},focus:{trigger:function(){if(this!==at()&&this.focus)try{return this.focus(),!1}catch(e){}},delegateType:"focusin"},blur:{trigger:function(){return this===at()&&this.blur?(this.blur(),!1):t},delegateType:"focusout"},click:{trigger:function(){return x.nodeName(this,"input")&&"checkbox"===this.type&&this.click?(this.click(),!1):t},_default:function(e){return x.nodeName(e.target,"a")}},beforeunload:{postDispatch:function(e){e.result!==t&&(e.originalEvent.returnValue=e.result)}}},simulate:function(e,t,n,r){var i=x.extend(new x.Event,n,{type:e,isSimulated:!0,originalEvent:{}});r?x.event.trigger(i,null,t):x.event.dispatch.call(t,i),i.isDefaultPrevented()&&n.preventDefault()}},x.removeEvent=a.removeEventListener?function(e,t,n){e.removeEventListener&&e.removeEventListener(t,n,!1)}:function(e,t,n){var r="on"+t;e.detachEvent&&(typeof e[r]===i&&(e[r]=null),e.detachEvent(r,n))},x.Event=function(e,n){return this instanceof x.Event?(e&&e.type?(this.originalEvent=e,this.type=e.type,this.isDefaultPrevented=e.defaultPrevented||e.returnValue===!1||e.getPreventDefault&&e.getPreventDefault()?it:ot):this.type=e,n&&x.extend(this,n),this.timeStamp=e&&e.timeStamp||x.now(),this[x.expando]=!0,t):new x.Event(e,n)},x.Event.prototype={isDefaultPrevented:ot,isPropagationStopped:ot,isImmediatePropagationStopped:ot,preventDefault:function(){var e=this.originalEvent;this.isDefaultPrevented=it,e&&(e.preventDefault?e.preventDefault():e.returnValue=!1)},stopPropagation:function(){var e=this.originalEvent;this.isPropagationStopped=it,e&&(e.stopPropagation&&e.stopPropagation(),e.cancelBubble=!0)},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=it,this.stopPropagation()}},x.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(e,t){x.event.special[e]={delegateType:t,bindType:t,handle:function(e){var n,r=this,i=e.relatedTarget,o=e.handleObj;return(!i||i!==r&&!x.contains(r,i))&&(e.type=o.origType,n=o.handler.apply(this,arguments),e.type=t),n}}}),x.support.submitBubbles||(x.event.special.submit={setup:function(){return x.nodeName(this,"form")?!1:(x.event.add(this,"click._submit keypress._submit",function(e){var n=e.target,r=x.nodeName(n,"input")||x.nodeName(n,"button")?n.form:t;r&&!x._data(r,"submitBubbles")&&(x.event.add(r,"submit._submit",function(e){e._submit_bubble=!0}),x._data(r,"submitBubbles",!0))}),t)},postDispatch:function(e){e._submit_bubble&&(delete e._submit_bubble,this.parentNode&&!e.isTrigger&&x.event.simulate("submit",this.parentNode,e,!0))},teardown:function(){return x.nodeName(this,"form")?!1:(x.event.remove(this,"._submit"),t)}}),x.support.changeBubbles||(x.event.special.change={setup:function(){return Z.test(this.nodeName)?(("checkbox"===this.type||"radio"===this.type)&&(x.event.add(this,"propertychange._change",function(e){"checked"===e.originalEvent.propertyName&&(this._just_changed=!0)}),x.event.add(this,"click._change",function(e){this._just_changed&&!e.isTrigger&&(this._just_changed=!1),x.event.simulate("change",this,e,!0)})),!1):(x.event.add(this,"beforeactivate._change",function(e){var t=e.target;Z.test(t.nodeName)&&!x._data(t,"changeBubbles")&&(x.event.add(t,"change._change",function(e){!this.parentNode||e.isSimulated||e.isTrigger||x.event.simulate("change",this.parentNode,e,!0)}),x._data(t,"changeBubbles",!0))}),t)},handle:function(e){var n=e.target;return this!==n||e.isSimulated||e.isTrigger||"radio"!==n.type&&"checkbox"!==n.type?e.handleObj.handler.apply(this,arguments):t},teardown:function(){return x.event.remove(this,"._change"),!Z.test(this.nodeName)}}),x.support.focusinBubbles||x.each({focus:"focusin",blur:"focusout"},function(e,t){var n=0,r=function(e){x.event.simulate(t,e.target,x.event.fix(e),!0)};x.event.special[t]={setup:function(){0===n++&&a.addEventListener(e,r,!0)},teardown:function(){0===--n&&a.removeEventListener(e,r,!0)}}}),x.fn.extend({on:function(e,n,r,i,o){var a,s;if("object"==typeof e){"string"!=typeof n&&(r=r||n,n=t);for(a in e)this.on(a,n,r,e[a],o);return this}if(null==r&&null==i?(i=n,r=n=t):null==i&&("string"==typeof n?(i=r,r=t):(i=r,r=n,n=t)),i===!1)i=ot;else if(!i)return this;return 1===o&&(s=i,i=function(e){return x().off(e),s.apply(this,arguments)},i.guid=s.guid||(s.guid=x.guid++)),this.each(function(){x.event.add(this,e,i,r,n)})},one:function(e,t,n,r){return this.on(e,t,n,r,1)},off:function(e,n,r){var i,o;if(e&&e.preventDefault&&e.handleObj)return i=e.handleObj,x(e.delegateTarget).off(i.namespace?i.origType+"."+i.namespace:i.origType,i.selector,i.handler),this;if("object"==typeof e){for(o in e)this.off(o,n,e[o]);return this}return(n===!1||"function"==typeof n)&&(r=n,n=t),r===!1&&(r=ot),this.each(function(){x.event.remove(this,e,r,n)})},trigger:function(e,t){return this.each(function(){x.event.trigger(e,t,this)})},triggerHandler:function(e,n){var r=this[0];return r?x.event.trigger(e,n,r,!0):t}});var st=/^.[^:#\[\.,]*$/,lt=/^(?:parents|prev(?:Until|All))/,ut=x.expr.match.needsContext,ct={children:!0,contents:!0,next:!0,prev:!0};x.fn.extend({find:function(e){var t,n=[],r=this,i=r.length;if("string"!=typeof e)return this.pushStack(x(e).filter(function(){for(t=0;i>t;t++)if(x.contains(r[t],this))return!0}));for(t=0;i>t;t++)x.find(e,r[t],n);return n=this.pushStack(i>1?x.unique(n):n),n.selector=this.selector?this.selector+" "+e:e,n},has:function(e){var t,n=x(e,this),r=n.length;return this.filter(function(){for(t=0;r>t;t++)if(x.contains(this,n[t]))return!0})},not:function(e){return this.pushStack(ft(this,e||[],!0))},filter:function(e){return this.pushStack(ft(this,e||[],!1))},is:function(e){return!!ft(this,"string"==typeof e&&ut.test(e)?x(e):e||[],!1).length},closest:function(e,t){var n,r=0,i=this.length,o=[],a=ut.test(e)||"string"!=typeof e?x(e,t||this.context):0;for(;i>r;r++)for(n=this[r];n&&n!==t;n=n.parentNode)if(11>n.nodeType&&(a?a.index(n)>-1:1===n.nodeType&&x.find.matchesSelector(n,e))){n=o.push(n);break}return this.pushStack(o.length>1?x.unique(o):o)},index:function(e){return e?"string"==typeof e?x.inArray(this[0],x(e)):x.inArray(e.jquery?e[0]:e,this):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){var n="string"==typeof e?x(e,t):x.makeArray(e&&e.nodeType?[e]:e),r=x.merge(this.get(),n);return this.pushStack(x.unique(r))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}});function pt(e,t){do e=e[t];while(e&&1!==e.nodeType);return e}x.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return x.dir(e,"parentNode")},parentsUntil:function(e,t,n){return x.dir(e,"parentNode",n)},next:function(e){return pt(e,"nextSibling")},prev:function(e){return pt(e,"previousSibling")},nextAll:function(e){return x.dir(e,"nextSibling")},prevAll:function(e){return x.dir(e,"previousSibling")},nextUntil:function(e,t,n){return x.dir(e,"nextSibling",n)},prevUntil:function(e,t,n){return x.dir(e,"previousSibling",n)},siblings:function(e){return x.sibling((e.parentNode||{}).firstChild,e)},children:function(e){return x.sibling(e.firstChild)},contents:function(e){return x.nodeName(e,"iframe")?e.contentDocument||e.contentWindow.document:x.merge([],e.childNodes)}},function(e,t){x.fn[e]=function(n,r){var i=x.map(this,t,n);return"Until"!==e.slice(-5)&&(r=n),r&&"string"==typeof r&&(i=x.filter(r,i)),this.length>1&&(ct[e]||(i=x.unique(i)),lt.test(e)&&(i=i.reverse())),this.pushStack(i)}}),x.extend({filter:function(e,t,n){var r=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===r.nodeType?x.find.matchesSelector(r,e)?[r]:[]:x.find.matches(e,x.grep(t,function(e){return 1===e.nodeType}))},dir:function(e,n,r){var i=[],o=e[n];while(o&&9!==o.nodeType&&(r===t||1!==o.nodeType||!x(o).is(r)))1===o.nodeType&&i.push(o),o=o[n];return i},sibling:function(e,t){var n=[];for(;e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n}});function ft(e,t,n){if(x.isFunction(t))return x.grep(e,function(e,r){return!!t.call(e,r,e)!==n});if(t.nodeType)return x.grep(e,function(e){return e===t!==n});if("string"==typeof t){if(st.test(t))return x.filter(t,e,n);t=x.filter(t,e)}return x.grep(e,function(e){return x.inArray(e,t)>=0!==n})}function dt(e){var t=ht.split("|"),n=e.createDocumentFragment();if(n.createElement)while(t.length)n.createElement(t.pop());return n}var ht="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",gt=/ jQuery\d+="(?:null|\d+)"/g,mt=RegExp("<(?:"+ht+")[\\s/>]","i"),yt=/^\s+/,vt=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,bt=/<([\w:]+)/,xt=/<tbody/i,wt=/<|&#?\w+;/,Tt=/<(?:script|style|link)/i,Ct=/^(?:checkbox|radio)$/i,Nt=/checked\s*(?:[^=]|=\s*.checked.)/i,kt=/^$|\/(?:java|ecma)script/i,Et=/^true\/(.*)/,St=/^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g,At={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],area:[1,"<map>","</map>"],param:[1,"<object>","</object>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:x.support.htmlSerialize?[0,"",""]:[1,"X<div>","</div>"]},jt=dt(a),Dt=jt.appendChild(a.createElement("div"));At.optgroup=At.option,At.tbody=At.tfoot=At.colgroup=At.caption=At.thead,At.th=At.td,x.fn.extend({text:function(e){return x.access(this,function(e){return e===t?x.text(this):this.empty().append((this[0]&&this[0].ownerDocument||a).createTextNode(e))},null,e,arguments.length)},append:function(){return this.domManip(arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=Lt(this,e);t.appendChild(e)}})},prepend:function(){return this.domManip(arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=Lt(this,e);t.insertBefore(e,t.firstChild)}})},before:function(){return this.domManip(arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return this.domManip(arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},remove:function(e,t){var n,r=e?x.filter(e,this):this,i=0;for(;null!=(n=r[i]);i++)t||1!==n.nodeType||x.cleanData(Ft(n)),n.parentNode&&(t&&x.contains(n.ownerDocument,n)&&_t(Ft(n,"script")),n.parentNode.removeChild(n));return this},empty:function(){var e,t=0;for(;null!=(e=this[t]);t++){1===e.nodeType&&x.cleanData(Ft(e,!1));while(e.firstChild)e.removeChild(e.firstChild);e.options&&x.nodeName(e,"select")&&(e.options.length=0)}return this},clone:function(e,t){return e=null==e?!1:e,t=null==t?e:t,this.map(function(){return x.clone(this,e,t)})},html:function(e){return x.access(this,function(e){var n=this[0]||{},r=0,i=this.length;if(e===t)return 1===n.nodeType?n.innerHTML.replace(gt,""):t;if(!("string"!=typeof e||Tt.test(e)||!x.support.htmlSerialize&&mt.test(e)||!x.support.leadingWhitespace&&yt.test(e)||At[(bt.exec(e)||["",""])[1].toLowerCase()])){e=e.replace(vt,"<$1></$2>");try{for(;i>r;r++)n=this[r]||{},1===n.nodeType&&(x.cleanData(Ft(n,!1)),n.innerHTML=e);n=0}catch(o){}}n&&this.empty().append(e)},null,e,arguments.length)},replaceWith:function(){var e=x.map(this,function(e){return[e.nextSibling,e.parentNode]}),t=0;return this.domManip(arguments,function(n){var r=e[t++],i=e[t++];i&&(r&&r.parentNode!==i&&(r=this.nextSibling),x(this).remove(),i.insertBefore(n,r))},!0),t?this:this.remove()},detach:function(e){return this.remove(e,!0)},domManip:function(e,t,n){e=d.apply([],e);var r,i,o,a,s,l,u=0,c=this.length,p=this,f=c-1,h=e[0],g=x.isFunction(h);if(g||!(1>=c||"string"!=typeof h||x.support.checkClone)&&Nt.test(h))return this.each(function(r){var i=p.eq(r);g&&(e[0]=h.call(this,r,i.html())),i.domManip(e,t,n)});if(c&&(l=x.buildFragment(e,this[0].ownerDocument,!1,!n&&this),r=l.firstChild,1===l.childNodes.length&&(l=r),r)){for(a=x.map(Ft(l,"script"),Ht),o=a.length;c>u;u++)i=l,u!==f&&(i=x.clone(i,!0,!0),o&&x.merge(a,Ft(i,"script"))),t.call(this[u],i,u);if(o)for(s=a[a.length-1].ownerDocument,x.map(a,qt),u=0;o>u;u++)i=a[u],kt.test(i.type||"")&&!x._data(i,"globalEval")&&x.contains(s,i)&&(i.src?x._evalUrl(i.src):x.globalEval((i.text||i.textContent||i.innerHTML||"").replace(St,"")));l=r=null}return this}});function Lt(e,t){return x.nodeName(e,"table")&&x.nodeName(1===t.nodeType?t:t.firstChild,"tr")?e.getElementsByTagName("tbody")[0]||e.appendChild(e.ownerDocument.createElement("tbody")):e}function Ht(e){return e.type=(null!==x.find.attr(e,"type"))+"/"+e.type,e}function qt(e){var t=Et.exec(e.type);return t?e.type=t[1]:e.removeAttribute("type"),e}function _t(e,t){var n,r=0;for(;null!=(n=e[r]);r++)x._data(n,"globalEval",!t||x._data(t[r],"globalEval"))}function Mt(e,t){if(1===t.nodeType&&x.hasData(e)){var n,r,i,o=x._data(e),a=x._data(t,o),s=o.events;if(s){delete a.handle,a.events={};for(n in s)for(r=0,i=s[n].length;i>r;r++)x.event.add(t,n,s[n][r])}a.data&&(a.data=x.extend({},a.data))}}function Ot(e,t){var n,r,i;if(1===t.nodeType){if(n=t.nodeName.toLowerCase(),!x.support.noCloneEvent&&t[x.expando]){i=x._data(t);for(r in i.events)x.removeEvent(t,r,i.handle);t.removeAttribute(x.expando)}"script"===n&&t.text!==e.text?(Ht(t).text=e.text,qt(t)):"object"===n?(t.parentNode&&(t.outerHTML=e.outerHTML),x.support.html5Clone&&e.innerHTML&&!x.trim(t.innerHTML)&&(t.innerHTML=e.innerHTML)):"input"===n&&Ct.test(e.type)?(t.defaultChecked=t.checked=e.checked,t.value!==e.value&&(t.value=e.value)):"option"===n?t.defaultSelected=t.selected=e.defaultSelected:("input"===n||"textarea"===n)&&(t.defaultValue=e.defaultValue)}}x.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(e,t){x.fn[e]=function(e){var n,r=0,i=[],o=x(e),a=o.length-1;for(;a>=r;r++)n=r===a?this:this.clone(!0),x(o[r])[t](n),h.apply(i,n.get());return this.pushStack(i)}});function Ft(e,n){var r,o,a=0,s=typeof e.getElementsByTagName!==i?e.getElementsByTagName(n||"*"):typeof e.querySelectorAll!==i?e.querySelectorAll(n||"*"):t;if(!s)for(s=[],r=e.childNodes||e;null!=(o=r[a]);a++)!n||x.nodeName(o,n)?s.push(o):x.merge(s,Ft(o,n));return n===t||n&&x.nodeName(e,n)?x.merge([e],s):s}function Bt(e){Ct.test(e.type)&&(e.defaultChecked=e.checked)}x.extend({clone:function(e,t,n){var r,i,o,a,s,l=x.contains(e.ownerDocument,e);if(x.support.html5Clone||x.isXMLDoc(e)||!mt.test("<"+e.nodeName+">")?o=e.cloneNode(!0):(Dt.innerHTML=e.outerHTML,Dt.removeChild(o=Dt.firstChild)),!(x.support.noCloneEvent&&x.support.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||x.isXMLDoc(e)))for(r=Ft(o),s=Ft(e),a=0;null!=(i=s[a]);++a)r[a]&&Ot(i,r[a]);if(t)if(n)for(s=s||Ft(e),r=r||Ft(o),a=0;null!=(i=s[a]);a++)Mt(i,r[a]);else Mt(e,o);return r=Ft(o,"script"),r.length>0&&_t(r,!l&&Ft(e,"script")),r=s=i=null,o},buildFragment:function(e,t,n,r){var i,o,a,s,l,u,c,p=e.length,f=dt(t),d=[],h=0;for(;p>h;h++)if(o=e[h],o||0===o)if("object"===x.type(o))x.merge(d,o.nodeType?[o]:o);else if(wt.test(o)){s=s||f.appendChild(t.createElement("div")),l=(bt.exec(o)||["",""])[1].toLowerCase(),c=At[l]||At._default,s.innerHTML=c[1]+o.replace(vt,"<$1></$2>")+c[2],i=c[0];while(i--)s=s.lastChild;if(!x.support.leadingWhitespace&&yt.test(o)&&d.push(t.createTextNode(yt.exec(o)[0])),!x.support.tbody){o="table"!==l||xt.test(o)?"<table>"!==c[1]||xt.test(o)?0:s:s.firstChild,i=o&&o.childNodes.length;while(i--)x.nodeName(u=o.childNodes[i],"tbody")&&!u.childNodes.length&&o.removeChild(u)}x.merge(d,s.childNodes),s.textContent="";while(s.firstChild)s.removeChild(s.firstChild);s=f.lastChild}else d.push(t.createTextNode(o));s&&f.removeChild(s),x.support.appendChecked||x.grep(Ft(d,"input"),Bt),h=0;while(o=d[h++])if((!r||-1===x.inArray(o,r))&&(a=x.contains(o.ownerDocument,o),s=Ft(f.appendChild(o),"script"),a&&_t(s),n)){i=0;while(o=s[i++])kt.test(o.type||"")&&n.push(o)}return s=null,f},cleanData:function(e,t){var n,r,o,a,s=0,l=x.expando,u=x.cache,c=x.support.deleteExpando,f=x.event.special;for(;null!=(n=e[s]);s++)if((t||x.acceptData(n))&&(o=n[l],a=o&&u[o])){if(a.events)for(r in a.events)f[r]?x.event.remove(n,r):x.removeEvent(n,r,a.handle);
|
|
| 6 |
+u[o]&&(delete u[o],c?delete n[l]:typeof n.removeAttribute!==i?n.removeAttribute(l):n[l]=null,p.push(o))}},_evalUrl:function(e){return x.ajax({url:e,type:"GET",dataType:"script",async:!1,global:!1,"throws":!0})}}),x.fn.extend({wrapAll:function(e){if(x.isFunction(e))return this.each(function(t){x(this).wrapAll(e.call(this,t))});if(this[0]){var t=x(e,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){var e=this;while(e.firstChild&&1===e.firstChild.nodeType)e=e.firstChild;return e}).append(this)}return this},wrapInner:function(e){return x.isFunction(e)?this.each(function(t){x(this).wrapInner(e.call(this,t))}):this.each(function(){var t=x(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)})},wrap:function(e){var t=x.isFunction(e);return this.each(function(n){x(this).wrapAll(t?e.call(this,n):e)})},unwrap:function(){return this.parent().each(function(){x.nodeName(this,"body")||x(this).replaceWith(this.childNodes)}).end()}});var Pt,Rt,Wt,$t=/alpha\([^)]*\)/i,It=/opacity\s*=\s*([^)]*)/,zt=/^(top|right|bottom|left)$/,Xt=/^(none|table(?!-c[ea]).+)/,Ut=/^margin/,Vt=RegExp("^("+w+")(.*)$","i"),Yt=RegExp("^("+w+")(?!px)[a-z%]+$","i"),Jt=RegExp("^([+-])=("+w+")","i"),Gt={BODY:"block"},Qt={position:"absolute",visibility:"hidden",display:"block"},Kt={letterSpacing:0,fontWeight:400},Zt=["Top","Right","Bottom","Left"],en=["Webkit","O","Moz","ms"];function tn(e,t){if(t in e)return t;var n=t.charAt(0).toUpperCase()+t.slice(1),r=t,i=en.length;while(i--)if(t=en[i]+n,t in e)return t;return r}function nn(e,t){return e=t||e,"none"===x.css(e,"display")||!x.contains(e.ownerDocument,e)}function rn(e,t){var n,r,i,o=[],a=0,s=e.length;for(;s>a;a++)r=e[a],r.style&&(o[a]=x._data(r,"olddisplay"),n=r.style.display,t?(o[a]||"none"!==n||(r.style.display=""),""===r.style.display&&nn(r)&&(o[a]=x._data(r,"olddisplay",ln(r.nodeName)))):o[a]||(i=nn(r),(n&&"none"!==n||!i)&&x._data(r,"olddisplay",i?n:x.css(r,"display"))));for(a=0;s>a;a++)r=e[a],r.style&&(t&&"none"!==r.style.display&&""!==r.style.display||(r.style.display=t?o[a]||"":"none"));return e}x.fn.extend({css:function(e,n){return x.access(this,function(e,n,r){var i,o,a={},s=0;if(x.isArray(n)){for(o=Rt(e),i=n.length;i>s;s++)a[n[s]]=x.css(e,n[s],!1,o);return a}return r!==t?x.style(e,n,r):x.css(e,n)},e,n,arguments.length>1)},show:function(){return rn(this,!0)},hide:function(){return rn(this)},toggle:function(e){return"boolean"==typeof e?e?this.show():this.hide():this.each(function(){nn(this)?x(this).show():x(this).hide()})}}),x.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=Wt(e,"opacity");return""===n?"1":n}}}},cssNumber:{columnCount:!0,fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":x.support.cssFloat?"cssFloat":"styleFloat"},style:function(e,n,r,i){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var o,a,s,l=x.camelCase(n),u=e.style;if(n=x.cssProps[l]||(x.cssProps[l]=tn(u,l)),s=x.cssHooks[n]||x.cssHooks[l],r===t)return s&&"get"in s&&(o=s.get(e,!1,i))!==t?o:u[n];if(a=typeof r,"string"===a&&(o=Jt.exec(r))&&(r=(o[1]+1)*o[2]+parseFloat(x.css(e,n)),a="number"),!(null==r||"number"===a&&isNaN(r)||("number"!==a||x.cssNumber[l]||(r+="px"),x.support.clearCloneStyle||""!==r||0!==n.indexOf("background")||(u[n]="inherit"),s&&"set"in s&&(r=s.set(e,r,i))===t)))try{u[n]=r}catch(c){}}},css:function(e,n,r,i){var o,a,s,l=x.camelCase(n);return n=x.cssProps[l]||(x.cssProps[l]=tn(e.style,l)),s=x.cssHooks[n]||x.cssHooks[l],s&&"get"in s&&(a=s.get(e,!0,r)),a===t&&(a=Wt(e,n,i)),"normal"===a&&n in Kt&&(a=Kt[n]),""===r||r?(o=parseFloat(a),r===!0||x.isNumeric(o)?o||0:a):a}}),e.getComputedStyle?(Rt=function(t){return e.getComputedStyle(t,null)},Wt=function(e,n,r){var i,o,a,s=r||Rt(e),l=s?s.getPropertyValue(n)||s[n]:t,u=e.style;return s&&(""!==l||x.contains(e.ownerDocument,e)||(l=x.style(e,n)),Yt.test(l)&&Ut.test(n)&&(i=u.width,o=u.minWidth,a=u.maxWidth,u.minWidth=u.maxWidth=u.width=l,l=s.width,u.width=i,u.minWidth=o,u.maxWidth=a)),l}):a.documentElement.currentStyle&&(Rt=function(e){return e.currentStyle},Wt=function(e,n,r){var i,o,a,s=r||Rt(e),l=s?s[n]:t,u=e.style;return null==l&&u&&u[n]&&(l=u[n]),Yt.test(l)&&!zt.test(n)&&(i=u.left,o=e.runtimeStyle,a=o&&o.left,a&&(o.left=e.currentStyle.left),u.left="fontSize"===n?"1em":l,l=u.pixelLeft+"px",u.left=i,a&&(o.left=a)),""===l?"auto":l});function on(e,t,n){var r=Vt.exec(t);return r?Math.max(0,r[1]-(n||0))+(r[2]||"px"):t}function an(e,t,n,r,i){var o=n===(r?"border":"content")?4:"width"===t?1:0,a=0;for(;4>o;o+=2)"margin"===n&&(a+=x.css(e,n+Zt[o],!0,i)),r?("content"===n&&(a-=x.css(e,"padding"+Zt[o],!0,i)),"margin"!==n&&(a-=x.css(e,"border"+Zt[o]+"Width",!0,i))):(a+=x.css(e,"padding"+Zt[o],!0,i),"padding"!==n&&(a+=x.css(e,"border"+Zt[o]+"Width",!0,i)));return a}function sn(e,t,n){var r=!0,i="width"===t?e.offsetWidth:e.offsetHeight,o=Rt(e),a=x.support.boxSizing&&"border-box"===x.css(e,"boxSizing",!1,o);if(0>=i||null==i){if(i=Wt(e,t,o),(0>i||null==i)&&(i=e.style[t]),Yt.test(i))return i;r=a&&(x.support.boxSizingReliable||i===e.style[t]),i=parseFloat(i)||0}return i+an(e,t,n||(a?"border":"content"),r,o)+"px"}function ln(e){var t=a,n=Gt[e];return n||(n=un(e,t),"none"!==n&&n||(Pt=(Pt||x("<iframe frameborder='0' width='0' height='0'/>").css("cssText","display:block !important")).appendTo(t.documentElement),t=(Pt[0].contentWindow||Pt[0].contentDocument).document,t.write("<!doctype html><html><body>"),t.close(),n=un(e,t),Pt.detach()),Gt[e]=n),n}function un(e,t){var n=x(t.createElement(e)).appendTo(t.body),r=x.css(n[0],"display");return n.remove(),r}x.each(["height","width"],function(e,n){x.cssHooks[n]={get:function(e,r,i){return r?0===e.offsetWidth&&Xt.test(x.css(e,"display"))?x.swap(e,Qt,function(){return sn(e,n,i)}):sn(e,n,i):t},set:function(e,t,r){var i=r&&Rt(e);return on(e,t,r?an(e,n,r,x.support.boxSizing&&"border-box"===x.css(e,"boxSizing",!1,i),i):0)}}}),x.support.opacity||(x.cssHooks.opacity={get:function(e,t){return It.test((t&&e.currentStyle?e.currentStyle.filter:e.style.filter)||"")?.01*parseFloat(RegExp.$1)+"":t?"1":""},set:function(e,t){var n=e.style,r=e.currentStyle,i=x.isNumeric(t)?"alpha(opacity="+100*t+")":"",o=r&&r.filter||n.filter||"";n.zoom=1,(t>=1||""===t)&&""===x.trim(o.replace($t,""))&&n.removeAttribute&&(n.removeAttribute("filter"),""===t||r&&!r.filter)||(n.filter=$t.test(o)?o.replace($t,i):o+" "+i)}}),x(function(){x.support.reliableMarginRight||(x.cssHooks.marginRight={get:function(e,n){return n?x.swap(e,{display:"inline-block"},Wt,[e,"marginRight"]):t}}),!x.support.pixelPosition&&x.fn.position&&x.each(["top","left"],function(e,n){x.cssHooks[n]={get:function(e,r){return r?(r=Wt(e,n),Yt.test(r)?x(e).position()[n]+"px":r):t}}})}),x.expr&&x.expr.filters&&(x.expr.filters.hidden=function(e){return 0>=e.offsetWidth&&0>=e.offsetHeight||!x.support.reliableHiddenOffsets&&"none"===(e.style&&e.style.display||x.css(e,"display"))},x.expr.filters.visible=function(e){return!x.expr.filters.hidden(e)}),x.each({margin:"",padding:"",border:"Width"},function(e,t){x.cssHooks[e+t]={expand:function(n){var r=0,i={},o="string"==typeof n?n.split(" "):[n];for(;4>r;r++)i[e+Zt[r]+t]=o[r]||o[r-2]||o[0];return i}},Ut.test(e)||(x.cssHooks[e+t].set=on)});var cn=/%20/g,pn=/\[\]$/,fn=/\r?\n/g,dn=/^(?:submit|button|image|reset|file)$/i,hn=/^(?:input|select|textarea|keygen)/i;x.fn.extend({serialize:function(){return x.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var e=x.prop(this,"elements");return e?x.makeArray(e):this}).filter(function(){var e=this.type;return this.name&&!x(this).is(":disabled")&&hn.test(this.nodeName)&&!dn.test(e)&&(this.checked||!Ct.test(e))}).map(function(e,t){var n=x(this).val();return null==n?null:x.isArray(n)?x.map(n,function(e){return{name:t.name,value:e.replace(fn,"\r\n")}}):{name:t.name,value:n.replace(fn,"\r\n")}}).get()}}),x.param=function(e,n){var r,i=[],o=function(e,t){t=x.isFunction(t)?t():null==t?"":t,i[i.length]=encodeURIComponent(e)+"="+encodeURIComponent(t)};if(n===t&&(n=x.ajaxSettings&&x.ajaxSettings.traditional),x.isArray(e)||e.jquery&&!x.isPlainObject(e))x.each(e,function(){o(this.name,this.value)});else for(r in e)gn(r,e[r],n,o);return i.join("&").replace(cn,"+")};function gn(e,t,n,r){var i;if(x.isArray(t))x.each(t,function(t,i){n||pn.test(e)?r(e,i):gn(e+"["+("object"==typeof i?t:"")+"]",i,n,r)});else if(n||"object"!==x.type(t))r(e,t);else for(i in t)gn(e+"["+i+"]",t[i],n,r)}x.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(e,t){x.fn[t]=function(e,n){return arguments.length>0?this.on(t,null,e,n):this.trigger(t)}}),x.fn.extend({hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)},bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)}});var mn,yn,vn=x.now(),bn=/\?/,xn=/#.*$/,wn=/([?&])_=[^&]*/,Tn=/^(.*?):[ \t]*([^\r\n]*)\r?$/gm,Cn=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,Nn=/^(?:GET|HEAD)$/,kn=/^\/\//,En=/^([\w.+-]+:)(?:\/\/([^\/?#:]*)(?::(\d+)|)|)/,Sn=x.fn.load,An={},jn={},Dn="*/".concat("*");try{yn=o.href}catch(Ln){yn=a.createElement("a"),yn.href="",yn=yn.href}mn=En.exec(yn.toLowerCase())||[];function Hn(e){return function(t,n){"string"!=typeof t&&(n=t,t="*");var r,i=0,o=t.toLowerCase().match(T)||[];if(x.isFunction(n))while(r=o[i++])"+"===r[0]?(r=r.slice(1)||"*",(e[r]=e[r]||[]).unshift(n)):(e[r]=e[r]||[]).push(n)}}function qn(e,n,r,i){var o={},a=e===jn;function s(l){var u;return o[l]=!0,x.each(e[l]||[],function(e,l){var c=l(n,r,i);return"string"!=typeof c||a||o[c]?a?!(u=c):t:(n.dataTypes.unshift(c),s(c),!1)}),u}return s(n.dataTypes[0])||!o["*"]&&s("*")}function _n(e,n){var r,i,o=x.ajaxSettings.flatOptions||{};for(i in n)n[i]!==t&&((o[i]?e:r||(r={}))[i]=n[i]);return r&&x.extend(!0,e,r),e}x.fn.load=function(e,n,r){if("string"!=typeof e&&Sn)return Sn.apply(this,arguments);var i,o,a,s=this,l=e.indexOf(" ");return l>=0&&(i=e.slice(l,e.length),e=e.slice(0,l)),x.isFunction(n)?(r=n,n=t):n&&"object"==typeof n&&(a="POST"),s.length>0&&x.ajax({url:e,type:a,dataType:"html",data:n}).done(function(e){o=arguments,s.html(i?x("<div>").append(x.parseHTML(e)).find(i):e)}).complete(r&&function(e,t){s.each(r,o||[e.responseText,t,e])}),this},x.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){x.fn[t]=function(e){return this.on(t,e)}}),x.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:yn,type:"GET",isLocal:Cn.test(mn[1]),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Dn,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":x.parseJSON,"text xml":x.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?_n(_n(e,x.ajaxSettings),t):_n(x.ajaxSettings,e)},ajaxPrefilter:Hn(An),ajaxTransport:Hn(jn),ajax:function(e,n){"object"==typeof e&&(n=e,e=t),n=n||{};var r,i,o,a,s,l,u,c,p=x.ajaxSetup({},n),f=p.context||p,d=p.context&&(f.nodeType||f.jquery)?x(f):x.event,h=x.Deferred(),g=x.Callbacks("once memory"),m=p.statusCode||{},y={},v={},b=0,w="canceled",C={readyState:0,getResponseHeader:function(e){var t;if(2===b){if(!c){c={};while(t=Tn.exec(a))c[t[1].toLowerCase()]=t[2]}t=c[e.toLowerCase()]}return null==t?null:t},getAllResponseHeaders:function(){return 2===b?a:null},setRequestHeader:function(e,t){var n=e.toLowerCase();return b||(e=v[n]=v[n]||e,y[e]=t),this},overrideMimeType:function(e){return b||(p.mimeType=e),this},statusCode:function(e){var t;if(e)if(2>b)for(t in e)m[t]=[m[t],e[t]];else C.always(e[C.status]);return this},abort:function(e){var t=e||w;return u&&u.abort(t),k(0,t),this}};if(h.promise(C).complete=g.add,C.success=C.done,C.error=C.fail,p.url=((e||p.url||yn)+"").replace(xn,"").replace(kn,mn[1]+"//"),p.type=n.method||n.type||p.method||p.type,p.dataTypes=x.trim(p.dataType||"*").toLowerCase().match(T)||[""],null==p.crossDomain&&(r=En.exec(p.url.toLowerCase()),p.crossDomain=!(!r||r[1]===mn[1]&&r[2]===mn[2]&&(r[3]||("http:"===r[1]?"80":"443"))===(mn[3]||("http:"===mn[1]?"80":"443")))),p.data&&p.processData&&"string"!=typeof p.data&&(p.data=x.param(p.data,p.traditional)),qn(An,p,n,C),2===b)return C;l=p.global,l&&0===x.active++&&x.event.trigger("ajaxStart"),p.type=p.type.toUpperCase(),p.hasContent=!Nn.test(p.type),o=p.url,p.hasContent||(p.data&&(o=p.url+=(bn.test(o)?"&":"?")+p.data,delete p.data),p.cache===!1&&(p.url=wn.test(o)?o.replace(wn,"$1_="+vn++):o+(bn.test(o)?"&":"?")+"_="+vn++)),p.ifModified&&(x.lastModified[o]&&C.setRequestHeader("If-Modified-Since",x.lastModified[o]),x.etag[o]&&C.setRequestHeader("If-None-Match",x.etag[o])),(p.data&&p.hasContent&&p.contentType!==!1||n.contentType)&&C.setRequestHeader("Content-Type",p.contentType),C.setRequestHeader("Accept",p.dataTypes[0]&&p.accepts[p.dataTypes[0]]?p.accepts[p.dataTypes[0]]+("*"!==p.dataTypes[0]?", "+Dn+"; q=0.01":""):p.accepts["*"]);for(i in p.headers)C.setRequestHeader(i,p.headers[i]);if(p.beforeSend&&(p.beforeSend.call(f,C,p)===!1||2===b))return C.abort();w="abort";for(i in{success:1,error:1,complete:1})C[i](p[i]);if(u=qn(jn,p,n,C)){C.readyState=1,l&&d.trigger("ajaxSend",[C,p]),p.async&&p.timeout>0&&(s=setTimeout(function(){C.abort("timeout")},p.timeout));try{b=1,u.send(y,k)}catch(N){if(!(2>b))throw N;k(-1,N)}}else k(-1,"No Transport");function k(e,n,r,i){var c,y,v,w,T,N=n;2!==b&&(b=2,s&&clearTimeout(s),u=t,a=i||"",C.readyState=e>0?4:0,c=e>=200&&300>e||304===e,r&&(w=Mn(p,C,r)),w=On(p,w,C,c),c?(p.ifModified&&(T=C.getResponseHeader("Last-Modified"),T&&(x.lastModified[o]=T),T=C.getResponseHeader("etag"),T&&(x.etag[o]=T)),204===e||"HEAD"===p.type?N="nocontent":304===e?N="notmodified":(N=w.state,y=w.data,v=w.error,c=!v)):(v=N,(e||!N)&&(N="error",0>e&&(e=0))),C.status=e,C.statusText=(n||N)+"",c?h.resolveWith(f,[y,N,C]):h.rejectWith(f,[C,N,v]),C.statusCode(m),m=t,l&&d.trigger(c?"ajaxSuccess":"ajaxError",[C,p,c?y:v]),g.fireWith(f,[C,N]),l&&(d.trigger("ajaxComplete",[C,p]),--x.active||x.event.trigger("ajaxStop")))}return C},getJSON:function(e,t,n){return x.get(e,t,n,"json")},getScript:function(e,n){return x.get(e,t,n,"script")}}),x.each(["get","post"],function(e,n){x[n]=function(e,r,i,o){return x.isFunction(r)&&(o=o||i,i=r,r=t),x.ajax({url:e,type:n,dataType:o,data:r,success:i})}});function Mn(e,n,r){var i,o,a,s,l=e.contents,u=e.dataTypes;while("*"===u[0])u.shift(),o===t&&(o=e.mimeType||n.getResponseHeader("Content-Type"));if(o)for(s in l)if(l[s]&&l[s].test(o)){u.unshift(s);break}if(u[0]in r)a=u[0];else{for(s in r){if(!u[0]||e.converters[s+" "+u[0]]){a=s;break}i||(i=s)}a=a||i}return a?(a!==u[0]&&u.unshift(a),r[a]):t}function On(e,t,n,r){var i,o,a,s,l,u={},c=e.dataTypes.slice();if(c[1])for(a in e.converters)u[a.toLowerCase()]=e.converters[a];o=c.shift();while(o)if(e.responseFields[o]&&(n[e.responseFields[o]]=t),!l&&r&&e.dataFilter&&(t=e.dataFilter(t,e.dataType)),l=o,o=c.shift())if("*"===o)o=l;else if("*"!==l&&l!==o){if(a=u[l+" "+o]||u["* "+o],!a)for(i in u)if(s=i.split(" "),s[1]===o&&(a=u[l+" "+s[0]]||u["* "+s[0]])){a===!0?a=u[i]:u[i]!==!0&&(o=s[0],c.unshift(s[1]));break}if(a!==!0)if(a&&e["throws"])t=a(t);else try{t=a(t)}catch(p){return{state:"parsererror",error:a?p:"No conversion from "+l+" to "+o}}}return{state:"success",data:t}}x.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/(?:java|ecma)script/},converters:{"text script":function(e){return x.globalEval(e),e}}}),x.ajaxPrefilter("script",function(e){e.cache===t&&(e.cache=!1),e.crossDomain&&(e.type="GET",e.global=!1)}),x.ajaxTransport("script",function(e){if(e.crossDomain){var n,r=a.head||x("head")[0]||a.documentElement;return{send:function(t,i){n=a.createElement("script"),n.async=!0,e.scriptCharset&&(n.charset=e.scriptCharset),n.src=e.url,n.onload=n.onreadystatechange=function(e,t){(t||!n.readyState||/loaded|complete/.test(n.readyState))&&(n.onload=n.onreadystatechange=null,n.parentNode&&n.parentNode.removeChild(n),n=null,t||i(200,"success"))},r.insertBefore(n,r.firstChild)},abort:function(){n&&n.onload(t,!0)}}}});var Fn=[],Bn=/(=)\?(?=&|$)|\?\?/;x.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Fn.pop()||x.expando+"_"+vn++;return this[e]=!0,e}}),x.ajaxPrefilter("json jsonp",function(n,r,i){var o,a,s,l=n.jsonp!==!1&&(Bn.test(n.url)?"url":"string"==typeof n.data&&!(n.contentType||"").indexOf("application/x-www-form-urlencoded")&&Bn.test(n.data)&&"data");return l||"jsonp"===n.dataTypes[0]?(o=n.jsonpCallback=x.isFunction(n.jsonpCallback)?n.jsonpCallback():n.jsonpCallback,l?n[l]=n[l].replace(Bn,"$1"+o):n.jsonp!==!1&&(n.url+=(bn.test(n.url)?"&":"?")+n.jsonp+"="+o),n.converters["script json"]=function(){return s||x.error(o+" was not called"),s[0]},n.dataTypes[0]="json",a=e[o],e[o]=function(){s=arguments},i.always(function(){e[o]=a,n[o]&&(n.jsonpCallback=r.jsonpCallback,Fn.push(o)),s&&x.isFunction(a)&&a(s[0]),s=a=t}),"script"):t});var Pn,Rn,Wn=0,$n=e.ActiveXObject&&function(){var e;for(e in Pn)Pn[e](t,!0)};function In(){try{return new e.XMLHttpRequest}catch(t){}}function zn(){try{return new e.ActiveXObject("Microsoft.XMLHTTP")}catch(t){}}x.ajaxSettings.xhr=e.ActiveXObject?function(){return!this.isLocal&&In()||zn()}:In,Rn=x.ajaxSettings.xhr(),x.support.cors=!!Rn&&"withCredentials"in Rn,Rn=x.support.ajax=!!Rn,Rn&&x.ajaxTransport(function(n){if(!n.crossDomain||x.support.cors){var r;return{send:function(i,o){var a,s,l=n.xhr();if(n.username?l.open(n.type,n.url,n.async,n.username,n.password):l.open(n.type,n.url,n.async),n.xhrFields)for(s in n.xhrFields)l[s]=n.xhrFields[s];n.mimeType&&l.overrideMimeType&&l.overrideMimeType(n.mimeType),n.crossDomain||i["X-Requested-With"]||(i["X-Requested-With"]="XMLHttpRequest");try{for(s in i)l.setRequestHeader(s,i[s])}catch(u){}l.send(n.hasContent&&n.data||null),r=function(e,i){var s,u,c,p;try{if(r&&(i||4===l.readyState))if(r=t,a&&(l.onreadystatechange=x.noop,$n&&delete Pn[a]),i)4!==l.readyState&&l.abort();else{p={},s=l.status,u=l.getAllResponseHeaders(),"string"==typeof l.responseText&&(p.text=l.responseText);try{c=l.statusText}catch(f){c=""}s||!n.isLocal||n.crossDomain?1223===s&&(s=204):s=p.text?200:404}}catch(d){i||o(-1,d)}p&&o(s,c,p,u)},n.async?4===l.readyState?setTimeout(r):(a=++Wn,$n&&(Pn||(Pn={},x(e).unload($n)),Pn[a]=r),l.onreadystatechange=r):r()},abort:function(){r&&r(t,!0)}}}});var Xn,Un,Vn=/^(?:toggle|show|hide)$/,Yn=RegExp("^(?:([+-])=|)("+w+")([a-z%]*)$","i"),Jn=/queueHooks$/,Gn=[nr],Qn={"*":[function(e,t){var n=this.createTween(e,t),r=n.cur(),i=Yn.exec(t),o=i&&i[3]||(x.cssNumber[e]?"":"px"),a=(x.cssNumber[e]||"px"!==o&&+r)&&Yn.exec(x.css(n.elem,e)),s=1,l=20;if(a&&a[3]!==o){o=o||a[3],i=i||[],a=+r||1;do s=s||".5",a/=s,x.style(n.elem,e,a+o);while(s!==(s=n.cur()/r)&&1!==s&&--l)}return i&&(a=n.start=+a||+r||0,n.unit=o,n.end=i[1]?a+(i[1]+1)*i[2]:+i[2]),n}]};function Kn(){return setTimeout(function(){Xn=t}),Xn=x.now()}function Zn(e,t,n){var r,i=(Qn[t]||[]).concat(Qn["*"]),o=0,a=i.length;for(;a>o;o++)if(r=i[o].call(n,t,e))return r}function er(e,t,n){var r,i,o=0,a=Gn.length,s=x.Deferred().always(function(){delete l.elem}),l=function(){if(i)return!1;var t=Xn||Kn(),n=Math.max(0,u.startTime+u.duration-t),r=n/u.duration||0,o=1-r,a=0,l=u.tweens.length;for(;l>a;a++)u.tweens[a].run(o);return s.notifyWith(e,[u,o,n]),1>o&&l?n:(s.resolveWith(e,[u]),!1)},u=s.promise({elem:e,props:x.extend({},t),opts:x.extend(!0,{specialEasing:{}},n),originalProperties:t,originalOptions:n,startTime:Xn||Kn(),duration:n.duration,tweens:[],createTween:function(t,n){var r=x.Tween(e,u.opts,t,n,u.opts.specialEasing[t]||u.opts.easing);return u.tweens.push(r),r},stop:function(t){var n=0,r=t?u.tweens.length:0;if(i)return this;for(i=!0;r>n;n++)u.tweens[n].run(1);return t?s.resolveWith(e,[u,t]):s.rejectWith(e,[u,t]),this}}),c=u.props;for(tr(c,u.opts.specialEasing);a>o;o++)if(r=Gn[o].call(u,e,c,u.opts))return r;return x.map(c,Zn,u),x.isFunction(u.opts.start)&&u.opts.start.call(e,u),x.fx.timer(x.extend(l,{elem:e,anim:u,queue:u.opts.queue})),u.progress(u.opts.progress).done(u.opts.done,u.opts.complete).fail(u.opts.fail).always(u.opts.always)}function tr(e,t){var n,r,i,o,a;for(n in e)if(r=x.camelCase(n),i=t[r],o=e[n],x.isArray(o)&&(i=o[1],o=e[n]=o[0]),n!==r&&(e[r]=o,delete e[n]),a=x.cssHooks[r],a&&"expand"in a){o=a.expand(o),delete e[r];for(n in o)n in e||(e[n]=o[n],t[n]=i)}else t[r]=i}x.Animation=x.extend(er,{tweener:function(e,t){x.isFunction(e)?(t=e,e=["*"]):e=e.split(" ");var n,r=0,i=e.length;for(;i>r;r++)n=e[r],Qn[n]=Qn[n]||[],Qn[n].unshift(t)},prefilter:function(e,t){t?Gn.unshift(e):Gn.push(e)}});function nr(e,t,n){var r,i,o,a,s,l,u=this,c={},p=e.style,f=e.nodeType&&nn(e),d=x._data(e,"fxshow");n.queue||(s=x._queueHooks(e,"fx"),null==s.unqueued&&(s.unqueued=0,l=s.empty.fire,s.empty.fire=function(){s.unqueued||l()}),s.unqueued++,u.always(function(){u.always(function(){s.unqueued--,x.queue(e,"fx").length||s.empty.fire()})})),1===e.nodeType&&("height"in t||"width"in t)&&(n.overflow=[p.overflow,p.overflowX,p.overflowY],"inline"===x.css(e,"display")&&"none"===x.css(e,"float")&&(x.support.inlineBlockNeedsLayout&&"inline"!==ln(e.nodeName)?p.zoom=1:p.display="inline-block")),n.overflow&&(p.overflow="hidden",x.support.shrinkWrapBlocks||u.always(function(){p.overflow=n.overflow[0],p.overflowX=n.overflow[1],p.overflowY=n.overflow[2]}));for(r in t)if(i=t[r],Vn.exec(i)){if(delete t[r],o=o||"toggle"===i,i===(f?"hide":"show"))continue;c[r]=d&&d[r]||x.style(e,r)}if(!x.isEmptyObject(c)){d?"hidden"in d&&(f=d.hidden):d=x._data(e,"fxshow",{}),o&&(d.hidden=!f),f?x(e).show():u.done(function(){x(e).hide()}),u.done(function(){var t;x._removeData(e,"fxshow");for(t in c)x.style(e,t,c[t])});for(r in c)a=Zn(f?d[r]:0,r,u),r in d||(d[r]=a.start,f&&(a.end=a.start,a.start="width"===r||"height"===r?1:0))}}function rr(e,t,n,r,i){return new rr.prototype.init(e,t,n,r,i)}x.Tween=rr,rr.prototype={constructor:rr,init:function(e,t,n,r,i,o){this.elem=e,this.prop=n,this.easing=i||"swing",this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=o||(x.cssNumber[n]?"":"px")},cur:function(){var e=rr.propHooks[this.prop];return e&&e.get?e.get(this):rr.propHooks._default.get(this)},run:function(e){var t,n=rr.propHooks[this.prop];return this.pos=t=this.options.duration?x.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):rr.propHooks._default.set(this),this}},rr.prototype.init.prototype=rr.prototype,rr.propHooks={_default:{get:function(e){var t;return null==e.elem[e.prop]||e.elem.style&&null!=e.elem.style[e.prop]?(t=x.css(e.elem,e.prop,""),t&&"auto"!==t?t:0):e.elem[e.prop]},set:function(e){x.fx.step[e.prop]?x.fx.step[e.prop](e):e.elem.style&&(null!=e.elem.style[x.cssProps[e.prop]]||x.cssHooks[e.prop])?x.style(e.elem,e.prop,e.now+e.unit):e.elem[e.prop]=e.now}}},rr.propHooks.scrollTop=rr.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},x.each(["toggle","show","hide"],function(e,t){var n=x.fn[t];x.fn[t]=function(e,r,i){return null==e||"boolean"==typeof e?n.apply(this,arguments):this.animate(ir(t,!0),e,r,i)}}),x.fn.extend({fadeTo:function(e,t,n,r){return this.filter(nn).css("opacity",0).show().end().animate({opacity:t},e,n,r)},animate:function(e,t,n,r){var i=x.isEmptyObject(e),o=x.speed(t,n,r),a=function(){var t=er(this,x.extend({},e),o);(i||x._data(this,"finish"))&&t.stop(!0)};return a.finish=a,i||o.queue===!1?this.each(a):this.queue(o.queue,a)},stop:function(e,n,r){var i=function(e){var t=e.stop;delete e.stop,t(r)};return"string"!=typeof e&&(r=n,n=e,e=t),n&&e!==!1&&this.queue(e||"fx",[]),this.each(function(){var t=!0,n=null!=e&&e+"queueHooks",o=x.timers,a=x._data(this);if(n)a[n]&&a[n].stop&&i(a[n]);else for(n in a)a[n]&&a[n].stop&&Jn.test(n)&&i(a[n]);for(n=o.length;n--;)o[n].elem!==this||null!=e&&o[n].queue!==e||(o[n].anim.stop(r),t=!1,o.splice(n,1));(t||!r)&&x.dequeue(this,e)})},finish:function(e){return e!==!1&&(e=e||"fx"),this.each(function(){var t,n=x._data(this),r=n[e+"queue"],i=n[e+"queueHooks"],o=x.timers,a=r?r.length:0;for(n.finish=!0,x.queue(this,e,[]),i&&i.stop&&i.stop.call(this,!0),t=o.length;t--;)o[t].elem===this&&o[t].queue===e&&(o[t].anim.stop(!0),o.splice(t,1));for(t=0;a>t;t++)r[t]&&r[t].finish&&r[t].finish.call(this);delete n.finish})}});function ir(e,t){var n,r={height:e},i=0;for(t=t?1:0;4>i;i+=2-t)n=Zt[i],r["margin"+n]=r["padding"+n]=e;return t&&(r.opacity=r.width=e),r}x.each({slideDown:ir("show"),slideUp:ir("hide"),slideToggle:ir("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(e,t){x.fn[e]=function(e,n,r){return this.animate(t,e,n,r)}}),x.speed=function(e,t,n){var r=e&&"object"==typeof e?x.extend({},e):{complete:n||!n&&t||x.isFunction(e)&&e,duration:e,easing:n&&t||t&&!x.isFunction(t)&&t};return r.duration=x.fx.off?0:"number"==typeof r.duration?r.duration:r.duration in x.fx.speeds?x.fx.speeds[r.duration]:x.fx.speeds._default,(null==r.queue||r.queue===!0)&&(r.queue="fx"),r.old=r.complete,r.complete=function(){x.isFunction(r.old)&&r.old.call(this),r.queue&&x.dequeue(this,r.queue)},r},x.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2}},x.timers=[],x.fx=rr.prototype.init,x.fx.tick=function(){var e,n=x.timers,r=0;for(Xn=x.now();n.length>r;r++)e=n[r],e()||n[r]!==e||n.splice(r--,1);n.length||x.fx.stop(),Xn=t},x.fx.timer=function(e){e()&&x.timers.push(e)&&x.fx.start()},x.fx.interval=13,x.fx.start=function(){Un||(Un=setInterval(x.fx.tick,x.fx.interval))},x.fx.stop=function(){clearInterval(Un),Un=null},x.fx.speeds={slow:600,fast:200,_default:400},x.fx.step={},x.expr&&x.expr.filters&&(x.expr.filters.animated=function(e){return x.grep(x.timers,function(t){return e===t.elem}).length}),x.fn.offset=function(e){if(arguments.length)return e===t?this:this.each(function(t){x.offset.setOffset(this,e,t)});var n,r,o={top:0,left:0},a=this[0],s=a&&a.ownerDocument;if(s)return n=s.documentElement,x.contains(n,a)?(typeof a.getBoundingClientRect!==i&&(o=a.getBoundingClientRect()),r=or(s),{top:o.top+(r.pageYOffset||n.scrollTop)-(n.clientTop||0),left:o.left+(r.pageXOffset||n.scrollLeft)-(n.clientLeft||0)}):o},x.offset={setOffset:function(e,t,n){var r=x.css(e,"position");"static"===r&&(e.style.position="relative");var i=x(e),o=i.offset(),a=x.css(e,"top"),s=x.css(e,"left"),l=("absolute"===r||"fixed"===r)&&x.inArray("auto",[a,s])>-1,u={},c={},p,f;l?(c=i.position(),p=c.top,f=c.left):(p=parseFloat(a)||0,f=parseFloat(s)||0),x.isFunction(t)&&(t=t.call(e,n,o)),null!=t.top&&(u.top=t.top-o.top+p),null!=t.left&&(u.left=t.left-o.left+f),"using"in t?t.using.call(e,u):i.css(u)}},x.fn.extend({position:function(){if(this[0]){var e,t,n={top:0,left:0},r=this[0];return"fixed"===x.css(r,"position")?t=r.getBoundingClientRect():(e=this.offsetParent(),t=this.offset(),x.nodeName(e[0],"html")||(n=e.offset()),n.top+=x.css(e[0],"borderTopWidth",!0),n.left+=x.css(e[0],"borderLeftWidth",!0)),{top:t.top-n.top-x.css(r,"marginTop",!0),left:t.left-n.left-x.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent||s;while(e&&!x.nodeName(e,"html")&&"static"===x.css(e,"position"))e=e.offsetParent;return e||s})}}),x.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(e,n){var r=/Y/.test(n);x.fn[e]=function(i){return x.access(this,function(e,i,o){var a=or(e);return o===t?a?n in a?a[n]:a.document.documentElement[i]:e[i]:(a?a.scrollTo(r?x(a).scrollLeft():o,r?o:x(a).scrollTop()):e[i]=o,t)},e,i,arguments.length,null)}});function or(e){return x.isWindow(e)?e:9===e.nodeType?e.defaultView||e.parentWindow:!1}x.each({Height:"height",Width:"width"},function(e,n){x.each({padding:"inner"+e,content:n,"":"outer"+e},function(r,i){x.fn[i]=function(i,o){var a=arguments.length&&(r||"boolean"!=typeof i),s=r||(i===!0||o===!0?"margin":"border");return x.access(this,function(n,r,i){var o;return x.isWindow(n)?n.document.documentElement["client"+e]:9===n.nodeType?(o=n.documentElement,Math.max(n.body["scroll"+e],o["scroll"+e],n.body["offset"+e],o["offset"+e],o["client"+e])):i===t?x.css(n,r,s):x.style(n,r,i,s)},n,a?i:t,a,null)}})}),x.fn.size=function(){return this.length},x.fn.andSelf=x.fn.addBack,"object"==typeof module&&module&&"object"==typeof module.exports?module.exports=x:(e.jQuery=e.$=x,"function"==typeof define&&define.amd&&define("jquery",[],function(){return x}))})(window);
|
| ... | ... |
@@ -0,0 +1,6 @@ |
| 1 |
+/*! matchMedia() polyfill - Test a CSS media type/query in JS. Authors & copyright (c) 2012: Scott Jehl, Paul Irish, Nicholas Zakas. Dual MIT/BSD license */ |
|
| 2 |
+/*! NOTE: If you're already including a window.matchMedia polyfill via Modernizr or otherwise, you don't need this part */ |
|
| 3 |
+window.matchMedia=window.matchMedia||function(a){"use strict";var c,d=a.documentElement,e=d.firstElementChild||d.firstChild,f=a.createElement("body"),g=a.createElement("div");return g.id="mq-test-1",g.style.cssText="position:absolute;top:-100em",f.style.background="none",f.appendChild(g),function(a){return g.innerHTML='­<style media="'+a+'"> #mq-test-1 { width: 42px; }</style>',d.insertBefore(f,e),c=42===g.offsetWidth,d.removeChild(f),{matches:c,media:a}}}(document);
|
|
| 4 |
+ |
|
| 5 |
+/*! Respond.js v1.3.0: min/max-width media query polyfill. (c) Scott Jehl. MIT/GPLv2 Lic. j.mp/respondjs */ |
|
| 6 |
+(function(a){"use strict";function x(){u(!0)}var b={};if(a.respond=b,b.update=function(){},b.mediaQueriesSupported=a.matchMedia&&a.matchMedia("only all").matches,!b.mediaQueriesSupported){var q,r,t,c=a.document,d=c.documentElement,e=[],f=[],g=[],h={},i=30,j=c.getElementsByTagName("head")[0]||d,k=c.getElementsByTagName("base")[0],l=j.getElementsByTagName("link"),m=[],n=function(){for(var b=0;l.length>b;b++){var c=l[b],d=c.href,e=c.media,f=c.rel&&"stylesheet"===c.rel.toLowerCase();d&&f&&!h[d]&&(c.styleSheet&&c.styleSheet.rawCssText?(p(c.styleSheet.rawCssText,d,e),h[d]=!0):(!/^([a-zA-Z:]*\/\/)/.test(d)&&!k||d.replace(RegExp.$1,"").split("/")[0]===a.location.host)&&m.push({href:d,media:e}))}o()},o=function(){if(m.length){var b=m.shift();v(b.href,function(c){p(c,b.href,b.media),h[b.href]=!0,a.setTimeout(function(){o()},0)})}},p=function(a,b,c){var d=a.match(/@media[^\{]+\{([^\{\}]*\{[^\}\{]*\})+/gi),g=d&&d.length||0;b=b.substring(0,b.lastIndexOf("/"));var h=function(a){return a.replace(/(url\()['"]?([^\/\)'"][^:\)'"]+)['"]?(\))/g,"$1"+b+"$2$3")},i=!g&&c;b.length&&(b+="/"),i&&(g=1);for(var j=0;g>j;j++){var k,l,m,n;i?(k=c,f.push(h(a))):(k=d[j].match(/@media *([^\{]+)\{([\S\s]+?)$/)&&RegExp.$1,f.push(RegExp.$2&&h(RegExp.$2))),m=k.split(","),n=m.length;for(var o=0;n>o;o++)l=m[o],e.push({media:l.split("(")[0].match(/(only\s+)?([a-zA-Z]+)\s?/)&&RegExp.$2||"all",rules:f.length-1,hasquery:l.indexOf("(")>-1,minw:l.match(/\(\s*min\-width\s*:\s*(\s*[0-9\.]+)(px|em)\s*\)/)&&parseFloat(RegExp.$1)+(RegExp.$2||""),maxw:l.match(/\(\s*max\-width\s*:\s*(\s*[0-9\.]+)(px|em)\s*\)/)&&parseFloat(RegExp.$1)+(RegExp.$2||"")})}u()},s=function(){var a,b=c.createElement("div"),e=c.body,f=!1;return b.style.cssText="position:absolute;font-size:1em;width:1em",e||(e=f=c.createElement("body"),e.style.background="none"),e.appendChild(b),d.insertBefore(e,d.firstChild),a=b.offsetWidth,f?d.removeChild(e):e.removeChild(b),a=t=parseFloat(a)},u=function(b){var h="clientWidth",k=d[h],m="CSS1Compat"===c.compatMode&&k||c.body[h]||k,n={},o=l[l.length-1],p=(new Date).getTime();if(b&&q&&i>p-q)return a.clearTimeout(r),r=a.setTimeout(u,i),void 0;q=p;for(var v in e)if(e.hasOwnProperty(v)){var w=e[v],x=w.minw,y=w.maxw,z=null===x,A=null===y,B="em";x&&(x=parseFloat(x)*(x.indexOf(B)>-1?t||s():1)),y&&(y=parseFloat(y)*(y.indexOf(B)>-1?t||s():1)),w.hasquery&&(z&&A||!(z||m>=x)||!(A||y>=m))||(n[w.media]||(n[w.media]=[]),n[w.media].push(f[w.rules]))}for(var C in g)g.hasOwnProperty(C)&&g[C]&&g[C].parentNode===j&&j.removeChild(g[C]);for(var D in n)if(n.hasOwnProperty(D)){var E=c.createElement("style"),F=n[D].join("\n");E.type="text/css",E.media=D,j.insertBefore(E,o.nextSibling),E.styleSheet?E.styleSheet.cssText=F:E.appendChild(c.createTextNode(F)),g.push(E)}},v=function(a,b){var c=w();c&&(c.open("GET",a,!0),c.onreadystatechange=function(){4!==c.readyState||200!==c.status&&304!==c.status||b(c.responseText)},4!==c.readyState&&c.send(null))},w=function(){var b=!1;try{b=new a.XMLHttpRequest}catch(c){b=new a.ActiveXObject("Microsoft.XMLHTTP")}return function(){return b}}();n(),b.update=n,a.addEventListener?a.addEventListener("resize",x,!1):a.attachEvent&&a.attachEvent("onresize",x)}})(this);
|
| ... | ... |
@@ -1,5 +1,5 @@ |
| 1 | 1 |
<!DOCTYPE html> |
| 2 |
-<html manifest="manifest"> |
|
| 2 |
+<html manifest="cache.manifest"> |
|
| 3 | 3 |
<head> |
| 4 | 4 |
<title>MyCo</title> |
| 5 | 5 |
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" /> |
| ... | ... |
@@ -7,15 +7,15 @@ |
| 7 | 7 |
<link rel="shortcut icon" href="favicon.png"> |
| 8 | 8 |
<!-- Bootstrap --> |
| 9 | 9 |
<!-- Latest compiled and minified CSS --> |
| 10 |
-<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css"> |
|
| 10 |
+<link rel="stylesheet" href="inc/lib/bootstrap/css/bootstrap.min.css"> |
|
| 11 | 11 |
|
| 12 | 12 |
<!-- Optional theme --> |
| 13 |
-<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap-theme.min.css"> |
|
| 13 |
+<link rel="stylesheet" href="inc/lib/bootstrap/css/bootstrap-theme.min.css"> |
|
| 14 | 14 |
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries --> |
| 15 | 15 |
<!-- WARNING: Respond.js doesn't work if you view the page via file:// --> |
| 16 | 16 |
<!--[if lt IE 9]> |
| 17 |
- <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script> |
|
| 18 |
- <script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script> |
|
| 17 |
+ <script src="inc/lib/html5shiv.js"></script> |
|
| 18 |
+ <script src="inc/lib/respond.min.js"></script> |
|
| 19 | 19 |
<![endif]--> |
| 20 | 20 |
</head> |
| 21 | 21 |
<style> |
| ... | ... |
@@ -53,7 +53,7 @@ body{
|
| 53 | 53 |
<span class="icon-bar"></span> |
| 54 | 54 |
<span class="icon-bar"></span> |
| 55 | 55 |
</button> |
| 56 |
- <a class="navbar-brand" href="index.html">MyCo</a> |
|
| 56 |
+ <a class="navbar-brand">MyCo</a> |
|
| 57 | 57 |
</div> |
| 58 | 58 |
<div class="collapse navbar-collapse" id="navbar-groupe-collapse"> |
| 59 | 59 |
<ul class="nav navbar-nav"> |
| ... | ... |
@@ -287,9 +287,9 @@ body{
|
| 287 | 287 |
|
| 288 | 288 |
</div> |
| 289 | 289 |
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) --> |
| 290 |
- <script src="https://code.jquery.com/jquery.js"></script> |
|
| 290 |
+ <script src="inc/lib/jquery-1.10.2.min.js"></script> |
|
| 291 | 291 |
<!-- Latest compiled and minified JavaScript --> |
| 292 |
- <script src="https://netdna.bootstrapcdn.com/bootstrap/3.0.3/js/bootstrap.min.js"></script> |
|
| 292 |
+ <script src="inc/lib/bootstrap/js/bootstrap.min.js"></script> |
|
| 293 | 293 |
<script src="inc/lib/moment.min.js"></script> |
| 294 | 294 |
<script src="inc/myco_objects.js"></script> |
| 295 | 295 |
<script src="inc/myco_confirm.js"></script> |
| ... | ... |
@@ -1,17 +0,0 @@ |
| 1 |
-CACHE MANIFEST |
|
| 2 |
- |
|
| 3 |
-favicon.png |
|
| 4 |
-inc/myco.js |
|
| 5 |
-inc/myco_confirm.js |
|
| 6 |
-inc/myco_objects.js |
|
| 7 |
-inc/lib/moment.min.js |
|
| 8 |
- |
|
| 9 |
-https://netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css |
|
| 10 |
-https://netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap-theme.min.css |
|
| 11 |
- |
|
| 12 |
-https://code.jquery.com/jquery.js |
|
| 13 |
-https://netdna.bootstrapcdn.com/bootstrap/3.0.3/js/bootstrap.min.js |
|
| 14 |
- |
|
| 15 |
-# For IE |
|
| 16 |
-https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js |
|
| 17 |
-https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js |
|
| 18 | 0 |