
    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_6cdb3ab8cd96955ff603c994.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.207031;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_7fcc5b4dd0305902e52431c0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.256000;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_e2b5b90ec9daf66aff9fa34e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.237029;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_2f68fd48e8d2e0f1b84c245a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.966309;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_009c67f28b8e04374322777d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.024902;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.250136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250136,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-7.919997px;}
.v2{vertical-align:-5.039998px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:5.274624px;}
.ls1{letter-spacing:8.037622px;}
.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;}
}
.wsb{word-spacing:-203.759918px;}
.ws4{word-spacing:-196.199922px;}
.wsc{word-spacing:-125.999950px;}
.ws3{word-spacing:-107.999957px;}
.ws6{word-spacing:-68.669973px;}
.wsa{word-spacing:-66.653253px;}
.ws0{word-spacing:-58.859976px;}
.ws9{word-spacing:-50.039980px;}
.ws2{word-spacing:-49.049980px;}
.ws5{word-spacing:-24.186824px;}
.ws7{word-spacing:-18.301043px;}
.ws8{word-spacing:-17.675813px;}
.ws1{word-spacing:0.000000px;}
._2a{margin-left:-134.180247px;}
._2c{margin-left:-102.297260px;}
._29{margin-left:-84.313617px;}
._16{margin-left:-82.939467px;}
._15{margin-left:-81.516927px;}
._23{margin-left:-80.454028px;}
._18{margin-left:-79.319722px;}
._22{margin-left:-73.080475px;}
._13{margin-left:-72.076075px;}
._4{margin-left:-69.754256px;}
._26{margin-left:-68.190633px;}
._3{margin-left:-62.844203px;}
._2b{margin-left:-61.280592px;}
._12{margin-left:-59.938050px;}
._1e{margin-left:-57.676279px;}
._19{margin-left:-55.810040px;}
._24{margin-left:-53.491281px;}
._f{margin-left:-51.249220px;}
._1a{margin-left:-50.053354px;}
._9{margin-left:-48.272633px;}
._b{margin-left:-47.100167px;}
._14{margin-left:-46.078686px;}
._27{margin-left:-44.331930px;}
._25{margin-left:-43.235407px;}
._1{margin-left:-40.908008px;}
._1f{margin-left:-39.767204px;}
._11{margin-left:-38.539731px;}
._1b{margin-left:-36.703641px;}
._1c{margin-left:-35.644612px;}
._7{margin-left:-34.104586px;}
._8{margin-left:-32.956367px;}
._21{margin-left:-31.343873px;}
._20{margin-left:-29.184990px;}
._6{margin-left:-28.114639px;}
._a{margin-left:-26.211154px;}
._e{margin-left:-24.173090px;}
._c{margin-left:-22.938651px;}
._17{margin-left:-19.830250px;}
._28{margin-left:-10.909102px;}
._10{margin-left:-4.431436px;}
._2{margin-left:-3.381911px;}
._1d{margin-left:-2.271239px;}
._5{margin-left:-1.069524px;}
._0{width:1.479059px;}
._d{width:38.030781px;}
.fc1{color:transparent;}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:89.999964px;}
.fs4{font-size:102.239959px;}
.fs0{font-size:107.999957px;}
.fs3{font-size:120.239952px;}
.fs8{font-size:125.999950px;}
.fs2{font-size:131.759947px;}
.fs1{font-size:138.239945px;}
.fs7{font-size:179.999928px;}
.fsa{font-size:203.759918px;}
.fs9{font-size:239.759904px;}
.fs6{font-size:359.999856px;}
.y0{bottom:0.000000px;}
.y46{bottom:74.220327px;}
.y47{bottom:75.480327px;}
.y6{bottom:83.760323px;}
.y2c{bottom:96.180454px;}
.y31{bottom:101.400721px;}
.y5{bottom:115.440311px;}
.y34{bottom:116.160311px;}
.y45{bottom:117.420310px;}
.y38{bottom:127.140306px;}
.y2b{bottom:133.980438px;}
.y30{bottom:139.200706px;}
.y1a{bottom:143.520705px;}
.y33{bottom:148.560298px;}
.y4{bottom:152.160296px;}
.y37{bottom:159.540293px;}
.y2a{bottom:171.960288px;}
.y1d{bottom:174.480287px;}
.y2f{bottom:177.180556px;}
.y19{bottom:181.500554px;}
.y36{bottom:191.940280px;}
.yf{bottom:195.360279px;}
.y1c{bottom:201.480276px;}
.y29{bottom:207.960274px;}
.y2e{bottom:214.980541px;}
.y18{bottom:219.300539px;}
.y3e{bottom:219.660089px;}
.y35{bottom:224.340267px;}
.y1b{bottom:228.480266px;}
.y3{bottom:233.520264px;}
.y28{bottom:234.960263px;}
.y44{bottom:235.860263px;}
.y3d{bottom:252.240166px;}
.y2d{bottom:252.960391px;}
.y17{bottom:257.280389px;}
.y27{bottom:261.960252px;}
.y41{bottom:289.500385px;}
.y26{bottom:290.760376px;}
.ye{bottom:291.300240px;}
.y16{bottom:295.080374px;}
.y3c{bottom:317.040140px;}
.y25{bottom:328.560361px;}
.y15{bottom:332.880359px;}
.y20{bottom:337.200087px;}
.y40{bottom:361.500284px;}
.y24{bottom:366.540210px;}
.y14{bottom:370.860209px;}
.y3b{bottom:381.840114px;}
.y1f{bottom:391.200201px;}
.y13{bottom:408.660194px;}
.y3a{bottom:414.420191px;}
.y3f{bottom:433.500184px;}
.y39{bottom:446.820178px;}
.y32{bottom:450.420177px;}
.y23{bottom:462.120172px;}
.yd{bottom:469.680079px;}
.y1e{bottom:487.140162px;}
.y12{bottom:504.420155px;}
.y22{bottom:516.120151px;}
.yc{bottom:534.480053px;}
.y43{bottom:550.680137px;}
.yb{bottom:567.060130px;}
.y9{bottom:569.040129px;}
.y8{bottom:601.440116px;}
.y42{bottom:603.600116px;}
.y21{bottom:631.680104px;}
.y7{bottom:633.840103px;}
.y11{bottom:664.080091px;}
.y2{bottom:711.240073px;}
.y10{bottom:745.080059px;}
.y1{bottom:754.080055px;}
.ya{bottom:788.460042px;}
.h8{height:82.054655px;}
.h7{height:90.043909px;}
.h5{height:97.025721px;}
.h10{height:102.491959px;}
.h6{height:102.923959px;}
.h12{height:103.113240px;}
.h1{height:108.052691px;}
.h4{height:114.107714px;}
.h3{height:125.040190px;}
.hc{height:126.061473px;}
.h2{height:131.189708px;}
.h11{height:166.748840px;}
.hd{height:170.819932px;}
.hb{height:171.539931px;}
.ha{height:180.087819px;}
.he{height:180.088359px;}
.hf{height:227.532149px;}
.h9{height:360.175637px;}
.h0{height:892.500000px;}
.w0{width:1263.000000px;}
.x0{left:0.000000px;}
.x8{left:132.465697px;}
.x1{left:149.565690px;}
.xf{left:158.206437px;}
.xa{left:166.126434px;}
.x1e{left:191.686423px;}
.x10{left:199.966420px;}
.x19{left:219.586412px;}
.xb{left:232.906070px;}
.x1c{left:250.545633px;}
.x15{left:251.626399px;}
.x1b{left:257.926397px;}
.xd{left:277.186389px;}
.x11{left:299.686380px;}
.xc{left:309.405807px;}
.x13{left:316.606808px;}
.x12{left:322.906371px;}
.x1a{left:335.866684px;}
.x17{left:349.726360px;}
.x18{left:354.945711px;}
.x14{left:374.566734px;}
.x16{left:375.826350px;}
.x21{left:397.426341px;}
.x20{left:399.406340px;}
.xe{left:401.386339px;}
.x22{left:417.946333px;}
.x2{left:447.286321px;}
.x24{left:488.146305px;}
.x23{left:489.406304px;}
.x7{left:498.226301px;}
.x26{left:545.206282px;}
.x25{left:546.466281px;}
.x27{left:567.706273px;}
.x1d{left:581.926639px;}
.x3{left:620.446252px;}
.x6{left:631.066248px;}
.x5{left:663.106235px;}
.x4{left:719.806212px;}
.x9{left:842.926163px;}
.x1f{left:922.126131px;}
@media print{
.v1{vertical-align:-7.039997pt;}
.v2{vertical-align:-4.479998pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:4.688555pt;}
.ls1{letter-spacing:7.144553pt;}
.wsb{word-spacing:-181.119928pt;}
.ws4{word-spacing:-174.399930pt;}
.wsc{word-spacing:-111.999955pt;}
.ws3{word-spacing:-95.999962pt;}
.ws6{word-spacing:-61.039976pt;}
.wsa{word-spacing:-59.247336pt;}
.ws0{word-spacing:-52.319979pt;}
.ws9{word-spacing:-44.479982pt;}
.ws2{word-spacing:-43.599983pt;}
.ws5{word-spacing:-21.499399pt;}
.ws7{word-spacing:-16.267593pt;}
.ws8{word-spacing:-15.711834pt;}
.ws1{word-spacing:0.000000pt;}
._2a{margin-left:-119.271331pt;}
._2c{margin-left:-90.930897pt;}
._29{margin-left:-74.945437pt;}
._16{margin-left:-73.723971pt;}
._15{margin-left:-72.459491pt;}
._23{margin-left:-71.514691pt;}
._18{margin-left:-70.506420pt;}
._22{margin-left:-64.960422pt;}
._13{margin-left:-64.067622pt;}
._4{margin-left:-62.003783pt;}
._26{margin-left:-60.613896pt;}
._3{margin-left:-55.861514pt;}
._2b{margin-left:-54.471637pt;}
._12{margin-left:-53.278267pt;}
._1e{margin-left:-51.267803pt;}
._19{margin-left:-49.608924pt;}
._24{margin-left:-47.547805pt;}
._f{margin-left:-45.554862pt;}
._1a{margin-left:-44.491870pt;}
._9{margin-left:-42.909007pt;}
._b{margin-left:-41.866815pt;}
._14{margin-left:-40.958832pt;}
._27{margin-left:-39.406160pt;}
._25{margin-left:-38.431473pt;}
._1{margin-left:-36.362673pt;}
._1f{margin-left:-35.348626pt;}
._11{margin-left:-34.257538pt;}
._1b{margin-left:-32.625459pt;}
._1c{margin-left:-31.684099pt;}
._7{margin-left:-30.315188pt;}
._8{margin-left:-29.294548pt;}
._21{margin-left:-27.861221pt;}
._20{margin-left:-25.942214pt;}
._6{margin-left:-24.990790pt;}
._a{margin-left:-23.298804pt;}
._e{margin-left:-21.487191pt;}
._c{margin-left:-20.389912pt;}
._17{margin-left:-17.626889pt;}
._28{margin-left:-9.696980pt;}
._10{margin-left:-3.939054pt;}
._2{margin-left:-3.006143pt;}
._1d{margin-left:-2.018879pt;}
._5{margin-left:-0.950688pt;}
._0{width:1.314719pt;}
._d{width:33.805138pt;}
.fs5{font-size:79.999968pt;}
.fs4{font-size:90.879964pt;}
.fs0{font-size:95.999962pt;}
.fs3{font-size:106.879957pt;}
.fs8{font-size:111.999955pt;}
.fs2{font-size:117.119953pt;}
.fs1{font-size:122.879951pt;}
.fs7{font-size:159.999936pt;}
.fsa{font-size:181.119928pt;}
.fs9{font-size:213.119915pt;}
.fs6{font-size:319.999872pt;}
.y0{bottom:0.000000pt;}
.y46{bottom:65.973624pt;}
.y47{bottom:67.093624pt;}
.y6{bottom:74.453621pt;}
.y2c{bottom:85.493736pt;}
.y31{bottom:90.133975pt;}
.y5{bottom:102.613610pt;}
.y34{bottom:103.253609pt;}
.y45{bottom:104.373609pt;}
.y38{bottom:113.013605pt;}
.y2b{bottom:119.093723pt;}
.y30{bottom:123.733961pt;}
.y1a{bottom:127.573960pt;}
.y33{bottom:132.053598pt;}
.y4{bottom:135.253597pt;}
.y37{bottom:141.813594pt;}
.y2a{bottom:152.853590pt;}
.y1d{bottom:155.093589pt;}
.y2f{bottom:157.493828pt;}
.y19{bottom:161.333826pt;}
.y36{bottom:170.613582pt;}
.yf{bottom:173.653581pt;}
.y1c{bottom:179.093579pt;}
.y29{bottom:184.853577pt;}
.y2e{bottom:191.093814pt;}
.y18{bottom:194.933813pt;}
.y3e{bottom:195.253413pt;}
.y35{bottom:199.413571pt;}
.y1b{bottom:203.093569pt;}
.y3{bottom:207.573568pt;}
.y28{bottom:208.853567pt;}
.y44{bottom:209.653567pt;}
.y3d{bottom:224.213481pt;}
.y2d{bottom:224.853681pt;}
.y17{bottom:228.693679pt;}
.y27{bottom:232.853558pt;}
.y41{bottom:257.333676pt;}
.y26{bottom:258.453667pt;}
.ye{bottom:258.933547pt;}
.y16{bottom:262.293666pt;}
.y3c{bottom:281.813458pt;}
.y25{bottom:292.053654pt;}
.y15{bottom:295.893652pt;}
.y20{bottom:299.733411pt;}
.y40{bottom:321.333586pt;}
.y24{bottom:325.813520pt;}
.y14{bottom:329.653519pt;}
.y3b{bottom:339.413435pt;}
.y1f{bottom:347.733512pt;}
.y13{bottom:363.253505pt;}
.y3a{bottom:368.373503pt;}
.y3f{bottom:385.333497pt;}
.y39{bottom:397.173492pt;}
.y32{bottom:400.373491pt;}
.y23{bottom:410.773486pt;}
.yd{bottom:417.493404pt;}
.y1e{bottom:433.013477pt;}
.y12{bottom:448.373471pt;}
.y22{bottom:458.773467pt;}
.yc{bottom:475.093381pt;}
.y43{bottom:489.493455pt;}
.yb{bottom:504.053449pt;}
.y9{bottom:505.813448pt;}
.y8{bottom:534.613437pt;}
.y42{bottom:536.533436pt;}
.y21{bottom:561.493426pt;}
.y7{bottom:563.413425pt;}
.y11{bottom:590.293415pt;}
.y2{bottom:632.213398pt;}
.y10{bottom:662.293386pt;}
.y1{bottom:670.293383pt;}
.ya{bottom:700.853370pt;}
.h8{height:72.937471pt;}
.h7{height:80.039030pt;}
.h5{height:86.245086pt;}
.h10{height:91.103964pt;}
.h6{height:91.487963pt;}
.h12{height:91.656213pt;}
.h1{height:96.046837pt;}
.h4{height:101.429079pt;}
.h3{height:111.146836pt;}
.hc{height:112.054643pt;}
.h2{height:116.613073pt;}
.h11{height:148.221191pt;}
.hd{height:151.839939pt;}
.hb{height:152.479939pt;}
.ha{height:160.078061pt;}
.he{height:160.078541pt;}
.hf{height:202.250799pt;}
.h9{height:320.156122pt;}
.h0{height:793.333333pt;}
.w0{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x8{left:117.747286pt;}
.x1{left:132.947280pt;}
.xf{left:140.627944pt;}
.xa{left:147.667941pt;}
.x1e{left:170.387932pt;}
.x10{left:177.747929pt;}
.x19{left:195.187922pt;}
.xb{left:207.027618pt;}
.x1c{left:222.707229pt;}
.x15{left:223.667911pt;}
.x1b{left:229.267908pt;}
.xd{left:246.387901pt;}
.x11{left:266.387893pt;}
.xc{left:275.027384pt;}
.x13{left:281.428273pt;}
.x12{left:287.027885pt;}
.x1a{left:298.548164pt;}
.x17{left:310.867876pt;}
.x18{left:315.507299pt;}
.x14{left:332.948208pt;}
.x16{left:334.067866pt;}
.x21{left:353.267859pt;}
.x20{left:355.027858pt;}
.xe{left:356.787857pt;}
.x22{left:371.507851pt;}
.x2{left:397.587841pt;}
.x24{left:433.907826pt;}
.x23{left:435.027826pt;}
.x7{left:442.867823pt;}
.x26{left:484.627806pt;}
.x25{left:485.747806pt;}
.x27{left:504.627798pt;}
.x1d{left:517.268124pt;}
.x3{left:551.507779pt;}
.x6{left:560.947776pt;}
.x5{left:589.427764pt;}
.x4{left:639.827744pt;}
.x9{left:749.267700pt;}
.x1f{left:819.667672pt;}
}




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