
    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_5e9828a4c12aad49f73128e0.woff')format("woff");}.ff1{font-family:ff1;line-height:0.898000;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_478e2e88016650a0f46980b1.woff')format("woff");}.ff2{font-family:ff2;line-height:0.906000;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_5a0fd06d9b15a16d2fa5d153.woff')format("woff");}.ff3{font-family:ff3;line-height:0.899000;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_8efff6cec90727e0aaa956d5.woff')format("woff");}.ff4{font-family:ff4;line-height:1.056641;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_b1389ec297426d90b7f2ebdc.woff')format("woff");}.ff5{font-family:ff5;line-height:0.109000;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_17948d5daa78f4f77dc35eee.woff')format("woff");}.ff6{font-family:ff6;line-height:0.664000;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;}
.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);}
.m1{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);}
.v4{vertical-align:-21.707886px;}
.v2{vertical-align:-2.918701px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.918335px;}
.v5{vertical-align:16.527236px;}
.v1{vertical-align:21.708252px;}
.ls15{letter-spacing:-4.823891px;}
.lsd{letter-spacing:-0.944454px;}
.lsb{letter-spacing:-0.025405px;}
.ls8{letter-spacing:-0.023910px;}
.lse{letter-spacing:-0.017933px;}
.ls4{letter-spacing:-0.011955px;}
.ls16{letter-spacing:-0.010760px;}
.lsa{letter-spacing:-0.010162px;}
.ls3{letter-spacing:-0.008608px;}
.ls5{letter-spacing:-0.005978px;}
.ls6{letter-spacing:-0.005380px;}
.ls9{letter-spacing:-0.005081px;}
.ls14{letter-spacing:-0.004543px;}
.ls2{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.005380px;}
.ls10{letter-spacing:0.005978px;}
.lsc{letter-spacing:0.007173px;}
.ls12{letter-spacing:0.009086px;}
.ls11{letter-spacing:0.013629px;}
.lsf{letter-spacing:0.017933px;}
.ls1{letter-spacing:0.533982px;}
.ls0{letter-spacing:2.961936px;}
.ls13{letter-spacing:17.562071px;}
.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:-0.065873px;}
.ws8{word-spacing:-0.065753px;}
.wsa{word-spacing:-0.059776px;}
.wsd{word-spacing:-0.059058px;}
.ws9{word-spacing:-0.054516px;}
.wsc{word-spacing:-0.053798px;}
.wse{word-spacing:-0.048419px;}
.wsb{word-spacing:-0.047820px;}
.ws0{word-spacing:-0.045430px;}
.ws6{word-spacing:-0.041843px;}
.ws3{word-spacing:-0.040647px;}
.ws2{word-spacing:-0.035865px;}
.ws4{word-spacing:0.000000px;}
.ws7{word-spacing:13.401181px;}
.ws5{word-spacing:13.449600px;}
._19{margin-left:-16.610300px;}
._3{margin-left:-7.049556px;}
._7{margin-left:-5.845133px;}
._a{margin-left:-4.315468px;}
._17{margin-left:-3.277167px;}
._0{margin-left:-2.160538px;}
._b{margin-left:-1.104839px;}
._15{width:1.847066px;}
._1e{width:3.032298px;}
._1b{width:4.841825px;}
._11{width:7.754943px;}
._d{width:8.914395px;}
._e{width:9.966409px;}
._c{width:11.041867px;}
._6{width:12.476636px;}
._4{width:13.957601px;}
._2{width:15.009653px;}
._5{width:16.031816px;}
._10{width:17.765309px;}
._18{width:19.062437px;}
._16{width:20.449233px;}
._1{width:21.545123px;}
._14{width:22.609723px;}
._12{width:24.053700px;}
._1a{width:25.302684px;}
._1d{width:26.476076px;}
._8{width:29.847352px;}
._1c{width:31.639223px;}
._9{width:35.566121px;}
._f{width:59.765937px;}
._13{width:168.833358px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:44.832000px;}
.fs2{font-size:45.429600px;}
.fs6{font-size:50.809198px;}
.fs4{font-size:53.798400px;}
.fs1{font-size:59.775599px;}
.fs3{font-size:65.872799px;}
.fs5{font-size:71.730600px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y26{bottom:49.419000px;}
.y25{bottom:64.363896px;}
.y24{bottom:79.308151px;}
.y52{bottom:98.706971px;}
.y70{bottom:98.707310px;}
.y7a{bottom:99.530994px;}
.y23{bottom:115.514463px;}
.y51{bottom:116.635168px;}
.y6f{bottom:116.635506px;}
.y22{bottom:133.456109px;}
.y50{bottom:134.576814px;}
.y6e{bottom:134.576949px;}
.y21{bottom:151.384305px;}
.y4f{bottom:152.505010px;}
.y95{bottom:164.462640px;}
.y20{bottom:169.312501px;}
.y6d{bottom:170.445964px;}
.y4e{bottom:170.446656px;}
.y94{bottom:180.892671px;}
.y1f{bottom:187.253062px;}
.y4d{bottom:188.374161px;}
.y93{bottom:197.336152px;}
.y1e{bottom:205.181259px;}
.y4c{bottom:206.302357px;}
.y92{bottom:213.779633px;}
.y1d{bottom:223.109455px;}
.y4b{bottom:224.243757px;}
.y6c{bottom:224.244003px;}
.y91{bottom:230.209664px;}
.y1c{bottom:241.051101px;}
.y6b{bottom:242.171467px;}
.y4a{bottom:242.171954px;}
.y90{bottom:246.653145px;}
.y1b{bottom:258.979297px;}
.y6a{bottom:260.099664px;}
.y49{bottom:260.100150px;}
.y8f{bottom:263.096626px;}
.y1a{bottom:276.907654px;}
.y48{bottom:278.040160px;}
.y69{bottom:278.041310px;}
.y8e{bottom:279.526658px;}
.y19{bottom:294.848461px;}
.y47{bottom:295.968357px;}
.y68{bottom:295.969506px;}
.y18{bottom:312.776658px;}
.y8d{bottom:313.895409px;}
.y46{bottom:313.896553px;}
.y17{bottom:330.704854px;}
.y8c{bottom:331.837055px;}
.y45{bottom:331.838199px;}
.y16{bottom:348.646500px;}
.y8b{bottom:349.765252px;}
.y44{bottom:349.766395px;}
.y8a{bottom:367.693448px;}
.y43{bottom:367.694592px;}
.y15{bottom:384.516129px;}
.y89{bottom:385.635094px;}
.y42{bottom:385.636238px;}
.y88{bottom:403.563290px;}
.y41{bottom:403.564434px;}
.y87{bottom:421.491487px;}
.y67{bottom:421.491994px;}
.y40{bottom:421.492630px;}
.y86{bottom:439.433133px;}
.y66{bottom:439.433640px;}
.y14{bottom:448.074006px;}
.y85{bottom:457.361329px;}
.y65{bottom:457.361836px;}
.y3f{bottom:457.362168px;}
.y13{bottom:464.517015px;}
.y84{bottom:475.302975px;}
.y64{bottom:475.303123px;}
.yad{bottom:487.251022px;}
.y83{bottom:493.231171px;}
.y63{bottom:493.231319px;}
.y12{bottom:497.384546px;}
.yac{bottom:503.693123px;}
.y3e{bottom:505.178315px;}
.y82{bottom:511.159368px;}
.y62{bottom:511.159515px;}
.y11{bottom:513.828027px;}
.yab{bottom:520.123154px;}
.y3d{bottom:523.119961px;}
.y81{bottom:529.101013px;}
.y10{bottom:530.258059px;}
.yaa{bottom:536.566635px;}
.y3c{bottom:541.048157px;}
.yf{bottom:546.701540px;}
.y61{bottom:547.029007px;}
.ya9{bottom:553.008507px;}
.y3b{bottom:558.989803px;}
.ye{bottom:563.145021px;}
.y80{bottom:564.957138px;}
.ya8{bottom:569.438539px;}
.y3a{bottom:576.917796px;}
.yd{bottom:579.575052px;}
.ya7{bottom:585.882019px;}
.y39{bottom:594.844932px;}
.y60{bottom:594.845826px;}
.yc{bottom:596.018533px;}
.ya6{bottom:602.324982px;}
.yb{bottom:612.462014px;}
.y38{bottom:612.786578px;}
.y7f{bottom:612.786781px;}
.y5f{bottom:612.787472px;}
.ya5{bottom:618.754013px;}
.ya{bottom:628.892045px;}
.y37{bottom:630.714774px;}
.y7e{bottom:630.714977px;}
.y5e{bottom:630.715180px;}
.ya4{bottom:635.197494px;}
.y9{bottom:645.335526px;}
.y36{bottom:648.642970px;}
.y7d{bottom:648.643173px;}
.y5d{bottom:648.643377px;}
.ya3{bottom:651.639976px;}
.y8{bottom:661.779007px;}
.y5c{bottom:666.584201px;}
.y79{bottom:666.584469px;}
.y35{bottom:666.584616px;}
.y7c{bottom:666.584819px;}
.ya2{bottom:668.070007px;}
.ya1{bottom:684.511971px;}
.y5b{bottom:684.512397px;}
.y78{bottom:684.512665px;}
.y34{bottom:684.512813px;}
.ya0{bottom:700.955452px;}
.y5a{bottom:702.440593px;}
.y33{bottom:702.440658px;}
.y77{bottom:702.440862px;}
.y9f{bottom:717.385483px;}
.y59{bottom:720.382239px;}
.y32{bottom:720.382304px;}
.y7{bottom:722.988145px;}
.y9e{bottom:733.827202px;}
.y7b{bottom:738.309745px;}
.y76{bottom:738.310333px;}
.y58{bottom:738.310436px;}
.y31{bottom:738.310500px;}
.y6{bottom:740.915529px;}
.y9d{bottom:750.270683px;}
.y30{bottom:756.237942px;}
.y57{bottom:756.238530px;}
.y5{bottom:757.359010px;}
.y9c{bottom:766.700715px;}
.y75{bottom:774.179034px;}
.y2f{bottom:774.179588px;}
.y9b{bottom:783.144196px;}
.y4{bottom:787.396546px;}
.y74{bottom:792.107230px;}
.y2e{bottom:792.107784px;}
.y9a{bottom:799.586448px;}
.y2d{bottom:810.035279px;}
.y56{bottom:810.035305px;}
.y73{bottom:810.035427px;}
.y99{bottom:816.016479px;}
.y2c{bottom:827.976925px;}
.y55{bottom:827.976951px;}
.y72{bottom:827.977073px;}
.y98{bottom:832.458672px;}
.y2b{bottom:845.905122px;}
.y54{bottom:845.905147px;}
.y71{bottom:845.905269px;}
.y3{bottom:845.931945px;}
.y97{bottom:848.902153px;}
.y2a{bottom:863.833318px;}
.y53{bottom:863.833344px;}
.y96{bottom:865.332184px;}
.y2{bottom:872.824614px;}
.y29{bottom:881.774990px;}
.y28{bottom:899.703186px;}
.y1{bottom:899.730195px;}
.y27{bottom:934.519684px;}
.h9{height:34.956728px;}
.h4{height:37.013299px;}
.h26{height:37.016742px;}
.h27{height:37.019006px;}
.h6{height:37.228493px;}
.h8{height:41.125612px;}
.hd{height:41.126424px;}
.hf{height:41.126595px;}
.hb{height:41.127017px;}
.h15{height:41.127049px;}
.h10{height:41.127563px;}
.h17{height:41.127730px;}
.h18{height:41.128378px;}
.ha{height:41.128416px;}
.he{height:41.128419px;}
.h14{height:41.128900px;}
.hc{height:41.129855px;}
.h5{height:43.395975px;}
.h12{height:47.909604px;}
.h11{height:47.964519px;}
.h7{height:49.637575px;}
.h1b{height:52.962719px;}
.h13{height:52.963494px;}
.h19{height:52.963536px;}
.h1c{height:52.963714px;}
.h20{height:52.964266px;}
.h1f{height:52.964304px;}
.h1a{height:52.964355px;}
.h21{height:52.964670px;}
.h1d{height:52.964772px;}
.h24{height:52.964856px;}
.h25{height:52.964998px;}
.h16{height:52.965632px;}
.h22{height:52.966031px;}
.h23{height:52.966655px;}
.h1e{height:52.967285px;}
.h2{height:59.565422px;}
.h3{height:78.009197px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w0{width:659.055000px;}
.w1{width:659.250000px;}
.x0{left:0.000000px;}
.x8{left:59.103000px;}
.x5{left:63.611999px;}
.x4{left:80.837997px;}
.xc{left:98.226568px;}
.x7{left:101.627998px;}
.xa{left:102.775497px;}
.x1{left:120.568497px;}
.x6{left:140.939998px;}
.x2{left:145.272653px;}
.x3{left:172.825965px;}
.x9{left:177.079502px;}
.xb{left:254.947494px;}
@media print{
.v4{vertical-align:-19.295898pt;}
.v2{vertical-align:-2.594401pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.594076pt;}
.v5{vertical-align:14.690876pt;}
.v1{vertical-align:19.296224pt;}
.ls15{letter-spacing:-4.287903pt;}
.lsd{letter-spacing:-0.839515pt;}
.lsb{letter-spacing:-0.022582pt;}
.ls8{letter-spacing:-0.021254pt;}
.lse{letter-spacing:-0.015940pt;}
.ls4{letter-spacing:-0.010627pt;}
.ls16{letter-spacing:-0.009564pt;}
.lsa{letter-spacing:-0.009033pt;}
.ls3{letter-spacing:-0.007651pt;}
.ls5{letter-spacing:-0.005313pt;}
.ls6{letter-spacing:-0.004782pt;}
.ls9{letter-spacing:-0.004516pt;}
.ls14{letter-spacing:-0.004038pt;}
.ls2{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.004782pt;}
.ls10{letter-spacing:0.005313pt;}
.lsc{letter-spacing:0.006376pt;}
.ls12{letter-spacing:0.008076pt;}
.ls11{letter-spacing:0.012115pt;}
.lsf{letter-spacing:0.015940pt;}
.ls1{letter-spacing:0.474651pt;}
.ls0{letter-spacing:2.632832pt;}
.ls13{letter-spacing:15.610730pt;}
.ws1{word-spacing:-0.058554pt;}
.ws8{word-spacing:-0.058447pt;}
.wsa{word-spacing:-0.053134pt;}
.wsd{word-spacing:-0.052496pt;}
.ws9{word-spacing:-0.048458pt;}
.wsc{word-spacing:-0.047820pt;}
.wse{word-spacing:-0.043039pt;}
.wsb{word-spacing:-0.042507pt;}
.ws0{word-spacing:-0.040382pt;}
.ws6{word-spacing:-0.037194pt;}
.ws3{word-spacing:-0.036131pt;}
.ws2{word-spacing:-0.031880pt;}
.ws4{word-spacing:0.000000pt;}
.ws7{word-spacing:11.912161pt;}
.ws5{word-spacing:11.955200pt;}
._19{margin-left:-14.764711pt;}
._3{margin-left:-6.266272pt;}
._7{margin-left:-5.195674pt;}
._a{margin-left:-3.835972pt;}
._17{margin-left:-2.913037pt;}
._0{margin-left:-1.920478pt;}
._b{margin-left:-0.982079pt;}
._15{width:1.641836pt;}
._1e{width:2.695376pt;}
._1b{width:4.303845pt;}
._11{width:6.893283pt;}
._d{width:7.923906pt;}
._e{width:8.859031pt;}
._c{width:9.814993pt;}
._6{width:11.090343pt;}
._4{width:12.406757pt;}
._2{width:13.341914pt;}
._5{width:14.250503pt;}
._10{width:15.791385pt;}
._18{width:16.944388pt;}
._16{width:18.177096pt;}
._1{width:19.151221pt;}
._14{width:20.097531pt;}
._12{width:21.381067pt;}
._1a{width:22.491274pt;}
._1d{width:23.534290pt;}
._8{width:26.530979pt;}
._1c{width:28.123754pt;}
._9{width:31.614330pt;}
._f{width:53.125277pt;}
._13{width:150.074096pt;}
.fs7{font-size:39.850667pt;}
.fs2{font-size:40.381867pt;}
.fs6{font-size:45.163732pt;}
.fs4{font-size:47.820800pt;}
.fs1{font-size:53.133865pt;}
.fs3{font-size:58.553599pt;}
.fs5{font-size:63.760533pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:43.928000pt;}
.y25{bottom:57.212352pt;}
.y24{bottom:70.496134pt;}
.y52{bottom:87.739530pt;}
.y70{bottom:87.739831pt;}
.y7a{bottom:88.471995pt;}
.y23{bottom:102.679522pt;}
.y51{bottom:103.675705pt;}
.y6f{bottom:103.676006pt;}
.y22{bottom:118.627652pt;}
.y50{bottom:119.623834pt;}
.y6e{bottom:119.623955pt;}
.y21{bottom:134.563827pt;}
.y4f{bottom:135.560009pt;}
.y95{bottom:146.189013pt;}
.y20{bottom:150.500001pt;}
.y6d{bottom:151.507524pt;}
.y4e{bottom:151.508139pt;}
.y94{bottom:160.793485pt;}
.y1f{bottom:166.447167pt;}
.y4d{bottom:167.443698pt;}
.y93{bottom:175.409913pt;}
.y1e{bottom:182.383341pt;}
.y4c{bottom:183.379873pt;}
.y92{bottom:190.026340pt;}
.y1d{bottom:198.319516pt;}
.y4b{bottom:199.327784pt;}
.y6c{bottom:199.328003pt;}
.y91{bottom:204.630813pt;}
.y1c{bottom:214.267645pt;}
.y6b{bottom:215.263527pt;}
.y4a{bottom:215.263959pt;}
.y90{bottom:219.247240pt;}
.y1b{bottom:230.203820pt;}
.y6a{bottom:231.199701pt;}
.y49{bottom:231.200133pt;}
.y8f{bottom:233.863668pt;}
.y1a{bottom:246.140137pt;}
.y48{bottom:247.146809pt;}
.y69{bottom:247.147831pt;}
.y8e{bottom:248.468140pt;}
.y19{bottom:262.087521pt;}
.y47{bottom:263.082984pt;}
.y68{bottom:263.084005pt;}
.y18{bottom:278.023696pt;}
.y8d{bottom:279.018142pt;}
.y46{bottom:279.019158pt;}
.y17{bottom:293.959870pt;}
.y8c{bottom:294.966271pt;}
.y45{bottom:294.967288pt;}
.y16{bottom:309.908000pt;}
.y8b{bottom:310.902446pt;}
.y44{bottom:310.903463pt;}
.y8a{bottom:326.838620pt;}
.y43{bottom:326.839637pt;}
.y15{bottom:341.792114pt;}
.y89{bottom:342.786750pt;}
.y42{bottom:342.787767pt;}
.y88{bottom:358.722925pt;}
.y41{bottom:358.723941pt;}
.y87{bottom:374.659099pt;}
.y67{bottom:374.659550pt;}
.y40{bottom:374.660116pt;}
.y86{bottom:390.607229pt;}
.y66{bottom:390.607680pt;}
.y14{bottom:398.288005pt;}
.y85{bottom:406.543403pt;}
.y65{bottom:406.543854pt;}
.y3f{bottom:406.544149pt;}
.y13{bottom:412.904013pt;}
.y84{bottom:422.491533pt;}
.y64{bottom:422.491665pt;}
.yad{bottom:433.112020pt;}
.y83{bottom:438.427708pt;}
.y63{bottom:438.427839pt;}
.y12{bottom:442.119597pt;}
.yac{bottom:447.727220pt;}
.y3e{bottom:449.047391pt;}
.y82{bottom:454.363882pt;}
.y62{bottom:454.364014pt;}
.y11{bottom:456.736024pt;}
.yab{bottom:462.331692pt;}
.y3d{bottom:464.995521pt;}
.y81{bottom:470.312012pt;}
.y10{bottom:471.340497pt;}
.yaa{bottom:476.948120pt;}
.y3c{bottom:480.931695pt;}
.yf{bottom:485.956924pt;}
.y61{bottom:486.248007pt;}
.ya9{bottom:491.563117pt;}
.y3b{bottom:496.879825pt;}
.ye{bottom:500.573352pt;}
.y80{bottom:502.184123pt;}
.ya8{bottom:506.167590pt;}
.y3a{bottom:512.815819pt;}
.yd{bottom:515.177824pt;}
.ya7{bottom:520.784017pt;}
.y39{bottom:528.751050pt;}
.y60{bottom:528.751845pt;}
.yc{bottom:529.794252pt;}
.ya6{bottom:535.399984pt;}
.yb{bottom:544.410679pt;}
.y38{bottom:544.699180pt;}
.y7f{bottom:544.699361pt;}
.y5f{bottom:544.699975pt;}
.ya5{bottom:550.003567pt;}
.ya{bottom:559.015151pt;}
.y37{bottom:560.635355pt;}
.y7e{bottom:560.635535pt;}
.y5e{bottom:560.635716pt;}
.ya4{bottom:564.619995pt;}
.y9{bottom:573.631579pt;}
.y36{bottom:576.571529pt;}
.y7d{bottom:576.571710pt;}
.y5d{bottom:576.571890pt;}
.ya3{bottom:579.235534pt;}
.y8{bottom:588.248006pt;}
.y5c{bottom:592.519289pt;}
.y79{bottom:592.519528pt;}
.y35{bottom:592.519659pt;}
.y7c{bottom:592.519839pt;}
.ya2{bottom:593.840007pt;}
.ya1{bottom:608.455085pt;}
.y5b{bottom:608.455464pt;}
.y78{bottom:608.455702pt;}
.y34{bottom:608.455833pt;}
.ya0{bottom:623.071513pt;}
.y5a{bottom:624.391639pt;}
.y33{bottom:624.391696pt;}
.y77{bottom:624.391877pt;}
.y9f{bottom:637.675985pt;}
.y59{bottom:640.339768pt;}
.y32{bottom:640.339825pt;}
.y7{bottom:642.656129pt;}
.y9e{bottom:652.290846pt;}
.y7b{bottom:656.275329pt;}
.y76{bottom:656.275852pt;}
.y58{bottom:656.275943pt;}
.y31{bottom:656.276000pt;}
.y6{bottom:658.591581pt;}
.y9d{bottom:666.907274pt;}
.y30{bottom:672.211504pt;}
.y57{bottom:672.212026pt;}
.y5{bottom:673.208009pt;}
.y9c{bottom:681.511746pt;}
.y75{bottom:688.159141pt;}
.y2f{bottom:688.159634pt;}
.y9b{bottom:696.128174pt;}
.y4{bottom:699.908041pt;}
.y74{bottom:704.095316pt;}
.y2e{bottom:704.095808pt;}
.y9a{bottom:710.743509pt;}
.y2d{bottom:720.031359pt;}
.y56{bottom:720.031382pt;}
.y73{bottom:720.031491pt;}
.y99{bottom:725.347981pt;}
.y2c{bottom:735.979489pt;}
.y55{bottom:735.979512pt;}
.y72{bottom:735.979620pt;}
.y98{bottom:739.963264pt;}
.y2b{bottom:751.915664pt;}
.y54{bottom:751.915687pt;}
.y71{bottom:751.915795pt;}
.y3{bottom:751.939507pt;}
.y97{bottom:754.579692pt;}
.y2a{bottom:767.851838pt;}
.y53{bottom:767.851861pt;}
.y96{bottom:769.184164pt;}
.y2{bottom:775.844101pt;}
.y29{bottom:783.799991pt;}
.y28{bottom:799.736165pt;}
.y1{bottom:799.760173pt;}
.y27{bottom:830.684164pt;}
.h9{height:31.072648pt;}
.h4{height:32.900710pt;}
.h26{height:32.903771pt;}
.h27{height:32.905783pt;}
.h6{height:33.091994pt;}
.h8{height:36.556099pt;}
.hd{height:36.556822pt;}
.hf{height:36.556973pt;}
.hb{height:36.557348pt;}
.h15{height:36.557377pt;}
.h10{height:36.557834pt;}
.h17{height:36.557983pt;}
.h18{height:36.558559pt;}
.ha{height:36.558592pt;}
.he{height:36.558595pt;}
.h14{height:36.559022pt;}
.hc{height:36.559871pt;}
.h5{height:38.574200pt;}
.h12{height:42.586315pt;}
.h11{height:42.635128pt;}
.h7{height:44.122289pt;}
.h1b{height:47.077972pt;}
.h13{height:47.078662pt;}
.h19{height:47.078699pt;}
.h1c{height:47.078857pt;}
.h20{height:47.079348pt;}
.h1f{height:47.079381pt;}
.h1a{height:47.079426pt;}
.h21{height:47.079707pt;}
.h1d{height:47.079798pt;}
.h24{height:47.079872pt;}
.h25{height:47.079999pt;}
.h16{height:47.080561pt;}
.h22{height:47.080917pt;}
.h23{height:47.081471pt;}
.h1e{height:47.082031pt;}
.h2{height:52.947042pt;}
.h3{height:69.341508pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w0{width:585.826667pt;}
.w1{width:586.000000pt;}
.x0{left:0.000000pt;}
.x8{left:52.536000pt;}
.x5{left:56.544000pt;}
.x4{left:71.855998pt;}
.xc{left:87.312505pt;}
.x7{left:90.335998pt;}
.xa{left:91.355998pt;}
.x1{left:107.171997pt;}
.x6{left:125.279998pt;}
.x2{left:129.131247pt;}
.x3{left:153.623080pt;}
.x9{left:157.404002pt;}
.xb{left:226.619995pt;}
}




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