
    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_7ebf6db553cccac62b34aa48.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_5ecfec9a9b74acd98057af12.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_6c0a2ad0d6ab00a45376fb57.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.926270;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_d2772da5c14acf8fed278210.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_35138af6f82d0c54f2b788a9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.925293;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.458000px;}
.ls2{letter-spacing:1.512000px;}
.ls3{letter-spacing:116.100000px;}
.ls4{letter-spacing:926.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;}
}
.ws1{word-spacing:-21.129671px;}
.ws6{word-spacing:-16.470000px;}
.ws2{word-spacing:-14.958000px;}
.wsa{word-spacing:-14.210587px;}
.ws0{word-spacing:-11.633594px;}
.ws4{word-spacing:-10.508889px;}
.wsb{word-spacing:-0.070198px;}
.ws7{word-spacing:-0.054000px;}
.ws9{word-spacing:-0.043198px;}
.ws5{word-spacing:0.000000px;}
.ws8{word-spacing:176.863500px;}
.ws3{word-spacing:267.012000px;}
._c{margin-left:-5.000766px;}
._18{margin-left:-3.708301px;}
._3{margin-left:-2.582736px;}
._0{margin-left:-1.007965px;}
._1{width:1.133960px;}
._2{width:2.603909px;}
._6{width:3.943752px;}
._5{width:5.220004px;}
._7{width:6.242827px;}
._9{width:7.290000px;}
._a{width:8.970165px;}
._b{width:10.977003px;}
._e{width:12.678249px;}
._12{width:13.823960px;}
._13{width:17.058032px;}
._4{width:18.663576px;}
._14{width:19.755437px;}
._15{width:21.588288px;}
._11{width:22.788000px;}
._f{width:24.139016px;}
._10{width:25.201538px;}
._8{width:115.830040px;}
._19{width:240.475742px;}
._17{width:286.163240px;}
._d{width:362.484000px;}
._16{width:457.153875px;}
.fc3{color:rgb(15,39,83);}
.fc1{color:rgb(27,138,174);}
.fc6{color:rgb(64,64,64);}
.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;}
.fs7{font-size:40.500000px;}
.fs0{font-size:41.998536px;}
.fs8{font-size:43.198242px;}
.fs3{font-size:48.001464px;}
.fs9{font-size:51.301758px;}
.fs1{font-size:54.000000px;}
.fs5{font-size:70.198242px;}
.fs2{font-size:91.801758px;}
.y0{bottom:0.000000px;}
.y23{bottom:46.734370px;}
.y22{bottom:59.015622px;}
.y21{bottom:71.302734px;}
.y4c{bottom:124.330078px;}
.y1f{bottom:137.935455px;}
.y4b{bottom:143.232390px;}
.y1e{bottom:156.837804px;}
.y4a{bottom:162.128880px;}
.y1d{bottom:175.734294px;}
.y6c{bottom:175.804665px;}
.y54{bottom:178.628905px;}
.y49{bottom:181.031229px;}
.y1c{bottom:194.636643px;}
.y6b{bottom:194.701155px;}
.y53{bottom:197.531246px;}
.y48{bottom:199.927719px;}
.y1b{bottom:213.533133px;}
.y6a{bottom:213.603504px;}
.y52{bottom:216.427734px;}
.y47{bottom:218.830068px;}
.y69{bottom:232.505853px;}
.y51{bottom:235.330075px;}
.y46{bottom:237.732417px;}
.y1a{bottom:245.935482px;}
.y68{bottom:251.402343px;}
.y50{bottom:254.226562px;}
.y45{bottom:256.628880px;}
.y19{bottom:264.837831px;}
.y44{bottom:275.531229px;}
.y67{bottom:282.263672px;}
.y18{bottom:283.734321px;}
.y43{bottom:294.427719px;}
.y17{bottom:302.636670px;}
.y42{bottom:313.330068px;}
.y16{bottom:321.533160px;}
.y41{bottom:332.232417px;}
.y66{bottom:337.429688px;}
.y40{bottom:351.128776px;}
.y15{bottom:353.935509px;}
.y65{bottom:355.382808px;}
.y14{bottom:372.837858px;}
.y64{bottom:373.341796px;}
.y3f{bottom:383.531125px;}
.y63{bottom:391.294916px;}
.y13{bottom:391.734348px;}
.y3e{bottom:402.427615px;}
.y62{bottom:409.248044px;}
.y12{bottom:410.636697px;}
.y3d{bottom:421.329964px;}
.y61{bottom:427.207032px;}
.y11{bottom:429.533187px;}
.y3c{bottom:440.232313px;}
.y3b{bottom:459.128803px;}
.y10{bottom:461.935536px;}
.y60{bottom:464.712891px;}
.y3a{bottom:478.031152px;}
.yf{bottom:480.837885px;}
.y39{bottom:496.927643px;}
.ye{bottom:499.734375px;}
.y38{bottom:515.829992px;}
.y5f{bottom:518.414062px;}
.yd{bottom:530.390625px;}
.y37{bottom:534.732340px;}
.y5e{bottom:547.160157px;}
.y36{bottom:553.628831px;}
.y35{bottom:572.531180px;}
.yc{bottom:599.490234px;}
.y5d{bottom:602.771478px;}
.y34{bottom:604.927670px;}
.yb{bottom:616.289060px;}
.y5c{bottom:621.667968px;}
.y33{bottom:623.830019px;}
.ya{bottom:633.087886px;}
.y32{bottom:642.732368px;}
.y5b{bottom:652.324220px;}
.y9{bottom:654.392578px;}
.y31{bottom:661.628858px;}
.y8{bottom:680.191407px;}
.y30{bottom:680.531207px;}
.y2f{bottom:699.427697px;}
.y5a{bottom:707.935546px;}
.y2e{bottom:718.330045px;}
.y7{bottom:730.441407px;}
.y59{bottom:738.591796px;}
.y2d{bottom:750.732395px;}
.y6{bottom:751.400391px;}
.y20{bottom:755.900391px;}
.y2c{bottom:769.628884px;}
.y2b{bottom:788.531233px;}
.y5{bottom:793.710931px;}
.y58{bottom:794.203125px;}
.y2a{bottom:807.427723px;}
.y57{bottom:824.853516px;}
.y29{bottom:826.330072px;}
.y4{bottom:831.269532px;}
.y28{bottom:845.232421px;}
.y4e{bottom:850.294927px;}
.y27{bottom:864.128891px;}
.y4d{bottom:869.191407px;}
.y56{bottom:880.464843px;}
.y26{bottom:883.031239px;}
.y3{bottom:899.378907px;}
.y25{bottom:901.927730px;}
.y55{bottom:911.121093px;}
.y24{bottom:920.830079px;}
.y2{bottom:939.462894px;}
.y1{bottom:955.212891px;}
.y4f{bottom:974.730470px;}
.h7{height:26.244141px;}
.h5{height:27.557629px;}
.h8{height:28.048904px;}
.hd{height:29.524658px;}
.h1{height:30.617097px;}
.hf{height:31.449501px;}
.h4{height:34.993255px;}
.he{height:35.617086px;}
.h10{height:37.399182px;}
.h2{height:39.366211px;}
.h9{height:39.366277px;}
.hb{height:39.366319px;}
.hc{height:39.366337px;}
.ha{height:39.366733px;}
.h11{height:51.106240px;}
.h6{height:52.443023px;}
.h3{height:68.582368px;}
.h0{height:1020.000000px;}
.w0{width:700.500000px;}
.x0{left:0.000000px;}
.x3{left:78.662109px;}
.x6{left:83.162104px;}
.x9{left:89.912105px;}
.x5{left:94.412109px;}
.x4{left:95.537109px;}
.xc{left:103.412109px;}
.xb{left:114.662107px;}
.x7{left:123.662104px;}
.xd{left:145.476562px;}
.x8{left:163.037109px;}
.x1{left:205.335938px;}
.x2{left:288.351562px;}
.xa{left:613.916016px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:1.296000pt;}
.ls2{letter-spacing:1.344000pt;}
.ls3{letter-spacing:103.200000pt;}
.ls4{letter-spacing:823.839111pt;}
.ws1{word-spacing:-18.781930pt;}
.ws6{word-spacing:-14.640000pt;}
.ws2{word-spacing:-13.296000pt;}
.wsa{word-spacing:-12.631633pt;}
.ws0{word-spacing:-10.340973pt;}
.ws4{word-spacing:-9.341234pt;}
.wsb{word-spacing:-0.062398pt;}
.ws7{word-spacing:-0.048000pt;}
.ws9{word-spacing:-0.038398pt;}
.ws5{word-spacing:0.000000pt;}
.ws8{word-spacing:157.212000pt;}
.ws3{word-spacing:237.344000pt;}
._c{margin-left:-4.445125pt;}
._18{margin-left:-3.296268pt;}
._3{margin-left:-2.295766pt;}
._0{margin-left:-0.895969pt;}
._1{width:1.007965pt;}
._2{width:2.314586pt;}
._6{width:3.505558pt;}
._5{width:4.640004pt;}
._7{width:5.549180pt;}
._9{width:6.480000pt;}
._a{width:7.973480pt;}
._b{width:9.757336pt;}
._e{width:11.269555pt;}
._12{width:12.287965pt;}
._13{width:15.162695pt;}
._4{width:16.589846pt;}
._14{width:17.560388pt;}
._15{width:19.189590pt;}
._11{width:20.256000pt;}
._f{width:21.456903pt;}
._10{width:22.401367pt;}
._8{width:102.960035pt;}
._19{width:213.756215pt;}
._17{width:254.367324pt;}
._d{width:322.208000pt;}
._16{width:406.359000pt;}
.fs6{font-size:32.000000pt;}
.fs4{font-size:33.601563pt;}
.fs7{font-size:36.000000pt;}
.fs0{font-size:37.332032pt;}
.fs8{font-size:38.398437pt;}
.fs3{font-size:42.667968pt;}
.fs9{font-size:45.601563pt;}
.fs1{font-size:48.000000pt;}
.fs5{font-size:62.398437pt;}
.fs2{font-size:81.601563pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:41.541662pt;}
.y22{bottom:52.458331pt;}
.y21{bottom:63.380208pt;}
.y4c{bottom:110.515625pt;}
.y1f{bottom:122.609293pt;}
.y4b{bottom:127.317680pt;}
.y1e{bottom:139.411381pt;}
.y4a{bottom:144.114560pt;}
.y1d{bottom:156.208261pt;}
.y6c{bottom:156.270813pt;}
.y54{bottom:158.781249pt;}
.y49{bottom:160.916648pt;}
.y1c{bottom:173.010349pt;}
.y6b{bottom:173.067693pt;}
.y53{bottom:175.583330pt;}
.y48{bottom:177.713528pt;}
.y1b{bottom:189.807229pt;}
.y6a{bottom:189.869781pt;}
.y52{bottom:192.380208pt;}
.y47{bottom:194.515616pt;}
.y69{bottom:206.671869pt;}
.y51{bottom:209.182289pt;}
.y46{bottom:211.317704pt;}
.y1a{bottom:218.609317pt;}
.y68{bottom:223.468749pt;}
.y50{bottom:225.979167pt;}
.y45{bottom:228.114560pt;}
.y19{bottom:235.411405pt;}
.y44{bottom:244.916648pt;}
.y67{bottom:250.901041pt;}
.y18{bottom:252.208285pt;}
.y43{bottom:261.713528pt;}
.y17{bottom:269.010373pt;}
.y42{bottom:278.515616pt;}
.y16{bottom:285.807253pt;}
.y41{bottom:295.317704pt;}
.y66{bottom:299.937500pt;}
.y40{bottom:312.114468pt;}
.y15{bottom:314.609341pt;}
.y65{bottom:315.895829pt;}
.y14{bottom:331.411429pt;}
.y64{bottom:331.859375pt;}
.y3f{bottom:340.916556pt;}
.y63{bottom:347.817704pt;}
.y13{bottom:348.208309pt;}
.y3e{bottom:357.713436pt;}
.y62{bottom:363.776039pt;}
.y12{bottom:365.010397pt;}
.y3d{bottom:374.515524pt;}
.y61{bottom:379.739584pt;}
.y11{bottom:381.807277pt;}
.y3c{bottom:391.317612pt;}
.y3b{bottom:408.114492pt;}
.y10{bottom:410.609365pt;}
.y60{bottom:413.078125pt;}
.y3a{bottom:424.916580pt;}
.yf{bottom:427.411453pt;}
.y39{bottom:441.713460pt;}
.ye{bottom:444.208333pt;}
.y38{bottom:458.515548pt;}
.y5f{bottom:460.812500pt;}
.yd{bottom:471.458333pt;}
.y37{bottom:475.317636pt;}
.y5e{bottom:486.364584pt;}
.y36{bottom:492.114516pt;}
.y35{bottom:508.916604pt;}
.yc{bottom:532.880208pt;}
.y5d{bottom:535.796869pt;}
.y34{bottom:537.713484pt;}
.yb{bottom:547.812497pt;}
.y5c{bottom:552.593749pt;}
.y33{bottom:554.515572pt;}
.ya{bottom:562.744788pt;}
.y32{bottom:571.317660pt;}
.y5b{bottom:579.843751pt;}
.y9{bottom:581.682291pt;}
.y31{bottom:588.114540pt;}
.y8{bottom:604.614584pt;}
.y30{bottom:604.916628pt;}
.y2f{bottom:621.713508pt;}
.y5a{bottom:629.276041pt;}
.y2e{bottom:638.515596pt;}
.y7{bottom:649.281251pt;}
.y59{bottom:656.526041pt;}
.y2d{bottom:667.317684pt;}
.y6{bottom:667.911459pt;}
.y20{bottom:671.911459pt;}
.y2c{bottom:684.114564pt;}
.y2b{bottom:700.916652pt;}
.y5{bottom:705.520828pt;}
.y58{bottom:705.958333pt;}
.y2a{bottom:717.713532pt;}
.y57{bottom:733.203125pt;}
.y29{bottom:734.515620pt;}
.y4{bottom:738.906251pt;}
.y28{bottom:751.317708pt;}
.y4e{bottom:755.817713pt;}
.y27{bottom:768.114569pt;}
.y4d{bottom:772.614584pt;}
.y56{bottom:782.635416pt;}
.y26{bottom:784.916657pt;}
.y3{bottom:799.447917pt;}
.y25{bottom:801.713537pt;}
.y55{bottom:809.885416pt;}
.y24{bottom:818.515625pt;}
.y2{bottom:835.078128pt;}
.y1{bottom:849.078125pt;}
.y4f{bottom:866.427084pt;}
.h7{height:23.328125pt;}
.h5{height:24.495670pt;}
.h8{height:24.932359pt;}
.hd{height:26.244141pt;}
.h1{height:27.215197pt;}
.hf{height:27.955112pt;}
.h4{height:31.105115pt;}
.he{height:31.659632pt;}
.h10{height:33.243717pt;}
.h2{height:34.992188pt;}
.h9{height:34.992246pt;}
.hb{height:34.992283pt;}
.hc{height:34.992300pt;}
.ha{height:34.992652pt;}
.h11{height:45.427769pt;}
.h6{height:46.616020pt;}
.h3{height:60.962105pt;}
.h0{height:906.666667pt;}
.w0{width:622.666667pt;}
.x0{left:0.000000pt;}
.x3{left:69.921875pt;}
.x6{left:73.921871pt;}
.x9{left:79.921871pt;}
.x5{left:83.921875pt;}
.x4{left:84.921875pt;}
.xc{left:91.921875pt;}
.xb{left:101.921873pt;}
.x7{left:109.921871pt;}
.xd{left:129.312500pt;}
.x8{left:144.921875pt;}
.x1{left:182.520833pt;}
.x2{left:256.312500pt;}
.xa{left:545.703125pt;}
}




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