
    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_bea3ce842d5c11845a34345f.woff')format("woff");}.ff1{font-family:ff1;line-height:1.183105;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_7903d0de32caf3dba3bd31b1.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_246a6c4a406c28712f7b607d.woff')format("woff");}.ff3{font-family:ff3;line-height:1.122070;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_32408f87ad85eb79b38c874f.woff')format("woff");}.ff4{font-family:ff4;line-height:1.065430;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_47cfc04349f5815a1d891496.woff')format("woff");}.ff5{font-family:ff5;line-height:1.122070;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_470aeb1d9b529b23eeb3a387.woff')format("woff");}.ff6{font-family:ff6;line-height:1.183105;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_a49da2975e7ff5b52c9caa1e.woff')format("woff");}.ff7{font-family:ff7;line-height:1.074707;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:-11.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:16.913400px;}
.ls6{letter-spacing:-6.588000px;}
.ls7{letter-spacing:-5.832000px;}
.ls8{letter-spacing:-3.864000px;}
.ls9{letter-spacing:-1.140000px;}
.ls5{letter-spacing:-0.324000px;}
.ls4{letter-spacing:-0.240000px;}
.ls3{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.345000px;}
.lsb{letter-spacing:1.104000px;}
.lsc{letter-spacing:5.175000px;}
.ls0{letter-spacing:5.850000px;}
.ls1{letter-spacing:6.000000px;}
.ls2{letter-spacing:6.300000px;}
.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;}
}
.wsd{word-spacing:-41.940000px;}
.ws0{word-spacing:-26.925000px;}
.wse{word-spacing:-26.250000px;}
.ws3{word-spacing:-24.516000px;}
.ws2{word-spacing:-20.088000px;}
.ws6{word-spacing:-19.389000px;}
.ws1{word-spacing:-18.102000px;}
.ws5{word-spacing:-17.043000px;}
.wsf{word-spacing:-14.820000px;}
.ws4{word-spacing:-13.179000px;}
.ws7{word-spacing:-11.303787px;}
.ws8{word-spacing:-6.000000px;}
.ws10{word-spacing:-1.104000px;}
.wsc{word-spacing:-0.621000px;}
.ws9{word-spacing:0.000000px;}
.wsa{word-spacing:0.240000px;}
.wsb{word-spacing:0.324000px;}
._8{margin-left:-6.990000px;}
._7{margin-left:-5.817000px;}
._4{margin-left:-4.214700px;}
._5{margin-left:-2.576700px;}
._9{margin-left:-1.365000px;}
._2{width:1.056000px;}
._0{width:2.115000px;}
._6{width:3.621000px;}
._a{width:4.797900px;}
._3{width:6.318000px;}
._c{width:7.427700px;}
._b{width:9.136800px;}
._13{width:10.604100px;}
._d{width:11.605500px;}
._e{width:12.889200px;}
._f{width:14.001300px;}
._10{width:43.445160px;}
._1{width:449.625000px;}
._12{width:493.500900px;}
._11{width:578.400000px;}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:31.482000px;}
.fs6{font-size:40.227000px;}
.fs2{font-size:42.000000px;}
.fs9{font-size:48.000000px;}
.fs8{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs5{font-size:69.000000px;}
.fs0{font-size:75.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y48{bottom:109.294800px;}
.y21{bottom:109.294950px;}
.y63{bottom:127.798200px;}
.y47{bottom:130.796700px;}
.y62{bottom:148.046700px;}
.y46{bottom:152.298750px;}
.y20{bottom:153.376950px;}
.y1f{bottom:174.611700px;}
.y1e{bottom:195.846450px;}
.y45{bottom:196.366050px;}
.y1d{bottom:217.081200px;}
.y44{bottom:217.135050px;}
.y43{bottom:237.904050px;}
.y1c{bottom:238.315950px;}
.y42{bottom:258.673050px;}
.y1b{bottom:259.550700px;}
.y41{bottom:279.442050px;}
.y1a{bottom:280.785450px;}
.y61{bottom:281.441550px;}
.y40{bottom:300.211050px;}
.y60{bottom:301.691550px;}
.y19{bottom:302.020200px;}
.y3f{bottom:320.980050px;}
.y5f{bottom:321.941550px;}
.y18{bottom:323.254950px;}
.y3e{bottom:341.819100px;}
.y5e{bottom:342.191550px;}
.y17{bottom:344.489700px;}
.y3d{bottom:362.588100px;}
.y16{bottom:365.724450px;}
.y5d{bottom:375.191550px;}
.y3c{bottom:383.357100px;}
.y15{bottom:386.959200px;}
.y3b{bottom:404.126100px;}
.y14{bottom:408.193950px;}
.y5c{bottom:416.686350px;}
.y3a{bottom:424.895100px;}
.y13{bottom:429.428700px;}
.y5b{bottom:436.937850px;}
.y39{bottom:445.664100px;}
.y12{bottom:450.663450px;}
.y5a{bottom:457.189350px;}
.y38{bottom:466.433100px;}
.y11{bottom:471.898200px;}
.y59{bottom:477.440850px;}
.y37{bottom:487.202100px;}
.y10{bottom:493.132950px;}
.y36{bottom:507.971100px;}
.yf{bottom:514.367700px;}
.y58{bottom:517.943850px;}
.y35{bottom:528.740100px;}
.ye{bottom:535.602450px;}
.y57{bottom:538.195350px;}
.y34{bottom:549.628350px;}
.yd{bottom:556.837200px;}
.y56{bottom:558.446850px;}
.y33{bottom:570.397350px;}
.yc{bottom:578.087850px;}
.y55{bottom:578.698350px;}
.y32{bottom:591.166350px;}
.y54{bottom:598.949850px;}
.yb{bottom:599.322600px;}
.y31{bottom:611.935350px;}
.y53{bottom:619.201350px;}
.ya{bottom:620.557350px;}
.y30{bottom:632.704350px;}
.y9{bottom:641.792100px;}
.y2f{bottom:653.473350px;}
.y52{bottom:659.683350px;}
.y8{bottom:663.026850px;}
.y2e{bottom:674.242350px;}
.y51{bottom:679.934850px;}
.y7{bottom:684.261600px;}
.y2d{bottom:695.011350px;}
.y50{bottom:700.186350px;}
.y2c{bottom:715.780350px;}
.y4f{bottom:720.437850px;}
.y2b{bottom:736.549350px;}
.y6{bottom:747.982500px;}
.y2a{bottom:757.318350px;}
.y4e{bottom:760.940850px;}
.y29{bottom:778.087350px;}
.y5{bottom:780.463500px;}
.y4d{bottom:781.192350px;}
.y28{bottom:798.856350px;}
.y4c{bottom:801.443850px;}
.y27{bottom:819.625350px;}
.y4b{bottom:821.695350px;}
.y26{bottom:840.394350px;}
.y4{bottom:842.712000px;}
.y25{bottom:861.163350px;}
.y4a{bottom:862.198350px;}
.y3{bottom:873.207000px;}
.y24{bottom:881.932350px;}
.y49{bottom:882.449850px;}
.y23{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y22{bottom:948.189000px;}
.h7{height:38.036555px;}
.h8{height:44.460938px;}
.ha{height:50.018555px;}
.h9{height:51.884766px;}
.h4{height:55.576172px;}
.h3{height:58.354980px;}
.h6{height:63.912598px;}
.h2{height:69.470215px;}
.h5{height:100.037109px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1{left:83.672550px;}
.x4{left:84.990000px;}
.x3{left:105.051750px;}
.x6{left:106.528650px;}
.x5{left:230.236800px;}
.x2{left:233.439750px;}
@media print{
.v2{vertical-align:-10.650667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.034133pt;}
.ls6{letter-spacing:-5.856000pt;}
.ls7{letter-spacing:-5.184000pt;}
.ls8{letter-spacing:-3.434667pt;}
.ls9{letter-spacing:-1.013333pt;}
.ls5{letter-spacing:-0.288000pt;}
.ls4{letter-spacing:-0.213333pt;}
.ls3{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.306667pt;}
.lsb{letter-spacing:0.981333pt;}
.lsc{letter-spacing:4.600000pt;}
.ls0{letter-spacing:5.200000pt;}
.ls1{letter-spacing:5.333333pt;}
.ls2{letter-spacing:5.600000pt;}
.wsd{word-spacing:-37.280000pt;}
.ws0{word-spacing:-23.933333pt;}
.wse{word-spacing:-23.333333pt;}
.ws3{word-spacing:-21.792000pt;}
.ws2{word-spacing:-17.856000pt;}
.ws6{word-spacing:-17.234667pt;}
.ws1{word-spacing:-16.090667pt;}
.ws5{word-spacing:-15.149333pt;}
.wsf{word-spacing:-13.173333pt;}
.ws4{word-spacing:-11.714667pt;}
.ws7{word-spacing:-10.047811pt;}
.ws8{word-spacing:-5.333333pt;}
.ws10{word-spacing:-0.981333pt;}
.wsc{word-spacing:-0.552000pt;}
.ws9{word-spacing:0.000000pt;}
.wsa{word-spacing:0.213333pt;}
.wsb{word-spacing:0.288000pt;}
._8{margin-left:-6.213333pt;}
._7{margin-left:-5.170667pt;}
._4{margin-left:-3.746400pt;}
._5{margin-left:-2.290400pt;}
._9{margin-left:-1.213333pt;}
._2{width:0.938667pt;}
._0{width:1.880000pt;}
._6{width:3.218667pt;}
._a{width:4.264800pt;}
._3{width:5.616000pt;}
._c{width:6.602400pt;}
._b{width:8.121600pt;}
._13{width:9.425867pt;}
._d{width:10.316000pt;}
._e{width:11.457067pt;}
._f{width:12.445600pt;}
._10{width:38.617920pt;}
._1{width:399.666667pt;}
._12{width:438.667467pt;}
._11{width:514.133333pt;}
.fs7{font-size:27.984000pt;}
.fs6{font-size:35.757333pt;}
.fs2{font-size:37.333333pt;}
.fs9{font-size:42.666667pt;}
.fs8{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs5{font-size:61.333333pt;}
.fs0{font-size:66.666667pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y48{bottom:97.150933pt;}
.y21{bottom:97.151067pt;}
.y63{bottom:113.598400pt;}
.y47{bottom:116.263733pt;}
.y62{bottom:131.597067pt;}
.y46{bottom:135.376667pt;}
.y20{bottom:136.335067pt;}
.y1f{bottom:155.210400pt;}
.y1e{bottom:174.085733pt;}
.y45{bottom:174.547600pt;}
.y1d{bottom:192.961067pt;}
.y44{bottom:193.008933pt;}
.y43{bottom:211.470267pt;}
.y1c{bottom:211.836400pt;}
.y42{bottom:229.931600pt;}
.y1b{bottom:230.711733pt;}
.y41{bottom:248.392933pt;}
.y1a{bottom:249.587067pt;}
.y61{bottom:250.170267pt;}
.y40{bottom:266.854267pt;}
.y60{bottom:268.170267pt;}
.y19{bottom:268.462400pt;}
.y3f{bottom:285.315600pt;}
.y5f{bottom:286.170267pt;}
.y18{bottom:287.337733pt;}
.y3e{bottom:303.839200pt;}
.y5e{bottom:304.170267pt;}
.y17{bottom:306.213067pt;}
.y3d{bottom:322.300533pt;}
.y16{bottom:325.088400pt;}
.y5d{bottom:333.503600pt;}
.y3c{bottom:340.761867pt;}
.y15{bottom:343.963733pt;}
.y3b{bottom:359.223200pt;}
.y14{bottom:362.839067pt;}
.y5c{bottom:370.387867pt;}
.y3a{bottom:377.684533pt;}
.y13{bottom:381.714400pt;}
.y5b{bottom:388.389200pt;}
.y39{bottom:396.145867pt;}
.y12{bottom:400.589733pt;}
.y5a{bottom:406.390533pt;}
.y38{bottom:414.607200pt;}
.y11{bottom:419.465067pt;}
.y59{bottom:424.391867pt;}
.y37{bottom:433.068533pt;}
.y10{bottom:438.340400pt;}
.y36{bottom:451.529867pt;}
.yf{bottom:457.215733pt;}
.y58{bottom:460.394533pt;}
.y35{bottom:469.991200pt;}
.ye{bottom:476.091067pt;}
.y57{bottom:478.395867pt;}
.y34{bottom:488.558533pt;}
.yd{bottom:494.966400pt;}
.y56{bottom:496.397200pt;}
.y33{bottom:507.019867pt;}
.yc{bottom:513.855867pt;}
.y55{bottom:514.398533pt;}
.y32{bottom:525.481200pt;}
.y54{bottom:532.399867pt;}
.yb{bottom:532.731200pt;}
.y31{bottom:543.942533pt;}
.y53{bottom:550.401200pt;}
.ya{bottom:551.606533pt;}
.y30{bottom:562.403867pt;}
.y9{bottom:570.481867pt;}
.y2f{bottom:580.865200pt;}
.y52{bottom:586.385200pt;}
.y8{bottom:589.357200pt;}
.y2e{bottom:599.326533pt;}
.y51{bottom:604.386533pt;}
.y7{bottom:608.232533pt;}
.y2d{bottom:617.787867pt;}
.y50{bottom:622.387867pt;}
.y2c{bottom:636.249200pt;}
.y4f{bottom:640.389200pt;}
.y2b{bottom:654.710533pt;}
.y6{bottom:664.873333pt;}
.y2a{bottom:673.171867pt;}
.y4e{bottom:676.391867pt;}
.y29{bottom:691.633200pt;}
.y5{bottom:693.745333pt;}
.y4d{bottom:694.393200pt;}
.y28{bottom:710.094533pt;}
.y4c{bottom:712.394533pt;}
.y27{bottom:728.555867pt;}
.y4b{bottom:730.395867pt;}
.y26{bottom:747.017200pt;}
.y4{bottom:749.077333pt;}
.y25{bottom:765.478533pt;}
.y4a{bottom:766.398533pt;}
.y3{bottom:776.184000pt;}
.y24{bottom:783.939867pt;}
.y49{bottom:784.399867pt;}
.y23{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y22{bottom:842.834667pt;}
.h7{height:33.810271pt;}
.h8{height:39.520833pt;}
.ha{height:44.460938pt;}
.h9{height:46.119792pt;}
.h4{height:49.401042pt;}
.h3{height:51.871094pt;}
.h6{height:56.811198pt;}
.h2{height:61.751302pt;}
.h5{height:88.921875pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1{left:74.375600pt;}
.x4{left:75.546667pt;}
.x3{left:93.379333pt;}
.x6{left:94.692133pt;}
.x5{left:204.654933pt;}
.x2{left:207.502000pt;}
}




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