
    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_67aad8bace615eb96d799e52.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939453;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_600f5e3252f876f78b3d8549.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.952148;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_8958a1144ef63567ce7b7495.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.740234;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_3f786fbfb749ef2c486e91a9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.960000;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_9999a1b6537a246d42d2e5cf.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.017982px;}
.ls4{letter-spacing:0.923432px;}
.ls3{letter-spacing:1.458000px;}
.ls2{letter-spacing:897.569000px;}
.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;}
}
.ws1{word-spacing:-21.129671px;}
.ws2{word-spacing:-14.958000px;}
.ws6{word-spacing:-14.210587px;}
.ws0{word-spacing:-11.633594px;}
.ws3{word-spacing:-0.054000px;}
.ws5{word-spacing:0.000000px;}
.ws4{word-spacing:280.512000px;}
._1b{margin-left:-8.606770px;}
._6{margin-left:-5.331573px;}
._4{margin-left:-4.204990px;}
._19{margin-left:-3.167657px;}
._3{margin-left:-2.101047px;}
._0{margin-left:-1.007965px;}
._1{width:1.133960px;}
._2{width:2.603909px;}
._7{width:3.704225px;}
._8{width:4.770391px;}
._e{width:5.796193px;}
._d{width:6.966079px;}
._f{width:8.050571px;}
._c{width:9.125921px;}
._a{width:10.152000px;}
._9{width:11.809217px;}
._b{width:13.201427px;}
._5{width:16.035624px;}
._17{width:17.165048px;}
._15{width:18.245835px;}
._14{width:19.259092px;}
._13{width:20.407087px;}
._16{width:22.302119px;}
._18{width:115.685464px;}
._1a{width:195.628275px;}
._12{width:303.984000px;}
._10{width:335.484000px;}
._11{width:411.984000px;}
.fc3{color:rgb(15,39,83);}
.fc1{color:rgb(27,138,174);}
.fc5{color:rgb(60,60,60);}
.fc4{color:rgb(83,83,83);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs4{font-size:37.801758px;}
.fs0{font-size:41.998536px;}
.fs3{font-size:48.001464px;}
.fs7{font-size:51.301758px;}
.fs1{font-size:54.000000px;}
.fs5{font-size:70.198242px;}
.fs2{font-size:91.801758px;}
.y0{bottom:0.000000px;}
.y7f{bottom:4.528028px;}
.y7e{bottom:22.481155px;}
.y7d{bottom:40.434282px;}
.y25{bottom:46.734370px;}
.y7c{bottom:58.393266px;}
.y24{bottom:59.015622px;}
.y23{bottom:71.302734px;}
.y7b{bottom:76.346387px;}
.y26{bottom:84.598500px;}
.y50{bottom:89.367182px;}
.y7a{bottom:94.299514px;}
.y4f{bottom:108.263672px;}
.y79{bottom:112.252641px;}
.y52{bottom:120.681000px;}
.y6a{bottom:125.208984px;}
.y78{bottom:130.211625px;}
.y4e{bottom:138.919922px;}
.y21{bottom:142.675770px;}
.y69{bottom:143.162102px;}
.y77{bottom:148.164743px;}
.y68{bottom:161.121091px;}
.y20{bottom:161.578119px;}
.y76{bottom:166.117871px;}
.y67{bottom:179.074218px;}
.y1f{bottom:180.474594px;}
.y75{bottom:184.076859px;}
.y4d{bottom:194.531121px;}
.y74{bottom:202.029977px;}
.y1e{bottom:212.876943px;}
.y4c{bottom:213.427611px;}
.y66{bottom:216.585937px;}
.y73{bottom:219.983105px;}
.y1d{bottom:231.773433px;}
.y4b{bottom:232.329960px;}
.y72{bottom:237.942093px;}
.y1c{bottom:250.675770px;}
.y4a{bottom:251.232309px;}
.y71{bottom:255.895218px;}
.y1b{bottom:269.578119px;}
.y49{bottom:270.128799px;}
.y65{bottom:270.287109px;}
.y70{bottom:273.848340px;}
.y1a{bottom:288.474599px;}
.y6f{bottom:291.807329px;}
.y64{bottom:299.033203px;}
.y48{bottom:302.531148px;}
.y19{bottom:307.376948px;}
.y6e{bottom:309.760454px;}
.y47{bottom:321.427638px;}
.y18{bottom:326.273433px;}
.y6d{bottom:327.713574px;}
.y46{bottom:340.329987px;}
.y17{bottom:345.175776px;}
.y6c{bottom:345.672563px;}
.y63{bottom:354.638672px;}
.y45{bottom:359.232336px;}
.y16{bottom:364.078104px;}
.y44{bottom:378.128826px;}
.y15{bottom:382.974594px;}
.y62{bottom:385.294922px;}
.y43{bottom:397.031175px;}
.y14{bottom:401.876943px;}
.y42{bottom:415.927665px;}
.y13{bottom:420.773433px;}
.y41{bottom:434.830014px;}
.y12{bottom:439.675782px;}
.y61{bottom:440.906244px;}
.y40{bottom:453.732363px;}
.y60{bottom:459.802734px;}
.y11{bottom:470.332032px;}
.y3f{bottom:472.628853px;}
.y5f{bottom:490.458984px;}
.y3e{bottom:491.531202px;}
.y3d{bottom:510.427692px;}
.y3c{bottom:529.330041px;}
.y10{bottom:539.431641px;}
.y5e{bottom:546.070308px;}
.y3b{bottom:548.232390px;}
.yf{bottom:556.230465px;}
.y5d{bottom:564.972657px;}
.y3a{bottom:567.128880px;}
.ye{bottom:573.029291px;}
.y6b{bottom:575.866500px;}
.y39{bottom:586.031229px;}
.yd{bottom:594.328125px;}
.y5c{bottom:595.623047px;}
.y38{bottom:604.927719px;}
.yc{bottom:620.132815px;}
.y37{bottom:623.830068px;}
.yb{bottom:636.931643px;}
.y36{bottom:642.732417px;}
.y5b{bottom:651.234358px;}
.ya{bottom:653.730470px;}
.y35{bottom:661.628885px;}
.y5a{bottom:670.136708px;}
.y56{bottom:673.522125px;}
.y59{bottom:689.033198px;}
.y34{bottom:694.031233px;}
.y9{bottom:703.986338px;}
.y55{bottom:704.172516px;}
.y58{bottom:707.935546px;}
.y33{bottom:712.927723px;}
.y8{bottom:717.216802px;}
.y7{bottom:730.441407px;}
.y32{bottom:731.830073px;}
.y57{bottom:738.591796px;}
.y31{bottom:750.732421px;}
.y6{bottom:751.400391px;}
.y22{bottom:755.900391px;}
.y54{bottom:759.783843px;}
.y30{bottom:769.628901px;}
.y2f{bottom:788.531240px;}
.y53{bottom:790.440093px;}
.y5{bottom:793.710931px;}
.y2e{bottom:807.427730px;}
.y28{bottom:817.329229px;}
.y2d{bottom:826.330056px;}
.y4{bottom:831.269532px;}
.y27{bottom:836.231578px;}
.y2c{bottom:845.232405px;}
.y2b{bottom:864.128895px;}
.y2a{bottom:883.031244px;}
.y3{bottom:899.378907px;}
.y29{bottom:901.927734px;}
.y2{bottom:939.462894px;}
.y1{bottom:955.212891px;}
.y51{bottom:974.730470px;}
.h9{height:26.244141px;}
.h5{height:27.557629px;}
.ha{height:28.048904px;}
.h1{height:30.617097px;}
.h4{height:34.993255px;}
.hd{height:35.617086px;}
.hf{height:37.399182px;}
.h2{height:39.366211px;}
.h8{height:39.366271px;}
.h7{height:39.366295px;}
.hc{height:39.366301px;}
.h6{height:52.443023px;}
.h3{height:68.582368px;}
.h10{height:359.097000px;}
.he{height:814.282500px;}
.hb{height:850.365000px;}
.h0{height:1020.000000px;}
.w1{width:544.254000px;}
.w0{width:700.500000px;}
.x0{left:0.000000px;}
.xb{left:11.584593px;}
.xc{left:45.000609px;}
.x3{left:78.662109px;}
.x8{left:90.246093px;}
.x5{left:94.412109px;}
.x4{left:95.537109px;}
.x9{left:123.662109px;}
.xa{left:134.226562px;}
.x6{left:156.287109px;}
.x1{left:205.335938px;}
.x2{left:288.351562px;}
.x7{left:611.659424px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.015984pt;}
.ls4{letter-spacing:0.820828pt;}
.ls3{letter-spacing:1.296000pt;}
.ls2{letter-spacing:797.839111pt;}
.ws1{word-spacing:-18.781930pt;}
.ws2{word-spacing:-13.296000pt;}
.ws6{word-spacing:-12.631633pt;}
.ws0{word-spacing:-10.340973pt;}
.ws3{word-spacing:-0.048000pt;}
.ws5{word-spacing:0.000000pt;}
.ws4{word-spacing:249.344000pt;}
._1b{margin-left:-7.650462pt;}
._6{margin-left:-4.739176pt;}
._4{margin-left:-3.737769pt;}
._19{margin-left:-2.815695pt;}
._3{margin-left:-1.867598pt;}
._0{margin-left:-0.895969pt;}
._1{width:1.007965pt;}
._2{width:2.314586pt;}
._7{width:3.292645pt;}
._8{width:4.240347pt;}
._e{width:5.152172pt;}
._d{width:6.192070pt;}
._f{width:7.156063pt;}
._c{width:8.111930pt;}
._a{width:9.024000pt;}
._9{width:10.497082pt;}
._b{width:11.734601pt;}
._5{width:14.253888pt;}
._17{width:15.257820pt;}
._15{width:16.218520pt;}
._14{width:17.119193pt;}
._13{width:18.139633pt;}
._16{width:19.824105pt;}
._18{width:102.831524pt;}
._1a{width:173.891800pt;}
._12{width:270.208000pt;}
._10{width:298.208000pt;}
._11{width:366.208000pt;}
.fs6{font-size:32.000000pt;}
.fs4{font-size:33.601563pt;}
.fs0{font-size:37.332032pt;}
.fs3{font-size:42.667968pt;}
.fs7{font-size:45.601563pt;}
.fs1{font-size:48.000000pt;}
.fs5{font-size:62.398437pt;}
.fs2{font-size:81.601563pt;}
.y0{bottom:0.000000pt;}
.y7f{bottom:4.024913pt;}
.y7e{bottom:19.983249pt;}
.y7d{bottom:35.941584pt;}
.y25{bottom:41.541662pt;}
.y7c{bottom:51.905125pt;}
.y24{bottom:52.458331pt;}
.y23{bottom:63.380208pt;}
.y7b{bottom:67.863455pt;}
.y26{bottom:75.198667pt;}
.y50{bottom:79.437495pt;}
.y7a{bottom:83.821790pt;}
.y4f{bottom:96.234375pt;}
.y79{bottom:99.780125pt;}
.y52{bottom:107.272000pt;}
.y6a{bottom:111.296875pt;}
.y78{bottom:115.743667pt;}
.y4e{bottom:123.484375pt;}
.y21{bottom:126.822907pt;}
.y69{bottom:127.255202pt;}
.y77{bottom:131.701994pt;}
.y68{bottom:143.218747pt;}
.y20{bottom:143.624995pt;}
.y76{bottom:147.660329pt;}
.y67{bottom:159.177083pt;}
.y1f{bottom:160.421861pt;}
.y75{bottom:163.623875pt;}
.y4d{bottom:172.916552pt;}
.y74{bottom:179.582202pt;}
.y1e{bottom:189.223949pt;}
.y4c{bottom:189.713432pt;}
.y66{bottom:192.520833pt;}
.y73{bottom:195.540537pt;}
.y1d{bottom:206.020829pt;}
.y4b{bottom:206.515520pt;}
.y72{bottom:211.504083pt;}
.y1c{bottom:222.822907pt;}
.y4a{bottom:223.317608pt;}
.y71{bottom:227.462416pt;}
.y1b{bottom:239.624995pt;}
.y49{bottom:240.114488pt;}
.y65{bottom:240.255208pt;}
.y70{bottom:243.420747pt;}
.y1a{bottom:256.421865pt;}
.y6f{bottom:259.384292pt;}
.y64{bottom:265.807292pt;}
.y48{bottom:268.916576pt;}
.y19{bottom:273.223953pt;}
.y6e{bottom:275.342625pt;}
.y47{bottom:285.713456pt;}
.y18{bottom:290.020829pt;}
.y6d{bottom:291.300955pt;}
.y46{bottom:302.515544pt;}
.y17{bottom:306.822912pt;}
.y6c{bottom:307.264500pt;}
.y63{bottom:315.234375pt;}
.y45{bottom:319.317632pt;}
.y16{bottom:323.624981pt;}
.y44{bottom:336.114512pt;}
.y15{bottom:340.421861pt;}
.y62{bottom:342.484375pt;}
.y43{bottom:352.916600pt;}
.y14{bottom:357.223949pt;}
.y42{bottom:369.713480pt;}
.y13{bottom:374.020829pt;}
.y41{bottom:386.515568pt;}
.y12{bottom:390.822917pt;}
.y61{bottom:391.916661pt;}
.y40{bottom:403.317656pt;}
.y60{bottom:408.713541pt;}
.y11{bottom:418.072917pt;}
.y3f{bottom:420.114536pt;}
.y5f{bottom:435.963541pt;}
.y3e{bottom:436.916624pt;}
.y3d{bottom:453.713504pt;}
.y3c{bottom:470.515592pt;}
.y10{bottom:479.494792pt;}
.y5e{bottom:485.395829pt;}
.y3b{bottom:487.317680pt;}
.yf{bottom:494.427080pt;}
.y5d{bottom:502.197917pt;}
.y3a{bottom:504.114560pt;}
.ye{bottom:509.359370pt;}
.y6b{bottom:511.881333pt;}
.y39{bottom:520.916648pt;}
.yd{bottom:528.291666pt;}
.y5c{bottom:529.442708pt;}
.y38{bottom:537.713528pt;}
.yc{bottom:551.229169pt;}
.y37{bottom:554.515616pt;}
.yb{bottom:566.161461pt;}
.y36{bottom:571.317704pt;}
.y5b{bottom:578.874985pt;}
.ya{bottom:581.093751pt;}
.y35{bottom:588.114564pt;}
.y5a{bottom:595.677073pt;}
.y56{bottom:598.686333pt;}
.y59{bottom:612.473953pt;}
.y34{bottom:616.916652pt;}
.y9{bottom:625.765634pt;}
.y55{bottom:625.931125pt;}
.y58{bottom:629.276041pt;}
.y33{bottom:633.713532pt;}
.y8{bottom:637.526046pt;}
.y7{bottom:649.281251pt;}
.y32{bottom:650.515620pt;}
.y57{bottom:656.526041pt;}
.y31{bottom:667.317708pt;}
.y6{bottom:667.911459pt;}
.y22{bottom:671.911459pt;}
.y54{bottom:675.363416pt;}
.y30{bottom:684.114579pt;}
.y2f{bottom:700.916657pt;}
.y53{bottom:702.613416pt;}
.y5{bottom:705.520828pt;}
.y2e{bottom:717.713537pt;}
.y28{bottom:726.514871pt;}
.y2d{bottom:734.515605pt;}
.y4{bottom:738.906251pt;}
.y27{bottom:743.316959pt;}
.y2c{bottom:751.317693pt;}
.y2b{bottom:768.114573pt;}
.y2a{bottom:784.916661pt;}
.y3{bottom:799.447917pt;}
.y29{bottom:801.713541pt;}
.y2{bottom:835.078128pt;}
.y1{bottom:849.078125pt;}
.y51{bottom:866.427084pt;}
.h9{height:23.328125pt;}
.h5{height:24.495670pt;}
.ha{height:24.932359pt;}
.h1{height:27.215197pt;}
.h4{height:31.105115pt;}
.hd{height:31.659632pt;}
.hf{height:33.243717pt;}
.h2{height:34.992188pt;}
.h8{height:34.992241pt;}
.h7{height:34.992262pt;}
.hc{height:34.992267pt;}
.h6{height:46.616020pt;}
.h3{height:60.962105pt;}
.h10{height:319.197333pt;}
.he{height:723.806667pt;}
.hb{height:755.880000pt;}
.h0{height:906.666667pt;}
.w1{width:483.781333pt;}
.w0{width:622.666667pt;}
.x0{left:0.000000pt;}
.xb{left:10.297416pt;}
.xc{left:40.000541pt;}
.x3{left:69.921875pt;}
.x8{left:80.218749pt;}
.x5{left:83.921875pt;}
.x4{left:84.921875pt;}
.x9{left:109.921874pt;}
.xa{left:119.312500pt;}
.x6{left:138.921875pt;}
.x1{left:182.520833pt;}
.x2{left:256.312500pt;}
.x7{left:543.697265pt;}
}




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