
    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_d8ad34ade7f16d0ea403a2a4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_090ece6ddf27296f621e69c2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.863770;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_8c0ae39c405b0a84de16c12e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.878418;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_a12926c207225281a226b5d2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_e6ebdec26a13a056b0a43919.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.088379;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;}
.m3{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249827,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-16.271993px;}
.ws0{word-spacing:-14.970234px;}
.ws1{word-spacing:-9.437756px;}
.ws3{word-spacing:0.000000px;}
._1{margin-left:-1.051277px;}
._0{width:1.177918px;}
._9{width:2.684926px;}
._4{width:3.721200px;}
._d{width:5.130601px;}
._c{width:6.559187px;}
._b{width:7.920411px;}
._10{width:9.049987px;}
._f{width:10.197783px;}
._3{width:12.053408px;}
._2{width:13.058481px;}
._8{width:14.292347px;}
._7{width:17.112017px;}
._e{width:18.801155px;}
._12{width:20.284070px;}
._14{width:22.052657px;}
._11{width:23.462222px;}
._5{width:24.535318px;}
._6{width:25.754023px;}
._a{width:26.839111px;}
._13{width:28.625426px;}
._17{width:29.715270px;}
._15{width:35.820137px;}
._16{width:36.910971px;}
._18{width:848.231661px;}
.fc2{color:rgb(17,17,17);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(89,89,89);}
.fs3{font-size:2.879999px;}
.fs4{font-size:20.879992px;}
.fs0{font-size:41.759983px;}
.fs2{font-size:48.239981px;}
.fs6{font-size:59.759976px;}
.fs1{font-size:66.239974px;}
.fs5{font-size:71.999971px;}
.fs7{font-size:84.239966px;}
.y0{bottom:0.000000px;}
.y5{bottom:57.720277px;}
.y2e{bottom:57.900277px;}
.y4{bottom:77.880269px;}
.y2d{bottom:78.060269px;}
.y60{bottom:129.900248px;}
.y4d{bottom:143.400243px;}
.y29{bottom:156.899937px;}
.y5f{bottom:161.399935px;}
.y71{bottom:166.079934px;}
.y4c{bottom:175.079930px;}
.y28{bottom:188.579925px;}
.y5e{bottom:193.079923px;}
.y70{bottom:197.759921px;}
.y4b{bottom:206.759917px;}
.y27{bottom:220.259912px;}
.y5d{bottom:224.759910px;}
.y4a{bottom:238.439905px;}
.y5c{bottom:256.439897px;}
.y26{bottom:260.939896px;}
.y49{bottom:270.119892px;}
.y68{bottom:279.119888px;}
.y5b{bottom:288.119885px;}
.y25{bottom:292.619883px;}
.y48{bottom:301.799879px;}
.y67{bottom:310.799876px;}
.y5a{bottom:319.799872px;}
.y24{bottom:324.299870px;}
.y47{bottom:333.299867px;}
.y66{bottom:342.299863px;}
.y59{bottom:351.299859px;}
.y23{bottom:355.799858px;}
.y46{bottom:364.979854px;}
.y65{bottom:373.979850px;}
.y58{bottom:382.979847px;}
.y22{bottom:387.479845px;}
.y45{bottom:396.659841px;}
.y64{bottom:405.659838px;}
.y57{bottom:414.659834px;}
.y21{bottom:419.159832px;}
.y44{bottom:437.339825px;}
.y6f{bottom:446.339821px;}
.y20{bottom:450.839820px;}
.y56{bottom:455.339818px;}
.y43{bottom:469.019812px;}
.y6e{bottom:478.019809px;}
.y55{bottom:487.019805px;}
.y1f{bottom:490.979804px;}
.y42{bottom:500.699800px;}
.y6d{bottom:509.699796px;}
.y54{bottom:518.699793px;}
.y1e{bottom:531.119788px;}
.y41{bottom:532.379787px;}
.y6c{bottom:541.379783px;}
.y53{bottom:550.379780px;}
.y63{bottom:563.879774px;}
.y1d{bottom:571.439771px;}
.y40{bottom:572.879771px;}
.y52{bottom:581.879767px;}
.y1c{bottom:596.639761px;}
.y62{bottom:604.559758px;}
.y3f{bottom:613.559755px;}
.y1b{bottom:622.019751px;}
.y3e{bottom:645.239742px;}
.y1a{bottom:647.219741px;}
.y3d{bottom:676.919729px;}
.y19{bottom:678.179729px;}
.y18{bottom:707.699717px;}
.y3c{bottom:708.599717px;}
.y3b{bottom:740.279704px;}
.y51{bottom:749.279700px;}
.y12{bottom:751.259699px;}
.y3a{bottom:771.959691px;}
.y50{bottom:780.959688px;}
.y11{bottom:791.219684px;}
.y39{bottom:803.459679px;}
.y4f{bottom:812.459675px;}
.y10{bottom:831.359667px;}
.y6b{bottom:835.139666px;}
.y17{bottom:836.219666px;}
.y38{bottom:844.139662px;}
.y16{bottom:851.699659px;}
.y6a{bottom:866.819653px;}
.y15{bottom:870.059652px;}
.yf{bottom:871.319651px;}
.y37{bottom:875.819650px;}
.y14{bottom:889.139644px;}
.y72{bottom:907.319637px;}
.y36{bottom:907.499637px;}
.y13{bottom:909.479636px;}
.ye{bottom:911.459635px;}
.y35{bottom:939.179624px;}
.yd{bottom:951.419619px;}
.y34{bottom:970.859612px;}
.yc{bottom:991.559603px;}
.y33{bottom:1002.539599px;}
.y61{bottom:1011.539595px;}
.yb{bottom:1026.479589px;}
.y32{bottom:1034.039586px;}
.y4e{bottom:1043.039583px;}
.ya{bottom:1054.739578px;}
.y69{bottom:1065.719574px;}
.y31{bottom:1074.719570px;}
.y9{bottom:1082.999567px;}
.y30{bottom:1106.399557px;}
.y8{bottom:1111.259555px;}
.y7{bottom:1120.979552px;}
.y6{bottom:1134.839546px;}
.y2f{bottom:1138.079545px;}
.y3{bottom:1168.499533px;}
.y2c{bottom:1168.679533px;}
.y2{bottom:1186.859525px;}
.y2b{bottom:1187.039525px;}
.y1{bottom:1199.819520px;}
.y2a{bottom:1199.999520px;}
.h4{height:3.003749px;}
.h6{height:14.987103px;}
.h5{height:29.240145px;}
.h1{height:29.974207px;}
.h9{height:34.625377px;}
.hb{height:41.843655px;}
.h7{height:43.554358px;}
.h2{height:47.545293px;}
.h3{height:50.312792px;}
.ha{height:51.679667px;}
.hc{height:57.750446px;}
.hd{height:62.648412px;}
.h8{height:75.093720px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x3{left:108.179957px;}
.xa{left:127.799949px;}
.x5{left:180.899928px;}
.x6{left:261.899895px;}
.x7{left:412.199835px;}
.x1{left:427.859829px;}
.x8{left:431.279827px;}
.x9{left:433.979826px;}
.x2{left:486.540400px;}
.x4{left:776.879689px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws2{word-spacing:-14.463994pt;}
.ws0{word-spacing:-13.306875pt;}
.ws1{word-spacing:-8.389117pt;}
.ws3{word-spacing:0.000000pt;}
._1{margin-left:-0.934469pt;}
._0{width:1.047038pt;}
._9{width:2.386601pt;}
._4{width:3.307733pt;}
._d{width:4.560534pt;}
._c{width:5.830389pt;}
._b{width:7.040365pt;}
._10{width:8.044433pt;}
._f{width:9.064696pt;}
._3{width:10.714140pt;}
._2{width:11.607539pt;}
._8{width:12.704309pt;}
._7{width:15.210682pt;}
._e{width:16.712138pt;}
._12{width:18.030285pt;}
._14{width:19.602362pt;}
._11{width:20.855309pt;}
._5{width:21.809172pt;}
._6{width:22.892465pt;}
._a{width:23.856987pt;}
._13{width:25.444823pt;}
._17{width:26.413573pt;}
._15{width:31.840121pt;}
._16{width:32.809752pt;}
._18{width:753.983698pt;}
.fs3{font-size:2.559999pt;}
.fs4{font-size:18.559993pt;}
.fs0{font-size:37.119985pt;}
.fs2{font-size:42.879983pt;}
.fs6{font-size:53.119979pt;}
.fs1{font-size:58.879976pt;}
.fs5{font-size:63.999974pt;}
.fs7{font-size:74.879970pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:51.306913pt;}
.y2e{bottom:51.466913pt;}
.y4{bottom:69.226906pt;}
.y2d{bottom:69.386906pt;}
.y60{bottom:115.466887pt;}
.y4d{bottom:127.466882pt;}
.y29{bottom:139.466611pt;}
.y5f{bottom:143.466609pt;}
.y71{bottom:147.626608pt;}
.y4c{bottom:155.626604pt;}
.y28{bottom:167.626600pt;}
.y5e{bottom:171.626598pt;}
.y70{bottom:175.786596pt;}
.y4b{bottom:183.786593pt;}
.y27{bottom:195.786588pt;}
.y5d{bottom:199.786587pt;}
.y4a{bottom:211.946582pt;}
.y5c{bottom:227.946575pt;}
.y26{bottom:231.946574pt;}
.y49{bottom:240.106571pt;}
.y68{bottom:248.106567pt;}
.y5b{bottom:256.106564pt;}
.y25{bottom:260.106563pt;}
.y48{bottom:268.266559pt;}
.y67{bottom:276.266556pt;}
.y5a{bottom:284.266553pt;}
.y24{bottom:288.266551pt;}
.y47{bottom:296.266548pt;}
.y66{bottom:304.266545pt;}
.y59{bottom:312.266542pt;}
.y23{bottom:316.266540pt;}
.y46{bottom:324.426537pt;}
.y65{bottom:332.426534pt;}
.y58{bottom:340.426530pt;}
.y22{bottom:344.426529pt;}
.y45{bottom:352.586526pt;}
.y64{bottom:360.586522pt;}
.y57{bottom:368.586519pt;}
.y21{bottom:372.586518pt;}
.y44{bottom:388.746511pt;}
.y6f{bottom:396.746508pt;}
.y20{bottom:400.746506pt;}
.y56{bottom:404.746505pt;}
.y43{bottom:416.906500pt;}
.y6e{bottom:424.906497pt;}
.y55{bottom:432.906494pt;}
.y1f{bottom:436.426492pt;}
.y42{bottom:445.066489pt;}
.y6d{bottom:453.066485pt;}
.y54{bottom:461.066482pt;}
.y1e{bottom:472.106478pt;}
.y41{bottom:473.226477pt;}
.y6c{bottom:481.226474pt;}
.y53{bottom:489.226471pt;}
.y63{bottom:501.226466pt;}
.y1d{bottom:507.946463pt;}
.y40{bottom:509.226463pt;}
.y52{bottom:517.226460pt;}
.y1c{bottom:530.346455pt;}
.y62{bottom:537.386452pt;}
.y3f{bottom:545.386449pt;}
.y1b{bottom:552.906446pt;}
.y3e{bottom:573.546437pt;}
.y1a{bottom:575.306437pt;}
.y3d{bottom:601.706426pt;}
.y19{bottom:602.826426pt;}
.y18{bottom:629.066415pt;}
.y3c{bottom:629.866415pt;}
.y3b{bottom:658.026403pt;}
.y51{bottom:666.026400pt;}
.y12{bottom:667.786400pt;}
.y3a{bottom:686.186392pt;}
.y50{bottom:694.186389pt;}
.y11{bottom:703.306385pt;}
.y39{bottom:714.186381pt;}
.y4f{bottom:722.186378pt;}
.y10{bottom:738.986371pt;}
.y6b{bottom:742.346370pt;}
.y17{bottom:743.306369pt;}
.y38{bottom:750.346367pt;}
.y16{bottom:757.066364pt;}
.y6a{bottom:770.506358pt;}
.y15{bottom:773.386357pt;}
.yf{bottom:774.506357pt;}
.y37{bottom:778.506355pt;}
.y14{bottom:790.346351pt;}
.y72{bottom:806.506344pt;}
.y36{bottom:806.666344pt;}
.y13{bottom:808.426343pt;}
.ye{bottom:810.186343pt;}
.y35{bottom:834.826333pt;}
.yd{bottom:845.706328pt;}
.y34{bottom:862.986321pt;}
.yc{bottom:881.386314pt;}
.y33{bottom:891.146310pt;}
.y61{bottom:899.146307pt;}
.yb{bottom:912.426302pt;}
.y32{bottom:919.146299pt;}
.y4e{bottom:927.146296pt;}
.ya{bottom:937.546292pt;}
.y69{bottom:947.306288pt;}
.y31{bottom:955.306285pt;}
.y9{bottom:962.666282pt;}
.y30{bottom:983.466273pt;}
.y8{bottom:987.786272pt;}
.y7{bottom:996.426268pt;}
.y6{bottom:1008.746263pt;}
.y2f{bottom:1011.626262pt;}
.y3{bottom:1038.666251pt;}
.y2c{bottom:1038.826251pt;}
.y2{bottom:1054.986245pt;}
.y2b{bottom:1055.146245pt;}
.y1{bottom:1066.506240pt;}
.y2a{bottom:1066.666240pt;}
.h4{height:2.669999pt;}
.h6{height:13.321870pt;}
.h5{height:25.991240pt;}
.h1{height:26.643739pt;}
.h9{height:30.778113pt;}
.hb{height:37.194360pt;}
.h7{height:38.714985pt;}
.h2{height:42.262483pt;}
.h3{height:44.722482pt;}
.ha{height:45.937482pt;}
.hc{height:51.333729pt;}
.hd{height:55.687478pt;}
.h8{height:66.749973pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x3{left:96.159962pt;}
.xa{left:113.599955pt;}
.x5{left:160.799936pt;}
.x6{left:232.799907pt;}
.x7{left:366.399853pt;}
.x1{left:380.319848pt;}
.x8{left:383.359847pt;}
.x9{left:385.759846pt;}
.x2{left:432.480355pt;}
.x4{left:690.559724pt;}
}




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