<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 (http://startbootstrap.com/)
 * Copyright 2013-2016 Start Bootstrap
 * Licensed under MIT (https://github.com/BlackrockDigital/startbootstrap/blob/gh-pages/LICENSE)
 */

 body {
    overflow-x: hidden;
 }

/* Toggle Styles */

#wrapper {
    padding-left: 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-left: 250px;
}

#sidebar-wrapper {
    z-index: 1000;
    position: fixed;
    left: 250px;
    width: 0;
    height: 100%;
    margin-left: -250px;
    overflow-y: auto;
    background: #171212;
    -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: 250px;
}

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

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

/* Sidebar Styles */

.sidebar-nav {
    position: absolute;
    top: 0;
    width: 250px;
    margin: 0;
    padding: 0;
    list-style: none;
}

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

li &gt; a &gt; img {
    width: 48px;
    height: 48px;
    padding: 8px;
}

/*adds border top to first nav box */
.sidebar-nav &gt; li:first-child{
    border-top: 2px #e5e5e5 solid;
}

/*adds border to bottom nav boxes*/
.sidebar-nav &gt; .borderBottom{
    border-bottom: 2px #e5e5e5 solid;
}

.sidebar-nav &gt; .component{
    padding-left: 25px;
}

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

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

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

.sidebar-nav &gt; .active{
    background-color: #503939;
}

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

.sidebar-nav &gt; .sidebar-brand &gt; a &gt; img {
    width: 48px;
    height: 48px;
    padding: 0px;
}

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

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

.sidebar-nav ul :not(collapsed) .arrow:before,
.sidebar-nav li :not(collapsed) .arrow:before {
  font-family: FontAwesome;
  content: "\f078";
  display: inline-block;
  padding-left: 10px;
  padding-right: 10px;
  vertical-align: middle;
  float: right;
}

.footer &gt; p {
    font-size: 9px;
}

.footer {
  width: 250px;
  position: absolute;
  bottom: 0px;
  padding-left: 20px;
  font-size: 12px;
}

td {
    vertical-align: middle;
}

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

    #wrapper.toggled {
        padding-left: 250px;
    }

    #sidebar-wrapper {
        width: 0;
    }

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

    #page-content-wrapper {
        padding: 20px;
        position: relative;
    }

    #wrapper.toggled #page-content-wrapper {
        position: relative;
        margin-right: 0;
    }
}

@media(max-width:1024px) {
    #wrapper {
        padding-left: 0;
    }

    #wrapper.toggled {
        padding-left: 250px;
    }

    #sidebar-wrapper {
        width: 0;
    }

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

    #page-content-wrapper {
        padding: 20px;
        position: relative;
    }

    #wrapper.toggled #page-content-wrapper {
        position: relative;
        margin-right: 0;
    }

    .container {
        width: 100%;
        min-width: 800px;
    }
}</pre></body></html>