
    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_db5ee74f20f5bc44f355c4bd.woff')format("woff");}.ff1{font-family:ff1;line-height:0.981000;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_1cb3ddc2db0993b948ca7e00.woff')format("woff");}.ff2{font-family:ff2;line-height:0.950000;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_3b2d5b3abca395acdccaade1.woff')format("woff");}.ff3{font-family:ff3;line-height:0.954000;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_1b7ede283f599bbd8f247e24.woff')format("woff");}.ff4{font-family:ff4;line-height:0.955000;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_d78cac238e8563bd495cb0d5.woff')format("woff");}.ff5{font-family:ff5;line-height:1.019000;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_fe221a93f61e34fa9ff67219.woff')format("woff");}.ff6{font-family:ff6;line-height:0.981000;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_1f2d2afd33518fb613908384.woff')format("woff");}.ff7{font-family:ff7;line-height:0.666000;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_c03fc171c7971adce1e59548.woff')format("woff");}.ff8{font-family:ff8;line-height:0.983000;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;}
.ls7{letter-spacing:-2.689200px;}
.ls5{letter-spacing:-2.589600px;}
.ls1{letter-spacing:-1.716000px;}
.ls6{letter-spacing:-1.650000px;}
.ls4{letter-spacing:-1.620000px;}
.ls2{letter-spacing:-1.560000px;}
.ls3{letter-spacing:-0.750000px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8{word-spacing:-16.860000px;}
.ws1{word-spacing:-2.970000px;}
.ws2{word-spacing:-1.386000px;}
.ws0{word-spacing:0.000000px;}
.ws6{word-spacing:0.060000px;}
.ws9{word-spacing:0.099600px;}
.ws5{word-spacing:0.750000px;}
.ws4{word-spacing:1.560000px;}
.ws7{word-spacing:1.620000px;}
.ws3{word-spacing:1.716000px;}
._6{margin-left:-16.095000px;}
._4{margin-left:-6.816000px;}
._c{margin-left:-5.651400px;}
._1{margin-left:-4.554000px;}
._0{margin-left:-2.574000px;}
._2{margin-left:-1.036200px;}
._3{width:1.168200px;}
._7{width:2.328000px;}
._8{width:3.471600px;}
._b{width:4.961400px;}
._5{width:62.280000px;}
._9{width:177.331800px;}
._a{width:197.580000px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs5{font-size:99.600000px;}
.fs7{font-size:101.400000px;}
.fs3{font-size:144.000000px;}
.fs4{font-size:150.000000px;}
.fs0{font-size:198.000000px;}
.y0{bottom:0.000000px;}
.y16{bottom:21.150750px;}
.y95{bottom:25.245450px;}
.y99{bottom:88.700700px;}
.y98{bottom:104.900700px;}
.y63{bottom:112.677900px;}
.y81{bottom:120.607050px;}
.y97{bottom:121.100700px;}
.y62{bottom:132.177900px;}
.y96{bottom:137.300700px;}
.y80{bottom:143.107050px;}
.y7f{bottom:165.607050px;}
.y32{bottom:177.616200px;}
.y61{bottom:190.279050px;}
.y31{bottom:200.116200px;}
.y15{bottom:226.750200px;}
.y30{bottom:230.116200px;}
.y82{bottom:247.072950px;}
.ya2{bottom:252.355800px;}
.y14{bottom:256.750200px;}
.y2f{bottom:260.116200px;}
.y5c{bottom:261.904350px;}
.y24{bottom:262.716600px;}
.ya1{bottom:271.855800px;}
.y23{bottom:282.216600px;}
.y2e{bottom:282.616200px;}
.y5b{bottom:284.404350px;}
.y13{bottom:286.750200px;}
.ya0{bottom:298.855800px;}
.y22{bottom:301.716600px;}
.y5a{bottom:314.404350px;}
.y40{bottom:316.245750px;}
.y12{bottom:316.750200px;}
.y9f{bottom:318.355800px;}
.y21{bottom:321.216600px;}
.y20{bottom:340.716600px;}
.y59{bottom:344.404350px;}
.y11{bottom:346.750200px;}
.y9e{bottom:349.548300px;}
.y1f{bottom:360.216600px;}
.y58{bottom:374.404350px;}
.y1e{bottom:379.716600px;}
.y10{bottom:379.750200px;}
.y7d{bottom:388.286100px;}
.y57{bottom:396.904350px;}
.yf{bottom:399.250200px;}
.y9d{bottom:399.852900px;}
.y7c{bottom:410.786100px;}
.y3e{bottom:411.928650px;}
.y1d{bottom:412.716600px;}
.y9c{bottom:419.352900px;}
.y56{bottom:419.404350px;}
.y1c{bottom:432.216600px;}
.ye{bottom:432.250200px;}
.y9b{bottom:438.852900px;}
.y7b{bottom:440.786100px;}
.y3d{bottom:441.928650px;}
.y55{bottom:449.404350px;}
.y1b{bottom:451.716600px;}
.yd{bottom:451.750200px;}
.y9a{bottom:470.654250px;}
.y7a{bottom:470.786100px;}
.y1a{bottom:471.216600px;}
.yc{bottom:471.250200px;}
.y3c{bottom:471.928650px;}
.y19{bottom:490.716600px;}
.yb{bottom:490.750200px;}
.y54{bottom:491.404350px;}
.y79{bottom:493.286100px;}
.y3b{bottom:494.428650px;}
.y53{bottom:498.904350px;}
.ya{bottom:510.250200px;}
.y52{bottom:518.404350px;}
.y3a{bottom:524.428650px;}
.y7e{bottom:526.915650px;}
.y9{bottom:529.750200px;}
.y51{bottom:537.904350px;}
.y8{bottom:549.250200px;}
.y39{bottom:554.428650px;}
.y50{bottom:564.904350px;}
.y7{bottom:568.750200px;}
.y93{bottom:579.156600px;}
.y38{bottom:584.428650px;}
.y4f{bottom:587.404350px;}
.y6{bottom:588.250200px;}
.y92{bottom:601.656600px;}
.y77{bottom:603.925050px;}
.y5{bottom:607.750200px;}
.y37{bottom:614.428650px;}
.y4e{bottom:617.404350px;}
.y91{bottom:624.156600px;}
.y76{bottom:626.425050px;}
.y90{bottom:631.656600px;}
.y36{bottom:636.928650px;}
.y4d{bottom:639.904350px;}
.y75{bottom:648.925050px;}
.y8f{bottom:654.156600px;}
.y4c{bottom:662.404350px;}
.y35{bottom:666.928650px;}
.y74{bottom:671.425050px;}
.y8e{bottom:676.656600px;}
.y8d{bottom:684.156600px;}
.y4b{bottom:692.404350px;}
.y73{bottom:693.925050px;}
.y34{bottom:696.928650px;}
.y8c{bottom:714.156600px;}
.y4{bottom:714.516300px;}
.y72{bottom:716.425050px;}
.y33{bottom:719.428650px;}
.y4a{bottom:734.404350px;}
.y3{bottom:737.016300px;}
.y71{bottom:738.925050px;}
.y49{bottom:741.904350px;}
.y8b{bottom:756.156600px;}
.y2{bottom:759.516300px;}
.y48{bottom:764.404350px;}
.y8a{bottom:775.656600px;}
.y47{bottom:786.904350px;}
.y89{bottom:795.156600px;}
.y78{bottom:797.832750px;}
.y3f{bottom:801.104400px;}
.y46{bottom:809.404350px;}
.y45{bottom:839.404350px;}
.y44{bottom:861.904350px;}
.y18{bottom:863.609550px;}
.y43{bottom:869.404350px;}
.y94{bottom:876.622500px;}
.y70{bottom:876.748200px;}
.y6f{bottom:899.248200px;}
.y42{bottom:899.404350px;}
.y17{bottom:908.609550px;}
.y2d{bottom:913.991100px;}
.y6e{bottom:941.248200px;}
.y2c{bottom:943.991100px;}
.y64{bottom:958.522200px;}
.y2b{bottom:966.491100px;}
.y6d{bottom:971.248200px;}
.y1{bottom:981.839850px;}
.y2a{bottom:988.991100px;}
.y29{bottom:1011.491100px;}
.y6c{bottom:1013.248200px;}
.y87{bottom:1023.149550px;}
.y60{bottom:1028.200950px;}
.y6b{bottom:1035.748200px;}
.y28{bottom:1041.491100px;}
.y86{bottom:1045.649550px;}
.y5f{bottom:1047.700950px;}
.y6a{bottom:1058.248200px;}
.y27{bottom:1063.991100px;}
.y5e{bottom:1067.200950px;}
.y85{bottom:1075.649550px;}
.y69{bottom:1080.748200px;}
.y26{bottom:1086.491100px;}
.y5d{bottom:1086.700950px;}
.y84{bottom:1098.149550px;}
.y68{bottom:1110.748200px;}
.y83{bottom:1128.149550px;}
.y67{bottom:1149.748200px;}
.y88{bottom:1161.779100px;}
.y66{bottom:1169.248200px;}
.y41{bottom:1169.415300px;}
.y25{bottom:1170.478200px;}
.y65{bottom:1188.748200px;}
.hc{height:44.712000px;}
.h5{height:45.840000px;}
.ha{height:46.500000px;}
.h6{height:49.680000px;}
.h3{height:50.160000px;}
.h4{height:50.424000px;}
.he{height:51.150000px;}
.hb{height:51.480000px;}
.h9{height:77.190000px;}
.hd{height:78.585000px;}
.h7{height:111.600000px;}
.h8{height:116.250000px;}
.h2{height:153.450000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:88.281300px;}
.x2{left:90.407250px;}
.x8{left:92.332350px;}
.x9{left:116.123100px;}
.x5{left:118.187700px;}
.x6{left:120.118050px;}
.xa{left:145.840350px;}
.x7{left:147.118050px;}
.xc{left:189.484650px;}
.x4{left:476.234250px;}
.x3{left:550.476150px;}
.xb{left:552.568050px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-2.390400pt;}
.ls5{letter-spacing:-2.301867pt;}
.ls1{letter-spacing:-1.525333pt;}
.ls6{letter-spacing:-1.466667pt;}
.ls4{letter-spacing:-1.440000pt;}
.ls2{letter-spacing:-1.386667pt;}
.ls3{letter-spacing:-0.666667pt;}
.ls0{letter-spacing:0.000000pt;}
.ws8{word-spacing:-14.986667pt;}
.ws1{word-spacing:-2.640000pt;}
.ws2{word-spacing:-1.232000pt;}
.ws0{word-spacing:0.000000pt;}
.ws6{word-spacing:0.053333pt;}
.ws9{word-spacing:0.088533pt;}
.ws5{word-spacing:0.666667pt;}
.ws4{word-spacing:1.386667pt;}
.ws7{word-spacing:1.440000pt;}
.ws3{word-spacing:1.525333pt;}
._6{margin-left:-14.306667pt;}
._4{margin-left:-6.058667pt;}
._c{margin-left:-5.023467pt;}
._1{margin-left:-4.048000pt;}
._0{margin-left:-2.288000pt;}
._2{margin-left:-0.921067pt;}
._3{width:1.038400pt;}
._7{width:2.069333pt;}
._8{width:3.085867pt;}
._b{width:4.410133pt;}
._5{width:55.360000pt;}
._9{width:157.628267pt;}
._a{width:175.626667pt;}
.fs6{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs5{font-size:88.533333pt;}
.fs7{font-size:90.133333pt;}
.fs3{font-size:128.000000pt;}
.fs4{font-size:133.333333pt;}
.fs0{font-size:176.000000pt;}
.y0{bottom:0.000000pt;}
.y16{bottom:18.800667pt;}
.y95{bottom:22.440400pt;}
.y99{bottom:78.845067pt;}
.y98{bottom:93.245067pt;}
.y63{bottom:100.158133pt;}
.y81{bottom:107.206267pt;}
.y97{bottom:107.645067pt;}
.y62{bottom:117.491467pt;}
.y96{bottom:122.045067pt;}
.y80{bottom:127.206267pt;}
.y7f{bottom:147.206267pt;}
.y32{bottom:157.881067pt;}
.y61{bottom:169.136933pt;}
.y31{bottom:177.881067pt;}
.y15{bottom:201.555733pt;}
.y30{bottom:204.547733pt;}
.y82{bottom:219.620400pt;}
.ya2{bottom:224.316267pt;}
.y14{bottom:228.222400pt;}
.y2f{bottom:231.214400pt;}
.y5c{bottom:232.803867pt;}
.y24{bottom:233.525867pt;}
.ya1{bottom:241.649600pt;}
.y23{bottom:250.859200pt;}
.y2e{bottom:251.214400pt;}
.y5b{bottom:252.803867pt;}
.y13{bottom:254.889067pt;}
.ya0{bottom:265.649600pt;}
.y22{bottom:268.192533pt;}
.y5a{bottom:279.470533pt;}
.y40{bottom:281.107333pt;}
.y12{bottom:281.555733pt;}
.y9f{bottom:282.982933pt;}
.y21{bottom:285.525867pt;}
.y20{bottom:302.859200pt;}
.y59{bottom:306.137200pt;}
.y11{bottom:308.222400pt;}
.y9e{bottom:310.709600pt;}
.y1f{bottom:320.192533pt;}
.y58{bottom:332.803867pt;}
.y1e{bottom:337.525867pt;}
.y10{bottom:337.555733pt;}
.y7d{bottom:345.143200pt;}
.y57{bottom:352.803867pt;}
.yf{bottom:354.889067pt;}
.y9d{bottom:355.424800pt;}
.y7c{bottom:365.143200pt;}
.y3e{bottom:366.158800pt;}
.y1d{bottom:366.859200pt;}
.y9c{bottom:372.758133pt;}
.y56{bottom:372.803867pt;}
.y1c{bottom:384.192533pt;}
.ye{bottom:384.222400pt;}
.y9b{bottom:390.091467pt;}
.y7b{bottom:391.809867pt;}
.y3d{bottom:392.825467pt;}
.y55{bottom:399.470533pt;}
.y1b{bottom:401.525867pt;}
.yd{bottom:401.555733pt;}
.y9a{bottom:418.359333pt;}
.y7a{bottom:418.476533pt;}
.y1a{bottom:418.859200pt;}
.yc{bottom:418.889067pt;}
.y3c{bottom:419.492133pt;}
.y19{bottom:436.192533pt;}
.yb{bottom:436.222400pt;}
.y54{bottom:436.803867pt;}
.y79{bottom:438.476533pt;}
.y3b{bottom:439.492133pt;}
.y53{bottom:443.470533pt;}
.ya{bottom:453.555733pt;}
.y52{bottom:460.803867pt;}
.y3a{bottom:466.158800pt;}
.y7e{bottom:468.369467pt;}
.y9{bottom:470.889067pt;}
.y51{bottom:478.137200pt;}
.y8{bottom:488.222400pt;}
.y39{bottom:492.825467pt;}
.y50{bottom:502.137200pt;}
.y7{bottom:505.555733pt;}
.y93{bottom:514.805867pt;}
.y38{bottom:519.492133pt;}
.y4f{bottom:522.137200pt;}
.y6{bottom:522.889067pt;}
.y92{bottom:534.805867pt;}
.y77{bottom:536.822267pt;}
.y5{bottom:540.222400pt;}
.y37{bottom:546.158800pt;}
.y4e{bottom:548.803867pt;}
.y91{bottom:554.805867pt;}
.y76{bottom:556.822267pt;}
.y90{bottom:561.472533pt;}
.y36{bottom:566.158800pt;}
.y4d{bottom:568.803867pt;}
.y75{bottom:576.822267pt;}
.y8f{bottom:581.472533pt;}
.y4c{bottom:588.803867pt;}
.y35{bottom:592.825467pt;}
.y74{bottom:596.822267pt;}
.y8e{bottom:601.472533pt;}
.y8d{bottom:608.139200pt;}
.y4b{bottom:615.470533pt;}
.y73{bottom:616.822267pt;}
.y34{bottom:619.492133pt;}
.y8c{bottom:634.805867pt;}
.y4{bottom:635.125600pt;}
.y72{bottom:636.822267pt;}
.y33{bottom:639.492133pt;}
.y4a{bottom:652.803867pt;}
.y3{bottom:655.125600pt;}
.y71{bottom:656.822267pt;}
.y49{bottom:659.470533pt;}
.y8b{bottom:672.139200pt;}
.y2{bottom:675.125600pt;}
.y48{bottom:679.470533pt;}
.y8a{bottom:689.472533pt;}
.y47{bottom:699.470533pt;}
.y89{bottom:706.805867pt;}
.y78{bottom:709.184667pt;}
.y3f{bottom:712.092800pt;}
.y46{bottom:719.470533pt;}
.y45{bottom:746.137200pt;}
.y44{bottom:766.137200pt;}
.y18{bottom:767.652933pt;}
.y43{bottom:772.803867pt;}
.y94{bottom:779.220000pt;}
.y70{bottom:779.331733pt;}
.y6f{bottom:799.331733pt;}
.y42{bottom:799.470533pt;}
.y17{bottom:807.652933pt;}
.y2d{bottom:812.436533pt;}
.y6e{bottom:836.665067pt;}
.y2c{bottom:839.103200pt;}
.y64{bottom:852.019733pt;}
.y2b{bottom:859.103200pt;}
.y6d{bottom:863.331733pt;}
.y1{bottom:872.746533pt;}
.y2a{bottom:879.103200pt;}
.y29{bottom:899.103200pt;}
.y6c{bottom:900.665067pt;}
.y87{bottom:909.466267pt;}
.y60{bottom:913.956400pt;}
.y6b{bottom:920.665067pt;}
.y28{bottom:925.769867pt;}
.y86{bottom:929.466267pt;}
.y5f{bottom:931.289733pt;}
.y6a{bottom:940.665067pt;}
.y27{bottom:945.769867pt;}
.y5e{bottom:948.623067pt;}
.y85{bottom:956.132933pt;}
.y69{bottom:960.665067pt;}
.y26{bottom:965.769867pt;}
.y5d{bottom:965.956400pt;}
.y84{bottom:976.132933pt;}
.y68{bottom:987.331733pt;}
.y83{bottom:1002.799600pt;}
.y67{bottom:1021.998400pt;}
.y88{bottom:1032.692533pt;}
.y66{bottom:1039.331733pt;}
.y41{bottom:1039.480267pt;}
.y25{bottom:1040.425067pt;}
.y65{bottom:1056.665067pt;}
.hc{height:39.744000pt;}
.h5{height:40.746667pt;}
.ha{height:41.333333pt;}
.h6{height:44.160000pt;}
.h3{height:44.586667pt;}
.h4{height:44.821333pt;}
.he{height:45.466667pt;}
.hb{height:45.760000pt;}
.h9{height:68.613333pt;}
.hd{height:69.853333pt;}
.h7{height:99.200000pt;}
.h8{height:103.333333pt;}
.h2{height:136.400000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:78.472267pt;}
.x2{left:80.362000pt;}
.x8{left:82.073200pt;}
.x9{left:103.220533pt;}
.x5{left:105.055733pt;}
.x6{left:106.771600pt;}
.xa{left:129.635867pt;}
.x7{left:130.771600pt;}
.xc{left:168.430800pt;}
.x4{left:423.319333pt;}
.x3{left:489.312133pt;}
.xb{left:491.171600pt;}
}




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