
    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_ada460b22bf44b512c2d1a81.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_c86d84c2b3af913c5a86f28e.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_7ccde679f51108285cd73ec5.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_132a922538ff05f897225818.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.925781;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_1f79c38df6ee6d1c4f14f314.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.732000;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_9999a1b6537a246d42d2e5cf.woff2')format("woff");}.ff6{font-family:ff6;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;}
.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;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.923432px;}
.ls0{letter-spacing:1.458000px;}
.ls2{letter-spacing:1.476000px;}
.ls3{letter-spacing:899.819000px;}
.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;}
}
.ws9{word-spacing:-48.001464px;}
.ws1{word-spacing:-21.129671px;}
.ws2{word-spacing:-16.416000px;}
.ws3{word-spacing:-14.958000px;}
.wsa{word-spacing:-14.210587px;}
.ws8{word-spacing:-13.344407px;}
.ws7{word-spacing:-13.296406px;}
.ws0{word-spacing:-11.633594px;}
.ws6{word-spacing:0.000000px;}
.ws4{word-spacing:296.676000px;}
.ws5{word-spacing:371.196000px;}
._6{margin-left:-11.775894px;}
._1c{margin-left:-9.737485px;}
._3{margin-left:-8.537563px;}
._1b{margin-left:-6.403689px;}
._11{margin-left:-5.167111px;}
._5{margin-left:-4.163418px;}
._4{margin-left:-2.269775px;}
._0{margin-left:-1.007965px;}
._1{width:1.133960px;}
._2{width:2.603909px;}
._12{width:3.646318px;}
._7{width:5.090010px;}
._8{width:6.432196px;}
._b{width:7.446683px;}
._10{width:8.667725px;}
._e{width:10.087866px;}
._f{width:11.295056px;}
._19{width:12.500349px;}
._d{width:16.514711px;}
._c{width:17.887670px;}
._9{width:19.021891px;}
._a{width:21.071672px;}
._18{width:115.830040px;}
._13{width:329.184000px;}
._16{width:347.187204px;}
._15{width:360.679320px;}
._14{width:392.151204px;}
._1a{width:427.206535px;}
._17{width:474.984000px;}
.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;}
.y7b{bottom:4.528541px;}
.y7a{bottom:22.487530px;}
.y79{bottom:40.440657px;}
.y27{bottom:46.734370px;}
.y78{bottom:58.393778px;}
.y26{bottom:59.015622px;}
.y25{bottom:71.302734px;}
.y77{bottom:76.352766px;}
.y76{bottom:94.305887px;}
.y47{bottom:110.028000px;}
.y75{bottom:112.259014px;}
.y4f{bottom:112.880859px;}
.y74{bottom:130.212141px;}
.y22{bottom:130.617182px;}
.y4e{bottom:141.632812px;}
.y73{bottom:148.171125px;}
.y21{bottom:149.513667px;}
.y45{bottom:159.837891px;}
.y72{bottom:166.124248px;}
.y20{bottom:168.416010px;}
.y71{bottom:184.077375px;}
.y1f{bottom:187.312490px;}
.y49{bottom:189.813796px;}
.y44{bottom:190.488282px;}
.y4d{bottom:197.238266px;}
.y70{bottom:202.036350px;}
.y1e{bottom:206.214838px;}
.y4c{bottom:216.140615px;}
.y6f{bottom:219.989477px;}
.y48{bottom:220.470046px;}
.y6e{bottom:237.942605px;}
.y1d{bottom:238.617182px;}
.y56{bottom:240.657000px;}
.y43{bottom:246.099609px;}
.y4b{bottom:248.537105px;}
.y6d{bottom:255.901593px;}
.y1c{bottom:257.513667px;}
.y6c{bottom:273.854718px;}
.y1b{bottom:276.416006px;}
.y42{bottom:276.755859px;}
.y4a{bottom:280.939454px;}
.y6b{bottom:291.807840px;}
.y1a{bottom:295.312496px;}
.y6a{bottom:309.766828px;}
.y19{bottom:314.214839px;}
.y69{bottom:327.719954px;}
.y41{bottom:332.367182px;}
.y18{bottom:333.117161px;}
.y68{bottom:345.673074px;}
.y40{bottom:351.263672px;}
.y17{bottom:352.013651px;}
.y67{bottom:363.632062px;}
.y16{bottom:370.916000px;}
.y66{bottom:381.585181px;}
.y3f{bottom:381.919922px;}
.y15{bottom:389.812490px;}
.y55{bottom:397.951168px;}
.y65{bottom:399.538308px;}
.y14{bottom:408.714839px;}
.y54{bottom:414.749993px;}
.y64{bottom:417.497297px;}
.y13{bottom:427.617188px;}
.y53{bottom:431.548825px;}
.y63{bottom:435.450416px;}
.y3e{bottom:437.531239px;}
.y52{bottom:448.347657px;}
.y62{bottom:453.403544px;}
.y3d{bottom:456.427729px;}
.y12{bottom:458.273438px;}
.y51{bottom:465.152346px;}
.y61{bottom:471.362532px;}
.y50{bottom:486.451172px;}
.y3c{bottom:488.830073px;}
.y60{bottom:489.315648px;}
.y5f{bottom:507.268775px;}
.y3b{bottom:507.732417px;}
.y5e{bottom:525.227764px;}
.y3a{bottom:526.628901px;}
.y11{bottom:527.367185px;}
.y5d{bottom:543.180891px;}
.y10{bottom:544.171870px;}
.y39{bottom:559.031217px;}
.yf{bottom:560.970697px;}
.y5c{bottom:561.134016px;}
.y38{bottom:577.927707px;}
.y5b{bottom:579.087132px;}
.ye{bottom:582.269530px;}
.y37{bottom:596.830056px;}
.y5a{bottom:597.046121px;}
.yd{bottom:608.068359px;}
.y59{bottom:614.999248px;}
.y36{bottom:615.732405px;}
.y58{bottom:632.952375px;}
.y35{bottom:634.628895px;}
.yc{bottom:658.324238px;}
.y34{bottom:667.031244px;}
.y57{bottom:670.464093px;}
.yb{bottom:671.554702px;}
.ya{bottom:684.785166px;}
.y9{bottom:698.015630px;}
.y33{bottom:699.427707px;}
.y8{bottom:711.246095px;}
.y32{bottom:718.330056px;}
.y7{bottom:732.199218px;}
.y24{bottom:736.699215px;}
.y31{bottom:737.232405px;}
.y6{bottom:751.400391px;}
.y23{bottom:755.900391px;}
.y30{bottom:756.128895px;}
.y2f{bottom:775.031244px;}
.y5{bottom:793.710931px;}
.y2e{bottom:793.927719px;}
.y2d{bottom:812.830068px;}
.y4{bottom:831.269532px;}
.y2c{bottom:831.732417px;}
.y2b{bottom:850.628901px;}
.y2a{bottom:883.031239px;}
.y3{bottom:899.378907px;}
.y29{bottom:901.927730px;}
.y28{bottom:920.830079px;}
.y2{bottom:939.462894px;}
.y1{bottom:955.212891px;}
.y46{bottom:974.730470px;}
.h8{height:26.244141px;}
.h5{height:27.557629px;}
.h9{height:28.048904px;}
.h1{height:30.617097px;}
.he{height:34.594805px;}
.h4{height:34.993255px;}
.hc{height:35.617086px;}
.h10{height:37.399182px;}
.h2{height:39.366211px;}
.ha{height:39.366271px;}
.h7{height:39.366319px;}
.hb{height:39.366343px;}
.h6{height:52.443023px;}
.h3{height:68.582368px;}
.hf{height:694.306500px;}
.hd{height:824.935500px;}
.h0{height:1020.000000px;}
.w1{width:544.254000px;}
.w0{width:700.500000px;}
.x0{left:0.000000px;}
.xc{left:11.584593px;}
.xd{left:45.000609px;}
.x3{left:78.662109px;}
.x8{left:83.162104px;}
.xa{left:86.537109px;}
.x5{left:94.412109px;}
.x4{left:95.537109px;}
.x9{left:123.662104px;}
.x6{left:158.308593px;}
.xb{left:192.726562px;}
.x1{left:205.335938px;}
.x7{left:215.912121px;}
.x2{left:288.351562px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.820828pt;}
.ls0{letter-spacing:1.296000pt;}
.ls2{letter-spacing:1.312000pt;}
.ls3{letter-spacing:799.839111pt;}
.ws9{word-spacing:-42.667968pt;}
.ws1{word-spacing:-18.781930pt;}
.ws2{word-spacing:-14.592000pt;}
.ws3{word-spacing:-13.296000pt;}
.wsa{word-spacing:-12.631633pt;}
.ws8{word-spacing:-11.861695pt;}
.ws7{word-spacing:-11.819027pt;}
.ws0{word-spacing:-10.340973pt;}
.ws6{word-spacing:0.000000pt;}
.ws4{word-spacing:263.712000pt;}
.ws5{word-spacing:329.952000pt;}
._6{margin-left:-10.467461pt;}
._1c{margin-left:-8.655543pt;}
._3{margin-left:-7.588945pt;}
._1b{margin-left:-5.692168pt;}
._11{margin-left:-4.592988pt;}
._5{margin-left:-3.700816pt;}
._4{margin-left:-2.017578pt;}
._0{margin-left:-0.895969pt;}
._1{width:1.007965pt;}
._2{width:2.314586pt;}
._12{width:3.241172pt;}
._7{width:4.524453pt;}
._8{width:5.717508pt;}
._b{width:6.619274pt;}
._10{width:7.704644pt;}
._e{width:8.966992pt;}
._f{width:10.040050pt;}
._19{width:11.111422pt;}
._d{width:14.679743pt;}
._c{width:15.900152pt;}
._9{width:16.908347pt;}
._a{width:18.730375pt;}
._18{width:102.960035pt;}
._13{width:292.608000pt;}
._16{width:308.610848pt;}
._15{width:320.603840pt;}
._14{width:348.578848pt;}
._1a{width:379.739142pt;}
._17{width:422.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;}
.y7b{bottom:4.025370pt;}
.y7a{bottom:19.988915pt;}
.y79{bottom:35.947251pt;}
.y27{bottom:41.541662pt;}
.y78{bottom:51.905580pt;}
.y26{bottom:52.458331pt;}
.y25{bottom:63.380208pt;}
.y77{bottom:67.869125pt;}
.y76{bottom:83.827455pt;}
.y47{bottom:97.802667pt;}
.y75{bottom:99.785790pt;}
.y4f{bottom:100.338541pt;}
.y74{bottom:115.744125pt;}
.y22{bottom:116.104161pt;}
.y4e{bottom:125.895833pt;}
.y73{bottom:131.707667pt;}
.y21{bottom:132.901037pt;}
.y45{bottom:142.078125pt;}
.y72{bottom:147.665998pt;}
.y20{bottom:149.703120pt;}
.y71{bottom:163.624333pt;}
.y1f{bottom:166.499991pt;}
.y49{bottom:168.723375pt;}
.y44{bottom:169.322917pt;}
.y4d{bottom:175.322903pt;}
.y70{bottom:179.587867pt;}
.y1e{bottom:183.302079pt;}
.y4c{bottom:192.124991pt;}
.y6f{bottom:195.546202pt;}
.y48{bottom:195.973375pt;}
.y6e{bottom:211.504537pt;}
.y1d{bottom:212.104161pt;}
.y56{bottom:213.917333pt;}
.y43{bottom:218.755208pt;}
.y4b{bottom:220.921871pt;}
.y6d{bottom:227.468083pt;}
.y1c{bottom:228.901037pt;}
.y6c{bottom:243.426416pt;}
.y1b{bottom:245.703116pt;}
.y42{bottom:246.005208pt;}
.y4a{bottom:249.723959pt;}
.y6b{bottom:259.384747pt;}
.y1a{bottom:262.499996pt;}
.y6a{bottom:275.348292pt;}
.y19{bottom:279.302079pt;}
.y69{bottom:291.306625pt;}
.y41{bottom:295.437495pt;}
.y18{bottom:296.104143pt;}
.y68{bottom:307.264955pt;}
.y40{bottom:312.234375pt;}
.y17{bottom:312.901023pt;}
.y67{bottom:323.228500pt;}
.y16{bottom:329.703111pt;}
.y66{bottom:339.186828pt;}
.y3f{bottom:339.484375pt;}
.y15{bottom:346.499991pt;}
.y55{bottom:353.734371pt;}
.y65{bottom:355.145163pt;}
.y14{bottom:363.302079pt;}
.y54{bottom:368.666660pt;}
.y64{bottom:371.108708pt;}
.y13{bottom:380.104167pt;}
.y53{bottom:383.598956pt;}
.y63{bottom:387.067037pt;}
.y3e{bottom:388.916657pt;}
.y52{bottom:398.531251pt;}
.y62{bottom:403.025372pt;}
.y3d{bottom:405.713537pt;}
.y12{bottom:407.354167pt;}
.y51{bottom:413.468752pt;}
.y61{bottom:418.988917pt;}
.y50{bottom:432.401041pt;}
.y3c{bottom:434.515620pt;}
.y60{bottom:434.947243pt;}
.y5f{bottom:450.905578pt;}
.y3b{bottom:451.317704pt;}
.y5e{bottom:466.869123pt;}
.y3a{bottom:468.114579pt;}
.y11{bottom:468.770831pt;}
.y5d{bottom:482.827459pt;}
.y10{bottom:483.708329pt;}
.y39{bottom:496.916637pt;}
.yf{bottom:498.640619pt;}
.y5c{bottom:498.785792pt;}
.y38{bottom:513.713517pt;}
.y5b{bottom:514.744118pt;}
.ye{bottom:517.572915pt;}
.y37{bottom:530.515605pt;}
.y5a{bottom:530.707663pt;}
.yd{bottom:540.505208pt;}
.y59{bottom:546.665998pt;}
.y36{bottom:547.317693pt;}
.y58{bottom:562.624333pt;}
.y35{bottom:564.114573pt;}
.yc{bottom:585.177101pt;}
.y34{bottom:592.916661pt;}
.y57{bottom:595.968083pt;}
.yb{bottom:596.937513pt;}
.ya{bottom:608.697926pt;}
.y9{bottom:620.458338pt;}
.y33{bottom:621.713517pt;}
.y8{bottom:632.218751pt;}
.y32{bottom:638.515605pt;}
.y7{bottom:650.843749pt;}
.y24{bottom:654.843747pt;}
.y31{bottom:655.317693pt;}
.y6{bottom:667.911459pt;}
.y23{bottom:671.911459pt;}
.y30{bottom:672.114573pt;}
.y2f{bottom:688.916661pt;}
.y5{bottom:705.520828pt;}
.y2e{bottom:705.713528pt;}
.y2d{bottom:722.515616pt;}
.y4{bottom:738.906251pt;}
.y2c{bottom:739.317704pt;}
.y2b{bottom:756.114579pt;}
.y2a{bottom:784.916657pt;}
.y3{bottom:799.447917pt;}
.y29{bottom:801.713537pt;}
.y28{bottom:818.515625pt;}
.y2{bottom:835.078128pt;}
.y1{bottom:849.078125pt;}
.y46{bottom:866.427084pt;}
.h8{height:23.328125pt;}
.h5{height:24.495670pt;}
.h9{height:24.932359pt;}
.h1{height:27.215197pt;}
.he{height:30.750938pt;}
.h4{height:31.105115pt;}
.hc{height:31.659632pt;}
.h10{height:33.243717pt;}
.h2{height:34.992188pt;}
.ha{height:34.992241pt;}
.h7{height:34.992283pt;}
.hb{height:34.992305pt;}
.h6{height:46.616020pt;}
.h3{height:60.962105pt;}
.hf{height:617.161333pt;}
.hd{height:733.276000pt;}
.h0{height:906.666667pt;}
.w1{width:483.781333pt;}
.w0{width:622.666667pt;}
.x0{left:0.000000pt;}
.xc{left:10.297416pt;}
.xd{left:40.000541pt;}
.x3{left:69.921875pt;}
.x8{left:73.921871pt;}
.xa{left:76.921875pt;}
.x5{left:83.921875pt;}
.x4{left:84.921875pt;}
.x9{left:109.921871pt;}
.x6{left:140.718749pt;}
.xb{left:171.312500pt;}
.x1{left:182.520833pt;}
.x7{left:191.921885pt;}
.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; }
  