
    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_da5c8e0efbb0855d0995cf3f.woff')format("woff");}.ff1{font-family:ff1;line-height:0.922852;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_85b0ac12c5105ea73e5c1ef4.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_c6155ab00d76415a202aa81f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.082031;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_687d63794606cd919f2f92d0.woff')format("woff");}.ff4{font-family:ff4;line-height:0.931152;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_96798bdbadc48d39d80907b5.woff')format("woff");}.ff5{font-family:ff5;line-height:1.090332;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_2a8d23e04a949b2075b55cc7.woff')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,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);}
.v2{vertical-align:-2.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.982000px;}
.v4{vertical-align:40.194000px;}
.v3{vertical-align:55.968000px;}
.ls16{letter-spacing:-2.160000px;}
.ls9{letter-spacing:-0.990000px;}
.ls1b{letter-spacing:-0.648000px;}
.lse{letter-spacing:-0.576000px;}
.lsf{letter-spacing:-0.504000px;}
.lsd{letter-spacing:-0.360000px;}
.ls31{letter-spacing:-0.330000px;}
.ls1a{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.216000px;}
.ls22{letter-spacing:-0.144000px;}
.ls8{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.072000px;}
.ls19{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.216000px;}
.ls33{letter-spacing:0.264000px;}
.lsc{letter-spacing:0.288000px;}
.ls27{letter-spacing:0.330000px;}
.ls4{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.432000px;}
.ls26{letter-spacing:0.462000px;}
.ls6{letter-spacing:0.504000px;}
.ls28{letter-spacing:0.528000px;}
.ls1e{letter-spacing:0.576000px;}
.ls34{letter-spacing:0.594000px;}
.lsa{letter-spacing:0.648000px;}
.ls7{letter-spacing:0.720000px;}
.ls2a{letter-spacing:0.726000px;}
.ls20{letter-spacing:0.792000px;}
.ls2b{letter-spacing:0.858000px;}
.ls1f{letter-spacing:0.864000px;}
.ls29{letter-spacing:0.924000px;}
.ls1d{letter-spacing:0.936000px;}
.ls23{letter-spacing:1.008000px;}
.ls12{letter-spacing:1.080000px;}
.ls13{letter-spacing:1.152000px;}
.ls17{letter-spacing:1.224000px;}
.ls24{letter-spacing:3.672000px;}
.ls2f{letter-spacing:3.696000px;}
.ls2e{letter-spacing:3.762000px;}
.ls0{letter-spacing:4.200000px;}
.ls3{letter-spacing:4.380000px;}
.ls11{letter-spacing:5.400000px;}
.ls25{letter-spacing:6.000000px;}
.ls1{letter-spacing:6.600000px;}
.ls30{letter-spacing:7.200000px;}
.ls21{letter-spacing:9.072000px;}
.ls15{letter-spacing:9.288000px;}
.ls14{letter-spacing:9.864000px;}
.ls2{letter-spacing:10.200000px;}
.ls1c{letter-spacing:10.368000px;}
.ls2d{letter-spacing:10.626000px;}
.ls32{letter-spacing:10.956000px;}
.ls2c{letter-spacing:11.286000px;}
.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;}
}
.wsf{word-spacing:-22.860000px;}
.ws2{word-spacing:-20.232000px;}
.ws4{word-spacing:-19.656000px;}
.ws7{word-spacing:-18.546000px;}
.wse{word-spacing:-18.360000px;}
.wsb{word-spacing:-18.144000px;}
.wsc{word-spacing:-18.072000px;}
.wsd{word-spacing:-17.928000px;}
.ws5{word-spacing:-17.784000px;}
.ws3{word-spacing:-17.280000px;}
.ws11{word-spacing:-17.094000px;}
.ws0{word-spacing:-16.860000px;}
.ws10{word-spacing:-16.764000px;}
.ws6{word-spacing:-16.302000px;}
.wsa{word-spacing:-15.624000px;}
.ws1{word-spacing:0.000000px;}
.ws8{word-spacing:84.216000px;}
.ws9{word-spacing:370.392000px;}
._25{margin-left:-18.132000px;}
._f{margin-left:-13.614000px;}
._21{margin-left:-11.550000px;}
._6{margin-left:-9.846000px;}
._1f{margin-left:-8.472000px;}
._a{margin-left:-7.200000px;}
._23{margin-left:-6.024000px;}
._1{margin-left:-5.016000px;}
._0{margin-left:-3.906000px;}
._8{margin-left:-2.658000px;}
._3{margin-left:-1.566000px;}
._4{width:1.860000px;}
._7{width:3.109800px;}
._2{width:4.686000px;}
._9{width:5.790000px;}
._5{width:7.242000px;}
._b{width:8.246400px;}
._c{width:9.348000px;}
._e{width:10.452000px;}
._d{width:11.460000px;}
._22{width:13.506000px;}
._24{width:15.750000px;}
._20{width:17.772000px;}
._1b{width:99.726000px;}
._1d{width:131.538000px;}
._1e{width:241.890000px;}
._18{width:250.368000px;}
._11{width:353.892000px;}
._14{width:370.392000px;}
._16{width:386.892000px;}
._13{width:460.548000px;}
._19{width:580.560000px;}
._17{width:597.558000px;}
._1a{width:623.172000px;}
._12{width:651.288000px;}
._1c{width:669.888000px;}
._15{width:746.196000px;}
._10{width:822.264000px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:42.000000px;}
.fs5{font-size:43.800000px;}
.fs1{font-size:48.000000px;}
.fs7{font-size:54.000000px;}
.fs8{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs4{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:76.337550px;}
.y68{bottom:142.499250px;}
.y8b{bottom:143.958600px;}
.y20{bottom:144.442650px;}
.yad{bottom:144.460050px;}
.y45{bottom:144.928500px;}
.y67{bottom:163.955250px;}
.y8a{bottom:164.204100px;}
.yac{bottom:164.705550px;}
.y1f{bottom:166.186650px;}
.y44{bottom:166.672500px;}
.y89{bottom:184.449600px;}
.yab{bottom:184.951050px;}
.y66{bottom:185.411250px;}
.y1e{bottom:187.930650px;}
.y43{bottom:188.416500px;}
.y88{bottom:204.695100px;}
.yaa{bottom:205.196550px;}
.y1d{bottom:209.674650px;}
.y42{bottom:210.160500px;}
.y87{bottom:224.940600px;}
.ya9{bottom:225.442050px;}
.y65{bottom:230.985000px;}
.y1c{bottom:231.418650px;}
.y41{bottom:231.904500px;}
.y86{bottom:245.186100px;}
.ya8{bottom:245.687550px;}
.y1b{bottom:253.162650px;}
.y40{bottom:253.648500px;}
.y64{bottom:258.969000px;}
.y85{bottom:265.431600px;}
.ya7{bottom:265.933050px;}
.y1a{bottom:274.906650px;}
.y3f{bottom:275.392500px;}
.y63{bottom:279.066000px;}
.y84{bottom:285.677100px;}
.ya6{bottom:286.178550px;}
.y19{bottom:296.650650px;}
.y3e{bottom:297.136500px;}
.y83{bottom:305.922600px;}
.ya5{bottom:306.424050px;}
.y62{bottom:307.050000px;}
.y18{bottom:318.394650px;}
.y3d{bottom:318.880500px;}
.y82{bottom:326.168100px;}
.ya4{bottom:326.669550px;}
.y61{bottom:327.147000px;}
.y17{bottom:340.138650px;}
.y3c{bottom:340.624500px;}
.y81{bottom:346.413600px;}
.ya3{bottom:346.915050px;}
.y60{bottom:347.244000px;}
.y5c{bottom:349.026000px;}
.y16{bottom:361.882650px;}
.y3b{bottom:362.368500px;}
.y80{bottom:366.659100px;}
.ya2{bottom:367.160550px;}
.y5b{bottom:369.123000px;}
.y5f{bottom:375.228000px;}
.y15{bottom:383.626650px;}
.y3a{bottom:384.112500px;}
.y7f{bottom:386.904600px;}
.ya1{bottom:387.406050px;}
.y5a{bottom:389.220000px;}
.y5e{bottom:403.212000px;}
.y14{bottom:405.370650px;}
.y39{bottom:405.856500px;}
.y7e{bottom:415.658550px;}
.y13{bottom:427.114650px;}
.y38{bottom:427.600500px;}
.ya0{bottom:427.906050px;}
.y5d{bottom:431.196000px;}
.y12{bottom:448.858650px;}
.y37{bottom:449.344500px;}
.y9f{bottom:456.660000px;}
.y59{bottom:459.180000px;}
.y7d{bottom:464.662500px;}
.y11{bottom:470.602650px;}
.y36{bottom:471.088500px;}
.y9e{bottom:478.710000px;}
.y7c{bottom:486.712500px;}
.y56{bottom:487.164000px;}
.y10{bottom:492.346650px;}
.y35{bottom:492.832500px;}
.y9d{bottom:500.760000px;}
.y55{bottom:507.261000px;}
.y7b{bottom:508.762500px;}
.yf{bottom:514.090650px;}
.y34{bottom:514.576500px;}
.y58{bottom:515.148000px;}
.y7a{bottom:530.812500px;}
.y57{bottom:535.245000px;}
.ye{bottom:535.834650px;}
.ybf{bottom:536.310000px;}
.y33{bottom:536.320500px;}
.y79{bottom:552.862500px;}
.ybe{bottom:554.310000px;}
.yd{bottom:557.578650px;}
.y32{bottom:558.064500px;}
.y54{bottom:563.229000px;}
.y9c{bottom:566.910000px;}
.ybd{bottom:572.310000px;}
.y78{bottom:574.912500px;}
.y53{bottom:577.221000px;}
.yc{bottom:579.322650px;}
.y31{bottom:579.808500px;}
.ybc{bottom:590.310000px;}
.y77{bottom:596.962500px;}
.yb{bottom:601.066650px;}
.y30{bottom:601.552500px;}
.y9b{bottom:604.782000px;}
.y76{bottom:619.012500px;}
.y52{bottom:619.197000px;}
.ya{bottom:622.810650px;}
.y2f{bottom:623.296500px;}
.y9a{bottom:625.027500px;}
.ybb{bottom:629.910000px;}
.y50{bottom:639.294000px;}
.y75{bottom:641.062500px;}
.y9{bottom:644.554650px;}
.y2e{bottom:645.040500px;}
.y99{bottom:645.273000px;}
.y51{bottom:659.391000px;}
.y74{bottom:663.112500px;}
.y98{bottom:665.518500px;}
.y8{bottom:666.298650px;}
.y2d{bottom:666.784500px;}
.yba{bottom:671.310000px;}
.y73{bottom:685.162500px;}
.y97{bottom:685.764000px;}
.y2c{bottom:688.528500px;}
.yb9{bottom:691.110000px;}
.y4f{bottom:693.562500px;}
.y96{bottom:706.009500px;}
.y72{bottom:707.212500px;}
.y2b{bottom:710.272500px;}
.yb8{bottom:710.910000px;}
.y95{bottom:726.255000px;}
.y71{bottom:729.262500px;}
.yb7{bottom:730.710000px;}
.y2a{bottom:732.016500px;}
.y4e{bottom:734.608500px;}
.y94{bottom:746.500500px;}
.yb6{bottom:750.510000px;}
.y70{bottom:751.312500px;}
.y7{bottom:752.848650px;}
.y29{bottom:753.760500px;}
.y4d{bottom:756.064500px;}
.y93{bottom:766.746000px;}
.yb5{bottom:770.310000px;}
.y6f{bottom:773.362500px;}
.y28{bottom:775.504500px;}
.y4c{bottom:777.520500px;}
.y92{bottom:786.991500px;}
.yb4{bottom:790.110000px;}
.y6{bottom:794.248650px;}
.y6e{bottom:795.412500px;}
.y27{bottom:797.248500px;}
.y4b{bottom:798.976500px;}
.y91{bottom:807.237000px;}
.yb3{bottom:809.910000px;}
.y6d{bottom:817.462500px;}
.y26{bottom:818.992500px;}
.y4a{bottom:820.432500px;}
.y5{bottom:824.848650px;}
.y90{bottom:827.482500px;}
.yb2{bottom:829.710000px;}
.y6c{bottom:839.512500px;}
.y25{bottom:840.736500px;}
.y49{bottom:841.888500px;}
.y8f{bottom:847.728000px;}
.yb1{bottom:849.510000px;}
.y4{bottom:855.448650px;}
.y6b{bottom:861.562500px;}
.y24{bottom:862.480500px;}
.y48{bottom:863.344500px;}
.y8e{bottom:867.973500px;}
.yb0{bottom:869.310000px;}
.y6a{bottom:883.612500px;}
.y23{bottom:884.224500px;}
.y47{bottom:884.800500px;}
.y8d{bottom:888.219000px;}
.yaf{bottom:889.110000px;}
.y69{bottom:905.662500px;}
.y22{bottom:905.968500px;}
.y46{bottom:906.256500px;}
.y8c{bottom:908.464500px;}
.yae{bottom:908.910000px;}
.y3{bottom:910.710000px;}
.y21{bottom:927.712500px;}
.y2{bottom:928.710000px;}
.h3{height:35.663086px;}
.h6{height:37.191504px;}
.h8{height:40.757812px;}
.h2{height:41.396484px;}
.ha{height:45.536133px;}
.he{height:48.399902px;}
.h9{height:49.675781px;}
.hd{height:50.947266px;}
.h4{height:56.041992px;}
.h7{height:61.136719px;}
.h5{height:86.610352px;}
.hc{height:96.235992px;}
.hb{height:101.504133px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x7{left:76.535400px;}
.xe{left:84.602400px;}
.x1{left:97.795350px;}
.x4{left:119.053350px;}
.x11{left:140.323650px;}
.x2{left:150.670350px;}
.x13{left:156.548550px;}
.x5{left:167.845200px;}
.x8{left:180.747900px;}
.xf{left:195.399900px;}
.x3{left:216.834450px;}
.xa{left:423.198900px;}
.x9{left:431.778900px;}
.xb{left:438.527400px;}
.x10{left:456.462900px;}
.xd{left:532.791900px;}
.x12{left:540.203550px;}
.xc{left:547.592400px;}
.x6{left:572.164350px;}
@media print{
.v2{vertical-align:-2.650667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.650667pt;}
.v4{vertical-align:35.728000pt;}
.v3{vertical-align:49.749333pt;}
.ls16{letter-spacing:-1.920000pt;}
.ls9{letter-spacing:-0.880000pt;}
.ls1b{letter-spacing:-0.576000pt;}
.lse{letter-spacing:-0.512000pt;}
.lsf{letter-spacing:-0.448000pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls31{letter-spacing:-0.293333pt;}
.ls1a{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.192000pt;}
.ls22{letter-spacing:-0.128000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.064000pt;}
.ls19{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.192000pt;}
.ls33{letter-spacing:0.234667pt;}
.lsc{letter-spacing:0.256000pt;}
.ls27{letter-spacing:0.293333pt;}
.ls4{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.384000pt;}
.ls26{letter-spacing:0.410667pt;}
.ls6{letter-spacing:0.448000pt;}
.ls28{letter-spacing:0.469333pt;}
.ls1e{letter-spacing:0.512000pt;}
.ls34{letter-spacing:0.528000pt;}
.lsa{letter-spacing:0.576000pt;}
.ls7{letter-spacing:0.640000pt;}
.ls2a{letter-spacing:0.645333pt;}
.ls20{letter-spacing:0.704000pt;}
.ls2b{letter-spacing:0.762667pt;}
.ls1f{letter-spacing:0.768000pt;}
.ls29{letter-spacing:0.821333pt;}
.ls1d{letter-spacing:0.832000pt;}
.ls23{letter-spacing:0.896000pt;}
.ls12{letter-spacing:0.960000pt;}
.ls13{letter-spacing:1.024000pt;}
.ls17{letter-spacing:1.088000pt;}
.ls24{letter-spacing:3.264000pt;}
.ls2f{letter-spacing:3.285333pt;}
.ls2e{letter-spacing:3.344000pt;}
.ls0{letter-spacing:3.733333pt;}
.ls3{letter-spacing:3.893333pt;}
.ls11{letter-spacing:4.800000pt;}
.ls25{letter-spacing:5.333333pt;}
.ls1{letter-spacing:5.866667pt;}
.ls30{letter-spacing:6.400000pt;}
.ls21{letter-spacing:8.064000pt;}
.ls15{letter-spacing:8.256000pt;}
.ls14{letter-spacing:8.768000pt;}
.ls2{letter-spacing:9.066667pt;}
.ls1c{letter-spacing:9.216000pt;}
.ls2d{letter-spacing:9.445333pt;}
.ls32{letter-spacing:9.738667pt;}
.ls2c{letter-spacing:10.032000pt;}
.wsf{word-spacing:-20.320000pt;}
.ws2{word-spacing:-17.984000pt;}
.ws4{word-spacing:-17.472000pt;}
.ws7{word-spacing:-16.485333pt;}
.wse{word-spacing:-16.320000pt;}
.wsb{word-spacing:-16.128000pt;}
.wsc{word-spacing:-16.064000pt;}
.wsd{word-spacing:-15.936000pt;}
.ws5{word-spacing:-15.808000pt;}
.ws3{word-spacing:-15.360000pt;}
.ws11{word-spacing:-15.194667pt;}
.ws0{word-spacing:-14.986667pt;}
.ws10{word-spacing:-14.901333pt;}
.ws6{word-spacing:-14.490667pt;}
.wsa{word-spacing:-13.888000pt;}
.ws1{word-spacing:0.000000pt;}
.ws8{word-spacing:74.858667pt;}
.ws9{word-spacing:329.237333pt;}
._25{margin-left:-16.117333pt;}
._f{margin-left:-12.101333pt;}
._21{margin-left:-10.266667pt;}
._6{margin-left:-8.752000pt;}
._1f{margin-left:-7.530667pt;}
._a{margin-left:-6.400000pt;}
._23{margin-left:-5.354667pt;}
._1{margin-left:-4.458667pt;}
._0{margin-left:-3.472000pt;}
._8{margin-left:-2.362667pt;}
._3{margin-left:-1.392000pt;}
._4{width:1.653333pt;}
._7{width:2.764267pt;}
._2{width:4.165333pt;}
._9{width:5.146667pt;}
._5{width:6.437333pt;}
._b{width:7.330133pt;}
._c{width:8.309333pt;}
._e{width:9.290667pt;}
._d{width:10.186667pt;}
._22{width:12.005333pt;}
._24{width:14.000000pt;}
._20{width:15.797333pt;}
._1b{width:88.645333pt;}
._1d{width:116.922667pt;}
._1e{width:215.013333pt;}
._18{width:222.549333pt;}
._11{width:314.570667pt;}
._14{width:329.237333pt;}
._16{width:343.904000pt;}
._13{width:409.376000pt;}
._19{width:516.053333pt;}
._17{width:531.162667pt;}
._1a{width:553.930667pt;}
._12{width:578.922667pt;}
._1c{width:595.456000pt;}
._15{width:663.285333pt;}
._10{width:730.901333pt;}
.fs2{font-size:37.333333pt;}
.fs5{font-size:38.933333pt;}
.fs1{font-size:42.666667pt;}
.fs7{font-size:48.000000pt;}
.fs8{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs4{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:67.855600pt;}
.y68{bottom:126.666000pt;}
.y8b{bottom:127.963200pt;}
.y20{bottom:128.393467pt;}
.yad{bottom:128.408933pt;}
.y45{bottom:128.825333pt;}
.y67{bottom:145.738000pt;}
.y8a{bottom:145.959200pt;}
.yac{bottom:146.404933pt;}
.y1f{bottom:147.721467pt;}
.y44{bottom:148.153333pt;}
.y89{bottom:163.955200pt;}
.yab{bottom:164.400933pt;}
.y66{bottom:164.810000pt;}
.y1e{bottom:167.049467pt;}
.y43{bottom:167.481333pt;}
.y88{bottom:181.951200pt;}
.yaa{bottom:182.396933pt;}
.y1d{bottom:186.377467pt;}
.y42{bottom:186.809333pt;}
.y87{bottom:199.947200pt;}
.ya9{bottom:200.392933pt;}
.y65{bottom:205.320000pt;}
.y1c{bottom:205.705467pt;}
.y41{bottom:206.137333pt;}
.y86{bottom:217.943200pt;}
.ya8{bottom:218.388933pt;}
.y1b{bottom:225.033467pt;}
.y40{bottom:225.465333pt;}
.y64{bottom:230.194667pt;}
.y85{bottom:235.939200pt;}
.ya7{bottom:236.384933pt;}
.y1a{bottom:244.361467pt;}
.y3f{bottom:244.793333pt;}
.y63{bottom:248.058667pt;}
.y84{bottom:253.935200pt;}
.ya6{bottom:254.380933pt;}
.y19{bottom:263.689467pt;}
.y3e{bottom:264.121333pt;}
.y83{bottom:271.931200pt;}
.ya5{bottom:272.376933pt;}
.y62{bottom:272.933333pt;}
.y18{bottom:283.017467pt;}
.y3d{bottom:283.449333pt;}
.y82{bottom:289.927200pt;}
.ya4{bottom:290.372933pt;}
.y61{bottom:290.797333pt;}
.y17{bottom:302.345467pt;}
.y3c{bottom:302.777333pt;}
.y81{bottom:307.923200pt;}
.ya3{bottom:308.368933pt;}
.y60{bottom:308.661333pt;}
.y5c{bottom:310.245333pt;}
.y16{bottom:321.673467pt;}
.y3b{bottom:322.105333pt;}
.y80{bottom:325.919200pt;}
.ya2{bottom:326.364933pt;}
.y5b{bottom:328.109333pt;}
.y5f{bottom:333.536000pt;}
.y15{bottom:341.001467pt;}
.y3a{bottom:341.433333pt;}
.y7f{bottom:343.915200pt;}
.ya1{bottom:344.360933pt;}
.y5a{bottom:345.973333pt;}
.y5e{bottom:358.410667pt;}
.y14{bottom:360.329467pt;}
.y39{bottom:360.761333pt;}
.y7e{bottom:369.474267pt;}
.y13{bottom:379.657467pt;}
.y38{bottom:380.089333pt;}
.ya0{bottom:380.360933pt;}
.y5d{bottom:383.285333pt;}
.y12{bottom:398.985467pt;}
.y37{bottom:399.417333pt;}
.y9f{bottom:405.920000pt;}
.y59{bottom:408.160000pt;}
.y7d{bottom:413.033333pt;}
.y11{bottom:418.313467pt;}
.y36{bottom:418.745333pt;}
.y9e{bottom:425.520000pt;}
.y7c{bottom:432.633333pt;}
.y56{bottom:433.034667pt;}
.y10{bottom:437.641467pt;}
.y35{bottom:438.073333pt;}
.y9d{bottom:445.120000pt;}
.y55{bottom:450.898667pt;}
.y7b{bottom:452.233333pt;}
.yf{bottom:456.969467pt;}
.y34{bottom:457.401333pt;}
.y58{bottom:457.909333pt;}
.y7a{bottom:471.833333pt;}
.y57{bottom:475.773333pt;}
.ye{bottom:476.297467pt;}
.ybf{bottom:476.720000pt;}
.y33{bottom:476.729333pt;}
.y79{bottom:491.433333pt;}
.ybe{bottom:492.720000pt;}
.yd{bottom:495.625467pt;}
.y32{bottom:496.057333pt;}
.y54{bottom:500.648000pt;}
.y9c{bottom:503.920000pt;}
.ybd{bottom:508.720000pt;}
.y78{bottom:511.033333pt;}
.y53{bottom:513.085333pt;}
.yc{bottom:514.953467pt;}
.y31{bottom:515.385333pt;}
.ybc{bottom:524.720000pt;}
.y77{bottom:530.633333pt;}
.yb{bottom:534.281467pt;}
.y30{bottom:534.713333pt;}
.y9b{bottom:537.584000pt;}
.y76{bottom:550.233333pt;}
.y52{bottom:550.397333pt;}
.ya{bottom:553.609467pt;}
.y2f{bottom:554.041333pt;}
.y9a{bottom:555.580000pt;}
.ybb{bottom:559.920000pt;}
.y50{bottom:568.261333pt;}
.y75{bottom:569.833333pt;}
.y9{bottom:572.937467pt;}
.y2e{bottom:573.369333pt;}
.y99{bottom:573.576000pt;}
.y51{bottom:586.125333pt;}
.y74{bottom:589.433333pt;}
.y98{bottom:591.572000pt;}
.y8{bottom:592.265467pt;}
.y2d{bottom:592.697333pt;}
.yba{bottom:596.720000pt;}
.y73{bottom:609.033333pt;}
.y97{bottom:609.568000pt;}
.y2c{bottom:612.025333pt;}
.yb9{bottom:614.320000pt;}
.y4f{bottom:616.500000pt;}
.y96{bottom:627.564000pt;}
.y72{bottom:628.633333pt;}
.y2b{bottom:631.353333pt;}
.yb8{bottom:631.920000pt;}
.y95{bottom:645.560000pt;}
.y71{bottom:648.233333pt;}
.yb7{bottom:649.520000pt;}
.y2a{bottom:650.681333pt;}
.y4e{bottom:652.985333pt;}
.y94{bottom:663.556000pt;}
.yb6{bottom:667.120000pt;}
.y70{bottom:667.833333pt;}
.y7{bottom:669.198800pt;}
.y29{bottom:670.009333pt;}
.y4d{bottom:672.057333pt;}
.y93{bottom:681.552000pt;}
.yb5{bottom:684.720000pt;}
.y6f{bottom:687.433333pt;}
.y28{bottom:689.337333pt;}
.y4c{bottom:691.129333pt;}
.y92{bottom:699.548000pt;}
.yb4{bottom:702.320000pt;}
.y6{bottom:705.998800pt;}
.y6e{bottom:707.033333pt;}
.y27{bottom:708.665333pt;}
.y4b{bottom:710.201333pt;}
.y91{bottom:717.544000pt;}
.yb3{bottom:719.920000pt;}
.y6d{bottom:726.633333pt;}
.y26{bottom:727.993333pt;}
.y4a{bottom:729.273333pt;}
.y5{bottom:733.198800pt;}
.y90{bottom:735.540000pt;}
.yb2{bottom:737.520000pt;}
.y6c{bottom:746.233333pt;}
.y25{bottom:747.321333pt;}
.y49{bottom:748.345333pt;}
.y8f{bottom:753.536000pt;}
.yb1{bottom:755.120000pt;}
.y4{bottom:760.398800pt;}
.y6b{bottom:765.833333pt;}
.y24{bottom:766.649333pt;}
.y48{bottom:767.417333pt;}
.y8e{bottom:771.532000pt;}
.yb0{bottom:772.720000pt;}
.y6a{bottom:785.433333pt;}
.y23{bottom:785.977333pt;}
.y47{bottom:786.489333pt;}
.y8d{bottom:789.528000pt;}
.yaf{bottom:790.320000pt;}
.y69{bottom:805.033333pt;}
.y22{bottom:805.305333pt;}
.y46{bottom:805.561333pt;}
.y8c{bottom:807.524000pt;}
.yae{bottom:807.920000pt;}
.y3{bottom:809.520000pt;}
.y21{bottom:824.633333pt;}
.y2{bottom:825.520000pt;}
.h3{height:31.700521pt;}
.h6{height:33.059115pt;}
.h8{height:36.229167pt;}
.h2{height:36.796875pt;}
.ha{height:40.476562pt;}
.he{height:43.022135pt;}
.h9{height:44.156250pt;}
.hd{height:45.286458pt;}
.h4{height:49.815104pt;}
.h7{height:54.343750pt;}
.h5{height:76.986979pt;}
.hc{height:85.543104pt;}
.hb{height:90.225896pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x7{left:68.031467pt;}
.xe{left:75.202133pt;}
.x1{left:86.929200pt;}
.x4{left:105.825200pt;}
.x11{left:124.732133pt;}
.x2{left:133.929200pt;}
.x13{left:139.154267pt;}
.x5{left:149.195733pt;}
.x8{left:160.664800pt;}
.xf{left:173.688800pt;}
.x3{left:192.741733pt;}
.xa{left:376.176800pt;}
.x9{left:383.803467pt;}
.xb{left:389.802133pt;}
.x10{left:405.744800pt;}
.xd{left:473.592800pt;}
.x12{left:480.180933pt;}
.xc{left:486.748800pt;}
.x6{left:508.590533pt;}
}




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