<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*!
 * Dash - Responsive Bootstrap Dashboard Navbar - v1.4 (http://html.codbits.com/dash)
 * Copyright CodBits (http://codbits.com)
 * Licensed under CodeCanyon (http://codecanyon.net/licenses)
 *
 * Notes:
 * 1. dnt is abbreviation of the Dash Navbar Top.
 * 2. dnl is abbreviation of the Dash Navbar Left.
 * 3. I do recommend using LESS for customizations.
 *
 */
/* Global
/ -------------------------------------------------- */

/* colorbox css external link removed
/ -------------------------------------------------- */

/*
    Colorbox Core Style:
    The following CSS is consistent between example themes and should not be altered.
*/
#colorbox, #cboxOverlay, #cboxWrapper{position:absolute; top:0; left:0; z-index:9999; overflow:hidden;}
#cboxWrapper {max-width:none;}
#cboxOverlay{position:fixed; width:100%; height:100%;}
#cboxMiddleLeft, #cboxBottomLeft{clear:left;}
#cboxContent{position:relative;}
#cboxLoadedContent{overflow:auto; -webkit-overflow-scrolling: touch;}
#cboxTitle{margin:0;}
#cboxLoadingOverlay, #cboxLoadingGraphic{position:absolute; top:0; left:0; width:100%; height:100%;}
#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow{cursor:pointer;}
.cboxPhoto{float:left; margin:auto; border:0; display:block; max-width:none; -ms-interpolation-mode:bicubic;}
.cboxIframe{width:100%; height:100%; display:block; border:0; padding:0; margin:0;}
#colorbox, #cboxContent, #cboxLoadedContent{box-sizing:content-box; -moz-box-sizing:content-box; -webkit-box-sizing:content-box;}

/*
    User Style:
    Change the following styles to modify the appearance of Colorbox.  They are
    ordered &amp; tabbed in a way that represents the nesting of the generated HTML.
*/
#cboxOverlay{background:url(colorbox/images/overlay.png) repeat 0 0; opacity: 0.9; filter: alpha(opacity = 90);}
#colorbox{outline:0;}
    #cboxTopLeft{width:21px; height:21px; background:url(colorbox/images/controls.png) no-repeat -101px 0;}
    #cboxTopRight{width:21px; height:21px; background:url(colorbox/images/controls.png) no-repeat -130px 0;}
    #cboxBottomLeft{width:21px; height:21px; background:url(colorbox/images/controls.png) no-repeat -101px -29px;}
    #cboxBottomRight{width:21px; height:21px; background:url(colorbox/images/controls.png) no-repeat -130px -29px;}
    #cboxMiddleLeft{width:21px; background:url(colorbox/images/controls.png) left top repeat-y;}
    #cboxMiddleRight{width:21px; background:url(colorbox/images/controls.png) right top repeat-y;}
    #cboxTopCenter{height:21px; background:url(colorbox/images/border.png) 0 0 repeat-x;}
    #cboxBottomCenter{height:21px; background:url(colorbox/images/border.png) 0 -29px repeat-x;}
    #cboxContent{background:#fff; overflow:hidden;}
        .cboxIframe{background:#fff;}
        #cboxError{padding:50px; border:1px solid #ccc;}
        #cboxLoadedContent{margin-bottom:28px;}
        #cboxTitle{position:absolute; bottom:4px; left:0; text-align:center; width:100%; color:#949494;}
        #cboxCurrent{position:absolute; bottom:4px; left:58px; color:#949494;}
        #cboxLoadingOverlay{background:url(colorbox/images/loading_background.png) no-repeat center center;}
        #cboxLoadingGraphic{background:url(colorbox/images/loading.gif) no-repeat center center;}

        /* these elements are buttons, and may need to have additional styles reset to avoid unwanted base styles */
        #cboxPrevious, #cboxNext, #cboxSlideshow, #cboxClose {border:0; padding:0; margin:0; overflow:visible; width:auto; background:none; }

        /* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */
        #cboxPrevious:active, #cboxNext:active, #cboxSlideshow:active, #cboxClose:active {outline:0;}

        #cboxSlideshow{position:absolute; bottom:4px; right:30px; color:#0092ef;}
        #cboxPrevious{position:absolute; bottom:0; left:0; background:url(colorbox/images/controls.png) no-repeat -75px 0; width:25px; height:25px; text-indent:-9999px;}
        #cboxPrevious:hover{background-position:-75px -25px;}
        #cboxNext{position:absolute; bottom:0; left:27px; background:url(colorbox/images/controls.png) no-repeat -50px 0; width:25px; height:25px; text-indent:-9999px;}
        #cboxNext:hover{background-position:-50px -25px;}
        #cboxClose{position:absolute; bottom:0; right:0; background:url(colorbox/images/controls.png) no-repeat -25px 0; width:25px; height:25px; text-indent:-9999px;}
        #cboxClose:hover{background-position:-25px -25px;}

/*
  The following fixes a problem where IE7 and IE8 replace a PNG's alpha transparency with a black fill
  when an alpha filter (opacity change) is set on the element or ancestor element.  This style is not applied to or needed in IE9.
  See: http://jacklmoore.com/notes/ie-transparency-problems/
*/
.cboxIE #cboxTopLeft,
.cboxIE #cboxTopCenter,
.cboxIE #cboxTopRight,
.cboxIE #cboxBottomLeft,
.cboxIE #cboxBottomCenter,
.cboxIE #cboxBottomRight,
.cboxIE #cboxMiddleLeft,
.cboxIE #cboxMiddleRight {
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF);
}

/* Dash Navbar Top = dnt
/ -------------------------------------------------- */
.dash-navbar-top {
  background-color: #211f2a;
  margin-bottom: 0;
  min-height: 61px;
}
.dnl-btn-toggle {
  position: absolute;
  left: 5px;
  top: -18px;
  font-size: 21px;
  background-color: rgba(0, 0, 0, 0);
  border-width: 0;
  color: #666666;
  outline: 0;
}
.dash-navbar-left .dnl-btn-toggle {
	position:relative;
  top: 5px;
}
@media (min-width: 768px) {
  .dash-navbar-top.dnl-visible .dnl-btn-toggle {
    display: none;
  }
}
.dash-navbar-top .navbar-brand {
  padding: 20px;
  font-weight: bold;
  margin-left: 20px;
  color: #d7d7d7;
}
.dash-navbar-top .navbar-brand span {
  font-size: 10px;
  font-weight: normal;
}
.dash-navbar-top .navbar-brand:hover,
.dash-navbar-top .navbar-brand:focus {
  color: #ffffff;
}
@media (max-width: 767px) {
  .dash-navbar-top .navbar-brand {
    margin-left: 35px;
  }
}
@media (min-width: 767px) {
  .dash-navbar-top.dnl-visible .navbar-brand {
    margin-left: 0;
    padding-left: 5px;
  }
}
@media (min-width: 767px) {
  .dash-navbar-top.dnl-hidden .navbar-brand {
    margin-left: 35px;
    padding-left: 5px;
  }
}
.dash-navbar-top .navbar-toggle {
  border-width: 0;
  font-size: 24px;
  color: #d3d1dd;
  padding: 0 10px;
  margin-top: 14px;
  margin-right: 15px;
}
.dash-navbar-top .navbar-toggle:hover,
.dash-navbar-top .navbar-toggle:focus {
  background-color: transpardnt;
}
.dash-navbar-top .navbar-nav {
  text-align: center;
}
.dash-navbar-top .navbar-nav &gt; li &gt; a {
  color: #7e7e7e;
  padding-top: 20px;
  padding-bottom: 20px;
}
.dash-navbar-top .navbar-nav &gt; li &gt; a:hover,
.dash-navbar-top .navbar-nav &gt; li &gt; a:focus {
  background-color: #0a090d;
}
.dash-navbar-top .navbar-nav &gt; li.dropdown.open &gt; a {
  background-color: #0a090d;
}
.dash-navbar-top .navbar-nav &gt; li.dropdown.open &gt; a:hover,
.dash-navbar-top .navbar-nav &gt; li.dropdown.open &gt; a:focus {
  background-color: #0a090d;
}
.dash-navbar-top .navbar-nav .dropdown-menu {
  top: 107%;
  border-radius: 3px;
  min-width: 200px;
  padding-top: 0;
  padding-bottom: 0;
  -webkit-box-shadow: 0 1px 9px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 9px rgba(0, 0, 0, 0.1);
}
.dash-navbar-top .navbar-nav .dropdown-menu &gt; li {
  border-bottom: 1px solid #eeeeee;
}
.dash-navbar-top .navbar-nav .dropdown-menu &gt; li &gt; a {
  padding: 10px 20px;
  position: relative;
  color: #333333;
}
.dash-navbar-top .navbar-nav .dropdown-menu &gt; li &gt; a:hover,
.dash-navbar-top .navbar-nav .dropdown-menu &gt; li &gt; a:focus {
  background-color: #f5f5f5;
}
@media (max-width: 767px) {
  .dash-navbar-top .navbar-nav .dropdown-menu &gt; li &gt; a {
    color: #7e7e7e;
  }
  .dash-navbar-top .navbar-nav .dropdown-menu &gt; li &gt; a:hover,
  .dash-navbar-top .navbar-nav .dropdown-menu &gt; li &gt; a:focus {
    background-color: #15141b;
  }
}
.dash-navbar-top .navbar-nav .dropdown-menu &gt; li &gt; a span {
  font-size: 11px;
  text-transform: uppercase;
  position: absolute;
  right: 14px;
  top: 13px;
}
@media (max-width: 767px) {
  .dash-navbar-top .navbar-nav .dropdown-menu &gt; li &gt; a span {
    top: 9px;
  }
}
@media (max-width: 767px) {
  .dash-navbar-top .navbar-nav .dropdown-menu &gt; li {
    border-bottom-color: #2d2a39;
  }
}
.dash-navbar-top .navbar-nav .dropdown-menu &gt; li:last-child {
  border-bottom-width: 0;
}
.dash-navbar-top .navbar-nav .dropdown-menu &gt; li.active &gt; a {
  background-color: #f5f5f5;
  color: #333333;
}
.dash-navbar-top .navbar-nav .dropdown-menu &gt; li.active &gt; a:hover,
.dash-navbar-top .navbar-nav .dropdown-menu &gt; li.active &gt; a:focus {
  background-color: #f5f5f5;
  color: #333333;
}
@media (max-width: 767px) {
  .dash-navbar-top .navbar-nav .dropdown-menu &gt; li.active &gt; a {
    background-color: #15141b;
    color: #7e7e7e;
  }
  .dash-navbar-top .navbar-nav .dropdown-menu &gt; li.active &gt; a:hover,
  .dash-navbar-top .navbar-nav .dropdown-menu &gt; li.active &gt; a:focus {
    background-color: #15141b;
    color: #7e7e7e;
  }
}
.dash-navbar-top .navbar-nav .dropdown-menu:before {
  position: absolute;
  top: -9px;
  left: 9px;
  display: inline-block;
  border-right: 9px solid rgba(0, 0, 0, 0);
  border-bottom: 9px solid #CCC;
  border-left: 9px solid rgba(0, 0, 0, 0);
  border-bottom-color: rgba(0, 0, 0, 0.2);
  content: '';
}
.dash-navbar-top .navbar-nav .dropdown-menu:after {
  position: absolute;
  top: -8px;
  left: 10px;
  display: inline-block;
  border-right: 8px solid rgba(0, 0, 0, 0);
  border-bottom: 8px solid #FFF;
  border-left: 8px solid rgba(0, 0, 0, 0);
  content: '';
}
@media (max-width: 767px) {
  .dash-navbar-top .navbar-nav .dropdown-menu:before,
  .dash-navbar-top .navbar-nav .dropdown-menu:after {
    display: none;
  }
}
.dash-navbar-top .navbar-nav.navbar-right.navbar-avatar .dropdown-menu:before {
  right: 29px;
  left: auto;
}
.dash-navbar-top .navbar-nav.navbar-right.navbar-avatar .dropdown-menu:after {
  right: 30px;
  left: auto;
}
.dash-navbar-top .navbar-nav.navbar-right .dropdown-menu:before {
  right: 10px;
  left: auto;
}
.dash-navbar-top .navbar-nav.navbar-right .dropdown-menu:after {
  right: 11px;
  left: auto;
}
.dash-navbar-top .dnt-navbar-form {
  position: relative;
  margin-top: 14px;
  margin-bottom: 0px;
}
.dash-navbar-top .dnt-navbar-form .form-control {
  border-radius: 50px;
}
.dash-navbar-top .dnt-navbar-form .form-control:focus {
  -webkit-box-shadow: 0 0 0, 0 0 0, inset 0 0 2px #333333;
  box-shadow: 0 0 0, 0 0 0, inset 0 0 2px #333333;
  border-color: #211f2a;
}
.dash-navbar-top .dnt-navbar-form .btn {
  position: absolute;
  background-color: transparent;
  top: 0;
  right: 15px;
  outline: 0;
}
.dash-navbar-top .dnt-navbar-form .btn:active {
  -webkit-box-shadow: 0 0 0;
  box-shadow: 0 0 0;
}
@media (max-width: 767px) {
  .dash-navbar-top .dnt-navbar-form .btn {
    top: 10px;
  }
}
.dash-navbar-top .dnt-avatar {
  border-radius: 50px;
  width: 35px;
  height: 35px;
  -webkit-box-shadow: 0 0 0 2px #211f2a, 0 0 0 4px #4f4a65;
  box-shadow: 0 0 0 2px #211f2a, 0 0 0 4px #4f4a65;
  margin-right: 3px;
  margin: -11px 7px -11px 0;
}
/* Dash Navbar Left = dnl
/ -------------------------------------------------- */
.dash-navbar-left {
  position: absolute;
  background-color: #383547;
  width: 250px;
  top: 0px;
  bottom: 0;
  overflow-y: auto;
  z-index: 999999;
  padding-top: 5px;
  -webkit-transition: left 300ms;
  -o-transition: left 300ms;
  transition: left 300ms;
}
@media (max-width: 767px) {
  .dash-navbar-left.dnl-visible {
    left: -250px;
  }
  .dash-navbar-left.dnl-visible.dnl-show {
    left: 0;
  }
}
.dash-navbar-left.dnl-hidden {
  left: -250px;
}
.dash-navbar-left.dnl-hidden.dnl-show {
  left: 0;
}
.dash-navbar-left .dnl-nav-title {
  text-transform: uppercase;
  color: #7f799c;
  border-bottom: 1px solid #443f56;
  padding: 10px 25px 10px 0px;
  font-size: 11px;
  letter-spacing: 1px;
}
.dash-navbar-left .dnl-nav {
  padding-left: 0;
  list-style: none;
}
.dash-navbar-left .dnl-nav ul {
  padding-left: 0;
  list-style: none;
}
.dash-navbar-left .dnl-nav li {
  position: relative;
}
.dash-navbar-left .dnl-nav li a {
  display: block;
  outline: 0;
  padding: 8px 25px 7px;
  font-size: 16px;
  color: #b7b4c7;
}
.dash-navbar-left .dnl-nav li a:hover,
.dash-navbar-left .dnl-nav li a:focus {
  color: #eeeeee;
  text-decoration: none;
  background-color: #443f56;
  -webkit-box-shadow: inset 3px 0 0 #eb4f9a;
  box-shadow: inset 3px 0 0 #eb4f9a;
}
.dash-navbar-left .dnl-nav li a:hover .badge,
.dash-navbar-left .dnl-nav li a:focus .badge {
  color: #EEE;
}
.dash-navbar-left .dnl-nav li a &gt; .dnl-link-icon {
  padding-right: 8px;
}
.dash-navbar-left .dnl-nav li a &gt; .dnl-btn-sub-collapse {
  position: absolute;
  right: 25px;
  top: 10px;
}
.dash-navbar-left .dnl-nav li a &gt; .badge {
  position: absolute;
  right: 24px;
  top: 6px;
  padding: 3px 10px;
  color: #a7a9ac;
  background-color: transparent;
  border: 1px solid #4f4a65;
}
.dash-navbar-left .dnl-nav li a.collapsed .dnl-btn-sub-collapse {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.dash-navbar-left .dnl-nav li.active &gt; a {
  background-color: #443f56;
  -webkit-box-shadow: inset 3px 0 0 #eb4f9a;
  box-shadow: inset 3px 0 0 #eb4f9a;
}
.dash-navbar-left .dnl-nav li .dnl-sub-one {
  background-color: #15141b;
}
.dash-navbar-left .dnl-nav li .dnl-sub-one li {
  border-top: 1px solid #1c1b24;
}
.dash-navbar-left .dnl-nav li .dnl-sub-one li a {
  display: block;
  color: #a7a9ac;
}
.dash-navbar-left .dnl-nav li .dnl-sub-one li a:hover,
.dash-navbar-left .dnl-nav li .dnl-sub-one li a:focus {
  color: #eeeeee;
  background-color: #1c1b24;
  -webkit-box-shadow: inset 3px 0 0 #1c1b24;
  box-shadow: inset 3px 0 0 #1c1b24;
}
.dash-navbar-left .dnl-nav li .dnl-sub-one li a &gt; .dnl-link-icon {
  padding-right: 8px;
}
.dash-navbar-left .dnl-nav li .dnl-sub-one li a &gt; .badge {
  color: #a7a9ac;
  background-color: transparent;
  border: 1px solid #211f2a;
}
.dash-navbar-left .dnl-nav li .dnl-sub-one li.active &gt; a {
  background-color: #1c1b24;
  -webkit-box-shadow: inset 3px 0 0 #1c1b24;
  box-shadow: inset 3px 0 0 #1c1b24;
}
.dash-navbar-left .dnl-nav li .dnl-sub-two {
  background-color: #211f2a;
}
.dash-navbar-left .dnl-nav li .dnl-sub-two li {
  border-top-color: 1px solid #282533;
}
.dash-navbar-left .dnl-nav li .dnl-sub-two li a {
  color: #a7a9ac;
}
.dash-navbar-left .dnl-nav li .dnl-sub-two li a:hover,
.dash-navbar-left .dnl-nav li .dnl-sub-two li a:focus {
  color: #eeeeee;
  background-color: #282533;
  -webkit-box-shadow: inset 3px 0 0 #282533;
  box-shadow: inset 3px 0 0 #282533;
}
.dash-navbar-left .dnl-nav li .dnl-sub-two li a &gt; .badge {
  color: #a7a9ac;
  background-color: transparent;
  border: 1px solid #211f2a;
}
.dash-navbar-left .dnl-nav li .dnl-sub-two li.active &gt; a {
  background-color: #1c1b24;
  -webkit-box-shadow: inset 3px 0 0 #1c1b24;
  box-shadow: inset 3px 0 0 #1c1b24;
}
/* Content wrap
/ -------------------------------------------------- */
.content-wrap {
  position: relative;
}
.content-wrap.dnl-visible {
  margin-left: 250px;
}
@media (max-width: 767px) {
  .content-wrap.dnl-visible {
    margin-left: 0;
    -webkit-transition: all 300ms;
    -o-transition: all 300ms;
    transition: all 300ms;
  }
  .content-wrap.dnl-visible.dnl-push {
    -webkit-transform: translate(250px, 0);
    -ms-transform: translate(250px, 0);
    -o-transform: translate(250px, 0);
    transform: translate(250px, 0);
  }
}
.content-wrap.dnl-hidden {
  margin-left: 0;
  -webkit-transition: all 300ms;
  -o-transition: all 300ms;
  transition: all 300ms;
}
.content-wrap.dnl-hidden.dnl-push {
  margin-left: 250px;
}
@media (max-width: 767px) {
  .content-wrap.dnl-hidden.dnl-push {
    margin-left: 0;
    -webkit-transform: translate(250px, 0);
    -ms-transform: translate(250px, 0);
    -o-transform: translate(250px, 0);
    transform: translate(250px, 0);
  }
}
.content-wrap.content-opacity.dnl-overlay,
.content-wrap.content-opacity.dnl-push {
  opacity: 0.3;
  filter: alpha(opacity=30);
}




/* Component CSS  FIle Data  Starts */
/* General styles for all menus */
.cbp-spmenu {
	position: fixed;
}

/* Orientation-dependent styles for the content of the menu */

.cbp-spmenu-vertical {
	width: 240px;
	height: 100%;
	top: 0;
	z-index: 1000;
}

.cbp-spmenu-vertical a {
	padding: 1em;
}

/* Vertical menu that slides from the left or right */

.cbp-spmenu-left {
	left: -240px;
}

.cbp-spmenu-right {
	right: -240px;
}

.cbp-spmenu-left.cbp-spmenu-open {
	left: 0px;
}

.cbp-spmenu-right.cbp-spmenu-open {
	right: 0px;
}

/* Horizontal menu that slides from the top or bottom */

.cbp-spmenu-top {
	top: -150px;
}

.cbp-spmenu-bottom {
	bottom: -150px;
}

.cbp-spmenu-top.cbp-spmenu-open {
	top: 0px;
}

.cbp-spmenu-bottom.cbp-spmenu-open {
	bottom: 0px;
}

/* Push classes applied to the body */

.cbp-spmenu-push {
	overflow-x: hidden;
	position: relative;
	left: 0;
}

.cbp-spmenu-push-toright {
	left: 240px;
}

.cbp-spmenu-push-toleft {
	left: -240px;
}

/* Transitions */

.cbp-spmenu,
.cbp-spmenu-push {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

/* Example media queries */

@media screen and (max-width: 55.1875em){

	.cbp-spmenu-horizontal {
		font-size: 75%;
		height: 110px;
	}

	.cbp-spmenu-top {
		top: -110px;
	}

	.cbp-spmenu-bottom {
		bottom: -110px;
	}

}

@media screen and (max-height: 26.375em){

	.cbp-spmenu-vertical {
		font-size: 90%;
		width: 190px;
	}

	.cbp-spmenu-left,
	.cbp-spmenu-push-toleft {
		left: -190px;
	}

	.cbp-spmenu-right {
		right: -190px;
	}

	.cbp-spmenu-push-toright {
		left: 190px;
	}
}
/* Component CSS  FIle Data  Ends */


/*Main CSS file Data Starts */



html {
    color: #222;
    font-size: 1em;
    line-height: 1.4;
}



::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}


hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}



audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}



fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}



textarea {
    resize: vertical;
}

.browserupgrade {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

.hidden {
    display: none !important;
}


.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}


.invisible {
    visibility: hidden;
}

.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}


@media only screen and (min-width: 35em) {
    /* Style adjustments for viewports that meet the condition */
}

@media print,
       (-webkit-min-device-pixel-ratio: 1.25),
       (min-resolution: 1.25dppx),
       (min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}



@media print {
    *,
    *:before,
    *:after {
        background: transparent !important;
        color: #000 !important; /* Black prints faster:
                                   http://www.sanbeiji.com/archives/953 */
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    a[href^="#"]:after,
    a[href^="javascript:"]: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;
    }
}
/* Main CSS file data ends */















</pre></body></html>