
    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_7425d60fa7d1387cc7def53c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.189263;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_64868c4e20d1a8604f20af50.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.150000;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_39c2833db05c957eb0763ce5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.962571;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_d78d100cc4850470713ac1e7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.989167;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_9864910423badeaee033dd58.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.204000;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_3698e8bc57be5dc45e8a8352.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.953000;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_a7bd5dbd605aef879fbd5384.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.975000;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.257580px;}
.ls1{letter-spacing:0.502200px;}
.ls3{letter-spacing:0.556200px;}
.ls2{letter-spacing:0.959040px;}
.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;}
}
.ws0{word-spacing:-13.500000px;}
.wsb{word-spacing:-12.544200px;}
.wsc{word-spacing:-12.245580px;}
.ws2{word-spacing:-12.000000px;}
.ws1{word-spacing:-11.988000px;}
.ws3{word-spacing:0.000000px;}
.ws7{word-spacing:0.180900px;}
.ws9{word-spacing:0.680400px;}
.ws5{word-spacing:2.500200px;}
.ws8{word-spacing:2.761020px;}
.ws6{word-spacing:3.320460px;}
.wsa{word-spacing:3.504600px;}
.ws4{word-spacing:4.840560px;}
._11{margin-left:-6.316920px;}
._10{margin-left:-5.281200px;}
._1{margin-left:-3.994380px;}
._7{margin-left:-2.919240px;}
._3{margin-left:-1.010880px;}
._0{width:1.171260px;}
._2{width:2.235060px;}
._4{width:3.477060px;}
._9{width:4.483080px;}
._5{width:5.670000px;}
._6{width:6.949800px;}
._c{width:8.135100px;}
._a{width:9.163800px;}
._8{width:10.756800px;}
._e{width:13.950900px;}
._d{width:15.112440px;}
._12{width:16.137360px;}
._f{width:17.153640px;}
._14{width:18.458280px;}
._19{width:22.950540px;}
._13{width:26.690040px;}
._15{width:48.669120px;}
._17{width:50.271300px;}
._18{width:52.831440px;}
._16{width:61.615620px;}
._b{width:654.694800px;}
.fc0{color:rgb(35,31,32);}
.fs1{font-size:42.000000px;}
.fs2{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs3{font-size:57.000000px;}
.y0{bottom:0.000000px;}
.y17{bottom:57.260700px;}
.y16{bottom:67.760700px;}
.y15{bottom:126.647400px;}
.y51{bottom:128.293453px;}
.y78{bottom:131.293153px;}
.y92{bottom:138.793483px;}
.y6e{bottom:141.793453px;}
.y14{bottom:143.147100px;}
.y50{bottom:144.793153px;}
.y77{bottom:147.792853px;}
.y91{bottom:155.293183px;}
.y6d{bottom:158.293153px;}
.y13{bottom:159.646800px;}
.y4f{bottom:161.292853px;}
.y76{bottom:164.292553px;}
.y90{bottom:171.792883px;}
.y6c{bottom:174.792853px;}
.y12{bottom:176.146500px;}
.y4e{bottom:177.792553px;}
.y75{bottom:180.792253px;}
.y8f{bottom:188.292583px;}
.y6b{bottom:191.292553px;}
.y11{bottom:192.646200px;}
.y4d{bottom:194.292253px;}
.y8e{bottom:204.792283px;}
.y6a{bottom:207.792253px;}
.y10{bottom:209.145900px;}
.y4c{bottom:210.791953px;}
.y8d{bottom:221.291983px;}
.y69{bottom:224.291953px;}
.yf{bottom:225.645600px;}
.y4b{bottom:227.291653px;}
.y8c{bottom:237.791683px;}
.y68{bottom:240.791653px;}
.ye{bottom:242.145300px;}
.y4a{bottom:243.791353px;}
.y8b{bottom:254.291383px;}
.y67{bottom:257.291353px;}
.y49{bottom:260.291053px;}
.y8a{bottom:270.791083px;}
.yd{bottom:272.145000px;}
.y66{bottom:273.791053px;}
.y48{bottom:276.790753px;}
.y89{bottom:287.290783px;}
.yc{bottom:288.644700px;}
.y65{bottom:290.290753px;}
.y47{bottom:293.290453px;}
.y88{bottom:303.790483px;}
.yb{bottom:305.144400px;}
.y64{bottom:306.790453px;}
.y46{bottom:309.790153px;}
.y87{bottom:320.290183px;}
.ya{bottom:321.644100px;}
.y63{bottom:323.290153px;}
.y45{bottom:326.289853px;}
.y86{bottom:336.789883px;}
.y9{bottom:338.143800px;}
.y62{bottom:339.789853px;}
.y74{bottom:342.789553px;}
.y85{bottom:353.289583px;}
.y8{bottom:354.643500px;}
.y44{bottom:356.289553px;}
.y73{bottom:359.289253px;}
.y84{bottom:369.789283px;}
.y7{bottom:371.143200px;}
.y43{bottom:372.789253px;}
.y72{bottom:375.788953px;}
.y83{bottom:386.288983px;}
.y6{bottom:387.642900px;}
.y42{bottom:389.288953px;}
.y71{bottom:392.288923px;}
.y82{bottom:402.788953px;}
.y5{bottom:404.142870px;}
.y41{bottom:405.788923px;}
.y70{bottom:408.788893px;}
.y81{bottom:419.288923px;}
.y4{bottom:420.642840px;}
.y40{bottom:422.288893px;}
.y6f{bottom:425.288863px;}
.y80{bottom:435.788893px;}
.y3{bottom:437.142810px;}
.y3f{bottom:438.788863px;}
.y7f{bottom:452.288863px;}
.y2{bottom:453.642780px;}
.y3e{bottom:455.288833px;}
.y7e{bottom:468.788833px;}
.y1{bottom:470.142750px;}
.y3d{bottom:471.788803px;}
.y7d{bottom:485.288803px;}
.y3c{bottom:488.288773px;}
.y7c{bottom:501.788773px;}
.y3b{bottom:504.788743px;}
.y7b{bottom:518.288743px;}
.y3a{bottom:521.288713px;}
.y7a{bottom:534.788713px;}
.y39{bottom:537.788683px;}
.y24{bottom:548.262000px;}
.y79{bottom:551.288683px;}
.y38{bottom:554.288653px;}
.y23{bottom:560.262000px;}
.y61{bottom:567.788653px;}
.y37{bottom:570.788623px;}
.y22{bottom:572.262000px;}
.y21{bottom:584.262000px;}
.y60{bottom:584.288623px;}
.y36{bottom:587.288593px;}
.y20{bottom:596.262000px;}
.y5f{bottom:600.788593px;}
.y35{bottom:603.788563px;}
.y5e{bottom:617.288563px;}
.y34{bottom:620.288533px;}
.y5d{bottom:633.788533px;}
.y33{bottom:636.788503px;}
.y5c{bottom:650.288503px;}
.y32{bottom:653.288473px;}
.y1f{bottom:658.137000px;}
.y5b{bottom:666.788473px;}
.y31{bottom:669.788443px;}
.y1e{bottom:670.137000px;}
.y1d{bottom:682.137000px;}
.y5a{bottom:683.288443px;}
.y30{bottom:686.288413px;}
.y1c{bottom:694.137000px;}
.y59{bottom:699.788413px;}
.y2f{bottom:702.788383px;}
.y1b{bottom:706.137000px;}
.y58{bottom:716.288383px;}
.y2e{bottom:719.288353px;}
.y57{bottom:732.788353px;}
.y1a{bottom:735.012000px;}
.y2d{bottom:735.788323px;}
.y19{bottom:749.262000px;}
.y56{bottom:749.288323px;}
.y2c{bottom:752.288293px;}
.y55{bottom:765.788293px;}
.y2b{bottom:768.788398px;}
.y54{bottom:782.288398px;}
.y2a{bottom:785.288368px;}
.y53{bottom:798.788368px;}
.y29{bottom:815.288338px;}
.y28{bottom:831.788308px;}
.y27{bottom:848.288278px;}
.y26{bottom:864.788248px;}
.y25{bottom:881.288250px;}
.y52{bottom:926.445150px;}
.y18{bottom:926.457150px;}
.h4{height:32.130000px;}
.h8{height:36.720000px;}
.h5{height:45.264000px;}
.h7{height:46.656000px;}
.h3{height:50.922000px;}
.h9{height:50.922410px;}
.h2{height:51.894000px;}
.h6{height:55.404000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x1{left:75.909900px;}
.x7{left:86.111850px;}
.x2{left:97.169700px;}
.x10{left:100.466400px;}
.xa{left:126.713730px;}
.x4{left:165.123600px;}
.x3{left:226.720350px;}
.x5{left:234.857543px;}
.x8{left:277.697730px;}
.x9{left:279.857850px;}
.x6{left:301.181850px;}
.xf{left:324.086850px;}
.xe{left:405.999210px;}
.xc{left:419.331450px;}
.xd{left:421.359450px;}
.xb{left:428.667570px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.228960pt;}
.ls1{letter-spacing:0.446400pt;}
.ls3{letter-spacing:0.494400pt;}
.ls2{letter-spacing:0.852480pt;}
.ws0{word-spacing:-12.000000pt;}
.wsb{word-spacing:-11.150400pt;}
.wsc{word-spacing:-10.884960pt;}
.ws2{word-spacing:-10.666667pt;}
.ws1{word-spacing:-10.656000pt;}
.ws3{word-spacing:0.000000pt;}
.ws7{word-spacing:0.160800pt;}
.ws9{word-spacing:0.604800pt;}
.ws5{word-spacing:2.222400pt;}
.ws8{word-spacing:2.454240pt;}
.ws6{word-spacing:2.951520pt;}
.wsa{word-spacing:3.115200pt;}
.ws4{word-spacing:4.302720pt;}
._11{margin-left:-5.615040pt;}
._10{margin-left:-4.694400pt;}
._1{margin-left:-3.550560pt;}
._7{margin-left:-2.594880pt;}
._3{margin-left:-0.898560pt;}
._0{width:1.041120pt;}
._2{width:1.986720pt;}
._4{width:3.090720pt;}
._9{width:3.984960pt;}
._5{width:5.040000pt;}
._6{width:6.177600pt;}
._c{width:7.231200pt;}
._a{width:8.145600pt;}
._8{width:9.561600pt;}
._e{width:12.400800pt;}
._d{width:13.433280pt;}
._12{width:14.344320pt;}
._f{width:15.247680pt;}
._14{width:16.407360pt;}
._19{width:20.400480pt;}
._13{width:23.724480pt;}
._15{width:43.261440pt;}
._17{width:44.685600pt;}
._18{width:46.961280pt;}
._16{width:54.769440pt;}
._b{width:581.950933pt;}
.fs1{font-size:37.333333pt;}
.fs2{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs3{font-size:50.666667pt;}
.y0{bottom:0.000000pt;}
.y17{bottom:50.898400pt;}
.y16{bottom:60.231733pt;}
.y15{bottom:112.575467pt;}
.y51{bottom:114.038625pt;}
.y78{bottom:116.705025pt;}
.y92{bottom:123.371985pt;}
.y6e{bottom:126.038625pt;}
.y14{bottom:127.241867pt;}
.y50{bottom:128.705025pt;}
.y77{bottom:131.371425pt;}
.y91{bottom:138.038385pt;}
.y6d{bottom:140.705025pt;}
.y13{bottom:141.908267pt;}
.y4f{bottom:143.371425pt;}
.y76{bottom:146.037825pt;}
.y90{bottom:152.704785pt;}
.y6c{bottom:155.371425pt;}
.y12{bottom:156.574667pt;}
.y4e{bottom:158.037825pt;}
.y75{bottom:160.704225pt;}
.y8f{bottom:167.371185pt;}
.y6b{bottom:170.037825pt;}
.y11{bottom:171.241067pt;}
.y4d{bottom:172.704225pt;}
.y8e{bottom:182.037585pt;}
.y6a{bottom:184.704225pt;}
.y10{bottom:185.907467pt;}
.y4c{bottom:187.370625pt;}
.y8d{bottom:196.703985pt;}
.y69{bottom:199.370625pt;}
.yf{bottom:200.573867pt;}
.y4b{bottom:202.037025pt;}
.y8c{bottom:211.370385pt;}
.y68{bottom:214.037025pt;}
.ye{bottom:215.240267pt;}
.y4a{bottom:216.703425pt;}
.y8b{bottom:226.036785pt;}
.y67{bottom:228.703425pt;}
.y49{bottom:231.369825pt;}
.y8a{bottom:240.703185pt;}
.yd{bottom:241.906667pt;}
.y66{bottom:243.369825pt;}
.y48{bottom:246.036225pt;}
.y89{bottom:255.369585pt;}
.yc{bottom:256.573067pt;}
.y65{bottom:258.036225pt;}
.y47{bottom:260.702625pt;}
.y88{bottom:270.035985pt;}
.yb{bottom:271.239467pt;}
.y64{bottom:272.702625pt;}
.y46{bottom:275.369025pt;}
.y87{bottom:284.702385pt;}
.ya{bottom:285.905867pt;}
.y63{bottom:287.369025pt;}
.y45{bottom:290.035425pt;}
.y86{bottom:299.368785pt;}
.y9{bottom:300.572267pt;}
.y62{bottom:302.035425pt;}
.y74{bottom:304.701825pt;}
.y85{bottom:314.035185pt;}
.y8{bottom:315.238667pt;}
.y44{bottom:316.701825pt;}
.y73{bottom:319.368225pt;}
.y84{bottom:328.701585pt;}
.y7{bottom:329.905067pt;}
.y43{bottom:331.368225pt;}
.y72{bottom:334.034625pt;}
.y83{bottom:343.367985pt;}
.y6{bottom:344.571467pt;}
.y42{bottom:346.034625pt;}
.y71{bottom:348.701265pt;}
.y82{bottom:358.034625pt;}
.y5{bottom:359.238107pt;}
.y41{bottom:360.701265pt;}
.y70{bottom:363.367905pt;}
.y81{bottom:372.701265pt;}
.y4{bottom:373.904747pt;}
.y40{bottom:375.367905pt;}
.y6f{bottom:378.034545pt;}
.y80{bottom:387.367905pt;}
.y3{bottom:388.571387pt;}
.y3f{bottom:390.034545pt;}
.y7f{bottom:402.034545pt;}
.y2{bottom:403.238027pt;}
.y3e{bottom:404.701185pt;}
.y7e{bottom:416.701185pt;}
.y1{bottom:417.904667pt;}
.y3d{bottom:419.367825pt;}
.y7d{bottom:431.367825pt;}
.y3c{bottom:434.034465pt;}
.y7c{bottom:446.034465pt;}
.y3b{bottom:448.701105pt;}
.y7b{bottom:460.701105pt;}
.y3a{bottom:463.367745pt;}
.y7a{bottom:475.367745pt;}
.y39{bottom:478.034385pt;}
.y24{bottom:487.344000pt;}
.y79{bottom:490.034385pt;}
.y38{bottom:492.701025pt;}
.y23{bottom:498.010667pt;}
.y61{bottom:504.701025pt;}
.y37{bottom:507.367665pt;}
.y22{bottom:508.677333pt;}
.y21{bottom:519.344000pt;}
.y60{bottom:519.367665pt;}
.y36{bottom:522.034305pt;}
.y20{bottom:530.010667pt;}
.y5f{bottom:534.034305pt;}
.y35{bottom:536.700945pt;}
.y5e{bottom:548.700945pt;}
.y34{bottom:551.367585pt;}
.y5d{bottom:563.367585pt;}
.y33{bottom:566.034225pt;}
.y5c{bottom:578.034225pt;}
.y32{bottom:580.700865pt;}
.y1f{bottom:585.010667pt;}
.y5b{bottom:592.700865pt;}
.y31{bottom:595.367505pt;}
.y1e{bottom:595.677333pt;}
.y1d{bottom:606.344000pt;}
.y5a{bottom:607.367505pt;}
.y30{bottom:610.034145pt;}
.y1c{bottom:617.010667pt;}
.y59{bottom:622.034145pt;}
.y2f{bottom:624.700785pt;}
.y1b{bottom:627.677333pt;}
.y58{bottom:636.700785pt;}
.y2e{bottom:639.367425pt;}
.y57{bottom:651.367425pt;}
.y1a{bottom:653.344000pt;}
.y2d{bottom:654.034065pt;}
.y19{bottom:666.010667pt;}
.y56{bottom:666.034065pt;}
.y2c{bottom:668.700705pt;}
.y55{bottom:680.700705pt;}
.y2b{bottom:683.367465pt;}
.y54{bottom:695.367465pt;}
.y2a{bottom:698.034105pt;}
.y53{bottom:710.034105pt;}
.y29{bottom:724.700745pt;}
.y28{bottom:739.367385pt;}
.y27{bottom:754.034025pt;}
.y26{bottom:768.700665pt;}
.y25{bottom:783.367333pt;}
.y52{bottom:823.506800pt;}
.y18{bottom:823.517467pt;}
.h4{height:28.560000pt;}
.h8{height:32.640000pt;}
.h5{height:40.234667pt;}
.h7{height:41.472000pt;}
.h3{height:45.264000pt;}
.h9{height:45.264365pt;}
.h2{height:46.128000pt;}
.h6{height:49.248000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x1{left:67.475467pt;}
.x7{left:76.543867pt;}
.x2{left:86.373067pt;}
.x10{left:89.303467pt;}
.xa{left:112.634427pt;}
.x4{left:146.776533pt;}
.x3{left:201.529200pt;}
.x5{left:208.762260pt;}
.x8{left:246.842427pt;}
.x9{left:248.762533pt;}
.x6{left:267.717200pt;}
.xf{left:288.077200pt;}
.xe{left:360.888187pt;}
.xc{left:372.739067pt;}
.xd{left:374.541733pt;}
.xb{left:381.037840pt;}
}




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