
    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_a63afca253fea29dfccb9bf1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.917480;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_04704f07eecad5a09f1764f6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.698000;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_75fe211872948a8777154257.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.091309;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_2c771ce346ae84e8282490e9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.660000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.001618px;}
.ls8{letter-spacing:0.002700px;}
.lsa{letter-spacing:16.351621px;}
.ls7{letter-spacing:16.364700px;}
.ls3{letter-spacing:16.576350px;}
.ls2{letter-spacing:16.582350px;}
.ls5{letter-spacing:18.010321px;}
.ls6{letter-spacing:18.010858px;}
.ls4{letter-spacing:18.028350px;}
.ls9{letter-spacing:32.734890px;}
.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;}
}
.ws8{word-spacing:-43.038600px;}
.ws4{word-spacing:-36.916394px;}
.ws7{word-spacing:-32.727300px;}
.ws1{word-spacing:-25.926392px;}
.ws5a{word-spacing:-25.200021px;}
.ws36{word-spacing:-25.069112px;}
.ws55{word-spacing:-24.152747px;}
.ws56{word-spacing:-24.021838px;}
.ws3c{word-spacing:-23.563656px;}
.wsf{word-spacing:-23.432747px;}
.ws31{word-spacing:-23.236383px;}
.ws29{word-spacing:-23.040019px;}
.ws2a{word-spacing:-22.974565px;}
.ws3d{word-spacing:-22.581837px;}
.ws22{word-spacing:-22.189109px;}
.ws48{word-spacing:-22.123655px;}
.ws10{word-spacing:-21.861836px;}
.ws43{word-spacing:-21.796382px;}
.ws35{word-spacing:-21.605377px;}
.wsc{word-spacing:-21.600018px;}
.ws30{word-spacing:-21.338200px;}
.ws11{word-spacing:-21.141836px;}
.ws58{word-spacing:-21.076381px;}
.ws32{word-spacing:-20.945472px;}
.ws13{word-spacing:-20.814563px;}
.ws21{word-spacing:-20.749108px;}
.ws59{word-spacing:-20.735707px;}
.ws53{word-spacing:-20.619304px;}
.ws2{word-spacing:-20.618199px;}
.ws14{word-spacing:-20.552744px;}
.ws57{word-spacing:-20.490365px;}
.wsd{word-spacing:-20.421835px;}
.ws23{word-spacing:-20.356381px;}
.ws51{word-spacing:-20.225471px;}
.ws41{word-spacing:-20.160017px;}
.ws50{word-spacing:-19.701835px;}
.ws1e{word-spacing:-19.570925px;}
.ws1d{word-spacing:-19.505471px;}
.ws39{word-spacing:-19.440016px;}
.wse{word-spacing:-19.243652px;}
.ws24{word-spacing:-18.981834px;}
.ws25{word-spacing:-18.916379px;}
.ws3b{word-spacing:-18.850925px;}
.ws49{word-spacing:-18.720016px;}
.ws4d{word-spacing:-18.654561px;}
.wsb{word-spacing:-18.589106px;}
.ws2f{word-spacing:-18.523652px;}
.ws2e{word-spacing:-18.458197px;}
.ws3a{word-spacing:-18.392743px;}
.ws47{word-spacing:-18.327288px;}
.ws52{word-spacing:-17.934560px;}
.ws4c{word-spacing:-17.803651px;}
.ws9{word-spacing:-17.476378px;}
.ws2c{word-spacing:-17.410924px;}
.ws38{word-spacing:-17.149105px;}
.ws27{word-spacing:-17.083651px;}
.ws28{word-spacing:-17.018196px;}
.ws1f{word-spacing:-16.821832px;}
.ws34{word-spacing:-16.560014px;}
.ws15{word-spacing:-16.429105px;}
.ws6{word-spacing:-16.363650px;}
.ws26{word-spacing:-15.840013px;}
.ws17{word-spacing:-15.774559px;}
.ws4b{word-spacing:-15.709104px;}
.ws54{word-spacing:-15.512740px;}
.ws46{word-spacing:-15.316376px;}
.ws2d{word-spacing:-15.054558px;}
.ws4a{word-spacing:-14.923649px;}
.ws20{word-spacing:-14.727285px;}
.ws33{word-spacing:-14.723564px;}
.ws4f{word-spacing:-14.269103px;}
.ws4e{word-spacing:-13.549102px;}
.ws3f{word-spacing:-13.352738px;}
.wsa{word-spacing:-13.287284px;}
.ws40{word-spacing:-12.960011px;}
.ws2b{word-spacing:-12.829102px;}
.ws12{word-spacing:-12.763647px;}
.ws3e{word-spacing:-12.698192px;}
.ws18{word-spacing:-12.240010px;}
.ws1a{word-spacing:-12.174556px;}
.ws42{word-spacing:-11.847283px;}
.ws1c{word-spacing:-11.192737px;}
.ws1b{word-spacing:-11.127282px;}
.ws45{word-spacing:-10.865464px;}
.ws37{word-spacing:-10.603645px;}
.ws19{word-spacing:-8.050916px;}
.ws44{word-spacing:-7.854552px;}
.ws3{word-spacing:-4.185344px;}
.ws16{word-spacing:0.000000px;}
.ws0{word-spacing:3.511942px;}
.ws5{word-spacing:10.865464px;}
._2f{margin-left:-3019.950784px;}
._41{margin-left:-3017.596054px;}
._3f{margin-left:-3016.159080px;}
._2d{margin-left:-3008.956046px;}
._2e{margin-left:-3007.712409px;}
._18{margin-left:-3000.188419px;}
._15{margin-left:-2997.503145px;}
._d{margin-left:-2991.482957px;}
._a{margin-left:-2989.520956px;}
._1{margin-left:-2970.286153px;}
._44{margin-left:-2937.086896px;}
._34{margin-left:-2887.997583px;}
._2c{margin-left:-2861.159560px;}
._1d{margin-left:-2711.795451px;}
._43{margin-left:-2655.110579px;}
._3d{margin-left:-2648.890292px;}
._7{margin-left:-2584.424088px;}
._6{margin-left:-2538.605868px;}
._2b{margin-left:-2471.969797px;}
._42{margin-left:-2468.576270px;}
._10{margin-left:-2416.267932px;}
._2a{margin-left:-2344.724420px;}
._8{margin-left:-2329.544968px;}
._1c{margin-left:-2324.893310px;}
._3e{margin-left:-2182.659276px;}
._36{margin-left:-2126.236948px;}
._30{margin-left:-2016.533401px;}
._17{margin-left:-1827.176532px;}
._21{margin-left:-1673.948813px;}
._20{margin-left:-1597.563295px;}
._1a{margin-left:-1588.463606px;}
._3c{margin-left:-1522.284612px;}
._29{margin-left:-1479.481697px;}
._23{margin-left:-1371.810380px;}
._45{margin-left:-1173.280618px;}
._40{margin-left:-998.386123px;}
._19{margin-left:-979.539462px;}
._f{margin-left:-932.281241px;}
._5{margin-left:-918.998746px;}
._38{margin-left:-905.834294px;}
._1b{margin-left:-896.059876px;}
._1e{margin-left:-844.964804px;}
._37{margin-left:-776.863892px;}
._35{margin-left:-774.918552px;}
._32{margin-left:-754.961441px;}
._2{margin-left:-695.684213px;}
._3a{margin-left:-624.379979px;}
._33{margin-left:-580.866108px;}
._3b{margin-left:-578.301577px;}
._9{margin-left:-576.176062px;}
._e{margin-left:-561.284568px;}
._24{margin-left:-539.672521px;}
._27{margin-left:-524.697067px;}
._26{margin-left:-494.388332px;}
._25{margin-left:-484.899050px;}
._12{margin-left:-451.901524px;}
._16{margin-left:-423.109907px;}
._28{margin-left:-403.870446px;}
._1f{margin-left:-379.649553px;}
._39{margin-left:-356.032462px;}
._b{margin-left:-354.251668px;}
._31{margin-left:-296.174759px;}
._14{margin-left:-266.935232px;}
._13{margin-left:-7.264533px;}
._22{margin-left:-5.956369px;}
._3{margin-left:-4.450913px;}
._c{margin-left:-3.010912px;}
._0{margin-left:-1.859263px;}
._4{width:2.945457px;}
._11{width:16.298195px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:35.865600px;}
.fs3{font-size:45.818400px;}
.fs2{font-size:65.454600px;}
.fs4{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y18{bottom:29.764500px;}
.y5f{bottom:63.780000px;}
.y5e{bottom:84.103500px;}
.y4c{bottom:84.883500px;}
.y37{bottom:99.022500px;}
.y5d{bottom:104.427000px;}
.y4b{bottom:105.207000px;}
.y36{bottom:119.347500px;}
.y4a{bottom:125.532000px;}
.y49{bottom:145.855500px;}
.y35{bottom:149.832000px;}
.y5c{bottom:151.746000px;}
.y7f{bottom:155.026500px;}
.y48{bottom:166.179000px;}
.y34{bottom:170.157000px;}
.y7e{bottom:175.350000px;}
.y33{bottom:190.480500px;}
.y47{bottom:201.148500px;}
.y32{bottom:210.804000px;}
.y5b{bottom:220.014000px;}
.y46{bottom:221.472000px;}
.y7d{bottom:222.669000px;}
.y31{bottom:231.127500px;}
.y5a{bottom:240.337500px;}
.y30{bottom:251.451000px;}
.y45{bottom:251.958000px;}
.y59{bottom:260.661000px;}
.y2f{bottom:271.776000px;}
.y44{bottom:272.281500px;}
.y7c{bottom:285.346500px;}
.y43{bottom:292.605000px;}
.y2e{bottom:302.260500px;}
.y42{bottom:312.928500px;}
.y2d{bottom:322.585500px;}
.y7b{bottom:332.665500px;}
.y41{bottom:333.252000px;}
.y2c{bottom:342.909000px;}
.y2b{bottom:363.232500px;}
.y40{bottom:363.738000px;}
.y2a{bottom:383.556000px;}
.y3f{bottom:384.061500px;}
.y7a{bottom:395.343000px;}
.y3e{bottom:404.386500px;}
.y29{bottom:414.042000px;}
.y3d{bottom:424.710000px;}
.y28{bottom:434.365500px;}
.y79{bottom:442.662000px;}
.y27{bottom:454.689000px;}
.y3c{bottom:472.029000px;}
.y26{bottom:475.014000px;}
.y17{bottom:482.668500px;}
.y25{bottom:495.337500px;}
.y78{bottom:505.339500px;}
.y16{bottom:513.154500px;}
.y24{bottom:515.661000px;}
.y77{bottom:525.663000px;}
.y15{bottom:533.478000px;}
.y3b{bottom:534.706500px;}
.y23{bottom:535.984500px;}
.y14{bottom:553.801500px;}
.y3a{bottom:555.030000px;}
.y22{bottom:556.308000px;}
.y76{bottom:572.982000px;}
.y13{bottom:574.125000px;}
.y21{bottom:586.794000px;}
.y12{bottom:594.450000px;}
.y20{bottom:607.117500px;}
.y39{bottom:607.453500px;}
.y11{bottom:624.934500px;}
.y1f{bottom:627.442500px;}
.y38{bottom:627.777000px;}
.y75{bottom:635.659500px;}
.y10{bottom:645.259500px;}
.y1e{bottom:647.766000px;}
.y74{bottom:655.983000px;}
.yf{bottom:665.583000px;}
.y95{bottom:667.851000px;}
.y1d{bottom:668.089500px;}
.y73{bottom:676.306500px;}
.ye{bottom:685.906500px;}
.y94{bottom:688.174500px;}
.y1c{bottom:688.413000px;}
.y72{bottom:696.630000px;}
.y93{bottom:708.499500px;}
.yd{bottom:716.392500px;}
.y71{bottom:716.955000px;}
.y92{bottom:732.888000px;}
.y1b{bottom:735.732000px;}
.yc{bottom:736.716000px;}
.y70{bottom:737.278500px;}
.yb{bottom:757.039500px;}
.y91{bottom:757.276500px;}
.y6f{bottom:757.602000px;}
.ya{bottom:777.363000px;}
.y90{bottom:777.600000px;}
.y6e{bottom:777.925500px;}
.y1a{bottom:788.155500px;}
.y6d{bottom:798.249000px;}
.y8f{bottom:801.988500px;}
.y19{bottom:808.479000px;}
.y6c{bottom:818.574000px;}
.y9{bottom:824.682000px;}
.y8e{bottom:826.377000px;}
.y8d{bottom:846.700500px;}
.y6b{bottom:849.058500px;}
.y6a{bottom:869.383500px;}
.y8c{bottom:871.089000px;}
.y8{bottom:887.359500px;}
.y8b{bottom:891.412500px;}
.y69{bottom:899.868000px;}
.y8a{bottom:911.736000px;}
.y7{bottom:917.845500px;}
.y68{bottom:920.193000px;}
.y58{bottom:928.569000px;}
.y89{bottom:936.124500px;}
.y67{bottom:940.516500px;}
.y6{bottom:948.331500px;}
.y57{bottom:948.894000px;}
.y88{bottom:956.449500px;}
.y66{bottom:960.840000px;}
.y56{bottom:979.378500px;}
.y87{bottom:980.838000px;}
.y5{bottom:983.299500px;}
.y65{bottom:991.326000px;}
.y55{bottom:999.703500px;}
.y4{bottom:1003.624500px;}
.y86{bottom:1005.226500px;}
.y64{bottom:1011.649500px;}
.y85{bottom:1029.615000px;}
.y54{bottom:1030.188000px;}
.y63{bottom:1031.973000px;}
.y3{bottom:1038.592500px;}
.y84{bottom:1049.938500px;}
.y53{bottom:1050.513000px;}
.y62{bottom:1052.296500px;}
.y83{bottom:1070.262000px;}
.y52{bottom:1070.836500px;}
.y61{bottom:1072.621500px;}
.y2{bottom:1085.442000px;}
.y82{bottom:1090.585500px;}
.y51{bottom:1091.160000px;}
.y81{bottom:1114.974000px;}
.y1{bottom:1118.319000px;}
.y60{bottom:1119.940500px;}
.y50{bottom:1121.646000px;}
.y80{bottom:1135.297500px;}
.y4f{bottom:1141.969500px;}
.y4e{bottom:1162.293000px;}
.y4d{bottom:1182.616500px;}
.h4{height:24.281011px;}
.h6{height:45.447481px;}
.h5{height:57.304735px;}
.h7{height:60.396942px;}
.h3{height:64.773472px;}
.h2{height:72.476162px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:65.334000px;}
.x1{left:85.039500px;}
.x3{left:105.493500px;}
.x8{left:109.176000px;}
.x7{left:112.038000px;}
.x4{left:125.949000px;}
.x6{left:141.409500px;}
.x5{left:442.366500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.920000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.001438pt;}
.ls8{letter-spacing:0.002400pt;}
.lsa{letter-spacing:14.534774pt;}
.ls7{letter-spacing:14.546400pt;}
.ls3{letter-spacing:14.734533pt;}
.ls2{letter-spacing:14.739867pt;}
.ls5{letter-spacing:16.009174pt;}
.ls6{letter-spacing:16.009651pt;}
.ls4{letter-spacing:16.025200pt;}
.ls9{letter-spacing:29.097680pt;}
.ws8{word-spacing:-38.256533pt;}
.ws4{word-spacing:-32.814573pt;}
.ws7{word-spacing:-29.090933pt;}
.ws1{word-spacing:-23.045682pt;}
.ws5a{word-spacing:-22.400019pt;}
.ws36{word-spacing:-22.283655pt;}
.ws55{word-spacing:-21.469109pt;}
.ws56{word-spacing:-21.352745pt;}
.ws3c{word-spacing:-20.945472pt;}
.wsf{word-spacing:-20.829108pt;}
.ws31{word-spacing:-20.654563pt;}
.ws29{word-spacing:-20.480017pt;}
.ws2a{word-spacing:-20.421835pt;}
.ws3d{word-spacing:-20.072744pt;}
.ws22{word-spacing:-19.723653pt;}
.ws48{word-spacing:-19.665471pt;}
.ws10{word-spacing:-19.432743pt;}
.ws43{word-spacing:-19.374562pt;}
.ws35{word-spacing:-19.204780pt;}
.wsc{word-spacing:-19.200016pt;}
.ws30{word-spacing:-18.967289pt;}
.ws11{word-spacing:-18.792743pt;}
.ws58{word-spacing:-18.734561pt;}
.ws32{word-spacing:-18.618197pt;}
.ws13{word-spacing:-18.501834pt;}
.ws21{word-spacing:-18.443652pt;}
.ws59{word-spacing:-18.431739pt;}
.ws53{word-spacing:-18.328270pt;}
.ws2{word-spacing:-18.327288pt;}
.ws14{word-spacing:-18.269106pt;}
.ws57{word-spacing:-18.213658pt;}
.wsd{word-spacing:-18.152742pt;}
.ws23{word-spacing:-18.094561pt;}
.ws51{word-spacing:-17.978197pt;}
.ws41{word-spacing:-17.920015pt;}
.ws50{word-spacing:-17.512742pt;}
.ws1e{word-spacing:-17.396378pt;}
.ws1d{word-spacing:-17.338196pt;}
.ws39{word-spacing:-17.280014pt;}
.wse{word-spacing:-17.105469pt;}
.ws24{word-spacing:-16.872741pt;}
.ws25{word-spacing:-16.814559pt;}
.ws3b{word-spacing:-16.756378pt;}
.ws49{word-spacing:-16.640014pt;}
.ws4d{word-spacing:-16.581832pt;}
.wsb{word-spacing:-16.523650pt;}
.ws2f{word-spacing:-16.465468pt;}
.ws2e{word-spacing:-16.407286pt;}
.ws3a{word-spacing:-16.349105pt;}
.ws47{word-spacing:-16.290923pt;}
.ws52{word-spacing:-15.941831pt;}
.ws4c{word-spacing:-15.825468pt;}
.ws9{word-spacing:-15.534558pt;}
.ws2c{word-spacing:-15.476377pt;}
.ws38{word-spacing:-15.243649pt;}
.ws27{word-spacing:-15.185467pt;}
.ws28{word-spacing:-15.127285pt;}
.ws1f{word-spacing:-14.952740pt;}
.ws34{word-spacing:-14.720012pt;}
.ws15{word-spacing:-14.603649pt;}
.ws6{word-spacing:-14.545467pt;}
.ws26{word-spacing:-14.080012pt;}
.ws17{word-spacing:-14.021830pt;}
.ws4b{word-spacing:-13.963648pt;}
.ws54{word-spacing:-13.789102pt;}
.ws46{word-spacing:-13.614557pt;}
.ws2d{word-spacing:-13.381829pt;}
.ws4a{word-spacing:-13.265466pt;}
.ws20{word-spacing:-13.090920pt;}
.ws33{word-spacing:-13.087613pt;}
.ws4f{word-spacing:-12.683647pt;}
.ws4e{word-spacing:-12.043646pt;}
.ws3f{word-spacing:-11.869101pt;}
.wsa{word-spacing:-11.810919pt;}
.ws40{word-spacing:-11.520010pt;}
.ws2b{word-spacing:-11.403646pt;}
.ws12{word-spacing:-11.345464pt;}
.ws3e{word-spacing:-11.287282pt;}
.ws18{word-spacing:-10.880009pt;}
.ws1a{word-spacing:-10.821827pt;}
.ws42{word-spacing:-10.530918pt;}
.ws1c{word-spacing:-9.949099pt;}
.ws1b{word-spacing:-9.890917pt;}
.ws45{word-spacing:-9.658190pt;}
.ws37{word-spacing:-9.425462pt;}
.ws19{word-spacing:-7.156370pt;}
.ws44{word-spacing:-6.981824pt;}
.ws3{word-spacing:-3.720306pt;}
.ws16{word-spacing:0.000000pt;}
.ws0{word-spacing:3.121726pt;}
.ws5{word-spacing:9.658190pt;}
._2f{margin-left:-2684.400697pt;}
._41{margin-left:-2682.307603pt;}
._3f{margin-left:-2681.030293pt;}
._2d{margin-left:-2674.627597pt;}
._2e{margin-left:-2673.522141pt;}
._18{margin-left:-2666.834150pt;}
._15{margin-left:-2664.447240pt;}
._d{margin-left:-2659.095962pt;}
._a{margin-left:-2657.351961pt;}
._1{margin-left:-2640.254358pt;}
._44{margin-left:-2610.743907pt;}
._34{margin-left:-2567.108963pt;}
._2c{margin-left:-2543.252942pt;}
._1d{margin-left:-2410.484845pt;}
._43{margin-left:-2360.098292pt;}
._3d{margin-left:-2354.569148pt;}
._7{margin-left:-2297.265856pt;}
._6{margin-left:-2256.538549pt;}
._2b{margin-left:-2197.306486pt;}
._42{margin-left:-2194.290018pt;}
._10{margin-left:-2147.793717pt;}
._2a{margin-left:-2084.199484pt;}
._8{margin-left:-2070.706638pt;}
._1c{margin-left:-2066.571831pt;}
._3e{margin-left:-1940.141579pt;}
._36{margin-left:-1889.988398pt;}
._30{margin-left:-1792.474134pt;}
._17{margin-left:-1624.156917pt;}
._21{margin-left:-1487.954501pt;}
._20{margin-left:-1420.056262pt;}
._1a{margin-left:-1411.967650pt;}
._3c{margin-left:-1353.141877pt;}
._29{margin-left:-1315.094842pt;}
._23{margin-left:-1219.387004pt;}
._45{margin-left:-1042.916105pt;}
._40{margin-left:-887.454331pt;}
._19{margin-left:-870.701744pt;}
._f{margin-left:-828.694436pt;}
._5{margin-left:-816.887774pt;}
._38{margin-left:-805.186039pt;}
._1b{margin-left:-796.497667pt;}
._1e{margin-left:-751.079826pt;}
._37{margin-left:-690.545682pt;}
._35{margin-left:-688.816491pt;}
._32{margin-left:-671.076836pt;}
._2{margin-left:-618.385967pt;}
._3a{margin-left:-555.004426pt;}
._33{margin-left:-516.325429pt;}
._3b{margin-left:-514.045846pt;}
._9{margin-left:-512.156499pt;}
._e{margin-left:-498.919616pt;}
._24{margin-left:-479.708908pt;}
._27{margin-left:-466.397393pt;}
._26{margin-left:-439.456295pt;}
._25{margin-left:-431.021378pt;}
._12{margin-left:-401.690243pt;}
._16{margin-left:-376.097695pt;}
._28{margin-left:-358.995952pt;}
._1f{margin-left:-337.466269pt;}
._39{margin-left:-316.473299pt;}
._b{margin-left:-314.890372pt;}
._31{margin-left:-263.266453pt;}
._14{margin-left:-237.275762pt;}
._13{margin-left:-6.457363pt;}
._22{margin-left:-5.294550pt;}
._3{margin-left:-3.956367pt;}
._c{margin-left:-2.676366pt;}
._0{margin-left:-1.652678pt;}
._4{width:2.618184pt;}
._11{width:14.487285pt;}
.fs1{font-size:31.880533pt;}
.fs3{font-size:40.727467pt;}
.fs2{font-size:58.181867pt;}
.fs4{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y18{bottom:26.457333pt;}
.y5f{bottom:56.693333pt;}
.y5e{bottom:74.758667pt;}
.y4c{bottom:75.452000pt;}
.y37{bottom:88.020000pt;}
.y5d{bottom:92.824000pt;}
.y4b{bottom:93.517333pt;}
.y36{bottom:106.086667pt;}
.y4a{bottom:111.584000pt;}
.y49{bottom:129.649333pt;}
.y35{bottom:133.184000pt;}
.y5c{bottom:134.885333pt;}
.y7f{bottom:137.801333pt;}
.y48{bottom:147.714667pt;}
.y34{bottom:151.250667pt;}
.y7e{bottom:155.866667pt;}
.y33{bottom:169.316000pt;}
.y47{bottom:178.798667pt;}
.y32{bottom:187.381333pt;}
.y5b{bottom:195.568000pt;}
.y46{bottom:196.864000pt;}
.y7d{bottom:197.928000pt;}
.y31{bottom:205.446667pt;}
.y5a{bottom:213.633333pt;}
.y30{bottom:223.512000pt;}
.y45{bottom:223.962667pt;}
.y59{bottom:231.698667pt;}
.y2f{bottom:241.578667pt;}
.y44{bottom:242.028000pt;}
.y7c{bottom:253.641333pt;}
.y43{bottom:260.093333pt;}
.y2e{bottom:268.676000pt;}
.y42{bottom:278.158667pt;}
.y2d{bottom:286.742667pt;}
.y7b{bottom:295.702667pt;}
.y41{bottom:296.224000pt;}
.y2c{bottom:304.808000pt;}
.y2b{bottom:322.873333pt;}
.y40{bottom:323.322667pt;}
.y2a{bottom:340.938667pt;}
.y3f{bottom:341.388000pt;}
.y7a{bottom:351.416000pt;}
.y3e{bottom:359.454667pt;}
.y29{bottom:368.037333pt;}
.y3d{bottom:377.520000pt;}
.y28{bottom:386.102667pt;}
.y79{bottom:393.477333pt;}
.y27{bottom:404.168000pt;}
.y3c{bottom:419.581333pt;}
.y26{bottom:422.234667pt;}
.y17{bottom:429.038667pt;}
.y25{bottom:440.300000pt;}
.y78{bottom:449.190667pt;}
.y16{bottom:456.137333pt;}
.y24{bottom:458.365333pt;}
.y77{bottom:467.256000pt;}
.y15{bottom:474.202667pt;}
.y3b{bottom:475.294667pt;}
.y23{bottom:476.430667pt;}
.y14{bottom:492.268000pt;}
.y3a{bottom:493.360000pt;}
.y22{bottom:494.496000pt;}
.y76{bottom:509.317333pt;}
.y13{bottom:510.333333pt;}
.y21{bottom:521.594667pt;}
.y12{bottom:528.400000pt;}
.y20{bottom:539.660000pt;}
.y39{bottom:539.958667pt;}
.y11{bottom:555.497333pt;}
.y1f{bottom:557.726667pt;}
.y38{bottom:558.024000pt;}
.y75{bottom:565.030667pt;}
.y10{bottom:573.564000pt;}
.y1e{bottom:575.792000pt;}
.y74{bottom:583.096000pt;}
.yf{bottom:591.629333pt;}
.y95{bottom:593.645333pt;}
.y1d{bottom:593.857333pt;}
.y73{bottom:601.161333pt;}
.ye{bottom:609.694667pt;}
.y94{bottom:611.710667pt;}
.y1c{bottom:611.922667pt;}
.y72{bottom:619.226667pt;}
.y93{bottom:629.777333pt;}
.yd{bottom:636.793333pt;}
.y71{bottom:637.293333pt;}
.y92{bottom:651.456000pt;}
.y1b{bottom:653.984000pt;}
.yc{bottom:654.858667pt;}
.y70{bottom:655.358667pt;}
.yb{bottom:672.924000pt;}
.y91{bottom:673.134667pt;}
.y6f{bottom:673.424000pt;}
.ya{bottom:690.989333pt;}
.y90{bottom:691.200000pt;}
.y6e{bottom:691.489333pt;}
.y1a{bottom:700.582667pt;}
.y6d{bottom:709.554667pt;}
.y8f{bottom:712.878667pt;}
.y19{bottom:718.648000pt;}
.y6c{bottom:727.621333pt;}
.y9{bottom:733.050667pt;}
.y8e{bottom:734.557333pt;}
.y8d{bottom:752.622667pt;}
.y6b{bottom:754.718667pt;}
.y6a{bottom:772.785333pt;}
.y8c{bottom:774.301333pt;}
.y8{bottom:788.764000pt;}
.y8b{bottom:792.366667pt;}
.y69{bottom:799.882667pt;}
.y8a{bottom:810.432000pt;}
.y7{bottom:815.862667pt;}
.y68{bottom:817.949333pt;}
.y58{bottom:825.394667pt;}
.y89{bottom:832.110667pt;}
.y67{bottom:836.014667pt;}
.y6{bottom:842.961333pt;}
.y57{bottom:843.461333pt;}
.y88{bottom:850.177333pt;}
.y66{bottom:854.080000pt;}
.y56{bottom:870.558667pt;}
.y87{bottom:871.856000pt;}
.y5{bottom:874.044000pt;}
.y65{bottom:881.178667pt;}
.y55{bottom:888.625333pt;}
.y4{bottom:892.110667pt;}
.y86{bottom:893.534667pt;}
.y64{bottom:899.244000pt;}
.y85{bottom:915.213333pt;}
.y54{bottom:915.722667pt;}
.y63{bottom:917.309333pt;}
.y3{bottom:923.193333pt;}
.y84{bottom:933.278667pt;}
.y53{bottom:933.789333pt;}
.y62{bottom:935.374667pt;}
.y83{bottom:951.344000pt;}
.y52{bottom:951.854667pt;}
.y61{bottom:953.441333pt;}
.y2{bottom:964.837333pt;}
.y82{bottom:969.409333pt;}
.y51{bottom:969.920000pt;}
.y81{bottom:991.088000pt;}
.y1{bottom:994.061333pt;}
.y60{bottom:995.502667pt;}
.y50{bottom:997.018667pt;}
.y80{bottom:1009.153333pt;}
.y4f{bottom:1015.084000pt;}
.y4e{bottom:1033.149333pt;}
.y4d{bottom:1051.214667pt;}
.h4{height:21.583121pt;}
.h6{height:40.397761pt;}
.h5{height:50.937542pt;}
.h7{height:53.686170pt;}
.h3{height:57.576420pt;}
.h2{height:64.423255pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:58.074667pt;}
.x1{left:75.590667pt;}
.x3{left:93.772000pt;}
.x8{left:97.045333pt;}
.x7{left:99.589333pt;}
.x4{left:111.954667pt;}
.x6{left:125.697333pt;}
.x5{left:393.214667pt;}
}




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