<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*!
 * Start Bootstrap - Simple Sidebar HTML Template (http://startbootstrap.com)
 * Code licensed under the Apache License v2.0.
 * For details, see http://www.apache.org/licenses/LICENSE-2.0.
 */

/* Toggle Styles */

#wrapper {
    padding-right: 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
/*
#wrapper.toggled {
    padding-right: 190px;
}*/

#sidebar-wrapper {
/*  -webkit-box-shadow: -5px 0px 10px 0px rgba(50, 50, 50, 0.25);
-moz-box-shadow:    -5px 0px 10px 0px rgba(50, 50, 50, 0.25);
box-shadow:         -5px 0px 10px 0px rgba(50, 50, 50, 0.25);*/
    z-index: 1000;
    position: fixed;
    right: 190px;
    width: 0;
    height: 100%;
    margin-right: -190px;
    overflow-y: auto;
    background: rgb(228,228,228);
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#wrapper.toggled #sidebar-wrapper {
    width: 190px;
}

#page-content-wrapper {
    width: 100%;
    position: absolute;
}

#wrapper.toggled #page-content-wrapper {
    position: absolute;
    margin-right: -190px;
}


.nav-pills li a {
  padding: 5px;
  margin: 0px;
  color: rgb(54, 125, 40) !important;
}

.social li a {
  color: rgb(54, 125, 40) !important;
  font-size: 15px !important;
}

/* Sidebar Styles */



.sidebar-nav {
    position: absolute;
    top: 20px;
    width: 190px;
    padding-left: 10px;


}

.sidebar-nav- {
  list-style: none;
  margin: 0;
  margin-left: -20px;
  padding: 0;
}

.sidebar-nav- li {
    text-indent: 20px;
    line-height: 30px;
}

.sidebar-nav- li a {
    display: block;
    text-decoration: none;
    color: #747474;
}

.sidebar-nav- li a:hover {
    text-decoration: none;
    color: #000;
    background: rgba(255,255,255,0.8);
}

.sidebar-nav- li a:active,
.sidebar-nav- li a:focus {
    text-decoration: none;
}

.sidebar-nav- &gt; .sidebar-brand {
    height: 65px;
    font-size: 18px;
    line-height: 60px;
}

.sidebar-nav- &gt; .sidebar-brand a {
    color: #999999;
}

.sidebar-nav- &gt; .sidebar-brand a:hover {
    color: #fff;
    background: none;
}

@media(min-width:768px) {
    #wrapper {
        padding-right: 190px;
    }

    #wrapper.toggled {
        padding-right: 0;
    }

    #sidebar-wrapper {
        width: 190px;
    }

    #wrapper.toggled #sidebar-wrapper {
        width: 0;
    }

    #page-content-wrapper {
        position: relative;
    }

    #wrapper.toggled #page-content-wrapper {
        position: relative;
        margin-right: 0;
    }
}
</pre></body></html>