
    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_d0826720b66e02b9bdb26cfc.woff')format("woff");}.ff1{font-family:ff1;line-height:0.769531;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_e9378b0e9ac43e0500b471a2.woff')format("woff");}.ff2{font-family:ff2;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;}
@font-face{font-family:ff3;src:url('chunks/assets/font_d51fdbd3f643b6b84b80af23.woff')format("woff");}.ff3{font-family:ff3;line-height:1.147461;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_4f164b0f8df52e5ce64c297b.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_1944916fb7355ec56366934d.woff')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_01c95785f27c5b926d1cac8b.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_3f10c884f635df33205c3ba3.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_144b2bd0452498dad0dbb635.woff')format("woff");}.ff8{font-family:ff8;line-height:0.923828;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:ff9;src:url('chunks/assets/font_7921c2c9c2d192543af9988c.woff')format("woff");}.ff9{font-family:ff9;line-height:0.773438;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:ffa;src:url('chunks/assets/font_de33c90e7db15a2791b1e553.woff')format("woff");}.ffa{font-family:ffa;line-height:1.004883;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;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:22.513184px;}
.ls0{letter-spacing:78.763184px;}
.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:-11.689453px;}
.ws1{word-spacing:0.000000px;}
.ws0{word-spacing:78.718183px;}
._0{width:1.890386px;}
._5{width:3.085742px;}
._4{width:4.131991px;}
._7{width:5.925114px;}
._3{width:7.184720px;}
._b{width:8.220856px;}
._2{width:9.277255px;}
._a{width:10.307151px;}
._c{width:12.792248px;}
._12{width:13.829376px;}
._9{width:14.956537px;}
._f{width:16.008292px;}
._e{width:17.771428px;}
._d{width:18.940443px;}
._8{width:22.475313px;}
._6{width:24.082045px;}
._1{width:37.819406px;}
._13{width:44.878873px;}
._10{width:78.771973px;}
._11{width:151.861813px;}
.fc5{color:rgb(151,143,125);}
.fc7{color:rgb(185,41,0);}
.fc4{color:rgb(241,212,204);}
.fc3{color:rgb(185,41,0);}
.fc6{color:rgb(26,23,27);}
.fc2{color:rgb(26,23,27);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(117,117,117);}
.fs5{font-size:36.562498px;}
.fs4{font-size:44.999998px;}
.fs3{font-size:45.000000px;}
.fs0{font-size:49.500000px;}
.fs2{font-size:58.500000px;}
.fs1{font-size:59.400000px;}
.y0{bottom:0.000000px;}
.y2{bottom:3.375180px;}
.y7d{bottom:5.130022px;}
.y46{bottom:5.692474px;}
.y7c{bottom:20.880022px;}
.y45{bottom:21.442474px;}
.y7b{bottom:36.630021px;}
.y44{bottom:37.192474px;}
.y7a{bottom:52.380020px;}
.y43{bottom:52.942474px;}
.y79{bottom:68.130020px;}
.y42{bottom:68.692474px;}
.y78{bottom:83.880019px;}
.y41{bottom:84.442474px;}
.y40{bottom:100.192474px;}
.y3f{bottom:115.942474px;}
.y77{bottom:115.942518px;}
.y3e{bottom:131.692474px;}
.y3d{bottom:147.442474px;}
.y3c{bottom:163.192474px;}
.y3b{bottom:178.942474px;}
.y3a{bottom:194.692474px;}
.y65{bottom:199.192514px;}
.y39{bottom:210.442474px;}
.y64{bottom:214.942514px;}
.y38{bottom:226.192474px;}
.y63{bottom:230.692513px;}
.y62{bottom:246.442512px;}
.y37{bottom:257.129974px;}
.y61{bottom:262.192512px;}
.y36{bottom:272.879974px;}
.y35{bottom:288.629974px;}
.y60{bottom:293.692510px;}
.y34{bottom:304.379974px;}
.y33{bottom:320.129974px;}
.y32{bottom:335.879974px;}
.y31{bottom:351.629974px;}
.y30{bottom:367.379974px;}
.y2f{bottom:398.879974px;}
.y2e{bottom:414.629974px;}
.y2d{bottom:430.379974px;}
.y2c{bottom:446.129974px;}
.y76{bottom:446.692504px;}
.y2b{bottom:461.879974px;}
.y75{bottom:462.442503px;}
.y2a{bottom:477.629974px;}
.y74{bottom:478.192503px;}
.y29{bottom:493.379974px;}
.y73{bottom:493.942502px;}
.y28{bottom:509.129974px;}
.y72{bottom:509.692501px;}
.y27{bottom:524.879974px;}
.y71{bottom:525.442501px;}
.y26{bottom:540.629974px;}
.y70{bottom:541.192500px;}
.y25{bottom:556.379974px;}
.y6f{bottom:556.942499px;}
.y24{bottom:572.129974px;}
.y6e{bottom:572.692499px;}
.y23{bottom:587.879974px;}
.y6d{bottom:588.442498px;}
.y22{bottom:603.629974px;}
.y6c{bottom:604.192497px;}
.y21{bottom:619.379974px;}
.y6b{bottom:619.942497px;}
.y20{bottom:635.129974px;}
.y6a{bottom:635.692496px;}
.y1f{bottom:650.879974px;}
.y69{bottom:651.442495px;}
.y1e{bottom:666.629974px;}
.y68{bottom:667.192495px;}
.y1d{bottom:697.567474px;}
.y67{bottom:698.692494px;}
.y1c{bottom:713.317474px;}
.y66{bottom:715.004993px;}
.y1b{bottom:729.067474px;}
.y1a{bottom:744.817474px;}
.y19{bottom:760.567474px;}
.y18{bottom:776.317474px;}
.y17{bottom:792.067474px;}
.y92{bottom:807.254989px;}
.y16{bottom:807.817474px;}
.y91{bottom:823.004988px;}
.y90{bottom:838.754988px;}
.y15{bottom:839.317474px;}
.y14{bottom:855.067474px;}
.y8f{bottom:866.317487px;}
.y13{bottom:870.817474px;}
.y12{bottom:886.567474px;}
.y5f{bottom:888.817486px;}
.y11{bottom:902.317474px;}
.y5e{bottom:904.567485px;}
.y8e{bottom:905.129985px;}
.y5d{bottom:920.317484px;}
.y8d{bottom:920.879984px;}
.y10{bottom:933.254975px;}
.y5c{bottom:936.067484px;}
.y8c{bottom:936.629984px;}
.yf{bottom:949.004975px;}
.y5b{bottom:951.817483px;}
.y8b{bottom:952.379983px;}
.ye{bottom:964.754975px;}
.y5a{bottom:967.567482px;}
.y8a{bottom:968.129982px;}
.yd{bottom:980.504975px;}
.y59{bottom:983.317482px;}
.y89{bottom:983.879982px;}
.yc{bottom:996.254975px;}
.y7{bottom:998.504975px;}
.y58{bottom:999.067481px;}
.y8{bottom:999.629975px;}
.y88{bottom:999.629981px;}
.yb{bottom:1012.004975px;}
.y57{bottom:1014.817480px;}
.y87{bottom:1015.379980px;}
.ya{bottom:1027.754975px;}
.y56{bottom:1030.567480px;}
.y86{bottom:1031.129980px;}
.y5{bottom:1036.192475px;}
.y6{bottom:1037.317475px;}
.y55{bottom:1046.317479px;}
.y85{bottom:1046.879979px;}
.y54{bottom:1062.067478px;}
.y84{bottom:1062.629978px;}
.y9{bottom:1071.629975px;}
.y53{bottom:1077.817478px;}
.y83{bottom:1078.379978px;}
.y4{bottom:1078.942475px;}
.y52{bottom:1093.567477px;}
.y82{bottom:1094.129977px;}
.y51{bottom:1109.317476px;}
.y81{bottom:1109.879976px;}
.y50{bottom:1125.067476px;}
.y80{bottom:1125.629976px;}
.y48{bottom:1129.567475px;}
.y4f{bottom:1140.817475px;}
.y7f{bottom:1141.379975px;}
.y4e{bottom:1156.567474px;}
.y4d{bottom:1172.317474px;}
.y1{bottom:1185.817295px;}
.y4c{bottom:1188.067473px;}
.y3{bottom:1189.192475px;}
.y7e{bottom:1203.817472px;}
.y4b{bottom:1219.567472px;}
.y4a{bottom:1235.317471px;}
.y47{bottom:1246.567475px;}
.y49{bottom:1251.067470px;}
.h2{height:16.875000px;}
.h7{height:29.992676px;}
.ha{height:32.629395px;}
.hc{height:33.152617px;}
.hd{height:34.189452px;}
.h6{height:34.189453px;}
.he{height:34.431151px;}
.h3{height:37.608398px;}
.h4{height:39.590332px;}
.hb{height:40.803221px;}
.h9{height:40.803223px;}
.h8{height:44.446289px;}
.h5{height:53.044189px;}
.h0{height:1262.879970px;}
.h1{height:1263.000000px;}
.w2{width:196.312680px;}
.w0{width:892.439940px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x6{left:54.000000px;}
.xa{left:59.141599px;}
.x9{left:76.825192px;}
.xc{left:105.987303px;}
.xb{left:288.799795px;}
.x7{left:426.172852px;}
.x8{left:432.571289px;}
.xd{left:519.213848px;}
.x3{left:588.375000px;}
.x5{left:594.000000px;}
.x1{left:601.312680px;}
.x4{left:610.875000px;}
.x2{left:819.536133px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:20.011719pt;}
.ls0{letter-spacing:70.011719pt;}
.ws2{word-spacing:-10.390625pt;}
.ws1{word-spacing:0.000000pt;}
.ws0{word-spacing:69.971718pt;}
._0{width:1.680343pt;}
._5{width:2.742882pt;}
._4{width:3.672881pt;}
._7{width:5.266768pt;}
._3{width:6.386418pt;}
._b{width:7.307428pt;}
._2{width:8.246449pt;}
._a{width:9.161912pt;}
._c{width:11.370887pt;}
._12{width:12.292779pt;}
._9{width:13.294700pt;}
._f{width:14.229593pt;}
._e{width:15.796825pt;}
._d{width:16.835949pt;}
._8{width:19.978056pt;}
._6{width:21.406262pt;}
._1{width:33.617250pt;}
._13{width:39.892332pt;}
._10{width:70.019531pt;}
._11{width:134.988278pt;}
.fs5{font-size:32.499999pt;}
.fs4{font-size:39.999998pt;}
.fs3{font-size:40.000000pt;}
.fs0{font-size:44.000000pt;}
.fs2{font-size:52.000000pt;}
.fs1{font-size:52.800000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:3.000160pt;}
.y7d{bottom:4.560020pt;}
.y46{bottom:5.059977pt;}
.y7c{bottom:18.560019pt;}
.y45{bottom:19.059977pt;}
.y7b{bottom:32.560019pt;}
.y44{bottom:33.059977pt;}
.y7a{bottom:46.560018pt;}
.y43{bottom:47.059977pt;}
.y79{bottom:60.560018pt;}
.y42{bottom:61.059977pt;}
.y78{bottom:74.560017pt;}
.y41{bottom:75.059977pt;}
.y40{bottom:89.059977pt;}
.y3f{bottom:103.059977pt;}
.y77{bottom:103.060016pt;}
.y3e{bottom:117.059977pt;}
.y3d{bottom:131.059977pt;}
.y3c{bottom:145.059977pt;}
.y3b{bottom:159.059977pt;}
.y3a{bottom:173.059977pt;}
.y65{bottom:177.060013pt;}
.y39{bottom:187.059977pt;}
.y64{bottom:191.060012pt;}
.y38{bottom:201.059977pt;}
.y63{bottom:205.060012pt;}
.y62{bottom:219.060011pt;}
.y37{bottom:228.559977pt;}
.y61{bottom:233.060010pt;}
.y36{bottom:242.559977pt;}
.y35{bottom:256.559977pt;}
.y60{bottom:261.060009pt;}
.y34{bottom:270.559977pt;}
.y33{bottom:284.559977pt;}
.y32{bottom:298.559977pt;}
.y31{bottom:312.559977pt;}
.y30{bottom:326.559977pt;}
.y2f{bottom:354.559977pt;}
.y2e{bottom:368.559977pt;}
.y2d{bottom:382.559977pt;}
.y2c{bottom:396.559977pt;}
.y76{bottom:397.060004pt;}
.y2b{bottom:410.559977pt;}
.y75{bottom:411.060003pt;}
.y2a{bottom:424.559977pt;}
.y74{bottom:425.060002pt;}
.y29{bottom:438.559977pt;}
.y73{bottom:439.060002pt;}
.y28{bottom:452.559977pt;}
.y72{bottom:453.060001pt;}
.y27{bottom:466.559977pt;}
.y71{bottom:467.060001pt;}
.y26{bottom:480.559977pt;}
.y70{bottom:481.060000pt;}
.y25{bottom:494.559977pt;}
.y6f{bottom:495.059999pt;}
.y24{bottom:508.559977pt;}
.y6e{bottom:509.059999pt;}
.y23{bottom:522.559977pt;}
.y6d{bottom:523.059998pt;}
.y22{bottom:536.559977pt;}
.y6c{bottom:537.059998pt;}
.y21{bottom:550.559977pt;}
.y6b{bottom:551.059997pt;}
.y20{bottom:564.559977pt;}
.y6a{bottom:565.059997pt;}
.y1f{bottom:578.559977pt;}
.y69{bottom:579.059996pt;}
.y1e{bottom:592.559977pt;}
.y68{bottom:593.059995pt;}
.y1d{bottom:620.059977pt;}
.y67{bottom:621.059994pt;}
.y1c{bottom:634.059977pt;}
.y66{bottom:635.559994pt;}
.y1b{bottom:648.059977pt;}
.y1a{bottom:662.059977pt;}
.y19{bottom:676.059977pt;}
.y18{bottom:690.059977pt;}
.y17{bottom:704.059977pt;}
.y92{bottom:717.559990pt;}
.y16{bottom:718.059977pt;}
.y91{bottom:731.559990pt;}
.y90{bottom:745.559989pt;}
.y15{bottom:746.059977pt;}
.y14{bottom:760.059977pt;}
.y8f{bottom:770.059988pt;}
.y13{bottom:774.059977pt;}
.y12{bottom:788.059977pt;}
.y5f{bottom:790.059987pt;}
.y11{bottom:802.059977pt;}
.y5e{bottom:804.059987pt;}
.y8e{bottom:804.559987pt;}
.y5d{bottom:818.059986pt;}
.y8d{bottom:818.559986pt;}
.y10{bottom:829.559977pt;}
.y5c{bottom:832.059985pt;}
.y8c{bottom:832.559985pt;}
.yf{bottom:843.559977pt;}
.y5b{bottom:846.059985pt;}
.y8b{bottom:846.559985pt;}
.ye{bottom:857.559977pt;}
.y5a{bottom:860.059984pt;}
.y8a{bottom:860.559984pt;}
.yd{bottom:871.559977pt;}
.y59{bottom:874.059984pt;}
.y89{bottom:874.559984pt;}
.yc{bottom:885.559977pt;}
.y7{bottom:887.559977pt;}
.y58{bottom:888.059983pt;}
.y8{bottom:888.559977pt;}
.y88{bottom:888.559983pt;}
.yb{bottom:899.559977pt;}
.y57{bottom:902.059983pt;}
.y87{bottom:902.559982pt;}
.ya{bottom:913.559977pt;}
.y56{bottom:916.059982pt;}
.y86{bottom:916.559982pt;}
.y5{bottom:921.059977pt;}
.y6{bottom:922.059977pt;}
.y55{bottom:930.059981pt;}
.y85{bottom:930.559981pt;}
.y54{bottom:944.059981pt;}
.y84{bottom:944.559981pt;}
.y9{bottom:952.559977pt;}
.y53{bottom:958.059980pt;}
.y83{bottom:958.559980pt;}
.y4{bottom:959.059977pt;}
.y52{bottom:972.059980pt;}
.y82{bottom:972.559980pt;}
.y51{bottom:986.059979pt;}
.y81{bottom:986.559979pt;}
.y50{bottom:1000.059978pt;}
.y80{bottom:1000.559978pt;}
.y48{bottom:1004.059977pt;}
.y4f{bottom:1014.059978pt;}
.y7f{bottom:1014.559978pt;}
.y4e{bottom:1028.059977pt;}
.y4d{bottom:1042.059977pt;}
.y1{bottom:1054.059817pt;}
.y4c{bottom:1056.059976pt;}
.y3{bottom:1057.059977pt;}
.y7e{bottom:1070.059976pt;}
.y4b{bottom:1084.059975pt;}
.y4a{bottom:1098.059974pt;}
.y47{bottom:1108.059977pt;}
.y49{bottom:1112.059974pt;}
.h2{height:15.000000pt;}
.h7{height:26.660156pt;}
.ha{height:29.003906pt;}
.hc{height:29.468993pt;}
.hd{height:30.390624pt;}
.h6{height:30.390625pt;}
.he{height:30.605467pt;}
.h3{height:33.429688pt;}
.h4{height:35.191406pt;}
.hb{height:36.269530pt;}
.h9{height:36.269531pt;}
.h8{height:39.507813pt;}
.h5{height:47.150391pt;}
.h0{height:1122.559973pt;}
.h1{height:1122.666667pt;}
.w2{width:174.500160pt;}
.w0{width:793.279947pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x6{left:48.000000pt;}
.xa{left:52.570310pt;}
.x9{left:68.289060pt;}
.xc{left:94.210936pt;}
.xb{left:256.710929pt;}
.x7{left:378.820313pt;}
.x8{left:384.507813pt;}
.xd{left:461.523421pt;}
.x3{left:523.000000pt;}
.x5{left:528.000000pt;}
.x1{left:534.500160pt;}
.x4{left:543.000000pt;}
.x2{left:728.476563pt;}
}




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