
    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_30fa491f37038b0a9bb5f212.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_b6c0c79e75f1469e2c75ab62.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.952148;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_03fb9863ddc2af054792755d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.960000;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_8c6f74a60a99dc8cd9dae0be.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.933105;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;}
.ls1{letter-spacing:1.476000px;}
.ls2{letter-spacing:2.015512px;}
.ls3{letter-spacing:857.068984px;}
.ls4{letter-spacing:857.069000px;}
.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;}
}
.ws1{word-spacing:-27.632329px;}
.ws2{word-spacing:-21.129671px;}
.ws3{word-spacing:-14.958000px;}
.ws7{word-spacing:-14.210587px;}
.ws6{word-spacing:-13.296406px;}
.ws0{word-spacing:-11.633594px;}
.ws5{word-spacing:0.000000px;}
.ws4{word-spacing:280.512000px;}
._4{margin-left:-10.365487px;}
._8{margin-left:-8.086746px;}
._b{margin-left:-6.096428px;}
._7{margin-left:-3.374798px;}
._3{margin-left:-2.111440px;}
._0{margin-left:-1.007965px;}
._1{width:1.133960px;}
._2{width:2.603909px;}
._9{width:3.611874px;}
._a{width:5.328426px;}
._c{width:6.701440px;}
._15{width:8.106192px;}
._16{width:9.163563px;}
._13{width:10.186831px;}
._14{width:11.636508px;}
._17{width:13.762777px;}
._6{width:17.102576px;}
._d{width:18.121169px;}
._5{width:19.672324px;}
._11{width:27.054000px;}
._10{width:29.094288px;}
._12{width:30.672079px;}
._19{width:115.685464px;}
._18{width:233.820458px;}
._f{width:339.984000px;}
._e{width:353.484000px;}
.fc3{color:rgb(15,39,83);}
.fc1{color:rgb(27,138,174);}
.fc5{color:rgb(60,60,60);}
.fc4{color:rgb(83,83,83);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs4{font-size:37.801758px;}
.fs0{font-size:41.998536px;}
.fs3{font-size:48.001464px;}
.fs7{font-size:51.301758px;}
.fs1{font-size:54.000000px;}
.fs5{font-size:70.198242px;}
.fs2{font-size:91.801758px;}
.y0{bottom:0.000000px;}
.y21{bottom:46.734370px;}
.y20{bottom:59.015622px;}
.y1f{bottom:71.302734px;}
.y2c{bottom:92.003892px;}
.y2b{bottom:110.906241px;}
.y54{bottom:127.300782px;}
.y32{bottom:152.900389px;}
.y53{bottom:157.957032px;}
.y31{bottom:169.699221px;}
.y1d{bottom:171.093750px;}
.y1c{bottom:189.996066px;}
.y30{bottom:190.998047px;}
.y1b{bottom:208.898415px;}
.y52{bottom:213.568359px;}
.y1a{bottom:227.794905px;}
.y51{bottom:244.218750px;}
.y19{bottom:246.697254px;}
.y18{bottom:279.093744px;}
.y17{bottom:297.996083px;}
.y50{bottom:299.830068px;}
.y16{bottom:316.898432px;}
.y4f{bottom:318.732417px;}
.y15{bottom:335.794922px;}
.y4e{bottom:337.628907px;}
.y14{bottom:354.697250px;}
.y4d{bottom:356.531217px;}
.y13{bottom:373.593740px;}
.y4c{bottom:375.427707px;}
.y58{bottom:392.043843px;}
.y12{bottom:392.496089px;}
.y4b{bottom:394.330056px;}
.y11{bottom:411.398438px;}
.y57{bottom:422.700093px;}
.y4a{bottom:426.732405px;}
.y10{bottom:442.054688px;}
.y49{bottom:445.628895px;}
.y2a{bottom:450.474603px;}
.y48{bottom:464.531244px;}
.y29{bottom:469.371072px;}
.y47{bottom:483.427734px;}
.y28{bottom:488.273421px;}
.y56{bottom:488.421000px;}
.y65{bottom:492.949216px;}
.y46{bottom:502.330068px;}
.y27{bottom:507.169911px;}
.y64{bottom:510.902343px;}
.yf{bottom:511.148435px;}
.y26{bottom:526.072260px;}
.ye{bottom:527.953120px;}
.y63{bottom:528.861329px;}
.y45{bottom:534.732417px;}
.yd{bottom:544.751947px;}
.y25{bottom:544.974594px;}
.y62{bottom:546.814454px;}
.y44{bottom:553.628826px;}
.y24{bottom:563.871084px;}
.y61{bottom:564.767579px;}
.yc{bottom:566.050780px;}
.y43{bottom:572.531175px;}
.y60{bottom:582.726558px;}
.y42{bottom:591.427665px;}
.yb{bottom:591.849609px;}
.y5f{bottom:600.679685px;}
.y2f{bottom:605.865233px;}
.y41{bottom:610.330014px;}
.y5e{bottom:618.632813px;}
.y2e{bottom:622.669924px;}
.y40{bottom:629.232363px;}
.ya{bottom:642.105473px;}
.y2d{bottom:643.968750px;}
.y3f{bottom:648.128853px;}
.y9{bottom:655.335938px;}
.y5d{bottom:656.144532px;}
.y3e{bottom:667.031202px;}
.y8{bottom:676.289062px;}
.y1e{bottom:680.789062px;}
.y3d{bottom:685.927692px;}
.y3c{bottom:704.830041px;}
.y5c{bottom:709.845704px;}
.y7{bottom:718.605480px;}
.y3b{bottom:737.232390px;}
.y5b{bottom:738.591796px;}
.y3a{bottom:756.128880px;}
.y6{bottom:756.158206px;}
.y39{bottom:775.031229px;}
.y5{bottom:793.710931px;}
.y38{bottom:793.927719px;}
.y5a{bottom:794.203125px;}
.y37{bottom:812.830068px;}
.y59{bottom:824.853516px;}
.y4{bottom:831.269532px;}
.y36{bottom:831.732417px;}
.y35{bottom:850.628891px;}
.y34{bottom:869.531239px;}
.y3{bottom:899.378907px;}
.y23{bottom:901.927730px;}
.y22{bottom:920.830079px;}
.y2{bottom:939.462894px;}
.y1{bottom:955.212891px;}
.y33{bottom:974.730456px;}
.y55{bottom:974.730470px;}
.h8{height:26.244141px;}
.h5{height:27.557629px;}
.h9{height:28.048904px;}
.h1{height:30.617097px;}
.hc{height:34.946378px;}
.h4{height:34.993255px;}
.hf{height:35.617086px;}
.hd{height:35.617140px;}
.h11{height:37.399182px;}
.h2{height:39.366211px;}
.ha{height:39.366271px;}
.h7{height:39.366277px;}
.hb{height:39.366295px;}
.he{height:39.366535px;}
.h6{height:52.443023px;}
.h3{height:68.582368px;}
.h10{height:446.542500px;}
.h0{height:1020.000000px;}
.w1{width:544.254000px;}
.w0{width:700.500000px;}
.x0{left:0.000000px;}
.x3{left:78.662109px;}
.x7{left:86.537109px;}
.x9{left:90.246093px;}
.x5{left:94.412109px;}
.x4{left:95.537109px;}
.xa{left:123.662109px;}
.x8{left:143.789062px;}
.x6{left:177.662109px;}
.x1{left:205.335938px;}
.x2{left:288.351562px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:1.312000pt;}
.ls2{letter-spacing:1.791567pt;}
.ls3{letter-spacing:761.839097pt;}
.ls4{letter-spacing:761.839111pt;}
.ws1{word-spacing:-24.562070pt;}
.ws2{word-spacing:-18.781930pt;}
.ws3{word-spacing:-13.296000pt;}
.ws7{word-spacing:-12.631633pt;}
.ws6{word-spacing:-11.819027pt;}
.ws0{word-spacing:-10.340973pt;}
.ws5{word-spacing:0.000000pt;}
.ws4{word-spacing:249.344000pt;}
._4{margin-left:-9.213766pt;}
._8{margin-left:-7.188219pt;}
._b{margin-left:-5.419047pt;}
._7{margin-left:-2.999821pt;}
._3{margin-left:-1.876836pt;}
._0{margin-left:-0.895969pt;}
._1{width:1.007965pt;}
._2{width:2.314586pt;}
._9{width:3.210555pt;}
._a{width:4.736379pt;}
._c{width:5.956836pt;}
._15{width:7.205504pt;}
._16{width:8.145389pt;}
._13{width:9.054961pt;}
._14{width:10.343563pt;}
._17{width:12.233580pt;}
._6{width:15.202290pt;}
._d{width:16.107706pt;}
._5{width:17.486510pt;}
._11{width:24.048000pt;}
._10{width:25.861590pt;}
._12{width:27.264070pt;}
._19{width:102.831524pt;}
._18{width:207.840407pt;}
._f{width:302.208000pt;}
._e{width:314.208000pt;}
.fs6{font-size:32.000000pt;}
.fs4{font-size:33.601563pt;}
.fs0{font-size:37.332032pt;}
.fs3{font-size:42.667968pt;}
.fs7{font-size:45.601563pt;}
.fs1{font-size:48.000000pt;}
.fs5{font-size:62.398437pt;}
.fs2{font-size:81.601563pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:41.541662pt;}
.y20{bottom:52.458331pt;}
.y1f{bottom:63.380208pt;}
.y2c{bottom:81.781237pt;}
.y2b{bottom:98.583325pt;}
.y54{bottom:113.156251pt;}
.y32{bottom:135.911456pt;}
.y53{bottom:140.406251pt;}
.y31{bottom:150.843752pt;}
.y1d{bottom:152.083333pt;}
.y1c{bottom:168.885392pt;}
.y30{bottom:169.776041pt;}
.y1b{bottom:185.687480pt;}
.y52{bottom:189.838541pt;}
.y1a{bottom:202.484360pt;}
.y51{bottom:217.083333pt;}
.y19{bottom:219.286448pt;}
.y18{bottom:248.083328pt;}
.y17{bottom:264.885407pt;}
.y50{bottom:266.515616pt;}
.y16{bottom:281.687495pt;}
.y4f{bottom:283.317704pt;}
.y15{bottom:298.484375pt;}
.y4e{bottom:300.114584pt;}
.y14{bottom:315.286444pt;}
.y4d{bottom:316.916637pt;}
.y13{bottom:332.083324pt;}
.y4c{bottom:333.713517pt;}
.y58{bottom:348.483416pt;}
.y12{bottom:348.885412pt;}
.y4b{bottom:350.515605pt;}
.y11{bottom:365.687500pt;}
.y57{bottom:375.733416pt;}
.y4a{bottom:379.317693pt;}
.y10{bottom:392.937500pt;}
.y49{bottom:396.114573pt;}
.y2a{bottom:400.421869pt;}
.y48{bottom:412.916661pt;}
.y29{bottom:417.218731pt;}
.y47{bottom:429.713541pt;}
.y28{bottom:434.020819pt;}
.y56{bottom:434.152000pt;}
.y65{bottom:438.177081pt;}
.y46{bottom:446.515616pt;}
.y27{bottom:450.817699pt;}
.y64{bottom:454.135416pt;}
.yf{bottom:454.354165pt;}
.y26{bottom:467.619787pt;}
.ye{bottom:469.291663pt;}
.y63{bottom:470.098959pt;}
.y45{bottom:475.317704pt;}
.yd{bottom:484.223953pt;}
.y25{bottom:484.421861pt;}
.y62{bottom:486.057292pt;}
.y44{bottom:492.114512pt;}
.y24{bottom:501.218741pt;}
.y61{bottom:502.015625pt;}
.yc{bottom:503.156249pt;}
.y43{bottom:508.916600pt;}
.y60{bottom:517.979163pt;}
.y42{bottom:525.713480pt;}
.yb{bottom:526.088541pt;}
.y5f{bottom:533.937498pt;}
.y2f{bottom:538.546874pt;}
.y41{bottom:542.515568pt;}
.y5e{bottom:549.895833pt;}
.y2e{bottom:553.484377pt;}
.y40{bottom:559.317656pt;}
.ya{bottom:570.760421pt;}
.y2d{bottom:572.416667pt;}
.y3f{bottom:576.114536pt;}
.y9{bottom:582.520833pt;}
.y5d{bottom:583.239584pt;}
.y3e{bottom:592.916624pt;}
.y8{bottom:601.145833pt;}
.y1e{bottom:605.145833pt;}
.y3d{bottom:609.713504pt;}
.y3c{bottom:626.515592pt;}
.y5c{bottom:630.973959pt;}
.y7{bottom:638.760427pt;}
.y3b{bottom:655.317680pt;}
.y5b{bottom:656.526041pt;}
.y3a{bottom:672.114560pt;}
.y6{bottom:672.140627pt;}
.y39{bottom:688.916648pt;}
.y5{bottom:705.520828pt;}
.y38{bottom:705.713528pt;}
.y5a{bottom:705.958333pt;}
.y37{bottom:722.515616pt;}
.y59{bottom:733.203125pt;}
.y4{bottom:738.906251pt;}
.y36{bottom:739.317704pt;}
.y35{bottom:756.114569pt;}
.y34{bottom:772.916657pt;}
.y3{bottom:799.447917pt;}
.y23{bottom:801.713537pt;}
.y22{bottom:818.515625pt;}
.y2{bottom:835.078128pt;}
.y1{bottom:849.078125pt;}
.y33{bottom:866.427072pt;}
.y55{bottom:866.427084pt;}
.h8{height:23.328125pt;}
.h5{height:24.495670pt;}
.h9{height:24.932359pt;}
.h1{height:27.215197pt;}
.hc{height:31.063447pt;}
.h4{height:31.105115pt;}
.hf{height:31.659632pt;}
.hd{height:31.659680pt;}
.h11{height:33.243717pt;}
.h2{height:34.992188pt;}
.ha{height:34.992241pt;}
.h7{height:34.992246pt;}
.hb{height:34.992262pt;}
.he{height:34.992475pt;}
.h6{height:46.616020pt;}
.h3{height:60.962105pt;}
.h10{height:396.926667pt;}
.h0{height:906.666667pt;}
.w1{width:483.781333pt;}
.w0{width:622.666667pt;}
.x0{left:0.000000pt;}
.x3{left:69.921875pt;}
.x7{left:76.921875pt;}
.x9{left:80.218749pt;}
.x5{left:83.921875pt;}
.x4{left:84.921875pt;}
.xa{left:109.921874pt;}
.x8{left:127.812500pt;}
.x6{left:157.921875pt;}
.x1{left:182.520833pt;}
.x2{left:256.312500pt;}
}




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