#0 feature - Upgrade to Bootstrap 3.1 and jQuery 1.11.0
1 files deleted
6 files added
12 files modified
| .. | .. |
|---|
| 1 | 1 | package net.curisit.securis.db; |
|---|
| 2 | 2 | |
|---|
| 3 | 3 | import java.io.Serializable; |
|---|
| 4 | +import java.util.Arrays; |
|---|
| 4 | 5 | import java.util.Date; |
|---|
| 5 | 6 | import java.util.List; |
|---|
| 7 | +import java.util.Map; |
|---|
| 6 | 8 | |
|---|
| 7 | 9 | import javax.persistence.Column; |
|---|
| 8 | 10 | import javax.persistence.Entity; |
|---|
| .. | .. |
|---|
| 15 | 17 | import javax.persistence.NamedQuery; |
|---|
| 16 | 18 | import javax.persistence.OneToMany; |
|---|
| 17 | 19 | import javax.persistence.Table; |
|---|
| 20 | + |
|---|
| 21 | +import net.curisit.integrity.commons.Utils; |
|---|
| 18 | 22 | |
|---|
| 19 | 23 | import org.codehaus.jackson.annotate.JsonAutoDetect; |
|---|
| 20 | 24 | import org.codehaus.jackson.annotate.JsonIgnore; |
|---|
| .. | .. |
|---|
| 269 | 273 | this.expirationDate = expirationDate; |
|---|
| 270 | 274 | } |
|---|
| 271 | 275 | |
|---|
| 276 | + public static class Action { |
|---|
| 277 | + public static final int CREATE = 1; |
|---|
| 278 | + public static final int REQUEST = 2; |
|---|
| 279 | + public static final int ACTIVATION = 3; |
|---|
| 280 | + public static final int SEND = 4; |
|---|
| 281 | + public static final int DOWNLOAD = 5; |
|---|
| 282 | + public static final int CANCEL = 6; |
|---|
| 283 | + public static final int DELETE = 7; |
|---|
| 284 | + } |
|---|
| 285 | + |
|---|
| 272 | 286 | public static class Status { |
|---|
| 273 | | - public static final int CREATED = 0; |
|---|
| 274 | | - public static final int SENT = 1; |
|---|
| 275 | | - public static final int ACTIVE = 2; |
|---|
| 276 | | - public static final int CANCELED = 3; |
|---|
| 287 | + public static final int CREATED = 1; |
|---|
| 288 | + public static final int REQUESTED = 2; |
|---|
| 289 | + public static final int PREACTIVE = 3; |
|---|
| 290 | + public static final int ACTIVE = 4; |
|---|
| 291 | + public static final int EXPIRED = 5; |
|---|
| 292 | + public static final int CANCELED = 6; |
|---|
| 293 | + public static final int DELETED = 7; |
|---|
| 294 | + |
|---|
| 295 | + private static final Map<Integer, List<Integer>> transitions = Utils.createMap( // |
|---|
| 296 | + Action.REQUEST, Arrays.asList(CREATED, REQUESTED), // |
|---|
| 297 | + Action.ACTIVATION, Arrays.asList(REQUESTED, PREACTIVE, EXPIRED), // |
|---|
| 298 | + Action.SEND, Arrays.asList(ACTIVE, PREACTIVE), // |
|---|
| 299 | + Action.DOWNLOAD, Arrays.asList(ACTIVE, PREACTIVE), // |
|---|
| 300 | + Action.CANCEL, Arrays.asList(ACTIVE, PREACTIVE, REQUESTED, EXPIRED), // |
|---|
| 301 | + Action.DELETE, Arrays.asList(CANCELED, CREATED) // |
|---|
| 302 | + |
|---|
| 303 | + ); |
|---|
| 304 | + |
|---|
| 305 | + /** |
|---|
| 306 | + * It checks if a given action is valid for the License, passing the action and the current license status |
|---|
| 307 | + * |
|---|
| 308 | + * @param oldStatus |
|---|
| 309 | + * @param newStatus |
|---|
| 310 | + * @return |
|---|
| 311 | + */ |
|---|
| 312 | + public static boolean isActionValid(Integer action, Integer currentStatus) { |
|---|
| 313 | + List<Integer> validStatuses = transitions.get(currentStatus); |
|---|
| 314 | + |
|---|
| 315 | + return validStatuses != null && validStatuses.contains(currentStatus); |
|---|
| 316 | + } |
|---|
| 277 | 317 | } |
|---|
| 278 | 318 | } |
|---|
| .. | .. |
|---|
| 125 | 125 | log.error("License with id {} has not license file generated", licId, bsc.getUserPrincipal()); |
|---|
| 126 | 126 | throw new SeCurisServiceException(Status.FORBIDDEN.getStatusCode(), "License has not contain data to generate license file"); |
|---|
| 127 | 127 | } |
|---|
| 128 | | - if (lic.getStatus() != License.Status.ACTIVE) { |
|---|
| 128 | + if (License.Status.isActionValid(License.Action.DOWNLOAD, lic.getStatus())) { |
|---|
| 129 | 129 | log.error("License with id {} is not active, so It can not downloaded", licId, bsc.getUserPrincipal()); |
|---|
| 130 | 130 | throw new SeCurisServiceException(Status.FORBIDDEN.getStatusCode(), "License is not active, so It can not be downloaded"); |
|---|
| 131 | 131 | } |
|---|
| .. | .. |
|---|
| 145 | 145 | EntityManager em = emProvider.get(); |
|---|
| 146 | 146 | License lic = getCurrentLicense(licId, bsc, em); |
|---|
| 147 | 147 | |
|---|
| 148 | | - User user = getUser(bsc.getUserPrincipal().getName(), em); |
|---|
| 148 | + if (License.Status.isActionValid(License.Action.ACTIVATION, lic.getStatus())) { |
|---|
| 149 | + log.error("License with id {} can not be activated from current license status", licId); |
|---|
| 150 | + throw new SeCurisServiceException(Status.FORBIDDEN.getStatusCode(), "License with id " + licId + " can not be activated from the current license status"); |
|---|
| 151 | + } |
|---|
| 149 | 152 | |
|---|
| 150 | 153 | lic.setStatus(License.Status.ACTIVE); |
|---|
| 151 | 154 | lic.setModificationTimestamp(new Date()); |
|---|
| 152 | 155 | em.persist(lic); |
|---|
| 156 | + User user = getUser(bsc.getUserPrincipal().getName(), em); |
|---|
| 153 | 157 | em.persist(createLicenseHistoryAction(lic, user, LicenseHistory.Actions.ACTIVATE)); |
|---|
| 154 | 158 | return Response.ok(lic).build(); |
|---|
| 155 | 159 | } |
|---|
| .. | .. |
|---|
| 188 | 192 | EntityManager em = emProvider.get(); |
|---|
| 189 | 193 | License lic = getCurrentLicense(licId, bsc, em); |
|---|
| 190 | 194 | |
|---|
| 191 | | - User user = getUser(bsc.getUserPrincipal().getName(), em); |
|---|
| 195 | + if (License.Status.isActionValid(License.Action.CANCEL, lic.getStatus())) { |
|---|
| 196 | + log.error("License with id {} can not be canceled from current license status", licId); |
|---|
| 197 | + throw new SeCurisServiceException(Status.FORBIDDEN.getStatusCode(), "License with id " + licId + " can not be canceled from the current license status"); |
|---|
| 198 | + } |
|---|
| 192 | 199 | |
|---|
| 193 | 200 | lic.setStatus(License.Status.CANCELED); |
|---|
| 194 | 201 | lic.setModificationTimestamp(new Date()); |
|---|
| 195 | 202 | em.persist(lic); |
|---|
| 203 | + |
|---|
| 204 | + User user = getUser(bsc.getUserPrincipal().getName(), em); |
|---|
| 196 | 205 | em.persist(createLicenseHistoryAction(lic, user, LicenseHistory.Actions.CANCEL)); |
|---|
| 197 | 206 | return Response.ok(lic).build(); |
|---|
| 198 | 207 | } |
|---|
| .. | .. |
|---|
| 1 | +/*! |
|---|
| 2 | + * Bootstrap v3.1.0 (http://getbootstrap.com) |
|---|
| 3 | + * Copyright 2011-2014 Twitter, Inc. |
|---|
| 4 | + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) |
|---|
| 5 | + */ |
|---|
| 6 | + |
|---|
| 1 | 7 | .btn-default, |
|---|
| 2 | 8 | .btn-primary, |
|---|
| 3 | 9 | .btn-success, |
|---|
| 4 | 10 | .btn-info, |
|---|
| 5 | 11 | .btn-warning, |
|---|
| 6 | 12 | .btn-danger { |
|---|
| 7 | | - text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2); |
|---|
| 8 | | - -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075); |
|---|
| 9 | | - box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075); |
|---|
| 13 | + text-shadow: 0 -1px 0 rgba(0, 0, 0, .2); |
|---|
| 14 | + -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075); |
|---|
| 15 | + box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075); |
|---|
| 10 | 16 | } |
|---|
| 11 | | - |
|---|
| 12 | 17 | .btn-default:active, |
|---|
| 13 | 18 | .btn-primary:active, |
|---|
| 14 | 19 | .btn-success:active, |
|---|
| .. | .. |
|---|
| 21 | 26 | .btn-info.active, |
|---|
| 22 | 27 | .btn-warning.active, |
|---|
| 23 | 28 | .btn-danger.active { |
|---|
| 24 | | - -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); |
|---|
| 25 | | - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); |
|---|
| 29 | + -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); |
|---|
| 30 | + box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); |
|---|
| 26 | 31 | } |
|---|
| 27 | | - |
|---|
| 28 | 32 | .btn:active, |
|---|
| 29 | 33 | .btn.active { |
|---|
| 30 | 34 | background-image: none; |
|---|
| 31 | 35 | } |
|---|
| 32 | | - |
|---|
| 33 | 36 | .btn-default { |
|---|
| 34 | 37 | text-shadow: 0 1px 0 #fff; |
|---|
| 35 | | - background-image: -webkit-gradient(linear, left 0%, left 100%, from(#ffffff), to(#e6e6e6)); |
|---|
| 36 | | - background-image: -webkit-linear-gradient(top, #ffffff, 0%, #e6e6e6, 100%); |
|---|
| 37 | | - background-image: -moz-linear-gradient(top, #ffffff 0%, #e6e6e6 100%); |
|---|
| 38 | | - background-image: linear-gradient(to bottom, #ffffff 0%, #e6e6e6 100%); |
|---|
| 38 | + background-image: -webkit-linear-gradient(top, #fff 0%, #e0e0e0 100%); |
|---|
| 39 | + background-image: linear-gradient(to bottom, #fff 0%, #e0e0e0 100%); |
|---|
| 40 | + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0); |
|---|
| 41 | + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); |
|---|
| 39 | 42 | background-repeat: repeat-x; |
|---|
| 40 | | - border-color: #e0e0e0; |
|---|
| 43 | + border-color: #dbdbdb; |
|---|
| 41 | 44 | border-color: #ccc; |
|---|
| 42 | | - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0); |
|---|
| 43 | 45 | } |
|---|
| 44 | | - |
|---|
| 46 | +.btn-default:hover, |
|---|
| 47 | +.btn-default:focus { |
|---|
| 48 | + background-color: #e0e0e0; |
|---|
| 49 | + background-position: 0 -15px; |
|---|
| 50 | +} |
|---|
| 45 | 51 | .btn-default:active, |
|---|
| 46 | 52 | .btn-default.active { |
|---|
| 47 | | - background-color: #e6e6e6; |
|---|
| 48 | | - border-color: #e0e0e0; |
|---|
| 53 | + background-color: #e0e0e0; |
|---|
| 54 | + border-color: #dbdbdb; |
|---|
| 49 | 55 | } |
|---|
| 50 | | - |
|---|
| 51 | 56 | .btn-primary { |
|---|
| 52 | | - background-image: -webkit-gradient(linear, left 0%, left 100%, from(#428bca), to(#3071a9)); |
|---|
| 53 | | - background-image: -webkit-linear-gradient(top, #428bca, 0%, #3071a9, 100%); |
|---|
| 54 | | - background-image: -moz-linear-gradient(top, #428bca 0%, #3071a9 100%); |
|---|
| 55 | | - background-image: linear-gradient(to bottom, #428bca 0%, #3071a9 100%); |
|---|
| 57 | + background-image: -webkit-linear-gradient(top, #428bca 0%, #2d6ca2 100%); |
|---|
| 58 | + background-image: linear-gradient(to bottom, #428bca 0%, #2d6ca2 100%); |
|---|
| 59 | + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff2d6ca2', GradientType=0); |
|---|
| 60 | + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); |
|---|
| 56 | 61 | background-repeat: repeat-x; |
|---|
| 57 | | - border-color: #2d6ca2; |
|---|
| 58 | | - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff3071a9', GradientType=0); |
|---|
| 62 | + border-color: #2b669a; |
|---|
| 59 | 63 | } |
|---|
| 60 | | - |
|---|
| 64 | +.btn-primary:hover, |
|---|
| 65 | +.btn-primary:focus { |
|---|
| 66 | + background-color: #2d6ca2; |
|---|
| 67 | + background-position: 0 -15px; |
|---|
| 68 | +} |
|---|
| 61 | 69 | .btn-primary:active, |
|---|
| 62 | 70 | .btn-primary.active { |
|---|
| 63 | | - background-color: #3071a9; |
|---|
| 64 | | - border-color: #2d6ca2; |
|---|
| 71 | + background-color: #2d6ca2; |
|---|
| 72 | + border-color: #2b669a; |
|---|
| 65 | 73 | } |
|---|
| 66 | | - |
|---|
| 67 | 74 | .btn-success { |
|---|
| 68 | | - background-image: -webkit-gradient(linear, left 0%, left 100%, from(#5cb85c), to(#449d44)); |
|---|
| 69 | | - background-image: -webkit-linear-gradient(top, #5cb85c, 0%, #449d44, 100%); |
|---|
| 70 | | - background-image: -moz-linear-gradient(top, #5cb85c 0%, #449d44 100%); |
|---|
| 71 | | - background-image: linear-gradient(to bottom, #5cb85c 0%, #449d44 100%); |
|---|
| 75 | + background-image: -webkit-linear-gradient(top, #5cb85c 0%, #419641 100%); |
|---|
| 76 | + background-image: linear-gradient(to bottom, #5cb85c 0%, #419641 100%); |
|---|
| 77 | + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0); |
|---|
| 78 | + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); |
|---|
| 72 | 79 | background-repeat: repeat-x; |
|---|
| 73 | | - border-color: #419641; |
|---|
| 74 | | - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0); |
|---|
| 80 | + border-color: #3e8f3e; |
|---|
| 75 | 81 | } |
|---|
| 76 | | - |
|---|
| 82 | +.btn-success:hover, |
|---|
| 83 | +.btn-success:focus { |
|---|
| 84 | + background-color: #419641; |
|---|
| 85 | + background-position: 0 -15px; |
|---|
| 86 | +} |
|---|
| 77 | 87 | .btn-success:active, |
|---|
| 78 | 88 | .btn-success.active { |
|---|
| 79 | | - background-color: #449d44; |
|---|
| 80 | | - border-color: #419641; |
|---|
| 89 | + background-color: #419641; |
|---|
| 90 | + border-color: #3e8f3e; |
|---|
| 81 | 91 | } |
|---|
| 82 | | - |
|---|
| 83 | | -.btn-warning { |
|---|
| 84 | | - background-image: -webkit-gradient(linear, left 0%, left 100%, from(#f0ad4e), to(#ec971f)); |
|---|
| 85 | | - background-image: -webkit-linear-gradient(top, #f0ad4e, 0%, #ec971f, 100%); |
|---|
| 86 | | - background-image: -moz-linear-gradient(top, #f0ad4e 0%, #ec971f 100%); |
|---|
| 87 | | - background-image: linear-gradient(to bottom, #f0ad4e 0%, #ec971f 100%); |
|---|
| 88 | | - background-repeat: repeat-x; |
|---|
| 89 | | - border-color: #eb9316; |
|---|
| 90 | | - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0); |
|---|
| 91 | | -} |
|---|
| 92 | | - |
|---|
| 93 | | -.btn-warning:active, |
|---|
| 94 | | -.btn-warning.active { |
|---|
| 95 | | - background-color: #ec971f; |
|---|
| 96 | | - border-color: #eb9316; |
|---|
| 97 | | -} |
|---|
| 98 | | - |
|---|
| 99 | | -.btn-danger { |
|---|
| 100 | | - background-image: -webkit-gradient(linear, left 0%, left 100%, from(#d9534f), to(#c9302c)); |
|---|
| 101 | | - background-image: -webkit-linear-gradient(top, #d9534f, 0%, #c9302c, 100%); |
|---|
| 102 | | - background-image: -moz-linear-gradient(top, #d9534f 0%, #c9302c 100%); |
|---|
| 103 | | - background-image: linear-gradient(to bottom, #d9534f 0%, #c9302c 100%); |
|---|
| 104 | | - background-repeat: repeat-x; |
|---|
| 105 | | - border-color: #c12e2a; |
|---|
| 106 | | - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0); |
|---|
| 107 | | -} |
|---|
| 108 | | - |
|---|
| 109 | | -.btn-danger:active, |
|---|
| 110 | | -.btn-danger.active { |
|---|
| 111 | | - background-color: #c9302c; |
|---|
| 112 | | - border-color: #c12e2a; |
|---|
| 113 | | -} |
|---|
| 114 | | - |
|---|
| 115 | 92 | .btn-info { |
|---|
| 116 | | - background-image: -webkit-gradient(linear, left 0%, left 100%, from(#5bc0de), to(#31b0d5)); |
|---|
| 117 | | - background-image: -webkit-linear-gradient(top, #5bc0de, 0%, #31b0d5, 100%); |
|---|
| 118 | | - background-image: -moz-linear-gradient(top, #5bc0de 0%, #31b0d5 100%); |
|---|
| 119 | | - background-image: linear-gradient(to bottom, #5bc0de 0%, #31b0d5 100%); |
|---|
| 93 | + background-image: -webkit-linear-gradient(top, #5bc0de 0%, #2aabd2 100%); |
|---|
| 94 | + background-image: linear-gradient(to bottom, #5bc0de 0%, #2aabd2 100%); |
|---|
| 95 | + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0); |
|---|
| 96 | + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); |
|---|
| 120 | 97 | background-repeat: repeat-x; |
|---|
| 121 | | - border-color: #2aabd2; |
|---|
| 122 | | - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0); |
|---|
| 98 | + border-color: #28a4c9; |
|---|
| 123 | 99 | } |
|---|
| 124 | | - |
|---|
| 100 | +.btn-info:hover, |
|---|
| 101 | +.btn-info:focus { |
|---|
| 102 | + background-color: #2aabd2; |
|---|
| 103 | + background-position: 0 -15px; |
|---|
| 104 | +} |
|---|
| 125 | 105 | .btn-info:active, |
|---|
| 126 | 106 | .btn-info.active { |
|---|
| 127 | | - background-color: #31b0d5; |
|---|
| 128 | | - border-color: #2aabd2; |
|---|
| 107 | + background-color: #2aabd2; |
|---|
| 108 | + border-color: #28a4c9; |
|---|
| 129 | 109 | } |
|---|
| 130 | | - |
|---|
| 110 | +.btn-warning { |
|---|
| 111 | + background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #eb9316 100%); |
|---|
| 112 | + background-image: linear-gradient(to bottom, #f0ad4e 0%, #eb9316 100%); |
|---|
| 113 | + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0); |
|---|
| 114 | + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); |
|---|
| 115 | + background-repeat: repeat-x; |
|---|
| 116 | + border-color: #e38d13; |
|---|
| 117 | +} |
|---|
| 118 | +.btn-warning:hover, |
|---|
| 119 | +.btn-warning:focus { |
|---|
| 120 | + background-color: #eb9316; |
|---|
| 121 | + background-position: 0 -15px; |
|---|
| 122 | +} |
|---|
| 123 | +.btn-warning:active, |
|---|
| 124 | +.btn-warning.active { |
|---|
| 125 | + background-color: #eb9316; |
|---|
| 126 | + border-color: #e38d13; |
|---|
| 127 | +} |
|---|
| 128 | +.btn-danger { |
|---|
| 129 | + background-image: -webkit-linear-gradient(top, #d9534f 0%, #c12e2a 100%); |
|---|
| 130 | + background-image: linear-gradient(to bottom, #d9534f 0%, #c12e2a 100%); |
|---|
| 131 | + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0); |
|---|
| 132 | + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); |
|---|
| 133 | + background-repeat: repeat-x; |
|---|
| 134 | + border-color: #b92c28; |
|---|
| 135 | +} |
|---|
| 136 | +.btn-danger:hover, |
|---|
| 137 | +.btn-danger:focus { |
|---|
| 138 | + background-color: #c12e2a; |
|---|
| 139 | + background-position: 0 -15px; |
|---|
| 140 | +} |
|---|
| 141 | +.btn-danger:active, |
|---|
| 142 | +.btn-danger.active { |
|---|
| 143 | + background-color: #c12e2a; |
|---|
| 144 | + border-color: #b92c28; |
|---|
| 145 | +} |
|---|
| 131 | 146 | .thumbnail, |
|---|
| 132 | 147 | .img-thumbnail { |
|---|
| 133 | | - -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075); |
|---|
| 134 | | - box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075); |
|---|
| 148 | + -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .075); |
|---|
| 149 | + box-shadow: 0 1px 2px rgba(0, 0, 0, .075); |
|---|
| 135 | 150 | } |
|---|
| 136 | | - |
|---|
| 137 | 151 | .dropdown-menu > li > a:hover, |
|---|
| 138 | | -.dropdown-menu > li > a:focus, |
|---|
| 152 | +.dropdown-menu > li > a:focus { |
|---|
| 153 | + background-color: #e8e8e8; |
|---|
| 154 | + background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%); |
|---|
| 155 | + background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%); |
|---|
| 156 | + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0); |
|---|
| 157 | + background-repeat: repeat-x; |
|---|
| 158 | +} |
|---|
| 139 | 159 | .dropdown-menu > .active > a, |
|---|
| 140 | 160 | .dropdown-menu > .active > a:hover, |
|---|
| 141 | 161 | .dropdown-menu > .active > a:focus { |
|---|
| 142 | 162 | background-color: #357ebd; |
|---|
| 143 | | - background-image: -webkit-gradient(linear, left 0%, left 100%, from(#428bca), to(#357ebd)); |
|---|
| 144 | | - background-image: -webkit-linear-gradient(top, #428bca, 0%, #357ebd, 100%); |
|---|
| 145 | | - background-image: -moz-linear-gradient(top, #428bca 0%, #357ebd 100%); |
|---|
| 146 | | - background-image: linear-gradient(to bottom, #428bca 0%, #357ebd 100%); |
|---|
| 147 | | - background-repeat: repeat-x; |
|---|
| 163 | + background-image: -webkit-linear-gradient(top, #428bca 0%, #357ebd 100%); |
|---|
| 164 | + background-image: linear-gradient(to bottom, #428bca 0%, #357ebd 100%); |
|---|
| 148 | 165 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff357ebd', GradientType=0); |
|---|
| 166 | + background-repeat: repeat-x; |
|---|
| 149 | 167 | } |
|---|
| 150 | | - |
|---|
| 151 | | -.navbar { |
|---|
| 152 | | - background-image: -webkit-gradient(linear, left 0%, left 100%, from(#ffffff), to(#f8f8f8)); |
|---|
| 153 | | - background-image: -webkit-linear-gradient(top, #ffffff, 0%, #f8f8f8, 100%); |
|---|
| 154 | | - background-image: -moz-linear-gradient(top, #ffffff 0%, #f8f8f8 100%); |
|---|
| 155 | | - background-image: linear-gradient(to bottom, #ffffff 0%, #f8f8f8 100%); |
|---|
| 168 | +.navbar-default { |
|---|
| 169 | + background-image: -webkit-linear-gradient(top, #fff 0%, #f8f8f8 100%); |
|---|
| 170 | + background-image: linear-gradient(to bottom, #fff 0%, #f8f8f8 100%); |
|---|
| 171 | + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0); |
|---|
| 172 | + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); |
|---|
| 156 | 173 | background-repeat: repeat-x; |
|---|
| 157 | 174 | border-radius: 4px; |
|---|
| 158 | | - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0); |
|---|
| 159 | | - -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 5px rgba(0, 0, 0, 0.075); |
|---|
| 160 | | - box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 5px rgba(0, 0, 0, 0.075); |
|---|
| 175 | + -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 5px rgba(0, 0, 0, .075); |
|---|
| 176 | + box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 5px rgba(0, 0, 0, .075); |
|---|
| 161 | 177 | } |
|---|
| 162 | | - |
|---|
| 163 | | -.navbar .navbar-nav > .active > a { |
|---|
| 164 | | - background-color: #f8f8f8; |
|---|
| 178 | +.navbar-default .navbar-nav > .active > a { |
|---|
| 179 | + background-image: -webkit-linear-gradient(top, #ebebeb 0%, #f3f3f3 100%); |
|---|
| 180 | + background-image: linear-gradient(to bottom, #ebebeb 0%, #f3f3f3 100%); |
|---|
| 181 | + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff3f3f3', GradientType=0); |
|---|
| 182 | + background-repeat: repeat-x; |
|---|
| 183 | + -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, .075); |
|---|
| 184 | + box-shadow: inset 0 3px 9px rgba(0, 0, 0, .075); |
|---|
| 165 | 185 | } |
|---|
| 166 | | - |
|---|
| 167 | 186 | .navbar-brand, |
|---|
| 168 | 187 | .navbar-nav > li > a { |
|---|
| 169 | | - text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25); |
|---|
| 188 | + text-shadow: 0 1px 0 rgba(255, 255, 255, .25); |
|---|
| 170 | 189 | } |
|---|
| 171 | | - |
|---|
| 172 | 190 | .navbar-inverse { |
|---|
| 173 | | - background-image: -webkit-gradient(linear, left 0%, left 100%, from(#3c3c3c), to(#222222)); |
|---|
| 174 | | - background-image: -webkit-linear-gradient(top, #3c3c3c, 0%, #222222, 100%); |
|---|
| 175 | | - background-image: -moz-linear-gradient(top, #3c3c3c 0%, #222222 100%); |
|---|
| 176 | | - background-image: linear-gradient(to bottom, #3c3c3c 0%, #222222 100%); |
|---|
| 177 | | - background-repeat: repeat-x; |
|---|
| 191 | + background-image: -webkit-linear-gradient(top, #3c3c3c 0%, #222 100%); |
|---|
| 192 | + background-image: linear-gradient(to bottom, #3c3c3c 0%, #222 100%); |
|---|
| 178 | 193 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0); |
|---|
| 194 | + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); |
|---|
| 195 | + background-repeat: repeat-x; |
|---|
| 179 | 196 | } |
|---|
| 180 | | - |
|---|
| 181 | 197 | .navbar-inverse .navbar-nav > .active > a { |
|---|
| 182 | | - background-color: #222222; |
|---|
| 198 | + background-image: -webkit-linear-gradient(top, #222 0%, #282828 100%); |
|---|
| 199 | + background-image: linear-gradient(to bottom, #222 0%, #282828 100%); |
|---|
| 200 | + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff222222', endColorstr='#ff282828', GradientType=0); |
|---|
| 201 | + background-repeat: repeat-x; |
|---|
| 202 | + -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, .25); |
|---|
| 203 | + box-shadow: inset 0 3px 9px rgba(0, 0, 0, .25); |
|---|
| 183 | 204 | } |
|---|
| 184 | | - |
|---|
| 185 | 205 | .navbar-inverse .navbar-brand, |
|---|
| 186 | 206 | .navbar-inverse .navbar-nav > li > a { |
|---|
| 187 | | - text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); |
|---|
| 207 | + text-shadow: 0 -1px 0 rgba(0, 0, 0, .25); |
|---|
| 188 | 208 | } |
|---|
| 189 | | - |
|---|
| 190 | 209 | .navbar-static-top, |
|---|
| 191 | 210 | .navbar-fixed-top, |
|---|
| 192 | 211 | .navbar-fixed-bottom { |
|---|
| 193 | 212 | border-radius: 0; |
|---|
| 194 | 213 | } |
|---|
| 195 | | - |
|---|
| 196 | 214 | .alert { |
|---|
| 197 | | - text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2); |
|---|
| 198 | | - -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05); |
|---|
| 199 | | - box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05); |
|---|
| 215 | + text-shadow: 0 1px 0 rgba(255, 255, 255, .2); |
|---|
| 216 | + -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 1px 2px rgba(0, 0, 0, .05); |
|---|
| 217 | + box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 1px 2px rgba(0, 0, 0, .05); |
|---|
| 200 | 218 | } |
|---|
| 201 | | - |
|---|
| 202 | 219 | .alert-success { |
|---|
| 203 | | - background-image: -webkit-gradient(linear, left 0%, left 100%, from(#dff0d8), to(#c8e5bc)); |
|---|
| 204 | | - background-image: -webkit-linear-gradient(top, #dff0d8, 0%, #c8e5bc, 100%); |
|---|
| 205 | | - background-image: -moz-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%); |
|---|
| 206 | | - background-image: linear-gradient(to bottom, #dff0d8 0%, #c8e5bc 100%); |
|---|
| 220 | + background-image: -webkit-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%); |
|---|
| 221 | + background-image: linear-gradient(to bottom, #dff0d8 0%, #c8e5bc 100%); |
|---|
| 222 | + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0); |
|---|
| 207 | 223 | background-repeat: repeat-x; |
|---|
| 208 | 224 | border-color: #b2dba1; |
|---|
| 209 | | - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0); |
|---|
| 210 | 225 | } |
|---|
| 211 | | - |
|---|
| 212 | 226 | .alert-info { |
|---|
| 213 | | - background-image: -webkit-gradient(linear, left 0%, left 100%, from(#d9edf7), to(#b9def0)); |
|---|
| 214 | | - background-image: -webkit-linear-gradient(top, #d9edf7, 0%, #b9def0, 100%); |
|---|
| 215 | | - background-image: -moz-linear-gradient(top, #d9edf7 0%, #b9def0 100%); |
|---|
| 216 | | - background-image: linear-gradient(to bottom, #d9edf7 0%, #b9def0 100%); |
|---|
| 227 | + background-image: -webkit-linear-gradient(top, #d9edf7 0%, #b9def0 100%); |
|---|
| 228 | + background-image: linear-gradient(to bottom, #d9edf7 0%, #b9def0 100%); |
|---|
| 229 | + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0); |
|---|
| 217 | 230 | background-repeat: repeat-x; |
|---|
| 218 | 231 | border-color: #9acfea; |
|---|
| 219 | | - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0); |
|---|
| 220 | 232 | } |
|---|
| 221 | | - |
|---|
| 222 | 233 | .alert-warning { |
|---|
| 223 | | - background-image: -webkit-gradient(linear, left 0%, left 100%, from(#fcf8e3), to(#f8efc0)); |
|---|
| 224 | | - background-image: -webkit-linear-gradient(top, #fcf8e3, 0%, #f8efc0, 100%); |
|---|
| 225 | | - background-image: -moz-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%); |
|---|
| 226 | | - background-image: linear-gradient(to bottom, #fcf8e3 0%, #f8efc0 100%); |
|---|
| 234 | + background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%); |
|---|
| 235 | + background-image: linear-gradient(to bottom, #fcf8e3 0%, #f8efc0 100%); |
|---|
| 236 | + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0); |
|---|
| 227 | 237 | background-repeat: repeat-x; |
|---|
| 228 | 238 | border-color: #f5e79e; |
|---|
| 229 | | - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0); |
|---|
| 230 | 239 | } |
|---|
| 231 | | - |
|---|
| 232 | 240 | .alert-danger { |
|---|
| 233 | | - background-image: -webkit-gradient(linear, left 0%, left 100%, from(#f2dede), to(#e7c3c3)); |
|---|
| 234 | | - background-image: -webkit-linear-gradient(top, #f2dede, 0%, #e7c3c3, 100%); |
|---|
| 235 | | - background-image: -moz-linear-gradient(top, #f2dede 0%, #e7c3c3 100%); |
|---|
| 236 | | - background-image: linear-gradient(to bottom, #f2dede 0%, #e7c3c3 100%); |
|---|
| 241 | + background-image: -webkit-linear-gradient(top, #f2dede 0%, #e7c3c3 100%); |
|---|
| 242 | + background-image: linear-gradient(to bottom, #f2dede 0%, #e7c3c3 100%); |
|---|
| 243 | + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0); |
|---|
| 237 | 244 | background-repeat: repeat-x; |
|---|
| 238 | 245 | border-color: #dca7a7; |
|---|
| 239 | | - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0); |
|---|
| 240 | 246 | } |
|---|
| 241 | | - |
|---|
| 242 | 247 | .progress { |
|---|
| 243 | | - background-image: -webkit-gradient(linear, left 0%, left 100%, from(#ebebeb), to(#f5f5f5)); |
|---|
| 244 | | - background-image: -webkit-linear-gradient(top, #ebebeb, 0%, #f5f5f5, 100%); |
|---|
| 245 | | - background-image: -moz-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%); |
|---|
| 246 | | - background-image: linear-gradient(to bottom, #ebebeb 0%, #f5f5f5 100%); |
|---|
| 247 | | - background-repeat: repeat-x; |
|---|
| 248 | + background-image: -webkit-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%); |
|---|
| 249 | + background-image: linear-gradient(to bottom, #ebebeb 0%, #f5f5f5 100%); |
|---|
| 248 | 250 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0); |
|---|
| 251 | + background-repeat: repeat-x; |
|---|
| 249 | 252 | } |
|---|
| 250 | | - |
|---|
| 251 | 253 | .progress-bar { |
|---|
| 252 | | - background-image: -webkit-gradient(linear, left 0%, left 100%, from(#428bca), to(#3071a9)); |
|---|
| 253 | | - background-image: -webkit-linear-gradient(top, #428bca, 0%, #3071a9, 100%); |
|---|
| 254 | | - background-image: -moz-linear-gradient(top, #428bca 0%, #3071a9 100%); |
|---|
| 255 | | - background-image: linear-gradient(to bottom, #428bca 0%, #3071a9 100%); |
|---|
| 256 | | - background-repeat: repeat-x; |
|---|
| 254 | + background-image: -webkit-linear-gradient(top, #428bca 0%, #3071a9 100%); |
|---|
| 255 | + background-image: linear-gradient(to bottom, #428bca 0%, #3071a9 100%); |
|---|
| 257 | 256 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff3071a9', GradientType=0); |
|---|
| 257 | + background-repeat: repeat-x; |
|---|
| 258 | 258 | } |
|---|
| 259 | | - |
|---|
| 260 | 259 | .progress-bar-success { |
|---|
| 261 | | - background-image: -webkit-gradient(linear, left 0%, left 100%, from(#5cb85c), to(#449d44)); |
|---|
| 262 | | - background-image: -webkit-linear-gradient(top, #5cb85c, 0%, #449d44, 100%); |
|---|
| 263 | | - background-image: -moz-linear-gradient(top, #5cb85c 0%, #449d44 100%); |
|---|
| 264 | | - background-image: linear-gradient(to bottom, #5cb85c 0%, #449d44 100%); |
|---|
| 265 | | - background-repeat: repeat-x; |
|---|
| 260 | + background-image: -webkit-linear-gradient(top, #5cb85c 0%, #449d44 100%); |
|---|
| 261 | + background-image: linear-gradient(to bottom, #5cb85c 0%, #449d44 100%); |
|---|
| 266 | 262 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0); |
|---|
| 263 | + background-repeat: repeat-x; |
|---|
| 267 | 264 | } |
|---|
| 268 | | - |
|---|
| 269 | 265 | .progress-bar-info { |
|---|
| 270 | | - background-image: -webkit-gradient(linear, left 0%, left 100%, from(#5bc0de), to(#31b0d5)); |
|---|
| 271 | | - background-image: -webkit-linear-gradient(top, #5bc0de, 0%, #31b0d5, 100%); |
|---|
| 272 | | - background-image: -moz-linear-gradient(top, #5bc0de 0%, #31b0d5 100%); |
|---|
| 273 | | - background-image: linear-gradient(to bottom, #5bc0de 0%, #31b0d5 100%); |
|---|
| 274 | | - background-repeat: repeat-x; |
|---|
| 266 | + background-image: -webkit-linear-gradient(top, #5bc0de 0%, #31b0d5 100%); |
|---|
| 267 | + background-image: linear-gradient(to bottom, #5bc0de 0%, #31b0d5 100%); |
|---|
| 275 | 268 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0); |
|---|
| 269 | + background-repeat: repeat-x; |
|---|
| 276 | 270 | } |
|---|
| 277 | | - |
|---|
| 278 | 271 | .progress-bar-warning { |
|---|
| 279 | | - background-image: -webkit-gradient(linear, left 0%, left 100%, from(#f0ad4e), to(#ec971f)); |
|---|
| 280 | | - background-image: -webkit-linear-gradient(top, #f0ad4e, 0%, #ec971f, 100%); |
|---|
| 281 | | - background-image: -moz-linear-gradient(top, #f0ad4e 0%, #ec971f 100%); |
|---|
| 282 | | - background-image: linear-gradient(to bottom, #f0ad4e 0%, #ec971f 100%); |
|---|
| 283 | | - background-repeat: repeat-x; |
|---|
| 272 | + background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #ec971f 100%); |
|---|
| 273 | + background-image: linear-gradient(to bottom, #f0ad4e 0%, #ec971f 100%); |
|---|
| 284 | 274 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0); |
|---|
| 285 | | -} |
|---|
| 286 | | - |
|---|
| 287 | | -.progress-bar-danger { |
|---|
| 288 | | - background-image: -webkit-gradient(linear, left 0%, left 100%, from(#d9534f), to(#c9302c)); |
|---|
| 289 | | - background-image: -webkit-linear-gradient(top, #d9534f, 0%, #c9302c, 100%); |
|---|
| 290 | | - background-image: -moz-linear-gradient(top, #d9534f 0%, #c9302c 100%); |
|---|
| 291 | | - background-image: linear-gradient(to bottom, #d9534f 0%, #c9302c 100%); |
|---|
| 292 | 275 | background-repeat: repeat-x; |
|---|
| 293 | | - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0); |
|---|
| 294 | 276 | } |
|---|
| 295 | | - |
|---|
| 277 | +.progress-bar-danger { |
|---|
| 278 | + background-image: -webkit-linear-gradient(top, #d9534f 0%, #c9302c 100%); |
|---|
| 279 | + background-image: linear-gradient(to bottom, #d9534f 0%, #c9302c 100%); |
|---|
| 280 | + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0); |
|---|
| 281 | + background-repeat: repeat-x; |
|---|
| 282 | +} |
|---|
| 296 | 283 | .list-group { |
|---|
| 297 | 284 | border-radius: 4px; |
|---|
| 298 | | - -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075); |
|---|
| 299 | | - box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075); |
|---|
| 285 | + -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .075); |
|---|
| 286 | + box-shadow: 0 1px 2px rgba(0, 0, 0, .075); |
|---|
| 300 | 287 | } |
|---|
| 301 | | - |
|---|
| 302 | 288 | .list-group-item.active, |
|---|
| 303 | 289 | .list-group-item.active:hover, |
|---|
| 304 | 290 | .list-group-item.active:focus { |
|---|
| 305 | 291 | text-shadow: 0 -1px 0 #3071a9; |
|---|
| 306 | | - background-image: -webkit-gradient(linear, left 0%, left 100%, from(#428bca), to(#3278b3)); |
|---|
| 307 | | - background-image: -webkit-linear-gradient(top, #428bca, 0%, #3278b3, 100%); |
|---|
| 308 | | - background-image: -moz-linear-gradient(top, #428bca 0%, #3278b3 100%); |
|---|
| 309 | | - background-image: linear-gradient(to bottom, #428bca 0%, #3278b3 100%); |
|---|
| 292 | + background-image: -webkit-linear-gradient(top, #428bca 0%, #3278b3 100%); |
|---|
| 293 | + background-image: linear-gradient(to bottom, #428bca 0%, #3278b3 100%); |
|---|
| 294 | + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff3278b3', GradientType=0); |
|---|
| 310 | 295 | background-repeat: repeat-x; |
|---|
| 311 | 296 | border-color: #3278b3; |
|---|
| 312 | | - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff3278b3', GradientType=0); |
|---|
| 313 | 297 | } |
|---|
| 314 | | - |
|---|
| 315 | 298 | .panel { |
|---|
| 316 | | - -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); |
|---|
| 317 | | - box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); |
|---|
| 299 | + -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .05); |
|---|
| 300 | + box-shadow: 0 1px 2px rgba(0, 0, 0, .05); |
|---|
| 318 | 301 | } |
|---|
| 319 | | - |
|---|
| 320 | 302 | .panel-default > .panel-heading { |
|---|
| 321 | | - background-image: -webkit-gradient(linear, left 0%, left 100%, from(#f5f5f5), to(#e8e8e8)); |
|---|
| 322 | | - background-image: -webkit-linear-gradient(top, #f5f5f5, 0%, #e8e8e8, 100%); |
|---|
| 323 | | - background-image: -moz-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%); |
|---|
| 324 | | - background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%); |
|---|
| 325 | | - background-repeat: repeat-x; |
|---|
| 303 | + background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%); |
|---|
| 304 | + background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%); |
|---|
| 326 | 305 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0); |
|---|
| 306 | + background-repeat: repeat-x; |
|---|
| 327 | 307 | } |
|---|
| 328 | | - |
|---|
| 329 | 308 | .panel-primary > .panel-heading { |
|---|
| 330 | | - background-image: -webkit-gradient(linear, left 0%, left 100%, from(#428bca), to(#357ebd)); |
|---|
| 331 | | - background-image: -webkit-linear-gradient(top, #428bca, 0%, #357ebd, 100%); |
|---|
| 332 | | - background-image: -moz-linear-gradient(top, #428bca 0%, #357ebd 100%); |
|---|
| 333 | | - background-image: linear-gradient(to bottom, #428bca 0%, #357ebd 100%); |
|---|
| 334 | | - background-repeat: repeat-x; |
|---|
| 309 | + background-image: -webkit-linear-gradient(top, #428bca 0%, #357ebd 100%); |
|---|
| 310 | + background-image: linear-gradient(to bottom, #428bca 0%, #357ebd 100%); |
|---|
| 335 | 311 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff357ebd', GradientType=0); |
|---|
| 312 | + background-repeat: repeat-x; |
|---|
| 336 | 313 | } |
|---|
| 337 | | - |
|---|
| 338 | 314 | .panel-success > .panel-heading { |
|---|
| 339 | | - background-image: -webkit-gradient(linear, left 0%, left 100%, from(#dff0d8), to(#d0e9c6)); |
|---|
| 340 | | - background-image: -webkit-linear-gradient(top, #dff0d8, 0%, #d0e9c6, 100%); |
|---|
| 341 | | - background-image: -moz-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%); |
|---|
| 342 | | - background-image: linear-gradient(to bottom, #dff0d8 0%, #d0e9c6 100%); |
|---|
| 343 | | - background-repeat: repeat-x; |
|---|
| 315 | + background-image: -webkit-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%); |
|---|
| 316 | + background-image: linear-gradient(to bottom, #dff0d8 0%, #d0e9c6 100%); |
|---|
| 344 | 317 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0); |
|---|
| 318 | + background-repeat: repeat-x; |
|---|
| 345 | 319 | } |
|---|
| 346 | | - |
|---|
| 347 | 320 | .panel-info > .panel-heading { |
|---|
| 348 | | - background-image: -webkit-gradient(linear, left 0%, left 100%, from(#d9edf7), to(#c4e3f3)); |
|---|
| 349 | | - background-image: -webkit-linear-gradient(top, #d9edf7, 0%, #c4e3f3, 100%); |
|---|
| 350 | | - background-image: -moz-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%); |
|---|
| 351 | | - background-image: linear-gradient(to bottom, #d9edf7 0%, #c4e3f3 100%); |
|---|
| 352 | | - background-repeat: repeat-x; |
|---|
| 321 | + background-image: -webkit-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%); |
|---|
| 322 | + background-image: linear-gradient(to bottom, #d9edf7 0%, #c4e3f3 100%); |
|---|
| 353 | 323 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0); |
|---|
| 324 | + background-repeat: repeat-x; |
|---|
| 354 | 325 | } |
|---|
| 355 | | - |
|---|
| 356 | 326 | .panel-warning > .panel-heading { |
|---|
| 357 | | - background-image: -webkit-gradient(linear, left 0%, left 100%, from(#fcf8e3), to(#faf2cc)); |
|---|
| 358 | | - background-image: -webkit-linear-gradient(top, #fcf8e3, 0%, #faf2cc, 100%); |
|---|
| 359 | | - background-image: -moz-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%); |
|---|
| 360 | | - background-image: linear-gradient(to bottom, #fcf8e3 0%, #faf2cc 100%); |
|---|
| 361 | | - background-repeat: repeat-x; |
|---|
| 327 | + background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%); |
|---|
| 328 | + background-image: linear-gradient(to bottom, #fcf8e3 0%, #faf2cc 100%); |
|---|
| 362 | 329 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0); |
|---|
| 363 | | -} |
|---|
| 364 | | - |
|---|
| 365 | | -.panel-danger > .panel-heading { |
|---|
| 366 | | - background-image: -webkit-gradient(linear, left 0%, left 100%, from(#f2dede), to(#ebcccc)); |
|---|
| 367 | | - background-image: -webkit-linear-gradient(top, #f2dede, 0%, #ebcccc, 100%); |
|---|
| 368 | | - background-image: -moz-linear-gradient(top, #f2dede 0%, #ebcccc 100%); |
|---|
| 369 | | - background-image: linear-gradient(to bottom, #f2dede 0%, #ebcccc 100%); |
|---|
| 370 | 330 | background-repeat: repeat-x; |
|---|
| 371 | | - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0); |
|---|
| 372 | 331 | } |
|---|
| 373 | | - |
|---|
| 332 | +.panel-danger > .panel-heading { |
|---|
| 333 | + background-image: -webkit-linear-gradient(top, #f2dede 0%, #ebcccc 100%); |
|---|
| 334 | + background-image: linear-gradient(to bottom, #f2dede 0%, #ebcccc 100%); |
|---|
| 335 | + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0); |
|---|
| 336 | + background-repeat: repeat-x; |
|---|
| 337 | +} |
|---|
| 374 | 338 | .well { |
|---|
| 375 | | - background-image: -webkit-gradient(linear, left 0%, left 100%, from(#e8e8e8), to(#f5f5f5)); |
|---|
| 376 | | - background-image: -webkit-linear-gradient(top, #e8e8e8, 0%, #f5f5f5, 100%); |
|---|
| 377 | | - background-image: -moz-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%); |
|---|
| 378 | | - background-image: linear-gradient(to bottom, #e8e8e8 0%, #f5f5f5 100%); |
|---|
| 339 | + background-image: -webkit-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%); |
|---|
| 340 | + background-image: linear-gradient(to bottom, #e8e8e8 0%, #f5f5f5 100%); |
|---|
| 341 | + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0); |
|---|
| 379 | 342 | background-repeat: repeat-x; |
|---|
| 380 | 343 | border-color: #dcdcdc; |
|---|
| 381 | | - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0); |
|---|
| 382 | | - -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(255, 255, 255, 0.1); |
|---|
| 383 | | - box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(255, 255, 255, 0.1); |
|---|
| 344 | + -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, .05), 0 1px 0 rgba(255, 255, 255, .1); |
|---|
| 345 | + box-shadow: inset 0 1px 3px rgba(0, 0, 0, .05), 0 1px 0 rgba(255, 255, 255, .1); |
|---|
| 384 | 346 | } |
|---|
| 347 | +/*# sourceMappingURL=bootstrap-theme.css.map */ |
|---|
| .. | .. |
|---|
| 1 | +{"version":3,"sources":["less/theme.less","less/mixins.less"],"names":[],"mappings":"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","sourcesContent":["\n//\n// Load core variables and mixins\n// --------------------------------------------------\n\n@import \"variables.less\";\n@import \"mixins.less\";\n\n\n\n//\n// Buttons\n// --------------------------------------------------\n\n// Common styles\n.btn-default,\n.btn-primary,\n.btn-success,\n.btn-info,\n.btn-warning,\n.btn-danger {\n text-shadow: 0 -1px 0 rgba(0,0,0,.2);\n @shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 1px 1px rgba(0,0,0,.075);\n .box-shadow(@shadow);\n\n // Reset the shadow\n &:active,\n &.active {\n .box-shadow(inset 0 3px 5px rgba(0,0,0,.125));\n }\n}\n\n// Mixin for generating new styles\n.btn-styles(@btn-color: #555) {\n #gradient > .vertical(@start-color: @btn-color; @end-color: darken(@btn-color, 12%));\n .reset-filter(); // Disable gradients for IE9 because filter bleeds through rounded corners\n background-repeat: repeat-x;\n border-color: darken(@btn-color, 14%);\n\n &:hover,\n &:focus {\n background-color: darken(@btn-color, 12%);\n background-position: 0 -15px;\n }\n\n &:active,\n &.active {\n background-color: darken(@btn-color, 12%);\n border-color: darken(@btn-color, 14%);\n }\n}\n\n// Common styles\n.btn {\n // Remove the gradient for the pressed/active state\n &:active,\n &.active {\n background-image: none;\n }\n}\n\n// Apply the mixin to the buttons\n.btn-default { .btn-styles(@btn-default-bg); text-shadow: 0 1px 0 #fff; border-color: #ccc; }\n.btn-primary { .btn-styles(@btn-primary-bg); }\n.btn-success { .btn-styles(@btn-success-bg); }\n.btn-info { .btn-styles(@btn-info-bg); }\n.btn-warning { .btn-styles(@btn-warning-bg); }\n.btn-danger { .btn-styles(@btn-danger-bg); }\n\n\n\n//\n// Images\n// --------------------------------------------------\n\n.thumbnail,\n.img-thumbnail {\n .box-shadow(0 1px 2px rgba(0,0,0,.075));\n}\n\n\n\n//\n// Dropdowns\n// --------------------------------------------------\n\n.dropdown-menu > li > a:hover,\n.dropdown-menu > li > a:focus {\n #gradient > .vertical(@start-color: @dropdown-link-hover-bg; @end-color: darken(@dropdown-link-hover-bg, 5%));\n background-color: darken(@dropdown-link-hover-bg, 5%);\n}\n.dropdown-menu > .active > a,\n.dropdown-menu > .active > a:hover,\n.dropdown-menu > .active > a:focus {\n #gradient > .vertical(@start-color: @dropdown-link-active-bg; @end-color: darken(@dropdown-link-active-bg, 5%));\n background-color: darken(@dropdown-link-active-bg, 5%);\n}\n\n\n\n//\n// Navbar\n// --------------------------------------------------\n\n// Default navbar\n.navbar-default {\n #gradient > .vertical(@start-color: lighten(@navbar-default-bg, 10%); @end-color: @navbar-default-bg);\n .reset-filter(); // Remove gradient in IE<10 to fix bug where dropdowns don't get triggered\n border-radius: @navbar-border-radius;\n @shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 1px 5px rgba(0,0,0,.075);\n .box-shadow(@shadow);\n\n .navbar-nav > .active > a {\n #gradient > .vertical(@start-color: darken(@navbar-default-bg, 5%); @end-color: darken(@navbar-default-bg, 2%));\n .box-shadow(inset 0 3px 9px rgba(0,0,0,.075));\n }\n}\n.navbar-brand,\n.navbar-nav > li > a {\n text-shadow: 0 1px 0 rgba(255,255,255,.25);\n}\n\n// Inverted navbar\n.navbar-inverse {\n #gradient > .vertical(@start-color: lighten(@navbar-inverse-bg, 10%); @end-color: @navbar-inverse-bg);\n .reset-filter(); // Remove gradient in IE<10 to fix bug where dropdowns don't get triggered\n\n .navbar-nav > .active > a {\n #gradient > .vertical(@start-color: @navbar-inverse-bg; @end-color: lighten(@navbar-inverse-bg, 2.5%));\n .box-shadow(inset 0 3px 9px rgba(0,0,0,.25));\n }\n\n .navbar-brand,\n .navbar-nav > li > a {\n text-shadow: 0 -1px 0 rgba(0,0,0,.25);\n }\n}\n\n// Undo rounded corners in static and fixed navbars\n.navbar-static-top,\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n border-radius: 0;\n}\n\n\n\n//\n// Alerts\n// --------------------------------------------------\n\n// Common styles\n.alert {\n text-shadow: 0 1px 0 rgba(255,255,255,.2);\n @shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 1px 2px rgba(0,0,0,.05);\n .box-shadow(@shadow);\n}\n\n// Mixin for generating new styles\n.alert-styles(@color) {\n #gradient > .vertical(@start-color: @color; @end-color: darken(@color, 7.5%));\n border-color: darken(@color, 15%);\n}\n\n// Apply the mixin to the alerts\n.alert-success { .alert-styles(@alert-success-bg); }\n.alert-info { .alert-styles(@alert-info-bg); }\n.alert-warning { .alert-styles(@alert-warning-bg); }\n.alert-danger { .alert-styles(@alert-danger-bg); }\n\n\n\n//\n// Progress bars\n// --------------------------------------------------\n\n// Give the progress background some depth\n.progress {\n #gradient > .vertical(@start-color: darken(@progress-bg, 4%); @end-color: @progress-bg)\n}\n\n// Mixin for generating new styles\n.progress-bar-styles(@color) {\n #gradient > .vertical(@start-color: @color; @end-color: darken(@color, 10%));\n}\n\n// Apply the mixin to the progress bars\n.progress-bar { .progress-bar-styles(@progress-bar-bg); }\n.progress-bar-success { .progress-bar-styles(@progress-bar-success-bg); }\n.progress-bar-info { .progress-bar-styles(@progress-bar-info-bg); }\n.progress-bar-warning { .progress-bar-styles(@progress-bar-warning-bg); }\n.progress-bar-danger { .progress-bar-styles(@progress-bar-danger-bg); }\n\n\n\n//\n// List groups\n// --------------------------------------------------\n\n.list-group {\n border-radius: @border-radius-base;\n .box-shadow(0 1px 2px rgba(0,0,0,.075));\n}\n.list-group-item.active,\n.list-group-item.active:hover,\n.list-group-item.active:focus {\n text-shadow: 0 -1px 0 darken(@list-group-active-bg, 10%);\n #gradient > .vertical(@start-color: @list-group-active-bg; @end-color: darken(@list-group-active-bg, 7.5%));\n border-color: darken(@list-group-active-border, 7.5%);\n}\n\n\n\n//\n// Panels\n// --------------------------------------------------\n\n// Common styles\n.panel {\n .box-shadow(0 1px 2px rgba(0,0,0,.05));\n}\n\n// Mixin for generating new styles\n.panel-heading-styles(@color) {\n #gradient > .vertical(@start-color: @color; @end-color: darken(@color, 5%));\n}\n\n// Apply the mixin to the panel headings only\n.panel-default > .panel-heading { .panel-heading-styles(@panel-default-heading-bg); }\n.panel-primary > .panel-heading { .panel-heading-styles(@panel-primary-heading-bg); }\n.panel-success > .panel-heading { .panel-heading-styles(@panel-success-heading-bg); }\n.panel-info > .panel-heading { .panel-heading-styles(@panel-info-heading-bg); }\n.panel-warning > .panel-heading { .panel-heading-styles(@panel-warning-heading-bg); }\n.panel-danger > .panel-heading { .panel-heading-styles(@panel-danger-heading-bg); }\n\n\n\n//\n// Wells\n// --------------------------------------------------\n\n.well {\n #gradient > .vertical(@start-color: darken(@well-bg, 5%); @end-color: @well-bg);\n border-color: darken(@well-bg, 10%);\n @shadow: inset 0 1px 3px rgba(0,0,0,.05), 0 1px 0 rgba(255,255,255,.1);\n .box-shadow(@shadow);\n}\n","//\n// Mixins\n// --------------------------------------------------\n\n\n// Utilities\n// -------------------------\n\n// Clearfix\n// Source: http://nicolasgallagher.com/micro-clearfix-hack/\n//\n// For modern browsers\n// 1. The space content is one way to avoid an Opera bug when the\n// contenteditable attribute is included anywhere else in the document.\n// Otherwise it causes space to appear at the top and bottom of elements\n// that are clearfixed.\n// 2. The use of `table` rather than `block` is only necessary if using\n// `:before` to contain the top-margins of child elements.\n.clearfix() {\n &:before,\n &:after {\n content: \" \"; // 1\n display: table; // 2\n }\n &:after {\n clear: both;\n }\n}\n\n// WebKit-style focus\n.tab-focus() {\n // Default\n outline: thin dotted;\n // WebKit\n outline: 5px auto -webkit-focus-ring-color;\n outline-offset: -2px;\n}\n\n// Center-align a block level element\n.center-block() {\n display: block;\n margin-left: auto;\n margin-right: auto;\n}\n\n// Sizing shortcuts\n.size(@width; @height) {\n width: @width;\n height: @height;\n}\n.square(@size) {\n .size(@size; @size);\n}\n\n// Placeholder text\n.placeholder(@color: @input-color-placeholder) {\n &:-moz-placeholder { color: @color; } // Firefox 4-18\n &::-moz-placeholder { color: @color; // Firefox 19+\n opacity: 1; } // See https://github.com/twbs/bootstrap/pull/11526\n &:-ms-input-placeholder { color: @color; } // Internet Explorer 10+\n &::-webkit-input-placeholder { color: @color; } // Safari and Chrome\n}\n\n// Text overflow\n// Requires inline-block or block for proper styling\n.text-overflow() {\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n\n// CSS image replacement\n//\n// Heads up! v3 launched with with only `.hide-text()`, but per our pattern for\n// mixins being reused as classes with the same name, this doesn't hold up. As\n// of v3.0.1 we have added `.text-hide()` and deprecated `.hide-text()`. Note\n// that we cannot chain the mixins together in Less, so they are repeated.\n//\n// Source: https://github.com/h5bp/html5-boilerplate/commit/aa0396eae757\n\n// Deprecated as of v3.0.1 (will be removed in v4)\n.hide-text() {\n font: ~\"0/0\" a;\n color: transparent;\n text-shadow: none;\n background-color: transparent;\n border: 0;\n}\n// New mixin to use as of v3.0.1\n.text-hide() {\n .hide-text();\n}\n\n\n\n// CSS3 PROPERTIES\n// --------------------------------------------------\n\n// Single side border-radius\n.border-top-radius(@radius) {\n border-top-right-radius: @radius;\n border-top-left-radius: @radius;\n}\n.border-right-radius(@radius) {\n border-bottom-right-radius: @radius;\n border-top-right-radius: @radius;\n}\n.border-bottom-radius(@radius) {\n border-bottom-right-radius: @radius;\n border-bottom-left-radius: @radius;\n}\n.border-left-radius(@radius) {\n border-bottom-left-radius: @radius;\n border-top-left-radius: @radius;\n}\n\n// Drop shadows\n//\n// Note: Deprecated `.box-shadow()` as of v3.1.0 since all of Bootstrap's\n// supported browsers that have box shadow capabilities now support the\n// standard `box-shadow` property.\n.box-shadow(@shadow) {\n -webkit-box-shadow: @shadow; // iOS <4.3 & Android <4.1\n box-shadow: @shadow;\n}\n\n// Transitions\n.transition(@transition) {\n -webkit-transition: @transition;\n transition: @transition;\n}\n.transition-property(@transition-property) {\n -webkit-transition-property: @transition-property;\n transition-property: @transition-property;\n}\n.transition-delay(@transition-delay) {\n -webkit-transition-delay: @transition-delay;\n transition-delay: @transition-delay;\n}\n.transition-duration(@transition-duration) {\n -webkit-transition-duration: @transition-duration;\n transition-duration: @transition-duration;\n}\n.transition-transform(@transition) {\n -webkit-transition: -webkit-transform @transition;\n -moz-transition: -moz-transform @transition;\n -o-transition: -o-transform @transition;\n transition: transform @transition;\n}\n\n// Transformations\n.rotate(@degrees) {\n -webkit-transform: rotate(@degrees);\n -ms-transform: rotate(@degrees); // IE9 only\n transform: rotate(@degrees);\n}\n.scale(@ratio; @ratio-y...) {\n -webkit-transform: scale(@ratio, @ratio-y);\n -ms-transform: scale(@ratio, @ratio-y); // IE9 only\n transform: scale(@ratio, @ratio-y);\n}\n.translate(@x; @y) {\n -webkit-transform: translate(@x, @y);\n -ms-transform: translate(@x, @y); // IE9 only\n transform: translate(@x, @y);\n}\n.skew(@x; @y) {\n -webkit-transform: skew(@x, @y);\n -ms-transform: skewX(@x) skewY(@y); // See https://github.com/twbs/bootstrap/issues/4885; IE9+\n transform: skew(@x, @y);\n}\n.translate3d(@x; @y; @z) {\n -webkit-transform: translate3d(@x, @y, @z);\n transform: translate3d(@x, @y, @z);\n}\n\n.rotateX(@degrees) {\n -webkit-transform: rotateX(@degrees);\n -ms-transform: rotateX(@degrees); // IE9 only\n transform: rotateX(@degrees);\n}\n.rotateY(@degrees) {\n -webkit-transform: rotateY(@degrees);\n -ms-transform: rotateY(@degrees); // IE9 only\n transform: rotateY(@degrees);\n}\n.perspective(@perspective) {\n -webkit-perspective: @perspective;\n -moz-perspective: @perspective;\n perspective: @perspective;\n}\n.perspective-origin(@perspective) {\n -webkit-perspective-origin: @perspective;\n -moz-perspective-origin: @perspective;\n perspective-origin: @perspective;\n}\n.transform-origin(@origin) {\n -webkit-transform-origin: @origin;\n -moz-transform-origin: @origin;\n -ms-transform-origin: @origin; // IE9 only\n transform-origin: @origin;\n}\n\n// Animations\n.animation(@animation) {\n -webkit-animation: @animation;\n animation: @animation;\n}\n.animation-name(@name) {\n -webkit-animation-name: @name;\n animation-name: @name;\n}\n.animation-duration(@duration) {\n -webkit-animation-duration: @duration;\n animation-duration: @duration;\n}\n.animation-timing-function(@timing-function) {\n -webkit-animation-timing-function: @timing-function;\n animation-timing-function: @timing-function;\n}\n.animation-delay(@delay) {\n -webkit-animation-delay: @delay;\n animation-delay: @delay;\n}\n.animation-iteration-count(@iteration-count) {\n -webkit-animation-iteration-count: @iteration-count;\n animation-iteration-count: @iteration-count;\n}\n.animation-direction(@direction) {\n -webkit-animation-direction: @direction;\n animation-direction: @direction;\n}\n\n// Backface visibility\n// Prevent browsers from flickering when using CSS 3D transforms.\n// Default value is `visible`, but can be changed to `hidden`\n.backface-visibility(@visibility){\n -webkit-backface-visibility: @visibility;\n -moz-backface-visibility: @visibility;\n backface-visibility: @visibility;\n}\n\n// Box sizing\n.box-sizing(@boxmodel) {\n -webkit-box-sizing: @boxmodel;\n -moz-box-sizing: @boxmodel;\n box-sizing: @boxmodel;\n}\n\n// User select\n// For selecting text on the page\n.user-select(@select) {\n -webkit-user-select: @select;\n -moz-user-select: @select;\n -ms-user-select: @select; // IE10+\n -o-user-select: @select;\n user-select: @select;\n}\n\n// Resize anything\n.resizable(@direction) {\n resize: @direction; // Options: horizontal, vertical, both\n overflow: auto; // Safari fix\n}\n\n// CSS3 Content Columns\n.content-columns(@column-count; @column-gap: @grid-gutter-width) {\n -webkit-column-count: @column-count;\n -moz-column-count: @column-count;\n column-count: @column-count;\n -webkit-column-gap: @column-gap;\n -moz-column-gap: @column-gap;\n column-gap: @column-gap;\n}\n\n// Optional hyphenation\n.hyphens(@mode: auto) {\n word-wrap: break-word;\n -webkit-hyphens: @mode;\n -moz-hyphens: @mode;\n -ms-hyphens: @mode; // IE10+\n -o-hyphens: @mode;\n hyphens: @mode;\n}\n\n// Opacity\n.opacity(@opacity) {\n opacity: @opacity;\n // IE8 filter\n @opacity-ie: (@opacity * 100);\n filter: ~\"alpha(opacity=@{opacity-ie})\";\n}\n\n\n\n// GRADIENTS\n// --------------------------------------------------\n\n#gradient {\n\n // Horizontal gradient, from left to right\n //\n // Creates two color stops, start and end, by specifying a color and position for each color stop.\n // Color stops are not available in IE9 and below.\n .horizontal(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n background-image: -webkit-linear-gradient(left, color-stop(@start-color @start-percent), color-stop(@end-color @end-percent)); // Safari 5.1-6, Chrome 10+\n background-image: linear-gradient(to right, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n background-repeat: repeat-x;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down\n }\n\n // Vertical gradient, from top to bottom\n //\n // Creates two color stops, start and end, by specifying a color and position for each color stop.\n // Color stops are not available in IE9 and below.\n .vertical(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n background-image: -webkit-linear-gradient(top, @start-color @start-percent, @end-color @end-percent); // Safari 5.1-6, Chrome 10+\n background-image: linear-gradient(to bottom, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n background-repeat: repeat-x;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",argb(@start-color),argb(@end-color))); // IE9 and down\n }\n\n .directional(@start-color: #555; @end-color: #333; @deg: 45deg) {\n background-repeat: repeat-x;\n background-image: -webkit-linear-gradient(@deg, @start-color, @end-color); // Safari 5.1-6, Chrome 10+\n background-image: linear-gradient(@deg, @start-color, @end-color); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n }\n .horizontal-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n background-image: -webkit-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);\n background-image: linear-gradient(to right, @start-color, @mid-color @color-stop, @end-color);\n background-repeat: no-repeat;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n }\n .vertical-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n background-image: -webkit-linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n background-image: linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n background-repeat: no-repeat;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n }\n .radial(@inner-color: #555; @outer-color: #333) {\n background-image: -webkit-radial-gradient(circle, @inner-color, @outer-color);\n background-image: radial-gradient(circle, @inner-color, @outer-color);\n background-repeat: no-repeat;\n }\n .striped(@color: rgba(255,255,255,.15); @angle: 45deg) {\n background-image: -webkit-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n background-image: linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n }\n}\n\n// Reset filters for IE\n//\n// When you need to remove a gradient background, do not forget to use this to reset\n// the IE filter for IE9 and below.\n.reset-filter() {\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(enabled = false)\"));\n}\n\n\n\n// Retina images\n//\n// Short retina mixin for setting background-image and -size\n\n.img-retina(@file-1x; @file-2x; @width-1x; @height-1x) {\n background-image: url(\"@{file-1x}\");\n\n @media\n only screen and (-webkit-min-device-pixel-ratio: 2),\n only screen and ( min--moz-device-pixel-ratio: 2),\n only screen and ( -o-min-device-pixel-ratio: 2/1),\n only screen and ( min-device-pixel-ratio: 2),\n only screen and ( min-resolution: 192dpi),\n only screen and ( min-resolution: 2dppx) {\n background-image: url(\"@{file-2x}\");\n background-size: @width-1x @height-1x;\n }\n}\n\n\n// Responsive image\n//\n// Keep images from scaling beyond the width of their parents.\n\n.img-responsive(@display: block) {\n display: @display;\n max-width: 100%; // Part 1: Set a maximum relative to the parent\n height: auto; // Part 2: Scale the height according to the width, otherwise you get stretching\n}\n\n\n// COMPONENT MIXINS\n// --------------------------------------------------\n\n// Horizontal dividers\n// -------------------------\n// Dividers (basically an hr) within dropdowns and nav lists\n.nav-divider(@color: #e5e5e5) {\n height: 1px;\n margin: ((@line-height-computed / 2) - 1) 0;\n overflow: hidden;\n background-color: @color;\n}\n\n// Panels\n// -------------------------\n.panel-variant(@border; @heading-text-color; @heading-bg-color; @heading-border) {\n border-color: @border;\n\n & > .panel-heading {\n color: @heading-text-color;\n background-color: @heading-bg-color;\n border-color: @heading-border;\n\n + .panel-collapse .panel-body {\n border-top-color: @border;\n }\n }\n & > .panel-footer {\n + .panel-collapse .panel-body {\n border-bottom-color: @border;\n }\n }\n}\n\n// Alerts\n// -------------------------\n.alert-variant(@background; @border; @text-color) {\n background-color: @background;\n border-color: @border;\n color: @text-color;\n\n hr {\n border-top-color: darken(@border, 5%);\n }\n .alert-link {\n color: darken(@text-color, 10%);\n }\n}\n\n// Tables\n// -------------------------\n.table-row-variant(@state; @background) {\n // Exact selectors below required to override `.table-striped` and prevent\n // inheritance to nested tables.\n .table > thead > tr,\n .table > tbody > tr,\n .table > tfoot > tr {\n > td.@{state},\n > th.@{state},\n &.@{state} > td,\n &.@{state} > th {\n background-color: @background;\n }\n }\n\n // Hover states for `.table-hover`\n // Note: this is not available for cells or rows within `thead` or `tfoot`.\n .table-hover > tbody > tr {\n > td.@{state}:hover,\n > th.@{state}:hover,\n &.@{state}:hover > td,\n &.@{state}:hover > th {\n background-color: darken(@background, 5%);\n }\n }\n}\n\n// List Groups\n// -------------------------\n.list-group-item-variant(@state; @background; @color) {\n .list-group-item-@{state} {\n color: @color;\n background-color: @background;\n\n a& {\n color: @color;\n\n .list-group-item-heading { color: inherit; }\n\n &:hover,\n &:focus {\n color: @color;\n background-color: darken(@background, 5%);\n }\n &.active,\n &.active:hover,\n &.active:focus {\n color: #fff;\n background-color: @color;\n border-color: @color;\n }\n }\n }\n}\n\n// Button variants\n// -------------------------\n// Easily pump out default styles, as well as :hover, :focus, :active,\n// and disabled options for all buttons\n.button-variant(@color; @background; @border) {\n color: @color;\n background-color: @background;\n border-color: @border;\n\n &:hover,\n &:focus,\n &:active,\n &.active,\n .open .dropdown-toggle& {\n color: @color;\n background-color: darken(@background, 8%);\n border-color: darken(@border, 12%);\n }\n &:active,\n &.active,\n .open .dropdown-toggle& {\n background-image: none;\n }\n &.disabled,\n &[disabled],\n fieldset[disabled] & {\n &,\n &:hover,\n &:focus,\n &:active,\n &.active {\n background-color: @background;\n border-color: @border;\n }\n }\n\n .badge {\n color: @background;\n background-color: @color;\n }\n}\n\n// Button sizes\n// -------------------------\n.button-size(@padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {\n padding: @padding-vertical @padding-horizontal;\n font-size: @font-size;\n line-height: @line-height;\n border-radius: @border-radius;\n}\n\n// Pagination\n// -------------------------\n.pagination-size(@padding-vertical; @padding-horizontal; @font-size; @border-radius) {\n > li {\n > a,\n > span {\n padding: @padding-vertical @padding-horizontal;\n font-size: @font-size;\n }\n &:first-child {\n > a,\n > span {\n .border-left-radius(@border-radius);\n }\n }\n &:last-child {\n > a,\n > span {\n .border-right-radius(@border-radius);\n }\n }\n }\n}\n\n// Labels\n// -------------------------\n.label-variant(@color) {\n background-color: @color;\n &[href] {\n &:hover,\n &:focus {\n background-color: darken(@color, 10%);\n }\n }\n}\n\n// Contextual backgrounds\n// -------------------------\n.bg-variant(@color) {\n background-color: @color;\n a&:hover {\n background-color: darken(@color, 10%);\n }\n}\n\n// Typography\n// -------------------------\n.text-emphasis-variant(@color) {\n color: @color;\n a&:hover {\n color: darken(@color, 10%);\n }\n}\n\n// Navbar vertical align\n// -------------------------\n// Vertically center elements in the navbar.\n// Example: an element has a height of 30px, so write out `.navbar-vertical-align(30px);` to calculate the appropriate top margin.\n.navbar-vertical-align(@element-height) {\n margin-top: ((@navbar-height - @element-height) / 2);\n margin-bottom: ((@navbar-height - @element-height) / 2);\n}\n\n// Progress bars\n// -------------------------\n.progress-bar-variant(@color) {\n background-color: @color;\n .progress-striped & {\n #gradient > .striped();\n }\n}\n\n// Responsive utilities\n// -------------------------\n// More easily include all the states for responsive-utilities.less.\n.responsive-visibility() {\n display: block !important;\n table& { display: table; }\n tr& { display: table-row !important; }\n th&,\n td& { display: table-cell !important; }\n}\n\n.responsive-invisibility() {\n &,\n tr&,\n th&,\n td& { display: none !important; }\n}\n\n\n// Grid System\n// -----------\n\n// Centered container element\n.container-fixed() {\n margin-right: auto;\n margin-left: auto;\n padding-left: (@grid-gutter-width / 2);\n padding-right: (@grid-gutter-width / 2);\n &:extend(.clearfix all);\n}\n\n// Creates a wrapper for a series of columns\n.make-row(@gutter: @grid-gutter-width) {\n margin-left: (@gutter / -2);\n margin-right: (@gutter / -2);\n &:extend(.clearfix all);\n}\n\n// Generate the extra small columns\n.make-xs-column(@columns; @gutter: @grid-gutter-width) {\n position: relative;\n float: left;\n width: percentage((@columns / @grid-columns));\n min-height: 1px;\n padding-left: (@gutter / 2);\n padding-right: (@gutter / 2);\n}\n.make-xs-column-offset(@columns) {\n @media (min-width: @screen-xs-min) {\n margin-left: percentage((@columns / @grid-columns));\n }\n}\n.make-xs-column-push(@columns) {\n @media (min-width: @screen-xs-min) {\n left: percentage((@columns / @grid-columns));\n }\n}\n.make-xs-column-pull(@columns) {\n @media (min-width: @screen-xs-min) {\n right: percentage((@columns / @grid-columns));\n }\n}\n\n\n// Generate the small columns\n.make-sm-column(@columns; @gutter: @grid-gutter-width) {\n position: relative;\n min-height: 1px;\n padding-left: (@gutter / 2);\n padding-right: (@gutter / 2);\n\n @media (min-width: @screen-sm-min) {\n float: left;\n width: percentage((@columns / @grid-columns));\n }\n}\n.make-sm-column-offset(@columns) {\n @media (min-width: @screen-sm-min) {\n margin-left: percentage((@columns / @grid-columns));\n }\n}\n.make-sm-column-push(@columns) {\n @media (min-width: @screen-sm-min) {\n left: percentage((@columns / @grid-columns));\n }\n}\n.make-sm-column-pull(@columns) {\n @media (min-width: @screen-sm-min) {\n right: percentage((@columns / @grid-columns));\n }\n}\n\n\n// Generate the medium columns\n.make-md-column(@columns; @gutter: @grid-gutter-width) {\n position: relative;\n min-height: 1px;\n padding-left: (@gutter / 2);\n padding-right: (@gutter / 2);\n\n @media (min-width: @screen-md-min) {\n float: left;\n width: percentage((@columns / @grid-columns));\n }\n}\n.make-md-column-offset(@columns) {\n @media (min-width: @screen-md-min) {\n margin-left: percentage((@columns / @grid-columns));\n }\n}\n.make-md-column-push(@columns) {\n @media (min-width: @screen-md-min) {\n left: percentage((@columns / @grid-columns));\n }\n}\n.make-md-column-pull(@columns) {\n @media (min-width: @screen-md-min) {\n right: percentage((@columns / @grid-columns));\n }\n}\n\n\n// Generate the large columns\n.make-lg-column(@columns; @gutter: @grid-gutter-width) {\n position: relative;\n min-height: 1px;\n padding-left: (@gutter / 2);\n padding-right: (@gutter / 2);\n\n @media (min-width: @screen-lg-min) {\n float: left;\n width: percentage((@columns / @grid-columns));\n }\n}\n.make-lg-column-offset(@columns) {\n @media (min-width: @screen-lg-min) {\n margin-left: percentage((@columns / @grid-columns));\n }\n}\n.make-lg-column-push(@columns) {\n @media (min-width: @screen-lg-min) {\n left: percentage((@columns / @grid-columns));\n }\n}\n.make-lg-column-pull(@columns) {\n @media (min-width: @screen-lg-min) {\n right: percentage((@columns / @grid-columns));\n }\n}\n\n\n// Framework grid generation\n//\n// Used only by Bootstrap to generate the correct number of grid classes given\n// any value of `@grid-columns`.\n\n.make-grid-columns() {\n // Common styles for all sizes of grid columns, widths 1-12\n .col(@index) when (@index = 1) { // initial\n @item: ~\".col-xs-@{index}, .col-sm-@{index}, .col-md-@{index}, .col-lg-@{index}\";\n .col((@index + 1), @item);\n }\n .col(@index, @list) when (@index =< @grid-columns) { // general; \"=<\" isn't a typo\n @item: ~\".col-xs-@{index}, .col-sm-@{index}, .col-md-@{index}, .col-lg-@{index}\";\n .col((@index + 1), ~\"@{list}, @{item}\");\n }\n .col(@index, @list) when (@index > @grid-columns) { // terminal\n @{list} {\n position: relative;\n // Prevent columns from collapsing when empty\n min-height: 1px;\n // Inner gutter via padding\n padding-left: (@grid-gutter-width / 2);\n padding-right: (@grid-gutter-width / 2);\n }\n }\n .col(1); // kickstart it\n}\n\n.make-grid-columns-float(@class) {\n .col(@index) when (@index = 1) { // initial\n @item: ~\".col-@{class}-@{index}\";\n .col((@index + 1), @item);\n }\n .col(@index, @list) when (@index =< @grid-columns) { // general\n @item: ~\".col-@{class}-@{index}\";\n .col((@index + 1), ~\"@{list}, @{item}\");\n }\n .col(@index, @list) when (@index > @grid-columns) { // terminal\n @{list} {\n float: left;\n }\n }\n .col(1); // kickstart it\n}\n\n.calc-grid(@index, @class, @type) when (@type = width) and (@index > 0) {\n .col-@{class}-@{index} {\n width: percentage((@index / @grid-columns));\n }\n}\n.calc-grid(@index, @class, @type) when (@type = push) {\n .col-@{class}-push-@{index} {\n left: percentage((@index / @grid-columns));\n }\n}\n.calc-grid(@index, @class, @type) when (@type = pull) {\n .col-@{class}-pull-@{index} {\n right: percentage((@index / @grid-columns));\n }\n}\n.calc-grid(@index, @class, @type) when (@type = offset) {\n .col-@{class}-offset-@{index} {\n margin-left: percentage((@index / @grid-columns));\n }\n}\n\n// Basic looping in LESS\n.make-grid(@index, @class, @type) when (@index >= 0) {\n .calc-grid(@index, @class, @type);\n // next iteration\n .make-grid((@index - 1), @class, @type);\n}\n\n\n// Form validation states\n//\n// Used in forms.less to generate the form validation CSS for warnings, errors,\n// and successes.\n\n.form-control-validation(@text-color: #555; @border-color: #ccc; @background-color: #f5f5f5) {\n // Color the label and help text\n .help-block,\n .control-label,\n .radio,\n .checkbox,\n .radio-inline,\n .checkbox-inline {\n color: @text-color;\n }\n // Set the border and box shadow on specific inputs to match\n .form-control {\n border-color: @border-color;\n .box-shadow(inset 0 1px 1px rgba(0,0,0,.075)); // Redeclare so transitions work\n &:focus {\n border-color: darken(@border-color, 10%);\n @shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 6px lighten(@border-color, 20%);\n .box-shadow(@shadow);\n }\n }\n // Set validation states also for addons\n .input-group-addon {\n color: @text-color;\n border-color: @border-color;\n background-color: @background-color;\n }\n // Optional feedback icon\n .form-control-feedback {\n color: @text-color;\n }\n}\n\n// Form control focus state\n//\n// Generate a customized focus state and for any input with the specified color,\n// which defaults to the `@input-focus-border` variable.\n//\n// We highly encourage you to not customize the default value, but instead use\n// this to tweak colors on an as-needed basis. This aesthetic change is based on\n// WebKit's default styles, but applicable to a wider range of browsers. Its\n// usability and accessibility should be taken into account with any change.\n//\n// Example usage: change the default blue border and shadow to white for better\n// contrast against a dark gray background.\n\n.form-control-focus(@color: @input-border-focus) {\n @color-rgba: rgba(red(@color), green(@color), blue(@color), .6);\n &:focus {\n border-color: @color;\n outline: 0;\n .box-shadow(~\"inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px @{color-rgba}\");\n }\n}\n\n// Form control sizing\n//\n// Relative text size, padding, and border-radii changes for form controls. For\n// horizontal sizing, wrap controls in the predefined grid classes. `<select>`\n// element gets special love because it's special, and that's a fact!\n\n.input-size(@input-height; @padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {\n height: @input-height;\n padding: @padding-vertical @padding-horizontal;\n font-size: @font-size;\n line-height: @line-height;\n border-radius: @border-radius;\n\n select& {\n height: @input-height;\n line-height: @input-height;\n }\n\n textarea&,\n select[multiple]& {\n height: auto;\n }\n}\n"]} |
|---|
| .. | .. |
|---|
| 1 | | -.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-gradient(linear,left 0,left 100%,from(#fff),to(#e6e6e6));background-image:-webkit-linear-gradient(top,#fff,0%,#e6e6e6,100%);background-image:-moz-linear-gradient(top,#fff 0,#e6e6e6 100%);background-image:linear-gradient(to bottom,#fff 0,#e6e6e6 100%);background-repeat:repeat-x;border-color:#e0e0e0;border-color:#ccc;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff',endColorstr='#ffe6e6e6',GradientType=0)}.btn-default:active,.btn-default.active{background-color:#e6e6e6;border-color:#e0e0e0}.btn-primary{background-image:-webkit-gradient(linear,left 0,left 100%,from(#428bca),to(#3071a9));background-image:-webkit-linear-gradient(top,#428bca,0%,#3071a9,100%);background-image:-moz-linear-gradient(top,#428bca 0,#3071a9 100%);background-image:linear-gradient(to bottom,#428bca 0,#3071a9 100%);background-repeat:repeat-x;border-color:#2d6ca2;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca',endColorstr='#ff3071a9',GradientType=0)}.btn-primary:active,.btn-primary.active{background-color:#3071a9;border-color:#2d6ca2}.btn-success{background-image:-webkit-gradient(linear,left 0,left 100%,from(#5cb85c),to(#449d44));background-image:-webkit-linear-gradient(top,#5cb85c,0%,#449d44,100%);background-image:-moz-linear-gradient(top,#5cb85c 0,#449d44 100%);background-image:linear-gradient(to bottom,#5cb85c 0,#449d44 100%);background-repeat:repeat-x;border-color:#419641;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c',endColorstr='#ff449d44',GradientType=0)}.btn-success:active,.btn-success.active{background-color:#449d44;border-color:#419641}.btn-warning{background-image:-webkit-gradient(linear,left 0,left 100%,from(#f0ad4e),to(#ec971f));background-image:-webkit-linear-gradient(top,#f0ad4e,0%,#ec971f,100%);background-image:-moz-linear-gradient(top,#f0ad4e 0,#ec971f 100%);background-image:linear-gradient(to bottom,#f0ad4e 0,#ec971f 100%);background-repeat:repeat-x;border-color:#eb9316;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e',endColorstr='#ffec971f',GradientType=0)}.btn-warning:active,.btn-warning.active{background-color:#ec971f;border-color:#eb9316}.btn-danger{background-image:-webkit-gradient(linear,left 0,left 100%,from(#d9534f),to(#c9302c));background-image:-webkit-linear-gradient(top,#d9534f,0%,#c9302c,100%);background-image:-moz-linear-gradient(top,#d9534f 0,#c9302c 100%);background-image:linear-gradient(to bottom,#d9534f 0,#c9302c 100%);background-repeat:repeat-x;border-color:#c12e2a;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f',endColorstr='#ffc9302c',GradientType=0)}.btn-danger:active,.btn-danger.active{background-color:#c9302c;border-color:#c12e2a}.btn-info{background-image:-webkit-gradient(linear,left 0,left 100%,from(#5bc0de),to(#31b0d5));background-image:-webkit-linear-gradient(top,#5bc0de,0%,#31b0d5,100%);background-image:-moz-linear-gradient(top,#5bc0de 0,#31b0d5 100%);background-image:linear-gradient(to bottom,#5bc0de 0,#31b0d5 100%);background-repeat:repeat-x;border-color:#2aabd2;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de',endColorstr='#ff31b0d5',GradientType=0)}.btn-info:active,.btn-info.active{background-color:#31b0d5;border-color:#2aabd2}.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,.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{background-color:#357ebd;background-image:-webkit-gradient(linear,left 0,left 100%,from(#428bca),to(#357ebd));background-image:-webkit-linear-gradient(top,#428bca,0%,#357ebd,100%);background-image:-moz-linear-gradient(top,#428bca 0,#357ebd 100%);background-image:linear-gradient(to bottom,#428bca 0,#357ebd 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca',endColorstr='#ff357ebd',GradientType=0)}.navbar{background-image:-webkit-gradient(linear,left 0,left 100%,from(#fff),to(#f8f8f8));background-image:-webkit-linear-gradient(top,#fff,0%,#f8f8f8,100%);background-image:-moz-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);-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 .navbar-nav>.active>a{background-color:#f8f8f8}.navbar-brand,.navbar-nav>li>a{text-shadow:0 1px 0 rgba(255,255,255,0.25)}.navbar-inverse{background-image:-webkit-gradient(linear,left 0,left 100%,from(#3c3c3c),to(#222));background-image:-webkit-linear-gradient(top,#3c3c3c,0%,#222,100%);background-image:-moz-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)}.navbar-inverse .navbar-nav>.active>a{background-color:#222}.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-gradient(linear,left 0,left 100%,from(#dff0d8),to(#c8e5bc));background-image:-webkit-linear-gradient(top,#dff0d8,0%,#c8e5bc,100%);background-image:-moz-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-gradient(linear,left 0,left 100%,from(#d9edf7),to(#b9def0));background-image:-webkit-linear-gradient(top,#d9edf7,0%,#b9def0,100%);background-image:-moz-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-gradient(linear,left 0,left 100%,from(#fcf8e3),to(#f8efc0));background-image:-webkit-linear-gradient(top,#fcf8e3,0%,#f8efc0,100%);background-image:-moz-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-gradient(linear,left 0,left 100%,from(#f2dede),to(#e7c3c3));background-image:-webkit-linear-gradient(top,#f2dede,0%,#e7c3c3,100%);background-image:-moz-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-gradient(linear,left 0,left 100%,from(#ebebeb),to(#f5f5f5));background-image:-webkit-linear-gradient(top,#ebebeb,0%,#f5f5f5,100%);background-image:-moz-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-gradient(linear,left 0,left 100%,from(#428bca),to(#3071a9));background-image:-webkit-linear-gradient(top,#428bca,0%,#3071a9,100%);background-image:-moz-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-gradient(linear,left 0,left 100%,from(#5cb85c),to(#449d44));background-image:-webkit-linear-gradient(top,#5cb85c,0%,#449d44,100%);background-image:-moz-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-gradient(linear,left 0,left 100%,from(#5bc0de),to(#31b0d5));background-image:-webkit-linear-gradient(top,#5bc0de,0%,#31b0d5,100%);background-image:-moz-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-gradient(linear,left 0,left 100%,from(#f0ad4e),to(#ec971f));background-image:-webkit-linear-gradient(top,#f0ad4e,0%,#ec971f,100%);background-image:-moz-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-gradient(linear,left 0,left 100%,from(#d9534f),to(#c9302c));background-image:-webkit-linear-gradient(top,#d9534f,0%,#c9302c,100%);background-image:-moz-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-gradient(linear,left 0,left 100%,from(#428bca),to(#3278b3));background-image:-webkit-linear-gradient(top,#428bca,0%,#3278b3,100%);background-image:-moz-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-gradient(linear,left 0,left 100%,from(#f5f5f5),to(#e8e8e8));background-image:-webkit-linear-gradient(top,#f5f5f5,0%,#e8e8e8,100%);background-image:-moz-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-gradient(linear,left 0,left 100%,from(#428bca),to(#357ebd));background-image:-webkit-linear-gradient(top,#428bca,0%,#357ebd,100%);background-image:-moz-linear-gradient(top,#428bca 0,#357ebd 100%);background-image:linear-gradient(to bottom,#428bca 0,#357ebd 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca',endColorstr='#ff357ebd',GradientType=0)}.panel-success>.panel-heading{background-image:-webkit-gradient(linear,left 0,left 100%,from(#dff0d8),to(#d0e9c6));background-image:-webkit-linear-gradient(top,#dff0d8,0%,#d0e9c6,100%);background-image:-moz-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-gradient(linear,left 0,left 100%,from(#d9edf7),to(#c4e3f3));background-image:-webkit-linear-gradient(top,#d9edf7,0%,#c4e3f3,100%);background-image:-moz-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-gradient(linear,left 0,left 100%,from(#fcf8e3),to(#faf2cc));background-image:-webkit-linear-gradient(top,#fcf8e3,0%,#faf2cc,100%);background-image:-moz-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-gradient(linear,left 0,left 100%,from(#f2dede),to(#ebcccc));background-image:-webkit-linear-gradient(top,#f2dede,0%,#ebcccc,100%);background-image:-moz-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-gradient(linear,left 0,left 100%,from(#e8e8e8),to(#f5f5f5));background-image:-webkit-linear-gradient(top,#e8e8e8,0%,#f5f5f5,100%);background-image:-moz-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)} |
|---|
| 1 | +/*! |
|---|
| 2 | + * Bootstrap v3.1.0 (http://getbootstrap.com) |
|---|
| 3 | + * Copyright 2011-2014 Twitter, Inc. |
|---|
| 4 | + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) |
|---|
| 5 | + */ |
|---|
| 6 | + |
|---|
| 7 | +.btn-default,.btn-primary,.btn-success,.btn-info,.btn-warning,.btn-danger{text-shadow:0 -1px 0 rgba(0,0,0,.2);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(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,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn:active,.btn.active{background-image:none}.btn-default{background-image:-webkit-linear-gradient(top,#fff 0,#e0e0e0 100%);background-image:linear-gradient(to bottom,#fff 0,#e0e0e0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#dbdbdb;text-shadow:0 1px 0 #fff;border-color:#ccc}.btn-default:hover,.btn-default:focus{background-color:#e0e0e0;background-position:0 -15px}.btn-default:active,.btn-default.active{background-color:#e0e0e0;border-color:#dbdbdb}.btn-primary{background-image:-webkit-linear-gradient(top,#428bca 0,#2d6ca2 100%);background-image:linear-gradient(to bottom,#428bca 0,#2d6ca2 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff2d6ca2', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#2b669a}.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%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#3e8f3e}.btn-success:hover,.btn-success:focus{background-color:#419641;background-position:0 -15px}.btn-success:active,.btn-success.active{background-color:#419641;border-color:#3e8f3e}.btn-info{background-image:-webkit-linear-gradient(top,#5bc0de 0,#2aabd2 100%);background-image:linear-gradient(to bottom,#5bc0de 0,#2aabd2 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#28a4c9}.btn-info:hover,.btn-info:focus{background-color:#2aabd2;background-position:0 -15px}.btn-info:active,.btn-info.active{background-color:#2aabd2;border-color:#28a4c9}.btn-warning{background-image:-webkit-linear-gradient(top,#f0ad4e 0,#eb9316 100%);background-image:linear-gradient(to bottom,#f0ad4e 0,#eb9316 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#e38d13}.btn-warning:hover,.btn-warning:focus{background-color:#eb9316;background-position:0 -15px}.btn-warning:active,.btn-warning.active{background-color:#eb9316;border-color:#e38d13}.btn-danger{background-image:-webkit-linear-gradient(top,#d9534f 0,#c12e2a 100%);background-image:linear-gradient(to bottom,#d9534f 0,#c12e2a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#b92c28}.btn-danger:hover,.btn-danger:focus{background-color:#c12e2a;background-position:0 -15px}.btn-danger:active,.btn-danger.active{background-color:#c12e2a;border-color:#b92c28}.thumbnail,.img-thumbnail{-webkit-box-shadow:0 1px 2px rgba(0,0,0,.075);box-shadow:0 1px 2px rgba(0,0,0,.075)}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{background-image:-webkit-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:linear-gradient(to bottom,#f5f5f5 0,#e8e8e8 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);background-color:#e8e8e8}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{background-image:-webkit-linear-gradient(top,#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);background-color:#357ebd}.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;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);border-radius:4px;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 5px rgba(0,0,0,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 5px rgba(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,.075);box-shadow:inset 0 3px 9px rgba(0,0,0,.075)}.navbar-brand,.navbar-nav>li>a{text-shadow:0 1px 0 rgba(255,255,255,.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,.25);box-shadow:inset 0 3px 9px rgba(0,0,0,.25)}.navbar-inverse .navbar-brand,.navbar-inverse .navbar-nav>li>a{text-shadow:0 -1px 0 rgba(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,.2);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 2px rgba(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;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);border-color:#b2dba1}.alert-info{background-image:-webkit-linear-gradient(top,#d9edf7 0,#b9def0 100%);background-image:linear-gradient(to bottom,#d9edf7 0,#b9def0 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0);border-color:#9acfea}.alert-warning{background-image:-webkit-linear-gradient(top,#fcf8e3 0,#f8efc0 100%);background-image:linear-gradient(to bottom,#fcf8e3 0,#f8efc0 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0);border-color:#f5e79e}.alert-danger{background-image:-webkit-linear-gradient(top,#f2dede 0,#e7c3c3 100%);background-image:linear-gradient(to bottom,#f2dede 0,#e7c3c3 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);border-color:#dca7a7}.progress{background-image:-webkit-linear-gradient(top,#ebebeb 0,#f5f5f5 100%);background-image: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,.075);box-shadow:0 1px 2px rgba(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;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff3278b3', GradientType=0);border-color:#3278b3}.panel{-webkit-box-shadow:0 1px 2px rgba(0,0,0,.05);box-shadow:0 1px 2px rgba(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;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0);border-color:#dcdcdc;-webkit-box-shadow:inset 0 1px 3px rgba(0,0,0,.05),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 3px rgba(0,0,0,.05),0 1px 0 rgba(255,255,255,.1)} |
|---|
| .. | .. |
|---|
| 1 | +/*! |
|---|
| 2 | + * Bootstrap v3.1.0 (http://getbootstrap.com) |
|---|
| 3 | + * Copyright 2011-2014 Twitter, Inc. |
|---|
| 4 | + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) |
|---|
| 5 | + */ |
|---|
| 6 | + |
|---|
| 7 | +/*! normalize.css v3.0.0 | MIT License | git.io/normalize */ |
|---|
| 8 | +html { |
|---|
| 9 | + font-family: sans-serif; |
|---|
| 10 | + -webkit-text-size-adjust: 100%; |
|---|
| 11 | + -ms-text-size-adjust: 100%; |
|---|
| 12 | +} |
|---|
| 13 | +body { |
|---|
| 14 | + margin: 0; |
|---|
| 15 | +} |
|---|
| 16 | +article, |
|---|
| 17 | +aside, |
|---|
| 18 | +details, |
|---|
| 19 | +figcaption, |
|---|
| 20 | +figure, |
|---|
| 21 | +footer, |
|---|
| 22 | +header, |
|---|
| 23 | +hgroup, |
|---|
| 24 | +main, |
|---|
| 25 | +nav, |
|---|
| 26 | +section, |
|---|
| 27 | +summary { |
|---|
| 28 | + display: block; |
|---|
| 29 | +} |
|---|
| 30 | +audio, |
|---|
| 31 | +canvas, |
|---|
| 32 | +progress, |
|---|
| 33 | +video { |
|---|
| 34 | + display: inline-block; |
|---|
| 35 | + vertical-align: baseline; |
|---|
| 36 | +} |
|---|
| 37 | +audio:not([controls]) { |
|---|
| 38 | + display: none; |
|---|
| 39 | + height: 0; |
|---|
| 40 | +} |
|---|
| 41 | +[hidden], |
|---|
| 42 | +template { |
|---|
| 43 | + display: none; |
|---|
| 44 | +} |
|---|
| 45 | +a { |
|---|
| 46 | + background: transparent; |
|---|
| 47 | +} |
|---|
| 48 | +a:active, |
|---|
| 49 | +a:hover { |
|---|
| 50 | + outline: 0; |
|---|
| 51 | +} |
|---|
| 52 | +abbr[title] { |
|---|
| 53 | + border-bottom: 1px dotted; |
|---|
| 54 | +} |
|---|
| 55 | +b, |
|---|
| 56 | +strong { |
|---|
| 57 | + font-weight: bold; |
|---|
| 58 | +} |
|---|
| 59 | +dfn { |
|---|
| 60 | + font-style: italic; |
|---|
| 61 | +} |
|---|
| 62 | +h1 { |
|---|
| 63 | + margin: .67em 0; |
|---|
| 64 | + font-size: 2em; |
|---|
| 65 | +} |
|---|
| 66 | +mark { |
|---|
| 67 | + color: #000; |
|---|
| 68 | + background: #ff0; |
|---|
| 69 | +} |
|---|
| 70 | +small { |
|---|
| 71 | + font-size: 80%; |
|---|
| 72 | +} |
|---|
| 73 | +sub, |
|---|
| 74 | +sup { |
|---|
| 75 | + position: relative; |
|---|
| 76 | + font-size: 75%; |
|---|
| 77 | + line-height: 0; |
|---|
| 78 | + vertical-align: baseline; |
|---|
| 79 | +} |
|---|
| 80 | +sup { |
|---|
| 81 | + top: -.5em; |
|---|
| 82 | +} |
|---|
| 83 | +sub { |
|---|
| 84 | + bottom: -.25em; |
|---|
| 85 | +} |
|---|
| 86 | +img { |
|---|
| 87 | + border: 0; |
|---|
| 88 | +} |
|---|
| 89 | +svg:not(:root) { |
|---|
| 90 | + overflow: hidden; |
|---|
| 91 | +} |
|---|
| 92 | +figure { |
|---|
| 93 | + margin: 1em 40px; |
|---|
| 94 | +} |
|---|
| 95 | +hr { |
|---|
| 96 | + height: 0; |
|---|
| 97 | + -moz-box-sizing: content-box; |
|---|
| 98 | + box-sizing: content-box; |
|---|
| 99 | +} |
|---|
| 100 | +pre { |
|---|
| 101 | + overflow: auto; |
|---|
| 102 | +} |
|---|
| 103 | +code, |
|---|
| 104 | +kbd, |
|---|
| 105 | +pre, |
|---|
| 106 | +samp { |
|---|
| 107 | + font-family: monospace, monospace; |
|---|
| 108 | + font-size: 1em; |
|---|
| 109 | +} |
|---|
| 110 | +button, |
|---|
| 111 | +input, |
|---|
| 112 | +optgroup, |
|---|
| 113 | +select, |
|---|
| 114 | +textarea { |
|---|
| 115 | + margin: 0; |
|---|
| 116 | + font: inherit; |
|---|
| 117 | + color: inherit; |
|---|
| 118 | +} |
|---|
| 119 | +button { |
|---|
| 120 | + overflow: visible; |
|---|
| 121 | +} |
|---|
| 122 | +button, |
|---|
| 123 | +select { |
|---|
| 124 | + text-transform: none; |
|---|
| 125 | +} |
|---|
| 126 | +button, |
|---|
| 127 | +html input[type="button"], |
|---|
| 128 | +input[type="reset"], |
|---|
| 129 | +input[type="submit"] { |
|---|
| 130 | + -webkit-appearance: button; |
|---|
| 131 | + cursor: pointer; |
|---|
| 132 | +} |
|---|
| 133 | +button[disabled], |
|---|
| 134 | +html input[disabled] { |
|---|
| 135 | + cursor: default; |
|---|
| 136 | +} |
|---|
| 137 | +button::-moz-focus-inner, |
|---|
| 138 | +input::-moz-focus-inner { |
|---|
| 139 | + padding: 0; |
|---|
| 140 | + border: 0; |
|---|
| 141 | +} |
|---|
| 142 | +input { |
|---|
| 143 | + line-height: normal; |
|---|
| 144 | +} |
|---|
| 145 | +input[type="checkbox"], |
|---|
| 146 | +input[type="radio"] { |
|---|
| 147 | + box-sizing: border-box; |
|---|
| 148 | + padding: 0; |
|---|
| 149 | +} |
|---|
| 150 | +input[type="number"]::-webkit-inner-spin-button, |
|---|
| 151 | +input[type="number"]::-webkit-outer-spin-button { |
|---|
| 152 | + height: auto; |
|---|
| 153 | +} |
|---|
| 154 | +input[type="search"] { |
|---|
| 155 | + -webkit-box-sizing: content-box; |
|---|
| 156 | + -moz-box-sizing: content-box; |
|---|
| 157 | + box-sizing: content-box; |
|---|
| 158 | + -webkit-appearance: textfield; |
|---|
| 159 | +} |
|---|
| 160 | +input[type="search"]::-webkit-search-cancel-button, |
|---|
| 161 | +input[type="search"]::-webkit-search-decoration { |
|---|
| 162 | + -webkit-appearance: none; |
|---|
| 163 | +} |
|---|
| 164 | +fieldset { |
|---|
| 165 | + padding: .35em .625em .75em; |
|---|
| 166 | + margin: 0 2px; |
|---|
| 167 | + border: 1px solid #c0c0c0; |
|---|
| 168 | +} |
|---|
| 169 | +legend { |
|---|
| 170 | + padding: 0; |
|---|
| 171 | + border: 0; |
|---|
| 172 | +} |
|---|
| 173 | +textarea { |
|---|
| 174 | + overflow: auto; |
|---|
| 175 | +} |
|---|
| 176 | +optgroup { |
|---|
| 177 | + font-weight: bold; |
|---|
| 178 | +} |
|---|
| 179 | +table { |
|---|
| 180 | + border-spacing: 0; |
|---|
| 181 | + border-collapse: collapse; |
|---|
| 182 | +} |
|---|
| 183 | +td, |
|---|
| 184 | +th { |
|---|
| 185 | + padding: 0; |
|---|
| 186 | +} |
|---|
| 187 | +@media print { |
|---|
| 188 | + * { |
|---|
| 189 | + color: #000 !important; |
|---|
| 190 | + text-shadow: none !important; |
|---|
| 191 | + background: transparent !important; |
|---|
| 192 | + box-shadow: none !important; |
|---|
| 193 | + } |
|---|
| 194 | + a, |
|---|
| 195 | + a:visited { |
|---|
| 196 | + text-decoration: underline; |
|---|
| 197 | + } |
|---|
| 198 | + a[href]:after { |
|---|
| 199 | + content: " (" attr(href) ")"; |
|---|
| 200 | + } |
|---|
| 201 | + abbr[title]:after { |
|---|
| 202 | + content: " (" attr(title) ")"; |
|---|
| 203 | + } |
|---|
| 204 | + a[href^="javascript:"]:after, |
|---|
| 205 | + a[href^="#"]:after { |
|---|
| 206 | + content: ""; |
|---|
| 207 | + } |
|---|
| 208 | + pre, |
|---|
| 209 | + blockquote { |
|---|
| 210 | + border: 1px solid #999; |
|---|
| 211 | + |
|---|
| 212 | + page-break-inside: avoid; |
|---|
| 213 | + } |
|---|
| 214 | + thead { |
|---|
| 215 | + display: table-header-group; |
|---|
| 216 | + } |
|---|
| 217 | + tr, |
|---|
| 218 | + img { |
|---|
| 219 | + page-break-inside: avoid; |
|---|
| 220 | + } |
|---|
| 221 | + img { |
|---|
| 222 | + max-width: 100% !important; |
|---|
| 223 | + } |
|---|
| 224 | + p, |
|---|
| 225 | + h2, |
|---|
| 226 | + h3 { |
|---|
| 227 | + orphans: 3; |
|---|
| 228 | + widows: 3; |
|---|
| 229 | + } |
|---|
| 230 | + h2, |
|---|
| 231 | + h3 { |
|---|
| 232 | + page-break-after: avoid; |
|---|
| 233 | + } |
|---|
| 234 | + select { |
|---|
| 235 | + background: #fff !important; |
|---|
| 236 | + } |
|---|
| 237 | + .navbar { |
|---|
| 238 | + display: none; |
|---|
| 239 | + } |
|---|
| 240 | + .table td, |
|---|
| 241 | + .table th { |
|---|
| 242 | + background-color: #fff !important; |
|---|
| 243 | + } |
|---|
| 244 | + .btn > .caret, |
|---|
| 245 | + .dropup > .btn > .caret { |
|---|
| 246 | + border-top-color: #000 !important; |
|---|
| 247 | + } |
|---|
| 248 | + .label { |
|---|
| 249 | + border: 1px solid #000; |
|---|
| 250 | + } |
|---|
| 251 | + .table { |
|---|
| 252 | + border-collapse: collapse !important; |
|---|
| 253 | + } |
|---|
| 254 | + .table-bordered th, |
|---|
| 255 | + .table-bordered td { |
|---|
| 256 | + border: 1px solid #ddd !important; |
|---|
| 257 | + } |
|---|
| 258 | +} |
|---|
| 259 | +* { |
|---|
| 260 | + -webkit-box-sizing: border-box; |
|---|
| 261 | + -moz-box-sizing: border-box; |
|---|
| 262 | + box-sizing: border-box; |
|---|
| 263 | +} |
|---|
| 264 | +*:before, |
|---|
| 265 | +*:after { |
|---|
| 266 | + -webkit-box-sizing: border-box; |
|---|
| 267 | + -moz-box-sizing: border-box; |
|---|
| 268 | + box-sizing: border-box; |
|---|
| 269 | +} |
|---|
| 270 | +html { |
|---|
| 271 | + font-size: 62.5%; |
|---|
| 272 | + |
|---|
| 273 | + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); |
|---|
| 274 | +} |
|---|
| 275 | +body { |
|---|
| 276 | + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; |
|---|
| 277 | + font-size: 14px; |
|---|
| 278 | + line-height: 1.428571429; |
|---|
| 279 | + color: #333; |
|---|
| 280 | + background-color: #fff; |
|---|
| 281 | +} |
|---|
| 282 | +input, |
|---|
| 283 | +button, |
|---|
| 284 | +select, |
|---|
| 285 | +textarea { |
|---|
| 286 | + font-family: inherit; |
|---|
| 287 | + font-size: inherit; |
|---|
| 288 | + line-height: inherit; |
|---|
| 289 | +} |
|---|
| 290 | +a { |
|---|
| 291 | + color: #428bca; |
|---|
| 292 | + text-decoration: none; |
|---|
| 293 | +} |
|---|
| 294 | +a:hover, |
|---|
| 295 | +a:focus { |
|---|
| 296 | + color: #2a6496; |
|---|
| 297 | + text-decoration: underline; |
|---|
| 298 | +} |
|---|
| 299 | +a:focus { |
|---|
| 300 | + outline: thin dotted; |
|---|
| 301 | + outline: 5px auto -webkit-focus-ring-color; |
|---|
| 302 | + outline-offset: -2px; |
|---|
| 303 | +} |
|---|
| 304 | +figure { |
|---|
| 305 | + margin: 0; |
|---|
| 306 | +} |
|---|
| 307 | +img { |
|---|
| 308 | + vertical-align: middle; |
|---|
| 309 | +} |
|---|
| 310 | +.img-responsive { |
|---|
| 311 | + display: block; |
|---|
| 312 | + max-width: 100%; |
|---|
| 313 | + height: auto; |
|---|
| 314 | +} |
|---|
| 315 | +.img-rounded { |
|---|
| 316 | + border-radius: 6px; |
|---|
| 317 | +} |
|---|
| 318 | +.img-thumbnail { |
|---|
| 319 | + display: inline-block; |
|---|
| 320 | + max-width: 100%; |
|---|
| 321 | + height: auto; |
|---|
| 322 | + padding: 4px; |
|---|
| 323 | + line-height: 1.428571429; |
|---|
| 324 | + background-color: #fff; |
|---|
| 325 | + border: 1px solid #ddd; |
|---|
| 326 | + border-radius: 4px; |
|---|
| 327 | + -webkit-transition: all .2s ease-in-out; |
|---|
| 328 | + transition: all .2s ease-in-out; |
|---|
| 329 | +} |
|---|
| 330 | +.img-circle { |
|---|
| 331 | + border-radius: 50%; |
|---|
| 332 | +} |
|---|
| 333 | +hr { |
|---|
| 334 | + margin-top: 20px; |
|---|
| 335 | + margin-bottom: 20px; |
|---|
| 336 | + border: 0; |
|---|
| 337 | + border-top: 1px solid #eee; |
|---|
| 338 | +} |
|---|
| 339 | +.sr-only { |
|---|
| 340 | + position: absolute; |
|---|
| 341 | + width: 1px; |
|---|
| 342 | + height: 1px; |
|---|
| 343 | + padding: 0; |
|---|
| 344 | + margin: -1px; |
|---|
| 345 | + overflow: hidden; |
|---|
| 346 | + clip: rect(0, 0, 0, 0); |
|---|
| 347 | + border: 0; |
|---|
| 348 | +} |
|---|
| 349 | +h1, |
|---|
| 350 | +h2, |
|---|
| 351 | +h3, |
|---|
| 352 | +h4, |
|---|
| 353 | +h5, |
|---|
| 354 | +h6, |
|---|
| 355 | +.h1, |
|---|
| 356 | +.h2, |
|---|
| 357 | +.h3, |
|---|
| 358 | +.h4, |
|---|
| 359 | +.h5, |
|---|
| 360 | +.h6 { |
|---|
| 361 | + font-family: inherit; |
|---|
| 362 | + font-weight: 500; |
|---|
| 363 | + line-height: 1.1; |
|---|
| 364 | + color: inherit; |
|---|
| 365 | +} |
|---|
| 366 | +h1 small, |
|---|
| 367 | +h2 small, |
|---|
| 368 | +h3 small, |
|---|
| 369 | +h4 small, |
|---|
| 370 | +h5 small, |
|---|
| 371 | +h6 small, |
|---|
| 372 | +.h1 small, |
|---|
| 373 | +.h2 small, |
|---|
| 374 | +.h3 small, |
|---|
| 375 | +.h4 small, |
|---|
| 376 | +.h5 small, |
|---|
| 377 | +.h6 small, |
|---|
| 378 | +h1 .small, |
|---|
| 379 | +h2 .small, |
|---|
| 380 | +h3 .small, |
|---|
| 381 | +h4 .small, |
|---|
| 382 | +h5 .small, |
|---|
| 383 | +h6 .small, |
|---|
| 384 | +.h1 .small, |
|---|
| 385 | +.h2 .small, |
|---|
| 386 | +.h3 .small, |
|---|
| 387 | +.h4 .small, |
|---|
| 388 | +.h5 .small, |
|---|
| 389 | +.h6 .small { |
|---|
| 390 | + font-weight: normal; |
|---|
| 391 | + line-height: 1; |
|---|
| 392 | + color: #999; |
|---|
| 393 | +} |
|---|
| 394 | +h1, |
|---|
| 395 | +.h1, |
|---|
| 396 | +h2, |
|---|
| 397 | +.h2, |
|---|
| 398 | +h3, |
|---|
| 399 | +.h3 { |
|---|
| 400 | + margin-top: 20px; |
|---|
| 401 | + margin-bottom: 10px; |
|---|
| 402 | +} |
|---|
| 403 | +h1 small, |
|---|
| 404 | +.h1 small, |
|---|
| 405 | +h2 small, |
|---|
| 406 | +.h2 small, |
|---|
| 407 | +h3 small, |
|---|
| 408 | +.h3 small, |
|---|
| 409 | +h1 .small, |
|---|
| 410 | +.h1 .small, |
|---|
| 411 | +h2 .small, |
|---|
| 412 | +.h2 .small, |
|---|
| 413 | +h3 .small, |
|---|
| 414 | +.h3 .small { |
|---|
| 415 | + font-size: 65%; |
|---|
| 416 | +} |
|---|
| 417 | +h4, |
|---|
| 418 | +.h4, |
|---|
| 419 | +h5, |
|---|
| 420 | +.h5, |
|---|
| 421 | +h6, |
|---|
| 422 | +.h6 { |
|---|
| 423 | + margin-top: 10px; |
|---|
| 424 | + margin-bottom: 10px; |
|---|
| 425 | +} |
|---|
| 426 | +h4 small, |
|---|
| 427 | +.h4 small, |
|---|
| 428 | +h5 small, |
|---|
| 429 | +.h5 small, |
|---|
| 430 | +h6 small, |
|---|
| 431 | +.h6 small, |
|---|
| 432 | +h4 .small, |
|---|
| 433 | +.h4 .small, |
|---|
| 434 | +h5 .small, |
|---|
| 435 | +.h5 .small, |
|---|
| 436 | +h6 .small, |
|---|
| 437 | +.h6 .small { |
|---|
| 438 | + font-size: 75%; |
|---|
| 439 | +} |
|---|
| 440 | +h1, |
|---|
| 441 | +.h1 { |
|---|
| 442 | + font-size: 36px; |
|---|
| 443 | +} |
|---|
| 444 | +h2, |
|---|
| 445 | +.h2 { |
|---|
| 446 | + font-size: 30px; |
|---|
| 447 | +} |
|---|
| 448 | +h3, |
|---|
| 449 | +.h3 { |
|---|
| 450 | + font-size: 24px; |
|---|
| 451 | +} |
|---|
| 452 | +h4, |
|---|
| 453 | +.h4 { |
|---|
| 454 | + font-size: 18px; |
|---|
| 455 | +} |
|---|
| 456 | +h5, |
|---|
| 457 | +.h5 { |
|---|
| 458 | + font-size: 14px; |
|---|
| 459 | +} |
|---|
| 460 | +h6, |
|---|
| 461 | +.h6 { |
|---|
| 462 | + font-size: 12px; |
|---|
| 463 | +} |
|---|
| 464 | +p { |
|---|
| 465 | + margin: 0 0 10px; |
|---|
| 466 | +} |
|---|
| 467 | +.lead { |
|---|
| 468 | + margin-bottom: 20px; |
|---|
| 469 | + font-size: 16px; |
|---|
| 470 | + font-weight: 200; |
|---|
| 471 | + line-height: 1.4; |
|---|
| 472 | +} |
|---|
| 473 | +@media (min-width: 768px) { |
|---|
| 474 | + .lead { |
|---|
| 475 | + font-size: 21px; |
|---|
| 476 | + } |
|---|
| 477 | +} |
|---|
| 478 | +small, |
|---|
| 479 | +.small { |
|---|
| 480 | + font-size: 85%; |
|---|
| 481 | +} |
|---|
| 482 | +cite { |
|---|
| 483 | + font-style: normal; |
|---|
| 484 | +} |
|---|
| 485 | +.text-left { |
|---|
| 486 | + text-align: left; |
|---|
| 487 | +} |
|---|
| 488 | +.text-right { |
|---|
| 489 | + text-align: right; |
|---|
| 490 | +} |
|---|
| 491 | +.text-center { |
|---|
| 492 | + text-align: center; |
|---|
| 493 | +} |
|---|
| 494 | +.text-justify { |
|---|
| 495 | + text-align: justify; |
|---|
| 496 | +} |
|---|
| 497 | +.text-muted { |
|---|
| 498 | + color: #999; |
|---|
| 499 | +} |
|---|
| 500 | +.text-primary { |
|---|
| 501 | + color: #428bca; |
|---|
| 502 | +} |
|---|
| 503 | +a.text-primary:hover { |
|---|
| 504 | + color: #3071a9; |
|---|
| 505 | +} |
|---|
| 506 | +.text-success { |
|---|
| 507 | + color: #3c763d; |
|---|
| 508 | +} |
|---|
| 509 | +a.text-success:hover { |
|---|
| 510 | + color: #2b542c; |
|---|
| 511 | +} |
|---|
| 512 | +.text-info { |
|---|
| 513 | + color: #31708f; |
|---|
| 514 | +} |
|---|
| 515 | +a.text-info:hover { |
|---|
| 516 | + color: #245269; |
|---|
| 517 | +} |
|---|
| 518 | +.text-warning { |
|---|
| 519 | + color: #8a6d3b; |
|---|
| 520 | +} |
|---|
| 521 | +a.text-warning:hover { |
|---|
| 522 | + color: #66512c; |
|---|
| 523 | +} |
|---|
| 524 | +.text-danger { |
|---|
| 525 | + color: #a94442; |
|---|
| 526 | +} |
|---|
| 527 | +a.text-danger:hover { |
|---|
| 528 | + color: #843534; |
|---|
| 529 | +} |
|---|
| 530 | +.bg-primary { |
|---|
| 531 | + color: #fff; |
|---|
| 532 | + background-color: #428bca; |
|---|
| 533 | +} |
|---|
| 534 | +a.bg-primary:hover { |
|---|
| 535 | + background-color: #3071a9; |
|---|
| 536 | +} |
|---|
| 537 | +.bg-success { |
|---|
| 538 | + background-color: #dff0d8; |
|---|
| 539 | +} |
|---|
| 540 | +a.bg-success:hover { |
|---|
| 541 | + background-color: #c1e2b3; |
|---|
| 542 | +} |
|---|
| 543 | +.bg-info { |
|---|
| 544 | + background-color: #d9edf7; |
|---|
| 545 | +} |
|---|
| 546 | +a.bg-info:hover { |
|---|
| 547 | + background-color: #afd9ee; |
|---|
| 548 | +} |
|---|
| 549 | +.bg-warning { |
|---|
| 550 | + background-color: #fcf8e3; |
|---|
| 551 | +} |
|---|
| 552 | +a.bg-warning:hover { |
|---|
| 553 | + background-color: #f7ecb5; |
|---|
| 554 | +} |
|---|
| 555 | +.bg-danger { |
|---|
| 556 | + background-color: #f2dede; |
|---|
| 557 | +} |
|---|
| 558 | +a.bg-danger:hover { |
|---|
| 559 | + background-color: #e4b9b9; |
|---|
| 560 | +} |
|---|
| 561 | +.page-header { |
|---|
| 562 | + padding-bottom: 9px; |
|---|
| 563 | + margin: 40px 0 20px; |
|---|
| 564 | + border-bottom: 1px solid #eee; |
|---|
| 565 | +} |
|---|
| 566 | +ul, |
|---|
| 567 | +ol { |
|---|
| 568 | + margin-top: 0; |
|---|
| 569 | + margin-bottom: 10px; |
|---|
| 570 | +} |
|---|
| 571 | +ul ul, |
|---|
| 572 | +ol ul, |
|---|
| 573 | +ul ol, |
|---|
| 574 | +ol ol { |
|---|
| 575 | + margin-bottom: 0; |
|---|
| 576 | +} |
|---|
| 577 | +.list-unstyled { |
|---|
| 578 | + padding-left: 0; |
|---|
| 579 | + list-style: none; |
|---|
| 580 | +} |
|---|
| 581 | +.list-inline { |
|---|
| 582 | + padding-left: 0; |
|---|
| 583 | + list-style: none; |
|---|
| 584 | +} |
|---|
| 585 | +.list-inline > li { |
|---|
| 586 | + display: inline-block; |
|---|
| 587 | + padding-right: 5px; |
|---|
| 588 | + padding-left: 5px; |
|---|
| 589 | +} |
|---|
| 590 | +.list-inline > li:first-child { |
|---|
| 591 | + padding-left: 0; |
|---|
| 592 | +} |
|---|
| 593 | +dl { |
|---|
| 594 | + margin-top: 0; |
|---|
| 595 | + margin-bottom: 20px; |
|---|
| 596 | +} |
|---|
| 597 | +dt, |
|---|
| 598 | +dd { |
|---|
| 599 | + line-height: 1.428571429; |
|---|
| 600 | +} |
|---|
| 601 | +dt { |
|---|
| 602 | + font-weight: bold; |
|---|
| 603 | +} |
|---|
| 604 | +dd { |
|---|
| 605 | + margin-left: 0; |
|---|
| 606 | +} |
|---|
| 607 | +@media (min-width: 768px) { |
|---|
| 608 | + .dl-horizontal dt { |
|---|
| 609 | + float: left; |
|---|
| 610 | + width: 160px; |
|---|
| 611 | + overflow: hidden; |
|---|
| 612 | + clear: left; |
|---|
| 613 | + text-align: right; |
|---|
| 614 | + text-overflow: ellipsis; |
|---|
| 615 | + white-space: nowrap; |
|---|
| 616 | + } |
|---|
| 617 | + .dl-horizontal dd { |
|---|
| 618 | + margin-left: 180px; |
|---|
| 619 | + } |
|---|
| 620 | +} |
|---|
| 621 | +abbr[title], |
|---|
| 622 | +abbr[data-original-title] { |
|---|
| 623 | + cursor: help; |
|---|
| 624 | + border-bottom: 1px dotted #999; |
|---|
| 625 | +} |
|---|
| 626 | +.initialism { |
|---|
| 627 | + font-size: 90%; |
|---|
| 628 | + text-transform: uppercase; |
|---|
| 629 | +} |
|---|
| 630 | +blockquote { |
|---|
| 631 | + padding: 10px 20px; |
|---|
| 632 | + margin: 0 0 20px; |
|---|
| 633 | + font-size: 17.5px; |
|---|
| 634 | + border-left: 5px solid #eee; |
|---|
| 635 | +} |
|---|
| 636 | +blockquote p:last-child, |
|---|
| 637 | +blockquote ul:last-child, |
|---|
| 638 | +blockquote ol:last-child { |
|---|
| 639 | + margin-bottom: 0; |
|---|
| 640 | +} |
|---|
| 641 | +blockquote footer, |
|---|
| 642 | +blockquote small, |
|---|
| 643 | +blockquote .small { |
|---|
| 644 | + display: block; |
|---|
| 645 | + font-size: 80%; |
|---|
| 646 | + line-height: 1.428571429; |
|---|
| 647 | + color: #999; |
|---|
| 648 | +} |
|---|
| 649 | +blockquote footer:before, |
|---|
| 650 | +blockquote small:before, |
|---|
| 651 | +blockquote .small:before { |
|---|
| 652 | + content: '\2014 \00A0'; |
|---|
| 653 | +} |
|---|
| 654 | +.blockquote-reverse, |
|---|
| 655 | +blockquote.pull-right { |
|---|
| 656 | + padding-right: 15px; |
|---|
| 657 | + padding-left: 0; |
|---|
| 658 | + text-align: right; |
|---|
| 659 | + border-right: 5px solid #eee; |
|---|
| 660 | + border-left: 0; |
|---|
| 661 | +} |
|---|
| 662 | +.blockquote-reverse footer:before, |
|---|
| 663 | +blockquote.pull-right footer:before, |
|---|
| 664 | +.blockquote-reverse small:before, |
|---|
| 665 | +blockquote.pull-right small:before, |
|---|
| 666 | +.blockquote-reverse .small:before, |
|---|
| 667 | +blockquote.pull-right .small:before { |
|---|
| 668 | + content: ''; |
|---|
| 669 | +} |
|---|
| 670 | +.blockquote-reverse footer:after, |
|---|
| 671 | +blockquote.pull-right footer:after, |
|---|
| 672 | +.blockquote-reverse small:after, |
|---|
| 673 | +blockquote.pull-right small:after, |
|---|
| 674 | +.blockquote-reverse .small:after, |
|---|
| 675 | +blockquote.pull-right .small:after { |
|---|
| 676 | + content: '\00A0 \2014'; |
|---|
| 677 | +} |
|---|
| 678 | +blockquote:before, |
|---|
| 679 | +blockquote:after { |
|---|
| 680 | + content: ""; |
|---|
| 681 | +} |
|---|
| 682 | +address { |
|---|
| 683 | + margin-bottom: 20px; |
|---|
| 684 | + font-style: normal; |
|---|
| 685 | + line-height: 1.428571429; |
|---|
| 686 | +} |
|---|
| 687 | +code, |
|---|
| 688 | +kbd, |
|---|
| 689 | +pre, |
|---|
| 690 | +samp { |
|---|
| 691 | + font-family: Menlo, Monaco, Consolas, "Courier New", monospace; |
|---|
| 692 | +} |
|---|
| 693 | +code { |
|---|
| 694 | + padding: 2px 4px; |
|---|
| 695 | + font-size: 90%; |
|---|
| 696 | + color: #c7254e; |
|---|
| 697 | + white-space: nowrap; |
|---|
| 698 | + background-color: #f9f2f4; |
|---|
| 699 | + border-radius: 4px; |
|---|
| 700 | +} |
|---|
| 701 | +kbd { |
|---|
| 702 | + padding: 2px 4px; |
|---|
| 703 | + font-size: 90%; |
|---|
| 704 | + color: #fff; |
|---|
| 705 | + background-color: #333; |
|---|
| 706 | + border-radius: 3px; |
|---|
| 707 | + box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25); |
|---|
| 708 | +} |
|---|
| 709 | +pre { |
|---|
| 710 | + display: block; |
|---|
| 711 | + padding: 9.5px; |
|---|
| 712 | + margin: 0 0 10px; |
|---|
| 713 | + font-size: 13px; |
|---|
| 714 | + line-height: 1.428571429; |
|---|
| 715 | + color: #333; |
|---|
| 716 | + word-break: break-all; |
|---|
| 717 | + word-wrap: break-word; |
|---|
| 718 | + background-color: #f5f5f5; |
|---|
| 719 | + border: 1px solid #ccc; |
|---|
| 720 | + border-radius: 4px; |
|---|
| 721 | +} |
|---|
| 722 | +pre code { |
|---|
| 723 | + padding: 0; |
|---|
| 724 | + font-size: inherit; |
|---|
| 725 | + color: inherit; |
|---|
| 726 | + white-space: pre-wrap; |
|---|
| 727 | + background-color: transparent; |
|---|
| 728 | + border-radius: 0; |
|---|
| 729 | +} |
|---|
| 730 | +.pre-scrollable { |
|---|
| 731 | + max-height: 340px; |
|---|
| 732 | + overflow-y: scroll; |
|---|
| 733 | +} |
|---|
| 734 | +.container { |
|---|
| 735 | + padding-right: 15px; |
|---|
| 736 | + padding-left: 15px; |
|---|
| 737 | + margin-right: auto; |
|---|
| 738 | + margin-left: auto; |
|---|
| 739 | +} |
|---|
| 740 | +@media (min-width: 768px) { |
|---|
| 741 | + .container { |
|---|
| 742 | + width: 750px; |
|---|
| 743 | + } |
|---|
| 744 | +} |
|---|
| 745 | +@media (min-width: 992px) { |
|---|
| 746 | + .container { |
|---|
| 747 | + width: 970px; |
|---|
| 748 | + } |
|---|
| 749 | +} |
|---|
| 750 | +@media (min-width: 1200px) { |
|---|
| 751 | + .container { |
|---|
| 752 | + width: 1170px; |
|---|
| 753 | + } |
|---|
| 754 | +} |
|---|
| 755 | +.container-fluid { |
|---|
| 756 | + padding-right: 15px; |
|---|
| 757 | + padding-left: 15px; |
|---|
| 758 | + margin-right: auto; |
|---|
| 759 | + margin-left: auto; |
|---|
| 760 | +} |
|---|
| 761 | +.row { |
|---|
| 762 | + margin-right: -15px; |
|---|
| 763 | + margin-left: -15px; |
|---|
| 764 | +} |
|---|
| 765 | +.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 { |
|---|
| 766 | + position: relative; |
|---|
| 767 | + min-height: 1px; |
|---|
| 768 | + padding-right: 15px; |
|---|
| 769 | + padding-left: 15px; |
|---|
| 770 | +} |
|---|
| 771 | +.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 { |
|---|
| 772 | + float: left; |
|---|
| 773 | +} |
|---|
| 774 | +.col-xs-12 { |
|---|
| 775 | + width: 100%; |
|---|
| 776 | +} |
|---|
| 777 | +.col-xs-11 { |
|---|
| 778 | + width: 91.66666666666666%; |
|---|
| 779 | +} |
|---|
| 780 | +.col-xs-10 { |
|---|
| 781 | + width: 83.33333333333334%; |
|---|
| 782 | +} |
|---|
| 783 | +.col-xs-9 { |
|---|
| 784 | + width: 75%; |
|---|
| 785 | +} |
|---|
| 786 | +.col-xs-8 { |
|---|
| 787 | + width: 66.66666666666666%; |
|---|
| 788 | +} |
|---|
| 789 | +.col-xs-7 { |
|---|
| 790 | + width: 58.333333333333336%; |
|---|
| 791 | +} |
|---|
| 792 | +.col-xs-6 { |
|---|
| 793 | + width: 50%; |
|---|
| 794 | +} |
|---|
| 795 | +.col-xs-5 { |
|---|
| 796 | + width: 41.66666666666667%; |
|---|
| 797 | +} |
|---|
| 798 | +.col-xs-4 { |
|---|
| 799 | + width: 33.33333333333333%; |
|---|
| 800 | +} |
|---|
| 801 | +.col-xs-3 { |
|---|
| 802 | + width: 25%; |
|---|
| 803 | +} |
|---|
| 804 | +.col-xs-2 { |
|---|
| 805 | + width: 16.666666666666664%; |
|---|
| 806 | +} |
|---|
| 807 | +.col-xs-1 { |
|---|
| 808 | + width: 8.333333333333332%; |
|---|
| 809 | +} |
|---|
| 810 | +.col-xs-pull-12 { |
|---|
| 811 | + right: 100%; |
|---|
| 812 | +} |
|---|
| 813 | +.col-xs-pull-11 { |
|---|
| 814 | + right: 91.66666666666666%; |
|---|
| 815 | +} |
|---|
| 816 | +.col-xs-pull-10 { |
|---|
| 817 | + right: 83.33333333333334%; |
|---|
| 818 | +} |
|---|
| 819 | +.col-xs-pull-9 { |
|---|
| 820 | + right: 75%; |
|---|
| 821 | +} |
|---|
| 822 | +.col-xs-pull-8 { |
|---|
| 823 | + right: 66.66666666666666%; |
|---|
| 824 | +} |
|---|
| 825 | +.col-xs-pull-7 { |
|---|
| 826 | + right: 58.333333333333336%; |
|---|
| 827 | +} |
|---|
| 828 | +.col-xs-pull-6 { |
|---|
| 829 | + right: 50%; |
|---|
| 830 | +} |
|---|
| 831 | +.col-xs-pull-5 { |
|---|
| 832 | + right: 41.66666666666667%; |
|---|
| 833 | +} |
|---|
| 834 | +.col-xs-pull-4 { |
|---|
| 835 | + right: 33.33333333333333%; |
|---|
| 836 | +} |
|---|
| 837 | +.col-xs-pull-3 { |
|---|
| 838 | + right: 25%; |
|---|
| 839 | +} |
|---|
| 840 | +.col-xs-pull-2 { |
|---|
| 841 | + right: 16.666666666666664%; |
|---|
| 842 | +} |
|---|
| 843 | +.col-xs-pull-1 { |
|---|
| 844 | + right: 8.333333333333332%; |
|---|
| 845 | +} |
|---|
| 846 | +.col-xs-pull-0 { |
|---|
| 847 | + right: 0; |
|---|
| 848 | +} |
|---|
| 849 | +.col-xs-push-12 { |
|---|
| 850 | + left: 100%; |
|---|
| 851 | +} |
|---|
| 852 | +.col-xs-push-11 { |
|---|
| 853 | + left: 91.66666666666666%; |
|---|
| 854 | +} |
|---|
| 855 | +.col-xs-push-10 { |
|---|
| 856 | + left: 83.33333333333334%; |
|---|
| 857 | +} |
|---|
| 858 | +.col-xs-push-9 { |
|---|
| 859 | + left: 75%; |
|---|
| 860 | +} |
|---|
| 861 | +.col-xs-push-8 { |
|---|
| 862 | + left: 66.66666666666666%; |
|---|
| 863 | +} |
|---|
| 864 | +.col-xs-push-7 { |
|---|
| 865 | + left: 58.333333333333336%; |
|---|
| 866 | +} |
|---|
| 867 | +.col-xs-push-6 { |
|---|
| 868 | + left: 50%; |
|---|
| 869 | +} |
|---|
| 870 | +.col-xs-push-5 { |
|---|
| 871 | + left: 41.66666666666667%; |
|---|
| 872 | +} |
|---|
| 873 | +.col-xs-push-4 { |
|---|
| 874 | + left: 33.33333333333333%; |
|---|
| 875 | +} |
|---|
| 876 | +.col-xs-push-3 { |
|---|
| 877 | + left: 25%; |
|---|
| 878 | +} |
|---|
| 879 | +.col-xs-push-2 { |
|---|
| 880 | + left: 16.666666666666664%; |
|---|
| 881 | +} |
|---|
| 882 | +.col-xs-push-1 { |
|---|
| 883 | + left: 8.333333333333332%; |
|---|
| 884 | +} |
|---|
| 885 | +.col-xs-push-0 { |
|---|
| 886 | + left: 0; |
|---|
| 887 | +} |
|---|
| 888 | +.col-xs-offset-12 { |
|---|
| 889 | + margin-left: 100%; |
|---|
| 890 | +} |
|---|
| 891 | +.col-xs-offset-11 { |
|---|
| 892 | + margin-left: 91.66666666666666%; |
|---|
| 893 | +} |
|---|
| 894 | +.col-xs-offset-10 { |
|---|
| 895 | + margin-left: 83.33333333333334%; |
|---|
| 896 | +} |
|---|
| 897 | +.col-xs-offset-9 { |
|---|
| 898 | + margin-left: 75%; |
|---|
| 899 | +} |
|---|
| 900 | +.col-xs-offset-8 { |
|---|
| 901 | + margin-left: 66.66666666666666%; |
|---|
| 902 | +} |
|---|
| 903 | +.col-xs-offset-7 { |
|---|
| 904 | + margin-left: 58.333333333333336%; |
|---|
| 905 | +} |
|---|
| 906 | +.col-xs-offset-6 { |
|---|
| 907 | + margin-left: 50%; |
|---|
| 908 | +} |
|---|
| 909 | +.col-xs-offset-5 { |
|---|
| 910 | + margin-left: 41.66666666666667%; |
|---|
| 911 | +} |
|---|
| 912 | +.col-xs-offset-4 { |
|---|
| 913 | + margin-left: 33.33333333333333%; |
|---|
| 914 | +} |
|---|
| 915 | +.col-xs-offset-3 { |
|---|
| 916 | + margin-left: 25%; |
|---|
| 917 | +} |
|---|
| 918 | +.col-xs-offset-2 { |
|---|
| 919 | + margin-left: 16.666666666666664%; |
|---|
| 920 | +} |
|---|
| 921 | +.col-xs-offset-1 { |
|---|
| 922 | + margin-left: 8.333333333333332%; |
|---|
| 923 | +} |
|---|
| 924 | +.col-xs-offset-0 { |
|---|
| 925 | + margin-left: 0; |
|---|
| 926 | +} |
|---|
| 927 | +@media (min-width: 768px) { |
|---|
| 928 | + .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 { |
|---|
| 929 | + float: left; |
|---|
| 930 | + } |
|---|
| 931 | + .col-sm-12 { |
|---|
| 932 | + width: 100%; |
|---|
| 933 | + } |
|---|
| 934 | + .col-sm-11 { |
|---|
| 935 | + width: 91.66666666666666%; |
|---|
| 936 | + } |
|---|
| 937 | + .col-sm-10 { |
|---|
| 938 | + width: 83.33333333333334%; |
|---|
| 939 | + } |
|---|
| 940 | + .col-sm-9 { |
|---|
| 941 | + width: 75%; |
|---|
| 942 | + } |
|---|
| 943 | + .col-sm-8 { |
|---|
| 944 | + width: 66.66666666666666%; |
|---|
| 945 | + } |
|---|
| 946 | + .col-sm-7 { |
|---|
| 947 | + width: 58.333333333333336%; |
|---|
| 948 | + } |
|---|
| 949 | + .col-sm-6 { |
|---|
| 950 | + width: 50%; |
|---|
| 951 | + } |
|---|
| 952 | + .col-sm-5 { |
|---|
| 953 | + width: 41.66666666666667%; |
|---|
| 954 | + } |
|---|
| 955 | + .col-sm-4 { |
|---|
| 956 | + width: 33.33333333333333%; |
|---|
| 957 | + } |
|---|
| 958 | + .col-sm-3 { |
|---|
| 959 | + width: 25%; |
|---|
| 960 | + } |
|---|
| 961 | + .col-sm-2 { |
|---|
| 962 | + width: 16.666666666666664%; |
|---|
| 963 | + } |
|---|
| 964 | + .col-sm-1 { |
|---|
| 965 | + width: 8.333333333333332%; |
|---|
| 966 | + } |
|---|
| 967 | + .col-sm-pull-12 { |
|---|
| 968 | + right: 100%; |
|---|
| 969 | + } |
|---|
| 970 | + .col-sm-pull-11 { |
|---|
| 971 | + right: 91.66666666666666%; |
|---|
| 972 | + } |
|---|
| 973 | + .col-sm-pull-10 { |
|---|
| 974 | + right: 83.33333333333334%; |
|---|
| 975 | + } |
|---|
| 976 | + .col-sm-pull-9 { |
|---|
| 977 | + right: 75%; |
|---|
| 978 | + } |
|---|
| 979 | + .col-sm-pull-8 { |
|---|
| 980 | + right: 66.66666666666666%; |
|---|
| 981 | + } |
|---|
| 982 | + .col-sm-pull-7 { |
|---|
| 983 | + right: 58.333333333333336%; |
|---|
| 984 | + } |
|---|
| 985 | + .col-sm-pull-6 { |
|---|
| 986 | + right: 50%; |
|---|
| 987 | + } |
|---|
| 988 | + .col-sm-pull-5 { |
|---|
| 989 | + right: 41.66666666666667%; |
|---|
| 990 | + } |
|---|
| 991 | + .col-sm-pull-4 { |
|---|
| 992 | + right: 33.33333333333333%; |
|---|
| 993 | + } |
|---|
| 994 | + .col-sm-pull-3 { |
|---|
| 995 | + right: 25%; |
|---|
| 996 | + } |
|---|
| 997 | + .col-sm-pull-2 { |
|---|
| 998 | + right: 16.666666666666664%; |
|---|
| 999 | + } |
|---|
| 1000 | + .col-sm-pull-1 { |
|---|
| 1001 | + right: 8.333333333333332%; |
|---|
| 1002 | + } |
|---|
| 1003 | + .col-sm-pull-0 { |
|---|
| 1004 | + right: 0; |
|---|
| 1005 | + } |
|---|
| 1006 | + .col-sm-push-12 { |
|---|
| 1007 | + left: 100%; |
|---|
| 1008 | + } |
|---|
| 1009 | + .col-sm-push-11 { |
|---|
| 1010 | + left: 91.66666666666666%; |
|---|
| 1011 | + } |
|---|
| 1012 | + .col-sm-push-10 { |
|---|
| 1013 | + left: 83.33333333333334%; |
|---|
| 1014 | + } |
|---|
| 1015 | + .col-sm-push-9 { |
|---|
| 1016 | + left: 75%; |
|---|
| 1017 | + } |
|---|
| 1018 | + .col-sm-push-8 { |
|---|
| 1019 | + left: 66.66666666666666%; |
|---|
| 1020 | + } |
|---|
| 1021 | + .col-sm-push-7 { |
|---|
| 1022 | + left: 58.333333333333336%; |
|---|
| 1023 | + } |
|---|
| 1024 | + .col-sm-push-6 { |
|---|
| 1025 | + left: 50%; |
|---|
| 1026 | + } |
|---|
| 1027 | + .col-sm-push-5 { |
|---|
| 1028 | + left: 41.66666666666667%; |
|---|
| 1029 | + } |
|---|
| 1030 | + .col-sm-push-4 { |
|---|
| 1031 | + left: 33.33333333333333%; |
|---|
| 1032 | + } |
|---|
| 1033 | + .col-sm-push-3 { |
|---|
| 1034 | + left: 25%; |
|---|
| 1035 | + } |
|---|
| 1036 | + .col-sm-push-2 { |
|---|
| 1037 | + left: 16.666666666666664%; |
|---|
| 1038 | + } |
|---|
| 1039 | + .col-sm-push-1 { |
|---|
| 1040 | + left: 8.333333333333332%; |
|---|
| 1041 | + } |
|---|
| 1042 | + .col-sm-push-0 { |
|---|
| 1043 | + left: 0; |
|---|
| 1044 | + } |
|---|
| 1045 | + .col-sm-offset-12 { |
|---|
| 1046 | + margin-left: 100%; |
|---|
| 1047 | + } |
|---|
| 1048 | + .col-sm-offset-11 { |
|---|
| 1049 | + margin-left: 91.66666666666666%; |
|---|
| 1050 | + } |
|---|
| 1051 | + .col-sm-offset-10 { |
|---|
| 1052 | + margin-left: 83.33333333333334%; |
|---|
| 1053 | + } |
|---|
| 1054 | + .col-sm-offset-9 { |
|---|
| 1055 | + margin-left: 75%; |
|---|
| 1056 | + } |
|---|
| 1057 | + .col-sm-offset-8 { |
|---|
| 1058 | + margin-left: 66.66666666666666%; |
|---|
| 1059 | + } |
|---|
| 1060 | + .col-sm-offset-7 { |
|---|
| 1061 | + margin-left: 58.333333333333336%; |
|---|
| 1062 | + } |
|---|
| 1063 | + .col-sm-offset-6 { |
|---|
| 1064 | + margin-left: 50%; |
|---|
| 1065 | + } |
|---|
| 1066 | + .col-sm-offset-5 { |
|---|
| 1067 | + margin-left: 41.66666666666667%; |
|---|
| 1068 | + } |
|---|
| 1069 | + .col-sm-offset-4 { |
|---|
| 1070 | + margin-left: 33.33333333333333%; |
|---|
| 1071 | + } |
|---|
| 1072 | + .col-sm-offset-3 { |
|---|
| 1073 | + margin-left: 25%; |
|---|
| 1074 | + } |
|---|
| 1075 | + .col-sm-offset-2 { |
|---|
| 1076 | + margin-left: 16.666666666666664%; |
|---|
| 1077 | + } |
|---|
| 1078 | + .col-sm-offset-1 { |
|---|
| 1079 | + margin-left: 8.333333333333332%; |
|---|
| 1080 | + } |
|---|
| 1081 | + .col-sm-offset-0 { |
|---|
| 1082 | + margin-left: 0; |
|---|
| 1083 | + } |
|---|
| 1084 | +} |
|---|
| 1085 | +@media (min-width: 992px) { |
|---|
| 1086 | + .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 { |
|---|
| 1087 | + float: left; |
|---|
| 1088 | + } |
|---|
| 1089 | + .col-md-12 { |
|---|
| 1090 | + width: 100%; |
|---|
| 1091 | + } |
|---|
| 1092 | + .col-md-11 { |
|---|
| 1093 | + width: 91.66666666666666%; |
|---|
| 1094 | + } |
|---|
| 1095 | + .col-md-10 { |
|---|
| 1096 | + width: 83.33333333333334%; |
|---|
| 1097 | + } |
|---|
| 1098 | + .col-md-9 { |
|---|
| 1099 | + width: 75%; |
|---|
| 1100 | + } |
|---|
| 1101 | + .col-md-8 { |
|---|
| 1102 | + width: 66.66666666666666%; |
|---|
| 1103 | + } |
|---|
| 1104 | + .col-md-7 { |
|---|
| 1105 | + width: 58.333333333333336%; |
|---|
| 1106 | + } |
|---|
| 1107 | + .col-md-6 { |
|---|
| 1108 | + width: 50%; |
|---|
| 1109 | + } |
|---|
| 1110 | + .col-md-5 { |
|---|
| 1111 | + width: 41.66666666666667%; |
|---|
| 1112 | + } |
|---|
| 1113 | + .col-md-4 { |
|---|
| 1114 | + width: 33.33333333333333%; |
|---|
| 1115 | + } |
|---|
| 1116 | + .col-md-3 { |
|---|
| 1117 | + width: 25%; |
|---|
| 1118 | + } |
|---|
| 1119 | + .col-md-2 { |
|---|
| 1120 | + width: 16.666666666666664%; |
|---|
| 1121 | + } |
|---|
| 1122 | + .col-md-1 { |
|---|
| 1123 | + width: 8.333333333333332%; |
|---|
| 1124 | + } |
|---|
| 1125 | + .col-md-pull-12 { |
|---|
| 1126 | + right: 100%; |
|---|
| 1127 | + } |
|---|
| 1128 | + .col-md-pull-11 { |
|---|
| 1129 | + right: 91.66666666666666%; |
|---|
| 1130 | + } |
|---|
| 1131 | + .col-md-pull-10 { |
|---|
| 1132 | + right: 83.33333333333334%; |
|---|
| 1133 | + } |
|---|
| 1134 | + .col-md-pull-9 { |
|---|
| 1135 | + right: 75%; |
|---|
| 1136 | + } |
|---|
| 1137 | + .col-md-pull-8 { |
|---|
| 1138 | + right: 66.66666666666666%; |
|---|
| 1139 | + } |
|---|
| 1140 | + .col-md-pull-7 { |
|---|
| 1141 | + right: 58.333333333333336%; |
|---|
| 1142 | + } |
|---|
| 1143 | + .col-md-pull-6 { |
|---|
| 1144 | + right: 50%; |
|---|
| 1145 | + } |
|---|
| 1146 | + .col-md-pull-5 { |
|---|
| 1147 | + right: 41.66666666666667%; |
|---|
| 1148 | + } |
|---|
| 1149 | + .col-md-pull-4 { |
|---|
| 1150 | + right: 33.33333333333333%; |
|---|
| 1151 | + } |
|---|
| 1152 | + .col-md-pull-3 { |
|---|
| 1153 | + right: 25%; |
|---|
| 1154 | + } |
|---|
| 1155 | + .col-md-pull-2 { |
|---|
| 1156 | + right: 16.666666666666664%; |
|---|
| 1157 | + } |
|---|
| 1158 | + .col-md-pull-1 { |
|---|
| 1159 | + right: 8.333333333333332%; |
|---|
| 1160 | + } |
|---|
| 1161 | + .col-md-pull-0 { |
|---|
| 1162 | + right: 0; |
|---|
| 1163 | + } |
|---|
| 1164 | + .col-md-push-12 { |
|---|
| 1165 | + left: 100%; |
|---|
| 1166 | + } |
|---|
| 1167 | + .col-md-push-11 { |
|---|
| 1168 | + left: 91.66666666666666%; |
|---|
| 1169 | + } |
|---|
| 1170 | + .col-md-push-10 { |
|---|
| 1171 | + left: 83.33333333333334%; |
|---|
| 1172 | + } |
|---|
| 1173 | + .col-md-push-9 { |
|---|
| 1174 | + left: 75%; |
|---|
| 1175 | + } |
|---|
| 1176 | + .col-md-push-8 { |
|---|
| 1177 | + left: 66.66666666666666%; |
|---|
| 1178 | + } |
|---|
| 1179 | + .col-md-push-7 { |
|---|
| 1180 | + left: 58.333333333333336%; |
|---|
| 1181 | + } |
|---|
| 1182 | + .col-md-push-6 { |
|---|
| 1183 | + left: 50%; |
|---|
| 1184 | + } |
|---|
| 1185 | + .col-md-push-5 { |
|---|
| 1186 | + left: 41.66666666666667%; |
|---|
| 1187 | + } |
|---|
| 1188 | + .col-md-push-4 { |
|---|
| 1189 | + left: 33.33333333333333%; |
|---|
| 1190 | + } |
|---|
| 1191 | + .col-md-push-3 { |
|---|
| 1192 | + left: 25%; |
|---|
| 1193 | + } |
|---|
| 1194 | + .col-md-push-2 { |
|---|
| 1195 | + left: 16.666666666666664%; |
|---|
| 1196 | + } |
|---|
| 1197 | + .col-md-push-1 { |
|---|
| 1198 | + left: 8.333333333333332%; |
|---|
| 1199 | + } |
|---|
| 1200 | + .col-md-push-0 { |
|---|
| 1201 | + left: 0; |
|---|
| 1202 | + } |
|---|
| 1203 | + .col-md-offset-12 { |
|---|
| 1204 | + margin-left: 100%; |
|---|
| 1205 | + } |
|---|
| 1206 | + .col-md-offset-11 { |
|---|
| 1207 | + margin-left: 91.66666666666666%; |
|---|
| 1208 | + } |
|---|
| 1209 | + .col-md-offset-10 { |
|---|
| 1210 | + margin-left: 83.33333333333334%; |
|---|
| 1211 | + } |
|---|
| 1212 | + .col-md-offset-9 { |
|---|
| 1213 | + margin-left: 75%; |
|---|
| 1214 | + } |
|---|
| 1215 | + .col-md-offset-8 { |
|---|
| 1216 | + margin-left: 66.66666666666666%; |
|---|
| 1217 | + } |
|---|
| 1218 | + .col-md-offset-7 { |
|---|
| 1219 | + margin-left: 58.333333333333336%; |
|---|
| 1220 | + } |
|---|
| 1221 | + .col-md-offset-6 { |
|---|
| 1222 | + margin-left: 50%; |
|---|
| 1223 | + } |
|---|
| 1224 | + .col-md-offset-5 { |
|---|
| 1225 | + margin-left: 41.66666666666667%; |
|---|
| 1226 | + } |
|---|
| 1227 | + .col-md-offset-4 { |
|---|
| 1228 | + margin-left: 33.33333333333333%; |
|---|
| 1229 | + } |
|---|
| 1230 | + .col-md-offset-3 { |
|---|
| 1231 | + margin-left: 25%; |
|---|
| 1232 | + } |
|---|
| 1233 | + .col-md-offset-2 { |
|---|
| 1234 | + margin-left: 16.666666666666664%; |
|---|
| 1235 | + } |
|---|
| 1236 | + .col-md-offset-1 { |
|---|
| 1237 | + margin-left: 8.333333333333332%; |
|---|
| 1238 | + } |
|---|
| 1239 | + .col-md-offset-0 { |
|---|
| 1240 | + margin-left: 0; |
|---|
| 1241 | + } |
|---|
| 1242 | +} |
|---|
| 1243 | +@media (min-width: 1200px) { |
|---|
| 1244 | + .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 { |
|---|
| 1245 | + float: left; |
|---|
| 1246 | + } |
|---|
| 1247 | + .col-lg-12 { |
|---|
| 1248 | + width: 100%; |
|---|
| 1249 | + } |
|---|
| 1250 | + .col-lg-11 { |
|---|
| 1251 | + width: 91.66666666666666%; |
|---|
| 1252 | + } |
|---|
| 1253 | + .col-lg-10 { |
|---|
| 1254 | + width: 83.33333333333334%; |
|---|
| 1255 | + } |
|---|
| 1256 | + .col-lg-9 { |
|---|
| 1257 | + width: 75%; |
|---|
| 1258 | + } |
|---|
| 1259 | + .col-lg-8 { |
|---|
| 1260 | + width: 66.66666666666666%; |
|---|
| 1261 | + } |
|---|
| 1262 | + .col-lg-7 { |
|---|
| 1263 | + width: 58.333333333333336%; |
|---|
| 1264 | + } |
|---|
| 1265 | + .col-lg-6 { |
|---|
| 1266 | + width: 50%; |
|---|
| 1267 | + } |
|---|
| 1268 | + .col-lg-5 { |
|---|
| 1269 | + width: 41.66666666666667%; |
|---|
| 1270 | + } |
|---|
| 1271 | + .col-lg-4 { |
|---|
| 1272 | + width: 33.33333333333333%; |
|---|
| 1273 | + } |
|---|
| 1274 | + .col-lg-3 { |
|---|
| 1275 | + width: 25%; |
|---|
| 1276 | + } |
|---|
| 1277 | + .col-lg-2 { |
|---|
| 1278 | + width: 16.666666666666664%; |
|---|
| 1279 | + } |
|---|
| 1280 | + .col-lg-1 { |
|---|
| 1281 | + width: 8.333333333333332%; |
|---|
| 1282 | + } |
|---|
| 1283 | + .col-lg-pull-12 { |
|---|
| 1284 | + right: 100%; |
|---|
| 1285 | + } |
|---|
| 1286 | + .col-lg-pull-11 { |
|---|
| 1287 | + right: 91.66666666666666%; |
|---|
| 1288 | + } |
|---|
| 1289 | + .col-lg-pull-10 { |
|---|
| 1290 | + right: 83.33333333333334%; |
|---|
| 1291 | + } |
|---|
| 1292 | + .col-lg-pull-9 { |
|---|
| 1293 | + right: 75%; |
|---|
| 1294 | + } |
|---|
| 1295 | + .col-lg-pull-8 { |
|---|
| 1296 | + right: 66.66666666666666%; |
|---|
| 1297 | + } |
|---|
| 1298 | + .col-lg-pull-7 { |
|---|
| 1299 | + right: 58.333333333333336%; |
|---|
| 1300 | + } |
|---|
| 1301 | + .col-lg-pull-6 { |
|---|
| 1302 | + right: 50%; |
|---|
| 1303 | + } |
|---|
| 1304 | + .col-lg-pull-5 { |
|---|
| 1305 | + right: 41.66666666666667%; |
|---|
| 1306 | + } |
|---|
| 1307 | + .col-lg-pull-4 { |
|---|
| 1308 | + right: 33.33333333333333%; |
|---|
| 1309 | + } |
|---|
| 1310 | + .col-lg-pull-3 { |
|---|
| 1311 | + right: 25%; |
|---|
| 1312 | + } |
|---|
| 1313 | + .col-lg-pull-2 { |
|---|
| 1314 | + right: 16.666666666666664%; |
|---|
| 1315 | + } |
|---|
| 1316 | + .col-lg-pull-1 { |
|---|
| 1317 | + right: 8.333333333333332%; |
|---|
| 1318 | + } |
|---|
| 1319 | + .col-lg-pull-0 { |
|---|
| 1320 | + right: 0; |
|---|
| 1321 | + } |
|---|
| 1322 | + .col-lg-push-12 { |
|---|
| 1323 | + left: 100%; |
|---|
| 1324 | + } |
|---|
| 1325 | + .col-lg-push-11 { |
|---|
| 1326 | + left: 91.66666666666666%; |
|---|
| 1327 | + } |
|---|
| 1328 | + .col-lg-push-10 { |
|---|
| 1329 | + left: 83.33333333333334%; |
|---|
| 1330 | + } |
|---|
| 1331 | + .col-lg-push-9 { |
|---|
| 1332 | + left: 75%; |
|---|
| 1333 | + } |
|---|
| 1334 | + .col-lg-push-8 { |
|---|
| 1335 | + left: 66.66666666666666%; |
|---|
| 1336 | + } |
|---|
| 1337 | + .col-lg-push-7 { |
|---|
| 1338 | + left: 58.333333333333336%; |
|---|
| 1339 | + } |
|---|
| 1340 | + .col-lg-push-6 { |
|---|
| 1341 | + left: 50%; |
|---|
| 1342 | + } |
|---|
| 1343 | + .col-lg-push-5 { |
|---|
| 1344 | + left: 41.66666666666667%; |
|---|
| 1345 | + } |
|---|
| 1346 | + .col-lg-push-4 { |
|---|
| 1347 | + left: 33.33333333333333%; |
|---|
| 1348 | + } |
|---|
| 1349 | + .col-lg-push-3 { |
|---|
| 1350 | + left: 25%; |
|---|
| 1351 | + } |
|---|
| 1352 | + .col-lg-push-2 { |
|---|
| 1353 | + left: 16.666666666666664%; |
|---|
| 1354 | + } |
|---|
| 1355 | + .col-lg-push-1 { |
|---|
| 1356 | + left: 8.333333333333332%; |
|---|
| 1357 | + } |
|---|
| 1358 | + .col-lg-push-0 { |
|---|
| 1359 | + left: 0; |
|---|
| 1360 | + } |
|---|
| 1361 | + .col-lg-offset-12 { |
|---|
| 1362 | + margin-left: 100%; |
|---|
| 1363 | + } |
|---|
| 1364 | + .col-lg-offset-11 { |
|---|
| 1365 | + margin-left: 91.66666666666666%; |
|---|
| 1366 | + } |
|---|
| 1367 | + .col-lg-offset-10 { |
|---|
| 1368 | + margin-left: 83.33333333333334%; |
|---|
| 1369 | + } |
|---|
| 1370 | + .col-lg-offset-9 { |
|---|
| 1371 | + margin-left: 75%; |
|---|
| 1372 | + } |
|---|
| 1373 | + .col-lg-offset-8 { |
|---|
| 1374 | + margin-left: 66.66666666666666%; |
|---|
| 1375 | + } |
|---|
| 1376 | + .col-lg-offset-7 { |
|---|
| 1377 | + margin-left: 58.333333333333336%; |
|---|
| 1378 | + } |
|---|
| 1379 | + .col-lg-offset-6 { |
|---|
| 1380 | + margin-left: 50%; |
|---|
| 1381 | + } |
|---|
| 1382 | + .col-lg-offset-5 { |
|---|
| 1383 | + margin-left: 41.66666666666667%; |
|---|
| 1384 | + } |
|---|
| 1385 | + .col-lg-offset-4 { |
|---|
| 1386 | + margin-left: 33.33333333333333%; |
|---|
| 1387 | + } |
|---|
| 1388 | + .col-lg-offset-3 { |
|---|
| 1389 | + margin-left: 25%; |
|---|
| 1390 | + } |
|---|
| 1391 | + .col-lg-offset-2 { |
|---|
| 1392 | + margin-left: 16.666666666666664%; |
|---|
| 1393 | + } |
|---|
| 1394 | + .col-lg-offset-1 { |
|---|
| 1395 | + margin-left: 8.333333333333332%; |
|---|
| 1396 | + } |
|---|
| 1397 | + .col-lg-offset-0 { |
|---|
| 1398 | + margin-left: 0; |
|---|
| 1399 | + } |
|---|
| 1400 | +} |
|---|
| 1401 | +table { |
|---|
| 1402 | + max-width: 100%; |
|---|
| 1403 | + background-color: transparent; |
|---|
| 1404 | +} |
|---|
| 1405 | +th { |
|---|
| 1406 | + text-align: left; |
|---|
| 1407 | +} |
|---|
| 1408 | +.table { |
|---|
| 1409 | + width: 100%; |
|---|
| 1410 | + margin-bottom: 20px; |
|---|
| 1411 | +} |
|---|
| 1412 | +.table > thead > tr > th, |
|---|
| 1413 | +.table > tbody > tr > th, |
|---|
| 1414 | +.table > tfoot > tr > th, |
|---|
| 1415 | +.table > thead > tr > td, |
|---|
| 1416 | +.table > tbody > tr > td, |
|---|
| 1417 | +.table > tfoot > tr > td { |
|---|
| 1418 | + padding: 8px; |
|---|
| 1419 | + line-height: 1.428571429; |
|---|
| 1420 | + vertical-align: top; |
|---|
| 1421 | + border-top: 1px solid #ddd; |
|---|
| 1422 | +} |
|---|
| 1423 | +.table > thead > tr > th { |
|---|
| 1424 | + vertical-align: bottom; |
|---|
| 1425 | + border-bottom: 2px solid #ddd; |
|---|
| 1426 | +} |
|---|
| 1427 | +.table > caption + thead > tr:first-child > th, |
|---|
| 1428 | +.table > colgroup + thead > tr:first-child > th, |
|---|
| 1429 | +.table > thead:first-child > tr:first-child > th, |
|---|
| 1430 | +.table > caption + thead > tr:first-child > td, |
|---|
| 1431 | +.table > colgroup + thead > tr:first-child > td, |
|---|
| 1432 | +.table > thead:first-child > tr:first-child > td { |
|---|
| 1433 | + border-top: 0; |
|---|
| 1434 | +} |
|---|
| 1435 | +.table > tbody + tbody { |
|---|
| 1436 | + border-top: 2px solid #ddd; |
|---|
| 1437 | +} |
|---|
| 1438 | +.table .table { |
|---|
| 1439 | + background-color: #fff; |
|---|
| 1440 | +} |
|---|
| 1441 | +.table-condensed > thead > tr > th, |
|---|
| 1442 | +.table-condensed > tbody > tr > th, |
|---|
| 1443 | +.table-condensed > tfoot > tr > th, |
|---|
| 1444 | +.table-condensed > thead > tr > td, |
|---|
| 1445 | +.table-condensed > tbody > tr > td, |
|---|
| 1446 | +.table-condensed > tfoot > tr > td { |
|---|
| 1447 | + padding: 5px; |
|---|
| 1448 | +} |
|---|
| 1449 | +.table-bordered { |
|---|
| 1450 | + border: 1px solid #ddd; |
|---|
| 1451 | +} |
|---|
| 1452 | +.table-bordered > thead > tr > th, |
|---|
| 1453 | +.table-bordered > tbody > tr > th, |
|---|
| 1454 | +.table-bordered > tfoot > tr > th, |
|---|
| 1455 | +.table-bordered > thead > tr > td, |
|---|
| 1456 | +.table-bordered > tbody > tr > td, |
|---|
| 1457 | +.table-bordered > tfoot > tr > td { |
|---|
| 1458 | + border: 1px solid #ddd; |
|---|
| 1459 | +} |
|---|
| 1460 | +.table-bordered > thead > tr > th, |
|---|
| 1461 | +.table-bordered > thead > tr > td { |
|---|
| 1462 | + border-bottom-width: 2px; |
|---|
| 1463 | +} |
|---|
| 1464 | +.table-striped > tbody > tr:nth-child(odd) > td, |
|---|
| 1465 | +.table-striped > tbody > tr:nth-child(odd) > th { |
|---|
| 1466 | + background-color: #f9f9f9; |
|---|
| 1467 | +} |
|---|
| 1468 | +.table-hover > tbody > tr:hover > td, |
|---|
| 1469 | +.table-hover > tbody > tr:hover > th { |
|---|
| 1470 | + background-color: #f5f5f5; |
|---|
| 1471 | +} |
|---|
| 1472 | +table col[class*="col-"] { |
|---|
| 1473 | + position: static; |
|---|
| 1474 | + display: table-column; |
|---|
| 1475 | + float: none; |
|---|
| 1476 | +} |
|---|
| 1477 | +table td[class*="col-"], |
|---|
| 1478 | +table th[class*="col-"] { |
|---|
| 1479 | + position: static; |
|---|
| 1480 | + display: table-cell; |
|---|
| 1481 | + float: none; |
|---|
| 1482 | +} |
|---|
| 1483 | +.table > thead > tr > td.active, |
|---|
| 1484 | +.table > tbody > tr > td.active, |
|---|
| 1485 | +.table > tfoot > tr > td.active, |
|---|
| 1486 | +.table > thead > tr > th.active, |
|---|
| 1487 | +.table > tbody > tr > th.active, |
|---|
| 1488 | +.table > tfoot > tr > th.active, |
|---|
| 1489 | +.table > thead > tr.active > td, |
|---|
| 1490 | +.table > tbody > tr.active > td, |
|---|
| 1491 | +.table > tfoot > tr.active > td, |
|---|
| 1492 | +.table > thead > tr.active > th, |
|---|
| 1493 | +.table > tbody > tr.active > th, |
|---|
| 1494 | +.table > tfoot > tr.active > th { |
|---|
| 1495 | + background-color: #f5f5f5; |
|---|
| 1496 | +} |
|---|
| 1497 | +.table-hover > tbody > tr > td.active:hover, |
|---|
| 1498 | +.table-hover > tbody > tr > th.active:hover, |
|---|
| 1499 | +.table-hover > tbody > tr.active:hover > td, |
|---|
| 1500 | +.table-hover > tbody > tr.active:hover > th { |
|---|
| 1501 | + background-color: #e8e8e8; |
|---|
| 1502 | +} |
|---|
| 1503 | +.table > thead > tr > td.success, |
|---|
| 1504 | +.table > tbody > tr > td.success, |
|---|
| 1505 | +.table > tfoot > tr > td.success, |
|---|
| 1506 | +.table > thead > tr > th.success, |
|---|
| 1507 | +.table > tbody > tr > th.success, |
|---|
| 1508 | +.table > tfoot > tr > th.success, |
|---|
| 1509 | +.table > thead > tr.success > td, |
|---|
| 1510 | +.table > tbody > tr.success > td, |
|---|
| 1511 | +.table > tfoot > tr.success > td, |
|---|
| 1512 | +.table > thead > tr.success > th, |
|---|
| 1513 | +.table > tbody > tr.success > th, |
|---|
| 1514 | +.table > tfoot > tr.success > th { |
|---|
| 1515 | + background-color: #dff0d8; |
|---|
| 1516 | +} |
|---|
| 1517 | +.table-hover > tbody > tr > td.success:hover, |
|---|
| 1518 | +.table-hover > tbody > tr > th.success:hover, |
|---|
| 1519 | +.table-hover > tbody > tr.success:hover > td, |
|---|
| 1520 | +.table-hover > tbody > tr.success:hover > th { |
|---|
| 1521 | + background-color: #d0e9c6; |
|---|
| 1522 | +} |
|---|
| 1523 | +.table > thead > tr > td.info, |
|---|
| 1524 | +.table > tbody > tr > td.info, |
|---|
| 1525 | +.table > tfoot > tr > td.info, |
|---|
| 1526 | +.table > thead > tr > th.info, |
|---|
| 1527 | +.table > tbody > tr > th.info, |
|---|
| 1528 | +.table > tfoot > tr > th.info, |
|---|
| 1529 | +.table > thead > tr.info > td, |
|---|
| 1530 | +.table > tbody > tr.info > td, |
|---|
| 1531 | +.table > tfoot > tr.info > td, |
|---|
| 1532 | +.table > thead > tr.info > th, |
|---|
| 1533 | +.table > tbody > tr.info > th, |
|---|
| 1534 | +.table > tfoot > tr.info > th { |
|---|
| 1535 | + background-color: #d9edf7; |
|---|
| 1536 | +} |
|---|
| 1537 | +.table-hover > tbody > tr > td.info:hover, |
|---|
| 1538 | +.table-hover > tbody > tr > th.info:hover, |
|---|
| 1539 | +.table-hover > tbody > tr.info:hover > td, |
|---|
| 1540 | +.table-hover > tbody > tr.info:hover > th { |
|---|
| 1541 | + background-color: #c4e3f3; |
|---|
| 1542 | +} |
|---|
| 1543 | +.table > thead > tr > td.warning, |
|---|
| 1544 | +.table > tbody > tr > td.warning, |
|---|
| 1545 | +.table > tfoot > tr > td.warning, |
|---|
| 1546 | +.table > thead > tr > th.warning, |
|---|
| 1547 | +.table > tbody > tr > th.warning, |
|---|
| 1548 | +.table > tfoot > tr > th.warning, |
|---|
| 1549 | +.table > thead > tr.warning > td, |
|---|
| 1550 | +.table > tbody > tr.warning > td, |
|---|
| 1551 | +.table > tfoot > tr.warning > td, |
|---|
| 1552 | +.table > thead > tr.warning > th, |
|---|
| 1553 | +.table > tbody > tr.warning > th, |
|---|
| 1554 | +.table > tfoot > tr.warning > th { |
|---|
| 1555 | + background-color: #fcf8e3; |
|---|
| 1556 | +} |
|---|
| 1557 | +.table-hover > tbody > tr > td.warning:hover, |
|---|
| 1558 | +.table-hover > tbody > tr > th.warning:hover, |
|---|
| 1559 | +.table-hover > tbody > tr.warning:hover > td, |
|---|
| 1560 | +.table-hover > tbody > tr.warning:hover > th { |
|---|
| 1561 | + background-color: #faf2cc; |
|---|
| 1562 | +} |
|---|
| 1563 | +.table > thead > tr > td.danger, |
|---|
| 1564 | +.table > tbody > tr > td.danger, |
|---|
| 1565 | +.table > tfoot > tr > td.danger, |
|---|
| 1566 | +.table > thead > tr > th.danger, |
|---|
| 1567 | +.table > tbody > tr > th.danger, |
|---|
| 1568 | +.table > tfoot > tr > th.danger, |
|---|
| 1569 | +.table > thead > tr.danger > td, |
|---|
| 1570 | +.table > tbody > tr.danger > td, |
|---|
| 1571 | +.table > tfoot > tr.danger > td, |
|---|
| 1572 | +.table > thead > tr.danger > th, |
|---|
| 1573 | +.table > tbody > tr.danger > th, |
|---|
| 1574 | +.table > tfoot > tr.danger > th { |
|---|
| 1575 | + background-color: #f2dede; |
|---|
| 1576 | +} |
|---|
| 1577 | +.table-hover > tbody > tr > td.danger:hover, |
|---|
| 1578 | +.table-hover > tbody > tr > th.danger:hover, |
|---|
| 1579 | +.table-hover > tbody > tr.danger:hover > td, |
|---|
| 1580 | +.table-hover > tbody > tr.danger:hover > th { |
|---|
| 1581 | + background-color: #ebcccc; |
|---|
| 1582 | +} |
|---|
| 1583 | +@media (max-width: 767px) { |
|---|
| 1584 | + .table-responsive { |
|---|
| 1585 | + width: 100%; |
|---|
| 1586 | + margin-bottom: 15px; |
|---|
| 1587 | + overflow-x: scroll; |
|---|
| 1588 | + overflow-y: hidden; |
|---|
| 1589 | + -webkit-overflow-scrolling: touch; |
|---|
| 1590 | + -ms-overflow-style: -ms-autohiding-scrollbar; |
|---|
| 1591 | + border: 1px solid #ddd; |
|---|
| 1592 | + } |
|---|
| 1593 | + .table-responsive > .table { |
|---|
| 1594 | + margin-bottom: 0; |
|---|
| 1595 | + } |
|---|
| 1596 | + .table-responsive > .table > thead > tr > th, |
|---|
| 1597 | + .table-responsive > .table > tbody > tr > th, |
|---|
| 1598 | + .table-responsive > .table > tfoot > tr > th, |
|---|
| 1599 | + .table-responsive > .table > thead > tr > td, |
|---|
| 1600 | + .table-responsive > .table > tbody > tr > td, |
|---|
| 1601 | + .table-responsive > .table > tfoot > tr > td { |
|---|
| 1602 | + white-space: nowrap; |
|---|
| 1603 | + } |
|---|
| 1604 | + .table-responsive > .table-bordered { |
|---|
| 1605 | + border: 0; |
|---|
| 1606 | + } |
|---|
| 1607 | + .table-responsive > .table-bordered > thead > tr > th:first-child, |
|---|
| 1608 | + .table-responsive > .table-bordered > tbody > tr > th:first-child, |
|---|
| 1609 | + .table-responsive > .table-bordered > tfoot > tr > th:first-child, |
|---|
| 1610 | + .table-responsive > .table-bordered > thead > tr > td:first-child, |
|---|
| 1611 | + .table-responsive > .table-bordered > tbody > tr > td:first-child, |
|---|
| 1612 | + .table-responsive > .table-bordered > tfoot > tr > td:first-child { |
|---|
| 1613 | + border-left: 0; |
|---|
| 1614 | + } |
|---|
| 1615 | + .table-responsive > .table-bordered > thead > tr > th:last-child, |
|---|
| 1616 | + .table-responsive > .table-bordered > tbody > tr > th:last-child, |
|---|
| 1617 | + .table-responsive > .table-bordered > tfoot > tr > th:last-child, |
|---|
| 1618 | + .table-responsive > .table-bordered > thead > tr > td:last-child, |
|---|
| 1619 | + .table-responsive > .table-bordered > tbody > tr > td:last-child, |
|---|
| 1620 | + .table-responsive > .table-bordered > tfoot > tr > td:last-child { |
|---|
| 1621 | + border-right: 0; |
|---|
| 1622 | + } |
|---|
| 1623 | + .table-responsive > .table-bordered > tbody > tr:last-child > th, |
|---|
| 1624 | + .table-responsive > .table-bordered > tfoot > tr:last-child > th, |
|---|
| 1625 | + .table-responsive > .table-bordered > tbody > tr:last-child > td, |
|---|
| 1626 | + .table-responsive > .table-bordered > tfoot > tr:last-child > td { |
|---|
| 1627 | + border-bottom: 0; |
|---|
| 1628 | + } |
|---|
| 1629 | +} |
|---|
| 1630 | +fieldset { |
|---|
| 1631 | + min-width: 0; |
|---|
| 1632 | + padding: 0; |
|---|
| 1633 | + margin: 0; |
|---|
| 1634 | + border: 0; |
|---|
| 1635 | +} |
|---|
| 1636 | +legend { |
|---|
| 1637 | + display: block; |
|---|
| 1638 | + width: 100%; |
|---|
| 1639 | + padding: 0; |
|---|
| 1640 | + margin-bottom: 20px; |
|---|
| 1641 | + font-size: 21px; |
|---|
| 1642 | + line-height: inherit; |
|---|
| 1643 | + color: #333; |
|---|
| 1644 | + border: 0; |
|---|
| 1645 | + border-bottom: 1px solid #e5e5e5; |
|---|
| 1646 | +} |
|---|
| 1647 | +label { |
|---|
| 1648 | + display: inline-block; |
|---|
| 1649 | + margin-bottom: 5px; |
|---|
| 1650 | + font-weight: bold; |
|---|
| 1651 | +} |
|---|
| 1652 | +input[type="search"] { |
|---|
| 1653 | + -webkit-box-sizing: border-box; |
|---|
| 1654 | + -moz-box-sizing: border-box; |
|---|
| 1655 | + box-sizing: border-box; |
|---|
| 1656 | +} |
|---|
| 1657 | +input[type="radio"], |
|---|
| 1658 | +input[type="checkbox"] { |
|---|
| 1659 | + margin: 4px 0 0; |
|---|
| 1660 | + margin-top: 1px \9; |
|---|
| 1661 | + /* IE8-9 */ |
|---|
| 1662 | + line-height: normal; |
|---|
| 1663 | +} |
|---|
| 1664 | +input[type="file"] { |
|---|
| 1665 | + display: block; |
|---|
| 1666 | +} |
|---|
| 1667 | +input[type="range"] { |
|---|
| 1668 | + display: block; |
|---|
| 1669 | + width: 100%; |
|---|
| 1670 | +} |
|---|
| 1671 | +select[multiple], |
|---|
| 1672 | +select[size] { |
|---|
| 1673 | + height: auto; |
|---|
| 1674 | +} |
|---|
| 1675 | +input[type="file"]:focus, |
|---|
| 1676 | +input[type="radio"]:focus, |
|---|
| 1677 | +input[type="checkbox"]:focus { |
|---|
| 1678 | + outline: thin dotted; |
|---|
| 1679 | + outline: 5px auto -webkit-focus-ring-color; |
|---|
| 1680 | + outline-offset: -2px; |
|---|
| 1681 | +} |
|---|
| 1682 | +output { |
|---|
| 1683 | + display: block; |
|---|
| 1684 | + padding-top: 7px; |
|---|
| 1685 | + font-size: 14px; |
|---|
| 1686 | + line-height: 1.428571429; |
|---|
| 1687 | + color: #555; |
|---|
| 1688 | +} |
|---|
| 1689 | +.form-control { |
|---|
| 1690 | + display: block; |
|---|
| 1691 | + width: 100%; |
|---|
| 1692 | + height: 34px; |
|---|
| 1693 | + padding: 6px 12px; |
|---|
| 1694 | + font-size: 14px; |
|---|
| 1695 | + line-height: 1.428571429; |
|---|
| 1696 | + color: #555; |
|---|
| 1697 | + background-color: #fff; |
|---|
| 1698 | + background-image: none; |
|---|
| 1699 | + border: 1px solid #ccc; |
|---|
| 1700 | + border-radius: 4px; |
|---|
| 1701 | + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); |
|---|
| 1702 | + box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); |
|---|
| 1703 | + -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; |
|---|
| 1704 | + transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; |
|---|
| 1705 | +} |
|---|
| 1706 | +.form-control:focus { |
|---|
| 1707 | + border-color: #66afe9; |
|---|
| 1708 | + outline: 0; |
|---|
| 1709 | + -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6); |
|---|
| 1710 | + box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6); |
|---|
| 1711 | +} |
|---|
| 1712 | +.form-control:-moz-placeholder { |
|---|
| 1713 | + color: #999; |
|---|
| 1714 | +} |
|---|
| 1715 | +.form-control::-moz-placeholder { |
|---|
| 1716 | + color: #999; |
|---|
| 1717 | + opacity: 1; |
|---|
| 1718 | +} |
|---|
| 1719 | +.form-control:-ms-input-placeholder { |
|---|
| 1720 | + color: #999; |
|---|
| 1721 | +} |
|---|
| 1722 | +.form-control::-webkit-input-placeholder { |
|---|
| 1723 | + color: #999; |
|---|
| 1724 | +} |
|---|
| 1725 | +.form-control[disabled], |
|---|
| 1726 | +.form-control[readonly], |
|---|
| 1727 | +fieldset[disabled] .form-control { |
|---|
| 1728 | + cursor: not-allowed; |
|---|
| 1729 | + background-color: #eee; |
|---|
| 1730 | + opacity: 1; |
|---|
| 1731 | +} |
|---|
| 1732 | +textarea.form-control { |
|---|
| 1733 | + height: auto; |
|---|
| 1734 | +} |
|---|
| 1735 | +input[type="date"] { |
|---|
| 1736 | + line-height: 34px; |
|---|
| 1737 | +} |
|---|
| 1738 | +.form-group { |
|---|
| 1739 | + margin-bottom: 15px; |
|---|
| 1740 | +} |
|---|
| 1741 | +.radio, |
|---|
| 1742 | +.checkbox { |
|---|
| 1743 | + display: block; |
|---|
| 1744 | + min-height: 20px; |
|---|
| 1745 | + padding-left: 20px; |
|---|
| 1746 | + margin-top: 10px; |
|---|
| 1747 | + margin-bottom: 10px; |
|---|
| 1748 | +} |
|---|
| 1749 | +.radio label, |
|---|
| 1750 | +.checkbox label { |
|---|
| 1751 | + display: inline; |
|---|
| 1752 | + font-weight: normal; |
|---|
| 1753 | + cursor: pointer; |
|---|
| 1754 | +} |
|---|
| 1755 | +.radio input[type="radio"], |
|---|
| 1756 | +.radio-inline input[type="radio"], |
|---|
| 1757 | +.checkbox input[type="checkbox"], |
|---|
| 1758 | +.checkbox-inline input[type="checkbox"] { |
|---|
| 1759 | + float: left; |
|---|
| 1760 | + margin-left: -20px; |
|---|
| 1761 | +} |
|---|
| 1762 | +.radio + .radio, |
|---|
| 1763 | +.checkbox + .checkbox { |
|---|
| 1764 | + margin-top: -5px; |
|---|
| 1765 | +} |
|---|
| 1766 | +.radio-inline, |
|---|
| 1767 | +.checkbox-inline { |
|---|
| 1768 | + display: inline-block; |
|---|
| 1769 | + padding-left: 20px; |
|---|
| 1770 | + margin-bottom: 0; |
|---|
| 1771 | + font-weight: normal; |
|---|
| 1772 | + vertical-align: middle; |
|---|
| 1773 | + cursor: pointer; |
|---|
| 1774 | +} |
|---|
| 1775 | +.radio-inline + .radio-inline, |
|---|
| 1776 | +.checkbox-inline + .checkbox-inline { |
|---|
| 1777 | + margin-top: 0; |
|---|
| 1778 | + margin-left: 10px; |
|---|
| 1779 | +} |
|---|
| 1780 | +input[type="radio"][disabled], |
|---|
| 1781 | +input[type="checkbox"][disabled], |
|---|
| 1782 | +.radio[disabled], |
|---|
| 1783 | +.radio-inline[disabled], |
|---|
| 1784 | +.checkbox[disabled], |
|---|
| 1785 | +.checkbox-inline[disabled], |
|---|
| 1786 | +fieldset[disabled] input[type="radio"], |
|---|
| 1787 | +fieldset[disabled] input[type="checkbox"], |
|---|
| 1788 | +fieldset[disabled] .radio, |
|---|
| 1789 | +fieldset[disabled] .radio-inline, |
|---|
| 1790 | +fieldset[disabled] .checkbox, |
|---|
| 1791 | +fieldset[disabled] .checkbox-inline { |
|---|
| 1792 | + cursor: not-allowed; |
|---|
| 1793 | +} |
|---|
| 1794 | +.input-sm { |
|---|
| 1795 | + height: 30px; |
|---|
| 1796 | + padding: 5px 10px; |
|---|
| 1797 | + font-size: 12px; |
|---|
| 1798 | + line-height: 1.5; |
|---|
| 1799 | + border-radius: 3px; |
|---|
| 1800 | +} |
|---|
| 1801 | +select.input-sm { |
|---|
| 1802 | + height: 30px; |
|---|
| 1803 | + line-height: 30px; |
|---|
| 1804 | +} |
|---|
| 1805 | +textarea.input-sm, |
|---|
| 1806 | +select[multiple].input-sm { |
|---|
| 1807 | + height: auto; |
|---|
| 1808 | +} |
|---|
| 1809 | +.input-lg { |
|---|
| 1810 | + height: 46px; |
|---|
| 1811 | + padding: 10px 16px; |
|---|
| 1812 | + font-size: 18px; |
|---|
| 1813 | + line-height: 1.33; |
|---|
| 1814 | + border-radius: 6px; |
|---|
| 1815 | +} |
|---|
| 1816 | +select.input-lg { |
|---|
| 1817 | + height: 46px; |
|---|
| 1818 | + line-height: 46px; |
|---|
| 1819 | +} |
|---|
| 1820 | +textarea.input-lg, |
|---|
| 1821 | +select[multiple].input-lg { |
|---|
| 1822 | + height: auto; |
|---|
| 1823 | +} |
|---|
| 1824 | +.has-feedback { |
|---|
| 1825 | + position: relative; |
|---|
| 1826 | +} |
|---|
| 1827 | +.has-feedback .form-control { |
|---|
| 1828 | + padding-right: 42.5px; |
|---|
| 1829 | +} |
|---|
| 1830 | +.has-feedback .form-control-feedback { |
|---|
| 1831 | + position: absolute; |
|---|
| 1832 | + top: 25px; |
|---|
| 1833 | + right: 0; |
|---|
| 1834 | + display: block; |
|---|
| 1835 | + width: 34px; |
|---|
| 1836 | + height: 34px; |
|---|
| 1837 | + line-height: 34px; |
|---|
| 1838 | + text-align: center; |
|---|
| 1839 | +} |
|---|
| 1840 | +.has-success .help-block, |
|---|
| 1841 | +.has-success .control-label, |
|---|
| 1842 | +.has-success .radio, |
|---|
| 1843 | +.has-success .checkbox, |
|---|
| 1844 | +.has-success .radio-inline, |
|---|
| 1845 | +.has-success .checkbox-inline { |
|---|
| 1846 | + color: #3c763d; |
|---|
| 1847 | +} |
|---|
| 1848 | +.has-success .form-control { |
|---|
| 1849 | + border-color: #3c763d; |
|---|
| 1850 | + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); |
|---|
| 1851 | + box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); |
|---|
| 1852 | +} |
|---|
| 1853 | +.has-success .form-control:focus { |
|---|
| 1854 | + border-color: #2b542c; |
|---|
| 1855 | + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168; |
|---|
| 1856 | + box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168; |
|---|
| 1857 | +} |
|---|
| 1858 | +.has-success .input-group-addon { |
|---|
| 1859 | + color: #3c763d; |
|---|
| 1860 | + background-color: #dff0d8; |
|---|
| 1861 | + border-color: #3c763d; |
|---|
| 1862 | +} |
|---|
| 1863 | +.has-success .form-control-feedback { |
|---|
| 1864 | + color: #3c763d; |
|---|
| 1865 | +} |
|---|
| 1866 | +.has-warning .help-block, |
|---|
| 1867 | +.has-warning .control-label, |
|---|
| 1868 | +.has-warning .radio, |
|---|
| 1869 | +.has-warning .checkbox, |
|---|
| 1870 | +.has-warning .radio-inline, |
|---|
| 1871 | +.has-warning .checkbox-inline { |
|---|
| 1872 | + color: #8a6d3b; |
|---|
| 1873 | +} |
|---|
| 1874 | +.has-warning .form-control { |
|---|
| 1875 | + border-color: #8a6d3b; |
|---|
| 1876 | + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); |
|---|
| 1877 | + box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); |
|---|
| 1878 | +} |
|---|
| 1879 | +.has-warning .form-control:focus { |
|---|
| 1880 | + border-color: #66512c; |
|---|
| 1881 | + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b; |
|---|
| 1882 | + box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b; |
|---|
| 1883 | +} |
|---|
| 1884 | +.has-warning .input-group-addon { |
|---|
| 1885 | + color: #8a6d3b; |
|---|
| 1886 | + background-color: #fcf8e3; |
|---|
| 1887 | + border-color: #8a6d3b; |
|---|
| 1888 | +} |
|---|
| 1889 | +.has-warning .form-control-feedback { |
|---|
| 1890 | + color: #8a6d3b; |
|---|
| 1891 | +} |
|---|
| 1892 | +.has-error .help-block, |
|---|
| 1893 | +.has-error .control-label, |
|---|
| 1894 | +.has-error .radio, |
|---|
| 1895 | +.has-error .checkbox, |
|---|
| 1896 | +.has-error .radio-inline, |
|---|
| 1897 | +.has-error .checkbox-inline { |
|---|
| 1898 | + color: #a94442; |
|---|
| 1899 | +} |
|---|
| 1900 | +.has-error .form-control { |
|---|
| 1901 | + border-color: #a94442; |
|---|
| 1902 | + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); |
|---|
| 1903 | + box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); |
|---|
| 1904 | +} |
|---|
| 1905 | +.has-error .form-control:focus { |
|---|
| 1906 | + border-color: #843534; |
|---|
| 1907 | + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483; |
|---|
| 1908 | + box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483; |
|---|
| 1909 | +} |
|---|
| 1910 | +.has-error .input-group-addon { |
|---|
| 1911 | + color: #a94442; |
|---|
| 1912 | + background-color: #f2dede; |
|---|
| 1913 | + border-color: #a94442; |
|---|
| 1914 | +} |
|---|
| 1915 | +.has-error .form-control-feedback { |
|---|
| 1916 | + color: #a94442; |
|---|
| 1917 | +} |
|---|
| 1918 | +.form-control-static { |
|---|
| 1919 | + margin-bottom: 0; |
|---|
| 1920 | +} |
|---|
| 1921 | +.help-block { |
|---|
| 1922 | + display: block; |
|---|
| 1923 | + margin-top: 5px; |
|---|
| 1924 | + margin-bottom: 10px; |
|---|
| 1925 | + color: #737373; |
|---|
| 1926 | +} |
|---|
| 1927 | +@media (min-width: 768px) { |
|---|
| 1928 | + .form-inline .form-group { |
|---|
| 1929 | + display: inline-block; |
|---|
| 1930 | + margin-bottom: 0; |
|---|
| 1931 | + vertical-align: middle; |
|---|
| 1932 | + } |
|---|
| 1933 | + .form-inline .form-control { |
|---|
| 1934 | + display: inline-block; |
|---|
| 1935 | + width: auto; |
|---|
| 1936 | + vertical-align: middle; |
|---|
| 1937 | + } |
|---|
| 1938 | + .form-inline .control-label { |
|---|
| 1939 | + margin-bottom: 0; |
|---|
| 1940 | + vertical-align: middle; |
|---|
| 1941 | + } |
|---|
| 1942 | + .form-inline .radio, |
|---|
| 1943 | + .form-inline .checkbox { |
|---|
| 1944 | + display: inline-block; |
|---|
| 1945 | + padding-left: 0; |
|---|
| 1946 | + margin-top: 0; |
|---|
| 1947 | + margin-bottom: 0; |
|---|
| 1948 | + vertical-align: middle; |
|---|
| 1949 | + } |
|---|
| 1950 | + .form-inline .radio input[type="radio"], |
|---|
| 1951 | + .form-inline .checkbox input[type="checkbox"] { |
|---|
| 1952 | + float: none; |
|---|
| 1953 | + margin-left: 0; |
|---|
| 1954 | + } |
|---|
| 1955 | + .form-inline .has-feedback .form-control-feedback { |
|---|
| 1956 | + top: 0; |
|---|
| 1957 | + } |
|---|
| 1958 | +} |
|---|
| 1959 | +.form-horizontal .control-label, |
|---|
| 1960 | +.form-horizontal .radio, |
|---|
| 1961 | +.form-horizontal .checkbox, |
|---|
| 1962 | +.form-horizontal .radio-inline, |
|---|
| 1963 | +.form-horizontal .checkbox-inline { |
|---|
| 1964 | + padding-top: 7px; |
|---|
| 1965 | + margin-top: 0; |
|---|
| 1966 | + margin-bottom: 0; |
|---|
| 1967 | +} |
|---|
| 1968 | +.form-horizontal .radio, |
|---|
| 1969 | +.form-horizontal .checkbox { |
|---|
| 1970 | + min-height: 27px; |
|---|
| 1971 | +} |
|---|
| 1972 | +.form-horizontal .form-group { |
|---|
| 1973 | + margin-right: -15px; |
|---|
| 1974 | + margin-left: -15px; |
|---|
| 1975 | +} |
|---|
| 1976 | +.form-horizontal .form-control-static { |
|---|
| 1977 | + padding-top: 7px; |
|---|
| 1978 | +} |
|---|
| 1979 | +@media (min-width: 768px) { |
|---|
| 1980 | + .form-horizontal .control-label { |
|---|
| 1981 | + text-align: right; |
|---|
| 1982 | + } |
|---|
| 1983 | +} |
|---|
| 1984 | +.form-horizontal .has-feedback .form-control-feedback { |
|---|
| 1985 | + top: 0; |
|---|
| 1986 | + right: 15px; |
|---|
| 1987 | +} |
|---|
| 1988 | +.btn { |
|---|
| 1989 | + display: inline-block; |
|---|
| 1990 | + padding: 6px 12px; |
|---|
| 1991 | + margin-bottom: 0; |
|---|
| 1992 | + font-size: 14px; |
|---|
| 1993 | + font-weight: normal; |
|---|
| 1994 | + line-height: 1.428571429; |
|---|
| 1995 | + text-align: center; |
|---|
| 1996 | + white-space: nowrap; |
|---|
| 1997 | + vertical-align: middle; |
|---|
| 1998 | + cursor: pointer; |
|---|
| 1999 | + -webkit-user-select: none; |
|---|
| 2000 | + -moz-user-select: none; |
|---|
| 2001 | + -ms-user-select: none; |
|---|
| 2002 | + -o-user-select: none; |
|---|
| 2003 | + user-select: none; |
|---|
| 2004 | + background-image: none; |
|---|
| 2005 | + border: 1px solid transparent; |
|---|
| 2006 | + border-radius: 4px; |
|---|
| 2007 | +} |
|---|
| 2008 | +.btn:focus { |
|---|
| 2009 | + outline: thin dotted; |
|---|
| 2010 | + outline: 5px auto -webkit-focus-ring-color; |
|---|
| 2011 | + outline-offset: -2px; |
|---|
| 2012 | +} |
|---|
| 2013 | +.btn:hover, |
|---|
| 2014 | +.btn:focus { |
|---|
| 2015 | + color: #333; |
|---|
| 2016 | + text-decoration: none; |
|---|
| 2017 | +} |
|---|
| 2018 | +.btn:active, |
|---|
| 2019 | +.btn.active { |
|---|
| 2020 | + background-image: none; |
|---|
| 2021 | + outline: 0; |
|---|
| 2022 | + -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); |
|---|
| 2023 | + box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); |
|---|
| 2024 | +} |
|---|
| 2025 | +.btn.disabled, |
|---|
| 2026 | +.btn[disabled], |
|---|
| 2027 | +fieldset[disabled] .btn { |
|---|
| 2028 | + pointer-events: none; |
|---|
| 2029 | + cursor: not-allowed; |
|---|
| 2030 | + filter: alpha(opacity=65); |
|---|
| 2031 | + -webkit-box-shadow: none; |
|---|
| 2032 | + box-shadow: none; |
|---|
| 2033 | + opacity: .65; |
|---|
| 2034 | +} |
|---|
| 2035 | +.btn-default { |
|---|
| 2036 | + color: #333; |
|---|
| 2037 | + background-color: #fff; |
|---|
| 2038 | + border-color: #ccc; |
|---|
| 2039 | +} |
|---|
| 2040 | +.btn-default:hover, |
|---|
| 2041 | +.btn-default:focus, |
|---|
| 2042 | +.btn-default:active, |
|---|
| 2043 | +.btn-default.active, |
|---|
| 2044 | +.open .dropdown-toggle.btn-default { |
|---|
| 2045 | + color: #333; |
|---|
| 2046 | + background-color: #ebebeb; |
|---|
| 2047 | + border-color: #adadad; |
|---|
| 2048 | +} |
|---|
| 2049 | +.btn-default:active, |
|---|
| 2050 | +.btn-default.active, |
|---|
| 2051 | +.open .dropdown-toggle.btn-default { |
|---|
| 2052 | + background-image: none; |
|---|
| 2053 | +} |
|---|
| 2054 | +.btn-default.disabled, |
|---|
| 2055 | +.btn-default[disabled], |
|---|
| 2056 | +fieldset[disabled] .btn-default, |
|---|
| 2057 | +.btn-default.disabled:hover, |
|---|
| 2058 | +.btn-default[disabled]:hover, |
|---|
| 2059 | +fieldset[disabled] .btn-default:hover, |
|---|
| 2060 | +.btn-default.disabled:focus, |
|---|
| 2061 | +.btn-default[disabled]:focus, |
|---|
| 2062 | +fieldset[disabled] .btn-default:focus, |
|---|
| 2063 | +.btn-default.disabled:active, |
|---|
| 2064 | +.btn-default[disabled]:active, |
|---|
| 2065 | +fieldset[disabled] .btn-default:active, |
|---|
| 2066 | +.btn-default.disabled.active, |
|---|
| 2067 | +.btn-default[disabled].active, |
|---|
| 2068 | +fieldset[disabled] .btn-default.active { |
|---|
| 2069 | + background-color: #fff; |
|---|
| 2070 | + border-color: #ccc; |
|---|
| 2071 | +} |
|---|
| 2072 | +.btn-default .badge { |
|---|
| 2073 | + color: #fff; |
|---|
| 2074 | + background-color: #333; |
|---|
| 2075 | +} |
|---|
| 2076 | +.btn-primary { |
|---|
| 2077 | + color: #fff; |
|---|
| 2078 | + background-color: #428bca; |
|---|
| 2079 | + border-color: #357ebd; |
|---|
| 2080 | +} |
|---|
| 2081 | +.btn-primary:hover, |
|---|
| 2082 | +.btn-primary:focus, |
|---|
| 2083 | +.btn-primary:active, |
|---|
| 2084 | +.btn-primary.active, |
|---|
| 2085 | +.open .dropdown-toggle.btn-primary { |
|---|
| 2086 | + color: #fff; |
|---|
| 2087 | + background-color: #3276b1; |
|---|
| 2088 | + border-color: #285e8e; |
|---|
| 2089 | +} |
|---|
| 2090 | +.btn-primary:active, |
|---|
| 2091 | +.btn-primary.active, |
|---|
| 2092 | +.open .dropdown-toggle.btn-primary { |
|---|
| 2093 | + background-image: none; |
|---|
| 2094 | +} |
|---|
| 2095 | +.btn-primary.disabled, |
|---|
| 2096 | +.btn-primary[disabled], |
|---|
| 2097 | +fieldset[disabled] .btn-primary, |
|---|
| 2098 | +.btn-primary.disabled:hover, |
|---|
| 2099 | +.btn-primary[disabled]:hover, |
|---|
| 2100 | +fieldset[disabled] .btn-primary:hover, |
|---|
| 2101 | +.btn-primary.disabled:focus, |
|---|
| 2102 | +.btn-primary[disabled]:focus, |
|---|
| 2103 | +fieldset[disabled] .btn-primary:focus, |
|---|
| 2104 | +.btn-primary.disabled:active, |
|---|
| 2105 | +.btn-primary[disabled]:active, |
|---|
| 2106 | +fieldset[disabled] .btn-primary:active, |
|---|
| 2107 | +.btn-primary.disabled.active, |
|---|
| 2108 | +.btn-primary[disabled].active, |
|---|
| 2109 | +fieldset[disabled] .btn-primary.active { |
|---|
| 2110 | + background-color: #428bca; |
|---|
| 2111 | + border-color: #357ebd; |
|---|
| 2112 | +} |
|---|
| 2113 | +.btn-primary .badge { |
|---|
| 2114 | + color: #428bca; |
|---|
| 2115 | + background-color: #fff; |
|---|
| 2116 | +} |
|---|
| 2117 | +.btn-success { |
|---|
| 2118 | + color: #fff; |
|---|
| 2119 | + background-color: #5cb85c; |
|---|
| 2120 | + border-color: #4cae4c; |
|---|
| 2121 | +} |
|---|
| 2122 | +.btn-success:hover, |
|---|
| 2123 | +.btn-success:focus, |
|---|
| 2124 | +.btn-success:active, |
|---|
| 2125 | +.btn-success.active, |
|---|
| 2126 | +.open .dropdown-toggle.btn-success { |
|---|
| 2127 | + color: #fff; |
|---|
| 2128 | + background-color: #47a447; |
|---|
| 2129 | + border-color: #398439; |
|---|
| 2130 | +} |
|---|
| 2131 | +.btn-success:active, |
|---|
| 2132 | +.btn-success.active, |
|---|
| 2133 | +.open .dropdown-toggle.btn-success { |
|---|
| 2134 | + background-image: none; |
|---|
| 2135 | +} |
|---|
| 2136 | +.btn-success.disabled, |
|---|
| 2137 | +.btn-success[disabled], |
|---|
| 2138 | +fieldset[disabled] .btn-success, |
|---|
| 2139 | +.btn-success.disabled:hover, |
|---|
| 2140 | +.btn-success[disabled]:hover, |
|---|
| 2141 | +fieldset[disabled] .btn-success:hover, |
|---|
| 2142 | +.btn-success.disabled:focus, |
|---|
| 2143 | +.btn-success[disabled]:focus, |
|---|
| 2144 | +fieldset[disabled] .btn-success:focus, |
|---|
| 2145 | +.btn-success.disabled:active, |
|---|
| 2146 | +.btn-success[disabled]:active, |
|---|
| 2147 | +fieldset[disabled] .btn-success:active, |
|---|
| 2148 | +.btn-success.disabled.active, |
|---|
| 2149 | +.btn-success[disabled].active, |
|---|
| 2150 | +fieldset[disabled] .btn-success.active { |
|---|
| 2151 | + background-color: #5cb85c; |
|---|
| 2152 | + border-color: #4cae4c; |
|---|
| 2153 | +} |
|---|
| 2154 | +.btn-success .badge { |
|---|
| 2155 | + color: #5cb85c; |
|---|
| 2156 | + background-color: #fff; |
|---|
| 2157 | +} |
|---|
| 2158 | +.btn-info { |
|---|
| 2159 | + color: #fff; |
|---|
| 2160 | + background-color: #5bc0de; |
|---|
| 2161 | + border-color: #46b8da; |
|---|
| 2162 | +} |
|---|
| 2163 | +.btn-info:hover, |
|---|
| 2164 | +.btn-info:focus, |
|---|
| 2165 | +.btn-info:active, |
|---|
| 2166 | +.btn-info.active, |
|---|
| 2167 | +.open .dropdown-toggle.btn-info { |
|---|
| 2168 | + color: #fff; |
|---|
| 2169 | + background-color: #39b3d7; |
|---|
| 2170 | + border-color: #269abc; |
|---|
| 2171 | +} |
|---|
| 2172 | +.btn-info:active, |
|---|
| 2173 | +.btn-info.active, |
|---|
| 2174 | +.open .dropdown-toggle.btn-info { |
|---|
| 2175 | + background-image: none; |
|---|
| 2176 | +} |
|---|
| 2177 | +.btn-info.disabled, |
|---|
| 2178 | +.btn-info[disabled], |
|---|
| 2179 | +fieldset[disabled] .btn-info, |
|---|
| 2180 | +.btn-info.disabled:hover, |
|---|
| 2181 | +.btn-info[disabled]:hover, |
|---|
| 2182 | +fieldset[disabled] .btn-info:hover, |
|---|
| 2183 | +.btn-info.disabled:focus, |
|---|
| 2184 | +.btn-info[disabled]:focus, |
|---|
| 2185 | +fieldset[disabled] .btn-info:focus, |
|---|
| 2186 | +.btn-info.disabled:active, |
|---|
| 2187 | +.btn-info[disabled]:active, |
|---|
| 2188 | +fieldset[disabled] .btn-info:active, |
|---|
| 2189 | +.btn-info.disabled.active, |
|---|
| 2190 | +.btn-info[disabled].active, |
|---|
| 2191 | +fieldset[disabled] .btn-info.active { |
|---|
| 2192 | + background-color: #5bc0de; |
|---|
| 2193 | + border-color: #46b8da; |
|---|
| 2194 | +} |
|---|
| 2195 | +.btn-info .badge { |
|---|
| 2196 | + color: #5bc0de; |
|---|
| 2197 | + background-color: #fff; |
|---|
| 2198 | +} |
|---|
| 2199 | +.btn-warning { |
|---|
| 2200 | + color: #fff; |
|---|
| 2201 | + background-color: #f0ad4e; |
|---|
| 2202 | + border-color: #eea236; |
|---|
| 2203 | +} |
|---|
| 2204 | +.btn-warning:hover, |
|---|
| 2205 | +.btn-warning:focus, |
|---|
| 2206 | +.btn-warning:active, |
|---|
| 2207 | +.btn-warning.active, |
|---|
| 2208 | +.open .dropdown-toggle.btn-warning { |
|---|
| 2209 | + color: #fff; |
|---|
| 2210 | + background-color: #ed9c28; |
|---|
| 2211 | + border-color: #d58512; |
|---|
| 2212 | +} |
|---|
| 2213 | +.btn-warning:active, |
|---|
| 2214 | +.btn-warning.active, |
|---|
| 2215 | +.open .dropdown-toggle.btn-warning { |
|---|
| 2216 | + background-image: none; |
|---|
| 2217 | +} |
|---|
| 2218 | +.btn-warning.disabled, |
|---|
| 2219 | +.btn-warning[disabled], |
|---|
| 2220 | +fieldset[disabled] .btn-warning, |
|---|
| 2221 | +.btn-warning.disabled:hover, |
|---|
| 2222 | +.btn-warning[disabled]:hover, |
|---|
| 2223 | +fieldset[disabled] .btn-warning:hover, |
|---|
| 2224 | +.btn-warning.disabled:focus, |
|---|
| 2225 | +.btn-warning[disabled]:focus, |
|---|
| 2226 | +fieldset[disabled] .btn-warning:focus, |
|---|
| 2227 | +.btn-warning.disabled:active, |
|---|
| 2228 | +.btn-warning[disabled]:active, |
|---|
| 2229 | +fieldset[disabled] .btn-warning:active, |
|---|
| 2230 | +.btn-warning.disabled.active, |
|---|
| 2231 | +.btn-warning[disabled].active, |
|---|
| 2232 | +fieldset[disabled] .btn-warning.active { |
|---|
| 2233 | + background-color: #f0ad4e; |
|---|
| 2234 | + border-color: #eea236; |
|---|
| 2235 | +} |
|---|
| 2236 | +.btn-warning .badge { |
|---|
| 2237 | + color: #f0ad4e; |
|---|
| 2238 | + background-color: #fff; |
|---|
| 2239 | +} |
|---|
| 2240 | +.btn-danger { |
|---|
| 2241 | + color: #fff; |
|---|
| 2242 | + background-color: #d9534f; |
|---|
| 2243 | + border-color: #d43f3a; |
|---|
| 2244 | +} |
|---|
| 2245 | +.btn-danger:hover, |
|---|
| 2246 | +.btn-danger:focus, |
|---|
| 2247 | +.btn-danger:active, |
|---|
| 2248 | +.btn-danger.active, |
|---|
| 2249 | +.open .dropdown-toggle.btn-danger { |
|---|
| 2250 | + color: #fff; |
|---|
| 2251 | + background-color: #d2322d; |
|---|
| 2252 | + border-color: #ac2925; |
|---|
| 2253 | +} |
|---|
| 2254 | +.btn-danger:active, |
|---|
| 2255 | +.btn-danger.active, |
|---|
| 2256 | +.open .dropdown-toggle.btn-danger { |
|---|
| 2257 | + background-image: none; |
|---|
| 2258 | +} |
|---|
| 2259 | +.btn-danger.disabled, |
|---|
| 2260 | +.btn-danger[disabled], |
|---|
| 2261 | +fieldset[disabled] .btn-danger, |
|---|
| 2262 | +.btn-danger.disabled:hover, |
|---|
| 2263 | +.btn-danger[disabled]:hover, |
|---|
| 2264 | +fieldset[disabled] .btn-danger:hover, |
|---|
| 2265 | +.btn-danger.disabled:focus, |
|---|
| 2266 | +.btn-danger[disabled]:focus, |
|---|
| 2267 | +fieldset[disabled] .btn-danger:focus, |
|---|
| 2268 | +.btn-danger.disabled:active, |
|---|
| 2269 | +.btn-danger[disabled]:active, |
|---|
| 2270 | +fieldset[disabled] .btn-danger:active, |
|---|
| 2271 | +.btn-danger.disabled.active, |
|---|
| 2272 | +.btn-danger[disabled].active, |
|---|
| 2273 | +fieldset[disabled] .btn-danger.active { |
|---|
| 2274 | + background-color: #d9534f; |
|---|
| 2275 | + border-color: #d43f3a; |
|---|
| 2276 | +} |
|---|
| 2277 | +.btn-danger .badge { |
|---|
| 2278 | + color: #d9534f; |
|---|
| 2279 | + background-color: #fff; |
|---|
| 2280 | +} |
|---|
| 2281 | +.btn-link { |
|---|
| 2282 | + font-weight: normal; |
|---|
| 2283 | + color: #428bca; |
|---|
| 2284 | + cursor: pointer; |
|---|
| 2285 | + border-radius: 0; |
|---|
| 2286 | +} |
|---|
| 2287 | +.btn-link, |
|---|
| 2288 | +.btn-link:active, |
|---|
| 2289 | +.btn-link[disabled], |
|---|
| 2290 | +fieldset[disabled] .btn-link { |
|---|
| 2291 | + background-color: transparent; |
|---|
| 2292 | + -webkit-box-shadow: none; |
|---|
| 2293 | + box-shadow: none; |
|---|
| 2294 | +} |
|---|
| 2295 | +.btn-link, |
|---|
| 2296 | +.btn-link:hover, |
|---|
| 2297 | +.btn-link:focus, |
|---|
| 2298 | +.btn-link:active { |
|---|
| 2299 | + border-color: transparent; |
|---|
| 2300 | +} |
|---|
| 2301 | +.btn-link:hover, |
|---|
| 2302 | +.btn-link:focus { |
|---|
| 2303 | + color: #2a6496; |
|---|
| 2304 | + text-decoration: underline; |
|---|
| 2305 | + background-color: transparent; |
|---|
| 2306 | +} |
|---|
| 2307 | +.btn-link[disabled]:hover, |
|---|
| 2308 | +fieldset[disabled] .btn-link:hover, |
|---|
| 2309 | +.btn-link[disabled]:focus, |
|---|
| 2310 | +fieldset[disabled] .btn-link:focus { |
|---|
| 2311 | + color: #999; |
|---|
| 2312 | + text-decoration: none; |
|---|
| 2313 | +} |
|---|
| 2314 | +.btn-lg { |
|---|
| 2315 | + padding: 10px 16px; |
|---|
| 2316 | + font-size: 18px; |
|---|
| 2317 | + line-height: 1.33; |
|---|
| 2318 | + border-radius: 6px; |
|---|
| 2319 | +} |
|---|
| 2320 | +.btn-sm { |
|---|
| 2321 | + padding: 5px 10px; |
|---|
| 2322 | + font-size: 12px; |
|---|
| 2323 | + line-height: 1.5; |
|---|
| 2324 | + border-radius: 3px; |
|---|
| 2325 | +} |
|---|
| 2326 | +.btn-xs { |
|---|
| 2327 | + padding: 1px 5px; |
|---|
| 2328 | + font-size: 12px; |
|---|
| 2329 | + line-height: 1.5; |
|---|
| 2330 | + border-radius: 3px; |
|---|
| 2331 | +} |
|---|
| 2332 | +.btn-block { |
|---|
| 2333 | + display: block; |
|---|
| 2334 | + width: 100%; |
|---|
| 2335 | + padding-right: 0; |
|---|
| 2336 | + padding-left: 0; |
|---|
| 2337 | +} |
|---|
| 2338 | +.btn-block + .btn-block { |
|---|
| 2339 | + margin-top: 5px; |
|---|
| 2340 | +} |
|---|
| 2341 | +input[type="submit"].btn-block, |
|---|
| 2342 | +input[type="reset"].btn-block, |
|---|
| 2343 | +input[type="button"].btn-block { |
|---|
| 2344 | + width: 100%; |
|---|
| 2345 | +} |
|---|
| 2346 | +.fade { |
|---|
| 2347 | + opacity: 0; |
|---|
| 2348 | + -webkit-transition: opacity .15s linear; |
|---|
| 2349 | + transition: opacity .15s linear; |
|---|
| 2350 | +} |
|---|
| 2351 | +.fade.in { |
|---|
| 2352 | + opacity: 1; |
|---|
| 2353 | +} |
|---|
| 2354 | +.collapse { |
|---|
| 2355 | + display: none; |
|---|
| 2356 | +} |
|---|
| 2357 | +.collapse.in { |
|---|
| 2358 | + display: block; |
|---|
| 2359 | +} |
|---|
| 2360 | +.collapsing { |
|---|
| 2361 | + position: relative; |
|---|
| 2362 | + height: 0; |
|---|
| 2363 | + overflow: hidden; |
|---|
| 2364 | + -webkit-transition: height .35s ease; |
|---|
| 2365 | + transition: height .35s ease; |
|---|
| 2366 | +} |
|---|
| 2367 | +@font-face { |
|---|
| 2368 | + font-family: 'Glyphicons Halflings'; |
|---|
| 2369 | + |
|---|
| 2370 | + src: url('../fonts/glyphicons-halflings-regular.eot'); |
|---|
| 2371 | + 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'); |
|---|
| 2372 | +} |
|---|
| 2373 | +.glyphicon { |
|---|
| 2374 | + position: relative; |
|---|
| 2375 | + top: 1px; |
|---|
| 2376 | + display: inline-block; |
|---|
| 2377 | + font-family: 'Glyphicons Halflings'; |
|---|
| 2378 | + font-style: normal; |
|---|
| 2379 | + font-weight: normal; |
|---|
| 2380 | + line-height: 1; |
|---|
| 2381 | + |
|---|
| 2382 | + -webkit-font-smoothing: antialiased; |
|---|
| 2383 | + -moz-osx-font-smoothing: grayscale; |
|---|
| 2384 | +} |
|---|
| 2385 | +.glyphicon-asterisk:before { |
|---|
| 2386 | + content: "\2a"; |
|---|
| 2387 | +} |
|---|
| 2388 | +.glyphicon-plus:before { |
|---|
| 2389 | + content: "\2b"; |
|---|
| 2390 | +} |
|---|
| 2391 | +.glyphicon-euro:before { |
|---|
| 2392 | + content: "\20ac"; |
|---|
| 2393 | +} |
|---|
| 2394 | +.glyphicon-minus:before { |
|---|
| 2395 | + content: "\2212"; |
|---|
| 2396 | +} |
|---|
| 2397 | +.glyphicon-cloud:before { |
|---|
| 2398 | + content: "\2601"; |
|---|
| 2399 | +} |
|---|
| 2400 | +.glyphicon-envelope:before { |
|---|
| 2401 | + content: "\2709"; |
|---|
| 2402 | +} |
|---|
| 2403 | +.glyphicon-pencil:before { |
|---|
| 2404 | + content: "\270f"; |
|---|
| 2405 | +} |
|---|
| 2406 | +.glyphicon-glass:before { |
|---|
| 2407 | + content: "\e001"; |
|---|
| 2408 | +} |
|---|
| 2409 | +.glyphicon-music:before { |
|---|
| 2410 | + content: "\e002"; |
|---|
| 2411 | +} |
|---|
| 2412 | +.glyphicon-search:before { |
|---|
| 2413 | + content: "\e003"; |
|---|
| 2414 | +} |
|---|
| 2415 | +.glyphicon-heart:before { |
|---|
| 2416 | + content: "\e005"; |
|---|
| 2417 | +} |
|---|
| 2418 | +.glyphicon-star:before { |
|---|
| 2419 | + content: "\e006"; |
|---|
| 2420 | +} |
|---|
| 2421 | +.glyphicon-star-empty:before { |
|---|
| 2422 | + content: "\e007"; |
|---|
| 2423 | +} |
|---|
| 2424 | +.glyphicon-user:before { |
|---|
| 2425 | + content: "\e008"; |
|---|
| 2426 | +} |
|---|
| 2427 | +.glyphicon-film:before { |
|---|
| 2428 | + content: "\e009"; |
|---|
| 2429 | +} |
|---|
| 2430 | +.glyphicon-th-large:before { |
|---|
| 2431 | + content: "\e010"; |
|---|
| 2432 | +} |
|---|
| 2433 | +.glyphicon-th:before { |
|---|
| 2434 | + content: "\e011"; |
|---|
| 2435 | +} |
|---|
| 2436 | +.glyphicon-th-list:before { |
|---|
| 2437 | + content: "\e012"; |
|---|
| 2438 | +} |
|---|
| 2439 | +.glyphicon-ok:before { |
|---|
| 2440 | + content: "\e013"; |
|---|
| 2441 | +} |
|---|
| 2442 | +.glyphicon-remove:before { |
|---|
| 2443 | + content: "\e014"; |
|---|
| 2444 | +} |
|---|
| 2445 | +.glyphicon-zoom-in:before { |
|---|
| 2446 | + content: "\e015"; |
|---|
| 2447 | +} |
|---|
| 2448 | +.glyphicon-zoom-out:before { |
|---|
| 2449 | + content: "\e016"; |
|---|
| 2450 | +} |
|---|
| 2451 | +.glyphicon-off:before { |
|---|
| 2452 | + content: "\e017"; |
|---|
| 2453 | +} |
|---|
| 2454 | +.glyphicon-signal:before { |
|---|
| 2455 | + content: "\e018"; |
|---|
| 2456 | +} |
|---|
| 2457 | +.glyphicon-cog:before { |
|---|
| 2458 | + content: "\e019"; |
|---|
| 2459 | +} |
|---|
| 2460 | +.glyphicon-trash:before { |
|---|
| 2461 | + content: "\e020"; |
|---|
| 2462 | +} |
|---|
| 2463 | +.glyphicon-home:before { |
|---|
| 2464 | + content: "\e021"; |
|---|
| 2465 | +} |
|---|
| 2466 | +.glyphicon-file:before { |
|---|
| 2467 | + content: "\e022"; |
|---|
| 2468 | +} |
|---|
| 2469 | +.glyphicon-time:before { |
|---|
| 2470 | + content: "\e023"; |
|---|
| 2471 | +} |
|---|
| 2472 | +.glyphicon-road:before { |
|---|
| 2473 | + content: "\e024"; |
|---|
| 2474 | +} |
|---|
| 2475 | +.glyphicon-download-alt:before { |
|---|
| 2476 | + content: "\e025"; |
|---|
| 2477 | +} |
|---|
| 2478 | +.glyphicon-download:before { |
|---|
| 2479 | + content: "\e026"; |
|---|
| 2480 | +} |
|---|
| 2481 | +.glyphicon-upload:before { |
|---|
| 2482 | + content: "\e027"; |
|---|
| 2483 | +} |
|---|
| 2484 | +.glyphicon-inbox:before { |
|---|
| 2485 | + content: "\e028"; |
|---|
| 2486 | +} |
|---|
| 2487 | +.glyphicon-play-circle:before { |
|---|
| 2488 | + content: "\e029"; |
|---|
| 2489 | +} |
|---|
| 2490 | +.glyphicon-repeat:before { |
|---|
| 2491 | + content: "\e030"; |
|---|
| 2492 | +} |
|---|
| 2493 | +.glyphicon-refresh:before { |
|---|
| 2494 | + content: "\e031"; |
|---|
| 2495 | +} |
|---|
| 2496 | +.glyphicon-list-alt:before { |
|---|
| 2497 | + content: "\e032"; |
|---|
| 2498 | +} |
|---|
| 2499 | +.glyphicon-lock:before { |
|---|
| 2500 | + content: "\e033"; |
|---|
| 2501 | +} |
|---|
| 2502 | +.glyphicon-flag:before { |
|---|
| 2503 | + content: "\e034"; |
|---|
| 2504 | +} |
|---|
| 2505 | +.glyphicon-headphones:before { |
|---|
| 2506 | + content: "\e035"; |
|---|
| 2507 | +} |
|---|
| 2508 | +.glyphicon-volume-off:before { |
|---|
| 2509 | + content: "\e036"; |
|---|
| 2510 | +} |
|---|
| 2511 | +.glyphicon-volume-down:before { |
|---|
| 2512 | + content: "\e037"; |
|---|
| 2513 | +} |
|---|
| 2514 | +.glyphicon-volume-up:before { |
|---|
| 2515 | + content: "\e038"; |
|---|
| 2516 | +} |
|---|
| 2517 | +.glyphicon-qrcode:before { |
|---|
| 2518 | + content: "\e039"; |
|---|
| 2519 | +} |
|---|
| 2520 | +.glyphicon-barcode:before { |
|---|
| 2521 | + content: "\e040"; |
|---|
| 2522 | +} |
|---|
| 2523 | +.glyphicon-tag:before { |
|---|
| 2524 | + content: "\e041"; |
|---|
| 2525 | +} |
|---|
| 2526 | +.glyphicon-tags:before { |
|---|
| 2527 | + content: "\e042"; |
|---|
| 2528 | +} |
|---|
| 2529 | +.glyphicon-book:before { |
|---|
| 2530 | + content: "\e043"; |
|---|
| 2531 | +} |
|---|
| 2532 | +.glyphicon-bookmark:before { |
|---|
| 2533 | + content: "\e044"; |
|---|
| 2534 | +} |
|---|
| 2535 | +.glyphicon-print:before { |
|---|
| 2536 | + content: "\e045"; |
|---|
| 2537 | +} |
|---|
| 2538 | +.glyphicon-camera:before { |
|---|
| 2539 | + content: "\e046"; |
|---|
| 2540 | +} |
|---|
| 2541 | +.glyphicon-font:before { |
|---|
| 2542 | + content: "\e047"; |
|---|
| 2543 | +} |
|---|
| 2544 | +.glyphicon-bold:before { |
|---|
| 2545 | + content: "\e048"; |
|---|
| 2546 | +} |
|---|
| 2547 | +.glyphicon-italic:before { |
|---|
| 2548 | + content: "\e049"; |
|---|
| 2549 | +} |
|---|
| 2550 | +.glyphicon-text-height:before { |
|---|
| 2551 | + content: "\e050"; |
|---|
| 2552 | +} |
|---|
| 2553 | +.glyphicon-text-width:before { |
|---|
| 2554 | + content: "\e051"; |
|---|
| 2555 | +} |
|---|
| 2556 | +.glyphicon-align-left:before { |
|---|
| 2557 | + content: "\e052"; |
|---|
| 2558 | +} |
|---|
| 2559 | +.glyphicon-align-center:before { |
|---|
| 2560 | + content: "\e053"; |
|---|
| 2561 | +} |
|---|
| 2562 | +.glyphicon-align-right:before { |
|---|
| 2563 | + content: "\e054"; |
|---|
| 2564 | +} |
|---|
| 2565 | +.glyphicon-align-justify:before { |
|---|
| 2566 | + content: "\e055"; |
|---|
| 2567 | +} |
|---|
| 2568 | +.glyphicon-list:before { |
|---|
| 2569 | + content: "\e056"; |
|---|
| 2570 | +} |
|---|
| 2571 | +.glyphicon-indent-left:before { |
|---|
| 2572 | + content: "\e057"; |
|---|
| 2573 | +} |
|---|
| 2574 | +.glyphicon-indent-right:before { |
|---|
| 2575 | + content: "\e058"; |
|---|
| 2576 | +} |
|---|
| 2577 | +.glyphicon-facetime-video:before { |
|---|
| 2578 | + content: "\e059"; |
|---|
| 2579 | +} |
|---|
| 2580 | +.glyphicon-picture:before { |
|---|
| 2581 | + content: "\e060"; |
|---|
| 2582 | +} |
|---|
| 2583 | +.glyphicon-map-marker:before { |
|---|
| 2584 | + content: "\e062"; |
|---|
| 2585 | +} |
|---|
| 2586 | +.glyphicon-adjust:before { |
|---|
| 2587 | + content: "\e063"; |
|---|
| 2588 | +} |
|---|
| 2589 | +.glyphicon-tint:before { |
|---|
| 2590 | + content: "\e064"; |
|---|
| 2591 | +} |
|---|
| 2592 | +.glyphicon-edit:before { |
|---|
| 2593 | + content: "\e065"; |
|---|
| 2594 | +} |
|---|
| 2595 | +.glyphicon-share:before { |
|---|
| 2596 | + content: "\e066"; |
|---|
| 2597 | +} |
|---|
| 2598 | +.glyphicon-check:before { |
|---|
| 2599 | + content: "\e067"; |
|---|
| 2600 | +} |
|---|
| 2601 | +.glyphicon-move:before { |
|---|
| 2602 | + content: "\e068"; |
|---|
| 2603 | +} |
|---|
| 2604 | +.glyphicon-step-backward:before { |
|---|
| 2605 | + content: "\e069"; |
|---|
| 2606 | +} |
|---|
| 2607 | +.glyphicon-fast-backward:before { |
|---|
| 2608 | + content: "\e070"; |
|---|
| 2609 | +} |
|---|
| 2610 | +.glyphicon-backward:before { |
|---|
| 2611 | + content: "\e071"; |
|---|
| 2612 | +} |
|---|
| 2613 | +.glyphicon-play:before { |
|---|
| 2614 | + content: "\e072"; |
|---|
| 2615 | +} |
|---|
| 2616 | +.glyphicon-pause:before { |
|---|
| 2617 | + content: "\e073"; |
|---|
| 2618 | +} |
|---|
| 2619 | +.glyphicon-stop:before { |
|---|
| 2620 | + content: "\e074"; |
|---|
| 2621 | +} |
|---|
| 2622 | +.glyphicon-forward:before { |
|---|
| 2623 | + content: "\e075"; |
|---|
| 2624 | +} |
|---|
| 2625 | +.glyphicon-fast-forward:before { |
|---|
| 2626 | + content: "\e076"; |
|---|
| 2627 | +} |
|---|
| 2628 | +.glyphicon-step-forward:before { |
|---|
| 2629 | + content: "\e077"; |
|---|
| 2630 | +} |
|---|
| 2631 | +.glyphicon-eject:before { |
|---|
| 2632 | + content: "\e078"; |
|---|
| 2633 | +} |
|---|
| 2634 | +.glyphicon-chevron-left:before { |
|---|
| 2635 | + content: "\e079"; |
|---|
| 2636 | +} |
|---|
| 2637 | +.glyphicon-chevron-right:before { |
|---|
| 2638 | + content: "\e080"; |
|---|
| 2639 | +} |
|---|
| 2640 | +.glyphicon-plus-sign:before { |
|---|
| 2641 | + content: "\e081"; |
|---|
| 2642 | +} |
|---|
| 2643 | +.glyphicon-minus-sign:before { |
|---|
| 2644 | + content: "\e082"; |
|---|
| 2645 | +} |
|---|
| 2646 | +.glyphicon-remove-sign:before { |
|---|
| 2647 | + content: "\e083"; |
|---|
| 2648 | +} |
|---|
| 2649 | +.glyphicon-ok-sign:before { |
|---|
| 2650 | + content: "\e084"; |
|---|
| 2651 | +} |
|---|
| 2652 | +.glyphicon-question-sign:before { |
|---|
| 2653 | + content: "\e085"; |
|---|
| 2654 | +} |
|---|
| 2655 | +.glyphicon-info-sign:before { |
|---|
| 2656 | + content: "\e086"; |
|---|
| 2657 | +} |
|---|
| 2658 | +.glyphicon-screenshot:before { |
|---|
| 2659 | + content: "\e087"; |
|---|
| 2660 | +} |
|---|
| 2661 | +.glyphicon-remove-circle:before { |
|---|
| 2662 | + content: "\e088"; |
|---|
| 2663 | +} |
|---|
| 2664 | +.glyphicon-ok-circle:before { |
|---|
| 2665 | + content: "\e089"; |
|---|
| 2666 | +} |
|---|
| 2667 | +.glyphicon-ban-circle:before { |
|---|
| 2668 | + content: "\e090"; |
|---|
| 2669 | +} |
|---|
| 2670 | +.glyphicon-arrow-left:before { |
|---|
| 2671 | + content: "\e091"; |
|---|
| 2672 | +} |
|---|
| 2673 | +.glyphicon-arrow-right:before { |
|---|
| 2674 | + content: "\e092"; |
|---|
| 2675 | +} |
|---|
| 2676 | +.glyphicon-arrow-up:before { |
|---|
| 2677 | + content: "\e093"; |
|---|
| 2678 | +} |
|---|
| 2679 | +.glyphicon-arrow-down:before { |
|---|
| 2680 | + content: "\e094"; |
|---|
| 2681 | +} |
|---|
| 2682 | +.glyphicon-share-alt:before { |
|---|
| 2683 | + content: "\e095"; |
|---|
| 2684 | +} |
|---|
| 2685 | +.glyphicon-resize-full:before { |
|---|
| 2686 | + content: "\e096"; |
|---|
| 2687 | +} |
|---|
| 2688 | +.glyphicon-resize-small:before { |
|---|
| 2689 | + content: "\e097"; |
|---|
| 2690 | +} |
|---|
| 2691 | +.glyphicon-exclamation-sign:before { |
|---|
| 2692 | + content: "\e101"; |
|---|
| 2693 | +} |
|---|
| 2694 | +.glyphicon-gift:before { |
|---|
| 2695 | + content: "\e102"; |
|---|
| 2696 | +} |
|---|
| 2697 | +.glyphicon-leaf:before { |
|---|
| 2698 | + content: "\e103"; |
|---|
| 2699 | +} |
|---|
| 2700 | +.glyphicon-fire:before { |
|---|
| 2701 | + content: "\e104"; |
|---|
| 2702 | +} |
|---|
| 2703 | +.glyphicon-eye-open:before { |
|---|
| 2704 | + content: "\e105"; |
|---|
| 2705 | +} |
|---|
| 2706 | +.glyphicon-eye-close:before { |
|---|
| 2707 | + content: "\e106"; |
|---|
| 2708 | +} |
|---|
| 2709 | +.glyphicon-warning-sign:before { |
|---|
| 2710 | + content: "\e107"; |
|---|
| 2711 | +} |
|---|
| 2712 | +.glyphicon-plane:before { |
|---|
| 2713 | + content: "\e108"; |
|---|
| 2714 | +} |
|---|
| 2715 | +.glyphicon-calendar:before { |
|---|
| 2716 | + content: "\e109"; |
|---|
| 2717 | +} |
|---|
| 2718 | +.glyphicon-random:before { |
|---|
| 2719 | + content: "\e110"; |
|---|
| 2720 | +} |
|---|
| 2721 | +.glyphicon-comment:before { |
|---|
| 2722 | + content: "\e111"; |
|---|
| 2723 | +} |
|---|
| 2724 | +.glyphicon-magnet:before { |
|---|
| 2725 | + content: "\e112"; |
|---|
| 2726 | +} |
|---|
| 2727 | +.glyphicon-chevron-up:before { |
|---|
| 2728 | + content: "\e113"; |
|---|
| 2729 | +} |
|---|
| 2730 | +.glyphicon-chevron-down:before { |
|---|
| 2731 | + content: "\e114"; |
|---|
| 2732 | +} |
|---|
| 2733 | +.glyphicon-retweet:before { |
|---|
| 2734 | + content: "\e115"; |
|---|
| 2735 | +} |
|---|
| 2736 | +.glyphicon-shopping-cart:before { |
|---|
| 2737 | + content: "\e116"; |
|---|
| 2738 | +} |
|---|
| 2739 | +.glyphicon-folder-close:before { |
|---|
| 2740 | + content: "\e117"; |
|---|
| 2741 | +} |
|---|
| 2742 | +.glyphicon-folder-open:before { |
|---|
| 2743 | + content: "\e118"; |
|---|
| 2744 | +} |
|---|
| 2745 | +.glyphicon-resize-vertical:before { |
|---|
| 2746 | + content: "\e119"; |
|---|
| 2747 | +} |
|---|
| 2748 | +.glyphicon-resize-horizontal:before { |
|---|
| 2749 | + content: "\e120"; |
|---|
| 2750 | +} |
|---|
| 2751 | +.glyphicon-hdd:before { |
|---|
| 2752 | + content: "\e121"; |
|---|
| 2753 | +} |
|---|
| 2754 | +.glyphicon-bullhorn:before { |
|---|
| 2755 | + content: "\e122"; |
|---|
| 2756 | +} |
|---|
| 2757 | +.glyphicon-bell:before { |
|---|
| 2758 | + content: "\e123"; |
|---|
| 2759 | +} |
|---|
| 2760 | +.glyphicon-certificate:before { |
|---|
| 2761 | + content: "\e124"; |
|---|
| 2762 | +} |
|---|
| 2763 | +.glyphicon-thumbs-up:before { |
|---|
| 2764 | + content: "\e125"; |
|---|
| 2765 | +} |
|---|
| 2766 | +.glyphicon-thumbs-down:before { |
|---|
| 2767 | + content: "\e126"; |
|---|
| 2768 | +} |
|---|
| 2769 | +.glyphicon-hand-right:before { |
|---|
| 2770 | + content: "\e127"; |
|---|
| 2771 | +} |
|---|
| 2772 | +.glyphicon-hand-left:before { |
|---|
| 2773 | + content: "\e128"; |
|---|
| 2774 | +} |
|---|
| 2775 | +.glyphicon-hand-up:before { |
|---|
| 2776 | + content: "\e129"; |
|---|
| 2777 | +} |
|---|
| 2778 | +.glyphicon-hand-down:before { |
|---|
| 2779 | + content: "\e130"; |
|---|
| 2780 | +} |
|---|
| 2781 | +.glyphicon-circle-arrow-right:before { |
|---|
| 2782 | + content: "\e131"; |
|---|
| 2783 | +} |
|---|
| 2784 | +.glyphicon-circle-arrow-left:before { |
|---|
| 2785 | + content: "\e132"; |
|---|
| 2786 | +} |
|---|
| 2787 | +.glyphicon-circle-arrow-up:before { |
|---|
| 2788 | + content: "\e133"; |
|---|
| 2789 | +} |
|---|
| 2790 | +.glyphicon-circle-arrow-down:before { |
|---|
| 2791 | + content: "\e134"; |
|---|
| 2792 | +} |
|---|
| 2793 | +.glyphicon-globe:before { |
|---|
| 2794 | + content: "\e135"; |
|---|
| 2795 | +} |
|---|
| 2796 | +.glyphicon-wrench:before { |
|---|
| 2797 | + content: "\e136"; |
|---|
| 2798 | +} |
|---|
| 2799 | +.glyphicon-tasks:before { |
|---|
| 2800 | + content: "\e137"; |
|---|
| 2801 | +} |
|---|
| 2802 | +.glyphicon-filter:before { |
|---|
| 2803 | + content: "\e138"; |
|---|
| 2804 | +} |
|---|
| 2805 | +.glyphicon-briefcase:before { |
|---|
| 2806 | + content: "\e139"; |
|---|
| 2807 | +} |
|---|
| 2808 | +.glyphicon-fullscreen:before { |
|---|
| 2809 | + content: "\e140"; |
|---|
| 2810 | +} |
|---|
| 2811 | +.glyphicon-dashboard:before { |
|---|
| 2812 | + content: "\e141"; |
|---|
| 2813 | +} |
|---|
| 2814 | +.glyphicon-paperclip:before { |
|---|
| 2815 | + content: "\e142"; |
|---|
| 2816 | +} |
|---|
| 2817 | +.glyphicon-heart-empty:before { |
|---|
| 2818 | + content: "\e143"; |
|---|
| 2819 | +} |
|---|
| 2820 | +.glyphicon-link:before { |
|---|
| 2821 | + content: "\e144"; |
|---|
| 2822 | +} |
|---|
| 2823 | +.glyphicon-phone:before { |
|---|
| 2824 | + content: "\e145"; |
|---|
| 2825 | +} |
|---|
| 2826 | +.glyphicon-pushpin:before { |
|---|
| 2827 | + content: "\e146"; |
|---|
| 2828 | +} |
|---|
| 2829 | +.glyphicon-usd:before { |
|---|
| 2830 | + content: "\e148"; |
|---|
| 2831 | +} |
|---|
| 2832 | +.glyphicon-gbp:before { |
|---|
| 2833 | + content: "\e149"; |
|---|
| 2834 | +} |
|---|
| 2835 | +.glyphicon-sort:before { |
|---|
| 2836 | + content: "\e150"; |
|---|
| 2837 | +} |
|---|
| 2838 | +.glyphicon-sort-by-alphabet:before { |
|---|
| 2839 | + content: "\e151"; |
|---|
| 2840 | +} |
|---|
| 2841 | +.glyphicon-sort-by-alphabet-alt:before { |
|---|
| 2842 | + content: "\e152"; |
|---|
| 2843 | +} |
|---|
| 2844 | +.glyphicon-sort-by-order:before { |
|---|
| 2845 | + content: "\e153"; |
|---|
| 2846 | +} |
|---|
| 2847 | +.glyphicon-sort-by-order-alt:before { |
|---|
| 2848 | + content: "\e154"; |
|---|
| 2849 | +} |
|---|
| 2850 | +.glyphicon-sort-by-attributes:before { |
|---|
| 2851 | + content: "\e155"; |
|---|
| 2852 | +} |
|---|
| 2853 | +.glyphicon-sort-by-attributes-alt:before { |
|---|
| 2854 | + content: "\e156"; |
|---|
| 2855 | +} |
|---|
| 2856 | +.glyphicon-unchecked:before { |
|---|
| 2857 | + content: "\e157"; |
|---|
| 2858 | +} |
|---|
| 2859 | +.glyphicon-expand:before { |
|---|
| 2860 | + content: "\e158"; |
|---|
| 2861 | +} |
|---|
| 2862 | +.glyphicon-collapse-down:before { |
|---|
| 2863 | + content: "\e159"; |
|---|
| 2864 | +} |
|---|
| 2865 | +.glyphicon-collapse-up:before { |
|---|
| 2866 | + content: "\e160"; |
|---|
| 2867 | +} |
|---|
| 2868 | +.glyphicon-log-in:before { |
|---|
| 2869 | + content: "\e161"; |
|---|
| 2870 | +} |
|---|
| 2871 | +.glyphicon-flash:before { |
|---|
| 2872 | + content: "\e162"; |
|---|
| 2873 | +} |
|---|
| 2874 | +.glyphicon-log-out:before { |
|---|
| 2875 | + content: "\e163"; |
|---|
| 2876 | +} |
|---|
| 2877 | +.glyphicon-new-window:before { |
|---|
| 2878 | + content: "\e164"; |
|---|
| 2879 | +} |
|---|
| 2880 | +.glyphicon-record:before { |
|---|
| 2881 | + content: "\e165"; |
|---|
| 2882 | +} |
|---|
| 2883 | +.glyphicon-save:before { |
|---|
| 2884 | + content: "\e166"; |
|---|
| 2885 | +} |
|---|
| 2886 | +.glyphicon-open:before { |
|---|
| 2887 | + content: "\e167"; |
|---|
| 2888 | +} |
|---|
| 2889 | +.glyphicon-saved:before { |
|---|
| 2890 | + content: "\e168"; |
|---|
| 2891 | +} |
|---|
| 2892 | +.glyphicon-import:before { |
|---|
| 2893 | + content: "\e169"; |
|---|
| 2894 | +} |
|---|
| 2895 | +.glyphicon-export:before { |
|---|
| 2896 | + content: "\e170"; |
|---|
| 2897 | +} |
|---|
| 2898 | +.glyphicon-send:before { |
|---|
| 2899 | + content: "\e171"; |
|---|
| 2900 | +} |
|---|
| 2901 | +.glyphicon-floppy-disk:before { |
|---|
| 2902 | + content: "\e172"; |
|---|
| 2903 | +} |
|---|
| 2904 | +.glyphicon-floppy-saved:before { |
|---|
| 2905 | + content: "\e173"; |
|---|
| 2906 | +} |
|---|
| 2907 | +.glyphicon-floppy-remove:before { |
|---|
| 2908 | + content: "\e174"; |
|---|
| 2909 | +} |
|---|
| 2910 | +.glyphicon-floppy-save:before { |
|---|
| 2911 | + content: "\e175"; |
|---|
| 2912 | +} |
|---|
| 2913 | +.glyphicon-floppy-open:before { |
|---|
| 2914 | + content: "\e176"; |
|---|
| 2915 | +} |
|---|
| 2916 | +.glyphicon-credit-card:before { |
|---|
| 2917 | + content: "\e177"; |
|---|
| 2918 | +} |
|---|
| 2919 | +.glyphicon-transfer:before { |
|---|
| 2920 | + content: "\e178"; |
|---|
| 2921 | +} |
|---|
| 2922 | +.glyphicon-cutlery:before { |
|---|
| 2923 | + content: "\e179"; |
|---|
| 2924 | +} |
|---|
| 2925 | +.glyphicon-header:before { |
|---|
| 2926 | + content: "\e180"; |
|---|
| 2927 | +} |
|---|
| 2928 | +.glyphicon-compressed:before { |
|---|
| 2929 | + content: "\e181"; |
|---|
| 2930 | +} |
|---|
| 2931 | +.glyphicon-earphone:before { |
|---|
| 2932 | + content: "\e182"; |
|---|
| 2933 | +} |
|---|
| 2934 | +.glyphicon-phone-alt:before { |
|---|
| 2935 | + content: "\e183"; |
|---|
| 2936 | +} |
|---|
| 2937 | +.glyphicon-tower:before { |
|---|
| 2938 | + content: "\e184"; |
|---|
| 2939 | +} |
|---|
| 2940 | +.glyphicon-stats:before { |
|---|
| 2941 | + content: "\e185"; |
|---|
| 2942 | +} |
|---|
| 2943 | +.glyphicon-sd-video:before { |
|---|
| 2944 | + content: "\e186"; |
|---|
| 2945 | +} |
|---|
| 2946 | +.glyphicon-hd-video:before { |
|---|
| 2947 | + content: "\e187"; |
|---|
| 2948 | +} |
|---|
| 2949 | +.glyphicon-subtitles:before { |
|---|
| 2950 | + content: "\e188"; |
|---|
| 2951 | +} |
|---|
| 2952 | +.glyphicon-sound-stereo:before { |
|---|
| 2953 | + content: "\e189"; |
|---|
| 2954 | +} |
|---|
| 2955 | +.glyphicon-sound-dolby:before { |
|---|
| 2956 | + content: "\e190"; |
|---|
| 2957 | +} |
|---|
| 2958 | +.glyphicon-sound-5-1:before { |
|---|
| 2959 | + content: "\e191"; |
|---|
| 2960 | +} |
|---|
| 2961 | +.glyphicon-sound-6-1:before { |
|---|
| 2962 | + content: "\e192"; |
|---|
| 2963 | +} |
|---|
| 2964 | +.glyphicon-sound-7-1:before { |
|---|
| 2965 | + content: "\e193"; |
|---|
| 2966 | +} |
|---|
| 2967 | +.glyphicon-copyright-mark:before { |
|---|
| 2968 | + content: "\e194"; |
|---|
| 2969 | +} |
|---|
| 2970 | +.glyphicon-registration-mark:before { |
|---|
| 2971 | + content: "\e195"; |
|---|
| 2972 | +} |
|---|
| 2973 | +.glyphicon-cloud-download:before { |
|---|
| 2974 | + content: "\e197"; |
|---|
| 2975 | +} |
|---|
| 2976 | +.glyphicon-cloud-upload:before { |
|---|
| 2977 | + content: "\e198"; |
|---|
| 2978 | +} |
|---|
| 2979 | +.glyphicon-tree-conifer:before { |
|---|
| 2980 | + content: "\e199"; |
|---|
| 2981 | +} |
|---|
| 2982 | +.glyphicon-tree-deciduous:before { |
|---|
| 2983 | + content: "\e200"; |
|---|
| 2984 | +} |
|---|
| 2985 | +.caret { |
|---|
| 2986 | + display: inline-block; |
|---|
| 2987 | + width: 0; |
|---|
| 2988 | + height: 0; |
|---|
| 2989 | + margin-left: 2px; |
|---|
| 2990 | + vertical-align: middle; |
|---|
| 2991 | + border-top: 4px solid; |
|---|
| 2992 | + border-right: 4px solid transparent; |
|---|
| 2993 | + border-left: 4px solid transparent; |
|---|
| 2994 | +} |
|---|
| 2995 | +.dropdown { |
|---|
| 2996 | + position: relative; |
|---|
| 2997 | +} |
|---|
| 2998 | +.dropdown-toggle:focus { |
|---|
| 2999 | + outline: 0; |
|---|
| 3000 | +} |
|---|
| 3001 | +.dropdown-menu { |
|---|
| 3002 | + position: absolute; |
|---|
| 3003 | + top: 100%; |
|---|
| 3004 | + left: 0; |
|---|
| 3005 | + z-index: 1000; |
|---|
| 3006 | + display: none; |
|---|
| 3007 | + float: left; |
|---|
| 3008 | + min-width: 160px; |
|---|
| 3009 | + padding: 5px 0; |
|---|
| 3010 | + margin: 2px 0 0; |
|---|
| 3011 | + font-size: 14px; |
|---|
| 3012 | + list-style: none; |
|---|
| 3013 | + background-color: #fff; |
|---|
| 3014 | + background-clip: padding-box; |
|---|
| 3015 | + border: 1px solid #ccc; |
|---|
| 3016 | + border: 1px solid rgba(0, 0, 0, .15); |
|---|
| 3017 | + border-radius: 4px; |
|---|
| 3018 | + -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175); |
|---|
| 3019 | + box-shadow: 0 6px 12px rgba(0, 0, 0, .175); |
|---|
| 3020 | +} |
|---|
| 3021 | +.dropdown-menu.pull-right { |
|---|
| 3022 | + right: 0; |
|---|
| 3023 | + left: auto; |
|---|
| 3024 | +} |
|---|
| 3025 | +.dropdown-menu .divider { |
|---|
| 3026 | + height: 1px; |
|---|
| 3027 | + margin: 9px 0; |
|---|
| 3028 | + overflow: hidden; |
|---|
| 3029 | + background-color: #e5e5e5; |
|---|
| 3030 | +} |
|---|
| 3031 | +.dropdown-menu > li > a { |
|---|
| 3032 | + display: block; |
|---|
| 3033 | + padding: 3px 20px; |
|---|
| 3034 | + clear: both; |
|---|
| 3035 | + font-weight: normal; |
|---|
| 3036 | + line-height: 1.428571429; |
|---|
| 3037 | + color: #333; |
|---|
| 3038 | + white-space: nowrap; |
|---|
| 3039 | +} |
|---|
| 3040 | +.dropdown-menu > li > a:hover, |
|---|
| 3041 | +.dropdown-menu > li > a:focus { |
|---|
| 3042 | + color: #262626; |
|---|
| 3043 | + text-decoration: none; |
|---|
| 3044 | + background-color: #f5f5f5; |
|---|
| 3045 | +} |
|---|
| 3046 | +.dropdown-menu > .active > a, |
|---|
| 3047 | +.dropdown-menu > .active > a:hover, |
|---|
| 3048 | +.dropdown-menu > .active > a:focus { |
|---|
| 3049 | + color: #fff; |
|---|
| 3050 | + text-decoration: none; |
|---|
| 3051 | + background-color: #428bca; |
|---|
| 3052 | + outline: 0; |
|---|
| 3053 | +} |
|---|
| 3054 | +.dropdown-menu > .disabled > a, |
|---|
| 3055 | +.dropdown-menu > .disabled > a:hover, |
|---|
| 3056 | +.dropdown-menu > .disabled > a:focus { |
|---|
| 3057 | + color: #999; |
|---|
| 3058 | +} |
|---|
| 3059 | +.dropdown-menu > .disabled > a:hover, |
|---|
| 3060 | +.dropdown-menu > .disabled > a:focus { |
|---|
| 3061 | + text-decoration: none; |
|---|
| 3062 | + cursor: not-allowed; |
|---|
| 3063 | + background-color: transparent; |
|---|
| 3064 | + background-image: none; |
|---|
| 3065 | + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); |
|---|
| 3066 | +} |
|---|
| 3067 | +.open > .dropdown-menu { |
|---|
| 3068 | + display: block; |
|---|
| 3069 | +} |
|---|
| 3070 | +.open > a { |
|---|
| 3071 | + outline: 0; |
|---|
| 3072 | +} |
|---|
| 3073 | +.dropdown-menu-right { |
|---|
| 3074 | + right: 0; |
|---|
| 3075 | + left: auto; |
|---|
| 3076 | +} |
|---|
| 3077 | +.dropdown-menu-left { |
|---|
| 3078 | + right: auto; |
|---|
| 3079 | + left: 0; |
|---|
| 3080 | +} |
|---|
| 3081 | +.dropdown-header { |
|---|
| 3082 | + display: block; |
|---|
| 3083 | + padding: 3px 20px; |
|---|
| 3084 | + font-size: 12px; |
|---|
| 3085 | + line-height: 1.428571429; |
|---|
| 3086 | + color: #999; |
|---|
| 3087 | +} |
|---|
| 3088 | +.dropdown-backdrop { |
|---|
| 3089 | + position: fixed; |
|---|
| 3090 | + top: 0; |
|---|
| 3091 | + right: 0; |
|---|
| 3092 | + bottom: 0; |
|---|
| 3093 | + left: 0; |
|---|
| 3094 | + z-index: 990; |
|---|
| 3095 | +} |
|---|
| 3096 | +.pull-right > .dropdown-menu { |
|---|
| 3097 | + right: 0; |
|---|
| 3098 | + left: auto; |
|---|
| 3099 | +} |
|---|
| 3100 | +.dropup .caret, |
|---|
| 3101 | +.navbar-fixed-bottom .dropdown .caret { |
|---|
| 3102 | + content: ""; |
|---|
| 3103 | + border-top: 0; |
|---|
| 3104 | + border-bottom: 4px solid; |
|---|
| 3105 | +} |
|---|
| 3106 | +.dropup .dropdown-menu, |
|---|
| 3107 | +.navbar-fixed-bottom .dropdown .dropdown-menu { |
|---|
| 3108 | + top: auto; |
|---|
| 3109 | + bottom: 100%; |
|---|
| 3110 | + margin-bottom: 1px; |
|---|
| 3111 | +} |
|---|
| 3112 | +@media (min-width: 768px) { |
|---|
| 3113 | + .navbar-right .dropdown-menu { |
|---|
| 3114 | + right: 0; |
|---|
| 3115 | + left: auto; |
|---|
| 3116 | + } |
|---|
| 3117 | + .navbar-right .dropdown-menu-left { |
|---|
| 3118 | + right: auto; |
|---|
| 3119 | + left: 0; |
|---|
| 3120 | + } |
|---|
| 3121 | +} |
|---|
| 3122 | +.btn-group, |
|---|
| 3123 | +.btn-group-vertical { |
|---|
| 3124 | + position: relative; |
|---|
| 3125 | + display: inline-block; |
|---|
| 3126 | + vertical-align: middle; |
|---|
| 3127 | +} |
|---|
| 3128 | +.btn-group > .btn, |
|---|
| 3129 | +.btn-group-vertical > .btn { |
|---|
| 3130 | + position: relative; |
|---|
| 3131 | + float: left; |
|---|
| 3132 | +} |
|---|
| 3133 | +.btn-group > .btn:hover, |
|---|
| 3134 | +.btn-group-vertical > .btn:hover, |
|---|
| 3135 | +.btn-group > .btn:focus, |
|---|
| 3136 | +.btn-group-vertical > .btn:focus, |
|---|
| 3137 | +.btn-group > .btn:active, |
|---|
| 3138 | +.btn-group-vertical > .btn:active, |
|---|
| 3139 | +.btn-group > .btn.active, |
|---|
| 3140 | +.btn-group-vertical > .btn.active { |
|---|
| 3141 | + z-index: 2; |
|---|
| 3142 | +} |
|---|
| 3143 | +.btn-group > .btn:focus, |
|---|
| 3144 | +.btn-group-vertical > .btn:focus { |
|---|
| 3145 | + outline: none; |
|---|
| 3146 | +} |
|---|
| 3147 | +.btn-group .btn + .btn, |
|---|
| 3148 | +.btn-group .btn + .btn-group, |
|---|
| 3149 | +.btn-group .btn-group + .btn, |
|---|
| 3150 | +.btn-group .btn-group + .btn-group { |
|---|
| 3151 | + margin-left: -1px; |
|---|
| 3152 | +} |
|---|
| 3153 | +.btn-toolbar { |
|---|
| 3154 | + margin-left: -5px; |
|---|
| 3155 | +} |
|---|
| 3156 | +.btn-toolbar .btn-group, |
|---|
| 3157 | +.btn-toolbar .input-group { |
|---|
| 3158 | + float: left; |
|---|
| 3159 | +} |
|---|
| 3160 | +.btn-toolbar > .btn, |
|---|
| 3161 | +.btn-toolbar > .btn-group, |
|---|
| 3162 | +.btn-toolbar > .input-group { |
|---|
| 3163 | + margin-left: 5px; |
|---|
| 3164 | +} |
|---|
| 3165 | +.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) { |
|---|
| 3166 | + border-radius: 0; |
|---|
| 3167 | +} |
|---|
| 3168 | +.btn-group > .btn:first-child { |
|---|
| 3169 | + margin-left: 0; |
|---|
| 3170 | +} |
|---|
| 3171 | +.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) { |
|---|
| 3172 | + border-top-right-radius: 0; |
|---|
| 3173 | + border-bottom-right-radius: 0; |
|---|
| 3174 | +} |
|---|
| 3175 | +.btn-group > .btn:last-child:not(:first-child), |
|---|
| 3176 | +.btn-group > .dropdown-toggle:not(:first-child) { |
|---|
| 3177 | + border-top-left-radius: 0; |
|---|
| 3178 | + border-bottom-left-radius: 0; |
|---|
| 3179 | +} |
|---|
| 3180 | +.btn-group > .btn-group { |
|---|
| 3181 | + float: left; |
|---|
| 3182 | +} |
|---|
| 3183 | +.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn { |
|---|
| 3184 | + border-radius: 0; |
|---|
| 3185 | +} |
|---|
| 3186 | +.btn-group > .btn-group:first-child > .btn:last-child, |
|---|
| 3187 | +.btn-group > .btn-group:first-child > .dropdown-toggle { |
|---|
| 3188 | + border-top-right-radius: 0; |
|---|
| 3189 | + border-bottom-right-radius: 0; |
|---|
| 3190 | +} |
|---|
| 3191 | +.btn-group > .btn-group:last-child > .btn:first-child { |
|---|
| 3192 | + border-top-left-radius: 0; |
|---|
| 3193 | + border-bottom-left-radius: 0; |
|---|
| 3194 | +} |
|---|
| 3195 | +.btn-group .dropdown-toggle:active, |
|---|
| 3196 | +.btn-group.open .dropdown-toggle { |
|---|
| 3197 | + outline: 0; |
|---|
| 3198 | +} |
|---|
| 3199 | +.btn-group-xs > .btn { |
|---|
| 3200 | + padding: 1px 5px; |
|---|
| 3201 | + font-size: 12px; |
|---|
| 3202 | + line-height: 1.5; |
|---|
| 3203 | + border-radius: 3px; |
|---|
| 3204 | +} |
|---|
| 3205 | +.btn-group-sm > .btn { |
|---|
| 3206 | + padding: 5px 10px; |
|---|
| 3207 | + font-size: 12px; |
|---|
| 3208 | + line-height: 1.5; |
|---|
| 3209 | + border-radius: 3px; |
|---|
| 3210 | +} |
|---|
| 3211 | +.btn-group-lg > .btn { |
|---|
| 3212 | + padding: 10px 16px; |
|---|
| 3213 | + font-size: 18px; |
|---|
| 3214 | + line-height: 1.33; |
|---|
| 3215 | + border-radius: 6px; |
|---|
| 3216 | +} |
|---|
| 3217 | +.btn-group > .btn + .dropdown-toggle { |
|---|
| 3218 | + padding-right: 8px; |
|---|
| 3219 | + padding-left: 8px; |
|---|
| 3220 | +} |
|---|
| 3221 | +.btn-group > .btn-lg + .dropdown-toggle { |
|---|
| 3222 | + padding-right: 12px; |
|---|
| 3223 | + padding-left: 12px; |
|---|
| 3224 | +} |
|---|
| 3225 | +.btn-group.open .dropdown-toggle { |
|---|
| 3226 | + -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); |
|---|
| 3227 | + box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); |
|---|
| 3228 | +} |
|---|
| 3229 | +.btn-group.open .dropdown-toggle.btn-link { |
|---|
| 3230 | + -webkit-box-shadow: none; |
|---|
| 3231 | + box-shadow: none; |
|---|
| 3232 | +} |
|---|
| 3233 | +.btn .caret { |
|---|
| 3234 | + margin-left: 0; |
|---|
| 3235 | +} |
|---|
| 3236 | +.btn-lg .caret { |
|---|
| 3237 | + border-width: 5px 5px 0; |
|---|
| 3238 | + border-bottom-width: 0; |
|---|
| 3239 | +} |
|---|
| 3240 | +.dropup .btn-lg .caret { |
|---|
| 3241 | + border-width: 0 5px 5px; |
|---|
| 3242 | +} |
|---|
| 3243 | +.btn-group-vertical > .btn, |
|---|
| 3244 | +.btn-group-vertical > .btn-group, |
|---|
| 3245 | +.btn-group-vertical > .btn-group > .btn { |
|---|
| 3246 | + display: block; |
|---|
| 3247 | + float: none; |
|---|
| 3248 | + width: 100%; |
|---|
| 3249 | + max-width: 100%; |
|---|
| 3250 | +} |
|---|
| 3251 | +.btn-group-vertical > .btn-group > .btn { |
|---|
| 3252 | + float: none; |
|---|
| 3253 | +} |
|---|
| 3254 | +.btn-group-vertical > .btn + .btn, |
|---|
| 3255 | +.btn-group-vertical > .btn + .btn-group, |
|---|
| 3256 | +.btn-group-vertical > .btn-group + .btn, |
|---|
| 3257 | +.btn-group-vertical > .btn-group + .btn-group { |
|---|
| 3258 | + margin-top: -1px; |
|---|
| 3259 | + margin-left: 0; |
|---|
| 3260 | +} |
|---|
| 3261 | +.btn-group-vertical > .btn:not(:first-child):not(:last-child) { |
|---|
| 3262 | + border-radius: 0; |
|---|
| 3263 | +} |
|---|
| 3264 | +.btn-group-vertical > .btn:first-child:not(:last-child) { |
|---|
| 3265 | + border-top-right-radius: 4px; |
|---|
| 3266 | + border-bottom-right-radius: 0; |
|---|
| 3267 | + border-bottom-left-radius: 0; |
|---|
| 3268 | +} |
|---|
| 3269 | +.btn-group-vertical > .btn:last-child:not(:first-child) { |
|---|
| 3270 | + border-top-left-radius: 0; |
|---|
| 3271 | + border-top-right-radius: 0; |
|---|
| 3272 | + border-bottom-left-radius: 4px; |
|---|
| 3273 | +} |
|---|
| 3274 | +.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn { |
|---|
| 3275 | + border-radius: 0; |
|---|
| 3276 | +} |
|---|
| 3277 | +.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child, |
|---|
| 3278 | +.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle { |
|---|
| 3279 | + border-bottom-right-radius: 0; |
|---|
| 3280 | + border-bottom-left-radius: 0; |
|---|
| 3281 | +} |
|---|
| 3282 | +.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child { |
|---|
| 3283 | + border-top-left-radius: 0; |
|---|
| 3284 | + border-top-right-radius: 0; |
|---|
| 3285 | +} |
|---|
| 3286 | +.btn-group-justified { |
|---|
| 3287 | + display: table; |
|---|
| 3288 | + width: 100%; |
|---|
| 3289 | + table-layout: fixed; |
|---|
| 3290 | + border-collapse: separate; |
|---|
| 3291 | +} |
|---|
| 3292 | +.btn-group-justified > .btn, |
|---|
| 3293 | +.btn-group-justified > .btn-group { |
|---|
| 3294 | + display: table-cell; |
|---|
| 3295 | + float: none; |
|---|
| 3296 | + width: 1%; |
|---|
| 3297 | +} |
|---|
| 3298 | +.btn-group-justified > .btn-group .btn { |
|---|
| 3299 | + width: 100%; |
|---|
| 3300 | +} |
|---|
| 3301 | +[data-toggle="buttons"] > .btn > input[type="radio"], |
|---|
| 3302 | +[data-toggle="buttons"] > .btn > input[type="checkbox"] { |
|---|
| 3303 | + display: none; |
|---|
| 3304 | +} |
|---|
| 3305 | +.input-group { |
|---|
| 3306 | + position: relative; |
|---|
| 3307 | + display: table; |
|---|
| 3308 | + border-collapse: separate; |
|---|
| 3309 | +} |
|---|
| 3310 | +.input-group[class*="col-"] { |
|---|
| 3311 | + float: none; |
|---|
| 3312 | + padding-right: 0; |
|---|
| 3313 | + padding-left: 0; |
|---|
| 3314 | +} |
|---|
| 3315 | +.input-group .form-control { |
|---|
| 3316 | + float: left; |
|---|
| 3317 | + width: 100%; |
|---|
| 3318 | + margin-bottom: 0; |
|---|
| 3319 | +} |
|---|
| 3320 | +.input-group-lg > .form-control, |
|---|
| 3321 | +.input-group-lg > .input-group-addon, |
|---|
| 3322 | +.input-group-lg > .input-group-btn > .btn { |
|---|
| 3323 | + height: 46px; |
|---|
| 3324 | + padding: 10px 16px; |
|---|
| 3325 | + font-size: 18px; |
|---|
| 3326 | + line-height: 1.33; |
|---|
| 3327 | + border-radius: 6px; |
|---|
| 3328 | +} |
|---|
| 3329 | +select.input-group-lg > .form-control, |
|---|
| 3330 | +select.input-group-lg > .input-group-addon, |
|---|
| 3331 | +select.input-group-lg > .input-group-btn > .btn { |
|---|
| 3332 | + height: 46px; |
|---|
| 3333 | + line-height: 46px; |
|---|
| 3334 | +} |
|---|
| 3335 | +textarea.input-group-lg > .form-control, |
|---|
| 3336 | +textarea.input-group-lg > .input-group-addon, |
|---|
| 3337 | +textarea.input-group-lg > .input-group-btn > .btn, |
|---|
| 3338 | +select[multiple].input-group-lg > .form-control, |
|---|
| 3339 | +select[multiple].input-group-lg > .input-group-addon, |
|---|
| 3340 | +select[multiple].input-group-lg > .input-group-btn > .btn { |
|---|
| 3341 | + height: auto; |
|---|
| 3342 | +} |
|---|
| 3343 | +.input-group-sm > .form-control, |
|---|
| 3344 | +.input-group-sm > .input-group-addon, |
|---|
| 3345 | +.input-group-sm > .input-group-btn > .btn { |
|---|
| 3346 | + height: 30px; |
|---|
| 3347 | + padding: 5px 10px; |
|---|
| 3348 | + font-size: 12px; |
|---|
| 3349 | + line-height: 1.5; |
|---|
| 3350 | + border-radius: 3px; |
|---|
| 3351 | +} |
|---|
| 3352 | +select.input-group-sm > .form-control, |
|---|
| 3353 | +select.input-group-sm > .input-group-addon, |
|---|
| 3354 | +select.input-group-sm > .input-group-btn > .btn { |
|---|
| 3355 | + height: 30px; |
|---|
| 3356 | + line-height: 30px; |
|---|
| 3357 | +} |
|---|
| 3358 | +textarea.input-group-sm > .form-control, |
|---|
| 3359 | +textarea.input-group-sm > .input-group-addon, |
|---|
| 3360 | +textarea.input-group-sm > .input-group-btn > .btn, |
|---|
| 3361 | +select[multiple].input-group-sm > .form-control, |
|---|
| 3362 | +select[multiple].input-group-sm > .input-group-addon, |
|---|
| 3363 | +select[multiple].input-group-sm > .input-group-btn > .btn { |
|---|
| 3364 | + height: auto; |
|---|
| 3365 | +} |
|---|
| 3366 | +.input-group-addon, |
|---|
| 3367 | +.input-group-btn, |
|---|
| 3368 | +.input-group .form-control { |
|---|
| 3369 | + display: table-cell; |
|---|
| 3370 | +} |
|---|
| 3371 | +.input-group-addon:not(:first-child):not(:last-child), |
|---|
| 3372 | +.input-group-btn:not(:first-child):not(:last-child), |
|---|
| 3373 | +.input-group .form-control:not(:first-child):not(:last-child) { |
|---|
| 3374 | + border-radius: 0; |
|---|
| 3375 | +} |
|---|
| 3376 | +.input-group-addon, |
|---|
| 3377 | +.input-group-btn { |
|---|
| 3378 | + width: 1%; |
|---|
| 3379 | + white-space: nowrap; |
|---|
| 3380 | + vertical-align: middle; |
|---|
| 3381 | +} |
|---|
| 3382 | +.input-group-addon { |
|---|
| 3383 | + padding: 6px 12px; |
|---|
| 3384 | + font-size: 14px; |
|---|
| 3385 | + font-weight: normal; |
|---|
| 3386 | + line-height: 1; |
|---|
| 3387 | + color: #555; |
|---|
| 3388 | + text-align: center; |
|---|
| 3389 | + background-color: #eee; |
|---|
| 3390 | + border: 1px solid #ccc; |
|---|
| 3391 | + border-radius: 4px; |
|---|
| 3392 | +} |
|---|
| 3393 | +.input-group-addon.input-sm { |
|---|
| 3394 | + padding: 5px 10px; |
|---|
| 3395 | + font-size: 12px; |
|---|
| 3396 | + border-radius: 3px; |
|---|
| 3397 | +} |
|---|
| 3398 | +.input-group-addon.input-lg { |
|---|
| 3399 | + padding: 10px 16px; |
|---|
| 3400 | + font-size: 18px; |
|---|
| 3401 | + border-radius: 6px; |
|---|
| 3402 | +} |
|---|
| 3403 | +.input-group-addon input[type="radio"], |
|---|
| 3404 | +.input-group-addon input[type="checkbox"] { |
|---|
| 3405 | + margin-top: 0; |
|---|
| 3406 | +} |
|---|
| 3407 | +.input-group .form-control:first-child, |
|---|
| 3408 | +.input-group-addon:first-child, |
|---|
| 3409 | +.input-group-btn:first-child > .btn, |
|---|
| 3410 | +.input-group-btn:first-child > .btn-group > .btn, |
|---|
| 3411 | +.input-group-btn:first-child > .dropdown-toggle, |
|---|
| 3412 | +.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle), |
|---|
| 3413 | +.input-group-btn:last-child > .btn-group:not(:last-child) > .btn { |
|---|
| 3414 | + border-top-right-radius: 0; |
|---|
| 3415 | + border-bottom-right-radius: 0; |
|---|
| 3416 | +} |
|---|
| 3417 | +.input-group-addon:first-child { |
|---|
| 3418 | + border-right: 0; |
|---|
| 3419 | +} |
|---|
| 3420 | +.input-group .form-control:last-child, |
|---|
| 3421 | +.input-group-addon:last-child, |
|---|
| 3422 | +.input-group-btn:last-child > .btn, |
|---|
| 3423 | +.input-group-btn:last-child > .btn-group > .btn, |
|---|
| 3424 | +.input-group-btn:last-child > .dropdown-toggle, |
|---|
| 3425 | +.input-group-btn:first-child > .btn:not(:first-child), |
|---|
| 3426 | +.input-group-btn:first-child > .btn-group:not(:first-child) > .btn { |
|---|
| 3427 | + border-top-left-radius: 0; |
|---|
| 3428 | + border-bottom-left-radius: 0; |
|---|
| 3429 | +} |
|---|
| 3430 | +.input-group-addon:last-child { |
|---|
| 3431 | + border-left: 0; |
|---|
| 3432 | +} |
|---|
| 3433 | +.input-group-btn { |
|---|
| 3434 | + position: relative; |
|---|
| 3435 | + font-size: 0; |
|---|
| 3436 | + white-space: nowrap; |
|---|
| 3437 | +} |
|---|
| 3438 | +.input-group-btn > .btn { |
|---|
| 3439 | + position: relative; |
|---|
| 3440 | +} |
|---|
| 3441 | +.input-group-btn > .btn + .btn { |
|---|
| 3442 | + margin-left: -1px; |
|---|
| 3443 | +} |
|---|
| 3444 | +.input-group-btn > .btn:hover, |
|---|
| 3445 | +.input-group-btn > .btn:focus, |
|---|
| 3446 | +.input-group-btn > .btn:active { |
|---|
| 3447 | + z-index: 2; |
|---|
| 3448 | +} |
|---|
| 3449 | +.input-group-btn:first-child > .btn, |
|---|
| 3450 | +.input-group-btn:first-child > .btn-group { |
|---|
| 3451 | + margin-right: -1px; |
|---|
| 3452 | +} |
|---|
| 3453 | +.input-group-btn:last-child > .btn, |
|---|
| 3454 | +.input-group-btn:last-child > .btn-group { |
|---|
| 3455 | + margin-left: -1px; |
|---|
| 3456 | +} |
|---|
| 3457 | +.nav { |
|---|
| 3458 | + padding-left: 0; |
|---|
| 3459 | + margin-bottom: 0; |
|---|
| 3460 | + list-style: none; |
|---|
| 3461 | +} |
|---|
| 3462 | +.nav > li { |
|---|
| 3463 | + position: relative; |
|---|
| 3464 | + display: block; |
|---|
| 3465 | +} |
|---|
| 3466 | +.nav > li > a { |
|---|
| 3467 | + position: relative; |
|---|
| 3468 | + display: block; |
|---|
| 3469 | + padding: 10px 15px; |
|---|
| 3470 | +} |
|---|
| 3471 | +.nav > li > a:hover, |
|---|
| 3472 | +.nav > li > a:focus { |
|---|
| 3473 | + text-decoration: none; |
|---|
| 3474 | + background-color: #eee; |
|---|
| 3475 | +} |
|---|
| 3476 | +.nav > li.disabled > a { |
|---|
| 3477 | + color: #999; |
|---|
| 3478 | +} |
|---|
| 3479 | +.nav > li.disabled > a:hover, |
|---|
| 3480 | +.nav > li.disabled > a:focus { |
|---|
| 3481 | + color: #999; |
|---|
| 3482 | + text-decoration: none; |
|---|
| 3483 | + cursor: not-allowed; |
|---|
| 3484 | + background-color: transparent; |
|---|
| 3485 | +} |
|---|
| 3486 | +.nav .open > a, |
|---|
| 3487 | +.nav .open > a:hover, |
|---|
| 3488 | +.nav .open > a:focus { |
|---|
| 3489 | + background-color: #eee; |
|---|
| 3490 | + border-color: #428bca; |
|---|
| 3491 | +} |
|---|
| 3492 | +.nav .nav-divider { |
|---|
| 3493 | + height: 1px; |
|---|
| 3494 | + margin: 9px 0; |
|---|
| 3495 | + overflow: hidden; |
|---|
| 3496 | + background-color: #e5e5e5; |
|---|
| 3497 | +} |
|---|
| 3498 | +.nav > li > a > img { |
|---|
| 3499 | + max-width: none; |
|---|
| 3500 | +} |
|---|
| 3501 | +.nav-tabs { |
|---|
| 3502 | + border-bottom: 1px solid #ddd; |
|---|
| 3503 | +} |
|---|
| 3504 | +.nav-tabs > li { |
|---|
| 3505 | + float: left; |
|---|
| 3506 | + margin-bottom: -1px; |
|---|
| 3507 | +} |
|---|
| 3508 | +.nav-tabs > li > a { |
|---|
| 3509 | + margin-right: 2px; |
|---|
| 3510 | + line-height: 1.428571429; |
|---|
| 3511 | + border: 1px solid transparent; |
|---|
| 3512 | + border-radius: 4px 4px 0 0; |
|---|
| 3513 | +} |
|---|
| 3514 | +.nav-tabs > li > a:hover { |
|---|
| 3515 | + border-color: #eee #eee #ddd; |
|---|
| 3516 | +} |
|---|
| 3517 | +.nav-tabs > li.active > a, |
|---|
| 3518 | +.nav-tabs > li.active > a:hover, |
|---|
| 3519 | +.nav-tabs > li.active > a:focus { |
|---|
| 3520 | + color: #555; |
|---|
| 3521 | + cursor: default; |
|---|
| 3522 | + background-color: #fff; |
|---|
| 3523 | + border: 1px solid #ddd; |
|---|
| 3524 | + border-bottom-color: transparent; |
|---|
| 3525 | +} |
|---|
| 3526 | +.nav-tabs.nav-justified { |
|---|
| 3527 | + width: 100%; |
|---|
| 3528 | + border-bottom: 0; |
|---|
| 3529 | +} |
|---|
| 3530 | +.nav-tabs.nav-justified > li { |
|---|
| 3531 | + float: none; |
|---|
| 3532 | +} |
|---|
| 3533 | +.nav-tabs.nav-justified > li > a { |
|---|
| 3534 | + margin-bottom: 5px; |
|---|
| 3535 | + text-align: center; |
|---|
| 3536 | +} |
|---|
| 3537 | +.nav-tabs.nav-justified > .dropdown .dropdown-menu { |
|---|
| 3538 | + top: auto; |
|---|
| 3539 | + left: auto; |
|---|
| 3540 | +} |
|---|
| 3541 | +@media (min-width: 768px) { |
|---|
| 3542 | + .nav-tabs.nav-justified > li { |
|---|
| 3543 | + display: table-cell; |
|---|
| 3544 | + width: 1%; |
|---|
| 3545 | + } |
|---|
| 3546 | + .nav-tabs.nav-justified > li > a { |
|---|
| 3547 | + margin-bottom: 0; |
|---|
| 3548 | + } |
|---|
| 3549 | +} |
|---|
| 3550 | +.nav-tabs.nav-justified > li > a { |
|---|
| 3551 | + margin-right: 0; |
|---|
| 3552 | + border-radius: 4px; |
|---|
| 3553 | +} |
|---|
| 3554 | +.nav-tabs.nav-justified > .active > a, |
|---|
| 3555 | +.nav-tabs.nav-justified > .active > a:hover, |
|---|
| 3556 | +.nav-tabs.nav-justified > .active > a:focus { |
|---|
| 3557 | + border: 1px solid #ddd; |
|---|
| 3558 | +} |
|---|
| 3559 | +@media (min-width: 768px) { |
|---|
| 3560 | + .nav-tabs.nav-justified > li > a { |
|---|
| 3561 | + border-bottom: 1px solid #ddd; |
|---|
| 3562 | + border-radius: 4px 4px 0 0; |
|---|
| 3563 | + } |
|---|
| 3564 | + .nav-tabs.nav-justified > .active > a, |
|---|
| 3565 | + .nav-tabs.nav-justified > .active > a:hover, |
|---|
| 3566 | + .nav-tabs.nav-justified > .active > a:focus { |
|---|
| 3567 | + border-bottom-color: #fff; |
|---|
| 3568 | + } |
|---|
| 3569 | +} |
|---|
| 3570 | +.nav-pills > li { |
|---|
| 3571 | + float: left; |
|---|
| 3572 | +} |
|---|
| 3573 | +.nav-pills > li > a { |
|---|
| 3574 | + border-radius: 4px; |
|---|
| 3575 | +} |
|---|
| 3576 | +.nav-pills > li + li { |
|---|
| 3577 | + margin-left: 2px; |
|---|
| 3578 | +} |
|---|
| 3579 | +.nav-pills > li.active > a, |
|---|
| 3580 | +.nav-pills > li.active > a:hover, |
|---|
| 3581 | +.nav-pills > li.active > a:focus { |
|---|
| 3582 | + color: #fff; |
|---|
| 3583 | + background-color: #428bca; |
|---|
| 3584 | +} |
|---|
| 3585 | +.nav-stacked > li { |
|---|
| 3586 | + float: none; |
|---|
| 3587 | +} |
|---|
| 3588 | +.nav-stacked > li + li { |
|---|
| 3589 | + margin-top: 2px; |
|---|
| 3590 | + margin-left: 0; |
|---|
| 3591 | +} |
|---|
| 3592 | +.nav-justified { |
|---|
| 3593 | + width: 100%; |
|---|
| 3594 | +} |
|---|
| 3595 | +.nav-justified > li { |
|---|
| 3596 | + float: none; |
|---|
| 3597 | +} |
|---|
| 3598 | +.nav-justified > li > a { |
|---|
| 3599 | + margin-bottom: 5px; |
|---|
| 3600 | + text-align: center; |
|---|
| 3601 | +} |
|---|
| 3602 | +.nav-justified > .dropdown .dropdown-menu { |
|---|
| 3603 | + top: auto; |
|---|
| 3604 | + left: auto; |
|---|
| 3605 | +} |
|---|
| 3606 | +@media (min-width: 768px) { |
|---|
| 3607 | + .nav-justified > li { |
|---|
| 3608 | + display: table-cell; |
|---|
| 3609 | + width: 1%; |
|---|
| 3610 | + } |
|---|
| 3611 | + .nav-justified > li > a { |
|---|
| 3612 | + margin-bottom: 0; |
|---|
| 3613 | + } |
|---|
| 3614 | +} |
|---|
| 3615 | +.nav-tabs-justified { |
|---|
| 3616 | + border-bottom: 0; |
|---|
| 3617 | +} |
|---|
| 3618 | +.nav-tabs-justified > li > a { |
|---|
| 3619 | + margin-right: 0; |
|---|
| 3620 | + border-radius: 4px; |
|---|
| 3621 | +} |
|---|
| 3622 | +.nav-tabs-justified > .active > a, |
|---|
| 3623 | +.nav-tabs-justified > .active > a:hover, |
|---|
| 3624 | +.nav-tabs-justified > .active > a:focus { |
|---|
| 3625 | + border: 1px solid #ddd; |
|---|
| 3626 | +} |
|---|
| 3627 | +@media (min-width: 768px) { |
|---|
| 3628 | + .nav-tabs-justified > li > a { |
|---|
| 3629 | + border-bottom: 1px solid #ddd; |
|---|
| 3630 | + border-radius: 4px 4px 0 0; |
|---|
| 3631 | + } |
|---|
| 3632 | + .nav-tabs-justified > .active > a, |
|---|
| 3633 | + .nav-tabs-justified > .active > a:hover, |
|---|
| 3634 | + .nav-tabs-justified > .active > a:focus { |
|---|
| 3635 | + border-bottom-color: #fff; |
|---|
| 3636 | + } |
|---|
| 3637 | +} |
|---|
| 3638 | +.tab-content > .tab-pane { |
|---|
| 3639 | + display: none; |
|---|
| 3640 | +} |
|---|
| 3641 | +.tab-content > .active { |
|---|
| 3642 | + display: block; |
|---|
| 3643 | +} |
|---|
| 3644 | +.nav-tabs .dropdown-menu { |
|---|
| 3645 | + margin-top: -1px; |
|---|
| 3646 | + border-top-left-radius: 0; |
|---|
| 3647 | + border-top-right-radius: 0; |
|---|
| 3648 | +} |
|---|
| 3649 | +.navbar { |
|---|
| 3650 | + position: relative; |
|---|
| 3651 | + min-height: 50px; |
|---|
| 3652 | + margin-bottom: 20px; |
|---|
| 3653 | + border: 1px solid transparent; |
|---|
| 3654 | +} |
|---|
| 3655 | +@media (min-width: 768px) { |
|---|
| 3656 | + .navbar { |
|---|
| 3657 | + border-radius: 4px; |
|---|
| 3658 | + } |
|---|
| 3659 | +} |
|---|
| 3660 | +@media (min-width: 768px) { |
|---|
| 3661 | + .navbar-header { |
|---|
| 3662 | + float: left; |
|---|
| 3663 | + } |
|---|
| 3664 | +} |
|---|
| 3665 | +.navbar-collapse { |
|---|
| 3666 | + max-height: 340px; |
|---|
| 3667 | + padding-right: 15px; |
|---|
| 3668 | + padding-left: 15px; |
|---|
| 3669 | + overflow-x: visible; |
|---|
| 3670 | + -webkit-overflow-scrolling: touch; |
|---|
| 3671 | + border-top: 1px solid transparent; |
|---|
| 3672 | + box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1); |
|---|
| 3673 | +} |
|---|
| 3674 | +.navbar-collapse.in { |
|---|
| 3675 | + overflow-y: auto; |
|---|
| 3676 | +} |
|---|
| 3677 | +@media (min-width: 768px) { |
|---|
| 3678 | + .navbar-collapse { |
|---|
| 3679 | + width: auto; |
|---|
| 3680 | + border-top: 0; |
|---|
| 3681 | + box-shadow: none; |
|---|
| 3682 | + } |
|---|
| 3683 | + .navbar-collapse.collapse { |
|---|
| 3684 | + display: block !important; |
|---|
| 3685 | + height: auto !important; |
|---|
| 3686 | + padding-bottom: 0; |
|---|
| 3687 | + overflow: visible !important; |
|---|
| 3688 | + } |
|---|
| 3689 | + .navbar-collapse.in { |
|---|
| 3690 | + overflow-y: visible; |
|---|
| 3691 | + } |
|---|
| 3692 | + .navbar-fixed-top .navbar-collapse, |
|---|
| 3693 | + .navbar-static-top .navbar-collapse, |
|---|
| 3694 | + .navbar-fixed-bottom .navbar-collapse { |
|---|
| 3695 | + padding-right: 0; |
|---|
| 3696 | + padding-left: 0; |
|---|
| 3697 | + } |
|---|
| 3698 | +} |
|---|
| 3699 | +.container > .navbar-header, |
|---|
| 3700 | +.container-fluid > .navbar-header, |
|---|
| 3701 | +.container > .navbar-collapse, |
|---|
| 3702 | +.container-fluid > .navbar-collapse { |
|---|
| 3703 | + margin-right: -15px; |
|---|
| 3704 | + margin-left: -15px; |
|---|
| 3705 | +} |
|---|
| 3706 | +@media (min-width: 768px) { |
|---|
| 3707 | + .container > .navbar-header, |
|---|
| 3708 | + .container-fluid > .navbar-header, |
|---|
| 3709 | + .container > .navbar-collapse, |
|---|
| 3710 | + .container-fluid > .navbar-collapse { |
|---|
| 3711 | + margin-right: 0; |
|---|
| 3712 | + margin-left: 0; |
|---|
| 3713 | + } |
|---|
| 3714 | +} |
|---|
| 3715 | +.navbar-static-top { |
|---|
| 3716 | + z-index: 1000; |
|---|
| 3717 | + border-width: 0 0 1px; |
|---|
| 3718 | +} |
|---|
| 3719 | +@media (min-width: 768px) { |
|---|
| 3720 | + .navbar-static-top { |
|---|
| 3721 | + border-radius: 0; |
|---|
| 3722 | + } |
|---|
| 3723 | +} |
|---|
| 3724 | +.navbar-fixed-top, |
|---|
| 3725 | +.navbar-fixed-bottom { |
|---|
| 3726 | + position: fixed; |
|---|
| 3727 | + right: 0; |
|---|
| 3728 | + left: 0; |
|---|
| 3729 | + z-index: 1030; |
|---|
| 3730 | +} |
|---|
| 3731 | +@media (min-width: 768px) { |
|---|
| 3732 | + .navbar-fixed-top, |
|---|
| 3733 | + .navbar-fixed-bottom { |
|---|
| 3734 | + border-radius: 0; |
|---|
| 3735 | + } |
|---|
| 3736 | +} |
|---|
| 3737 | +.navbar-fixed-top { |
|---|
| 3738 | + top: 0; |
|---|
| 3739 | + border-width: 0 0 1px; |
|---|
| 3740 | +} |
|---|
| 3741 | +.navbar-fixed-bottom { |
|---|
| 3742 | + bottom: 0; |
|---|
| 3743 | + margin-bottom: 0; |
|---|
| 3744 | + border-width: 1px 0 0; |
|---|
| 3745 | +} |
|---|
| 3746 | +.navbar-brand { |
|---|
| 3747 | + float: left; |
|---|
| 3748 | + height: 20px; |
|---|
| 3749 | + padding: 15px 15px; |
|---|
| 3750 | + font-size: 18px; |
|---|
| 3751 | + line-height: 20px; |
|---|
| 3752 | +} |
|---|
| 3753 | +.navbar-brand:hover, |
|---|
| 3754 | +.navbar-brand:focus { |
|---|
| 3755 | + text-decoration: none; |
|---|
| 3756 | +} |
|---|
| 3757 | +@media (min-width: 768px) { |
|---|
| 3758 | + .navbar > .container .navbar-brand, |
|---|
| 3759 | + .navbar > .container-fluid .navbar-brand { |
|---|
| 3760 | + margin-left: -15px; |
|---|
| 3761 | + } |
|---|
| 3762 | +} |
|---|
| 3763 | +.navbar-toggle { |
|---|
| 3764 | + position: relative; |
|---|
| 3765 | + float: right; |
|---|
| 3766 | + padding: 9px 10px; |
|---|
| 3767 | + margin-top: 8px; |
|---|
| 3768 | + margin-right: 15px; |
|---|
| 3769 | + margin-bottom: 8px; |
|---|
| 3770 | + background-color: transparent; |
|---|
| 3771 | + background-image: none; |
|---|
| 3772 | + border: 1px solid transparent; |
|---|
| 3773 | + border-radius: 4px; |
|---|
| 3774 | +} |
|---|
| 3775 | +.navbar-toggle:focus { |
|---|
| 3776 | + outline: none; |
|---|
| 3777 | +} |
|---|
| 3778 | +.navbar-toggle .icon-bar { |
|---|
| 3779 | + display: block; |
|---|
| 3780 | + width: 22px; |
|---|
| 3781 | + height: 2px; |
|---|
| 3782 | + border-radius: 1px; |
|---|
| 3783 | +} |
|---|
| 3784 | +.navbar-toggle .icon-bar + .icon-bar { |
|---|
| 3785 | + margin-top: 4px; |
|---|
| 3786 | +} |
|---|
| 3787 | +@media (min-width: 768px) { |
|---|
| 3788 | + .navbar-toggle { |
|---|
| 3789 | + display: none; |
|---|
| 3790 | + } |
|---|
| 3791 | +} |
|---|
| 3792 | +.navbar-nav { |
|---|
| 3793 | + margin: 7.5px -15px; |
|---|
| 3794 | +} |
|---|
| 3795 | +.navbar-nav > li > a { |
|---|
| 3796 | + padding-top: 10px; |
|---|
| 3797 | + padding-bottom: 10px; |
|---|
| 3798 | + line-height: 20px; |
|---|
| 3799 | +} |
|---|
| 3800 | +@media (max-width: 767px) { |
|---|
| 3801 | + .navbar-nav .open .dropdown-menu { |
|---|
| 3802 | + position: static; |
|---|
| 3803 | + float: none; |
|---|
| 3804 | + width: auto; |
|---|
| 3805 | + margin-top: 0; |
|---|
| 3806 | + background-color: transparent; |
|---|
| 3807 | + border: 0; |
|---|
| 3808 | + box-shadow: none; |
|---|
| 3809 | + } |
|---|
| 3810 | + .navbar-nav .open .dropdown-menu > li > a, |
|---|
| 3811 | + .navbar-nav .open .dropdown-menu .dropdown-header { |
|---|
| 3812 | + padding: 5px 15px 5px 25px; |
|---|
| 3813 | + } |
|---|
| 3814 | + .navbar-nav .open .dropdown-menu > li > a { |
|---|
| 3815 | + line-height: 20px; |
|---|
| 3816 | + } |
|---|
| 3817 | + .navbar-nav .open .dropdown-menu > li > a:hover, |
|---|
| 3818 | + .navbar-nav .open .dropdown-menu > li > a:focus { |
|---|
| 3819 | + background-image: none; |
|---|
| 3820 | + } |
|---|
| 3821 | +} |
|---|
| 3822 | +@media (min-width: 768px) { |
|---|
| 3823 | + .navbar-nav { |
|---|
| 3824 | + float: left; |
|---|
| 3825 | + margin: 0; |
|---|
| 3826 | + } |
|---|
| 3827 | + .navbar-nav > li { |
|---|
| 3828 | + float: left; |
|---|
| 3829 | + } |
|---|
| 3830 | + .navbar-nav > li > a { |
|---|
| 3831 | + padding-top: 15px; |
|---|
| 3832 | + padding-bottom: 15px; |
|---|
| 3833 | + } |
|---|
| 3834 | + .navbar-nav.navbar-right:last-child { |
|---|
| 3835 | + margin-right: -15px; |
|---|
| 3836 | + } |
|---|
| 3837 | +} |
|---|
| 3838 | +@media (min-width: 768px) { |
|---|
| 3839 | + .navbar-left { |
|---|
| 3840 | + float: left !important; |
|---|
| 3841 | + } |
|---|
| 3842 | + .navbar-right { |
|---|
| 3843 | + float: right !important; |
|---|
| 3844 | + } |
|---|
| 3845 | +} |
|---|
| 3846 | +.navbar-form { |
|---|
| 3847 | + padding: 10px 15px; |
|---|
| 3848 | + margin-top: 8px; |
|---|
| 3849 | + margin-right: -15px; |
|---|
| 3850 | + margin-bottom: 8px; |
|---|
| 3851 | + margin-left: -15px; |
|---|
| 3852 | + border-top: 1px solid transparent; |
|---|
| 3853 | + border-bottom: 1px solid transparent; |
|---|
| 3854 | + -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1); |
|---|
| 3855 | + box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1); |
|---|
| 3856 | +} |
|---|
| 3857 | +@media (min-width: 768px) { |
|---|
| 3858 | + .navbar-form .form-group { |
|---|
| 3859 | + display: inline-block; |
|---|
| 3860 | + margin-bottom: 0; |
|---|
| 3861 | + vertical-align: middle; |
|---|
| 3862 | + } |
|---|
| 3863 | + .navbar-form .form-control { |
|---|
| 3864 | + display: inline-block; |
|---|
| 3865 | + width: auto; |
|---|
| 3866 | + vertical-align: middle; |
|---|
| 3867 | + } |
|---|
| 3868 | + .navbar-form .control-label { |
|---|
| 3869 | + margin-bottom: 0; |
|---|
| 3870 | + vertical-align: middle; |
|---|
| 3871 | + } |
|---|
| 3872 | + .navbar-form .radio, |
|---|
| 3873 | + .navbar-form .checkbox { |
|---|
| 3874 | + display: inline-block; |
|---|
| 3875 | + padding-left: 0; |
|---|
| 3876 | + margin-top: 0; |
|---|
| 3877 | + margin-bottom: 0; |
|---|
| 3878 | + vertical-align: middle; |
|---|
| 3879 | + } |
|---|
| 3880 | + .navbar-form .radio input[type="radio"], |
|---|
| 3881 | + .navbar-form .checkbox input[type="checkbox"] { |
|---|
| 3882 | + float: none; |
|---|
| 3883 | + margin-left: 0; |
|---|
| 3884 | + } |
|---|
| 3885 | + .navbar-form .has-feedback .form-control-feedback { |
|---|
| 3886 | + top: 0; |
|---|
| 3887 | + } |
|---|
| 3888 | +} |
|---|
| 3889 | +@media (max-width: 767px) { |
|---|
| 3890 | + .navbar-form .form-group { |
|---|
| 3891 | + margin-bottom: 5px; |
|---|
| 3892 | + } |
|---|
| 3893 | +} |
|---|
| 3894 | +@media (min-width: 768px) { |
|---|
| 3895 | + .navbar-form { |
|---|
| 3896 | + width: auto; |
|---|
| 3897 | + padding-top: 0; |
|---|
| 3898 | + padding-bottom: 0; |
|---|
| 3899 | + margin-right: 0; |
|---|
| 3900 | + margin-left: 0; |
|---|
| 3901 | + border: 0; |
|---|
| 3902 | + -webkit-box-shadow: none; |
|---|
| 3903 | + box-shadow: none; |
|---|
| 3904 | + } |
|---|
| 3905 | + .navbar-form.navbar-right:last-child { |
|---|
| 3906 | + margin-right: -15px; |
|---|
| 3907 | + } |
|---|
| 3908 | +} |
|---|
| 3909 | +.navbar-nav > li > .dropdown-menu { |
|---|
| 3910 | + margin-top: 0; |
|---|
| 3911 | + border-top-left-radius: 0; |
|---|
| 3912 | + border-top-right-radius: 0; |
|---|
| 3913 | +} |
|---|
| 3914 | +.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu { |
|---|
| 3915 | + border-bottom-right-radius: 0; |
|---|
| 3916 | + border-bottom-left-radius: 0; |
|---|
| 3917 | +} |
|---|
| 3918 | +.navbar-btn { |
|---|
| 3919 | + margin-top: 8px; |
|---|
| 3920 | + margin-bottom: 8px; |
|---|
| 3921 | +} |
|---|
| 3922 | +.navbar-btn.btn-sm { |
|---|
| 3923 | + margin-top: 10px; |
|---|
| 3924 | + margin-bottom: 10px; |
|---|
| 3925 | +} |
|---|
| 3926 | +.navbar-btn.btn-xs { |
|---|
| 3927 | + margin-top: 14px; |
|---|
| 3928 | + margin-bottom: 14px; |
|---|
| 3929 | +} |
|---|
| 3930 | +.navbar-text { |
|---|
| 3931 | + margin-top: 15px; |
|---|
| 3932 | + margin-bottom: 15px; |
|---|
| 3933 | +} |
|---|
| 3934 | +@media (min-width: 768px) { |
|---|
| 3935 | + .navbar-text { |
|---|
| 3936 | + float: left; |
|---|
| 3937 | + margin-right: 15px; |
|---|
| 3938 | + margin-left: 15px; |
|---|
| 3939 | + } |
|---|
| 3940 | + .navbar-text.navbar-right:last-child { |
|---|
| 3941 | + margin-right: 0; |
|---|
| 3942 | + } |
|---|
| 3943 | +} |
|---|
| 3944 | +.navbar-default { |
|---|
| 3945 | + background-color: #f8f8f8; |
|---|
| 3946 | + border-color: #e7e7e7; |
|---|
| 3947 | +} |
|---|
| 3948 | +.navbar-default .navbar-brand { |
|---|
| 3949 | + color: #777; |
|---|
| 3950 | +} |
|---|
| 3951 | +.navbar-default .navbar-brand:hover, |
|---|
| 3952 | +.navbar-default .navbar-brand:focus { |
|---|
| 3953 | + color: #5e5e5e; |
|---|
| 3954 | + background-color: transparent; |
|---|
| 3955 | +} |
|---|
| 3956 | +.navbar-default .navbar-text { |
|---|
| 3957 | + color: #777; |
|---|
| 3958 | +} |
|---|
| 3959 | +.navbar-default .navbar-nav > li > a { |
|---|
| 3960 | + color: #777; |
|---|
| 3961 | +} |
|---|
| 3962 | +.navbar-default .navbar-nav > li > a:hover, |
|---|
| 3963 | +.navbar-default .navbar-nav > li > a:focus { |
|---|
| 3964 | + color: #333; |
|---|
| 3965 | + background-color: transparent; |
|---|
| 3966 | +} |
|---|
| 3967 | +.navbar-default .navbar-nav > .active > a, |
|---|
| 3968 | +.navbar-default .navbar-nav > .active > a:hover, |
|---|
| 3969 | +.navbar-default .navbar-nav > .active > a:focus { |
|---|
| 3970 | + color: #555; |
|---|
| 3971 | + background-color: #e7e7e7; |
|---|
| 3972 | +} |
|---|
| 3973 | +.navbar-default .navbar-nav > .disabled > a, |
|---|
| 3974 | +.navbar-default .navbar-nav > .disabled > a:hover, |
|---|
| 3975 | +.navbar-default .navbar-nav > .disabled > a:focus { |
|---|
| 3976 | + color: #ccc; |
|---|
| 3977 | + background-color: transparent; |
|---|
| 3978 | +} |
|---|
| 3979 | +.navbar-default .navbar-toggle { |
|---|
| 3980 | + border-color: #ddd; |
|---|
| 3981 | +} |
|---|
| 3982 | +.navbar-default .navbar-toggle:hover, |
|---|
| 3983 | +.navbar-default .navbar-toggle:focus { |
|---|
| 3984 | + background-color: #ddd; |
|---|
| 3985 | +} |
|---|
| 3986 | +.navbar-default .navbar-toggle .icon-bar { |
|---|
| 3987 | + background-color: #888; |
|---|
| 3988 | +} |
|---|
| 3989 | +.navbar-default .navbar-collapse, |
|---|
| 3990 | +.navbar-default .navbar-form { |
|---|
| 3991 | + border-color: #e7e7e7; |
|---|
| 3992 | +} |
|---|
| 3993 | +.navbar-default .navbar-nav > .open > a, |
|---|
| 3994 | +.navbar-default .navbar-nav > .open > a:hover, |
|---|
| 3995 | +.navbar-default .navbar-nav > .open > a:focus { |
|---|
| 3996 | + color: #555; |
|---|
| 3997 | + background-color: #e7e7e7; |
|---|
| 3998 | +} |
|---|
| 3999 | +@media (max-width: 767px) { |
|---|
| 4000 | + .navbar-default .navbar-nav .open .dropdown-menu > li > a { |
|---|
| 4001 | + color: #777; |
|---|
| 4002 | + } |
|---|
| 4003 | + .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, |
|---|
| 4004 | + .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus { |
|---|
| 4005 | + color: #333; |
|---|
| 4006 | + background-color: transparent; |
|---|
| 4007 | + } |
|---|
| 4008 | + .navbar-default .navbar-nav .open .dropdown-menu > .active > a, |
|---|
| 4009 | + .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, |
|---|
| 4010 | + .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus { |
|---|
| 4011 | + color: #555; |
|---|
| 4012 | + background-color: #e7e7e7; |
|---|
| 4013 | + } |
|---|
| 4014 | + .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, |
|---|
| 4015 | + .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, |
|---|
| 4016 | + .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus { |
|---|
| 4017 | + color: #ccc; |
|---|
| 4018 | + background-color: transparent; |
|---|
| 4019 | + } |
|---|
| 4020 | +} |
|---|
| 4021 | +.navbar-default .navbar-link { |
|---|
| 4022 | + color: #777; |
|---|
| 4023 | +} |
|---|
| 4024 | +.navbar-default .navbar-link:hover { |
|---|
| 4025 | + color: #333; |
|---|
| 4026 | +} |
|---|
| 4027 | +.navbar-inverse { |
|---|
| 4028 | + background-color: #222; |
|---|
| 4029 | + border-color: #080808; |
|---|
| 4030 | +} |
|---|
| 4031 | +.navbar-inverse .navbar-brand { |
|---|
| 4032 | + color: #999; |
|---|
| 4033 | +} |
|---|
| 4034 | +.navbar-inverse .navbar-brand:hover, |
|---|
| 4035 | +.navbar-inverse .navbar-brand:focus { |
|---|
| 4036 | + color: #fff; |
|---|
| 4037 | + background-color: transparent; |
|---|
| 4038 | +} |
|---|
| 4039 | +.navbar-inverse .navbar-text { |
|---|
| 4040 | + color: #999; |
|---|
| 4041 | +} |
|---|
| 4042 | +.navbar-inverse .navbar-nav > li > a { |
|---|
| 4043 | + color: #999; |
|---|
| 4044 | +} |
|---|
| 4045 | +.navbar-inverse .navbar-nav > li > a:hover, |
|---|
| 4046 | +.navbar-inverse .navbar-nav > li > a:focus { |
|---|
| 4047 | + color: #fff; |
|---|
| 4048 | + background-color: transparent; |
|---|
| 4049 | +} |
|---|
| 4050 | +.navbar-inverse .navbar-nav > .active > a, |
|---|
| 4051 | +.navbar-inverse .navbar-nav > .active > a:hover, |
|---|
| 4052 | +.navbar-inverse .navbar-nav > .active > a:focus { |
|---|
| 4053 | + color: #fff; |
|---|
| 4054 | + background-color: #080808; |
|---|
| 4055 | +} |
|---|
| 4056 | +.navbar-inverse .navbar-nav > .disabled > a, |
|---|
| 4057 | +.navbar-inverse .navbar-nav > .disabled > a:hover, |
|---|
| 4058 | +.navbar-inverse .navbar-nav > .disabled > a:focus { |
|---|
| 4059 | + color: #444; |
|---|
| 4060 | + background-color: transparent; |
|---|
| 4061 | +} |
|---|
| 4062 | +.navbar-inverse .navbar-toggle { |
|---|
| 4063 | + border-color: #333; |
|---|
| 4064 | +} |
|---|
| 4065 | +.navbar-inverse .navbar-toggle:hover, |
|---|
| 4066 | +.navbar-inverse .navbar-toggle:focus { |
|---|
| 4067 | + background-color: #333; |
|---|
| 4068 | +} |
|---|
| 4069 | +.navbar-inverse .navbar-toggle .icon-bar { |
|---|
| 4070 | + background-color: #fff; |
|---|
| 4071 | +} |
|---|
| 4072 | +.navbar-inverse .navbar-collapse, |
|---|
| 4073 | +.navbar-inverse .navbar-form { |
|---|
| 4074 | + border-color: #101010; |
|---|
| 4075 | +} |
|---|
| 4076 | +.navbar-inverse .navbar-nav > .open > a, |
|---|
| 4077 | +.navbar-inverse .navbar-nav > .open > a:hover, |
|---|
| 4078 | +.navbar-inverse .navbar-nav > .open > a:focus { |
|---|
| 4079 | + color: #fff; |
|---|
| 4080 | + background-color: #080808; |
|---|
| 4081 | +} |
|---|
| 4082 | +@media (max-width: 767px) { |
|---|
| 4083 | + .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header { |
|---|
| 4084 | + border-color: #080808; |
|---|
| 4085 | + } |
|---|
| 4086 | + .navbar-inverse .navbar-nav .open .dropdown-menu .divider { |
|---|
| 4087 | + background-color: #080808; |
|---|
| 4088 | + } |
|---|
| 4089 | + .navbar-inverse .navbar-nav .open .dropdown-menu > li > a { |
|---|
| 4090 | + color: #999; |
|---|
| 4091 | + } |
|---|
| 4092 | + .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, |
|---|
| 4093 | + .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus { |
|---|
| 4094 | + color: #fff; |
|---|
| 4095 | + background-color: transparent; |
|---|
| 4096 | + } |
|---|
| 4097 | + .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, |
|---|
| 4098 | + .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, |
|---|
| 4099 | + .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus { |
|---|
| 4100 | + color: #fff; |
|---|
| 4101 | + background-color: #080808; |
|---|
| 4102 | + } |
|---|
| 4103 | + .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, |
|---|
| 4104 | + .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, |
|---|
| 4105 | + .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus { |
|---|
| 4106 | + color: #444; |
|---|
| 4107 | + background-color: transparent; |
|---|
| 4108 | + } |
|---|
| 4109 | +} |
|---|
| 4110 | +.navbar-inverse .navbar-link { |
|---|
| 4111 | + color: #999; |
|---|
| 4112 | +} |
|---|
| 4113 | +.navbar-inverse .navbar-link:hover { |
|---|
| 4114 | + color: #fff; |
|---|
| 4115 | +} |
|---|
| 4116 | +.breadcrumb { |
|---|
| 4117 | + padding: 8px 15px; |
|---|
| 4118 | + margin-bottom: 20px; |
|---|
| 4119 | + list-style: none; |
|---|
| 4120 | + background-color: #f5f5f5; |
|---|
| 4121 | + border-radius: 4px; |
|---|
| 4122 | +} |
|---|
| 4123 | +.breadcrumb > li { |
|---|
| 4124 | + display: inline-block; |
|---|
| 4125 | +} |
|---|
| 4126 | +.breadcrumb > li + li:before { |
|---|
| 4127 | + padding: 0 5px; |
|---|
| 4128 | + color: #ccc; |
|---|
| 4129 | + content: "/\00a0"; |
|---|
| 4130 | +} |
|---|
| 4131 | +.breadcrumb > .active { |
|---|
| 4132 | + color: #999; |
|---|
| 4133 | +} |
|---|
| 4134 | +.pagination { |
|---|
| 4135 | + display: inline-block; |
|---|
| 4136 | + padding-left: 0; |
|---|
| 4137 | + margin: 20px 0; |
|---|
| 4138 | + border-radius: 4px; |
|---|
| 4139 | +} |
|---|
| 4140 | +.pagination > li { |
|---|
| 4141 | + display: inline; |
|---|
| 4142 | +} |
|---|
| 4143 | +.pagination > li > a, |
|---|
| 4144 | +.pagination > li > span { |
|---|
| 4145 | + position: relative; |
|---|
| 4146 | + float: left; |
|---|
| 4147 | + padding: 6px 12px; |
|---|
| 4148 | + margin-left: -1px; |
|---|
| 4149 | + line-height: 1.428571429; |
|---|
| 4150 | + color: #428bca; |
|---|
| 4151 | + text-decoration: none; |
|---|
| 4152 | + background-color: #fff; |
|---|
| 4153 | + border: 1px solid #ddd; |
|---|
| 4154 | +} |
|---|
| 4155 | +.pagination > li:first-child > a, |
|---|
| 4156 | +.pagination > li:first-child > span { |
|---|
| 4157 | + margin-left: 0; |
|---|
| 4158 | + border-top-left-radius: 4px; |
|---|
| 4159 | + border-bottom-left-radius: 4px; |
|---|
| 4160 | +} |
|---|
| 4161 | +.pagination > li:last-child > a, |
|---|
| 4162 | +.pagination > li:last-child > span { |
|---|
| 4163 | + border-top-right-radius: 4px; |
|---|
| 4164 | + border-bottom-right-radius: 4px; |
|---|
| 4165 | +} |
|---|
| 4166 | +.pagination > li > a:hover, |
|---|
| 4167 | +.pagination > li > span:hover, |
|---|
| 4168 | +.pagination > li > a:focus, |
|---|
| 4169 | +.pagination > li > span:focus { |
|---|
| 4170 | + color: #2a6496; |
|---|
| 4171 | + background-color: #eee; |
|---|
| 4172 | + border-color: #ddd; |
|---|
| 4173 | +} |
|---|
| 4174 | +.pagination > .active > a, |
|---|
| 4175 | +.pagination > .active > span, |
|---|
| 4176 | +.pagination > .active > a:hover, |
|---|
| 4177 | +.pagination > .active > span:hover, |
|---|
| 4178 | +.pagination > .active > a:focus, |
|---|
| 4179 | +.pagination > .active > span:focus { |
|---|
| 4180 | + z-index: 2; |
|---|
| 4181 | + color: #fff; |
|---|
| 4182 | + cursor: default; |
|---|
| 4183 | + background-color: #428bca; |
|---|
| 4184 | + border-color: #428bca; |
|---|
| 4185 | +} |
|---|
| 4186 | +.pagination > .disabled > span, |
|---|
| 4187 | +.pagination > .disabled > span:hover, |
|---|
| 4188 | +.pagination > .disabled > span:focus, |
|---|
| 4189 | +.pagination > .disabled > a, |
|---|
| 4190 | +.pagination > .disabled > a:hover, |
|---|
| 4191 | +.pagination > .disabled > a:focus { |
|---|
| 4192 | + color: #999; |
|---|
| 4193 | + cursor: not-allowed; |
|---|
| 4194 | + background-color: #fff; |
|---|
| 4195 | + border-color: #ddd; |
|---|
| 4196 | +} |
|---|
| 4197 | +.pagination-lg > li > a, |
|---|
| 4198 | +.pagination-lg > li > span { |
|---|
| 4199 | + padding: 10px 16px; |
|---|
| 4200 | + font-size: 18px; |
|---|
| 4201 | +} |
|---|
| 4202 | +.pagination-lg > li:first-child > a, |
|---|
| 4203 | +.pagination-lg > li:first-child > span { |
|---|
| 4204 | + border-top-left-radius: 6px; |
|---|
| 4205 | + border-bottom-left-radius: 6px; |
|---|
| 4206 | +} |
|---|
| 4207 | +.pagination-lg > li:last-child > a, |
|---|
| 4208 | +.pagination-lg > li:last-child > span { |
|---|
| 4209 | + border-top-right-radius: 6px; |
|---|
| 4210 | + border-bottom-right-radius: 6px; |
|---|
| 4211 | +} |
|---|
| 4212 | +.pagination-sm > li > a, |
|---|
| 4213 | +.pagination-sm > li > span { |
|---|
| 4214 | + padding: 5px 10px; |
|---|
| 4215 | + font-size: 12px; |
|---|
| 4216 | +} |
|---|
| 4217 | +.pagination-sm > li:first-child > a, |
|---|
| 4218 | +.pagination-sm > li:first-child > span { |
|---|
| 4219 | + border-top-left-radius: 3px; |
|---|
| 4220 | + border-bottom-left-radius: 3px; |
|---|
| 4221 | +} |
|---|
| 4222 | +.pagination-sm > li:last-child > a, |
|---|
| 4223 | +.pagination-sm > li:last-child > span { |
|---|
| 4224 | + border-top-right-radius: 3px; |
|---|
| 4225 | + border-bottom-right-radius: 3px; |
|---|
| 4226 | +} |
|---|
| 4227 | +.pager { |
|---|
| 4228 | + padding-left: 0; |
|---|
| 4229 | + margin: 20px 0; |
|---|
| 4230 | + text-align: center; |
|---|
| 4231 | + list-style: none; |
|---|
| 4232 | +} |
|---|
| 4233 | +.pager li { |
|---|
| 4234 | + display: inline; |
|---|
| 4235 | +} |
|---|
| 4236 | +.pager li > a, |
|---|
| 4237 | +.pager li > span { |
|---|
| 4238 | + display: inline-block; |
|---|
| 4239 | + padding: 5px 14px; |
|---|
| 4240 | + background-color: #fff; |
|---|
| 4241 | + border: 1px solid #ddd; |
|---|
| 4242 | + border-radius: 15px; |
|---|
| 4243 | +} |
|---|
| 4244 | +.pager li > a:hover, |
|---|
| 4245 | +.pager li > a:focus { |
|---|
| 4246 | + text-decoration: none; |
|---|
| 4247 | + background-color: #eee; |
|---|
| 4248 | +} |
|---|
| 4249 | +.pager .next > a, |
|---|
| 4250 | +.pager .next > span { |
|---|
| 4251 | + float: right; |
|---|
| 4252 | +} |
|---|
| 4253 | +.pager .previous > a, |
|---|
| 4254 | +.pager .previous > span { |
|---|
| 4255 | + float: left; |
|---|
| 4256 | +} |
|---|
| 4257 | +.pager .disabled > a, |
|---|
| 4258 | +.pager .disabled > a:hover, |
|---|
| 4259 | +.pager .disabled > a:focus, |
|---|
| 4260 | +.pager .disabled > span { |
|---|
| 4261 | + color: #999; |
|---|
| 4262 | + cursor: not-allowed; |
|---|
| 4263 | + background-color: #fff; |
|---|
| 4264 | +} |
|---|
| 4265 | +.label { |
|---|
| 4266 | + display: inline; |
|---|
| 4267 | + padding: .2em .6em .3em; |
|---|
| 4268 | + font-size: 75%; |
|---|
| 4269 | + font-weight: bold; |
|---|
| 4270 | + line-height: 1; |
|---|
| 4271 | + color: #fff; |
|---|
| 4272 | + text-align: center; |
|---|
| 4273 | + white-space: nowrap; |
|---|
| 4274 | + vertical-align: baseline; |
|---|
| 4275 | + border-radius: .25em; |
|---|
| 4276 | +} |
|---|
| 4277 | +.label[href]:hover, |
|---|
| 4278 | +.label[href]:focus { |
|---|
| 4279 | + color: #fff; |
|---|
| 4280 | + text-decoration: none; |
|---|
| 4281 | + cursor: pointer; |
|---|
| 4282 | +} |
|---|
| 4283 | +.label:empty { |
|---|
| 4284 | + display: none; |
|---|
| 4285 | +} |
|---|
| 4286 | +.btn .label { |
|---|
| 4287 | + position: relative; |
|---|
| 4288 | + top: -1px; |
|---|
| 4289 | +} |
|---|
| 4290 | +.label-default { |
|---|
| 4291 | + background-color: #999; |
|---|
| 4292 | +} |
|---|
| 4293 | +.label-default[href]:hover, |
|---|
| 4294 | +.label-default[href]:focus { |
|---|
| 4295 | + background-color: #808080; |
|---|
| 4296 | +} |
|---|
| 4297 | +.label-primary { |
|---|
| 4298 | + background-color: #428bca; |
|---|
| 4299 | +} |
|---|
| 4300 | +.label-primary[href]:hover, |
|---|
| 4301 | +.label-primary[href]:focus { |
|---|
| 4302 | + background-color: #3071a9; |
|---|
| 4303 | +} |
|---|
| 4304 | +.label-success { |
|---|
| 4305 | + background-color: #5cb85c; |
|---|
| 4306 | +} |
|---|
| 4307 | +.label-success[href]:hover, |
|---|
| 4308 | +.label-success[href]:focus { |
|---|
| 4309 | + background-color: #449d44; |
|---|
| 4310 | +} |
|---|
| 4311 | +.label-info { |
|---|
| 4312 | + background-color: #5bc0de; |
|---|
| 4313 | +} |
|---|
| 4314 | +.label-info[href]:hover, |
|---|
| 4315 | +.label-info[href]:focus { |
|---|
| 4316 | + background-color: #31b0d5; |
|---|
| 4317 | +} |
|---|
| 4318 | +.label-warning { |
|---|
| 4319 | + background-color: #f0ad4e; |
|---|
| 4320 | +} |
|---|
| 4321 | +.label-warning[href]:hover, |
|---|
| 4322 | +.label-warning[href]:focus { |
|---|
| 4323 | + background-color: #ec971f; |
|---|
| 4324 | +} |
|---|
| 4325 | +.label-danger { |
|---|
| 4326 | + background-color: #d9534f; |
|---|
| 4327 | +} |
|---|
| 4328 | +.label-danger[href]:hover, |
|---|
| 4329 | +.label-danger[href]:focus { |
|---|
| 4330 | + background-color: #c9302c; |
|---|
| 4331 | +} |
|---|
| 4332 | +.badge { |
|---|
| 4333 | + display: inline-block; |
|---|
| 4334 | + min-width: 10px; |
|---|
| 4335 | + padding: 3px 7px; |
|---|
| 4336 | + font-size: 12px; |
|---|
| 4337 | + font-weight: bold; |
|---|
| 4338 | + line-height: 1; |
|---|
| 4339 | + color: #fff; |
|---|
| 4340 | + text-align: center; |
|---|
| 4341 | + white-space: nowrap; |
|---|
| 4342 | + vertical-align: baseline; |
|---|
| 4343 | + background-color: #999; |
|---|
| 4344 | + border-radius: 10px; |
|---|
| 4345 | +} |
|---|
| 4346 | +.badge:empty { |
|---|
| 4347 | + display: none; |
|---|
| 4348 | +} |
|---|
| 4349 | +.btn .badge { |
|---|
| 4350 | + position: relative; |
|---|
| 4351 | + top: -1px; |
|---|
| 4352 | +} |
|---|
| 4353 | +.btn-xs .badge { |
|---|
| 4354 | + top: 0; |
|---|
| 4355 | + padding: 1px 5px; |
|---|
| 4356 | +} |
|---|
| 4357 | +a.badge:hover, |
|---|
| 4358 | +a.badge:focus { |
|---|
| 4359 | + color: #fff; |
|---|
| 4360 | + text-decoration: none; |
|---|
| 4361 | + cursor: pointer; |
|---|
| 4362 | +} |
|---|
| 4363 | +a.list-group-item.active > .badge, |
|---|
| 4364 | +.nav-pills > .active > a > .badge { |
|---|
| 4365 | + color: #428bca; |
|---|
| 4366 | + background-color: #fff; |
|---|
| 4367 | +} |
|---|
| 4368 | +.nav-pills > li > a > .badge { |
|---|
| 4369 | + margin-left: 3px; |
|---|
| 4370 | +} |
|---|
| 4371 | +.jumbotron { |
|---|
| 4372 | + padding: 30px; |
|---|
| 4373 | + margin-bottom: 30px; |
|---|
| 4374 | + color: inherit; |
|---|
| 4375 | + background-color: #eee; |
|---|
| 4376 | +} |
|---|
| 4377 | +.jumbotron h1, |
|---|
| 4378 | +.jumbotron .h1 { |
|---|
| 4379 | + color: inherit; |
|---|
| 4380 | +} |
|---|
| 4381 | +.jumbotron p { |
|---|
| 4382 | + margin-bottom: 15px; |
|---|
| 4383 | + font-size: 21px; |
|---|
| 4384 | + font-weight: 200; |
|---|
| 4385 | +} |
|---|
| 4386 | +.container .jumbotron { |
|---|
| 4387 | + border-radius: 6px; |
|---|
| 4388 | +} |
|---|
| 4389 | +.jumbotron .container { |
|---|
| 4390 | + max-width: 100%; |
|---|
| 4391 | +} |
|---|
| 4392 | +@media screen and (min-width: 768px) { |
|---|
| 4393 | + .jumbotron { |
|---|
| 4394 | + padding-top: 48px; |
|---|
| 4395 | + padding-bottom: 48px; |
|---|
| 4396 | + } |
|---|
| 4397 | + .container .jumbotron { |
|---|
| 4398 | + padding-right: 60px; |
|---|
| 4399 | + padding-left: 60px; |
|---|
| 4400 | + } |
|---|
| 4401 | + .jumbotron h1, |
|---|
| 4402 | + .jumbotron .h1 { |
|---|
| 4403 | + font-size: 63px; |
|---|
| 4404 | + } |
|---|
| 4405 | +} |
|---|
| 4406 | +.thumbnail { |
|---|
| 4407 | + display: block; |
|---|
| 4408 | + padding: 4px; |
|---|
| 4409 | + margin-bottom: 20px; |
|---|
| 4410 | + line-height: 1.428571429; |
|---|
| 4411 | + background-color: #fff; |
|---|
| 4412 | + border: 1px solid #ddd; |
|---|
| 4413 | + border-radius: 4px; |
|---|
| 4414 | + -webkit-transition: all .2s ease-in-out; |
|---|
| 4415 | + transition: all .2s ease-in-out; |
|---|
| 4416 | +} |
|---|
| 4417 | +.thumbnail > img, |
|---|
| 4418 | +.thumbnail a > img { |
|---|
| 4419 | + display: block; |
|---|
| 4420 | + max-width: 100%; |
|---|
| 4421 | + height: auto; |
|---|
| 4422 | + margin-right: auto; |
|---|
| 4423 | + margin-left: auto; |
|---|
| 4424 | +} |
|---|
| 4425 | +a.thumbnail:hover, |
|---|
| 4426 | +a.thumbnail:focus, |
|---|
| 4427 | +a.thumbnail.active { |
|---|
| 4428 | + border-color: #428bca; |
|---|
| 4429 | +} |
|---|
| 4430 | +.thumbnail .caption { |
|---|
| 4431 | + padding: 9px; |
|---|
| 4432 | + color: #333; |
|---|
| 4433 | +} |
|---|
| 4434 | +.alert { |
|---|
| 4435 | + padding: 15px; |
|---|
| 4436 | + margin-bottom: 20px; |
|---|
| 4437 | + border: 1px solid transparent; |
|---|
| 4438 | + border-radius: 4px; |
|---|
| 4439 | +} |
|---|
| 4440 | +.alert h4 { |
|---|
| 4441 | + margin-top: 0; |
|---|
| 4442 | + color: inherit; |
|---|
| 4443 | +} |
|---|
| 4444 | +.alert .alert-link { |
|---|
| 4445 | + font-weight: bold; |
|---|
| 4446 | +} |
|---|
| 4447 | +.alert > p, |
|---|
| 4448 | +.alert > ul { |
|---|
| 4449 | + margin-bottom: 0; |
|---|
| 4450 | +} |
|---|
| 4451 | +.alert > p + p { |
|---|
| 4452 | + margin-top: 5px; |
|---|
| 4453 | +} |
|---|
| 4454 | +.alert-dismissable { |
|---|
| 4455 | + padding-right: 35px; |
|---|
| 4456 | +} |
|---|
| 4457 | +.alert-dismissable .close { |
|---|
| 4458 | + position: relative; |
|---|
| 4459 | + top: -2px; |
|---|
| 4460 | + right: -21px; |
|---|
| 4461 | + color: inherit; |
|---|
| 4462 | +} |
|---|
| 4463 | +.alert-success { |
|---|
| 4464 | + color: #3c763d; |
|---|
| 4465 | + background-color: #dff0d8; |
|---|
| 4466 | + border-color: #d6e9c6; |
|---|
| 4467 | +} |
|---|
| 4468 | +.alert-success hr { |
|---|
| 4469 | + border-top-color: #c9e2b3; |
|---|
| 4470 | +} |
|---|
| 4471 | +.alert-success .alert-link { |
|---|
| 4472 | + color: #2b542c; |
|---|
| 4473 | +} |
|---|
| 4474 | +.alert-info { |
|---|
| 4475 | + color: #31708f; |
|---|
| 4476 | + background-color: #d9edf7; |
|---|
| 4477 | + border-color: #bce8f1; |
|---|
| 4478 | +} |
|---|
| 4479 | +.alert-info hr { |
|---|
| 4480 | + border-top-color: #a6e1ec; |
|---|
| 4481 | +} |
|---|
| 4482 | +.alert-info .alert-link { |
|---|
| 4483 | + color: #245269; |
|---|
| 4484 | +} |
|---|
| 4485 | +.alert-warning { |
|---|
| 4486 | + color: #8a6d3b; |
|---|
| 4487 | + background-color: #fcf8e3; |
|---|
| 4488 | + border-color: #faebcc; |
|---|
| 4489 | +} |
|---|
| 4490 | +.alert-warning hr { |
|---|
| 4491 | + border-top-color: #f7e1b5; |
|---|
| 4492 | +} |
|---|
| 4493 | +.alert-warning .alert-link { |
|---|
| 4494 | + color: #66512c; |
|---|
| 4495 | +} |
|---|
| 4496 | +.alert-danger { |
|---|
| 4497 | + color: #a94442; |
|---|
| 4498 | + background-color: #f2dede; |
|---|
| 4499 | + border-color: #ebccd1; |
|---|
| 4500 | +} |
|---|
| 4501 | +.alert-danger hr { |
|---|
| 4502 | + border-top-color: #e4b9c0; |
|---|
| 4503 | +} |
|---|
| 4504 | +.alert-danger .alert-link { |
|---|
| 4505 | + color: #843534; |
|---|
| 4506 | +} |
|---|
| 4507 | +@-webkit-keyframes progress-bar-stripes { |
|---|
| 4508 | + from { |
|---|
| 4509 | + background-position: 40px 0; |
|---|
| 4510 | + } |
|---|
| 4511 | + to { |
|---|
| 4512 | + background-position: 0 0; |
|---|
| 4513 | + } |
|---|
| 4514 | +} |
|---|
| 4515 | +@keyframes progress-bar-stripes { |
|---|
| 4516 | + from { |
|---|
| 4517 | + background-position: 40px 0; |
|---|
| 4518 | + } |
|---|
| 4519 | + to { |
|---|
| 4520 | + background-position: 0 0; |
|---|
| 4521 | + } |
|---|
| 4522 | +} |
|---|
| 4523 | +.progress { |
|---|
| 4524 | + height: 20px; |
|---|
| 4525 | + margin-bottom: 20px; |
|---|
| 4526 | + overflow: hidden; |
|---|
| 4527 | + background-color: #f5f5f5; |
|---|
| 4528 | + border-radius: 4px; |
|---|
| 4529 | + -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1); |
|---|
| 4530 | + box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1); |
|---|
| 4531 | +} |
|---|
| 4532 | +.progress-bar { |
|---|
| 4533 | + float: left; |
|---|
| 4534 | + width: 0; |
|---|
| 4535 | + height: 100%; |
|---|
| 4536 | + font-size: 12px; |
|---|
| 4537 | + line-height: 20px; |
|---|
| 4538 | + color: #fff; |
|---|
| 4539 | + text-align: center; |
|---|
| 4540 | + background-color: #428bca; |
|---|
| 4541 | + -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15); |
|---|
| 4542 | + box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15); |
|---|
| 4543 | + -webkit-transition: width .6s ease; |
|---|
| 4544 | + transition: width .6s ease; |
|---|
| 4545 | +} |
|---|
| 4546 | +.progress-striped .progress-bar { |
|---|
| 4547 | + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); |
|---|
| 4548 | + background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); |
|---|
| 4549 | + background-size: 40px 40px; |
|---|
| 4550 | +} |
|---|
| 4551 | +.progress.active .progress-bar { |
|---|
| 4552 | + -webkit-animation: progress-bar-stripes 2s linear infinite; |
|---|
| 4553 | + animation: progress-bar-stripes 2s linear infinite; |
|---|
| 4554 | +} |
|---|
| 4555 | +.progress-bar-success { |
|---|
| 4556 | + background-color: #5cb85c; |
|---|
| 4557 | +} |
|---|
| 4558 | +.progress-striped .progress-bar-success { |
|---|
| 4559 | + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); |
|---|
| 4560 | + background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); |
|---|
| 4561 | +} |
|---|
| 4562 | +.progress-bar-info { |
|---|
| 4563 | + background-color: #5bc0de; |
|---|
| 4564 | +} |
|---|
| 4565 | +.progress-striped .progress-bar-info { |
|---|
| 4566 | + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); |
|---|
| 4567 | + background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); |
|---|
| 4568 | +} |
|---|
| 4569 | +.progress-bar-warning { |
|---|
| 4570 | + background-color: #f0ad4e; |
|---|
| 4571 | +} |
|---|
| 4572 | +.progress-striped .progress-bar-warning { |
|---|
| 4573 | + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); |
|---|
| 4574 | + background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); |
|---|
| 4575 | +} |
|---|
| 4576 | +.progress-bar-danger { |
|---|
| 4577 | + background-color: #d9534f; |
|---|
| 4578 | +} |
|---|
| 4579 | +.progress-striped .progress-bar-danger { |
|---|
| 4580 | + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); |
|---|
| 4581 | + background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); |
|---|
| 4582 | +} |
|---|
| 4583 | +.media, |
|---|
| 4584 | +.media-body { |
|---|
| 4585 | + overflow: hidden; |
|---|
| 4586 | + zoom: 1; |
|---|
| 4587 | +} |
|---|
| 4588 | +.media, |
|---|
| 4589 | +.media .media { |
|---|
| 4590 | + margin-top: 15px; |
|---|
| 4591 | +} |
|---|
| 4592 | +.media:first-child { |
|---|
| 4593 | + margin-top: 0; |
|---|
| 4594 | +} |
|---|
| 4595 | +.media-object { |
|---|
| 4596 | + display: block; |
|---|
| 4597 | +} |
|---|
| 4598 | +.media-heading { |
|---|
| 4599 | + margin: 0 0 5px; |
|---|
| 4600 | +} |
|---|
| 4601 | +.media > .pull-left { |
|---|
| 4602 | + margin-right: 10px; |
|---|
| 4603 | +} |
|---|
| 4604 | +.media > .pull-right { |
|---|
| 4605 | + margin-left: 10px; |
|---|
| 4606 | +} |
|---|
| 4607 | +.media-list { |
|---|
| 4608 | + padding-left: 0; |
|---|
| 4609 | + list-style: none; |
|---|
| 4610 | +} |
|---|
| 4611 | +.list-group { |
|---|
| 4612 | + padding-left: 0; |
|---|
| 4613 | + margin-bottom: 20px; |
|---|
| 4614 | +} |
|---|
| 4615 | +.list-group-item { |
|---|
| 4616 | + position: relative; |
|---|
| 4617 | + display: block; |
|---|
| 4618 | + padding: 10px 15px; |
|---|
| 4619 | + margin-bottom: -1px; |
|---|
| 4620 | + background-color: #fff; |
|---|
| 4621 | + border: 1px solid #ddd; |
|---|
| 4622 | +} |
|---|
| 4623 | +.list-group-item:first-child { |
|---|
| 4624 | + border-top-left-radius: 4px; |
|---|
| 4625 | + border-top-right-radius: 4px; |
|---|
| 4626 | +} |
|---|
| 4627 | +.list-group-item:last-child { |
|---|
| 4628 | + margin-bottom: 0; |
|---|
| 4629 | + border-bottom-right-radius: 4px; |
|---|
| 4630 | + border-bottom-left-radius: 4px; |
|---|
| 4631 | +} |
|---|
| 4632 | +.list-group-item > .badge { |
|---|
| 4633 | + float: right; |
|---|
| 4634 | +} |
|---|
| 4635 | +.list-group-item > .badge + .badge { |
|---|
| 4636 | + margin-right: 5px; |
|---|
| 4637 | +} |
|---|
| 4638 | +a.list-group-item { |
|---|
| 4639 | + color: #555; |
|---|
| 4640 | +} |
|---|
| 4641 | +a.list-group-item .list-group-item-heading { |
|---|
| 4642 | + color: #333; |
|---|
| 4643 | +} |
|---|
| 4644 | +a.list-group-item:hover, |
|---|
| 4645 | +a.list-group-item:focus { |
|---|
| 4646 | + text-decoration: none; |
|---|
| 4647 | + background-color: #f5f5f5; |
|---|
| 4648 | +} |
|---|
| 4649 | +a.list-group-item.active, |
|---|
| 4650 | +a.list-group-item.active:hover, |
|---|
| 4651 | +a.list-group-item.active:focus { |
|---|
| 4652 | + z-index: 2; |
|---|
| 4653 | + color: #fff; |
|---|
| 4654 | + background-color: #428bca; |
|---|
| 4655 | + border-color: #428bca; |
|---|
| 4656 | +} |
|---|
| 4657 | +a.list-group-item.active .list-group-item-heading, |
|---|
| 4658 | +a.list-group-item.active:hover .list-group-item-heading, |
|---|
| 4659 | +a.list-group-item.active:focus .list-group-item-heading { |
|---|
| 4660 | + color: inherit; |
|---|
| 4661 | +} |
|---|
| 4662 | +a.list-group-item.active .list-group-item-text, |
|---|
| 4663 | +a.list-group-item.active:hover .list-group-item-text, |
|---|
| 4664 | +a.list-group-item.active:focus .list-group-item-text { |
|---|
| 4665 | + color: #e1edf7; |
|---|
| 4666 | +} |
|---|
| 4667 | +.list-group-item-success { |
|---|
| 4668 | + color: #3c763d; |
|---|
| 4669 | + background-color: #dff0d8; |
|---|
| 4670 | +} |
|---|
| 4671 | +a.list-group-item-success { |
|---|
| 4672 | + color: #3c763d; |
|---|
| 4673 | +} |
|---|
| 4674 | +a.list-group-item-success .list-group-item-heading { |
|---|
| 4675 | + color: inherit; |
|---|
| 4676 | +} |
|---|
| 4677 | +a.list-group-item-success:hover, |
|---|
| 4678 | +a.list-group-item-success:focus { |
|---|
| 4679 | + color: #3c763d; |
|---|
| 4680 | + background-color: #d0e9c6; |
|---|
| 4681 | +} |
|---|
| 4682 | +a.list-group-item-success.active, |
|---|
| 4683 | +a.list-group-item-success.active:hover, |
|---|
| 4684 | +a.list-group-item-success.active:focus { |
|---|
| 4685 | + color: #fff; |
|---|
| 4686 | + background-color: #3c763d; |
|---|
| 4687 | + border-color: #3c763d; |
|---|
| 4688 | +} |
|---|
| 4689 | +.list-group-item-info { |
|---|
| 4690 | + color: #31708f; |
|---|
| 4691 | + background-color: #d9edf7; |
|---|
| 4692 | +} |
|---|
| 4693 | +a.list-group-item-info { |
|---|
| 4694 | + color: #31708f; |
|---|
| 4695 | +} |
|---|
| 4696 | +a.list-group-item-info .list-group-item-heading { |
|---|
| 4697 | + color: inherit; |
|---|
| 4698 | +} |
|---|
| 4699 | +a.list-group-item-info:hover, |
|---|
| 4700 | +a.list-group-item-info:focus { |
|---|
| 4701 | + color: #31708f; |
|---|
| 4702 | + background-color: #c4e3f3; |
|---|
| 4703 | +} |
|---|
| 4704 | +a.list-group-item-info.active, |
|---|
| 4705 | +a.list-group-item-info.active:hover, |
|---|
| 4706 | +a.list-group-item-info.active:focus { |
|---|
| 4707 | + color: #fff; |
|---|
| 4708 | + background-color: #31708f; |
|---|
| 4709 | + border-color: #31708f; |
|---|
| 4710 | +} |
|---|
| 4711 | +.list-group-item-warning { |
|---|
| 4712 | + color: #8a6d3b; |
|---|
| 4713 | + background-color: #fcf8e3; |
|---|
| 4714 | +} |
|---|
| 4715 | +a.list-group-item-warning { |
|---|
| 4716 | + color: #8a6d3b; |
|---|
| 4717 | +} |
|---|
| 4718 | +a.list-group-item-warning .list-group-item-heading { |
|---|
| 4719 | + color: inherit; |
|---|
| 4720 | +} |
|---|
| 4721 | +a.list-group-item-warning:hover, |
|---|
| 4722 | +a.list-group-item-warning:focus { |
|---|
| 4723 | + color: #8a6d3b; |
|---|
| 4724 | + background-color: #faf2cc; |
|---|
| 4725 | +} |
|---|
| 4726 | +a.list-group-item-warning.active, |
|---|
| 4727 | +a.list-group-item-warning.active:hover, |
|---|
| 4728 | +a.list-group-item-warning.active:focus { |
|---|
| 4729 | + color: #fff; |
|---|
| 4730 | + background-color: #8a6d3b; |
|---|
| 4731 | + border-color: #8a6d3b; |
|---|
| 4732 | +} |
|---|
| 4733 | +.list-group-item-danger { |
|---|
| 4734 | + color: #a94442; |
|---|
| 4735 | + background-color: #f2dede; |
|---|
| 4736 | +} |
|---|
| 4737 | +a.list-group-item-danger { |
|---|
| 4738 | + color: #a94442; |
|---|
| 4739 | +} |
|---|
| 4740 | +a.list-group-item-danger .list-group-item-heading { |
|---|
| 4741 | + color: inherit; |
|---|
| 4742 | +} |
|---|
| 4743 | +a.list-group-item-danger:hover, |
|---|
| 4744 | +a.list-group-item-danger:focus { |
|---|
| 4745 | + color: #a94442; |
|---|
| 4746 | + background-color: #ebcccc; |
|---|
| 4747 | +} |
|---|
| 4748 | +a.list-group-item-danger.active, |
|---|
| 4749 | +a.list-group-item-danger.active:hover, |
|---|
| 4750 | +a.list-group-item-danger.active:focus { |
|---|
| 4751 | + color: #fff; |
|---|
| 4752 | + background-color: #a94442; |
|---|
| 4753 | + border-color: #a94442; |
|---|
| 4754 | +} |
|---|
| 4755 | +.list-group-item-heading { |
|---|
| 4756 | + margin-top: 0; |
|---|
| 4757 | + margin-bottom: 5px; |
|---|
| 4758 | +} |
|---|
| 4759 | +.list-group-item-text { |
|---|
| 4760 | + margin-bottom: 0; |
|---|
| 4761 | + line-height: 1.3; |
|---|
| 4762 | +} |
|---|
| 4763 | +.panel { |
|---|
| 4764 | + margin-bottom: 20px; |
|---|
| 4765 | + background-color: #fff; |
|---|
| 4766 | + border: 1px solid transparent; |
|---|
| 4767 | + border-radius: 4px; |
|---|
| 4768 | + -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05); |
|---|
| 4769 | + box-shadow: 0 1px 1px rgba(0, 0, 0, .05); |
|---|
| 4770 | +} |
|---|
| 4771 | +.panel-body { |
|---|
| 4772 | + padding: 15px; |
|---|
| 4773 | +} |
|---|
| 4774 | +.panel > .list-group { |
|---|
| 4775 | + margin-bottom: 0; |
|---|
| 4776 | +} |
|---|
| 4777 | +.panel > .list-group .list-group-item { |
|---|
| 4778 | + border-width: 1px 0; |
|---|
| 4779 | + border-radius: 0; |
|---|
| 4780 | +} |
|---|
| 4781 | +.panel > .list-group .list-group-item:first-child { |
|---|
| 4782 | + border-top: 0; |
|---|
| 4783 | +} |
|---|
| 4784 | +.panel > .list-group .list-group-item:last-child { |
|---|
| 4785 | + border-bottom: 0; |
|---|
| 4786 | +} |
|---|
| 4787 | +.panel > .list-group:first-child .list-group-item:first-child { |
|---|
| 4788 | + border-top-left-radius: 3px; |
|---|
| 4789 | + border-top-right-radius: 3px; |
|---|
| 4790 | +} |
|---|
| 4791 | +.panel > .list-group:last-child .list-group-item:last-child { |
|---|
| 4792 | + border-bottom-right-radius: 3px; |
|---|
| 4793 | + border-bottom-left-radius: 3px; |
|---|
| 4794 | +} |
|---|
| 4795 | +.panel-heading + .list-group .list-group-item:first-child { |
|---|
| 4796 | + border-top-width: 0; |
|---|
| 4797 | +} |
|---|
| 4798 | +.panel > .table, |
|---|
| 4799 | +.panel > .table-responsive > .table { |
|---|
| 4800 | + margin-bottom: 0; |
|---|
| 4801 | +} |
|---|
| 4802 | +.panel > .table:first-child > thead:first-child > tr:first-child td:first-child, |
|---|
| 4803 | +.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child, |
|---|
| 4804 | +.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child, |
|---|
| 4805 | +.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child, |
|---|
| 4806 | +.panel > .table:first-child > thead:first-child > tr:first-child th:first-child, |
|---|
| 4807 | +.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child, |
|---|
| 4808 | +.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child, |
|---|
| 4809 | +.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child { |
|---|
| 4810 | + border-top-left-radius: 3px; |
|---|
| 4811 | +} |
|---|
| 4812 | +.panel > .table:first-child > thead:first-child > tr:first-child td:last-child, |
|---|
| 4813 | +.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child, |
|---|
| 4814 | +.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child, |
|---|
| 4815 | +.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child, |
|---|
| 4816 | +.panel > .table:first-child > thead:first-child > tr:first-child th:last-child, |
|---|
| 4817 | +.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child, |
|---|
| 4818 | +.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child, |
|---|
| 4819 | +.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child { |
|---|
| 4820 | + border-top-right-radius: 3px; |
|---|
| 4821 | +} |
|---|
| 4822 | +.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child, |
|---|
| 4823 | +.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child, |
|---|
| 4824 | +.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child, |
|---|
| 4825 | +.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child, |
|---|
| 4826 | +.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child, |
|---|
| 4827 | +.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child, |
|---|
| 4828 | +.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child, |
|---|
| 4829 | +.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child { |
|---|
| 4830 | + border-bottom-left-radius: 3px; |
|---|
| 4831 | +} |
|---|
| 4832 | +.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child, |
|---|
| 4833 | +.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child, |
|---|
| 4834 | +.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child, |
|---|
| 4835 | +.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child, |
|---|
| 4836 | +.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child, |
|---|
| 4837 | +.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child, |
|---|
| 4838 | +.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child, |
|---|
| 4839 | +.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child { |
|---|
| 4840 | + border-bottom-right-radius: 3px; |
|---|
| 4841 | +} |
|---|
| 4842 | +.panel > .panel-body + .table, |
|---|
| 4843 | +.panel > .panel-body + .table-responsive { |
|---|
| 4844 | + border-top: 1px solid #ddd; |
|---|
| 4845 | +} |
|---|
| 4846 | +.panel > .table > tbody:first-child > tr:first-child th, |
|---|
| 4847 | +.panel > .table > tbody:first-child > tr:first-child td { |
|---|
| 4848 | + border-top: 0; |
|---|
| 4849 | +} |
|---|
| 4850 | +.panel > .table-bordered, |
|---|
| 4851 | +.panel > .table-responsive > .table-bordered { |
|---|
| 4852 | + border: 0; |
|---|
| 4853 | +} |
|---|
| 4854 | +.panel > .table-bordered > thead > tr > th:first-child, |
|---|
| 4855 | +.panel > .table-responsive > .table-bordered > thead > tr > th:first-child, |
|---|
| 4856 | +.panel > .table-bordered > tbody > tr > th:first-child, |
|---|
| 4857 | +.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child, |
|---|
| 4858 | +.panel > .table-bordered > tfoot > tr > th:first-child, |
|---|
| 4859 | +.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child, |
|---|
| 4860 | +.panel > .table-bordered > thead > tr > td:first-child, |
|---|
| 4861 | +.panel > .table-responsive > .table-bordered > thead > tr > td:first-child, |
|---|
| 4862 | +.panel > .table-bordered > tbody > tr > td:first-child, |
|---|
| 4863 | +.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child, |
|---|
| 4864 | +.panel > .table-bordered > tfoot > tr > td:first-child, |
|---|
| 4865 | +.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child { |
|---|
| 4866 | + border-left: 0; |
|---|
| 4867 | +} |
|---|
| 4868 | +.panel > .table-bordered > thead > tr > th:last-child, |
|---|
| 4869 | +.panel > .table-responsive > .table-bordered > thead > tr > th:last-child, |
|---|
| 4870 | +.panel > .table-bordered > tbody > tr > th:last-child, |
|---|
| 4871 | +.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child, |
|---|
| 4872 | +.panel > .table-bordered > tfoot > tr > th:last-child, |
|---|
| 4873 | +.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child, |
|---|
| 4874 | +.panel > .table-bordered > thead > tr > td:last-child, |
|---|
| 4875 | +.panel > .table-responsive > .table-bordered > thead > tr > td:last-child, |
|---|
| 4876 | +.panel > .table-bordered > tbody > tr > td:last-child, |
|---|
| 4877 | +.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child, |
|---|
| 4878 | +.panel > .table-bordered > tfoot > tr > td:last-child, |
|---|
| 4879 | +.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child { |
|---|
| 4880 | + border-right: 0; |
|---|
| 4881 | +} |
|---|
| 4882 | +.panel > .table-bordered > thead > tr:first-child > th, |
|---|
| 4883 | +.panel > .table-responsive > .table-bordered > thead > tr:first-child > th, |
|---|
| 4884 | +.panel > .table-bordered > tbody > tr:first-child > th, |
|---|
| 4885 | +.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th, |
|---|
| 4886 | +.panel > .table-bordered > tfoot > tr:first-child > th, |
|---|
| 4887 | +.panel > .table-responsive > .table-bordered > tfoot > tr:first-child > th, |
|---|
| 4888 | +.panel > .table-bordered > thead > tr:first-child > td, |
|---|
| 4889 | +.panel > .table-responsive > .table-bordered > thead > tr:first-child > td, |
|---|
| 4890 | +.panel > .table-bordered > tbody > tr:first-child > td, |
|---|
| 4891 | +.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td, |
|---|
| 4892 | +.panel > .table-bordered > tfoot > tr:first-child > td, |
|---|
| 4893 | +.panel > .table-responsive > .table-bordered > tfoot > tr:first-child > td { |
|---|
| 4894 | + border-top: 0; |
|---|
| 4895 | +} |
|---|
| 4896 | +.panel > .table-bordered > thead > tr:last-child > th, |
|---|
| 4897 | +.panel > .table-responsive > .table-bordered > thead > tr:last-child > th, |
|---|
| 4898 | +.panel > .table-bordered > tbody > tr:last-child > th, |
|---|
| 4899 | +.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th, |
|---|
| 4900 | +.panel > .table-bordered > tfoot > tr:last-child > th, |
|---|
| 4901 | +.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th, |
|---|
| 4902 | +.panel > .table-bordered > thead > tr:last-child > td, |
|---|
| 4903 | +.panel > .table-responsive > .table-bordered > thead > tr:last-child > td, |
|---|
| 4904 | +.panel > .table-bordered > tbody > tr:last-child > td, |
|---|
| 4905 | +.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td, |
|---|
| 4906 | +.panel > .table-bordered > tfoot > tr:last-child > td, |
|---|
| 4907 | +.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td { |
|---|
| 4908 | + border-bottom: 0; |
|---|
| 4909 | +} |
|---|
| 4910 | +.panel > .table-responsive { |
|---|
| 4911 | + margin-bottom: 0; |
|---|
| 4912 | + border: 0; |
|---|
| 4913 | +} |
|---|
| 4914 | +.panel-heading { |
|---|
| 4915 | + padding: 10px 15px; |
|---|
| 4916 | + border-bottom: 1px solid transparent; |
|---|
| 4917 | + border-top-left-radius: 3px; |
|---|
| 4918 | + border-top-right-radius: 3px; |
|---|
| 4919 | +} |
|---|
| 4920 | +.panel-heading > .dropdown .dropdown-toggle { |
|---|
| 4921 | + color: inherit; |
|---|
| 4922 | +} |
|---|
| 4923 | +.panel-title { |
|---|
| 4924 | + margin-top: 0; |
|---|
| 4925 | + margin-bottom: 0; |
|---|
| 4926 | + font-size: 16px; |
|---|
| 4927 | + color: inherit; |
|---|
| 4928 | +} |
|---|
| 4929 | +.panel-title > a { |
|---|
| 4930 | + color: inherit; |
|---|
| 4931 | +} |
|---|
| 4932 | +.panel-footer { |
|---|
| 4933 | + padding: 10px 15px; |
|---|
| 4934 | + background-color: #f5f5f5; |
|---|
| 4935 | + border-top: 1px solid #ddd; |
|---|
| 4936 | + border-bottom-right-radius: 3px; |
|---|
| 4937 | + border-bottom-left-radius: 3px; |
|---|
| 4938 | +} |
|---|
| 4939 | +.panel-group { |
|---|
| 4940 | + margin-bottom: 20px; |
|---|
| 4941 | +} |
|---|
| 4942 | +.panel-group .panel { |
|---|
| 4943 | + margin-bottom: 0; |
|---|
| 4944 | + overflow: hidden; |
|---|
| 4945 | + border-radius: 4px; |
|---|
| 4946 | +} |
|---|
| 4947 | +.panel-group .panel + .panel { |
|---|
| 4948 | + margin-top: 5px; |
|---|
| 4949 | +} |
|---|
| 4950 | +.panel-group .panel-heading { |
|---|
| 4951 | + border-bottom: 0; |
|---|
| 4952 | +} |
|---|
| 4953 | +.panel-group .panel-heading + .panel-collapse .panel-body { |
|---|
| 4954 | + border-top: 1px solid #ddd; |
|---|
| 4955 | +} |
|---|
| 4956 | +.panel-group .panel-footer { |
|---|
| 4957 | + border-top: 0; |
|---|
| 4958 | +} |
|---|
| 4959 | +.panel-group .panel-footer + .panel-collapse .panel-body { |
|---|
| 4960 | + border-bottom: 1px solid #ddd; |
|---|
| 4961 | +} |
|---|
| 4962 | +.panel-default { |
|---|
| 4963 | + border-color: #ddd; |
|---|
| 4964 | +} |
|---|
| 4965 | +.panel-default > .panel-heading { |
|---|
| 4966 | + color: #333; |
|---|
| 4967 | + background-color: #f5f5f5; |
|---|
| 4968 | + border-color: #ddd; |
|---|
| 4969 | +} |
|---|
| 4970 | +.panel-default > .panel-heading + .panel-collapse .panel-body { |
|---|
| 4971 | + border-top-color: #ddd; |
|---|
| 4972 | +} |
|---|
| 4973 | +.panel-default > .panel-footer + .panel-collapse .panel-body { |
|---|
| 4974 | + border-bottom-color: #ddd; |
|---|
| 4975 | +} |
|---|
| 4976 | +.panel-primary { |
|---|
| 4977 | + border-color: #428bca; |
|---|
| 4978 | +} |
|---|
| 4979 | +.panel-primary > .panel-heading { |
|---|
| 4980 | + color: #fff; |
|---|
| 4981 | + background-color: #428bca; |
|---|
| 4982 | + border-color: #428bca; |
|---|
| 4983 | +} |
|---|
| 4984 | +.panel-primary > .panel-heading + .panel-collapse .panel-body { |
|---|
| 4985 | + border-top-color: #428bca; |
|---|
| 4986 | +} |
|---|
| 4987 | +.panel-primary > .panel-footer + .panel-collapse .panel-body { |
|---|
| 4988 | + border-bottom-color: #428bca; |
|---|
| 4989 | +} |
|---|
| 4990 | +.panel-success { |
|---|
| 4991 | + border-color: #d6e9c6; |
|---|
| 4992 | +} |
|---|
| 4993 | +.panel-success > .panel-heading { |
|---|
| 4994 | + color: #3c763d; |
|---|
| 4995 | + background-color: #dff0d8; |
|---|
| 4996 | + border-color: #d6e9c6; |
|---|
| 4997 | +} |
|---|
| 4998 | +.panel-success > .panel-heading + .panel-collapse .panel-body { |
|---|
| 4999 | + border-top-color: #d6e9c6; |
|---|
| 5000 | +} |
|---|
| 5001 | +.panel-success > .panel-footer + .panel-collapse .panel-body { |
|---|
| 5002 | + border-bottom-color: #d6e9c6; |
|---|
| 5003 | +} |
|---|
| 5004 | +.panel-info { |
|---|
| 5005 | + border-color: #bce8f1; |
|---|
| 5006 | +} |
|---|
| 5007 | +.panel-info > .panel-heading { |
|---|
| 5008 | + color: #31708f; |
|---|
| 5009 | + background-color: #d9edf7; |
|---|
| 5010 | + border-color: #bce8f1; |
|---|
| 5011 | +} |
|---|
| 5012 | +.panel-info > .panel-heading + .panel-collapse .panel-body { |
|---|
| 5013 | + border-top-color: #bce8f1; |
|---|
| 5014 | +} |
|---|
| 5015 | +.panel-info > .panel-footer + .panel-collapse .panel-body { |
|---|
| 5016 | + border-bottom-color: #bce8f1; |
|---|
| 5017 | +} |
|---|
| 5018 | +.panel-warning { |
|---|
| 5019 | + border-color: #faebcc; |
|---|
| 5020 | +} |
|---|
| 5021 | +.panel-warning > .panel-heading { |
|---|
| 5022 | + color: #8a6d3b; |
|---|
| 5023 | + background-color: #fcf8e3; |
|---|
| 5024 | + border-color: #faebcc; |
|---|
| 5025 | +} |
|---|
| 5026 | +.panel-warning > .panel-heading + .panel-collapse .panel-body { |
|---|
| 5027 | + border-top-color: #faebcc; |
|---|
| 5028 | +} |
|---|
| 5029 | +.panel-warning > .panel-footer + .panel-collapse .panel-body { |
|---|
| 5030 | + border-bottom-color: #faebcc; |
|---|
| 5031 | +} |
|---|
| 5032 | +.panel-danger { |
|---|
| 5033 | + border-color: #ebccd1; |
|---|
| 5034 | +} |
|---|
| 5035 | +.panel-danger > .panel-heading { |
|---|
| 5036 | + color: #a94442; |
|---|
| 5037 | + background-color: #f2dede; |
|---|
| 5038 | + border-color: #ebccd1; |
|---|
| 5039 | +} |
|---|
| 5040 | +.panel-danger > .panel-heading + .panel-collapse .panel-body { |
|---|
| 5041 | + border-top-color: #ebccd1; |
|---|
| 5042 | +} |
|---|
| 5043 | +.panel-danger > .panel-footer + .panel-collapse .panel-body { |
|---|
| 5044 | + border-bottom-color: #ebccd1; |
|---|
| 5045 | +} |
|---|
| 5046 | +.well { |
|---|
| 5047 | + min-height: 20px; |
|---|
| 5048 | + padding: 19px; |
|---|
| 5049 | + margin-bottom: 20px; |
|---|
| 5050 | + background-color: #f5f5f5; |
|---|
| 5051 | + border: 1px solid #e3e3e3; |
|---|
| 5052 | + border-radius: 4px; |
|---|
| 5053 | + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05); |
|---|
| 5054 | + box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05); |
|---|
| 5055 | +} |
|---|
| 5056 | +.well blockquote { |
|---|
| 5057 | + border-color: #ddd; |
|---|
| 5058 | + border-color: rgba(0, 0, 0, .15); |
|---|
| 5059 | +} |
|---|
| 5060 | +.well-lg { |
|---|
| 5061 | + padding: 24px; |
|---|
| 5062 | + border-radius: 6px; |
|---|
| 5063 | +} |
|---|
| 5064 | +.well-sm { |
|---|
| 5065 | + padding: 9px; |
|---|
| 5066 | + border-radius: 3px; |
|---|
| 5067 | +} |
|---|
| 5068 | +.close { |
|---|
| 5069 | + float: right; |
|---|
| 5070 | + font-size: 21px; |
|---|
| 5071 | + font-weight: bold; |
|---|
| 5072 | + line-height: 1; |
|---|
| 5073 | + color: #000; |
|---|
| 5074 | + text-shadow: 0 1px 0 #fff; |
|---|
| 5075 | + filter: alpha(opacity=20); |
|---|
| 5076 | + opacity: .2; |
|---|
| 5077 | +} |
|---|
| 5078 | +.close:hover, |
|---|
| 5079 | +.close:focus { |
|---|
| 5080 | + color: #000; |
|---|
| 5081 | + text-decoration: none; |
|---|
| 5082 | + cursor: pointer; |
|---|
| 5083 | + filter: alpha(opacity=50); |
|---|
| 5084 | + opacity: .5; |
|---|
| 5085 | +} |
|---|
| 5086 | +button.close { |
|---|
| 5087 | + -webkit-appearance: none; |
|---|
| 5088 | + padding: 0; |
|---|
| 5089 | + cursor: pointer; |
|---|
| 5090 | + background: transparent; |
|---|
| 5091 | + border: 0; |
|---|
| 5092 | +} |
|---|
| 5093 | +.modal-open { |
|---|
| 5094 | + overflow: hidden; |
|---|
| 5095 | +} |
|---|
| 5096 | +.modal { |
|---|
| 5097 | + position: fixed; |
|---|
| 5098 | + top: 0; |
|---|
| 5099 | + right: 0; |
|---|
| 5100 | + bottom: 0; |
|---|
| 5101 | + left: 0; |
|---|
| 5102 | + z-index: 1050; |
|---|
| 5103 | + display: none; |
|---|
| 5104 | + overflow: auto; |
|---|
| 5105 | + overflow-y: scroll; |
|---|
| 5106 | + -webkit-overflow-scrolling: touch; |
|---|
| 5107 | + outline: 0; |
|---|
| 5108 | +} |
|---|
| 5109 | +.modal.fade .modal-dialog { |
|---|
| 5110 | + -webkit-transition: -webkit-transform .3s ease-out; |
|---|
| 5111 | + -moz-transition: -moz-transform .3s ease-out; |
|---|
| 5112 | + -o-transition: -o-transform .3s ease-out; |
|---|
| 5113 | + transition: transform .3s ease-out; |
|---|
| 5114 | + -webkit-transform: translate(0, -25%); |
|---|
| 5115 | + -ms-transform: translate(0, -25%); |
|---|
| 5116 | + transform: translate(0, -25%); |
|---|
| 5117 | +} |
|---|
| 5118 | +.modal.in .modal-dialog { |
|---|
| 5119 | + -webkit-transform: translate(0, 0); |
|---|
| 5120 | + -ms-transform: translate(0, 0); |
|---|
| 5121 | + transform: translate(0, 0); |
|---|
| 5122 | +} |
|---|
| 5123 | +.modal-dialog { |
|---|
| 5124 | + position: relative; |
|---|
| 5125 | + width: auto; |
|---|
| 5126 | + margin: 10px; |
|---|
| 5127 | +} |
|---|
| 5128 | +.modal-content { |
|---|
| 5129 | + position: relative; |
|---|
| 5130 | + background-color: #fff; |
|---|
| 5131 | + background-clip: padding-box; |
|---|
| 5132 | + border: 1px solid #999; |
|---|
| 5133 | + border: 1px solid rgba(0, 0, 0, .2); |
|---|
| 5134 | + border-radius: 6px; |
|---|
| 5135 | + outline: none; |
|---|
| 5136 | + -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5); |
|---|
| 5137 | + box-shadow: 0 3px 9px rgba(0, 0, 0, .5); |
|---|
| 5138 | +} |
|---|
| 5139 | +.modal-backdrop { |
|---|
| 5140 | + position: fixed; |
|---|
| 5141 | + top: 0; |
|---|
| 5142 | + right: 0; |
|---|
| 5143 | + bottom: 0; |
|---|
| 5144 | + left: 0; |
|---|
| 5145 | + z-index: 1040; |
|---|
| 5146 | + background-color: #000; |
|---|
| 5147 | +} |
|---|
| 5148 | +.modal-backdrop.fade { |
|---|
| 5149 | + filter: alpha(opacity=0); |
|---|
| 5150 | + opacity: 0; |
|---|
| 5151 | +} |
|---|
| 5152 | +.modal-backdrop.in { |
|---|
| 5153 | + filter: alpha(opacity=50); |
|---|
| 5154 | + opacity: .5; |
|---|
| 5155 | +} |
|---|
| 5156 | +.modal-header { |
|---|
| 5157 | + min-height: 16.428571429px; |
|---|
| 5158 | + padding: 15px; |
|---|
| 5159 | + border-bottom: 1px solid #e5e5e5; |
|---|
| 5160 | +} |
|---|
| 5161 | +.modal-header .close { |
|---|
| 5162 | + margin-top: -2px; |
|---|
| 5163 | +} |
|---|
| 5164 | +.modal-title { |
|---|
| 5165 | + margin: 0; |
|---|
| 5166 | + line-height: 1.428571429; |
|---|
| 5167 | +} |
|---|
| 5168 | +.modal-body { |
|---|
| 5169 | + position: relative; |
|---|
| 5170 | + padding: 20px; |
|---|
| 5171 | +} |
|---|
| 5172 | +.modal-footer { |
|---|
| 5173 | + padding: 19px 20px 20px; |
|---|
| 5174 | + margin-top: 15px; |
|---|
| 5175 | + text-align: right; |
|---|
| 5176 | + border-top: 1px solid #e5e5e5; |
|---|
| 5177 | +} |
|---|
| 5178 | +.modal-footer .btn + .btn { |
|---|
| 5179 | + margin-bottom: 0; |
|---|
| 5180 | + margin-left: 5px; |
|---|
| 5181 | +} |
|---|
| 5182 | +.modal-footer .btn-group .btn + .btn { |
|---|
| 5183 | + margin-left: -1px; |
|---|
| 5184 | +} |
|---|
| 5185 | +.modal-footer .btn-block + .btn-block { |
|---|
| 5186 | + margin-left: 0; |
|---|
| 5187 | +} |
|---|
| 5188 | +@media (min-width: 768px) { |
|---|
| 5189 | + .modal-dialog { |
|---|
| 5190 | + width: 600px; |
|---|
| 5191 | + margin: 30px auto; |
|---|
| 5192 | + } |
|---|
| 5193 | + .modal-content { |
|---|
| 5194 | + -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5); |
|---|
| 5195 | + box-shadow: 0 5px 15px rgba(0, 0, 0, .5); |
|---|
| 5196 | + } |
|---|
| 5197 | + .modal-sm { |
|---|
| 5198 | + width: 300px; |
|---|
| 5199 | + } |
|---|
| 5200 | + .modal-lg { |
|---|
| 5201 | + width: 900px; |
|---|
| 5202 | + } |
|---|
| 5203 | +} |
|---|
| 5204 | +.tooltip { |
|---|
| 5205 | + position: absolute; |
|---|
| 5206 | + z-index: 1030; |
|---|
| 5207 | + display: block; |
|---|
| 5208 | + font-size: 12px; |
|---|
| 5209 | + line-height: 1.4; |
|---|
| 5210 | + visibility: visible; |
|---|
| 5211 | + filter: alpha(opacity=0); |
|---|
| 5212 | + opacity: 0; |
|---|
| 5213 | +} |
|---|
| 5214 | +.tooltip.in { |
|---|
| 5215 | + filter: alpha(opacity=90); |
|---|
| 5216 | + opacity: .9; |
|---|
| 5217 | +} |
|---|
| 5218 | +.tooltip.top { |
|---|
| 5219 | + padding: 5px 0; |
|---|
| 5220 | + margin-top: -3px; |
|---|
| 5221 | +} |
|---|
| 5222 | +.tooltip.right { |
|---|
| 5223 | + padding: 0 5px; |
|---|
| 5224 | + margin-left: 3px; |
|---|
| 5225 | +} |
|---|
| 5226 | +.tooltip.bottom { |
|---|
| 5227 | + padding: 5px 0; |
|---|
| 5228 | + margin-top: 3px; |
|---|
| 5229 | +} |
|---|
| 5230 | +.tooltip.left { |
|---|
| 5231 | + padding: 0 5px; |
|---|
| 5232 | + margin-left: -3px; |
|---|
| 5233 | +} |
|---|
| 5234 | +.tooltip-inner { |
|---|
| 5235 | + max-width: 200px; |
|---|
| 5236 | + padding: 3px 8px; |
|---|
| 5237 | + color: #fff; |
|---|
| 5238 | + text-align: center; |
|---|
| 5239 | + text-decoration: none; |
|---|
| 5240 | + background-color: #000; |
|---|
| 5241 | + border-radius: 4px; |
|---|
| 5242 | +} |
|---|
| 5243 | +.tooltip-arrow { |
|---|
| 5244 | + position: absolute; |
|---|
| 5245 | + width: 0; |
|---|
| 5246 | + height: 0; |
|---|
| 5247 | + border-color: transparent; |
|---|
| 5248 | + border-style: solid; |
|---|
| 5249 | +} |
|---|
| 5250 | +.tooltip.top .tooltip-arrow { |
|---|
| 5251 | + bottom: 0; |
|---|
| 5252 | + left: 50%; |
|---|
| 5253 | + margin-left: -5px; |
|---|
| 5254 | + border-width: 5px 5px 0; |
|---|
| 5255 | + border-top-color: #000; |
|---|
| 5256 | +} |
|---|
| 5257 | +.tooltip.top-left .tooltip-arrow { |
|---|
| 5258 | + bottom: 0; |
|---|
| 5259 | + left: 5px; |
|---|
| 5260 | + border-width: 5px 5px 0; |
|---|
| 5261 | + border-top-color: #000; |
|---|
| 5262 | +} |
|---|
| 5263 | +.tooltip.top-right .tooltip-arrow { |
|---|
| 5264 | + right: 5px; |
|---|
| 5265 | + bottom: 0; |
|---|
| 5266 | + border-width: 5px 5px 0; |
|---|
| 5267 | + border-top-color: #000; |
|---|
| 5268 | +} |
|---|
| 5269 | +.tooltip.right .tooltip-arrow { |
|---|
| 5270 | + top: 50%; |
|---|
| 5271 | + left: 0; |
|---|
| 5272 | + margin-top: -5px; |
|---|
| 5273 | + border-width: 5px 5px 5px 0; |
|---|
| 5274 | + border-right-color: #000; |
|---|
| 5275 | +} |
|---|
| 5276 | +.tooltip.left .tooltip-arrow { |
|---|
| 5277 | + top: 50%; |
|---|
| 5278 | + right: 0; |
|---|
| 5279 | + margin-top: -5px; |
|---|
| 5280 | + border-width: 5px 0 5px 5px; |
|---|
| 5281 | + border-left-color: #000; |
|---|
| 5282 | +} |
|---|
| 5283 | +.tooltip.bottom .tooltip-arrow { |
|---|
| 5284 | + top: 0; |
|---|
| 5285 | + left: 50%; |
|---|
| 5286 | + margin-left: -5px; |
|---|
| 5287 | + border-width: 0 5px 5px; |
|---|
| 5288 | + border-bottom-color: #000; |
|---|
| 5289 | +} |
|---|
| 5290 | +.tooltip.bottom-left .tooltip-arrow { |
|---|
| 5291 | + top: 0; |
|---|
| 5292 | + left: 5px; |
|---|
| 5293 | + border-width: 0 5px 5px; |
|---|
| 5294 | + border-bottom-color: #000; |
|---|
| 5295 | +} |
|---|
| 5296 | +.tooltip.bottom-right .tooltip-arrow { |
|---|
| 5297 | + top: 0; |
|---|
| 5298 | + right: 5px; |
|---|
| 5299 | + border-width: 0 5px 5px; |
|---|
| 5300 | + border-bottom-color: #000; |
|---|
| 5301 | +} |
|---|
| 5302 | +.popover { |
|---|
| 5303 | + position: absolute; |
|---|
| 5304 | + top: 0; |
|---|
| 5305 | + left: 0; |
|---|
| 5306 | + z-index: 1010; |
|---|
| 5307 | + display: none; |
|---|
| 5308 | + max-width: 276px; |
|---|
| 5309 | + padding: 1px; |
|---|
| 5310 | + text-align: left; |
|---|
| 5311 | + white-space: normal; |
|---|
| 5312 | + background-color: #fff; |
|---|
| 5313 | + background-clip: padding-box; |
|---|
| 5314 | + border: 1px solid #ccc; |
|---|
| 5315 | + border: 1px solid rgba(0, 0, 0, .2); |
|---|
| 5316 | + border-radius: 6px; |
|---|
| 5317 | + -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2); |
|---|
| 5318 | + box-shadow: 0 5px 10px rgba(0, 0, 0, .2); |
|---|
| 5319 | +} |
|---|
| 5320 | +.popover.top { |
|---|
| 5321 | + margin-top: -10px; |
|---|
| 5322 | +} |
|---|
| 5323 | +.popover.right { |
|---|
| 5324 | + margin-left: 10px; |
|---|
| 5325 | +} |
|---|
| 5326 | +.popover.bottom { |
|---|
| 5327 | + margin-top: 10px; |
|---|
| 5328 | +} |
|---|
| 5329 | +.popover.left { |
|---|
| 5330 | + margin-left: -10px; |
|---|
| 5331 | +} |
|---|
| 5332 | +.popover-title { |
|---|
| 5333 | + padding: 8px 14px; |
|---|
| 5334 | + margin: 0; |
|---|
| 5335 | + font-size: 14px; |
|---|
| 5336 | + font-weight: normal; |
|---|
| 5337 | + line-height: 18px; |
|---|
| 5338 | + background-color: #f7f7f7; |
|---|
| 5339 | + border-bottom: 1px solid #ebebeb; |
|---|
| 5340 | + border-radius: 5px 5px 0 0; |
|---|
| 5341 | +} |
|---|
| 5342 | +.popover-content { |
|---|
| 5343 | + padding: 9px 14px; |
|---|
| 5344 | +} |
|---|
| 5345 | +.popover .arrow, |
|---|
| 5346 | +.popover .arrow:after { |
|---|
| 5347 | + position: absolute; |
|---|
| 5348 | + display: block; |
|---|
| 5349 | + width: 0; |
|---|
| 5350 | + height: 0; |
|---|
| 5351 | + border-color: transparent; |
|---|
| 5352 | + border-style: solid; |
|---|
| 5353 | +} |
|---|
| 5354 | +.popover .arrow { |
|---|
| 5355 | + border-width: 11px; |
|---|
| 5356 | +} |
|---|
| 5357 | +.popover .arrow:after { |
|---|
| 5358 | + content: ""; |
|---|
| 5359 | + border-width: 10px; |
|---|
| 5360 | +} |
|---|
| 5361 | +.popover.top .arrow { |
|---|
| 5362 | + bottom: -11px; |
|---|
| 5363 | + left: 50%; |
|---|
| 5364 | + margin-left: -11px; |
|---|
| 5365 | + border-top-color: #999; |
|---|
| 5366 | + border-top-color: rgba(0, 0, 0, .25); |
|---|
| 5367 | + border-bottom-width: 0; |
|---|
| 5368 | +} |
|---|
| 5369 | +.popover.top .arrow:after { |
|---|
| 5370 | + bottom: 1px; |
|---|
| 5371 | + margin-left: -10px; |
|---|
| 5372 | + content: " "; |
|---|
| 5373 | + border-top-color: #fff; |
|---|
| 5374 | + border-bottom-width: 0; |
|---|
| 5375 | +} |
|---|
| 5376 | +.popover.right .arrow { |
|---|
| 5377 | + top: 50%; |
|---|
| 5378 | + left: -11px; |
|---|
| 5379 | + margin-top: -11px; |
|---|
| 5380 | + border-right-color: #999; |
|---|
| 5381 | + border-right-color: rgba(0, 0, 0, .25); |
|---|
| 5382 | + border-left-width: 0; |
|---|
| 5383 | +} |
|---|
| 5384 | +.popover.right .arrow:after { |
|---|
| 5385 | + bottom: -10px; |
|---|
| 5386 | + left: 1px; |
|---|
| 5387 | + content: " "; |
|---|
| 5388 | + border-right-color: #fff; |
|---|
| 5389 | + border-left-width: 0; |
|---|
| 5390 | +} |
|---|
| 5391 | +.popover.bottom .arrow { |
|---|
| 5392 | + top: -11px; |
|---|
| 5393 | + left: 50%; |
|---|
| 5394 | + margin-left: -11px; |
|---|
| 5395 | + border-top-width: 0; |
|---|
| 5396 | + border-bottom-color: #999; |
|---|
| 5397 | + border-bottom-color: rgba(0, 0, 0, .25); |
|---|
| 5398 | +} |
|---|
| 5399 | +.popover.bottom .arrow:after { |
|---|
| 5400 | + top: 1px; |
|---|
| 5401 | + margin-left: -10px; |
|---|
| 5402 | + content: " "; |
|---|
| 5403 | + border-top-width: 0; |
|---|
| 5404 | + border-bottom-color: #fff; |
|---|
| 5405 | +} |
|---|
| 5406 | +.popover.left .arrow { |
|---|
| 5407 | + top: 50%; |
|---|
| 5408 | + right: -11px; |
|---|
| 5409 | + margin-top: -11px; |
|---|
| 5410 | + border-right-width: 0; |
|---|
| 5411 | + border-left-color: #999; |
|---|
| 5412 | + border-left-color: rgba(0, 0, 0, .25); |
|---|
| 5413 | +} |
|---|
| 5414 | +.popover.left .arrow:after { |
|---|
| 5415 | + right: 1px; |
|---|
| 5416 | + bottom: -10px; |
|---|
| 5417 | + content: " "; |
|---|
| 5418 | + border-right-width: 0; |
|---|
| 5419 | + border-left-color: #fff; |
|---|
| 5420 | +} |
|---|
| 5421 | +.carousel { |
|---|
| 5422 | + position: relative; |
|---|
| 5423 | +} |
|---|
| 5424 | +.carousel-inner { |
|---|
| 5425 | + position: relative; |
|---|
| 5426 | + width: 100%; |
|---|
| 5427 | + overflow: hidden; |
|---|
| 5428 | +} |
|---|
| 5429 | +.carousel-inner > .item { |
|---|
| 5430 | + position: relative; |
|---|
| 5431 | + display: none; |
|---|
| 5432 | + -webkit-transition: .6s ease-in-out left; |
|---|
| 5433 | + transition: .6s ease-in-out left; |
|---|
| 5434 | +} |
|---|
| 5435 | +.carousel-inner > .item > img, |
|---|
| 5436 | +.carousel-inner > .item > a > img { |
|---|
| 5437 | + display: block; |
|---|
| 5438 | + max-width: 100%; |
|---|
| 5439 | + height: auto; |
|---|
| 5440 | + line-height: 1; |
|---|
| 5441 | +} |
|---|
| 5442 | +.carousel-inner > .active, |
|---|
| 5443 | +.carousel-inner > .next, |
|---|
| 5444 | +.carousel-inner > .prev { |
|---|
| 5445 | + display: block; |
|---|
| 5446 | +} |
|---|
| 5447 | +.carousel-inner > .active { |
|---|
| 5448 | + left: 0; |
|---|
| 5449 | +} |
|---|
| 5450 | +.carousel-inner > .next, |
|---|
| 5451 | +.carousel-inner > .prev { |
|---|
| 5452 | + position: absolute; |
|---|
| 5453 | + top: 0; |
|---|
| 5454 | + width: 100%; |
|---|
| 5455 | +} |
|---|
| 5456 | +.carousel-inner > .next { |
|---|
| 5457 | + left: 100%; |
|---|
| 5458 | +} |
|---|
| 5459 | +.carousel-inner > .prev { |
|---|
| 5460 | + left: -100%; |
|---|
| 5461 | +} |
|---|
| 5462 | +.carousel-inner > .next.left, |
|---|
| 5463 | +.carousel-inner > .prev.right { |
|---|
| 5464 | + left: 0; |
|---|
| 5465 | +} |
|---|
| 5466 | +.carousel-inner > .active.left { |
|---|
| 5467 | + left: -100%; |
|---|
| 5468 | +} |
|---|
| 5469 | +.carousel-inner > .active.right { |
|---|
| 5470 | + left: 100%; |
|---|
| 5471 | +} |
|---|
| 5472 | +.carousel-control { |
|---|
| 5473 | + position: absolute; |
|---|
| 5474 | + top: 0; |
|---|
| 5475 | + bottom: 0; |
|---|
| 5476 | + left: 0; |
|---|
| 5477 | + width: 15%; |
|---|
| 5478 | + font-size: 20px; |
|---|
| 5479 | + color: #fff; |
|---|
| 5480 | + text-align: center; |
|---|
| 5481 | + text-shadow: 0 1px 2px rgba(0, 0, 0, .6); |
|---|
| 5482 | + filter: alpha(opacity=50); |
|---|
| 5483 | + opacity: .5; |
|---|
| 5484 | +} |
|---|
| 5485 | +.carousel-control.left { |
|---|
| 5486 | + background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, .5) 0%), color-stop(rgba(0, 0, 0, .0001) 100%)); |
|---|
| 5487 | + background-image: linear-gradient(to right, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%); |
|---|
| 5488 | + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1); |
|---|
| 5489 | + background-repeat: repeat-x; |
|---|
| 5490 | +} |
|---|
| 5491 | +.carousel-control.right { |
|---|
| 5492 | + right: 0; |
|---|
| 5493 | + left: auto; |
|---|
| 5494 | + background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, .0001) 0%), color-stop(rgba(0, 0, 0, .5) 100%)); |
|---|
| 5495 | + background-image: linear-gradient(to right, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%); |
|---|
| 5496 | + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1); |
|---|
| 5497 | + background-repeat: repeat-x; |
|---|
| 5498 | +} |
|---|
| 5499 | +.carousel-control:hover, |
|---|
| 5500 | +.carousel-control:focus { |
|---|
| 5501 | + color: #fff; |
|---|
| 5502 | + text-decoration: none; |
|---|
| 5503 | + filter: alpha(opacity=90); |
|---|
| 5504 | + outline: none; |
|---|
| 5505 | + opacity: .9; |
|---|
| 5506 | +} |
|---|
| 5507 | +.carousel-control .icon-prev, |
|---|
| 5508 | +.carousel-control .icon-next, |
|---|
| 5509 | +.carousel-control .glyphicon-chevron-left, |
|---|
| 5510 | +.carousel-control .glyphicon-chevron-right { |
|---|
| 5511 | + position: absolute; |
|---|
| 5512 | + top: 50%; |
|---|
| 5513 | + z-index: 5; |
|---|
| 5514 | + display: inline-block; |
|---|
| 5515 | +} |
|---|
| 5516 | +.carousel-control .icon-prev, |
|---|
| 5517 | +.carousel-control .glyphicon-chevron-left { |
|---|
| 5518 | + left: 50%; |
|---|
| 5519 | +} |
|---|
| 5520 | +.carousel-control .icon-next, |
|---|
| 5521 | +.carousel-control .glyphicon-chevron-right { |
|---|
| 5522 | + right: 50%; |
|---|
| 5523 | +} |
|---|
| 5524 | +.carousel-control .icon-prev, |
|---|
| 5525 | +.carousel-control .icon-next { |
|---|
| 5526 | + width: 20px; |
|---|
| 5527 | + height: 20px; |
|---|
| 5528 | + margin-top: -10px; |
|---|
| 5529 | + margin-left: -10px; |
|---|
| 5530 | + font-family: serif; |
|---|
| 5531 | +} |
|---|
| 5532 | +.carousel-control .icon-prev:before { |
|---|
| 5533 | + content: '\2039'; |
|---|
| 5534 | +} |
|---|
| 5535 | +.carousel-control .icon-next:before { |
|---|
| 5536 | + content: '\203a'; |
|---|
| 5537 | +} |
|---|
| 5538 | +.carousel-indicators { |
|---|
| 5539 | + position: absolute; |
|---|
| 5540 | + bottom: 10px; |
|---|
| 5541 | + left: 50%; |
|---|
| 5542 | + z-index: 15; |
|---|
| 5543 | + width: 60%; |
|---|
| 5544 | + padding-left: 0; |
|---|
| 5545 | + margin-left: -30%; |
|---|
| 5546 | + text-align: center; |
|---|
| 5547 | + list-style: none; |
|---|
| 5548 | +} |
|---|
| 5549 | +.carousel-indicators li { |
|---|
| 5550 | + display: inline-block; |
|---|
| 5551 | + width: 10px; |
|---|
| 5552 | + height: 10px; |
|---|
| 5553 | + margin: 1px; |
|---|
| 5554 | + text-indent: -999px; |
|---|
| 5555 | + cursor: pointer; |
|---|
| 5556 | + background-color: #000 \9; |
|---|
| 5557 | + background-color: rgba(0, 0, 0, 0); |
|---|
| 5558 | + border: 1px solid #fff; |
|---|
| 5559 | + border-radius: 10px; |
|---|
| 5560 | +} |
|---|
| 5561 | +.carousel-indicators .active { |
|---|
| 5562 | + width: 12px; |
|---|
| 5563 | + height: 12px; |
|---|
| 5564 | + margin: 0; |
|---|
| 5565 | + background-color: #fff; |
|---|
| 5566 | +} |
|---|
| 5567 | +.carousel-caption { |
|---|
| 5568 | + position: absolute; |
|---|
| 5569 | + right: 15%; |
|---|
| 5570 | + bottom: 20px; |
|---|
| 5571 | + left: 15%; |
|---|
| 5572 | + z-index: 10; |
|---|
| 5573 | + padding-top: 20px; |
|---|
| 5574 | + padding-bottom: 20px; |
|---|
| 5575 | + color: #fff; |
|---|
| 5576 | + text-align: center; |
|---|
| 5577 | + text-shadow: 0 1px 2px rgba(0, 0, 0, .6); |
|---|
| 5578 | +} |
|---|
| 5579 | +.carousel-caption .btn { |
|---|
| 5580 | + text-shadow: none; |
|---|
| 5581 | +} |
|---|
| 5582 | +@media screen and (min-width: 768px) { |
|---|
| 5583 | + .carousel-control .glyphicons-chevron-left, |
|---|
| 5584 | + .carousel-control .glyphicons-chevron-right, |
|---|
| 5585 | + .carousel-control .icon-prev, |
|---|
| 5586 | + .carousel-control .icon-next { |
|---|
| 5587 | + width: 30px; |
|---|
| 5588 | + height: 30px; |
|---|
| 5589 | + margin-top: -15px; |
|---|
| 5590 | + margin-left: -15px; |
|---|
| 5591 | + font-size: 30px; |
|---|
| 5592 | + } |
|---|
| 5593 | + .carousel-caption { |
|---|
| 5594 | + right: 20%; |
|---|
| 5595 | + left: 20%; |
|---|
| 5596 | + padding-bottom: 30px; |
|---|
| 5597 | + } |
|---|
| 5598 | + .carousel-indicators { |
|---|
| 5599 | + bottom: 20px; |
|---|
| 5600 | + } |
|---|
| 5601 | +} |
|---|
| 5602 | +.clearfix:before, |
|---|
| 5603 | +.clearfix:after, |
|---|
| 5604 | +.container:before, |
|---|
| 5605 | +.container:after, |
|---|
| 5606 | +.container-fluid:before, |
|---|
| 5607 | +.container-fluid:after, |
|---|
| 5608 | +.row:before, |
|---|
| 5609 | +.row:after, |
|---|
| 5610 | +.form-horizontal .form-group:before, |
|---|
| 5611 | +.form-horizontal .form-group:after, |
|---|
| 5612 | +.btn-toolbar:before, |
|---|
| 5613 | +.btn-toolbar:after, |
|---|
| 5614 | +.btn-group-vertical > .btn-group:before, |
|---|
| 5615 | +.btn-group-vertical > .btn-group:after, |
|---|
| 5616 | +.nav:before, |
|---|
| 5617 | +.nav:after, |
|---|
| 5618 | +.navbar:before, |
|---|
| 5619 | +.navbar:after, |
|---|
| 5620 | +.navbar-header:before, |
|---|
| 5621 | +.navbar-header:after, |
|---|
| 5622 | +.navbar-collapse:before, |
|---|
| 5623 | +.navbar-collapse:after, |
|---|
| 5624 | +.pager:before, |
|---|
| 5625 | +.pager:after, |
|---|
| 5626 | +.panel-body:before, |
|---|
| 5627 | +.panel-body:after, |
|---|
| 5628 | +.modal-footer:before, |
|---|
| 5629 | +.modal-footer:after { |
|---|
| 5630 | + display: table; |
|---|
| 5631 | + content: " "; |
|---|
| 5632 | +} |
|---|
| 5633 | +.clearfix:after, |
|---|
| 5634 | +.container:after, |
|---|
| 5635 | +.container-fluid:after, |
|---|
| 5636 | +.row:after, |
|---|
| 5637 | +.form-horizontal .form-group:after, |
|---|
| 5638 | +.btn-toolbar:after, |
|---|
| 5639 | +.btn-group-vertical > .btn-group:after, |
|---|
| 5640 | +.nav:after, |
|---|
| 5641 | +.navbar:after, |
|---|
| 5642 | +.navbar-header:after, |
|---|
| 5643 | +.navbar-collapse:after, |
|---|
| 5644 | +.pager:after, |
|---|
| 5645 | +.panel-body:after, |
|---|
| 5646 | +.modal-footer:after { |
|---|
| 5647 | + clear: both; |
|---|
| 5648 | +} |
|---|
| 5649 | +.center-block { |
|---|
| 5650 | + display: block; |
|---|
| 5651 | + margin-right: auto; |
|---|
| 5652 | + margin-left: auto; |
|---|
| 5653 | +} |
|---|
| 5654 | +.pull-right { |
|---|
| 5655 | + float: right !important; |
|---|
| 5656 | +} |
|---|
| 5657 | +.pull-left { |
|---|
| 5658 | + float: left !important; |
|---|
| 5659 | +} |
|---|
| 5660 | +.hide { |
|---|
| 5661 | + display: none !important; |
|---|
| 5662 | +} |
|---|
| 5663 | +.show { |
|---|
| 5664 | + display: block !important; |
|---|
| 5665 | +} |
|---|
| 5666 | +.invisible { |
|---|
| 5667 | + visibility: hidden; |
|---|
| 5668 | +} |
|---|
| 5669 | +.text-hide { |
|---|
| 5670 | + font: 0/0 a; |
|---|
| 5671 | + color: transparent; |
|---|
| 5672 | + text-shadow: none; |
|---|
| 5673 | + background-color: transparent; |
|---|
| 5674 | + border: 0; |
|---|
| 5675 | +} |
|---|
| 5676 | +.hidden { |
|---|
| 5677 | + display: none !important; |
|---|
| 5678 | + visibility: hidden !important; |
|---|
| 5679 | +} |
|---|
| 5680 | +.affix { |
|---|
| 5681 | + position: fixed; |
|---|
| 5682 | +} |
|---|
| 5683 | +@-ms-viewport { |
|---|
| 5684 | + width: device-width; |
|---|
| 5685 | +} |
|---|
| 5686 | +.visible-xs, |
|---|
| 5687 | +tr.visible-xs, |
|---|
| 5688 | +th.visible-xs, |
|---|
| 5689 | +td.visible-xs { |
|---|
| 5690 | + display: none !important; |
|---|
| 5691 | +} |
|---|
| 5692 | +@media (max-width: 767px) { |
|---|
| 5693 | + .visible-xs { |
|---|
| 5694 | + display: block !important; |
|---|
| 5695 | + } |
|---|
| 5696 | + table.visible-xs { |
|---|
| 5697 | + display: table; |
|---|
| 5698 | + } |
|---|
| 5699 | + tr.visible-xs { |
|---|
| 5700 | + display: table-row !important; |
|---|
| 5701 | + } |
|---|
| 5702 | + th.visible-xs, |
|---|
| 5703 | + td.visible-xs { |
|---|
| 5704 | + display: table-cell !important; |
|---|
| 5705 | + } |
|---|
| 5706 | +} |
|---|
| 5707 | +.visible-sm, |
|---|
| 5708 | +tr.visible-sm, |
|---|
| 5709 | +th.visible-sm, |
|---|
| 5710 | +td.visible-sm { |
|---|
| 5711 | + display: none !important; |
|---|
| 5712 | +} |
|---|
| 5713 | +@media (min-width: 768px) and (max-width: 991px) { |
|---|
| 5714 | + .visible-sm { |
|---|
| 5715 | + display: block !important; |
|---|
| 5716 | + } |
|---|
| 5717 | + table.visible-sm { |
|---|
| 5718 | + display: table; |
|---|
| 5719 | + } |
|---|
| 5720 | + tr.visible-sm { |
|---|
| 5721 | + display: table-row !important; |
|---|
| 5722 | + } |
|---|
| 5723 | + th.visible-sm, |
|---|
| 5724 | + td.visible-sm { |
|---|
| 5725 | + display: table-cell !important; |
|---|
| 5726 | + } |
|---|
| 5727 | +} |
|---|
| 5728 | +.visible-md, |
|---|
| 5729 | +tr.visible-md, |
|---|
| 5730 | +th.visible-md, |
|---|
| 5731 | +td.visible-md { |
|---|
| 5732 | + display: none !important; |
|---|
| 5733 | +} |
|---|
| 5734 | +@media (min-width: 992px) and (max-width: 1199px) { |
|---|
| 5735 | + .visible-md { |
|---|
| 5736 | + display: block !important; |
|---|
| 5737 | + } |
|---|
| 5738 | + table.visible-md { |
|---|
| 5739 | + display: table; |
|---|
| 5740 | + } |
|---|
| 5741 | + tr.visible-md { |
|---|
| 5742 | + display: table-row !important; |
|---|
| 5743 | + } |
|---|
| 5744 | + th.visible-md, |
|---|
| 5745 | + td.visible-md { |
|---|
| 5746 | + display: table-cell !important; |
|---|
| 5747 | + } |
|---|
| 5748 | +} |
|---|
| 5749 | +.visible-lg, |
|---|
| 5750 | +tr.visible-lg, |
|---|
| 5751 | +th.visible-lg, |
|---|
| 5752 | +td.visible-lg { |
|---|
| 5753 | + display: none !important; |
|---|
| 5754 | +} |
|---|
| 5755 | +@media (min-width: 1200px) { |
|---|
| 5756 | + .visible-lg { |
|---|
| 5757 | + display: block !important; |
|---|
| 5758 | + } |
|---|
| 5759 | + table.visible-lg { |
|---|
| 5760 | + display: table; |
|---|
| 5761 | + } |
|---|
| 5762 | + tr.visible-lg { |
|---|
| 5763 | + display: table-row !important; |
|---|
| 5764 | + } |
|---|
| 5765 | + th.visible-lg, |
|---|
| 5766 | + td.visible-lg { |
|---|
| 5767 | + display: table-cell !important; |
|---|
| 5768 | + } |
|---|
| 5769 | +} |
|---|
| 5770 | +@media (max-width: 767px) { |
|---|
| 5771 | + .hidden-xs, |
|---|
| 5772 | + tr.hidden-xs, |
|---|
| 5773 | + th.hidden-xs, |
|---|
| 5774 | + td.hidden-xs { |
|---|
| 5775 | + display: none !important; |
|---|
| 5776 | + } |
|---|
| 5777 | +} |
|---|
| 5778 | +@media (min-width: 768px) and (max-width: 991px) { |
|---|
| 5779 | + .hidden-sm, |
|---|
| 5780 | + tr.hidden-sm, |
|---|
| 5781 | + th.hidden-sm, |
|---|
| 5782 | + td.hidden-sm { |
|---|
| 5783 | + display: none !important; |
|---|
| 5784 | + } |
|---|
| 5785 | +} |
|---|
| 5786 | +@media (min-width: 992px) and (max-width: 1199px) { |
|---|
| 5787 | + .hidden-md, |
|---|
| 5788 | + tr.hidden-md, |
|---|
| 5789 | + th.hidden-md, |
|---|
| 5790 | + td.hidden-md { |
|---|
| 5791 | + display: none !important; |
|---|
| 5792 | + } |
|---|
| 5793 | +} |
|---|
| 5794 | +@media (min-width: 1200px) { |
|---|
| 5795 | + .hidden-lg, |
|---|
| 5796 | + tr.hidden-lg, |
|---|
| 5797 | + th.hidden-lg, |
|---|
| 5798 | + td.hidden-lg { |
|---|
| 5799 | + display: none !important; |
|---|
| 5800 | + } |
|---|
| 5801 | +} |
|---|
| 5802 | +.visible-print, |
|---|
| 5803 | +tr.visible-print, |
|---|
| 5804 | +th.visible-print, |
|---|
| 5805 | +td.visible-print { |
|---|
| 5806 | + display: none !important; |
|---|
| 5807 | +} |
|---|
| 5808 | +@media print { |
|---|
| 5809 | + .visible-print { |
|---|
| 5810 | + display: block !important; |
|---|
| 5811 | + } |
|---|
| 5812 | + table.visible-print { |
|---|
| 5813 | + display: table; |
|---|
| 5814 | + } |
|---|
| 5815 | + tr.visible-print { |
|---|
| 5816 | + display: table-row !important; |
|---|
| 5817 | + } |
|---|
| 5818 | + th.visible-print, |
|---|
| 5819 | + td.visible-print { |
|---|
| 5820 | + display: table-cell !important; |
|---|
| 5821 | + } |
|---|
| 5822 | +} |
|---|
| 5823 | +@media print { |
|---|
| 5824 | + .hidden-print, |
|---|
| 5825 | + tr.hidden-print, |
|---|
| 5826 | + th.hidden-print, |
|---|
| 5827 | + td.hidden-print { |
|---|
| 5828 | + display: none !important; |
|---|
| 5829 | + } |
|---|
| 5830 | +} |
|---|
| 5831 | +/*# sourceMappingURL=bootstrap.css.map */ |
|---|
| .. | .. |
|---|
| 1 | +{"version":3,"sources":["less/normalize.less","less/print.less","less/scaffolding.less","less/mixins.less","less/variables.less","less/type.less","less/code.less","less/grid.less","less/tables.less","less/forms.less","less/buttons.less","less/component-animations.less","less/glyphicons.less","less/dropdowns.less","less/button-groups.less","less/input-groups.less","less/navs.less","less/navbar.less","less/utilities.less","less/breadcrumbs.less","less/pagination.less","less/pager.less","less/labels.less","less/badges.less","less/jumbotron.less","less/thumbnails.less","less/alerts.less","less/progress-bars.less","less/media.less","less/list-group.less","less/panels.less","less/wells.less","less/close.less","less/modals.less","less/tooltip.less","less/popovers.less","less/carousel.less","less/responsive-utilities.less"],"names":[],"mappings":"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","sourcesContent":["/*! normalize.css v3.0.0 | MIT License | git.io/normalize */\n\n//\n// 1. Set default font family to sans-serif.\n// 2. Prevent iOS text size adjust after orientation change, without disabling\n// user zoom.\n//\n\nhtml {\n font-family: sans-serif; // 1\n -ms-text-size-adjust: 100%; // 2\n -webkit-text-size-adjust: 100%; // 2\n}\n\n//\n// Remove default margin.\n//\n\nbody {\n margin: 0;\n}\n\n// HTML5 display definitions\n// ==========================================================================\n\n//\n// Correct `block` display not defined in IE 8/9.\n//\n\narticle,\naside,\ndetails,\nfigcaption,\nfigure,\nfooter,\nheader,\nhgroup,\nmain,\nnav,\nsection,\nsummary {\n display: block;\n}\n\n//\n// 1. Correct `inline-block` display not defined in IE 8/9.\n// 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.\n//\n\naudio,\ncanvas,\nprogress,\nvideo {\n display: inline-block; // 1\n vertical-align: baseline; // 2\n}\n\n//\n// Prevent modern browsers from displaying `audio` without controls.\n// Remove excess height in iOS 5 devices.\n//\n\naudio:not([controls]) {\n display: none;\n height: 0;\n}\n\n//\n// Address `[hidden]` styling not present in IE 8/9.\n// Hide the `template` element in IE, Safari, and Firefox < 22.\n//\n\n[hidden],\ntemplate {\n display: none;\n}\n\n// Links\n// ==========================================================================\n\n//\n// Remove the gray background color from active links in IE 10.\n//\n\na {\n background: transparent;\n}\n\n//\n// Improve readability when focused and also mouse hovered in all browsers.\n//\n\na:active,\na:hover {\n outline: 0;\n}\n\n// Text-level semantics\n// ==========================================================================\n\n//\n// Address styling not present in IE 8/9, Safari 5, and Chrome.\n//\n\nabbr[title] {\n border-bottom: 1px dotted;\n}\n\n//\n// Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.\n//\n\nb,\nstrong {\n font-weight: bold;\n}\n\n//\n// Address styling not present in Safari 5 and Chrome.\n//\n\ndfn {\n font-style: italic;\n}\n\n//\n// Address variable `h1` font-size and margin within `section` and `article`\n// contexts in Firefox 4+, Safari 5, and Chrome.\n//\n\nh1 {\n font-size: 2em;\n margin: 0.67em 0;\n}\n\n//\n// Address styling not present in IE 8/9.\n//\n\nmark {\n background: #ff0;\n color: #000;\n}\n\n//\n// Address inconsistent and variable font size in all browsers.\n//\n\nsmall {\n font-size: 80%;\n}\n\n//\n// Prevent `sub` and `sup` affecting `line-height` in all browsers.\n//\n\nsub,\nsup {\n font-size: 75%;\n line-height: 0;\n position: relative;\n vertical-align: baseline;\n}\n\nsup {\n top: -0.5em;\n}\n\nsub {\n bottom: -0.25em;\n}\n\n// Embedded content\n// ==========================================================================\n\n//\n// Remove border when inside `a` element in IE 8/9.\n//\n\nimg {\n border: 0;\n}\n\n//\n// Correct overflow displayed oddly in IE 9.\n//\n\nsvg:not(:root) {\n overflow: hidden;\n}\n\n// Grouping content\n// ==========================================================================\n\n//\n// Address margin not present in IE 8/9 and Safari 5.\n//\n\nfigure {\n margin: 1em 40px;\n}\n\n//\n// Address differences between Firefox and other browsers.\n//\n\nhr {\n -moz-box-sizing: content-box;\n box-sizing: content-box;\n height: 0;\n}\n\n//\n// Contain overflow in all browsers.\n//\n\npre {\n overflow: auto;\n}\n\n//\n// Address odd `em`-unit font size rendering in all browsers.\n//\n\ncode,\nkbd,\npre,\nsamp {\n font-family: monospace, monospace;\n font-size: 1em;\n}\n\n// Forms\n// ==========================================================================\n\n//\n// Known limitation: by default, Chrome and Safari on OS X allow very limited\n// styling of `select`, unless a `border` property is set.\n//\n\n//\n// 1. Correct color not being inherited.\n// Known issue: affects color of disabled elements.\n// 2. Correct font properties not being inherited.\n// 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.\n//\n\nbutton,\ninput,\noptgroup,\nselect,\ntextarea {\n color: inherit; // 1\n font: inherit; // 2\n margin: 0; // 3\n}\n\n//\n// Address `overflow` set to `hidden` in IE 8/9/10.\n//\n\nbutton {\n overflow: visible;\n}\n\n//\n// Address inconsistent `text-transform` inheritance for `button` and `select`.\n// All other form control elements do not inherit `text-transform` values.\n// Correct `button` style inheritance in Firefox, IE 8+, and Opera\n// Correct `select` style inheritance in Firefox.\n//\n\nbutton,\nselect {\n text-transform: none;\n}\n\n//\n// 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`\n// and `video` controls.\n// 2. Correct inability to style clickable `input` types in iOS.\n// 3. Improve usability and consistency of cursor style between image-type\n// `input` and others.\n//\n\nbutton,\nhtml input[type=\"button\"], // 1\ninput[type=\"reset\"],\ninput[type=\"submit\"] {\n -webkit-appearance: button; // 2\n cursor: pointer; // 3\n}\n\n//\n// Re-set default cursor for disabled elements.\n//\n\nbutton[disabled],\nhtml input[disabled] {\n cursor: default;\n}\n\n//\n// Remove inner padding and border in Firefox 4+.\n//\n\nbutton::-moz-focus-inner,\ninput::-moz-focus-inner {\n border: 0;\n padding: 0;\n}\n\n//\n// Address Firefox 4+ setting `line-height` on `input` using `!important` in\n// the UA stylesheet.\n//\n\ninput {\n line-height: normal;\n}\n\n//\n// It's recommended that you don't attempt to style these elements.\n// Firefox's implementation doesn't respect box-sizing, padding, or width.\n//\n// 1. Address box sizing set to `content-box` in IE 8/9/10.\n// 2. Remove excess padding in IE 8/9/10.\n//\n\ninput[type=\"checkbox\"],\ninput[type=\"radio\"] {\n box-sizing: border-box; // 1\n padding: 0; // 2\n}\n\n//\n// Fix the cursor style for Chrome's increment/decrement buttons. For certain\n// `font-size` values of the `input`, it causes the cursor style of the\n// decrement button to change from `default` to `text`.\n//\n\ninput[type=\"number\"]::-webkit-inner-spin-button,\ninput[type=\"number\"]::-webkit-outer-spin-button {\n height: auto;\n}\n\n//\n// 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.\n// 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome\n// (include `-moz` to future-proof).\n//\n\ninput[type=\"search\"] {\n -webkit-appearance: textfield; // 1\n -moz-box-sizing: content-box;\n -webkit-box-sizing: content-box; // 2\n box-sizing: content-box;\n}\n\n//\n// Remove inner padding and search cancel button in Safari and Chrome on OS X.\n// Safari (but not Chrome) clips the cancel button when the search input has\n// padding (and `textfield` appearance).\n//\n\ninput[type=\"search\"]::-webkit-search-cancel-button,\ninput[type=\"search\"]::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n\n//\n// Define consistent border, margin, and padding.\n//\n\nfieldset {\n border: 1px solid #c0c0c0;\n margin: 0 2px;\n padding: 0.35em 0.625em 0.75em;\n}\n\n//\n// 1. Correct `color` not being inherited in IE 8/9.\n// 2. Remove padding so people aren't caught out if they zero out fieldsets.\n//\n\nlegend {\n border: 0; // 1\n padding: 0; // 2\n}\n\n//\n// Remove default vertical scrollbar in IE 8/9.\n//\n\ntextarea {\n overflow: auto;\n}\n\n//\n// Don't inherit the `font-weight` (applied by a rule above).\n// NOTE: the default cannot safely be changed in Chrome and Safari on OS X.\n//\n\noptgroup {\n font-weight: bold;\n}\n\n// Tables\n// ==========================================================================\n\n//\n// Remove most spacing between table cells.\n//\n\ntable {\n border-collapse: collapse;\n border-spacing: 0;\n}\n\ntd,\nth {\n padding: 0;\n}","//\n// Basic print styles\n// --------------------------------------------------\n// Source: https://github.com/h5bp/html5-boilerplate/blob/master/css/main.css\n\n@media print {\n\n * {\n text-shadow: none !important;\n color: #000 !important; // Black prints faster: h5bp.com/s\n background: transparent !important;\n box-shadow: none !important;\n }\n\n a,\n a:visited {\n text-decoration: underline;\n }\n\n a[href]:after {\n content: \" (\" attr(href) \")\";\n }\n\n abbr[title]:after {\n content: \" (\" attr(title) \")\";\n }\n\n // Don't show links for images, or javascript/internal links\n a[href^=\"javascript:\"]:after,\n a[href^=\"#\"]:after {\n content: \"\";\n }\n\n pre,\n blockquote {\n border: 1px solid #999;\n page-break-inside: avoid;\n }\n\n thead {\n display: table-header-group; // h5bp.com/t\n }\n\n tr,\n img {\n page-break-inside: avoid;\n }\n\n img {\n max-width: 100% !important;\n }\n\n p,\n h2,\n h3 {\n orphans: 3;\n widows: 3;\n }\n\n h2,\n h3 {\n page-break-after: avoid;\n }\n\n // Chrome (OSX) fix for https://github.com/twbs/bootstrap/issues/11245\n // Once fixed, we can just straight up remove this.\n select {\n background: #fff !important;\n }\n\n // Bootstrap components\n .navbar {\n display: none;\n }\n .table {\n td,\n th {\n background-color: #fff !important;\n }\n }\n .btn,\n .dropup > .btn {\n > .caret {\n border-top-color: #000 !important;\n }\n }\n .label {\n border: 1px solid #000;\n }\n\n .table {\n border-collapse: collapse !important;\n }\n .table-bordered {\n th,\n td {\n border: 1px solid #ddd !important;\n }\n }\n\n}\n","//\n// Scaffolding\n// --------------------------------------------------\n\n\n// Reset the box-sizing\n//\n// Heads up! This reset may cause conflicts with some third-party widgets.\n// For recommendations on resolving such conflicts, see\n// http://getbootstrap.com/getting-started/#third-box-sizing\n* {\n .box-sizing(border-box);\n}\n*:before,\n*:after {\n .box-sizing(border-box);\n}\n\n\n// Body reset\n\nhtml {\n font-size: 62.5%;\n -webkit-tap-highlight-color: rgba(0,0,0,0);\n}\n\nbody {\n font-family: @font-family-base;\n font-size: @font-size-base;\n line-height: @line-height-base;\n color: @text-color;\n background-color: @body-bg;\n}\n\n// Reset fonts for relevant elements\ninput,\nbutton,\nselect,\ntextarea {\n font-family: inherit;\n font-size: inherit;\n line-height: inherit;\n}\n\n\n// Links\n\na {\n color: @link-color;\n text-decoration: none;\n\n &:hover,\n &:focus {\n color: @link-hover-color;\n text-decoration: underline;\n }\n\n &:focus {\n .tab-focus();\n }\n}\n\n\n// Figures\n//\n// We reset this here because previously Normalize had no `figure` margins. This\n// ensures we don't break anyone's use of the element.\n\nfigure {\n margin: 0;\n}\n\n\n// Images\n\nimg {\n vertical-align: middle;\n}\n\n// Responsive images (ensure images don't scale beyond their parents)\n.img-responsive {\n .img-responsive();\n}\n\n// Rounded corners\n.img-rounded {\n border-radius: @border-radius-large;\n}\n\n// Image thumbnails\n//\n// Heads up! This is mixin-ed into thumbnails.less for `.thumbnail`.\n.img-thumbnail {\n padding: @thumbnail-padding;\n line-height: @line-height-base;\n background-color: @thumbnail-bg;\n border: 1px solid @thumbnail-border;\n border-radius: @thumbnail-border-radius;\n .transition(all .2s ease-in-out);\n\n // Keep them at most 100% wide\n .img-responsive(inline-block);\n}\n\n// Perfect circle\n.img-circle {\n border-radius: 50%; // set radius in percents\n}\n\n\n// Horizontal rules\n\nhr {\n margin-top: @line-height-computed;\n margin-bottom: @line-height-computed;\n border: 0;\n border-top: 1px solid @hr-border;\n}\n\n\n// Only display content to screen readers\n//\n// See: http://a11yproject.com/posts/how-to-hide-content/\n\n.sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n margin: -1px;\n padding: 0;\n overflow: hidden;\n clip: rect(0,0,0,0);\n border: 0;\n}\n","//\n// Mixins\n// --------------------------------------------------\n\n\n// Utilities\n// -------------------------\n\n// Clearfix\n// Source: http://nicolasgallagher.com/micro-clearfix-hack/\n//\n// For modern browsers\n// 1. The space content is one way to avoid an Opera bug when the\n// contenteditable attribute is included anywhere else in the document.\n// Otherwise it causes space to appear at the top and bottom of elements\n// that are clearfixed.\n// 2. The use of `table` rather than `block` is only necessary if using\n// `:before` to contain the top-margins of child elements.\n.clearfix() {\n &:before,\n &:after {\n content: \" \"; // 1\n display: table; // 2\n }\n &:after {\n clear: both;\n }\n}\n\n// WebKit-style focus\n.tab-focus() {\n // Default\n outline: thin dotted;\n // WebKit\n outline: 5px auto -webkit-focus-ring-color;\n outline-offset: -2px;\n}\n\n// Center-align a block level element\n.center-block() {\n display: block;\n margin-left: auto;\n margin-right: auto;\n}\n\n// Sizing shortcuts\n.size(@width; @height) {\n width: @width;\n height: @height;\n}\n.square(@size) {\n .size(@size; @size);\n}\n\n// Placeholder text\n.placeholder(@color: @input-color-placeholder) {\n &:-moz-placeholder { color: @color; } // Firefox 4-18\n &::-moz-placeholder { color: @color; // Firefox 19+\n opacity: 1; } // See https://github.com/twbs/bootstrap/pull/11526\n &:-ms-input-placeholder { color: @color; } // Internet Explorer 10+\n &::-webkit-input-placeholder { color: @color; } // Safari and Chrome\n}\n\n// Text overflow\n// Requires inline-block or block for proper styling\n.text-overflow() {\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n\n// CSS image replacement\n//\n// Heads up! v3 launched with with only `.hide-text()`, but per our pattern for\n// mixins being reused as classes with the same name, this doesn't hold up. As\n// of v3.0.1 we have added `.text-hide()` and deprecated `.hide-text()`. Note\n// that we cannot chain the mixins together in Less, so they are repeated.\n//\n// Source: https://github.com/h5bp/html5-boilerplate/commit/aa0396eae757\n\n// Deprecated as of v3.0.1 (will be removed in v4)\n.hide-text() {\n font: ~\"0/0\" a;\n color: transparent;\n text-shadow: none;\n background-color: transparent;\n border: 0;\n}\n// New mixin to use as of v3.0.1\n.text-hide() {\n .hide-text();\n}\n\n\n\n// CSS3 PROPERTIES\n// --------------------------------------------------\n\n// Single side border-radius\n.border-top-radius(@radius) {\n border-top-right-radius: @radius;\n border-top-left-radius: @radius;\n}\n.border-right-radius(@radius) {\n border-bottom-right-radius: @radius;\n border-top-right-radius: @radius;\n}\n.border-bottom-radius(@radius) {\n border-bottom-right-radius: @radius;\n border-bottom-left-radius: @radius;\n}\n.border-left-radius(@radius) {\n border-bottom-left-radius: @radius;\n border-top-left-radius: @radius;\n}\n\n// Drop shadows\n//\n// Note: Deprecated `.box-shadow()` as of v3.1.0 since all of Bootstrap's\n// supported browsers that have box shadow capabilities now support the\n// standard `box-shadow` property.\n.box-shadow(@shadow) {\n -webkit-box-shadow: @shadow; // iOS <4.3 & Android <4.1\n box-shadow: @shadow;\n}\n\n// Transitions\n.transition(@transition) {\n -webkit-transition: @transition;\n transition: @transition;\n}\n.transition-property(@transition-property) {\n -webkit-transition-property: @transition-property;\n transition-property: @transition-property;\n}\n.transition-delay(@transition-delay) {\n -webkit-transition-delay: @transition-delay;\n transition-delay: @transition-delay;\n}\n.transition-duration(@transition-duration) {\n -webkit-transition-duration: @transition-duration;\n transition-duration: @transition-duration;\n}\n.transition-transform(@transition) {\n -webkit-transition: -webkit-transform @transition;\n -moz-transition: -moz-transform @transition;\n -o-transition: -o-transform @transition;\n transition: transform @transition;\n}\n\n// Transformations\n.rotate(@degrees) {\n -webkit-transform: rotate(@degrees);\n -ms-transform: rotate(@degrees); // IE9 only\n transform: rotate(@degrees);\n}\n.scale(@ratio; @ratio-y...) {\n -webkit-transform: scale(@ratio, @ratio-y);\n -ms-transform: scale(@ratio, @ratio-y); // IE9 only\n transform: scale(@ratio, @ratio-y);\n}\n.translate(@x; @y) {\n -webkit-transform: translate(@x, @y);\n -ms-transform: translate(@x, @y); // IE9 only\n transform: translate(@x, @y);\n}\n.skew(@x; @y) {\n -webkit-transform: skew(@x, @y);\n -ms-transform: skewX(@x) skewY(@y); // See https://github.com/twbs/bootstrap/issues/4885; IE9+\n transform: skew(@x, @y);\n}\n.translate3d(@x; @y; @z) {\n -webkit-transform: translate3d(@x, @y, @z);\n transform: translate3d(@x, @y, @z);\n}\n\n.rotateX(@degrees) {\n -webkit-transform: rotateX(@degrees);\n -ms-transform: rotateX(@degrees); // IE9 only\n transform: rotateX(@degrees);\n}\n.rotateY(@degrees) {\n -webkit-transform: rotateY(@degrees);\n -ms-transform: rotateY(@degrees); // IE9 only\n transform: rotateY(@degrees);\n}\n.perspective(@perspective) {\n -webkit-perspective: @perspective;\n -moz-perspective: @perspective;\n perspective: @perspective;\n}\n.perspective-origin(@perspective) {\n -webkit-perspective-origin: @perspective;\n -moz-perspective-origin: @perspective;\n perspective-origin: @perspective;\n}\n.transform-origin(@origin) {\n -webkit-transform-origin: @origin;\n -moz-transform-origin: @origin;\n -ms-transform-origin: @origin; // IE9 only\n transform-origin: @origin;\n}\n\n// Animations\n.animation(@animation) {\n -webkit-animation: @animation;\n animation: @animation;\n}\n.animation-name(@name) {\n -webkit-animation-name: @name;\n animation-name: @name;\n}\n.animation-duration(@duration) {\n -webkit-animation-duration: @duration;\n animation-duration: @duration;\n}\n.animation-timing-function(@timing-function) {\n -webkit-animation-timing-function: @timing-function;\n animation-timing-function: @timing-function;\n}\n.animation-delay(@delay) {\n -webkit-animation-delay: @delay;\n animation-delay: @delay;\n}\n.animation-iteration-count(@iteration-count) {\n -webkit-animation-iteration-count: @iteration-count;\n animation-iteration-count: @iteration-count;\n}\n.animation-direction(@direction) {\n -webkit-animation-direction: @direction;\n animation-direction: @direction;\n}\n\n// Backface visibility\n// Prevent browsers from flickering when using CSS 3D transforms.\n// Default value is `visible`, but can be changed to `hidden`\n.backface-visibility(@visibility){\n -webkit-backface-visibility: @visibility;\n -moz-backface-visibility: @visibility;\n backface-visibility: @visibility;\n}\n\n// Box sizing\n.box-sizing(@boxmodel) {\n -webkit-box-sizing: @boxmodel;\n -moz-box-sizing: @boxmodel;\n box-sizing: @boxmodel;\n}\n\n// User select\n// For selecting text on the page\n.user-select(@select) {\n -webkit-user-select: @select;\n -moz-user-select: @select;\n -ms-user-select: @select; // IE10+\n -o-user-select: @select;\n user-select: @select;\n}\n\n// Resize anything\n.resizable(@direction) {\n resize: @direction; // Options: horizontal, vertical, both\n overflow: auto; // Safari fix\n}\n\n// CSS3 Content Columns\n.content-columns(@column-count; @column-gap: @grid-gutter-width) {\n -webkit-column-count: @column-count;\n -moz-column-count: @column-count;\n column-count: @column-count;\n -webkit-column-gap: @column-gap;\n -moz-column-gap: @column-gap;\n column-gap: @column-gap;\n}\n\n// Optional hyphenation\n.hyphens(@mode: auto) {\n word-wrap: break-word;\n -webkit-hyphens: @mode;\n -moz-hyphens: @mode;\n -ms-hyphens: @mode; // IE10+\n -o-hyphens: @mode;\n hyphens: @mode;\n}\n\n// Opacity\n.opacity(@opacity) {\n opacity: @opacity;\n // IE8 filter\n @opacity-ie: (@opacity * 100);\n filter: ~\"alpha(opacity=@{opacity-ie})\";\n}\n\n\n\n// GRADIENTS\n// --------------------------------------------------\n\n#gradient {\n\n // Horizontal gradient, from left to right\n //\n // Creates two color stops, start and end, by specifying a color and position for each color stop.\n // Color stops are not available in IE9 and below.\n .horizontal(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n background-image: -webkit-linear-gradient(left, color-stop(@start-color @start-percent), color-stop(@end-color @end-percent)); // Safari 5.1-6, Chrome 10+\n background-image: linear-gradient(to right, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n background-repeat: repeat-x;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down\n }\n\n // Vertical gradient, from top to bottom\n //\n // Creates two color stops, start and end, by specifying a color and position for each color stop.\n // Color stops are not available in IE9 and below.\n .vertical(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n background-image: -webkit-linear-gradient(top, @start-color @start-percent, @end-color @end-percent); // Safari 5.1-6, Chrome 10+\n background-image: linear-gradient(to bottom, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n background-repeat: repeat-x;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",argb(@start-color),argb(@end-color))); // IE9 and down\n }\n\n .directional(@start-color: #555; @end-color: #333; @deg: 45deg) {\n background-repeat: repeat-x;\n background-image: -webkit-linear-gradient(@deg, @start-color, @end-color); // Safari 5.1-6, Chrome 10+\n background-image: linear-gradient(@deg, @start-color, @end-color); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n }\n .horizontal-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n background-image: -webkit-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);\n background-image: linear-gradient(to right, @start-color, @mid-color @color-stop, @end-color);\n background-repeat: no-repeat;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n }\n .vertical-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n background-image: -webkit-linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n background-image: linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n background-repeat: no-repeat;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n }\n .radial(@inner-color: #555; @outer-color: #333) {\n background-image: -webkit-radial-gradient(circle, @inner-color, @outer-color);\n background-image: radial-gradient(circle, @inner-color, @outer-color);\n background-repeat: no-repeat;\n }\n .striped(@color: rgba(255,255,255,.15); @angle: 45deg) {\n background-image: -webkit-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n background-image: linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n }\n}\n\n// Reset filters for IE\n//\n// When you need to remove a gradient background, do not forget to use this to reset\n// the IE filter for IE9 and below.\n.reset-filter() {\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(enabled = false)\"));\n}\n\n\n\n// Retina images\n//\n// Short retina mixin for setting background-image and -size\n\n.img-retina(@file-1x; @file-2x; @width-1x; @height-1x) {\n background-image: url(\"@{file-1x}\");\n\n @media\n only screen and (-webkit-min-device-pixel-ratio: 2),\n only screen and ( min--moz-device-pixel-ratio: 2),\n only screen and ( -o-min-device-pixel-ratio: 2/1),\n only screen and ( min-device-pixel-ratio: 2),\n only screen and ( min-resolution: 192dpi),\n only screen and ( min-resolution: 2dppx) {\n background-image: url(\"@{file-2x}\");\n background-size: @width-1x @height-1x;\n }\n}\n\n\n// Responsive image\n//\n// Keep images from scaling beyond the width of their parents.\n\n.img-responsive(@display: block) {\n display: @display;\n max-width: 100%; // Part 1: Set a maximum relative to the parent\n height: auto; // Part 2: Scale the height according to the width, otherwise you get stretching\n}\n\n\n// COMPONENT MIXINS\n// --------------------------------------------------\n\n// Horizontal dividers\n// -------------------------\n// Dividers (basically an hr) within dropdowns and nav lists\n.nav-divider(@color: #e5e5e5) {\n height: 1px;\n margin: ((@line-height-computed / 2) - 1) 0;\n overflow: hidden;\n background-color: @color;\n}\n\n// Panels\n// -------------------------\n.panel-variant(@border; @heading-text-color; @heading-bg-color; @heading-border) {\n border-color: @border;\n\n & > .panel-heading {\n color: @heading-text-color;\n background-color: @heading-bg-color;\n border-color: @heading-border;\n\n + .panel-collapse .panel-body {\n border-top-color: @border;\n }\n }\n & > .panel-footer {\n + .panel-collapse .panel-body {\n border-bottom-color: @border;\n }\n }\n}\n\n// Alerts\n// -------------------------\n.alert-variant(@background; @border; @text-color) {\n background-color: @background;\n border-color: @border;\n color: @text-color;\n\n hr {\n border-top-color: darken(@border, 5%);\n }\n .alert-link {\n color: darken(@text-color, 10%);\n }\n}\n\n// Tables\n// -------------------------\n.table-row-variant(@state; @background) {\n // Exact selectors below required to override `.table-striped` and prevent\n // inheritance to nested tables.\n .table > thead > tr,\n .table > tbody > tr,\n .table > tfoot > tr {\n > td.@{state},\n > th.@{state},\n &.@{state} > td,\n &.@{state} > th {\n background-color: @background;\n }\n }\n\n // Hover states for `.table-hover`\n // Note: this is not available for cells or rows within `thead` or `tfoot`.\n .table-hover > tbody > tr {\n > td.@{state}:hover,\n > th.@{state}:hover,\n &.@{state}:hover > td,\n &.@{state}:hover > th {\n background-color: darken(@background, 5%);\n }\n }\n}\n\n// List Groups\n// -------------------------\n.list-group-item-variant(@state; @background; @color) {\n .list-group-item-@{state} {\n color: @color;\n background-color: @background;\n\n a& {\n color: @color;\n\n .list-group-item-heading { color: inherit; }\n\n &:hover,\n &:focus {\n color: @color;\n background-color: darken(@background, 5%);\n }\n &.active,\n &.active:hover,\n &.active:focus {\n color: #fff;\n background-color: @color;\n border-color: @color;\n }\n }\n }\n}\n\n// Button variants\n// -------------------------\n// Easily pump out default styles, as well as :hover, :focus, :active,\n// and disabled options for all buttons\n.button-variant(@color; @background; @border) {\n color: @color;\n background-color: @background;\n border-color: @border;\n\n &:hover,\n &:focus,\n &:active,\n &.active,\n .open .dropdown-toggle& {\n color: @color;\n background-color: darken(@background, 8%);\n border-color: darken(@border, 12%);\n }\n &:active,\n &.active,\n .open .dropdown-toggle& {\n background-image: none;\n }\n &.disabled,\n &[disabled],\n fieldset[disabled] & {\n &,\n &:hover,\n &:focus,\n &:active,\n &.active {\n background-color: @background;\n border-color: @border;\n }\n }\n\n .badge {\n color: @background;\n background-color: @color;\n }\n}\n\n// Button sizes\n// -------------------------\n.button-size(@padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {\n padding: @padding-vertical @padding-horizontal;\n font-size: @font-size;\n line-height: @line-height;\n border-radius: @border-radius;\n}\n\n// Pagination\n// -------------------------\n.pagination-size(@padding-vertical; @padding-horizontal; @font-size; @border-radius) {\n > li {\n > a,\n > span {\n padding: @padding-vertical @padding-horizontal;\n font-size: @font-size;\n }\n &:first-child {\n > a,\n > span {\n .border-left-radius(@border-radius);\n }\n }\n &:last-child {\n > a,\n > span {\n .border-right-radius(@border-radius);\n }\n }\n }\n}\n\n// Labels\n// -------------------------\n.label-variant(@color) {\n background-color: @color;\n &[href] {\n &:hover,\n &:focus {\n background-color: darken(@color, 10%);\n }\n }\n}\n\n// Contextual backgrounds\n// -------------------------\n.bg-variant(@color) {\n background-color: @color;\n a&:hover {\n background-color: darken(@color, 10%);\n }\n}\n\n// Typography\n// -------------------------\n.text-emphasis-variant(@color) {\n color: @color;\n a&:hover {\n color: darken(@color, 10%);\n }\n}\n\n// Navbar vertical align\n// -------------------------\n// Vertically center elements in the navbar.\n// Example: an element has a height of 30px, so write out `.navbar-vertical-align(30px);` to calculate the appropriate top margin.\n.navbar-vertical-align(@element-height) {\n margin-top: ((@navbar-height - @element-height) / 2);\n margin-bottom: ((@navbar-height - @element-height) / 2);\n}\n\n// Progress bars\n// -------------------------\n.progress-bar-variant(@color) {\n background-color: @color;\n .progress-striped & {\n #gradient > .striped();\n }\n}\n\n// Responsive utilities\n// -------------------------\n// More easily include all the states for responsive-utilities.less.\n.responsive-visibility() {\n display: block !important;\n table& { display: table; }\n tr& { display: table-row !important; }\n th&,\n td& { display: table-cell !important; }\n}\n\n.responsive-invisibility() {\n &,\n tr&,\n th&,\n td& { display: none !important; }\n}\n\n\n// Grid System\n// -----------\n\n// Centered container element\n.container-fixed() {\n margin-right: auto;\n margin-left: auto;\n padding-left: (@grid-gutter-width / 2);\n padding-right: (@grid-gutter-width / 2);\n &:extend(.clearfix all);\n}\n\n// Creates a wrapper for a series of columns\n.make-row(@gutter: @grid-gutter-width) {\n margin-left: (@gutter / -2);\n margin-right: (@gutter / -2);\n &:extend(.clearfix all);\n}\n\n// Generate the extra small columns\n.make-xs-column(@columns; @gutter: @grid-gutter-width) {\n position: relative;\n float: left;\n width: percentage((@columns / @grid-columns));\n min-height: 1px;\n padding-left: (@gutter / 2);\n padding-right: (@gutter / 2);\n}\n.make-xs-column-offset(@columns) {\n @media (min-width: @screen-xs-min) {\n margin-left: percentage((@columns / @grid-columns));\n }\n}\n.make-xs-column-push(@columns) {\n @media (min-width: @screen-xs-min) {\n left: percentage((@columns / @grid-columns));\n }\n}\n.make-xs-column-pull(@columns) {\n @media (min-width: @screen-xs-min) {\n right: percentage((@columns / @grid-columns));\n }\n}\n\n\n// Generate the small columns\n.make-sm-column(@columns; @gutter: @grid-gutter-width) {\n position: relative;\n min-height: 1px;\n padding-left: (@gutter / 2);\n padding-right: (@gutter / 2);\n\n @media (min-width: @screen-sm-min) {\n float: left;\n width: percentage((@columns / @grid-columns));\n }\n}\n.make-sm-column-offset(@columns) {\n @media (min-width: @screen-sm-min) {\n margin-left: percentage((@columns / @grid-columns));\n }\n}\n.make-sm-column-push(@columns) {\n @media (min-width: @screen-sm-min) {\n left: percentage((@columns / @grid-columns));\n }\n}\n.make-sm-column-pull(@columns) {\n @media (min-width: @screen-sm-min) {\n right: percentage((@columns / @grid-columns));\n }\n}\n\n\n// Generate the medium columns\n.make-md-column(@columns; @gutter: @grid-gutter-width) {\n position: relative;\n min-height: 1px;\n padding-left: (@gutter / 2);\n padding-right: (@gutter / 2);\n\n @media (min-width: @screen-md-min) {\n float: left;\n width: percentage((@columns / @grid-columns));\n }\n}\n.make-md-column-offset(@columns) {\n @media (min-width: @screen-md-min) {\n margin-left: percentage((@columns / @grid-columns));\n }\n}\n.make-md-column-push(@columns) {\n @media (min-width: @screen-md-min) {\n left: percentage((@columns / @grid-columns));\n }\n}\n.make-md-column-pull(@columns) {\n @media (min-width: @screen-md-min) {\n right: percentage((@columns / @grid-columns));\n }\n}\n\n\n// Generate the large columns\n.make-lg-column(@columns; @gutter: @grid-gutter-width) {\n position: relative;\n min-height: 1px;\n padding-left: (@gutter / 2);\n padding-right: (@gutter / 2);\n\n @media (min-width: @screen-lg-min) {\n float: left;\n width: percentage((@columns / @grid-columns));\n }\n}\n.make-lg-column-offset(@columns) {\n @media (min-width: @screen-lg-min) {\n margin-left: percentage((@columns / @grid-columns));\n }\n}\n.make-lg-column-push(@columns) {\n @media (min-width: @screen-lg-min) {\n left: percentage((@columns / @grid-columns));\n }\n}\n.make-lg-column-pull(@columns) {\n @media (min-width: @screen-lg-min) {\n right: percentage((@columns / @grid-columns));\n }\n}\n\n\n// Framework grid generation\n//\n// Used only by Bootstrap to generate the correct number of grid classes given\n// any value of `@grid-columns`.\n\n.make-grid-columns() {\n // Common styles for all sizes of grid columns, widths 1-12\n .col(@index) when (@index = 1) { // initial\n @item: ~\".col-xs-@{index}, .col-sm-@{index}, .col-md-@{index}, .col-lg-@{index}\";\n .col((@index + 1), @item);\n }\n .col(@index, @list) when (@index =< @grid-columns) { // general; \"=<\" isn't a typo\n @item: ~\".col-xs-@{index}, .col-sm-@{index}, .col-md-@{index}, .col-lg-@{index}\";\n .col((@index + 1), ~\"@{list}, @{item}\");\n }\n .col(@index, @list) when (@index > @grid-columns) { // terminal\n @{list} {\n position: relative;\n // Prevent columns from collapsing when empty\n min-height: 1px;\n // Inner gutter via padding\n padding-left: (@grid-gutter-width / 2);\n padding-right: (@grid-gutter-width / 2);\n }\n }\n .col(1); // kickstart it\n}\n\n.make-grid-columns-float(@class) {\n .col(@index) when (@index = 1) { // initial\n @item: ~\".col-@{class}-@{index}\";\n .col((@index + 1), @item);\n }\n .col(@index, @list) when (@index =< @grid-columns) { // general\n @item: ~\".col-@{class}-@{index}\";\n .col((@index + 1), ~\"@{list}, @{item}\");\n }\n .col(@index, @list) when (@index > @grid-columns) { // terminal\n @{list} {\n float: left;\n }\n }\n .col(1); // kickstart it\n}\n\n.calc-grid(@index, @class, @type) when (@type = width) and (@index > 0) {\n .col-@{class}-@{index} {\n width: percentage((@index / @grid-columns));\n }\n}\n.calc-grid(@index, @class, @type) when (@type = push) {\n .col-@{class}-push-@{index} {\n left: percentage((@index / @grid-columns));\n }\n}\n.calc-grid(@index, @class, @type) when (@type = pull) {\n .col-@{class}-pull-@{index} {\n right: percentage((@index / @grid-columns));\n }\n}\n.calc-grid(@index, @class, @type) when (@type = offset) {\n .col-@{class}-offset-@{index} {\n margin-left: percentage((@index / @grid-columns));\n }\n}\n\n// Basic looping in LESS\n.make-grid(@index, @class, @type) when (@index >= 0) {\n .calc-grid(@index, @class, @type);\n // next iteration\n .make-grid((@index - 1), @class, @type);\n}\n\n\n// Form validation states\n//\n// Used in forms.less to generate the form validation CSS for warnings, errors,\n// and successes.\n\n.form-control-validation(@text-color: #555; @border-color: #ccc; @background-color: #f5f5f5) {\n // Color the label and help text\n .help-block,\n .control-label,\n .radio,\n .checkbox,\n .radio-inline,\n .checkbox-inline {\n color: @text-color;\n }\n // Set the border and box shadow on specific inputs to match\n .form-control {\n border-color: @border-color;\n .box-shadow(inset 0 1px 1px rgba(0,0,0,.075)); // Redeclare so transitions work\n &:focus {\n border-color: darken(@border-color, 10%);\n @shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 6px lighten(@border-color, 20%);\n .box-shadow(@shadow);\n }\n }\n // Set validation states also for addons\n .input-group-addon {\n color: @text-color;\n border-color: @border-color;\n background-color: @background-color;\n }\n // Optional feedback icon\n .form-control-feedback {\n color: @text-color;\n }\n}\n\n// Form control focus state\n//\n// Generate a customized focus state and for any input with the specified color,\n// which defaults to the `@input-focus-border` variable.\n//\n// We highly encourage you to not customize the default value, but instead use\n// this to tweak colors on an as-needed basis. This aesthetic change is based on\n// WebKit's default styles, but applicable to a wider range of browsers. Its\n// usability and accessibility should be taken into account with any change.\n//\n// Example usage: change the default blue border and shadow to white for better\n// contrast against a dark gray background.\n\n.form-control-focus(@color: @input-border-focus) {\n @color-rgba: rgba(red(@color), green(@color), blue(@color), .6);\n &:focus {\n border-color: @color;\n outline: 0;\n .box-shadow(~\"inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px @{color-rgba}\");\n }\n}\n\n// Form control sizing\n//\n// Relative text size, padding, and border-radii changes for form controls. For\n// horizontal sizing, wrap controls in the predefined grid classes. `<select>`\n// element gets special love because it's special, and that's a fact!\n\n.input-size(@input-height; @padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {\n height: @input-height;\n padding: @padding-vertical @padding-horizontal;\n font-size: @font-size;\n line-height: @line-height;\n border-radius: @border-radius;\n\n select& {\n height: @input-height;\n line-height: @input-height;\n }\n\n textarea&,\n select[multiple]& {\n height: auto;\n }\n}\n","//\n// Variables\n// --------------------------------------------------\n\n\n//== Colors\n//\n//## Gray and brand colors for use across Bootstrap.\n\n@gray-darker: lighten(#000, 13.5%); // #222\n@gray-dark: lighten(#000, 20%); // #333\n@gray: lighten(#000, 33.5%); // #555\n@gray-light: lighten(#000, 60%); // #999\n@gray-lighter: lighten(#000, 93.5%); // #eee\n\n@brand-primary: #428bca;\n@brand-success: #5cb85c;\n@brand-info: #5bc0de;\n@brand-warning: #f0ad4e;\n@brand-danger: #d9534f;\n\n\n//== Scaffolding\n//\n// ## Settings for some of the most global styles.\n\n//** Background color for `<body>`.\n@body-bg: #fff;\n//** Global text color on `<body>`.\n@text-color: @gray-dark;\n\n//** Global textual link color.\n@link-color: @brand-primary;\n//** Link hover color set via `darken()` function.\n@link-hover-color: darken(@link-color, 15%);\n\n\n//== Typography\n//\n//## Font, line-height, and color for body text, headings, and more.\n\n@font-family-sans-serif: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n@font-family-serif: Georgia, \"Times New Roman\", Times, serif;\n//** Default monospace fonts for `<code>`, `<kbd>`, and `<pre>`.\n@font-family-monospace: Menlo, Monaco, Consolas, \"Courier New\", monospace;\n@font-family-base: @font-family-sans-serif;\n\n@font-size-base: 14px;\n@font-size-large: ceil((@font-size-base * 1.25)); // ~18px\n@font-size-small: ceil((@font-size-base * 0.85)); // ~12px\n\n@font-size-h1: floor((@font-size-base * 2.6)); // ~36px\n@font-size-h2: floor((@font-size-base * 2.15)); // ~30px\n@font-size-h3: ceil((@font-size-base * 1.7)); // ~24px\n@font-size-h4: ceil((@font-size-base * 1.25)); // ~18px\n@font-size-h5: @font-size-base;\n@font-size-h6: ceil((@font-size-base * 0.85)); // ~12px\n\n//** Unit-less `line-height` for use in components like buttons.\n@line-height-base: 1.428571429; // 20/14\n//** Computed \"line-height\" (`font-size` * `line-height`) for use with `margin`, `padding`, etc.\n@line-height-computed: floor((@font-size-base * @line-height-base)); // ~20px\n\n//** By default, this inherits from the `<body>`.\n@headings-font-family: inherit;\n@headings-font-weight: 500;\n@headings-line-height: 1.1;\n@headings-color: inherit;\n\n\n//-- Iconography\n//\n//## Specify custom locations of the include Glyphicons icon font. Useful for those including Bootstrap via Bower.\n\n@icon-font-path: \"../fonts/\";\n@icon-font-name: \"glyphicons-halflings-regular\";\n@icon-font-svg-id:\t\t\t\t\"glyphicons_halflingsregular\";\n\n//== Components\n//\n//## Define common padding and border radius sizes and more. Values based on 14px text and 1.428 line-height (~20px to start).\n\n@padding-base-vertical: 6px;\n@padding-base-horizontal: 12px;\n\n@padding-large-vertical: 10px;\n@padding-large-horizontal: 16px;\n\n@padding-small-vertical: 5px;\n@padding-small-horizontal: 10px;\n\n@padding-xs-vertical: 1px;\n@padding-xs-horizontal: 5px;\n\n@line-height-large: 1.33;\n@line-height-small: 1.5;\n\n@border-radius-base: 4px;\n@border-radius-large: 6px;\n@border-radius-small: 3px;\n\n//** Global color for active items (e.g., navs or dropdowns).\n@component-active-color: #fff;\n//** Global background color for active items (e.g., navs or dropdowns).\n@component-active-bg: @brand-primary;\n\n//** Width of the `border` for generating carets that indicator dropdowns.\n@caret-width-base: 4px;\n//** Carets increase slightly in size for larger components.\n@caret-width-large: 5px;\n\n\n//== Tables\n//\n//## Customizes the `.table` component with basic values, each used across all table variations.\n\n//** Padding for `<th>`s and `<td>`s.\n@table-cell-padding: 8px;\n//** Padding for cells in `.table-condensed`.\n@table-condensed-cell-padding: 5px;\n\n//** Default background color used for all tables.\n@table-bg: transparent;\n//** Background color used for `.table-striped`.\n@table-bg-accent: #f9f9f9;\n//** Background color used for `.table-hover`.\n@table-bg-hover: #f5f5f5;\n@table-bg-active: @table-bg-hover;\n\n//** Border color for table and cell borders.\n@table-border-color: #ddd;\n\n\n//== Buttons\n//\n//## For each of Bootstrap's buttons, define text, background and border color.\n\n@btn-font-weight: normal;\n\n@btn-default-color: #333;\n@btn-default-bg: #fff;\n@btn-default-border: #ccc;\n\n@btn-primary-color: #fff;\n@btn-primary-bg: @brand-primary;\n@btn-primary-border: darken(@btn-primary-bg, 5%);\n\n@btn-success-color: #fff;\n@btn-success-bg: @brand-success;\n@btn-success-border: darken(@btn-success-bg, 5%);\n\n@btn-info-color: #fff;\n@btn-info-bg: @brand-info;\n@btn-info-border: darken(@btn-info-bg, 5%);\n\n@btn-warning-color: #fff;\n@btn-warning-bg: @brand-warning;\n@btn-warning-border: darken(@btn-warning-bg, 5%);\n\n@btn-danger-color: #fff;\n@btn-danger-bg: @brand-danger;\n@btn-danger-border: darken(@btn-danger-bg, 5%);\n\n@btn-link-disabled-color: @gray-light;\n\n\n//== Forms\n//\n//##\n\n//** `<input>` background color\n@input-bg: #fff;\n//** `<input disabled>` background color\n@input-bg-disabled: @gray-lighter;\n\n//** Text color for `<input>`s\n@input-color: @gray;\n//** `<input>` border color\n@input-border: #ccc;\n//** `<input>` border radius\n@input-border-radius: @border-radius-base;\n//** Border color for inputs on focus\n@input-border-focus: #66afe9;\n\n//** Placeholder text color\n@input-color-placeholder: @gray-light;\n\n//** Default `.form-control` height\n@input-height-base: (@line-height-computed + (@padding-base-vertical * 2) + 2);\n//** Large `.form-control` height\n@input-height-large: (ceil(@font-size-large * @line-height-large) + (@padding-large-vertical * 2) + 2);\n//** Small `.form-control` height\n@input-height-small: (floor(@font-size-small * @line-height-small) + (@padding-small-vertical * 2) + 2);\n\n@legend-color: @gray-dark;\n@legend-border-color: #e5e5e5;\n\n//** Background color for textual input addons\n@input-group-addon-bg: @gray-lighter;\n//** Border color for textual input addons\n@input-group-addon-border-color: @input-border;\n\n\n//== Dropdowns\n//\n//## Dropdown menu container and contents.\n\n//** Background for the dropdown menu.\n@dropdown-bg: #fff;\n//** Dropdown menu `border-color`.\n@dropdown-border: rgba(0,0,0,.15);\n//** Dropdown menu `border-color` **for IE8**.\n@dropdown-fallback-border: #ccc;\n//** Divider color for between dropdown items.\n@dropdown-divider-bg: #e5e5e5;\n\n//** Dropdown link text color.\n@dropdown-link-color: @gray-dark;\n//** Hover color for dropdown links.\n@dropdown-link-hover-color: darken(@gray-dark, 5%);\n//** Hover background for dropdown links.\n@dropdown-link-hover-bg: #f5f5f5;\n\n//** Active dropdown menu item text color.\n@dropdown-link-active-color: @component-active-color;\n//** Active dropdown menu item background color.\n@dropdown-link-active-bg: @component-active-bg;\n\n//** Disabled dropdown menu item background color.\n@dropdown-link-disabled-color: @gray-light;\n\n//** Text color for headers within dropdown menus.\n@dropdown-header-color: @gray-light;\n\n// Note: Deprecated @dropdown-caret-color as of v3.1.0\n@dropdown-caret-color: #000;\n\n\n//-- Z-index master list\n//\n// Warning: Avoid customizing these values. They're used for a bird's eye view\n// of components dependent on the z-axis and are designed to all work together.\n//\n// Note: These variables are not generated into the Customizer.\n\n@zindex-navbar: 1000;\n@zindex-dropdown: 1000;\n@zindex-popover: 1010;\n@zindex-tooltip: 1030;\n@zindex-navbar-fixed: 1030;\n@zindex-modal-background: 1040;\n@zindex-modal: 1050;\n\n\n//== Media queries breakpoints\n//\n//## Define the breakpoints at which your layout will change, adapting to different screen sizes.\n\n// Extra small screen / phone\n// Note: Deprecated @screen-xs and @screen-phone as of v3.0.1\n@screen-xs: 480px;\n@screen-xs-min: @screen-xs;\n@screen-phone: @screen-xs-min;\n\n// Small screen / tablet\n// Note: Deprecated @screen-sm and @screen-tablet as of v3.0.1\n@screen-sm: 768px;\n@screen-sm-min: @screen-sm;\n@screen-tablet: @screen-sm-min;\n\n// Medium screen / desktop\n// Note: Deprecated @screen-md and @screen-desktop as of v3.0.1\n@screen-md: 992px;\n@screen-md-min: @screen-md;\n@screen-desktop: @screen-md-min;\n\n// Large screen / wide desktop\n// Note: Deprecated @screen-lg and @screen-lg-desktop as of v3.0.1\n@screen-lg: 1200px;\n@screen-lg-min: @screen-lg;\n@screen-lg-desktop: @screen-lg-min;\n\n// So media queries don't overlap when required, provide a maximum\n@screen-xs-max: (@screen-sm-min - 1);\n@screen-sm-max: (@screen-md-min - 1);\n@screen-md-max: (@screen-lg-min - 1);\n\n\n//== Grid system\n//\n//## Define your custom responsive grid.\n\n//** Number of columns in the grid.\n@grid-columns: 12;\n//** Padding between columns. Gets divided in half for the left and right.\n@grid-gutter-width: 30px;\n// Navbar collapse\n//** Point at which the navbar becomes uncollapsed.\n@grid-float-breakpoint: @screen-sm-min;\n//** Point at which the navbar begins collapsing.\n@grid-float-breakpoint-max: (@grid-float-breakpoint - 1);\n\n\n//== Navbar\n//\n//##\n\n// Basics of a navbar\n@navbar-height: 50px;\n@navbar-margin-bottom: @line-height-computed;\n@navbar-border-radius: @border-radius-base;\n@navbar-padding-horizontal: floor((@grid-gutter-width / 2));\n@navbar-padding-vertical: ((@navbar-height - @line-height-computed) / 2);\n@navbar-collapse-max-height: 340px;\n\n@navbar-default-color: #777;\n@navbar-default-bg: #f8f8f8;\n@navbar-default-border: darken(@navbar-default-bg, 6.5%);\n\n// Navbar links\n@navbar-default-link-color: #777;\n@navbar-default-link-hover-color: #333;\n@navbar-default-link-hover-bg: transparent;\n@navbar-default-link-active-color: #555;\n@navbar-default-link-active-bg: darken(@navbar-default-bg, 6.5%);\n@navbar-default-link-disabled-color: #ccc;\n@navbar-default-link-disabled-bg: transparent;\n\n// Navbar brand label\n@navbar-default-brand-color: @navbar-default-link-color;\n@navbar-default-brand-hover-color: darken(@navbar-default-brand-color, 10%);\n@navbar-default-brand-hover-bg: transparent;\n\n// Navbar toggle\n@navbar-default-toggle-hover-bg: #ddd;\n@navbar-default-toggle-icon-bar-bg: #888;\n@navbar-default-toggle-border-color: #ddd;\n\n\n// Inverted navbar\n// Reset inverted navbar basics\n@navbar-inverse-color: @gray-light;\n@navbar-inverse-bg: #222;\n@navbar-inverse-border: darken(@navbar-inverse-bg, 10%);\n\n// Inverted navbar links\n@navbar-inverse-link-color: @gray-light;\n@navbar-inverse-link-hover-color: #fff;\n@navbar-inverse-link-hover-bg: transparent;\n@navbar-inverse-link-active-color: @navbar-inverse-link-hover-color;\n@navbar-inverse-link-active-bg: darken(@navbar-inverse-bg, 10%);\n@navbar-inverse-link-disabled-color: #444;\n@navbar-inverse-link-disabled-bg: transparent;\n\n// Inverted navbar brand label\n@navbar-inverse-brand-color: @navbar-inverse-link-color;\n@navbar-inverse-brand-hover-color: #fff;\n@navbar-inverse-brand-hover-bg: transparent;\n\n// Inverted navbar toggle\n@navbar-inverse-toggle-hover-bg: #333;\n@navbar-inverse-toggle-icon-bar-bg: #fff;\n@navbar-inverse-toggle-border-color: #333;\n\n\n//== Navs\n//\n//##\n\n//=== Shared nav styles\n@nav-link-padding: 10px 15px;\n@nav-link-hover-bg: @gray-lighter;\n\n@nav-disabled-link-color: @gray-light;\n@nav-disabled-link-hover-color: @gray-light;\n\n@nav-open-link-hover-color: #fff;\n\n//== Tabs\n@nav-tabs-border-color: #ddd;\n\n@nav-tabs-link-hover-border-color: @gray-lighter;\n\n@nav-tabs-active-link-hover-bg: @body-bg;\n@nav-tabs-active-link-hover-color: @gray;\n@nav-tabs-active-link-hover-border-color: #ddd;\n\n@nav-tabs-justified-link-border-color: #ddd;\n@nav-tabs-justified-active-link-border-color: @body-bg;\n\n//== Pills\n@nav-pills-border-radius: @border-radius-base;\n@nav-pills-active-link-hover-bg: @component-active-bg;\n@nav-pills-active-link-hover-color: @component-active-color;\n\n\n//== Pagination\n//\n//##\n\n@pagination-color: @link-color;\n@pagination-bg: #fff;\n@pagination-border: #ddd;\n\n@pagination-hover-color: @link-hover-color;\n@pagination-hover-bg: @gray-lighter;\n@pagination-hover-border: #ddd;\n\n@pagination-active-color: #fff;\n@pagination-active-bg: @brand-primary;\n@pagination-active-border: @brand-primary;\n\n@pagination-disabled-color: @gray-light;\n@pagination-disabled-bg: #fff;\n@pagination-disabled-border: #ddd;\n\n\n//== Pager\n//\n//##\n\n@pager-bg: @pagination-bg;\n@pager-border: @pagination-border;\n@pager-border-radius: 15px;\n\n@pager-hover-bg: @pagination-hover-bg;\n\n@pager-active-bg: @pagination-active-bg;\n@pager-active-color: @pagination-active-color;\n\n@pager-disabled-color: @pagination-disabled-color;\n\n\n//== Jumbotron\n//\n//##\n\n@jumbotron-padding: 30px;\n@jumbotron-color: inherit;\n@jumbotron-bg: @gray-lighter;\n@jumbotron-heading-color: inherit;\n@jumbotron-font-size: ceil((@font-size-base * 1.5));\n\n\n//== Form states and alerts\n//\n//## Define colors for form feedback states and, by default, alerts.\n\n@state-success-text: #3c763d;\n@state-success-bg: #dff0d8;\n@state-success-border: darken(spin(@state-success-bg, -10), 5%);\n\n@state-info-text: #31708f;\n@state-info-bg: #d9edf7;\n@state-info-border: darken(spin(@state-info-bg, -10), 7%);\n\n@state-warning-text: #8a6d3b;\n@state-warning-bg: #fcf8e3;\n@state-warning-border: darken(spin(@state-warning-bg, -10), 5%);\n\n@state-danger-text: #a94442;\n@state-danger-bg: #f2dede;\n@state-danger-border: darken(spin(@state-danger-bg, -10), 5%);\n\n\n//== Tooltips\n//\n//##\n\n//** Tooltip max width\n@tooltip-max-width: 200px;\n//** Tooltip text color\n@tooltip-color: #fff;\n//** Tooltip background color\n@tooltip-bg: #000;\n@tooltip-opacity: .9;\n\n//** Tooltip arrow width\n@tooltip-arrow-width: 5px;\n//** Tooltip arrow color\n@tooltip-arrow-color: @tooltip-bg;\n\n\n//== Popovers\n//\n//##\n\n//** Popover body background color\n@popover-bg: #fff;\n//** Popover maximum width\n@popover-max-width: 276px;\n//** Popover border color\n@popover-border-color: rgba(0,0,0,.2);\n//** Popover fallback border color\n@popover-fallback-border-color: #ccc;\n\n//** Popover title background color\n@popover-title-bg: darken(@popover-bg, 3%);\n\n//** Popover arrow width\n@popover-arrow-width: 10px;\n//** Popover arrow color\n@popover-arrow-color: #fff;\n\n//** Popover outer arrow width\n@popover-arrow-outer-width: (@popover-arrow-width + 1);\n//** Popover outer arrow color\n@popover-arrow-outer-color: rgba(0,0,0,.25);\n//** Popover outer arrow fallback color\n@popover-arrow-outer-fallback-color: #999;\n\n\n//== Labels\n//\n//##\n\n//** Default label background color\n@label-default-bg: @gray-light;\n//** Primary label background color\n@label-primary-bg: @brand-primary;\n//** Success label background color\n@label-success-bg: @brand-success;\n//** Info label background color\n@label-info-bg: @brand-info;\n//** Warning label background color\n@label-warning-bg: @brand-warning;\n//** Danger label background color\n@label-danger-bg: @brand-danger;\n\n//** Default label text color\n@label-color: #fff;\n//** Default text color of a linked label\n@label-link-hover-color: #fff;\n\n\n//== Modals\n//\n//##\n\n//** Padding applied to the modal body\n@modal-inner-padding: 20px;\n\n//** Padding applied to the modal title\n@modal-title-padding: 15px;\n//** Modal title line-height\n@modal-title-line-height: @line-height-base;\n\n//** Background color of modal content area\n@modal-content-bg: #fff;\n//** Modal content border color\n@modal-content-border-color: rgba(0,0,0,.2);\n//** Modal content border color **for IE8**\n@modal-content-fallback-border-color: #999;\n\n//** Modal backdrop background color\n@modal-backdrop-bg: #000;\n//** Modal backdrop opacity\n@modal-backdrop-opacity: .5;\n//** Modal header border color\n@modal-header-border-color: #e5e5e5;\n//** Modal footer border color\n@modal-footer-border-color: @modal-header-border-color;\n\n@modal-lg: 900px;\n@modal-md: 600px;\n@modal-sm: 300px;\n\n\n//== Alerts\n//\n//## Define alert colors, border radius, and padding.\n\n@alert-padding: 15px;\n@alert-border-radius: @border-radius-base;\n@alert-link-font-weight: bold;\n\n@alert-success-bg: @state-success-bg;\n@alert-success-text: @state-success-text;\n@alert-success-border: @state-success-border;\n\n@alert-info-bg: @state-info-bg;\n@alert-info-text: @state-info-text;\n@alert-info-border: @state-info-border;\n\n@alert-warning-bg: @state-warning-bg;\n@alert-warning-text: @state-warning-text;\n@alert-warning-border: @state-warning-border;\n\n@alert-danger-bg: @state-danger-bg;\n@alert-danger-text: @state-danger-text;\n@alert-danger-border: @state-danger-border;\n\n\n//== Progress bars\n//\n//##\n\n//** Background color of the whole progress component\n@progress-bg: #f5f5f5;\n//** Progress bar text color\n@progress-bar-color: #fff;\n\n//** Default progress bar color\n@progress-bar-bg: @brand-primary;\n//** Success progress bar color\n@progress-bar-success-bg: @brand-success;\n//** Warning progress bar color\n@progress-bar-warning-bg: @brand-warning;\n//** Danger progress bar color\n@progress-bar-danger-bg: @brand-danger;\n//** Info progress bar color\n@progress-bar-info-bg: @brand-info;\n\n\n//== List group\n//\n//##\n\n//** Background color on `.list-group-item`\n@list-group-bg: #fff;\n//** `.list-group-item` border color\n@list-group-border: #ddd;\n//** List group border radius\n@list-group-border-radius: @border-radius-base;\n\n//** Background color of single list elements on hover\n@list-group-hover-bg: #f5f5f5;\n//** Text color of active list elements\n@list-group-active-color: @component-active-color;\n//** Background color of active list elements\n@list-group-active-bg: @component-active-bg;\n//** Border color of active list elements\n@list-group-active-border: @list-group-active-bg;\n@list-group-active-text-color: lighten(@list-group-active-bg, 40%);\n\n@list-group-link-color: #555;\n@list-group-link-heading-color: #333;\n\n\n//== Panels\n//\n//##\n\n@panel-bg: #fff;\n@panel-body-padding: 15px;\n@panel-border-radius: @border-radius-base;\n\n//** Border color for elements within panels\n@panel-inner-border: #ddd;\n@panel-footer-bg: #f5f5f5;\n\n@panel-default-text: @gray-dark;\n@panel-default-border: #ddd;\n@panel-default-heading-bg: #f5f5f5;\n\n@panel-primary-text: #fff;\n@panel-primary-border: @brand-primary;\n@panel-primary-heading-bg: @brand-primary;\n\n@panel-success-text: @state-success-text;\n@panel-success-border: @state-success-border;\n@panel-success-heading-bg: @state-success-bg;\n\n@panel-info-text: @state-info-text;\n@panel-info-border: @state-info-border;\n@panel-info-heading-bg: @state-info-bg;\n\n@panel-warning-text: @state-warning-text;\n@panel-warning-border: @state-warning-border;\n@panel-warning-heading-bg: @state-warning-bg;\n\n@panel-danger-text: @state-danger-text;\n@panel-danger-border: @state-danger-border;\n@panel-danger-heading-bg: @state-danger-bg;\n\n\n//== Thumbnails\n//\n//##\n\n//** Padding around the thumbnail image\n@thumbnail-padding: 4px;\n//** Thumbnail background color\n@thumbnail-bg: @body-bg;\n//** Thumbnail border color\n@thumbnail-border: #ddd;\n//** Thumbnail border radius\n@thumbnail-border-radius: @border-radius-base;\n\n//** Custom text color for thumbnail captions\n@thumbnail-caption-color: @text-color;\n//** Padding around the thumbnail caption\n@thumbnail-caption-padding: 9px;\n\n\n//== Wells\n//\n//##\n\n@well-bg: #f5f5f5;\n@well-border: darken(@well-bg, 7%);\n\n\n//== Badges\n//\n//##\n\n@badge-color: #fff;\n//** Linked badge text color on hover\n@badge-link-hover-color: #fff;\n@badge-bg: @gray-light;\n\n//** Badge text color in active nav link\n@badge-active-color: @link-color;\n//** Badge background color in active nav link\n@badge-active-bg: #fff;\n\n@badge-font-weight: bold;\n@badge-line-height: 1;\n@badge-border-radius: 10px;\n\n\n//== Breadcrumbs\n//\n//##\n\n@breadcrumb-padding-vertical: 8px;\n@breadcrumb-padding-horizontal: 15px;\n//** Breadcrumb background color\n@breadcrumb-bg: #f5f5f5;\n//** Breadcrumb text color\n@breadcrumb-color: #ccc;\n//** Text color of current page in the breadcrumb\n@breadcrumb-active-color: @gray-light;\n//** Textual separator for between breadcrumb elements\n@breadcrumb-separator: \"/\";\n\n\n//== Carousel\n//\n//##\n\n@carousel-text-shadow: 0 1px 2px rgba(0,0,0,.6);\n\n@carousel-control-color: #fff;\n@carousel-control-width: 15%;\n@carousel-control-opacity: .5;\n@carousel-control-font-size: 20px;\n\n@carousel-indicator-active-bg: #fff;\n@carousel-indicator-border-color: #fff;\n\n@carousel-caption-color: #fff;\n\n\n//== Close\n//\n//##\n\n@close-font-weight: bold;\n@close-color: #000;\n@close-text-shadow: 0 1px 0 #fff;\n\n\n//== Code\n//\n//##\n\n@code-color: #c7254e;\n@code-bg: #f9f2f4;\n\n@kbd-color: #fff;\n@kbd-bg: #333;\n\n@pre-bg: #f5f5f5;\n@pre-color: @gray-dark;\n@pre-border-color: #ccc;\n@pre-scrollable-max-height: 340px;\n\n\n//== Type\n//\n//##\n\n//** Text muted color\n@text-muted: @gray-light;\n//** Abbreviations and acronyms border color\n@abbr-border-color: @gray-light;\n//** Headings small color\n@headings-small-color: @gray-light;\n//** Blockquote small color\n@blockquote-small-color: @gray-light;\n//** Blockquote border color\n@blockquote-border-color: @gray-lighter;\n//** Page header border color\n@page-header-border-color: @gray-lighter;\n\n\n//== Miscellaneous\n//\n//##\n\n//** Horizontal line color.\n@hr-border: @gray-lighter;\n\n//** Horizontal offset for forms and lists.\n@component-offset-horizontal: 180px;\n\n\n//== Container sizes\n//\n//## Define the maximum width of `.container` for different screen sizes.\n\n// Small screen / tablet\n@container-tablet: ((720px + @grid-gutter-width));\n//** For `@screen-sm-min` and up.\n@container-sm: @container-tablet;\n\n// Medium screen / desktop\n@container-desktop: ((940px + @grid-gutter-width));\n//** For `@screen-md-min` and up.\n@container-md: @container-desktop;\n\n// Large screen / wide desktop\n@container-large-desktop: ((1140px + @grid-gutter-width));\n//** For `@screen-lg-min` and up.\n@container-lg: @container-large-desktop;\n","//\n// Typography\n// --------------------------------------------------\n\n\n// Headings\n// -------------------------\n\nh1, h2, h3, h4, h5, h6,\n.h1, .h2, .h3, .h4, .h5, .h6 {\n font-family: @headings-font-family;\n font-weight: @headings-font-weight;\n line-height: @headings-line-height;\n color: @headings-color;\n\n small,\n .small {\n font-weight: normal;\n line-height: 1;\n color: @headings-small-color;\n }\n}\n\nh1, .h1,\nh2, .h2,\nh3, .h3 {\n margin-top: @line-height-computed;\n margin-bottom: (@line-height-computed / 2);\n\n small,\n .small {\n font-size: 65%;\n }\n}\nh4, .h4,\nh5, .h5,\nh6, .h6 {\n margin-top: (@line-height-computed / 2);\n margin-bottom: (@line-height-computed / 2);\n\n small,\n .small {\n font-size: 75%;\n }\n}\n\nh1, .h1 { font-size: @font-size-h1; }\nh2, .h2 { font-size: @font-size-h2; }\nh3, .h3 { font-size: @font-size-h3; }\nh4, .h4 { font-size: @font-size-h4; }\nh5, .h5 { font-size: @font-size-h5; }\nh6, .h6 { font-size: @font-size-h6; }\n\n\n// Body text\n// -------------------------\n\np {\n margin: 0 0 (@line-height-computed / 2);\n}\n\n.lead {\n margin-bottom: @line-height-computed;\n font-size: floor((@font-size-base * 1.15));\n font-weight: 200;\n line-height: 1.4;\n\n @media (min-width: @screen-sm-min) {\n font-size: (@font-size-base * 1.5);\n }\n}\n\n\n// Emphasis & misc\n// -------------------------\n\n// Ex: 14px base font * 85% = about 12px\nsmall,\n.small { font-size: 85%; }\n\n// Undo browser default styling\ncite { font-style: normal; }\n\n// Alignment\n.text-left { text-align: left; }\n.text-right { text-align: right; }\n.text-center { text-align: center; }\n.text-justify { text-align: justify; }\n\n// Contextual colors\n.text-muted {\n color: @text-muted;\n}\n.text-primary {\n .text-emphasis-variant(@brand-primary);\n}\n.text-success {\n .text-emphasis-variant(@state-success-text);\n}\n.text-info {\n .text-emphasis-variant(@state-info-text);\n}\n.text-warning {\n .text-emphasis-variant(@state-warning-text);\n}\n.text-danger {\n .text-emphasis-variant(@state-danger-text);\n}\n\n// Contextual backgrounds\n// For now we'll leave these alongside the text classes until v4 when we can\n// safely shift things around (per SemVer rules).\n.bg-primary {\n // Given the contrast here, this is the only class to have its color inverted\n // automatically.\n color: #fff;\n .bg-variant(@brand-primary);\n}\n.bg-success {\n .bg-variant(@state-success-bg);\n}\n.bg-info {\n .bg-variant(@state-info-bg);\n}\n.bg-warning {\n .bg-variant(@state-warning-bg);\n}\n.bg-danger {\n .bg-variant(@state-danger-bg);\n}\n\n\n// Page header\n// -------------------------\n\n.page-header {\n padding-bottom: ((@line-height-computed / 2) - 1);\n margin: (@line-height-computed * 2) 0 @line-height-computed;\n border-bottom: 1px solid @page-header-border-color;\n}\n\n\n// Lists\n// --------------------------------------------------\n\n// Unordered and Ordered lists\nul,\nol {\n margin-top: 0;\n margin-bottom: (@line-height-computed / 2);\n ul,\n ol {\n margin-bottom: 0;\n }\n}\n\n// List options\n\n// Unstyled keeps list items block level, just removes default browser padding and list-style\n.list-unstyled {\n padding-left: 0;\n list-style: none;\n}\n\n// Inline turns list items into inline-block\n.list-inline {\n .list-unstyled();\n\n > li {\n display: inline-block;\n padding-left: 5px;\n padding-right: 5px;\n\n &:first-child {\n padding-left: 0;\n }\n }\n}\n\n// Description Lists\ndl {\n margin-top: 0; // Remove browser default\n margin-bottom: @line-height-computed;\n}\ndt,\ndd {\n line-height: @line-height-base;\n}\ndt {\n font-weight: bold;\n}\ndd {\n margin-left: 0; // Undo browser default\n}\n\n// Horizontal description lists\n//\n// Defaults to being stacked without any of the below styles applied, until the\n// grid breakpoint is reached (default of ~768px).\n\n@media (min-width: @grid-float-breakpoint) {\n .dl-horizontal {\n dt {\n float: left;\n width: (@component-offset-horizontal - 20);\n clear: left;\n text-align: right;\n .text-overflow();\n }\n dd {\n margin-left: @component-offset-horizontal;\n &:extend(.clearfix all); // Clear the floated `dt` if an empty `dd` is present\n }\n }\n}\n\n// MISC\n// ----\n\n// Abbreviations and acronyms\nabbr[title],\n// Add data-* attribute to help out our tooltip plugin, per https://github.com/twbs/bootstrap/issues/5257\nabbr[data-original-title] {\n cursor: help;\n border-bottom: 1px dotted @abbr-border-color;\n}\n.initialism {\n font-size: 90%;\n text-transform: uppercase;\n}\n\n// Blockquotes\nblockquote {\n padding: (@line-height-computed / 2) @line-height-computed;\n margin: 0 0 @line-height-computed;\n font-size: (@font-size-base * 1.25);\n border-left: 5px solid @blockquote-border-color;\n\n p,\n ul,\n ol {\n &:last-child {\n margin-bottom: 0;\n }\n }\n\n // Note: Deprecated small and .small as of v3.1.0\n // Context: https://github.com/twbs/bootstrap/issues/11660\n footer,\n small,\n .small {\n display: block;\n font-size: 80%; // back to default font-size\n line-height: @line-height-base;\n color: @blockquote-small-color;\n\n &:before {\n content: '\\2014 \\00A0'; // em dash, nbsp\n }\n }\n}\n\n// Opposite alignment of blockquote\n//\n// Heads up: `blockquote.pull-right` has been deprecated as of v3.1.0.\n.blockquote-reverse,\nblockquote.pull-right {\n padding-right: 15px;\n padding-left: 0;\n border-right: 5px solid @blockquote-border-color;\n border-left: 0;\n text-align: right;\n\n // Account for citation\n footer,\n small,\n .small {\n &:before { content: ''; }\n &:after {\n content: '\\00A0 \\2014'; // nbsp, em dash\n }\n }\n}\n\n// Quotes\nblockquote:before,\nblockquote:after {\n content: \"\";\n}\n\n// Addresses\naddress {\n margin-bottom: @line-height-computed;\n font-style: normal;\n line-height: @line-height-base;\n}\n","//\n// Code (inline and block)\n// --------------------------------------------------\n\n\n// Inline and block code styles\ncode,\nkbd,\npre,\nsamp {\n font-family: @font-family-monospace;\n}\n\n// Inline code\ncode {\n padding: 2px 4px;\n font-size: 90%;\n color: @code-color;\n background-color: @code-bg;\n white-space: nowrap;\n border-radius: @border-radius-base;\n}\n\n// User input typically entered via keyboard\nkbd {\n padding: 2px 4px;\n font-size: 90%;\n color: @kbd-color;\n background-color: @kbd-bg;\n border-radius: @border-radius-small;\n box-shadow: inset 0 -1px 0 rgba(0,0,0,.25);\n}\n\n// Blocks of code\npre {\n display: block;\n padding: ((@line-height-computed - 1) / 2);\n margin: 0 0 (@line-height-computed / 2);\n font-size: (@font-size-base - 1); // 14px to 13px\n line-height: @line-height-base;\n word-break: break-all;\n word-wrap: break-word;\n color: @pre-color;\n background-color: @pre-bg;\n border: 1px solid @pre-border-color;\n border-radius: @border-radius-base;\n\n // Account for some code outputs that place code tags in pre tags\n code {\n padding: 0;\n font-size: inherit;\n color: inherit;\n white-space: pre-wrap;\n background-color: transparent;\n border-radius: 0;\n }\n}\n\n// Enable scrollable blocks of code\n.pre-scrollable {\n max-height: @pre-scrollable-max-height;\n overflow-y: scroll;\n}\n","//\n// Grid system\n// --------------------------------------------------\n\n\n// Container widths\n//\n// Set the container width, and override it for fixed navbars in media queries.\n\n.container {\n .container-fixed();\n\n @media (min-width: @screen-sm-min) {\n width: @container-sm;\n }\n @media (min-width: @screen-md-min) {\n width: @container-md;\n }\n @media (min-width: @screen-lg-min) {\n width: @container-lg;\n }\n}\n\n\n// Fluid container\n//\n// Utilizes the mixin meant for fixed width containers, but without any defined\n// width for fluid, full width layouts.\n\n.container-fluid {\n .container-fixed();\n}\n\n\n// Row\n//\n// Rows contain and clear the floats of your columns.\n\n.row {\n .make-row();\n}\n\n\n// Columns\n//\n// Common styles for small and large grid columns\n\n.make-grid-columns();\n\n\n// Extra small grid\n//\n// Columns, offsets, pushes, and pulls for extra small devices like\n// smartphones.\n\n.make-grid-columns-float(xs);\n.make-grid(@grid-columns, xs, width);\n.make-grid(@grid-columns, xs, pull);\n.make-grid(@grid-columns, xs, push);\n.make-grid(@grid-columns, xs, offset);\n\n\n// Small grid\n//\n// Columns, offsets, pushes, and pulls for the small device range, from phones\n// to tablets.\n\n@media (min-width: @screen-sm-min) {\n .make-grid-columns-float(sm);\n .make-grid(@grid-columns, sm, width);\n .make-grid(@grid-columns, sm, pull);\n .make-grid(@grid-columns, sm, push);\n .make-grid(@grid-columns, sm, offset);\n}\n\n\n// Medium grid\n//\n// Columns, offsets, pushes, and pulls for the desktop device range.\n\n@media (min-width: @screen-md-min) {\n .make-grid-columns-float(md);\n .make-grid(@grid-columns, md, width);\n .make-grid(@grid-columns, md, pull);\n .make-grid(@grid-columns, md, push);\n .make-grid(@grid-columns, md, offset);\n}\n\n\n// Large grid\n//\n// Columns, offsets, pushes, and pulls for the large desktop device range.\n\n@media (min-width: @screen-lg-min) {\n .make-grid-columns-float(lg);\n .make-grid(@grid-columns, lg, width);\n .make-grid(@grid-columns, lg, pull);\n .make-grid(@grid-columns, lg, push);\n .make-grid(@grid-columns, lg, offset);\n}\n","//\n// Tables\n// --------------------------------------------------\n\n\ntable {\n max-width: 100%;\n background-color: @table-bg;\n}\nth {\n text-align: left;\n}\n\n\n// Baseline styles\n\n.table {\n width: 100%;\n margin-bottom: @line-height-computed;\n // Cells\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th,\n > td {\n padding: @table-cell-padding;\n line-height: @line-height-base;\n vertical-align: top;\n border-top: 1px solid @table-border-color;\n }\n }\n }\n // Bottom align for column headings\n > thead > tr > th {\n vertical-align: bottom;\n border-bottom: 2px solid @table-border-color;\n }\n // Remove top border from thead by default\n > caption + thead,\n > colgroup + thead,\n > thead:first-child {\n > tr:first-child {\n > th,\n > td {\n border-top: 0;\n }\n }\n }\n // Account for multiple tbody instances\n > tbody + tbody {\n border-top: 2px solid @table-border-color;\n }\n\n // Nesting\n .table {\n background-color: @body-bg;\n }\n}\n\n\n// Condensed table w/ half padding\n\n.table-condensed {\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th,\n > td {\n padding: @table-condensed-cell-padding;\n }\n }\n }\n}\n\n\n// Bordered version\n//\n// Add borders all around the table and between all the columns.\n\n.table-bordered {\n border: 1px solid @table-border-color;\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th,\n > td {\n border: 1px solid @table-border-color;\n }\n }\n }\n > thead > tr {\n > th,\n > td {\n border-bottom-width: 2px;\n }\n }\n}\n\n\n// Zebra-striping\n//\n// Default zebra-stripe styles (alternating gray and transparent backgrounds)\n\n.table-striped {\n > tbody > tr:nth-child(odd) {\n > td,\n > th {\n background-color: @table-bg-accent;\n }\n }\n}\n\n\n// Hover effect\n//\n// Placed here since it has to come after the potential zebra striping\n\n.table-hover {\n > tbody > tr:hover {\n > td,\n > th {\n background-color: @table-bg-hover;\n }\n }\n}\n\n\n// Table cell sizing\n//\n// Reset default table behavior\n\ntable col[class*=\"col-\"] {\n position: static; // Prevent border hiding in Firefox and IE9/10 (see https://github.com/twbs/bootstrap/issues/11623)\n float: none;\n display: table-column;\n}\ntable {\n td,\n th {\n &[class*=\"col-\"] {\n position: static; // Prevent border hiding in Firefox and IE9/10 (see https://github.com/twbs/bootstrap/issues/11623)\n float: none;\n display: table-cell;\n }\n }\n}\n\n\n// Table backgrounds\n//\n// Exact selectors below required to override `.table-striped` and prevent\n// inheritance to nested tables.\n\n// Generate the contextual variants\n.table-row-variant(active; @table-bg-active);\n.table-row-variant(success; @state-success-bg);\n.table-row-variant(info; @state-info-bg);\n.table-row-variant(warning; @state-warning-bg);\n.table-row-variant(danger; @state-danger-bg);\n\n\n// Responsive tables\n//\n// Wrap your tables in `.table-responsive` and we'll make them mobile friendly\n// by enabling horizontal scrolling. Only applies <768px. Everything above that\n// will display normally.\n\n@media (max-width: @screen-xs-max) {\n .table-responsive {\n width: 100%;\n margin-bottom: (@line-height-computed * 0.75);\n overflow-y: hidden;\n overflow-x: scroll;\n -ms-overflow-style: -ms-autohiding-scrollbar;\n border: 1px solid @table-border-color;\n -webkit-overflow-scrolling: touch;\n\n // Tighten up spacing\n > .table {\n margin-bottom: 0;\n\n // Ensure the content doesn't wrap\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th,\n > td {\n white-space: nowrap;\n }\n }\n }\n }\n\n // Special overrides for the bordered tables\n > .table-bordered {\n border: 0;\n\n // Nuke the appropriate borders so that the parent can handle them\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th:first-child,\n > td:first-child {\n border-left: 0;\n }\n > th:last-child,\n > td:last-child {\n border-right: 0;\n }\n }\n }\n\n // Only nuke the last row's bottom-border in `tbody` and `tfoot` since\n // chances are there will be only one `tr` in a `thead` and that would\n // remove the border altogether.\n > tbody,\n > tfoot {\n > tr:last-child {\n > th,\n > td {\n border-bottom: 0;\n }\n }\n }\n\n }\n }\n}\n","//\n// Forms\n// --------------------------------------------------\n\n\n// Normalize non-controls\n//\n// Restyle and baseline non-control form elements.\n\nfieldset {\n padding: 0;\n margin: 0;\n border: 0;\n // Chrome and Firefox set a `min-width: -webkit-min-content;` on fieldsets,\n // so we reset that to ensure it behaves more like a standard block element.\n // See https://github.com/twbs/bootstrap/issues/12359.\n min-width: 0;\n}\n\nlegend {\n display: block;\n width: 100%;\n padding: 0;\n margin-bottom: @line-height-computed;\n font-size: (@font-size-base * 1.5);\n line-height: inherit;\n color: @legend-color;\n border: 0;\n border-bottom: 1px solid @legend-border-color;\n}\n\nlabel {\n display: inline-block;\n margin-bottom: 5px;\n font-weight: bold;\n}\n\n\n// Normalize form controls\n//\n// While most of our form styles require extra classes, some basic normalization\n// is required to ensure optimum display with or without those classes to better\n// address browser inconsistencies.\n\n// Override content-box in Normalize (* isn't specific enough)\ninput[type=\"search\"] {\n .box-sizing(border-box);\n}\n\n// Position radios and checkboxes better\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n margin: 4px 0 0;\n margin-top: 1px \\9; /* IE8-9 */\n line-height: normal;\n}\n\n// Set the height of file controls to match text inputs\ninput[type=\"file\"] {\n display: block;\n}\n\n// Make range inputs behave like textual form controls\ninput[type=\"range\"] {\n display: block;\n width: 100%;\n}\n\n// Make multiple select elements height not fixed\nselect[multiple],\nselect[size] {\n height: auto;\n}\n\n// Focus for file, radio, and checkbox\ninput[type=\"file\"]:focus,\ninput[type=\"radio\"]:focus,\ninput[type=\"checkbox\"]:focus {\n .tab-focus();\n}\n\n// Adjust output element\noutput {\n display: block;\n padding-top: (@padding-base-vertical + 1);\n font-size: @font-size-base;\n line-height: @line-height-base;\n color: @input-color;\n}\n\n\n// Common form controls\n//\n// Shared size and type resets for form controls. Apply `.form-control` to any\n// of the following form controls:\n//\n// select\n// textarea\n// input[type=\"text\"]\n// input[type=\"password\"]\n// input[type=\"datetime\"]\n// input[type=\"datetime-local\"]\n// input[type=\"date\"]\n// input[type=\"month\"]\n// input[type=\"time\"]\n// input[type=\"week\"]\n// input[type=\"number\"]\n// input[type=\"email\"]\n// input[type=\"url\"]\n// input[type=\"search\"]\n// input[type=\"tel\"]\n// input[type=\"color\"]\n\n.form-control {\n display: block;\n width: 100%;\n height: @input-height-base; // Make inputs at least the height of their button counterpart (base line-height + padding + border)\n padding: @padding-base-vertical @padding-base-horizontal;\n font-size: @font-size-base;\n line-height: @line-height-base;\n color: @input-color;\n background-color: @input-bg;\n background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214\n border: 1px solid @input-border;\n border-radius: @input-border-radius;\n .box-shadow(inset 0 1px 1px rgba(0,0,0,.075));\n .transition(~\"border-color ease-in-out .15s, box-shadow ease-in-out .15s\");\n\n // Customize the `:focus` state to imitate native WebKit styles.\n .form-control-focus();\n\n // Placeholder\n .placeholder();\n\n // Disabled and read-only inputs\n // Note: HTML5 says that controls under a fieldset > legend:first-child won't\n // be disabled if the fieldset is disabled. Due to implementation difficulty,\n // we don't honor that edge case; we style them as disabled anyway.\n &[disabled],\n &[readonly],\n fieldset[disabled] & {\n cursor: not-allowed;\n background-color: @input-bg-disabled;\n opacity: 1; // iOS fix for unreadable disabled content\n }\n\n // Reset height for `textarea`s\n textarea& {\n height: auto;\n }\n}\n\n// Special styles for iOS date input\n//\n// In Mobile Safari, date inputs require a pixel line-height that matches the\n// given height of the input.\ninput[type=\"date\"] {\n line-height: @input-height-base;\n}\n\n\n// Form groups\n//\n// Designed to help with the organization and spacing of vertical forms. For\n// horizontal forms, use the predefined grid classes.\n\n.form-group {\n margin-bottom: 15px;\n}\n\n\n// Checkboxes and radios\n//\n// Indent the labels to position radios/checkboxes as hanging controls.\n\n.radio,\n.checkbox {\n display: block;\n min-height: @line-height-computed; // clear the floating input if there is no label text\n margin-top: 10px;\n margin-bottom: 10px;\n padding-left: 20px;\n label {\n display: inline;\n font-weight: normal;\n cursor: pointer;\n }\n}\n.radio input[type=\"radio\"],\n.radio-inline input[type=\"radio\"],\n.checkbox input[type=\"checkbox\"],\n.checkbox-inline input[type=\"checkbox\"] {\n float: left;\n margin-left: -20px;\n}\n.radio + .radio,\n.checkbox + .checkbox {\n margin-top: -5px; // Move up sibling radios or checkboxes for tighter spacing\n}\n\n// Radios and checkboxes on same line\n.radio-inline,\n.checkbox-inline {\n display: inline-block;\n padding-left: 20px;\n margin-bottom: 0;\n vertical-align: middle;\n font-weight: normal;\n cursor: pointer;\n}\n.radio-inline + .radio-inline,\n.checkbox-inline + .checkbox-inline {\n margin-top: 0;\n margin-left: 10px; // space out consecutive inline controls\n}\n\n// Apply same disabled cursor tweak as for inputs\n//\n// Note: Neither radios nor checkboxes can be readonly.\ninput[type=\"radio\"],\ninput[type=\"checkbox\"],\n.radio,\n.radio-inline,\n.checkbox,\n.checkbox-inline {\n &[disabled],\n fieldset[disabled] & {\n cursor: not-allowed;\n }\n}\n\n\n// Form control sizing\n//\n// Build on `.form-control` with modifier classes to decrease or increase the\n// height and font-size of form controls.\n\n.input-sm {\n .input-size(@input-height-small; @padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @border-radius-small);\n}\n\n.input-lg {\n .input-size(@input-height-large; @padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @border-radius-large);\n}\n\n\n// Form control feedback states\n//\n// Apply contextual and semantic states to individual form controls.\n\n.has-feedback {\n // Enable absolute positioning\n position: relative;\n\n // Ensure icons don't overlap text\n .form-control {\n padding-right: (@input-height-base * 1.25);\n }\n\n // Feedback icon (requires .glyphicon classes)\n .form-control-feedback {\n position: absolute;\n top: (@line-height-computed + 5); // Height of the `label` and its margin\n right: 0;\n display: block;\n width: @input-height-base;\n height: @input-height-base;\n line-height: @input-height-base;\n text-align: center;\n }\n}\n\n// Feedback states\n.has-success {\n .form-control-validation(@state-success-text; @state-success-text; @state-success-bg);\n}\n.has-warning {\n .form-control-validation(@state-warning-text; @state-warning-text; @state-warning-bg);\n}\n.has-error {\n .form-control-validation(@state-danger-text; @state-danger-text; @state-danger-bg);\n}\n\n\n// Static form control text\n//\n// Apply class to a `p` element to make any string of text align with labels in\n// a horizontal form layout.\n\n.form-control-static {\n margin-bottom: 0; // Remove default margin from `p`\n}\n\n\n// Help text\n//\n// Apply to any element you wish to create light text for placement immediately\n// below a form control. Use for general help, formatting, or instructional text.\n\n.help-block {\n display: block; // account for any element using help-block\n margin-top: 5px;\n margin-bottom: 10px;\n color: lighten(@text-color, 25%); // lighten the text some for contrast\n}\n\n\n\n// Inline forms\n//\n// Make forms appear inline(-block) by adding the `.form-inline` class. Inline\n// forms begin stacked on extra small (mobile) devices and then go inline when\n// viewports reach <768px.\n//\n// Requires wrapping inputs and labels with `.form-group` for proper display of\n// default HTML form controls and our custom form controls (e.g., input groups).\n//\n// Heads up! This is mixin-ed into `.navbar-form` in navbars.less.\n\n.form-inline {\n\n // Kick in the inline\n @media (min-width: @screen-sm-min) {\n // Inline-block all the things for \"inline\"\n .form-group {\n display: inline-block;\n margin-bottom: 0;\n vertical-align: middle;\n }\n\n // In navbar-form, allow folks to *not* use `.form-group`\n .form-control {\n display: inline-block;\n width: auto; // Prevent labels from stacking above inputs in `.form-group`\n vertical-align: middle;\n }\n\n .control-label {\n margin-bottom: 0;\n vertical-align: middle;\n }\n\n // Remove default margin on radios/checkboxes that were used for stacking, and\n // then undo the floating of radios and checkboxes to match (which also avoids\n // a bug in WebKit: https://github.com/twbs/bootstrap/issues/1969).\n .radio,\n .checkbox {\n display: inline-block;\n margin-top: 0;\n margin-bottom: 0;\n padding-left: 0;\n vertical-align: middle;\n }\n .radio input[type=\"radio\"],\n .checkbox input[type=\"checkbox\"] {\n float: none;\n margin-left: 0;\n }\n\n // Validation states\n //\n // Reposition the icon because it's now within a grid column and columns have\n // `position: relative;` on them. Also accounts for the grid gutter padding.\n .has-feedback .form-control-feedback {\n top: 0;\n }\n }\n}\n\n\n// Horizontal forms\n//\n// Horizontal forms are built on grid classes and allow you to create forms with\n// labels on the left and inputs on the right.\n\n.form-horizontal {\n\n // Consistent vertical alignment of labels, radios, and checkboxes\n .control-label,\n .radio,\n .checkbox,\n .radio-inline,\n .checkbox-inline {\n margin-top: 0;\n margin-bottom: 0;\n padding-top: (@padding-base-vertical + 1); // Default padding plus a border\n }\n // Account for padding we're adding to ensure the alignment and of help text\n // and other content below items\n .radio,\n .checkbox {\n min-height: (@line-height-computed + (@padding-base-vertical + 1));\n }\n\n // Make form groups behave like rows\n .form-group {\n .make-row();\n }\n\n .form-control-static {\n padding-top: (@padding-base-vertical + 1);\n }\n\n // Only right align form labels here when the columns stop stacking\n @media (min-width: @screen-sm-min) {\n .control-label {\n text-align: right;\n }\n }\n\n // Validation states\n //\n // Reposition the icon because it's now within a grid column and columns have\n // `position: relative;` on them. Also accounts for the grid gutter padding.\n .has-feedback .form-control-feedback {\n top: 0;\n right: (@grid-gutter-width / 2);\n }\n}\n","//\n// Buttons\n// --------------------------------------------------\n\n\n// Base styles\n// --------------------------------------------------\n\n.btn {\n display: inline-block;\n margin-bottom: 0; // For input.btn\n font-weight: @btn-font-weight;\n text-align: center;\n vertical-align: middle;\n cursor: pointer;\n background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214\n border: 1px solid transparent;\n white-space: nowrap;\n .button-size(@padding-base-vertical; @padding-base-horizontal; @font-size-base; @line-height-base; @border-radius-base);\n .user-select(none);\n\n &:focus {\n .tab-focus();\n }\n\n &:hover,\n &:focus {\n color: @btn-default-color;\n text-decoration: none;\n }\n\n &:active,\n &.active {\n outline: 0;\n background-image: none;\n .box-shadow(inset 0 3px 5px rgba(0,0,0,.125));\n }\n\n &.disabled,\n &[disabled],\n fieldset[disabled] & {\n cursor: not-allowed;\n pointer-events: none; // Future-proof disabling of clicks\n .opacity(.65);\n .box-shadow(none);\n }\n}\n\n\n// Alternate buttons\n// --------------------------------------------------\n\n.btn-default {\n .button-variant(@btn-default-color; @btn-default-bg; @btn-default-border);\n}\n.btn-primary {\n .button-variant(@btn-primary-color; @btn-primary-bg; @btn-primary-border);\n}\n// Success appears as green\n.btn-success {\n .button-variant(@btn-success-color; @btn-success-bg; @btn-success-border);\n}\n// Info appears as blue-green\n.btn-info {\n .button-variant(@btn-info-color; @btn-info-bg; @btn-info-border);\n}\n// Warning appears as orange\n.btn-warning {\n .button-variant(@btn-warning-color; @btn-warning-bg; @btn-warning-border);\n}\n// Danger and error appear as red\n.btn-danger {\n .button-variant(@btn-danger-color; @btn-danger-bg; @btn-danger-border);\n}\n\n\n// Link buttons\n// -------------------------\n\n// Make a button look and behave like a link\n.btn-link {\n color: @link-color;\n font-weight: normal;\n cursor: pointer;\n border-radius: 0;\n\n &,\n &:active,\n &[disabled],\n fieldset[disabled] & {\n background-color: transparent;\n .box-shadow(none);\n }\n &,\n &:hover,\n &:focus,\n &:active {\n border-color: transparent;\n }\n &:hover,\n &:focus {\n color: @link-hover-color;\n text-decoration: underline;\n background-color: transparent;\n }\n &[disabled],\n fieldset[disabled] & {\n &:hover,\n &:focus {\n color: @btn-link-disabled-color;\n text-decoration: none;\n }\n }\n}\n\n\n// Button Sizes\n// --------------------------------------------------\n\n.btn-lg {\n // line-height: ensure even-numbered height of button next to large input\n .button-size(@padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @border-radius-large);\n}\n.btn-sm {\n // line-height: ensure proper height of button next to small input\n .button-size(@padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @border-radius-small);\n}\n.btn-xs {\n .button-size(@padding-xs-vertical; @padding-xs-horizontal; @font-size-small; @line-height-small; @border-radius-small);\n}\n\n\n// Block button\n// --------------------------------------------------\n\n.btn-block {\n display: block;\n width: 100%;\n padding-left: 0;\n padding-right: 0;\n}\n\n// Vertically space out multiple block buttons\n.btn-block + .btn-block {\n margin-top: 5px;\n}\n\n// Specificity overrides\ninput[type=\"submit\"],\ninput[type=\"reset\"],\ninput[type=\"button\"] {\n &.btn-block {\n width: 100%;\n }\n}\n","//\n// Component animations\n// --------------------------------------------------\n\n// Heads up!\n//\n// We don't use the `.opacity()` mixin here since it causes a bug with text\n// fields in IE7-8. Source: https://github.com/twitter/bootstrap/pull/3552.\n\n.fade {\n opacity: 0;\n .transition(opacity .15s linear);\n &.in {\n opacity: 1;\n }\n}\n\n.collapse {\n display: none;\n &.in {\n display: block;\n }\n}\n.collapsing {\n position: relative;\n height: 0;\n overflow: hidden;\n .transition(height .35s ease);\n}\n","//\n// Glyphicons for Bootstrap\n//\n// Since icons are fonts, they can be placed anywhere text is placed and are\n// thus automatically sized to match the surrounding child. To use, create an\n// inline element with the appropriate classes, like so:\n//\n// <a href=\"#\"><span class=\"glyphicon glyphicon-star\"></span> Star</a>\n\n// Import the fonts\n@font-face {\n font-family: 'Glyphicons Halflings';\n src: ~\"url('@{icon-font-path}@{icon-font-name}.eot')\";\n src: ~\"url('@{icon-font-path}@{icon-font-name}.eot?#iefix') format('embedded-opentype')\",\n ~\"url('@{icon-font-path}@{icon-font-name}.woff') format('woff')\",\n ~\"url('@{icon-font-path}@{icon-font-name}.ttf') format('truetype')\",\n ~\"url('@{icon-font-path}@{icon-font-name}.svg#@{icon-font-svg-id}') format('svg')\";\n}\n\n// Catchall baseclass\n.glyphicon {\n position: relative;\n top: 1px;\n display: inline-block;\n font-family: 'Glyphicons Halflings';\n font-style: normal;\n font-weight: normal;\n line-height: 1;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n\n// Individual icons\n.glyphicon-asterisk { &:before { content: \"\\2a\"; } }\n.glyphicon-plus { &:before { content: \"\\2b\"; } }\n.glyphicon-euro { &:before { content: \"\\20ac\"; } }\n.glyphicon-minus { &:before { content: \"\\2212\"; } }\n.glyphicon-cloud { &:before { content: \"\\2601\"; } }\n.glyphicon-envelope { &:before { content: \"\\2709\"; } }\n.glyphicon-pencil { &:before { content: \"\\270f\"; } }\n.glyphicon-glass { &:before { content: \"\\e001\"; } }\n.glyphicon-music { &:before { content: \"\\e002\"; } }\n.glyphicon-search { &:before { content: \"\\e003\"; } }\n.glyphicon-heart { &:before { content: \"\\e005\"; } }\n.glyphicon-star { &:before { content: \"\\e006\"; } }\n.glyphicon-star-empty { &:before { content: \"\\e007\"; } }\n.glyphicon-user { &:before { content: \"\\e008\"; } }\n.glyphicon-film { &:before { content: \"\\e009\"; } }\n.glyphicon-th-large { &:before { content: \"\\e010\"; } }\n.glyphicon-th { &:before { content: \"\\e011\"; } }\n.glyphicon-th-list { &:before { content: \"\\e012\"; } }\n.glyphicon-ok { &:before { content: \"\\e013\"; } }\n.glyphicon-remove { &:before { content: \"\\e014\"; } }\n.glyphicon-zoom-in { &:before { content: \"\\e015\"; } }\n.glyphicon-zoom-out { &:before { content: \"\\e016\"; } }\n.glyphicon-off { &:before { content: \"\\e017\"; } }\n.glyphicon-signal { &:before { content: \"\\e018\"; } }\n.glyphicon-cog { &:before { content: \"\\e019\"; } }\n.glyphicon-trash { &:before { content: \"\\e020\"; } }\n.glyphicon-home { &:before { content: \"\\e021\"; } }\n.glyphicon-file { &:before { content: \"\\e022\"; } }\n.glyphicon-time { &:before { content: \"\\e023\"; } }\n.glyphicon-road { &:before { content: \"\\e024\"; } }\n.glyphicon-download-alt { &:before { content: \"\\e025\"; } }\n.glyphicon-download { &:before { content: \"\\e026\"; } }\n.glyphicon-upload { &:before { content: \"\\e027\"; } }\n.glyphicon-inbox { &:before { content: \"\\e028\"; } }\n.glyphicon-play-circle { &:before { content: \"\\e029\"; } }\n.glyphicon-repeat { &:before { content: \"\\e030\"; } }\n.glyphicon-refresh { &:before { content: \"\\e031\"; } }\n.glyphicon-list-alt { &:before { content: \"\\e032\"; } }\n.glyphicon-lock { &:before { content: \"\\e033\"; } }\n.glyphicon-flag { &:before { content: \"\\e034\"; } }\n.glyphicon-headphones { &:before { content: \"\\e035\"; } }\n.glyphicon-volume-off { &:before { content: \"\\e036\"; } }\n.glyphicon-volume-down { &:before { content: \"\\e037\"; } }\n.glyphicon-volume-up { &:before { content: \"\\e038\"; } }\n.glyphicon-qrcode { &:before { content: \"\\e039\"; } }\n.glyphicon-barcode { &:before { content: \"\\e040\"; } }\n.glyphicon-tag { &:before { content: \"\\e041\"; } }\n.glyphicon-tags { &:before { content: \"\\e042\"; } }\n.glyphicon-book { &:before { content: \"\\e043\"; } }\n.glyphicon-bookmark { &:before { content: \"\\e044\"; } }\n.glyphicon-print { &:before { content: \"\\e045\"; } }\n.glyphicon-camera { &:before { content: \"\\e046\"; } }\n.glyphicon-font { &:before { content: \"\\e047\"; } }\n.glyphicon-bold { &:before { content: \"\\e048\"; } }\n.glyphicon-italic { &:before { content: \"\\e049\"; } }\n.glyphicon-text-height { &:before { content: \"\\e050\"; } }\n.glyphicon-text-width { &:before { content: \"\\e051\"; } }\n.glyphicon-align-left { &:before { content: \"\\e052\"; } }\n.glyphicon-align-center { &:before { content: \"\\e053\"; } }\n.glyphicon-align-right { &:before { content: \"\\e054\"; } }\n.glyphicon-align-justify { &:before { content: \"\\e055\"; } }\n.glyphicon-list { &:before { content: \"\\e056\"; } }\n.glyphicon-indent-left { &:before { content: \"\\e057\"; } }\n.glyphicon-indent-right { &:before { content: \"\\e058\"; } }\n.glyphicon-facetime-video { &:before { content: \"\\e059\"; } }\n.glyphicon-picture { &:before { content: \"\\e060\"; } }\n.glyphicon-map-marker { &:before { content: \"\\e062\"; } }\n.glyphicon-adjust { &:before { content: \"\\e063\"; } }\n.glyphicon-tint { &:before { content: \"\\e064\"; } }\n.glyphicon-edit { &:before { content: \"\\e065\"; } }\n.glyphicon-share { &:before { content: \"\\e066\"; } }\n.glyphicon-check { &:before { content: \"\\e067\"; } }\n.glyphicon-move { &:before { content: \"\\e068\"; } }\n.glyphicon-step-backward { &:before { content: \"\\e069\"; } }\n.glyphicon-fast-backward { &:before { content: \"\\e070\"; } }\n.glyphicon-backward { &:before { content: \"\\e071\"; } }\n.glyphicon-play { &:before { content: \"\\e072\"; } }\n.glyphicon-pause { &:before { content: \"\\e073\"; } }\n.glyphicon-stop { &:before { content: \"\\e074\"; } }\n.glyphicon-forward { &:before { content: \"\\e075\"; } }\n.glyphicon-fast-forward { &:before { content: \"\\e076\"; } }\n.glyphicon-step-forward { &:before { content: \"\\e077\"; } }\n.glyphicon-eject { &:before { content: \"\\e078\"; } }\n.glyphicon-chevron-left { &:before { content: \"\\e079\"; } }\n.glyphicon-chevron-right { &:before { content: \"\\e080\"; } }\n.glyphicon-plus-sign { &:before { content: \"\\e081\"; } }\n.glyphicon-minus-sign { &:before { content: \"\\e082\"; } }\n.glyphicon-remove-sign { &:before { content: \"\\e083\"; } }\n.glyphicon-ok-sign { &:before { content: \"\\e084\"; } }\n.glyphicon-question-sign { &:before { content: \"\\e085\"; } }\n.glyphicon-info-sign { &:before { content: \"\\e086\"; } }\n.glyphicon-screenshot { &:before { content: \"\\e087\"; } }\n.glyphicon-remove-circle { &:before { content: \"\\e088\"; } }\n.glyphicon-ok-circle { &:before { content: \"\\e089\"; } }\n.glyphicon-ban-circle { &:before { content: \"\\e090\"; } }\n.glyphicon-arrow-left { &:before { content: \"\\e091\"; } }\n.glyphicon-arrow-right { &:before { content: \"\\e092\"; } }\n.glyphicon-arrow-up { &:before { content: \"\\e093\"; } }\n.glyphicon-arrow-down { &:before { content: \"\\e094\"; } }\n.glyphicon-share-alt { &:before { content: \"\\e095\"; } }\n.glyphicon-resize-full { &:before { content: \"\\e096\"; } }\n.glyphicon-resize-small { &:before { content: \"\\e097\"; } }\n.glyphicon-exclamation-sign { &:before { content: \"\\e101\"; } }\n.glyphicon-gift { &:before { content: \"\\e102\"; } }\n.glyphicon-leaf { &:before { content: \"\\e103\"; } }\n.glyphicon-fire { &:before { content: \"\\e104\"; } }\n.glyphicon-eye-open { &:before { content: \"\\e105\"; } }\n.glyphicon-eye-close { &:before { content: \"\\e106\"; } }\n.glyphicon-warning-sign { &:before { content: \"\\e107\"; } }\n.glyphicon-plane { &:before { content: \"\\e108\"; } }\n.glyphicon-calendar { &:before { content: \"\\e109\"; } }\n.glyphicon-random { &:before { content: \"\\e110\"; } }\n.glyphicon-comment { &:before { content: \"\\e111\"; } }\n.glyphicon-magnet { &:before { content: \"\\e112\"; } }\n.glyphicon-chevron-up { &:before { content: \"\\e113\"; } }\n.glyphicon-chevron-down { &:before { content: \"\\e114\"; } }\n.glyphicon-retweet { &:before { content: \"\\e115\"; } }\n.glyphicon-shopping-cart { &:before { content: \"\\e116\"; } }\n.glyphicon-folder-close { &:before { content: \"\\e117\"; } }\n.glyphicon-folder-open { &:before { content: \"\\e118\"; } }\n.glyphicon-resize-vertical { &:before { content: \"\\e119\"; } }\n.glyphicon-resize-horizontal { &:before { content: \"\\e120\"; } }\n.glyphicon-hdd { &:before { content: \"\\e121\"; } }\n.glyphicon-bullhorn { &:before { content: \"\\e122\"; } }\n.glyphicon-bell { &:before { content: \"\\e123\"; } }\n.glyphicon-certificate { &:before { content: \"\\e124\"; } }\n.glyphicon-thumbs-up { &:before { content: \"\\e125\"; } }\n.glyphicon-thumbs-down { &:before { content: \"\\e126\"; } }\n.glyphicon-hand-right { &:before { content: \"\\e127\"; } }\n.glyphicon-hand-left { &:before { content: \"\\e128\"; } }\n.glyphicon-hand-up { &:before { content: \"\\e129\"; } }\n.glyphicon-hand-down { &:before { content: \"\\e130\"; } }\n.glyphicon-circle-arrow-right { &:before { content: \"\\e131\"; } }\n.glyphicon-circle-arrow-left { &:before { content: \"\\e132\"; } }\n.glyphicon-circle-arrow-up { &:before { content: \"\\e133\"; } }\n.glyphicon-circle-arrow-down { &:before { content: \"\\e134\"; } }\n.glyphicon-globe { &:before { content: \"\\e135\"; } }\n.glyphicon-wrench { &:before { content: \"\\e136\"; } }\n.glyphicon-tasks { &:before { content: \"\\e137\"; } }\n.glyphicon-filter { &:before { content: \"\\e138\"; } }\n.glyphicon-briefcase { &:before { content: \"\\e139\"; } }\n.glyphicon-fullscreen { &:before { content: \"\\e140\"; } }\n.glyphicon-dashboard { &:before { content: \"\\e141\"; } }\n.glyphicon-paperclip { &:before { content: \"\\e142\"; } }\n.glyphicon-heart-empty { &:before { content: \"\\e143\"; } }\n.glyphicon-link { &:before { content: \"\\e144\"; } }\n.glyphicon-phone { &:before { content: \"\\e145\"; } }\n.glyphicon-pushpin { &:before { content: \"\\e146\"; } }\n.glyphicon-usd { &:before { content: \"\\e148\"; } }\n.glyphicon-gbp { &:before { content: \"\\e149\"; } }\n.glyphicon-sort { &:before { content: \"\\e150\"; } }\n.glyphicon-sort-by-alphabet { &:before { content: \"\\e151\"; } }\n.glyphicon-sort-by-alphabet-alt { &:before { content: \"\\e152\"; } }\n.glyphicon-sort-by-order { &:before { content: \"\\e153\"; } }\n.glyphicon-sort-by-order-alt { &:before { content: \"\\e154\"; } }\n.glyphicon-sort-by-attributes { &:before { content: \"\\e155\"; } }\n.glyphicon-sort-by-attributes-alt { &:before { content: \"\\e156\"; } }\n.glyphicon-unchecked { &:before { content: \"\\e157\"; } }\n.glyphicon-expand { &:before { content: \"\\e158\"; } }\n.glyphicon-collapse-down { &:before { content: \"\\e159\"; } }\n.glyphicon-collapse-up { &:before { content: \"\\e160\"; } }\n.glyphicon-log-in { &:before { content: \"\\e161\"; } }\n.glyphicon-flash { &:before { content: \"\\e162\"; } }\n.glyphicon-log-out { &:before { content: \"\\e163\"; } }\n.glyphicon-new-window { &:before { content: \"\\e164\"; } }\n.glyphicon-record { &:before { content: \"\\e165\"; } }\n.glyphicon-save { &:before { content: \"\\e166\"; } }\n.glyphicon-open { &:before { content: \"\\e167\"; } }\n.glyphicon-saved { &:before { content: \"\\e168\"; } }\n.glyphicon-import { &:before { content: \"\\e169\"; } }\n.glyphicon-export { &:before { content: \"\\e170\"; } }\n.glyphicon-send { &:before { content: \"\\e171\"; } }\n.glyphicon-floppy-disk { &:before { content: \"\\e172\"; } }\n.glyphicon-floppy-saved { &:before { content: \"\\e173\"; } }\n.glyphicon-floppy-remove { &:before { content: \"\\e174\"; } }\n.glyphicon-floppy-save { &:before { content: \"\\e175\"; } }\n.glyphicon-floppy-open { &:before { content: \"\\e176\"; } }\n.glyphicon-credit-card { &:before { content: \"\\e177\"; } }\n.glyphicon-transfer { &:before { content: \"\\e178\"; } }\n.glyphicon-cutlery { &:before { content: \"\\e179\"; } }\n.glyphicon-header { &:before { content: \"\\e180\"; } }\n.glyphicon-compressed { &:before { content: \"\\e181\"; } }\n.glyphicon-earphone { &:before { content: \"\\e182\"; } }\n.glyphicon-phone-alt { &:before { content: \"\\e183\"; } }\n.glyphicon-tower { &:before { content: \"\\e184\"; } }\n.glyphicon-stats { &:before { content: \"\\e185\"; } }\n.glyphicon-sd-video { &:before { content: \"\\e186\"; } }\n.glyphicon-hd-video { &:before { content: \"\\e187\"; } }\n.glyphicon-subtitles { &:before { content: \"\\e188\"; } }\n.glyphicon-sound-stereo { &:before { content: \"\\e189\"; } }\n.glyphicon-sound-dolby { &:before { content: \"\\e190\"; } }\n.glyphicon-sound-5-1 { &:before { content: \"\\e191\"; } }\n.glyphicon-sound-6-1 { &:before { content: \"\\e192\"; } }\n.glyphicon-sound-7-1 { &:before { content: \"\\e193\"; } }\n.glyphicon-copyright-mark { &:before { content: \"\\e194\"; } }\n.glyphicon-registration-mark { &:before { content: \"\\e195\"; } }\n.glyphicon-cloud-download { &:before { content: \"\\e197\"; } }\n.glyphicon-cloud-upload { &:before { content: \"\\e198\"; } }\n.glyphicon-tree-conifer { &:before { content: \"\\e199\"; } }\n.glyphicon-tree-deciduous { &:before { content: \"\\e200\"; } }\n","//\n// Dropdown menus\n// --------------------------------------------------\n\n\n// Dropdown arrow/caret\n.caret {\n display: inline-block;\n width: 0;\n height: 0;\n margin-left: 2px;\n vertical-align: middle;\n border-top: @caret-width-base solid;\n border-right: @caret-width-base solid transparent;\n border-left: @caret-width-base solid transparent;\n}\n\n// The dropdown wrapper (div)\n.dropdown {\n position: relative;\n}\n\n// Prevent the focus on the dropdown toggle when closing dropdowns\n.dropdown-toggle:focus {\n outline: 0;\n}\n\n// The dropdown menu (ul)\n.dropdown-menu {\n position: absolute;\n top: 100%;\n left: 0;\n z-index: @zindex-dropdown;\n display: none; // none by default, but block on \"open\" of the menu\n float: left;\n min-width: 160px;\n padding: 5px 0;\n margin: 2px 0 0; // override default ul\n list-style: none;\n font-size: @font-size-base;\n background-color: @dropdown-bg;\n border: 1px solid @dropdown-fallback-border; // IE8 fallback\n border: 1px solid @dropdown-border;\n border-radius: @border-radius-base;\n .box-shadow(0 6px 12px rgba(0,0,0,.175));\n background-clip: padding-box;\n\n // Aligns the dropdown menu to right\n //\n // Deprecated as of 3.1.0 in favor of `.dropdown-menu-[dir]`\n &.pull-right {\n right: 0;\n left: auto;\n }\n\n // Dividers (basically an hr) within the dropdown\n .divider {\n .nav-divider(@dropdown-divider-bg);\n }\n\n // Links within the dropdown menu\n > li > a {\n display: block;\n padding: 3px 20px;\n clear: both;\n font-weight: normal;\n line-height: @line-height-base;\n color: @dropdown-link-color;\n white-space: nowrap; // prevent links from randomly breaking onto new lines\n }\n}\n\n// Hover/Focus state\n.dropdown-menu > li > a {\n &:hover,\n &:focus {\n text-decoration: none;\n color: @dropdown-link-hover-color;\n background-color: @dropdown-link-hover-bg;\n }\n}\n\n// Active state\n.dropdown-menu > .active > a {\n &,\n &:hover,\n &:focus {\n color: @dropdown-link-active-color;\n text-decoration: none;\n outline: 0;\n background-color: @dropdown-link-active-bg;\n }\n}\n\n// Disabled state\n//\n// Gray out text and ensure the hover/focus state remains gray\n\n.dropdown-menu > .disabled > a {\n &,\n &:hover,\n &:focus {\n color: @dropdown-link-disabled-color;\n }\n}\n// Nuke hover/focus effects\n.dropdown-menu > .disabled > a {\n &:hover,\n &:focus {\n text-decoration: none;\n background-color: transparent;\n background-image: none; // Remove CSS gradient\n .reset-filter();\n cursor: not-allowed;\n }\n}\n\n// Open state for the dropdown\n.open {\n // Show the menu\n > .dropdown-menu {\n display: block;\n }\n\n // Remove the outline when :focus is triggered\n > a {\n outline: 0;\n }\n}\n\n// Menu positioning\n//\n// Add extra class to `.dropdown-menu` to flip the alignment of the dropdown\n// menu with the parent.\n.dropdown-menu-right {\n left: auto; // Reset the default from `.dropdown-menu`\n right: 0;\n}\n// With v3, we enabled auto-flipping if you have a dropdown within a right\n// aligned nav component. To enable the undoing of that, we provide an override\n// to restore the default dropdown menu alignment.\n//\n// This is only for left-aligning a dropdown menu within a `.navbar-right` or\n// `.pull-right` nav component.\n.dropdown-menu-left {\n left: 0;\n right: auto;\n}\n\n// Dropdown section headers\n.dropdown-header {\n display: block;\n padding: 3px 20px;\n font-size: @font-size-small;\n line-height: @line-height-base;\n color: @dropdown-header-color;\n}\n\n// Backdrop to catch body clicks on mobile, etc.\n.dropdown-backdrop {\n position: fixed;\n left: 0;\n right: 0;\n bottom: 0;\n top: 0;\n z-index: (@zindex-dropdown - 10);\n}\n\n// Right aligned dropdowns\n.pull-right > .dropdown-menu {\n right: 0;\n left: auto;\n}\n\n// Allow for dropdowns to go bottom up (aka, dropup-menu)\n//\n// Just add .dropup after the standard .dropdown class and you're set, bro.\n// TODO: abstract this so that the navbar fixed styles are not placed here?\n\n.dropup,\n.navbar-fixed-bottom .dropdown {\n // Reverse the caret\n .caret {\n border-top: 0;\n border-bottom: @caret-width-base solid;\n content: \"\";\n }\n // Different positioning for bottom up menu\n .dropdown-menu {\n top: auto;\n bottom: 100%;\n margin-bottom: 1px;\n }\n}\n\n\n// Component alignment\n//\n// Reiterate per navbar.less and the modified component alignment there.\n\n@media (min-width: @grid-float-breakpoint) {\n .navbar-right {\n .dropdown-menu {\n .dropdown-menu-right();\n }\n // Necessary for overrides of the default right aligned menu.\n // Will remove come v4 in all likelihood.\n .dropdown-menu-left {\n .dropdown-menu-left();\n }\n }\n}\n\n","//\n// Button groups\n// --------------------------------------------------\n\n// Make the div behave like a button\n.btn-group,\n.btn-group-vertical {\n position: relative;\n display: inline-block;\n vertical-align: middle; // match .btn alignment given font-size hack above\n > .btn {\n position: relative;\n float: left;\n // Bring the \"active\" button to the front\n &:hover,\n &:focus,\n &:active,\n &.active {\n z-index: 2;\n }\n &:focus {\n // Remove focus outline when dropdown JS adds it after closing the menu\n outline: none;\n }\n }\n}\n\n// Prevent double borders when buttons are next to each other\n.btn-group {\n .btn + .btn,\n .btn + .btn-group,\n .btn-group + .btn,\n .btn-group + .btn-group {\n margin-left: -1px;\n }\n}\n\n// Optional: Group multiple button groups together for a toolbar\n.btn-toolbar {\n margin-left: -5px; // Offset the first child's margin\n &:extend(.clearfix all);\n\n .btn-group,\n .input-group {\n float: left;\n }\n > .btn,\n > .btn-group,\n > .input-group {\n margin-left: 5px;\n }\n}\n\n.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {\n border-radius: 0;\n}\n\n// Set corners individual because sometimes a single button can be in a .btn-group and we need :first-child and :last-child to both match\n.btn-group > .btn:first-child {\n margin-left: 0;\n &:not(:last-child):not(.dropdown-toggle) {\n .border-right-radius(0);\n }\n}\n// Need .dropdown-toggle since :last-child doesn't apply given a .dropdown-menu immediately after it\n.btn-group > .btn:last-child:not(:first-child),\n.btn-group > .dropdown-toggle:not(:first-child) {\n .border-left-radius(0);\n}\n\n// Custom edits for including btn-groups within btn-groups (useful for including dropdown buttons within a btn-group)\n.btn-group > .btn-group {\n float: left;\n}\n.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {\n border-radius: 0;\n}\n.btn-group > .btn-group:first-child {\n > .btn:last-child,\n > .dropdown-toggle {\n .border-right-radius(0);\n }\n}\n.btn-group > .btn-group:last-child > .btn:first-child {\n .border-left-radius(0);\n}\n\n// On active and open, don't show outline\n.btn-group .dropdown-toggle:active,\n.btn-group.open .dropdown-toggle {\n outline: 0;\n}\n\n\n// Sizing\n//\n// Remix the default button sizing classes into new ones for easier manipulation.\n\n.btn-group-xs > .btn { .btn-xs(); }\n.btn-group-sm > .btn { .btn-sm(); }\n.btn-group-lg > .btn { .btn-lg(); }\n\n\n// Split button dropdowns\n// ----------------------\n\n// Give the line between buttons some depth\n.btn-group > .btn + .dropdown-toggle {\n padding-left: 8px;\n padding-right: 8px;\n}\n.btn-group > .btn-lg + .dropdown-toggle {\n padding-left: 12px;\n padding-right: 12px;\n}\n\n// The clickable button for toggling the menu\n// Remove the gradient and set the same inset shadow as the :active state\n.btn-group.open .dropdown-toggle {\n .box-shadow(inset 0 3px 5px rgba(0,0,0,.125));\n\n // Show no shadow for `.btn-link` since it has no other button styles.\n &.btn-link {\n .box-shadow(none);\n }\n}\n\n\n// Reposition the caret\n.btn .caret {\n margin-left: 0;\n}\n// Carets in other button sizes\n.btn-lg .caret {\n border-width: @caret-width-large @caret-width-large 0;\n border-bottom-width: 0;\n}\n// Upside down carets for .dropup\n.dropup .btn-lg .caret {\n border-width: 0 @caret-width-large @caret-width-large;\n}\n\n\n// Vertical button groups\n// ----------------------\n\n.btn-group-vertical {\n > .btn,\n > .btn-group,\n > .btn-group > .btn {\n display: block;\n float: none;\n width: 100%;\n max-width: 100%;\n }\n\n // Clear floats so dropdown menus can be properly placed\n > .btn-group {\n &:extend(.clearfix all);\n > .btn {\n float: none;\n }\n }\n\n > .btn + .btn,\n > .btn + .btn-group,\n > .btn-group + .btn,\n > .btn-group + .btn-group {\n margin-top: -1px;\n margin-left: 0;\n }\n}\n\n.btn-group-vertical > .btn {\n &:not(:first-child):not(:last-child) {\n border-radius: 0;\n }\n &:first-child:not(:last-child) {\n border-top-right-radius: @border-radius-base;\n .border-bottom-radius(0);\n }\n &:last-child:not(:first-child) {\n border-bottom-left-radius: @border-radius-base;\n .border-top-radius(0);\n }\n}\n.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {\n border-radius: 0;\n}\n.btn-group-vertical > .btn-group:first-child:not(:last-child) {\n > .btn:last-child,\n > .dropdown-toggle {\n .border-bottom-radius(0);\n }\n}\n.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {\n .border-top-radius(0);\n}\n\n\n\n// Justified button groups\n// ----------------------\n\n.btn-group-justified {\n display: table;\n width: 100%;\n table-layout: fixed;\n border-collapse: separate;\n > .btn,\n > .btn-group {\n float: none;\n display: table-cell;\n width: 1%;\n }\n > .btn-group .btn {\n width: 100%;\n }\n}\n\n\n// Checkbox and radio options\n[data-toggle=\"buttons\"] > .btn > input[type=\"radio\"],\n[data-toggle=\"buttons\"] > .btn > input[type=\"checkbox\"] {\n display: none;\n}\n","//\n// Input groups\n// --------------------------------------------------\n\n// Base styles\n// -------------------------\n.input-group {\n position: relative; // For dropdowns\n display: table;\n border-collapse: separate; // prevent input groups from inheriting border styles from table cells when placed within a table\n\n // Undo padding and float of grid classes\n &[class*=\"col-\"] {\n float: none;\n padding-left: 0;\n padding-right: 0;\n }\n\n .form-control {\n // IE9 fubars the placeholder attribute in text inputs and the arrows on\n // select elements in input groups. To fix it, we float the input. Details:\n // https://github.com/twbs/bootstrap/issues/11561#issuecomment-28936855\n float: left;\n\n width: 100%;\n margin-bottom: 0;\n }\n}\n\n// Sizing options\n//\n// Remix the default form control sizing classes into new ones for easier\n// manipulation.\n\n.input-group-lg > .form-control,\n.input-group-lg > .input-group-addon,\n.input-group-lg > .input-group-btn > .btn { .input-lg(); }\n.input-group-sm > .form-control,\n.input-group-sm > .input-group-addon,\n.input-group-sm > .input-group-btn > .btn { .input-sm(); }\n\n\n// Display as table-cell\n// -------------------------\n.input-group-addon,\n.input-group-btn,\n.input-group .form-control {\n display: table-cell;\n\n &:not(:first-child):not(:last-child) {\n border-radius: 0;\n }\n}\n// Addon and addon wrapper for buttons\n.input-group-addon,\n.input-group-btn {\n width: 1%;\n white-space: nowrap;\n vertical-align: middle; // Match the inputs\n}\n\n// Text input groups\n// -------------------------\n.input-group-addon {\n padding: @padding-base-vertical @padding-base-horizontal;\n font-size: @font-size-base;\n font-weight: normal;\n line-height: 1;\n color: @input-color;\n text-align: center;\n background-color: @input-group-addon-bg;\n border: 1px solid @input-group-addon-border-color;\n border-radius: @border-radius-base;\n\n // Sizing\n &.input-sm {\n padding: @padding-small-vertical @padding-small-horizontal;\n font-size: @font-size-small;\n border-radius: @border-radius-small;\n }\n &.input-lg {\n padding: @padding-large-vertical @padding-large-horizontal;\n font-size: @font-size-large;\n border-radius: @border-radius-large;\n }\n\n // Nuke default margins from checkboxes and radios to vertically center within.\n input[type=\"radio\"],\n input[type=\"checkbox\"] {\n margin-top: 0;\n }\n}\n\n// Reset rounded corners\n.input-group .form-control:first-child,\n.input-group-addon:first-child,\n.input-group-btn:first-child > .btn,\n.input-group-btn:first-child > .btn-group > .btn,\n.input-group-btn:first-child > .dropdown-toggle,\n.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),\n.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {\n .border-right-radius(0);\n}\n.input-group-addon:first-child {\n border-right: 0;\n}\n.input-group .form-control:last-child,\n.input-group-addon:last-child,\n.input-group-btn:last-child > .btn,\n.input-group-btn:last-child > .btn-group > .btn,\n.input-group-btn:last-child > .dropdown-toggle,\n.input-group-btn:first-child > .btn:not(:first-child),\n.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {\n .border-left-radius(0);\n}\n.input-group-addon:last-child {\n border-left: 0;\n}\n\n// Button input groups\n// -------------------------\n.input-group-btn {\n position: relative;\n // Jankily prevent input button groups from wrapping with `white-space` and\n // `font-size` in combination with `inline-block` on buttons.\n font-size: 0;\n white-space: nowrap;\n\n // Negative margin for spacing, position for bringing hovered/focused/actived\n // element above the siblings.\n > .btn {\n position: relative;\n + .btn {\n margin-left: -1px;\n }\n // Bring the \"active\" button to the front\n &:hover,\n &:focus,\n &:active {\n z-index: 2;\n }\n }\n\n // Negative margin to only have a 1px border between the two\n &:first-child {\n > .btn,\n > .btn-group {\n margin-right: -1px;\n }\n }\n &:last-child {\n > .btn,\n > .btn-group {\n margin-left: -1px;\n }\n }\n}\n","//\n// Navs\n// --------------------------------------------------\n\n\n// Base class\n// --------------------------------------------------\n\n.nav {\n margin-bottom: 0;\n padding-left: 0; // Override default ul/ol\n list-style: none;\n &:extend(.clearfix all);\n\n > li {\n position: relative;\n display: block;\n\n > a {\n position: relative;\n display: block;\n padding: @nav-link-padding;\n &:hover,\n &:focus {\n text-decoration: none;\n background-color: @nav-link-hover-bg;\n }\n }\n\n // Disabled state sets text to gray and nukes hover/tab effects\n &.disabled > a {\n color: @nav-disabled-link-color;\n\n &:hover,\n &:focus {\n color: @nav-disabled-link-hover-color;\n text-decoration: none;\n background-color: transparent;\n cursor: not-allowed;\n }\n }\n }\n\n // Open dropdowns\n .open > a {\n &,\n &:hover,\n &:focus {\n background-color: @nav-link-hover-bg;\n border-color: @link-color;\n }\n }\n\n // Nav dividers (deprecated with v3.0.1)\n //\n // This should have been removed in v3 with the dropping of `.nav-list`, but\n // we missed it. We don't currently support this anywhere, but in the interest\n // of maintaining backward compatibility in case you use it, it's deprecated.\n .nav-divider {\n .nav-divider();\n }\n\n // Prevent IE8 from misplacing imgs\n //\n // See https://github.com/h5bp/html5-boilerplate/issues/984#issuecomment-3985989\n > li > a > img {\n max-width: none;\n }\n}\n\n\n// Tabs\n// -------------------------\n\n// Give the tabs something to sit on\n.nav-tabs {\n border-bottom: 1px solid @nav-tabs-border-color;\n > li {\n float: left;\n // Make the list-items overlay the bottom border\n margin-bottom: -1px;\n\n // Actual tabs (as links)\n > a {\n margin-right: 2px;\n line-height: @line-height-base;\n border: 1px solid transparent;\n border-radius: @border-radius-base @border-radius-base 0 0;\n &:hover {\n border-color: @nav-tabs-link-hover-border-color @nav-tabs-link-hover-border-color @nav-tabs-border-color;\n }\n }\n\n // Active state, and its :hover to override normal :hover\n &.active > a {\n &,\n &:hover,\n &:focus {\n color: @nav-tabs-active-link-hover-color;\n background-color: @nav-tabs-active-link-hover-bg;\n border: 1px solid @nav-tabs-active-link-hover-border-color;\n border-bottom-color: transparent;\n cursor: default;\n }\n }\n }\n // pulling this in mainly for less shorthand\n &.nav-justified {\n .nav-justified();\n .nav-tabs-justified();\n }\n}\n\n\n// Pills\n// -------------------------\n.nav-pills {\n > li {\n float: left;\n\n // Links rendered as pills\n > a {\n border-radius: @nav-pills-border-radius;\n }\n + li {\n margin-left: 2px;\n }\n\n // Active state\n &.active > a {\n &,\n &:hover,\n &:focus {\n color: @nav-pills-active-link-hover-color;\n background-color: @nav-pills-active-link-hover-bg;\n }\n }\n }\n}\n\n\n// Stacked pills\n.nav-stacked {\n > li {\n float: none;\n + li {\n margin-top: 2px;\n margin-left: 0; // no need for this gap between nav items\n }\n }\n}\n\n\n// Nav variations\n// --------------------------------------------------\n\n// Justified nav links\n// -------------------------\n\n.nav-justified {\n width: 100%;\n\n > li {\n float: none;\n > a {\n text-align: center;\n margin-bottom: 5px;\n }\n }\n\n > .dropdown .dropdown-menu {\n top: auto;\n left: auto;\n }\n\n @media (min-width: @screen-sm-min) {\n > li {\n display: table-cell;\n width: 1%;\n > a {\n margin-bottom: 0;\n }\n }\n }\n}\n\n// Move borders to anchors instead of bottom of list\n//\n// Mixin for adding on top the shared `.nav-justified` styles for our tabs\n.nav-tabs-justified {\n border-bottom: 0;\n\n > li > a {\n // Override margin from .nav-tabs\n margin-right: 0;\n border-radius: @border-radius-base;\n }\n\n > .active > a,\n > .active > a:hover,\n > .active > a:focus {\n border: 1px solid @nav-tabs-justified-link-border-color;\n }\n\n @media (min-width: @screen-sm-min) {\n > li > a {\n border-bottom: 1px solid @nav-tabs-justified-link-border-color;\n border-radius: @border-radius-base @border-radius-base 0 0;\n }\n > .active > a,\n > .active > a:hover,\n > .active > a:focus {\n border-bottom-color: @nav-tabs-justified-active-link-border-color;\n }\n }\n}\n\n\n// Tabbable tabs\n// -------------------------\n\n// Hide tabbable panes to start, show them when `.active`\n.tab-content {\n > .tab-pane {\n display: none;\n }\n > .active {\n display: block;\n }\n}\n\n\n// Dropdowns\n// -------------------------\n\n// Specific dropdowns\n.nav-tabs .dropdown-menu {\n // make dropdown border overlap tab border\n margin-top: -1px;\n // Remove the top rounded corners here since there is a hard edge above the menu\n .border-top-radius(0);\n}\n","//\n// Navbars\n// --------------------------------------------------\n\n\n// Wrapper and base class\n//\n// Provide a static navbar from which we expand to create full-width, fixed, and\n// other navbar variations.\n\n.navbar {\n position: relative;\n min-height: @navbar-height; // Ensure a navbar always shows (e.g., without a .navbar-brand in collapsed mode)\n margin-bottom: @navbar-margin-bottom;\n border: 1px solid transparent;\n\n // Prevent floats from breaking the navbar\n &:extend(.clearfix all);\n\n @media (min-width: @grid-float-breakpoint) {\n border-radius: @navbar-border-radius;\n }\n}\n\n\n// Navbar heading\n//\n// Groups `.navbar-brand` and `.navbar-toggle` into a single component for easy\n// styling of responsive aspects.\n\n.navbar-header {\n &:extend(.clearfix all);\n\n @media (min-width: @grid-float-breakpoint) {\n float: left;\n }\n}\n\n\n// Navbar collapse (body)\n//\n// Group your navbar content into this for easy collapsing and expanding across\n// various device sizes. By default, this content is collapsed when <768px, but\n// will expand past that for a horizontal display.\n//\n// To start (on mobile devices) the navbar links, forms, and buttons are stacked\n// vertically and include a `max-height` to overflow in case you have too much\n// content for the user's viewport.\n\n.navbar-collapse {\n max-height: @navbar-collapse-max-height;\n overflow-x: visible;\n padding-right: @navbar-padding-horizontal;\n padding-left: @navbar-padding-horizontal;\n border-top: 1px solid transparent;\n box-shadow: inset 0 1px 0 rgba(255,255,255,.1);\n &:extend(.clearfix all);\n -webkit-overflow-scrolling: touch;\n\n &.in {\n overflow-y: auto;\n }\n\n @media (min-width: @grid-float-breakpoint) {\n width: auto;\n border-top: 0;\n box-shadow: none;\n\n &.collapse {\n display: block !important;\n height: auto !important;\n padding-bottom: 0; // Override default setting\n overflow: visible !important;\n }\n\n &.in {\n overflow-y: visible;\n }\n\n // Undo the collapse side padding for navbars with containers to ensure\n // alignment of right-aligned contents.\n .navbar-fixed-top &,\n .navbar-static-top &,\n .navbar-fixed-bottom & {\n padding-left: 0;\n padding-right: 0;\n }\n }\n}\n\n\n// Both navbar header and collapse\n//\n// When a container is present, change the behavior of the header and collapse.\n\n.container,\n.container-fluid {\n > .navbar-header,\n > .navbar-collapse {\n margin-right: -@navbar-padding-horizontal;\n margin-left: -@navbar-padding-horizontal;\n\n @media (min-width: @grid-float-breakpoint) {\n margin-right: 0;\n margin-left: 0;\n }\n }\n}\n\n\n//\n// Navbar alignment options\n//\n// Display the navbar across the entirety of the page or fixed it to the top or\n// bottom of the page.\n\n// Static top (unfixed, but 100% wide) navbar\n.navbar-static-top {\n z-index: @zindex-navbar;\n border-width: 0 0 1px;\n\n @media (min-width: @grid-float-breakpoint) {\n border-radius: 0;\n }\n}\n\n// Fix the top/bottom navbars when screen real estate supports it\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n position: fixed;\n right: 0;\n left: 0;\n z-index: @zindex-navbar-fixed;\n\n // Undo the rounded corners\n @media (min-width: @grid-float-breakpoint) {\n border-radius: 0;\n }\n}\n.navbar-fixed-top {\n top: 0;\n border-width: 0 0 1px;\n}\n.navbar-fixed-bottom {\n bottom: 0;\n margin-bottom: 0; // override .navbar defaults\n border-width: 1px 0 0;\n}\n\n\n// Brand/project name\n\n.navbar-brand {\n float: left;\n padding: @navbar-padding-vertical @navbar-padding-horizontal;\n font-size: @font-size-large;\n line-height: @line-height-computed;\n height: @line-height-computed;\n\n &:hover,\n &:focus {\n text-decoration: none;\n }\n\n @media (min-width: @grid-float-breakpoint) {\n .navbar > .container &,\n .navbar > .container-fluid & {\n margin-left: -@navbar-padding-horizontal;\n }\n }\n}\n\n\n// Navbar toggle\n//\n// Custom button for toggling the `.navbar-collapse`, powered by the collapse\n// JavaScript plugin.\n\n.navbar-toggle {\n position: relative;\n float: right;\n margin-right: @navbar-padding-horizontal;\n padding: 9px 10px;\n .navbar-vertical-align(34px);\n background-color: transparent;\n background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214\n border: 1px solid transparent;\n border-radius: @border-radius-base;\n\n // We remove the `outline` here, but later compensate by attaching `:hover`\n // styles to `:focus`.\n &:focus {\n outline: none;\n }\n\n // Bars\n .icon-bar {\n display: block;\n width: 22px;\n height: 2px;\n border-radius: 1px;\n }\n .icon-bar + .icon-bar {\n margin-top: 4px;\n }\n\n @media (min-width: @grid-float-breakpoint) {\n display: none;\n }\n}\n\n\n// Navbar nav links\n//\n// Builds on top of the `.nav` components with its own modifier class to make\n// the nav the full height of the horizontal nav (above 768px).\n\n.navbar-nav {\n margin: (@navbar-padding-vertical / 2) -@navbar-padding-horizontal;\n\n > li > a {\n padding-top: 10px;\n padding-bottom: 10px;\n line-height: @line-height-computed;\n }\n\n @media (max-width: @grid-float-breakpoint-max) {\n // Dropdowns get custom display when collapsed\n .open .dropdown-menu {\n position: static;\n float: none;\n width: auto;\n margin-top: 0;\n background-color: transparent;\n border: 0;\n box-shadow: none;\n > li > a,\n .dropdown-header {\n padding: 5px 15px 5px 25px;\n }\n > li > a {\n line-height: @line-height-computed;\n &:hover,\n &:focus {\n background-image: none;\n }\n }\n }\n }\n\n // Uncollapse the nav\n @media (min-width: @grid-float-breakpoint) {\n float: left;\n margin: 0;\n\n > li {\n float: left;\n > a {\n padding-top: @navbar-padding-vertical;\n padding-bottom: @navbar-padding-vertical;\n }\n }\n\n &.navbar-right:last-child {\n margin-right: -@navbar-padding-horizontal;\n }\n }\n}\n\n\n// Component alignment\n//\n// Repurpose the pull utilities as their own navbar utilities to avoid specificity\n// issues with parents and chaining. Only do this when the navbar is uncollapsed\n// though so that navbar contents properly stack and align in mobile.\n\n@media (min-width: @grid-float-breakpoint) {\n .navbar-left { .pull-left(); }\n .navbar-right { .pull-right(); }\n}\n\n\n// Navbar form\n//\n// Extension of the `.form-inline` with some extra flavor for optimum display in\n// our navbars.\n\n.navbar-form {\n margin-left: -@navbar-padding-horizontal;\n margin-right: -@navbar-padding-horizontal;\n padding: 10px @navbar-padding-horizontal;\n border-top: 1px solid transparent;\n border-bottom: 1px solid transparent;\n @shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);\n .box-shadow(@shadow);\n\n // Mixin behavior for optimum display\n .form-inline();\n\n .form-group {\n @media (max-width: @grid-float-breakpoint-max) {\n margin-bottom: 5px;\n }\n }\n\n // Vertically center in expanded, horizontal navbar\n .navbar-vertical-align(@input-height-base);\n\n // Undo 100% width for pull classes\n @media (min-width: @grid-float-breakpoint) {\n width: auto;\n border: 0;\n margin-left: 0;\n margin-right: 0;\n padding-top: 0;\n padding-bottom: 0;\n .box-shadow(none);\n\n // Outdent the form if last child to line up with content down the page\n &.navbar-right:last-child {\n margin-right: -@navbar-padding-horizontal;\n }\n }\n}\n\n\n// Dropdown menus\n\n// Menu position and menu carets\n.navbar-nav > li > .dropdown-menu {\n margin-top: 0;\n .border-top-radius(0);\n}\n// Menu position and menu caret support for dropups via extra dropup class\n.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {\n .border-bottom-radius(0);\n}\n\n\n// Buttons in navbars\n//\n// Vertically center a button within a navbar (when *not* in a form).\n\n.navbar-btn {\n .navbar-vertical-align(@input-height-base);\n\n &.btn-sm {\n .navbar-vertical-align(@input-height-small);\n }\n &.btn-xs {\n .navbar-vertical-align(22);\n }\n}\n\n\n// Text in navbars\n//\n// Add a class to make any element properly align itself vertically within the navbars.\n\n.navbar-text {\n .navbar-vertical-align(@line-height-computed);\n\n @media (min-width: @grid-float-breakpoint) {\n float: left;\n margin-left: @navbar-padding-horizontal;\n margin-right: @navbar-padding-horizontal;\n\n // Outdent the form if last child to line up with content down the page\n &.navbar-right:last-child {\n margin-right: 0;\n }\n }\n}\n\n// Alternate navbars\n// --------------------------------------------------\n\n// Default navbar\n.navbar-default {\n background-color: @navbar-default-bg;\n border-color: @navbar-default-border;\n\n .navbar-brand {\n color: @navbar-default-brand-color;\n &:hover,\n &:focus {\n color: @navbar-default-brand-hover-color;\n background-color: @navbar-default-brand-hover-bg;\n }\n }\n\n .navbar-text {\n color: @navbar-default-color;\n }\n\n .navbar-nav {\n > li > a {\n color: @navbar-default-link-color;\n\n &:hover,\n &:focus {\n color: @navbar-default-link-hover-color;\n background-color: @navbar-default-link-hover-bg;\n }\n }\n > .active > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-default-link-active-color;\n background-color: @navbar-default-link-active-bg;\n }\n }\n > .disabled > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-default-link-disabled-color;\n background-color: @navbar-default-link-disabled-bg;\n }\n }\n }\n\n .navbar-toggle {\n border-color: @navbar-default-toggle-border-color;\n &:hover,\n &:focus {\n background-color: @navbar-default-toggle-hover-bg;\n }\n .icon-bar {\n background-color: @navbar-default-toggle-icon-bar-bg;\n }\n }\n\n .navbar-collapse,\n .navbar-form {\n border-color: @navbar-default-border;\n }\n\n // Dropdown menu items\n .navbar-nav {\n // Remove background color from open dropdown\n > .open > a {\n &,\n &:hover,\n &:focus {\n background-color: @navbar-default-link-active-bg;\n color: @navbar-default-link-active-color;\n }\n }\n\n @media (max-width: @grid-float-breakpoint-max) {\n // Dropdowns get custom display when collapsed\n .open .dropdown-menu {\n > li > a {\n color: @navbar-default-link-color;\n &:hover,\n &:focus {\n color: @navbar-default-link-hover-color;\n background-color: @navbar-default-link-hover-bg;\n }\n }\n > .active > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-default-link-active-color;\n background-color: @navbar-default-link-active-bg;\n }\n }\n > .disabled > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-default-link-disabled-color;\n background-color: @navbar-default-link-disabled-bg;\n }\n }\n }\n }\n }\n\n\n // Links in navbars\n //\n // Add a class to ensure links outside the navbar nav are colored correctly.\n\n .navbar-link {\n color: @navbar-default-link-color;\n &:hover {\n color: @navbar-default-link-hover-color;\n }\n }\n\n}\n\n// Inverse navbar\n\n.navbar-inverse {\n background-color: @navbar-inverse-bg;\n border-color: @navbar-inverse-border;\n\n .navbar-brand {\n color: @navbar-inverse-brand-color;\n &:hover,\n &:focus {\n color: @navbar-inverse-brand-hover-color;\n background-color: @navbar-inverse-brand-hover-bg;\n }\n }\n\n .navbar-text {\n color: @navbar-inverse-color;\n }\n\n .navbar-nav {\n > li > a {\n color: @navbar-inverse-link-color;\n\n &:hover,\n &:focus {\n color: @navbar-inverse-link-hover-color;\n background-color: @navbar-inverse-link-hover-bg;\n }\n }\n > .active > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-inverse-link-active-color;\n background-color: @navbar-inverse-link-active-bg;\n }\n }\n > .disabled > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-inverse-link-disabled-color;\n background-color: @navbar-inverse-link-disabled-bg;\n }\n }\n }\n\n // Darken the responsive nav toggle\n .navbar-toggle {\n border-color: @navbar-inverse-toggle-border-color;\n &:hover,\n &:focus {\n background-color: @navbar-inverse-toggle-hover-bg;\n }\n .icon-bar {\n background-color: @navbar-inverse-toggle-icon-bar-bg;\n }\n }\n\n .navbar-collapse,\n .navbar-form {\n border-color: darken(@navbar-inverse-bg, 7%);\n }\n\n // Dropdowns\n .navbar-nav {\n > .open > a {\n &,\n &:hover,\n &:focus {\n background-color: @navbar-inverse-link-active-bg;\n color: @navbar-inverse-link-active-color;\n }\n }\n\n @media (max-width: @grid-float-breakpoint-max) {\n // Dropdowns get custom display\n .open .dropdown-menu {\n > .dropdown-header {\n border-color: @navbar-inverse-border;\n }\n .divider {\n background-color: @navbar-inverse-border;\n }\n > li > a {\n color: @navbar-inverse-link-color;\n &:hover,\n &:focus {\n color: @navbar-inverse-link-hover-color;\n background-color: @navbar-inverse-link-hover-bg;\n }\n }\n > .active > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-inverse-link-active-color;\n background-color: @navbar-inverse-link-active-bg;\n }\n }\n > .disabled > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-inverse-link-disabled-color;\n background-color: @navbar-inverse-link-disabled-bg;\n }\n }\n }\n }\n }\n\n .navbar-link {\n color: @navbar-inverse-link-color;\n &:hover {\n color: @navbar-inverse-link-hover-color;\n }\n }\n\n}\n","//\n// Utility classes\n// --------------------------------------------------\n\n\n// Floats\n// -------------------------\n\n.clearfix {\n .clearfix();\n}\n.center-block {\n .center-block();\n}\n.pull-right {\n float: right !important;\n}\n.pull-left {\n float: left !important;\n}\n\n\n// Toggling content\n// -------------------------\n\n// Note: Deprecated .hide in favor of .hidden or .sr-only (as appropriate) in v3.0.1\n.hide {\n display: none !important;\n}\n.show {\n display: block !important;\n}\n.invisible {\n visibility: hidden;\n}\n.text-hide {\n .text-hide();\n}\n\n\n// Hide from screenreaders and browsers\n//\n// Credit: HTML5 Boilerplate\n\n.hidden {\n display: none !important;\n visibility: hidden !important;\n}\n\n\n// For Affix plugin\n// -------------------------\n\n.affix {\n position: fixed;\n}\n","//\n// Breadcrumbs\n// --------------------------------------------------\n\n\n.breadcrumb {\n padding: @breadcrumb-padding-vertical @breadcrumb-padding-horizontal;\n margin-bottom: @line-height-computed;\n list-style: none;\n background-color: @breadcrumb-bg;\n border-radius: @border-radius-base;\n\n > li {\n display: inline-block;\n\n + li:before {\n content: \"@{breadcrumb-separator}\\00a0\"; // Unicode space added since inline-block means non-collapsing white-space\n padding: 0 5px;\n color: @breadcrumb-color;\n }\n }\n\n > .active {\n color: @breadcrumb-active-color;\n }\n}\n","//\n// Pagination (multiple pages)\n// --------------------------------------------------\n.pagination {\n display: inline-block;\n padding-left: 0;\n margin: @line-height-computed 0;\n border-radius: @border-radius-base;\n\n > li {\n display: inline; // Remove list-style and block-level defaults\n > a,\n > span {\n position: relative;\n float: left; // Collapse white-space\n padding: @padding-base-vertical @padding-base-horizontal;\n line-height: @line-height-base;\n text-decoration: none;\n color: @pagination-color;\n background-color: @pagination-bg;\n border: 1px solid @pagination-border;\n margin-left: -1px;\n }\n &:first-child {\n > a,\n > span {\n margin-left: 0;\n .border-left-radius(@border-radius-base);\n }\n }\n &:last-child {\n > a,\n > span {\n .border-right-radius(@border-radius-base);\n }\n }\n }\n\n > li > a,\n > li > span {\n &:hover,\n &:focus {\n color: @pagination-hover-color;\n background-color: @pagination-hover-bg;\n border-color: @pagination-hover-border;\n }\n }\n\n > .active > a,\n > .active > span {\n &,\n &:hover,\n &:focus {\n z-index: 2;\n color: @pagination-active-color;\n background-color: @pagination-active-bg;\n border-color: @pagination-active-border;\n cursor: default;\n }\n }\n\n > .disabled {\n > span,\n > span:hover,\n > span:focus,\n > a,\n > a:hover,\n > a:focus {\n color: @pagination-disabled-color;\n background-color: @pagination-disabled-bg;\n border-color: @pagination-disabled-border;\n cursor: not-allowed;\n }\n }\n}\n\n// Sizing\n// --------------------------------------------------\n\n// Large\n.pagination-lg {\n .pagination-size(@padding-large-vertical; @padding-large-horizontal; @font-size-large; @border-radius-large);\n}\n\n// Small\n.pagination-sm {\n .pagination-size(@padding-small-vertical; @padding-small-horizontal; @font-size-small; @border-radius-small);\n}\n","//\n// Pager pagination\n// --------------------------------------------------\n\n\n.pager {\n padding-left: 0;\n margin: @line-height-computed 0;\n list-style: none;\n text-align: center;\n &:extend(.clearfix all);\n li {\n display: inline;\n > a,\n > span {\n display: inline-block;\n padding: 5px 14px;\n background-color: @pager-bg;\n border: 1px solid @pager-border;\n border-radius: @pager-border-radius;\n }\n\n > a:hover,\n > a:focus {\n text-decoration: none;\n background-color: @pager-hover-bg;\n }\n }\n\n .next {\n > a,\n > span {\n float: right;\n }\n }\n\n .previous {\n > a,\n > span {\n float: left;\n }\n }\n\n .disabled {\n > a,\n > a:hover,\n > a:focus,\n > span {\n color: @pager-disabled-color;\n background-color: @pager-bg;\n cursor: not-allowed;\n }\n }\n\n}\n","//\n// Labels\n// --------------------------------------------------\n\n.label {\n display: inline;\n padding: .2em .6em .3em;\n font-size: 75%;\n font-weight: bold;\n line-height: 1;\n color: @label-color;\n text-align: center;\n white-space: nowrap;\n vertical-align: baseline;\n border-radius: .25em;\n\n // Add hover effects, but only for links\n &[href] {\n &:hover,\n &:focus {\n color: @label-link-hover-color;\n text-decoration: none;\n cursor: pointer;\n }\n }\n\n // Empty labels collapse automatically (not available in IE8)\n &:empty {\n display: none;\n }\n\n // Quick fix for labels in buttons\n .btn & {\n position: relative;\n top: -1px;\n }\n}\n\n// Colors\n// Contextual variations (linked labels get darker on :hover)\n\n.label-default {\n .label-variant(@label-default-bg);\n}\n\n.label-primary {\n .label-variant(@label-primary-bg);\n}\n\n.label-success {\n .label-variant(@label-success-bg);\n}\n\n.label-info {\n .label-variant(@label-info-bg);\n}\n\n.label-warning {\n .label-variant(@label-warning-bg);\n}\n\n.label-danger {\n .label-variant(@label-danger-bg);\n}\n","//\n// Badges\n// --------------------------------------------------\n\n\n// Base classes\n.badge {\n display: inline-block;\n min-width: 10px;\n padding: 3px 7px;\n font-size: @font-size-small;\n font-weight: @badge-font-weight;\n color: @badge-color;\n line-height: @badge-line-height;\n vertical-align: baseline;\n white-space: nowrap;\n text-align: center;\n background-color: @badge-bg;\n border-radius: @badge-border-radius;\n\n // Empty badges collapse automatically (not available in IE8)\n &:empty {\n display: none;\n }\n\n // Quick fix for badges in buttons\n .btn & {\n position: relative;\n top: -1px;\n }\n .btn-xs & {\n top: 0;\n padding: 1px 5px;\n }\n}\n\n// Hover state, but only for links\na.badge {\n &:hover,\n &:focus {\n color: @badge-link-hover-color;\n text-decoration: none;\n cursor: pointer;\n }\n}\n\n// Account for counters in navs\na.list-group-item.active > .badge,\n.nav-pills > .active > a > .badge {\n color: @badge-active-color;\n background-color: @badge-active-bg;\n}\n.nav-pills > li > a > .badge {\n margin-left: 3px;\n}\n","//\n// Jumbotron\n// --------------------------------------------------\n\n\n.jumbotron {\n padding: @jumbotron-padding;\n margin-bottom: @jumbotron-padding;\n color: @jumbotron-color;\n background-color: @jumbotron-bg;\n\n h1,\n .h1 {\n color: @jumbotron-heading-color;\n }\n p {\n margin-bottom: (@jumbotron-padding / 2);\n font-size: @jumbotron-font-size;\n font-weight: 200;\n }\n\n .container & {\n border-radius: @border-radius-large; // Only round corners at higher resolutions if contained in a container\n }\n\n .container {\n max-width: 100%;\n }\n\n @media screen and (min-width: @screen-sm-min) {\n padding-top: (@jumbotron-padding * 1.6);\n padding-bottom: (@jumbotron-padding * 1.6);\n\n .container & {\n padding-left: (@jumbotron-padding * 2);\n padding-right: (@jumbotron-padding * 2);\n }\n\n h1,\n .h1 {\n font-size: (@font-size-base * 4.5);\n }\n }\n}\n","//\n// Thumbnails\n// --------------------------------------------------\n\n\n// Mixin and adjust the regular image class\n.thumbnail {\n display: block;\n padding: @thumbnail-padding;\n margin-bottom: @line-height-computed;\n line-height: @line-height-base;\n background-color: @thumbnail-bg;\n border: 1px solid @thumbnail-border;\n border-radius: @thumbnail-border-radius;\n .transition(all .2s ease-in-out);\n\n > img,\n a > img {\n .img-responsive();\n margin-left: auto;\n margin-right: auto;\n }\n\n // Add a hover state for linked versions only\n a&:hover,\n a&:focus,\n a&.active {\n border-color: @link-color;\n }\n\n // Image captions\n .caption {\n padding: @thumbnail-caption-padding;\n color: @thumbnail-caption-color;\n }\n}\n","//\n// Alerts\n// --------------------------------------------------\n\n\n// Base styles\n// -------------------------\n\n.alert {\n padding: @alert-padding;\n margin-bottom: @line-height-computed;\n border: 1px solid transparent;\n border-radius: @alert-border-radius;\n\n // Headings for larger alerts\n h4 {\n margin-top: 0;\n // Specified for the h4 to prevent conflicts of changing @headings-color\n color: inherit;\n }\n // Provide class for links that match alerts\n .alert-link {\n font-weight: @alert-link-font-weight;\n }\n\n // Improve alignment and spacing of inner content\n > p,\n > ul {\n margin-bottom: 0;\n }\n > p + p {\n margin-top: 5px;\n }\n}\n\n// Dismissable alerts\n//\n// Expand the right padding and account for the close button's positioning.\n\n.alert-dismissable {\n padding-right: (@alert-padding + 20);\n\n // Adjust close link position\n .close {\n position: relative;\n top: -2px;\n right: -21px;\n color: inherit;\n }\n}\n\n// Alternate styles\n//\n// Generate contextual modifier classes for colorizing the alert.\n\n.alert-success {\n .alert-variant(@alert-success-bg; @alert-success-border; @alert-success-text);\n}\n.alert-info {\n .alert-variant(@alert-info-bg; @alert-info-border; @alert-info-text);\n}\n.alert-warning {\n .alert-variant(@alert-warning-bg; @alert-warning-border; @alert-warning-text);\n}\n.alert-danger {\n .alert-variant(@alert-danger-bg; @alert-danger-border; @alert-danger-text);\n}\n","//\n// Progress bars\n// --------------------------------------------------\n\n\n// Bar animations\n// -------------------------\n\n// WebKit\n@-webkit-keyframes progress-bar-stripes {\n from { background-position: 40px 0; }\n to { background-position: 0 0; }\n}\n\n// Spec and IE10+\n@keyframes progress-bar-stripes {\n from { background-position: 40px 0; }\n to { background-position: 0 0; }\n}\n\n\n\n// Bar itself\n// -------------------------\n\n// Outer container\n.progress {\n overflow: hidden;\n height: @line-height-computed;\n margin-bottom: @line-height-computed;\n background-color: @progress-bg;\n border-radius: @border-radius-base;\n .box-shadow(inset 0 1px 2px rgba(0,0,0,.1));\n}\n\n// Bar of progress\n.progress-bar {\n float: left;\n width: 0%;\n height: 100%;\n font-size: @font-size-small;\n line-height: @line-height-computed;\n color: @progress-bar-color;\n text-align: center;\n background-color: @progress-bar-bg;\n .box-shadow(inset 0 -1px 0 rgba(0,0,0,.15));\n .transition(width .6s ease);\n}\n\n// Striped bars\n.progress-striped .progress-bar {\n #gradient > .striped();\n background-size: 40px 40px;\n}\n\n// Call animation for the active one\n.progress.active .progress-bar {\n .animation(progress-bar-stripes 2s linear infinite);\n}\n\n\n\n// Variations\n// -------------------------\n\n.progress-bar-success {\n .progress-bar-variant(@progress-bar-success-bg);\n}\n\n.progress-bar-info {\n .progress-bar-variant(@progress-bar-info-bg);\n}\n\n.progress-bar-warning {\n .progress-bar-variant(@progress-bar-warning-bg);\n}\n\n.progress-bar-danger {\n .progress-bar-variant(@progress-bar-danger-bg);\n}\n","// Media objects\n// Source: http://stubbornella.org/content/?p=497\n// --------------------------------------------------\n\n\n// Common styles\n// -------------------------\n\n// Clear the floats\n.media,\n.media-body {\n overflow: hidden;\n zoom: 1;\n}\n\n// Proper spacing between instances of .media\n.media,\n.media .media {\n margin-top: 15px;\n}\n.media:first-child {\n margin-top: 0;\n}\n\n// For images and videos, set to block\n.media-object {\n display: block;\n}\n\n// Reset margins on headings for tighter default spacing\n.media-heading {\n margin: 0 0 5px;\n}\n\n\n// Media image alignment\n// -------------------------\n\n.media {\n > .pull-left {\n margin-right: 10px;\n }\n > .pull-right {\n margin-left: 10px;\n }\n}\n\n\n// Media list variation\n// -------------------------\n\n// Undo default ul/ol styles\n.media-list {\n padding-left: 0;\n list-style: none;\n}\n","//\n// List groups\n// --------------------------------------------------\n\n\n// Base class\n//\n// Easily usable on <ul>, <ol>, or <div>.\n\n.list-group {\n // No need to set list-style: none; since .list-group-item is block level\n margin-bottom: 20px;\n padding-left: 0; // reset padding because ul and ol\n}\n\n\n// Individual list items\n//\n// Use on `li`s or `div`s within the `.list-group` parent.\n\n.list-group-item {\n position: relative;\n display: block;\n padding: 10px 15px;\n // Place the border on the list items and negative margin up for better styling\n margin-bottom: -1px;\n background-color: @list-group-bg;\n border: 1px solid @list-group-border;\n\n // Round the first and last items\n &:first-child {\n .border-top-radius(@list-group-border-radius);\n }\n &:last-child {\n margin-bottom: 0;\n .border-bottom-radius(@list-group-border-radius);\n }\n\n // Align badges within list items\n > .badge {\n float: right;\n }\n > .badge + .badge {\n margin-right: 5px;\n }\n}\n\n\n// Linked list items\n//\n// Use anchor elements instead of `li`s or `div`s to create linked list items.\n// Includes an extra `.active` modifier class for showing selected items.\n\na.list-group-item {\n color: @list-group-link-color;\n\n .list-group-item-heading {\n color: @list-group-link-heading-color;\n }\n\n // Hover state\n &:hover,\n &:focus {\n text-decoration: none;\n background-color: @list-group-hover-bg;\n }\n\n // Active class on item itself, not parent\n &.active,\n &.active:hover,\n &.active:focus {\n z-index: 2; // Place active items above their siblings for proper border styling\n color: @list-group-active-color;\n background-color: @list-group-active-bg;\n border-color: @list-group-active-border;\n\n // Force color to inherit for custom content\n .list-group-item-heading {\n color: inherit;\n }\n .list-group-item-text {\n color: @list-group-active-text-color;\n }\n }\n}\n\n\n// Contextual variants\n//\n// Add modifier classes to change text and background color on individual items.\n// Organizationally, this must come after the `:hover` states.\n\n.list-group-item-variant(success; @state-success-bg; @state-success-text);\n.list-group-item-variant(info; @state-info-bg; @state-info-text);\n.list-group-item-variant(warning; @state-warning-bg; @state-warning-text);\n.list-group-item-variant(danger; @state-danger-bg; @state-danger-text);\n\n\n// Custom content options\n//\n// Extra classes for creating well-formatted content within `.list-group-item`s.\n\n.list-group-item-heading {\n margin-top: 0;\n margin-bottom: 5px;\n}\n.list-group-item-text {\n margin-bottom: 0;\n line-height: 1.3;\n}\n","//\n// Panels\n// --------------------------------------------------\n\n\n// Base class\n.panel {\n margin-bottom: @line-height-computed;\n background-color: @panel-bg;\n border: 1px solid transparent;\n border-radius: @panel-border-radius;\n .box-shadow(0 1px 1px rgba(0,0,0,.05));\n}\n\n// Panel contents\n.panel-body {\n padding: @panel-body-padding;\n &:extend(.clearfix all);\n}\n\n\n// List groups in panels\n//\n// By default, space out list group content from panel headings to account for\n// any kind of custom content between the two.\n\n.panel {\n > .list-group {\n margin-bottom: 0;\n .list-group-item {\n border-width: 1px 0;\n border-radius: 0;\n &:first-child {\n border-top: 0;\n }\n &:last-child {\n border-bottom: 0;\n }\n }\n // Add border top radius for first one\n &:first-child {\n .list-group-item:first-child {\n .border-top-radius((@panel-border-radius - 1));\n }\n }\n // Add border bottom radius for last one\n &:last-child {\n .list-group-item:last-child {\n .border-bottom-radius((@panel-border-radius - 1));\n }\n }\n }\n}\n// Collapse space between when there's no additional content.\n.panel-heading + .list-group {\n .list-group-item:first-child {\n border-top-width: 0;\n }\n}\n\n\n// Tables in panels\n//\n// Place a non-bordered `.table` within a panel (not within a `.panel-body`) and\n// watch it go full width.\n\n.panel {\n > .table,\n > .table-responsive > .table {\n margin-bottom: 0;\n }\n // Add border top radius for first one\n > .table:first-child,\n > .table-responsive:first-child > .table:first-child {\n > thead:first-child,\n > tbody:first-child {\n > tr:first-child {\n td:first-child,\n th:first-child {\n border-top-left-radius: (@panel-border-radius - 1);\n }\n td:last-child,\n th:last-child {\n border-top-right-radius: (@panel-border-radius - 1);\n }\n }\n }\n }\n // Add border bottom radius for last one\n > .table:last-child,\n > .table-responsive:last-child > .table:last-child {\n > tbody:last-child,\n > tfoot:last-child {\n > tr:last-child {\n td:first-child,\n th:first-child {\n border-bottom-left-radius: (@panel-border-radius - 1);\n }\n td:last-child,\n th:last-child {\n border-bottom-right-radius: (@panel-border-radius - 1);\n }\n }\n }\n }\n > .panel-body + .table,\n > .panel-body + .table-responsive {\n border-top: 1px solid @table-border-color;\n }\n > .table > tbody:first-child > tr:first-child th,\n > .table > tbody:first-child > tr:first-child td {\n border-top: 0;\n }\n > .table-bordered,\n > .table-responsive > .table-bordered {\n border: 0;\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th:first-child,\n > td:first-child {\n border-left: 0;\n }\n > th:last-child,\n > td:last-child {\n border-right: 0;\n }\n &:first-child > th,\n &:first-child > td {\n border-top: 0;\n }\n &:last-child > th,\n &:last-child > td {\n border-bottom: 0;\n }\n }\n }\n }\n > .table-responsive {\n border: 0;\n margin-bottom: 0;\n }\n}\n\n\n// Optional heading\n.panel-heading {\n padding: 10px 15px;\n border-bottom: 1px solid transparent;\n .border-top-radius((@panel-border-radius - 1));\n\n > .dropdown .dropdown-toggle {\n color: inherit;\n }\n}\n\n// Within heading, strip any `h*` tag of its default margins for spacing.\n.panel-title {\n margin-top: 0;\n margin-bottom: 0;\n font-size: ceil((@font-size-base * 1.125));\n color: inherit;\n\n > a {\n color: inherit;\n }\n}\n\n// Optional footer (stays gray in every modifier class)\n.panel-footer {\n padding: 10px 15px;\n background-color: @panel-footer-bg;\n border-top: 1px solid @panel-inner-border;\n .border-bottom-radius((@panel-border-radius - 1));\n}\n\n\n// Collapsable panels (aka, accordion)\n//\n// Wrap a series of panels in `.panel-group` to turn them into an accordion with\n// the help of our collapse JavaScript plugin.\n\n.panel-group {\n margin-bottom: @line-height-computed;\n\n // Tighten up margin so it's only between panels\n .panel {\n margin-bottom: 0;\n border-radius: @panel-border-radius;\n overflow: hidden; // crop contents when collapsed\n + .panel {\n margin-top: 5px;\n }\n }\n\n .panel-heading {\n border-bottom: 0;\n + .panel-collapse .panel-body {\n border-top: 1px solid @panel-inner-border;\n }\n }\n .panel-footer {\n border-top: 0;\n + .panel-collapse .panel-body {\n border-bottom: 1px solid @panel-inner-border;\n }\n }\n}\n\n\n// Contextual variations\n.panel-default {\n .panel-variant(@panel-default-border; @panel-default-text; @panel-default-heading-bg; @panel-default-border);\n}\n.panel-primary {\n .panel-variant(@panel-primary-border; @panel-primary-text; @panel-primary-heading-bg; @panel-primary-border);\n}\n.panel-success {\n .panel-variant(@panel-success-border; @panel-success-text; @panel-success-heading-bg; @panel-success-border);\n}\n.panel-info {\n .panel-variant(@panel-info-border; @panel-info-text; @panel-info-heading-bg; @panel-info-border);\n}\n.panel-warning {\n .panel-variant(@panel-warning-border; @panel-warning-text; @panel-warning-heading-bg; @panel-warning-border);\n}\n.panel-danger {\n .panel-variant(@panel-danger-border; @panel-danger-text; @panel-danger-heading-bg; @panel-danger-border);\n}\n","//\n// Wells\n// --------------------------------------------------\n\n\n// Base class\n.well {\n min-height: 20px;\n padding: 19px;\n margin-bottom: 20px;\n background-color: @well-bg;\n border: 1px solid @well-border;\n border-radius: @border-radius-base;\n .box-shadow(inset 0 1px 1px rgba(0,0,0,.05));\n blockquote {\n border-color: #ddd;\n border-color: rgba(0,0,0,.15);\n }\n}\n\n// Sizes\n.well-lg {\n padding: 24px;\n border-radius: @border-radius-large;\n}\n.well-sm {\n padding: 9px;\n border-radius: @border-radius-small;\n}\n","//\n// Close icons\n// --------------------------------------------------\n\n\n.close {\n float: right;\n font-size: (@font-size-base * 1.5);\n font-weight: @close-font-weight;\n line-height: 1;\n color: @close-color;\n text-shadow: @close-text-shadow;\n .opacity(.2);\n\n &:hover,\n &:focus {\n color: @close-color;\n text-decoration: none;\n cursor: pointer;\n .opacity(.5);\n }\n\n // Additional properties for button version\n // iOS requires the button element instead of an anchor tag.\n // If you want the anchor version, it requires `href=\"#\"`.\n button& {\n padding: 0;\n cursor: pointer;\n background: transparent;\n border: 0;\n -webkit-appearance: none;\n }\n}\n","//\n// Modals\n// --------------------------------------------------\n\n// .modal-open - body class for killing the scroll\n// .modal - container to scroll within\n// .modal-dialog - positioning shell for the actual modal\n// .modal-content - actual modal w/ bg and corners and shit\n\n// Kill the scroll on the body\n.modal-open {\n overflow: hidden;\n}\n\n// Container that the modal scrolls within\n.modal {\n display: none;\n overflow: auto;\n overflow-y: scroll;\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: @zindex-modal;\n -webkit-overflow-scrolling: touch;\n\n // Prevent Chrome on Windows from adding a focus outline. For details, see\n // https://github.com/twbs/bootstrap/pull/10951.\n outline: 0;\n\n // When fading in the modal, animate it to slide down\n &.fade .modal-dialog {\n .translate(0, -25%);\n .transition-transform(~\"0.3s ease-out\");\n }\n &.in .modal-dialog { .translate(0, 0)}\n}\n\n// Shell div to position the modal with bottom padding\n.modal-dialog {\n position: relative;\n width: auto;\n margin: 10px;\n}\n\n// Actual modal\n.modal-content {\n position: relative;\n background-color: @modal-content-bg;\n border: 1px solid @modal-content-fallback-border-color; //old browsers fallback (ie8 etc)\n border: 1px solid @modal-content-border-color;\n border-radius: @border-radius-large;\n .box-shadow(0 3px 9px rgba(0,0,0,.5));\n background-clip: padding-box;\n // Remove focus outline from opened modal\n outline: none;\n}\n\n// Modal background\n.modal-backdrop {\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: @zindex-modal-background;\n background-color: @modal-backdrop-bg;\n // Fade for backdrop\n &.fade { .opacity(0); }\n &.in { .opacity(@modal-backdrop-opacity); }\n}\n\n// Modal header\n// Top section of the modal w/ title and dismiss\n.modal-header {\n padding: @modal-title-padding;\n border-bottom: 1px solid @modal-header-border-color;\n min-height: (@modal-title-padding + @modal-title-line-height);\n}\n// Close icon\n.modal-header .close {\n margin-top: -2px;\n}\n\n// Title text within header\n.modal-title {\n margin: 0;\n line-height: @modal-title-line-height;\n}\n\n// Modal body\n// Where all modal content resides (sibling of .modal-header and .modal-footer)\n.modal-body {\n position: relative;\n padding: @modal-inner-padding;\n}\n\n// Footer (for actions)\n.modal-footer {\n margin-top: 15px;\n padding: (@modal-inner-padding - 1) @modal-inner-padding @modal-inner-padding;\n text-align: right; // right align buttons\n border-top: 1px solid @modal-footer-border-color;\n &:extend(.clearfix all); // clear it in case folks use .pull-* classes on buttons\n\n // Properly space out buttons\n .btn + .btn {\n margin-left: 5px;\n margin-bottom: 0; // account for input[type=\"submit\"] which gets the bottom margin like all other inputs\n }\n // but override that for button groups\n .btn-group .btn + .btn {\n margin-left: -1px;\n }\n // and override it for block buttons as well\n .btn-block + .btn-block {\n margin-left: 0;\n }\n}\n\n// Scale up the modal\n@media (min-width: @screen-sm-min) {\n\n // Automatically set modal's width for larger viewports\n .modal-dialog {\n width: @modal-md;\n margin: 30px auto;\n }\n .modal-content {\n .box-shadow(0 5px 15px rgba(0,0,0,.5));\n }\n\n // Modal sizes\n .modal-sm { width: @modal-sm; }\n .modal-lg { width: @modal-lg; }\n\n}\n","//\n// Tooltips\n// --------------------------------------------------\n\n\n// Base class\n.tooltip {\n position: absolute;\n z-index: @zindex-tooltip;\n display: block;\n visibility: visible;\n font-size: @font-size-small;\n line-height: 1.4;\n .opacity(0);\n\n &.in { .opacity(@tooltip-opacity); }\n &.top { margin-top: -3px; padding: @tooltip-arrow-width 0; }\n &.right { margin-left: 3px; padding: 0 @tooltip-arrow-width; }\n &.bottom { margin-top: 3px; padding: @tooltip-arrow-width 0; }\n &.left { margin-left: -3px; padding: 0 @tooltip-arrow-width; }\n}\n\n// Wrapper for the tooltip content\n.tooltip-inner {\n max-width: @tooltip-max-width;\n padding: 3px 8px;\n color: @tooltip-color;\n text-align: center;\n text-decoration: none;\n background-color: @tooltip-bg;\n border-radius: @border-radius-base;\n}\n\n// Arrows\n.tooltip-arrow {\n position: absolute;\n width: 0;\n height: 0;\n border-color: transparent;\n border-style: solid;\n}\n.tooltip {\n &.top .tooltip-arrow {\n bottom: 0;\n left: 50%;\n margin-left: -@tooltip-arrow-width;\n border-width: @tooltip-arrow-width @tooltip-arrow-width 0;\n border-top-color: @tooltip-arrow-color;\n }\n &.top-left .tooltip-arrow {\n bottom: 0;\n left: @tooltip-arrow-width;\n border-width: @tooltip-arrow-width @tooltip-arrow-width 0;\n border-top-color: @tooltip-arrow-color;\n }\n &.top-right .tooltip-arrow {\n bottom: 0;\n right: @tooltip-arrow-width;\n border-width: @tooltip-arrow-width @tooltip-arrow-width 0;\n border-top-color: @tooltip-arrow-color;\n }\n &.right .tooltip-arrow {\n top: 50%;\n left: 0;\n margin-top: -@tooltip-arrow-width;\n border-width: @tooltip-arrow-width @tooltip-arrow-width @tooltip-arrow-width 0;\n border-right-color: @tooltip-arrow-color;\n }\n &.left .tooltip-arrow {\n top: 50%;\n right: 0;\n margin-top: -@tooltip-arrow-width;\n border-width: @tooltip-arrow-width 0 @tooltip-arrow-width @tooltip-arrow-width;\n border-left-color: @tooltip-arrow-color;\n }\n &.bottom .tooltip-arrow {\n top: 0;\n left: 50%;\n margin-left: -@tooltip-arrow-width;\n border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;\n border-bottom-color: @tooltip-arrow-color;\n }\n &.bottom-left .tooltip-arrow {\n top: 0;\n left: @tooltip-arrow-width;\n border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;\n border-bottom-color: @tooltip-arrow-color;\n }\n &.bottom-right .tooltip-arrow {\n top: 0;\n right: @tooltip-arrow-width;\n border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;\n border-bottom-color: @tooltip-arrow-color;\n }\n}\n","//\n// Popovers\n// --------------------------------------------------\n\n\n.popover {\n position: absolute;\n top: 0;\n left: 0;\n z-index: @zindex-popover;\n display: none;\n max-width: @popover-max-width;\n padding: 1px;\n text-align: left; // Reset given new insertion method\n background-color: @popover-bg;\n background-clip: padding-box;\n border: 1px solid @popover-fallback-border-color;\n border: 1px solid @popover-border-color;\n border-radius: @border-radius-large;\n .box-shadow(0 5px 10px rgba(0,0,0,.2));\n\n // Overrides for proper insertion\n white-space: normal;\n\n // Offset the popover to account for the popover arrow\n &.top { margin-top: -10px; }\n &.right { margin-left: 10px; }\n &.bottom { margin-top: 10px; }\n &.left { margin-left: -10px; }\n}\n\n.popover-title {\n margin: 0; // reset heading margin\n padding: 8px 14px;\n font-size: @font-size-base;\n font-weight: normal;\n line-height: 18px;\n background-color: @popover-title-bg;\n border-bottom: 1px solid darken(@popover-title-bg, 5%);\n border-radius: 5px 5px 0 0;\n}\n\n.popover-content {\n padding: 9px 14px;\n}\n\n// Arrows\n//\n// .arrow is outer, .arrow:after is inner\n\n.popover .arrow {\n &,\n &:after {\n position: absolute;\n display: block;\n width: 0;\n height: 0;\n border-color: transparent;\n border-style: solid;\n }\n}\n.popover .arrow {\n border-width: @popover-arrow-outer-width;\n}\n.popover .arrow:after {\n border-width: @popover-arrow-width;\n content: \"\";\n}\n\n.popover {\n &.top .arrow {\n left: 50%;\n margin-left: -@popover-arrow-outer-width;\n border-bottom-width: 0;\n border-top-color: @popover-arrow-outer-fallback-color; // IE8 fallback\n border-top-color: @popover-arrow-outer-color;\n bottom: -@popover-arrow-outer-width;\n &:after {\n content: \" \";\n bottom: 1px;\n margin-left: -@popover-arrow-width;\n border-bottom-width: 0;\n border-top-color: @popover-arrow-color;\n }\n }\n &.right .arrow {\n top: 50%;\n left: -@popover-arrow-outer-width;\n margin-top: -@popover-arrow-outer-width;\n border-left-width: 0;\n border-right-color: @popover-arrow-outer-fallback-color; // IE8 fallback\n border-right-color: @popover-arrow-outer-color;\n &:after {\n content: \" \";\n left: 1px;\n bottom: -@popover-arrow-width;\n border-left-width: 0;\n border-right-color: @popover-arrow-color;\n }\n }\n &.bottom .arrow {\n left: 50%;\n margin-left: -@popover-arrow-outer-width;\n border-top-width: 0;\n border-bottom-color: @popover-arrow-outer-fallback-color; // IE8 fallback\n border-bottom-color: @popover-arrow-outer-color;\n top: -@popover-arrow-outer-width;\n &:after {\n content: \" \";\n top: 1px;\n margin-left: -@popover-arrow-width;\n border-top-width: 0;\n border-bottom-color: @popover-arrow-color;\n }\n }\n\n &.left .arrow {\n top: 50%;\n right: -@popover-arrow-outer-width;\n margin-top: -@popover-arrow-outer-width;\n border-right-width: 0;\n border-left-color: @popover-arrow-outer-fallback-color; // IE8 fallback\n border-left-color: @popover-arrow-outer-color;\n &:after {\n content: \" \";\n right: 1px;\n border-right-width: 0;\n border-left-color: @popover-arrow-color;\n bottom: -@popover-arrow-width;\n }\n }\n\n}\n","//\n// Carousel\n// --------------------------------------------------\n\n\n// Wrapper for the slide container and indicators\n.carousel {\n position: relative;\n}\n\n.carousel-inner {\n position: relative;\n overflow: hidden;\n width: 100%;\n\n > .item {\n display: none;\n position: relative;\n .transition(.6s ease-in-out left);\n\n // Account for jankitude on images\n > img,\n > a > img {\n .img-responsive();\n line-height: 1;\n }\n }\n\n > .active,\n > .next,\n > .prev { display: block; }\n\n > .active {\n left: 0;\n }\n\n > .next,\n > .prev {\n position: absolute;\n top: 0;\n width: 100%;\n }\n\n > .next {\n left: 100%;\n }\n > .prev {\n left: -100%;\n }\n > .next.left,\n > .prev.right {\n left: 0;\n }\n\n > .active.left {\n left: -100%;\n }\n > .active.right {\n left: 100%;\n }\n\n}\n\n// Left/right controls for nav\n// ---------------------------\n\n.carousel-control {\n position: absolute;\n top: 0;\n left: 0;\n bottom: 0;\n width: @carousel-control-width;\n .opacity(@carousel-control-opacity);\n font-size: @carousel-control-font-size;\n color: @carousel-control-color;\n text-align: center;\n text-shadow: @carousel-text-shadow;\n // We can't have this transition here because WebKit cancels the carousel\n // animation if you trip this while in the middle of another animation.\n\n // Set gradients for backgrounds\n &.left {\n #gradient > .horizontal(@start-color: rgba(0,0,0,.5); @end-color: rgba(0,0,0,.0001));\n }\n &.right {\n left: auto;\n right: 0;\n #gradient > .horizontal(@start-color: rgba(0,0,0,.0001); @end-color: rgba(0,0,0,.5));\n }\n\n // Hover/focus state\n &:hover,\n &:focus {\n outline: none;\n color: @carousel-control-color;\n text-decoration: none;\n .opacity(.9);\n }\n\n // Toggles\n .icon-prev,\n .icon-next,\n .glyphicon-chevron-left,\n .glyphicon-chevron-right {\n position: absolute;\n top: 50%;\n z-index: 5;\n display: inline-block;\n }\n .icon-prev,\n .glyphicon-chevron-left {\n left: 50%;\n }\n .icon-next,\n .glyphicon-chevron-right {\n right: 50%;\n }\n .icon-prev,\n .icon-next {\n width: 20px;\n height: 20px;\n margin-top: -10px;\n margin-left: -10px;\n font-family: serif;\n }\n\n .icon-prev {\n &:before {\n content: '\\2039';// SINGLE LEFT-POINTING ANGLE QUOTATION MARK (U+2039)\n }\n }\n .icon-next {\n &:before {\n content: '\\203a';// SINGLE RIGHT-POINTING ANGLE QUOTATION MARK (U+203A)\n }\n }\n}\n\n// Optional indicator pips\n//\n// Add an unordered list with the following class and add a list item for each\n// slide your carousel holds.\n\n.carousel-indicators {\n position: absolute;\n bottom: 10px;\n left: 50%;\n z-index: 15;\n width: 60%;\n margin-left: -30%;\n padding-left: 0;\n list-style: none;\n text-align: center;\n\n li {\n display: inline-block;\n width: 10px;\n height: 10px;\n margin: 1px;\n text-indent: -999px;\n border: 1px solid @carousel-indicator-border-color;\n border-radius: 10px;\n cursor: pointer;\n\n // IE8-9 hack for event handling\n //\n // Internet Explorer 8-9 does not support clicks on elements without a set\n // `background-color`. We cannot use `filter` since that's not viewed as a\n // background color by the browser. Thus, a hack is needed.\n //\n // For IE8, we set solid black as it doesn't support `rgba()`. For IE9, we\n // set alpha transparency for the best results possible.\n background-color: #000 \\9; // IE8\n background-color: rgba(0,0,0,0); // IE9\n }\n .active {\n margin: 0;\n width: 12px;\n height: 12px;\n background-color: @carousel-indicator-active-bg;\n }\n}\n\n// Optional captions\n// -----------------------------\n// Hidden by default for smaller viewports\n.carousel-caption {\n position: absolute;\n left: 15%;\n right: 15%;\n bottom: 20px;\n z-index: 10;\n padding-top: 20px;\n padding-bottom: 20px;\n color: @carousel-caption-color;\n text-align: center;\n text-shadow: @carousel-text-shadow;\n & .btn {\n text-shadow: none; // No shadow for button elements in carousel-caption\n }\n}\n\n\n// Scale up controls for tablets and up\n@media screen and (min-width: @screen-sm-min) {\n\n // Scale up the controls a smidge\n .carousel-control {\n .glyphicons-chevron-left,\n .glyphicons-chevron-right,\n .icon-prev,\n .icon-next {\n width: 30px;\n height: 30px;\n margin-top: -15px;\n margin-left: -15px;\n font-size: 30px;\n }\n }\n\n // Show and left align the captions\n .carousel-caption {\n left: 20%;\n right: 20%;\n padding-bottom: 30px;\n }\n\n // Move up the indicators\n .carousel-indicators {\n bottom: 20px;\n }\n}\n","//\n// Responsive: Utility classes\n// --------------------------------------------------\n\n\n// IE10 in Windows (Phone) 8\n//\n// Support for responsive views via media queries is kind of borked in IE10, for\n// Surface/desktop in split view and for Windows Phone 8. This particular fix\n// must be accompanied by a snippet of JavaScript to sniff the user agent and\n// apply some conditional CSS to *only* the Surface/desktop Windows 8. Look at\n// our Getting Started page for more information on this bug.\n//\n// For more information, see the following:\n//\n// Issue: https://github.com/twbs/bootstrap/issues/10497\n// Docs: http://getbootstrap.com/getting-started/#browsers\n// Source: http://timkadlec.com/2012/10/ie10-snap-mode-and-responsive-design/\n\n@-ms-viewport {\n width: device-width;\n}\n\n\n// Visibility utilities\n.visible-xs {\n .responsive-invisibility();\n\n @media (max-width: @screen-xs-max) {\n .responsive-visibility();\n }\n}\n.visible-sm {\n .responsive-invisibility();\n\n @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n .responsive-visibility();\n }\n}\n.visible-md {\n .responsive-invisibility();\n\n @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n .responsive-visibility();\n }\n}\n.visible-lg {\n .responsive-invisibility();\n\n @media (min-width: @screen-lg-min) {\n .responsive-visibility();\n }\n}\n\n.hidden-xs {\n @media (max-width: @screen-xs-max) {\n .responsive-invisibility();\n }\n}\n.hidden-sm {\n @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n .responsive-invisibility();\n }\n}\n.hidden-md {\n @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n .responsive-invisibility();\n }\n}\n.hidden-lg {\n @media (min-width: @screen-lg-min) {\n .responsive-invisibility();\n }\n}\n\n\n// Print utilities\n//\n// Media queries are placed on the inside to be mixin-friendly.\n\n.visible-print {\n .responsive-invisibility();\n\n @media print {\n .responsive-visibility();\n }\n}\n\n.hidden-print {\n @media print {\n .responsive-invisibility();\n }\n}\n"]} |
|---|
| .. | .. |
|---|
| 1 | 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 |
|---|
| 2 | + * Bootstrap v3.1.0 (http://getbootstrap.com) |
|---|
| 3 | + * Copyright 2011-2014 Twitter, Inc. |
|---|
| 4 | + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) |
|---|
| 5 | 5 | */ |
|---|
| 6 | 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}} |
|---|
| 7 | +/*! normalize.css v3.0.0 | MIT License | git.io/normalize */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background:0 0}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}@media print{*{text-shadow:none!important;color:#000!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}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}}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}:before,:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size: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}figure{margin:0}img{vertical-align:middle}.img-responsive{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{padding:4px;line-height:1.428571429;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-family:inherit;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:400;line-height:1;color:#999}h1,.h1,h2,.h2,h3,.h3{margin-top:20px;margin-bottom:10px}h1 small,.h1 small,h2 small,.h2 small,h3 small,.h3 small,h1 .small,.h1 .small,h2 .small,.h2 .small,h3 .small,.h3 .small{font-size:65%}h4,.h4,h5,.h5,h6,.h6{margin-top:10px;margin-bottom:10px}h4 small,.h4 small,h5 small,.h5 small,h6 small,.h6 small,h4 .small,.h4 .small,h5 .small,.h5 .small,h6 .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-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-muted{color:#999}.text-primary{color:#428bca}a.text-primary:hover{color:#3071a9}.text-success{color:#3c763d}a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#428bca}a.bg-primary:hover{background-color:#3071a9}.bg-success{background-color:#dff0d8}a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:hover{background-color:#e4b9b9}.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-left:5px;padding-right: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:700}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}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;font-size:17.5px;border-left:5px solid #eee}blockquote p:last-child,blockquote ul:last-child,blockquote ol:last-child{margin-bottom:0}blockquote footer,blockquote small,blockquote .small{display:block;font-size:80%;line-height:1.428571429;color:#999}blockquote footer:before,blockquote small:before,blockquote .small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0;text-align:right}.blockquote-reverse footer:before,blockquote.pull-right footer:before,.blockquote-reverse small:before,blockquote.pull-right small:before,.blockquote-reverse .small:before,blockquote.pull-right .small:before{content:''}.blockquote-reverse footer:after,blockquote.pull-right footer:after,.blockquote-reverse small:after,blockquote.pull-right small:after,.blockquote-reverse .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;background-color:#f9f2f4;white-space:nowrap;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.428571429;word-break:break-all;word-wrap:break-word;color:#333;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{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}.row{margin-left:-15px;margin-right:-15px}.col-xs-1,.col-sm-1,.col-md-1,.col-lg-1,.col-xs-2,.col-sm-2,.col-md-2,.col-lg-2,.col-xs-3,.col-sm-3,.col-md-3,.col-lg-3,.col-xs-4,.col-sm-4,.col-md-4,.col-lg-4,.col-xs-5,.col-sm-5,.col-md-5,.col-lg-5,.col-xs-6,.col-sm-6,.col-md-6,.col-lg-6,.col-xs-7,.col-sm-7,.col-md-7,.col-lg-7,.col-xs-8,.col-sm-8,.col-md-8,.col-lg-8,.col-xs-9,.col-sm-9,.col-md-9,.col-lg-9,.col-xs-10,.col-sm-10,.col-md-10,.col-lg-10,.col-xs-11,.col-sm-11,.col-md-11,.col-lg-11,.col-xs-12,.col-sm-12,.col-md-12,.col-lg-12{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.col-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11,.col-xs-12{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.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;float:none;display:table-column}table td[class*=col-],table th[class*=col-]{position:static;float:none;display:table-cell}.table>thead>tr>td.active,.table>tbody>tr>td.active,.table>tfoot>tr>td.active,.table>thead>tr>th.active,.table>tbody>tr>th.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>tbody>tr.active>td,.table>tfoot>tr.active>td,.table>thead>tr.active>th,.table>tbody>tr.active>th,.table>tfoot>tr.active>th{background-color:#f5f5f5}.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover,.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th{background-color:#e8e8e8}.table>thead>tr>td.success,.table>tbody>tr>td.success,.table>tfoot>tr>td.success,.table>thead>tr>th.success,.table>tbody>tr>th.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>tbody>tr.success>td,.table>tfoot>tr.success>td,.table>thead>tr.success>th,.table>tbody>tr.success>th,.table>tfoot>tr.success>th{background-color:#dff0d8}.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover,.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th{background-color:#d0e9c6}.table>thead>tr>td.info,.table>tbody>tr>td.info,.table>tfoot>tr>td.info,.table>thead>tr>th.info,.table>tbody>tr>th.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>tbody>tr.info>td,.table>tfoot>tr.info>td,.table>thead>tr.info>th,.table>tbody>tr.info>th,.table>tfoot>tr.info>th{background-color:#d9edf7}.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover,.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th{background-color:#c4e3f3}.table>thead>tr>td.warning,.table>tbody>tr>td.warning,.table>tfoot>tr>td.warning,.table>thead>tr>th.warning,.table>tbody>tr>th.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>tbody>tr.warning>td,.table>tfoot>tr.warning>td,.table>thead>tr.warning>th,.table>tbody>tr.warning>th,.table>tfoot>tr.warning>th{background-color:#fcf8e3}.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover,.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th{background-color:#faf2cc}.table>thead>tr>td.danger,.table>tbody>tr>td.danger,.table>tfoot>tr>td.danger,.table>thead>tr>th.danger,.table>tbody>tr>th.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>tbody>tr.danger>td,.table>tfoot>tr.danger>td,.table>thead>tr.danger>th,.table>tbody>tr.danger>th,.table>tfoot>tr.danger>th{background-color:#f2dede}.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover,.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th{background-color:#ebcccc}@media (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;overflow-x:scroll;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd;-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;min-width: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:700}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}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}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}output{display:block;padding-top:7px;font-size:14px;line-height:1.428571429;color:#555}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.428571429;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(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,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.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;opacity:1}textarea.form-control{height:auto}input[type=date]{line-height:34px}.form-group{margin-bottom:15px}.radio,.checkbox{display:block;min-height:20px;margin-top:10px;margin-bottom:10px;padding-left:20px}.radio label,.checkbox label{display:inline;font-weight:400;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;vertical-align:middle;font-weight:400;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,select[multiple].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,select[multiple].input-lg{height:auto}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.has-feedback .form-control-feedback{position:absolute;top:25px;right:0;display:block;width:34px;height:34px;line-height:34px;text-align:center}.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,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;border-color:#3c763d;background-color:#dff0d8}.has-success .form-control-feedback{color:#3c763d}.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,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;border-color:#8a6d3b;background-color:#fcf8e3}.has-warning .form-control-feedback{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,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;border-color:#a94442;background-color:#f2dede}.has-error .form-control-feedback{color:#a94442}.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;width:auto;vertical-align:middle}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .radio,.form-inline .checkbox{display:inline-block;margin-top:0;margin-bottom:0;padding-left:0;vertical-align:middle}.form-inline .radio input[type=radio],.form-inline .checkbox input[type=checkbox]{float:none;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .control-label,.form-horizontal .radio,.form-horizontal .checkbox,.form-horizontal .radio-inline,.form-horizontal .checkbox-inline{margin-top:0;margin-bottom:0;padding-top:7px}.form-horizontal .radio,.form-horizontal .checkbox{min-height:27px}.form-horizontal .form-group{margin-left:-15px;margin-right:-15px}.form-horizontal .form-control-static{padding-top:7px}@media (min-width:768px){.form-horizontal .control-label{text-align:right}}.form-horizontal .has-feedback .form-control-feedback{top:0;right:15px}.btn{display:inline-block;margin-bottom:0;font-weight:400;text-align:center;vertical-align:middle;cursor:pointer;background-image:none;border:1px solid transparent;white-space:nowrap;padding:6px 12px;font-size:14px;line-height:1.428571429;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{outline:0;background-image:none;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;pointer-events:none;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:#333}.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-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-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-link{color:#428bca;font-weight:400;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-left:0;padding-right: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';font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.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;list-style:none;font-size:14px;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(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:400;line-height:1.428571429;color:#333;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{text-decoration:none;color:#262626;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;outline:0;background-color:#428bca}.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;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);cursor:not-allowed}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{left:auto;right:0}.dropdown-menu-left{left:0;right:auto}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.428571429;color:#999}.dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top: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{left:auto;right:0}.navbar-right .dropdown-menu-left{left:0;right: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{margin-left:-5px}.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-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-bottom-right-radius:0;border-top-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-bottom-right-radius:0;border-top-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-left:8px;padding-right:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-left:12px;padding-right:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(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>.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-bottom-left-radius:4px;border-top-right-radius:0;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:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-right-radius:0;border-top-left-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{float:none;display:table-cell;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-left:0;padding-right:0}.input-group .form-control{float:left;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,select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].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,select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].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:400;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>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group-btn:last-child>.btn-group:not(:last-child)>.btn{border-bottom-right-radius:0;border-top-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>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:first-child>.btn-group:not(:first-child)>.btn{border-bottom-left-radius:0;border-top-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:hover,.input-group-btn>.btn:focus,.input-group-btn>.btn:active{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{margin-left:-1px}.nav{margin-bottom:0;padding-left:0;list-style:none}.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;background-color:transparent;cursor:not-allowed}.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;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{text-align:center;margin-bottom:5px}.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{text-align:center;margin-bottom:5px}.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}@media (min-width:768px){.navbar{border-radius:4px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{max-height:340px;overflow-x:visible;padding-right:15px;padding-left:15px;border-top:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,.1);-webkit-overflow-scrolling:touch}.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-left:0;padding-right:0}}.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.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;font-size:18px;line-height:20px;height:20px}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;margin-right:15px;padding:9px 10px;margin-top:8px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.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{margin-left:-15px;margin-right:-15px;padding:10px 15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);margin-top:8px;margin-bottom:8px}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .radio,.navbar-form .checkbox{display:inline-block;margin-top:0;margin-bottom:0;padding-left:0;vertical-align:middle}.navbar-form .radio input[type=radio],.navbar-form .checkbox input[type=checkbox]{float:none;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}}@media (min-width:768px){.navbar-form{width:auto;border:0;margin-left:0;margin-right:0;padding-top:0;padding-bottom: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-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-left:15px;margin-right: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:#888}.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{background-color:#e7e7e7;color:#555}@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{background-color:#080808;color:#fff}@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{content:"/\00a0";padding:0 5px;color:#ccc}.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;line-height:1.428571429;text-decoration:none;color:#428bca;background-color:#fff;border:1px solid #ddd;margin-left:-1px}.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-bottom-right-radius:4px;border-top-right-radius:4px}.pagination>li>a:hover,.pagination>li>span:hover,.pagination>li>a:focus,.pagination>li>span:focus{color:#2a6496;background-color:#eee;border-color:#ddd}.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;background-color:#428bca;border-color:#428bca;cursor:default}.pagination>.disabled>span,.pagination>.disabled>span:hover,.pagination>.disabled>span:focus,.pagination>.disabled>a,.pagination>.disabled>a:hover,.pagination>.disabled>a:focus{color:#999;background-color:#fff;border-color:#ddd;cursor:not-allowed}.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-bottom-right-radius:6px;border-top-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-bottom-right-radius:3px;border-top-right-radius:3px}.pager{padding-left:0;margin:20px 0;list-style:none;text-align:center}.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;background-color:#fff;cursor:not-allowed}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;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:gray}.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:700;color:#fff;line-height:1;vertical-align:baseline;white-space:nowrap;text-align:center;background-color:#999;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-xs .badge{top:0;padding:1px 5px}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;color:inherit;background-color:#eee}.jumbotron h1,.jumbotron .h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.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-left:60px;padding-right: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;max-width:100%;height:auto;margin-left:auto;margin-right: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:700}.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{background-color:#dff0d8;border-color:#d6e9c6;color:#3c763d}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#31708f}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{background-color:#fcf8e3;border-color:#faebcc;color:#8a6d3b}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{background-color:#f2dede;border-color:#ebccd1;color:#a94442}.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{overflow:hidden;height:20px;margin-bottom:20px;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(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,.15);box-shadow:inset 0 -1px 0 rgba(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,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.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,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.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,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.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,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.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,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.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{margin-bottom:20px;padding-left:0}.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-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:hover,a.list-group-item-success:focus{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:hover,a.list-group-item-success.active:focus{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:hover,a.list-group-item-info:focus{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:hover,a.list-group-item-info.active:focus{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:hover,a.list-group-item-warning:focus{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:hover,a.list-group-item-warning.active:focus{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:hover,a.list-group-item-danger:focus{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:hover,a.list-group-item-danger.active:focus{color:#fff;background-color:#a94442;border-color:#a94442}.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,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.panel-body{padding:15px}.panel>.list-group{margin-bottom:0}.panel>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group .list-group-item:first-child{border-top:0}.panel>.list-group .list-group-item:last-child{border-bottom:0}.panel>.list-group:first-child .list-group-item:first-child{border-top-right-radius:3px;border-top-left-radius:3px}.panel>.list-group:last-child .list-group-item:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child th,.panel>.table>tbody:first-child>tr: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:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>tfoot>tr:first-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:first-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tfoot>tr:first-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:first-child>td{border-top: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{border:0;margin-bottom: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{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:4px;overflow:hidden}.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-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}.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}.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,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(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:700;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:0 0;border:0;-webkit-appearance:none}.modal-open{overflow:hidden}.modal{display:none;overflow:auto;overflow-y:scroll;position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;-webkit-overflow-scrolling:touch;outline:0}.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;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5);background-clip:padding-box;outline:0}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0;filter:alpha(opacity=0)}.modal-backdrop.in{opacity:.5;filter:alpha(opacity=50)}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5;min-height:16.428571429px}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.428571429}.modal-body{position:relative;padding:20px}.modal-footer{margin-top:15px;padding:19px 20px 20px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1030;display:block;visibility:visible;font-size:12px;line-height:1.4;opacity:0;filter:alpha(opacity=0)}.tooltip.in{opacity:.9;filter:alpha(opacity=90)}.tooltip.top{margin-top:-3px;padding:5px 0}.tooltip.right{margin-left:3px;padding:0 5px}.tooltip.bottom{margin-top:3px;padding:5px 0}.tooltip.left{margin-left:-3px;padding:0 5px}.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-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{bottom:0;left:5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;right:5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;left:5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;right:5px;border-width:0 5px 5px;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1010;display:none;max-width:276px;padding:1px;text-align:left;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2);white-space:normal}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{margin:0;padding:8px 14px;font-size:14px;font-weight:400;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{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0,0,0,.25);bottom:-11px}.popover.top .arrow:after{content:" ";bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#fff}.popover.right .arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999;border-right-color:rgba(0,0,0,.25)}.popover.right .arrow:after{content:" ";left:1px;bottom:-10px;border-left-width:0;border-right-color:#fff}.popover.bottom .arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25);top:-11px}.popover.bottom .arrow:after{content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff}.popover.left .arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left .arrow:after{content:" ";right:1px;border-right-width:0;border-left-color:#fff;bottom:-10px}.carousel{position:relative}.carousel-inner{position:relative;overflow:hidden;width:100%}.carousel-inner>.item{display:none;position:relative;-webkit-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;max-width:100%;height:auto;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;left:0;bottom:0;width:15%;opacity:.5;filter:alpha(opacity=50);font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.carousel-control.left{background-image:-webkit-linear-gradient(left,color-stop(rgba(0,0,0,.5) 0),color-stop(rgba(0,0,0,.0001) 100%));background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1)}.carousel-control.right{left:auto;right:0;background-image:-webkit-linear-gradient(left,color-stop(rgba(0,0,0,.0001) 0),color-stop(rgba(0,0,0,.5) 100%));background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(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{outline:0;color:#fff;text-decoration:none;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%;margin-left:-30%;padding-left:0;list-style:none;text-align:center}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;border:1px solid #fff;border-radius:10px;cursor:pointer;background-color:#000 \9;background-color:rgba(0,0,0,0)}.carousel-indicators .active{margin:0;width:12px;height:12px;background-color:#fff}.carousel-caption{position:absolute;left:15%;right:15%;bottom:20px;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(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{left:20%;right:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.clearfix:before,.clearfix:after,.container:before,.container:after,.container-fluid:before,.container-fluid:after,.row:before,.row:after,.form-horizontal .form-group:before,.form-horizontal .form-group:after,.btn-toolbar:before,.btn-toolbar:after,.btn-group-vertical>.btn-group:before,.btn-group-vertical>.btn-group:after,.nav:before,.nav:after,.navbar:before,.navbar:after,.navbar-header:before,.navbar-header:after,.navbar-collapse:before,.navbar-collapse:after,.pager:before,.pager:after,.panel-body:before,.panel-body:after,.modal-footer:before,.modal-footer:after{content:" ";display:table}.clearfix:after,.container:after,.container-fluid:after,.row:after,.form-horizontal .form-group:after,.btn-toolbar:after,.btn-group-vertical>.btn-group:after,.nav:after,.navbar:after,.navbar-header:after,.navbar-collapse:after,.pager:after,.panel-body:after,.modal-footer:after{clear:both}.center-block{display:block;margin-left:auto;margin-right:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none!important;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}}.visible-sm,tr.visible-sm,th.visible-sm,td.visible-sm{display:none!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}}.visible-md,tr.visible-md,th.visible-md,td.visible-md{display:none!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}}.visible-lg,tr.visible-lg,th.visible-lg,td.visible-lg{display:none!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}}@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-sm,tr.hidden-sm,th.hidden-sm,td.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-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}}@media print{.hidden-print,tr.hidden-print,th.hidden-print,td.hidden-print{display:none!important}} |
|---|
| .. | .. |
|---|
| 69 | 69 | min-height: 25px !important; |
|---|
| 70 | 70 | height: 25px !important; |
|---|
| 71 | 71 | } |
|---|
| 72 | + |
|---|
| 73 | +.btn-file { |
|---|
| 74 | + position: relative; |
|---|
| 75 | + overflow: hidden; |
|---|
| 76 | +} |
|---|
| 77 | +.btn-file input[type=file] { |
|---|
| 78 | + position: absolute; |
|---|
| 79 | + top: 0; |
|---|
| 80 | + right: 0; |
|---|
| 81 | + min-width: 100%; |
|---|
| 82 | + min-height: 100%; |
|---|
| 83 | + font-size: 999px; |
|---|
| 84 | + text-align: right; |
|---|
| 85 | + filter: alpha(opacity=0); |
|---|
| 86 | + opacity: 0; |
|---|
| 87 | + background: red; |
|---|
| 88 | + cursor: inherit; |
|---|
| 89 | + display: block; |
|---|
| 90 | +} |
|---|
| .. | .. |
|---|
| 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> |
|---|
| .. | .. |
|---|
| 1 | 1 | (function() { |
|---|
| 2 | 2 | 'use strict'; |
|---|
| 3 | + |
|---|
| 4 | + var LIC_STATUS = { |
|---|
| 5 | + CREATED: 1, |
|---|
| 6 | + REQUESTED: 2, |
|---|
| 7 | + PREACTIVE: 3, |
|---|
| 8 | + ACTIVE: 4, |
|---|
| 9 | + CANCELED: 5 |
|---|
| 10 | + } |
|---|
| 11 | + |
|---|
| 12 | + var ACTIONS_BY_STATUS = { |
|---|
| 13 | + activate: [LIC_STATUS.REQUESTED, LIC_STATUS.PREACTIVE], |
|---|
| 14 | + send: [LIC_STATUS.ACTIVE, LIC_STATUS.PREACTIVE], |
|---|
| 15 | + download: [LIC_STATUS.ACTIVE, LIC_STATUS.PREACTIVE], |
|---|
| 16 | + request: [LIC_STATUS.CREATED, LIC_STATUS.REQUESTED], |
|---|
| 17 | + cancel: [LIC_STATUS.REQUESTED, LIC_STATUS.PREACTIVE, LIC_STATUS.ACTIVE], |
|---|
| 18 | + 'delete': [LIC_STATUS.CREATED, LIC_STATUS.CANCELED], |
|---|
| 19 | + } |
|---|
| 3 | 20 | |
|---|
| 4 | 21 | var HTTP_ERRORS = { |
|---|
| 5 | 22 | 401: "Unathorized action", |
|---|
| .. | .. |
|---|
| 19 | 36 | console.log('scope.license: ' + scope.$parent.license); |
|---|
| 20 | 37 | var setter = $parse(attrs.fileLoader).assign; |
|---|
| 21 | 38 | element.bind('change', function(evt) { |
|---|
| 22 | | - console.log('scope.license: ' + scope.$parent.license); |
|---|
| 39 | + if (!window.FileReader) { // Browser is not compatible |
|---|
| 40 | + BootstrapDialog.alert($L.get("Open your .req file with a text editor and copy&paste the content in the form text field?")); |
|---|
| 41 | + return; |
|---|
| 42 | + } |
|---|
| 43 | + //console.log('scope.license: ' + scope.$parent.license); |
|---|
| 23 | 44 | var field = $parse(attrs.fileLoader); |
|---|
| 24 | | - console.log('field: ' + field); |
|---|
| 45 | + //console.log('field: ' + field); |
|---|
| 25 | 46 | var fileList = evt.target.files; |
|---|
| 26 | 47 | if (fileList != null && fileList[0]) { |
|---|
| 27 | 48 | var reader = new FileReader(); |
|---|
| 28 | 49 | reader.onerror = function(data) { |
|---|
| 29 | 50 | setter(scope.$parent, 'ERROR'); |
|---|
| 30 | | - scope.$apply(); |
|---|
| 51 | + //scope.$apply(); |
|---|
| 31 | 52 | } |
|---|
| 32 | 53 | reader.onload = function(data) { |
|---|
| 33 | 54 | setter(scope.$parent, reader.result); |
|---|
| 34 | | - scope.$apply(); |
|---|
| 55 | + //scope.$apply(); |
|---|
| 35 | 56 | } |
|---|
| 36 | 57 | |
|---|
| 37 | 58 | reader.readAsText(fileList[0]); |
|---|
| 38 | 59 | } else { |
|---|
| 39 | | - console.log('NO FILE: '); |
|---|
| 40 | | - field = ''; |
|---|
| 41 | | - scope.$apply(); |
|---|
| 60 | + setter(scope.$parent, ''); |
|---|
| 61 | + //scope.$apply(); |
|---|
| 42 | 62 | } |
|---|
| 43 | 63 | }); |
|---|
| 44 | 64 | |
|---|
| .. | .. |
|---|
| 46 | 66 | }; |
|---|
| 47 | 67 | }); |
|---|
| 48 | 68 | |
|---|
| 49 | | - console.log(' OK ????? '); |
|---|
| 50 | 69 | |
|---|
| 51 | 70 | app.controller('PackAndLicensesCtrl', [ |
|---|
| 52 | 71 | '$scope', |
|---|
| .. | .. |
|---|
| 312 | 331 | $scope.showStatus = function(lic) { |
|---|
| 313 | 332 | |
|---|
| 314 | 333 | } |
|---|
| 315 | | - $scope.showStatusComplete = function(license) { |
|---|
| 334 | + $scope.showStatusLong = function(license) { |
|---|
| 316 | 335 | |
|---|
| 317 | 336 | } |
|---|
| 318 | | - $scope.isActionVisible = function(actionMask, lic) { |
|---|
| 319 | | - |
|---|
| 337 | + $scope.isActionVisible = function(action, lic) { |
|---|
| 338 | + var validStatuses = ACTIONS_BY_STATUS[action]; |
|---|
| 339 | + return lic && validStatuses.indexOf(lic.status) !== -1; |
|---|
| 320 | 340 | } |
|---|
| 321 | 341 | |
|---|
| 322 | 342 | } ]); |
|---|
| .. | .. |
|---|
| 1 | +/*! |
|---|
| 2 | + * Bootstrap v3.1.0 (http://getbootstrap.com) |
|---|
| 3 | + * Copyright 2011-2014 Twitter, Inc. |
|---|
| 4 | + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) |
|---|
| 5 | + */ |
|---|
| 6 | + |
|---|
| 7 | +if (typeof jQuery === 'undefined') { throw new Error('Bootstrap requires jQuery') } |
|---|
| 8 | + |
|---|
| 9 | +/* ======================================================================== |
|---|
| 10 | + * Bootstrap: transition.js v3.1.0 |
|---|
| 11 | + * http://getbootstrap.com/javascript/#transitions |
|---|
| 12 | + * ======================================================================== |
|---|
| 13 | + * Copyright 2011-2014 Twitter, Inc. |
|---|
| 14 | + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) |
|---|
| 15 | + * ======================================================================== */ |
|---|
| 16 | + |
|---|
| 17 | + |
|---|
| 18 | ++function ($) { |
|---|
| 19 | + 'use strict'; |
|---|
| 20 | + |
|---|
| 21 | + // CSS TRANSITION SUPPORT (Shoutout: http://www.modernizr.com/) |
|---|
| 22 | + // ============================================================ |
|---|
| 23 | + |
|---|
| 24 | + function transitionEnd() { |
|---|
| 25 | + var el = document.createElement('bootstrap') |
|---|
| 26 | + |
|---|
| 27 | + var transEndEventNames = { |
|---|
| 28 | + 'WebkitTransition' : 'webkitTransitionEnd', |
|---|
| 29 | + 'MozTransition' : 'transitionend', |
|---|
| 30 | + 'OTransition' : 'oTransitionEnd otransitionend', |
|---|
| 31 | + 'transition' : 'transitionend' |
|---|
| 32 | + } |
|---|
| 33 | + |
|---|
| 34 | + for (var name in transEndEventNames) { |
|---|
| 35 | + if (el.style[name] !== undefined) { |
|---|
| 36 | + return { end: transEndEventNames[name] } |
|---|
| 37 | + } |
|---|
| 38 | + } |
|---|
| 39 | + |
|---|
| 40 | + return false // explicit for ie8 ( ._.) |
|---|
| 41 | + } |
|---|
| 42 | + |
|---|
| 43 | + // http://blog.alexmaccaw.com/css-transitions |
|---|
| 44 | + $.fn.emulateTransitionEnd = function (duration) { |
|---|
| 45 | + var called = false, $el = this |
|---|
| 46 | + $(this).one($.support.transition.end, function () { called = true }) |
|---|
| 47 | + var callback = function () { if (!called) $($el).trigger($.support.transition.end) } |
|---|
| 48 | + setTimeout(callback, duration) |
|---|
| 49 | + return this |
|---|
| 50 | + } |
|---|
| 51 | + |
|---|
| 52 | + $(function () { |
|---|
| 53 | + $.support.transition = transitionEnd() |
|---|
| 54 | + }) |
|---|
| 55 | + |
|---|
| 56 | +}(jQuery); |
|---|
| 57 | + |
|---|
| 58 | +/* ======================================================================== |
|---|
| 59 | + * Bootstrap: alert.js v3.1.0 |
|---|
| 60 | + * http://getbootstrap.com/javascript/#alerts |
|---|
| 61 | + * ======================================================================== |
|---|
| 62 | + * Copyright 2011-2014 Twitter, Inc. |
|---|
| 63 | + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) |
|---|
| 64 | + * ======================================================================== */ |
|---|
| 65 | + |
|---|
| 66 | + |
|---|
| 67 | ++function ($) { |
|---|
| 68 | + 'use strict'; |
|---|
| 69 | + |
|---|
| 70 | + // ALERT CLASS DEFINITION |
|---|
| 71 | + // ====================== |
|---|
| 72 | + |
|---|
| 73 | + var dismiss = '[data-dismiss="alert"]' |
|---|
| 74 | + var Alert = function (el) { |
|---|
| 75 | + $(el).on('click', dismiss, this.close) |
|---|
| 76 | + } |
|---|
| 77 | + |
|---|
| 78 | + Alert.prototype.close = function (e) { |
|---|
| 79 | + var $this = $(this) |
|---|
| 80 | + var selector = $this.attr('data-target') |
|---|
| 81 | + |
|---|
| 82 | + if (!selector) { |
|---|
| 83 | + selector = $this.attr('href') |
|---|
| 84 | + selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7 |
|---|
| 85 | + } |
|---|
| 86 | + |
|---|
| 87 | + var $parent = $(selector) |
|---|
| 88 | + |
|---|
| 89 | + if (e) e.preventDefault() |
|---|
| 90 | + |
|---|
| 91 | + if (!$parent.length) { |
|---|
| 92 | + $parent = $this.hasClass('alert') ? $this : $this.parent() |
|---|
| 93 | + } |
|---|
| 94 | + |
|---|
| 95 | + $parent.trigger(e = $.Event('close.bs.alert')) |
|---|
| 96 | + |
|---|
| 97 | + if (e.isDefaultPrevented()) return |
|---|
| 98 | + |
|---|
| 99 | + $parent.removeClass('in') |
|---|
| 100 | + |
|---|
| 101 | + function removeElement() { |
|---|
| 102 | + $parent.trigger('closed.bs.alert').remove() |
|---|
| 103 | + } |
|---|
| 104 | + |
|---|
| 105 | + $.support.transition && $parent.hasClass('fade') ? |
|---|
| 106 | + $parent |
|---|
| 107 | + .one($.support.transition.end, removeElement) |
|---|
| 108 | + .emulateTransitionEnd(150) : |
|---|
| 109 | + removeElement() |
|---|
| 110 | + } |
|---|
| 111 | + |
|---|
| 112 | + |
|---|
| 113 | + // ALERT PLUGIN DEFINITION |
|---|
| 114 | + // ======================= |
|---|
| 115 | + |
|---|
| 116 | + var old = $.fn.alert |
|---|
| 117 | + |
|---|
| 118 | + $.fn.alert = function (option) { |
|---|
| 119 | + return this.each(function () { |
|---|
| 120 | + var $this = $(this) |
|---|
| 121 | + var data = $this.data('bs.alert') |
|---|
| 122 | + |
|---|
| 123 | + if (!data) $this.data('bs.alert', (data = new Alert(this))) |
|---|
| 124 | + if (typeof option == 'string') data[option].call($this) |
|---|
| 125 | + }) |
|---|
| 126 | + } |
|---|
| 127 | + |
|---|
| 128 | + $.fn.alert.Constructor = Alert |
|---|
| 129 | + |
|---|
| 130 | + |
|---|
| 131 | + // ALERT NO CONFLICT |
|---|
| 132 | + // ================= |
|---|
| 133 | + |
|---|
| 134 | + $.fn.alert.noConflict = function () { |
|---|
| 135 | + $.fn.alert = old |
|---|
| 136 | + return this |
|---|
| 137 | + } |
|---|
| 138 | + |
|---|
| 139 | + |
|---|
| 140 | + // ALERT DATA-API |
|---|
| 141 | + // ============== |
|---|
| 142 | + |
|---|
| 143 | + $(document).on('click.bs.alert.data-api', dismiss, Alert.prototype.close) |
|---|
| 144 | + |
|---|
| 145 | +}(jQuery); |
|---|
| 146 | + |
|---|
| 147 | +/* ======================================================================== |
|---|
| 148 | + * Bootstrap: button.js v3.1.0 |
|---|
| 149 | + * http://getbootstrap.com/javascript/#buttons |
|---|
| 150 | + * ======================================================================== |
|---|
| 151 | + * Copyright 2011-2014 Twitter, Inc. |
|---|
| 152 | + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) |
|---|
| 153 | + * ======================================================================== */ |
|---|
| 154 | + |
|---|
| 155 | + |
|---|
| 156 | ++function ($) { |
|---|
| 157 | + 'use strict'; |
|---|
| 158 | + |
|---|
| 159 | + // BUTTON PUBLIC CLASS DEFINITION |
|---|
| 160 | + // ============================== |
|---|
| 161 | + |
|---|
| 162 | + var Button = function (element, options) { |
|---|
| 163 | + this.$element = $(element) |
|---|
| 164 | + this.options = $.extend({}, Button.DEFAULTS, options) |
|---|
| 165 | + this.isLoading = false |
|---|
| 166 | + } |
|---|
| 167 | + |
|---|
| 168 | + Button.DEFAULTS = { |
|---|
| 169 | + loadingText: 'loading...' |
|---|
| 170 | + } |
|---|
| 171 | + |
|---|
| 172 | + Button.prototype.setState = function (state) { |
|---|
| 173 | + var d = 'disabled' |
|---|
| 174 | + var $el = this.$element |
|---|
| 175 | + var val = $el.is('input') ? 'val' : 'html' |
|---|
| 176 | + var data = $el.data() |
|---|
| 177 | + |
|---|
| 178 | + state = state + 'Text' |
|---|
| 179 | + |
|---|
| 180 | + if (!data.resetText) $el.data('resetText', $el[val]()) |
|---|
| 181 | + |
|---|
| 182 | + $el[val](data[state] || this.options[state]) |
|---|
| 183 | + |
|---|
| 184 | + // push to event loop to allow forms to submit |
|---|
| 185 | + setTimeout($.proxy(function () { |
|---|
| 186 | + if (state == 'loadingText') { |
|---|
| 187 | + this.isLoading = true |
|---|
| 188 | + $el.addClass(d).attr(d, d) |
|---|
| 189 | + } else if (this.isLoading) { |
|---|
| 190 | + this.isLoading = false |
|---|
| 191 | + $el.removeClass(d).removeAttr(d) |
|---|
| 192 | + } |
|---|
| 193 | + }, this), 0) |
|---|
| 194 | + } |
|---|
| 195 | + |
|---|
| 196 | + Button.prototype.toggle = function () { |
|---|
| 197 | + var changed = true |
|---|
| 198 | + var $parent = this.$element.closest('[data-toggle="buttons"]') |
|---|
| 199 | + |
|---|
| 200 | + if ($parent.length) { |
|---|
| 201 | + var $input = this.$element.find('input') |
|---|
| 202 | + if ($input.prop('type') == 'radio') { |
|---|
| 203 | + if ($input.prop('checked') && this.$element.hasClass('active')) changed = false |
|---|
| 204 | + else $parent.find('.active').removeClass('active') |
|---|
| 205 | + } |
|---|
| 206 | + if (changed) $input.prop('checked', !this.$element.hasClass('active')).trigger('change') |
|---|
| 207 | + } |
|---|
| 208 | + |
|---|
| 209 | + if (changed) this.$element.toggleClass('active') |
|---|
| 210 | + } |
|---|
| 211 | + |
|---|
| 212 | + |
|---|
| 213 | + // BUTTON PLUGIN DEFINITION |
|---|
| 214 | + // ======================== |
|---|
| 215 | + |
|---|
| 216 | + var old = $.fn.button |
|---|
| 217 | + |
|---|
| 218 | + $.fn.button = function (option) { |
|---|
| 219 | + return this.each(function () { |
|---|
| 220 | + var $this = $(this) |
|---|
| 221 | + var data = $this.data('bs.button') |
|---|
| 222 | + var options = typeof option == 'object' && option |
|---|
| 223 | + |
|---|
| 224 | + if (!data) $this.data('bs.button', (data = new Button(this, options))) |
|---|
| 225 | + |
|---|
| 226 | + if (option == 'toggle') data.toggle() |
|---|
| 227 | + else if (option) data.setState(option) |
|---|
| 228 | + }) |
|---|
| 229 | + } |
|---|
| 230 | + |
|---|
| 231 | + $.fn.button.Constructor = Button |
|---|
| 232 | + |
|---|
| 233 | + |
|---|
| 234 | + // BUTTON NO CONFLICT |
|---|
| 235 | + // ================== |
|---|
| 236 | + |
|---|
| 237 | + $.fn.button.noConflict = function () { |
|---|
| 238 | + $.fn.button = old |
|---|
| 239 | + return this |
|---|
| 240 | + } |
|---|
| 241 | + |
|---|
| 242 | + |
|---|
| 243 | + // BUTTON DATA-API |
|---|
| 244 | + // =============== |
|---|
| 245 | + |
|---|
| 246 | + $(document).on('click.bs.button.data-api', '[data-toggle^=button]', function (e) { |
|---|
| 247 | + var $btn = $(e.target) |
|---|
| 248 | + if (!$btn.hasClass('btn')) $btn = $btn.closest('.btn') |
|---|
| 249 | + $btn.button('toggle') |
|---|
| 250 | + e.preventDefault() |
|---|
| 251 | + }) |
|---|
| 252 | + |
|---|
| 253 | +}(jQuery); |
|---|
| 254 | + |
|---|
| 255 | +/* ======================================================================== |
|---|
| 256 | + * Bootstrap: carousel.js v3.1.0 |
|---|
| 257 | + * http://getbootstrap.com/javascript/#carousel |
|---|
| 258 | + * ======================================================================== |
|---|
| 259 | + * Copyright 2011-2014 Twitter, Inc. |
|---|
| 260 | + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) |
|---|
| 261 | + * ======================================================================== */ |
|---|
| 262 | + |
|---|
| 263 | + |
|---|
| 264 | ++function ($) { |
|---|
| 265 | + 'use strict'; |
|---|
| 266 | + |
|---|
| 267 | + // CAROUSEL CLASS DEFINITION |
|---|
| 268 | + // ========================= |
|---|
| 269 | + |
|---|
| 270 | + var Carousel = function (element, options) { |
|---|
| 271 | + this.$element = $(element) |
|---|
| 272 | + this.$indicators = this.$element.find('.carousel-indicators') |
|---|
| 273 | + this.options = options |
|---|
| 274 | + this.paused = |
|---|
| 275 | + this.sliding = |
|---|
| 276 | + this.interval = |
|---|
| 277 | + this.$active = |
|---|
| 278 | + this.$items = null |
|---|
| 279 | + |
|---|
| 280 | + this.options.pause == 'hover' && this.$element |
|---|
| 281 | + .on('mouseenter', $.proxy(this.pause, this)) |
|---|
| 282 | + .on('mouseleave', $.proxy(this.cycle, this)) |
|---|
| 283 | + } |
|---|
| 284 | + |
|---|
| 285 | + Carousel.DEFAULTS = { |
|---|
| 286 | + interval: 5000, |
|---|
| 287 | + pause: 'hover', |
|---|
| 288 | + wrap: true |
|---|
| 289 | + } |
|---|
| 290 | + |
|---|
| 291 | + Carousel.prototype.cycle = function (e) { |
|---|
| 292 | + e || (this.paused = false) |
|---|
| 293 | + |
|---|
| 294 | + this.interval && clearInterval(this.interval) |
|---|
| 295 | + |
|---|
| 296 | + this.options.interval |
|---|
| 297 | + && !this.paused |
|---|
| 298 | + && (this.interval = setInterval($.proxy(this.next, this), this.options.interval)) |
|---|
| 299 | + |
|---|
| 300 | + return this |
|---|
| 301 | + } |
|---|
| 302 | + |
|---|
| 303 | + Carousel.prototype.getActiveIndex = function () { |
|---|
| 304 | + this.$active = this.$element.find('.item.active') |
|---|
| 305 | + this.$items = this.$active.parent().children() |
|---|
| 306 | + |
|---|
| 307 | + return this.$items.index(this.$active) |
|---|
| 308 | + } |
|---|
| 309 | + |
|---|
| 310 | + Carousel.prototype.to = function (pos) { |
|---|
| 311 | + var that = this |
|---|
| 312 | + var activeIndex = this.getActiveIndex() |
|---|
| 313 | + |
|---|
| 314 | + if (pos > (this.$items.length - 1) || pos < 0) return |
|---|
| 315 | + |
|---|
| 316 | + if (this.sliding) return this.$element.one('slid.bs.carousel', function () { that.to(pos) }) |
|---|
| 317 | + if (activeIndex == pos) return this.pause().cycle() |
|---|
| 318 | + |
|---|
| 319 | + return this.slide(pos > activeIndex ? 'next' : 'prev', $(this.$items[pos])) |
|---|
| 320 | + } |
|---|
| 321 | + |
|---|
| 322 | + Carousel.prototype.pause = function (e) { |
|---|
| 323 | + e || (this.paused = true) |
|---|
| 324 | + |
|---|
| 325 | + if (this.$element.find('.next, .prev').length && $.support.transition) { |
|---|
| 326 | + this.$element.trigger($.support.transition.end) |
|---|
| 327 | + this.cycle(true) |
|---|
| 328 | + } |
|---|
| 329 | + |
|---|
| 330 | + this.interval = clearInterval(this.interval) |
|---|
| 331 | + |
|---|
| 332 | + return this |
|---|
| 333 | + } |
|---|
| 334 | + |
|---|
| 335 | + Carousel.prototype.next = function () { |
|---|
| 336 | + if (this.sliding) return |
|---|
| 337 | + return this.slide('next') |
|---|
| 338 | + } |
|---|
| 339 | + |
|---|
| 340 | + Carousel.prototype.prev = function () { |
|---|
| 341 | + if (this.sliding) return |
|---|
| 342 | + return this.slide('prev') |
|---|
| 343 | + } |
|---|
| 344 | + |
|---|
| 345 | + Carousel.prototype.slide = function (type, next) { |
|---|
| 346 | + var $active = this.$element.find('.item.active') |
|---|
| 347 | + var $next = next || $active[type]() |
|---|
| 348 | + var isCycling = this.interval |
|---|
| 349 | + var direction = type == 'next' ? 'left' : 'right' |
|---|
| 350 | + var fallback = type == 'next' ? 'first' : 'last' |
|---|
| 351 | + var that = this |
|---|
| 352 | + |
|---|
| 353 | + if (!$next.length) { |
|---|
| 354 | + if (!this.options.wrap) return |
|---|
| 355 | + $next = this.$element.find('.item')[fallback]() |
|---|
| 356 | + } |
|---|
| 357 | + |
|---|
| 358 | + if ($next.hasClass('active')) return this.sliding = false |
|---|
| 359 | + |
|---|
| 360 | + var e = $.Event('slide.bs.carousel', { relatedTarget: $next[0], direction: direction }) |
|---|
| 361 | + this.$element.trigger(e) |
|---|
| 362 | + if (e.isDefaultPrevented()) return |
|---|
| 363 | + |
|---|
| 364 | + this.sliding = true |
|---|
| 365 | + |
|---|
| 366 | + isCycling && this.pause() |
|---|
| 367 | + |
|---|
| 368 | + if (this.$indicators.length) { |
|---|
| 369 | + this.$indicators.find('.active').removeClass('active') |
|---|
| 370 | + this.$element.one('slid.bs.carousel', function () { |
|---|
| 371 | + var $nextIndicator = $(that.$indicators.children()[that.getActiveIndex()]) |
|---|
| 372 | + $nextIndicator && $nextIndicator.addClass('active') |
|---|
| 373 | + }) |
|---|
| 374 | + } |
|---|
| 375 | + |
|---|
| 376 | + if ($.support.transition && this.$element.hasClass('slide')) { |
|---|
| 377 | + $next.addClass(type) |
|---|
| 378 | + $next[0].offsetWidth // force reflow |
|---|
| 379 | + $active.addClass(direction) |
|---|
| 380 | + $next.addClass(direction) |
|---|
| 381 | + $active |
|---|
| 382 | + .one($.support.transition.end, function () { |
|---|
| 383 | + $next.removeClass([type, direction].join(' ')).addClass('active') |
|---|
| 384 | + $active.removeClass(['active', direction].join(' ')) |
|---|
| 385 | + that.sliding = false |
|---|
| 386 | + setTimeout(function () { that.$element.trigger('slid.bs.carousel') }, 0) |
|---|
| 387 | + }) |
|---|
| 388 | + .emulateTransitionEnd($active.css('transition-duration').slice(0, -1) * 1000) |
|---|
| 389 | + } else { |
|---|
| 390 | + $active.removeClass('active') |
|---|
| 391 | + $next.addClass('active') |
|---|
| 392 | + this.sliding = false |
|---|
| 393 | + this.$element.trigger('slid.bs.carousel') |
|---|
| 394 | + } |
|---|
| 395 | + |
|---|
| 396 | + isCycling && this.cycle() |
|---|
| 397 | + |
|---|
| 398 | + return this |
|---|
| 399 | + } |
|---|
| 400 | + |
|---|
| 401 | + |
|---|
| 402 | + // CAROUSEL PLUGIN DEFINITION |
|---|
| 403 | + // ========================== |
|---|
| 404 | + |
|---|
| 405 | + var old = $.fn.carousel |
|---|
| 406 | + |
|---|
| 407 | + $.fn.carousel = function (option) { |
|---|
| 408 | + return this.each(function () { |
|---|
| 409 | + var $this = $(this) |
|---|
| 410 | + var data = $this.data('bs.carousel') |
|---|
| 411 | + var options = $.extend({}, Carousel.DEFAULTS, $this.data(), typeof option == 'object' && option) |
|---|
| 412 | + var action = typeof option == 'string' ? option : options.slide |
|---|
| 413 | + |
|---|
| 414 | + if (!data) $this.data('bs.carousel', (data = new Carousel(this, options))) |
|---|
| 415 | + if (typeof option == 'number') data.to(option) |
|---|
| 416 | + else if (action) data[action]() |
|---|
| 417 | + else if (options.interval) data.pause().cycle() |
|---|
| 418 | + }) |
|---|
| 419 | + } |
|---|
| 420 | + |
|---|
| 421 | + $.fn.carousel.Constructor = Carousel |
|---|
| 422 | + |
|---|
| 423 | + |
|---|
| 424 | + // CAROUSEL NO CONFLICT |
|---|
| 425 | + // ==================== |
|---|
| 426 | + |
|---|
| 427 | + $.fn.carousel.noConflict = function () { |
|---|
| 428 | + $.fn.carousel = old |
|---|
| 429 | + return this |
|---|
| 430 | + } |
|---|
| 431 | + |
|---|
| 432 | + |
|---|
| 433 | + // CAROUSEL DATA-API |
|---|
| 434 | + // ================= |
|---|
| 435 | + |
|---|
| 436 | + $(document).on('click.bs.carousel.data-api', '[data-slide], [data-slide-to]', function (e) { |
|---|
| 437 | + var $this = $(this), href |
|---|
| 438 | + var $target = $($this.attr('data-target') || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) //strip for ie7 |
|---|
| 439 | + var options = $.extend({}, $target.data(), $this.data()) |
|---|
| 440 | + var slideIndex = $this.attr('data-slide-to') |
|---|
| 441 | + if (slideIndex) options.interval = false |
|---|
| 442 | + |
|---|
| 443 | + $target.carousel(options) |
|---|
| 444 | + |
|---|
| 445 | + if (slideIndex = $this.attr('data-slide-to')) { |
|---|
| 446 | + $target.data('bs.carousel').to(slideIndex) |
|---|
| 447 | + } |
|---|
| 448 | + |
|---|
| 449 | + e.preventDefault() |
|---|
| 450 | + }) |
|---|
| 451 | + |
|---|
| 452 | + $(window).on('load', function () { |
|---|
| 453 | + $('[data-ride="carousel"]').each(function () { |
|---|
| 454 | + var $carousel = $(this) |
|---|
| 455 | + $carousel.carousel($carousel.data()) |
|---|
| 456 | + }) |
|---|
| 457 | + }) |
|---|
| 458 | + |
|---|
| 459 | +}(jQuery); |
|---|
| 460 | + |
|---|
| 461 | +/* ======================================================================== |
|---|
| 462 | + * Bootstrap: collapse.js v3.1.0 |
|---|
| 463 | + * http://getbootstrap.com/javascript/#collapse |
|---|
| 464 | + * ======================================================================== |
|---|
| 465 | + * Copyright 2011-2014 Twitter, Inc. |
|---|
| 466 | + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) |
|---|
| 467 | + * ======================================================================== */ |
|---|
| 468 | + |
|---|
| 469 | + |
|---|
| 470 | ++function ($) { |
|---|
| 471 | + 'use strict'; |
|---|
| 472 | + |
|---|
| 473 | + // COLLAPSE PUBLIC CLASS DEFINITION |
|---|
| 474 | + // ================================ |
|---|
| 475 | + |
|---|
| 476 | + var Collapse = function (element, options) { |
|---|
| 477 | + this.$element = $(element) |
|---|
| 478 | + this.options = $.extend({}, Collapse.DEFAULTS, options) |
|---|
| 479 | + this.transitioning = null |
|---|
| 480 | + |
|---|
| 481 | + if (this.options.parent) this.$parent = $(this.options.parent) |
|---|
| 482 | + if (this.options.toggle) this.toggle() |
|---|
| 483 | + } |
|---|
| 484 | + |
|---|
| 485 | + Collapse.DEFAULTS = { |
|---|
| 486 | + toggle: true |
|---|
| 487 | + } |
|---|
| 488 | + |
|---|
| 489 | + Collapse.prototype.dimension = function () { |
|---|
| 490 | + var hasWidth = this.$element.hasClass('width') |
|---|
| 491 | + return hasWidth ? 'width' : 'height' |
|---|
| 492 | + } |
|---|
| 493 | + |
|---|
| 494 | + Collapse.prototype.show = function () { |
|---|
| 495 | + if (this.transitioning || this.$element.hasClass('in')) return |
|---|
| 496 | + |
|---|
| 497 | + var startEvent = $.Event('show.bs.collapse') |
|---|
| 498 | + this.$element.trigger(startEvent) |
|---|
| 499 | + if (startEvent.isDefaultPrevented()) return |
|---|
| 500 | + |
|---|
| 501 | + var actives = this.$parent && this.$parent.find('> .panel > .in') |
|---|
| 502 | + |
|---|
| 503 | + if (actives && actives.length) { |
|---|
| 504 | + var hasData = actives.data('bs.collapse') |
|---|
| 505 | + if (hasData && hasData.transitioning) return |
|---|
| 506 | + actives.collapse('hide') |
|---|
| 507 | + hasData || actives.data('bs.collapse', null) |
|---|
| 508 | + } |
|---|
| 509 | + |
|---|
| 510 | + var dimension = this.dimension() |
|---|
| 511 | + |
|---|
| 512 | + this.$element |
|---|
| 513 | + .removeClass('collapse') |
|---|
| 514 | + .addClass('collapsing') |
|---|
| 515 | + [dimension](0) |
|---|
| 516 | + |
|---|
| 517 | + this.transitioning = 1 |
|---|
| 518 | + |
|---|
| 519 | + var complete = function () { |
|---|
| 520 | + this.$element |
|---|
| 521 | + .removeClass('collapsing') |
|---|
| 522 | + .addClass('collapse in') |
|---|
| 523 | + [dimension]('auto') |
|---|
| 524 | + this.transitioning = 0 |
|---|
| 525 | + this.$element.trigger('shown.bs.collapse') |
|---|
| 526 | + } |
|---|
| 527 | + |
|---|
| 528 | + if (!$.support.transition) return complete.call(this) |
|---|
| 529 | + |
|---|
| 530 | + var scrollSize = $.camelCase(['scroll', dimension].join('-')) |
|---|
| 531 | + |
|---|
| 532 | + this.$element |
|---|
| 533 | + .one($.support.transition.end, $.proxy(complete, this)) |
|---|
| 534 | + .emulateTransitionEnd(350) |
|---|
| 535 | + [dimension](this.$element[0][scrollSize]) |
|---|
| 536 | + } |
|---|
| 537 | + |
|---|
| 538 | + Collapse.prototype.hide = function () { |
|---|
| 539 | + if (this.transitioning || !this.$element.hasClass('in')) return |
|---|
| 540 | + |
|---|
| 541 | + var startEvent = $.Event('hide.bs.collapse') |
|---|
| 542 | + this.$element.trigger(startEvent) |
|---|
| 543 | + if (startEvent.isDefaultPrevented()) return |
|---|
| 544 | + |
|---|
| 545 | + var dimension = this.dimension() |
|---|
| 546 | + |
|---|
| 547 | + this.$element |
|---|
| 548 | + [dimension](this.$element[dimension]()) |
|---|
| 549 | + [0].offsetHeight |
|---|
| 550 | + |
|---|
| 551 | + this.$element |
|---|
| 552 | + .addClass('collapsing') |
|---|
| 553 | + .removeClass('collapse') |
|---|
| 554 | + .removeClass('in') |
|---|
| 555 | + |
|---|
| 556 | + this.transitioning = 1 |
|---|
| 557 | + |
|---|
| 558 | + var complete = function () { |
|---|
| 559 | + this.transitioning = 0 |
|---|
| 560 | + this.$element |
|---|
| 561 | + .trigger('hidden.bs.collapse') |
|---|
| 562 | + .removeClass('collapsing') |
|---|
| 563 | + .addClass('collapse') |
|---|
| 564 | + } |
|---|
| 565 | + |
|---|
| 566 | + if (!$.support.transition) return complete.call(this) |
|---|
| 567 | + |
|---|
| 568 | + this.$element |
|---|
| 569 | + [dimension](0) |
|---|
| 570 | + .one($.support.transition.end, $.proxy(complete, this)) |
|---|
| 571 | + .emulateTransitionEnd(350) |
|---|
| 572 | + } |
|---|
| 573 | + |
|---|
| 574 | + Collapse.prototype.toggle = function () { |
|---|
| 575 | + this[this.$element.hasClass('in') ? 'hide' : 'show']() |
|---|
| 576 | + } |
|---|
| 577 | + |
|---|
| 578 | + |
|---|
| 579 | + // COLLAPSE PLUGIN DEFINITION |
|---|
| 580 | + // ========================== |
|---|
| 581 | + |
|---|
| 582 | + var old = $.fn.collapse |
|---|
| 583 | + |
|---|
| 584 | + $.fn.collapse = function (option) { |
|---|
| 585 | + return this.each(function () { |
|---|
| 586 | + var $this = $(this) |
|---|
| 587 | + var data = $this.data('bs.collapse') |
|---|
| 588 | + var options = $.extend({}, Collapse.DEFAULTS, $this.data(), typeof option == 'object' && option) |
|---|
| 589 | + |
|---|
| 590 | + if (!data && options.toggle && option == 'show') option = !option |
|---|
| 591 | + if (!data) $this.data('bs.collapse', (data = new Collapse(this, options))) |
|---|
| 592 | + if (typeof option == 'string') data[option]() |
|---|
| 593 | + }) |
|---|
| 594 | + } |
|---|
| 595 | + |
|---|
| 596 | + $.fn.collapse.Constructor = Collapse |
|---|
| 597 | + |
|---|
| 598 | + |
|---|
| 599 | + // COLLAPSE NO CONFLICT |
|---|
| 600 | + // ==================== |
|---|
| 601 | + |
|---|
| 602 | + $.fn.collapse.noConflict = function () { |
|---|
| 603 | + $.fn.collapse = old |
|---|
| 604 | + return this |
|---|
| 605 | + } |
|---|
| 606 | + |
|---|
| 607 | + |
|---|
| 608 | + // COLLAPSE DATA-API |
|---|
| 609 | + // ================= |
|---|
| 610 | + |
|---|
| 611 | + $(document).on('click.bs.collapse.data-api', '[data-toggle=collapse]', function (e) { |
|---|
| 612 | + var $this = $(this), href |
|---|
| 613 | + var target = $this.attr('data-target') |
|---|
| 614 | + || e.preventDefault() |
|---|
| 615 | + || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '') //strip for ie7 |
|---|
| 616 | + var $target = $(target) |
|---|
| 617 | + var data = $target.data('bs.collapse') |
|---|
| 618 | + var option = data ? 'toggle' : $this.data() |
|---|
| 619 | + var parent = $this.attr('data-parent') |
|---|
| 620 | + var $parent = parent && $(parent) |
|---|
| 621 | + |
|---|
| 622 | + if (!data || !data.transitioning) { |
|---|
| 623 | + if ($parent) $parent.find('[data-toggle=collapse][data-parent="' + parent + '"]').not($this).addClass('collapsed') |
|---|
| 624 | + $this[$target.hasClass('in') ? 'addClass' : 'removeClass']('collapsed') |
|---|
| 625 | + } |
|---|
| 626 | + |
|---|
| 627 | + $target.collapse(option) |
|---|
| 628 | + }) |
|---|
| 629 | + |
|---|
| 630 | +}(jQuery); |
|---|
| 631 | + |
|---|
| 632 | +/* ======================================================================== |
|---|
| 633 | + * Bootstrap: dropdown.js v3.1.0 |
|---|
| 634 | + * http://getbootstrap.com/javascript/#dropdowns |
|---|
| 635 | + * ======================================================================== |
|---|
| 636 | + * Copyright 2011-2014 Twitter, Inc. |
|---|
| 637 | + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) |
|---|
| 638 | + * ======================================================================== */ |
|---|
| 639 | + |
|---|
| 640 | + |
|---|
| 641 | ++function ($) { |
|---|
| 642 | + 'use strict'; |
|---|
| 643 | + |
|---|
| 644 | + // DROPDOWN CLASS DEFINITION |
|---|
| 645 | + // ========================= |
|---|
| 646 | + |
|---|
| 647 | + var backdrop = '.dropdown-backdrop' |
|---|
| 648 | + var toggle = '[data-toggle=dropdown]' |
|---|
| 649 | + var Dropdown = function (element) { |
|---|
| 650 | + $(element).on('click.bs.dropdown', this.toggle) |
|---|
| 651 | + } |
|---|
| 652 | + |
|---|
| 653 | + Dropdown.prototype.toggle = function (e) { |
|---|
| 654 | + var $this = $(this) |
|---|
| 655 | + |
|---|
| 656 | + if ($this.is('.disabled, :disabled')) return |
|---|
| 657 | + |
|---|
| 658 | + var $parent = getParent($this) |
|---|
| 659 | + var isActive = $parent.hasClass('open') |
|---|
| 660 | + |
|---|
| 661 | + clearMenus() |
|---|
| 662 | + |
|---|
| 663 | + if (!isActive) { |
|---|
| 664 | + if ('ontouchstart' in document.documentElement && !$parent.closest('.navbar-nav').length) { |
|---|
| 665 | + // if mobile we use a backdrop because click events don't delegate |
|---|
| 666 | + $('<div class="dropdown-backdrop"/>').insertAfter($(this)).on('click', clearMenus) |
|---|
| 667 | + } |
|---|
| 668 | + |
|---|
| 669 | + var relatedTarget = { relatedTarget: this } |
|---|
| 670 | + $parent.trigger(e = $.Event('show.bs.dropdown', relatedTarget)) |
|---|
| 671 | + |
|---|
| 672 | + if (e.isDefaultPrevented()) return |
|---|
| 673 | + |
|---|
| 674 | + $parent |
|---|
| 675 | + .toggleClass('open') |
|---|
| 676 | + .trigger('shown.bs.dropdown', relatedTarget) |
|---|
| 677 | + |
|---|
| 678 | + $this.focus() |
|---|
| 679 | + } |
|---|
| 680 | + |
|---|
| 681 | + return false |
|---|
| 682 | + } |
|---|
| 683 | + |
|---|
| 684 | + Dropdown.prototype.keydown = function (e) { |
|---|
| 685 | + if (!/(38|40|27)/.test(e.keyCode)) return |
|---|
| 686 | + |
|---|
| 687 | + var $this = $(this) |
|---|
| 688 | + |
|---|
| 689 | + e.preventDefault() |
|---|
| 690 | + e.stopPropagation() |
|---|
| 691 | + |
|---|
| 692 | + if ($this.is('.disabled, :disabled')) return |
|---|
| 693 | + |
|---|
| 694 | + var $parent = getParent($this) |
|---|
| 695 | + var isActive = $parent.hasClass('open') |
|---|
| 696 | + |
|---|
| 697 | + if (!isActive || (isActive && e.keyCode == 27)) { |
|---|
| 698 | + if (e.which == 27) $parent.find(toggle).focus() |
|---|
| 699 | + return $this.click() |
|---|
| 700 | + } |
|---|
| 701 | + |
|---|
| 702 | + var desc = ' li:not(.divider):visible a' |
|---|
| 703 | + var $items = $parent.find('[role=menu]' + desc + ', [role=listbox]' + desc) |
|---|
| 704 | + |
|---|
| 705 | + if (!$items.length) return |
|---|
| 706 | + |
|---|
| 707 | + var index = $items.index($items.filter(':focus')) |
|---|
| 708 | + |
|---|
| 709 | + if (e.keyCode == 38 && index > 0) index-- // up |
|---|
| 710 | + if (e.keyCode == 40 && index < $items.length - 1) index++ // down |
|---|
| 711 | + if (!~index) index = 0 |
|---|
| 712 | + |
|---|
| 713 | + $items.eq(index).focus() |
|---|
| 714 | + } |
|---|
| 715 | + |
|---|
| 716 | + function clearMenus(e) { |
|---|
| 717 | + $(backdrop).remove() |
|---|
| 718 | + $(toggle).each(function () { |
|---|
| 719 | + var $parent = getParent($(this)) |
|---|
| 720 | + var relatedTarget = { relatedTarget: this } |
|---|
| 721 | + if (!$parent.hasClass('open')) return |
|---|
| 722 | + $parent.trigger(e = $.Event('hide.bs.dropdown', relatedTarget)) |
|---|
| 723 | + if (e.isDefaultPrevented()) return |
|---|
| 724 | + $parent.removeClass('open').trigger('hidden.bs.dropdown', relatedTarget) |
|---|
| 725 | + }) |
|---|
| 726 | + } |
|---|
| 727 | + |
|---|
| 728 | + function getParent($this) { |
|---|
| 729 | + var selector = $this.attr('data-target') |
|---|
| 730 | + |
|---|
| 731 | + if (!selector) { |
|---|
| 732 | + selector = $this.attr('href') |
|---|
| 733 | + selector = selector && /#[A-Za-z]/.test(selector) && selector.replace(/.*(?=#[^\s]*$)/, '') //strip for ie7 |
|---|
| 734 | + } |
|---|
| 735 | + |
|---|
| 736 | + var $parent = selector && $(selector) |
|---|
| 737 | + |
|---|
| 738 | + return $parent && $parent.length ? $parent : $this.parent() |
|---|
| 739 | + } |
|---|
| 740 | + |
|---|
| 741 | + |
|---|
| 742 | + // DROPDOWN PLUGIN DEFINITION |
|---|
| 743 | + // ========================== |
|---|
| 744 | + |
|---|
| 745 | + var old = $.fn.dropdown |
|---|
| 746 | + |
|---|
| 747 | + $.fn.dropdown = function (option) { |
|---|
| 748 | + return this.each(function () { |
|---|
| 749 | + var $this = $(this) |
|---|
| 750 | + var data = $this.data('bs.dropdown') |
|---|
| 751 | + |
|---|
| 752 | + if (!data) $this.data('bs.dropdown', (data = new Dropdown(this))) |
|---|
| 753 | + if (typeof option == 'string') data[option].call($this) |
|---|
| 754 | + }) |
|---|
| 755 | + } |
|---|
| 756 | + |
|---|
| 757 | + $.fn.dropdown.Constructor = Dropdown |
|---|
| 758 | + |
|---|
| 759 | + |
|---|
| 760 | + // DROPDOWN NO CONFLICT |
|---|
| 761 | + // ==================== |
|---|
| 762 | + |
|---|
| 763 | + $.fn.dropdown.noConflict = function () { |
|---|
| 764 | + $.fn.dropdown = old |
|---|
| 765 | + return this |
|---|
| 766 | + } |
|---|
| 767 | + |
|---|
| 768 | + |
|---|
| 769 | + // APPLY TO STANDARD DROPDOWN ELEMENTS |
|---|
| 770 | + // =================================== |
|---|
| 771 | + |
|---|
| 772 | + $(document) |
|---|
| 773 | + .on('click.bs.dropdown.data-api', clearMenus) |
|---|
| 774 | + .on('click.bs.dropdown.data-api', '.dropdown form', function (e) { e.stopPropagation() }) |
|---|
| 775 | + .on('click.bs.dropdown.data-api', toggle, Dropdown.prototype.toggle) |
|---|
| 776 | + .on('keydown.bs.dropdown.data-api', toggle + ', [role=menu], [role=listbox]', Dropdown.prototype.keydown) |
|---|
| 777 | + |
|---|
| 778 | +}(jQuery); |
|---|
| 779 | + |
|---|
| 780 | +/* ======================================================================== |
|---|
| 781 | + * Bootstrap: modal.js v3.1.0 |
|---|
| 782 | + * http://getbootstrap.com/javascript/#modals |
|---|
| 783 | + * ======================================================================== |
|---|
| 784 | + * Copyright 2011-2014 Twitter, Inc. |
|---|
| 785 | + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) |
|---|
| 786 | + * ======================================================================== */ |
|---|
| 787 | + |
|---|
| 788 | + |
|---|
| 789 | ++function ($) { |
|---|
| 790 | + 'use strict'; |
|---|
| 791 | + |
|---|
| 792 | + // MODAL CLASS DEFINITION |
|---|
| 793 | + // ====================== |
|---|
| 794 | + |
|---|
| 795 | + var Modal = function (element, options) { |
|---|
| 796 | + this.options = options |
|---|
| 797 | + this.$element = $(element) |
|---|
| 798 | + this.$backdrop = |
|---|
| 799 | + this.isShown = null |
|---|
| 800 | + |
|---|
| 801 | + if (this.options.remote) { |
|---|
| 802 | + this.$element |
|---|
| 803 | + .find('.modal-content') |
|---|
| 804 | + .load(this.options.remote, $.proxy(function () { |
|---|
| 805 | + this.$element.trigger('loaded.bs.modal') |
|---|
| 806 | + }, this)) |
|---|
| 807 | + } |
|---|
| 808 | + } |
|---|
| 809 | + |
|---|
| 810 | + Modal.DEFAULTS = { |
|---|
| 811 | + backdrop: true, |
|---|
| 812 | + keyboard: true, |
|---|
| 813 | + show: true |
|---|
| 814 | + } |
|---|
| 815 | + |
|---|
| 816 | + Modal.prototype.toggle = function (_relatedTarget) { |
|---|
| 817 | + return this[!this.isShown ? 'show' : 'hide'](_relatedTarget) |
|---|
| 818 | + } |
|---|
| 819 | + |
|---|
| 820 | + Modal.prototype.show = function (_relatedTarget) { |
|---|
| 821 | + var that = this |
|---|
| 822 | + var e = $.Event('show.bs.modal', { relatedTarget: _relatedTarget }) |
|---|
| 823 | + |
|---|
| 824 | + this.$element.trigger(e) |
|---|
| 825 | + |
|---|
| 826 | + if (this.isShown || e.isDefaultPrevented()) return |
|---|
| 827 | + |
|---|
| 828 | + this.isShown = true |
|---|
| 829 | + |
|---|
| 830 | + this.escape() |
|---|
| 831 | + |
|---|
| 832 | + this.$element.on('click.dismiss.bs.modal', '[data-dismiss="modal"]', $.proxy(this.hide, this)) |
|---|
| 833 | + |
|---|
| 834 | + this.backdrop(function () { |
|---|
| 835 | + var transition = $.support.transition && that.$element.hasClass('fade') |
|---|
| 836 | + |
|---|
| 837 | + if (!that.$element.parent().length) { |
|---|
| 838 | + that.$element.appendTo(document.body) // don't move modals dom position |
|---|
| 839 | + } |
|---|
| 840 | + |
|---|
| 841 | + that.$element |
|---|
| 842 | + .show() |
|---|
| 843 | + .scrollTop(0) |
|---|
| 844 | + |
|---|
| 845 | + if (transition) { |
|---|
| 846 | + that.$element[0].offsetWidth // force reflow |
|---|
| 847 | + } |
|---|
| 848 | + |
|---|
| 849 | + that.$element |
|---|
| 850 | + .addClass('in') |
|---|
| 851 | + .attr('aria-hidden', false) |
|---|
| 852 | + |
|---|
| 853 | + that.enforceFocus() |
|---|
| 854 | + |
|---|
| 855 | + var e = $.Event('shown.bs.modal', { relatedTarget: _relatedTarget }) |
|---|
| 856 | + |
|---|
| 857 | + transition ? |
|---|
| 858 | + that.$element.find('.modal-dialog') // wait for modal to slide in |
|---|
| 859 | + .one($.support.transition.end, function () { |
|---|
| 860 | + that.$element.focus().trigger(e) |
|---|
| 861 | + }) |
|---|
| 862 | + .emulateTransitionEnd(300) : |
|---|
| 863 | + that.$element.focus().trigger(e) |
|---|
| 864 | + }) |
|---|
| 865 | + } |
|---|
| 866 | + |
|---|
| 867 | + Modal.prototype.hide = function (e) { |
|---|
| 868 | + if (e) e.preventDefault() |
|---|
| 869 | + |
|---|
| 870 | + e = $.Event('hide.bs.modal') |
|---|
| 871 | + |
|---|
| 872 | + this.$element.trigger(e) |
|---|
| 873 | + |
|---|
| 874 | + if (!this.isShown || e.isDefaultPrevented()) return |
|---|
| 875 | + |
|---|
| 876 | + this.isShown = false |
|---|
| 877 | + |
|---|
| 878 | + this.escape() |
|---|
| 879 | + |
|---|
| 880 | + $(document).off('focusin.bs.modal') |
|---|
| 881 | + |
|---|
| 882 | + this.$element |
|---|
| 883 | + .removeClass('in') |
|---|
| 884 | + .attr('aria-hidden', true) |
|---|
| 885 | + .off('click.dismiss.bs.modal') |
|---|
| 886 | + |
|---|
| 887 | + $.support.transition && this.$element.hasClass('fade') ? |
|---|
| 888 | + this.$element |
|---|
| 889 | + .one($.support.transition.end, $.proxy(this.hideModal, this)) |
|---|
| 890 | + .emulateTransitionEnd(300) : |
|---|
| 891 | + this.hideModal() |
|---|
| 892 | + } |
|---|
| 893 | + |
|---|
| 894 | + Modal.prototype.enforceFocus = function () { |
|---|
| 895 | + $(document) |
|---|
| 896 | + .off('focusin.bs.modal') // guard against infinite focus loop |
|---|
| 897 | + .on('focusin.bs.modal', $.proxy(function (e) { |
|---|
| 898 | + if (this.$element[0] !== e.target && !this.$element.has(e.target).length) { |
|---|
| 899 | + this.$element.focus() |
|---|
| 900 | + } |
|---|
| 901 | + }, this)) |
|---|
| 902 | + } |
|---|
| 903 | + |
|---|
| 904 | + Modal.prototype.escape = function () { |
|---|
| 905 | + if (this.isShown && this.options.keyboard) { |
|---|
| 906 | + this.$element.on('keyup.dismiss.bs.modal', $.proxy(function (e) { |
|---|
| 907 | + e.which == 27 && this.hide() |
|---|
| 908 | + }, this)) |
|---|
| 909 | + } else if (!this.isShown) { |
|---|
| 910 | + this.$element.off('keyup.dismiss.bs.modal') |
|---|
| 911 | + } |
|---|
| 912 | + } |
|---|
| 913 | + |
|---|
| 914 | + Modal.prototype.hideModal = function () { |
|---|
| 915 | + var that = this |
|---|
| 916 | + this.$element.hide() |
|---|
| 917 | + this.backdrop(function () { |
|---|
| 918 | + that.removeBackdrop() |
|---|
| 919 | + that.$element.trigger('hidden.bs.modal') |
|---|
| 920 | + }) |
|---|
| 921 | + } |
|---|
| 922 | + |
|---|
| 923 | + Modal.prototype.removeBackdrop = function () { |
|---|
| 924 | + this.$backdrop && this.$backdrop.remove() |
|---|
| 925 | + this.$backdrop = null |
|---|
| 926 | + } |
|---|
| 927 | + |
|---|
| 928 | + Modal.prototype.backdrop = function (callback) { |
|---|
| 929 | + var animate = this.$element.hasClass('fade') ? 'fade' : '' |
|---|
| 930 | + |
|---|
| 931 | + if (this.isShown && this.options.backdrop) { |
|---|
| 932 | + var doAnimate = $.support.transition && animate |
|---|
| 933 | + |
|---|
| 934 | + this.$backdrop = $('<div class="modal-backdrop ' + animate + '" />') |
|---|
| 935 | + .appendTo(document.body) |
|---|
| 936 | + |
|---|
| 937 | + this.$element.on('click.dismiss.bs.modal', $.proxy(function (e) { |
|---|
| 938 | + if (e.target !== e.currentTarget) return |
|---|
| 939 | + this.options.backdrop == 'static' |
|---|
| 940 | + ? this.$element[0].focus.call(this.$element[0]) |
|---|
| 941 | + : this.hide.call(this) |
|---|
| 942 | + }, this)) |
|---|
| 943 | + |
|---|
| 944 | + if (doAnimate) this.$backdrop[0].offsetWidth // force reflow |
|---|
| 945 | + |
|---|
| 946 | + this.$backdrop.addClass('in') |
|---|
| 947 | + |
|---|
| 948 | + if (!callback) return |
|---|
| 949 | + |
|---|
| 950 | + doAnimate ? |
|---|
| 951 | + this.$backdrop |
|---|
| 952 | + .one($.support.transition.end, callback) |
|---|
| 953 | + .emulateTransitionEnd(150) : |
|---|
| 954 | + callback() |
|---|
| 955 | + |
|---|
| 956 | + } else if (!this.isShown && this.$backdrop) { |
|---|
| 957 | + this.$backdrop.removeClass('in') |
|---|
| 958 | + |
|---|
| 959 | + $.support.transition && this.$element.hasClass('fade') ? |
|---|
| 960 | + this.$backdrop |
|---|
| 961 | + .one($.support.transition.end, callback) |
|---|
| 962 | + .emulateTransitionEnd(150) : |
|---|
| 963 | + callback() |
|---|
| 964 | + |
|---|
| 965 | + } else if (callback) { |
|---|
| 966 | + callback() |
|---|
| 967 | + } |
|---|
| 968 | + } |
|---|
| 969 | + |
|---|
| 970 | + |
|---|
| 971 | + // MODAL PLUGIN DEFINITION |
|---|
| 972 | + // ======================= |
|---|
| 973 | + |
|---|
| 974 | + var old = $.fn.modal |
|---|
| 975 | + |
|---|
| 976 | + $.fn.modal = function (option, _relatedTarget) { |
|---|
| 977 | + return this.each(function () { |
|---|
| 978 | + var $this = $(this) |
|---|
| 979 | + var data = $this.data('bs.modal') |
|---|
| 980 | + var options = $.extend({}, Modal.DEFAULTS, $this.data(), typeof option == 'object' && option) |
|---|
| 981 | + |
|---|
| 982 | + if (!data) $this.data('bs.modal', (data = new Modal(this, options))) |
|---|
| 983 | + if (typeof option == 'string') data[option](_relatedTarget) |
|---|
| 984 | + else if (options.show) data.show(_relatedTarget) |
|---|
| 985 | + }) |
|---|
| 986 | + } |
|---|
| 987 | + |
|---|
| 988 | + $.fn.modal.Constructor = Modal |
|---|
| 989 | + |
|---|
| 990 | + |
|---|
| 991 | + // MODAL NO CONFLICT |
|---|
| 992 | + // ================= |
|---|
| 993 | + |
|---|
| 994 | + $.fn.modal.noConflict = function () { |
|---|
| 995 | + $.fn.modal = old |
|---|
| 996 | + return this |
|---|
| 997 | + } |
|---|
| 998 | + |
|---|
| 999 | + |
|---|
| 1000 | + // MODAL DATA-API |
|---|
| 1001 | + // ============== |
|---|
| 1002 | + |
|---|
| 1003 | + $(document).on('click.bs.modal.data-api', '[data-toggle="modal"]', function (e) { |
|---|
| 1004 | + var $this = $(this) |
|---|
| 1005 | + var href = $this.attr('href') |
|---|
| 1006 | + var $target = $($this.attr('data-target') || (href && href.replace(/.*(?=#[^\s]+$)/, ''))) //strip for ie7 |
|---|
| 1007 | + var option = $target.data('bs.modal') ? 'toggle' : $.extend({ remote: !/#/.test(href) && href }, $target.data(), $this.data()) |
|---|
| 1008 | + |
|---|
| 1009 | + if ($this.is('a')) e.preventDefault() |
|---|
| 1010 | + |
|---|
| 1011 | + $target |
|---|
| 1012 | + .modal(option, this) |
|---|
| 1013 | + .one('hide', function () { |
|---|
| 1014 | + $this.is(':visible') && $this.focus() |
|---|
| 1015 | + }) |
|---|
| 1016 | + }) |
|---|
| 1017 | + |
|---|
| 1018 | + $(document) |
|---|
| 1019 | + .on('show.bs.modal', '.modal', function () { $(document.body).addClass('modal-open') }) |
|---|
| 1020 | + .on('hidden.bs.modal', '.modal', function () { $(document.body).removeClass('modal-open') }) |
|---|
| 1021 | + |
|---|
| 1022 | +}(jQuery); |
|---|
| 1023 | + |
|---|
| 1024 | +/* ======================================================================== |
|---|
| 1025 | + * Bootstrap: tooltip.js v3.1.0 |
|---|
| 1026 | + * http://getbootstrap.com/javascript/#tooltip |
|---|
| 1027 | + * Inspired by the original jQuery.tipsy by Jason Frame |
|---|
| 1028 | + * ======================================================================== |
|---|
| 1029 | + * Copyright 2011-2014 Twitter, Inc. |
|---|
| 1030 | + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) |
|---|
| 1031 | + * ======================================================================== */ |
|---|
| 1032 | + |
|---|
| 1033 | + |
|---|
| 1034 | ++function ($) { |
|---|
| 1035 | + 'use strict'; |
|---|
| 1036 | + |
|---|
| 1037 | + // TOOLTIP PUBLIC CLASS DEFINITION |
|---|
| 1038 | + // =============================== |
|---|
| 1039 | + |
|---|
| 1040 | + var Tooltip = function (element, options) { |
|---|
| 1041 | + this.type = |
|---|
| 1042 | + this.options = |
|---|
| 1043 | + this.enabled = |
|---|
| 1044 | + this.timeout = |
|---|
| 1045 | + this.hoverState = |
|---|
| 1046 | + this.$element = null |
|---|
| 1047 | + |
|---|
| 1048 | + this.init('tooltip', element, options) |
|---|
| 1049 | + } |
|---|
| 1050 | + |
|---|
| 1051 | + Tooltip.DEFAULTS = { |
|---|
| 1052 | + animation: true, |
|---|
| 1053 | + placement: 'top', |
|---|
| 1054 | + selector: false, |
|---|
| 1055 | + template: '<div class="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>', |
|---|
| 1056 | + trigger: 'hover focus', |
|---|
| 1057 | + title: '', |
|---|
| 1058 | + delay: 0, |
|---|
| 1059 | + html: false, |
|---|
| 1060 | + container: false |
|---|
| 1061 | + } |
|---|
| 1062 | + |
|---|
| 1063 | + Tooltip.prototype.init = function (type, element, options) { |
|---|
| 1064 | + this.enabled = true |
|---|
| 1065 | + this.type = type |
|---|
| 1066 | + this.$element = $(element) |
|---|
| 1067 | + this.options = this.getOptions(options) |
|---|
| 1068 | + |
|---|
| 1069 | + var triggers = this.options.trigger.split(' ') |
|---|
| 1070 | + |
|---|
| 1071 | + for (var i = triggers.length; i--;) { |
|---|
| 1072 | + var trigger = triggers[i] |
|---|
| 1073 | + |
|---|
| 1074 | + if (trigger == 'click') { |
|---|
| 1075 | + this.$element.on('click.' + this.type, this.options.selector, $.proxy(this.toggle, this)) |
|---|
| 1076 | + } else if (trigger != 'manual') { |
|---|
| 1077 | + var eventIn = trigger == 'hover' ? 'mouseenter' : 'focusin' |
|---|
| 1078 | + var eventOut = trigger == 'hover' ? 'mouseleave' : 'focusout' |
|---|
| 1079 | + |
|---|
| 1080 | + this.$element.on(eventIn + '.' + this.type, this.options.selector, $.proxy(this.enter, this)) |
|---|
| 1081 | + this.$element.on(eventOut + '.' + this.type, this.options.selector, $.proxy(this.leave, this)) |
|---|
| 1082 | + } |
|---|
| 1083 | + } |
|---|
| 1084 | + |
|---|
| 1085 | + this.options.selector ? |
|---|
| 1086 | + (this._options = $.extend({}, this.options, { trigger: 'manual', selector: '' })) : |
|---|
| 1087 | + this.fixTitle() |
|---|
| 1088 | + } |
|---|
| 1089 | + |
|---|
| 1090 | + Tooltip.prototype.getDefaults = function () { |
|---|
| 1091 | + return Tooltip.DEFAULTS |
|---|
| 1092 | + } |
|---|
| 1093 | + |
|---|
| 1094 | + Tooltip.prototype.getOptions = function (options) { |
|---|
| 1095 | + options = $.extend({}, this.getDefaults(), this.$element.data(), options) |
|---|
| 1096 | + |
|---|
| 1097 | + if (options.delay && typeof options.delay == 'number') { |
|---|
| 1098 | + options.delay = { |
|---|
| 1099 | + show: options.delay, |
|---|
| 1100 | + hide: options.delay |
|---|
| 1101 | + } |
|---|
| 1102 | + } |
|---|
| 1103 | + |
|---|
| 1104 | + return options |
|---|
| 1105 | + } |
|---|
| 1106 | + |
|---|
| 1107 | + Tooltip.prototype.getDelegateOptions = function () { |
|---|
| 1108 | + var options = {} |
|---|
| 1109 | + var defaults = this.getDefaults() |
|---|
| 1110 | + |
|---|
| 1111 | + this._options && $.each(this._options, function (key, value) { |
|---|
| 1112 | + if (defaults[key] != value) options[key] = value |
|---|
| 1113 | + }) |
|---|
| 1114 | + |
|---|
| 1115 | + return options |
|---|
| 1116 | + } |
|---|
| 1117 | + |
|---|
| 1118 | + Tooltip.prototype.enter = function (obj) { |
|---|
| 1119 | + var self = obj instanceof this.constructor ? |
|---|
| 1120 | + obj : $(obj.currentTarget)[this.type](this.getDelegateOptions()).data('bs.' + this.type) |
|---|
| 1121 | + |
|---|
| 1122 | + clearTimeout(self.timeout) |
|---|
| 1123 | + |
|---|
| 1124 | + self.hoverState = 'in' |
|---|
| 1125 | + |
|---|
| 1126 | + if (!self.options.delay || !self.options.delay.show) return self.show() |
|---|
| 1127 | + |
|---|
| 1128 | + self.timeout = setTimeout(function () { |
|---|
| 1129 | + if (self.hoverState == 'in') self.show() |
|---|
| 1130 | + }, self.options.delay.show) |
|---|
| 1131 | + } |
|---|
| 1132 | + |
|---|
| 1133 | + Tooltip.prototype.leave = function (obj) { |
|---|
| 1134 | + var self = obj instanceof this.constructor ? |
|---|
| 1135 | + obj : $(obj.currentTarget)[this.type](this.getDelegateOptions()).data('bs.' + this.type) |
|---|
| 1136 | + |
|---|
| 1137 | + clearTimeout(self.timeout) |
|---|
| 1138 | + |
|---|
| 1139 | + self.hoverState = 'out' |
|---|
| 1140 | + |
|---|
| 1141 | + if (!self.options.delay || !self.options.delay.hide) return self.hide() |
|---|
| 1142 | + |
|---|
| 1143 | + self.timeout = setTimeout(function () { |
|---|
| 1144 | + if (self.hoverState == 'out') self.hide() |
|---|
| 1145 | + }, self.options.delay.hide) |
|---|
| 1146 | + } |
|---|
| 1147 | + |
|---|
| 1148 | + Tooltip.prototype.show = function () { |
|---|
| 1149 | + var e = $.Event('show.bs.' + this.type) |
|---|
| 1150 | + |
|---|
| 1151 | + if (this.hasContent() && this.enabled) { |
|---|
| 1152 | + this.$element.trigger(e) |
|---|
| 1153 | + |
|---|
| 1154 | + if (e.isDefaultPrevented()) return |
|---|
| 1155 | + var that = this; |
|---|
| 1156 | + |
|---|
| 1157 | + var $tip = this.tip() |
|---|
| 1158 | + |
|---|
| 1159 | + this.setContent() |
|---|
| 1160 | + |
|---|
| 1161 | + if (this.options.animation) $tip.addClass('fade') |
|---|
| 1162 | + |
|---|
| 1163 | + var placement = typeof this.options.placement == 'function' ? |
|---|
| 1164 | + this.options.placement.call(this, $tip[0], this.$element[0]) : |
|---|
| 1165 | + this.options.placement |
|---|
| 1166 | + |
|---|
| 1167 | + var autoToken = /\s?auto?\s?/i |
|---|
| 1168 | + var autoPlace = autoToken.test(placement) |
|---|
| 1169 | + if (autoPlace) placement = placement.replace(autoToken, '') || 'top' |
|---|
| 1170 | + |
|---|
| 1171 | + $tip |
|---|
| 1172 | + .detach() |
|---|
| 1173 | + .css({ top: 0, left: 0, display: 'block' }) |
|---|
| 1174 | + .addClass(placement) |
|---|
| 1175 | + |
|---|
| 1176 | + this.options.container ? $tip.appendTo(this.options.container) : $tip.insertAfter(this.$element) |
|---|
| 1177 | + |
|---|
| 1178 | + var pos = this.getPosition() |
|---|
| 1179 | + var actualWidth = $tip[0].offsetWidth |
|---|
| 1180 | + var actualHeight = $tip[0].offsetHeight |
|---|
| 1181 | + |
|---|
| 1182 | + if (autoPlace) { |
|---|
| 1183 | + var $parent = this.$element.parent() |
|---|
| 1184 | + |
|---|
| 1185 | + var orgPlacement = placement |
|---|
| 1186 | + var docScroll = document.documentElement.scrollTop || document.body.scrollTop |
|---|
| 1187 | + var parentWidth = this.options.container == 'body' ? window.innerWidth : $parent.outerWidth() |
|---|
| 1188 | + var parentHeight = this.options.container == 'body' ? window.innerHeight : $parent.outerHeight() |
|---|
| 1189 | + var parentLeft = this.options.container == 'body' ? 0 : $parent.offset().left |
|---|
| 1190 | + |
|---|
| 1191 | + placement = placement == 'bottom' && pos.top + pos.height + actualHeight - docScroll > parentHeight ? 'top' : |
|---|
| 1192 | + placement == 'top' && pos.top - docScroll - actualHeight < 0 ? 'bottom' : |
|---|
| 1193 | + placement == 'right' && pos.right + actualWidth > parentWidth ? 'left' : |
|---|
| 1194 | + placement == 'left' && pos.left - actualWidth < parentLeft ? 'right' : |
|---|
| 1195 | + placement |
|---|
| 1196 | + |
|---|
| 1197 | + $tip |
|---|
| 1198 | + .removeClass(orgPlacement) |
|---|
| 1199 | + .addClass(placement) |
|---|
| 1200 | + } |
|---|
| 1201 | + |
|---|
| 1202 | + var calculatedOffset = this.getCalculatedOffset(placement, pos, actualWidth, actualHeight) |
|---|
| 1203 | + |
|---|
| 1204 | + this.applyPlacement(calculatedOffset, placement) |
|---|
| 1205 | + this.hoverState = null |
|---|
| 1206 | + |
|---|
| 1207 | + var complete = function() { |
|---|
| 1208 | + that.$element.trigger('shown.bs.' + that.type) |
|---|
| 1209 | + } |
|---|
| 1210 | + |
|---|
| 1211 | + $.support.transition && this.$tip.hasClass('fade') ? |
|---|
| 1212 | + $tip |
|---|
| 1213 | + .one($.support.transition.end, complete) |
|---|
| 1214 | + .emulateTransitionEnd(150) : |
|---|
| 1215 | + complete() |
|---|
| 1216 | + } |
|---|
| 1217 | + } |
|---|
| 1218 | + |
|---|
| 1219 | + Tooltip.prototype.applyPlacement = function (offset, placement) { |
|---|
| 1220 | + var replace |
|---|
| 1221 | + var $tip = this.tip() |
|---|
| 1222 | + var width = $tip[0].offsetWidth |
|---|
| 1223 | + var height = $tip[0].offsetHeight |
|---|
| 1224 | + |
|---|
| 1225 | + // manually read margins because getBoundingClientRect includes difference |
|---|
| 1226 | + var marginTop = parseInt($tip.css('margin-top'), 10) |
|---|
| 1227 | + var marginLeft = parseInt($tip.css('margin-left'), 10) |
|---|
| 1228 | + |
|---|
| 1229 | + // we must check for NaN for ie 8/9 |
|---|
| 1230 | + if (isNaN(marginTop)) marginTop = 0 |
|---|
| 1231 | + if (isNaN(marginLeft)) marginLeft = 0 |
|---|
| 1232 | + |
|---|
| 1233 | + offset.top = offset.top + marginTop |
|---|
| 1234 | + offset.left = offset.left + marginLeft |
|---|
| 1235 | + |
|---|
| 1236 | + // $.fn.offset doesn't round pixel values |
|---|
| 1237 | + // so we use setOffset directly with our own function B-0 |
|---|
| 1238 | + $.offset.setOffset($tip[0], $.extend({ |
|---|
| 1239 | + using: function (props) { |
|---|
| 1240 | + $tip.css({ |
|---|
| 1241 | + top: Math.round(props.top), |
|---|
| 1242 | + left: Math.round(props.left) |
|---|
| 1243 | + }) |
|---|
| 1244 | + } |
|---|
| 1245 | + }, offset), 0) |
|---|
| 1246 | + |
|---|
| 1247 | + $tip.addClass('in') |
|---|
| 1248 | + |
|---|
| 1249 | + // check to see if placing tip in new offset caused the tip to resize itself |
|---|
| 1250 | + var actualWidth = $tip[0].offsetWidth |
|---|
| 1251 | + var actualHeight = $tip[0].offsetHeight |
|---|
| 1252 | + |
|---|
| 1253 | + if (placement == 'top' && actualHeight != height) { |
|---|
| 1254 | + replace = true |
|---|
| 1255 | + offset.top = offset.top + height - actualHeight |
|---|
| 1256 | + } |
|---|
| 1257 | + |
|---|
| 1258 | + if (/bottom|top/.test(placement)) { |
|---|
| 1259 | + var delta = 0 |
|---|
| 1260 | + |
|---|
| 1261 | + if (offset.left < 0) { |
|---|
| 1262 | + delta = offset.left * -2 |
|---|
| 1263 | + offset.left = 0 |
|---|
| 1264 | + |
|---|
| 1265 | + $tip.offset(offset) |
|---|
| 1266 | + |
|---|
| 1267 | + actualWidth = $tip[0].offsetWidth |
|---|
| 1268 | + actualHeight = $tip[0].offsetHeight |
|---|
| 1269 | + } |
|---|
| 1270 | + |
|---|
| 1271 | + this.replaceArrow(delta - width + actualWidth, actualWidth, 'left') |
|---|
| 1272 | + } else { |
|---|
| 1273 | + this.replaceArrow(actualHeight - height, actualHeight, 'top') |
|---|
| 1274 | + } |
|---|
| 1275 | + |
|---|
| 1276 | + if (replace) $tip.offset(offset) |
|---|
| 1277 | + } |
|---|
| 1278 | + |
|---|
| 1279 | + Tooltip.prototype.replaceArrow = function (delta, dimension, position) { |
|---|
| 1280 | + this.arrow().css(position, delta ? (50 * (1 - delta / dimension) + '%') : '') |
|---|
| 1281 | + } |
|---|
| 1282 | + |
|---|
| 1283 | + Tooltip.prototype.setContent = function () { |
|---|
| 1284 | + var $tip = this.tip() |
|---|
| 1285 | + var title = this.getTitle() |
|---|
| 1286 | + |
|---|
| 1287 | + $tip.find('.tooltip-inner')[this.options.html ? 'html' : 'text'](title) |
|---|
| 1288 | + $tip.removeClass('fade in top bottom left right') |
|---|
| 1289 | + } |
|---|
| 1290 | + |
|---|
| 1291 | + Tooltip.prototype.hide = function () { |
|---|
| 1292 | + var that = this |
|---|
| 1293 | + var $tip = this.tip() |
|---|
| 1294 | + var e = $.Event('hide.bs.' + this.type) |
|---|
| 1295 | + |
|---|
| 1296 | + function complete() { |
|---|
| 1297 | + if (that.hoverState != 'in') $tip.detach() |
|---|
| 1298 | + that.$element.trigger('hidden.bs.' + that.type) |
|---|
| 1299 | + } |
|---|
| 1300 | + |
|---|
| 1301 | + this.$element.trigger(e) |
|---|
| 1302 | + |
|---|
| 1303 | + if (e.isDefaultPrevented()) return |
|---|
| 1304 | + |
|---|
| 1305 | + $tip.removeClass('in') |
|---|
| 1306 | + |
|---|
| 1307 | + $.support.transition && this.$tip.hasClass('fade') ? |
|---|
| 1308 | + $tip |
|---|
| 1309 | + .one($.support.transition.end, complete) |
|---|
| 1310 | + .emulateTransitionEnd(150) : |
|---|
| 1311 | + complete() |
|---|
| 1312 | + |
|---|
| 1313 | + this.hoverState = null |
|---|
| 1314 | + |
|---|
| 1315 | + return this |
|---|
| 1316 | + } |
|---|
| 1317 | + |
|---|
| 1318 | + Tooltip.prototype.fixTitle = function () { |
|---|
| 1319 | + var $e = this.$element |
|---|
| 1320 | + if ($e.attr('title') || typeof($e.attr('data-original-title')) != 'string') { |
|---|
| 1321 | + $e.attr('data-original-title', $e.attr('title') || '').attr('title', '') |
|---|
| 1322 | + } |
|---|
| 1323 | + } |
|---|
| 1324 | + |
|---|
| 1325 | + Tooltip.prototype.hasContent = function () { |
|---|
| 1326 | + return this.getTitle() |
|---|
| 1327 | + } |
|---|
| 1328 | + |
|---|
| 1329 | + Tooltip.prototype.getPosition = function () { |
|---|
| 1330 | + var el = this.$element[0] |
|---|
| 1331 | + return $.extend({}, (typeof el.getBoundingClientRect == 'function') ? el.getBoundingClientRect() : { |
|---|
| 1332 | + width: el.offsetWidth, |
|---|
| 1333 | + height: el.offsetHeight |
|---|
| 1334 | + }, this.$element.offset()) |
|---|
| 1335 | + } |
|---|
| 1336 | + |
|---|
| 1337 | + Tooltip.prototype.getCalculatedOffset = function (placement, pos, actualWidth, actualHeight) { |
|---|
| 1338 | + return placement == 'bottom' ? { top: pos.top + pos.height, left: pos.left + pos.width / 2 - actualWidth / 2 } : |
|---|
| 1339 | + placement == 'top' ? { top: pos.top - actualHeight, left: pos.left + pos.width / 2 - actualWidth / 2 } : |
|---|
| 1340 | + placement == 'left' ? { top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left - actualWidth } : |
|---|
| 1341 | + /* placement == 'right' */ { top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left + pos.width } |
|---|
| 1342 | + } |
|---|
| 1343 | + |
|---|
| 1344 | + Tooltip.prototype.getTitle = function () { |
|---|
| 1345 | + var title |
|---|
| 1346 | + var $e = this.$element |
|---|
| 1347 | + var o = this.options |
|---|
| 1348 | + |
|---|
| 1349 | + title = $e.attr('data-original-title') |
|---|
| 1350 | + || (typeof o.title == 'function' ? o.title.call($e[0]) : o.title) |
|---|
| 1351 | + |
|---|
| 1352 | + return title |
|---|
| 1353 | + } |
|---|
| 1354 | + |
|---|
| 1355 | + Tooltip.prototype.tip = function () { |
|---|
| 1356 | + return this.$tip = this.$tip || $(this.options.template) |
|---|
| 1357 | + } |
|---|
| 1358 | + |
|---|
| 1359 | + Tooltip.prototype.arrow = function () { |
|---|
| 1360 | + return this.$arrow = this.$arrow || this.tip().find('.tooltip-arrow') |
|---|
| 1361 | + } |
|---|
| 1362 | + |
|---|
| 1363 | + Tooltip.prototype.validate = function () { |
|---|
| 1364 | + if (!this.$element[0].parentNode) { |
|---|
| 1365 | + this.hide() |
|---|
| 1366 | + this.$element = null |
|---|
| 1367 | + this.options = null |
|---|
| 1368 | + } |
|---|
| 1369 | + } |
|---|
| 1370 | + |
|---|
| 1371 | + Tooltip.prototype.enable = function () { |
|---|
| 1372 | + this.enabled = true |
|---|
| 1373 | + } |
|---|
| 1374 | + |
|---|
| 1375 | + Tooltip.prototype.disable = function () { |
|---|
| 1376 | + this.enabled = false |
|---|
| 1377 | + } |
|---|
| 1378 | + |
|---|
| 1379 | + Tooltip.prototype.toggleEnabled = function () { |
|---|
| 1380 | + this.enabled = !this.enabled |
|---|
| 1381 | + } |
|---|
| 1382 | + |
|---|
| 1383 | + Tooltip.prototype.toggle = function (e) { |
|---|
| 1384 | + var self = e ? $(e.currentTarget)[this.type](this.getDelegateOptions()).data('bs.' + this.type) : this |
|---|
| 1385 | + self.tip().hasClass('in') ? self.leave(self) : self.enter(self) |
|---|
| 1386 | + } |
|---|
| 1387 | + |
|---|
| 1388 | + Tooltip.prototype.destroy = function () { |
|---|
| 1389 | + clearTimeout(this.timeout) |
|---|
| 1390 | + this.hide().$element.off('.' + this.type).removeData('bs.' + this.type) |
|---|
| 1391 | + } |
|---|
| 1392 | + |
|---|
| 1393 | + |
|---|
| 1394 | + // TOOLTIP PLUGIN DEFINITION |
|---|
| 1395 | + // ========================= |
|---|
| 1396 | + |
|---|
| 1397 | + var old = $.fn.tooltip |
|---|
| 1398 | + |
|---|
| 1399 | + $.fn.tooltip = function (option) { |
|---|
| 1400 | + return this.each(function () { |
|---|
| 1401 | + var $this = $(this) |
|---|
| 1402 | + var data = $this.data('bs.tooltip') |
|---|
| 1403 | + var options = typeof option == 'object' && option |
|---|
| 1404 | + |
|---|
| 1405 | + if (!data && option == 'destroy') return |
|---|
| 1406 | + if (!data) $this.data('bs.tooltip', (data = new Tooltip(this, options))) |
|---|
| 1407 | + if (typeof option == 'string') data[option]() |
|---|
| 1408 | + }) |
|---|
| 1409 | + } |
|---|
| 1410 | + |
|---|
| 1411 | + $.fn.tooltip.Constructor = Tooltip |
|---|
| 1412 | + |
|---|
| 1413 | + |
|---|
| 1414 | + // TOOLTIP NO CONFLICT |
|---|
| 1415 | + // =================== |
|---|
| 1416 | + |
|---|
| 1417 | + $.fn.tooltip.noConflict = function () { |
|---|
| 1418 | + $.fn.tooltip = old |
|---|
| 1419 | + return this |
|---|
| 1420 | + } |
|---|
| 1421 | + |
|---|
| 1422 | +}(jQuery); |
|---|
| 1423 | + |
|---|
| 1424 | +/* ======================================================================== |
|---|
| 1425 | + * Bootstrap: popover.js v3.1.0 |
|---|
| 1426 | + * http://getbootstrap.com/javascript/#popovers |
|---|
| 1427 | + * ======================================================================== |
|---|
| 1428 | + * Copyright 2011-2014 Twitter, Inc. |
|---|
| 1429 | + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) |
|---|
| 1430 | + * ======================================================================== */ |
|---|
| 1431 | + |
|---|
| 1432 | + |
|---|
| 1433 | ++function ($) { |
|---|
| 1434 | + 'use strict'; |
|---|
| 1435 | + |
|---|
| 1436 | + // POPOVER PUBLIC CLASS DEFINITION |
|---|
| 1437 | + // =============================== |
|---|
| 1438 | + |
|---|
| 1439 | + var Popover = function (element, options) { |
|---|
| 1440 | + this.init('popover', element, options) |
|---|
| 1441 | + } |
|---|
| 1442 | + |
|---|
| 1443 | + if (!$.fn.tooltip) throw new Error('Popover requires tooltip.js') |
|---|
| 1444 | + |
|---|
| 1445 | + Popover.DEFAULTS = $.extend({}, $.fn.tooltip.Constructor.DEFAULTS, { |
|---|
| 1446 | + placement: 'right', |
|---|
| 1447 | + trigger: 'click', |
|---|
| 1448 | + content: '', |
|---|
| 1449 | + template: '<div class="popover"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>' |
|---|
| 1450 | + }) |
|---|
| 1451 | + |
|---|
| 1452 | + |
|---|
| 1453 | + // NOTE: POPOVER EXTENDS tooltip.js |
|---|
| 1454 | + // ================================ |
|---|
| 1455 | + |
|---|
| 1456 | + Popover.prototype = $.extend({}, $.fn.tooltip.Constructor.prototype) |
|---|
| 1457 | + |
|---|
| 1458 | + Popover.prototype.constructor = Popover |
|---|
| 1459 | + |
|---|
| 1460 | + Popover.prototype.getDefaults = function () { |
|---|
| 1461 | + return Popover.DEFAULTS |
|---|
| 1462 | + } |
|---|
| 1463 | + |
|---|
| 1464 | + Popover.prototype.setContent = function () { |
|---|
| 1465 | + var $tip = this.tip() |
|---|
| 1466 | + var title = this.getTitle() |
|---|
| 1467 | + var content = this.getContent() |
|---|
| 1468 | + |
|---|
| 1469 | + $tip.find('.popover-title')[this.options.html ? 'html' : 'text'](title) |
|---|
| 1470 | + $tip.find('.popover-content')[ // we use append for html objects to maintain js events |
|---|
| 1471 | + this.options.html ? (typeof content == 'string' ? 'html' : 'append') : 'text' |
|---|
| 1472 | + ](content) |
|---|
| 1473 | + |
|---|
| 1474 | + $tip.removeClass('fade top bottom left right in') |
|---|
| 1475 | + |
|---|
| 1476 | + // IE8 doesn't accept hiding via the `:empty` pseudo selector, we have to do |
|---|
| 1477 | + // this manually by checking the contents. |
|---|
| 1478 | + if (!$tip.find('.popover-title').html()) $tip.find('.popover-title').hide() |
|---|
| 1479 | + } |
|---|
| 1480 | + |
|---|
| 1481 | + Popover.prototype.hasContent = function () { |
|---|
| 1482 | + return this.getTitle() || this.getContent() |
|---|
| 1483 | + } |
|---|
| 1484 | + |
|---|
| 1485 | + Popover.prototype.getContent = function () { |
|---|
| 1486 | + var $e = this.$element |
|---|
| 1487 | + var o = this.options |
|---|
| 1488 | + |
|---|
| 1489 | + return $e.attr('data-content') |
|---|
| 1490 | + || (typeof o.content == 'function' ? |
|---|
| 1491 | + o.content.call($e[0]) : |
|---|
| 1492 | + o.content) |
|---|
| 1493 | + } |
|---|
| 1494 | + |
|---|
| 1495 | + Popover.prototype.arrow = function () { |
|---|
| 1496 | + return this.$arrow = this.$arrow || this.tip().find('.arrow') |
|---|
| 1497 | + } |
|---|
| 1498 | + |
|---|
| 1499 | + Popover.prototype.tip = function () { |
|---|
| 1500 | + if (!this.$tip) this.$tip = $(this.options.template) |
|---|
| 1501 | + return this.$tip |
|---|
| 1502 | + } |
|---|
| 1503 | + |
|---|
| 1504 | + |
|---|
| 1505 | + // POPOVER PLUGIN DEFINITION |
|---|
| 1506 | + // ========================= |
|---|
| 1507 | + |
|---|
| 1508 | + var old = $.fn.popover |
|---|
| 1509 | + |
|---|
| 1510 | + $.fn.popover = function (option) { |
|---|
| 1511 | + return this.each(function () { |
|---|
| 1512 | + var $this = $(this) |
|---|
| 1513 | + var data = $this.data('bs.popover') |
|---|
| 1514 | + var options = typeof option == 'object' && option |
|---|
| 1515 | + |
|---|
| 1516 | + if (!data && option == 'destroy') return |
|---|
| 1517 | + if (!data) $this.data('bs.popover', (data = new Popover(this, options))) |
|---|
| 1518 | + if (typeof option == 'string') data[option]() |
|---|
| 1519 | + }) |
|---|
| 1520 | + } |
|---|
| 1521 | + |
|---|
| 1522 | + $.fn.popover.Constructor = Popover |
|---|
| 1523 | + |
|---|
| 1524 | + |
|---|
| 1525 | + // POPOVER NO CONFLICT |
|---|
| 1526 | + // =================== |
|---|
| 1527 | + |
|---|
| 1528 | + $.fn.popover.noConflict = function () { |
|---|
| 1529 | + $.fn.popover = old |
|---|
| 1530 | + return this |
|---|
| 1531 | + } |
|---|
| 1532 | + |
|---|
| 1533 | +}(jQuery); |
|---|
| 1534 | + |
|---|
| 1535 | +/* ======================================================================== |
|---|
| 1536 | + * Bootstrap: scrollspy.js v3.1.0 |
|---|
| 1537 | + * http://getbootstrap.com/javascript/#scrollspy |
|---|
| 1538 | + * ======================================================================== |
|---|
| 1539 | + * Copyright 2011-2014 Twitter, Inc. |
|---|
| 1540 | + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) |
|---|
| 1541 | + * ======================================================================== */ |
|---|
| 1542 | + |
|---|
| 1543 | + |
|---|
| 1544 | ++function ($) { |
|---|
| 1545 | + 'use strict'; |
|---|
| 1546 | + |
|---|
| 1547 | + // SCROLLSPY CLASS DEFINITION |
|---|
| 1548 | + // ========================== |
|---|
| 1549 | + |
|---|
| 1550 | + function ScrollSpy(element, options) { |
|---|
| 1551 | + var href |
|---|
| 1552 | + var process = $.proxy(this.process, this) |
|---|
| 1553 | + |
|---|
| 1554 | + this.$element = $(element).is('body') ? $(window) : $(element) |
|---|
| 1555 | + this.$body = $('body') |
|---|
| 1556 | + this.$scrollElement = this.$element.on('scroll.bs.scroll-spy.data-api', process) |
|---|
| 1557 | + this.options = $.extend({}, ScrollSpy.DEFAULTS, options) |
|---|
| 1558 | + this.selector = (this.options.target |
|---|
| 1559 | + || ((href = $(element).attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) //strip for ie7 |
|---|
| 1560 | + || '') + ' .nav li > a' |
|---|
| 1561 | + this.offsets = $([]) |
|---|
| 1562 | + this.targets = $([]) |
|---|
| 1563 | + this.activeTarget = null |
|---|
| 1564 | + |
|---|
| 1565 | + this.refresh() |
|---|
| 1566 | + this.process() |
|---|
| 1567 | + } |
|---|
| 1568 | + |
|---|
| 1569 | + ScrollSpy.DEFAULTS = { |
|---|
| 1570 | + offset: 10 |
|---|
| 1571 | + } |
|---|
| 1572 | + |
|---|
| 1573 | + ScrollSpy.prototype.refresh = function () { |
|---|
| 1574 | + var offsetMethod = this.$element[0] == window ? 'offset' : 'position' |
|---|
| 1575 | + |
|---|
| 1576 | + this.offsets = $([]) |
|---|
| 1577 | + this.targets = $([]) |
|---|
| 1578 | + |
|---|
| 1579 | + var self = this |
|---|
| 1580 | + var $targets = this.$body |
|---|
| 1581 | + .find(this.selector) |
|---|
| 1582 | + .map(function () { |
|---|
| 1583 | + var $el = $(this) |
|---|
| 1584 | + var href = $el.data('target') || $el.attr('href') |
|---|
| 1585 | + var $href = /^#./.test(href) && $(href) |
|---|
| 1586 | + |
|---|
| 1587 | + return ($href |
|---|
| 1588 | + && $href.length |
|---|
| 1589 | + && $href.is(':visible') |
|---|
| 1590 | + && [[ $href[offsetMethod]().top + (!$.isWindow(self.$scrollElement.get(0)) && self.$scrollElement.scrollTop()), href ]]) || null |
|---|
| 1591 | + }) |
|---|
| 1592 | + .sort(function (a, b) { return a[0] - b[0] }) |
|---|
| 1593 | + .each(function () { |
|---|
| 1594 | + self.offsets.push(this[0]) |
|---|
| 1595 | + self.targets.push(this[1]) |
|---|
| 1596 | + }) |
|---|
| 1597 | + } |
|---|
| 1598 | + |
|---|
| 1599 | + ScrollSpy.prototype.process = function () { |
|---|
| 1600 | + var scrollTop = this.$scrollElement.scrollTop() + this.options.offset |
|---|
| 1601 | + var scrollHeight = this.$scrollElement[0].scrollHeight || this.$body[0].scrollHeight |
|---|
| 1602 | + var maxScroll = scrollHeight - this.$scrollElement.height() |
|---|
| 1603 | + var offsets = this.offsets |
|---|
| 1604 | + var targets = this.targets |
|---|
| 1605 | + var activeTarget = this.activeTarget |
|---|
| 1606 | + var i |
|---|
| 1607 | + |
|---|
| 1608 | + if (scrollTop >= maxScroll) { |
|---|
| 1609 | + return activeTarget != (i = targets.last()[0]) && this.activate(i) |
|---|
| 1610 | + } |
|---|
| 1611 | + |
|---|
| 1612 | + if (activeTarget && scrollTop <= offsets[0]) { |
|---|
| 1613 | + return activeTarget != (i = targets[0]) && this.activate(i) |
|---|
| 1614 | + } |
|---|
| 1615 | + |
|---|
| 1616 | + for (i = offsets.length; i--;) { |
|---|
| 1617 | + activeTarget != targets[i] |
|---|
| 1618 | + && scrollTop >= offsets[i] |
|---|
| 1619 | + && (!offsets[i + 1] || scrollTop <= offsets[i + 1]) |
|---|
| 1620 | + && this.activate( targets[i] ) |
|---|
| 1621 | + } |
|---|
| 1622 | + } |
|---|
| 1623 | + |
|---|
| 1624 | + ScrollSpy.prototype.activate = function (target) { |
|---|
| 1625 | + this.activeTarget = target |
|---|
| 1626 | + |
|---|
| 1627 | + $(this.selector) |
|---|
| 1628 | + .parentsUntil(this.options.target, '.active') |
|---|
| 1629 | + .removeClass('active') |
|---|
| 1630 | + |
|---|
| 1631 | + var selector = this.selector + |
|---|
| 1632 | + '[data-target="' + target + '"],' + |
|---|
| 1633 | + this.selector + '[href="' + target + '"]' |
|---|
| 1634 | + |
|---|
| 1635 | + var active = $(selector) |
|---|
| 1636 | + .parents('li') |
|---|
| 1637 | + .addClass('active') |
|---|
| 1638 | + |
|---|
| 1639 | + if (active.parent('.dropdown-menu').length) { |
|---|
| 1640 | + active = active |
|---|
| 1641 | + .closest('li.dropdown') |
|---|
| 1642 | + .addClass('active') |
|---|
| 1643 | + } |
|---|
| 1644 | + |
|---|
| 1645 | + active.trigger('activate.bs.scrollspy') |
|---|
| 1646 | + } |
|---|
| 1647 | + |
|---|
| 1648 | + |
|---|
| 1649 | + // SCROLLSPY PLUGIN DEFINITION |
|---|
| 1650 | + // =========================== |
|---|
| 1651 | + |
|---|
| 1652 | + var old = $.fn.scrollspy |
|---|
| 1653 | + |
|---|
| 1654 | + $.fn.scrollspy = function (option) { |
|---|
| 1655 | + return this.each(function () { |
|---|
| 1656 | + var $this = $(this) |
|---|
| 1657 | + var data = $this.data('bs.scrollspy') |
|---|
| 1658 | + var options = typeof option == 'object' && option |
|---|
| 1659 | + |
|---|
| 1660 | + if (!data) $this.data('bs.scrollspy', (data = new ScrollSpy(this, options))) |
|---|
| 1661 | + if (typeof option == 'string') data[option]() |
|---|
| 1662 | + }) |
|---|
| 1663 | + } |
|---|
| 1664 | + |
|---|
| 1665 | + $.fn.scrollspy.Constructor = ScrollSpy |
|---|
| 1666 | + |
|---|
| 1667 | + |
|---|
| 1668 | + // SCROLLSPY NO CONFLICT |
|---|
| 1669 | + // ===================== |
|---|
| 1670 | + |
|---|
| 1671 | + $.fn.scrollspy.noConflict = function () { |
|---|
| 1672 | + $.fn.scrollspy = old |
|---|
| 1673 | + return this |
|---|
| 1674 | + } |
|---|
| 1675 | + |
|---|
| 1676 | + |
|---|
| 1677 | + // SCROLLSPY DATA-API |
|---|
| 1678 | + // ================== |
|---|
| 1679 | + |
|---|
| 1680 | + $(window).on('load', function () { |
|---|
| 1681 | + $('[data-spy="scroll"]').each(function () { |
|---|
| 1682 | + var $spy = $(this) |
|---|
| 1683 | + $spy.scrollspy($spy.data()) |
|---|
| 1684 | + }) |
|---|
| 1685 | + }) |
|---|
| 1686 | + |
|---|
| 1687 | +}(jQuery); |
|---|
| 1688 | + |
|---|
| 1689 | +/* ======================================================================== |
|---|
| 1690 | + * Bootstrap: tab.js v3.1.0 |
|---|
| 1691 | + * http://getbootstrap.com/javascript/#tabs |
|---|
| 1692 | + * ======================================================================== |
|---|
| 1693 | + * Copyright 2011-2014 Twitter, Inc. |
|---|
| 1694 | + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) |
|---|
| 1695 | + * ======================================================================== */ |
|---|
| 1696 | + |
|---|
| 1697 | + |
|---|
| 1698 | ++function ($) { |
|---|
| 1699 | + 'use strict'; |
|---|
| 1700 | + |
|---|
| 1701 | + // TAB CLASS DEFINITION |
|---|
| 1702 | + // ==================== |
|---|
| 1703 | + |
|---|
| 1704 | + var Tab = function (element) { |
|---|
| 1705 | + this.element = $(element) |
|---|
| 1706 | + } |
|---|
| 1707 | + |
|---|
| 1708 | + Tab.prototype.show = function () { |
|---|
| 1709 | + var $this = this.element |
|---|
| 1710 | + var $ul = $this.closest('ul:not(.dropdown-menu)') |
|---|
| 1711 | + var selector = $this.data('target') |
|---|
| 1712 | + |
|---|
| 1713 | + if (!selector) { |
|---|
| 1714 | + selector = $this.attr('href') |
|---|
| 1715 | + selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') //strip for ie7 |
|---|
| 1716 | + } |
|---|
| 1717 | + |
|---|
| 1718 | + if ($this.parent('li').hasClass('active')) return |
|---|
| 1719 | + |
|---|
| 1720 | + var previous = $ul.find('.active:last a')[0] |
|---|
| 1721 | + var e = $.Event('show.bs.tab', { |
|---|
| 1722 | + relatedTarget: previous |
|---|
| 1723 | + }) |
|---|
| 1724 | + |
|---|
| 1725 | + $this.trigger(e) |
|---|
| 1726 | + |
|---|
| 1727 | + if (e.isDefaultPrevented()) return |
|---|
| 1728 | + |
|---|
| 1729 | + var $target = $(selector) |
|---|
| 1730 | + |
|---|
| 1731 | + this.activate($this.parent('li'), $ul) |
|---|
| 1732 | + this.activate($target, $target.parent(), function () { |
|---|
| 1733 | + $this.trigger({ |
|---|
| 1734 | + type: 'shown.bs.tab', |
|---|
| 1735 | + relatedTarget: previous |
|---|
| 1736 | + }) |
|---|
| 1737 | + }) |
|---|
| 1738 | + } |
|---|
| 1739 | + |
|---|
| 1740 | + Tab.prototype.activate = function (element, container, callback) { |
|---|
| 1741 | + var $active = container.find('> .active') |
|---|
| 1742 | + var transition = callback |
|---|
| 1743 | + && $.support.transition |
|---|
| 1744 | + && $active.hasClass('fade') |
|---|
| 1745 | + |
|---|
| 1746 | + function next() { |
|---|
| 1747 | + $active |
|---|
| 1748 | + .removeClass('active') |
|---|
| 1749 | + .find('> .dropdown-menu > .active') |
|---|
| 1750 | + .removeClass('active') |
|---|
| 1751 | + |
|---|
| 1752 | + element.addClass('active') |
|---|
| 1753 | + |
|---|
| 1754 | + if (transition) { |
|---|
| 1755 | + element[0].offsetWidth // reflow for transition |
|---|
| 1756 | + element.addClass('in') |
|---|
| 1757 | + } else { |
|---|
| 1758 | + element.removeClass('fade') |
|---|
| 1759 | + } |
|---|
| 1760 | + |
|---|
| 1761 | + if (element.parent('.dropdown-menu')) { |
|---|
| 1762 | + element.closest('li.dropdown').addClass('active') |
|---|
| 1763 | + } |
|---|
| 1764 | + |
|---|
| 1765 | + callback && callback() |
|---|
| 1766 | + } |
|---|
| 1767 | + |
|---|
| 1768 | + transition ? |
|---|
| 1769 | + $active |
|---|
| 1770 | + .one($.support.transition.end, next) |
|---|
| 1771 | + .emulateTransitionEnd(150) : |
|---|
| 1772 | + next() |
|---|
| 1773 | + |
|---|
| 1774 | + $active.removeClass('in') |
|---|
| 1775 | + } |
|---|
| 1776 | + |
|---|
| 1777 | + |
|---|
| 1778 | + // TAB PLUGIN DEFINITION |
|---|
| 1779 | + // ===================== |
|---|
| 1780 | + |
|---|
| 1781 | + var old = $.fn.tab |
|---|
| 1782 | + |
|---|
| 1783 | + $.fn.tab = function ( option ) { |
|---|
| 1784 | + return this.each(function () { |
|---|
| 1785 | + var $this = $(this) |
|---|
| 1786 | + var data = $this.data('bs.tab') |
|---|
| 1787 | + |
|---|
| 1788 | + if (!data) $this.data('bs.tab', (data = new Tab(this))) |
|---|
| 1789 | + if (typeof option == 'string') data[option]() |
|---|
| 1790 | + }) |
|---|
| 1791 | + } |
|---|
| 1792 | + |
|---|
| 1793 | + $.fn.tab.Constructor = Tab |
|---|
| 1794 | + |
|---|
| 1795 | + |
|---|
| 1796 | + // TAB NO CONFLICT |
|---|
| 1797 | + // =============== |
|---|
| 1798 | + |
|---|
| 1799 | + $.fn.tab.noConflict = function () { |
|---|
| 1800 | + $.fn.tab = old |
|---|
| 1801 | + return this |
|---|
| 1802 | + } |
|---|
| 1803 | + |
|---|
| 1804 | + |
|---|
| 1805 | + // TAB DATA-API |
|---|
| 1806 | + // ============ |
|---|
| 1807 | + |
|---|
| 1808 | + $(document).on('click.bs.tab.data-api', '[data-toggle="tab"], [data-toggle="pill"]', function (e) { |
|---|
| 1809 | + e.preventDefault() |
|---|
| 1810 | + $(this).tab('show') |
|---|
| 1811 | + }) |
|---|
| 1812 | + |
|---|
| 1813 | +}(jQuery); |
|---|
| 1814 | + |
|---|
| 1815 | +/* ======================================================================== |
|---|
| 1816 | + * Bootstrap: affix.js v3.1.0 |
|---|
| 1817 | + * http://getbootstrap.com/javascript/#affix |
|---|
| 1818 | + * ======================================================================== |
|---|
| 1819 | + * Copyright 2011-2014 Twitter, Inc. |
|---|
| 1820 | + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) |
|---|
| 1821 | + * ======================================================================== */ |
|---|
| 1822 | + |
|---|
| 1823 | + |
|---|
| 1824 | ++function ($) { |
|---|
| 1825 | + 'use strict'; |
|---|
| 1826 | + |
|---|
| 1827 | + // AFFIX CLASS DEFINITION |
|---|
| 1828 | + // ====================== |
|---|
| 1829 | + |
|---|
| 1830 | + var Affix = function (element, options) { |
|---|
| 1831 | + this.options = $.extend({}, Affix.DEFAULTS, options) |
|---|
| 1832 | + this.$window = $(window) |
|---|
| 1833 | + .on('scroll.bs.affix.data-api', $.proxy(this.checkPosition, this)) |
|---|
| 1834 | + .on('click.bs.affix.data-api', $.proxy(this.checkPositionWithEventLoop, this)) |
|---|
| 1835 | + |
|---|
| 1836 | + this.$element = $(element) |
|---|
| 1837 | + this.affixed = |
|---|
| 1838 | + this.unpin = |
|---|
| 1839 | + this.pinnedOffset = null |
|---|
| 1840 | + |
|---|
| 1841 | + this.checkPosition() |
|---|
| 1842 | + } |
|---|
| 1843 | + |
|---|
| 1844 | + Affix.RESET = 'affix affix-top affix-bottom' |
|---|
| 1845 | + |
|---|
| 1846 | + Affix.DEFAULTS = { |
|---|
| 1847 | + offset: 0 |
|---|
| 1848 | + } |
|---|
| 1849 | + |
|---|
| 1850 | + Affix.prototype.getPinnedOffset = function () { |
|---|
| 1851 | + if (this.pinnedOffset) return this.pinnedOffset |
|---|
| 1852 | + this.$element.removeClass(Affix.RESET).addClass('affix') |
|---|
| 1853 | + var scrollTop = this.$window.scrollTop() |
|---|
| 1854 | + var position = this.$element.offset() |
|---|
| 1855 | + return (this.pinnedOffset = position.top - scrollTop) |
|---|
| 1856 | + } |
|---|
| 1857 | + |
|---|
| 1858 | + Affix.prototype.checkPositionWithEventLoop = function () { |
|---|
| 1859 | + setTimeout($.proxy(this.checkPosition, this), 1) |
|---|
| 1860 | + } |
|---|
| 1861 | + |
|---|
| 1862 | + Affix.prototype.checkPosition = function () { |
|---|
| 1863 | + if (!this.$element.is(':visible')) return |
|---|
| 1864 | + |
|---|
| 1865 | + var scrollHeight = $(document).height() |
|---|
| 1866 | + var scrollTop = this.$window.scrollTop() |
|---|
| 1867 | + var position = this.$element.offset() |
|---|
| 1868 | + var offset = this.options.offset |
|---|
| 1869 | + var offsetTop = offset.top |
|---|
| 1870 | + var offsetBottom = offset.bottom |
|---|
| 1871 | + |
|---|
| 1872 | + if (this.affixed == 'top') position.top += scrollTop |
|---|
| 1873 | + |
|---|
| 1874 | + if (typeof offset != 'object') offsetBottom = offsetTop = offset |
|---|
| 1875 | + if (typeof offsetTop == 'function') offsetTop = offset.top(this.$element) |
|---|
| 1876 | + if (typeof offsetBottom == 'function') offsetBottom = offset.bottom(this.$element) |
|---|
| 1877 | + |
|---|
| 1878 | + var affix = this.unpin != null && (scrollTop + this.unpin <= position.top) ? false : |
|---|
| 1879 | + offsetBottom != null && (position.top + this.$element.height() >= scrollHeight - offsetBottom) ? 'bottom' : |
|---|
| 1880 | + offsetTop != null && (scrollTop <= offsetTop) ? 'top' : false |
|---|
| 1881 | + |
|---|
| 1882 | + if (this.affixed === affix) return |
|---|
| 1883 | + if (this.unpin) this.$element.css('top', '') |
|---|
| 1884 | + |
|---|
| 1885 | + var affixType = 'affix' + (affix ? '-' + affix : '') |
|---|
| 1886 | + var e = $.Event(affixType + '.bs.affix') |
|---|
| 1887 | + |
|---|
| 1888 | + this.$element.trigger(e) |
|---|
| 1889 | + |
|---|
| 1890 | + if (e.isDefaultPrevented()) return |
|---|
| 1891 | + |
|---|
| 1892 | + this.affixed = affix |
|---|
| 1893 | + this.unpin = affix == 'bottom' ? this.getPinnedOffset() : null |
|---|
| 1894 | + |
|---|
| 1895 | + this.$element |
|---|
| 1896 | + .removeClass(Affix.RESET) |
|---|
| 1897 | + .addClass(affixType) |
|---|
| 1898 | + .trigger($.Event(affixType.replace('affix', 'affixed'))) |
|---|
| 1899 | + |
|---|
| 1900 | + if (affix == 'bottom') { |
|---|
| 1901 | + this.$element.offset({ top: scrollHeight - offsetBottom - this.$element.height() }) |
|---|
| 1902 | + } |
|---|
| 1903 | + } |
|---|
| 1904 | + |
|---|
| 1905 | + |
|---|
| 1906 | + // AFFIX PLUGIN DEFINITION |
|---|
| 1907 | + // ======================= |
|---|
| 1908 | + |
|---|
| 1909 | + var old = $.fn.affix |
|---|
| 1910 | + |
|---|
| 1911 | + $.fn.affix = function (option) { |
|---|
| 1912 | + return this.each(function () { |
|---|
| 1913 | + var $this = $(this) |
|---|
| 1914 | + var data = $this.data('bs.affix') |
|---|
| 1915 | + var options = typeof option == 'object' && option |
|---|
| 1916 | + |
|---|
| 1917 | + if (!data) $this.data('bs.affix', (data = new Affix(this, options))) |
|---|
| 1918 | + if (typeof option == 'string') data[option]() |
|---|
| 1919 | + }) |
|---|
| 1920 | + } |
|---|
| 1921 | + |
|---|
| 1922 | + $.fn.affix.Constructor = Affix |
|---|
| 1923 | + |
|---|
| 1924 | + |
|---|
| 1925 | + // AFFIX NO CONFLICT |
|---|
| 1926 | + // ================= |
|---|
| 1927 | + |
|---|
| 1928 | + $.fn.affix.noConflict = function () { |
|---|
| 1929 | + $.fn.affix = old |
|---|
| 1930 | + return this |
|---|
| 1931 | + } |
|---|
| 1932 | + |
|---|
| 1933 | + |
|---|
| 1934 | + // AFFIX DATA-API |
|---|
| 1935 | + // ============== |
|---|
| 1936 | + |
|---|
| 1937 | + $(window).on('load', function () { |
|---|
| 1938 | + $('[data-spy="affix"]').each(function () { |
|---|
| 1939 | + var $spy = $(this) |
|---|
| 1940 | + var data = $spy.data() |
|---|
| 1941 | + |
|---|
| 1942 | + data.offset = data.offset || {} |
|---|
| 1943 | + |
|---|
| 1944 | + if (data.offsetBottom) data.offset.bottom = data.offsetBottom |
|---|
| 1945 | + if (data.offsetTop) data.offset.top = data.offsetTop |
|---|
| 1946 | + |
|---|
| 1947 | + $spy.affix(data) |
|---|
| 1948 | + }) |
|---|
| 1949 | + }) |
|---|
| 1950 | + |
|---|
| 1951 | +}(jQuery); |
|---|
| .. | .. |
|---|
| 1 | 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 |
|---|
| 2 | + * Bootstrap v3.1.0 (http://getbootstrap.com) |
|---|
| 3 | + * Copyright 2011-2014 Twitter, Inc. |
|---|
| 4 | + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) |
|---|
| 5 | 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); |
|---|
| 6 | +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]};return!1}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),this.isLoading=!1};b.DEFAULTS={loadingText:"loading..."},b.prototype.setState=function(b){var c="disabled",d=this.$element,e=d.is("input")?"val":"html",f=d.data();b+="Text",f.resetText||d.data("resetText",d[e]()),d[e](f[b]||this.options[b]),setTimeout(a.proxy(function(){"loadingText"==b?(this.isLoading=!0,d.addClass(c).attr(c,c)):this.isLoading&&(this.isLoading=!1,d.removeClass(c).removeAttr(c))},this),0)},b.prototype.toggle=function(){var a=!0,b=this.$element.closest('[data-toggle="buttons"]');if(b.length){var c=this.$element.find("input");"radio"==c.prop("type")&&(c.prop("checked")&&this.$element.hasClass("active")?a=!1:b.find(".active").removeClass("active")),a&&c.prop("checked",!this.$element.hasClass("active")).trigger("change")}a&&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&&(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]()}if(e.hasClass("active"))return this.sliding=!1;var j=a.Event("slide.bs.carousel",{relatedTarget:e[0],direction:g});return this.$element.trigger(j),j.isDefaultPrevented()?void 0:(this.sliding=!0,f&&this.pause(),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")?(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(1e3*d.css("transition-duration").slice(0,-1))):(d.removeClass("active"),e.addClass("active"),this.sliding=!1,this.$element.trigger("slid.bs.carousel")),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("collapse 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?void this.$element[c](0).one(a.support.transition.end,a.proxy(d,this)).emulateTransitionEnd(350):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&&f.toggle&&"show"==c&&(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(b){a(d).remove(),a(e).each(function(){var d=c(a(this)),e={relatedTarget:this};d.hasClass("open")&&(d.trigger(b=a.Event("hide.bs.dropdown",e)),b.isDefaultPrevented()||d.removeClass("open").trigger("hidden.bs.dropdown",e))})}function c(b){var c=b.attr("data-target");c||(c=b.attr("href"),c=c&&/#[A-Za-z]/.test(c)&&c.replace(/.*(?=#[^\s]*$)/,""));var d=c&&a(c);return d&&d.length?d:b.parent()}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){"ontouchstart"in document.documentElement&&!f.closest(".navbar-nav").length&&a('<div class="dropdown-backdrop"/>').insertAfter(a(this)).on("click",b);var h={relatedTarget:this};if(f.trigger(d=a.Event("show.bs.dropdown",h)),d.isDefaultPrevented())return;f.toggleClass("open").trigger("shown.bs.dropdown",h),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=" li:not(.divider):visible a",i=f.find("[role=menu]"+h+", [role=listbox]"+h);if(i.length){var j=i.index(i.filter(":focus"));38==b.keyCode&&j>0&&j--,40==b.keyCode&&j<i.length-1&&j++,~j||(j=0),i.eq(j).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], [role=listbox]",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.find(".modal-content").load(this.options.remote,a.proxy(function(){this.$element.trigger("loaded.bs.modal")},this))};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.bs.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().scrollTop(0),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.bs.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.bs.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("bs.modal")?"toggle":a.extend({remote:!/#/.test(d)&&d},e.data(),c.data());c.is("a")&&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":"focusin",i="hover"==g?"mouseleave":"focusout";this.$element.on(h+"."+this.type,this.options.selector,a.proxy(this.enter,this)),this.$element.on(i+"."+this.type,this.options.selector,a.proxy(this.leave,this))}}this.options.selector?this._options=a.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},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?void(c.timeout=setTimeout(function(){"in"==c.hoverState&&c.show()},c.options.delay.show)):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?void(c.timeout=setTimeout(function(){"out"==c.hoverState&&c.hide()},c.options.delay.hide)):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,d=this.tip();this.setContent(),this.options.animation&&d.addClass("fade");var e="function"==typeof this.options.placement?this.options.placement.call(this,d[0],this.$element[0]):this.options.placement,f=/\s?auto?\s?/i,g=f.test(e);g&&(e=e.replace(f,"")||"top"),d.detach().css({top:0,left:0,display:"block"}).addClass(e),this.options.container?d.appendTo(this.options.container):d.insertAfter(this.$element);var h=this.getPosition(),i=d[0].offsetWidth,j=d[0].offsetHeight;if(g){var k=this.$element.parent(),l=e,m=document.documentElement.scrollTop||document.body.scrollTop,n="body"==this.options.container?window.innerWidth:k.outerWidth(),o="body"==this.options.container?window.innerHeight:k.outerHeight(),p="body"==this.options.container?0:k.offset().left;e="bottom"==e&&h.top+h.height+j-m>o?"top":"top"==e&&h.top-m-j<0?"bottom":"right"==e&&h.right+i>n?"left":"left"==e&&h.left-i<p?"right":e,d.removeClass(l).addClass(e)}var q=this.getCalculatedOffset(e,h,i,j);this.applyPlacement(q,e),this.hoverState=null;var r=function(){c.$element.trigger("shown.bs."+c.type)};a.support.transition&&this.$tip.hasClass("fade")?d.one(a.support.transition.end,r).emulateTransitionEnd(150):r()}},b.prototype.applyPlacement=function(b,c){var d,e=this.tip(),f=e[0].offsetWidth,g=e[0].offsetHeight,h=parseInt(e.css("margin-top"),10),i=parseInt(e.css("margin-left"),10);isNaN(h)&&(h=0),isNaN(i)&&(i=0),b.top=b.top+h,b.left=b.left+i,a.offset.setOffset(e[0],a.extend({using:function(a){e.css({top:Math.round(a.top),left:Math.round(a.left)})}},b),0),e.addClass("in");var j=e[0].offsetWidth,k=e[0].offsetHeight;if("top"==c&&k!=g&&(d=!0,b.top=b.top+g-k),/bottom|top/.test(c)){var l=0;b.left<0&&(l=-2*b.left,b.left=0,e.offset(b),j=e[0].offsetWidth,k=e[0].offsetHeight),this.replaceArrow(l-f+j,j,"left")}else this.replaceArrow(k-g,k,"top");d&&e.offset(b)},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(),c.$element.trigger("hidden.bs."+c.type)}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.hoverState=null,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(){clearTimeout(this.timeout),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||"destroy"!=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?"string"==typeof c?"html":"append":"text"](c),a.removeClass("fade top bottom left right in"),a.find(".popover-title").html()||a.find(".popover-title").hide()},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||"destroy"!=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(a(c).is("body")?window: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=/^#./.test(e)&&a(e);return f&&f.length&&f.is(":visible")&&[[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);if(g&&b<=e[0])return g!=(a=f[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).parentsUntil(this.options.target,".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=this.pinnedOffset=null,this.checkPosition()};b.RESET="affix affix-top affix-bottom",b.DEFAULTS={offset:0},b.prototype.getPinnedOffset=function(){if(this.pinnedOffset)return this.pinnedOffset;this.$element.removeClass(b.RESET).addClass("affix");var a=this.$window.scrollTop(),c=this.$element.offset();return this.pinnedOffset=c.top-a},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;"top"==this.affixed&&(e.top+=d),"object"!=typeof f&&(h=g=f),"function"==typeof g&&(g=f.top(this.$element)),"function"==typeof h&&(h=f.bottom(this.$element));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;if(this.affixed!==i){this.unpin&&this.$element.css("top","");var j="affix"+(i?"-"+i:""),k=a.Event(j+".bs.affix");this.$element.trigger(k),k.isDefaultPrevented()||(this.affixed=i,this.unpin="bottom"==i?this.getPinnedOffset():null,this.$element.removeClass(b.RESET).addClass(j).trigger(a.Event(j.replace("affix","affixed"))),"bottom"==i&&this.$element.offset({top:c-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); |
|---|
deleted file mode 100644Binary files differ
| .. | .. |
|---|
| 1 | | -/*! jQuery v1.10.1 | (c) 2005, 2013 jQuery Foundation, Inc. | jquery.org/license |
|---|
| 2 | | -//@ sourceMappingURL=jquery-1.10.1.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.1",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=lt(),k=lt(),E=lt(),S=!1,A=function(){return 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=bt(e),(d=t.getAttribute("id"))?m=d.replace(nt,"\\$&"):t.setAttribute("id",m),m="[id='"+m+"'] ",u=c.length;while(u--)c[u]=m+xt(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 At(e.replace(z,"$1"),t,n,i)}function st(e){return K.test(e+"")}function lt(){var e=[];function t(n,r){return e.push(n+=" ")>o.cacheLength&&delete t[e.shift()],t[n]=r}return t}function ut(e){return e[b]=!0,e}function ct(e){var t=f.createElement("div");try{return!!e(t)}catch(n){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function pt(e,t,n){e=e.split("|");var r,i=e.length,a=n?null:t;while(i--)(r=o.attrHandle[e[i]])&&r!==t||(o.attrHandle[e[i]]=a)}function ft(e,t){var n=e.getAttributeNode(t);return n&&n.specified?n.value:e[t]===!0?t.toLowerCase():null}function dt(e,t){return e.getAttribute(t,"type"===t.toLowerCase()?1:2)}function ht(e){return"input"===e.nodeName.toLowerCase()?e.defaultValue:t}function gt(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 mt(e){return function(t){var n=t.nodeName.toLowerCase();return"input"===n&&t.type===e}}function yt(e){return function(t){var n=t.nodeName.toLowerCase();return("input"===n||"button"===n)&&t.type===e}}function vt(e){return ut(function(t){return t=+t,ut(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.parentWindow;return n!==f&&9===n.nodeType&&n.documentElement?(f=n,d=n.documentElement,h=!s(n),i&&i.frameElement&&i.attachEvent("onbeforeunload",function(){p()}),r.attributes=ct(function(e){return e.innerHTML="<a href='#'></a>",pt("type|href|height|width",dt,"#"===e.firstChild.getAttribute("href")),pt(B,ft,null==e.getAttribute("disabled")),e.className="i",!e.getAttribute("className")}),r.input=ct(function(e){return e.innerHTML="<input>",e.firstChild.setAttribute("value",""),""===e.firstChild.getAttribute("value")}),pt("value",ht,r.attributes&&r.input),r.getElementsByTagName=ct(function(e){return e.appendChild(n.createComment("")),!e.getElementsByTagName("*").length}),r.getElementsByClassName=ct(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=ct(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=st(n.querySelectorAll))&&(ct(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")}),ct(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=st(y=d.webkitMatchesSelector||d.mozMatchesSelector||d.oMatchesSelector||d.msMatchesSelector))&&ct(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=st(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},r.sortDetached=ct(function(e){return 1&e.compareDocumentPosition(n.createElement("div"))}),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 gt(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?gt(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:ut,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=bt(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())?ut(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:ut(function(e){var t=[],n=[],r=l(e.replace(z,"$1"));return r[b]?ut(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:ut(function(e){return function(t){return at(e,t).length>0}}),contains:ut(function(e){return function(t){return(t.textContent||t.innerText||a(t)).indexOf(e)>-1}}),lang:ut(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:vt(function(){return[0]}),last:vt(function(e,t){return[t-1]}),eq:vt(function(e,t,n){return[0>n?n+t:n]}),even:vt(function(e,t){var n=0;for(;t>n;n+=2)e.push(n);return e}),odd:vt(function(e,t){var n=1;for(;t>n;n+=2)e.push(n);return e}),lt:vt(function(e,t,n){var r=0>n?n+t:n;for(;--r>=0;)e.push(r);return e}),gt:vt(function(e,t,n){var r=0>n?n+t:n;for(;t>++r;)e.push(r);return e})}};for(n in{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})o.pseudos[n]=mt(n);for(n in{submit:!0,reset:!0})o.pseudos[n]=yt(n);function bt(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 xt(e){var t=0,n=e.length,r="";for(;n>t;t++)r+=e[t].value;return r}function wt(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 Tt(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 Ct(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 Nt(e,t,n,r,i,o){return r&&!r[b]&&(r=Nt(r)),i&&!i[b]&&(i=Nt(i,o)),ut(function(o,a,s,l){var u,c,p,f=[],d=[],h=a.length,g=o||St(t||"*",s.nodeType?[s]:s,[]),m=!e||!o&&t?g:Ct(g,f,e,s,l),y=n?i||(o?e:h||r)?[]:a:m;if(n&&n(m,y,s,l),r){u=Ct(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=Ct(y===a?y.splice(h,y.length):y),i?i(null,a,y,l):M.apply(a,y)})}function kt(e){var t,n,r,i=e.length,a=o.relative[e[0].type],s=a||o.relative[" "],l=a?1:0,c=wt(function(e){return e===t},s,!0),p=wt(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=[wt(Tt(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 Nt(l>1&&Tt(f),l>1&&xt(e.slice(0,l-1).concat({value:" "===e[l-2].type?"*":""})).replace(z,"$1"),n,r>l&&kt(e.slice(l,r)),i>r&&kt(e=e.slice(r)),i>r&&xt(e))}f.push(n)}return Tt(f)}function Et(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=Ct(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?ut(s):s}l=at.compile=function(e,t){var n,r=[],i=[],o=E[e+" "];if(!o){t||(t=bt(e)),n=t.length;while(n--)o=kt(t[n]),o[b]?r.push(o):i.push(o);o=E(e,Et(i,r))}return o};function St(e,t,n){var r=0,i=t.length;for(;i>r;r++)at(e,t[r],n);return n}function At(e,t,n,i){var a,s,u,c,p,f=bt(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&&xt(s),!e)return M.apply(n,i),n;break}}}return l(e,f)(i,t,!h,n,V.test(e)),n}o.pseudos.nth=o.pseudos.eq;function jt(){}jt.prototype=o.filters=o.pseudos,o.setFilters=new jt,r.sortStable=b.split("").sort(A).join("")===b,p(),[0,0].sort(A),r.detectDuplicates=S,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 t=t||[],t=[e,t.slice?t.slice():t],!l||i&&!u||(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) |
|---|
| 5 | | -}),n=s=l=u=r=o=null,t}({});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,r="boolean"==typeof t;return 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 o,a=0,s=x(this),l=t,u=e.match(T)||[];while(o=u[a++])l=r?l:!s.hasClass(o),s[l?"addClass":"removeClass"](o)}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){var t="boolean"==typeof e;return this.each(function(){(t?e: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,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); |
|---|
| 1 | +/*! jQuery v1.11.0 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/license */ |
|---|
| 2 | +!function(a,b){"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){var c=[],d=c.slice,e=c.concat,f=c.push,g=c.indexOf,h={},i=h.toString,j=h.hasOwnProperty,k="".trim,l={},m="1.11.0",n=function(a,b){return new n.fn.init(a,b)},o=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,p=/^-ms-/,q=/-([\da-z])/gi,r=function(a,b){return b.toUpperCase()};n.fn=n.prototype={jquery:m,constructor:n,selector:"",length:0,toArray:function(){return d.call(this)},get:function(a){return null!=a?0>a?this[a+this.length]:this[a]:d.call(this)},pushStack:function(a){var b=n.merge(this.constructor(),a);return b.prevObject=this,b.context=this.context,b},each:function(a,b){return n.each(this,a,b)},map:function(a){return this.pushStack(n.map(this,function(b,c){return a.call(b,c,b)}))},slice:function(){return this.pushStack(d.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(a){var b=this.length,c=+a+(0>a?b:0);return this.pushStack(c>=0&&b>c?[this[c]]:[])},end:function(){return this.prevObject||this.constructor(null)},push:f,sort:c.sort,splice:c.splice},n.extend=n.fn.extend=function(){var a,b,c,d,e,f,g=arguments[0]||{},h=1,i=arguments.length,j=!1;for("boolean"==typeof g&&(j=g,g=arguments[h]||{},h++),"object"==typeof g||n.isFunction(g)||(g={}),h===i&&(g=this,h--);i>h;h++)if(null!=(e=arguments[h]))for(d in e)a=g[d],c=e[d],g!==c&&(j&&c&&(n.isPlainObject(c)||(b=n.isArray(c)))?(b?(b=!1,f=a&&n.isArray(a)?a:[]):f=a&&n.isPlainObject(a)?a:{},g[d]=n.extend(j,f,c)):void 0!==c&&(g[d]=c));return g},n.extend({expando:"jQuery"+(m+Math.random()).replace(/\D/g,""),isReady:!0,error:function(a){throw new Error(a)},noop:function(){},isFunction:function(a){return"function"===n.type(a)},isArray:Array.isArray||function(a){return"array"===n.type(a)},isWindow:function(a){return null!=a&&a==a.window},isNumeric:function(a){return a-parseFloat(a)>=0},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},isPlainObject:function(a){var b;if(!a||"object"!==n.type(a)||a.nodeType||n.isWindow(a))return!1;try{if(a.constructor&&!j.call(a,"constructor")&&!j.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}if(l.ownLast)for(b in a)return j.call(a,b);for(b in a);return void 0===b||j.call(a,b)},type:function(a){return null==a?a+"":"object"==typeof a||"function"==typeof a?h[i.call(a)]||"object":typeof a},globalEval:function(b){b&&n.trim(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(p,"ms-").replace(q,r)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,b,c){var d,e=0,f=a.length,g=s(a);if(c){if(g){for(;f>e;e++)if(d=b.apply(a[e],c),d===!1)break}else for(e in a)if(d=b.apply(a[e],c),d===!1)break}else if(g){for(;f>e;e++)if(d=b.call(a[e],e,a[e]),d===!1)break}else for(e in a)if(d=b.call(a[e],e,a[e]),d===!1)break;return a},trim:k&&!k.call("\ufeff\xa0")?function(a){return null==a?"":k.call(a)}:function(a){return null==a?"":(a+"").replace(o,"")},makeArray:function(a,b){var c=b||[];return null!=a&&(s(Object(a))?n.merge(c,"string"==typeof a?[a]:a):f.call(c,a)),c},inArray:function(a,b,c){var d;if(b){if(g)return g.call(b,a,c);for(d=b.length,c=c?0>c?Math.max(0,d+c):c:0;d>c;c++)if(c in b&&b[c]===a)return c}return-1},merge:function(a,b){var c=+b.length,d=0,e=a.length;while(c>d)a[e++]=b[d++];if(c!==c)while(void 0!==b[d])a[e++]=b[d++];return a.length=e,a},grep:function(a,b,c){for(var d,e=[],f=0,g=a.length,h=!c;g>f;f++)d=!b(a[f],f),d!==h&&e.push(a[f]);return e},map:function(a,b,c){var d,f=0,g=a.length,h=s(a),i=[];if(h)for(;g>f;f++)d=b(a[f],f,c),null!=d&&i.push(d);else for(f in a)d=b(a[f],f,c),null!=d&&i.push(d);return e.apply([],i)},guid:1,proxy:function(a,b){var c,e,f;return"string"==typeof b&&(f=a[b],b=a,a=f),n.isFunction(a)?(c=d.call(arguments,2),e=function(){return a.apply(b||this,c.concat(d.call(arguments)))},e.guid=a.guid=a.guid||n.guid++,e):void 0},now:function(){return+new Date},support:l}),n.each("Boolean Number String Function Array Date RegExp Object Error".split(" "),function(a,b){h["[object "+b+"]"]=b.toLowerCase()});function s(a){var b=a.length,c=n.type(a);return"function"===c||n.isWindow(a)?!1:1===a.nodeType&&b?!0:"array"===c||0===b||"number"==typeof b&&b>0&&b-1 in a}var t=function(a){var b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s="sizzle"+-new Date,t=a.document,u=0,v=0,w=eb(),x=eb(),y=eb(),z=function(a,b){return a===b&&(j=!0),0},A="undefined",B=1<<31,C={}.hasOwnProperty,D=[],E=D.pop,F=D.push,G=D.push,H=D.slice,I=D.indexOf||function(a){for(var b=0,c=this.length;c>b;b++)if(this[b]===a)return b;return-1},J="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",K="[\\x20\\t\\r\\n\\f]",L="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",M=L.replace("w","w#"),N="\\["+K+"*("+L+")"+K+"*(?:([*^$|!~]?=)"+K+"*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|("+M+")|)|)"+K+"*\\]",O=":("+L+")(?:\\(((['\"])((?:\\\\.|[^\\\\])*?)\\3|((?:\\\\.|[^\\\\()[\\]]|"+N.replace(3,8)+")*)|.*)\\)|)",P=new RegExp("^"+K+"+|((?:^|[^\\\\])(?:\\\\.)*)"+K+"+$","g"),Q=new RegExp("^"+K+"*,"+K+"*"),R=new RegExp("^"+K+"*([>+~]|"+K+")"+K+"*"),S=new RegExp("="+K+"*([^\\]'\"]*?)"+K+"*\\]","g"),T=new RegExp(O),U=new RegExp("^"+M+"$"),V={ID:new RegExp("^#("+L+")"),CLASS:new RegExp("^\\.("+L+")"),TAG:new RegExp("^("+L.replace("w","w*")+")"),ATTR:new RegExp("^"+N),PSEUDO:new RegExp("^"+O),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+K+"*(even|odd|(([+-]|)(\\d*)n|)"+K+"*(?:([+-]|)"+K+"*(\\d+)|))"+K+"*\\)|)","i"),bool:new RegExp("^(?:"+J+")$","i"),needsContext:new RegExp("^"+K+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+K+"*((?:-\\d)?\\d*)"+K+"*\\)|)(?=[^-]|$)","i")},W=/^(?:input|select|textarea|button)$/i,X=/^h\d$/i,Y=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,$=/[+~]/,_=/'|\\/g,ab=new RegExp("\\\\([\\da-f]{1,6}"+K+"?|("+K+")|.)","ig"),bb=function(a,b,c){var d="0x"+b-65536;return d!==d||c?b:0>d?String.fromCharCode(d+65536):String.fromCharCode(d>>10|55296,1023&d|56320)};try{G.apply(D=H.call(t.childNodes),t.childNodes),D[t.childNodes.length].nodeType}catch(cb){G={apply:D.length?function(a,b){F.apply(a,H.call(b))}:function(a,b){var c=a.length,d=0;while(a[c++]=b[d++]);a.length=c-1}}}function db(a,b,d,e){var f,g,h,i,j,m,p,q,u,v;if((b?b.ownerDocument||b:t)!==l&&k(b),b=b||l,d=d||[],!a||"string"!=typeof a)return d;if(1!==(i=b.nodeType)&&9!==i)return[];if(n&&!e){if(f=Z.exec(a))if(h=f[1]){if(9===i){if(g=b.getElementById(h),!g||!g.parentNode)return d;if(g.id===h)return d.push(g),d}else if(b.ownerDocument&&(g=b.ownerDocument.getElementById(h))&&r(b,g)&&g.id===h)return d.push(g),d}else{if(f[2])return G.apply(d,b.getElementsByTagName(a)),d;if((h=f[3])&&c.getElementsByClassName&&b.getElementsByClassName)return G.apply(d,b.getElementsByClassName(h)),d}if(c.qsa&&(!o||!o.test(a))){if(q=p=s,u=b,v=9===i&&a,1===i&&"object"!==b.nodeName.toLowerCase()){m=ob(a),(p=b.getAttribute("id"))?q=p.replace(_,"\\$&"):b.setAttribute("id",q),q="[id='"+q+"'] ",j=m.length;while(j--)m[j]=q+pb(m[j]);u=$.test(a)&&mb(b.parentNode)||b,v=m.join(",")}if(v)try{return G.apply(d,u.querySelectorAll(v)),d}catch(w){}finally{p||b.removeAttribute("id")}}}return xb(a.replace(P,"$1"),b,d,e)}function eb(){var a=[];function b(c,e){return a.push(c+" ")>d.cacheLength&&delete b[a.shift()],b[c+" "]=e}return b}function fb(a){return a[s]=!0,a}function gb(a){var b=l.createElement("div");try{return!!a(b)}catch(c){return!1}finally{b.parentNode&&b.parentNode.removeChild(b),b=null}}function hb(a,b){var c=a.split("|"),e=a.length;while(e--)d.attrHandle[c[e]]=b}function ib(a,b){var c=b&&a,d=c&&1===a.nodeType&&1===b.nodeType&&(~b.sourceIndex||B)-(~a.sourceIndex||B);if(d)return d;if(c)while(c=c.nextSibling)if(c===b)return-1;return a?1:-1}function jb(a){return function(b){var c=b.nodeName.toLowerCase();return"input"===c&&b.type===a}}function kb(a){return function(b){var c=b.nodeName.toLowerCase();return("input"===c||"button"===c)&&b.type===a}}function lb(a){return fb(function(b){return b=+b,fb(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function mb(a){return a&&typeof a.getElementsByTagName!==A&&a}c=db.support={},f=db.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?"HTML"!==b.nodeName:!1},k=db.setDocument=function(a){var b,e=a?a.ownerDocument||a:t,g=e.defaultView;return e!==l&&9===e.nodeType&&e.documentElement?(l=e,m=e.documentElement,n=!f(e),g&&g!==g.top&&(g.addEventListener?g.addEventListener("unload",function(){k()},!1):g.attachEvent&&g.attachEvent("onunload",function(){k()})),c.attributes=gb(function(a){return a.className="i",!a.getAttribute("className")}),c.getElementsByTagName=gb(function(a){return a.appendChild(e.createComment("")),!a.getElementsByTagName("*").length}),c.getElementsByClassName=Y.test(e.getElementsByClassName)&&gb(function(a){return a.innerHTML="<div class='a'></div><div class='a i'></div>",a.firstChild.className="i",2===a.getElementsByClassName("i").length}),c.getById=gb(function(a){return m.appendChild(a).id=s,!e.getElementsByName||!e.getElementsByName(s).length}),c.getById?(d.find.ID=function(a,b){if(typeof b.getElementById!==A&&n){var c=b.getElementById(a);return c&&c.parentNode?[c]:[]}},d.filter.ID=function(a){var b=a.replace(ab,bb);return function(a){return a.getAttribute("id")===b}}):(delete d.find.ID,d.filter.ID=function(a){var b=a.replace(ab,bb);return function(a){var c=typeof a.getAttributeNode!==A&&a.getAttributeNode("id");return c&&c.value===b}}),d.find.TAG=c.getElementsByTagName?function(a,b){return typeof b.getElementsByTagName!==A?b.getElementsByTagName(a):void 0}:function(a,b){var c,d=[],e=0,f=b.getElementsByTagName(a);if("*"===a){while(c=f[e++])1===c.nodeType&&d.push(c);return d}return f},d.find.CLASS=c.getElementsByClassName&&function(a,b){return typeof b.getElementsByClassName!==A&&n?b.getElementsByClassName(a):void 0},p=[],o=[],(c.qsa=Y.test(e.querySelectorAll))&&(gb(function(a){a.innerHTML="<select t=''><option selected=''></option></select>",a.querySelectorAll("[t^='']").length&&o.push("[*^$]="+K+"*(?:''|\"\")"),a.querySelectorAll("[selected]").length||o.push("\\["+K+"*(?:value|"+J+")"),a.querySelectorAll(":checked").length||o.push(":checked")}),gb(function(a){var b=e.createElement("input");b.setAttribute("type","hidden"),a.appendChild(b).setAttribute("name","D"),a.querySelectorAll("[name=d]").length&&o.push("name"+K+"*[*^$|!~]?="),a.querySelectorAll(":enabled").length||o.push(":enabled",":disabled"),a.querySelectorAll("*,:x"),o.push(",.*:")})),(c.matchesSelector=Y.test(q=m.webkitMatchesSelector||m.mozMatchesSelector||m.oMatchesSelector||m.msMatchesSelector))&&gb(function(a){c.disconnectedMatch=q.call(a,"div"),q.call(a,"[s!='']:x"),p.push("!=",O)}),o=o.length&&new RegExp(o.join("|")),p=p.length&&new RegExp(p.join("|")),b=Y.test(m.compareDocumentPosition),r=b||Y.test(m.contains)?function(a,b){var c=9===a.nodeType?a.documentElement:a,d=b&&b.parentNode;return a===d||!(!d||1!==d.nodeType||!(c.contains?c.contains(d):a.compareDocumentPosition&&16&a.compareDocumentPosition(d)))}:function(a,b){if(b)while(b=b.parentNode)if(b===a)return!0;return!1},z=b?function(a,b){if(a===b)return j=!0,0;var d=!a.compareDocumentPosition-!b.compareDocumentPosition;return d?d:(d=(a.ownerDocument||a)===(b.ownerDocument||b)?a.compareDocumentPosition(b):1,1&d||!c.sortDetached&&b.compareDocumentPosition(a)===d?a===e||a.ownerDocument===t&&r(t,a)?-1:b===e||b.ownerDocument===t&&r(t,b)?1:i?I.call(i,a)-I.call(i,b):0:4&d?-1:1)}:function(a,b){if(a===b)return j=!0,0;var c,d=0,f=a.parentNode,g=b.parentNode,h=[a],k=[b];if(!f||!g)return a===e?-1:b===e?1:f?-1:g?1:i?I.call(i,a)-I.call(i,b):0;if(f===g)return ib(a,b);c=a;while(c=c.parentNode)h.unshift(c);c=b;while(c=c.parentNode)k.unshift(c);while(h[d]===k[d])d++;return d?ib(h[d],k[d]):h[d]===t?-1:k[d]===t?1:0},e):l},db.matches=function(a,b){return db(a,null,null,b)},db.matchesSelector=function(a,b){if((a.ownerDocument||a)!==l&&k(a),b=b.replace(S,"='$1']"),!(!c.matchesSelector||!n||p&&p.test(b)||o&&o.test(b)))try{var d=q.call(a,b);if(d||c.disconnectedMatch||a.document&&11!==a.document.nodeType)return d}catch(e){}return db(b,l,null,[a]).length>0},db.contains=function(a,b){return(a.ownerDocument||a)!==l&&k(a),r(a,b)},db.attr=function(a,b){(a.ownerDocument||a)!==l&&k(a);var e=d.attrHandle[b.toLowerCase()],f=e&&C.call(d.attrHandle,b.toLowerCase())?e(a,b,!n):void 0;return void 0!==f?f:c.attributes||!n?a.getAttribute(b):(f=a.getAttributeNode(b))&&f.specified?f.value:null},db.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},db.uniqueSort=function(a){var b,d=[],e=0,f=0;if(j=!c.detectDuplicates,i=!c.sortStable&&a.slice(0),a.sort(z),j){while(b=a[f++])b===a[f]&&(e=d.push(f));while(e--)a.splice(d[e],1)}return i=null,a},e=db.getText=function(a){var b,c="",d=0,f=a.nodeType;if(f){if(1===f||9===f||11===f){if("string"==typeof a.textContent)return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=e(a)}else if(3===f||4===f)return a.nodeValue}else while(b=a[d++])c+=e(b);return c},d=db.selectors={cacheLength:50,createPseudo:fb,match:V,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(ab,bb),a[3]=(a[4]||a[5]||"").replace(ab,bb),"~="===a[2]&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),"nth"===a[1].slice(0,3)?(a[3]||db.error(a[0]),a[4]=+(a[4]?a[5]+(a[6]||1):2*("even"===a[3]||"odd"===a[3])),a[5]=+(a[7]+a[8]||"odd"===a[3])):a[3]&&db.error(a[0]),a},PSEUDO:function(a){var b,c=!a[5]&&a[2];return V.CHILD.test(a[0])?null:(a[3]&&void 0!==a[4]?a[2]=a[4]:c&&T.test(c)&&(b=ob(c,!0))&&(b=c.indexOf(")",c.length-b)-c.length)&&(a[0]=a[0].slice(0,b),a[2]=c.slice(0,b)),a.slice(0,3))}},filter:{TAG:function(a){var b=a.replace(ab,bb).toLowerCase();return"*"===a?function(){return!0}:function(a){return a.nodeName&&a.nodeName.toLowerCase()===b}},CLASS:function(a){var b=w[a+" "];return b||(b=new RegExp("(^|"+K+")"+a+"("+K+"|$)"))&&w(a,function(a){return b.test("string"==typeof a.className&&a.className||typeof a.getAttribute!==A&&a.getAttribute("class")||"")})},ATTR:function(a,b,c){return function(d){var e=db.attr(d,a);return null==e?"!="===b:b?(e+="","="===b?e===c:"!="===b?e!==c:"^="===b?c&&0===e.indexOf(c):"*="===b?c&&e.indexOf(c)>-1:"$="===b?c&&e.slice(-c.length)===c:"~="===b?(" "+e+" ").indexOf(c)>-1:"|="===b?e===c||e.slice(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d,e){var f="nth"!==a.slice(0,3),g="last"!==a.slice(-4),h="of-type"===b;return 1===d&&0===e?function(a){return!!a.parentNode}:function(b,c,i){var j,k,l,m,n,o,p=f!==g?"nextSibling":"previousSibling",q=b.parentNode,r=h&&b.nodeName.toLowerCase(),t=!i&&!h;if(q){if(f){while(p){l=b;while(l=l[p])if(h?l.nodeName.toLowerCase()===r:1===l.nodeType)return!1;o=p="only"===a&&!o&&"nextSibling"}return!0}if(o=[g?q.firstChild:q.lastChild],g&&t){k=q[s]||(q[s]={}),j=k[a]||[],n=j[0]===u&&j[1],m=j[0]===u&&j[2],l=n&&q.childNodes[n];while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if(1===l.nodeType&&++m&&l===b){k[a]=[u,n,m];break}}else if(t&&(j=(b[s]||(b[s]={}))[a])&&j[0]===u)m=j[1];else while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if((h?l.nodeName.toLowerCase()===r:1===l.nodeType)&&++m&&(t&&((l[s]||(l[s]={}))[a]=[u,m]),l===b))break;return m-=e,m===d||m%d===0&&m/d>=0}}},PSEUDO:function(a,b){var c,e=d.pseudos[a]||d.setFilters[a.toLowerCase()]||db.error("unsupported pseudo: "+a);return e[s]?e(b):e.length>1?(c=[a,a,"",b],d.setFilters.hasOwnProperty(a.toLowerCase())?fb(function(a,c){var d,f=e(a,b),g=f.length;while(g--)d=I.call(a,f[g]),a[d]=!(c[d]=f[g])}):function(a){return e(a,0,c)}):e}},pseudos:{not:fb(function(a){var b=[],c=[],d=g(a.replace(P,"$1"));return d[s]?fb(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)(f=g[h])&&(a[h]=!(b[h]=f))}):function(a,e,f){return b[0]=a,d(b,null,f,c),!c.pop()}}),has:fb(function(a){return function(b){return db(a,b).length>0}}),contains:fb(function(a){return function(b){return(b.textContent||b.innerText||e(b)).indexOf(a)>-1}}),lang:fb(function(a){return U.test(a||"")||db.error("unsupported lang: "+a),a=a.replace(ab,bb).toLowerCase(),function(b){var c;do if(c=n?b.lang:b.getAttribute("xml:lang")||b.getAttribute("lang"))return c=c.toLowerCase(),c===a||0===c.indexOf(a+"-");while((b=b.parentNode)&&1===b.nodeType);return!1}}),target:function(b){var c=a.location&&a.location.hash;return c&&c.slice(1)===b.id},root:function(a){return a===m},focus:function(a){return a===l.activeElement&&(!l.hasFocus||l.hasFocus())&&!!(a.type||a.href||~a.tabIndex)},enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&!!a.checked||"option"===b&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},empty:function(a){for(a=a.firstChild;a;a=a.nextSibling)if(a.nodeType<6)return!1;return!0},parent:function(a){return!d.pseudos.empty(a)},header:function(a){return X.test(a.nodeName)},input:function(a){return W.test(a.nodeName)},button:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&"button"===a.type||"button"===b},text:function(a){var b;return"input"===a.nodeName.toLowerCase()&&"text"===a.type&&(null==(b=a.getAttribute("type"))||"text"===b.toLowerCase())},first:lb(function(){return[0]}),last:lb(function(a,b){return[b-1]}),eq:lb(function(a,b,c){return[0>c?c+b:c]}),even:lb(function(a,b){for(var c=0;b>c;c+=2)a.push(c);return a}),odd:lb(function(a,b){for(var c=1;b>c;c+=2)a.push(c);return a}),lt:lb(function(a,b,c){for(var d=0>c?c+b:c;--d>=0;)a.push(d);return a}),gt:lb(function(a,b,c){for(var d=0>c?c+b:c;++d<b;)a.push(d);return a})}},d.pseudos.nth=d.pseudos.eq;for(b in{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})d.pseudos[b]=jb(b);for(b in{submit:!0,reset:!0})d.pseudos[b]=kb(b);function nb(){}nb.prototype=d.filters=d.pseudos,d.setFilters=new nb;function ob(a,b){var c,e,f,g,h,i,j,k=x[a+" "];if(k)return b?0:k.slice(0);h=a,i=[],j=d.preFilter;while(h){(!c||(e=Q.exec(h)))&&(e&&(h=h.slice(e[0].length)||h),i.push(f=[])),c=!1,(e=R.exec(h))&&(c=e.shift(),f.push({value:c,type:e[0].replace(P," ")}),h=h.slice(c.length));for(g in d.filter)!(e=V[g].exec(h))||j[g]&&!(e=j[g](e))||(c=e.shift(),f.push({value:c,type:g,matches:e}),h=h.slice(c.length));if(!c)break}return b?h.length:h?db.error(a):x(a,i).slice(0)}function pb(a){for(var b=0,c=a.length,d="";c>b;b++)d+=a[b].value;return d}function qb(a,b,c){var d=b.dir,e=c&&"parentNode"===d,f=v++;return b.first?function(b,c,f){while(b=b[d])if(1===b.nodeType||e)return a(b,c,f)}:function(b,c,g){var h,i,j=[u,f];if(g){while(b=b[d])if((1===b.nodeType||e)&&a(b,c,g))return!0}else while(b=b[d])if(1===b.nodeType||e){if(i=b[s]||(b[s]={}),(h=i[d])&&h[0]===u&&h[1]===f)return j[2]=h[2];if(i[d]=j,j[2]=a(b,c,g))return!0}}}function rb(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function sb(a,b,c,d,e){for(var f,g=[],h=0,i=a.length,j=null!=b;i>h;h++)(f=a[h])&&(!c||c(f,d,e))&&(g.push(f),j&&b.push(h));return g}function tb(a,b,c,d,e,f){return d&&!d[s]&&(d=tb(d)),e&&!e[s]&&(e=tb(e,f)),fb(function(f,g,h,i){var j,k,l,m=[],n=[],o=g.length,p=f||wb(b||"*",h.nodeType?[h]:h,[]),q=!a||!f&&b?p:sb(p,m,a,h,i),r=c?e||(f?a:o||d)?[]:g:q;if(c&&c(q,r,h,i),d){j=sb(r,n),d(j,[],h,i),k=j.length;while(k--)(l=j[k])&&(r[n[k]]=!(q[n[k]]=l))}if(f){if(e||a){if(e){j=[],k=r.length;while(k--)(l=r[k])&&j.push(q[k]=l);e(null,r=[],j,i)}k=r.length;while(k--)(l=r[k])&&(j=e?I.call(f,l):m[k])>-1&&(f[j]=!(g[j]=l))}}else r=sb(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):G.apply(g,r)})}function ub(a){for(var b,c,e,f=a.length,g=d.relative[a[0].type],i=g||d.relative[" "],j=g?1:0,k=qb(function(a){return a===b},i,!0),l=qb(function(a){return I.call(b,a)>-1},i,!0),m=[function(a,c,d){return!g&&(d||c!==h)||((b=c).nodeType?k(a,c,d):l(a,c,d))}];f>j;j++)if(c=d.relative[a[j].type])m=[qb(rb(m),c)];else{if(c=d.filter[a[j].type].apply(null,a[j].matches),c[s]){for(e=++j;f>e;e++)if(d.relative[a[e].type])break;return tb(j>1&&rb(m),j>1&&pb(a.slice(0,j-1).concat({value:" "===a[j-2].type?"*":""})).replace(P,"$1"),c,e>j&&ub(a.slice(j,e)),f>e&&ub(a=a.slice(e)),f>e&&pb(a))}m.push(c)}return rb(m)}function vb(a,b){var c=b.length>0,e=a.length>0,f=function(f,g,i,j,k){var m,n,o,p=0,q="0",r=f&&[],s=[],t=h,v=f||e&&d.find.TAG("*",k),w=u+=null==t?1:Math.random()||.1,x=v.length;for(k&&(h=g!==l&&g);q!==x&&null!=(m=v[q]);q++){if(e&&m){n=0;while(o=a[n++])if(o(m,g,i)){j.push(m);break}k&&(u=w)}c&&((m=!o&&m)&&p--,f&&r.push(m))}if(p+=q,c&&q!==p){n=0;while(o=b[n++])o(r,s,g,i);if(f){if(p>0)while(q--)r[q]||s[q]||(s[q]=E.call(j));s=sb(s)}G.apply(j,s),k&&!f&&s.length>0&&p+b.length>1&&db.uniqueSort(j)}return k&&(u=w,h=t),r};return c?fb(f):f}g=db.compile=function(a,b){var c,d=[],e=[],f=y[a+" "];if(!f){b||(b=ob(a)),c=b.length;while(c--)f=ub(b[c]),f[s]?d.push(f):e.push(f);f=y(a,vb(e,d))}return f};function wb(a,b,c){for(var d=0,e=b.length;e>d;d++)db(a,b[d],c);return c}function xb(a,b,e,f){var h,i,j,k,l,m=ob(a);if(!f&&1===m.length){if(i=m[0]=m[0].slice(0),i.length>2&&"ID"===(j=i[0]).type&&c.getById&&9===b.nodeType&&n&&d.relative[i[1].type]){if(b=(d.find.ID(j.matches[0].replace(ab,bb),b)||[])[0],!b)return e;a=a.slice(i.shift().value.length)}h=V.needsContext.test(a)?0:i.length;while(h--){if(j=i[h],d.relative[k=j.type])break;if((l=d.find[k])&&(f=l(j.matches[0].replace(ab,bb),$.test(i[0].type)&&mb(b.parentNode)||b))){if(i.splice(h,1),a=f.length&&pb(i),!a)return G.apply(e,f),e;break}}}return g(a,m)(f,b,!n,e,$.test(a)&&mb(b.parentNode)||b),e}return c.sortStable=s.split("").sort(z).join("")===s,c.detectDuplicates=!!j,k(),c.sortDetached=gb(function(a){return 1&a.compareDocumentPosition(l.createElement("div"))}),gb(function(a){return a.innerHTML="<a href='#'></a>","#"===a.firstChild.getAttribute("href")})||hb("type|href|height|width",function(a,b,c){return c?void 0:a.getAttribute(b,"type"===b.toLowerCase()?1:2)}),c.attributes&&gb(function(a){return a.innerHTML="<input/>",a.firstChild.setAttribute("value",""),""===a.firstChild.getAttribute("value")})||hb("value",function(a,b,c){return c||"input"!==a.nodeName.toLowerCase()?void 0:a.defaultValue}),gb(function(a){return null==a.getAttribute("disabled")})||hb(J,function(a,b,c){var d;return c?void 0:a[b]===!0?b.toLowerCase():(d=a.getAttributeNode(b))&&d.specified?d.value:null}),db}(a);n.find=t,n.expr=t.selectors,n.expr[":"]=n.expr.pseudos,n.unique=t.uniqueSort,n.text=t.getText,n.isXMLDoc=t.isXML,n.contains=t.contains;var u=n.expr.match.needsContext,v=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,w=/^.[^:#\[\.,]*$/;function x(a,b,c){if(n.isFunction(b))return n.grep(a,function(a,d){return!!b.call(a,d,a)!==c});if(b.nodeType)return n.grep(a,function(a){return a===b!==c});if("string"==typeof b){if(w.test(b))return n.filter(b,a,c);b=n.filter(b,a)}return n.grep(a,function(a){return n.inArray(a,b)>=0!==c})}n.filter=function(a,b,c){var d=b[0];return c&&(a=":not("+a+")"),1===b.length&&1===d.nodeType?n.find.matchesSelector(d,a)?[d]:[]:n.find.matches(a,n.grep(b,function(a){return 1===a.nodeType}))},n.fn.extend({find:function(a){var b,c=[],d=this,e=d.length;if("string"!=typeof a)return this.pushStack(n(a).filter(function(){for(b=0;e>b;b++)if(n.contains(d[b],this))return!0}));for(b=0;e>b;b++)n.find(a,d[b],c);return c=this.pushStack(e>1?n.unique(c):c),c.selector=this.selector?this.selector+" "+a:a,c},filter:function(a){return this.pushStack(x(this,a||[],!1))},not:function(a){return this.pushStack(x(this,a||[],!0))},is:function(a){return!!x(this,"string"==typeof a&&u.test(a)?n(a):a||[],!1).length}});var y,z=a.document,A=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,B=n.fn.init=function(a,b){var c,d;if(!a)return this;if("string"==typeof a){if(c="<"===a.charAt(0)&&">"===a.charAt(a.length-1)&&a.length>=3?[null,a,null]:A.exec(a),!c||!c[1]&&b)return!b||b.jquery?(b||y).find(a):this.constructor(b).find(a);if(c[1]){if(b=b instanceof n?b[0]:b,n.merge(this,n.parseHTML(c[1],b&&b.nodeType?b.ownerDocument||b:z,!0)),v.test(c[1])&&n.isPlainObject(b))for(c in b)n.isFunction(this[c])?this[c](b[c]):this.attr(c,b[c]);return this}if(d=z.getElementById(c[2]),d&&d.parentNode){if(d.id!==c[2])return y.find(a);this.length=1,this[0]=d}return this.context=z,this.selector=a,this}return a.nodeType?(this.context=this[0]=a,this.length=1,this):n.isFunction(a)?"undefined"!=typeof y.ready?y.ready(a):a(n):(void 0!==a.selector&&(this.selector=a.selector,this.context=a.context),n.makeArray(a,this))};B.prototype=n.fn,y=n(z);var C=/^(?:parents|prev(?:Until|All))/,D={children:!0,contents:!0,next:!0,prev:!0};n.extend({dir:function(a,b,c){var d=[],e=a[b];while(e&&9!==e.nodeType&&(void 0===c||1!==e.nodeType||!n(e).is(c)))1===e.nodeType&&d.push(e),e=e[b];return d},sibling:function(a,b){for(var c=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&c.push(a);return c}}),n.fn.extend({has:function(a){var b,c=n(a,this),d=c.length;return this.filter(function(){for(b=0;d>b;b++)if(n.contains(this,c[b]))return!0})},closest:function(a,b){for(var c,d=0,e=this.length,f=[],g=u.test(a)||"string"!=typeof a?n(a,b||this.context):0;e>d;d++)for(c=this[d];c&&c!==b;c=c.parentNode)if(c.nodeType<11&&(g?g.index(c)>-1:1===c.nodeType&&n.find.matchesSelector(c,a))){f.push(c);break}return this.pushStack(f.length>1?n.unique(f):f)},index:function(a){return a?"string"==typeof a?n.inArray(this[0],n(a)):n.inArray(a.jquery?a[0]:a,this):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(a,b){return this.pushStack(n.unique(n.merge(this.get(),n(a,b))))},addBack:function(a){return this.add(null==a?this.prevObject:this.prevObject.filter(a))}});function E(a,b){do a=a[b];while(a&&1!==a.nodeType);return a}n.each({parent:function(a){var b=a.parentNode;return b&&11!==b.nodeType?b:null},parents:function(a){return n.dir(a,"parentNode")},parentsUntil:function(a,b,c){return n.dir(a,"parentNode",c)},next:function(a){return E(a,"nextSibling")},prev:function(a){return E(a,"previousSibling")},nextAll:function(a){return n.dir(a,"nextSibling")},prevAll:function(a){return n.dir(a,"previousSibling")},nextUntil:function(a,b,c){return n.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return n.dir(a,"previousSibling",c)},siblings:function(a){return n.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return n.sibling(a.firstChild)},contents:function(a){return n.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:n.merge([],a.childNodes)}},function(a,b){n.fn[a]=function(c,d){var e=n.map(this,b,c);return"Until"!==a.slice(-5)&&(d=c),d&&"string"==typeof d&&(e=n.filter(d,e)),this.length>1&&(D[a]||(e=n.unique(e)),C.test(a)&&(e=e.reverse())),this.pushStack(e)}});var F=/\S+/g,G={};function H(a){var b=G[a]={};return n.each(a.match(F)||[],function(a,c){b[c]=!0}),b}n.Callbacks=function(a){a="string"==typeof a?G[a]||H(a):n.extend({},a);var b,c,d,e,f,g,h=[],i=!a.once&&[],j=function(l){for(c=a.memory&&l,d=!0,f=g||0,g=0,e=h.length,b=!0;h&&e>f;f++)if(h[f].apply(l[0],l[1])===!1&&a.stopOnFalse){c=!1;break}b=!1,h&&(i?i.length&&j(i.shift()):c?h=[]:k.disable())},k={add:function(){if(h){var d=h.length;!function f(b){n.each(b,function(b,c){var d=n.type(c);"function"===d?a.unique&&k.has(c)||h.push(c):c&&c.length&&"string"!==d&&f(c)})}(arguments),b?e=h.length:c&&(g=d,j(c))}return this},remove:function(){return h&&n.each(arguments,function(a,c){var d;while((d=n.inArray(c,h,d))>-1)h.splice(d,1),b&&(e>=d&&e--,f>=d&&f--)}),this},has:function(a){return a?n.inArray(a,h)>-1:!(!h||!h.length)},empty:function(){return h=[],e=0,this},disable:function(){return h=i=c=void 0,this},disabled:function(){return!h},lock:function(){return i=void 0,c||k.disable(),this},locked:function(){return!i},fireWith:function(a,c){return!h||d&&!i||(c=c||[],c=[a,c.slice?c.slice():c],b?i.push(c):j(c)),this},fire:function(){return k.fireWith(this,arguments),this},fired:function(){return!!d}};return k},n.extend({Deferred:function(a){var b=[["resolve","done",n.Callbacks("once memory"),"resolved"],["reject","fail",n.Callbacks("once memory"),"rejected"],["notify","progress",n.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return n.Deferred(function(c){n.each(b,function(b,f){var g=n.isFunction(a[b])&&a[b];e[f[1]](function(){var a=g&&g.apply(this,arguments);a&&n.isFunction(a.promise)?a.promise().done(c.resolve).fail(c.reject).progress(c.notify):c[f[0]+"With"](this===d?c.promise():this,g?[a]:arguments)})}),a=null}).promise()},promise:function(a){return null!=a?n.extend(a,d):d}},e={};return d.pipe=d.then,n.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[1^a][2].disable,b[2][2].lock),e[f[0]]=function(){return e[f[0]+"With"](this===e?d:this,arguments),this},e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=d.call(arguments),e=c.length,f=1!==e||a&&n.isFunction(a.promise)?e:0,g=1===f?a:n.Deferred(),h=function(a,b,c){return function(e){b[a]=this,c[a]=arguments.length>1?d.call(arguments):e,c===i?g.notifyWith(b,c):--f||g.resolveWith(b,c)}},i,j,k;if(e>1)for(i=new Array(e),j=new Array(e),k=new Array(e);e>b;b++)c[b]&&n.isFunction(c[b].promise)?c[b].promise().done(h(b,k,c)).fail(g.reject).progress(h(b,j,i)):--f;return f||g.resolveWith(k,c),g.promise()}});var I;n.fn.ready=function(a){return n.ready.promise().done(a),this},n.extend({isReady:!1,readyWait:1,holdReady:function(a){a?n.readyWait++:n.ready(!0)},ready:function(a){if(a===!0?!--n.readyWait:!n.isReady){if(!z.body)return setTimeout(n.ready);n.isReady=!0,a!==!0&&--n.readyWait>0||(I.resolveWith(z,[n]),n.fn.trigger&&n(z).trigger("ready").off("ready"))}}});function J(){z.addEventListener?(z.removeEventListener("DOMContentLoaded",K,!1),a.removeEventListener("load",K,!1)):(z.detachEvent("onreadystatechange",K),a.detachEvent("onload",K))}function K(){(z.addEventListener||"load"===event.type||"complete"===z.readyState)&&(J(),n.ready())}n.ready.promise=function(b){if(!I)if(I=n.Deferred(),"complete"===z.readyState)setTimeout(n.ready);else if(z.addEventListener)z.addEventListener("DOMContentLoaded",K,!1),a.addEventListener("load",K,!1);else{z.attachEvent("onreadystatechange",K),a.attachEvent("onload",K);var c=!1;try{c=null==a.frameElement&&z.documentElement}catch(d){}c&&c.doScroll&&!function e(){if(!n.isReady){try{c.doScroll("left")}catch(a){return setTimeout(e,50)}J(),n.ready()}}()}return I.promise(b)};var L="undefined",M;for(M in n(l))break;l.ownLast="0"!==M,l.inlineBlockNeedsLayout=!1,n(function(){var a,b,c=z.getElementsByTagName("body")[0];c&&(a=z.createElement("div"),a.style.cssText="border:0;width:0;height:0;position:absolute;top:0;left:-9999px;margin-top:1px",b=z.createElement("div"),c.appendChild(a).appendChild(b),typeof b.style.zoom!==L&&(b.style.cssText="border:0;margin:0;width:1px;padding:1px;display:inline;zoom:1",(l.inlineBlockNeedsLayout=3===b.offsetWidth)&&(c.style.zoom=1)),c.removeChild(a),a=b=null)}),function(){var a=z.createElement("div");if(null==l.deleteExpando){l.deleteExpando=!0;try{delete a.test}catch(b){l.deleteExpando=!1}}a=null}(),n.acceptData=function(a){var b=n.noData[(a.nodeName+" ").toLowerCase()],c=+a.nodeType||1;return 1!==c&&9!==c?!1:!b||b!==!0&&a.getAttribute("classid")===b};var N=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,O=/([A-Z])/g;function P(a,b,c){if(void 0===c&&1===a.nodeType){var d="data-"+b.replace(O,"-$1").toLowerCase();if(c=a.getAttribute(d),"string"==typeof c){try{c="true"===c?!0:"false"===c?!1:"null"===c?null:+c+""===c?+c:N.test(c)?n.parseJSON(c):c}catch(e){}n.data(a,b,c)}else c=void 0}return c}function Q(a){var b;for(b in a)if(("data"!==b||!n.isEmptyObject(a[b]))&&"toJSON"!==b)return!1;return!0}function R(a,b,d,e){if(n.acceptData(a)){var f,g,h=n.expando,i=a.nodeType,j=i?n.cache:a,k=i?a[h]:a[h]&&h;if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a[h]=c.pop()||n.guid++:h),j[k]||(j[k]=i?{}:{toJSON:n.noop}),("object"==typeof b||"function"==typeof b)&&(e?j[k]=n.extend(j[k],b):j[k].data=n.extend(j[k].data,b)),g=j[k],e||(g.data||(g.data={}),g=g.data),void 0!==d&&(g[n.camelCase(b)]=d),"string"==typeof b?(f=g[b],null==f&&(f=g[n.camelCase(b)])):f=g,f |
|---|
| 3 | +}}function S(a,b,c){if(n.acceptData(a)){var d,e,f=a.nodeType,g=f?n.cache:a,h=f?a[n.expando]:n.expando;if(g[h]){if(b&&(d=c?g[h]:g[h].data)){n.isArray(b)?b=b.concat(n.map(b,n.camelCase)):b in d?b=[b]:(b=n.camelCase(b),b=b in d?[b]:b.split(" ")),e=b.length;while(e--)delete d[b[e]];if(c?!Q(d):!n.isEmptyObject(d))return}(c||(delete g[h].data,Q(g[h])))&&(f?n.cleanData([a],!0):l.deleteExpando||g!=g.window?delete g[h]:g[h]=null)}}}n.extend({cache:{},noData:{"applet ":!0,"embed ":!0,"object ":"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"},hasData:function(a){return a=a.nodeType?n.cache[a[n.expando]]:a[n.expando],!!a&&!Q(a)},data:function(a,b,c){return R(a,b,c)},removeData:function(a,b){return S(a,b)},_data:function(a,b,c){return R(a,b,c,!0)},_removeData:function(a,b){return S(a,b,!0)}}),n.fn.extend({data:function(a,b){var c,d,e,f=this[0],g=f&&f.attributes;if(void 0===a){if(this.length&&(e=n.data(f),1===f.nodeType&&!n._data(f,"parsedAttrs"))){c=g.length;while(c--)d=g[c].name,0===d.indexOf("data-")&&(d=n.camelCase(d.slice(5)),P(f,d,e[d]));n._data(f,"parsedAttrs",!0)}return e}return"object"==typeof a?this.each(function(){n.data(this,a)}):arguments.length>1?this.each(function(){n.data(this,a,b)}):f?P(f,a,n.data(f,a)):void 0},removeData:function(a){return this.each(function(){n.removeData(this,a)})}}),n.extend({queue:function(a,b,c){var d;return a?(b=(b||"fx")+"queue",d=n._data(a,b),c&&(!d||n.isArray(c)?d=n._data(a,b,n.makeArray(c)):d.push(c)),d||[]):void 0},dequeue:function(a,b){b=b||"fx";var c=n.queue(a,b),d=c.length,e=c.shift(),f=n._queueHooks(a,b),g=function(){n.dequeue(a,b)};"inprogress"===e&&(e=c.shift(),d--),e&&("fx"===b&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return n._data(a,c)||n._data(a,c,{empty:n.Callbacks("once memory").add(function(){n._removeData(a,b+"queue"),n._removeData(a,c)})})}}),n.fn.extend({queue:function(a,b){var c=2;return"string"!=typeof a&&(b=a,a="fx",c--),arguments.length<c?n.queue(this[0],a):void 0===b?this:this.each(function(){var c=n.queue(this,a,b);n._queueHooks(this,a),"fx"===a&&"inprogress"!==c[0]&&n.dequeue(this,a)})},dequeue:function(a){return this.each(function(){n.dequeue(this,a)})},clearQueue:function(a){return this.queue(a||"fx",[])},promise:function(a,b){var c,d=1,e=n.Deferred(),f=this,g=this.length,h=function(){--d||e.resolveWith(f,[f])};"string"!=typeof a&&(b=a,a=void 0),a=a||"fx";while(g--)c=n._data(f[g],a+"queueHooks"),c&&c.empty&&(d++,c.empty.add(h));return h(),e.promise(b)}});var T=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,U=["Top","Right","Bottom","Left"],V=function(a,b){return a=b||a,"none"===n.css(a,"display")||!n.contains(a.ownerDocument,a)},W=n.access=function(a,b,c,d,e,f,g){var h=0,i=a.length,j=null==c;if("object"===n.type(c)){e=!0;for(h in c)n.access(a,b,h,c[h],!0,f,g)}else if(void 0!==d&&(e=!0,n.isFunction(d)||(g=!0),j&&(g?(b.call(a,d),b=null):(j=b,b=function(a,b,c){return j.call(n(a),c)})),b))for(;i>h;h++)b(a[h],c,g?d:d.call(a[h],h,b(a[h],c)));return e?a:j?b.call(a):i?b(a[0],c):f},X=/^(?:checkbox|radio)$/i;!function(){var a=z.createDocumentFragment(),b=z.createElement("div"),c=z.createElement("input");if(b.setAttribute("className","t"),b.innerHTML=" <link/><table></table><a href='/a'>a</a>",l.leadingWhitespace=3===b.firstChild.nodeType,l.tbody=!b.getElementsByTagName("tbody").length,l.htmlSerialize=!!b.getElementsByTagName("link").length,l.html5Clone="<:nav></:nav>"!==z.createElement("nav").cloneNode(!0).outerHTML,c.type="checkbox",c.checked=!0,a.appendChild(c),l.appendChecked=c.checked,b.innerHTML="<textarea>x</textarea>",l.noCloneChecked=!!b.cloneNode(!0).lastChild.defaultValue,a.appendChild(b),b.innerHTML="<input type='radio' checked='checked' name='t'/>",l.checkClone=b.cloneNode(!0).cloneNode(!0).lastChild.checked,l.noCloneEvent=!0,b.attachEvent&&(b.attachEvent("onclick",function(){l.noCloneEvent=!1}),b.cloneNode(!0).click()),null==l.deleteExpando){l.deleteExpando=!0;try{delete b.test}catch(d){l.deleteExpando=!1}}a=b=c=null}(),function(){var b,c,d=z.createElement("div");for(b in{submit:!0,change:!0,focusin:!0})c="on"+b,(l[b+"Bubbles"]=c in a)||(d.setAttribute(c,"t"),l[b+"Bubbles"]=d.attributes[c].expando===!1);d=null}();var Y=/^(?:input|select|textarea)$/i,Z=/^key/,$=/^(?:mouse|contextmenu)|click/,_=/^(?:focusinfocus|focusoutblur)$/,ab=/^([^.]*)(?:\.(.+)|)$/;function bb(){return!0}function cb(){return!1}function db(){try{return z.activeElement}catch(a){}}n.event={global:{},add:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,o,p,q,r=n._data(a);if(r){c.handler&&(i=c,c=i.handler,e=i.selector),c.guid||(c.guid=n.guid++),(g=r.events)||(g=r.events={}),(k=r.handle)||(k=r.handle=function(a){return typeof n===L||a&&n.event.triggered===a.type?void 0:n.event.dispatch.apply(k.elem,arguments)},k.elem=a),b=(b||"").match(F)||[""],h=b.length;while(h--)f=ab.exec(b[h])||[],o=q=f[1],p=(f[2]||"").split(".").sort(),o&&(j=n.event.special[o]||{},o=(e?j.delegateType:j.bindType)||o,j=n.event.special[o]||{},l=n.extend({type:o,origType:q,data:d,handler:c,guid:c.guid,selector:e,needsContext:e&&n.expr.match.needsContext.test(e),namespace:p.join(".")},i),(m=g[o])||(m=g[o]=[],m.delegateCount=0,j.setup&&j.setup.call(a,d,p,k)!==!1||(a.addEventListener?a.addEventListener(o,k,!1):a.attachEvent&&a.attachEvent("on"+o,k))),j.add&&(j.add.call(a,l),l.handler.guid||(l.handler.guid=c.guid)),e?m.splice(m.delegateCount++,0,l):m.push(l),n.event.global[o]=!0);a=null}},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,o,p,q,r=n.hasData(a)&&n._data(a);if(r&&(k=r.events)){b=(b||"").match(F)||[""],j=b.length;while(j--)if(h=ab.exec(b[j])||[],o=q=h[1],p=(h[2]||"").split(".").sort(),o){l=n.event.special[o]||{},o=(d?l.delegateType:l.bindType)||o,m=k[o]||[],h=h[2]&&new RegExp("(^|\\.)"+p.join("\\.(?:.*\\.|)")+"(\\.|$)"),i=f=m.length;while(f--)g=m[f],!e&&q!==g.origType||c&&c.guid!==g.guid||h&&!h.test(g.namespace)||d&&d!==g.selector&&("**"!==d||!g.selector)||(m.splice(f,1),g.selector&&m.delegateCount--,l.remove&&l.remove.call(a,g));i&&!m.length&&(l.teardown&&l.teardown.call(a,p,r.handle)!==!1||n.removeEvent(a,o,r.handle),delete k[o])}else for(o in k)n.event.remove(a,o+b[j],c,d,!0);n.isEmptyObject(k)&&(delete r.handle,n._removeData(a,"events"))}},trigger:function(b,c,d,e){var f,g,h,i,k,l,m,o=[d||z],p=j.call(b,"type")?b.type:b,q=j.call(b,"namespace")?b.namespace.split("."):[];if(h=l=d=d||z,3!==d.nodeType&&8!==d.nodeType&&!_.test(p+n.event.triggered)&&(p.indexOf(".")>=0&&(q=p.split("."),p=q.shift(),q.sort()),g=p.indexOf(":")<0&&"on"+p,b=b[n.expando]?b:new n.Event(p,"object"==typeof b&&b),b.isTrigger=e?2:3,b.namespace=q.join("."),b.namespace_re=b.namespace?new RegExp("(^|\\.)"+q.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,b.result=void 0,b.target||(b.target=d),c=null==c?[b]:n.makeArray(c,[b]),k=n.event.special[p]||{},e||!k.trigger||k.trigger.apply(d,c)!==!1)){if(!e&&!k.noBubble&&!n.isWindow(d)){for(i=k.delegateType||p,_.test(i+p)||(h=h.parentNode);h;h=h.parentNode)o.push(h),l=h;l===(d.ownerDocument||z)&&o.push(l.defaultView||l.parentWindow||a)}m=0;while((h=o[m++])&&!b.isPropagationStopped())b.type=m>1?i:k.bindType||p,f=(n._data(h,"events")||{})[b.type]&&n._data(h,"handle"),f&&f.apply(h,c),f=g&&h[g],f&&f.apply&&n.acceptData(h)&&(b.result=f.apply(h,c),b.result===!1&&b.preventDefault());if(b.type=p,!e&&!b.isDefaultPrevented()&&(!k._default||k._default.apply(o.pop(),c)===!1)&&n.acceptData(d)&&g&&d[p]&&!n.isWindow(d)){l=d[g],l&&(d[g]=null),n.event.triggered=p;try{d[p]()}catch(r){}n.event.triggered=void 0,l&&(d[g]=l)}return b.result}},dispatch:function(a){a=n.event.fix(a);var b,c,e,f,g,h=[],i=d.call(arguments),j=(n._data(this,"events")||{})[a.type]||[],k=n.event.special[a.type]||{};if(i[0]=a,a.delegateTarget=this,!k.preDispatch||k.preDispatch.call(this,a)!==!1){h=n.event.handlers.call(this,a,j),b=0;while((f=h[b++])&&!a.isPropagationStopped()){a.currentTarget=f.elem,g=0;while((e=f.handlers[g++])&&!a.isImmediatePropagationStopped())(!a.namespace_re||a.namespace_re.test(e.namespace))&&(a.handleObj=e,a.data=e.data,c=((n.event.special[e.origType]||{}).handle||e.handler).apply(f.elem,i),void 0!==c&&(a.result=c)===!1&&(a.preventDefault(),a.stopPropagation()))}return k.postDispatch&&k.postDispatch.call(this,a),a.result}},handlers:function(a,b){var c,d,e,f,g=[],h=b.delegateCount,i=a.target;if(h&&i.nodeType&&(!a.button||"click"!==a.type))for(;i!=this;i=i.parentNode||this)if(1===i.nodeType&&(i.disabled!==!0||"click"!==a.type)){for(e=[],f=0;h>f;f++)d=b[f],c=d.selector+" ",void 0===e[c]&&(e[c]=d.needsContext?n(c,this).index(i)>=0:n.find(c,this,null,[i]).length),e[c]&&e.push(d);e.length&&g.push({elem:i,handlers:e})}return h<b.length&&g.push({elem:this,handlers:b.slice(h)}),g},fix:function(a){if(a[n.expando])return a;var b,c,d,e=a.type,f=a,g=this.fixHooks[e];g||(this.fixHooks[e]=g=$.test(e)?this.mouseHooks:Z.test(e)?this.keyHooks:{}),d=g.props?this.props.concat(g.props):this.props,a=new n.Event(f),b=d.length;while(b--)c=d[b],a[c]=f[c];return a.target||(a.target=f.srcElement||z),3===a.target.nodeType&&(a.target=a.target.parentNode),a.metaKey=!!a.metaKey,g.filter?g.filter(a,f):a},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(a,b){return null==a.which&&(a.which=null!=b.charCode?b.charCode:b.keyCode),a}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(a,b){var c,d,e,f=b.button,g=b.fromElement;return null==a.pageX&&null!=b.clientX&&(d=a.target.ownerDocument||z,e=d.documentElement,c=d.body,a.pageX=b.clientX+(e&&e.scrollLeft||c&&c.scrollLeft||0)-(e&&e.clientLeft||c&&c.clientLeft||0),a.pageY=b.clientY+(e&&e.scrollTop||c&&c.scrollTop||0)-(e&&e.clientTop||c&&c.clientTop||0)),!a.relatedTarget&&g&&(a.relatedTarget=g===a.target?b.toElement:g),a.which||void 0===f||(a.which=1&f?1:2&f?3:4&f?2:0),a}},special:{load:{noBubble:!0},focus:{trigger:function(){if(this!==db()&&this.focus)try{return this.focus(),!1}catch(a){}},delegateType:"focusin"},blur:{trigger:function(){return this===db()&&this.blur?(this.blur(),!1):void 0},delegateType:"focusout"},click:{trigger:function(){return n.nodeName(this,"input")&&"checkbox"===this.type&&this.click?(this.click(),!1):void 0},_default:function(a){return n.nodeName(a.target,"a")}},beforeunload:{postDispatch:function(a){void 0!==a.result&&(a.originalEvent.returnValue=a.result)}}},simulate:function(a,b,c,d){var e=n.extend(new n.Event,c,{type:a,isSimulated:!0,originalEvent:{}});d?n.event.trigger(e,null,b):n.event.dispatch.call(b,e),e.isDefaultPrevented()&&c.preventDefault()}},n.removeEvent=z.removeEventListener?function(a,b,c){a.removeEventListener&&a.removeEventListener(b,c,!1)}:function(a,b,c){var d="on"+b;a.detachEvent&&(typeof a[d]===L&&(a[d]=null),a.detachEvent(d,c))},n.Event=function(a,b){return this instanceof n.Event?(a&&a.type?(this.originalEvent=a,this.type=a.type,this.isDefaultPrevented=a.defaultPrevented||void 0===a.defaultPrevented&&(a.returnValue===!1||a.getPreventDefault&&a.getPreventDefault())?bb:cb):this.type=a,b&&n.extend(this,b),this.timeStamp=a&&a.timeStamp||n.now(),void(this[n.expando]=!0)):new n.Event(a,b)},n.Event.prototype={isDefaultPrevented:cb,isPropagationStopped:cb,isImmediatePropagationStopped:cb,preventDefault:function(){var a=this.originalEvent;this.isDefaultPrevented=bb,a&&(a.preventDefault?a.preventDefault():a.returnValue=!1)},stopPropagation:function(){var a=this.originalEvent;this.isPropagationStopped=bb,a&&(a.stopPropagation&&a.stopPropagation(),a.cancelBubble=!0)},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=bb,this.stopPropagation()}},n.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(a,b){n.event.special[a]={delegateType:b,bindType:b,handle:function(a){var c,d=this,e=a.relatedTarget,f=a.handleObj;return(!e||e!==d&&!n.contains(d,e))&&(a.type=f.origType,c=f.handler.apply(this,arguments),a.type=b),c}}}),l.submitBubbles||(n.event.special.submit={setup:function(){return n.nodeName(this,"form")?!1:void n.event.add(this,"click._submit keypress._submit",function(a){var b=a.target,c=n.nodeName(b,"input")||n.nodeName(b,"button")?b.form:void 0;c&&!n._data(c,"submitBubbles")&&(n.event.add(c,"submit._submit",function(a){a._submit_bubble=!0}),n._data(c,"submitBubbles",!0))})},postDispatch:function(a){a._submit_bubble&&(delete a._submit_bubble,this.parentNode&&!a.isTrigger&&n.event.simulate("submit",this.parentNode,a,!0))},teardown:function(){return n.nodeName(this,"form")?!1:void n.event.remove(this,"._submit")}}),l.changeBubbles||(n.event.special.change={setup:function(){return Y.test(this.nodeName)?(("checkbox"===this.type||"radio"===this.type)&&(n.event.add(this,"propertychange._change",function(a){"checked"===a.originalEvent.propertyName&&(this._just_changed=!0)}),n.event.add(this,"click._change",function(a){this._just_changed&&!a.isTrigger&&(this._just_changed=!1),n.event.simulate("change",this,a,!0)})),!1):void n.event.add(this,"beforeactivate._change",function(a){var b=a.target;Y.test(b.nodeName)&&!n._data(b,"changeBubbles")&&(n.event.add(b,"change._change",function(a){!this.parentNode||a.isSimulated||a.isTrigger||n.event.simulate("change",this.parentNode,a,!0)}),n._data(b,"changeBubbles",!0))})},handle:function(a){var b=a.target;return this!==b||a.isSimulated||a.isTrigger||"radio"!==b.type&&"checkbox"!==b.type?a.handleObj.handler.apply(this,arguments):void 0},teardown:function(){return n.event.remove(this,"._change"),!Y.test(this.nodeName)}}),l.focusinBubbles||n.each({focus:"focusin",blur:"focusout"},function(a,b){var c=function(a){n.event.simulate(b,a.target,n.event.fix(a),!0)};n.event.special[b]={setup:function(){var d=this.ownerDocument||this,e=n._data(d,b);e||d.addEventListener(a,c,!0),n._data(d,b,(e||0)+1)},teardown:function(){var d=this.ownerDocument||this,e=n._data(d,b)-1;e?n._data(d,b,e):(d.removeEventListener(a,c,!0),n._removeData(d,b))}}}),n.fn.extend({on:function(a,b,c,d,e){var f,g;if("object"==typeof a){"string"!=typeof b&&(c=c||b,b=void 0);for(f in a)this.on(f,b,c,a[f],e);return this}if(null==c&&null==d?(d=b,c=b=void 0):null==d&&("string"==typeof b?(d=c,c=void 0):(d=c,c=b,b=void 0)),d===!1)d=cb;else if(!d)return this;return 1===e&&(g=d,d=function(a){return n().off(a),g.apply(this,arguments)},d.guid=g.guid||(g.guid=n.guid++)),this.each(function(){n.event.add(this,a,d,c,b)})},one:function(a,b,c,d){return this.on(a,b,c,d,1)},off:function(a,b,c){var d,e;if(a&&a.preventDefault&&a.handleObj)return d=a.handleObj,n(a.delegateTarget).off(d.namespace?d.origType+"."+d.namespace:d.origType,d.selector,d.handler),this;if("object"==typeof a){for(e in a)this.off(e,b,a[e]);return this}return(b===!1||"function"==typeof b)&&(c=b,b=void 0),c===!1&&(c=cb),this.each(function(){n.event.remove(this,a,c,b)})},trigger:function(a,b){return this.each(function(){n.event.trigger(a,b,this)})},triggerHandler:function(a,b){var c=this[0];return c?n.event.trigger(a,b,c,!0):void 0}});function eb(a){var b=fb.split("|"),c=a.createDocumentFragment();if(c.createElement)while(b.length)c.createElement(b.pop());return c}var fb="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",gb=/ jQuery\d+="(?:null|\d+)"/g,hb=new RegExp("<(?:"+fb+")[\\s/>]","i"),ib=/^\s+/,jb=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,kb=/<([\w:]+)/,lb=/<tbody/i,mb=/<|&#?\w+;/,nb=/<(?:script|style|link)/i,ob=/checked\s*(?:[^=]|=\s*.checked.)/i,pb=/^$|\/(?:java|ecma)script/i,qb=/^true\/(.*)/,rb=/^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g,sb={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:l.htmlSerialize?[0,"",""]:[1,"X<div>","</div>"]},tb=eb(z),ub=tb.appendChild(z.createElement("div"));sb.optgroup=sb.option,sb.tbody=sb.tfoot=sb.colgroup=sb.caption=sb.thead,sb.th=sb.td;function vb(a,b){var c,d,e=0,f=typeof a.getElementsByTagName!==L?a.getElementsByTagName(b||"*"):typeof a.querySelectorAll!==L?a.querySelectorAll(b||"*"):void 0;if(!f)for(f=[],c=a.childNodes||a;null!=(d=c[e]);e++)!b||n.nodeName(d,b)?f.push(d):n.merge(f,vb(d,b));return void 0===b||b&&n.nodeName(a,b)?n.merge([a],f):f}function wb(a){X.test(a.type)&&(a.defaultChecked=a.checked)}function xb(a,b){return n.nodeName(a,"table")&&n.nodeName(11!==b.nodeType?b:b.firstChild,"tr")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function yb(a){return a.type=(null!==n.find.attr(a,"type"))+"/"+a.type,a}function zb(a){var b=qb.exec(a.type);return b?a.type=b[1]:a.removeAttribute("type"),a}function Ab(a,b){for(var c,d=0;null!=(c=a[d]);d++)n._data(c,"globalEval",!b||n._data(b[d],"globalEval"))}function Bb(a,b){if(1===b.nodeType&&n.hasData(a)){var c,d,e,f=n._data(a),g=n._data(b,f),h=f.events;if(h){delete g.handle,g.events={};for(c in h)for(d=0,e=h[c].length;e>d;d++)n.event.add(b,c,h[c][d])}g.data&&(g.data=n.extend({},g.data))}}function Cb(a,b){var c,d,e;if(1===b.nodeType){if(c=b.nodeName.toLowerCase(),!l.noCloneEvent&&b[n.expando]){e=n._data(b);for(d in e.events)n.removeEvent(b,d,e.handle);b.removeAttribute(n.expando)}"script"===c&&b.text!==a.text?(yb(b).text=a.text,zb(b)):"object"===c?(b.parentNode&&(b.outerHTML=a.outerHTML),l.html5Clone&&a.innerHTML&&!n.trim(b.innerHTML)&&(b.innerHTML=a.innerHTML)):"input"===c&&X.test(a.type)?(b.defaultChecked=b.checked=a.checked,b.value!==a.value&&(b.value=a.value)):"option"===c?b.defaultSelected=b.selected=a.defaultSelected:("input"===c||"textarea"===c)&&(b.defaultValue=a.defaultValue)}}n.extend({clone:function(a,b,c){var d,e,f,g,h,i=n.contains(a.ownerDocument,a);if(l.html5Clone||n.isXMLDoc(a)||!hb.test("<"+a.nodeName+">")?f=a.cloneNode(!0):(ub.innerHTML=a.outerHTML,ub.removeChild(f=ub.firstChild)),!(l.noCloneEvent&&l.noCloneChecked||1!==a.nodeType&&11!==a.nodeType||n.isXMLDoc(a)))for(d=vb(f),h=vb(a),g=0;null!=(e=h[g]);++g)d[g]&&Cb(e,d[g]);if(b)if(c)for(h=h||vb(a),d=d||vb(f),g=0;null!=(e=h[g]);g++)Bb(e,d[g]);else Bb(a,f);return d=vb(f,"script"),d.length>0&&Ab(d,!i&&vb(a,"script")),d=h=e=null,f},buildFragment:function(a,b,c,d){for(var e,f,g,h,i,j,k,m=a.length,o=eb(b),p=[],q=0;m>q;q++)if(f=a[q],f||0===f)if("object"===n.type(f))n.merge(p,f.nodeType?[f]:f);else if(mb.test(f)){h=h||o.appendChild(b.createElement("div")),i=(kb.exec(f)||["",""])[1].toLowerCase(),k=sb[i]||sb._default,h.innerHTML=k[1]+f.replace(jb,"<$1></$2>")+k[2],e=k[0];while(e--)h=h.lastChild;if(!l.leadingWhitespace&&ib.test(f)&&p.push(b.createTextNode(ib.exec(f)[0])),!l.tbody){f="table"!==i||lb.test(f)?"<table>"!==k[1]||lb.test(f)?0:h:h.firstChild,e=f&&f.childNodes.length;while(e--)n.nodeName(j=f.childNodes[e],"tbody")&&!j.childNodes.length&&f.removeChild(j)}n.merge(p,h.childNodes),h.textContent="";while(h.firstChild)h.removeChild(h.firstChild);h=o.lastChild}else p.push(b.createTextNode(f));h&&o.removeChild(h),l.appendChecked||n.grep(vb(p,"input"),wb),q=0;while(f=p[q++])if((!d||-1===n.inArray(f,d))&&(g=n.contains(f.ownerDocument,f),h=vb(o.appendChild(f),"script"),g&&Ab(h),c)){e=0;while(f=h[e++])pb.test(f.type||"")&&c.push(f)}return h=null,o},cleanData:function(a,b){for(var d,e,f,g,h=0,i=n.expando,j=n.cache,k=l.deleteExpando,m=n.event.special;null!=(d=a[h]);h++)if((b||n.acceptData(d))&&(f=d[i],g=f&&j[f])){if(g.events)for(e in g.events)m[e]?n.event.remove(d,e):n.removeEvent(d,e,g.handle);j[f]&&(delete j[f],k?delete d[i]:typeof d.removeAttribute!==L?d.removeAttribute(i):d[i]=null,c.push(f))}}}),n.fn.extend({text:function(a){return W(this,function(a){return void 0===a?n.text(this):this.empty().append((this[0]&&this[0].ownerDocument||z).createTextNode(a))},null,a,arguments.length)},append:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=xb(this,a);b.appendChild(a)}})},prepend:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=xb(this,a);b.insertBefore(a,b.firstChild)}})},before:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this)})},after:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this.nextSibling)})},remove:function(a,b){for(var c,d=a?n.filter(a,this):this,e=0;null!=(c=d[e]);e++)b||1!==c.nodeType||n.cleanData(vb(c)),c.parentNode&&(b&&n.contains(c.ownerDocument,c)&&Ab(vb(c,"script")),c.parentNode.removeChild(c));return this},empty:function(){for(var a,b=0;null!=(a=this[b]);b++){1===a.nodeType&&n.cleanData(vb(a,!1));while(a.firstChild)a.removeChild(a.firstChild);a.options&&n.nodeName(a,"select")&&(a.options.length=0)}return this},clone:function(a,b){return a=null==a?!1:a,b=null==b?a:b,this.map(function(){return n.clone(this,a,b)})},html:function(a){return W(this,function(a){var b=this[0]||{},c=0,d=this.length;if(void 0===a)return 1===b.nodeType?b.innerHTML.replace(gb,""):void 0;if(!("string"!=typeof a||nb.test(a)||!l.htmlSerialize&&hb.test(a)||!l.leadingWhitespace&&ib.test(a)||sb[(kb.exec(a)||["",""])[1].toLowerCase()])){a=a.replace(jb,"<$1></$2>");try{for(;d>c;c++)b=this[c]||{},1===b.nodeType&&(n.cleanData(vb(b,!1)),b.innerHTML=a);b=0}catch(e){}}b&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(){var a=arguments[0];return this.domManip(arguments,function(b){a=this.parentNode,n.cleanData(vb(this)),a&&a.replaceChild(b,this)}),a&&(a.length||a.nodeType)?this:this.remove()},detach:function(a){return this.remove(a,!0)},domManip:function(a,b){a=e.apply([],a);var c,d,f,g,h,i,j=0,k=this.length,m=this,o=k-1,p=a[0],q=n.isFunction(p);if(q||k>1&&"string"==typeof p&&!l.checkClone&&ob.test(p))return this.each(function(c){var d=m.eq(c);q&&(a[0]=p.call(this,c,d.html())),d.domManip(a,b)});if(k&&(i=n.buildFragment(a,this[0].ownerDocument,!1,this),c=i.firstChild,1===i.childNodes.length&&(i=c),c)){for(g=n.map(vb(i,"script"),yb),f=g.length;k>j;j++)d=i,j!==o&&(d=n.clone(d,!0,!0),f&&n.merge(g,vb(d,"script"))),b.call(this[j],d,j);if(f)for(h=g[g.length-1].ownerDocument,n.map(g,zb),j=0;f>j;j++)d=g[j],pb.test(d.type||"")&&!n._data(d,"globalEval")&&n.contains(h,d)&&(d.src?n._evalUrl&&n._evalUrl(d.src):n.globalEval((d.text||d.textContent||d.innerHTML||"").replace(rb,"")));i=c=null}return this}}),n.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){n.fn[a]=function(a){for(var c,d=0,e=[],g=n(a),h=g.length-1;h>=d;d++)c=d===h?this:this.clone(!0),n(g[d])[b](c),f.apply(e,c.get());return this.pushStack(e)}});var Db,Eb={};function Fb(b,c){var d=n(c.createElement(b)).appendTo(c.body),e=a.getDefaultComputedStyle?a.getDefaultComputedStyle(d[0]).display:n.css(d[0],"display");return d.detach(),e}function Gb(a){var b=z,c=Eb[a];return c||(c=Fb(a,b),"none"!==c&&c||(Db=(Db||n("<iframe frameborder='0' width='0' height='0'/>")).appendTo(b.documentElement),b=(Db[0].contentWindow||Db[0].contentDocument).document,b.write(),b.close(),c=Fb(a,b),Db.detach()),Eb[a]=c),c}!function(){var a,b,c=z.createElement("div"),d="-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;display:block;padding:0;margin:0;border:0";c.innerHTML=" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",a=c.getElementsByTagName("a")[0],a.style.cssText="float:left;opacity:.5",l.opacity=/^0.5/.test(a.style.opacity),l.cssFloat=!!a.style.cssFloat,c.style.backgroundClip="content-box",c.cloneNode(!0).style.backgroundClip="",l.clearCloneStyle="content-box"===c.style.backgroundClip,a=c=null,l.shrinkWrapBlocks=function(){var a,c,e,f;if(null==b){if(a=z.getElementsByTagName("body")[0],!a)return;f="border:0;width:0;height:0;position:absolute;top:0;left:-9999px",c=z.createElement("div"),e=z.createElement("div"),a.appendChild(c).appendChild(e),b=!1,typeof e.style.zoom!==L&&(e.style.cssText=d+";width:1px;padding:1px;zoom:1",e.innerHTML="<div></div>",e.firstChild.style.width="5px",b=3!==e.offsetWidth),a.removeChild(c),a=c=e=null}return b}}();var Hb=/^margin/,Ib=new RegExp("^("+T+")(?!px)[a-z%]+$","i"),Jb,Kb,Lb=/^(top|right|bottom|left)$/;a.getComputedStyle?(Jb=function(a){return a.ownerDocument.defaultView.getComputedStyle(a,null)},Kb=function(a,b,c){var d,e,f,g,h=a.style;return c=c||Jb(a),g=c?c.getPropertyValue(b)||c[b]:void 0,c&&(""!==g||n.contains(a.ownerDocument,a)||(g=n.style(a,b)),Ib.test(g)&&Hb.test(b)&&(d=h.width,e=h.minWidth,f=h.maxWidth,h.minWidth=h.maxWidth=h.width=g,g=c.width,h.width=d,h.minWidth=e,h.maxWidth=f)),void 0===g?g:g+""}):z.documentElement.currentStyle&&(Jb=function(a){return a.currentStyle},Kb=function(a,b,c){var d,e,f,g,h=a.style;return c=c||Jb(a),g=c?c[b]:void 0,null==g&&h&&h[b]&&(g=h[b]),Ib.test(g)&&!Lb.test(b)&&(d=h.left,e=a.runtimeStyle,f=e&&e.left,f&&(e.left=a.currentStyle.left),h.left="fontSize"===b?"1em":g,g=h.pixelLeft+"px",h.left=d,f&&(e.left=f)),void 0===g?g:g+""||"auto"});function Mb(a,b){return{get:function(){var c=a();if(null!=c)return c?void delete this.get:(this.get=b).apply(this,arguments)}}}!function(){var b,c,d,e,f,g,h=z.createElement("div"),i="border:0;width:0;height:0;position:absolute;top:0;left:-9999px",j="-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;display:block;padding:0;margin:0;border:0";h.innerHTML=" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",b=h.getElementsByTagName("a")[0],b.style.cssText="float:left;opacity:.5",l.opacity=/^0.5/.test(b.style.opacity),l.cssFloat=!!b.style.cssFloat,h.style.backgroundClip="content-box",h.cloneNode(!0).style.backgroundClip="",l.clearCloneStyle="content-box"===h.style.backgroundClip,b=h=null,n.extend(l,{reliableHiddenOffsets:function(){if(null!=c)return c;var a,b,d,e=z.createElement("div"),f=z.getElementsByTagName("body")[0];if(f)return e.setAttribute("className","t"),e.innerHTML=" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",a=z.createElement("div"),a.style.cssText=i,f.appendChild(a).appendChild(e),e.innerHTML="<table><tr><td></td><td>t</td></tr></table>",b=e.getElementsByTagName("td"),b[0].style.cssText="padding:0;margin:0;border:0;display:none",d=0===b[0].offsetHeight,b[0].style.display="",b[1].style.display="none",c=d&&0===b[0].offsetHeight,f.removeChild(a),e=f=null,c},boxSizing:function(){return null==d&&k(),d},boxSizingReliable:function(){return null==e&&k(),e},pixelPosition:function(){return null==f&&k(),f},reliableMarginRight:function(){var b,c,d,e;if(null==g&&a.getComputedStyle){if(b=z.getElementsByTagName("body")[0],!b)return;c=z.createElement("div"),d=z.createElement("div"),c.style.cssText=i,b.appendChild(c).appendChild(d),e=d.appendChild(z.createElement("div")),e.style.cssText=d.style.cssText=j,e.style.marginRight=e.style.width="0",d.style.width="1px",g=!parseFloat((a.getComputedStyle(e,null)||{}).marginRight),b.removeChild(c)}return g}});function k(){var b,c,h=z.getElementsByTagName("body")[0];h&&(b=z.createElement("div"),c=z.createElement("div"),b.style.cssText=i,h.appendChild(b).appendChild(c),c.style.cssText="-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;position:absolute;display:block;padding:1px;border:1px;width:4px;margin-top:1%;top:1%",n.swap(h,null!=h.style.zoom?{zoom:1}:{},function(){d=4===c.offsetWidth}),e=!0,f=!1,g=!0,a.getComputedStyle&&(f="1%"!==(a.getComputedStyle(c,null)||{}).top,e="4px"===(a.getComputedStyle(c,null)||{width:"4px"}).width),h.removeChild(b),c=h=null)}}(),n.swap=function(a,b,c,d){var e,f,g={};for(f in b)g[f]=a.style[f],a.style[f]=b[f];e=c.apply(a,d||[]);for(f in b)a.style[f]=g[f];return e};var Nb=/alpha\([^)]*\)/i,Ob=/opacity\s*=\s*([^)]*)/,Pb=/^(none|table(?!-c[ea]).+)/,Qb=new RegExp("^("+T+")(.*)$","i"),Rb=new RegExp("^([+-])=("+T+")","i"),Sb={position:"absolute",visibility:"hidden",display:"block"},Tb={letterSpacing:0,fontWeight:400},Ub=["Webkit","O","Moz","ms"];function Vb(a,b){if(b in a)return b;var c=b.charAt(0).toUpperCase()+b.slice(1),d=b,e=Ub.length;while(e--)if(b=Ub[e]+c,b in a)return b;return d}function Wb(a,b){for(var c,d,e,f=[],g=0,h=a.length;h>g;g++)d=a[g],d.style&&(f[g]=n._data(d,"olddisplay"),c=d.style.display,b?(f[g]||"none"!==c||(d.style.display=""),""===d.style.display&&V(d)&&(f[g]=n._data(d,"olddisplay",Gb(d.nodeName)))):f[g]||(e=V(d),(c&&"none"!==c||!e)&&n._data(d,"olddisplay",e?c:n.css(d,"display"))));for(g=0;h>g;g++)d=a[g],d.style&&(b&&"none"!==d.style.display&&""!==d.style.display||(d.style.display=b?f[g]||"":"none"));return a}function Xb(a,b,c){var d=Qb.exec(b);return d?Math.max(0,d[1]-(c||0))+(d[2]||"px"):b}function Yb(a,b,c,d,e){for(var f=c===(d?"border":"content")?4:"width"===b?1:0,g=0;4>f;f+=2)"margin"===c&&(g+=n.css(a,c+U[f],!0,e)),d?("content"===c&&(g-=n.css(a,"padding"+U[f],!0,e)),"margin"!==c&&(g-=n.css(a,"border"+U[f]+"Width",!0,e))):(g+=n.css(a,"padding"+U[f],!0,e),"padding"!==c&&(g+=n.css(a,"border"+U[f]+"Width",!0,e)));return g}function Zb(a,b,c){var d=!0,e="width"===b?a.offsetWidth:a.offsetHeight,f=Jb(a),g=l.boxSizing()&&"border-box"===n.css(a,"boxSizing",!1,f);if(0>=e||null==e){if(e=Kb(a,b,f),(0>e||null==e)&&(e=a.style[b]),Ib.test(e))return e;d=g&&(l.boxSizingReliable()||e===a.style[b]),e=parseFloat(e)||0}return e+Yb(a,b,c||(g?"border":"content"),d,f)+"px"}n.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=Kb(a,"opacity");return""===c?"1":c}}}},cssNumber:{columnCount:!0,fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":l.cssFloat?"cssFloat":"styleFloat"},style:function(a,b,c,d){if(a&&3!==a.nodeType&&8!==a.nodeType&&a.style){var e,f,g,h=n.camelCase(b),i=a.style;if(b=n.cssProps[h]||(n.cssProps[h]=Vb(i,h)),g=n.cssHooks[b]||n.cssHooks[h],void 0===c)return g&&"get"in g&&void 0!==(e=g.get(a,!1,d))?e:i[b];if(f=typeof c,"string"===f&&(e=Rb.exec(c))&&(c=(e[1]+1)*e[2]+parseFloat(n.css(a,b)),f="number"),null!=c&&c===c&&("number"!==f||n.cssNumber[h]||(c+="px"),l.clearCloneStyle||""!==c||0!==b.indexOf("background")||(i[b]="inherit"),!(g&&"set"in g&&void 0===(c=g.set(a,c,d)))))try{i[b]="",i[b]=c}catch(j){}}},css:function(a,b,c,d){var e,f,g,h=n.camelCase(b);return b=n.cssProps[h]||(n.cssProps[h]=Vb(a.style,h)),g=n.cssHooks[b]||n.cssHooks[h],g&&"get"in g&&(f=g.get(a,!0,c)),void 0===f&&(f=Kb(a,b,d)),"normal"===f&&b in Tb&&(f=Tb[b]),""===c||c?(e=parseFloat(f),c===!0||n.isNumeric(e)?e||0:f):f}}),n.each(["height","width"],function(a,b){n.cssHooks[b]={get:function(a,c,d){return c?0===a.offsetWidth&&Pb.test(n.css(a,"display"))?n.swap(a,Sb,function(){return Zb(a,b,d)}):Zb(a,b,d):void 0},set:function(a,c,d){var e=d&&Jb(a);return Xb(a,c,d?Yb(a,b,d,l.boxSizing()&&"border-box"===n.css(a,"boxSizing",!1,e),e):0)}}}),l.opacity||(n.cssHooks.opacity={get:function(a,b){return Ob.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?.01*parseFloat(RegExp.$1)+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=n.isNumeric(b)?"alpha(opacity="+100*b+")":"",f=d&&d.filter||c.filter||"";c.zoom=1,(b>=1||""===b)&&""===n.trim(f.replace(Nb,""))&&c.removeAttribute&&(c.removeAttribute("filter"),""===b||d&&!d.filter)||(c.filter=Nb.test(f)?f.replace(Nb,e):f+" "+e)}}),n.cssHooks.marginRight=Mb(l.reliableMarginRight,function(a,b){return b?n.swap(a,{display:"inline-block"},Kb,[a,"marginRight"]):void 0}),n.each({margin:"",padding:"",border:"Width"},function(a,b){n.cssHooks[a+b]={expand:function(c){for(var d=0,e={},f="string"==typeof c?c.split(" "):[c];4>d;d++)e[a+U[d]+b]=f[d]||f[d-2]||f[0];return e}},Hb.test(a)||(n.cssHooks[a+b].set=Xb)}),n.fn.extend({css:function(a,b){return W(this,function(a,b,c){var d,e,f={},g=0;if(n.isArray(b)){for(d=Jb(a),e=b.length;e>g;g++)f[b[g]]=n.css(a,b[g],!1,d);return f}return void 0!==c?n.style(a,b,c):n.css(a,b) |
|---|
| 4 | +},a,b,arguments.length>1)},show:function(){return Wb(this,!0)},hide:function(){return Wb(this)},toggle:function(a){return"boolean"==typeof a?a?this.show():this.hide():this.each(function(){V(this)?n(this).show():n(this).hide()})}});function $b(a,b,c,d,e){return new $b.prototype.init(a,b,c,d,e)}n.Tween=$b,$b.prototype={constructor:$b,init:function(a,b,c,d,e,f){this.elem=a,this.prop=c,this.easing=e||"swing",this.options=b,this.start=this.now=this.cur(),this.end=d,this.unit=f||(n.cssNumber[c]?"":"px")},cur:function(){var a=$b.propHooks[this.prop];return a&&a.get?a.get(this):$b.propHooks._default.get(this)},run:function(a){var b,c=$b.propHooks[this.prop];return this.pos=b=this.options.duration?n.easing[this.easing](a,this.options.duration*a,0,1,this.options.duration):a,this.now=(this.end-this.start)*b+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),c&&c.set?c.set(this):$b.propHooks._default.set(this),this}},$b.prototype.init.prototype=$b.prototype,$b.propHooks={_default:{get:function(a){var b;return null==a.elem[a.prop]||a.elem.style&&null!=a.elem.style[a.prop]?(b=n.css(a.elem,a.prop,""),b&&"auto"!==b?b:0):a.elem[a.prop]},set:function(a){n.fx.step[a.prop]?n.fx.step[a.prop](a):a.elem.style&&(null!=a.elem.style[n.cssProps[a.prop]]||n.cssHooks[a.prop])?n.style(a.elem,a.prop,a.now+a.unit):a.elem[a.prop]=a.now}}},$b.propHooks.scrollTop=$b.propHooks.scrollLeft={set:function(a){a.elem.nodeType&&a.elem.parentNode&&(a.elem[a.prop]=a.now)}},n.easing={linear:function(a){return a},swing:function(a){return.5-Math.cos(a*Math.PI)/2}},n.fx=$b.prototype.init,n.fx.step={};var _b,ac,bc=/^(?:toggle|show|hide)$/,cc=new RegExp("^(?:([+-])=|)("+T+")([a-z%]*)$","i"),dc=/queueHooks$/,ec=[jc],fc={"*":[function(a,b){var c=this.createTween(a,b),d=c.cur(),e=cc.exec(b),f=e&&e[3]||(n.cssNumber[a]?"":"px"),g=(n.cssNumber[a]||"px"!==f&&+d)&&cc.exec(n.css(c.elem,a)),h=1,i=20;if(g&&g[3]!==f){f=f||g[3],e=e||[],g=+d||1;do h=h||".5",g/=h,n.style(c.elem,a,g+f);while(h!==(h=c.cur()/d)&&1!==h&&--i)}return e&&(g=c.start=+g||+d||0,c.unit=f,c.end=e[1]?g+(e[1]+1)*e[2]:+e[2]),c}]};function gc(){return setTimeout(function(){_b=void 0}),_b=n.now()}function hc(a,b){var c,d={height:a},e=0;for(b=b?1:0;4>e;e+=2-b)c=U[e],d["margin"+c]=d["padding"+c]=a;return b&&(d.opacity=d.width=a),d}function ic(a,b,c){for(var d,e=(fc[b]||[]).concat(fc["*"]),f=0,g=e.length;g>f;f++)if(d=e[f].call(c,b,a))return d}function jc(a,b,c){var d,e,f,g,h,i,j,k,m=this,o={},p=a.style,q=a.nodeType&&V(a),r=n._data(a,"fxshow");c.queue||(h=n._queueHooks(a,"fx"),null==h.unqueued&&(h.unqueued=0,i=h.empty.fire,h.empty.fire=function(){h.unqueued||i()}),h.unqueued++,m.always(function(){m.always(function(){h.unqueued--,n.queue(a,"fx").length||h.empty.fire()})})),1===a.nodeType&&("height"in b||"width"in b)&&(c.overflow=[p.overflow,p.overflowX,p.overflowY],j=n.css(a,"display"),k=Gb(a.nodeName),"none"===j&&(j=k),"inline"===j&&"none"===n.css(a,"float")&&(l.inlineBlockNeedsLayout&&"inline"!==k?p.zoom=1:p.display="inline-block")),c.overflow&&(p.overflow="hidden",l.shrinkWrapBlocks()||m.always(function(){p.overflow=c.overflow[0],p.overflowX=c.overflow[1],p.overflowY=c.overflow[2]}));for(d in b)if(e=b[d],bc.exec(e)){if(delete b[d],f=f||"toggle"===e,e===(q?"hide":"show")){if("show"!==e||!r||void 0===r[d])continue;q=!0}o[d]=r&&r[d]||n.style(a,d)}if(!n.isEmptyObject(o)){r?"hidden"in r&&(q=r.hidden):r=n._data(a,"fxshow",{}),f&&(r.hidden=!q),q?n(a).show():m.done(function(){n(a).hide()}),m.done(function(){var b;n._removeData(a,"fxshow");for(b in o)n.style(a,b,o[b])});for(d in o)g=ic(q?r[d]:0,d,m),d in r||(r[d]=g.start,q&&(g.end=g.start,g.start="width"===d||"height"===d?1:0))}}function kc(a,b){var c,d,e,f,g;for(c in a)if(d=n.camelCase(c),e=b[d],f=a[c],n.isArray(f)&&(e=f[1],f=a[c]=f[0]),c!==d&&(a[d]=f,delete a[c]),g=n.cssHooks[d],g&&"expand"in g){f=g.expand(f),delete a[d];for(c in f)c in a||(a[c]=f[c],b[c]=e)}else b[d]=e}function lc(a,b,c){var d,e,f=0,g=ec.length,h=n.Deferred().always(function(){delete i.elem}),i=function(){if(e)return!1;for(var b=_b||gc(),c=Math.max(0,j.startTime+j.duration-b),d=c/j.duration||0,f=1-d,g=0,i=j.tweens.length;i>g;g++)j.tweens[g].run(f);return h.notifyWith(a,[j,f,c]),1>f&&i?c:(h.resolveWith(a,[j]),!1)},j=h.promise({elem:a,props:n.extend({},b),opts:n.extend(!0,{specialEasing:{}},c),originalProperties:b,originalOptions:c,startTime:_b||gc(),duration:c.duration,tweens:[],createTween:function(b,c){var d=n.Tween(a,j.opts,b,c,j.opts.specialEasing[b]||j.opts.easing);return j.tweens.push(d),d},stop:function(b){var c=0,d=b?j.tweens.length:0;if(e)return this;for(e=!0;d>c;c++)j.tweens[c].run(1);return b?h.resolveWith(a,[j,b]):h.rejectWith(a,[j,b]),this}}),k=j.props;for(kc(k,j.opts.specialEasing);g>f;f++)if(d=ec[f].call(j,a,k,j.opts))return d;return n.map(k,ic,j),n.isFunction(j.opts.start)&&j.opts.start.call(a,j),n.fx.timer(n.extend(i,{elem:a,anim:j,queue:j.opts.queue})),j.progress(j.opts.progress).done(j.opts.done,j.opts.complete).fail(j.opts.fail).always(j.opts.always)}n.Animation=n.extend(lc,{tweener:function(a,b){n.isFunction(a)?(b=a,a=["*"]):a=a.split(" ");for(var c,d=0,e=a.length;e>d;d++)c=a[d],fc[c]=fc[c]||[],fc[c].unshift(b)},prefilter:function(a,b){b?ec.unshift(a):ec.push(a)}}),n.speed=function(a,b,c){var d=a&&"object"==typeof a?n.extend({},a):{complete:c||!c&&b||n.isFunction(a)&&a,duration:a,easing:c&&b||b&&!n.isFunction(b)&&b};return d.duration=n.fx.off?0:"number"==typeof d.duration?d.duration:d.duration in n.fx.speeds?n.fx.speeds[d.duration]:n.fx.speeds._default,(null==d.queue||d.queue===!0)&&(d.queue="fx"),d.old=d.complete,d.complete=function(){n.isFunction(d.old)&&d.old.call(this),d.queue&&n.dequeue(this,d.queue)},d},n.fn.extend({fadeTo:function(a,b,c,d){return this.filter(V).css("opacity",0).show().end().animate({opacity:b},a,c,d)},animate:function(a,b,c,d){var e=n.isEmptyObject(a),f=n.speed(b,c,d),g=function(){var b=lc(this,n.extend({},a),f);(e||n._data(this,"finish"))&&b.stop(!0)};return g.finish=g,e||f.queue===!1?this.each(g):this.queue(f.queue,g)},stop:function(a,b,c){var d=function(a){var b=a.stop;delete a.stop,b(c)};return"string"!=typeof a&&(c=b,b=a,a=void 0),b&&a!==!1&&this.queue(a||"fx",[]),this.each(function(){var b=!0,e=null!=a&&a+"queueHooks",f=n.timers,g=n._data(this);if(e)g[e]&&g[e].stop&&d(g[e]);else for(e in g)g[e]&&g[e].stop&&dc.test(e)&&d(g[e]);for(e=f.length;e--;)f[e].elem!==this||null!=a&&f[e].queue!==a||(f[e].anim.stop(c),b=!1,f.splice(e,1));(b||!c)&&n.dequeue(this,a)})},finish:function(a){return a!==!1&&(a=a||"fx"),this.each(function(){var b,c=n._data(this),d=c[a+"queue"],e=c[a+"queueHooks"],f=n.timers,g=d?d.length:0;for(c.finish=!0,n.queue(this,a,[]),e&&e.stop&&e.stop.call(this,!0),b=f.length;b--;)f[b].elem===this&&f[b].queue===a&&(f[b].anim.stop(!0),f.splice(b,1));for(b=0;g>b;b++)d[b]&&d[b].finish&&d[b].finish.call(this);delete c.finish})}}),n.each(["toggle","show","hide"],function(a,b){var c=n.fn[b];n.fn[b]=function(a,d,e){return null==a||"boolean"==typeof a?c.apply(this,arguments):this.animate(hc(b,!0),a,d,e)}}),n.each({slideDown:hc("show"),slideUp:hc("hide"),slideToggle:hc("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(a,b){n.fn[a]=function(a,c,d){return this.animate(b,a,c,d)}}),n.timers=[],n.fx.tick=function(){var a,b=n.timers,c=0;for(_b=n.now();c<b.length;c++)a=b[c],a()||b[c]!==a||b.splice(c--,1);b.length||n.fx.stop(),_b=void 0},n.fx.timer=function(a){n.timers.push(a),a()?n.fx.start():n.timers.pop()},n.fx.interval=13,n.fx.start=function(){ac||(ac=setInterval(n.fx.tick,n.fx.interval))},n.fx.stop=function(){clearInterval(ac),ac=null},n.fx.speeds={slow:600,fast:200,_default:400},n.fn.delay=function(a,b){return a=n.fx?n.fx.speeds[a]||a:a,b=b||"fx",this.queue(b,function(b,c){var d=setTimeout(b,a);c.stop=function(){clearTimeout(d)}})},function(){var a,b,c,d,e=z.createElement("div");e.setAttribute("className","t"),e.innerHTML=" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",a=e.getElementsByTagName("a")[0],c=z.createElement("select"),d=c.appendChild(z.createElement("option")),b=e.getElementsByTagName("input")[0],a.style.cssText="top:1px",l.getSetAttribute="t"!==e.className,l.style=/top/.test(a.getAttribute("style")),l.hrefNormalized="/a"===a.getAttribute("href"),l.checkOn=!!b.value,l.optSelected=d.selected,l.enctype=!!z.createElement("form").enctype,c.disabled=!0,l.optDisabled=!d.disabled,b=z.createElement("input"),b.setAttribute("value",""),l.input=""===b.getAttribute("value"),b.value="t",b.setAttribute("type","radio"),l.radioValue="t"===b.value,a=b=c=d=e=null}();var mc=/\r/g;n.fn.extend({val:function(a){var b,c,d,e=this[0];{if(arguments.length)return d=n.isFunction(a),this.each(function(c){var e;1===this.nodeType&&(e=d?a.call(this,c,n(this).val()):a,null==e?e="":"number"==typeof e?e+="":n.isArray(e)&&(e=n.map(e,function(a){return null==a?"":a+""})),b=n.valHooks[this.type]||n.valHooks[this.nodeName.toLowerCase()],b&&"set"in b&&void 0!==b.set(this,e,"value")||(this.value=e))});if(e)return b=n.valHooks[e.type]||n.valHooks[e.nodeName.toLowerCase()],b&&"get"in b&&void 0!==(c=b.get(e,"value"))?c:(c=e.value,"string"==typeof c?c.replace(mc,""):null==c?"":c)}}}),n.extend({valHooks:{option:{get:function(a){var b=n.find.attr(a,"value");return null!=b?b:n.text(a)}},select:{get:function(a){for(var b,c,d=a.options,e=a.selectedIndex,f="select-one"===a.type||0>e,g=f?null:[],h=f?e+1:d.length,i=0>e?h:f?e:0;h>i;i++)if(c=d[i],!(!c.selected&&i!==e||(l.optDisabled?c.disabled:null!==c.getAttribute("disabled"))||c.parentNode.disabled&&n.nodeName(c.parentNode,"optgroup"))){if(b=n(c).val(),f)return b;g.push(b)}return g},set:function(a,b){var c,d,e=a.options,f=n.makeArray(b),g=e.length;while(g--)if(d=e[g],n.inArray(n.valHooks.option.get(d),f)>=0)try{d.selected=c=!0}catch(h){d.scrollHeight}else d.selected=!1;return c||(a.selectedIndex=-1),e}}}}),n.each(["radio","checkbox"],function(){n.valHooks[this]={set:function(a,b){return n.isArray(b)?a.checked=n.inArray(n(a).val(),b)>=0:void 0}},l.checkOn||(n.valHooks[this].get=function(a){return null===a.getAttribute("value")?"on":a.value})});var nc,oc,pc=n.expr.attrHandle,qc=/^(?:checked|selected)$/i,rc=l.getSetAttribute,sc=l.input;n.fn.extend({attr:function(a,b){return W(this,n.attr,a,b,arguments.length>1)},removeAttr:function(a){return this.each(function(){n.removeAttr(this,a)})}}),n.extend({attr:function(a,b,c){var d,e,f=a.nodeType;if(a&&3!==f&&8!==f&&2!==f)return typeof a.getAttribute===L?n.prop(a,b,c):(1===f&&n.isXMLDoc(a)||(b=b.toLowerCase(),d=n.attrHooks[b]||(n.expr.match.bool.test(b)?oc:nc)),void 0===c?d&&"get"in d&&null!==(e=d.get(a,b))?e:(e=n.find.attr(a,b),null==e?void 0:e):null!==c?d&&"set"in d&&void 0!==(e=d.set(a,c,b))?e:(a.setAttribute(b,c+""),c):void n.removeAttr(a,b))},removeAttr:function(a,b){var c,d,e=0,f=b&&b.match(F);if(f&&1===a.nodeType)while(c=f[e++])d=n.propFix[c]||c,n.expr.match.bool.test(c)?sc&&rc||!qc.test(c)?a[d]=!1:a[n.camelCase("default-"+c)]=a[d]=!1:n.attr(a,c,""),a.removeAttribute(rc?c:d)},attrHooks:{type:{set:function(a,b){if(!l.radioValue&&"radio"===b&&n.nodeName(a,"input")){var c=a.value;return a.setAttribute("type",b),c&&(a.value=c),b}}}}}),oc={set:function(a,b,c){return b===!1?n.removeAttr(a,c):sc&&rc||!qc.test(c)?a.setAttribute(!rc&&n.propFix[c]||c,c):a[n.camelCase("default-"+c)]=a[c]=!0,c}},n.each(n.expr.match.bool.source.match(/\w+/g),function(a,b){var c=pc[b]||n.find.attr;pc[b]=sc&&rc||!qc.test(b)?function(a,b,d){var e,f;return d||(f=pc[b],pc[b]=e,e=null!=c(a,b,d)?b.toLowerCase():null,pc[b]=f),e}:function(a,b,c){return c?void 0:a[n.camelCase("default-"+b)]?b.toLowerCase():null}}),sc&&rc||(n.attrHooks.value={set:function(a,b,c){return n.nodeName(a,"input")?void(a.defaultValue=b):nc&&nc.set(a,b,c)}}),rc||(nc={set:function(a,b,c){var d=a.getAttributeNode(c);return d||a.setAttributeNode(d=a.ownerDocument.createAttribute(c)),d.value=b+="","value"===c||b===a.getAttribute(c)?b:void 0}},pc.id=pc.name=pc.coords=function(a,b,c){var d;return c?void 0:(d=a.getAttributeNode(b))&&""!==d.value?d.value:null},n.valHooks.button={get:function(a,b){var c=a.getAttributeNode(b);return c&&c.specified?c.value:void 0},set:nc.set},n.attrHooks.contenteditable={set:function(a,b,c){nc.set(a,""===b?!1:b,c)}},n.each(["width","height"],function(a,b){n.attrHooks[b]={set:function(a,c){return""===c?(a.setAttribute(b,"auto"),c):void 0}}})),l.style||(n.attrHooks.style={get:function(a){return a.style.cssText||void 0},set:function(a,b){return a.style.cssText=b+""}});var tc=/^(?:input|select|textarea|button|object)$/i,uc=/^(?:a|area)$/i;n.fn.extend({prop:function(a,b){return W(this,n.prop,a,b,arguments.length>1)},removeProp:function(a){return a=n.propFix[a]||a,this.each(function(){try{this[a]=void 0,delete this[a]}catch(b){}})}}),n.extend({propFix:{"for":"htmlFor","class":"className"},prop:function(a,b,c){var d,e,f,g=a.nodeType;if(a&&3!==g&&8!==g&&2!==g)return f=1!==g||!n.isXMLDoc(a),f&&(b=n.propFix[b]||b,e=n.propHooks[b]),void 0!==c?e&&"set"in e&&void 0!==(d=e.set(a,c,b))?d:a[b]=c:e&&"get"in e&&null!==(d=e.get(a,b))?d:a[b]},propHooks:{tabIndex:{get:function(a){var b=n.find.attr(a,"tabindex");return b?parseInt(b,10):tc.test(a.nodeName)||uc.test(a.nodeName)&&a.href?0:-1}}}}),l.hrefNormalized||n.each(["href","src"],function(a,b){n.propHooks[b]={get:function(a){return a.getAttribute(b,4)}}}),l.optSelected||(n.propHooks.selected={get:function(a){var b=a.parentNode;return b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex),null}}),n.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){n.propFix[this.toLowerCase()]=this}),l.enctype||(n.propFix.enctype="encoding");var vc=/[\t\r\n\f]/g;n.fn.extend({addClass:function(a){var b,c,d,e,f,g,h=0,i=this.length,j="string"==typeof a&&a;if(n.isFunction(a))return this.each(function(b){n(this).addClass(a.call(this,b,this.className))});if(j)for(b=(a||"").match(F)||[];i>h;h++)if(c=this[h],d=1===c.nodeType&&(c.className?(" "+c.className+" ").replace(vc," "):" ")){f=0;while(e=b[f++])d.indexOf(" "+e+" ")<0&&(d+=e+" ");g=n.trim(d),c.className!==g&&(c.className=g)}return this},removeClass:function(a){var b,c,d,e,f,g,h=0,i=this.length,j=0===arguments.length||"string"==typeof a&&a;if(n.isFunction(a))return this.each(function(b){n(this).removeClass(a.call(this,b,this.className))});if(j)for(b=(a||"").match(F)||[];i>h;h++)if(c=this[h],d=1===c.nodeType&&(c.className?(" "+c.className+" ").replace(vc," "):"")){f=0;while(e=b[f++])while(d.indexOf(" "+e+" ")>=0)d=d.replace(" "+e+" "," ");g=a?n.trim(d):"",c.className!==g&&(c.className=g)}return this},toggleClass:function(a,b){var c=typeof a;return"boolean"==typeof b&&"string"===c?b?this.addClass(a):this.removeClass(a):this.each(n.isFunction(a)?function(c){n(this).toggleClass(a.call(this,c,this.className,b),b)}:function(){if("string"===c){var b,d=0,e=n(this),f=a.match(F)||[];while(b=f[d++])e.hasClass(b)?e.removeClass(b):e.addClass(b)}else(c===L||"boolean"===c)&&(this.className&&n._data(this,"__className__",this.className),this.className=this.className||a===!1?"":n._data(this,"__className__")||"")})},hasClass:function(a){for(var b=" "+a+" ",c=0,d=this.length;d>c;c++)if(1===this[c].nodeType&&(" "+this[c].className+" ").replace(vc," ").indexOf(b)>=0)return!0;return!1}}),n.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(a,b){n.fn[b]=function(a,c){return arguments.length>0?this.on(b,null,a,c):this.trigger(b)}}),n.fn.extend({hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)},bind:function(a,b,c){return this.on(a,null,b,c)},unbind:function(a,b){return this.off(a,null,b)},delegate:function(a,b,c,d){return this.on(b,a,c,d)},undelegate:function(a,b,c){return 1===arguments.length?this.off(a,"**"):this.off(b,a||"**",c)}});var wc=n.now(),xc=/\?/,yc=/(,)|(\[|{)|(}|])|"(?:[^"\\\r\n]|\\["\\\/bfnrt]|\\u[\da-fA-F]{4})*"\s*:?|true|false|null|-?(?!0\d)\d+(?:\.\d+|)(?:[eE][+-]?\d+|)/g;n.parseJSON=function(b){if(a.JSON&&a.JSON.parse)return a.JSON.parse(b+"");var c,d=null,e=n.trim(b+"");return e&&!n.trim(e.replace(yc,function(a,b,e,f){return c&&b&&(d=0),0===d?a:(c=e||b,d+=!f-!e,"")}))?Function("return "+e)():n.error("Invalid JSON: "+b)},n.parseXML=function(b){var c,d;if(!b||"string"!=typeof b)return null;try{a.DOMParser?(d=new DOMParser,c=d.parseFromString(b,"text/xml")):(c=new ActiveXObject("Microsoft.XMLDOM"),c.async="false",c.loadXML(b))}catch(e){c=void 0}return c&&c.documentElement&&!c.getElementsByTagName("parsererror").length||n.error("Invalid XML: "+b),c};var zc,Ac,Bc=/#.*$/,Cc=/([?&])_=[^&]*/,Dc=/^(.*?):[ \t]*([^\r\n]*)\r?$/gm,Ec=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,Fc=/^(?:GET|HEAD)$/,Gc=/^\/\//,Hc=/^([\w.+-]+:)(?:\/\/(?:[^\/?#]*@|)([^\/?#:]*)(?::(\d+)|)|)/,Ic={},Jc={},Kc="*/".concat("*");try{Ac=location.href}catch(Lc){Ac=z.createElement("a"),Ac.href="",Ac=Ac.href}zc=Hc.exec(Ac.toLowerCase())||[];function Mc(a){return function(b,c){"string"!=typeof b&&(c=b,b="*");var d,e=0,f=b.toLowerCase().match(F)||[];if(n.isFunction(c))while(d=f[e++])"+"===d.charAt(0)?(d=d.slice(1)||"*",(a[d]=a[d]||[]).unshift(c)):(a[d]=a[d]||[]).push(c)}}function Nc(a,b,c,d){var e={},f=a===Jc;function g(h){var i;return e[h]=!0,n.each(a[h]||[],function(a,h){var j=h(b,c,d);return"string"!=typeof j||f||e[j]?f?!(i=j):void 0:(b.dataTypes.unshift(j),g(j),!1)}),i}return g(b.dataTypes[0])||!e["*"]&&g("*")}function Oc(a,b){var c,d,e=n.ajaxSettings.flatOptions||{};for(d in b)void 0!==b[d]&&((e[d]?a:c||(c={}))[d]=b[d]);return c&&n.extend(!0,a,c),a}function Pc(a,b,c){var d,e,f,g,h=a.contents,i=a.dataTypes;while("*"===i[0])i.shift(),void 0===e&&(e=a.mimeType||b.getResponseHeader("Content-Type"));if(e)for(g in h)if(h[g]&&h[g].test(e)){i.unshift(g);break}if(i[0]in c)f=i[0];else{for(g in c){if(!i[0]||a.converters[g+" "+i[0]]){f=g;break}d||(d=g)}f=f||d}return f?(f!==i[0]&&i.unshift(f),c[f]):void 0}function Qc(a,b,c,d){var e,f,g,h,i,j={},k=a.dataTypes.slice();if(k[1])for(g in a.converters)j[g.toLowerCase()]=a.converters[g];f=k.shift();while(f)if(a.responseFields[f]&&(c[a.responseFields[f]]=b),!i&&d&&a.dataFilter&&(b=a.dataFilter(b,a.dataType)),i=f,f=k.shift())if("*"===f)f=i;else if("*"!==i&&i!==f){if(g=j[i+" "+f]||j["* "+f],!g)for(e in j)if(h=e.split(" "),h[1]===f&&(g=j[i+" "+h[0]]||j["* "+h[0]])){g===!0?g=j[e]:j[e]!==!0&&(f=h[0],k.unshift(h[1]));break}if(g!==!0)if(g&&a["throws"])b=g(b);else try{b=g(b)}catch(l){return{state:"parsererror",error:g?l:"No conversion from "+i+" to "+f}}}return{state:"success",data:b}}n.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:Ac,type:"GET",isLocal:Ec.test(zc[1]),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Kc,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":n.parseJSON,"text xml":n.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(a,b){return b?Oc(Oc(a,n.ajaxSettings),b):Oc(n.ajaxSettings,a)},ajaxPrefilter:Mc(Ic),ajaxTransport:Mc(Jc),ajax:function(a,b){"object"==typeof a&&(b=a,a=void 0),b=b||{};var c,d,e,f,g,h,i,j,k=n.ajaxSetup({},b),l=k.context||k,m=k.context&&(l.nodeType||l.jquery)?n(l):n.event,o=n.Deferred(),p=n.Callbacks("once memory"),q=k.statusCode||{},r={},s={},t=0,u="canceled",v={readyState:0,getResponseHeader:function(a){var b;if(2===t){if(!j){j={};while(b=Dc.exec(f))j[b[1].toLowerCase()]=b[2]}b=j[a.toLowerCase()]}return null==b?null:b},getAllResponseHeaders:function(){return 2===t?f:null},setRequestHeader:function(a,b){var c=a.toLowerCase();return t||(a=s[c]=s[c]||a,r[a]=b),this},overrideMimeType:function(a){return t||(k.mimeType=a),this},statusCode:function(a){var b;if(a)if(2>t)for(b in a)q[b]=[q[b],a[b]];else v.always(a[v.status]);return this},abort:function(a){var b=a||u;return i&&i.abort(b),x(0,b),this}};if(o.promise(v).complete=p.add,v.success=v.done,v.error=v.fail,k.url=((a||k.url||Ac)+"").replace(Bc,"").replace(Gc,zc[1]+"//"),k.type=b.method||b.type||k.method||k.type,k.dataTypes=n.trim(k.dataType||"*").toLowerCase().match(F)||[""],null==k.crossDomain&&(c=Hc.exec(k.url.toLowerCase()),k.crossDomain=!(!c||c[1]===zc[1]&&c[2]===zc[2]&&(c[3]||("http:"===c[1]?"80":"443"))===(zc[3]||("http:"===zc[1]?"80":"443")))),k.data&&k.processData&&"string"!=typeof k.data&&(k.data=n.param(k.data,k.traditional)),Nc(Ic,k,b,v),2===t)return v;h=k.global,h&&0===n.active++&&n.event.trigger("ajaxStart"),k.type=k.type.toUpperCase(),k.hasContent=!Fc.test(k.type),e=k.url,k.hasContent||(k.data&&(e=k.url+=(xc.test(e)?"&":"?")+k.data,delete k.data),k.cache===!1&&(k.url=Cc.test(e)?e.replace(Cc,"$1_="+wc++):e+(xc.test(e)?"&":"?")+"_="+wc++)),k.ifModified&&(n.lastModified[e]&&v.setRequestHeader("If-Modified-Since",n.lastModified[e]),n.etag[e]&&v.setRequestHeader("If-None-Match",n.etag[e])),(k.data&&k.hasContent&&k.contentType!==!1||b.contentType)&&v.setRequestHeader("Content-Type",k.contentType),v.setRequestHeader("Accept",k.dataTypes[0]&&k.accepts[k.dataTypes[0]]?k.accepts[k.dataTypes[0]]+("*"!==k.dataTypes[0]?", "+Kc+"; q=0.01":""):k.accepts["*"]);for(d in k.headers)v.setRequestHeader(d,k.headers[d]);if(k.beforeSend&&(k.beforeSend.call(l,v,k)===!1||2===t))return v.abort();u="abort";for(d in{success:1,error:1,complete:1})v[d](k[d]);if(i=Nc(Jc,k,b,v)){v.readyState=1,h&&m.trigger("ajaxSend",[v,k]),k.async&&k.timeout>0&&(g=setTimeout(function(){v.abort("timeout")},k.timeout));try{t=1,i.send(r,x)}catch(w){if(!(2>t))throw w;x(-1,w)}}else x(-1,"No Transport");function x(a,b,c,d){var j,r,s,u,w,x=b;2!==t&&(t=2,g&&clearTimeout(g),i=void 0,f=d||"",v.readyState=a>0?4:0,j=a>=200&&300>a||304===a,c&&(u=Pc(k,v,c)),u=Qc(k,u,v,j),j?(k.ifModified&&(w=v.getResponseHeader("Last-Modified"),w&&(n.lastModified[e]=w),w=v.getResponseHeader("etag"),w&&(n.etag[e]=w)),204===a||"HEAD"===k.type?x="nocontent":304===a?x="notmodified":(x=u.state,r=u.data,s=u.error,j=!s)):(s=x,(a||!x)&&(x="error",0>a&&(a=0))),v.status=a,v.statusText=(b||x)+"",j?o.resolveWith(l,[r,x,v]):o.rejectWith(l,[v,x,s]),v.statusCode(q),q=void 0,h&&m.trigger(j?"ajaxSuccess":"ajaxError",[v,k,j?r:s]),p.fireWith(l,[v,x]),h&&(m.trigger("ajaxComplete",[v,k]),--n.active||n.event.trigger("ajaxStop")))}return v},getJSON:function(a,b,c){return n.get(a,b,c,"json")},getScript:function(a,b){return n.get(a,void 0,b,"script")}}),n.each(["get","post"],function(a,b){n[b]=function(a,c,d,e){return n.isFunction(c)&&(e=e||d,d=c,c=void 0),n.ajax({url:a,type:b,dataType:e,data:c,success:d})}}),n.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(a,b){n.fn[b]=function(a){return this.on(b,a)}}),n._evalUrl=function(a){return n.ajax({url:a,type:"GET",dataType:"script",async:!1,global:!1,"throws":!0})},n.fn.extend({wrapAll:function(a){if(n.isFunction(a))return this.each(function(b){n(this).wrapAll(a.call(this,b))});if(this[0]){var b=n(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&1===a.firstChild.nodeType)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){return this.each(n.isFunction(a)?function(b){n(this).wrapInner(a.call(this,b))}:function(){var b=n(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=n.isFunction(a);return this.each(function(c){n(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){n.nodeName(this,"body")||n(this).replaceWith(this.childNodes)}).end()}}),n.expr.filters.hidden=function(a){return a.offsetWidth<=0&&a.offsetHeight<=0||!l.reliableHiddenOffsets()&&"none"===(a.style&&a.style.display||n.css(a,"display"))},n.expr.filters.visible=function(a){return!n.expr.filters.hidden(a)};var Rc=/%20/g,Sc=/\[\]$/,Tc=/\r?\n/g,Uc=/^(?:submit|button|image|reset|file)$/i,Vc=/^(?:input|select|textarea|keygen)/i;function Wc(a,b,c,d){var e;if(n.isArray(b))n.each(b,function(b,e){c||Sc.test(a)?d(a,e):Wc(a+"["+("object"==typeof e?b:"")+"]",e,c,d)});else if(c||"object"!==n.type(b))d(a,b);else for(e in b)Wc(a+"["+e+"]",b[e],c,d)}n.param=function(a,b){var c,d=[],e=function(a,b){b=n.isFunction(b)?b():null==b?"":b,d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};if(void 0===b&&(b=n.ajaxSettings&&n.ajaxSettings.traditional),n.isArray(a)||a.jquery&&!n.isPlainObject(a))n.each(a,function(){e(this.name,this.value)});else for(c in a)Wc(c,a[c],b,e);return d.join("&").replace(Rc,"+")},n.fn.extend({serialize:function(){return n.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var a=n.prop(this,"elements");return a?n.makeArray(a):this}).filter(function(){var a=this.type;return this.name&&!n(this).is(":disabled")&&Vc.test(this.nodeName)&&!Uc.test(a)&&(this.checked||!X.test(a))}).map(function(a,b){var c=n(this).val();return null==c?null:n.isArray(c)?n.map(c,function(a){return{name:b.name,value:a.replace(Tc,"\r\n")}}):{name:b.name,value:c.replace(Tc,"\r\n")}}).get()}}),n.ajaxSettings.xhr=void 0!==a.ActiveXObject?function(){return!this.isLocal&&/^(get|post|head|put|delete|options)$/i.test(this.type)&&$c()||_c()}:$c;var Xc=0,Yc={},Zc=n.ajaxSettings.xhr();a.ActiveXObject&&n(a).on("unload",function(){for(var a in Yc)Yc[a](void 0,!0)}),l.cors=!!Zc&&"withCredentials"in Zc,Zc=l.ajax=!!Zc,Zc&&n.ajaxTransport(function(a){if(!a.crossDomain||l.cors){var b;return{send:function(c,d){var e,f=a.xhr(),g=++Xc;if(f.open(a.type,a.url,a.async,a.username,a.password),a.xhrFields)for(e in a.xhrFields)f[e]=a.xhrFields[e];a.mimeType&&f.overrideMimeType&&f.overrideMimeType(a.mimeType),a.crossDomain||c["X-Requested-With"]||(c["X-Requested-With"]="XMLHttpRequest");for(e in c)void 0!==c[e]&&f.setRequestHeader(e,c[e]+"");f.send(a.hasContent&&a.data||null),b=function(c,e){var h,i,j;if(b&&(e||4===f.readyState))if(delete Yc[g],b=void 0,f.onreadystatechange=n.noop,e)4!==f.readyState&&f.abort();else{j={},h=f.status,"string"==typeof f.responseText&&(j.text=f.responseText);try{i=f.statusText}catch(k){i=""}h||!a.isLocal||a.crossDomain?1223===h&&(h=204):h=j.text?200:404}j&&d(h,i,j,f.getAllResponseHeaders())},a.async?4===f.readyState?setTimeout(b):f.onreadystatechange=Yc[g]=b:b()},abort:function(){b&&b(void 0,!0)}}}});function $c(){try{return new a.XMLHttpRequest}catch(b){}}function _c(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}n.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/(?:java|ecma)script/},converters:{"text script":function(a){return n.globalEval(a),a}}}),n.ajaxPrefilter("script",function(a){void 0===a.cache&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),n.ajaxTransport("script",function(a){if(a.crossDomain){var b,c=z.head||n("head")[0]||z.documentElement;return{send:function(d,e){b=z.createElement("script"),b.async=!0,a.scriptCharset&&(b.charset=a.scriptCharset),b.src=a.url,b.onload=b.onreadystatechange=function(a,c){(c||!b.readyState||/loaded|complete/.test(b.readyState))&&(b.onload=b.onreadystatechange=null,b.parentNode&&b.parentNode.removeChild(b),b=null,c||e(200,"success"))},c.insertBefore(b,c.firstChild)},abort:function(){b&&b.onload(void 0,!0)}}}});var ad=[],bd=/(=)\?(?=&|$)|\?\?/;n.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var a=ad.pop()||n.expando+"_"+wc++;return this[a]=!0,a}}),n.ajaxPrefilter("json jsonp",function(b,c,d){var e,f,g,h=b.jsonp!==!1&&(bd.test(b.url)?"url":"string"==typeof b.data&&!(b.contentType||"").indexOf("application/x-www-form-urlencoded")&&bd.test(b.data)&&"data");return h||"jsonp"===b.dataTypes[0]?(e=b.jsonpCallback=n.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,h?b[h]=b[h].replace(bd,"$1"+e):b.jsonp!==!1&&(b.url+=(xc.test(b.url)?"&":"?")+b.jsonp+"="+e),b.converters["script json"]=function(){return g||n.error(e+" was not called"),g[0]},b.dataTypes[0]="json",f=a[e],a[e]=function(){g=arguments},d.always(function(){a[e]=f,b[e]&&(b.jsonpCallback=c.jsonpCallback,ad.push(e)),g&&n.isFunction(f)&&f(g[0]),g=f=void 0}),"script"):void 0}),n.parseHTML=function(a,b,c){if(!a||"string"!=typeof a)return null;"boolean"==typeof b&&(c=b,b=!1),b=b||z;var d=v.exec(a),e=!c&&[];return d?[b.createElement(d[1])]:(d=n.buildFragment([a],b,e),e&&e.length&&n(e).remove(),n.merge([],d.childNodes))};var cd=n.fn.load;n.fn.load=function(a,b,c){if("string"!=typeof a&&cd)return cd.apply(this,arguments);var d,e,f,g=this,h=a.indexOf(" ");return h>=0&&(d=a.slice(h,a.length),a=a.slice(0,h)),n.isFunction(b)?(c=b,b=void 0):b&&"object"==typeof b&&(f="POST"),g.length>0&&n.ajax({url:a,type:f,dataType:"html",data:b}).done(function(a){e=arguments,g.html(d?n("<div>").append(n.parseHTML(a)).find(d):a)}).complete(c&&function(a,b){g.each(c,e||[a.responseText,b,a])}),this},n.expr.filters.animated=function(a){return n.grep(n.timers,function(b){return a===b.elem}).length};var dd=a.document.documentElement;function ed(a){return n.isWindow(a)?a:9===a.nodeType?a.defaultView||a.parentWindow:!1}n.offset={setOffset:function(a,b,c){var d,e,f,g,h,i,j,k=n.css(a,"position"),l=n(a),m={};"static"===k&&(a.style.position="relative"),h=l.offset(),f=n.css(a,"top"),i=n.css(a,"left"),j=("absolute"===k||"fixed"===k)&&n.inArray("auto",[f,i])>-1,j?(d=l.position(),g=d.top,e=d.left):(g=parseFloat(f)||0,e=parseFloat(i)||0),n.isFunction(b)&&(b=b.call(a,c,h)),null!=b.top&&(m.top=b.top-h.top+g),null!=b.left&&(m.left=b.left-h.left+e),"using"in b?b.using.call(a,m):l.css(m)}},n.fn.extend({offset:function(a){if(arguments.length)return void 0===a?this:this.each(function(b){n.offset.setOffset(this,a,b)});var b,c,d={top:0,left:0},e=this[0],f=e&&e.ownerDocument;if(f)return b=f.documentElement,n.contains(b,e)?(typeof e.getBoundingClientRect!==L&&(d=e.getBoundingClientRect()),c=ed(f),{top:d.top+(c.pageYOffset||b.scrollTop)-(b.clientTop||0),left:d.left+(c.pageXOffset||b.scrollLeft)-(b.clientLeft||0)}):d},position:function(){if(this[0]){var a,b,c={top:0,left:0},d=this[0];return"fixed"===n.css(d,"position")?b=d.getBoundingClientRect():(a=this.offsetParent(),b=this.offset(),n.nodeName(a[0],"html")||(c=a.offset()),c.top+=n.css(a[0],"borderTopWidth",!0),c.left+=n.css(a[0],"borderLeftWidth",!0)),{top:b.top-c.top-n.css(d,"marginTop",!0),left:b.left-c.left-n.css(d,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||dd;while(a&&!n.nodeName(a,"html")&&"static"===n.css(a,"position"))a=a.offsetParent;return a||dd})}}),n.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(a,b){var c=/Y/.test(b);n.fn[a]=function(d){return W(this,function(a,d,e){var f=ed(a);return void 0===e?f?b in f?f[b]:f.document.documentElement[d]:a[d]:void(f?f.scrollTo(c?n(f).scrollLeft():e,c?e:n(f).scrollTop()):a[d]=e)},a,d,arguments.length,null)}}),n.each(["top","left"],function(a,b){n.cssHooks[b]=Mb(l.pixelPosition,function(a,c){return c?(c=Kb(a,b),Ib.test(c)?n(a).position()[b]+"px":c):void 0})}),n.each({Height:"height",Width:"width"},function(a,b){n.each({padding:"inner"+a,content:b,"":"outer"+a},function(c,d){n.fn[d]=function(d,e){var f=arguments.length&&(c||"boolean"!=typeof d),g=c||(d===!0||e===!0?"margin":"border");return W(this,function(b,c,d){var e;return n.isWindow(b)?b.document.documentElement["client"+a]:9===b.nodeType?(e=b.documentElement,Math.max(b.body["scroll"+a],e["scroll"+a],b.body["offset"+a],e["offset"+a],e["client"+a])):void 0===d?n.css(b,c,g):n.style(b,c,d,g)},b,f?d:void 0,f,null)}})}),n.fn.size=function(){return this.length},n.fn.andSelf=n.fn.addBack,"function"==typeof define&&define.amd&&define("jquery",[],function(){return n});var fd=a.jQuery,gd=a.$;return n.noConflict=function(b){return a.$===n&&(a.$=gd),b&&a.jQuery===n&&(a.jQuery=fd),n},typeof b===L&&(a.jQuery=a.$=n),n}); |
|---|
| .. | .. |
|---|
| 1 | | -{"version":3,"file":"jquery.min.js","sources":["jquery.js"],"names":["window","undefined","readyList","rootjQuery","core_strundefined","location","document","docElem","documentElement","_jQuery","jQuery","_$","$","class2type","core_deletedIds","core_version","core_concat","concat","core_push","push","core_slice","slice","core_indexOf","indexOf","core_toString","toString","core_hasOwn","hasOwnProperty","core_trim","trim","selector","context","fn","init","core_pnum","source","core_rnotwhite","rtrim","rquickExpr","rsingleTag","rvalidchars","rvalidbraces","rvalidescape","rvalidtokens","rmsPrefix","rdashAlpha","fcamelCase","all","letter","toUpperCase","completed","event","addEventListener","type","readyState","detach","ready","removeEventListener","detachEvent","prototype","jquery","constructor","match","elem","this","charAt","length","exec","find","merge","parseHTML","nodeType","ownerDocument","test","isPlainObject","isFunction","attr","getElementById","parentNode","id","makeArray","toArray","call","get","num","pushStack","elems","ret","prevObject","each","callback","args","promise","done","apply","arguments","first","eq","last","i","len","j","map","end","sort","splice","extend","src","copyIsArray","copy","name","options","clone","target","deep","isArray","expando","Math","random","replace","noConflict","isReady","readyWait","holdReady","hold","wait","body","setTimeout","resolveWith","trigger","off","obj","Array","isWindow","isNumeric","isNaN","parseFloat","isFinite","String","key","e","support","ownLast","isEmptyObject","error","msg","Error","data","keepScripts","parsed","scripts","createElement","buildFragment","remove","childNodes","parseJSON","JSON","parse","Function","parseXML","xml","tmp","DOMParser","parseFromString","ActiveXObject","async","loadXML","getElementsByTagName","noop","globalEval","execScript","camelCase","string","nodeName","toLowerCase","value","isArraylike","text","arr","results","Object","inArray","max","second","l","grep","inv","retVal","arg","guid","proxy","access","chainable","emptyGet","raw","bulk","now","Date","getTime","swap","old","style","Deferred","attachEvent","top","frameElement","doScroll","doScrollCheck","split","cachedruns","Expr","getText","isXML","compile","outermostContext","sortInput","setDocument","documentIsHTML","rbuggyQSA","rbuggyMatches","matches","contains","preferredDoc","dirruns","classCache","createCache","tokenCache","compilerCache","hasDuplicate","sortOrder","strundefined","MAX_NEGATIVE","hasOwn","pop","push_native","booleans","whitespace","characterEncoding","identifier","attributes","pseudos","RegExp","rcomma","rcombinators","rsibling","rattributeQuotes","rpseudo","ridentifier","matchExpr","ID","CLASS","TAG","ATTR","PSEUDO","CHILD","bool","needsContext","rnative","rinputs","rheader","rescape","runescape","funescape","_","escaped","escapedWhitespace","high","fromCharCode","els","Sizzle","seed","m","groups","nid","newContext","newSelector","getElementsByClassName","qsa","tokenize","getAttribute","setAttribute","toSelector","join","querySelectorAll","qsaError","removeAttribute","select","isNative","keys","cache","cacheLength","shift","markFunction","assert","div","removeChild","addHandle","attrs","handler","current","setHandle","attrHandle","boolHandler","val","getAttributeNode","specified","interpolationHandler","valueHandler","defaultValue","siblingCheck","a","b","cur","diff","sourceIndex","nextSibling","createInputPseudo","createButtonPseudo","createPositionalPseudo","argument","matchIndexes","node","doc","parent","parentWindow","innerHTML","firstChild","className","input","appendChild","createComment","getById","getElementsByName","filter","attrId","tag","matchesSelector","webkitMatchesSelector","mozMatchesSelector","oMatchesSelector","msMatchesSelector","disconnectedMatch","compareDocumentPosition","adown","bup","sortDetached","div1","compare","aup","ap","bp","unshift","expr","elements","uniqueSort","duplicates","detectDuplicates","sortStable","textContent","nodeValue","selectors","createPseudo","relative",">","dir"," ","+","~","preFilter","excess","unquoted","nodeNameSelector","pattern","operator","check","result","what","simple","forward","ofType","outerCache","nodeIndex","start","useCache","lastChild","pseudo","setFilters","idx","matched","not","matcher","unmatched","has","innerText","lang","elemLang","hash","root","focus","activeElement","hasFocus","href","tabIndex","enabled","disabled","checked","selected","selectedIndex","empty","header","button","even","odd","lt","gt","radio","checkbox","file","password","image","submit","reset","parseOnly","tokens","soFar","preFilters","cached","addCombinator","combinator","base","checkNonElements","doneName","dirkey","elementMatcher","matchers","condense","newUnmatched","mapped","setMatcher","postFilter","postFinder","postSelector","temp","preMap","postMap","preexisting","multipleContexts","matcherIn","matcherOut","matcherFromTokens","checkContext","leadingRelative","implicitRelative","matchContext","matchAnyContext","matcherFromGroupMatchers","elementMatchers","setMatchers","matcherCachedRuns","bySet","byElement","superMatcher","expandContext","setMatched","matchedCount","outermost","contextBackup","dirrunsUnique","group","contexts","token","filters","unique","isXMLDoc","optionsCache","createOptions","object","flag","Callbacks","firing","memory","fired","firingLength","firingIndex","firingStart","list","stack","once","fire","stopOnFalse","self","disable","add","index","lock","locked","fireWith","func","tuples","state","always","deferred","fail","then","fns","newDefer","tuple","action","returned","resolve","reject","progress","notify","pipe","stateString","when","subordinate","resolveValues","remaining","updateFunc","values","progressValues","notifyWith","progressContexts","resolveContexts","fragment","opt","eventName","isSupported","cssText","getSetAttribute","leadingWhitespace","tbody","htmlSerialize","hrefNormalized","opacity","cssFloat","checkOn","optSelected","enctype","html5Clone","cloneNode","outerHTML","inlineBlockNeedsLayout","shrinkWrapBlocks","pixelPosition","deleteExpando","noCloneEvent","reliableMarginRight","boxSizingReliable","noCloneChecked","optDisabled","radioValue","createDocumentFragment","appendChecked","checkClone","click","change","focusin","backgroundClip","clearCloneStyle","container","marginDiv","tds","divReset","offsetHeight","display","reliableHiddenOffsets","zoom","boxSizing","offsetWidth","getComputedStyle","width","marginRight","rbrace","rmultiDash","internalData","pvt","acceptData","thisCache","internalKey","isNode","toJSON","internalRemoveData","isEmptyDataObject","cleanData","noData","applet","embed","hasData","removeData","_data","_removeData","dataAttr","queue","dequeue","startLength","hooks","_queueHooks","next","stop","setter","delay","time","fx","speeds","timeout","clearTimeout","clearQueue","count","defer","nodeHook","boolHook","rclass","rreturn","rfocusable","rclickable","ruseDefault","getSetInput","removeAttr","prop","removeProp","propFix","addClass","classes","clazz","proceed","removeClass","toggleClass","stateVal","isBool","classNames","hasClass","valHooks","set","option","one","optionSet","nType","attrHooks","propName","attrNames","for","class","notxml","propHooks","tabindex","parseInt","getter","setAttributeNode","createAttribute","coords","contenteditable","rformElems","rkeyEvent","rmouseEvent","rfocusMorph","rtypenamespace","returnTrue","returnFalse","safeActiveElement","err","global","types","events","t","handleObjIn","special","eventHandle","handleObj","handlers","namespaces","origType","elemData","handle","triggered","dispatch","delegateType","bindType","namespace","delegateCount","setup","mappedTypes","origCount","teardown","removeEvent","onlyHandlers","ontype","bubbleType","eventPath","Event","isTrigger","namespace_re","noBubble","defaultView","isPropagationStopped","preventDefault","isDefaultPrevented","_default","fix","handlerQueue","delegateTarget","preDispatch","currentTarget","isImmediatePropagationStopped","stopPropagation","postDispatch","sel","originalEvent","fixHook","fixHooks","mouseHooks","keyHooks","props","srcElement","metaKey","original","which","charCode","keyCode","eventDoc","fromElement","pageX","clientX","scrollLeft","clientLeft","pageY","clientY","scrollTop","clientTop","relatedTarget","toElement","load","blur","beforeunload","returnValue","simulate","bubble","isSimulated","defaultPrevented","getPreventDefault","timeStamp","cancelBubble","stopImmediatePropagation","mouseenter","mouseleave","orig","related","submitBubbles","form","_submit_bubble","changeBubbles","propertyName","_just_changed","focusinBubbles","attaches","on","origFn","triggerHandler","isSimple","rparentsprev","rneedsContext","guaranteedUnique","children","contents","prev","targets","winnow","is","closest","pos","prevAll","addBack","sibling","parents","parentsUntil","until","nextAll","nextUntil","prevUntil","siblings","contentDocument","contentWindow","reverse","n","r","qualifier","createSafeFragment","nodeNames","safeFrag","rinlinejQuery","rnoshimcache","rleadingWhitespace","rxhtmlTag","rtagName","rtbody","rhtml","rnoInnerhtml","manipulation_rcheckableType","rchecked","rscriptType","rscriptTypeMasked","rcleanScript","wrapMap","legend","area","param","thead","tr","col","td","safeFragment","fragmentDiv","optgroup","tfoot","colgroup","caption","th","append","createTextNode","domManip","manipulationTarget","prepend","insertBefore","before","after","keepData","getAll","setGlobalEval","dataAndEvents","deepDataAndEvents","html","replaceWith","allowIntersection","hasScripts","iNoClone","disableScript","restoreScript","_evalUrl","content","refElements","cloneCopyEvent","dest","oldData","curData","fixCloneNodeIssues","defaultChecked","defaultSelected","appendTo","prependTo","insertAfter","replaceAll","insert","found","fixDefaultChecked","destElements","srcElements","inPage","selection","wrap","safe","nodes","url","ajax","dataType","throws","wrapAll","wrapInner","unwrap","iframe","getStyles","curCSS","ralpha","ropacity","rposition","rdisplayswap","rmargin","rnumsplit","rnumnonpx","rrelNum","elemdisplay","BODY","cssShow","position","visibility","cssNormalTransform","letterSpacing","fontWeight","cssExpand","cssPrefixes","vendorPropName","capName","origName","isHidden","el","css","showHide","show","hidden","css_defaultDisplay","styles","hide","toggle","cssHooks","computed","cssNumber","columnCount","fillOpacity","lineHeight","orphans","widows","zIndex","cssProps","float","extra","_computed","minWidth","maxWidth","getPropertyValue","currentStyle","left","rs","rsLeft","runtimeStyle","pixelLeft","setPositiveNumber","subtract","augmentWidthOrHeight","isBorderBox","getWidthOrHeight","valueIsBorderBox","actualDisplay","write","close","$1","visible","margin","padding","border","prefix","suffix","expand","expanded","parts","r20","rbracket","rCRLF","rsubmitterTypes","rsubmittable","serialize","serializeArray","traditional","s","encodeURIComponent","ajaxSettings","buildParams","v","hover","fnOver","fnOut","bind","unbind","delegate","undelegate","ajaxLocParts","ajaxLocation","ajax_nonce","ajax_rquery","rhash","rts","rheaders","rlocalProtocol","rnoContent","rprotocol","rurl","_load","prefilters","transports","allTypes","addToPrefiltersOrTransports","structure","dataTypeExpression","dataTypes","inspectPrefiltersOrTransports","originalOptions","jqXHR","inspected","seekingTransport","inspect","prefilterOrFactory","dataTypeOrTransport","ajaxExtend","flatOptions","params","response","responseText","complete","status","active","lastModified","etag","isLocal","processData","contentType","accepts","*","json","responseFields","converters","* text","text html","text json","text xml","ajaxSetup","settings","ajaxPrefilter","ajaxTransport","cacheURL","responseHeadersString","timeoutTimer","fireGlobals","transport","responseHeaders","callbackContext","globalEventContext","completeDeferred","statusCode","requestHeaders","requestHeadersNames","strAbort","getResponseHeader","getAllResponseHeaders","setRequestHeader","lname","overrideMimeType","mimeType","code","abort","statusText","finalText","success","method","crossDomain","hasContent","ifModified","headers","beforeSend","send","nativeStatusText","responses","isSuccess","modified","ajaxHandleResponses","ajaxConvert","rejectWith","getJSON","getScript","firstDataType","ct","finalDataType","conv2","conv","dataFilter","script","text script","head","scriptCharset","charset","onload","onreadystatechange","isAbort","oldCallbacks","rjsonp","jsonp","jsonpCallback","originalSettings","callbackName","overwritten","responseContainer","jsonProp","xhrCallbacks","xhrSupported","xhrId","xhrOnUnloadAbort","createStandardXHR","XMLHttpRequest","createActiveXHR","xhr","cors","username","open","xhrFields","firefoxAccessException","unload","fxNow","timerId","rfxtypes","rfxnum","rrun","animationPrefilters","defaultPrefilter","tweeners","tween","createTween","unit","scale","maxIterations","createFxNow","animation","collection","Animation","properties","stopped","tick","currentTime","startTime","duration","percent","tweens","run","opts","specialEasing","originalProperties","Tween","easing","gotoEnd","propFilter","timer","anim","tweener","prefilter","oldfire","dataShow","unqueued","overflow","overflowX","overflowY","eased","step","cssFn","speed","animate","genFx","fadeTo","to","optall","doAnimation","finish","stopQueue","timers","includeWidth","height","slideDown","slideUp","slideToggle","fadeIn","fadeOut","fadeToggle","linear","p","swing","cos","PI","interval","setInterval","clearInterval","slow","fast","animated","offset","setOffset","win","box","getBoundingClientRect","getWindow","pageYOffset","pageXOffset","curElem","curOffset","curCSSTop","curCSSLeft","calculatePosition","curPosition","curTop","curLeft","using","offsetParent","parentOffset","scrollTo","Height","Width","defaultExtra","funcName","size","andSelf","module","exports","define","amd"],"mappings":"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"} |
|---|
| 1 | +{"version":3,"file":"jquery-1.11.0.min.js","sources":["jquery-1.11.0.js"],"names":["global","factory","module","exports","document","w","Error","window","this","noGlobal","deletedIds","slice","concat","push","indexOf","class2type","toString","hasOwn","hasOwnProperty","trim","support","version","jQuery","selector","context","fn","init","rtrim","rmsPrefix","rdashAlpha","fcamelCase","all","letter","toUpperCase","prototype","jquery","constructor","length","toArray","call","get","num","pushStack","elems","ret","merge","prevObject","each","callback","args","map","elem","i","apply","arguments","first","eq","last","len","j","end","sort","splice","extend","src","copyIsArray","copy","name","options","clone","target","deep","isFunction","isPlainObject","isArray","undefined","expando","Math","random","replace","isReady","error","msg","noop","obj","type","Array","isWindow","isNumeric","parseFloat","isEmptyObject","key","nodeType","e","ownLast","globalEval","data","execScript","camelCase","string","nodeName","toLowerCase","value","isArraylike","text","makeArray","arr","results","Object","inArray","max","second","grep","invert","callbackInverse","matches","callbackExpect","arg","guid","proxy","tmp","now","Date","split","Sizzle","Expr","getText","isXML","compile","outermostContext","sortInput","hasDuplicate","setDocument","docElem","documentIsHTML","rbuggyQSA","rbuggyMatches","contains","preferredDoc","dirruns","done","classCache","createCache","tokenCache","compilerCache","sortOrder","a","b","strundefined","MAX_NEGATIVE","pop","push_native","booleans","whitespace","characterEncoding","identifier","attributes","pseudos","RegExp","rcomma","rcombinators","rattributeQuotes","rpseudo","ridentifier","matchExpr","ID","CLASS","TAG","ATTR","PSEUDO","CHILD","bool","needsContext","rinputs","rheader","rnative","rquickExpr","rsibling","rescape","runescape","funescape","_","escaped","escapedWhitespace","high","String","fromCharCode","childNodes","els","seed","match","m","groups","old","nid","newContext","newSelector","ownerDocument","exec","getElementById","parentNode","id","getElementsByTagName","getElementsByClassName","qsa","test","tokenize","getAttribute","setAttribute","toSelector","testContext","join","querySelectorAll","qsaError","removeAttribute","select","keys","cache","cacheLength","shift","markFunction","assert","div","createElement","removeChild","addHandle","attrs","handler","attrHandle","siblingCheck","cur","diff","sourceIndex","nextSibling","createInputPseudo","createButtonPseudo","createPositionalPseudo","argument","matchIndexes","documentElement","node","hasCompare","doc","parent","defaultView","top","addEventListener","attachEvent","className","appendChild","createComment","innerHTML","firstChild","getById","getElementsByName","find","filter","attrId","getAttributeNode","tag","input","matchesSelector","webkitMatchesSelector","mozMatchesSelector","oMatchesSelector","msMatchesSelector","disconnectedMatch","compareDocumentPosition","adown","bup","compare","sortDetached","aup","ap","bp","unshift","expr","elements","attr","val","specified","uniqueSort","duplicates","detectDuplicates","sortStable","textContent","nodeValue","selectors","createPseudo","relative",">","dir"," ","+","~","preFilter","excess","unquoted","nodeNameSelector","pattern","operator","check","result","what","simple","forward","ofType","xml","outerCache","nodeIndex","start","useCache","lastChild","pseudo","setFilters","idx","matched","not","matcher","unmatched","has","innerText","lang","elemLang","hash","location","root","focus","activeElement","hasFocus","href","tabIndex","enabled","disabled","checked","selected","selectedIndex","empty","header","button","even","odd","lt","gt","radio","checkbox","file","password","image","submit","reset","filters","parseOnly","tokens","soFar","preFilters","cached","addCombinator","combinator","base","checkNonElements","doneName","oldCache","newCache","elementMatcher","matchers","condense","newUnmatched","mapped","setMatcher","postFilter","postFinder","postSelector","temp","preMap","postMap","preexisting","multipleContexts","matcherIn","matcherOut","matcherFromTokens","checkContext","leadingRelative","implicitRelative","matchContext","matchAnyContext","matcherFromGroupMatchers","elementMatchers","setMatchers","bySet","byElement","superMatcher","outermost","matchedCount","setMatched","contextBackup","dirrunsUnique","group","contexts","token","div1","defaultValue","unique","isXMLDoc","rneedsContext","rsingleTag","risSimple","winnow","qualifier","self","is","rootjQuery","charAt","parseHTML","ready","rparentsprev","guaranteedUnique","children","contents","next","prev","until","sibling","n","r","targets","closest","l","pos","index","prevAll","add","addBack","parents","parentsUntil","nextAll","nextUntil","prevUntil","siblings","contentDocument","contentWindow","reverse","rnotwhite","optionsCache","createOptions","object","flag","Callbacks","firing","memory","fired","firingLength","firingIndex","firingStart","list","stack","once","fire","stopOnFalse","disable","remove","lock","locked","fireWith","Deferred","func","tuples","state","promise","always","deferred","fail","then","fns","newDefer","tuple","returned","resolve","reject","progress","notify","pipe","stateString","when","subordinate","resolveValues","remaining","updateFunc","values","progressValues","notifyWith","resolveWith","progressContexts","resolveContexts","readyList","readyWait","holdReady","hold","wait","body","setTimeout","trigger","off","detach","removeEventListener","completed","detachEvent","event","readyState","frameElement","doScroll","doScrollCheck","inlineBlockNeedsLayout","container","style","cssText","zoom","offsetWidth","deleteExpando","acceptData","noData","rbrace","rmultiDash","dataAttr","parseJSON","isEmptyDataObject","internalData","pvt","thisCache","internalKey","isNode","toJSON","internalRemoveData","cleanData","applet ","embed ","object ","hasData","removeData","_data","_removeData","queue","dequeue","startLength","hooks","_queueHooks","stop","setter","clearQueue","count","defer","pnum","source","cssExpand","isHidden","el","css","access","chainable","emptyGet","raw","bulk","rcheckableType","fragment","createDocumentFragment","leadingWhitespace","tbody","htmlSerialize","html5Clone","cloneNode","outerHTML","appendChecked","noCloneChecked","checkClone","noCloneEvent","click","eventName","change","focusin","rformElems","rkeyEvent","rmouseEvent","rfocusMorph","rtypenamespace","returnTrue","returnFalse","safeActiveElement","err","types","events","t","handleObjIn","special","eventHandle","handleObj","handlers","namespaces","origType","elemData","handle","triggered","dispatch","delegateType","bindType","namespace","delegateCount","setup","mappedTypes","origCount","teardown","removeEvent","onlyHandlers","ontype","bubbleType","eventPath","Event","isTrigger","namespace_re","noBubble","parentWindow","isPropagationStopped","preventDefault","isDefaultPrevented","_default","fix","handlerQueue","delegateTarget","preDispatch","currentTarget","isImmediatePropagationStopped","stopPropagation","postDispatch","sel","prop","originalEvent","fixHook","fixHooks","mouseHooks","keyHooks","props","srcElement","metaKey","original","which","charCode","keyCode","eventDoc","fromElement","pageX","clientX","scrollLeft","clientLeft","pageY","clientY","scrollTop","clientTop","relatedTarget","toElement","load","blur","beforeunload","returnValue","simulate","bubble","isSimulated","defaultPrevented","getPreventDefault","timeStamp","cancelBubble","stopImmediatePropagation","mouseenter","mouseleave","orig","related","submitBubbles","form","_submit_bubble","changeBubbles","propertyName","_just_changed","focusinBubbles","attaches","on","one","origFn","triggerHandler","createSafeFragment","nodeNames","safeFrag","rinlinejQuery","rnoshimcache","rleadingWhitespace","rxhtmlTag","rtagName","rtbody","rhtml","rnoInnerhtml","rchecked","rscriptType","rscriptTypeMasked","rcleanScript","wrapMap","option","legend","area","param","thead","tr","col","td","safeFragment","fragmentDiv","optgroup","tfoot","colgroup","caption","th","getAll","found","fixDefaultChecked","defaultChecked","manipulationTarget","content","disableScript","restoreScript","setGlobalEval","refElements","cloneCopyEvent","dest","oldData","curData","fixCloneNodeIssues","defaultSelected","dataAndEvents","deepDataAndEvents","destElements","srcElements","inPage","buildFragment","scripts","selection","wrap","safe","nodes","createTextNode","append","domManip","prepend","insertBefore","before","after","keepData","html","replaceWith","replaceChild","hasScripts","set","iNoClone","_evalUrl","appendTo","prependTo","insertAfter","replaceAll","insert","iframe","elemdisplay","actualDisplay","display","getDefaultComputedStyle","defaultDisplay","write","close","shrinkWrapBlocksVal","divReset","opacity","cssFloat","backgroundClip","clearCloneStyle","shrinkWrapBlocks","containerStyles","width","rmargin","rnumnonpx","getStyles","curCSS","rposition","getComputedStyle","computed","minWidth","maxWidth","getPropertyValue","currentStyle","left","rs","rsLeft","runtimeStyle","pixelLeft","addGetHookIf","conditionFn","hookFn","condition","reliableHiddenOffsetsVal","boxSizingVal","boxSizingReliableVal","pixelPositionVal","reliableMarginRightVal","reliableHiddenOffsets","tds","isSupported","offsetHeight","boxSizing","computeStyleTests","boxSizingReliable","pixelPosition","reliableMarginRight","marginDiv","marginRight","swap","ralpha","ropacity","rdisplayswap","rnumsplit","rrelNum","cssShow","position","visibility","cssNormalTransform","letterSpacing","fontWeight","cssPrefixes","vendorPropName","capName","origName","showHide","show","hidden","setPositiveNumber","subtract","augmentWidthOrHeight","extra","isBorderBox","styles","getWidthOrHeight","valueIsBorderBox","cssHooks","cssNumber","columnCount","fillOpacity","lineHeight","order","orphans","widows","zIndex","cssProps","float","$1","margin","padding","border","prefix","suffix","expand","expanded","parts","hide","toggle","Tween","easing","unit","propHooks","run","percent","eased","duration","step","tween","fx","linear","p","swing","cos","PI","fxNow","timerId","rfxtypes","rfxnum","rrun","animationPrefilters","defaultPrefilter","tweeners","*","createTween","scale","maxIterations","createFxNow","genFx","includeWidth","height","animation","collection","opts","oldfire","dDisplay","anim","dataShow","unqueued","overflow","overflowX","overflowY","propFilter","specialEasing","Animation","properties","stopped","tick","currentTime","startTime","tweens","originalProperties","originalOptions","gotoEnd","rejectWith","timer","complete","tweener","prefilter","speed","opt","speeds","fadeTo","to","animate","optall","doAnimation","finish","stopQueue","timers","cssFn","slideDown","slideUp","slideToggle","fadeIn","fadeOut","fadeToggle","interval","setInterval","clearInterval","slow","fast","delay","time","timeout","clearTimeout","getSetAttribute","hrefNormalized","checkOn","optSelected","enctype","optDisabled","radioValue","rreturn","valHooks","optionSet","scrollHeight","nodeHook","boolHook","ruseDefault","getSetInput","removeAttr","nType","attrHooks","propName","attrNames","propFix","getter","setAttributeNode","createAttribute","coords","contenteditable","rfocusable","rclickable","removeProp","for","class","notxml","tabindex","parseInt","rclass","addClass","classes","clazz","finalValue","proceed","removeClass","toggleClass","stateVal","classNames","hasClass","hover","fnOver","fnOut","bind","unbind","delegate","undelegate","nonce","rquery","rvalidtokens","JSON","parse","requireNonComma","depth","str","comma","open","Function","parseXML","DOMParser","parseFromString","ActiveXObject","async","loadXML","ajaxLocParts","ajaxLocation","rhash","rts","rheaders","rlocalProtocol","rnoContent","rprotocol","rurl","prefilters","transports","allTypes","addToPrefiltersOrTransports","structure","dataTypeExpression","dataType","dataTypes","inspectPrefiltersOrTransports","jqXHR","inspected","seekingTransport","inspect","prefilterOrFactory","dataTypeOrTransport","ajaxExtend","flatOptions","ajaxSettings","ajaxHandleResponses","s","responses","firstDataType","ct","finalDataType","mimeType","getResponseHeader","converters","ajaxConvert","response","isSuccess","conv2","current","conv","responseFields","dataFilter","active","lastModified","etag","url","isLocal","processData","contentType","accepts","json","* text","text html","text json","text xml","ajaxSetup","settings","ajaxPrefilter","ajaxTransport","ajax","cacheURL","responseHeadersString","timeoutTimer","fireGlobals","transport","responseHeaders","callbackContext","globalEventContext","completeDeferred","statusCode","requestHeaders","requestHeadersNames","strAbort","getAllResponseHeaders","setRequestHeader","lname","overrideMimeType","code","status","abort","statusText","finalText","success","method","crossDomain","traditional","hasContent","ifModified","headers","beforeSend","send","nativeStatusText","modified","getJSON","getScript","throws","wrapAll","wrapInner","unwrap","visible","r20","rbracket","rCRLF","rsubmitterTypes","rsubmittable","buildParams","v","encodeURIComponent","serialize","serializeArray","xhr","createStandardXHR","createActiveXHR","xhrId","xhrCallbacks","xhrSupported","cors","username","xhrFields","isAbort","onreadystatechange","responseText","XMLHttpRequest","script","text script","head","scriptCharset","charset","onload","oldCallbacks","rjsonp","jsonp","jsonpCallback","originalSettings","callbackName","overwritten","responseContainer","jsonProp","keepScripts","parsed","_load","params","animated","getWindow","offset","setOffset","curPosition","curLeft","curCSSTop","curTop","curOffset","curCSSLeft","calculatePosition","curElem","using","win","box","getBoundingClientRect","pageYOffset","pageXOffset","offsetParent","parentOffset","scrollTo","Height","Width","defaultExtra","funcName","size","andSelf","define","amd","_jQuery","_$","$","noConflict"],"mappings":"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"} |
|---|
| .. | .. |
|---|
| 1 | 1 | |
|---|
| 2 | | - <div ng-include="'header.html'" ></div> |
|---|
| 2 | +<div ng-include="'header.html'"></div> |
|---|
| 3 | 3 | |
|---|
| 4 | | - <div class="container"> |
|---|
| 5 | | - <div class="col-md-12"> </div> |
|---|
| 6 | | - <div id="packs_section" class="col-md-6" ng-controller="PacksCtrl"> |
|---|
| 7 | | - <nav class="navbar navbar-default navbar-static-top"> |
|---|
| 8 | | - <!-- Brand and toggle get grouped for better mobile display --> |
|---|
| 9 | | - <div class="navbar-header"> |
|---|
| 10 | | - <a class="navbar-brand" i18n >Packs</a> |
|---|
| 11 | | - </div> |
|---|
| 12 | | - |
|---|
| 13 | | - <!-- Collect the nav links, forms, and other content for toggling --> |
|---|
| 14 | | - <div class="collapse navbar-collapse" |
|---|
| 15 | | - id="bs-example-navbar-collapse-1"> |
|---|
| 16 | | - <ul class="nav navbar-nav"> |
|---|
| 17 | | - <li><a i18n ng-click="newPack()"><span class="glyphicon glyphicon-plus"></span> |
|---|
| 18 | | - New</a></li> |
|---|
| 19 | | - <li><a i18n ng-click="cancel()"> <span |
|---|
| 20 | | - class="glyphicon glyphicon-ban-circle"></span> Cancel |
|---|
| 21 | | - </a></li> |
|---|
| 22 | | - </ul> |
|---|
| 23 | | - <div class="navbar-form navbar-right"> |
|---|
| 24 | | - <div class="input-group input-group-sm"> |
|---|
| 25 | | - <span class="input-group-addon glyphicon glyphicon-search" style="top: 0px;"></span> |
|---|
| 26 | | - <input type="text" class="form-control" placeholder="Search" ng-model="searchText" > |
|---|
| 27 | | - <span class="btn input-group-addon glyphicon glyphicon-remove" ng-click="searchText = ''" style="top: 0px;"></span> |
|---|
| 28 | | - </div> |
|---|
| 29 | | - </div> |
|---|
| 30 | | - </div> |
|---|
| 31 | | - </nav> |
|---|
| 32 | | - |
|---|
| 33 | | - <div class="panel panel-default animate-show ng-hide" ng-show="showForm"> |
|---|
| 34 | | - <form role="form" class="form-horizontal " name="packForm" id="packForm" ng-submit="save()" > |
|---|
| 35 | | - <div class="form-group" ng-if="!isNew"> |
|---|
| 36 | | - <label class="col-md-3 control-label" >ID</label> |
|---|
| 37 | | - <div class="col-md-8"> |
|---|
| 38 | | - <p class="form-control-static" ng-bind="pack.id"></p> |
|---|
| 39 | | - </div> |
|---|
| 40 | | - </div> |
|---|
| 41 | | - <div class="form-group" > |
|---|
| 42 | | - <label class="col-md-3 control-label" for="code" i18n>Code</label> |
|---|
| 43 | | - <div class="col-md-8"> |
|---|
| 44 | | - <input type="string" id="code" name="code" placeholder="" class="form-control" ng-model="pack.code" ng-required="mandatory.code" ng-maxlength="{{maxlength.code}}" /> |
|---|
| 45 | | - <div class="alert inline-alert alert-warning" ng-show="packForm.code.$invalid"> |
|---|
| 46 | | - <span class="glyphicon glyphicon-warning-sign"></span> |
|---|
| 47 | | - <span ng-show="packForm.code.$error.maxlength" ng-bind="maxlengthErrorMsg('Code', maxlength.code)"></span> |
|---|
| 48 | | - <span ng-show="packForm.code.$error.required" ng-bind="mandatoryFieldErrorMsg('Code')"></span> |
|---|
| 49 | | - </div> |
|---|
| 50 | | - </div> |
|---|
| 51 | | - </div> |
|---|
| 52 | | - |
|---|
| 53 | | - <div class="form-group" > |
|---|
| 54 | | - <label class="col-md-3 control-label" for="num_licenses" i18n>Num. Licenses</label> |
|---|
| 55 | | - <div class="col-md-8"> |
|---|
| 56 | | - <input type="number" id="num_licenses" name="num_licenses" placeholder="" class="form-control" ng-model="pack.num_licenses" ng-required="mandatory.num_licenses" /> |
|---|
| 57 | | - <div class="alert inline-alert alert-warning" ng-show="packForm.num_licenses.$invalid"> |
|---|
| 58 | | - <span class="glyphicon glyphicon-warning-sign"></span> |
|---|
| 59 | | - <span ng-show="packForm.num_licenses.$error.maxlength" ng-bind="maxlengthErrorMsg('Num. Licenses', maxlength.num_licenses)"></span> |
|---|
| 60 | | - <span ng-show="packForm.num_licenses.$error.required" ng-bind="mandatoryFieldErrorMsg('Num. Licenses')"></span> |
|---|
| 61 | | - </div> |
|---|
| 62 | | - </div> |
|---|
| 63 | | - </div> |
|---|
| 64 | | - |
|---|
| 65 | | - <div class="form-group" > |
|---|
| 66 | | - <label class="col-md-3 control-label" for="license_type_id" i18n>License type</label> |
|---|
| 67 | | - <div class="col-md-8"> |
|---|
| 68 | | - <select class="form-control" ng-required="mandatory.license_type_id" ng-model="pack.license_type_id" |
|---|
| 69 | | - ng-options="o.id as o.label for o in refs.license_type_id" > |
|---|
| 70 | | - <option selected="true" ng-if="!mandatory.license_type_id" value=""></option> |
|---|
| 71 | | - </select> |
|---|
| 72 | | - <div class="alert inline-alert alert-warning" ng-show="packForm.license_type_id.$invalid"> |
|---|
| 73 | | - <span class="glyphicon glyphicon-warning-sign"></span> |
|---|
| 74 | | - <span ng-show="packForm.license_type_id.$error.required" ng-bind="mandatoryFieldErrorMsg('License type')"></span> |
|---|
| 75 | | - </div> |
|---|
| 76 | | - </div> |
|---|
| 77 | | - </div> |
|---|
| 78 | | - |
|---|
| 79 | | - <div class="form-group" > |
|---|
| 80 | | - <label class="col-md-3 control-label" for="organization_id" i18n>Organization</label> |
|---|
| 81 | | - <div class="col-md-8"> |
|---|
| 82 | | - <select class="form-control" ng-required="field.mandatory" ng-model="pack.organization_id" |
|---|
| 83 | | - ng-options="o.id as o.label for o in refs.organization_id" > |
|---|
| 84 | | - <option selected="true" ng-if="!mandatory.organization_id" value=""></option> |
|---|
| 85 | | - </select> |
|---|
| 86 | | - <div class="alert inline-alert alert-warning" ng-show="packForm.organization_id.$invalid"> |
|---|
| 87 | | - <span class="glyphicon glyphicon-warning-sign"></span> |
|---|
| 88 | | - <span ng-show="packForm.organization_id.$error.required" ng-bind="mandatoryFieldErrorMsg('Organization')"></span> |
|---|
| 89 | | - </div> |
|---|
| 90 | | - </div> |
|---|
| 91 | | - </div> |
|---|
| 92 | | - <div class="form-group" > |
|---|
| 93 | | - <label class="col-md-3 control-label" for="license_preactivation" i18n>License preactivation</label> |
|---|
| 94 | | - <div class="col-md-8"> |
|---|
| 95 | | - <input type="checkbox" class="form-control" ng-model="pack.license_preactivation" /> |
|---|
| 96 | | - </div> |
|---|
| 97 | | - </div> |
|---|
| 98 | | - |
|---|
| 99 | | - |
|---|
| 100 | | - <div class="form-group" > |
|---|
| 101 | | - <label class="col-md-3 control-label" for="comments" i18n>Comments</label> |
|---|
| 102 | | - <div class="col-md-8"> |
|---|
| 103 | | - <textarea type="string" id="comments" name="comments" placeholder="" |
|---|
| 104 | | - class="form-control" ng-model="pack.comments" rows="2" ng-required="mandatory.comments" ng-maxlength="{{maxlength.comments}}"></textarea> |
|---|
| 105 | | - <div class="alert inline-alert alert-warning" ng-show="packForm.comments.$invalid"> |
|---|
| 106 | | - <span class="glyphicon glyphicon-warning-sign"></span> |
|---|
| 107 | | - <span ng-show="packForm.comments.$error.maxlength" ng-bind="maxlengthErrorMsg('Comments', maxlength.comments)"></span> |
|---|
| 108 | | - <span ng-show="packForm.comments.$error.required" ng-bind="mandatoryFieldErrorMsg('comments')"></span> |
|---|
| 109 | | - </div> |
|---|
| 110 | | - </div> |
|---|
| 111 | | - </div> |
|---|
| 112 | | - |
|---|
| 113 | | - <div class="form-group" ng-if="!isNew"> |
|---|
| 114 | | - <label class="col-md-3 control-label" >Created by</label> |
|---|
| 115 | | - <div class="col-md-8"> |
|---|
| 116 | | - <p class="form-control-static" ng-bind="pack.created_by_name"></p> |
|---|
| 117 | | - </div> |
|---|
| 118 | | - </div> |
|---|
| 119 | | - |
|---|
| 120 | | - <div class="form-group" ng-if="!isNew"> |
|---|
| 121 | | - <label class="col-md-3 control-label" >Creation date</label> |
|---|
| 122 | | - <div class="col-md-8"> |
|---|
| 123 | | - <p class="form-control-static" ng-bind="pack.creationTimestamp | date:'medium'"></p> |
|---|
| 124 | | - </div> |
|---|
| 125 | | - </div> |
|---|
| 126 | | - |
|---|
| 127 | | - <div class="form-group"> |
|---|
| 128 | | - <div class="col-md-offset-3 col-md-10" id="saveContainer"> |
|---|
| 129 | | - <button id="save" type="submit" class="btn btn-primary" > |
|---|
| 130 | | - <span i18n class="glyphicon glyphicon-floppy-disk"></span> Save |
|---|
| 131 | | - </button> |
|---|
| 132 | | - </div> |
|---|
| 133 | | - </div> |
|---|
| 134 | | - </form> |
|---|
| 4 | +<div class="container"> |
|---|
| 5 | + <div class="col-md-12"> </div> |
|---|
| 6 | + <div id="packs_section" class="col-md-6" ng-controller="PacksCtrl"> |
|---|
| 7 | + <nav class="navbar navbar-default navbar-static-top" role="navigation"> |
|---|
| 8 | + <div class="container-fluid"> |
|---|
| 9 | + <!-- Brand and toggle get grouped for better mobile display --> |
|---|
| 10 | + <div class="navbar-header"> |
|---|
| 11 | + <a class="navbar-brand" i18n>Packs</a> |
|---|
| 135 | 12 | </div> |
|---|
| 136 | 13 | |
|---|
| 137 | | - |
|---|
| 138 | | - <div class="panel panel-default" > |
|---|
| 139 | | - <div class="panel-heading"> |
|---|
| 140 | | - Packs <span class="badge pull-right" ng-bind="packs.length || 0"></span> |
|---|
| 14 | + <!-- Collect the nav links, forms, and other content for toggling --> |
|---|
| 15 | + <div class="collapse navbar-collapse"> |
|---|
| 16 | + <ul class="nav navbar-nav"> |
|---|
| 17 | + <li><a i18n ng-click="newPack()"><span |
|---|
| 18 | + class="glyphicon glyphicon-plus"></span> New</a></li> |
|---|
| 19 | + <li><a i18n ng-click="cancel()"> <span |
|---|
| 20 | + class="glyphicon glyphicon-ban-circle"></span> Cancel |
|---|
| 21 | + </a></li> |
|---|
| 22 | + </ul> |
|---|
| 23 | + <div class="navbar-form navbar-right form-group"> |
|---|
| 24 | + <span class="input-group input-group-sm"> |
|---|
| 25 | + <div class="input-group-addon" style="width: 28px;" > |
|---|
| 26 | + <span class=" glyphicon glyphicon-search"></span> |
|---|
| 27 | + </div> |
|---|
| 28 | + <input type="text" class="form-control" placeholder="Search" ng-model="$searchPacksText"> |
|---|
| 29 | + <div class="input-group-addon" style="width: 20px;" > |
|---|
| 30 | + <span class=" glyphicon glyphicon-remove" ng-click="$searchPacksText = '';"></span> |
|---|
| 31 | + </div> |
|---|
| 32 | + </span> |
|---|
| 33 | + </div> |
|---|
| 141 | 34 | </div> |
|---|
| 142 | | - |
|---|
| 143 | | - <table class="table table-hover table-condensed"> |
|---|
| 144 | | - <thead> |
|---|
| 145 | | - <tr> |
|---|
| 146 | | - <th i18n >Code</th> |
|---|
| 147 | | - <th i18n >Organization</th> |
|---|
| 148 | | - <th i18n >Application</th> |
|---|
| 149 | | - <th i18n >Licenses</th> |
|---|
| 150 | | - <th></th> |
|---|
| 151 | | - </tr> |
|---|
| 152 | | - </thead> |
|---|
| 153 | | - <tbody> |
|---|
| 154 | | - <tr ng-repeat="p in packs | filter:searchText" ng-dblclick="editPack(p)" ng-class="{success: currentPack.id === p.id}" ng-click="selectPack(p)"> |
|---|
| 155 | | - <td style="white-space: nowrap;" ng-bind="p.code"></td> |
|---|
| 156 | | - <td ng-bind="ellipsis(p.organization_name, 20)" title="{{pack.organization_name}}" ></td> |
|---|
| 157 | | - <td ng-bind="p.application_name"></td> |
|---|
| 158 | | - <td title="Total: {{p.num_licenses}}, available: {{p.num_available}}">{{p.num_licenses}} ({{p.num_available}})</td> |
|---|
| 159 | | - <td><span ng-click="editPack(p)" |
|---|
| 160 | | - class="glyphicon glyphicon-pencil"></span> |
|---|
| 161 | | - <span ng-click="deletePack(p)" |
|---|
| 162 | | - class="glyphicon glyphicon-remove"></span> |
|---|
| 163 | | - </td> |
|---|
| 164 | | - </tr> |
|---|
| 165 | | - </tbody> |
|---|
| 166 | | - <tfoot> |
|---|
| 167 | | - </tfoot> |
|---|
| 168 | | - </table> |
|---|
| 169 | 35 | </div> |
|---|
| 170 | | - |
|---|
| 171 | | - </div> |
|---|
| 172 | | -{{license | json}} |
|---|
| 173 | | - <div id="licenses_section" class="col-md-6" ng-controller="LicensesCtrl"> |
|---|
| 174 | | - <nav class="navbar navbar-default navbar-static-top" ng-disabled="!currentPack"> |
|---|
| 175 | | - <!-- Brand and toggle get grouped for better mobile display --> |
|---|
| 176 | | - <div class="navbar-header success"> |
|---|
| 177 | | - <a class="navbar-brand" i18n>Licenses</a> |
|---|
| 178 | | - </div> |
|---|
| 36 | + </nav> |
|---|
| 179 | 37 | |
|---|
| 180 | | - <!-- Collect the nav links, forms, and other content for toggling --> |
|---|
| 181 | | - <div class="collapse navbar-collapse" |
|---|
| 182 | | - id="bs-example-navbar-collapse-1"> |
|---|
| 183 | | - <ul class="nav navbar-nav"> |
|---|
| 184 | | - <li><a i18n ng-click="newLicense()"><span class="glyphicon glyphicon-plus"></span> |
|---|
| 185 | | - New</a></li> |
|---|
| 186 | | - <li><a i18n ng-click="cancel()"> <span |
|---|
| 187 | | - class="glyphicon glyphicon-ban-circle"></span> Cancel |
|---|
| 188 | | - </a></li> |
|---|
| 189 | | - </ul> |
|---|
| 190 | | - <div class="navbar-form navbar-right"> |
|---|
| 191 | | - <div class="input-group input-group-sm"> |
|---|
| 192 | | - <span class="input-group-addon glyphicon glyphicon-search" style="top: 0px;"></span> |
|---|
| 193 | | - <input type="text" class="form-control" placeholder="Search" ng-model="$searchPacksText" > |
|---|
| 194 | | - <span class="btn input-group-addon glyphicon glyphicon-remove" ng-click="$searchPacksText = ''" style="top: 0px;"></span> |
|---|
| 195 | | - </div> |
|---|
| 38 | + <div class="panel panel-default animate-show ng-hide" |
|---|
| 39 | + ng-show="showForm"> |
|---|
| 40 | + <form role="form" class="form-horizontal " name="packForm" |
|---|
| 41 | + id="packForm" ng-submit="save()"> |
|---|
| 42 | + <div class="form-group" ng-if="!isNew"> |
|---|
| 43 | + <label class="col-md-3 control-label">ID</label> |
|---|
| 44 | + <div class="col-md-8"> |
|---|
| 45 | + <p class="form-control-static" ng-bind="pack.id"></p> |
|---|
| 46 | + </div> |
|---|
| 47 | + </div> |
|---|
| 48 | + <div class="form-group"> |
|---|
| 49 | + <label class="col-md-3 control-label" for="code" i18n>Code</label> |
|---|
| 50 | + <div class="col-md-8"> |
|---|
| 51 | + <input type="string" id="code" name="code" placeholder="" |
|---|
| 52 | + class="form-control" ng-model="pack.code" |
|---|
| 53 | + ng-required="mandatory.code" ng-maxlength="{{maxlength.code}}" /> |
|---|
| 54 | + <div class="alert inline-alert alert-warning" |
|---|
| 55 | + ng-show="packForm.code.$invalid"> |
|---|
| 56 | + <span class="glyphicon glyphicon-warning-sign"></span> <span |
|---|
| 57 | + ng-show="packForm.code.$error.maxlength" |
|---|
| 58 | + ng-bind="maxlengthErrorMsg('Code', maxlength.code)"></span> <span |
|---|
| 59 | + ng-show="packForm.code.$error.required" |
|---|
| 60 | + ng-bind="mandatoryFieldErrorMsg('Code')"></span> |
|---|
| 196 | 61 | </div> |
|---|
| 197 | 62 | </div> |
|---|
| 198 | | - </nav> |
|---|
| 199 | | - |
|---|
| 200 | | - <div ng-if="!currentPack" class="well well-lg"> |
|---|
| 201 | | - <h4 i18n>No pack selected</h4> |
|---|
| 202 | | - <p i18n>Please, select a pack to manage its licenses</p> |
|---|
| 203 | | - </div> |
|---|
| 204 | | - |
|---|
| 205 | | - <div ng-if="currentPack" class="panel panel-default animate-show ng-hide" ng-show="showForm"> |
|---|
| 206 | | - <form role="form" class="form-horizontal " name="licenseForm" id="licenseForm" ng-submit="save()" > |
|---|
| 207 | | - <div class="form-group" ng-if="!isNew"> |
|---|
| 208 | | - <label class="col-md-3 control-label" >ID</label> |
|---|
| 209 | | - <div class="col-md-8"> |
|---|
| 210 | | - <p class="form-control-static" ng-bind="license.id"></p> |
|---|
| 211 | | - </div> |
|---|
| 212 | | - </div> |
|---|
| 213 | | - <div class="form-group" > |
|---|
| 214 | | - <label class="col-md-3 control-label" for="pack_id" i18n>Pack</label> |
|---|
| 215 | | - <div class="col-md-8"> |
|---|
| 216 | | - <p class="form-control-static" ng-bind="currentPack.code"></p> |
|---|
| 217 | | - <input type="hidden" id="pack_id" name="pack_id" ng-model="license.pack_id" /> |
|---|
| 218 | | - </div> |
|---|
| 219 | | - </div> |
|---|
| 220 | | - <div class="form-group" > |
|---|
| 221 | | - <label class="col-md-3 control-label" for="code" i18n>Code</label> |
|---|
| 222 | | - <div class="col-md-8"> |
|---|
| 223 | | - <input type="string" id="code" name="code" placeholder="" class="form-control" ng-model="license.code" ng-required="mandatory.code" ng-maxlength="{{maxlength.code}}" /> |
|---|
| 224 | | - <div class="alert inline-alert alert-warning" ng-show="licenseForm.code.$invalid"> |
|---|
| 225 | | - <span class="glyphicon glyphicon-warning-sign"></span> |
|---|
| 226 | | - <span ng-show="licenseForm.code.$error.maxlength" ng-bind="maxlengthErrorMsg('Code', maxlength.code)"></span> |
|---|
| 227 | | - <span ng-show="licenseForm.code.$error.required" ng-bind="mandatoryFieldErrorMsg('Code')"></span> |
|---|
| 228 | | - </div> |
|---|
| 229 | | - </div> |
|---|
| 230 | | - </div> |
|---|
| 231 | | - <div class="form-group" ng-if="!isNew"> |
|---|
| 232 | | - <label class="col-md-3 control-label" i18n>Status</label> |
|---|
| 233 | | - <div class="col-md-8"> |
|---|
| 234 | | - <p class="form-control-static" ng-bind="showStatusComplete(license)"></p> |
|---|
| 235 | | - </div> |
|---|
| 236 | | - </div> |
|---|
| 237 | | - |
|---|
| 238 | | - <div class="form-group" > |
|---|
| 239 | | - <label class="col-md-3 control-label" for="full_name" i18n>User full name</label> |
|---|
| 240 | | - <div class="col-md-8"> |
|---|
| 241 | | - <input type="string" id="full_name" name="full_name" placeholder="" class="form-control" ng-model="license.full_name" ng-required="mandatory.full_name" /> |
|---|
| 242 | | - <div class="alert inline-alert alert-warning" ng-show="licenseForm.full_name.$invalid"> |
|---|
| 243 | | - <span class="glyphicon glyphicon-warning-sign"></span> |
|---|
| 244 | | - <span ng-show="licenseForm.full_name.$error.maxlength" ng-bind="maxlengthErrorMsg('User full name', maxlength.full_name)"></span> |
|---|
| 245 | | - <span ng-show="licenseForm.full_name.$error.required" ng-bind="mandatoryFieldErrorMsg('User full name')"></span> |
|---|
| 246 | | - </div> |
|---|
| 247 | | - </div> |
|---|
| 248 | | - </div> |
|---|
| 249 | | - |
|---|
| 250 | | - <div class="form-group" > |
|---|
| 251 | | - <label class="col-md-3 control-label" for="email" i18n>User email</label> |
|---|
| 252 | | - <div class="col-md-8"> |
|---|
| 253 | | - <input type="email" id="email" name="email" placeholder="" class="form-control" ng-model="license.email" ng-required="mandatory.email" /> |
|---|
| 254 | | - <div class="alert inline-alert alert-warning" ng-show="licenseForm.email.$invalid"> |
|---|
| 255 | | - <span class="glyphicon glyphicon-warning-sign"></span> |
|---|
| 256 | | - <span ng-show="licenseForm.email.$error.email" ng-bind="'Please, write a valid email address'"></span> |
|---|
| 257 | | - <span ng-show="licenseForm.email.$error.maxlength" ng-bind="maxlengthErrorMsg('User email', maxlength.email)"></span> |
|---|
| 258 | | - <span ng-show="licenseForm.email.$error.required" ng-bind="mandatoryFieldErrorMsg('User email')"></span> |
|---|
| 259 | | - </div> |
|---|
| 260 | | - </div> |
|---|
| 261 | | - </div> |
|---|
| 262 | | - <div class="form-group" ng-if="isNew || !license.request_data" > |
|---|
| 263 | | - <label class="col-md-3 control-label" for="request_data" i18n>Request data</label> |
|---|
| 264 | | - <div class="col-md-8"> |
|---|
| 265 | | - <textarea id="request_data" name="request_data" placeholder="" |
|---|
| 266 | | - class="form-control" ng-model="license.request_data" rows="2" ng-required="mandatory.request_data" ng-maxlength="{{maxlength.request_data}}"></textarea> |
|---|
| 267 | | - <input file-loader="license.request_data" type="file" title="" > |
|---|
| 268 | | - <div class="alert inline-alert alert-warning" ng-show="licenseForm.request_data.$invalid"> |
|---|
| 269 | | - <span class="glyphicon glyphicon-warning-sign"></span> |
|---|
| 270 | | - <span ng-show="licenseForm.request_data.$error.maxlength" ng-bind="maxlengthErrorMsg('Request data', maxlength.request_data)"></span> |
|---|
| 271 | | - <span ng-show="licenseForm.request_data.$error.required" ng-bind="mandatoryFieldErrorMsg('Request data')"></span> |
|---|
| 272 | | - </div> |
|---|
| 273 | | - </div> |
|---|
| 274 | | - </div> |
|---|
| 275 | | - |
|---|
| 276 | | - <div class="form-group" > |
|---|
| 277 | | - <label class="col-md-3 control-label" for="comments" i18n>Comments</label> |
|---|
| 278 | | - <div class="col-md-8"> |
|---|
| 279 | | - <textarea type="string" id="comments" name="comments" placeholder="" |
|---|
| 280 | | - class="form-control" ng-model="license.comments" rows="2" ng-required="mandatory.comments" ng-maxlength="{{maxlength.comments}}"></textarea> |
|---|
| 281 | | - |
|---|
| 282 | | - <div class="alert inline-alert alert-warning" ng-show="licenseForm.comments.$invalid"> |
|---|
| 283 | | - <span class="glyphicon glyphicon-warning-sign"></span> |
|---|
| 284 | | - <span ng-show="licenseForm.comments.$error.maxlength" ng-bind="maxlengthErrorMsg('Comments', maxlength.comments)"></span> |
|---|
| 285 | | - <span ng-show="licenseForm.comments.$error.required" ng-bind="mandatoryFieldErrorMsg('comments')"></span> |
|---|
| 286 | | - </div> |
|---|
| 287 | | - </div> |
|---|
| 288 | | - </div> |
|---|
| 289 | | - |
|---|
| 290 | | - <div class="form-group" ng-if="!isNew && license.request_data"> |
|---|
| 291 | | - <label class="col-md-3 control-label" i18n>Request data</label> |
|---|
| 292 | | - <div class="col-md-8"> |
|---|
| 293 | | - <pre class="form-control-static" ng-bind="license.request_data | json"></pre> |
|---|
| 294 | | - </div> |
|---|
| 295 | | - </div> |
|---|
| 296 | | - |
|---|
| 297 | | - <div class="form-group" ng-if="!isNew && license.license_data"> |
|---|
| 298 | | - <label class="col-md-3 control-label" i18n >License file</label> |
|---|
| 299 | | - <div class="col-md-8"> |
|---|
| 300 | | - <p class="form-control-static" ng-bind="license.license_data"></p> |
|---|
| 301 | | - <button id="downloadLicense" class="btn btn-xs btn-link" ng-click="downloadLicense(license)"> |
|---|
| 302 | | - <span i18n class="glyphicon glyphicon-download"></span> |
|---|
| 303 | | - </button> |
|---|
| 304 | | - </div> |
|---|
| 305 | | - </div> |
|---|
| 306 | | - |
|---|
| 307 | | - <div class="form-group" ng-if="!isNew"> |
|---|
| 308 | | - <label class="col-md-3 control-label" i18n>Created by</label> |
|---|
| 309 | | - <div class="col-md-8"> |
|---|
| 310 | | - <p class="form-control-static" ng-bind="license.created_by_name"></p> |
|---|
| 311 | | - </div> |
|---|
| 312 | | - </div> |
|---|
| 313 | | - |
|---|
| 314 | | - <div class="form-group" ng-if="!isNew && license.canceled_by_name"> |
|---|
| 315 | | - <label class="col-md-3 control-label" >Canceled by</label> |
|---|
| 316 | | - <div class="col-md-8"> |
|---|
| 317 | | - <p class="form-control-static" ng-bind="license.canceled_by_name"></p> |
|---|
| 318 | | - </div> |
|---|
| 319 | | - </div> |
|---|
| 320 | | - |
|---|
| 321 | | - <div class="form-group" ng-if="!isNew"> |
|---|
| 322 | | - <label class="col-md-3 control-label" i18n>Creation date</label> |
|---|
| 323 | | - <div class="col-md-8"> |
|---|
| 324 | | - <p class="form-control-static" ng-bind="license.creationTimestamp | date:'medium'"></p> |
|---|
| 325 | | - </div> |
|---|
| 326 | | - </div> |
|---|
| 327 | | - |
|---|
| 328 | | - <div class="form-group" ng-if="!isNew"> |
|---|
| 329 | | - <label class="col-md-3 control-label" i18n >Modification date</label> |
|---|
| 330 | | - <div class="col-md-8"> |
|---|
| 331 | | - <p class="form-control-static" ng-bind="license.modificationTimestamp | date:'medium'"></p> |
|---|
| 332 | | - </div> |
|---|
| 333 | | - </div> |
|---|
| 334 | | - |
|---|
| 335 | | - <div class="form-group" ng-if="!isNew && license.activationTimestamp"> |
|---|
| 336 | | - <label class="col-md-3 control-label" i18n >Activation date</label> |
|---|
| 337 | | - <div class="col-md-8"> |
|---|
| 338 | | - <p class="form-control-static" ng-bind="license.activationTimestamp | date:'medium'"></p> |
|---|
| 339 | | - </div> |
|---|
| 340 | | - </div> |
|---|
| 341 | | - |
|---|
| 342 | | - <div class="form-group" ng-if="!isNew && license.sendTimestamp"> |
|---|
| 343 | | - <label class="col-md-3 control-label" i18n >Send date</label> |
|---|
| 344 | | - <div class="col-md-8"> |
|---|
| 345 | | - <p class="form-control-static" ng-bind="license.sendTimestamp | date:'medium'"></p> |
|---|
| 346 | | - </div> |
|---|
| 347 | | - </div> |
|---|
| 348 | | - |
|---|
| 349 | | - <div class="form-group" ng-if="!isNew && license.cancelationTimestamp"> |
|---|
| 350 | | - <label class="col-md-3 control-label" i18n >Cancelation date</label> |
|---|
| 351 | | - <div class="col-md-8"> |
|---|
| 352 | | - <p class="form-control-static" ng-bind="license.cancelationTimestamp | date:'medium'"></p> |
|---|
| 353 | | - </div> |
|---|
| 354 | | - </div> |
|---|
| 355 | | - |
|---|
| 356 | | - <div class="form-group" ng-if="!isNew && license.lastAccessTimestamp"> |
|---|
| 357 | | - <label class="col-md-3 control-label" i18n>Last access date</label> |
|---|
| 358 | | - <div class="col-md-8"> |
|---|
| 359 | | - <p class="form-control-static" ng-bind="license.lastAccessTimestamp | date:'medium'"></p> |
|---|
| 360 | | - </div> |
|---|
| 361 | | - </div> |
|---|
| 362 | | - |
|---|
| 363 | | - <div class="form-group"> |
|---|
| 364 | | - <div class="col-md-offset-3 col-md-10" id="saveContainer"> |
|---|
| 365 | | - <button id="save" type="submit" class="btn btn-primary" > |
|---|
| 366 | | - <span i18n class="glyphicon glyphicon-floppy-disk"></span> Save |
|---|
| 367 | | - </button> |
|---|
| 368 | | - </div> |
|---|
| 369 | | - </div> |
|---|
| 370 | | - </form> |
|---|
| 371 | 63 | </div> |
|---|
| 372 | 64 | |
|---|
| 373 | | - <div class="panel panel-default" ng-if="currentPack"> |
|---|
| 374 | | - <div class="panel-heading"> |
|---|
| 375 | | - <span i18n>Licenses for pack: </span>{{currentPack.code}} |
|---|
| 376 | | - <span style="color: lightgreen;" class="badge pull-right" ng-bind="currentPack.lic_available || 0"></span> |
|---|
| 377 | | - <span class="badge pull-right" ng-bind="licenses.length || 0"></span> |
|---|
| 65 | + <div class="form-group"> |
|---|
| 66 | + <label class="col-md-3 control-label" for="num_licenses" i18n>Num. |
|---|
| 67 | + Licenses</label> |
|---|
| 68 | + <div class="col-md-8"> |
|---|
| 69 | + <input type="number" id="num_licenses" name="num_licenses" |
|---|
| 70 | + placeholder="" class="form-control" ng-model="pack.num_licenses" |
|---|
| 71 | + ng-required="mandatory.num_licenses" /> |
|---|
| 72 | + <div class="alert inline-alert alert-warning" |
|---|
| 73 | + ng-show="packForm.num_licenses.$invalid"> |
|---|
| 74 | + <span class="glyphicon glyphicon-warning-sign"></span> <span |
|---|
| 75 | + ng-show="packForm.num_licenses.$error.maxlength" |
|---|
| 76 | + ng-bind="maxlengthErrorMsg('Num. Licenses', maxlength.num_licenses)"></span> |
|---|
| 77 | + <span ng-show="packForm.num_licenses.$error.required" |
|---|
| 78 | + ng-bind="mandatoryFieldErrorMsg('Num. Licenses')"></span> |
|---|
| 79 | + </div> |
|---|
| 378 | 80 | </div> |
|---|
| 379 | | - |
|---|
| 380 | | - |
|---|
| 381 | | - <table class="table table-hover table-condensed" > |
|---|
| 382 | | - <thead> |
|---|
| 383 | | - <tr> |
|---|
| 384 | | - <th i18n >License code</th> |
|---|
| 385 | | - <th i18n >User fullname</th> |
|---|
| 386 | | - <th i18n >Email</th> |
|---|
| 387 | | - <th i18n >Status</th> |
|---|
| 388 | | - <th></th> |
|---|
| 389 | | - </tr> |
|---|
| 390 | | - </thead> |
|---|
| 391 | | - <tbody> |
|---|
| 392 | | - <tr ng-repeat="lic in licenses | filter:searchLicenseText" ng-dblclick="editLicense(lic)" > |
|---|
| 393 | | - <td style="white-space: nowrap;" ng-bind="lic.code"></td> |
|---|
| 394 | | - <td ng-bind="ellipsis(lic.full_name, 20)" title="{{lic.full_name}}" ></td> |
|---|
| 395 | | - <td ng-bind="ellipsis(lic.email, 30)" title="{{lic.email}}" ></td> |
|---|
| 396 | | - <td ng-bind="showStatus(lic.status)"></td> |
|---|
| 397 | | - <td> |
|---|
| 398 | | - <div class="dropdown"> |
|---|
| 399 | | - <a class="dropdown-toggle" data-toggle="dropdown" > |
|---|
| 400 | | - <span class="glyphicon glyphicon-align-justify"></span> <span class="caret"></span> |
|---|
| 401 | | - </a> |
|---|
| 402 | | - <ul class="dropdown-menu"> |
|---|
| 403 | | - <li ng-if="isActionVisible(1, lic)"><a ng-click="downloadLicense(lic)"><span class="glyphicon glyphicon-download"></span> <span i18n>Download</span></a></li> |
|---|
| 404 | | - <li ng-if="isActionVisible(2, lic)"><a ng-click="editLicense(lic)"><span class="glyphicon glyphicon-pencil"></span> <span i18n>Edit</span></a></li> |
|---|
| 405 | | - <li ng-if="isActionVisible(4, lic)"><a ng-click="activateLicense(lic)"><span class="glyphicon glyphicon-check"></span> <span i18n>Activate</span></a></li> |
|---|
| 406 | | - <li ng-if="isActionVisible(8, lic)"><a ng-click="sendEmail(lic)"><span class="glyphicon glyphicon-send"></span> <span i18n>Send email</span></a></li> |
|---|
| 407 | | - <li ng-if="isActionVisible(16, lic)"><a ng-click="deleteLicense(lic)"><span class="glyphicon glyphicon-remove"></span> <span i18n>Remove</span></a></li> |
|---|
| 408 | | - </ul> |
|---|
| 409 | | - </div> |
|---|
| 410 | | - </td> |
|---|
| 411 | | - </tr> |
|---|
| 412 | | - </tbody> |
|---|
| 413 | | - <tfoot> |
|---|
| 414 | | - </tfoot> |
|---|
| 415 | | - </table> |
|---|
| 416 | | - </div> |
|---|
| 417 | | - |
|---|
| 81 | + </div> |
|---|
| 82 | + |
|---|
| 83 | + <div class="form-group"> |
|---|
| 84 | + <label class="col-md-3 control-label" for="license_type_id" i18n>License |
|---|
| 85 | + type</label> |
|---|
| 86 | + <div class="col-md-8"> |
|---|
| 87 | + <select class="form-control" |
|---|
| 88 | + ng-required="mandatory.license_type_id" |
|---|
| 89 | + ng-model="pack.license_type_id" |
|---|
| 90 | + ng-options="o.id as o.label for o in refs.license_type_id"> |
|---|
| 91 | + <option selected="true" ng-if="!mandatory.license_type_id" |
|---|
| 92 | + value=""></option> |
|---|
| 93 | + </select> |
|---|
| 94 | + <div class="alert inline-alert alert-warning" |
|---|
| 95 | + ng-show="packForm.license_type_id.$invalid"> |
|---|
| 96 | + <span class="glyphicon glyphicon-warning-sign"></span> <span |
|---|
| 97 | + ng-show="packForm.license_type_id.$error.required" |
|---|
| 98 | + ng-bind="mandatoryFieldErrorMsg('License type')"></span> |
|---|
| 99 | + </div> |
|---|
| 100 | + </div> |
|---|
| 101 | + </div> |
|---|
| 102 | + |
|---|
| 103 | + <div class="form-group"> |
|---|
| 104 | + <label class="col-md-3 control-label" for="organization_id" i18n>Organization</label> |
|---|
| 105 | + <div class="col-md-8"> |
|---|
| 106 | + <select class="form-control" ng-required="field.mandatory" |
|---|
| 107 | + ng-model="pack.organization_id" |
|---|
| 108 | + ng-options="o.id as o.label for o in refs.organization_id"> |
|---|
| 109 | + <option selected="true" ng-if="!mandatory.organization_id" |
|---|
| 110 | + value=""></option> |
|---|
| 111 | + </select> |
|---|
| 112 | + <div class="alert inline-alert alert-warning" |
|---|
| 113 | + ng-show="packForm.organization_id.$invalid"> |
|---|
| 114 | + <span class="glyphicon glyphicon-warning-sign"></span> <span |
|---|
| 115 | + ng-show="packForm.organization_id.$error.required" |
|---|
| 116 | + ng-bind="mandatoryFieldErrorMsg('Organization')"></span> |
|---|
| 117 | + </div> |
|---|
| 118 | + </div> |
|---|
| 119 | + </div> |
|---|
| 120 | + <div class="form-group"> |
|---|
| 121 | + <label class="col-md-3 control-label" for="license_preactivation" |
|---|
| 122 | + i18n>License preactivation</label> |
|---|
| 123 | + <div class="col-md-8"> |
|---|
| 124 | + <input type="checkbox" class="form-control" |
|---|
| 125 | + ng-model="pack.license_preactivation" /> |
|---|
| 126 | + </div> |
|---|
| 127 | + </div> |
|---|
| 128 | + |
|---|
| 129 | + |
|---|
| 130 | + <div class="form-group"> |
|---|
| 131 | + <label class="col-md-3 control-label" for="comments" i18n>Comments</label> |
|---|
| 132 | + <div class="col-md-8"> |
|---|
| 133 | + <textarea type="string" id="comments" name="comments" |
|---|
| 134 | + placeholder="" class="form-control" ng-model="pack.comments" |
|---|
| 135 | + rows="2" ng-required="mandatory.comments" |
|---|
| 136 | + ng-maxlength="{{maxlength.comments}}"></textarea> |
|---|
| 137 | + <div class="alert inline-alert alert-warning" |
|---|
| 138 | + ng-show="packForm.comments.$invalid"> |
|---|
| 139 | + <span class="glyphicon glyphicon-warning-sign"></span> <span |
|---|
| 140 | + ng-show="packForm.comments.$error.maxlength" |
|---|
| 141 | + ng-bind="maxlengthErrorMsg('Comments', maxlength.comments)"></span> |
|---|
| 142 | + <span ng-show="packForm.comments.$error.required" |
|---|
| 143 | + ng-bind="mandatoryFieldErrorMsg('comments')"></span> |
|---|
| 144 | + </div> |
|---|
| 145 | + </div> |
|---|
| 146 | + </div> |
|---|
| 147 | + |
|---|
| 148 | + <div class="form-group" ng-if="!isNew"> |
|---|
| 149 | + <label class="col-md-3 control-label">Created by</label> |
|---|
| 150 | + <div class="col-md-8"> |
|---|
| 151 | + <p class="form-control-static" ng-bind="pack.created_by_name"></p> |
|---|
| 152 | + </div> |
|---|
| 153 | + </div> |
|---|
| 154 | + |
|---|
| 155 | + <div class="form-group" ng-if="!isNew"> |
|---|
| 156 | + <label class="col-md-3 control-label">Creation date</label> |
|---|
| 157 | + <div class="col-md-8"> |
|---|
| 158 | + <p class="form-control-static" |
|---|
| 159 | + ng-bind="pack.creationTimestamp | date:'medium'"></p> |
|---|
| 160 | + </div> |
|---|
| 161 | + </div> |
|---|
| 162 | + |
|---|
| 163 | + <div class="form-group"> |
|---|
| 164 | + <div class="col-md-offset-3 col-md-10" id="saveContainer"> |
|---|
| 165 | + <button id="save" type="submit" class="btn btn-primary"> |
|---|
| 166 | + <span i18n class="glyphicon glyphicon-floppy-disk"></span> Save |
|---|
| 167 | + </button> |
|---|
| 168 | + </div> |
|---|
| 169 | + </div> |
|---|
| 170 | + </form> |
|---|
| 418 | 171 | </div> |
|---|
| 172 | + |
|---|
| 173 | + |
|---|
| 174 | + <div class="panel panel-default"> |
|---|
| 175 | + <div class="panel-heading"> |
|---|
| 176 | + Packs <span class="badge pull-right" ng-bind="packs.length || 0"></span> |
|---|
| 177 | + </div> |
|---|
| 178 | + |
|---|
| 179 | + <table class="table table-hover table-condensed"> |
|---|
| 180 | + <thead> |
|---|
| 181 | + <tr> |
|---|
| 182 | + <th i18n>Code</th> |
|---|
| 183 | + <th i18n>Organization</th> |
|---|
| 184 | + <th i18n>Application</th> |
|---|
| 185 | + <th i18n>Licenses</th> |
|---|
| 186 | + <th></th> |
|---|
| 187 | + </tr> |
|---|
| 188 | + </thead> |
|---|
| 189 | + <tbody> |
|---|
| 190 | + <tr ng-repeat="p in packs | filter:searchText" |
|---|
| 191 | + ng-dblclick="editPack(p)" |
|---|
| 192 | + ng-class="{success: currentPack.id === p.id}" |
|---|
| 193 | + ng-click="selectPack(p)"> |
|---|
| 194 | + <td style="white-space: nowrap;" ng-bind="p.code"></td> |
|---|
| 195 | + <td ng-bind="ellipsis(p.organization_name, 20)" |
|---|
| 196 | + title="{{pack.organization_name}}"></td> |
|---|
| 197 | + <td ng-bind="p.application_name"></td> |
|---|
| 198 | + <td |
|---|
| 199 | + title="Total: {{p.num_licenses}}, available: {{p.num_available}}">{{p.num_licenses}} |
|---|
| 200 | + ({{p.num_available}})</td> |
|---|
| 201 | + <td><span ng-click="editPack(p)" |
|---|
| 202 | + class="glyphicon glyphicon-pencil"></span> <span |
|---|
| 203 | + ng-click="deletePack(p)" class="glyphicon glyphicon-remove"></span> |
|---|
| 204 | + </td> |
|---|
| 205 | + </tr> |
|---|
| 206 | + </tbody> |
|---|
| 207 | + <tfoot> |
|---|
| 208 | + </tfoot> |
|---|
| 209 | + </table> |
|---|
| 210 | + </div> |
|---|
| 211 | + |
|---|
| 419 | 212 | </div> |
|---|
| 213 | + {{license | json}} |
|---|
| 214 | + <div id="licenses_section" class="col-md-6" |
|---|
| 215 | + ng-controller="LicensesCtrl"> |
|---|
| 216 | + <nav class="navbar navbar-default navbar-static-top" |
|---|
| 217 | + ng-disabled="!currentPack"> |
|---|
| 218 | + <div class="container-fluid"> |
|---|
| 219 | + <!-- Brand and toggle get grouped for better mobile display --> |
|---|
| 220 | + <div class="navbar-header success"> |
|---|
| 221 | + <a class="navbar-brand" i18n>Licenses</a> |
|---|
| 222 | + </div> |
|---|
| 223 | + |
|---|
| 224 | + <!-- Collect the nav links, forms, and other content for toggling --> |
|---|
| 225 | + <div class="collapse navbar-collapse" |
|---|
| 226 | + id="bs-example-navbar-collapse-1"> |
|---|
| 227 | + <ul class="nav navbar-nav"> |
|---|
| 228 | + <li><a i18n ng-click="newLicense()"><span |
|---|
| 229 | + class="glyphicon glyphicon-plus"></span> New</a></li> |
|---|
| 230 | + <li><a i18n ng-click="cancel()"> <span |
|---|
| 231 | + class="glyphicon glyphicon-ban-circle"></span> Cancel |
|---|
| 232 | + </a></li> |
|---|
| 233 | + </ul> |
|---|
| 234 | + <div class="navbar-form navbar-right form-group"> |
|---|
| 235 | + <span class="input-group input-group-sm"> |
|---|
| 236 | + <div class="input-group-addon" style="width: 28px;" > |
|---|
| 237 | + <span class=" glyphicon glyphicon-search"></span> |
|---|
| 238 | + </div> |
|---|
| 239 | + <input type="text" class="form-control" placeholder="Search" ng-model="$searchLicensesText"> |
|---|
| 240 | + <div class="input-group-addon" style="width: 20px;" > |
|---|
| 241 | + <span class=" glyphicon glyphicon-remove" ng-click="$searchLicensesText = '';"></span> |
|---|
| 242 | + </div> |
|---|
| 243 | + </span> |
|---|
| 244 | + </div> |
|---|
| 245 | + </div> |
|---|
| 246 | + </div> |
|---|
| 247 | + </nav> |
|---|
| 248 | + |
|---|
| 249 | + <div ng-if="!currentPack" class="well well-lg"> |
|---|
| 250 | + <h4 i18n>No pack selected</h4> |
|---|
| 251 | + <p i18n>Please, select a pack to manage its licenses</p> |
|---|
| 252 | + </div> |
|---|
| 253 | + |
|---|
| 254 | + <div ng-if="currentPack" |
|---|
| 255 | + class="panel panel-default animate-show ng-hide" ng-show="showForm"> |
|---|
| 256 | + <form role="form" class="form-horizontal " name="licenseForm" |
|---|
| 257 | + id="licenseForm" ng-submit="save()"> |
|---|
| 258 | + <div class="form-group" ng-if="!isNew"> |
|---|
| 259 | + <label class="col-md-3 control-label">ID</label> |
|---|
| 260 | + <div class="col-md-8"> |
|---|
| 261 | + <p class="form-control-static" ng-bind="license.id"></p> |
|---|
| 262 | + </div> |
|---|
| 263 | + </div> |
|---|
| 264 | + <div class="form-group"> |
|---|
| 265 | + <label class="col-md-3 control-label" for="pack_id" i18n>Pack</label> |
|---|
| 266 | + <div class="col-md-8"> |
|---|
| 267 | + <p class="form-control-static" ng-bind="currentPack.code"></p> |
|---|
| 268 | + <input type="hidden" id="pack_id" name="pack_id" |
|---|
| 269 | + ng-model="license.pack_id" /> |
|---|
| 270 | + </div> |
|---|
| 271 | + </div> |
|---|
| 272 | + <div class="form-group"> |
|---|
| 273 | + <label class="col-md-3 control-label" for="code" i18n>Code</label> |
|---|
| 274 | + <div class="col-md-8"> |
|---|
| 275 | + <input type="string" id="code" name="code" placeholder="" |
|---|
| 276 | + class="form-control" ng-model="license.code" |
|---|
| 277 | + ng-required="mandatory.code" ng-maxlength="{{maxlength.code}}" /> |
|---|
| 278 | + <div class="alert inline-alert alert-warning" |
|---|
| 279 | + ng-show="licenseForm.code.$invalid"> |
|---|
| 280 | + <span class="glyphicon glyphicon-warning-sign"></span> <span |
|---|
| 281 | + ng-show="licenseForm.code.$error.maxlength" |
|---|
| 282 | + ng-bind="maxlengthErrorMsg('Code', maxlength.code)"></span> <span |
|---|
| 283 | + ng-show="licenseForm.code.$error.required" |
|---|
| 284 | + ng-bind="mandatoryFieldErrorMsg('Code')"></span> |
|---|
| 285 | + </div> |
|---|
| 286 | + </div> |
|---|
| 287 | + </div> |
|---|
| 288 | + <div class="form-group" ng-if="!isNew"> |
|---|
| 289 | + <label class="col-md-3 control-label" i18n>Status</label> |
|---|
| 290 | + <div class="col-md-8"> |
|---|
| 291 | + <p class="form-control-static" ng-bind="showStatusLong(license)"></p> |
|---|
| 292 | + </div> |
|---|
| 293 | + </div> |
|---|
| 294 | + |
|---|
| 295 | + <div class="form-group"> |
|---|
| 296 | + <label class="col-md-3 control-label" for="full_name" i18n>User |
|---|
| 297 | + full name</label> |
|---|
| 298 | + <div class="col-md-8"> |
|---|
| 299 | + <input type="string" id="full_name" name="full_name" |
|---|
| 300 | + placeholder="" class="form-control" ng-model="license.full_name" |
|---|
| 301 | + ng-required="mandatory.full_name" /> |
|---|
| 302 | + <div class="alert inline-alert alert-warning" |
|---|
| 303 | + ng-show="licenseForm.full_name.$invalid"> |
|---|
| 304 | + <span class="glyphicon glyphicon-warning-sign"></span> <span |
|---|
| 305 | + ng-show="licenseForm.full_name.$error.maxlength" |
|---|
| 306 | + ng-bind="maxlengthErrorMsg('User full name', maxlength.full_name)"></span> |
|---|
| 307 | + <span ng-show="licenseForm.full_name.$error.required" |
|---|
| 308 | + ng-bind="mandatoryFieldErrorMsg('User full name')"></span> |
|---|
| 309 | + </div> |
|---|
| 310 | + </div> |
|---|
| 311 | + </div> |
|---|
| 312 | + |
|---|
| 313 | + <div class="form-group"> |
|---|
| 314 | + <label class="col-md-3 control-label" for="email" i18n>User |
|---|
| 315 | + email</label> |
|---|
| 316 | + <div class="col-md-8"> |
|---|
| 317 | + <input type="email" id="email" name="email" placeholder="" |
|---|
| 318 | + class="form-control" ng-model="license.email" |
|---|
| 319 | + ng-required="mandatory.email" /> |
|---|
| 320 | + <div class="alert inline-alert alert-warning" |
|---|
| 321 | + ng-show="licenseForm.email.$invalid"> |
|---|
| 322 | + <span class="glyphicon glyphicon-warning-sign"></span> <span |
|---|
| 323 | + ng-show="licenseForm.email.$error.email" |
|---|
| 324 | + ng-bind="'Please, write a valid email address'"></span> <span |
|---|
| 325 | + ng-show="licenseForm.email.$error.maxlength" |
|---|
| 326 | + ng-bind="maxlengthErrorMsg('User email', maxlength.email)"></span> |
|---|
| 327 | + <span ng-show="licenseForm.email.$error.required" |
|---|
| 328 | + ng-bind="mandatoryFieldErrorMsg('User email')"></span> |
|---|
| 329 | + </div> |
|---|
| 330 | + </div> |
|---|
| 331 | + </div> |
|---|
| 332 | + <div class="form-group" ng-if="isNew || !license.request_data"> |
|---|
| 333 | + <label class="col-md-3 control-label" for="request_data" i18n>Request |
|---|
| 334 | + data</label> |
|---|
| 335 | + <div class="col-md-7"> |
|---|
| 336 | + <textarea id="request_data" name="request_data" placeholder="" |
|---|
| 337 | + class="form-control" ng-model="license.request_data" rows="2" |
|---|
| 338 | + ng-required="mandatory.request_data" |
|---|
| 339 | + ng-maxlength="{{maxlength.request_data}}"></textarea> |
|---|
| 340 | + <div class="alert inline-alert alert-warning" |
|---|
| 341 | + ng-show="licenseForm.request_data.$invalid"> |
|---|
| 342 | + <span class="glyphicon glyphicon-warning-sign"></span> <span |
|---|
| 343 | + ng-show="licenseForm.request_data.$error.maxlength" |
|---|
| 344 | + ng-bind="maxlengthErrorMsg('Request data', maxlength.request_data)"></span> |
|---|
| 345 | + <span ng-show="licenseForm.request_data.$error.required" |
|---|
| 346 | + ng-bind="mandatoryFieldErrorMsg('Request data')"></span> |
|---|
| 347 | + </div> |
|---|
| 348 | + </div> |
|---|
| 349 | + <span class="btn btn-file btn-default btn-xs"> <span |
|---|
| 350 | + class="glyphicon glyphicon-folder-open"></span> <input |
|---|
| 351 | + file-loader="license.request_data" type="file"> |
|---|
| 352 | + </span> |
|---|
| 353 | + </div> |
|---|
| 354 | + |
|---|
| 355 | + <div class="form-group"> |
|---|
| 356 | + <label class="col-md-3 control-label" for="comments" i18n>Comments</label> |
|---|
| 357 | + <div class="col-md-8"> |
|---|
| 358 | + <textarea type="string" id="comments" name="comments" |
|---|
| 359 | + placeholder="" class="form-control" ng-model="license.comments" |
|---|
| 360 | + rows="2" ng-required="mandatory.comments" |
|---|
| 361 | + ng-maxlength="{{maxlength.comments}}"></textarea> |
|---|
| 362 | + |
|---|
| 363 | + <div class="alert inline-alert alert-warning" |
|---|
| 364 | + ng-show="licenseForm.comments.$invalid"> |
|---|
| 365 | + <span class="glyphicon glyphicon-warning-sign"></span> <span |
|---|
| 366 | + ng-show="licenseForm.comments.$error.maxlength" |
|---|
| 367 | + ng-bind="maxlengthErrorMsg('Comments', maxlength.comments)"></span> |
|---|
| 368 | + <span ng-show="licenseForm.comments.$error.required" |
|---|
| 369 | + ng-bind="mandatoryFieldErrorMsg('comments')"></span> |
|---|
| 370 | + </div> |
|---|
| 371 | + </div> |
|---|
| 372 | + </div> |
|---|
| 373 | + |
|---|
| 374 | + <div class="form-group" ng-if="!isNew && license.request_data"> |
|---|
| 375 | + <label class="col-md-3 control-label" i18n>Request data</label> |
|---|
| 376 | + <div class="col-md-8"> |
|---|
| 377 | + <pre class="form-control-static" |
|---|
| 378 | + ng-bind="license.request_data | json"></pre> |
|---|
| 379 | + </div> |
|---|
| 380 | + </div> |
|---|
| 381 | + |
|---|
| 382 | + <div class="form-group" ng-if="!isNew && license.license_data"> |
|---|
| 383 | + <label class="col-md-3 control-label" i18n>License file</label> |
|---|
| 384 | + <div class="col-md-8"> |
|---|
| 385 | + <p class="form-control-static" ng-bind="license.license_data"></p> |
|---|
| 386 | + <button id="downloadLicense" class="btn btn-xs btn-link" |
|---|
| 387 | + ng-click="downloadLicense(license)"> |
|---|
| 388 | + <span i18n class="glyphicon glyphicon-download"></span> |
|---|
| 389 | + </button> |
|---|
| 390 | + </div> |
|---|
| 391 | + </div> |
|---|
| 392 | + |
|---|
| 393 | + <div class="form-group" ng-if="!isNew"> |
|---|
| 394 | + <label class="col-md-3 control-label" i18n>Created by</label> |
|---|
| 395 | + <div class="col-md-8"> |
|---|
| 396 | + <p class="form-control-static" ng-bind="license.created_by_name"></p> |
|---|
| 397 | + </div> |
|---|
| 398 | + </div> |
|---|
| 399 | + |
|---|
| 400 | + <div class="form-group" ng-if="!isNew && license.canceled_by_name"> |
|---|
| 401 | + <label class="col-md-3 control-label">Canceled by</label> |
|---|
| 402 | + <div class="col-md-8"> |
|---|
| 403 | + <p class="form-control-static" ng-bind="license.canceled_by_name"></p> |
|---|
| 404 | + </div> |
|---|
| 405 | + </div> |
|---|
| 406 | + |
|---|
| 407 | + <div class="form-group" ng-if="!isNew"> |
|---|
| 408 | + <label class="col-md-3 control-label" i18n>Creation date</label> |
|---|
| 409 | + <div class="col-md-8"> |
|---|
| 410 | + <p class="form-control-static" |
|---|
| 411 | + ng-bind="license.creationTimestamp | date:'medium'"></p> |
|---|
| 412 | + </div> |
|---|
| 413 | + </div> |
|---|
| 414 | + |
|---|
| 415 | + <div class="form-group" ng-if="!isNew"> |
|---|
| 416 | + <label class="col-md-3 control-label" i18n>Modification |
|---|
| 417 | + date</label> |
|---|
| 418 | + <div class="col-md-8"> |
|---|
| 419 | + <p class="form-control-static" |
|---|
| 420 | + ng-bind="license.modificationTimestamp | date:'medium'"></p> |
|---|
| 421 | + </div> |
|---|
| 422 | + </div> |
|---|
| 423 | + |
|---|
| 424 | + <div class="form-group" |
|---|
| 425 | + ng-if="!isNew && license.activationTimestamp"> |
|---|
| 426 | + <label class="col-md-3 control-label" i18n>Activation date</label> |
|---|
| 427 | + <div class="col-md-8"> |
|---|
| 428 | + <p class="form-control-static" |
|---|
| 429 | + ng-bind="license.activationTimestamp | date:'medium'"></p> |
|---|
| 430 | + </div> |
|---|
| 431 | + </div> |
|---|
| 432 | + |
|---|
| 433 | + <div class="form-group" ng-if="!isNew && license.sendTimestamp"> |
|---|
| 434 | + <label class="col-md-3 control-label" i18n>Send date</label> |
|---|
| 435 | + <div class="col-md-8"> |
|---|
| 436 | + <p class="form-control-static" |
|---|
| 437 | + ng-bind="license.sendTimestamp | date:'medium'"></p> |
|---|
| 438 | + </div> |
|---|
| 439 | + </div> |
|---|
| 440 | + |
|---|
| 441 | + <div class="form-group" |
|---|
| 442 | + ng-if="!isNew && license.cancelationTimestamp"> |
|---|
| 443 | + <label class="col-md-3 control-label" i18n>Cancelation date</label> |
|---|
| 444 | + <div class="col-md-8"> |
|---|
| 445 | + <p class="form-control-static" |
|---|
| 446 | + ng-bind="license.cancelationTimestamp | date:'medium'"></p> |
|---|
| 447 | + </div> |
|---|
| 448 | + </div> |
|---|
| 449 | + |
|---|
| 450 | + <div class="form-group" |
|---|
| 451 | + ng-if="!isNew && license.lastAccessTimestamp"> |
|---|
| 452 | + <label class="col-md-3 control-label" i18n>Last access date</label> |
|---|
| 453 | + <div class="col-md-8"> |
|---|
| 454 | + <p class="form-control-static" |
|---|
| 455 | + ng-bind="license.lastAccessTimestamp | date:'medium'"></p> |
|---|
| 456 | + </div> |
|---|
| 457 | + </div> |
|---|
| 458 | + |
|---|
| 459 | + <div class="form-group"> |
|---|
| 460 | + <div class="col-md-offset-3 col-md-9" id="saveContainer"> |
|---|
| 461 | + <button id="save" type="submit" class="btn btn-primary"> |
|---|
| 462 | + <span i18n class="glyphicon glyphicon-floppy-disk"></span> Save |
|---|
| 463 | + </button> |
|---|
| 464 | + <button id="activate" class="btn btn-success" |
|---|
| 465 | + ng-click="activateLicense(license)" |
|---|
| 466 | + ng-if="isActionVisible('activate', license)"> |
|---|
| 467 | + <span i18n class="glyphicon glyphicon-check"></span> Activate |
|---|
| 468 | + </button> |
|---|
| 469 | + <button id="send" class="btn btn-info" |
|---|
| 470 | + ng-click="sendLicense(license)" |
|---|
| 471 | + ng-if="isActionVisible('send', license)"> |
|---|
| 472 | + <span i18n class="glyphicon glyphicon-send"></span> Send |
|---|
| 473 | + </button> |
|---|
| 474 | + <button id="cancel" class="btn btn-warning" |
|---|
| 475 | + ng-click="cancelLicense(license)" |
|---|
| 476 | + ng-if="isActionVisible('cancel', license)"> |
|---|
| 477 | + <span i18n class="glyphicon glyphicon-ban-circle"></span> Cancel |
|---|
| 478 | + </button> |
|---|
| 479 | + <button id="remove" class="btn btn-danger" |
|---|
| 480 | + ng-click="removeLicense(license)" |
|---|
| 481 | + ng-if="isActionVisible('delete', license)"> |
|---|
| 482 | + <span i18n class="glyphicon glyphicon-trash"></span> Delete |
|---|
| 483 | + </button> |
|---|
| 484 | + </div> |
|---|
| 485 | + </div> |
|---|
| 486 | + </form> |
|---|
| 487 | + </div> |
|---|
| 488 | + |
|---|
| 489 | + <div class="panel panel-default" ng-if="currentPack"> |
|---|
| 490 | + <div class="panel-heading"> |
|---|
| 491 | + <span i18n>Licenses for pack: </span>{{currentPack.code}} <span |
|---|
| 492 | + style="color: lightgreen;" class="badge pull-right" |
|---|
| 493 | + ng-bind="currentPack.lic_available || 0"></span> <span |
|---|
| 494 | + class="badge pull-right" ng-bind="licenses.length || 0"></span> |
|---|
| 495 | + </div> |
|---|
| 496 | + |
|---|
| 497 | + |
|---|
| 498 | + <table class="table table-hover table-condensed"> |
|---|
| 499 | + <thead> |
|---|
| 500 | + <tr> |
|---|
| 501 | + <th i18n>License code</th> |
|---|
| 502 | + <th i18n>User fullname</th> |
|---|
| 503 | + <th i18n>Email</th> |
|---|
| 504 | + <th i18n>Status</th> |
|---|
| 505 | + <th></th> |
|---|
| 506 | + </tr> |
|---|
| 507 | + </thead> |
|---|
| 508 | + <tbody> |
|---|
| 509 | + <tr ng-repeat="lic in licenses | filter:searchLicenseText" |
|---|
| 510 | + ng-dblclick="editLicense(lic)"> |
|---|
| 511 | + <td style="white-space: nowrap;" ng-bind="lic.code"></td> |
|---|
| 512 | + <td ng-bind="ellipsis(lic.full_name, 20)" |
|---|
| 513 | + title="{{lic.full_name}}"></td> |
|---|
| 514 | + <td ng-bind="ellipsis(lic.email, 30)" title="{{lic.email}}"></td> |
|---|
| 515 | + <td ng-bind="showStatus(lic.status)"></td> |
|---|
| 516 | + <td> |
|---|
| 517 | + <div class="dropdown"> |
|---|
| 518 | + <a class="dropdown-toggle" data-toggle="dropdown"> <span |
|---|
| 519 | + class="glyphicon glyphicon-align-justify"></span> <span |
|---|
| 520 | + class="caret"></span> |
|---|
| 521 | + </a> |
|---|
| 522 | + <ul class="dropdown-menu"> |
|---|
| 523 | + <li ng-if="isActionVisible('download', lic)"><a |
|---|
| 524 | + ng-click="downloadLicense(lic)"><span |
|---|
| 525 | + class="glyphicon glyphicon-download"></span> <span i18n>Download</span></a></li> |
|---|
| 526 | + <li ng-if="isActionVisible('edit', lic)"><a |
|---|
| 527 | + ng-click="editLicense(lic)"><span |
|---|
| 528 | + class="glyphicon glyphicon-pencil"></span> <span i18n>Edit</span></a></li> |
|---|
| 529 | + <li ng-if="isActionVisible('activate', lic)"><a |
|---|
| 530 | + ng-click="activateLicense(lic)"><span |
|---|
| 531 | + class="glyphicon glyphicon-check"></span> <span i18n>Activate</span></a></li> |
|---|
| 532 | + <li ng-if="isActionVisible('send', lic)"><a |
|---|
| 533 | + ng-click="sendEmail(lic)"><span |
|---|
| 534 | + class="glyphicon glyphicon-send"></span> <span i18n>Send |
|---|
| 535 | + email</span></a></li> |
|---|
| 536 | + <li ng-if="isActionVisible('cancel', lic)"><a |
|---|
| 537 | + ng-click="deleteLicense(lic)"><span |
|---|
| 538 | + class="glyphicon glyphicon-ban-circle"></span> <span i18n>Cancel</span></a></li> |
|---|
| 539 | + <li ng-if="isActionVisible('delete', lic)"><a |
|---|
| 540 | + ng-click="deleteLicense(lic)"><span |
|---|
| 541 | + class="glyphicon glyphicon-trash"></span> <span i18n>Delete</span></a></li> |
|---|
| 542 | + </ul> |
|---|
| 543 | + </div> |
|---|
| 544 | + </td> |
|---|
| 545 | + </tr> |
|---|
| 546 | + </tbody> |
|---|
| 547 | + <tfoot> |
|---|
| 548 | + </tfoot> |
|---|
| 549 | + </table> |
|---|
| 550 | + </div> |
|---|
| 551 | + |
|---|
| 552 | + </div> |
|---|
| 553 | +</div> |
|---|
| 420 | 554 | |
|---|