
    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_a4789475fc73ad014f237c71.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.121000;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_efd4ab3cbd290b6c7895f8a8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.075000;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_6c79cc4ab85bcfaadd8b561b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.061000;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_e861d4c53729166448de035e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.075000;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;}
.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;}
}
.ws0{word-spacing:-16.492499px;}
.ws4{word-spacing:-14.996249px;}
.ws5{word-spacing:-10.500723px;}
.ws2{word-spacing:-6.993414px;}
.ws3{word-spacing:-4.667118px;}
.ws1{word-spacing:0.000000px;}
._3{margin-left:-1.005386px;}
._0{width:1.833570px;}
._18{width:3.743612px;}
._24{width:4.766489px;}
._4{width:5.817972px;}
._2{width:7.731468px;}
._e{width:8.840100px;}
._11{width:9.925594px;}
._d{width:11.035043px;}
._13{width:12.460445px;}
._1f{width:13.464151px;}
._19{width:14.583642px;}
._c{width:17.702539px;}
._17{width:19.036136px;}
._6{width:20.254094px;}
._1d{width:21.303138px;}
._8{width:22.868095px;}
._1{width:23.876207px;}
._7{width:25.660653px;}
._27{width:26.950876px;}
._16{width:32.338743px;}
._5{width:33.791757px;}
._b{width:34.822604px;}
._9{width:36.157425px;}
._15{width:38.599433px;}
._1b{width:39.699993px;}
._26{width:40.791285px;}
._12{width:42.116102px;}
._20{width:43.160568px;}
._10{width:44.308805px;}
._25{width:45.370531px;}
._21{width:47.085806px;}
._1a{width:53.857647px;}
._1c{width:54.968273px;}
._1e{width:61.890412px;}
._14{width:66.812287px;}
._f{width:67.987660px;}
._22{width:78.386561px;}
._a{width:81.703278px;}
._23{width:87.980319px;}
.fc3{color:transparent;}
.fc2{color:rgb(1,52,44);}
.fc1{color:rgb(0,76,62);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:18.668471px;}
.fs4{font-size:27.973655px;}
.fs7{font-size:29.739314px;}
.fs8{font-size:42.002892px;}
.fs3{font-size:53.999998px;}
.fs6{font-size:59.984997px;}
.fs0{font-size:65.969996px;}
.fs2{font-size:71.999997px;}
.fs1{font-size:83.969997px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000021px;}
.y71{bottom:5.693939px;}
.y70{bottom:15.607044px;}
.y6f{bottom:25.520149px;}
.y6e{bottom:35.433253px;}
.y6d{bottom:45.346358px;}
.y6c{bottom:63.855018px;}
.y48{bottom:67.888653px;}
.y69{bottom:69.791292px;}
.y3e{bottom:72.737565px;}
.y68{bottom:88.140239px;}
.y6a{bottom:89.013051px;}
.y47{bottom:90.388652px;}
.y3d{bottom:95.237564px;}
.y67{bottom:105.272134px;}
.y46{bottom:112.888651px;}
.y3c{bottom:117.737563px;}
.y45{bottom:135.388650px;}
.y3b{bottom:140.237562px;}
.y44{bottom:157.888649px;}
.y3a{bottom:162.737561px;}
.y72{bottom:178.111026px;}
.y43{bottom:180.388648px;}
.y39{bottom:185.237560px;}
.y42{bottom:202.888648px;}
.y38{bottom:207.737559px;}
.y41{bottom:225.388647px;}
.y37{bottom:230.237558px;}
.y74{bottom:242.317430px;}
.y40{bottom:247.888646px;}
.y36{bottom:252.737557px;}
.y6b{bottom:269.253097px;}
.y3f{bottom:270.388645px;}
.y4f{bottom:290.563584px;}
.y51{bottom:314.188583px;}
.y4e{bottom:315.313583px;}
.y75{bottom:337.277974px;}
.y50{bottom:338.938582px;}
.y35{bottom:359.113593px;}
.y73{bottom:362.938701px;}
.y34{bottom:381.613592px;}
.y2a{bottom:386.762877px;}
.y33{bottom:404.113591px;}
.y29{bottom:409.262876px;}
.y32{bottom:426.613590px;}
.y28{bottom:431.762875px;}
.y31{bottom:449.113589px;}
.y27{bottom:454.262874px;}
.y30{bottom:471.613588px;}
.y26{bottom:476.762873px;}
.y2f{bottom:494.113587px;}
.y25{bottom:499.262872px;}
.y2e{bottom:516.613586px;}
.y24{bottom:521.762871px;}
.y2d{bottom:539.113586px;}
.y23{bottom:544.262871px;}
.y2c{bottom:561.613585px;}
.y22{bottom:566.762870px;}
.y2b{bottom:584.113584px;}
.y21{bottom:589.262869px;}
.y20{bottom:611.762868px;}
.y4c{bottom:627.913540px;}
.y1f{bottom:634.262867px;}
.y4b{bottom:652.663539px;}
.y1e{bottom:656.762866px;}
.y1d{bottom:679.262865px;}
.y64{bottom:687.131647px;}
.y11{bottom:696.463585px;}
.y1c{bottom:701.762864px;}
.y63{bottom:709.631646px;}
.y10{bottom:718.963584px;}
.y1b{bottom:724.262863px;}
.y62{bottom:732.131645px;}
.yf{bottom:741.463583px;}
.y1a{bottom:746.762862px;}
.y61{bottom:754.631645px;}
.ye{bottom:763.963582px;}
.y19{bottom:769.262861px;}
.y60{bottom:777.131644px;}
.yd{bottom:786.463581px;}
.y18{bottom:791.762860px;}
.y5f{bottom:799.631643px;}
.yc{bottom:808.963580px;}
.y17{bottom:814.262859px;}
.y5e{bottom:822.131642px;}
.yb{bottom:831.463579px;}
.y16{bottom:836.762858px;}
.y5d{bottom:844.631641px;}
.ya{bottom:853.963578px;}
.y15{bottom:859.262857px;}
.y5c{bottom:867.131640px;}
.y9{bottom:876.463577px;}
.y14{bottom:881.762856px;}
.y5b{bottom:889.631639px;}
.y8{bottom:898.963577px;}
.y13{bottom:904.262856px;}
.y5a{bottom:912.131638px;}
.y7{bottom:921.463576px;}
.y12{bottom:926.762855px;}
.y59{bottom:934.631637px;}
.y6{bottom:943.963575px;}
.y58{bottom:957.131636px;}
.y4d{bottom:966.062840px;}
.y5{bottom:966.463574px;}
.y57{bottom:979.631635px;}
.y4{bottom:988.963573px;}
.y56{bottom:1002.131634px;}
.y3{bottom:1011.463572px;}
.y55{bottom:1024.631633px;}
.y2{bottom:1033.963571px;}
.y54{bottom:1047.131632px;}
.y53{bottom:1069.631631px;}
.y52{bottom:1075.963545px;}
.y66{bottom:1116.265407px;}
.y4a{bottom:1139.193817px;}
.y65{bottom:1141.015406px;}
.y49{bottom:1168.443815px;}
.h9{height:15.457494px;}
.h8{height:22.742582px;}
.hc{height:24.178062px;}
.hd{height:34.148351px;}
.he{height:43.901998px;}
.h6{height:47.249998px;}
.ha{height:48.767803px;}
.h7{height:53.633607px;}
.hb{height:53.639998px;}
.h3{height:57.723747px;}
.h5{height:59.615998px;}
.h4{height:69.527157px;}
.h1{height:1263.000000px;}
.h2{height:1263.374947px;}
.h0{height:1263.374968px;}
.w2{width:200.519992px;}
.w1{width:893.249963px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:43.535941px;}
.x7{left:45.056424px;}
.xd{left:46.871420px;}
.xa{left:47.949052px;}
.xe{left:53.371651px;}
.x5{left:77.567189px;}
.xb{left:119.519995px;}
.xc{left:127.235486px;}
.x6{left:199.506637px;}
.x2{left:469.058798px;}
.x4{left:481.787293px;}
.x3{left:497.097839px;}
.x9{left:618.425974px;}
.x8{left:620.329942px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-14.659999pt;}
.ws4{word-spacing:-13.329999pt;}
.ws5{word-spacing:-9.333976pt;}
.ws2{word-spacing:-6.216368pt;}
.ws3{word-spacing:-4.148549pt;}
.ws1{word-spacing:0.000000pt;}
._3{margin-left:-0.893677pt;}
._0{width:1.629840pt;}
._18{width:3.327655pt;}
._24{width:4.236880pt;}
._4{width:5.171531pt;}
._2{width:6.872416pt;}
._e{width:7.857866pt;}
._11{width:8.822751pt;}
._d{width:9.808927pt;}
._13{width:11.075951pt;}
._1f{width:11.968134pt;}
._19{width:12.963238pt;}
._c{width:15.735590pt;}
._17{width:16.921010pt;}
._6{width:18.003639pt;}
._1d{width:18.936123pt;}
._8{width:20.327195pt;}
._1{width:21.223295pt;}
._7{width:22.809469pt;}
._27{width:23.956335pt;}
._16{width:28.745549pt;}
._5{width:30.037118pt;}
._b{width:30.953426pt;}
._9{width:32.139934pt;}
._15{width:34.310607pt;}
._1b{width:35.288882pt;}
._26{width:36.258920pt;}
._12{width:37.436535pt;}
._20{width:38.364949pt;}
._10{width:39.385605pt;}
._25{width:40.329361pt;}
._21{width:41.854050pt;}
._1a{width:47.873464pt;}
._1c{width:48.860687pt;}
._1e{width:55.013700pt;}
._14{width:59.388699pt;}
._f{width:60.433476pt;}
._22{width:69.676943pt;}
._a{width:72.625136pt;}
._23{width:78.204728pt;}
.fs5{font-size:16.594196pt;}
.fs4{font-size:24.865471pt;}
.fs7{font-size:26.434946pt;}
.fs8{font-size:37.335904pt;}
.fs3{font-size:47.999998pt;}
.fs6{font-size:53.319997pt;}
.fs0{font-size:58.639997pt;}
.fs2{font-size:63.999997pt;}
.fs1{font-size:74.639997pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000018pt;}
.y71{bottom:5.061279pt;}
.y70{bottom:13.872928pt;}
.y6f{bottom:22.684577pt;}
.y6e{bottom:31.496225pt;}
.y6d{bottom:40.307874pt;}
.y6c{bottom:56.760016pt;}
.y48{bottom:60.345469pt;}
.y69{bottom:62.036704pt;}
.y3e{bottom:64.655613pt;}
.y68{bottom:78.346879pt;}
.y6a{bottom:79.122712pt;}
.y47{bottom:80.345469pt;}
.y3d{bottom:84.655612pt;}
.y67{bottom:93.575230pt;}
.y46{bottom:100.345468pt;}
.y3c{bottom:104.655612pt;}
.y45{bottom:120.345467pt;}
.y3b{bottom:124.655611pt;}
.y44{bottom:140.345466pt;}
.y3a{bottom:144.655610pt;}
.y72{bottom:158.320912pt;}
.y43{bottom:160.345465pt;}
.y39{bottom:164.655609pt;}
.y42{bottom:180.345464pt;}
.y38{bottom:184.655608pt;}
.y41{bottom:200.345464pt;}
.y37{bottom:204.655607pt;}
.y74{bottom:215.393271pt;}
.y40{bottom:220.345463pt;}
.y36{bottom:224.655607pt;}
.y6b{bottom:239.336086pt;}
.y3f{bottom:240.345462pt;}
.y4f{bottom:258.278741pt;}
.y51{bottom:279.278740pt;}
.y4e{bottom:280.278740pt;}
.y75{bottom:299.802644pt;}
.y50{bottom:301.278739pt;}
.y35{bottom:319.212083pt;}
.y73{bottom:322.612179pt;}
.y34{bottom:339.212082pt;}
.y2a{bottom:343.789224pt;}
.y33{bottom:359.212081pt;}
.y29{bottom:363.789223pt;}
.y32{bottom:379.212080pt;}
.y28{bottom:383.789222pt;}
.y31{bottom:399.212079pt;}
.y27{bottom:403.789222pt;}
.y30{bottom:419.212079pt;}
.y26{bottom:423.789221pt;}
.y2f{bottom:439.212078pt;}
.y25{bottom:443.789220pt;}
.y2e{bottom:459.212077pt;}
.y24{bottom:463.789219pt;}
.y2d{bottom:479.212076pt;}
.y23{bottom:483.789218pt;}
.y2c{bottom:499.212075pt;}
.y22{bottom:503.789217pt;}
.y2b{bottom:519.212074pt;}
.y21{bottom:523.789217pt;}
.y20{bottom:543.789216pt;}
.y4c{bottom:558.145369pt;}
.y1f{bottom:563.789215pt;}
.y4b{bottom:580.145368pt;}
.y1e{bottom:583.789214pt;}
.y1d{bottom:603.789213pt;}
.y64{bottom:610.783687pt;}
.y11{bottom:619.078742pt;}
.y1c{bottom:623.789212pt;}
.y63{bottom:630.783686pt;}
.y10{bottom:639.078741pt;}
.y1b{bottom:643.789212pt;}
.y62{bottom:650.783685pt;}
.yf{bottom:659.078741pt;}
.y1a{bottom:663.789211pt;}
.y61{bottom:670.783684pt;}
.ye{bottom:679.078740pt;}
.y19{bottom:683.789210pt;}
.y60{bottom:690.783683pt;}
.yd{bottom:699.078739pt;}
.y18{bottom:703.789209pt;}
.y5f{bottom:710.783682pt;}
.yc{bottom:719.078738pt;}
.y17{bottom:723.789208pt;}
.y5e{bottom:730.783682pt;}
.yb{bottom:739.078737pt;}
.y16{bottom:743.789207pt;}
.y5d{bottom:750.783681pt;}
.ya{bottom:759.078736pt;}
.y15{bottom:763.789207pt;}
.y5c{bottom:770.783680pt;}
.y9{bottom:779.078736pt;}
.y14{bottom:783.789206pt;}
.y5b{bottom:790.783679pt;}
.y8{bottom:799.078735pt;}
.y13{bottom:803.789205pt;}
.y5a{bottom:810.783678pt;}
.y7{bottom:819.078734pt;}
.y12{bottom:823.789204pt;}
.y59{bottom:830.783677pt;}
.y6{bottom:839.078733pt;}
.y58{bottom:850.783677pt;}
.y4d{bottom:858.722524pt;}
.y5{bottom:859.078732pt;}
.y57{bottom:870.783676pt;}
.y4{bottom:879.078731pt;}
.y56{bottom:890.783675pt;}
.y3{bottom:899.078731pt;}
.y55{bottom:910.783674pt;}
.y2{bottom:919.078730pt;}
.y54{bottom:930.783673pt;}
.y53{bottom:950.783672pt;}
.y52{bottom:956.412040pt;}
.y66{bottom:992.235917pt;}
.y4a{bottom:1012.616726pt;}
.y65{bottom:1014.235916pt;}
.y49{bottom:1038.616725pt;}
.h9{height:13.739994pt;}
.h8{height:20.215628pt;}
.hc{height:21.491611pt;}
.hd{height:30.354090pt;}
.he{height:39.023998pt;}
.h6{height:41.999998pt;}
.ha{height:43.349158pt;}
.h7{height:47.674317pt;}
.hb{height:47.679998pt;}
.h3{height:51.309997pt;}
.h5{height:52.991998pt;}
.h4{height:61.801917pt;}
.h1{height:1122.666667pt;}
.h2{height:1122.999953pt;}
.h0{height:1122.999972pt;}
.w2{width:178.239993pt;}
.w1{width:793.999967pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:38.698614pt;}
.x7{left:40.050154pt;}
.xd{left:41.663485pt;}
.xa{left:42.621380pt;}
.xe{left:47.441468pt;}
.x5{left:68.948613pt;}
.xb{left:106.239996pt;}
.xc{left:113.098210pt;}
.x6{left:177.339233pt;}
.x2{left:416.941154pt;}
.x4{left:428.255372pt;}
.x3{left:441.864746pt;}
.x9{left:549.711977pt;}
.x8{left:551.404393pt;}
}




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