
    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_120203245369b53700ff061f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.180000;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_58a571e65a7f9dd4d1c6c362.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_d73660849cc226e23061290f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_7ec3aac09cfe39ed73aadbf9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.912500;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_96e15340732e94f9560a91d2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.913000;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_ea6a017e8167e97d8f4b2cdc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.820801;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_96d6054d3907303b48f1bf34.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_0536158cde1c9c1a1706d1d4.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.051758;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_e8ebc50bd3d3f146e0d37239.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.895508;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);}
.v2{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.976000px;}
.ls4{letter-spacing:-5.184000px;}
.ls1{letter-spacing:-5.126400px;}
.ls2{letter-spacing:-5.040000px;}
.ls9{letter-spacing:-2.808000px;}
.ls7{letter-spacing:-1.195200px;}
.ls5{letter-spacing:-0.043200px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:1.166400px;}
.ls8{letter-spacing:3.816000px;}
.ls6{letter-spacing:40.500000px;}
.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;}
}
.ws0{word-spacing:-72.000000px;}
.ws3{word-spacing:-54.000000px;}
.ws7{word-spacing:-52.056000px;}
.ws6{word-spacing:-36.126000px;}
.wsa{word-spacing:-18.000000px;}
.wsb{word-spacing:-13.500000px;}
.ws4{word-spacing:-12.738000px;}
.ws1{word-spacing:-10.494000px;}
.ws2{word-spacing:-7.870500px;}
.ws8{word-spacing:-0.100800px;}
.ws5{word-spacing:0.000000px;}
.ws9{word-spacing:1.051200px;}
._2{margin-left:-8.040000px;}
._4{margin-left:-6.960000px;}
._d{margin-left:-5.578200px;}
._14{margin-left:-3.844800px;}
._1{margin-left:-2.685600px;}
._0{margin-left:-1.303200px;}
._3{width:1.051200px;}
._e{width:2.332800px;}
._c{width:3.493800px;}
._5{width:4.608000px;}
._9{width:5.623200px;}
._8{width:6.624000px;}
._6{width:7.848000px;}
._b{width:8.910000px;}
._7{width:10.245600px;}
._f{width:12.168000px;}
._11{width:14.040000px;}
._10{width:15.516000px;}
._19{width:16.920000px;}
._15{width:20.808000px;}
._16{width:23.871600px;}
._13{width:25.383600px;}
._18{width:26.978400px;}
._12{width:29.124000px;}
._17{width:30.960000px;}
._a{width:40.500000px;}
.fc1{color:rgb(128,130,133);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:31.482000px;}
.fs2{font-size:41.976000px;}
.fs4{font-size:54.000000px;}
.fs5{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.fs6{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y41{bottom:127.558950px;}
.y11{bottom:127.559100px;}
.ya5{bottom:132.054600px;}
.y10{bottom:143.759100px;}
.y40{bottom:148.254450px;}
.y87{bottom:148.254600px;}
.y70{bottom:149.281200px;}
.yf{bottom:159.959100px;}
.y86{bottom:164.454600px;}
.y6f{bottom:171.781200px;}
.ye{bottom:176.159100px;}
.ya4{bottom:180.654600px;}
.yd{bottom:192.359100px;}
.y6e{bottom:194.281200px;}
.y67{bottom:196.854600px;}
.yc{bottom:213.054600px;}
.y6d{bottom:216.781200px;}
.y3f{bottom:224.035200px;}
.y85{bottom:239.271450px;}
.y6c{bottom:239.281200px;}
.y3e{bottom:246.535200px;}
.ya3{bottom:254.507700px;}
.y84{bottom:261.771450px;}
.y6b{bottom:261.781200px;}
.y66{bottom:261.781350px;}
.y3d{bottom:269.035200px;}
.yb{bottom:274.002600px;}
.ya2{bottom:277.007700px;}
.y83{bottom:284.271450px;}
.y6a{bottom:284.281200px;}
.y65{bottom:284.281350px;}
.y3c{bottom:291.535200px;}
.ya{bottom:296.502600px;}
.ya1{bottom:299.507700px;}
.y82{bottom:306.771450px;}
.y69{bottom:306.781200px;}
.y64{bottom:306.781350px;}
.y3b{bottom:314.035200px;}
.y9{bottom:319.002600px;}
.ya0{bottom:322.007700px;}
.y81{bottom:329.271450px;}
.y63{bottom:329.281350px;}
.y3a{bottom:336.535200px;}
.y68{bottom:337.777200px;}
.y8{bottom:340.602600px;}
.y9f{bottom:344.507700px;}
.y80{bottom:351.771450px;}
.y62{bottom:351.781350px;}
.y39{bottom:359.035200px;}
.y7{bottom:362.202600px;}
.y9e{bottom:367.007700px;}
.y7f{bottom:374.271450px;}
.y61{bottom:374.281350px;}
.y38{bottom:381.535200px;}
.y6{bottom:383.802600px;}
.y9d{bottom:389.507700px;}
.y7e{bottom:396.771450px;}
.y60{bottom:396.781350px;}
.y37{bottom:404.035200px;}
.y5{bottom:405.402600px;}
.y9c{bottom:412.007700px;}
.y7d{bottom:419.271450px;}
.y5f{bottom:419.281350px;}
.y36{bottom:426.535200px;}
.y9b{bottom:434.507700px;}
.y7c{bottom:441.771450px;}
.y5e{bottom:441.781350px;}
.y35{bottom:449.035200px;}
.y9a{bottom:457.027200px;}
.y7b{bottom:464.271450px;}
.y5d{bottom:464.281350px;}
.y34{bottom:471.535200px;}
.y99{bottom:479.527200px;}
.y7a{bottom:486.771450px;}
.y5c{bottom:486.781350px;}
.y33{bottom:494.035200px;}
.y98{bottom:502.027200px;}
.y79{bottom:509.271450px;}
.y5b{bottom:509.281350px;}
.y32{bottom:516.535200px;}
.y97{bottom:524.527200px;}
.y78{bottom:531.771450px;}
.y5a{bottom:531.781350px;}
.y31{bottom:539.035200px;}
.y96{bottom:547.027200px;}
.y77{bottom:554.271450px;}
.y59{bottom:554.281350px;}
.y30{bottom:561.535200px;}
.y95{bottom:569.527200px;}
.y58{bottom:576.781350px;}
.y2f{bottom:584.035200px;}
.y94{bottom:592.027200px;}
.y76{bottom:599.281350px;}
.y2e{bottom:606.535200px;}
.y57{bottom:607.777350px;}
.y75{bottom:621.781350px;}
.y93{bottom:623.023200px;}
.y2d{bottom:629.035200px;}
.y56{bottom:630.277350px;}
.y74{bottom:644.281350px;}
.y2c{bottom:651.535200px;}
.y92{bottom:666.781200px;}
.y73{bottom:666.781350px;}
.y2b{bottom:674.035200px;}
.y55{bottom:674.035350px;}
.y91{bottom:689.281200px;}
.y2a{bottom:696.535200px;}
.y54{bottom:696.535350px;}
.y72{bottom:697.777350px;}
.y90{bottom:711.781200px;}
.y29{bottom:719.035200px;}
.y53{bottom:719.035350px;}
.y71{bottom:720.277350px;}
.y8f{bottom:734.281200px;}
.y28{bottom:741.535200px;}
.y52{bottom:741.535350px;}
.y8e{bottom:756.781200px;}
.y27{bottom:764.035200px;}
.y51{bottom:764.035350px;}
.y8d{bottom:779.281200px;}
.y26{bottom:786.535200px;}
.y50{bottom:786.535350px;}
.y8c{bottom:801.781200px;}
.y25{bottom:809.035200px;}
.y4f{bottom:809.035350px;}
.y8b{bottom:824.281200px;}
.y24{bottom:831.535200px;}
.y4e{bottom:831.535350px;}
.y8a{bottom:846.781200px;}
.y23{bottom:854.035200px;}
.y4d{bottom:854.035350px;}
.y22{bottom:876.535200px;}
.y4c{bottom:876.535350px;}
.y89{bottom:877.777200px;}
.y4{bottom:893.358600px;}
.y21{bottom:899.035200px;}
.y4b{bottom:899.035350px;}
.y88{bottom:900.277200px;}
.y20{bottom:921.535200px;}
.y4a{bottom:921.535350px;}
.y3{bottom:923.358600px;}
.y1f{bottom:944.035200px;}
.y49{bottom:944.035350px;}
.y2{bottom:953.358600px;}
.y1e{bottom:966.535200px;}
.y48{bottom:966.535350px;}
.y1d{bottom:989.035200px;}
.y47{bottom:989.035350px;}
.y1c{bottom:1011.535200px;}
.y46{bottom:1011.535350px;}
.y1{bottom:1018.614600px;}
.y1b{bottom:1034.035200px;}
.y45{bottom:1034.035350px;}
.y1a{bottom:1056.535200px;}
.y44{bottom:1056.535350px;}
.y19{bottom:1079.035200px;}
.y43{bottom:1079.035350px;}
.y18{bottom:1101.535200px;}
.y42{bottom:1101.535350px;}
.y16{bottom:1116.352350px;}
.y15{bottom:1136.152350px;}
.y14{bottom:1155.952350px;}
.y17{bottom:1166.275950px;}
.y13{bottom:1175.752350px;}
.y12{bottom:1195.552350px;}
.h5{height:29.399836px;}
.h6{height:47.381836px;}
.h7{height:48.015000px;}
.h9{height:49.289062px;}
.h4{height:63.175781px;}
.h2{height:69.984000px;}
.h8{height:111.164062px;}
.h3{height:116.640000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:127.559100px;}
.x4{left:143.415300px;}
.x2{left:181.425300px;}
.x3{left:191.475300px;}
.xb{left:217.098450px;}
.x1{left:357.879600px;}
.x6{left:485.675850px;}
.x7{left:611.455350px;}
.xa{left:641.567850px;}
.x8{left:649.916850px;}
.x9{left:719.431350px;}
@media print{
.v2{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.312000pt;}
.ls4{letter-spacing:-4.608000pt;}
.ls1{letter-spacing:-4.556800pt;}
.ls2{letter-spacing:-4.480000pt;}
.ls9{letter-spacing:-2.496000pt;}
.ls7{letter-spacing:-1.062400pt;}
.ls5{letter-spacing:-0.038400pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:1.036800pt;}
.ls8{letter-spacing:3.392000pt;}
.ls6{letter-spacing:36.000000pt;}
.ws0{word-spacing:-64.000000pt;}
.ws3{word-spacing:-48.000000pt;}
.ws7{word-spacing:-46.272000pt;}
.ws6{word-spacing:-32.112000pt;}
.wsa{word-spacing:-16.000000pt;}
.wsb{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.322667pt;}
.ws1{word-spacing:-9.328000pt;}
.ws2{word-spacing:-6.996000pt;}
.ws8{word-spacing:-0.089600pt;}
.ws5{word-spacing:0.000000pt;}
.ws9{word-spacing:0.934400pt;}
._2{margin-left:-7.146667pt;}
._4{margin-left:-6.186667pt;}
._d{margin-left:-4.958400pt;}
._14{margin-left:-3.417600pt;}
._1{margin-left:-2.387200pt;}
._0{margin-left:-1.158400pt;}
._3{width:0.934400pt;}
._e{width:2.073600pt;}
._c{width:3.105600pt;}
._5{width:4.096000pt;}
._9{width:4.998400pt;}
._8{width:5.888000pt;}
._6{width:6.976000pt;}
._b{width:7.920000pt;}
._7{width:9.107200pt;}
._f{width:10.816000pt;}
._11{width:12.480000pt;}
._10{width:13.792000pt;}
._19{width:15.040000pt;}
._15{width:18.496000pt;}
._16{width:21.219200pt;}
._13{width:22.563200pt;}
._18{width:23.980800pt;}
._12{width:25.888000pt;}
._17{width:27.520000pt;}
._a{width:36.000000pt;}
.fs3{font-size:27.984000pt;}
.fs2{font-size:37.312000pt;}
.fs4{font-size:48.000000pt;}
.fs5{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.fs6{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y41{bottom:113.385733pt;}
.y11{bottom:113.385867pt;}
.ya5{bottom:117.381867pt;}
.y10{bottom:127.785867pt;}
.y40{bottom:131.781733pt;}
.y87{bottom:131.781867pt;}
.y70{bottom:132.694400pt;}
.yf{bottom:142.185867pt;}
.y86{bottom:146.181867pt;}
.y6f{bottom:152.694400pt;}
.ye{bottom:156.585867pt;}
.ya4{bottom:160.581867pt;}
.yd{bottom:170.985867pt;}
.y6e{bottom:172.694400pt;}
.y67{bottom:174.981867pt;}
.yc{bottom:189.381867pt;}
.y6d{bottom:192.694400pt;}
.y3f{bottom:199.142400pt;}
.y85{bottom:212.685733pt;}
.y6c{bottom:212.694400pt;}
.y3e{bottom:219.142400pt;}
.ya3{bottom:226.229067pt;}
.y84{bottom:232.685733pt;}
.y6b{bottom:232.694400pt;}
.y66{bottom:232.694533pt;}
.y3d{bottom:239.142400pt;}
.yb{bottom:243.557867pt;}
.ya2{bottom:246.229067pt;}
.y83{bottom:252.685733pt;}
.y6a{bottom:252.694400pt;}
.y65{bottom:252.694533pt;}
.y3c{bottom:259.142400pt;}
.ya{bottom:263.557867pt;}
.ya1{bottom:266.229067pt;}
.y82{bottom:272.685733pt;}
.y69{bottom:272.694400pt;}
.y64{bottom:272.694533pt;}
.y3b{bottom:279.142400pt;}
.y9{bottom:283.557867pt;}
.ya0{bottom:286.229067pt;}
.y81{bottom:292.685733pt;}
.y63{bottom:292.694533pt;}
.y3a{bottom:299.142400pt;}
.y68{bottom:300.246400pt;}
.y8{bottom:302.757867pt;}
.y9f{bottom:306.229067pt;}
.y80{bottom:312.685733pt;}
.y62{bottom:312.694533pt;}
.y39{bottom:319.142400pt;}
.y7{bottom:321.957867pt;}
.y9e{bottom:326.229067pt;}
.y7f{bottom:332.685733pt;}
.y61{bottom:332.694533pt;}
.y38{bottom:339.142400pt;}
.y6{bottom:341.157867pt;}
.y9d{bottom:346.229067pt;}
.y7e{bottom:352.685733pt;}
.y60{bottom:352.694533pt;}
.y37{bottom:359.142400pt;}
.y5{bottom:360.357867pt;}
.y9c{bottom:366.229067pt;}
.y7d{bottom:372.685733pt;}
.y5f{bottom:372.694533pt;}
.y36{bottom:379.142400pt;}
.y9b{bottom:386.229067pt;}
.y7c{bottom:392.685733pt;}
.y5e{bottom:392.694533pt;}
.y35{bottom:399.142400pt;}
.y9a{bottom:406.246400pt;}
.y7b{bottom:412.685733pt;}
.y5d{bottom:412.694533pt;}
.y34{bottom:419.142400pt;}
.y99{bottom:426.246400pt;}
.y7a{bottom:432.685733pt;}
.y5c{bottom:432.694533pt;}
.y33{bottom:439.142400pt;}
.y98{bottom:446.246400pt;}
.y79{bottom:452.685733pt;}
.y5b{bottom:452.694533pt;}
.y32{bottom:459.142400pt;}
.y97{bottom:466.246400pt;}
.y78{bottom:472.685733pt;}
.y5a{bottom:472.694533pt;}
.y31{bottom:479.142400pt;}
.y96{bottom:486.246400pt;}
.y77{bottom:492.685733pt;}
.y59{bottom:492.694533pt;}
.y30{bottom:499.142400pt;}
.y95{bottom:506.246400pt;}
.y58{bottom:512.694533pt;}
.y2f{bottom:519.142400pt;}
.y94{bottom:526.246400pt;}
.y76{bottom:532.694533pt;}
.y2e{bottom:539.142400pt;}
.y57{bottom:540.246533pt;}
.y75{bottom:552.694533pt;}
.y93{bottom:553.798400pt;}
.y2d{bottom:559.142400pt;}
.y56{bottom:560.246533pt;}
.y74{bottom:572.694533pt;}
.y2c{bottom:579.142400pt;}
.y92{bottom:592.694400pt;}
.y73{bottom:592.694533pt;}
.y2b{bottom:599.142400pt;}
.y55{bottom:599.142533pt;}
.y91{bottom:612.694400pt;}
.y2a{bottom:619.142400pt;}
.y54{bottom:619.142533pt;}
.y72{bottom:620.246533pt;}
.y90{bottom:632.694400pt;}
.y29{bottom:639.142400pt;}
.y53{bottom:639.142533pt;}
.y71{bottom:640.246533pt;}
.y8f{bottom:652.694400pt;}
.y28{bottom:659.142400pt;}
.y52{bottom:659.142533pt;}
.y8e{bottom:672.694400pt;}
.y27{bottom:679.142400pt;}
.y51{bottom:679.142533pt;}
.y8d{bottom:692.694400pt;}
.y26{bottom:699.142400pt;}
.y50{bottom:699.142533pt;}
.y8c{bottom:712.694400pt;}
.y25{bottom:719.142400pt;}
.y4f{bottom:719.142533pt;}
.y8b{bottom:732.694400pt;}
.y24{bottom:739.142400pt;}
.y4e{bottom:739.142533pt;}
.y8a{bottom:752.694400pt;}
.y23{bottom:759.142400pt;}
.y4d{bottom:759.142533pt;}
.y22{bottom:779.142400pt;}
.y4c{bottom:779.142533pt;}
.y89{bottom:780.246400pt;}
.y4{bottom:794.096533pt;}
.y21{bottom:799.142400pt;}
.y4b{bottom:799.142533pt;}
.y88{bottom:800.246400pt;}
.y20{bottom:819.142400pt;}
.y4a{bottom:819.142533pt;}
.y3{bottom:820.763200pt;}
.y1f{bottom:839.142400pt;}
.y49{bottom:839.142533pt;}
.y2{bottom:847.429867pt;}
.y1e{bottom:859.142400pt;}
.y48{bottom:859.142533pt;}
.y1d{bottom:879.142400pt;}
.y47{bottom:879.142533pt;}
.y1c{bottom:899.142400pt;}
.y46{bottom:899.142533pt;}
.y1{bottom:905.435200pt;}
.y1b{bottom:919.142400pt;}
.y45{bottom:919.142533pt;}
.y1a{bottom:939.142400pt;}
.y44{bottom:939.142533pt;}
.y19{bottom:959.142400pt;}
.y43{bottom:959.142533pt;}
.y18{bottom:979.142400pt;}
.y42{bottom:979.142533pt;}
.y16{bottom:992.313200pt;}
.y15{bottom:1009.913200pt;}
.y14{bottom:1027.513200pt;}
.y17{bottom:1036.689733pt;}
.y13{bottom:1045.113200pt;}
.y12{bottom:1062.713200pt;}
.h5{height:26.133187pt;}
.h6{height:42.117188pt;}
.h7{height:42.680000pt;}
.h9{height:43.812500pt;}
.h4{height:56.156250pt;}
.h2{height:62.208000pt;}
.h8{height:98.812500pt;}
.h3{height:103.680000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:113.385867pt;}
.x4{left:127.480267pt;}
.x2{left:161.266933pt;}
.x3{left:170.200267pt;}
.xb{left:192.976400pt;}
.x1{left:318.115200pt;}
.x6{left:431.711867pt;}
.x7{left:543.515867pt;}
.xa{left:570.282533pt;}
.x8{left:577.703867pt;}
.x9{left:639.494533pt;}
}




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