
    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_69d2c48fcdee76506e43c67e.woff2')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_33116d87666d73389437ead9.woff2')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_3c3fd914aa7b5efa6c423c1c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.889000;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_25b3d02db0a3f76a5b28780a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.852000;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_66b15313920b6224791e641d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.923000;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);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.lsa{letter-spacing:4.250074px;}
.lse{letter-spacing:4.841856px;}
.ls6{letter-spacing:5.272243px;}
.lsf{letter-spacing:5.326042px;}
.lsd{letter-spacing:5.379840px;}
.ls7{letter-spacing:5.433638px;}
.ls8{letter-spacing:5.487437px;}
.ls1{letter-spacing:14.943900px;}
.ls0{letter-spacing:29.887800px;}
.ls3{letter-spacing:32.709427px;}
.ls9{letter-spacing:34.108186px;}
.ls4{letter-spacing:100.495411px;}
.ls5{letter-spacing:168.227597px;}
.lsb{letter-spacing:169.195968px;}
.lsc{letter-spacing:305.682509px;}
.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;}
}
.ws1b{word-spacing:-14.943900px;}
.ws23{word-spacing:-5.433638px;}
.ws27{word-spacing:-5.379840px;}
.ws24{word-spacing:-4.895654px;}
.ws1d{word-spacing:-2.331248px;}
.wsa{word-spacing:-1.853044px;}
.wsb{word-spacing:-0.059776px;}
.ws17{word-spacing:-0.053798px;}
.ws0{word-spacing:0.000000px;}
.ws2{word-spacing:0.956410px;}
.ws9{word-spacing:1.793268px;}
.ws1c{word-spacing:2.391024px;}
.wse{word-spacing:3.586536px;}
.wsc{word-spacing:4.004965px;}
.ws3{word-spacing:5.320028px;}
.ws7{word-spacing:5.439580px;}
.ws6{word-spacing:6.575316px;}
.ws18{word-spacing:7.477978px;}
.ws28{word-spacing:7.693171px;}
.ws2c{word-spacing:7.746970px;}
.ws11{word-spacing:7.800768px;}
.ws2e{word-spacing:7.908365px;}
.ws10{word-spacing:7.962163px;}
.ws15{word-spacing:8.015962px;}
.ws1f{word-spacing:8.069760px;}
.ws31{word-spacing:8.368584px;}
.ws8{word-spacing:8.607686px;}
.wsf{word-spacing:14.884124px;}
.wsd{word-spacing:14.943900px;}
.ws5{word-spacing:20.144377px;}
.ws4{word-spacing:21.220338px;}
.ws1a{word-spacing:25.237477px;}
.ws19{word-spacing:29.427725px;}
.ws13{word-spacing:29.535322px;}
.ws12{word-spacing:29.858112px;}
.ws30{word-spacing:33.516403px;}
.ws1e{word-spacing:34.915162px;}
.ws20{word-spacing:40.456397px;}
.ws21{word-spacing:41.801357px;}
.ws29{word-spacing:42.285542px;}
.ws2a{word-spacing:42.877325px;}
.ws25{word-spacing:42.931123px;}
.ws26{word-spacing:43.845696px;}
.ws22{word-spacing:43.899494px;}
.ws1{word-spacing:64.557900px;}
.ws16{word-spacing:93.023461px;}
.ws14{word-spacing:160.755647px;}
.ws2d{word-spacing:161.724018px;}
.ws2f{word-spacing:162.799986px;}
.ws2b{word-spacing:298.210559px;}
._1{margin-left:-7.962163px;}
._e{margin-left:-5.977560px;}
._d{margin-left:-4.672049px;}
._5{margin-left:-2.634902px;}
._0{margin-left:-1.549390px;}
._18{width:2.098138px;}
._10{width:3.281702px;}
._11{width:4.680461px;}
._15{width:5.702630px;}
._19{width:6.993792px;}
._13{width:9.468518px;}
._16{width:11.405261px;}
._17{width:12.696422px;}
._9{width:17.220149px;}
._a{width:18.530436px;}
._3{width:21.459440px;}
._8{width:24.802098px;}
._b{width:25.937834px;}
._c{width:29.887800px;}
._2{width:34.366194px;}
._7{width:35.745809px;}
._4{width:37.235423px;}
._14{width:40.779187px;}
._12{width:41.908954px;}
._1a{width:43.200115px;}
._1b{width:44.329882px;}
._f{width:71.731200px;}
._6{width:86.077200px;}
.fc2{color:rgb(25,25,25);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:29.887800px;}
.fs4{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y23{bottom:63.168000px;}
.y51{bottom:124.362000px;}
.y50{bottom:151.603500px;}
.y4f{bottom:168.040500px;}
.y22{bottom:176.179500px;}
.y4e{bottom:184.479000px;}
.y4d{bottom:200.917500px;}
.y21{bottom:206.068500px;}
.y4c{bottom:217.356000px;}
.y20{bottom:229.978500px;}
.y4b{bottom:233.794500px;}
.y4a{bottom:250.233000px;}
.y1f{bottom:253.888500px;}
.y49{bottom:266.671500px;}
.y48{bottom:283.110000px;}
.y1e{bottom:283.776000px;}
.y47{bottom:299.548500px;}
.y1d{bottom:313.665000px;}
.y46{bottom:315.987000px;}
.y45{bottom:332.424000px;}
.y1c{bottom:343.552500px;}
.y44{bottom:348.862500px;}
.y43{bottom:365.301000px;}
.y1b{bottom:373.440000px;}
.y42{bottom:381.739500px;}
.y41{bottom:398.178000px;}
.y1a{bottom:403.327500px;}
.y40{bottom:425.011500px;}
.y19{bottom:433.216500px;}
.y18{bottom:457.126500px;}
.y3f{bottom:459.502500px;}
.y17{bottom:487.014000px;}
.y3e{bottom:508.824000px;}
.y16{bottom:516.901500px;}
.y3d{bottom:538.497000px;}
.y15{bottom:551.394000px;}
.y3c{bottom:568.170000px;}
.y3b{bottom:595.752000px;}
.y14{bottom:600.807000px;}
.y13{bottom:618.739500px;}
.y3a{bottom:637.486500px;}
.y12{bottom:648.627000px;}
.y11{bottom:666.559500px;}
.y39{bottom:667.159500px;}
.y10{bottom:696.448500px;}
.y38{bottom:696.834000px;}
.yf{bottom:714.381000px;}
.y37{bottom:726.507000px;}
.ye{bottom:732.313500px;}
.y36{bottom:756.180000px;}
.yd{bottom:762.201000px;}
.y5b{bottom:765.390000px;}
.yc{bottom:780.133500px;}
.y35{bottom:801.646500px;}
.yb{bottom:810.022500px;}
.y34{bottom:828.886500px;}
.ya{bottom:844.513500px;}
.y33{bottom:845.325000px;}
.y5a{bottom:850.072500px;}
.y32{bottom:861.763500px;}
.y31{bottom:878.202000px;}
.y59{bottom:879.961500px;}
.y9{bottom:893.926500px;}
.y30{bottom:894.640500px;}
.y58{bottom:909.849000px;}
.y2f{bottom:911.079000px;}
.y8{bottom:911.859000px;}
.y2e{bottom:927.517500px;}
.y7{bottom:929.791500px;}
.y57{bottom:939.736500px;}
.y2d{bottom:943.956000px;}
.y6{bottom:947.725500px;}
.y2c{bottom:960.394500px;}
.y5{bottom:965.658000px;}
.y56{bottom:974.227500px;}
.y2b{bottom:976.831500px;}
.y2a{bottom:993.270000px;}
.y4{bottom:1000.149000px;}
.y29{bottom:1009.708500px;}
.y55{bottom:1023.640500px;}
.y28{bottom:1026.147000px;}
.y54{bottom:1041.574500px;}
.y27{bottom:1042.585500px;}
.y26{bottom:1069.419000px;}
.y53{bottom:1071.462000px;}
.y3{bottom:1089.081000px;}
.y25{bottom:1097.001000px;}
.y52{bottom:1101.349500px;}
.y2{bottom:1114.486500px;}
.y24{bottom:1136.005500px;}
.y1{bottom:1139.890500px;}
.h8{height:37.013299px;}
.h7{height:37.443686px;}
.h4{height:41.125613px;}
.h5{height:41.364715px;}
.h3{height:49.351066px;}
.h6{height:49.637990px;}
.h2{height:59.565422px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:93.055500px;}
.xa{left:96.792000px;}
.x4{left:108.000000px;}
.x7{left:126.679500px;}
.x5{left:132.657000px;}
.xd{left:139.098000px;}
.x6{left:145.360500px;}
.xe{left:147.570000px;}
.x8{left:165.534000px;}
.x1{left:247.921500px;}
.x10{left:310.752000px;}
.x2{left:322.434000px;}
.xc{left:337.509000px;}
.xf{left:338.704500px;}
.x3{left:387.735000px;}
.x9{left:442.720500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.lsa{letter-spacing:3.777843pt;}
.lse{letter-spacing:4.303872pt;}
.ls6{letter-spacing:4.686438pt;}
.lsf{letter-spacing:4.734259pt;}
.lsd{letter-spacing:4.782080pt;}
.ls7{letter-spacing:4.829901pt;}
.ls8{letter-spacing:4.877722pt;}
.ls1{letter-spacing:13.283467pt;}
.ls0{letter-spacing:26.566933pt;}
.ls3{letter-spacing:29.075046pt;}
.ls9{letter-spacing:30.318387pt;}
.ls4{letter-spacing:89.329254pt;}
.ls5{letter-spacing:149.535642pt;}
.lsb{letter-spacing:150.396416pt;}
.lsc{letter-spacing:271.717786pt;}
.ws1b{word-spacing:-13.283467pt;}
.ws23{word-spacing:-4.829901pt;}
.ws27{word-spacing:-4.782080pt;}
.ws24{word-spacing:-4.351693pt;}
.ws1d{word-spacing:-2.072221pt;}
.wsa{word-spacing:-1.647150pt;}
.wsb{word-spacing:-0.053134pt;}
.ws17{word-spacing:-0.047821pt;}
.ws0{word-spacing:0.000000pt;}
.ws2{word-spacing:0.850142pt;}
.ws9{word-spacing:1.594016pt;}
.ws1c{word-spacing:2.125355pt;}
.wse{word-spacing:3.188032pt;}
.wsc{word-spacing:3.559969pt;}
.ws3{word-spacing:4.728914pt;}
.ws7{word-spacing:4.835182pt;}
.ws6{word-spacing:5.844725pt;}
.ws18{word-spacing:6.647091pt;}
.ws28{word-spacing:6.838374pt;}
.ws2c{word-spacing:6.886195pt;}
.ws11{word-spacing:6.934016pt;}
.ws2e{word-spacing:7.029658pt;}
.ws10{word-spacing:7.077478pt;}
.ws15{word-spacing:7.125299pt;}
.ws1f{word-spacing:7.173120pt;}
.ws31{word-spacing:7.438741pt;}
.ws8{word-spacing:7.651277pt;}
.wsf{word-spacing:13.230333pt;}
.wsd{word-spacing:13.283467pt;}
.ws5{word-spacing:17.906113pt;}
.ws4{word-spacing:18.862523pt;}
.ws1a{word-spacing:22.433313pt;}
.ws19{word-spacing:26.157978pt;}
.ws13{word-spacing:26.253619pt;}
.ws12{word-spacing:26.540544pt;}
.ws30{word-spacing:29.792358pt;}
.ws1e{word-spacing:31.035699pt;}
.ws20{word-spacing:35.961242pt;}
.ws21{word-spacing:37.156762pt;}
.ws29{word-spacing:37.587149pt;}
.ws2a{word-spacing:38.113178pt;}
.ws25{word-spacing:38.160998pt;}
.ws26{word-spacing:38.973952pt;}
.ws22{word-spacing:39.021773pt;}
.ws1{word-spacing:57.384800pt;}
.ws16{word-spacing:82.687521pt;}
.ws14{word-spacing:142.893908pt;}
.ws2d{word-spacing:143.754683pt;}
.ws2f{word-spacing:144.711099pt;}
.ws2b{word-spacing:265.076052pt;}
._1{margin-left:-7.077478pt;}
._e{margin-left:-5.313387pt;}
._d{margin-left:-4.152932pt;}
._5{margin-left:-2.342135pt;}
._0{margin-left:-1.377235pt;}
._18{width:1.865011pt;}
._10{width:2.917069pt;}
._11{width:4.160410pt;}
._15{width:5.069005pt;}
._19{width:6.216704pt;}
._13{width:8.416461pt;}
._16{width:10.138010pt;}
._17{width:11.285709pt;}
._9{width:15.306799pt;}
._a{width:16.471499pt;}
._3{width:19.075058pt;}
._8{width:22.046309pt;}
._b{width:23.055853pt;}
._c{width:26.566933pt;}
._2{width:30.547728pt;}
._7{width:31.774052pt;}
._4{width:33.098154pt;}
._14{width:36.248166pt;}
._12{width:37.252403pt;}
._1a{width:38.400102pt;}
._1b{width:39.404339pt;}
._f{width:63.761067pt;}
._6{width:76.513067pt;}
.fs3{font-size:26.566933pt;}
.fs4{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:56.149333pt;}
.y51{bottom:110.544000pt;}
.y50{bottom:134.758667pt;}
.y4f{bottom:149.369333pt;}
.y22{bottom:156.604000pt;}
.y4e{bottom:163.981333pt;}
.y4d{bottom:178.593333pt;}
.y21{bottom:183.172000pt;}
.y4c{bottom:193.205333pt;}
.y20{bottom:204.425333pt;}
.y4b{bottom:207.817333pt;}
.y4a{bottom:222.429333pt;}
.y1f{bottom:225.678667pt;}
.y49{bottom:237.041333pt;}
.y48{bottom:251.653333pt;}
.y1e{bottom:252.245333pt;}
.y47{bottom:266.265333pt;}
.y1d{bottom:278.813333pt;}
.y46{bottom:280.877333pt;}
.y45{bottom:295.488000pt;}
.y1c{bottom:305.380000pt;}
.y44{bottom:310.100000pt;}
.y43{bottom:324.712000pt;}
.y1b{bottom:331.946667pt;}
.y42{bottom:339.324000pt;}
.y41{bottom:353.936000pt;}
.y1a{bottom:358.513333pt;}
.y40{bottom:377.788000pt;}
.y19{bottom:385.081333pt;}
.y18{bottom:406.334667pt;}
.y3f{bottom:408.446667pt;}
.y17{bottom:432.901333pt;}
.y3e{bottom:452.288000pt;}
.y16{bottom:459.468000pt;}
.y3d{bottom:478.664000pt;}
.y15{bottom:490.128000pt;}
.y3c{bottom:505.040000pt;}
.y3b{bottom:529.557333pt;}
.y14{bottom:534.050667pt;}
.y13{bottom:549.990667pt;}
.y3a{bottom:566.654667pt;}
.y12{bottom:576.557333pt;}
.y11{bottom:592.497333pt;}
.y39{bottom:593.030667pt;}
.y10{bottom:619.065333pt;}
.y38{bottom:619.408000pt;}
.yf{bottom:635.005333pt;}
.y37{bottom:645.784000pt;}
.ye{bottom:650.945333pt;}
.y36{bottom:672.160000pt;}
.yd{bottom:677.512000pt;}
.y5b{bottom:680.346667pt;}
.yc{bottom:693.452000pt;}
.y35{bottom:712.574667pt;}
.yb{bottom:720.020000pt;}
.y34{bottom:736.788000pt;}
.ya{bottom:750.678667pt;}
.y33{bottom:751.400000pt;}
.y5a{bottom:755.620000pt;}
.y32{bottom:766.012000pt;}
.y31{bottom:780.624000pt;}
.y59{bottom:782.188000pt;}
.y9{bottom:794.601333pt;}
.y30{bottom:795.236000pt;}
.y58{bottom:808.754667pt;}
.y2f{bottom:809.848000pt;}
.y8{bottom:810.541333pt;}
.y2e{bottom:824.460000pt;}
.y7{bottom:826.481333pt;}
.y57{bottom:835.321333pt;}
.y2d{bottom:839.072000pt;}
.y6{bottom:842.422667pt;}
.y2c{bottom:853.684000pt;}
.y5{bottom:858.362667pt;}
.y56{bottom:865.980000pt;}
.y2b{bottom:868.294667pt;}
.y2a{bottom:882.906667pt;}
.y4{bottom:889.021333pt;}
.y29{bottom:897.518667pt;}
.y55{bottom:909.902667pt;}
.y28{bottom:912.130667pt;}
.y54{bottom:925.844000pt;}
.y27{bottom:926.742667pt;}
.y26{bottom:950.594667pt;}
.y53{bottom:952.410667pt;}
.y3{bottom:968.072000pt;}
.y25{bottom:975.112000pt;}
.y52{bottom:978.977333pt;}
.y2{bottom:990.654667pt;}
.y24{bottom:1009.782667pt;}
.y1{bottom:1013.236000pt;}
.h8{height:32.900710pt;}
.h7{height:33.283277pt;}
.h4{height:36.556100pt;}
.h5{height:36.768636pt;}
.h3{height:43.867614pt;}
.h6{height:44.122658pt;}
.h2{height:52.947042pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:82.716000pt;}
.xa{left:86.037333pt;}
.x4{left:96.000000pt;}
.x7{left:112.604000pt;}
.x5{left:117.917333pt;}
.xd{left:123.642667pt;}
.x6{left:129.209333pt;}
.xe{left:131.173333pt;}
.x8{left:147.141333pt;}
.x1{left:220.374667pt;}
.x10{left:276.224000pt;}
.x2{left:286.608000pt;}
.xc{left:300.008000pt;}
.xf{left:301.070667pt;}
.x3{left:344.653333pt;}
.x9{left:393.529333pt;}
}




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