
    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_2f81928501b921382ea44684.woff')format("woff");}.ff1{font-family:ff1;line-height:0.987000;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_595adc40edc0a939f71fc29c.woff')format("woff");}.ff2{font-family:ff2;line-height:1.085000;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_691663d2cf69734cb901e5ee.woff')format("woff");}.ff3{font-family:ff3;line-height:1.067000;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_aa6320339cda4edc92eaa285.woff')format("woff");}.ff4{font-family:ff4;line-height:0.997000;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_9ef5f6edb911cec9d79d6065.woff')format("woff");}.ff5{font-family:ff5;line-height:0.997000;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_d279ae4fe9434e4631a618b4.woff')format("woff");}.ff6{font-family:ff6;line-height:0.997000;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;}
.ff7{font-family:sans-serif;visibility:hidden;}
.ff8{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff9;src:url('chunks/assets/font_657a1c81d646bb1b680f5039.woff')format("woff");}.ff9{font-family:ff9;line-height:0.992000;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;}
.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:-101.259400px;}
.ws3{word-spacing:-22.726299px;}
.ws1{word-spacing:-17.975542px;}
.ws4{word-spacing:-17.438047px;}
.ws2{word-spacing:-13.826542px;}
.ws5{word-spacing:0.000000px;}
._5{margin-left:-7.963207px;}
._e{margin-left:-6.618685px;}
._4{margin-left:-4.708641px;}
._3{margin-left:-3.429216px;}
._0{margin-left:-1.845353px;}
._2{width:1.266414px;}
._1{width:2.508337px;}
._7{width:4.526287px;}
._8{width:5.636690px;}
._f{width:6.789407px;}
._10{width:8.124977px;}
._b{width:12.295413px;}
._6{width:16.480804px;}
._9{width:20.877594px;}
._a{width:22.055310px;}
._13{width:23.608114px;}
._12{width:37.685468px;}
._11{width:38.970897px;}
._d{width:44.739517px;}
._c{width:45.972646px;}
.fc3{color:transparent;}
.fc2{color:rgb(58,161,126);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:58.454997px;}
.fs5{font-size:59.984997px;}
.fs4{font-size:65.969996px;}
.fsb{font-size:77.714997px;}
.fs1{font-size:77.984997px;}
.fsa{font-size:82.254937px;}
.fs7{font-size:97.440820px;}
.fs3{font-size:101.969996px;}
.fs9{font-size:107.199522px;}
.fs6{font-size:112.319991px;}
.fs2{font-size:113.984995px;}
.fs0{font-size:160.474485px;}
.y0{bottom:0.000000px;}
.y12{bottom:0.000008px;}
.y45{bottom:4.870319px;}
.y2f{bottom:5.671754px;}
.y42{bottom:6.429823px;}
.y21{bottom:11.250000px;}
.y18{bottom:12.374999px;}
.y7{bottom:13.499999px;}
.y11{bottom:15.749913px;}
.y9{bottom:21.374999px;}
.y20{bottom:31.499999px;}
.y44{bottom:33.283076px;}
.y17{bottom:34.874999px;}
.y3a{bottom:39.931522px;}
.y6{bottom:40.499998px;}
.y10{bottom:42.749912px;}
.y1f{bottom:51.749998px;}
.y16{bottom:57.374998px;}
.y39{bottom:60.181521px;}
.y5{bottom:67.499997px;}
.yf{bottom:69.749911px;}
.y1e{bottom:71.999997px;}
.y27{bottom:79.874997px;}
.y38{bottom:80.431521px;}
.y1d{bottom:92.249996px;}
.y4{bottom:94.499996px;}
.y2{bottom:94.908078px;}
.ye{bottom:96.749910px;}
.y26{bottom:102.374996px;}
.y2d{bottom:106.681640px;}
.y1c{bottom:112.499995px;}
.yd{bottom:123.749908px;}
.y25{bottom:124.874995px;}
.y2c{bottom:126.931639px;}
.y1b{bottom:132.749994px;}
.y2b{bottom:147.181638px;}
.y24{bottom:147.374994px;}
.yc{bottom:150.749907px;}
.y2a{bottom:167.431637px;}
.y23{bottom:169.874993px;}
.yb{bottom:177.749906px;}
.y29{bottom:204.050223px;}
.y32{bottom:264.634621px;}
.y31{bottom:284.884620px;}
.y30{bottom:305.134619px;}
.y2e{bottom:328.499994px;}
.y3f{bottom:404.762671px;}
.y3e{bottom:425.012670px;}
.y3d{bottom:465.512669px;}
.y3c{bottom:485.762668px;}
.y3b{bottom:506.012667px;}
.y41{bottom:540.539985px;}
.y5b{bottom:613.445230px;}
.y5a{bottom:640.445229px;}
.y59{bottom:667.445228px;}
.y58{bottom:694.445227px;}
.y57{bottom:721.445226px;}
.y56{bottom:748.445225px;}
.y55{bottom:775.445224px;}
.y54{bottom:802.445223px;}
.y53{bottom:847.445401px;}
.y52{bottom:918.199114px;}
.y51{bottom:945.199113px;}
.y50{bottom:972.199111px;}
.y4f{bottom:999.199110px;}
.y4e{bottom:1026.199109px;}
.y4d{bottom:1073.455623px;}
.ya{bottom:1132.359923px;}
.y4c{bottom:1346.592688px;}
.y1a{bottom:1397.806653px;}
.y22{bottom:1531.089160px;}
.y19{bottom:1719.894140px;}
.y15{bottom:1786.846757px;}
.y14{bottom:1859.971754px;}
.y13{bottom:1947.496203px;}
.y3{bottom:1983.514929px;}
.y43{bottom:2097.179920px;}
.y8{bottom:2174.084082px;}
.y4b{bottom:2262.134084px;}
.y4a{bottom:2289.134083px;}
.y49{bottom:2316.134081px;}
.y48{bottom:2343.134080px;}
.y47{bottom:2370.134079px;}
.y46{bottom:2397.134078px;}
.y37{bottom:2466.659075px;}
.y36{bottom:2489.159074px;}
.y35{bottom:2511.659073px;}
.y34{bottom:2534.159072px;}
.y33{bottom:2556.659071px;}
.y40{bottom:2595.172086px;}
.y1{bottom:2599.739899px;}
.y5c{bottom:2669.217484px;}
.y28{bottom:2720.305049px;}
.h14{height:28.799999px;}
.h1a{height:32.039999px;}
.h19{height:52.375677px;}
.h17{height:53.427867px;}
.h1c{height:53.639998px;}
.h11{height:53.746557px;}
.he{height:54.491217px;}
.h10{height:54.826287px;}
.h18{height:55.532247px;}
.h16{height:59.109117px;}
.h7{height:62.999997px;}
.hc{height:67.499997px;}
.h1f{height:69.632637px;}
.h6{height:69.874557px;}
.h1e{height:71.031507px;}
.h5{height:71.278287px;}
.h1d{height:75.181012px;}
.hd{height:79.874997px;}
.h20{height:84.227216px;}
.h15{height:89.060910px;}
.hb{height:93.200576px;}
.h1b{height:97.980363px;}
.h13{height:102.660472px;}
.h8{height:104.182286px;}
.h4{height:121.499995px;}
.h3{height:132.551925px;}
.hf{height:155.249994px;}
.h2{height:185.399992px;}
.h12{height:192.374992px;}
.h9{height:206.999905px;}
.ha{height:2812.499883px;}
.h0{height:2812.499891px;}
.h1{height:2812.500000px;}
.w9{width:128.159995px;}
.w1{width:190.079992px;}
.wa{width:195.479992px;}
.w8{width:295.559988px;}
.w6{width:701.999971px;}
.w7{width:717.749970px;}
.w2{width:836.999965px;}
.w4{width:838.124965px;}
.w3{width:839.249965px;}
.w5{width:899.999963px;}
.w0{width:900.000000px;}
.x0{left:0.000000px;}
.x9{left:4.500000px;}
.xc{left:17.913901px;}
.x6{left:25.132266px;}
.x12{left:28.799999px;}
.x2{left:30.405703px;}
.x1{left:32.039999px;}
.x4{left:37.634764px;}
.x3{left:39.764991px;}
.x14{left:59.029078px;}
.x17{left:62.099286px;}
.x16{left:65.398656px;}
.xa{left:92.485357px;}
.x7{left:93.942167px;}
.x8{left:96.681517px;}
.x15{left:102.703866px;}
.x13{left:123.839995px;}
.x5{left:195.714836px;}
.xb{left:266.099094px;}
.x18{left:315.568662px;}
.xd{left:521.038587px;}
.xe{left:626.577646px;}
.xf{left:641.185067px;}
.x10{left:736.159672px;}
.x11{left:750.767099px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-90.008356pt;}
.ws3{word-spacing:-20.201154pt;}
.ws1{word-spacing:-15.978259pt;}
.ws4{word-spacing:-15.500486pt;}
.ws2{word-spacing:-12.290259pt;}
.ws5{word-spacing:0.000000pt;}
._5{margin-left:-7.078406pt;}
._e{margin-left:-5.883275pt;}
._4{margin-left:-4.185458pt;}
._3{margin-left:-3.048192pt;}
._0{margin-left:-1.640314pt;}
._2{width:1.125702pt;}
._1{width:2.229633pt;}
._7{width:4.023367pt;}
._8{width:5.010391pt;}
._f{width:6.035029pt;}
._10{width:7.222202pt;}
._b{width:10.929256pt;}
._6{width:14.649603pt;}
._9{width:18.557861pt;}
._a{width:19.604720pt;}
._13{width:20.984990pt;}
._12{width:33.498194pt;}
._11{width:34.640797pt;}
._d{width:39.768459pt;}
._c{width:40.864574pt;}
.fs8{font-size:51.959997pt;}
.fs5{font-size:53.319997pt;}
.fs4{font-size:58.639997pt;}
.fsb{font-size:69.079997pt;}
.fs1{font-size:69.319997pt;}
.fsa{font-size:73.115499pt;}
.fs7{font-size:86.614062pt;}
.fs3{font-size:90.639996pt;}
.fs9{font-size:95.288464pt;}
.fs6{font-size:99.839992pt;}
.fs2{font-size:101.319996pt;}
.fs0{font-size:142.643987pt;}
.y0{bottom:0.000000pt;}
.y12{bottom:0.000007pt;}
.y45{bottom:4.329173pt;}
.y2f{bottom:5.041560pt;}
.y42{bottom:5.715398pt;}
.y21{bottom:10.000000pt;}
.y18{bottom:11.000000pt;}
.y7{bottom:11.999999pt;}
.y11{bottom:13.999923pt;}
.y9{bottom:18.999999pt;}
.y20{bottom:27.999999pt;}
.y44{bottom:29.584957pt;}
.y17{bottom:30.999999pt;}
.y3a{bottom:35.494687pt;}
.y6{bottom:35.999998pt;}
.y10{bottom:37.999922pt;}
.y1f{bottom:45.999998pt;}
.y16{bottom:50.999998pt;}
.y39{bottom:53.494686pt;}
.y5{bottom:59.999997pt;}
.yf{bottom:61.999921pt;}
.y1e{bottom:63.999997pt;}
.y27{bottom:70.999997pt;}
.y38{bottom:71.494685pt;}
.y1d{bottom:81.999997pt;}
.y4{bottom:83.999996pt;}
.y2{bottom:84.362736pt;}
.ye{bottom:85.999920pt;}
.y26{bottom:90.999996pt;}
.y2d{bottom:94.828124pt;}
.y1c{bottom:99.999996pt;}
.yd{bottom:109.999919pt;}
.y25{bottom:110.999995pt;}
.y2c{bottom:112.828123pt;}
.y1b{bottom:117.999995pt;}
.y2b{bottom:130.828123pt;}
.y24{bottom:130.999995pt;}
.yc{bottom:133.999918pt;}
.y2a{bottom:148.828122pt;}
.y23{bottom:150.999994pt;}
.yb{bottom:157.999917pt;}
.y29{bottom:181.377976pt;}
.y32{bottom:235.230774pt;}
.y31{bottom:253.230773pt;}
.y30{bottom:271.230773pt;}
.y2e{bottom:291.999995pt;}
.y3f{bottom:359.789041pt;}
.y3e{bottom:377.789040pt;}
.y3d{bottom:413.789039pt;}
.y3c{bottom:431.789038pt;}
.y3b{bottom:449.789037pt;}
.y41{bottom:480.479987pt;}
.y5b{bottom:545.284649pt;}
.y5a{bottom:569.284648pt;}
.y59{bottom:593.284647pt;}
.y58{bottom:617.284646pt;}
.y57{bottom:641.284645pt;}
.y56{bottom:665.284644pt;}
.y55{bottom:689.284643pt;}
.y54{bottom:713.284642pt;}
.y53{bottom:753.284801pt;}
.y52{bottom:816.176990pt;}
.y51{bottom:840.176989pt;}
.y50{bottom:864.176988pt;}
.y4f{bottom:888.176987pt;}
.y4e{bottom:912.176986pt;}
.y4d{bottom:954.182776pt;}
.ya{bottom:1006.542154pt;}
.y4c{bottom:1196.971278pt;}
.y1a{bottom:1242.494803pt;}
.y22{bottom:1360.968142pt;}
.y19{bottom:1528.794791pt;}
.y15{bottom:1588.308229pt;}
.y14{bottom:1653.308226pt;}
.y13{bottom:1731.107736pt;}
.y3{bottom:1763.124381pt;}
.y43{bottom:1864.159929pt;}
.y8{bottom:1932.519184pt;}
.y4b{bottom:2010.785852pt;}
.y4a{bottom:2034.785851pt;}
.y49{bottom:2058.785850pt;}
.y48{bottom:2082.785849pt;}
.y47{bottom:2106.785848pt;}
.y46{bottom:2130.785847pt;}
.y37{bottom:2192.585845pt;}
.y36{bottom:2212.585844pt;}
.y35{bottom:2232.585843pt;}
.y34{bottom:2252.585842pt;}
.y33{bottom:2272.585841pt;}
.y40{bottom:2306.819632pt;}
.y1{bottom:2310.879911pt;}
.y5c{bottom:2372.637764pt;}
.y28{bottom:2418.048933pt;}
.h14{height:25.599999pt;}
.h1a{height:28.479999pt;}
.h19{height:46.556157pt;}
.h17{height:47.491437pt;}
.h1c{height:47.679998pt;}
.h11{height:47.774718pt;}
.he{height:48.436637pt;}
.h10{height:48.734478pt;}
.h18{height:49.361997pt;}
.h16{height:52.541437pt;}
.h7{height:55.999998pt;}
.hc{height:59.999997pt;}
.h1f{height:61.895677pt;}
.h6{height:62.110717pt;}
.h1e{height:63.139117pt;}
.h5{height:63.358477pt;}
.h1d{height:66.827566pt;}
.hd{height:70.999997pt;}
.h20{height:74.868637pt;}
.h15{height:79.165253pt;}
.hb{height:82.844957pt;}
.h1b{height:87.093656pt;}
.h13{height:91.253753pt;}
.h8{height:92.606476pt;}
.h4{height:107.999995pt;}
.h3{height:117.823933pt;}
.hf{height:137.999994pt;}
.h2{height:164.799993pt;}
.h12{height:170.999993pt;}
.h9{height:183.999916pt;}
.ha{height:2499.999896pt;}
.h0{height:2499.999903pt;}
.h1{height:2500.000000pt;}
.w9{width:113.919995pt;}
.w1{width:168.959993pt;}
.wa{width:173.759993pt;}
.w8{width:262.719989pt;}
.w6{width:623.999974pt;}
.w7{width:637.999973pt;}
.w2{width:743.999969pt;}
.w4{width:744.999969pt;}
.w3{width:745.999969pt;}
.w5{width:799.999967pt;}
.w0{width:800.000000pt;}
.x0{left:0.000000pt;}
.x9{left:4.000000pt;}
.xc{left:15.923467pt;}
.x6{left:22.339792pt;}
.x12{left:25.599999pt;}
.x2{left:27.027292pt;}
.x1{left:28.479999pt;}
.x4{left:33.453124pt;}
.x3{left:35.346659pt;}
.x14{left:52.470291pt;}
.x17{left:55.199365pt;}
.x16{left:58.132139pt;}
.xa{left:82.209206pt;}
.x7{left:83.504148pt;}
.x8{left:85.939126pt;}
.x15{left:91.292325pt;}
.x13{left:110.079995pt;}
.x5{left:173.968743pt;}
.xb{left:236.532528pt;}
.x18{left:280.505477pt;}
.xd{left:463.145411pt;}
.xe{left:556.957907pt;}
.xf{left:569.942282pt;}
.x10{left:654.364153pt;}
.x11{left:667.348533pt;}
}




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