This is an automated email from the ASF dual-hosted git repository.

asf-gitbox-commits pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/activemq-website.git


The following commit(s) were added to refs/heads/asf-site by this push:
     new a7085e65c Automatic Site Publish by Buildbot
a7085e65c is described below

commit a7085e65c3e16ebaf64e667625cc1e1f949ac87b
Author: buildbot <[email protected]>
AuthorDate: Thu Jul 23 17:38:21 2026 +0000

    Automatic Site Publish by Buildbot
---
 .../how-do-i-set-the-message-expiration.html       |   2 +
 .../{message-features.html => message-expiry.html} |  49 ++-
 .../classic/documentation/message-features.html    |   1 +
 .../components/classic/documentation/sitemap.html  |   1 +
 .../documentation/slow-consumer-handling.html      |  10 +-
 output/css/main.css                                | 460 ++++++++++-----------
 6 files changed, 282 insertions(+), 241 deletions(-)

diff --git 
a/output/components/classic/documentation/how-do-i-set-the-message-expiration.html
 
b/output/components/classic/documentation/how-do-i-set-the-message-expiration.html
index 39844b49b..4160cfe8c 100644
--- 
a/output/components/classic/documentation/how-do-i-set-the-message-expiration.html
+++ 
b/output/components/classic/documentation/how-do-i-set-the-message-expiration.html
@@ -101,6 +101,8 @@
   <li><a 
href="http://java.sun.com/j2ee/1.4/docs/api/javax/jms/MessageProducer.html#send(javax.jms.Destination,%20javax.jms.Message,%20int,%20int,%20long)">producer.send(Destination,
 Message, int, int, long)</a></li>
 </ul>
 
+<p>For the end-to-end view of how TTL becomes <code class="language-plaintext 
highlighter-rouge">JMSExpiration</code>, how the broker enforces expiry, and 
why clock synchronization matters, see <a href="message-expiry">Message 
Expiry</a>.</p>
+
 
       </div>
     </div>
diff --git a/output/components/classic/documentation/message-features.html 
b/output/components/classic/documentation/message-expiry.html
similarity index 74%
copy from output/components/classic/documentation/message-features.html
copy to output/components/classic/documentation/message-expiry.html
index e29642b24..87b836b0e 100644
--- a/output/components/classic/documentation/message-features.html
+++ b/output/components/classic/documentation/message-expiry.html
@@ -86,23 +86,52 @@
 <div class="content">
   <div class="page-title-classic">
     <div class="container">
-      <h1>Message Features</h1>
+      <h1>Message Expiry</h1>
     </div>
   </div>
   <div class="container" >
     <div class="row" style="margin-top: 30px">
       <div class="col-12 classic">
-        <p><a href="features">Features</a> &gt; <a 
href="message-features">Message Features</a></p>
+        <p><a href="features">Features</a> &gt; <a 
href="message-features">Message Features</a> &gt; <a 
href="message-expiry">Message Expiry</a></p>
+
+<p>Apache ActiveMQ Classic handles message expiry in two parts:</p>
+
+<ol>
+  <li><strong>The client sets the expiration time when it sends the 
message.</strong></li>
+  <li><strong>The broker checks that expiration time and discards expired 
messages.</strong></li>
+</ol>
+
+<p>When a JMS producer sets a time-to-live (TTL), ActiveMQ Classic converts 
that TTL into an absolute <code class="language-plaintext 
highlighter-rouge">JMSExpiration</code> value when the message is sent. A TTL 
of <code class="language-plaintext highlighter-rouge">0</code> means the 
message never expires.</p>
+
+<p>At the broker, expired messages can be removed in several places, including 
when a message arrives, while messages are being held for dispatch, and during 
periodic destination scans. Consumers may also filter expired messages before 
delivery.</p>
+
+<h2 id="client-side-expiry">Client-side expiry</h2>
+
+<p>In JMS, message expiration is controlled by the producer:</p>
+
+<ul>
+  <li><a href="how-do-i-set-the-message-expiration"><code 
class="language-plaintext 
highlighter-rouge">MessageProducer.setTimeToLive(long)</code></a></li>
+  <li><a href="how-do-i-set-the-message-expiration"><code 
class="language-plaintext 
highlighter-rouge">MessageProducer.send(...)</code></a></li>
+</ul>
+
+<p>ActiveMQ Classic stores the TTL as an absolute expiration timestamp on the 
message. That timestamp is based on the sending machine’s clock.</p>
+
+<h2 id="broker-side-expiry">Broker-side expiry</h2>
+
+<p>The broker checks the stored expiration timestamp against its own clock and 
removes expired messages as they are encountered. Because of that, expiry is 
not purely a client-side concept: the broker still has to enforce it.</p>
+
+<p>For that reason, the clocks on all machines involved — producers, brokers, 
and consumers — should be kept in sync. If the machines are not 
time-synchronized, a message may appear to expire early or late depending on 
which clock is ahead.</p>
+
+<h2 id="consumer-expiry-checks">Consumer expiry checks</h2>
+
+<p>The ActiveMQ Classic client also performs expiry checks before delivering 
messages to application code. This helps prevent expired messages from being 
consumed accidentally.</p>
+
+<h2 id="related-documentation">Related documentation</h2>
 
 <ul>
-  <li><a href="activemq-classic-message-properties">ActiveMQ Message 
Properties</a></li>
-  <li><a href="advisory-message">Advisory Message</a></li>
-  <li><a href="blob-messages">Blob Messages</a></li>
-  <li><a href="delay-and-schedule-message-delivery">Delay and Schedule Message 
Delivery</a></li>
-  <li><a href="jms-streams">JMS Streams</a></li>
-  <li><a href="message-transformation">Message Transformation</a></li>
-  <li><a href="objectmessage">ObjectMessage</a></li>
-  <li><a href="structured-message-properties-and-mapmessages">Structured 
Message Properties and MapMessages</a></li>
+  <li><a href="how-do-i-set-the-message-expiration">How do I set the message 
expiration</a></li>
+  <li><a href="message-redelivery-and-dlq-handling">Message Redelivery and DLQ 
Handling</a></li>
+  <li><a href="slow-consumer-handling">Slow Consumer Handling</a></li>
 </ul>
 
 
diff --git a/output/components/classic/documentation/message-features.html 
b/output/components/classic/documentation/message-features.html
index e29642b24..dbc62b964 100644
--- a/output/components/classic/documentation/message-features.html
+++ b/output/components/classic/documentation/message-features.html
@@ -99,6 +99,7 @@
   <li><a href="advisory-message">Advisory Message</a></li>
   <li><a href="blob-messages">Blob Messages</a></li>
   <li><a href="delay-and-schedule-message-delivery">Delay and Schedule Message 
Delivery</a></li>
+  <li><a href="message-expiry">Message Expiry</a></li>
   <li><a href="jms-streams">JMS Streams</a></li>
   <li><a href="message-transformation">Message Transformation</a></li>
   <li><a href="objectmessage">ObjectMessage</a></li>
diff --git a/output/components/classic/documentation/sitemap.html 
b/output/components/classic/documentation/sitemap.html
index f3c66c99e..96cd92cfa 100644
--- a/output/components/classic/documentation/sitemap.html
+++ b/output/components/classic/documentation/sitemap.html
@@ -485,6 +485,7 @@
       <li><a href="advisory-message">Advisory Message</a></li>
       <li><a href="blob-messages">Blob Messages</a></li>
       <li><a href="delay-and-schedule-message-delivery">Delay and Schedule 
Message Delivery</a></li>
+      <li><a href="message-expiry">Message Expiry</a></li>
       <li><a href="jms-streams">JMS Streams</a></li>
       <li><a href="message-transformation">Message Transformation</a></li>
       <li><a href="objectmessage">ObjectMessage</a></li>
diff --git 
a/output/components/classic/documentation/slow-consumer-handling.html 
b/output/components/classic/documentation/slow-consumer-handling.html
index 9b5ae6615..498ee05a0 100644
--- a/output/components/classic/documentation/slow-consumer-handling.html
+++ b/output/components/classic/documentation/slow-consumer-handling.html
@@ -138,6 +138,15 @@
 <div class="language-plaintext highlighter-rouge"><div class="highlight"><pre 
class="highlight"><code>&lt;oldestMessageEvictionStrategy/&gt;
 </code></pre></div></div>
 
+<p>By default, ActiveMQ will frist remove any expired messages from the 
slow-consumer pending buffer before evicting non-expired messages.</p>
+
+<p>If your messages do not use TTL or you do not want this behavior you can 
disable it with <code class="language-plaintext 
highlighter-rouge">expiryCheckEnabled="false"</code>:</p>
+
+<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre 
class="highlight"><code>&lt;oldestMessageEvictionStrategy 
expiryCheckEnabled="false"/&gt;
+</code></pre></div></div>
+
+<p>Messages will still be subject to expiry checks on the client. For the full 
client/broker expiry flow and the clock synchronization caveat, see <a 
href="message-expiry">Message Expiry</a>. The default is <code 
class="language-plaintext 
highlighter-rouge">expiryCheckEnabled="true"</code>.</p>
+
 <p>However, you can write your own to use some application specific way of 
