
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_8756277487b82080f2dc55e0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.996000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_43badaefb50ab5b372e06c19.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.996000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_51800007cb15f6e350b458cc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_9663c625fcf61fb4b2f14950.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.996000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_9663c625fcf61fb4b2f14950.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.996000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_2a554a2f0ed6628ef7b4c1a2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.md{transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.247635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247635,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.247643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247643,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.247647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247647,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.247677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247677,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.247795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247795,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.247813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247813,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.247885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247885,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.248040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248040,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.248088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248088,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.248120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248120,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.248185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248185,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.248187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248187,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.248190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248190,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.248295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248295,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.248308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248308,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.248325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248325,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.248342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248342,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.248397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248397,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.248400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248400,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.248420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248420,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.248432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248432,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.248507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248507,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.248537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248537,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.248555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248555,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.248628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248628,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.248730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248730,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.248773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248773,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.248790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248790,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.248865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248865,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.248883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248883,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.248908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248908,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.248933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248933,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.248995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248995,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.249020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249020,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.249032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249032,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.249155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249155,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.249275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249275,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.249300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249300,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249345,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249347,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.249355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249355,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249477,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.249485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249485,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.249505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249505,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.249513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249513,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249582,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.249628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249628,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249685,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.249725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249725,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.249730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249730,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.249760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249760,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249867,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.250015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250015,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.250047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250047,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.250053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250053,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.250163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250163,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.250182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250182,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.250217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250217,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.250235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250235,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.250277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250277,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.250280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250280,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.250365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250365,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.250415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250415,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.250435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250435,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.250480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250480,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.250520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250520,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.250563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250563,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.250585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250585,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.250640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250640,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.250667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250667,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.250673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250673,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.250722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250722,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.250748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250748,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.250795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250795,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.250805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250805,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.250967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250967,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.251125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251125,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.251260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251260,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.251281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251281,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.251293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251293,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.251313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251313,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.251315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251315,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.251345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251345,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.251688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251688,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.251773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251773,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.251900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251900,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.251938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251938,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.252132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252132,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.252420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252420,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.252445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252445,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-15.984000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980000px;}
.ls10{letter-spacing:-0.300000px;}
.ls6{letter-spacing:-0.240000px;}
.ls5{letter-spacing:-0.180000px;}
.ls4{letter-spacing:-0.120000px;}
.ls3{letter-spacing:-0.060000px;}
.ls2{letter-spacing:0.000000px;}
.lse{letter-spacing:0.055968px;}
.ls8{letter-spacing:0.060000px;}
.lsc{letter-spacing:0.096000px;}
.ls9{letter-spacing:0.120000px;}
.ls0{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.240000px;}
.lsa{letter-spacing:0.300000px;}
.lsb{letter-spacing:0.420000px;}
.ls11{letter-spacing:0.450000px;}
.lsd{letter-spacing:0.480000px;}
.ls1{letter-spacing:0.540000px;}
.lsf{letter-spacing:1.209000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws16{word-spacing:-12.060000px;}
.ws1{word-spacing:-12.000000px;}
.ws35{word-spacing:-11.940000px;}
.ws4d{word-spacing:-11.820000px;}
.ws37{word-spacing:-11.760000px;}
.ws36{word-spacing:-11.700000px;}
.ws28{word-spacing:-9.600000px;}
.ws0{word-spacing:-8.400000px;}
.ws26{word-spacing:-6.996000px;}
.ws27{word-spacing:-5.652768px;}
.ws38{word-spacing:-5.596800px;}
.ws7{word-spacing:-1.860000px;}
.ws6{word-spacing:-1.800000px;}
.ws2f{word-spacing:-1.740000px;}
.ws49{word-spacing:-1.680000px;}
.ws3b{word-spacing:-1.560000px;}
.ws47{word-spacing:-1.500000px;}
.ws2d{word-spacing:-1.380000px;}
.ws3e{word-spacing:-1.320000px;}
.ws40{word-spacing:-1.260000px;}
.ws29{word-spacing:-1.200000px;}
.ws34{word-spacing:-1.152000px;}
.ws4b{word-spacing:-1.140000px;}
.wsc{word-spacing:-1.080000px;}
.ws4f{word-spacing:-1.020000px;}
.ws2b{word-spacing:-0.960000px;}
.ws4a{word-spacing:-0.840000px;}
.ws3c{word-spacing:-0.780000px;}
.ws4{word-spacing:-0.720000px;}
.ws31{word-spacing:-0.660000px;}
.ws1f{word-spacing:-0.600000px;}
.ws15{word-spacing:-0.540000px;}
.ws9{word-spacing:-0.480000px;}
.ws23{word-spacing:-0.360000px;}
.ws2a{word-spacing:-0.300000px;}
.ws50{word-spacing:-0.240000px;}
.ws3f{word-spacing:-0.180000px;}
.ws33{word-spacing:-0.096000px;}
.ws25{word-spacing:-0.060000px;}
.ws2{word-spacing:0.000000px;}
.wsb{word-spacing:0.060000px;}
.ws1b{word-spacing:0.120000px;}
.ws8{word-spacing:0.180000px;}
.ws39{word-spacing:0.240000px;}
.ws3d{word-spacing:0.300000px;}
.ws42{word-spacing:0.360000px;}
.wse{word-spacing:0.420000px;}
.ws1a{word-spacing:0.480000px;}
.ws3a{word-spacing:0.600000px;}
.wsd{word-spacing:0.660000px;}
.ws12{word-spacing:0.720000px;}
.ws4e{word-spacing:0.780000px;}
.ws43{word-spacing:0.840000px;}
.ws1e{word-spacing:0.900000px;}
.ws13{word-spacing:0.960000px;}
.ws41{word-spacing:1.020000px;}
.ws17{word-spacing:1.080000px;}
.ws4c{word-spacing:1.104000px;}
.ws46{word-spacing:1.140000px;}
.ws21{word-spacing:1.200000px;}
.ws48{word-spacing:1.260000px;}
.ws45{word-spacing:1.320000px;}
.ws14{word-spacing:1.380000px;}
.ws19{word-spacing:1.440000px;}
.ws11{word-spacing:1.500000px;}
.wsa{word-spacing:1.680000px;}
.ws32{word-spacing:1.800000px;}
.ws22{word-spacing:1.860000px;}
.ws20{word-spacing:1.920000px;}
.ws18{word-spacing:1.980000px;}
.ws24{word-spacing:2.040000px;}
.ws1c{word-spacing:2.100000px;}
.ws3{word-spacing:2.160000px;}
.ws10{word-spacing:2.280000px;}
.wsf{word-spacing:2.340000px;}
.ws5{word-spacing:2.400000px;}
.ws30{word-spacing:2.700000px;}
.ws1d{word-spacing:3.060000px;}
.ws2c{word-spacing:3.180000px;}
.ws44{word-spacing:4.440000px;}
.ws2e{word-spacing:4.500000px;}
._8{margin-left:-8.775600px;}
._9{margin-left:-7.125600px;}
._4{margin-left:-6.000000px;}
._1{margin-left:-4.804800px;}
._2{margin-left:-3.362400px;}
._0{margin-left:-1.924800px;}
._3{width:1.045200px;}
._6{width:2.234438px;}
._7{width:3.313047px;}
._5{width:6.042000px;}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:27.984000px;}
.fs4{font-size:34.980000px;}
.fs1{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:60.000000px;}
.fs3{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y4d{bottom:50.226900px;}
.y24{bottom:54.502500px;}
.y1{bottom:86.740200px;}
.y96{bottom:86.740350px;}
.ybc{bottom:87.048750px;}
.y71{bottom:101.740200px;}
.y95{bottom:105.736350px;}
.y4a{bottom:106.998300px;}
.ybb{bottom:107.298750px;}
.y70{bottom:120.736200px;}
.y49{bottom:127.256400px;}
.yba{bottom:127.548750px;}
.y21{bottom:134.514150px;}
.y94{bottom:138.000150px;}
.y48{bottom:147.514500px;}
.yb9{bottom:147.798750px;}
.y6f{bottom:153.000000px;}
.y20{bottom:154.764150px;}
.y93{bottom:158.530050px;}
.y47{bottom:167.772600px;}
.yb8{bottom:168.048750px;}
.y6e{bottom:173.692650px;}
.y1f{bottom:175.014150px;}
.y92{bottom:179.060100px;}
.y46{bottom:188.030700px;}
.yb7{bottom:188.298750px;}
.y6d{bottom:194.385150px;}
.y1e{bottom:195.264150px;}
.y91{bottom:199.590000px;}
.y45{bottom:208.288950px;}
.yb6{bottom:208.548750px;}
.y6c{bottom:215.077800px;}
.y1d{bottom:215.514150px;}
.y90{bottom:220.119900px;}
.y44{bottom:228.547050px;}
.yb5{bottom:228.798750px;}
.y1c{bottom:235.764150px;}
.y6b{bottom:235.770450px;}
.y8f{bottom:240.649950px;}
.y43{bottom:248.805150px;}
.yb4{bottom:249.048750px;}
.y1b{bottom:256.014150px;}
.y6a{bottom:256.463100px;}
.y8e{bottom:261.179850px;}
.y42{bottom:269.063250px;}
.yb3{bottom:269.298750px;}
.y1a{bottom:276.264150px;}
.y69{bottom:277.155600px;}
.y8d{bottom:281.709900px;}
.y41{bottom:289.321350px;}
.yb2{bottom:289.548750px;}
.y19{bottom:296.514150px;}
.y68{bottom:297.848250px;}
.y8c{bottom:302.239800px;}
.y40{bottom:309.579450px;}
.yb1{bottom:309.798750px;}
.y18{bottom:316.764150px;}
.y67{bottom:318.540900px;}
.y8b{bottom:322.769700px;}
.y3f{bottom:329.837550px;}
.yb0{bottom:330.048750px;}
.y17{bottom:337.014150px;}
.y66{bottom:339.233400px;}
.y8a{bottom:343.299750px;}
.y3e{bottom:350.095650px;}
.yaf{bottom:350.298750px;}
.y16{bottom:357.264150px;}
.y65{bottom:359.926050px;}
.y89{bottom:363.829650px;}
.y3d{bottom:370.353900px;}
.yae{bottom:370.548750px;}
.y15{bottom:377.514150px;}
.y64{bottom:380.618700px;}
.y88{bottom:384.359700px;}
.y3c{bottom:390.612000px;}
.yad{bottom:390.798750px;}
.y14{bottom:397.764150px;}
.y63{bottom:401.311350px;}
.y87{bottom:404.889600px;}
.y3b{bottom:410.870100px;}
.yac{bottom:411.048750px;}
.y13{bottom:418.014150px;}
.y62{bottom:422.003850px;}
.y86{bottom:425.419500px;}
.y3a{bottom:431.128200px;}
.yab{bottom:431.298750px;}
.y12{bottom:438.264150px;}
.y61{bottom:442.696500px;}
.y85{bottom:445.949550px;}
.y39{bottom:451.386300px;}
.yaa{bottom:451.548750px;}
.y11{bottom:458.514150px;}
.y60{bottom:463.389150px;}
.y84{bottom:466.479450px;}
.y38{bottom:471.644400px;}
.ya9{bottom:471.798750px;}
.y10{bottom:478.764150px;}
.y5f{bottom:484.081800px;}
.y83{bottom:487.009500px;}
.y37{bottom:491.902500px;}
.ya8{bottom:492.048750px;}
.yf{bottom:499.014150px;}
.y5e{bottom:504.774300px;}
.y82{bottom:507.539400px;}
.y36{bottom:512.160600px;}
.ya7{bottom:512.298750px;}
.ye{bottom:519.264150px;}
.y5d{bottom:525.466950px;}
.y81{bottom:528.069300px;}
.y35{bottom:532.418850px;}
.ya6{bottom:532.548750px;}
.yd{bottom:539.514150px;}
.y5c{bottom:546.159600px;}
.y80{bottom:548.599350px;}
.y34{bottom:552.676950px;}
.ya5{bottom:552.798750px;}
.yc{bottom:559.764150px;}
.y5b{bottom:566.852100px;}
.y7f{bottom:569.129250px;}
.y33{bottom:572.935050px;}
.ya4{bottom:573.048750px;}
.yb{bottom:580.014150px;}
.y5a{bottom:587.544750px;}
.y7e{bottom:589.659150px;}
.y32{bottom:593.193150px;}
.ya3{bottom:593.298750px;}
.ya{bottom:600.264150px;}
.y59{bottom:608.237400px;}
.y7d{bottom:610.189200px;}
.y31{bottom:613.451250px;}
.ya2{bottom:613.548750px;}
.y9{bottom:620.514150px;}
.y58{bottom:628.930050px;}
.y7c{bottom:630.719100px;}
.y30{bottom:633.709350px;}
.ya1{bottom:633.798750px;}
.y8{bottom:640.764150px;}
.y57{bottom:649.622550px;}
.y7b{bottom:651.249150px;}
.y2f{bottom:653.967450px;}
.ya0{bottom:654.048750px;}
.y7{bottom:661.014150px;}
.y56{bottom:670.315200px;}
.y7a{bottom:671.779050px;}
.y2e{bottom:674.225700px;}
.y9f{bottom:674.298750px;}
.y6{bottom:681.264150px;}
.y55{bottom:691.007850px;}
.y79{bottom:692.309100px;}
.y2d{bottom:694.483800px;}
.y9e{bottom:694.548750px;}
.y54{bottom:711.700350px;}
.y78{bottom:712.839000px;}
.y2c{bottom:714.741900px;}
.y9d{bottom:714.798750px;}
.y53{bottom:732.393000px;}
.y77{bottom:733.368900px;}
.y2b{bottom:735.000000px;}
.y9c{bottom:735.048750px;}
.y52{bottom:753.085650px;}
.y76{bottom:753.898950px;}
.y2a{bottom:755.258100px;}
.y9b{bottom:755.298750px;}
.y51{bottom:773.778300px;}
.y5{bottom:773.797650px;}
.y75{bottom:774.428850px;}
.y29{bottom:775.516200px;}
.y9a{bottom:775.548750px;}
.y50{bottom:794.470950px;}
.y74{bottom:794.958750px;}
.y28{bottom:795.774300px;}
.y99{bottom:795.798750px;}
.y4{bottom:807.553500px;}
.y4f{bottom:815.163450px;}
.y73{bottom:815.488800px;}
.y27{bottom:816.032550px;}
.y98{bottom:816.048750px;}
.y4e{bottom:835.856100px;}
.y72{bottom:836.018700px;}
.y26{bottom:836.290500px;}
.y97{bottom:836.298750px;}
.y25{bottom:856.548750px;}
.y3{bottom:880.653450px;}
.y2{bottom:880.653600px;}
.y23{bottom:898.288950px;}
.y4c{bottom:898.290300px;}
.y22{bottom:898.309800px;}
.y4b{bottom:898.311150px;}
.h8{height:19.756704px;}
.h3{height:29.652000px;}
.h2{height:33.888000px;}
.h9{height:34.032000px;}
.h4{height:42.360000px;}
.h6{height:42.540000px;}
.h7{height:44.675880px;}
.h5{height:50.832000px;}
.h0{height:977.953500px;}
.h1{height:978.000000px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x5{left:114.803100px;}
.x1{left:170.078700px;}
.x3{left:191.338500px;}
.x2{left:441.664650px;}
.x4{left:569.916750px;}
@media print{
.v2{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.ls10{letter-spacing:-0.266667pt;}
.ls6{letter-spacing:-0.213333pt;}
.ls5{letter-spacing:-0.160000pt;}
.ls4{letter-spacing:-0.106667pt;}
.ls3{letter-spacing:-0.053333pt;}
.ls2{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.049749pt;}
.ls8{letter-spacing:0.053333pt;}
.lsc{letter-spacing:0.085333pt;}
.ls9{letter-spacing:0.106667pt;}
.ls0{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.213333pt;}
.lsa{letter-spacing:0.266667pt;}
.lsb{letter-spacing:0.373333pt;}
.ls11{letter-spacing:0.400000pt;}
.lsd{letter-spacing:0.426667pt;}
.ls1{letter-spacing:0.480000pt;}
.lsf{letter-spacing:1.074667pt;}
.ws16{word-spacing:-10.720000pt;}
.ws1{word-spacing:-10.666667pt;}
.ws35{word-spacing:-10.613333pt;}
.ws4d{word-spacing:-10.506667pt;}
.ws37{word-spacing:-10.453333pt;}
.ws36{word-spacing:-10.400000pt;}
.ws28{word-spacing:-8.533333pt;}
.ws0{word-spacing:-7.466667pt;}
.ws26{word-spacing:-6.218667pt;}
.ws27{word-spacing:-5.024683pt;}
.ws38{word-spacing:-4.974933pt;}
.ws7{word-spacing:-1.653333pt;}
.ws6{word-spacing:-1.600000pt;}
.ws2f{word-spacing:-1.546667pt;}
.ws49{word-spacing:-1.493333pt;}
.ws3b{word-spacing:-1.386667pt;}
.ws47{word-spacing:-1.333333pt;}
.ws2d{word-spacing:-1.226667pt;}
.ws3e{word-spacing:-1.173333pt;}
.ws40{word-spacing:-1.120000pt;}
.ws29{word-spacing:-1.066667pt;}
.ws34{word-spacing:-1.024000pt;}
.ws4b{word-spacing:-1.013333pt;}
.wsc{word-spacing:-0.960000pt;}
.ws4f{word-spacing:-0.906667pt;}
.ws2b{word-spacing:-0.853333pt;}
.ws4a{word-spacing:-0.746667pt;}
.ws3c{word-spacing:-0.693333pt;}
.ws4{word-spacing:-0.640000pt;}
.ws31{word-spacing:-0.586667pt;}
.ws1f{word-spacing:-0.533333pt;}
.ws15{word-spacing:-0.480000pt;}
.ws9{word-spacing:-0.426667pt;}
.ws23{word-spacing:-0.320000pt;}
.ws2a{word-spacing:-0.266667pt;}
.ws50{word-spacing:-0.213333pt;}
.ws3f{word-spacing:-0.160000pt;}
.ws33{word-spacing:-0.085333pt;}
.ws25{word-spacing:-0.053333pt;}
.ws2{word-spacing:0.000000pt;}
.wsb{word-spacing:0.053333pt;}
.ws1b{word-spacing:0.106667pt;}
.ws8{word-spacing:0.160000pt;}
.ws39{word-spacing:0.213333pt;}
.ws3d{word-spacing:0.266667pt;}
.ws42{word-spacing:0.320000pt;}
.wse{word-spacing:0.373333pt;}
.ws1a{word-spacing:0.426667pt;}
.ws3a{word-spacing:0.533333pt;}
.wsd{word-spacing:0.586667pt;}
.ws12{word-spacing:0.640000pt;}
.ws4e{word-spacing:0.693333pt;}
.ws43{word-spacing:0.746667pt;}
.ws1e{word-spacing:0.800000pt;}
.ws13{word-spacing:0.853333pt;}
.ws41{word-spacing:0.906667pt;}
.ws17{word-spacing:0.960000pt;}
.ws4c{word-spacing:0.981333pt;}
.ws46{word-spacing:1.013333pt;}
.ws21{word-spacing:1.066667pt;}
.ws48{word-spacing:1.120000pt;}
.ws45{word-spacing:1.173333pt;}
.ws14{word-spacing:1.226667pt;}
.ws19{word-spacing:1.280000pt;}
.ws11{word-spacing:1.333333pt;}
.wsa{word-spacing:1.493333pt;}
.ws32{word-spacing:1.600000pt;}
.ws22{word-spacing:1.653333pt;}
.ws20{word-spacing:1.706667pt;}
.ws18{word-spacing:1.760000pt;}
.ws24{word-spacing:1.813333pt;}
.ws1c{word-spacing:1.866667pt;}
.ws3{word-spacing:1.920000pt;}
.ws10{word-spacing:2.026667pt;}
.wsf{word-spacing:2.080000pt;}
.ws5{word-spacing:2.133333pt;}
.ws30{word-spacing:2.400000pt;}
.ws1d{word-spacing:2.720000pt;}
.ws2c{word-spacing:2.826667pt;}
.ws44{word-spacing:3.946667pt;}
.ws2e{word-spacing:4.000000pt;}
._8{margin-left:-7.800533pt;}
._9{margin-left:-6.333867pt;}
._4{margin-left:-5.333333pt;}
._1{margin-left:-4.270933pt;}
._2{margin-left:-2.988800pt;}
._0{margin-left:-1.710933pt;}
._3{width:0.929067pt;}
._6{width:1.986167pt;}
._7{width:2.944930pt;}
._5{width:5.370667pt;}
.fs5{font-size:24.874667pt;}
.fs4{font-size:31.093333pt;}
.fs1{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:53.333333pt;}
.fs3{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y4d{bottom:44.646133pt;}
.y24{bottom:48.446667pt;}
.y1{bottom:77.102400pt;}
.y96{bottom:77.102533pt;}
.ybc{bottom:77.376667pt;}
.y71{bottom:90.435733pt;}
.y95{bottom:93.987867pt;}
.y4a{bottom:95.109600pt;}
.ybb{bottom:95.376667pt;}
.y70{bottom:107.321067pt;}
.y49{bottom:113.116800pt;}
.yba{bottom:113.376667pt;}
.y21{bottom:119.568133pt;}
.y94{bottom:122.666800pt;}
.y48{bottom:131.124000pt;}
.yb9{bottom:131.376667pt;}
.y6f{bottom:136.000000pt;}
.y20{bottom:137.568133pt;}
.y93{bottom:140.915600pt;}
.y47{bottom:149.131200pt;}
.yb8{bottom:149.376667pt;}
.y6e{bottom:154.393467pt;}
.y1f{bottom:155.568133pt;}
.y92{bottom:159.164533pt;}
.y46{bottom:167.138400pt;}
.yb7{bottom:167.376667pt;}
.y6d{bottom:172.786800pt;}
.y1e{bottom:173.568133pt;}
.y91{bottom:177.413333pt;}
.y45{bottom:185.145733pt;}
.yb6{bottom:185.376667pt;}
.y6c{bottom:191.180267pt;}
.y1d{bottom:191.568133pt;}
.y90{bottom:195.662133pt;}
.y44{bottom:203.152933pt;}
.yb5{bottom:203.376667pt;}
.y1c{bottom:209.568133pt;}
.y6b{bottom:209.573733pt;}
.y8f{bottom:213.911067pt;}
.y43{bottom:221.160133pt;}
.yb4{bottom:221.376667pt;}
.y1b{bottom:227.568133pt;}
.y6a{bottom:227.967200pt;}
.y8e{bottom:232.159867pt;}
.y42{bottom:239.167333pt;}
.yb3{bottom:239.376667pt;}
.y1a{bottom:245.568133pt;}
.y69{bottom:246.360533pt;}
.y8d{bottom:250.408800pt;}
.y41{bottom:257.174533pt;}
.yb2{bottom:257.376667pt;}
.y19{bottom:263.568133pt;}
.y68{bottom:264.754000pt;}
.y8c{bottom:268.657600pt;}
.y40{bottom:275.181733pt;}
.yb1{bottom:275.376667pt;}
.y18{bottom:281.568133pt;}
.y67{bottom:283.147467pt;}
.y8b{bottom:286.906400pt;}
.y3f{bottom:293.188933pt;}
.yb0{bottom:293.376667pt;}
.y17{bottom:299.568133pt;}
.y66{bottom:301.540800pt;}
.y8a{bottom:305.155333pt;}
.y3e{bottom:311.196133pt;}
.yaf{bottom:311.376667pt;}
.y16{bottom:317.568133pt;}
.y65{bottom:319.934267pt;}
.y89{bottom:323.404133pt;}
.y3d{bottom:329.203467pt;}
.yae{bottom:329.376667pt;}
.y15{bottom:335.568133pt;}
.y64{bottom:338.327733pt;}
.y88{bottom:341.653067pt;}
.y3c{bottom:347.210667pt;}
.yad{bottom:347.376667pt;}
.y14{bottom:353.568133pt;}
.y63{bottom:356.721200pt;}
.y87{bottom:359.901867pt;}
.y3b{bottom:365.217867pt;}
.yac{bottom:365.376667pt;}
.y13{bottom:371.568133pt;}
.y62{bottom:375.114533pt;}
.y86{bottom:378.150667pt;}
.y3a{bottom:383.225067pt;}
.yab{bottom:383.376667pt;}
.y12{bottom:389.568133pt;}
.y61{bottom:393.508000pt;}
.y85{bottom:396.399600pt;}
.y39{bottom:401.232267pt;}
.yaa{bottom:401.376667pt;}
.y11{bottom:407.568133pt;}
.y60{bottom:411.901467pt;}
.y84{bottom:414.648400pt;}
.y38{bottom:419.239467pt;}
.ya9{bottom:419.376667pt;}
.y10{bottom:425.568133pt;}
.y5f{bottom:430.294933pt;}
.y83{bottom:432.897333pt;}
.y37{bottom:437.246667pt;}
.ya8{bottom:437.376667pt;}
.yf{bottom:443.568133pt;}
.y5e{bottom:448.688267pt;}
.y82{bottom:451.146133pt;}
.y36{bottom:455.253867pt;}
.ya7{bottom:455.376667pt;}
.ye{bottom:461.568133pt;}
.y5d{bottom:467.081733pt;}
.y81{bottom:469.394933pt;}
.y35{bottom:473.261200pt;}
.ya6{bottom:473.376667pt;}
.yd{bottom:479.568133pt;}
.y5c{bottom:485.475200pt;}
.y80{bottom:487.643867pt;}
.y34{bottom:491.268400pt;}
.ya5{bottom:491.376667pt;}
.yc{bottom:497.568133pt;}
.y5b{bottom:503.868533pt;}
.y7f{bottom:505.892667pt;}
.y33{bottom:509.275600pt;}
.ya4{bottom:509.376667pt;}
.yb{bottom:515.568133pt;}
.y5a{bottom:522.262000pt;}
.y7e{bottom:524.141467pt;}
.y32{bottom:527.282800pt;}
.ya3{bottom:527.376667pt;}
.ya{bottom:533.568133pt;}
.y59{bottom:540.655467pt;}
.y7d{bottom:542.390400pt;}
.y31{bottom:545.290000pt;}
.ya2{bottom:545.376667pt;}
.y9{bottom:551.568133pt;}
.y58{bottom:559.048933pt;}
.y7c{bottom:560.639200pt;}
.y30{bottom:563.297200pt;}
.ya1{bottom:563.376667pt;}
.y8{bottom:569.568133pt;}
.y57{bottom:577.442267pt;}
.y7b{bottom:578.888133pt;}
.y2f{bottom:581.304400pt;}
.ya0{bottom:581.376667pt;}
.y7{bottom:587.568133pt;}
.y56{bottom:595.835733pt;}
.y7a{bottom:597.136933pt;}
.y2e{bottom:599.311733pt;}
.y9f{bottom:599.376667pt;}
.y6{bottom:605.568133pt;}
.y55{bottom:614.229200pt;}
.y79{bottom:615.385867pt;}
.y2d{bottom:617.318933pt;}
.y9e{bottom:617.376667pt;}
.y54{bottom:632.622533pt;}
.y78{bottom:633.634667pt;}
.y2c{bottom:635.326133pt;}
.y9d{bottom:635.376667pt;}
.y53{bottom:651.016000pt;}
.y77{bottom:651.883467pt;}
.y2b{bottom:653.333333pt;}
.y9c{bottom:653.376667pt;}
.y52{bottom:669.409467pt;}
.y76{bottom:670.132400pt;}
.y2a{bottom:671.340533pt;}
.y9b{bottom:671.376667pt;}
.y51{bottom:687.802933pt;}
.y5{bottom:687.820133pt;}
.y75{bottom:688.381200pt;}
.y29{bottom:689.347733pt;}
.y9a{bottom:689.376667pt;}
.y50{bottom:706.196400pt;}
.y74{bottom:706.630000pt;}
.y28{bottom:707.354933pt;}
.y99{bottom:707.376667pt;}
.y4{bottom:717.825333pt;}
.y4f{bottom:724.589733pt;}
.y73{bottom:724.878933pt;}
.y27{bottom:725.362267pt;}
.y98{bottom:725.376667pt;}
.y4e{bottom:742.983200pt;}
.y72{bottom:743.127733pt;}
.y26{bottom:743.369333pt;}
.y97{bottom:743.376667pt;}
.y25{bottom:761.376667pt;}
.y3{bottom:782.803067pt;}
.y2{bottom:782.803200pt;}
.y23{bottom:798.479067pt;}
.y4c{bottom:798.480267pt;}
.y22{bottom:798.497600pt;}
.y4b{bottom:798.498800pt;}
.h8{height:17.561515pt;}
.h3{height:26.357333pt;}
.h2{height:30.122667pt;}
.h9{height:30.250667pt;}
.h4{height:37.653333pt;}
.h6{height:37.813333pt;}
.h7{height:39.711893pt;}
.h5{height:45.184000pt;}
.h0{height:869.292000pt;}
.h1{height:869.333333pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x5{left:102.047200pt;}
.x1{left:151.181067pt;}
.x3{left:170.078667pt;}
.x2{left:392.590800pt;}
.x4{left:506.592667pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  