
    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_0a15e32f491d96caadfb7433.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.912598;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_2e9c5336e59f955d5345a4e1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893066;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_91479a483e901fe97b0bd99d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_75843ba84cad657469f05c46.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_551df47fb92a2af4924a495d.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_68c5eeaf22fa6f1f4636474e.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c30dc1d4dd3cd9ac3fbd82ac.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.833008;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.500000px;}
.ws1{word-spacing:0.000000px;}
._4{margin-left:-8.952871px;}
._5{margin-left:-7.587224px;}
._2{margin-left:-5.667742px;}
._1{margin-left:-3.999632px;}
._3{margin-left:-2.069658px;}
._0{margin-left:-1.003904px;}
.fc1{color:rgb(17,85,204);}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.000002px;}
.y0{bottom:0.000000px;}
.y26{bottom:117.978889px;}
.y52{bottom:122.062310px;}
.y80{bottom:123.423338px;}
.yc6{bottom:127.242913px;}
.ye8{bottom:139.798093px;}
.y25{bottom:139.798275px;}
.ya9{bottom:140.062493px;}
.y51{bottom:143.881707px;}
.y7f{bottom:145.242927px;}
.yc5{bottom:149.062498px;}
.y24{bottom:161.617673px;}
.ye7{bottom:161.617678px;}
.ya8{bottom:161.881722px;}
.y50{bottom:165.701104px;}
.y7e{bottom:167.062516px;}
.yc4{bottom:170.881348px;}
.ye6{bottom:183.436528px;}
.y23{bottom:183.437070px;}
.ya7{bottom:183.700928px;}
.y4f{bottom:187.520503px;}
.y7d{bottom:188.881722px;}
.yc3{bottom:192.700933px;}
.y22{bottom:205.256471px;}
.ya6{bottom:205.520517px;}
.y4e{bottom:209.339908px;}
.y7c{bottom:210.700928px;}
.yc2{bottom:214.520503px;}
.ye5{bottom:223.256098px;}
.y21{bottom:227.075869px;}
.ya5{bottom:227.340083px;}
.y4d{bottom:231.159484px;}
.y7b{bottom:232.520517px;}
.yc1{bottom:236.340088px;}
.ye4{bottom:245.075683px;}
.y20{bottom:248.895265px;}
.ya4{bottom:249.159312px;}
.y4c{bottom:252.978883px;}
.y7a{bottom:254.340100px;}
.yc0{bottom:258.159298px;}
.y1f{bottom:270.714663px;}
.ya3{bottom:270.978517px;}
.y4b{bottom:274.798273px;}
.y79{bottom:276.159308px;}
.ybf{bottom:279.978508px;}
.ye3{bottom:284.895268px;}
.y1e{bottom:292.534059px;}
.ya2{bottom:292.798085px;}
.y4a{bottom:296.617678px;}
.y78{bottom:297.978516px;}
.ye2{bottom:306.714838px;}
.y1d{bottom:314.353457px;}
.ya1{bottom:314.617671px;}
.y77{bottom:319.798094px;}
.ye1{bottom:328.533688px;}
.y1c{bottom:336.172853px;}
.ya0{bottom:336.436879px;}
.y49{bottom:336.437071px;}
.y76{bottom:341.617679px;}
.y1b{bottom:357.992158px;}
.y9f{bottom:358.256096px;}
.y48{bottom:358.256468px;}
.y75{bottom:363.436887px;}
.ybe{bottom:363.436888px;}
.ye0{bottom:368.353273px;}
.y9e{bottom:380.075682px;}
.y47{bottom:380.075866px;}
.ybd{bottom:385.256098px;}
.y74{bottom:385.256104px;}
.ydf{bottom:390.172858px;}
.y1a{bottom:397.811637px;}
.y9d{bottom:401.895258px;}
.y46{bottom:401.895263px;}
.y73{bottom:407.075683px;}
.yde{bottom:411.991693px;}
.y45{bottom:423.714650px;}
.y9c{bottom:423.714838px;}
.ybc{bottom:428.895268px;}
.y44{bottom:445.534047px;}
.y19{bottom:446.631034px;}
.y72{bottom:446.895245px;}
.ybb{bottom:450.714478px;}
.ydd{bottom:451.811278px;}
.y9b{bottom:463.533687px;}
.y43{bottom:467.353467px;}
.y18{bottom:468.450431px;}
.y71{bottom:468.714473px;}
.yba{bottom:472.533688px;}
.ydc{bottom:473.630863px;}
.y42{bottom:489.172865px;}
.y17{bottom:490.269785px;}
.y70{bottom:490.533691px;}
.yb9{bottom:494.353273px;}
.ydb{bottom:495.450433px;}
.y41{bottom:510.992262px;}
.y16{bottom:512.089182px;}
.y6f{bottom:512.353257px;}
.y9a{bottom:512.353268px;}
.yb8{bottom:516.172858px;}
.y40{bottom:532.811660px;}
.y15{bottom:533.908579px;}
.y99{bottom:534.172857px;}
.y6e{bottom:534.172868px;}
.yda{bottom:535.270018px;}
.y3f{bottom:554.631057px;}
.y14{bottom:555.727978px;}
.y98{bottom:555.992062px;}
.yb7{bottom:555.992068px;}
.y6d{bottom:555.992075px;}
.yd9{bottom:557.088868px;}
.y3e{bottom:576.450451px;}
.y13{bottom:577.547383px;}
.y97{bottom:577.811271px;}
.yb6{bottom:577.811278px;}
.y6c{bottom:577.811281px;}
.yd8{bottom:596.908453px;}
.y3d{bottom:598.269848px;}
.y12{bottom:599.366787px;}
.y96{bottom:599.630856px;}
.yb5{bottom:599.630863px;}
.y6b{bottom:599.630870px;}
.yd7{bottom:618.728023px;}
.y3c{bottom:620.089236px;}
.y11{bottom:621.186188px;}
.y95{bottom:621.450434px;}
.y6a{bottom:621.450458px;}
.y3b{bottom:641.908634px;}
.y10{bottom:643.005567px;}
.y94{bottom:643.269650px;}
.yb4{bottom:643.269658px;}
.y69{bottom:643.269661px;}
.yd6{bottom:658.546873px;}
.y3a{bottom:663.728030px;}
.yf{bottom:664.824963px;}
.y93{bottom:665.088867px;}
.yb3{bottom:665.088868px;}
.y68{bottom:665.088870px;}
.yd5{bottom:680.366458px;}
.y39{bottom:685.547427px;}
.ye{bottom:686.644318px;}
.y92{bottom:686.908444px;}
.y67{bottom:686.908446px;}
.yb2{bottom:686.908453px;}
.yd4{bottom:702.186028px;}
.y38{bottom:707.366824px;}
.yd{bottom:708.463715px;}
.y66{bottom:708.728024px;}
.yd3{bottom:724.005613px;}
.y37{bottom:729.186223px;}
.yc{bottom:730.283112px;}
.y65{bottom:730.547240px;}
.y91{bottom:730.547248px;}
.yb{bottom:752.102508px;}
.y90{bottom:752.366458px;}
.y64{bottom:752.366637px;}
.yd2{bottom:763.825197px;}
.y36{bottom:769.005621px;}
.ya{bottom:773.921908px;}
.y8f{bottom:774.186028px;}
.y63{bottom:774.186034px;}
.y35{bottom:790.825018px;}
.y62{bottom:796.005433px;}
.yb1{bottom:796.005613px;}
.y8e{bottom:796.005624px;}
.yd1{bottom:812.644048px;}
.y34{bottom:812.644404px;}
.y9{bottom:813.741297px;}
.y61{bottom:817.824823px;}
.y8d{bottom:817.824832px;}
.yd0{bottom:834.463618px;}
.y33{bottom:834.463802px;}
.y8c{bottom:839.644049px;}
.y60{bottom:839.644227px;}
.y32{bottom:856.283199px;}
.ycf{bottom:856.283203px;}
.y5f{bottom:861.463624px;}
.y8b{bottom:861.463634px;}
.y8{bottom:862.560693px;}
.yce{bottom:878.102053px;}
.y31{bottom:878.102600px;}
.yb0{bottom:879.463618px;}
.y5e{bottom:883.283023px;}
.y8a{bottom:883.283211px;}
.y7{bottom:884.380093px;}
.yf0{bottom:890.921638px;}
.ycd{bottom:899.921638px;}
.y30{bottom:899.921998px;}
.yaf{bottom:901.283203px;}
.y5d{bottom:905.102413px;}
.y89{bottom:905.102423px;}
.yef{bottom:912.741208px;}
.ycc{bottom:921.741208px;}
.y2f{bottom:921.741394px;}
.yae{bottom:923.102413px;}
.y6{bottom:924.199497px;}
.y88{bottom:926.921638px;}
.y5c{bottom:926.921817px;}
.y2e{bottom:943.560792px;}
.ycb{bottom:943.560793px;}
.yad{bottom:944.921638px;}
.y5b{bottom:948.741214px;}
.yee{bottom:952.560793px;}
.y2d{bottom:965.380188px;}
.yca{bottom:965.380378px;}
.yac{bottom:966.741208px;}
.y87{bottom:966.741214px;}
.y5a{bottom:970.560613px;}
.y5{bottom:973.018889px;}
.yed{bottom:974.380378px;}
.y2c{bottom:987.199586px;}
.yc9{bottom:987.199951px;}
.y86{bottom:988.560793px;}
.y4{bottom:994.838310px;}
.yec{bottom:996.199219px;}
.y2b{bottom:1009.018982px;}
.y59{bottom:1010.380002px;}
.y85{bottom:1010.380005px;}
.yc8{bottom:1027.018797px;}
.y2a{bottom:1030.838287px;}
.y84{bottom:1032.199219px;}
.y58{bottom:1032.199399px;}
.y3{bottom:1034.657684px;}
.yeb{bottom:1036.018798px;}
.y83{bottom:1054.018797px;}
.y57{bottom:1054.018798px;}
.yea{bottom:1057.838379px;}
.y29{bottom:1070.657775px;}
.y56{bottom:1075.838196px;}
.yab{bottom:1075.838379px;}
.y82{bottom:1075.838382px;}
.ye9{bottom:1079.657227px;}
.y2{bottom:1083.477090px;}
.yc7{bottom:1097.657227px;}
.y55{bottom:1097.657591px;}
.yaa{bottom:1097.657593px;}
.y1{bottom:1105.296489px;}
.y81{bottom:1119.476807px;}
.y54{bottom:1119.476987px;}
.y28{bottom:1119.477170px;}
.y53{bottom:1141.296387px;}
.y27{bottom:1141.296570px;}
.h1{height:45.987306px;}
.h2{height:59.167970px;}
.h0{height:1263.000000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x1{left:106.299213px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-14.666667pt;}
.ws1{word-spacing:0.000000pt;}
._4{margin-left:-7.958107pt;}
._5{margin-left:-6.744199pt;}
._2{margin-left:-5.037993pt;}
._1{margin-left:-3.555228pt;}
._3{margin-left:-1.839696pt;}
._0{margin-left:-0.892359pt;}
.fs0{font-size:58.666668pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:104.870124pt;}
.y52{bottom:108.499831pt;}
.y80{bottom:109.709634pt;}
.yc6{bottom:113.104812pt;}
.ye8{bottom:124.264972pt;}
.y25{bottom:124.265134pt;}
.ya9{bottom:124.499994pt;}
.y51{bottom:127.894851pt;}
.y7f{bottom:129.104824pt;}
.yc5{bottom:132.499999pt;}
.y24{bottom:143.660154pt;}
.ye7{bottom:143.660159pt;}
.ya8{bottom:143.894864pt;}
.y50{bottom:147.289870pt;}
.y7e{bottom:148.500014pt;}
.yc4{bottom:151.894532pt;}
.ye6{bottom:163.054692pt;}
.y23{bottom:163.055174pt;}
.ya7{bottom:163.289714pt;}
.y4f{bottom:166.684892pt;}
.y7d{bottom:167.894864pt;}
.yc3{bottom:171.289719pt;}
.y22{bottom:182.450197pt;}
.ya6{bottom:182.684904pt;}
.y4e{bottom:186.079919pt;}
.y7c{bottom:187.289714pt;}
.yc2{bottom:190.684892pt;}
.ye5{bottom:198.449865pt;}
.y21{bottom:201.845217pt;}
.ya5{bottom:202.080074pt;}
.y4d{bottom:205.475097pt;}
.y7b{bottom:206.684904pt;}
.yc1{bottom:210.080079pt;}
.ye4{bottom:217.845052pt;}
.y20{bottom:221.240236pt;}
.ya4{bottom:221.474944pt;}
.y4c{bottom:224.870119pt;}
.y7a{bottom:226.080089pt;}
.yc0{bottom:229.474932pt;}
.y1f{bottom:240.635256pt;}
.ya3{bottom:240.869793pt;}
.y4b{bottom:244.265132pt;}
.y79{bottom:245.474940pt;}
.ybf{bottom:248.869785pt;}
.ye3{bottom:253.240239pt;}
.y1e{bottom:260.030275pt;}
.ya2{bottom:260.264965pt;}
.y4a{bottom:263.660159pt;}
.y78{bottom:264.869792pt;}
.ye2{bottom:272.635412pt;}
.y1d{bottom:279.425295pt;}
.ya1{bottom:279.660152pt;}
.y77{bottom:284.264972pt;}
.ye1{bottom:292.029945pt;}
.y1c{bottom:298.820314pt;}
.ya0{bottom:299.055004pt;}
.y49{bottom:299.055174pt;}
.y76{bottom:303.660159pt;}
.y1b{bottom:318.215252pt;}
.y9f{bottom:318.449863pt;}
.y48{bottom:318.450194pt;}
.y75{bottom:323.055011pt;}
.ybe{bottom:323.055012pt;}
.ye0{bottom:327.425132pt;}
.y9e{bottom:337.845051pt;}
.y47{bottom:337.845214pt;}
.ybd{bottom:342.449865pt;}
.y74{bottom:342.449870pt;}
.ydf{bottom:346.820319pt;}
.y1a{bottom:353.610344pt;}
.y9d{bottom:357.240230pt;}
.y46{bottom:357.240234pt;}
.y73{bottom:361.845052pt;}
.yde{bottom:366.214839pt;}
.y45{bottom:376.635244pt;}
.y9c{bottom:376.635412pt;}
.ybc{bottom:381.240239pt;}
.y44{bottom:396.030264pt;}
.y19{bottom:397.005363pt;}
.y72{bottom:397.240217pt;}
.ybb{bottom:400.635092pt;}
.ydd{bottom:401.610025pt;}
.y9b{bottom:412.029944pt;}
.y43{bottom:415.425304pt;}
.y18{bottom:416.400383pt;}
.y71{bottom:416.635087pt;}
.yba{bottom:420.029945pt;}
.ydc{bottom:421.005212pt;}
.y42{bottom:434.820324pt;}
.y17{bottom:435.795364pt;}
.y70{bottom:436.029947pt;}
.yb9{bottom:439.425132pt;}
.ydb{bottom:440.400385pt;}
.y41{bottom:454.215344pt;}
.y16{bottom:455.190384pt;}
.y6f{bottom:455.425117pt;}
.y9a{bottom:455.425127pt;}
.yb8{bottom:458.820319pt;}
.y40{bottom:473.610364pt;}
.y15{bottom:474.585403pt;}
.y99{bottom:474.820317pt;}
.y6e{bottom:474.820327pt;}
.yda{bottom:475.795572pt;}
.y3f{bottom:493.005384pt;}
.y14{bottom:493.980425pt;}
.y98{bottom:494.215166pt;}
.yb7{bottom:494.215172pt;}
.y6d{bottom:494.215177pt;}
.yd9{bottom:495.190105pt;}
.y3e{bottom:512.400401pt;}
.y13{bottom:513.375452pt;}
.y97{bottom:513.610018pt;}
.yb6{bottom:513.610025pt;}
.y6c{bottom:513.610027pt;}
.yd8{bottom:530.585292pt;}
.y3d{bottom:531.795420pt;}
.y12{bottom:532.770477pt;}
.y96{bottom:533.005205pt;}
.yb5{bottom:533.005212pt;}
.y6b{bottom:533.005217pt;}
.yd7{bottom:549.980465pt;}
.y3c{bottom:551.190432pt;}
.y11{bottom:552.165500pt;}
.y95{bottom:552.400385pt;}
.y6a{bottom:552.400407pt;}
.y3b{bottom:570.585452pt;}
.y10{bottom:571.560504pt;}
.y94{bottom:571.795244pt;}
.yb4{bottom:571.795252pt;}
.y69{bottom:571.795254pt;}
.yd6{bottom:585.374999pt;}
.y3a{bottom:589.980471pt;}
.yf{bottom:590.955523pt;}
.y93{bottom:591.190104pt;}
.yb3{bottom:591.190105pt;}
.y68{bottom:591.190106pt;}
.yd5{bottom:604.770185pt;}
.y39{bottom:609.375491pt;}
.ye{bottom:610.350505pt;}
.y92{bottom:610.585283pt;}
.y67{bottom:610.585285pt;}
.yb2{bottom:610.585292pt;}
.yd4{bottom:624.165359pt;}
.y38{bottom:628.770510pt;}
.yd{bottom:629.745524pt;}
.y66{bottom:629.980465pt;}
.yd3{bottom:643.560545pt;}
.y37{bottom:648.165532pt;}
.yc{bottom:649.140544pt;}
.y65{bottom:649.375324pt;}
.y91{bottom:649.375332pt;}
.yb{bottom:668.535563pt;}
.y90{bottom:668.770185pt;}
.y64{bottom:668.770344pt;}
.yd2{bottom:678.955731pt;}
.y36{bottom:683.560552pt;}
.ya{bottom:687.930585pt;}
.y8f{bottom:688.165359pt;}
.y63{bottom:688.165363pt;}
.y35{bottom:702.955572pt;}
.y62{bottom:707.560385pt;}
.yb1{bottom:707.560545pt;}
.y8e{bottom:707.560554pt;}
.yd1{bottom:722.350265pt;}
.y34{bottom:722.350582pt;}
.y9{bottom:723.325598pt;}
.y61{bottom:726.955399pt;}
.y8d{bottom:726.955406pt;}
.yd0{bottom:741.745439pt;}
.y33{bottom:741.745602pt;}
.y8c{bottom:746.350265pt;}
.y60{bottom:746.350424pt;}
.y32{bottom:761.140622pt;}
.ycf{bottom:761.140625pt;}
.y5f{bottom:765.745443pt;}
.y8b{bottom:765.745452pt;}
.y8{bottom:766.720616pt;}
.yce{bottom:780.535159pt;}
.y31{bottom:780.535645pt;}
.yb0{bottom:781.745439pt;}
.y5e{bottom:785.140465pt;}
.y8a{bottom:785.140632pt;}
.y7{bottom:786.115638pt;}
.yf0{bottom:791.930345pt;}
.ycd{bottom:799.930345pt;}
.y30{bottom:799.930665pt;}
.yaf{bottom:801.140625pt;}
.y5d{bottom:804.535479pt;}
.y89{bottom:804.535487pt;}
.yef{bottom:811.325519pt;}
.ycc{bottom:819.325519pt;}
.y2f{bottom:819.325684pt;}
.yae{bottom:820.535479pt;}
.y6{bottom:821.510664pt;}
.y88{bottom:823.930345pt;}
.y5c{bottom:823.930504pt;}
.y2e{bottom:838.720704pt;}
.ycb{bottom:838.720705pt;}
.yad{bottom:839.930345pt;}
.y5b{bottom:843.325523pt;}
.yee{bottom:846.720705pt;}
.y2d{bottom:858.115723pt;}
.yca{bottom:858.115892pt;}
.yac{bottom:859.325519pt;}
.y87{bottom:859.325523pt;}
.y5a{bottom:862.720545pt;}
.y5{bottom:864.905679pt;}
.yed{bottom:866.115892pt;}
.y2c{bottom:877.510743pt;}
.yc9{bottom:877.511068pt;}
.y86{bottom:878.720705pt;}
.y4{bottom:884.300720pt;}
.yec{bottom:885.510417pt;}
.y2b{bottom:896.905762pt;}
.y59{bottom:898.115558pt;}
.y85{bottom:898.115560pt;}
.yc8{bottom:912.905598pt;}
.y2a{bottom:916.300700pt;}
.y84{bottom:917.510417pt;}
.y58{bottom:917.510577pt;}
.y3{bottom:919.695719pt;}
.yeb{bottom:920.905599pt;}
.y83{bottom:936.905597pt;}
.y57{bottom:936.905599pt;}
.yea{bottom:940.300781pt;}
.y29{bottom:951.695800pt;}
.y56{bottom:956.300619pt;}
.yab{bottom:956.300781pt;}
.y82{bottom:956.300784pt;}
.ye9{bottom:959.695313pt;}
.y2{bottom:963.090746pt;}
.yc7{bottom:975.695313pt;}
.y55{bottom:975.695636pt;}
.yaa{bottom:975.695639pt;}
.y1{bottom:982.485768pt;}
.y81{bottom:995.090495pt;}
.y54{bottom:995.090655pt;}
.y28{bottom:995.090818pt;}
.y53{bottom:1014.485677pt;}
.y27{bottom:1014.485840pt;}
.h1{height:40.877605pt;}
.h2{height:52.593751pt;}
.h0{height:1122.666667pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x1{left:94.488189pt;}
}




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