
    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_83f1af90bca5194041b9ee5f.woff')format("woff");}.ff1{font-family:ff1;line-height:0.898000;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_15aba1bf36d37c511c25a191.woff')format("woff");}.ff2{font-family:ff2;line-height:0.945000;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_a91e1418af79b63483331f44.woff')format("woff");}.ff3{font-family:ff3;line-height:0.854000;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;}
}
.ws45{word-spacing:-25.823100px;}
.ws1a{word-spacing:-17.932800px;}
.ws46{word-spacing:-4.303872px;}
.ws23{word-spacing:-4.232141px;}
.ws37{word-spacing:-4.160410px;}
.ws30{word-spacing:-3.084442px;}
.wsf{word-spacing:-3.012710px;}
.ws48{word-spacing:-2.869248px;}
.ws38{word-spacing:-2.654054px;}
.wsd{word-spacing:-2.151936px;}
.ws43{word-spacing:-1.865011px;}
.ws1{word-spacing:-1.767274px;}
.ws3e{word-spacing:-1.721549px;}
.ws3a{word-spacing:-0.717312px;}
.ws7{word-spacing:-0.458182px;}
.ws3b{word-spacing:-0.430387px;}
.ws20{word-spacing:-0.286925px;}
.ws35{word-spacing:-0.215194px;}
.ws28{word-spacing:-0.143462px;}
.ws47{word-spacing:-0.071731px;}
.ws0{word-spacing:0.000000px;}
.ws29{word-spacing:0.215194px;}
.ws21{word-spacing:0.286925px;}
.ws10{word-spacing:0.358656px;}
.ws3c{word-spacing:0.573850px;}
.ws1d{word-spacing:0.645581px;}
.ws8{word-spacing:0.654546px;}
.ws1e{word-spacing:0.717312px;}
.ws2c{word-spacing:0.789043px;}
.ws13{word-spacing:0.932506px;}
.ws2d{word-spacing:1.342801px;}
.ws6{word-spacing:1.440001px;}
.ws1c{word-spacing:1.506355px;}
.ws4b{word-spacing:1.578086px;}
.ws44{word-spacing:1.649818px;}
.ws31{word-spacing:1.721549px;}
.ws3{word-spacing:1.767274px;}
.ws24{word-spacing:2.008474px;}
.ws9{word-spacing:2.029093px;}
.ws17{word-spacing:2.080205px;}
.ws1f{word-spacing:2.582323px;}
.ws2b{word-spacing:2.725786px;}
.ws26{word-spacing:2.797517px;}
.ws2e{word-spacing:3.084442px;}
.ws4c{word-spacing:3.156173px;}
.ws41{word-spacing:3.227904px;}
.ws2a{word-spacing:3.443098px;}
.ws12{word-spacing:3.514829px;}
.ws18{word-spacing:3.586560px;}
.ws1b{word-spacing:3.658291px;}
.ws15{word-spacing:3.801754px;}
.wse{word-spacing:3.873485px;}
.ws36{word-spacing:4.016947px;}
.ws3d{word-spacing:4.232141px;}
.ws4{word-spacing:4.385458px;}
.ws22{word-spacing:4.805990px;}
.ws11{word-spacing:5.021184px;}
.ws4d{word-spacing:5.092915px;}
.ws5{word-spacing:5.236368px;}
.ws14{word-spacing:5.308109px;}
.ws3f{word-spacing:5.451571px;}
.ws27{word-spacing:5.738496px;}
.ws16{word-spacing:6.097152px;}
.ws19{word-spacing:6.671002px;}
.ws39{word-spacing:7.029658px;}
.ws2{word-spacing:7.069097px;}
.wsb{word-spacing:7.244851px;}
.ws25{word-spacing:7.818701px;}
.ws34{word-spacing:8.177357px;}
.ws4a{word-spacing:8.607744px;}
.ws32{word-spacing:8.966400px;}
.ws40{word-spacing:9.396787px;}
.ws49{word-spacing:11.763917px;}
.ws33{word-spacing:12.050842px;}
.ws42{word-spacing:13.413734px;}
.ws2f{word-spacing:13.485466px;}
.wsa{word-spacing:18.865306px;}
.wsc{word-spacing:77.469300px;}
._19{margin-left:-9.253325px;}
._14{margin-left:-7.641146px;}
._4{margin-left:-5.236368px;}
._2{margin-left:-3.099375px;}
._0{margin-left:-1.239750px;}
._17{width:3.012710px;}
._18{width:14.011430px;}
._f{width:15.350477px;}
._a{width:16.870586px;}
._16{width:20.084736px;}
._9{width:21.469109px;}
._8{width:23.297950px;}
._6{width:24.934315px;}
._5{width:26.181840px;}
._e{width:27.401309px;}
._d{width:29.194598px;}
._11{width:30.485760px;}
._12{width:32.431816px;}
._7{width:33.493318px;}
._15{width:35.148288px;}
._b{width:36.982207px;}
._1{width:38.432250px;}
._3{width:41.432762px;}
._13{width:43.540838px;}
._10{width:45.346102px;}
._1a{width:47.988173px;}
._c{width:103.292400px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:65.454600px;}
.fs3{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs4{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y14{bottom:82.726500px;}
.y65{bottom:136.827000px;}
.y4e{bottom:152.800500px;}
.y64{bottom:169.330500px;}
.y36{bottom:178.578000px;}
.y4d{bottom:185.304000px;}
.y63{bottom:201.834000px;}
.y13{bottom:207.571500px;}
.y35{bottom:211.081500px;}
.y4c{bottom:217.806000px;}
.y12{bottom:240.075000px;}
.y34{bottom:243.585000px;}
.y2b{bottom:252.550500px;}
.y4b{bottom:259.276500px;}
.y62{bottom:261.057000px;}
.y33{bottom:276.088500px;}
.y2a{bottom:285.054000px;}
.y4a{bottom:291.778500px;}
.y11{bottom:299.478000px;}
.y29{bottom:317.557500px;}
.y49{bottom:324.282000px;}
.y10{bottom:329.962500px;}
.y61{bottom:346.356000px;}
.y28{bottom:350.061000px;}
.yf{bottom:360.448500px;}
.y48{bottom:365.751000px;}
.y60{bottom:378.859500px;}
.y32{bottom:382.563000px;}
.ye{bottom:390.934500px;}
.y27{bottom:391.530000px;}
.y47{bottom:398.254500px;}
.y5f{bottom:411.361500px;}
.y31{bottom:415.066500px;}
.yd{bottom:421.420500px;}
.y26{bottom:424.033500px;}
.y5e{bottom:443.865000px;}
.yc{bottom:451.906500px;}
.y25{bottom:456.537000px;}
.y46{bottom:457.479000px;}
.yb{bottom:482.391000px;}
.y5d{bottom:485.334000px;}
.y24{bottom:489.039000px;}
.ya{bottom:512.877000px;}
.y5c{bottom:517.837500px;}
.y30{bottom:521.542500px;}
.y45{bottom:542.776500px;}
.y9{bottom:543.363000px;}
.y23{bottom:548.263500px;}
.y5b{bottom:550.341000px;}
.y2f{bottom:554.046000px;}
.y8{bottom:573.849000px;}
.y44{bottom:575.280000px;}
.y43{bottom:607.783500px;}
.y5a{bottom:609.564000px;}
.y2e{bottom:613.269000px;}
.y7{bottom:623.052000px;}
.y22{bottom:633.561000px;}
.y72{bottom:635.026500px;}
.y42{bottom:640.287000px;}
.y21{bottom:666.064500px;}
.y71{bottom:667.530000px;}
.y41{bottom:681.756000px;}
.y59{bottom:694.863000px;}
.y20{bottom:698.568000px;}
.y70{bottom:700.032000px;}
.y6{bottom:701.358000px;}
.y40{bottom:714.259500px;}
.y58{bottom:727.366500px;}
.y1f{bottom:731.071500px;}
.y3f{bottom:746.761500px;}
.y6f{bottom:747.480000px;}
.y57{bottom:759.870000px;}
.y1e{bottom:763.573500px;}
.y6e{bottom:779.983500px;}
.y3e{bottom:788.232000px;}
.y2d{bottom:796.077000px;}
.y5{bottom:796.795500px;}
.y56{bottom:801.339000px;}
.y1d{bottom:805.044000px;}
.y3d{bottom:820.734000px;}
.y6d{bottom:827.430000px;}
.y55{bottom:833.842500px;}
.y4{bottom:837.144000px;}
.y1c{bottom:837.546000px;}
.y3c{bottom:853.237500px;}
.y6c{bottom:859.933500px;}
.y54{bottom:866.344500px;}
.y1b{bottom:870.049500px;}
.y3b{bottom:885.741000px;}
.y6b{bottom:892.435500px;}
.y53{bottom:898.848000px;}
.y1a{bottom:902.553000px;}
.y3{bottom:913.357500px;}
.y3a{bottom:918.244500px;}
.y2c{bottom:935.056500px;}
.y6a{bottom:939.883500px;}
.y52{bottom:940.317000px;}
.y19{bottom:944.022000px;}
.y39{bottom:959.713500px;}
.y2{bottom:969.397500px;}
.y69{bottom:972.387000px;}
.y51{bottom:972.820500px;}
.y18{bottom:976.525500px;}
.y38{bottom:992.217000px;}
.y68{bottom:1004.889000px;}
.y17{bottom:1009.029000px;}
.y1{bottom:1025.437500px;}
.y50{bottom:1032.045000px;}
.y16{bottom:1041.531000px;}
.y37{bottom:1051.440000px;}
.y67{bottom:1052.337000px;}
.y66{bottom:1084.839000px;}
.y15{bottom:1100.755500px;}
.y4f{bottom:1117.342500px;}
.h5{height:45.294583px;}
.h4{height:47.585494px;}
.h8{height:47.916442px;}
.h6{height:52.148582px;}
.h3{height:62.578124px;}
.h7{height:71.478341px;}
.h2{height:85.790700px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:106.299000px;}
.xe{left:120.507000px;}
.x2{left:125.674500px;}
.xa{left:132.637500px;}
.x1{left:140.845500px;}
.x9{left:150.196500px;}
.xd{left:151.489500px;}
.x8{left:174.742500px;}
.x4{left:259.305000px;}
.x5{left:295.102500px;}
.x3{left:372.429000px;}
.x6{left:387.591000px;}
.x7{left:416.013000px;}
.xc{left:441.973500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws45{word-spacing:-22.953867pt;}
.ws1a{word-spacing:-15.940267pt;}
.ws46{word-spacing:-3.825664pt;}
.ws23{word-spacing:-3.761903pt;}
.ws37{word-spacing:-3.698142pt;}
.ws30{word-spacing:-2.741726pt;}
.wsf{word-spacing:-2.677965pt;}
.ws48{word-spacing:-2.550443pt;}
.ws38{word-spacing:-2.359159pt;}
.wsd{word-spacing:-1.912832pt;}
.ws43{word-spacing:-1.657788pt;}
.ws1{word-spacing:-1.570910pt;}
.ws3e{word-spacing:-1.530266pt;}
.ws3a{word-spacing:-0.637611pt;}
.ws7{word-spacing:-0.407273pt;}
.ws3b{word-spacing:-0.382566pt;}
.ws20{word-spacing:-0.255044pt;}
.ws35{word-spacing:-0.191283pt;}
.ws28{word-spacing:-0.127522pt;}
.ws47{word-spacing:-0.063761pt;}
.ws0{word-spacing:0.000000pt;}
.ws29{word-spacing:0.191283pt;}
.ws21{word-spacing:0.255044pt;}
.ws10{word-spacing:0.318805pt;}
.ws3c{word-spacing:0.510089pt;}
.ws1d{word-spacing:0.573850pt;}
.ws8{word-spacing:0.581819pt;}
.ws1e{word-spacing:0.637611pt;}
.ws2c{word-spacing:0.701372pt;}
.ws13{word-spacing:0.828894pt;}
.ws2d{word-spacing:1.193601pt;}
.ws6{word-spacing:1.280001pt;}
.ws1c{word-spacing:1.338982pt;}
.ws4b{word-spacing:1.402743pt;}
.ws44{word-spacing:1.466505pt;}
.ws31{word-spacing:1.530266pt;}
.ws3{word-spacing:1.570910pt;}
.ws24{word-spacing:1.785310pt;}
.ws9{word-spacing:1.803638pt;}
.ws17{word-spacing:1.849071pt;}
.ws1f{word-spacing:2.295398pt;}
.ws2b{word-spacing:2.422921pt;}
.ws26{word-spacing:2.486682pt;}
.ws2e{word-spacing:2.741726pt;}
.ws4c{word-spacing:2.805487pt;}
.ws41{word-spacing:2.869248pt;}
.ws2a{word-spacing:3.060531pt;}
.ws12{word-spacing:3.124292pt;}
.ws18{word-spacing:3.188053pt;}
.ws1b{word-spacing:3.251814pt;}
.ws15{word-spacing:3.379337pt;}
.wse{word-spacing:3.443098pt;}
.ws36{word-spacing:3.570620pt;}
.ws3d{word-spacing:3.761903pt;}
.ws4{word-spacing:3.898185pt;}
.ws22{word-spacing:4.271991pt;}
.ws11{word-spacing:4.463275pt;}
.ws4d{word-spacing:4.527036pt;}
.ws5{word-spacing:4.654549pt;}
.ws14{word-spacing:4.718319pt;}
.ws3f{word-spacing:4.845841pt;}
.ws27{word-spacing:5.100885pt;}
.ws16{word-spacing:5.419691pt;}
.ws19{word-spacing:5.929779pt;}
.ws39{word-spacing:6.248585pt;}
.ws2{word-spacing:6.283642pt;}
.wsb{word-spacing:6.439868pt;}
.ws25{word-spacing:6.949956pt;}
.ws34{word-spacing:7.268762pt;}
.ws4a{word-spacing:7.651328pt;}
.ws32{word-spacing:7.970133pt;}
.ws40{word-spacing:8.352700pt;}
.ws49{word-spacing:10.456815pt;}
.ws33{word-spacing:10.711859pt;}
.ws42{word-spacing:11.923319pt;}
.ws2f{word-spacing:11.987081pt;}
.wsa{word-spacing:16.769161pt;}
.wsc{word-spacing:68.861600pt;}
._19{margin-left:-8.225178pt;}
._14{margin-left:-6.792130pt;}
._4{margin-left:-4.654549pt;}
._2{margin-left:-2.755000pt;}
._0{margin-left:-1.102000pt;}
._17{width:2.677965pt;}
._18{width:12.454605pt;}
._f{width:13.644868pt;}
._a{width:14.996076pt;}
._16{width:17.853099pt;}
._9{width:19.083652pt;}
._8{width:20.709289pt;}
._6{width:22.163836pt;}
._5{width:23.272747pt;}
._e{width:24.356719pt;}
._d{width:25.950754pt;}
._11{width:27.098453pt;}
._12{width:28.828281pt;}
._7{width:29.771838pt;}
._15{width:31.242923pt;}
._b{width:32.873073pt;}
._1{width:34.162000pt;}
._3{width:36.829122pt;}
._13{width:38.702967pt;}
._10{width:40.307646pt;}
._1a{width:42.656154pt;}
._c{width:91.815467pt;}
.fs2{font-size:58.181867pt;}
.fs3{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs4{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y14{bottom:73.534667pt;}
.y65{bottom:121.624000pt;}
.y4e{bottom:135.822667pt;}
.y64{bottom:150.516000pt;}
.y36{bottom:158.736000pt;}
.y4d{bottom:164.714667pt;}
.y63{bottom:179.408000pt;}
.y13{bottom:184.508000pt;}
.y35{bottom:187.628000pt;}
.y4c{bottom:193.605333pt;}
.y12{bottom:213.400000pt;}
.y34{bottom:216.520000pt;}
.y2b{bottom:224.489333pt;}
.y4b{bottom:230.468000pt;}
.y62{bottom:232.050667pt;}
.y33{bottom:245.412000pt;}
.y2a{bottom:253.381333pt;}
.y4a{bottom:259.358667pt;}
.y11{bottom:266.202667pt;}
.y29{bottom:282.273333pt;}
.y49{bottom:288.250667pt;}
.y10{bottom:293.300000pt;}
.y61{bottom:307.872000pt;}
.y28{bottom:311.165333pt;}
.yf{bottom:320.398667pt;}
.y48{bottom:325.112000pt;}
.y60{bottom:336.764000pt;}
.y32{bottom:340.056000pt;}
.ye{bottom:347.497333pt;}
.y27{bottom:348.026667pt;}
.y47{bottom:354.004000pt;}
.y5f{bottom:365.654667pt;}
.y31{bottom:368.948000pt;}
.yd{bottom:374.596000pt;}
.y26{bottom:376.918667pt;}
.y5e{bottom:394.546667pt;}
.yc{bottom:401.694667pt;}
.y25{bottom:405.810667pt;}
.y46{bottom:406.648000pt;}
.yb{bottom:428.792000pt;}
.y5d{bottom:431.408000pt;}
.y24{bottom:434.701333pt;}
.ya{bottom:455.890667pt;}
.y5c{bottom:460.300000pt;}
.y30{bottom:463.593333pt;}
.y45{bottom:482.468000pt;}
.y9{bottom:482.989333pt;}
.y23{bottom:487.345333pt;}
.y5b{bottom:489.192000pt;}
.y2f{bottom:492.485333pt;}
.y8{bottom:510.088000pt;}
.y44{bottom:511.360000pt;}
.y43{bottom:540.252000pt;}
.y5a{bottom:541.834667pt;}
.y2e{bottom:545.128000pt;}
.y7{bottom:553.824000pt;}
.y22{bottom:563.165333pt;}
.y72{bottom:564.468000pt;}
.y42{bottom:569.144000pt;}
.y21{bottom:592.057333pt;}
.y71{bottom:593.360000pt;}
.y41{bottom:606.005333pt;}
.y59{bottom:617.656000pt;}
.y20{bottom:620.949333pt;}
.y70{bottom:622.250667pt;}
.y6{bottom:623.429333pt;}
.y40{bottom:634.897333pt;}
.y58{bottom:646.548000pt;}
.y1f{bottom:649.841333pt;}
.y3f{bottom:663.788000pt;}
.y6f{bottom:664.426667pt;}
.y57{bottom:675.440000pt;}
.y1e{bottom:678.732000pt;}
.y6e{bottom:693.318667pt;}
.y3e{bottom:700.650667pt;}
.y2d{bottom:707.624000pt;}
.y5{bottom:708.262667pt;}
.y56{bottom:712.301333pt;}
.y1d{bottom:715.594667pt;}
.y3d{bottom:729.541333pt;}
.y6d{bottom:735.493333pt;}
.y55{bottom:741.193333pt;}
.y4{bottom:744.128000pt;}
.y1c{bottom:744.485333pt;}
.y3c{bottom:758.433333pt;}
.y6c{bottom:764.385333pt;}
.y54{bottom:770.084000pt;}
.y1b{bottom:773.377333pt;}
.y3b{bottom:787.325333pt;}
.y6b{bottom:793.276000pt;}
.y53{bottom:798.976000pt;}
.y1a{bottom:802.269333pt;}
.y3{bottom:811.873333pt;}
.y3a{bottom:816.217333pt;}
.y2c{bottom:831.161333pt;}
.y6a{bottom:835.452000pt;}
.y52{bottom:835.837333pt;}
.y19{bottom:839.130667pt;}
.y39{bottom:853.078667pt;}
.y2{bottom:861.686667pt;}
.y69{bottom:864.344000pt;}
.y51{bottom:864.729333pt;}
.y18{bottom:868.022667pt;}
.y38{bottom:881.970667pt;}
.y68{bottom:893.234667pt;}
.y17{bottom:896.914667pt;}
.y1{bottom:911.500000pt;}
.y50{bottom:917.373333pt;}
.y16{bottom:925.805333pt;}
.y37{bottom:934.613333pt;}
.y67{bottom:935.410667pt;}
.y66{bottom:964.301333pt;}
.y15{bottom:978.449333pt;}
.y4f{bottom:993.193333pt;}
.h5{height:40.261852pt;}
.h4{height:42.298217pt;}
.h8{height:42.592393pt;}
.h6{height:46.354295pt;}
.h3{height:55.624999pt;}
.h7{height:63.536303pt;}
.h2{height:76.258400pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:94.488000pt;}
.xe{left:107.117333pt;}
.x2{left:111.710667pt;}
.xa{left:117.900000pt;}
.x1{left:125.196000pt;}
.x9{left:133.508000pt;}
.xd{left:134.657333pt;}
.x8{left:155.326667pt;}
.x4{left:230.493333pt;}
.x5{left:262.313333pt;}
.x3{left:331.048000pt;}
.x6{left:344.525333pt;}
.x7{left:369.789333pt;}
.xc{left:392.865333pt;}
}




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