
    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_ea50b94dc84ab477ced9be48.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_eaaad5ff5c12f28a61eaae59.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c14144f86003024e702cf3f3.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_9b062a90dd72772b13bf69c8.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_e06ff957d263f03a987b4d91.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_e497e6712f2a019f1ae6fad0.woff2')format("woff");}.ff6{font-family:ff6;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;}
.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:-33.000001px;}
.ws0{word-spacing:-18.336914px;}
.ws1{word-spacing:0.000000px;}
._2{margin-left:-8.682094px;}
._3{margin-left:-7.344087px;}
._0{margin-left:-5.311136px;}
._5{margin-left:-3.964748px;}
._6{margin-left:-2.826887px;}
._1{margin-left:-1.016121px;}
._7{width:1.768964px;}
._8{width:34.620116px;}
._4{width:49.798827px;}
._9{width:197.663086px;}
.fc4{color:rgb(68,71,70);}
.fc3{color:rgb(1,98,241);}
.fc2{color:rgb(17,85,204);}
.fc1{color:rgb(67,67,67);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.000002px;}
.fs2{font-size:83.999997px;}
.fs1{font-size:96.000003px;}
.y0{bottom:0.000000px;}
.y2{bottom:38.523194px;}
.ya3{bottom:112.157954px;}
.y80{bottom:114.338384px;}
.yc7{bottom:115.977539px;}
.y54{bottom:133.977179px;}
.ya2{bottom:133.977539px;}
.y7f{bottom:136.157954px;}
.yc6{bottom:137.796749px;}
.y2a{bottom:140.698064px;}
.y53{bottom:155.796563px;}
.ya1{bottom:155.796757px;}
.y7e{bottom:157.977172px;}
.yc5{bottom:159.615970px;}
.y29{bottom:162.517454px;}
.y52{bottom:177.615960px;}
.ya0{bottom:177.615974px;}
.y7d{bottom:179.796749px;}
.yc4{bottom:181.435552px;}
.y28{bottom:184.336859px;}
.y9f{bottom:199.435184px;}
.y51{bottom:199.435357px;}
.y7c{bottom:201.615974px;}
.yc3{bottom:203.255129px;}
.y27{bottom:206.156249px;}
.y50{bottom:221.254754px;}
.y9e{bottom:221.254772px;}
.y7b{bottom:223.435544px;}
.yc2{bottom:225.074339px;}
.y26{bottom:227.975654px;}
.y9d{bottom:243.073980px;}
.y4f{bottom:243.074159px;}
.y7a{bottom:245.254754px;}
.yc1{bottom:246.893549px;}
.y25{bottom:249.795044px;}
.y4e{bottom:264.893549px;}
.y9c{bottom:264.893557px;}
.y79{bottom:267.074339px;}
.yc0{bottom:268.713135px;}
.y24{bottom:271.614442px;}
.y9b{bottom:286.712774px;}
.y4d{bottom:286.712947px;}
.y78{bottom:288.893549px;}
.ybf{bottom:290.532712px;}
.y23{bottom:293.433839px;}
.y4c{bottom:308.532344px;}
.y77{bottom:310.713134px;}
.ybe{bottom:312.351929px;}
.y22{bottom:315.253229px;}
.y9a{bottom:330.351569px;}
.y4b{bottom:330.351749px;}
.y76{bottom:332.532346px;}
.ybd{bottom:334.171139px;}
.y21{bottom:337.072634px;}
.y4a{bottom:352.171139px;}
.y75{bottom:354.351932px;}
.y20{bottom:358.892024px;}
.ybc{bottom:363.720334px;}
.y99{bottom:373.990364px;}
.y49{bottom:373.990544px;}
.y74{bottom:376.171140px;}
.y1f{bottom:380.711429px;}
.y48{bottom:395.809934px;}
.y73{bottom:397.990717px;}
.y1e{bottom:402.530819px;}
.ybb{bottom:413.760494px;}
.y98{bottom:417.629144px;}
.y72{bottom:419.809934px;}
.y1d{bottom:424.350224px;}
.y47{bottom:425.359129px;}
.yba{bottom:435.580080px;}
.y97{bottom:439.448729px;}
.y71{bottom:441.629519px;}
.y1c{bottom:446.169614px;}
.yb9{bottom:457.399657px;}
.y96{bottom:461.267939px;}
.y70{bottom:463.448729px;}
.y1b{bottom:467.989019px;}
.y46{bottom:475.399469px;}
.yb8{bottom:479.218874px;}
.y95{bottom:483.087524px;}
.y6f{bottom:485.268307px;}
.y1a{bottom:489.808409px;}
.y45{bottom:497.218874px;}
.yb7{bottom:501.038084px;}
.y94{bottom:504.906734px;}
.y6e{bottom:507.087524px;}
.y19{bottom:511.627808px;}
.y44{bottom:519.038264px;}
.yb6{bottom:522.857669px;}
.y93{bottom:526.726319px;}
.y6d{bottom:528.907109px;}
.y18{bottom:533.447205px;}
.y43{bottom:540.857669px;}
.yb5{bottom:544.677247px;}
.y92{bottom:548.545529px;}
.y6c{bottom:550.726319px;}
.y17{bottom:555.266602px;}
.y42{bottom:562.677059px;}
.yb4{bottom:566.496464px;}
.y91{bottom:570.365114px;}
.y6b{bottom:572.545904px;}
.y16{bottom:577.085999px;}
.y41{bottom:584.496464px;}
.yb3{bottom:588.315674px;}
.y90{bottom:592.184324px;}
.y6a{bottom:594.365114px;}
.y15{bottom:598.905389px;}
.y40{bottom:606.315862px;}
.y8f{bottom:614.003909px;}
.y69{bottom:616.184700px;}
.y14{bottom:620.724794px;}
.y3f{bottom:628.135259px;}
.yb2{bottom:628.135263px;}
.y8e{bottom:635.823119px;}
.y68{bottom:638.003917px;}
.y13{bottom:642.544184px;}
.y3e{bottom:649.954649px;}
.yd4{bottom:649.954829px;}
.yb1{bottom:649.954850px;}
.y8d{bottom:657.642704px;}
.y67{bottom:659.823494px;}
.y12{bottom:664.363582px;}
.yd3{bottom:671.773679px;}
.yb0{bottom:671.774049px;}
.y3d{bottom:671.774054px;}
.y8c{bottom:679.461914px;}
.y66{bottom:681.642697px;}
.y11{bottom:686.182979px;}
.yd2{bottom:693.593260px;}
.yaf{bottom:693.593266px;}
.y3c{bottom:693.593444px;}
.y8b{bottom:701.281499px;}
.y65{bottom:703.462274px;}
.y10{bottom:708.002384px;}
.yd1{bottom:715.412842px;}
.y3b{bottom:715.412849px;}
.yae{bottom:715.412852px;}
.y8a{bottom:723.100709px;}
.y64{bottom:725.281499px;}
.yf{bottom:729.821774px;}
.y3a{bottom:737.232239px;}
.yd0{bottom:737.232419px;}
.yad{bottom:737.232424px;}
.y89{bottom:744.920294px;}
.y63{bottom:747.101069px;}
.ye{bottom:751.641179px;}
.y39{bottom:759.051629px;}
.yac{bottom:759.051637px;}
.ycf{bottom:759.052004px;}
.y88{bottom:766.739512px;}
.y62{bottom:768.920294px;}
.yd{bottom:773.460577px;}
.yce{bottom:780.870847px;}
.yab{bottom:780.870854px;}
.y38{bottom:780.871034px;}
.y87{bottom:788.559089px;}
.y61{bottom:790.739864px;}
.yc{bottom:795.279974px;}
.y37{bottom:802.690424px;}
.y86{bottom:810.378299px;}
.y60{bottom:812.559089px;}
.yb{bottom:817.099364px;}
.y36{bottom:824.509829px;}
.yaa{bottom:824.510007px;}
.ycd{bottom:824.510009px;}
.y5f{bottom:834.378659px;}
.ya{bottom:838.918769px;}
.y85{bottom:839.927494px;}
.ycc{bottom:846.328859px;}
.ya9{bottom:846.329224px;}
.y35{bottom:846.329227px;}
.y5e{bottom:856.197870px;}
.y9{bottom:860.738159px;}
.ya8{bottom:868.148432px;}
.ycb{bottom:868.148444px;}
.y34{bottom:868.148624px;}
.y5d{bottom:878.017447px;}
.y8{bottom:882.557564px;}
.y33{bottom:889.968014px;}
.ya7{bottom:889.968018px;}
.y5c{bottom:899.836664px;}
.y7{bottom:904.376953px;}
.y32{bottom:911.787419px;}
.ya6{bottom:911.787595px;}
.y84{bottom:911.787599px;}
.y5b{bottom:921.656250px;}
.y6{bottom:926.196350px;}
.y31{bottom:933.606812px;}
.yca{bottom:933.607190px;}
.y5a{bottom:943.475464px;}
.y5{bottom:948.015747px;}
.ya5{bottom:955.426026px;}
.y83{bottom:955.426029px;}
.y30{bottom:955.426209px;}
.y59{bottom:965.295042px;}
.y2f{bottom:977.245605px;}
.ya4{bottom:977.245609px;}
.y4{bottom:977.564942px;}
.y58{bottom:987.114258px;}
.y2e{bottom:999.065003px;}
.y82{bottom:999.065186px;}
.yc9{bottom:999.065192px;}
.y57{bottom:1008.933835px;}
.yc8{bottom:1020.884035px;}
.y2d{bottom:1020.884400px;}
.y3{bottom:1030.488280px;}
.y56{bottom:1030.753052px;}
.y81{bottom:1042.703617px;}
.y2c{bottom:1042.703796px;}
.y55{bottom:1060.302245px;}
.y2b{bottom:1064.523194px;}
.y1{bottom:1080.000000px;}
.h7{height:48.049806px;}
.h2{height:48.082032px;}
.h6{height:48.114243px;}
.h5{height:48.114259px;}
.h4{height:61.195310px;}
.h3{height:69.937502px;}
.h1{height:108.000000px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:108.000000px;}
.x3{left:135.000000px;}
.x2{left:162.000000px;}
.x4{left:189.000000px;}
.x5{left:243.000000px;}
.x6{left:270.000000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws2{word-spacing:-29.333334pt;}
.ws0{word-spacing:-16.299479pt;}
.ws1{word-spacing:0.000000pt;}
._2{margin-left:-7.717416pt;}
._3{margin-left:-6.528077pt;}
._0{margin-left:-4.721010pt;}
._5{margin-left:-3.524220pt;}
._6{margin-left:-2.512789pt;}
._1{margin-left:-0.903219pt;}
._7{width:1.572413pt;}
._8{width:30.773436pt;}
._4{width:44.265624pt;}
._9{width:175.700521pt;}
.fs0{font-size:58.666668pt;}
.fs2{font-size:74.666664pt;}
.fs1{font-size:85.333336pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:34.242839pt;}
.ya3{bottom:99.695959pt;}
.y80{bottom:101.634119pt;}
.yc7{bottom:103.091145pt;}
.y54{bottom:119.090825pt;}
.ya2{bottom:119.091145pt;}
.y7f{bottom:121.029292pt;}
.yc6{bottom:122.485999pt;}
.y2a{bottom:125.064945pt;}
.y53{bottom:138.485834pt;}
.ya1{bottom:138.486006pt;}
.y7e{bottom:140.424153pt;}
.yc5{bottom:141.880862pt;}
.y29{bottom:144.459959pt;}
.y52{bottom:157.880853pt;}
.ya0{bottom:157.880865pt;}
.y7d{bottom:159.819332pt;}
.yc4{bottom:161.276046pt;}
.y28{bottom:163.854985pt;}
.y9f{bottom:177.275719pt;}
.y51{bottom:177.275873pt;}
.y7c{bottom:179.214199pt;}
.yc3{bottom:180.671225pt;}
.y27{bottom:183.249999pt;}
.y50{bottom:196.670892pt;}
.y9e{bottom:196.670909pt;}
.y7b{bottom:198.609372pt;}
.yc2{bottom:200.066079pt;}
.y26{bottom:202.645025pt;}
.y9d{bottom:216.065760pt;}
.y4f{bottom:216.065919pt;}
.y7a{bottom:218.004225pt;}
.yc1{bottom:219.460932pt;}
.y25{bottom:222.040039pt;}
.y4e{bottom:235.460932pt;}
.y9c{bottom:235.460940pt;}
.y79{bottom:237.399412pt;}
.yc0{bottom:238.856120pt;}
.y24{bottom:241.435060pt;}
.y9b{bottom:254.855799pt;}
.y4d{bottom:254.855953pt;}
.y78{bottom:256.794265pt;}
.ybf{bottom:258.251300pt;}
.y23{bottom:260.830079pt;}
.y4c{bottom:274.250972pt;}
.y77{bottom:276.189452pt;}
.ybe{bottom:277.646159pt;}
.y22{bottom:280.225092pt;}
.y9a{bottom:293.645839pt;}
.y4b{bottom:293.645999pt;}
.y76{bottom:295.584307pt;}
.ybd{bottom:297.041012pt;}
.y21{bottom:299.620119pt;}
.y4a{bottom:313.041012pt;}
.y75{bottom:314.979495pt;}
.y20{bottom:319.015132pt;}
.ybc{bottom:323.306963pt;}
.y99{bottom:332.435879pt;}
.y49{bottom:332.436039pt;}
.y74{bottom:334.374346pt;}
.y1f{bottom:338.410159pt;}
.y48{bottom:351.831052pt;}
.y73{bottom:353.769526pt;}
.y1e{bottom:357.805172pt;}
.ybb{bottom:367.787105pt;}
.y98{bottom:371.225905pt;}
.y72{bottom:373.164385pt;}
.y1d{bottom:377.200199pt;}
.y47{bottom:378.097003pt;}
.yba{bottom:387.182293pt;}
.y97{bottom:390.621092pt;}
.y71{bottom:392.559572pt;}
.y1c{bottom:396.595212pt;}
.yb9{bottom:406.577473pt;}
.y96{bottom:410.015945pt;}
.y70{bottom:411.954425pt;}
.y1b{bottom:415.990239pt;}
.y46{bottom:422.577305pt;}
.yb8{bottom:425.972332pt;}
.y95{bottom:429.411132pt;}
.y6f{bottom:431.349606pt;}
.y1a{bottom:435.385252pt;}
.y45{bottom:441.972332pt;}
.yb7{bottom:445.367185pt;}
.y94{bottom:448.805985pt;}
.y6e{bottom:450.744465pt;}
.y19{bottom:454.780274pt;}
.y44{bottom:461.367345pt;}
.yb6{bottom:464.762372pt;}
.y93{bottom:468.201172pt;}
.y6d{bottom:470.139652pt;}
.y18{bottom:474.175293pt;}
.y43{bottom:480.762372pt;}
.yb5{bottom:484.157553pt;}
.y92{bottom:487.596025pt;}
.y6c{bottom:489.534505pt;}
.y17{bottom:493.570313pt;}
.y42{bottom:500.157385pt;}
.yb4{bottom:503.552412pt;}
.y91{bottom:506.991212pt;}
.y6b{bottom:508.929692pt;}
.y16{bottom:512.965332pt;}
.y41{bottom:519.552412pt;}
.yb3{bottom:522.947265pt;}
.y90{bottom:526.386065pt;}
.y6a{bottom:528.324545pt;}
.y15{bottom:532.360345pt;}
.y40{bottom:538.947433pt;}
.y8f{bottom:545.781252pt;}
.y69{bottom:547.719733pt;}
.y14{bottom:551.755372pt;}
.y3f{bottom:558.342452pt;}
.yb2{bottom:558.342456pt;}
.y8e{bottom:565.176105pt;}
.y68{bottom:567.114593pt;}
.y13{bottom:571.150385pt;}
.y3e{bottom:577.737465pt;}
.yd4{bottom:577.737625pt;}
.yb1{bottom:577.737644pt;}
.y8d{bottom:584.571292pt;}
.y67{bottom:586.509772pt;}
.y12{bottom:590.545406pt;}
.yd3{bottom:597.132159pt;}
.yb0{bottom:597.132488pt;}
.y3d{bottom:597.132492pt;}
.y8c{bottom:603.966145pt;}
.y66{bottom:605.904620pt;}
.y11{bottom:609.940425pt;}
.yd2{bottom:616.527342pt;}
.yaf{bottom:616.527347pt;}
.y3c{bottom:616.527505pt;}
.y8b{bottom:623.361332pt;}
.y65{bottom:625.299799pt;}
.y10{bottom:629.335452pt;}
.yd1{bottom:635.922526pt;}
.y3b{bottom:635.922532pt;}
.yae{bottom:635.922535pt;}
.y8a{bottom:642.756185pt;}
.y64{bottom:644.694665pt;}
.yf{bottom:648.730465pt;}
.y3a{bottom:655.317545pt;}
.yd0{bottom:655.317705pt;}
.yad{bottom:655.317710pt;}
.y89{bottom:662.151372pt;}
.y63{bottom:664.089839pt;}
.ye{bottom:668.125492pt;}
.y39{bottom:674.712559pt;}
.yac{bottom:674.712566pt;}
.ycf{bottom:674.712892pt;}
.y88{bottom:681.546233pt;}
.y62{bottom:683.484705pt;}
.yd{bottom:687.520513pt;}
.yce{bottom:694.107420pt;}
.yab{bottom:694.107425pt;}
.y38{bottom:694.107585pt;}
.y87{bottom:700.941412pt;}
.y61{bottom:702.879879pt;}
.yc{bottom:706.915532pt;}
.y37{bottom:713.502599pt;}
.y86{bottom:720.336265pt;}
.y60{bottom:722.274745pt;}
.yb{bottom:726.310545pt;}
.y36{bottom:732.897625pt;}
.yaa{bottom:732.897784pt;}
.ycd{bottom:732.897785pt;}
.y5f{bottom:741.669919pt;}
.ya{bottom:745.705572pt;}
.y85{bottom:746.602217pt;}
.ycc{bottom:752.292319pt;}
.ya9{bottom:752.292643pt;}
.y35{bottom:752.292646pt;}
.y5e{bottom:761.064773pt;}
.y9{bottom:765.100585pt;}
.ya8{bottom:771.687495pt;}
.ycb{bottom:771.687505pt;}
.y34{bottom:771.687665pt;}
.y5d{bottom:780.459953pt;}
.y8{bottom:784.495612pt;}
.y33{bottom:791.082679pt;}
.ya7{bottom:791.082682pt;}
.y5c{bottom:799.854812pt;}
.y7{bottom:803.890625pt;}
.y32{bottom:810.477705pt;}
.ya6{bottom:810.477862pt;}
.y84{bottom:810.477865pt;}
.y5b{bottom:819.250000pt;}
.y6{bottom:823.285644pt;}
.y31{bottom:829.872721pt;}
.yca{bottom:829.873058pt;}
.y5a{bottom:838.644857pt;}
.y5{bottom:842.680664pt;}
.ya5{bottom:849.267579pt;}
.y83{bottom:849.267581pt;}
.y30{bottom:849.267741pt;}
.y59{bottom:858.040037pt;}
.y2f{bottom:868.662760pt;}
.ya4{bottom:868.662764pt;}
.y4{bottom:868.946615pt;}
.y58{bottom:877.434896pt;}
.y2e{bottom:888.057780pt;}
.y82{bottom:888.057943pt;}
.yc9{bottom:888.057949pt;}
.y57{bottom:896.830076pt;}
.yc8{bottom:907.452476pt;}
.y2d{bottom:907.452800pt;}
.y3{bottom:915.989582pt;}
.y56{bottom:916.224935pt;}
.y81{bottom:926.847660pt;}
.y2c{bottom:926.847819pt;}
.y55{bottom:942.490884pt;}
.y2b{bottom:946.242839pt;}
.y1{bottom:960.000000pt;}
.h7{height:42.710938pt;}
.h2{height:42.739584pt;}
.h6{height:42.768216pt;}
.h5{height:42.768230pt;}
.h4{height:54.395831pt;}
.h3{height:62.166669pt;}
.h1{height:96.000000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.000000pt;}
.x3{left:120.000000pt;}
.x2{left:144.000000pt;}
.x4{left:168.000000pt;}
.x5{left:216.000000pt;}
.x6{left:240.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; }
  