
    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_09fd5553609f06010f8c0055.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.998000;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_f384ff9f9d113e15abffc58b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_13a505437002ff129d832904.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.671000;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_2949aa8743f6284d95c3a8b3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910000;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_a32f080a365503659cefccaf.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_978beb8b98ea3f28ebddd941.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.579000;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);}
.v2{vertical-align:-21.690000px;}
.v4{vertical-align:-8.970000px;}
.v3{vertical-align:-7.470000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:26.034000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:2.987314px;}
.ls3{letter-spacing:35.861459px;}
.ls2{letter-spacing:35.863613px;}
.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:-103.292640px;}
.ws7{word-spacing:-71.731020px;}
.ws0{word-spacing:-70.962044px;}
.ws6{word-spacing:-65.454540px;}
.wsa{word-spacing:-58.016033px;}
.ws8{word-spacing:-49.207480px;}
.ws1{word-spacing:-48.346707px;}
.ws5{word-spacing:-43.658178px;}
.ws3{word-spacing:-39.870485px;}
.ws2{word-spacing:-30.892146px;}
.ws4{word-spacing:0.000000px;}
._6{margin-left:-8.056826px;}
._5{margin-left:-5.881944px;}
._1{margin-left:-2.582316px;}
._3{margin-left:-1.291159px;}
._4{width:1.291159px;}
._2{width:2.582316px;}
._8{width:29.603384px;}
._7{width:31.131263px;}
._0{width:43.073031px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(51,51,178);}
.fs3{font-size:41.843100px;}
.fs2{font-size:47.820660px;}
.fs4{font-size:59.775840px;}
.fs5{font-size:65.454540px;}
.fs1{font-size:71.731020px;}
.fs6{font-size:86.077200px;}
.fs0{font-size:103.292640px;}
.y0{bottom:0.000000px;}
.yc{bottom:11.400000px;}
.yb{bottom:42.348000px;}
.ya{bottom:64.017000px;}
.y13{bottom:69.795000px;}
.y4c{bottom:71.541000px;}
.y59{bottom:79.959000px;}
.y70{bottom:80.887500px;}
.y9{bottom:85.686000px;}
.y36{bottom:91.200000px;}
.y4b{bottom:94.107000px;}
.y6f{bottom:104.425500px;}
.y58{bottom:106.260000px;}
.y8{bottom:107.355000px;}
.y3e{bottom:109.501500px;}
.y4a{bottom:114.430500px;}
.y35{bottom:114.736500px;}
.y12{bottom:116.911500px;}
.y2d{bottom:118.884000px;}
.y6e{bottom:128.709000px;}
.y49{bottom:132.513000px;}
.y57{bottom:132.561000px;}
.y3d{bottom:133.038000px;}
.y5f{bottom:137.451000px;}
.y19{bottom:138.273000px;}
.y34{bottom:143.503500px;}
.y2c{bottom:145.408500px;}
.y7{bottom:148.032000px;}
.y6d{bottom:152.245500px;}
.y48{bottom:155.079000px;}
.y56{bottom:155.500500px;}
.y3c{bottom:157.321500px;}
.y5e{bottom:161.734500px;}
.y18{bottom:161.809500px;}
.y6{bottom:162.229500px;}
.y11{bottom:164.028000px;}
.y2b{bottom:165.732000px;}
.y66{bottom:165.910500px;}
.y21{bottom:166.065000px;}
.y1d{bottom:166.143000px;}
.y33{bottom:167.040000px;}
.y25{bottom:172.675500px;}
.y47{bottom:173.160000px;}
.y6c{bottom:176.529000px;}
.y55{bottom:178.440000px;}
.y62{bottom:178.588500px;}
.y3b{bottom:180.859500px;}
.y5d{bottom:185.271000px;}
.y2a{bottom:186.057000px;}
.y17{bottom:187.962000px;}
.y4f{bottom:188.094000px;}
.y65{bottom:190.194000px;}
.y32{bottom:191.323500px;}
.y20{bottom:192.216000px;}
.y1c{bottom:192.295500px;}
.y24{bottom:194.344500px;}
.y5{bottom:195.177000px;}
.y46{bottom:195.726000px;}
.y40{bottom:197.526000px;}
.y6b{bottom:200.065500px;}
.y54{bottom:201.976500px;}
.y61{bottom:204.741000px;}
.y3a{bottom:205.143000px;}
.y4e{bottom:208.417500px;}
.y29{bottom:208.995000px;}
.y10{bottom:211.144500px;}
.y5c{bottom:211.423500px;}
.y64{bottom:213.730500px;}
.y16{bottom:214.113000px;}
.y31{bottom:214.860000px;}
.y71{bottom:215.856000px;}
.y23{bottom:216.012000px;}
.y1f{bottom:218.368500px;}
.y1b{bottom:218.446500px;}
.y45{bottom:218.665500px;}
.y3f{bottom:223.677000px;}
.y6a{bottom:226.218000px;}
.y53{bottom:228.129000px;}
.y39{bottom:228.679500px;}
.y4d{bottom:231.355500px;}
.y60{bottom:232.939500px;}
.y28{bottom:234.175500px;}
.y5b{bottom:237.576000px;}
.y22{bottom:239.550000px;}
.y15{bottom:240.265500px;}
.y30{bottom:241.012500px;}
.y63{bottom:241.930500px;}
.y44{bottom:243.846000px;}
.y1e{bottom:244.521000px;}
.y1a{bottom:244.599000px;}
.y69{bottom:250.501500px;}
.y52{bottom:254.280000px;}
.y27{bottom:254.500500px;}
.y38{bottom:254.832000px;}
.y4{bottom:255.996000px;}
.yf{bottom:258.261000px;}
.y5a{bottom:263.727000px;}
.y43{bottom:264.169500px;}
.y14{bottom:264.549000px;}
.y2f{bottom:267.165000px;}
.y68{bottom:274.039500px;}
.y26{bottom:277.438500px;}
.y51{bottom:278.563500px;}
.y37{bottom:280.983000px;}
.y42{bottom:284.493000px;}
.y3{bottom:288.873000px;}
.y2e{bottom:293.316000px;}
.y67{bottom:300.190500px;}
.y50{bottom:302.101500px;}
.ye{bottom:305.377500px;}
.y41{bottom:307.432500px;}
.y2{bottom:321.748500px;}
.y1{bottom:354.625500px;}
.yd{bottom:372.192000px;}
.h7{height:29.499386px;}
.h4{height:31.848560px;}
.h5{height:33.713565px;}
.ha{height:40.120905px;}
.hb{height:40.126905px;}
.h9{height:46.322265px;}
.h8{height:46.328265px;}
.hc{height:49.090905px;}
.h3{height:53.798265px;}
.h6{height:59.747565px;}
.hd{height:64.557900px;}
.h2{height:77.366187px;}
.h1{height:408.000000px;}
.h0{height:408.189000px;}
.w0{width:544.252500px;}
.w1{width:544.500000px;}
.x0{left:0.000000px;}
.xc{left:12.756000px;}
.xd{left:42.519000px;}
.xe{left:55.471500px;}
.x2{left:57.277500px;}
.x1{left:59.985000px;}
.x8{left:63.361500px;}
.xf{left:78.385500px;}
.x3{left:79.756500px;}
.x10{left:92.557500px;}
.x11{left:114.250500px;}
.x9{left:156.145500px;}
.x4{left:165.631500px;}
.x6{left:192.774000px;}
.xa{left:201.453000px;}
.xb{left:210.960000px;}
.x5{left:218.301000px;}
.x7{left:223.486500px;}
@media print{
.v2{vertical-align:-19.280000pt;}
.v4{vertical-align:-7.973333pt;}
.v3{vertical-align:-6.640000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.141333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:2.655390pt;}
.ls3{letter-spacing:31.876852pt;}
.ls2{letter-spacing:31.878767pt;}
.ws9{word-spacing:-91.815680pt;}
.ws7{word-spacing:-63.760907pt;}
.ws0{word-spacing:-63.077372pt;}
.ws6{word-spacing:-58.181813pt;}
.wsa{word-spacing:-51.569807pt;}
.ws8{word-spacing:-43.739982pt;}
.ws1{word-spacing:-42.974851pt;}
.ws5{word-spacing:-38.807269pt;}
.ws3{word-spacing:-35.440431pt;}
.ws2{word-spacing:-27.459686pt;}
.ws4{word-spacing:0.000000pt;}
._6{margin-left:-7.161623pt;}
._5{margin-left:-5.228394pt;}
._1{margin-left:-2.295392pt;}
._3{margin-left:-1.147697pt;}
._4{width:1.147697pt;}
._2{width:2.295392pt;}
._8{width:26.314119pt;}
._7{width:27.672233pt;}
._0{width:38.287139pt;}
.fs3{font-size:37.193867pt;}
.fs2{font-size:42.507253pt;}
.fs4{font-size:53.134080pt;}
.fs5{font-size:58.181813pt;}
.fs1{font-size:63.760907pt;}
.fs6{font-size:76.513067pt;}
.fs0{font-size:91.815680pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:10.133333pt;}
.yb{bottom:37.642667pt;}
.ya{bottom:56.904000pt;}
.y13{bottom:62.040000pt;}
.y4c{bottom:63.592000pt;}
.y59{bottom:71.074667pt;}
.y70{bottom:71.900000pt;}
.y9{bottom:76.165333pt;}
.y36{bottom:81.066667pt;}
.y4b{bottom:83.650667pt;}
.y6f{bottom:92.822667pt;}
.y58{bottom:94.453333pt;}
.y8{bottom:95.426667pt;}
.y3e{bottom:97.334667pt;}
.y4a{bottom:101.716000pt;}
.y35{bottom:101.988000pt;}
.y12{bottom:103.921333pt;}
.y2d{bottom:105.674667pt;}
.y6e{bottom:114.408000pt;}
.y49{bottom:117.789333pt;}
.y57{bottom:117.832000pt;}
.y3d{bottom:118.256000pt;}
.y5f{bottom:122.178667pt;}
.y19{bottom:122.909333pt;}
.y34{bottom:127.558667pt;}
.y2c{bottom:129.252000pt;}
.y7{bottom:131.584000pt;}
.y6d{bottom:135.329333pt;}
.y48{bottom:137.848000pt;}
.y56{bottom:138.222667pt;}
.y3c{bottom:139.841333pt;}
.y5e{bottom:143.764000pt;}
.y18{bottom:143.830667pt;}
.y6{bottom:144.204000pt;}
.y11{bottom:145.802667pt;}
.y2b{bottom:147.317333pt;}
.y66{bottom:147.476000pt;}
.y21{bottom:147.613333pt;}
.y1d{bottom:147.682667pt;}
.y33{bottom:148.480000pt;}
.y25{bottom:153.489333pt;}
.y47{bottom:153.920000pt;}
.y6c{bottom:156.914667pt;}
.y55{bottom:158.613333pt;}
.y62{bottom:158.745333pt;}
.y3b{bottom:160.764000pt;}
.y5d{bottom:164.685333pt;}
.y2a{bottom:165.384000pt;}
.y17{bottom:167.077333pt;}
.y4f{bottom:167.194667pt;}
.y65{bottom:169.061333pt;}
.y32{bottom:170.065333pt;}
.y20{bottom:170.858667pt;}
.y1c{bottom:170.929333pt;}
.y24{bottom:172.750667pt;}
.y5{bottom:173.490667pt;}
.y46{bottom:173.978667pt;}
.y40{bottom:175.578667pt;}
.y6b{bottom:177.836000pt;}
.y54{bottom:179.534667pt;}
.y61{bottom:181.992000pt;}
.y3a{bottom:182.349333pt;}
.y4e{bottom:185.260000pt;}
.y29{bottom:185.773333pt;}
.y10{bottom:187.684000pt;}
.y5c{bottom:187.932000pt;}
.y64{bottom:189.982667pt;}
.y16{bottom:190.322667pt;}
.y31{bottom:190.986667pt;}
.y71{bottom:191.872000pt;}
.y23{bottom:192.010667pt;}
.y1f{bottom:194.105333pt;}
.y1b{bottom:194.174667pt;}
.y45{bottom:194.369333pt;}
.y3f{bottom:198.824000pt;}
.y6a{bottom:201.082667pt;}
.y53{bottom:202.781333pt;}
.y39{bottom:203.270667pt;}
.y4d{bottom:205.649333pt;}
.y60{bottom:207.057333pt;}
.y28{bottom:208.156000pt;}
.y5b{bottom:211.178667pt;}
.y22{bottom:212.933333pt;}
.y15{bottom:213.569333pt;}
.y30{bottom:214.233333pt;}
.y63{bottom:215.049333pt;}
.y44{bottom:216.752000pt;}
.y1e{bottom:217.352000pt;}
.y1a{bottom:217.421333pt;}
.y69{bottom:222.668000pt;}
.y52{bottom:226.026667pt;}
.y27{bottom:226.222667pt;}
.y38{bottom:226.517333pt;}
.y4{bottom:227.552000pt;}
.yf{bottom:229.565333pt;}
.y5a{bottom:234.424000pt;}
.y43{bottom:234.817333pt;}
.y14{bottom:235.154667pt;}
.y2f{bottom:237.480000pt;}
.y68{bottom:243.590667pt;}
.y26{bottom:246.612000pt;}
.y51{bottom:247.612000pt;}
.y37{bottom:249.762667pt;}
.y42{bottom:252.882667pt;}
.y3{bottom:256.776000pt;}
.y2e{bottom:260.725333pt;}
.y67{bottom:266.836000pt;}
.y50{bottom:268.534667pt;}
.ye{bottom:271.446667pt;}
.y41{bottom:273.273333pt;}
.y2{bottom:285.998667pt;}
.y1{bottom:315.222667pt;}
.yd{bottom:330.837333pt;}
.h7{height:26.221676pt;}
.h4{height:28.309831pt;}
.h5{height:29.967614pt;}
.ha{height:35.663027pt;}
.hb{height:35.668360pt;}
.h9{height:41.175347pt;}
.h8{height:41.180680pt;}
.hc{height:43.636360pt;}
.h3{height:47.820680pt;}
.h6{height:53.108947pt;}
.hd{height:57.384800pt;}
.h2{height:68.769944pt;}
.h1{height:362.666667pt;}
.h0{height:362.834667pt;}
.w0{width:483.780000pt;}
.w1{width:484.000000pt;}
.x0{left:0.000000pt;}
.xc{left:11.338667pt;}
.xd{left:37.794667pt;}
.xe{left:49.308000pt;}
.x2{left:50.913333pt;}
.x1{left:53.320000pt;}
.x8{left:56.321333pt;}
.xf{left:69.676000pt;}
.x3{left:70.894667pt;}
.x10{left:82.273333pt;}
.x11{left:101.556000pt;}
.x9{left:138.796000pt;}
.x4{left:147.228000pt;}
.x6{left:171.354667pt;}
.xa{left:179.069333pt;}
.xb{left:187.520000pt;}
.x5{left:194.045333pt;}
.x7{left:198.654667pt;}
}




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