
    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_108d6181cdd1174fe120302d.woff2')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_c17ae6232b82b0d478310685.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910645;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_0a0dde9403d43daa80775274.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910156;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_4f06d83d2012454592b328bf.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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;}
.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:-18.000000px;}
.ws1{word-spacing:0.000000px;}
._b{margin-left:-9.280059px;}
._2{margin-left:-7.980467px;}
._11{margin-left:-6.822534px;}
._a{margin-left:-5.765625px;}
._9{margin-left:-3.971546px;}
._0{margin-left:-2.882813px;}
._1{margin-left:-1.300781px;}
._10{width:1.333777px;}
._c{width:2.355471px;}
._6{width:4.499266px;}
._4{width:9.000091px;}
._3{width:13.499988px;}
._5{width:22.500001px;}
._8{width:26.999988px;}
._7{width:31.500003px;}
._16{width:35.015615px;}
._15{width:36.527346px;}
._18{width:40.500001px;}
._17{width:44.999999px;}
._14{width:53.859352px;}
._13{width:54.984386px;}
._12{width:58.640626px;}
._f{width:89.578154px;}
._e{width:90.843733px;}
._d{width:94.429688px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.000002px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y22{bottom:119.015989px;}
.y61{bottom:119.288089px;}
.y21{bottom:142.818967px;}
.y60{bottom:143.091068px;}
.y3f{bottom:151.679077px;}
.y90{bottom:161.091057px;}
.y73{bottom:170.923823px;}
.y20{bottom:184.621955px;}
.y8f{bottom:184.894035px;}
.y5f{bottom:184.894043px;}
.y3e{bottom:193.482053px;}
.y1f{bottom:208.424933px;}
.y8e{bottom:208.697014px;}
.y5e{bottom:208.697022px;}
.y72{bottom:212.726813px;}
.y1e{bottom:232.227912px;}
.y8d{bottom:232.499992px;}
.y5d{bottom:232.500000px;}
.y3d{bottom:235.285028px;}
.y71{bottom:254.529787px;}
.y1d{bottom:256.030890px;}
.y5c{bottom:256.302979px;}
.y8c{bottom:274.302983px;}
.y3c{bottom:277.088017px;}
.y1c{bottom:279.833869px;}
.y5b{bottom:280.105957px;}
.y70{bottom:296.332762px;}
.y8b{bottom:298.105962px;}
.y1b{bottom:303.636848px;}
.y3b{bottom:318.890992px;}
.y5a{bottom:321.908933px;}
.y8a{bottom:321.908940px;}
.y6f{bottom:338.135738px;}
.y1a{bottom:345.439820px;}
.y59{bottom:345.711912px;}
.y89{bottom:345.711919px;}
.y3a{bottom:360.693968px;}
.y19{bottom:369.242798px;}
.y58{bottom:369.514890px;}
.y88{bottom:369.514898px;}
.y6e{bottom:379.938727px;}
.y18{bottom:393.045777px;}
.y57{bottom:393.317869px;}
.y39{bottom:402.496943px;}
.y87{bottom:411.317877px;}
.y17{bottom:416.848755px;}
.y56{bottom:417.120847px;}
.y6d{bottom:421.741702px;}
.y86{bottom:435.120855px;}
.y16{bottom:440.651734px;}
.y38{bottom:444.299933px;}
.y85{bottom:458.923834px;}
.y55{bottom:458.923835px;}
.y6c{bottom:463.544678px;}
.y15{bottom:464.454713px;}
.y54{bottom:482.726813px;}
.y37{bottom:486.102908px;}
.y6b{bottom:505.347652px;}
.y14{bottom:506.257697px;}
.y53{bottom:506.529792px;}
.y84{bottom:524.529788px;}
.y36{bottom:527.905882px;}
.y13{bottom:530.060675px;}
.y52{bottom:530.332770px;}
.y6a{bottom:547.150628px;}
.y83{bottom:548.332767px;}
.y12{bottom:553.863653px;}
.y51{bottom:554.135749px;}
.y35{bottom:569.708858px;}
.y82{bottom:572.135745px;}
.y11{bottom:577.666632px;}
.y50{bottom:577.938728px;}
.y69{bottom:588.953618px;}
.y81{bottom:595.938724px;}
.y10{bottom:601.469610px;}
.y34{bottom:611.511848px;}
.y4f{bottom:619.741700px;}
.y80{bottom:619.741702px;}
.yf{bottom:625.272589px;}
.y68{bottom:630.756593px;}
.y4e{bottom:643.544678px;}
.ye{bottom:649.075568px;}
.y33{bottom:653.314822px;}
.y7f{bottom:661.544675px;}
.y4d{bottom:667.347657px;}
.y67{bottom:672.559568px;}
.y7e{bottom:685.347653px;}
.yd{bottom:690.878539px;}
.y4c{bottom:691.150635px;}
.y32{bottom:695.117798px;}
.y7d{bottom:709.150632px;}
.y66{bottom:714.362543px;}
.yc{bottom:714.681517px;}
.y4b{bottom:714.953614px;}
.y7c{bottom:732.953610px;}
.y31{bottom:736.920773px;}
.y4a{bottom:738.756593px;}
.y65{bottom:756.165533px;}
.yb{bottom:756.484504px;}
.y7b{bottom:756.756589px;}
.y30{bottom:760.068059px;}
.ya{bottom:780.287482px;}
.y7a{bottom:780.559568px;}
.y49{bottom:780.559577px;}
.y2f{bottom:781.887449px;}
.y64{bottom:797.968507px;}
.y48{bottom:804.362555px;}
.y9{bottom:822.090458px;}
.y79{bottom:822.362552px;}
.y2e{bottom:822.362554px;}
.y47{bottom:828.165533px;}
.y63{bottom:839.771482px;}
.y8{bottom:845.893433px;}
.y78{bottom:846.165530px;}
.y2d{bottom:846.165533px;}
.y46{bottom:851.968512px;}
.y7{bottom:869.696408px;}
.y77{bottom:869.968508px;}
.y45{bottom:875.771490px;}
.y62{bottom:881.574457px;}
.y2c{bottom:887.968512px;}
.y6{bottom:893.499383px;}
.y76{bottom:893.771487px;}
.y44{bottom:899.574469px;}
.y94{bottom:904.869869px;}
.y2b{bottom:911.771490px;}
.y5{bottom:917.302373px;}
.y75{bottom:917.574465px;}
.y43{bottom:923.377448px;}
.y93{bottom:926.688719px;}
.y2a{bottom:935.574469px;}
.y4{bottom:941.105347px;}
.y74{bottom:941.377444px;}
.y92{bottom:948.508304px;}
.y29{bottom:959.377448px;}
.y3{bottom:964.252619px;}
.y42{bottom:965.180423px;}
.y2{bottom:986.727727px;}
.y91{bottom:988.983398px;}
.y28{bottom:1001.180419px;}
.y41{bottom:1006.983398px;}
.y1{bottom:1009.874999px;}
.y27{bottom:1024.983398px;}
.y40{bottom:1030.786377px;}
.y26{bottom:1048.786376px;}
.y25{bottom:1072.589355px;}
.y24{bottom:1114.392334px;}
.y23{bottom:1138.195312px;}
.h2{height:43.989259px;}
.h3{height:48.796875px;}
.h4{height:49.992188px;}
.h1{height:50.027344px;}
.h0{height:1263.000000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x2{left:108.000000px;}
.x3{left:410.456700px;}
.x4{left:446.456700px;}
.x1{left:824.625000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1{word-spacing:0.000000pt;}
._b{margin-left:-8.248941pt;}
._2{margin-left:-7.093748pt;}
._11{margin-left:-6.064475pt;}
._a{margin-left:-5.125000pt;}
._9{margin-left:-3.530263pt;}
._0{margin-left:-2.562501pt;}
._1{margin-left:-1.156250pt;}
._10{width:1.185580pt;}
._c{width:2.093752pt;}
._6{width:3.999348pt;}
._4{width:8.000081pt;}
._3{width:11.999989pt;}
._5{width:20.000001pt;}
._8{width:23.999989pt;}
._7{width:28.000002pt;}
._16{width:31.124991pt;}
._15{width:32.468752pt;}
._18{width:36.000001pt;}
._17{width:40.000000pt;}
._14{width:47.874980pt;}
._13{width:48.875010pt;}
._12{width:52.125001pt;}
._f{width:79.625026pt;}
._e{width:80.749985pt;}
._d{width:83.937501pt;}
.fs0{font-size:58.666668pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:105.791990pt;}
.y61{bottom:106.033856pt;}
.y21{bottom:126.950193pt;}
.y60{bottom:127.192060pt;}
.y3f{bottom:134.825847pt;}
.y90{bottom:143.192050pt;}
.y73{bottom:151.932287pt;}
.y20{bottom:164.108405pt;}
.y8f{bottom:164.350253pt;}
.y5f{bottom:164.350261pt;}
.y3e{bottom:171.984047pt;}
.y1f{bottom:185.266607pt;}
.y8e{bottom:185.508456pt;}
.y5e{bottom:185.508464pt;}
.y72{bottom:189.090500pt;}
.y1e{bottom:206.424811pt;}
.y8d{bottom:206.666660pt;}
.y5d{bottom:206.666667pt;}
.y3d{bottom:209.142247pt;}
.y71{bottom:226.248700pt;}
.y1d{bottom:227.583014pt;}
.y5c{bottom:227.824870pt;}
.y8c{bottom:243.824874pt;}
.y3c{bottom:246.300460pt;}
.y1c{bottom:248.741217pt;}
.y5b{bottom:248.983073pt;}
.y70{bottom:263.406900pt;}
.y8b{bottom:264.983077pt;}
.y1b{bottom:269.899420pt;}
.y3b{bottom:283.458660pt;}
.y5a{bottom:286.141274pt;}
.y8a{bottom:286.141280pt;}
.y6f{bottom:300.565100pt;}
.y1a{bottom:307.057618pt;}
.y59{bottom:307.299477pt;}
.y89{bottom:307.299483pt;}
.y3a{bottom:320.616860pt;}
.y19{bottom:328.215821pt;}
.y58{bottom:328.457680pt;}
.y88{bottom:328.457687pt;}
.y6e{bottom:337.723313pt;}
.y18{bottom:349.374024pt;}
.y57{bottom:349.615883pt;}
.y39{bottom:357.775060pt;}
.y87{bottom:365.615890pt;}
.y17{bottom:370.532227pt;}
.y56{bottom:370.774087pt;}
.y6d{bottom:374.881513pt;}
.y86{bottom:386.774094pt;}
.y16{bottom:391.690430pt;}
.y38{bottom:394.933273pt;}
.y85{bottom:407.932297pt;}
.y55{bottom:407.932298pt;}
.y6c{bottom:412.039713pt;}
.y15{bottom:412.848633pt;}
.y54{bottom:429.090501pt;}
.y37{bottom:432.091473pt;}
.y6b{bottom:449.197913pt;}
.y14{bottom:450.006842pt;}
.y53{bottom:450.248704pt;}
.y84{bottom:466.248701pt;}
.y36{bottom:469.249673pt;}
.y13{bottom:471.165044pt;}
.y52{bottom:471.406907pt;}
.y6a{bottom:486.356113pt;}
.y83{bottom:487.406904pt;}
.y12{bottom:492.323247pt;}
.y51{bottom:492.565110pt;}
.y35{bottom:506.407873pt;}
.y82{bottom:508.565107pt;}
.y11{bottom:513.481450pt;}
.y50{bottom:513.723313pt;}
.y69{bottom:523.514327pt;}
.y81{bottom:529.723310pt;}
.y10{bottom:534.639654pt;}
.y34{bottom:543.566087pt;}
.y4f{bottom:550.881511pt;}
.y80{bottom:550.881513pt;}
.yf{bottom:555.797856pt;}
.y68{bottom:560.672527pt;}
.y4e{bottom:572.039714pt;}
.ye{bottom:576.956060pt;}
.y33{bottom:580.724287pt;}
.y7f{bottom:588.039711pt;}
.y4d{bottom:593.197917pt;}
.y67{bottom:597.830727pt;}
.y7e{bottom:609.197914pt;}
.yd{bottom:614.114256pt;}
.y4c{bottom:614.356120pt;}
.y32{bottom:617.882487pt;}
.y7d{bottom:630.356117pt;}
.y66{bottom:634.988927pt;}
.yc{bottom:635.272460pt;}
.y4b{bottom:635.514323pt;}
.y7c{bottom:651.514320pt;}
.y31{bottom:655.040687pt;}
.y4a{bottom:656.672527pt;}
.y65{bottom:672.147140pt;}
.yb{bottom:672.430670pt;}
.y7b{bottom:672.672523pt;}
.y30{bottom:675.616052pt;}
.ya{bottom:693.588873pt;}
.y7a{bottom:693.830727pt;}
.y49{bottom:693.830735pt;}
.y2f{bottom:695.011065pt;}
.y64{bottom:709.305340pt;}
.y48{bottom:714.988938pt;}
.y9{bottom:730.747073pt;}
.y79{bottom:730.988935pt;}
.y2e{bottom:730.988937pt;}
.y47{bottom:736.147141pt;}
.y63{bottom:746.463540pt;}
.y8{bottom:751.905273pt;}
.y78{bottom:752.147138pt;}
.y2d{bottom:752.147140pt;}
.y46{bottom:757.305344pt;}
.y7{bottom:773.063473pt;}
.y77{bottom:773.305341pt;}
.y45{bottom:778.463547pt;}
.y62{bottom:783.621740pt;}
.y2c{bottom:789.305344pt;}
.y6{bottom:794.221673pt;}
.y76{bottom:794.463544pt;}
.y44{bottom:799.621750pt;}
.y94{bottom:804.328772pt;}
.y2b{bottom:810.463547pt;}
.y5{bottom:815.379887pt;}
.y75{bottom:815.621747pt;}
.y43{bottom:820.779953pt;}
.y93{bottom:823.723305pt;}
.y2a{bottom:831.621750pt;}
.y4{bottom:836.538087pt;}
.y74{bottom:836.779950pt;}
.y92{bottom:843.118492pt;}
.y29{bottom:852.779953pt;}
.y3{bottom:857.113439pt;}
.y42{bottom:857.938153pt;}
.y2{bottom:877.091313pt;}
.y91{bottom:879.096353pt;}
.y28{bottom:889.938151pt;}
.y41{bottom:895.096354pt;}
.y1{bottom:897.666666pt;}
.y27{bottom:911.096353pt;}
.y40{bottom:916.254557pt;}
.y26{bottom:932.254557pt;}
.y25{bottom:953.412760pt;}
.y24{bottom:990.570963pt;}
.y23{bottom:1011.729167pt;}
.h2{height:39.101563pt;}
.h3{height:43.375000pt;}
.h4{height:44.437500pt;}
.h1{height:44.468750pt;}
.h0{height:1122.666667pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x2{left:96.000000pt;}
.x3{left:364.850400pt;}
.x4{left:396.850400pt;}
.x1{left:733.000000pt;}
}




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