
    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_1fefe8a49a15d6c6ba5ed1f6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.922000;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_ce1a638974985cae97f1f76f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.897000;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_2647dde148206f31da038d6a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_761c10a5182455575cf5d3c5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.623000;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_d2c6c7315c354632c6c7142f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.001000;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_b43a0de635950da02b95aa98.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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:ff7;src:url('chunks/assets/font_1f810811ecf57f0584bf884b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.001000;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:ff8;src:url('chunks/assets/font_1acefb41b8d5923d6e32b6ae.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.854000;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:ff9;src:url('chunks/assets/font_a5ba091ec70f9cf6a7accab7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.883000;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;}
.m3{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.me{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);}
.m10{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,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);}
.m17{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.mf{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);}
.m4{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m11{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);}
.m8{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.002706px;}
.ls2{letter-spacing:35.117518px;}
.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;}
}
.ws1{word-spacing:-27.364958px;}
.ws0{word-spacing:-27.216236px;}
.ws2e{word-spacing:-18.119301px;}
.ws4f{word-spacing:-16.326021px;}
.ws3a{word-spacing:-16.039096px;}
.wsc{word-spacing:-15.752128px;}
.ws25{word-spacing:-15.178322px;}
.ws2b{word-spacing:-13.528504px;}
.ws22{word-spacing:-13.126810px;}
.ws38{word-spacing:-13.098117px;}
.ws48{word-spacing:-12.667730px;}
.ws26{word-spacing:-12.554502px;}
.ws28{word-spacing:-12.524268px;}
.ws18{word-spacing:-12.452536px;}
.ws4e{word-spacing:-12.309074px;}
.ws4b{word-spacing:-12.165612px;}
.ws37{word-spacing:-12.093880px;}
.ws2d{word-spacing:-12.022149px;}
.ws1f{word-spacing:-11.950418px;}
.ws1d{word-spacing:-11.946113px;}
.ws1b{word-spacing:-11.878687px;}
.ws14{word-spacing:-11.806956px;}
.ws6{word-spacing:-11.735224px;}
.ws20{word-spacing:-11.709748px;}
.ws35{word-spacing:-11.663493px;}
.ws4a{word-spacing:-11.591762px;}
.ws49{word-spacing:-11.584216px;}
.ws43{word-spacing:-11.520031px;}
.ws33{word-spacing:-11.448300px;}
.ws40{word-spacing:-11.376568px;}
.ws2a{word-spacing:-11.304837px;}
.ws50{word-spacing:-11.269691px;}
.ws42{word-spacing:-11.233106px;}
.ws19{word-spacing:-11.161375px;}
.ws39{word-spacing:-11.089644px;}
.ws27{word-spacing:-11.024435px;}
.ws41{word-spacing:-10.730988px;}
.ws32{word-spacing:-10.444063px;}
.ws15{word-spacing:-10.311569px;}
.ws44{word-spacing:-10.300600px;}
.ws21{word-spacing:-10.223808px;}
.ws34{word-spacing:-9.798482px;}
.ws1a{word-spacing:-9.699102px;}
.ws36{word-spacing:-9.655020px;}
.wsa{word-spacing:-9.583288px;}
.ws47{word-spacing:-9.296364px;}
.wse{word-spacing:-8.722514px;}
.wsf{word-spacing:-8.714857px;}
.ws46{word-spacing:-8.650783px;}
.ws3e{word-spacing:-7.861740px;}
.ws3f{word-spacing:-7.790008px;}
.ws24{word-spacing:-7.609770px;}
.ws4d{word-spacing:-7.503084px;}
.ws52{word-spacing:-6.857503px;}
.wsd{word-spacing:-6.714040px;}
.ws1c{word-spacing:-6.077893px;}
.ws23{word-spacing:-5.996728px;}
.ws11{word-spacing:-5.638072px;}
.ws45{word-spacing:-5.351148px;}
.ws2f{word-spacing:-5.279416px;}
.ws16{word-spacing:-4.992492px;}
.ws3b{word-spacing:-4.346911px;}
.ws12{word-spacing:-4.163808px;}
.ws1e{word-spacing:-4.036285px;}
.ws13{word-spacing:-3.988255px;}
.wsb{word-spacing:-3.916524px;}
.ws17{word-spacing:-3.528514px;}
.ws30{word-spacing:-3.486136px;}
.ws9{word-spacing:-3.342674px;}
.ws51{word-spacing:-2.185740px;}
.ws10{word-spacing:-1.796682px;}
.ws2c{word-spacing:-1.119007px;}
.ws3c{word-spacing:-0.071731px;}
.ws5{word-spacing:-0.065455px;}
.ws7{word-spacing:0.000000px;}
.ws31{word-spacing:0.817736px;}
.ws3d{word-spacing:23.316758px;}
.ws4c{word-spacing:23.330638px;}
.ws3{word-spacing:32.227229px;}
.ws4{word-spacing:32.330521px;}
.ws2{word-spacing:38.680200px;}
.ws29{word-spacing:47.342460px;}
.ws8{word-spacing:56.810820px;}
._4{margin-left:-8.160100px;}
._8{margin-left:-5.738496px;}
._1{margin-left:-4.461678px;}
._3{margin-left:-3.223350px;}
._5{margin-left:-1.936742px;}
._9{width:1.004237px;}
._6{width:2.008474px;}
._2{width:3.223350px;}
._0{width:4.461678px;}
._b{width:23.384371px;}
._11{width:25.012252px;}
._a{width:26.540544px;}
._f{width:28.318510px;}
._7{width:29.983642px;}
._17{width:30.987878px;}
._10{width:32.063846px;}
._1b{width:34.359245px;}
._16{width:35.650406px;}
._19{width:39.165235px;}
._e{width:40.815053px;}
._1a{width:44.329882px;}
._18{width:46.266624px;}
._d{width:47.629517px;}
._14{width:51.431270px;}
._15{width:57.528422px;}
._13{width:63.840768px;}
._12{width:78.904320px;}
._c{width:94.684920px;}
.fc1{color:rgb(0,74,14);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:65.454600px;}
.fs4{font-size:71.731200px;}
.fs5{font-size:86.077200px;}
.fs2{font-size:103.292400px;}
.fs1{font-size:123.975000px;}
.fs0{font-size:148.722600px;}
.y0{bottom:0.000000px;}
.y23{bottom:133.750500px;}
.y8{bottom:178.582500px;}
.y43{bottom:180.861000px;}
.y63{bottom:197.398500px;}
.y42{bottom:204.696000px;}
.y82{bottom:207.958500px;}
.y7{bottom:213.252000px;}
.y62{bottom:221.235000px;}
.y41{bottom:228.532500px;}
.y81{bottom:231.795000px;}
.y6{bottom:235.609500px;}
.y61{bottom:255.904500px;}
.y40{bottom:263.202000px;}
.y80{bottom:266.464500px;}
.y60{bottom:279.741000px;}
.y22{bottom:283.527000px;}
.y3f{bottom:287.038500px;}
.y7f{bottom:290.301000px;}
.y5f{bottom:303.576000px;}
.y21{bottom:307.362000px;}
.y3e{bottom:310.873500px;}
.y7e{bottom:314.136000px;}
.y20{bottom:331.198500px;}
.y7d{bottom:337.972500px;}
.y5e{bottom:338.245500px;}
.y3d{bottom:345.543000px;}
.y7c{bottom:361.807500px;}
.y5d{bottom:362.082000px;}
.y1f{bottom:366.988500px;}
.y3c{bottom:380.214000px;}
.y94{bottom:381.534000px;}
.y7b{bottom:396.478500px;}
.y5c{bottom:396.751500px;}
.y3b{bottom:404.049000px;}
.y93{bottom:405.370500px;}
.y7a{bottom:420.313500px;}
.y5b{bottom:420.588000px;}
.y1e{bottom:422.481000px;}
.y3a{bottom:427.885500px;}
.y92{bottom:429.205500px;}
.y79{bottom:444.150000px;}
.y5a{bottom:444.423000px;}
.y1d{bottom:446.317500px;}
.y91{bottom:453.042000px;}
.y39{bottom:462.555000px;}
.y59{bottom:468.259500px;}
.y1c{bottom:470.152500px;}
.y90{bottom:476.877000px;}
.y78{bottom:478.819500px;}
.y38{bottom:486.391500px;}
.y8f{bottom:500.713500px;}
.y77{bottom:502.656000px;}
.y58{bottom:502.929000px;}
.y1b{bottom:505.944000px;}
.y37{bottom:510.226500px;}
.y8e{bottom:524.548500px;}
.y76{bottom:526.491000px;}
.y57{bottom:526.765500px;}
.y36{bottom:544.897500px;}
.y8d{bottom:548.385000px;}
.y56{bottom:550.600500px;}
.y1a{bottom:555.682500px;}
.y75{bottom:561.162000px;}
.y35{bottom:568.732500px;}
.y8c{bottom:572.220000px;}
.y19{bottom:579.517500px;}
.y55{bottom:585.271500px;}
.y74{bottom:595.831500px;}
.y18{bottom:603.354000px;}
.y34{bottom:603.403500px;}
.y54{bottom:609.106500px;}
.y8b{bottom:614.386500px;}
.y73{bottom:619.668000px;}
.y17{bottom:627.189000px;}
.y33{bottom:627.238500px;}
.y72{bottom:643.503000px;}
.y53{bottom:643.777500px;}
.y16{bottom:651.025500px;}
.y32{bottom:651.075000px;}
.y52{bottom:667.612500px;}
.y15{bottom:674.860500px;}
.y71{bottom:678.172500px;}
.y8a{bottom:678.447000px;}
.y31{bottom:685.744500px;}
.y51{bottom:691.449000px;}
.y14{bottom:698.697000px;}
.y70{bottom:702.009000px;}
.y89{bottom:702.283500px;}
.y30{bottom:709.581000px;}
.y13{bottom:722.532000px;}
.y6f{bottom:725.844000px;}
.y50{bottom:726.118500px;}
.y2f{bottom:733.416000px;}
.y12{bottom:746.368500px;}
.y6e{bottom:749.680500px;}
.y2e{bottom:757.252500px;}
.y4f{bottom:760.788000px;}
.y11{bottom:770.203500px;}
.y6d{bottom:773.515500px;}
.y2d{bottom:781.087500px;}
.y4e{bottom:784.624500px;}
.y10{bottom:794.040000px;}
.y6c{bottom:797.352000px;}
.y2c{bottom:804.924000px;}
.y88{bottom:808.459500px;}
.y4d{bottom:819.294000px;}
.y6b{bottom:821.187000px;}
.y2b{bottom:828.759000px;}
.yf{bottom:829.830000px;}
.y5{bottom:837.051000px;}
.y4c{bottom:843.130500px;}
.y6a{bottom:845.023500px;}
.y2a{bottom:852.595500px;}
.y87{bottom:866.965500px;}
.ye{bottom:877.750500px;}
.y4b{bottom:877.800000px;}
.y69{bottom:879.693000px;}
.y29{bottom:887.265000px;}
.y86{bottom:890.802000px;}
.y4a{bottom:901.636500px;}
.y4{bottom:901.981500px;}
.y68{bottom:903.529500px;}
.y28{bottom:911.100000px;}
.y85{bottom:914.637000px;}
.y67{bottom:927.364500px;}
.y27{bottom:934.936500px;}
.y49{bottom:936.306000px;}
.yd{bottom:941.811000px;}
.y84{bottom:949.308000px;}
.y66{bottom:951.201000px;}
.y26{bottom:958.771500px;}
.y3{bottom:959.802000px;}
.y48{bottom:960.142500px;}
.yc{bottom:965.646000px;}
.y65{bottom:975.036000px;}
.y25{bottom:982.608000px;}
.y47{bottom:983.977500px;}
.yb{bottom:989.482500px;}
.y83{bottom:1007.814000px;}
.y2{bottom:1009.116000px;}
.y64{bottom:1010.827500px;}
.y24{bottom:1018.399500px;}
.y46{bottom:1018.648500px;}
.ya{bottom:1024.152000px;}
.y45{bottom:1042.483500px;}
.y1{bottom:1058.431500px;}
.y9{bottom:1066.318500px;}
.y44{bottom:1066.320000px;}
.hb{height:44.832000px;}
.ha{height:48.705485px;}
.h5{height:49.090950px;}
.h9{height:51.359539px;}
.h6{height:53.798400px;}
.h8{height:61.631275px;}
.h4{height:71.684926px;}
.h7{height:73.957358px;}
.h3{height:86.038650px;}
.h2{height:106.485382px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:148.819500px;}
.xc{left:170.280000px;}
.x1{left:173.925000px;}
.x2{left:180.669000px;}
.xa{left:192.717000px;}
.x1b{left:220.399500px;}
.x4{left:234.046500px;}
.x24{left:238.855500px;}
.x25{left:246.319500px;}
.x21{left:266.539500px;}
.x13{left:282.261000px;}
.x1c{left:284.995500px;}
.x1d{left:294.223500px;}
.xd{left:303.451500px;}
.x18{left:312.679500px;}
.xe{left:314.409000px;}
.x14{left:315.706500px;}
.xf{left:331.152000px;}
.x16{left:340.362000px;}
.x3{left:341.422500px;}
.x26{left:347.826000px;}
.x23{left:355.935000px;}
.x22{left:358.818000px;}
.x7{left:367.389000px;}
.x6{left:370.042500px;}
.x17{left:377.274000px;}
.x5{left:379.945500px;}
.x8{left:386.265000px;}
.x1e{left:395.730000px;}
.x11{left:397.447500px;}
.x15{left:398.757000px;}
.x12{left:403.756500px;}
.x1f{left:430.126500px;}
.xb{left:442.066500px;}
.x20{left:531.633000px;}
.x19{left:547.081500px;}
.x1a{left:667.044000px;}
.x27{left:668.751000px;}
.x10{left:738.190500px;}
.x28{left:742.575000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.002405pt;}
.ls2{letter-spacing:31.215572pt;}
.ws1{word-spacing:-24.324407pt;}
.ws0{word-spacing:-24.192210pt;}
.ws2e{word-spacing:-16.106045pt;}
.ws4f{word-spacing:-14.512019pt;}
.ws3a{word-spacing:-14.256975pt;}
.wsc{word-spacing:-14.001891pt;}
.ws25{word-spacing:-13.491842pt;}
.ws2b{word-spacing:-12.025337pt;}
.ws22{word-spacing:-11.668275pt;}
.ws38{word-spacing:-11.642771pt;}
.ws48{word-spacing:-11.260204pt;}
.ws26{word-spacing:-11.159558pt;}
.ws28{word-spacing:-11.132682pt;}
.ws18{word-spacing:-11.068921pt;}
.ws4e{word-spacing:-10.941399pt;}
.ws4b{word-spacing:-10.813877pt;}
.ws37{word-spacing:-10.750116pt;}
.ws2d{word-spacing:-10.686355pt;}
.ws1f{word-spacing:-10.622594pt;}
.ws1d{word-spacing:-10.618767pt;}
.ws1b{word-spacing:-10.558833pt;}
.ws14{word-spacing:-10.495072pt;}
.ws6{word-spacing:-10.431311pt;}
.ws20{word-spacing:-10.408665pt;}
.ws35{word-spacing:-10.367549pt;}
.ws4a{word-spacing:-10.303788pt;}
.ws49{word-spacing:-10.297081pt;}
.ws43{word-spacing:-10.240027pt;}
.ws33{word-spacing:-10.176266pt;}
.ws40{word-spacing:-10.112505pt;}
.ws2a{word-spacing:-10.048744pt;}
.ws50{word-spacing:-10.017503pt;}
.ws42{word-spacing:-9.984983pt;}
.ws19{word-spacing:-9.921222pt;}
.ws39{word-spacing:-9.857461pt;}
.ws27{word-spacing:-9.799498pt;}
.ws41{word-spacing:-9.538656pt;}
.ws32{word-spacing:-9.283611pt;}
.ws15{word-spacing:-9.165839pt;}
.ws44{word-spacing:-9.156089pt;}
.ws21{word-spacing:-9.087829pt;}
.ws34{word-spacing:-8.709762pt;}
.ws1a{word-spacing:-8.621424pt;}
.ws36{word-spacing:-8.582240pt;}
.wsa{word-spacing:-8.518479pt;}
.ws47{word-spacing:-8.263434pt;}
.wse{word-spacing:-7.753346pt;}
.wsf{word-spacing:-7.746539pt;}
.ws46{word-spacing:-7.689585pt;}
.ws3e{word-spacing:-6.988213pt;}
.ws3f{word-spacing:-6.924452pt;}
.ws24{word-spacing:-6.764240pt;}
.ws4d{word-spacing:-6.669408pt;}
.ws52{word-spacing:-6.095558pt;}
.wsd{word-spacing:-5.968036pt;}
.ws1c{word-spacing:-5.402571pt;}
.ws23{word-spacing:-5.330425pt;}
.ws11{word-spacing:-5.011620pt;}
.ws45{word-spacing:-4.756576pt;}
.ws2f{word-spacing:-4.692815pt;}
.ws16{word-spacing:-4.437770pt;}
.ws3b{word-spacing:-3.863921pt;}
.ws12{word-spacing:-3.701163pt;}
.ws1e{word-spacing:-3.587809pt;}
.ws13{word-spacing:-3.545115pt;}
.wsb{word-spacing:-3.481354pt;}
.ws17{word-spacing:-3.136457pt;}
.ws30{word-spacing:-3.098788pt;}
.ws9{word-spacing:-2.971266pt;}
.ws51{word-spacing:-1.942880pt;}
.ws10{word-spacing:-1.597051pt;}
.ws2c{word-spacing:-0.994673pt;}
.ws3c{word-spacing:-0.063761pt;}
.ws5{word-spacing:-0.058182pt;}
.ws7{word-spacing:0.000000pt;}
.ws31{word-spacing:0.726876pt;}
.ws3d{word-spacing:20.726007pt;}
.ws4c{word-spacing:20.738345pt;}
.ws3{word-spacing:28.646426pt;}
.ws4{word-spacing:28.738241pt;}
.ws2{word-spacing:34.382400pt;}
.ws29{word-spacing:42.082187pt;}
.ws8{word-spacing:50.498507pt;}
._4{margin-left:-7.253422pt;}
._8{margin-left:-5.100885pt;}
._1{margin-left:-3.965936pt;}
._3{margin-left:-2.865200pt;}
._5{margin-left:-1.721549pt;}
._9{width:0.892655pt;}
._6{width:1.785310pt;}
._2{width:2.865200pt;}
._0{width:3.965936pt;}
._b{width:20.786108pt;}
._11{width:22.233113pt;}
._a{width:23.591595pt;}
._f{width:25.172009pt;}
._7{width:26.652126pt;}
._17{width:27.544781pt;}
._10{width:28.501197pt;}
._1b{width:30.541551pt;}
._16{width:31.689250pt;}
._19{width:34.813542pt;}
._e{width:36.280047pt;}
._1a{width:39.404339pt;}
._18{width:41.125888pt;}
._d{width:42.337348pt;}
._14{width:45.716685pt;}
._15{width:51.136375pt;}
._13{width:56.747349pt;}
._12{width:70.137173pt;}
._c{width:84.164373pt;}
.fs3{font-size:58.181867pt;}
.fs4{font-size:63.761067pt;}
.fs5{font-size:76.513067pt;}
.fs2{font-size:91.815467pt;}
.fs1{font-size:110.200000pt;}
.fs0{font-size:132.197867pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:118.889333pt;}
.y8{bottom:158.740000pt;}
.y43{bottom:160.765333pt;}
.y63{bottom:175.465333pt;}
.y42{bottom:181.952000pt;}
.y82{bottom:184.852000pt;}
.y7{bottom:189.557333pt;}
.y62{bottom:196.653333pt;}
.y41{bottom:203.140000pt;}
.y81{bottom:206.040000pt;}
.y6{bottom:209.430667pt;}
.y61{bottom:227.470667pt;}
.y40{bottom:233.957333pt;}
.y80{bottom:236.857333pt;}
.y60{bottom:248.658667pt;}
.y22{bottom:252.024000pt;}
.y3f{bottom:255.145333pt;}
.y7f{bottom:258.045333pt;}
.y5f{bottom:269.845333pt;}
.y21{bottom:273.210667pt;}
.y3e{bottom:276.332000pt;}
.y7e{bottom:279.232000pt;}
.y20{bottom:294.398667pt;}
.y7d{bottom:300.420000pt;}
.y5e{bottom:300.662667pt;}
.y3d{bottom:307.149333pt;}
.y7c{bottom:321.606667pt;}
.y5d{bottom:321.850667pt;}
.y1f{bottom:326.212000pt;}
.y3c{bottom:337.968000pt;}
.y94{bottom:339.141333pt;}
.y7b{bottom:352.425333pt;}
.y5c{bottom:352.668000pt;}
.y3b{bottom:359.154667pt;}
.y93{bottom:360.329333pt;}
.y7a{bottom:373.612000pt;}
.y5b{bottom:373.856000pt;}
.y1e{bottom:375.538667pt;}
.y3a{bottom:380.342667pt;}
.y92{bottom:381.516000pt;}
.y79{bottom:394.800000pt;}
.y5a{bottom:395.042667pt;}
.y1d{bottom:396.726667pt;}
.y91{bottom:402.704000pt;}
.y39{bottom:411.160000pt;}
.y59{bottom:416.230667pt;}
.y1c{bottom:417.913333pt;}
.y90{bottom:423.890667pt;}
.y78{bottom:425.617333pt;}
.y38{bottom:432.348000pt;}
.y8f{bottom:445.078667pt;}
.y77{bottom:446.805333pt;}
.y58{bottom:447.048000pt;}
.y1b{bottom:449.728000pt;}
.y37{bottom:453.534667pt;}
.y8e{bottom:466.265333pt;}
.y76{bottom:467.992000pt;}
.y57{bottom:468.236000pt;}
.y36{bottom:484.353333pt;}
.y8d{bottom:487.453333pt;}
.y56{bottom:489.422667pt;}
.y1a{bottom:493.940000pt;}
.y75{bottom:498.810667pt;}
.y35{bottom:505.540000pt;}
.y8c{bottom:508.640000pt;}
.y19{bottom:515.126667pt;}
.y55{bottom:520.241333pt;}
.y74{bottom:529.628000pt;}
.y18{bottom:536.314667pt;}
.y34{bottom:536.358667pt;}
.y54{bottom:541.428000pt;}
.y8b{bottom:546.121333pt;}
.y73{bottom:550.816000pt;}
.y17{bottom:557.501333pt;}
.y33{bottom:557.545333pt;}
.y72{bottom:572.002667pt;}
.y53{bottom:572.246667pt;}
.y16{bottom:578.689333pt;}
.y32{bottom:578.733333pt;}
.y52{bottom:593.433333pt;}
.y15{bottom:599.876000pt;}
.y71{bottom:602.820000pt;}
.y8a{bottom:603.064000pt;}
.y31{bottom:609.550667pt;}
.y51{bottom:614.621333pt;}
.y14{bottom:621.064000pt;}
.y70{bottom:624.008000pt;}
.y89{bottom:624.252000pt;}
.y30{bottom:630.738667pt;}
.y13{bottom:642.250667pt;}
.y6f{bottom:645.194667pt;}
.y50{bottom:645.438667pt;}
.y2f{bottom:651.925333pt;}
.y12{bottom:663.438667pt;}
.y6e{bottom:666.382667pt;}
.y2e{bottom:673.113333pt;}
.y4f{bottom:676.256000pt;}
.y11{bottom:684.625333pt;}
.y6d{bottom:687.569333pt;}
.y2d{bottom:694.300000pt;}
.y4e{bottom:697.444000pt;}
.y10{bottom:705.813333pt;}
.y6c{bottom:708.757333pt;}
.y2c{bottom:715.488000pt;}
.y88{bottom:718.630667pt;}
.y4d{bottom:728.261333pt;}
.y6b{bottom:729.944000pt;}
.y2b{bottom:736.674667pt;}
.yf{bottom:737.626667pt;}
.y5{bottom:744.045333pt;}
.y4c{bottom:749.449333pt;}
.y6a{bottom:751.132000pt;}
.y2a{bottom:757.862667pt;}
.y87{bottom:770.636000pt;}
.ye{bottom:780.222667pt;}
.y4b{bottom:780.266667pt;}
.y69{bottom:781.949333pt;}
.y29{bottom:788.680000pt;}
.y86{bottom:791.824000pt;}
.y4a{bottom:801.454667pt;}
.y4{bottom:801.761333pt;}
.y68{bottom:803.137333pt;}
.y28{bottom:809.866667pt;}
.y85{bottom:813.010667pt;}
.y67{bottom:824.324000pt;}
.y27{bottom:831.054667pt;}
.y49{bottom:832.272000pt;}
.yd{bottom:837.165333pt;}
.y84{bottom:843.829333pt;}
.y66{bottom:845.512000pt;}
.y26{bottom:852.241333pt;}
.y3{bottom:853.157333pt;}
.y48{bottom:853.460000pt;}
.yc{bottom:858.352000pt;}
.y65{bottom:866.698667pt;}
.y25{bottom:873.429333pt;}
.y47{bottom:874.646667pt;}
.yb{bottom:879.540000pt;}
.y83{bottom:895.834667pt;}
.y2{bottom:896.992000pt;}
.y64{bottom:898.513333pt;}
.y24{bottom:905.244000pt;}
.y46{bottom:905.465333pt;}
.ya{bottom:910.357333pt;}
.y45{bottom:926.652000pt;}
.y1{bottom:940.828000pt;}
.y9{bottom:947.838667pt;}
.y44{bottom:947.840000pt;}
.hb{height:39.850667pt;}
.ha{height:43.293764pt;}
.h5{height:43.636400pt;}
.h9{height:45.652924pt;}
.h6{height:47.820800pt;}
.h8{height:54.783356pt;}
.h4{height:63.719934pt;}
.h7{height:65.739874pt;}
.h3{height:76.478800pt;}
.h2{height:94.653673pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:132.284000pt;}
.xc{left:151.360000pt;}
.x1{left:154.600000pt;}
.x2{left:160.594667pt;}
.xa{left:171.304000pt;}
.x1b{left:195.910667pt;}
.x4{left:208.041333pt;}
.x24{left:212.316000pt;}
.x25{left:218.950667pt;}
.x21{left:236.924000pt;}
.x13{left:250.898667pt;}
.x1c{left:253.329333pt;}
.x1d{left:261.532000pt;}
.xd{left:269.734667pt;}
.x18{left:277.937333pt;}
.xe{left:279.474667pt;}
.x14{left:280.628000pt;}
.xf{left:294.357333pt;}
.x16{left:302.544000pt;}
.x3{left:303.486667pt;}
.x26{left:309.178667pt;}
.x23{left:316.386667pt;}
.x22{left:318.949333pt;}
.x7{left:326.568000pt;}
.x6{left:328.926667pt;}
.x17{left:335.354667pt;}
.x5{left:337.729333pt;}
.x8{left:343.346667pt;}
.x1e{left:351.760000pt;}
.x11{left:353.286667pt;}
.x15{left:354.450667pt;}
.x12{left:358.894667pt;}
.x1f{left:382.334667pt;}
.xb{left:392.948000pt;}
.x20{left:472.562667pt;}
.x19{left:486.294667pt;}
.x1a{left:592.928000pt;}
.x27{left:594.445333pt;}
.x10{left:656.169333pt;}
.x28{left:660.066667pt;}
}




    .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; }
  