
    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_689fd44ad8fde9b2d3829520.woff')format("woff");}.ff1{font-family:ff1;line-height:1.011230;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_5d7dd516c36872c5ca145f6f.woff')format("woff");}.ff2{font-family:ff2;line-height:0.973633;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_f0214c8f791ebb0d67d6871e.woff')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_eb9781b8441c6272ae96a546.woff')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_578a10e39fceb1d7cbf83ba3.woff')format("woff");}.ff5{font-family:ff5;line-height:0.944000;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;}
.m3{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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;}
.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;}
}
.ws2{word-spacing:-41.832000px;}
.ws1{word-spacing:-29.916001px;}
.ws3{word-spacing:-23.268000px;}
.ws6{word-spacing:-23.184898px;}
.ws7{word-spacing:-21.522930px;}
.ws5{word-spacing:-16.620000px;}
.ws4{word-spacing:-0.060000px;}
.ws0{word-spacing:0.000000px;}
._d{margin-left:-30.888000px;}
._3{margin-left:-12.636000px;}
._a{margin-left:-11.256000px;}
._7{margin-left:-10.098001px;}
._0{margin-left:-8.704800px;}
._6{margin-left:-6.793201px;}
._9{margin-left:-5.196000px;}
._1{margin-left:-3.931200px;}
._5{margin-left:-2.352000px;}
._4{margin-left:-1.008000px;}
._c{width:1.176000px;}
._2{width:2.246400px;}
._b{width:3.259200px;}
._8{width:4.620000px;}
.fc7{color:rgb(47,111,167);}
.fc6{color:transparent;}
.fc5{color:rgb(0,151,167);}
.fc8{color:rgb(245,51,63);}
.fc2{color:rgb(71,134,163);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(89,89,89);}
.fc0{color:rgb(170,197,73);}
.fs8{font-size:49.949997px;}
.fs3{font-size:60.000000px;}
.fs9{font-size:61.050008px;}
.fs2{font-size:72.000002px;}
.fse{font-size:77.700107px;}
.fsd{font-size:83.699994px;}
.fsb{font-size:84.000000px;}
.fsa{font-size:90.000003px;}
.fs4{font-size:91.800012px;}
.fs7{font-size:94.350005px;}
.fsc{font-size:99.600011px;}
.fs6{font-size:108.000003px;}
.fs5{font-size:151.200005px;}
.fs1{font-size:167.999999px;}
.fs0{font-size:280.800000px;}
.y0{bottom:0.000000px;}
.y6e{bottom:1.613615px;}
.y26{bottom:8.822110px;}
.yb{bottom:14.807625px;}
.y38{bottom:35.822112px;}
.y25{bottom:46.052850px;}
.ya{bottom:46.478626px;}
.y4b{bottom:49.339827px;}
.y4e{bottom:49.660742px;}
.y6{bottom:66.168298px;}
.y7a{bottom:67.886308px;}
.y4d{bottom:71.260745px;}
.y37{bottom:73.052852px;}
.y9{bottom:78.149616px;}
.y70{bottom:78.774995px;}
.y24{bottom:83.283590px;}
.y5{bottom:84.888298px;}
.y4c{bottom:92.860746px;}
.y43{bottom:93.855809px;}
.y23{bottom:102.514341px;}
.y8a{bottom:106.695051px;}
.y8{bottom:109.820617px;}
.y36{bottom:110.283592px;}
.y14{bottom:118.175936px;}
.y89{bottom:128.295030px;}
.y35{bottom:129.514342px;}
.y6d{bottom:135.913372px;}
.y78{bottom:137.220454px;}
.y22{bottom:139.745081px;}
.y7{bottom:141.491615px;}
.y88{bottom:149.895030px;}
.y13{bottom:152.195937px;}
.y21{bottom:158.975832px;}
.y6c{bottom:165.793373px;}
.y34{bottom:166.745082px;}
.y87{bottom:171.495020px;}
.y68{bottom:182.424811px;}
.y77{bottom:182.656978px;}
.y33{bottom:185.975833px;}
.y86{bottom:193.095020px;}
.y6b{bottom:195.673368px;}
.y20{bottom:196.206571px;}
.y4{bottom:203.447467px;}
.y67{bottom:212.304824px;}
.y85{bottom:214.695021px;}
.y1f{bottom:215.437311px;}
.y12{bottom:220.235928px;}
.y72{bottom:222.775000px;}
.y32{bottom:223.206573px;}
.y6a{bottom:225.254572px;}
.y76{bottom:229.533479px;}
.y84{bottom:236.295011px;}
.y66{bottom:242.184813px;}
.y31{bottom:242.437312px;}
.y1e{bottom:252.668062px;}
.y69{bottom:253.640576px;}
.y83{bottom:257.895011px;}
.y75{bottom:258.409980px;}
.y65{bottom:272.064814px;}
.y3{bottom:277.022611px;}
.y42{bottom:278.325046px;}
.y82{bottom:279.495012px;}
.y30{bottom:279.668063px;}
.y11{bottom:288.275902px;}
.y1d{bottom:289.898791px;}
.y81{bottom:301.095001px;}
.y64{bottom:301.944815px;}
.y74{bottom:305.286482px;}
.y5b{bottom:307.118400px;}
.y1c{bottom:309.129530px;}
.y41{bottom:309.375058px;}
.y54{bottom:311.732712px;}
.y2f{bottom:316.898792px;}
.y10{bottom:322.295897px;}
.y80{bottom:322.694995px;}
.y63{bottom:331.824816px;}
.y2e{bottom:336.129531px;}
.y40{bottom:340.425048px;}
.y7f{bottom:344.294992px;}
.y1b{bottom:346.360281px;}
.y73{bottom:352.162984px;}
.yf{bottom:356.315898px;}
.y5a{bottom:357.518391px;}
.y2{bottom:361.262602px;}
.y52{bottom:361.542997px;}
.y62{bottom:361.704817px;}
.y71{bottom:364.524982px;}
.y1a{bottom:365.591021px;}
.y7e{bottom:365.894990px;}
.y3f{bottom:371.475037px;}
.y2d{bottom:373.360283px;}
.y7d{bottom:387.494993px;}
.ye{bottom:390.335899px;}
.y61{bottom:391.584811px;}
.y2c{bottom:392.591022px;}
.y3e{bottom:402.525027px;}
.y19{bottom:402.821761px;}
.y47{bottom:403.692995px;}
.y4a{bottom:407.918392px;}
.y7c{bottom:409.094994px;}
.y51{bottom:411.942999px;}
.y53{bottom:420.457674px;}
.y60{bottom:421.166016px;}
.y2b{bottom:429.821762px;}
.y3d{bottom:433.575017px;}
.y18{bottom:440.052512px;}
.y1{bottom:445.502582px;}
.y5f{bottom:449.552020px;}
.y7b{bottom:453.249442px;}
.y46{bottom:454.092997px;}
.y49{bottom:458.318394px;}
.y50{bottom:462.343000px;}
.y3c{bottom:464.625012px;}
.y2a{bottom:467.052513px;}
.y17{bottom:477.283263px;}
.y6f{bottom:489.805062px;}
.y3b{bottom:495.675003px;}
.y5e{bottom:497.602991px;}
.y79{bottom:503.765953px;}
.y29{bottom:504.283264px;}
.y45{bottom:504.492992px;}
.y59{bottom:505.405970px;}
.y44{bottom:508.454123px;}
.yc{bottom:508.524991px;}
.y48{bottom:508.718389px;}
.y4f{bottom:512.742995px;}
.y16{bottom:513.681514px;}
.y58{bottom:537.805978px;}
.y28{bottom:540.681515px;}
.y5d{bottom:542.962985px;}
.y3a{bottom:544.725004px;}
.y15{bottom:547.745761px;}
.y55{bottom:548.794726px;}
.y57{bottom:570.205983px;}
.y27{bottom:574.745763px;}
.y39{bottom:575.775000px;}
.y56{bottom:577.854330px;}
.yd{bottom:582.974999px;}
.y5c{bottom:591.975000px;}
.h9{height:36.364964px;}
.h4{height:43.681641px;}
.h12{height:43.710938px;}
.ha{height:44.446075px;}
.hb{height:44.475885px;}
.h13{height:44.760000px;}
.h10{height:52.417970px;}
.h17{height:52.453127px;}
.h3{height:54.738283px;}
.h16{height:56.605742px;}
.he{height:56.812502px;}
.h15{height:60.976753px;}
.h11{height:61.195312px;}
.hc{height:65.522463px;}
.hd{height:65.566408px;}
.h5{height:66.877743px;}
.h8{height:68.689383px;}
.h14{height:75.721297px;}
.h7{height:78.679690px;}
.h6{height:119.306254px;}
.h2{height:127.722656px;}
.hf{height:132.562500px;}
.h1{height:221.568750px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x8{left:10.125000px;}
.xe{left:19.688387px;}
.xc{left:34.688978px;}
.x6{left:37.939962px;}
.x18{left:45.814963px;}
.x7{left:46.939963px;}
.x2{left:48.245448px;}
.x5{left:54.670279px;}
.x1{left:75.663616px;}
.x19{left:202.899370px;}
.x4{left:235.983034px;}
.x1a{left:287.613200px;}
.x3{left:290.721272px;}
.x14{left:457.022265px;}
.x13{left:475.022265px;}
.x12{left:493.022266px;}
.x11{left:511.022266px;}
.x16{left:521.583654px;}
.x17{left:523.939967px;}
.x10{left:541.125017px;}
.xf{left:543.375017px;}
.x15{left:568.125018px;}
.xd{left:576.221463px;}
.xa{left:619.420295px;}
.x9{left:721.334656px;}
.xb{left:751.470493px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws2{word-spacing:-37.184000pt;}
.ws1{word-spacing:-26.592001pt;}
.ws3{word-spacing:-20.682667pt;}
.ws6{word-spacing:-20.608798pt;}
.ws7{word-spacing:-19.131493pt;}
.ws5{word-spacing:-14.773333pt;}
.ws4{word-spacing:-0.053333pt;}
.ws0{word-spacing:0.000000pt;}
._d{margin-left:-27.456000pt;}
._3{margin-left:-11.232000pt;}
._a{margin-left:-10.005334pt;}
._7{margin-left:-8.976001pt;}
._0{margin-left:-7.737600pt;}
._6{margin-left:-6.038401pt;}
._9{margin-left:-4.618667pt;}
._1{margin-left:-3.494400pt;}
._5{margin-left:-2.090667pt;}
._4{margin-left:-0.896000pt;}
._c{width:1.045333pt;}
._2{width:1.996800pt;}
._b{width:2.897067pt;}
._8{width:4.106667pt;}
.fs8{font-size:44.399997pt;}
.fs3{font-size:53.333334pt;}
.fs9{font-size:54.266674pt;}
.fs2{font-size:64.000002pt;}
.fse{font-size:69.066762pt;}
.fsd{font-size:74.399994pt;}
.fsb{font-size:74.666666pt;}
.fsa{font-size:80.000003pt;}
.fs4{font-size:81.600011pt;}
.fs7{font-size:83.866671pt;}
.fsc{font-size:88.533343pt;}
.fs6{font-size:96.000003pt;}
.fs5{font-size:134.400004pt;}
.fs1{font-size:149.333333pt;}
.fs0{font-size:249.600000pt;}
.y0{bottom:0.000000pt;}
.y6e{bottom:1.434325pt;}
.y26{bottom:7.841876pt;}
.yb{bottom:13.162333pt;}
.y38{bottom:31.841877pt;}
.y25{bottom:40.935867pt;}
.ya{bottom:41.314334pt;}
.y4b{bottom:43.857624pt;}
.y4e{bottom:44.142882pt;}
.y6{bottom:58.816265pt;}
.y7a{bottom:60.343385pt;}
.y4d{bottom:63.342885pt;}
.y37{bottom:64.935868pt;}
.y9{bottom:69.466325pt;}
.y70{bottom:70.022218pt;}
.y24{bottom:74.029858pt;}
.y5{bottom:75.456265pt;}
.y4c{bottom:82.542885pt;}
.y43{bottom:83.427385pt;}
.y23{bottom:91.123859pt;}
.y8a{bottom:94.840046pt;}
.y8{bottom:97.618326pt;}
.y36{bottom:98.029859pt;}
.y14{bottom:105.045276pt;}
.y89{bottom:114.040026pt;}
.y35{bottom:115.123860pt;}
.y6d{bottom:120.811887pt;}
.y78{bottom:121.973737pt;}
.y22{bottom:124.217850pt;}
.y7{bottom:125.770325pt;}
.y88{bottom:133.240027pt;}
.y13{bottom:135.285277pt;}
.y21{bottom:141.311850pt;}
.y6c{bottom:147.371887pt;}
.y34{bottom:148.217851pt;}
.y87{bottom:152.440018pt;}
.y68{bottom:162.155388pt;}
.y77{bottom:162.361758pt;}
.y33{bottom:165.311851pt;}
.y86{bottom:171.640018pt;}
.y6b{bottom:173.931882pt;}
.y20{bottom:174.405841pt;}
.y4{bottom:180.842193pt;}
.y67{bottom:188.715399pt;}
.y85{bottom:190.840019pt;}
.y1f{bottom:191.499832pt;}
.y12{bottom:195.765269pt;}
.y72{bottom:198.022222pt;}
.y32{bottom:198.405842pt;}
.y6a{bottom:200.226286pt;}
.y76{bottom:204.029759pt;}
.y84{bottom:210.040009pt;}
.y66{bottom:215.275390pt;}
.y31{bottom:215.499833pt;}
.y1e{bottom:224.593833pt;}
.y69{bottom:225.458290pt;}
.y83{bottom:229.240010pt;}
.y75{bottom:229.697760pt;}
.y65{bottom:241.835390pt;}
.y3{bottom:246.242321pt;}
.y42{bottom:247.400041pt;}
.y82{bottom:248.440011pt;}
.y30{bottom:248.593834pt;}
.y11{bottom:256.245246pt;}
.y1d{bottom:257.687814pt;}
.y81{bottom:267.640001pt;}
.y64{bottom:268.395391pt;}
.y74{bottom:271.365761pt;}
.y5b{bottom:272.994133pt;}
.y1c{bottom:274.781805pt;}
.y41{bottom:275.000052pt;}
.y54{bottom:277.095744pt;}
.y2f{bottom:281.687815pt;}
.y10{bottom:286.485242pt;}
.y80{bottom:286.839996pt;}
.y63{bottom:294.955392pt;}
.y2e{bottom:298.781806pt;}
.y40{bottom:302.600042pt;}
.y7f{bottom:306.039993pt;}
.y1b{bottom:307.875806pt;}
.y73{bottom:313.033764pt;}
.yf{bottom:316.725243pt;}
.y5a{bottom:317.794125pt;}
.y2{bottom:321.122313pt;}
.y52{bottom:321.371553pt;}
.y62{bottom:321.515393pt;}
.y71{bottom:324.022206pt;}
.y1a{bottom:324.969796pt;}
.y7e{bottom:325.239991pt;}
.y3f{bottom:330.200033pt;}
.y2d{bottom:331.875807pt;}
.y7d{bottom:344.439994pt;}
.ye{bottom:346.965244pt;}
.y61{bottom:348.075388pt;}
.y2c{bottom:348.969797pt;}
.y3e{bottom:357.800024pt;}
.y19{bottom:358.063787pt;}
.y47{bottom:358.838218pt;}
.y4a{bottom:362.594126pt;}
.y7c{bottom:363.639994pt;}
.y51{bottom:366.171554pt;}
.y53{bottom:373.740155pt;}
.y60{bottom:374.369792pt;}
.y2b{bottom:382.063788pt;}
.y3d{bottom:385.400015pt;}
.y18{bottom:391.157788pt;}
.y1{bottom:396.002295pt;}
.y5f{bottom:399.601796pt;}
.y7b{bottom:402.888393pt;}
.y46{bottom:403.638220pt;}
.y49{bottom:407.394128pt;}
.y50{bottom:410.971556pt;}
.y3c{bottom:413.000011pt;}
.y2a{bottom:415.157789pt;}
.y17{bottom:424.251789pt;}
.y6f{bottom:435.382277pt;}
.y3b{bottom:440.600003pt;}
.y5e{bottom:442.313770pt;}
.y79{bottom:447.791958pt;}
.y29{bottom:448.251790pt;}
.y45{bottom:448.438215pt;}
.y59{bottom:449.249751pt;}
.y44{bottom:451.959220pt;}
.yc{bottom:452.022214pt;}
.y48{bottom:452.194123pt;}
.y4f{bottom:455.771551pt;}
.y16{bottom:456.605790pt;}
.y58{bottom:478.049758pt;}
.y28{bottom:480.605791pt;}
.y5d{bottom:482.633764pt;}
.y3a{bottom:484.200003pt;}
.y15{bottom:486.885121pt;}
.y55{bottom:487.817534pt;}
.y57{bottom:506.849763pt;}
.y27{bottom:510.885122pt;}
.y39{bottom:511.800000pt;}
.y56{bottom:513.648293pt;}
.yd{bottom:518.199999pt;}
.y5c{bottom:526.200000pt;}
.h9{height:32.324412pt;}
.h4{height:38.828125pt;}
.h12{height:38.854167pt;}
.ha{height:39.507622pt;}
.hb{height:39.534120pt;}
.h13{height:39.786667pt;}
.h10{height:46.593751pt;}
.h17{height:46.625001pt;}
.h3{height:48.656252pt;}
.h16{height:50.316215pt;}
.he{height:50.500002pt;}
.h15{height:54.201558pt;}
.h11{height:54.395833pt;}
.hc{height:58.242189pt;}
.hd{height:58.281252pt;}
.h5{height:59.446883pt;}
.h8{height:61.057229pt;}
.h14{height:67.307820pt;}
.h7{height:69.937502pt;}
.h6{height:106.050003pt;}
.h2{height:113.531250pt;}
.hf{height:117.833333pt;}
.h1{height:196.950000pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x8{left:9.000000pt;}
.xe{left:17.500788pt;}
.xc{left:30.834647pt;}
.x6{left:33.724411pt;}
.x18{left:40.724411pt;}
.x7{left:41.724411pt;}
.x2{left:42.884842pt;}
.x5{left:48.595804pt;}
.x1{left:67.256547pt;}
.x19{left:180.354996pt;}
.x4{left:209.762697pt;}
.x1a{left:255.656178pt;}
.x3{left:258.418908pt;}
.x14{left:406.242013pt;}
.x13{left:422.242014pt;}
.x12{left:438.242014pt;}
.x11{left:454.242015pt;}
.x16{left:463.629915pt;}
.x17{left:465.724415pt;}
.x10{left:481.000015pt;}
.xf{left:483.000015pt;}
.x15{left:505.000016pt;}
.xd{left:512.196856pt;}
.xa{left:550.595818pt;}
.x9{left:641.186361pt;}
.xb{left:667.973771pt;}
}




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