choosing messages for eviction. For example, if you are sending market data 
price updates you may wish to find an older price value, which might not be the 
oldest message.</p>
 
 <p>Example:</p>
@@ -234,7 +243,6 @@
   </tbody>
 </table>
 
-
       </div>
     </div>
   </div>
diff --git a/output/css/main.css b/output/css/main.css
index c80b6f9fb..ca01728a3 100644
--- a/output/css/main.css
+++ b/output/css/main.css
@@ -157,7 +157,7 @@ a {
   background-color: transparent;
 }
 a:hover {
-  color: rgb(71.9371727749, 88.1230366492, 26.3769633508);
+  color: rgb(28.2106559901%, 34.5580535879%, 10.3439071964%);
   text-decoration: underline;
 }
 
@@ -1513,161 +1513,161 @@ pre code {
 .table-primary,
 .table-primary > th,
 .table-primary > td {
-  background-color: rgb(217.2, 224.76, 195.92);
+  background-color: rgb(85.1764705882%, 88.1411764706%, 76.831372549%);
 }
 .table-primary th,
 .table-primary td,
 .table-primary thead th,
 .table-primary tbody + tbody {
-  border-color: rgb(184.8, 198.84, 145.28);
+  border-color: rgb(72.4705882353%, 77.9764705882%, 56.9725490196%);
 }
 
 .table-hover .table-primary:hover {
-  background-color: rgb(206.4084639498, 216.1267711599, 179.0532288401);
+  background-color: rgb(80.9444956666%, 84.7555965333%, 70.2169524863%);
 }
 .table-hover .table-primary:hover > td,
 .table-hover .table-primary:hover > th {
-  background-color: rgb(206.4084639498, 216.1267711599, 179.0532288401);
+  background-color: rgb(80.9444956666%, 84.7555965333%, 70.2169524863%);
 }
 
 .table-secondary,
 .table-secondary > th,
 .table-secondary > td {
-  background-color: rgb(237.64, 194.52, 212.16);
+  background-color: rgb(93.1921568627%, 76.2823529412%, 83.2%);
 }
 .table-secondary th,
 .table-secondary td,
 .table-secondary thead th,
 .table-secondary tbody + tbody {
-  border-color: rgb(222.76, 142.68, 175.44);
+  border-color: rgb(87.3568627451%, 55.9529411765%, 68.8%);
 }
 
 .table-hover .table-secondary:hover {
-  background-color: rgb(231.9529496403, 174.7070503597, 198.1258273381);
+  background-color: rgb(90.9619410354%, 68.5125687685%, 77.6964028777%);
 }
 .table-hover .table-secondary:hover > td,
 .table-hover .table-secondary:hover > th {
-  background-color: rgb(231.9529496403, 174.7070503597, 198.1258273381);
+  background-color: rgb(90.9619410354%, 68.5125687685%, 77.6964028777%);
 }
 
 .table-success,
 .table-success > th,
 .table-success > td {
-  background-color: rgb(241.56, 193.68, 195.36);
+  background-color: rgb(94.7294117647%, 75.9529411765%, 76.6117647059%);
 }
 .table-success th,
 .table-success td,
 .table-success thead th,
 .table-success tbody + tbody {
-  border-color: rgb(230.04, 141.12, 144.24);
+  border-color: rgb(90.2117647059%, 55.3411764706%, 56.5647058824%);
 }
 
 .table-hover .table-success:hover {
-  background-color: rgb(236.9757303371, 172.7642696629, 175.0173033708);
+  background-color: rgb(92.9316589557%, 67.7506939855%, 68.634236616%);
 }
 .table-hover .table-success:hover > td,
 .table-hover .table-success:hover > th {
-  background-color: rgb(236.9757303371, 172.7642696629, 175.0173033708);
+  background-color: rgb(92.9316589557%, 67.7506939855%, 68.634236616%);
 }
 
 .table-info,
 .table-info > th,
 .table-info > td {
-  background-color: rgb(200.96, 203.76, 228.12);
+  background-color: rgb(78.8078431373%, 79.9058823529%, 89.4588235294%);
 }
 .table-info th,
 .table-info td,
 .table-info thead th,
 .table-info tbody + tbody {
-  border-color: rgb(154.64, 159.84, 205.08);
+  border-color: rgb(60.6431372549%, 62.6823529412%, 80.4235294118%);
 }
 
 .table-hover .table-info:hover {
-  background-color: rgb(183.9305882353, 187.6129411765, 219.6494117647);
+  background-color: rgb(72.1296424452%, 73.5737024221%, 86.1370242215%);
 }
 .table-hover .table-info:hover > td,
 .table-hover .table-info:hover > th {
-  background-color: rgb(183.9305882353, 187.6129411765, 219.6494117647);
+  background-color: rgb(72.1296424452%, 73.5737024221%, 86.1370242215%);
 }
 
 .table-warning,
 .table-warning > th,
 .table-warning > td {
-  background-color: rgb(215.24, 201.52, 226.44);
+  background-color: rgb(84.4078431373%, 79.0274509804%, 88.8%);
 }
 .table-warning th,
 .table-warning td,
 .table-warning thead th,
 .table-warning tbody + tbody {
-  border-color: rgb(181.16, 155.68, 201.96);
+  border-color: rgb(71.0431372549%, 61.0509803922%, 79.2%);
 }
 
 .table-hover .table-warning:hover {
-  background-color: rgb(202.8816382253, 184.8971331058, 217.5628668942);
+  background-color: rgb(79.561426755%, 72.5086796493%, 85.3187713311%);
 }
 .table-hover .table-warning:hover > td,
 .table-hover .table-warning:hover > th {
-  background-color: rgb(202.8816382253, 184.8971331058, 217.5628668942);
+  background-color: rgb(79.561426755%, 72.5086796493%, 85.3187713311%);
 }
 
 .table-danger,
 .table-danger > th,
 .table-danger > td {
-  background-color: rgb(245.2, 198.44, 202.92);
+  background-color: rgb(96.1568627451%, 77.8196078431%, 79.5764705882%);
 }
 .table-danger th,
 .table-danger td,
 .table-danger thead th,
 .table-danger tbody + tbody {
-  border-color: rgb(236.8, 149.96, 158.28);
+  border-color: rgb(92.862745098%, 58.8078431373%, 62.0705882353%);
 }
 
 .table-hover .table-danger:hover {
-  background-color: rgb(241.4341772152, 176.7058227848, 182.9073417722);
+  background-color: rgb(94.6800694962%, 69.2964010921%, 71.7283693224%);
 }
 .table-hover .table-danger:hover > td,
 .table-hover .table-danger:hover > th {
-  background-color: rgb(241.4341772152, 176.7058227848, 182.9073417722);
+  background-color: rgb(94.6800694962%, 69.2964010921%, 71.7283693224%);
 }
 
 .table-light,
 .table-light > th,
 .table-light > td {
-  background-color: rgb(253.04, 253.32, 253.6);
+  background-color: rgb(99.231372549%, 99.3411764706%, 99.4509803922%);
 }
 .table-light th,
 .table-light td,
 .table-light thead th,
 .table-light tbody + tbody {
-  border-color: rgb(251.36, 251.88, 252.4);
+  border-color: rgb(98.5725490196%, 98.7764705882%, 98.9803921569%);
 }
 
 .table-hover .table-light:hover {
-  background-color: rgb(238.165, 240.57, 242.975);
+  background-color: rgb(93.3980392157%, 94.3411764706%, 95.2843137255%);
 }
 .table-hover .table-light:hover > td,
 .table-hover .table-light:hover > th {
-  background-color: rgb(238.165, 240.57, 242.975);
+  background-color: rgb(93.3980392157%, 94.3411764706%, 95.2843137255%);
 }
 
 .table-dark,
 .table-dark > th,
 .table-dark > td {
-  background-color: rgb(198.16, 199.84, 201.52);
+  background-color: rgb(77.7098039216%, 78.368627451%, 79.0274509804%);
 }
 .table-dark th,
 .table-dark td,
 .table-dark thead th,
 .table-dark tbody + tbody {
-  border-color: rgb(149.44, 152.56, 155.68);
+  border-color: rgb(58.6039215686%, 59.8274509804%, 61.0509803922%);
 }
 
 .table-hover .table-dark:hover {
-  background-color: rgb(185.0216751269, 187.09, 189.1583248731);
+  background-color: rgb(72.5575196576%, 73.368627451%, 74.1797352444%);
 }
 .table-hover .table-dark:hover > td,
 .table-hover .table-dark:hover > th {
-  background-color: rgb(185.0216751269, 187.09, 189.1583248731);
+  background-color: rgb(72.5575196576%, 73.368627451%, 74.1797352444%);
 }
 
 .table-active,
@@ -1687,7 +1687,7 @@ pre code {
 .table .thead-dark th {
   color: #fff;
   background-color: #343a40;
-  border-color: rgb(69.1465517241, 77.125, 85.1034482759);
+  border-color: rgb(27.1162947938%, 30.2450980392%, 33.3739012847%);
 }
 .table .thead-light th {
   color: #495057;
@@ -1702,7 +1702,7 @@ pre code {
 .table-dark th,
 .table-dark td,
 .table-dark thead th {
-  border-color: rgb(69.1465517241, 77.125, 85.1034482759);
+  border-color: rgb(27.1162947938%, 30.2450980392%, 33.3739012847%);
 }
 .table-dark.table-bordered {
   border: 0;
@@ -1796,7 +1796,7 @@ pre code {
 .form-control:focus {
   color: #495057;
   background-color: #fff;
-  border-color: rgb(183.8141361257, 210.8848167539, 107.6151832461);
+  border-color: rgb(72.0839749512%, 82.6999281388%, 42.2020326455%);
   outline: 0;
   box-shadow: 0 0 0 0.2rem rgba(120, 147, 44, 0.25);
 }
@@ -2030,8 +2030,8 @@ textarea.form-control {
   border-color: #cf242a;
 }
 .was-validated .custom-control-input:valid:checked ~ 
.custom-control-label::before, .custom-control-input.is-valid:checked ~ 
.custom-control-label::before {
-  border-color: rgb(223, 71, 76.3333333333);
-  background-color: rgb(223, 71, 76.3333333333);
+  border-color: rgb(87.4509803922%, 27.8431372549%, 29.9346405229%);
+  background-color: rgb(87.4509803922%, 27.8431372549%, 29.9346405229%);
 }
 .was-validated .custom-control-input:valid:focus ~ 
.custom-control-label::before, .custom-control-input.is-valid:focus ~ 
.custom-control-label::before {
   box-shadow: 0 0 0 0.2rem rgba(207, 36, 42, 0.25);
@@ -2131,8 +2131,8 @@ textarea.form-control {
   border-color: #dc3545;
 }
 .was-validated .custom-control-input:invalid:checked ~ 
.custom-control-label::before, .custom-control-input.is-invalid:checked ~ 
.custom-control-label::before {
-  border-color: rgb(227.5316455696, 96.4683544304, 109.0253164557);
-  background-color: rgb(227.5316455696, 96.4683544304, 109.0253164557);
+  border-color: rgb(89.2280963018%, 37.8307272276%, 42.7550260611%);
+  background-color: rgb(89.2280963018%, 37.8307272276%, 42.7550260611%);
 }
 .was-validated .custom-control-input:invalid:focus ~ 
.custom-control-label::before, .custom-control-input.is-invalid:focus ~ 
.custom-control-label::before {
   box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
@@ -2252,14 +2252,14 @@ fieldset:disabled a.btn {
 }
 .btn-primary:hover {
   color: #fff;
-  background-color: rgb(95.9685863874, 117.5615183246, 35.1884816754);
-  border-color: rgb(87.9581151832, 107.7486910995, 32.2513089005);
+  background-color: rgb(37.6347397598%, 46.1025562057%, 13.7994045786%);
+  border-color: rgb(34.4933785032%, 42.2543886665%, 12.6475721179%);
 }
 .btn-primary:focus, .btn-primary.focus {
   color: #fff;
-  background-color: rgb(95.9685863874, 117.5615183246, 35.1884816754);
-  border-color: rgb(87.9581151832, 107.7486910995, 32.2513089005);
-  box-shadow: 0 0 0 0.2rem rgba(140.25, 163.2, 75.65, 0.5);
+  background-color: rgb(37.6347397598%, 46.1025562057%, 13.7994045786%);
+  border-color: rgb(34.4933785032%, 42.2543886665%, 12.6475721179%);
+  box-shadow: 0 0 0 0.2rem rgba(55%, 64%, 29.6666666667%, 0.5);
 }
 .btn-primary.disabled, .btn-primary:disabled {
   color: #fff;
@@ -2268,11 +2268,11 @@ fieldset:disabled a.btn {
 }
 .btn-primary:not(:disabled):not(.disabled):active, 
.btn-primary:not(:disabled):not(.disabled).active, .show > 
.btn-primary.dropdown-toggle {
   color: #fff;
-  background-color: rgb(87.9581151832, 107.7486910995, 32.2513089005);
-  border-color: rgb(79.9476439791, 97.9358638743, 29.3141361257);
+  background-color: rgb(34.4933785032%, 42.2543886665%, 12.6475721179%);
+  border-color: rgb(31.3520172467%, 38.4062211272%, 11.4957396571%);
 }
 .btn-primary:not(:disabled):not(.disabled):active:focus, 
.btn-primary:not(:disabled):not(.disabled).active:focus, .show > 
.btn-primary.dropdown-toggle:focus {
-  box-shadow: 0 0 0 0.2rem rgba(140.25, 163.2, 75.65, 0.5);
+  box-shadow: 0 0 0 0.2rem rgba(55%, 64%, 29.6666666667%, 0.5);
 }
 
 .btn-secondary {
@@ -2282,14 +2282,14 @@ fieldset:disabled a.btn {
 }
 .btn-secondary:hover {
   color: #fff;
-  background-color: rgb(161.1799568966, 32.5700431034, 85.1831896552);
-  border-color: rgb(150.5732758621, 30.4267241379, 79.5775862069);
+  background-color: rgb(63.2078262339%, 12.7725659229%, 33.4051724138%);
+  border-color: rgb(59.0483434753%, 11.9320486815%, 31.2068965517%);
 }
 .btn-secondary:focus, .btn-secondary.focus {
   color: #fff;
-  background-color: rgb(161.1799568966, 32.5700431034, 85.1831896552);
-  border-color: rgb(150.5732758621, 30.4267241379, 79.5775862069);
-  box-shadow: 0 0 0 0.2rem rgba(202.3, 71.4, 124.95, 0.5);
+  background-color: rgb(63.2078262339%, 12.7725659229%, 33.4051724138%);
+  border-color: rgb(59.0483434753%, 11.9320486815%, 31.2068965517%);
+  box-shadow: 0 0 0 0.2rem rgba(79.3333333333%, 28%, 49%, 0.5);
 }
 .btn-secondary.disabled, .btn-secondary:disabled {
   color: #fff;
@@ -2298,11 +2298,11 @@ fieldset:disabled a.btn {
 }
 .btn-secondary:not(:disabled):not(.disabled):active, 
.btn-secondary:not(:disabled):not(.disabled).active, .show > 
.btn-secondary.dropdown-toggle {
   color: #fff;
-  background-color: rgb(150.5732758621, 30.4267241379, 79.5775862069);
-  border-color: rgb(139.9665948276, 28.2834051724, 73.9719827586);
+  background-color: rgb(59.0483434753%, 11.9320486815%, 31.2068965517%);
+  border-color: rgb(54.8888607167%, 11.0915314402%, 29.0086206897%);
 }
 .btn-secondary:not(:disabled):not(.disabled):active:focus, 
.btn-secondary:not(:disabled):not(.disabled).active:focus, .show > 
.btn-secondary.dropdown-toggle:focus {
-  box-shadow: 0 0 0 0.2rem rgba(202.3, 71.4, 124.95, 0.5);
+  box-shadow: 0 0 0 0.2rem rgba(79.3333333333%, 28%, 49%, 0.5);
 }
 
 .btn-success {
@@ -2312,14 +2312,14 @@ fieldset:disabled a.btn {
 }
 .btn-success:hover {
   color: #fff;
-  background-color: rgb(174.4166666667, 30.3333333333, 35.3888888889);
-  border-color: rgb(163.5555555556, 28.4444444444, 33.1851851852);
+  background-color: rgb(68.3986928105%, 11.8954248366%, 13.8779956427%);
+  border-color: rgb(64.1394335512%, 11.1546840959%, 13.0137981118%);
 }
 .btn-success:focus, .btn-success.focus {
   color: #fff;
-  background-color: rgb(174.4166666667, 30.3333333333, 35.3888888889);
-  border-color: rgb(163.5555555556, 28.4444444444, 33.1851851852);
-  box-shadow: 0 0 0 0.2rem rgba(214.2, 68.85, 73.95, 0.5);
+  background-color: rgb(68.3986928105%, 11.8954248366%, 13.8779956427%);
+  border-color: rgb(64.1394335512%, 11.1546840959%, 13.0137981118%);
+  box-shadow: 0 0 0 0.2rem rgba(84%, 27%, 29%, 0.5);
 }
 .btn-success.disabled, .btn-success:disabled {
   color: #fff;
@@ -2328,11 +2328,11 @@ fieldset:disabled a.btn {
 }
 .btn-success:not(:disabled):not(.disabled):active, 
.btn-success:not(:disabled):not(.disabled).active, .show > 
.btn-success.dropdown-toggle {
   color: #fff;
-  background-color: rgb(163.5555555556, 28.4444444444, 33.1851851852);
-  border-color: rgb(152.6944444444, 26.5555555556, 30.9814814815);
+  background-color: rgb(64.1394335512%, 11.1546840959%, 13.0137981118%);
+  border-color: rgb(59.8801742919%, 10.4139433551%, 12.149600581%);
 }
 .btn-success:not(:disabled):not(.disabled):active:focus, 
.btn-success:not(:disabled):not(.disabled).active:focus, .show > 
.btn-success.dropdown-toggle:focus {
-  box-shadow: 0 0 0 0.2rem rgba(214.2, 68.85, 73.95, 0.5);
+  box-shadow: 0 0 0 0.2rem rgba(84%, 27%, 29%, 0.5);
 }
 
 .btn-info {
@@ -2342,14 +2342,14 @@ fieldset:disabled a.btn {
 }
 .btn-info:hover {
   color: #fff;
-  background-color: rgb(51.2692307692, 59.5384615385, 131.4807692308);
-  border-color: rgb(47.6923076923, 55.3846153846, 122.3076923077);
+  background-color: rgb(20.1055806938%, 23.3484162896%, 51.5610859729%);
+  border-color: rgb(18.7028657617%, 21.7194570136%, 47.963800905%);
 }
 .btn-info:focus, .btn-info.focus {
   color: #fff;
-  background-color: rgb(51.2692307692, 59.5384615385, 131.4807692308);
-  border-color: rgb(47.6923076923, 55.3846153846, 122.3076923077);
-  box-shadow: 0 0 0 0.2rem rgba(90.95, 99.45, 173.4, 0.5);
+  background-color: rgb(20.1055806938%, 23.3484162896%, 51.5610859729%);
+  border-color: rgb(18.7028657617%, 21.7194570136%, 47.963800905%);
+  box-shadow: 0 0 0 0.2rem rgba(35.6666666667%, 39%, 68%, 0.5);
 }
 .btn-info.disabled, .btn-info:disabled {
   color: #fff;
@@ -2358,11 +2358,11 @@ fieldset:disabled a.btn {
 }
 .btn-info:not(:disabled):not(.disabled):active, 
.btn-info:not(:disabled):not(.disabled).active, .show > 
.btn-info.dropdown-toggle {
   color: #fff;
-  background-color: rgb(47.6923076923, 55.3846153846, 122.3076923077);
-  border-color: rgb(44.1153846154, 51.2307692308, 113.1346153846);
+  background-color: rgb(18.7028657617%, 21.7194570136%, 47.963800905%);
+  border-color: rgb(17.3001508296%, 20.0904977376%, 44.3665158371%);
 }
 .btn-info:not(:disabled):not(.disabled):active:focus, 
.btn-info:not(:disabled):not(.disabled).active:focus, .show > 
.btn-info.dropdown-toggle:focus {
-  box-shadow: 0 0 0 0.2rem rgba(90.95, 99.45, 173.4, 0.5);
+  box-shadow: 0 0 0 0.2rem rgba(35.6666666667%, 39%, 68%, 0.5);
 }
 
 .btn-warning {
@@ -2372,14 +2372,14 @@ fieldset:disabled a.btn {
 }
 .btn-warning:hover {
   color: #fff;
-  background-color: rgb(93.081797235, 52.7188940092, 126.0311059908);
-  border-color: rgb(86.4423963134, 48.9585253456, 117.0414746544);
+  background-color: rgb(36.5026655824%, 20.674076082%, 49.4239631336%);
+  border-color: rgb(33.8989789464%, 19.1994217042%, 45.8986175115%);
 }
 .btn-warning:focus, .btn-warning.focus {
   color: #fff;
-  background-color: rgb(93.081797235, 52.7188940092, 126.0311059908);
-  border-color: rgb(86.4423963134, 48.9585253456, 117.0414746544);
-  box-shadow: 0 0 0 0.2rem rgba(134.3, 92.65, 168.3, 0.5);
+  background-color: rgb(36.5026655824%, 20.674076082%, 49.4239631336%);
+  border-color: rgb(33.8989789464%, 19.1994217042%, 45.8986175115%);
+  box-shadow: 0 0 0 0.2rem rgba(52.6666666667%, 36.3333333333%, 66%, 0.5);
 }
 .btn-warning.disabled, .btn-warning:disabled {
   color: #fff;
@@ -2388,11 +2388,11 @@ fieldset:disabled a.btn {
 }
 .btn-warning:not(:disabled):not(.disabled):active, 
.btn-warning:not(:disabled):not(.disabled).active, .show > 
.btn-warning.dropdown-toggle {
   color: #fff;
-  background-color: rgb(86.4423963134, 48.9585253456, 117.0414746544);
-  border-color: rgb(79.8029953917, 45.198156682, 108.051843318);
+  background-color: rgb(33.8989789464%, 19.1994217042%, 45.8986175115%);
+  border-color: rgb(31.2952923105%, 17.7247673263%, 42.3732718894%);
 }
 .btn-warning:not(:disabled):not(.disabled):active:focus, 
.btn-warning:not(:disabled):not(.disabled).active:focus, .show > 
.btn-warning.dropdown-toggle:focus {
-  box-shadow: 0 0 0 0.2rem rgba(134.3, 92.65, 168.3, 0.5);
+  box-shadow: 0 0 0 0.2rem rgba(52.6666666667%, 36.3333333333%, 66%, 0.5);
 }
 
 .btn-danger {
@@ -2402,14 +2402,14 @@ fieldset:disabled a.btn {
 }
 .btn-danger:hover {
   color: #fff;
-  background-color: rgb(200.082278481, 34.667721519, 50.5158227848);
-  border-color: rgb(189.2151898734, 32.7848101266, 47.7721518987);
+  background-color: rgb(78.46363862%, 13.5951849094%, 19.8101265823%);
+  border-color: rgb(74.2020352445%, 12.8567882849%, 18.7341772152%);
 }
 .btn-danger:focus, .btn-danger.focus {
   color: #fff;
-  background-color: rgb(200.082278481, 34.667721519, 50.5158227848);
-  border-color: rgb(189.2151898734, 32.7848101266, 47.7721518987);
-  box-shadow: 0 0 0 0.2rem rgba(225.25, 83.3, 96.9, 0.5);
+  background-color: rgb(78.46363862%, 13.5951849094%, 19.8101265823%);
+  border-color: rgb(74.2020352445%, 12.8567882849%, 18.7341772152%);
+  box-shadow: 0 0 0 0.2rem rgba(88.3333333333%, 32.6666666667%, 38%, 0.5);
 }
 .btn-danger.disabled, .btn-danger:disabled {
   color: #fff;
@@ -2418,11 +2418,11 @@ fieldset:disabled a.btn {
 }
 .btn-danger:not(:disabled):not(.disabled):active, 
.btn-danger:not(:disabled):not(.disabled).active, .show > 
.btn-danger.dropdown-toggle {
   color: #fff;
-  background-color: rgb(189.2151898734, 32.7848101266, 47.7721518987);
-  border-color: rgb(178.3481012658, 30.9018987342, 45.0284810127);
+  background-color: rgb(74.2020352445%, 12.8567882849%, 18.7341772152%);
+  border-color: rgb(69.940431869%, 12.1183916605%, 17.6582278481%);
 }
 .btn-danger:not(:disabled):not(.disabled):active:focus, 
.btn-danger:not(:disabled):not(.disabled).active:focus, .show > 
.btn-danger.dropdown-toggle:focus {
-  box-shadow: 0 0 0 0.2rem rgba(225.25, 83.3, 96.9, 0.5);
+  box-shadow: 0 0 0 0.2rem rgba(88.3333333333%, 32.6666666667%, 38%, 0.5);
 }
 
 .btn-light {
@@ -2432,14 +2432,14 @@ fieldset:disabled a.btn {
 }
 .btn-light:hover {
   color: #212529;
-  background-color: rgb(225.6875, 229.875, 234.0625);
-  border-color: rgb(218.25, 223.5, 228.75);
+  background-color: rgb(88.5049019608%, 90.1470588235%, 91.7892156863%);
+  border-color: rgb(85.5882352941%, 87.6470588235%, 89.7058823529%);
 }
 .btn-light:focus, .btn-light.focus {
   color: #212529;
-  background-color: rgb(225.6875, 229.875, 234.0625);
-  border-color: rgb(218.25, 223.5, 228.75);
-  box-shadow: 0 0 0 0.2rem rgba(215.75, 217.2, 218.65, 0.5);
+  background-color: rgb(88.5049019608%, 90.1470588235%, 91.7892156863%);
+  border-color: rgb(85.5882352941%, 87.6470588235%, 89.7058823529%);
+  box-shadow: 0 0 0 0.2rem rgba(84.6078431373%, 85.1764705882%, 
85.7450980392%, 0.5);
 }
 .btn-light.disabled, .btn-light:disabled {
   color: #212529;
@@ -2448,11 +2448,11 @@ fieldset:disabled a.btn {
 }
 .btn-light:not(:disabled):not(.disabled):active, 
.btn-light:not(:disabled):not(.disabled).active, .show > 
.btn-light.dropdown-toggle {
   color: #212529;
-  background-color: rgb(218.25, 223.5, 228.75);
-  border-color: rgb(210.8125, 217.125, 223.4375);
+  background-color: rgb(85.5882352941%, 87.6470588235%, 89.7058823529%);
+  border-color: rgb(82.6715686275%, 85.1470588235%, 87.6225490196%);
 }
 .btn-light:not(:disabled):not(.disabled):active:focus, 
.btn-light:not(:disabled):not(.disabled).active:focus, .show > 
.btn-light.dropdown-toggle:focus {
-  box-shadow: 0 0 0 0.2rem rgba(215.75, 217.2, 218.65, 0.5);
+  box-shadow: 0 0 0 0.2rem rgba(84.6078431373%, 85.1764705882%, 
85.7450980392%, 0.5);
 }
 
 .btn-dark {
@@ -2462,14 +2462,14 @@ fieldset:disabled a.btn {
 }
 .btn-dark:hover {
   color: #fff;
-  background-color: rgb(34.8534482759, 38.875, 42.8965517241);
-  border-color: rgb(29.1379310345, 32.5, 35.8620689655);
+  background-color: rgb(13.6680189317%, 15.2450980392%, 16.8221771467%);
+  border-color: rgb(11.4266396214%, 12.7450980392%, 14.0635564571%);
 }
 .btn-dark:focus, .btn-dark.focus {
   color: #fff;
-  background-color: rgb(34.8534482759, 38.875, 42.8965517241);
-  border-color: rgb(29.1379310345, 32.5, 35.8620689655);
-  box-shadow: 0 0 0 0.2rem rgba(82.45, 87.55, 92.65, 0.5);
+  background-color: rgb(13.6680189317%, 15.2450980392%, 16.8221771467%);
+  border-color: rgb(11.4266396214%, 12.7450980392%, 14.0635564571%);
+  box-shadow: 0 0 0 0.2rem rgba(32.3333333333%, 34.3333333333%, 
36.3333333333%, 0.5);
 }
 .btn-dark.disabled, .btn-dark:disabled {
   color: #fff;
@@ -2478,11 +2478,11 @@ fieldset:disabled a.btn {
 }
 .btn-dark:not(:disabled):not(.disabled):active, 
.btn-dark:not(:disabled):not(.disabled).active, .show > 
.btn-dark.dropdown-toggle {
   color: #fff;
-  background-color: rgb(29.1379310345, 32.5, 35.8620689655);
-  border-color: rgb(23.4224137931, 26.125, 28.8275862069);
+  background-color: rgb(11.4266396214%, 12.7450980392%, 14.0635564571%);
+  border-color: rgb(9.185260311%, 10.2450980392%, 11.3049357674%);
 }
 .btn-dark:not(:disabled):not(.disabled):active:focus, 
.btn-dark:not(:disabled):not(.disabled).active:focus, .show > 
.btn-dark.dropdown-toggle:focus {
-  box-shadow: 0 0 0 0.2rem rgba(82.45, 87.55, 92.65, 0.5);
+  box-shadow: 0 0 0 0.2rem rgba(32.3333333333%, 34.3333333333%, 
36.3333333333%, 0.5);
 }
 
 .btn-outline-primary {
@@ -2691,7 +2691,7 @@ fieldset:disabled a.btn {
   text-decoration: none;
 }
 .btn-link:hover {
-  color: rgb(71.9371727749, 88.1230366492, 26.3769633508);
+  color: rgb(28.2106559901%, 34.5580535879%, 10.3439071964%);
   text-decoration: underline;
 }
 .btn-link:focus, .btn-link.focus {
@@ -2963,7 +2963,7 @@ input[type=button].btn-block {
   border: 0;
 }
 .dropdown-item:hover, .dropdown-item:focus {
-  color: rgb(21.6283783784, 24.25, 26.8716216216);
+  color: rgb(8.4817170111%, 9.5098039216%, 10.537890832%);
   text-decoration: none;
   background-color: #e9ecef;
 }
@@ -3316,12 +3316,12 @@ input[type=button].btn-block {
   box-shadow: 0 0 0 0.2rem rgba(120, 147, 44, 0.25);
 }
 .custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
-  border-color: rgb(183.8141361257, 210.8848167539, 107.6151832461);
+  border-color: rgb(72.0839749512%, 82.6999281388%, 42.2020326455%);
 }
 .custom-control-input:not(:disabled):active ~ .custom-control-label::before {
   color: #fff;
-  background-color: rgb(202.7722513089, 222.6335078534, 146.8664921466);
-  border-color: rgb(202.7722513089, 222.6335078534, 146.8664921466);
+  background-color: rgb(79.5185299251%, 87.3072579817%, 57.5947028026%);
+  border-color: rgb(79.5185299251%, 87.3072579817%, 57.5947028026%);
 }
 .custom-control-input[disabled] ~ .custom-control-label, 
.custom-control-input:disabled ~ .custom-control-label {
   color: #6c757d;
@@ -3435,7 +3435,7 @@ input[type=button].btn-block {
   appearance: none;
 }
 .custom-select:focus {
-  border-color: rgb(183.8141361257, 210.8848167539, 107.6151832461);
+  border-color: rgb(72.0839749512%, 82.6999281388%, 42.2020326455%);
   outline: 0;
   box-shadow: 0 0 0 0.2rem rgba(120, 147, 44, 0.25);
 }
@@ -3494,7 +3494,7 @@ input[type=button].btn-block {
   opacity: 0;
 }
 .custom-file-input:focus ~ .custom-file-label {
-  border-color: rgb(183.8141361257, 210.8848167539, 107.6151832461);
+  border-color: rgb(72.0839749512%, 82.6999281388%, 42.2020326455%);
   box-shadow: 0 0 0 0.2rem rgba(120, 147, 44, 0.25);
 }
 .custom-file-input[disabled] ~ .custom-file-label, .custom-file-input:disabled 
~ .custom-file-label {
@@ -3580,7 +3580,7 @@ input[type=button].btn-block {
   appearance: none;
 }
 .custom-range::-webkit-slider-thumb:active {
-  background-color: rgb(202.7722513089, 222.6335078534, 146.8664921466);
+  background-color: rgb(79.5185299251%, 87.3072579817%, 57.5947028026%);
 }
 .custom-range::-webkit-slider-runnable-track {
   width: 100%;
@@ -3608,7 +3608,7 @@ input[type=button].btn-block {
   appearance: none;
 }
 .custom-range::-moz-range-thumb:active {
-  background-color: rgb(202.7722513089, 222.6335078534, 146.8664921466);
+  background-color: rgb(79.5185299251%, 87.3072579817%, 57.5947028026%);
 }
 .custom-range::-moz-range-track {
   width: 100%;
@@ -3639,7 +3639,7 @@ input[type=button].btn-block {
   appearance: none;
 }
 .custom-range::-ms-thumb:active {
-  background-color: rgb(202.7722513089, 222.6335078534, 146.8664921466);
+  background-color: rgb(79.5185299251%, 87.3072579817%, 57.5947028026%);
 }
 .custom-range::-ms-track {
   width: 100%;
@@ -4419,7 +4419,7 @@ input[type=button].btn-block {
 }
 .page-link:hover {
   z-index: 2;
-  color: rgb(71.9371727749, 88.1230366492, 26.3769633508);
+  color: rgb(28.2106559901%, 34.5580535879%, 10.3439071964%);
   text-decoration: none;
   background-color: #e9ecef;
   border-color: #dee2e6;
@@ -4523,7 +4523,7 @@ a.badge:hover, a.badge:focus {
 }
 a.badge-primary:hover, a.badge-primary:focus {
   color: #fff;
-  background-color: rgb(87.9581151832, 107.7486910995, 32.2513089005);
+  background-color: rgb(34.4933785032%, 42.2543886665%, 12.6475721179%);
 }
 a.badge-primary:focus, a.badge-primary.focus {
   outline: 0;
@@ -4536,7 +4536,7 @@ a.badge-primary:focus, a.badge-primary.focus {
 }
 a.badge-secondary:hover, a.badge-secondary:focus {
   color: #fff;
-  background-color: rgb(150.5732758621, 30.4267241379, 79.5775862069);
+  background-color: rgb(59.0483434753%, 11.9320486815%, 31.2068965517%);
 }
 a.badge-secondary:focus, a.badge-secondary.focus {
   outline: 0;
@@ -4549,7 +4549,7 @@ a.badge-secondary:focus, a.badge-secondary.focus {
 }
 a.badge-success:hover, a.badge-success:focus {
   color: #fff;
-  background-color: rgb(163.5555555556, 28.4444444444, 33.1851851852);
+  background-color: rgb(64.1394335512%, 11.1546840959%, 13.0137981118%);
 }
 a.badge-success:focus, a.badge-success.focus {
   outline: 0;
@@ -4562,7 +4562,7 @@ a.badge-success:focus, a.badge-success.focus {
 }
 a.badge-info:hover, a.badge-info:focus {
   color: #fff;
-  background-color: rgb(47.6923076923, 55.3846153846, 122.3076923077);
+  background-color: rgb(18.7028657617%, 21.7194570136%, 47.963800905%);
 }
 a.badge-info:focus, a.badge-info.focus {
   outline: 0;
@@ -4575,7 +4575,7 @@ a.badge-info:focus, a.badge-info.focus {
 }
 a.badge-warning:hover, a.badge-warning:focus {
   color: #fff;
-  background-color: rgb(86.4423963134, 48.9585253456, 117.0414746544);
+  background-color: rgb(33.8989789464%, 19.1994217042%, 45.8986175115%);
 }
 a.badge-warning:focus, a.badge-warning.focus {
   outline: 0;
@@ -4588,7 +4588,7 @@ a.badge-warning:focus, a.badge-warning.focus {
 }
 a.badge-danger:hover, a.badge-danger:focus {
   color: #fff;
-  background-color: rgb(189.2151898734, 32.7848101266, 47.7721518987);
+  background-color: rgb(74.2020352445%, 12.8567882849%, 18.7341772152%);
 }
 a.badge-danger:focus, a.badge-danger.focus {
   outline: 0;
@@ -4601,7 +4601,7 @@ a.badge-danger:focus, a.badge-danger.focus {
 }
 a.badge-light:hover, a.badge-light:focus {
   color: #212529;
-  background-color: rgb(218.25, 223.5, 228.75);
+  background-color: rgb(85.5882352941%, 87.6470588235%, 89.7058823529%);
 }
 a.badge-light:focus, a.badge-light.focus {
   outline: 0;
@@ -4614,7 +4614,7 @@ a.badge-light:focus, a.badge-light.focus {
 }
 a.badge-dark:hover, a.badge-dark:focus {
   color: #fff;
-  background-color: rgb(29.1379310345, 32.5, 35.8620689655);
+  background-color: rgb(11.4266396214%, 12.7450980392%, 14.0635564571%);
 }
 a.badge-dark:focus, a.badge-dark.focus {
   outline: 0;
@@ -4668,99 +4668,99 @@ a.badge-dark:focus, a.badge-dark.focus {
 }
 
 .alert-primary {
-  color: rgb(62.4, 76.44, 22.88);
-  background-color: rgb(228, 233.4, 212.8);
-  border-color: rgb(217.2, 224.76, 195.92);
+  color: rgb(24.4705882353%, 29.9764705882%, 8.9725490196%);
+  background-color: rgb(89.4117647059%, 91.5294117647%, 83.4509803922%);
+  border-color: rgb(85.1764705882%, 88.1411764706%, 76.831372549%);
 }
 .alert-primary hr {
-  border-top-color: rgb(206.4084639498, 216.1267711599, 179.0532288401);
+  border-top-color: rgb(80.9444956666%, 84.7555965333%, 70.2169524863%);
 }
 .alert-primary .alert-link {
-  color: rgb(30.3581151832, 37.1886910995, 11.1313089005);
+  color: rgb(11.9051432091%, 14.5838004312%, 4.3652191767%);
 }
 
 .alert-secondary {
-  color: rgb(100.36, 20.28, 53.04);
-  background-color: rgb(242.6, 211.8, 224.4);
-  border-color: rgb(237.64, 194.52, 212.16);
+  color: rgb(39.3568627451%, 7.9529411765%, 20.8%);
+  background-color: rgb(95.137254902%, 83.0588235294%, 88%);
+  border-color: rgb(93.1921568627%, 76.2823529412%, 83.2%);
 }
 .alert-secondary hr {
-  border-top-color: rgb(231.9529496403, 174.7070503597, 198.1258273381);
+  border-top-color: rgb(90.9619410354%, 68.5125687685%, 77.6964028777%);
 }
 .alert-secondary .alert-link {
-  color: rgb(57.9332758621, 11.7067241379, 30.6175862069);
+  color: rgb(22.7189317106%, 4.590872211%, 12.0068965517%);
 }
 
 .alert-success {
-  color: rgb(107.64, 18.72, 21.84);
-  background-color: rgb(245.4, 211.2, 212.4);
-  border-color: rgb(241.56, 193.68, 195.36);
+  color: rgb(42.2117647059%, 7.3411764706%, 8.5647058824%);
+  background-color: rgb(96.2352941176%, 82.8235294118%, 83.2941176471%);
+  border-color: rgb(94.7294117647%, 75.9529411765%, 76.6117647059%);
 }
 .alert-success hr {
-  border-top-color: rgb(236.9757303371, 172.7642696629, 175.0173033708);
+  border-top-color: rgb(92.9316589557%, 67.7506939855%, 68.634236616%);
 }
 .alert-success .alert-link {
-  color: rgb(64.1955555556, 11.1644444444, 13.0251851852);
+  color: rgb(25.1747276688%, 4.3782135076%, 5.1079157589%);
 }
 
 .alert-info {
-  color: rgb(32.24, 37.44, 82.68);
-  background-color: rgb(216.4, 218.4, 235.8);
-  border-color: rgb(200.96, 203.76, 228.12);
+  color: rgb(12.6431372549%, 14.6823529412%, 32.4235294118%);
+  background-color: rgb(84.862745098%, 85.6470588235%, 92.4705882353%);
+  border-color: rgb(78.8078431373%, 79.9058823529%, 89.4588235294%);
 }
 .alert-info hr {
-  border-top-color: rgb(183.9305882353, 187.6129411765, 219.6494117647);
+  border-top-color: rgb(72.1296424452%, 73.5737024221%, 86.1370242215%);
 }
 .alert-info .alert-link {
-  color: rgb(17.9323076923, 20.8246153846, 45.9876923077);
+  color: rgb(7.0322775264%, 8.1665158371%, 18.0343891403%);
 }
 
 .alert-warning {
-  color: rgb(58.76, 33.28, 79.56);
-  background-color: rgb(226.6, 216.8, 234.6);
-  border-color: rgb(215.24, 201.52, 226.44);
+  color: rgb(23.0431372549%, 13.0509803922%, 31.2%);
+  background-color: rgb(88.862745098%, 85.0196078431%, 92%);
+  border-color: rgb(84.4078431373%, 79.0274509804%, 88.8%);
 }
 .alert-warning hr {
-  border-top-color: rgb(202.8816382253, 184.8971331058, 217.5628668942);
+  border-top-color: rgb(79.561426755%, 72.5086796493%, 85.3187713311%);
 }
 .alert-warning .alert-link {
-  color: rgb(32.2023963134, 18.2385253456, 43.6014746544);
+  color: rgb(12.6283907111%, 7.1523628806%, 17.0986175115%);
 }
 
 .alert-danger {
-  color: rgb(114.4, 27.56, 35.88);
-  background-color: rgb(248, 214.6, 217.8);
-  border-color: rgb(245.2, 198.44, 202.92);
+  color: rgb(44.862745098%, 10.8078431373%, 14.0705882353%);
+  background-color: rgb(97.2549019608%, 84.1568627451%, 85.4117647059%);
+  border-color: rgb(96.1568627451%, 77.8196078431%, 79.5764705882%);
 }
 .alert-danger hr {
-  border-top-color: rgb(241.4341772152, 176.7058227848, 182.9073417722);
+  border-top-color: rgb(94.6800694962%, 69.2964010921%, 71.7283693224%);
 }
 .alert-danger .alert-link {
-  color: rgb(73.3010989011, 17.6589010989, 22.9898901099);
+  color: rgb(28.7455289808%, 6.9250592545%, 9.0156431803%);
 }
 
 .alert-light {
-  color: rgb(128.96, 129.48, 130);
-  background-color: rgb(253.6, 253.8, 254);
-  border-color: rgb(253.04, 253.32, 253.6);
+  color: rgb(50.5725490196%, 50.7764705882%, 50.9803921569%);
+  background-color: rgb(99.4509803922%, 99.5294117647%, 99.6078431373%);
+  border-color: rgb(99.231372549%, 99.3411764706%, 99.4509803922%);
 }
 .alert-light hr {
-  border-top-color: rgb(238.165, 240.57, 242.975);
+  border-top-color: rgb(93.3980392157%, 94.3411764706%, 95.2843137255%);
 }
 .alert-light .alert-link {
-  color: rgb(103.5492351816, 103.98, 104.4107648184);
+  color: rgb(40.6075432085%, 40.7764705882%, 40.945397968%);
 }
 
 .alert-dark {
-  color: rgb(27.04, 30.16, 33.28);
-  background-color: rgb(214.4, 215.6, 216.8);
-  border-color: rgb(198.16, 199.84, 201.52);
+  color: rgb(10.6039215686%, 11.8274509804%, 13.0509803922%);
+  background-color: rgb(84.0784313725%, 84.5490196078%, 85.0196078431%);
+  border-color: rgb(77.7098039216%, 78.368627451%, 79.0274509804%);
 }
 .alert-dark hr {
-  border-top-color: rgb(185.0216751269, 187.09, 189.1583248731);
+  border-top-color: rgb(72.5575196576%, 73.368627451%, 74.1797352444%);
 }
 .alert-dark .alert-link {
-  color: rgb(4.1779310345, 4.66, 5.1420689655);
+  color: rgb(1.6384043272%, 1.8274509804%, 2.0164976335%);
 }
 
 @keyframes progress-bar-stripes {
@@ -5009,115 +5009,115 @@ a.badge-dark:focus, a.badge-dark.focus {
 }
 
 .list-group-item-primary {
-  color: rgb(62.4, 76.44, 22.88);
-  background-color: rgb(217.2, 224.76, 195.92);
+  color: rgb(24.4705882353%, 29.9764705882%, 8.9725490196%);
+  background-color: rgb(85.1764705882%, 88.1411764706%, 76.831372549%);
 }
 .list-group-item-primary.list-group-item-action:hover, 
.list-group-item-primary.list-group-item-action:focus {
-  color: rgb(62.4, 76.44, 22.88);
-  background-color: rgb(206.4084639498, 216.1267711599, 179.0532288401);
+  color: rgb(24.4705882353%, 29.9764705882%, 8.9725490196%);
+  background-color: rgb(80.9444956666%, 84.7555965333%, 70.2169524863%);
 }
 .list-group-item-primary.list-group-item-action.active {
   color: #fff;
-  background-color: rgb(62.4, 76.44, 22.88);
-  border-color: rgb(62.4, 76.44, 22.88);
+  background-color: rgb(24.4705882353%, 29.9764705882%, 8.9725490196%);
+  border-color: rgb(24.4705882353%, 29.9764705882%, 8.9725490196%);
 }
 
 .list-group-item-secondary {
-  color: rgb(100.36, 20.28, 53.04);
-  background-color: rgb(237.64, 194.52, 212.16);
+  color: rgb(39.3568627451%, 7.9529411765%, 20.8%);
+  background-color: rgb(93.1921568627%, 76.2823529412%, 83.2%);
 }
 .list-group-item-secondary.list-group-item-action:hover, 
.list-group-item-secondary.list-group-item-action:focus {
-  color: rgb(100.36, 20.28, 53.04);
-  background-color: rgb(231.9529496403, 174.7070503597, 198.1258273381);
+  color: rgb(39.3568627451%, 7.9529411765%, 20.8%);
+  background-color: rgb(90.9619410354%, 68.5125687685%, 77.6964028777%);
 }
 .list-group-item-secondary.list-group-item-action.active {
   color: #fff;
-  background-color: rgb(100.36, 20.28, 53.04);
-  border-color: rgb(100.36, 20.28, 53.04);
+  background-color: rgb(39.3568627451%, 7.9529411765%, 20.8%);
+  border-color: rgb(39.3568627451%, 7.9529411765%, 20.8%);
 }
 
 .list-group-item-success {
-  color: rgb(107.64, 18.72, 21.84);
-  background-color: rgb(241.56, 193.68, 195.36);
+  color: rgb(42.2117647059%, 7.3411764706%, 8.5647058824%);
+  background-color: rgb(94.7294117647%, 75.9529411765%, 76.6117647059%);
 }
 .list-group-item-success.list-group-item-action:hover, 
.list-group-item-success.list-group-item-action:focus {
-  color: rgb(107.64, 18.72, 21.84);
-  background-color: rgb(236.9757303371, 172.7642696629, 175.0173033708);
+  color: rgb(42.2117647059%, 7.3411764706%, 8.5647058824%);
+  background-color: rgb(92.9316589557%, 67.7506939855%, 68.634236616%);
 }
 .list-group-item-success.list-group-item-action.active {
   color: #fff;
-  background-color: rgb(107.64, 18.72, 21.84);
-  border-color: rgb(107.64, 18.72, 21.84);
+  background-color: rgb(42.2117647059%, 7.3411764706%, 8.5647058824%);
+  border-color: rgb(42.2117647059%, 7.3411764706%, 8.5647058824%);
 }
 
 .list-group-item-info {
-  color: rgb(32.24, 37.44, 82.68);
-  background-color: rgb(200.96, 203.76, 228.12);
+  color: rgb(12.6431372549%, 14.6823529412%, 32.4235294118%);
+  background-color: rgb(78.8078431373%, 79.9058823529%, 89.4588235294%);
 }
 .list-group-item-info.list-group-item-action:hover, 
.list-group-item-info.list-group-item-action:focus {
-  color: rgb(32.24, 37.44, 82.68);
-  background-color: rgb(183.9305882353, 187.6129411765, 219.6494117647);
+  color: rgb(12.6431372549%, 14.6823529412%, 32.4235294118%);
+  background-color: rgb(72.1296424452%, 73.5737024221%, 86.1370242215%);
 }
 .list-group-item-info.list-group-item-action.active {
   color: #fff;
-  background-color: rgb(32.24, 37.44, 82.68);
-  border-color: rgb(32.24, 37.44, 82.68);
+  background-color: rgb(12.6431372549%, 14.6823529412%, 32.4235294118%);
+  border-color: rgb(12.6431372549%, 14.6823529412%, 32.4235294118%);
 }
 
 .list-group-item-warning {
-  color: rgb(58.76, 33.28, 79.56);
-  background-color: rgb(215.24, 201.52, 226.44);
+  color: rgb(23.0431372549%, 13.0509803922%, 31.2%);
+  background-color: rgb(84.4078431373%, 79.0274509804%, 88.8%);
 }
 .list-group-item-warning.list-group-item-action:hover, 
.list-group-item-warning.list-group-item-action:focus {
-  color: rgb(58.76, 33.28, 79.56);
-  background-color: rgb(202.8816382253, 184.8971331058, 217.5628668942);
+  color: rgb(23.0431372549%, 13.0509803922%, 31.2%);
+  background-color: rgb(79.561426755%, 72.5086796493%, 85.3187713311%);
 }
 .list-group-item-warning.list-group-item-action.active {
   color: #fff;
-  background-color: rgb(58.76, 33.28, 79.56);
-  border-color: rgb(58.76, 33.28, 79.56);
+  background-color: rgb(23.0431372549%, 13.0509803922%, 31.2%);
+  border-color: rgb(23.0431372549%, 13.0509803922%, 31.2%);
 }
 
 .list-group-item-danger {
-  color: rgb(114.4, 27.56, 35.88);
-  background-color: rgb(245.2, 198.44, 202.92);
+  color: rgb(44.862745098%, 10.8078431373%, 14.0705882353%);
+  background-color: rgb(96.1568627451%, 77.8196078431%, 79.5764705882%);
 }
 .list-group-item-danger.list-group-item-action:hover, 
.list-group-item-danger.list-group-item-action:focus {
-  color: rgb(114.4, 27.56, 35.88);
-  background-color: rgb(241.4341772152, 176.7058227848, 182.9073417722);
+  color: rgb(44.862745098%, 10.8078431373%, 14.0705882353%);
+  background-color: rgb(94.6800694962%, 69.2964010921%, 71.7283693224%);
 }
 .list-group-item-danger.list-group-item-action.active {
   color: #fff;
-  background-color: rgb(114.4, 27.56, 35.88);
-  border-color: rgb(114.4, 27.56, 35.88);
+  background-color: rgb(44.862745098%, 10.8078431373%, 14.0705882353%);
+  border-color: rgb(44.862745098%, 10.8078431373%, 14.0705882353%);
 }
 
 .list-group-item-light {
-  color: rgb(128.96, 129.48, 130);
-  background-color: rgb(253.04, 253.32, 253.6);
+  color: rgb(50.5725490196%, 50.7764705882%, 50.9803921569%);
+  background-color: rgb(99.231372549%, 99.3411764706%, 99.4509803922%);
 }
 .list-group-item-light.list-group-item-action:hover, 
.list-group-item-light.list-group-item-action:focus {
-  color: rgb(128.96, 129.48, 130);
-  background-color: rgb(238.165, 240.57, 242.975);
+  color: rgb(50.5725490196%, 50.7764705882%, 50.9803921569%);
+  background-color: rgb(93.3980392157%, 94.3411764706%, 95.2843137255%);
 }
 .list-group-item-light.list-group-item-action.active {
   color: #fff;
-  background-color: rgb(128.96, 129.48, 130);
-  border-color: rgb(128.96, 129.48, 130);
+  background-color: rgb(50.5725490196%, 50.7764705882%, 50.9803921569%);
+  border-color: rgb(50.5725490196%, 50.7764705882%, 50.9803921569%);
 }
 
 .list-group-item-dark {
-  color: rgb(27.04, 30.16, 33.28);
-  background-color: rgb(198.16, 199.84, 201.52);
+  color: rgb(10.6039215686%, 11.8274509804%, 13.0509803922%);
+  background-color: rgb(77.7098039216%, 78.368627451%, 79.0274509804%);
 }
 .list-group-item-dark.list-group-item-action:hover, 
.list-group-item-dark.list-group-item-action:focus {
-  color: rgb(27.04, 30.16, 33.28);
-  background-color: rgb(185.0216751269, 187.09, 189.1583248731);
+  color: rgb(10.6039215686%, 11.8274509804%, 13.0509803922%);
+  background-color: rgb(72.5575196576%, 73.368627451%, 74.1797352444%);
 }
 .list-group-item-dark.list-group-item-action.active {
   color: #fff;
-  background-color: rgb(27.04, 30.16, 33.28);
-  border-color: rgb(27.04, 30.16, 33.28);
+  background-color: rgb(10.6039215686%, 11.8274509804%, 13.0509803922%);
+  border-color: rgb(10.6039215686%, 11.8274509804%, 13.0509803922%);
 }
 
 .close {
@@ -5584,7 +5584,7 @@ a.close.disabled {
   width: 1rem;
   margin-left: -0.5rem;
   content: "";
-  border-bottom: 1px solid rgb(247.35, 247.35, 247.35);
+  border-bottom: 1px solid rgb(97%, 97%, 97%);
 }
 
 .bs-popover-left, .bs-popover-auto[x-placement^=left] {
@@ -5611,8 +5611,8 @@ a.close.disabled {
   padding: 0.5rem 0.75rem;
   margin-bottom: 0;
   font-size: 1rem;
-  background-color: rgb(247.35, 247.35, 247.35);
-  border-bottom: 1px solid rgb(234.6, 234.6, 234.6);
+  background-color: rgb(97%, 97%, 97%);
+  border-bottom: 1px solid rgb(92%, 92%, 92%);
   border-top-left-radius: calc(0.3rem - 1px);
   border-top-right-radius: calc(0.3rem - 1px);
 }
@@ -5890,7 +5890,7 @@ a.close.disabled {
 a.bg-primary:hover, a.bg-primary:focus,
 button.bg-primary:hover,
 button.bg-primary:focus {
-  background-color: rgb(87.9581151832, 107.7486910995, 32.2513089005) 
!important;
+  background-color: rgb(34.4933785032%, 42.2543886665%, 12.6475721179%) 
!important;
 }
 
 .bg-secondary {
@@ -5900,7 +5900,7 @@ button.bg-primary:focus {
 a.bg-secondary:hover, a.bg-secondary:focus,
 button.bg-secondary:hover,
 button.bg-secondary:focus {
-  background-color: rgb(150.5732758621, 30.4267241379, 79.5775862069) 
!important;
+  background-color: rgb(59.0483434753%, 11.9320486815%, 31.2068965517%) 
!important;
 }
 
 .bg-success {
@@ -5910,7 +5910,7 @@ button.bg-secondary:focus {
 a.bg-success:hover, a.bg-success:focus,
 button.bg-success:hover,
 button.bg-success:focus {
-  background-color: rgb(163.5555555556, 28.4444444444, 33.1851851852) 
!important;
+  background-color: rgb(64.1394335512%, 11.1546840959%, 13.0137981118%) 
!important;
 }
 
 .bg-info {
@@ -5920,7 +5920,7 @@ button.bg-success:focus {
 a.bg-info:hover, a.bg-info:focus,
 button.bg-info:hover,
 button.bg-info:focus {
-  background-color: rgb(47.6923076923, 55.3846153846, 122.3076923077) 
!important;
+  background-color: rgb(18.7028657617%, 21.7194570136%, 47.963800905%) 
!important;
 }
 
 .bg-warning {
@@ -5930,7 +5930,7 @@ button.bg-info:focus {
 a.bg-warning:hover, a.bg-warning:focus,
 button.bg-warning:hover,
 button.bg-warning:focus {
-  background-color: rgb(86.4423963134, 48.9585253456, 117.0414746544) 
!important;
+  background-color: rgb(33.8989789464%, 19.1994217042%, 45.8986175115%) 
!important;
 }
 
 .bg-danger {
@@ -5940,7 +5940,7 @@ button.bg-warning:focus {
 a.bg-danger:hover, a.bg-danger:focus,
 button.bg-danger:hover,
 button.bg-danger:focus {
-  background-color: rgb(189.2151898734, 32.7848101266, 47.7721518987) 
!important;
+  background-color: rgb(74.2020352445%, 12.8567882849%, 18.7341772152%) 
!important;
 }
 
 .bg-light {
@@ -5950,7 +5950,7 @@ button.bg-danger:focus {
 a.bg-light:hover, a.bg-light:focus,
 button.bg-light:hover,
 button.bg-light:focus {
-  background-color: rgb(218.25, 223.5, 228.75) !important;
+  background-color: rgb(85.5882352941%, 87.6470588235%, 89.7058823529%) 
!important;
 }
 
 .bg-dark {
@@ -5960,7 +5960,7 @@ button.bg-light:focus {
 a.bg-dark:hover, a.bg-dark:focus,
 button.bg-dark:hover,
 button.bg-dark:focus {
-  background-color: rgb(29.1379310345, 32.5, 35.8620689655) !important;
+  background-color: rgb(11.4266396214%, 12.7450980392%, 14.0635564571%) 
!important;
 }
 
 .bg-white {
@@ -9035,7 +9035,7 @@ button.bg-dark:focus {
 }
 
 a.text-primary:hover, a.text-primary:focus {
-  color: rgb(71.9371727749, 88.1230366492, 26.3769633508) !important;
+  color: rgb(28.2106559901%, 34.5580535879%, 10.3439071964%) !important;
 }
 
 .text-secondary {
@@ -9043,7 +9043,7 @@ a.text-primary:hover, a.text-primary:focus {
 }
 
 a.text-secondary:hover, a.text-secondary:focus {
-  color: rgb(129.3599137931, 26.1400862069, 68.3663793103) !important;
+  color: rgb(50.7293779581%, 10.2510141988%, 26.8103448276%) !important;
 }
 
 .text-success {
@@ -9051,7 +9051,7 @@ a.text-secondary:hover, a.text-secondary:focus {
 }
 
 a.text-success:hover, a.text-success:focus {
-  color: rgb(141.8333333333, 24.6666666667, 28.7777777778) !important;
+  color: rgb(55.6209150327%, 9.6732026144%, 11.2854030501%) !important;
 }
 
 .text-info {
@@ -9059,7 +9059,7 @@ a.text-success:hover, a.text-success:focus {
 }
 
 a.text-info:hover, a.text-info:focus {
-  color: rgb(40.5384615385, 47.0769230769, 103.9615384615) !important;
+  color: rgb(15.8974358974%, 18.4615384615%, 40.7692307692%) !important;
 }
 
 .text-warning {
@@ -9067,7 +9067,7 @@ a.text-info:hover, a.text-info:focus {
 }
 
 a.text-warning:hover, a.text-warning:focus {
-  color: rgb(73.16359447, 41.4377880184, 99.0622119816) !important;
+  color: rgb(28.6916056745%, 16.2501129484%, 38.8479262673%) !important;
 }
 
 .text-danger {
@@ -9075,7 +9075,7 @@ a.text-warning:hover, a.text-warning:focus {
 }
 
 a.text-danger:hover, a.text-danger:focus {
-  color: rgb(167.4810126582, 29.0189873418, 42.2848101266) !important;
+  color: rgb(65.6788284934%, 11.379995036%, 16.582278481%) !important;
 }
 
 .text-light {
@@ -9083,7 +9083,7 @@ a.text-danger:hover, a.text-danger:focus {
 }
 
 a.text-light:hover, a.text-light:focus {
-  color: rgb(203.375, 210.75, 218.125) !important;
+  color: rgb(79.7549019608%, 82.6470588235%, 85.5392156863%) !important;
 }
 
 .text-dark {
@@ -9091,7 +9091,7 @@ a.text-light:hover, a.text-light:focus {
 }
 
 a.text-dark:hover, a.text-dark:focus {
-  color: rgb(17.7068965517, 19.75, 21.7931034483) !important;
+  color: rgb(6.9438810007%, 7.7450980392%, 8.5463150778%) !important;
 }
 
 .text-body {


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
For further information, visit: https://activemq.apache.org/contact


Reply via email to