
    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_33eb57ee89c360af96f4d81c.woff')format("woff");}.ff1{font-family:ff1;line-height:1.005859;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_4df83d4e8390fc1976426708.woff')format("woff");}.ff2{font-family:ff2;line-height:1.119629;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_dbbc4c85f22fdfd2e231de0d.woff')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_be2a2b6585b18a4979ed6f6a.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_bfd66d8c1f23a6f4e351fd61.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_8730c9dfeb65271a64c257ec.woff')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_6e1e351156c6070199e0f693.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;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;}
.ls14{letter-spacing:-0.034560px;}
.ls15{letter-spacing:-0.025920px;}
.ls12{letter-spacing:-0.017280px;}
.ls4{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.008640px;}
.lse{letter-spacing:0.017280px;}
.ls11{letter-spacing:0.025920px;}
.lsd{letter-spacing:0.034560px;}
.ls16{letter-spacing:0.702000px;}
.ls13{letter-spacing:0.720000px;}
.ls1{letter-spacing:1.440000px;}
.ls0{letter-spacing:2.099520px;}
.ls5{letter-spacing:2.142000px;}
.ls2{letter-spacing:2.160000px;}
.ls7{letter-spacing:2.178000px;}
.ls6{letter-spacing:2.184000px;}
.lsb{letter-spacing:2.185920px;}
.ls8{letter-spacing:2.196000px;}
.lsf{letter-spacing:2.880000px;}
.ls9{letter-spacing:4.320000px;}
.ls3{letter-spacing:5.040000px;}
.lsa{letter-spacing:27.360000px;}
.lsc{letter-spacing:47.502720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9{word-spacing:-22.320000px;}
.ws8{word-spacing:-21.636000px;}
.ws4{word-spacing:-21.624000px;}
.ws6{word-spacing:-21.618000px;}
.ws2{word-spacing:-21.600000px;}
.ws3{word-spacing:-21.582000px;}
.ws0{word-spacing:-21.539520px;}
.ws7{word-spacing:-20.880000px;}
.wsc{word-spacing:-20.142000px;}
.wsd{word-spacing:-19.474560px;}
.wsa{word-spacing:-19.457280px;}
.ws1{word-spacing:-19.440000px;}
.wsb{word-spacing:-19.422720px;}
.ws5{word-spacing:0.000000px;}
._b{margin-left:-2.620800px;}
._0{margin-left:-1.126080px;}
._4{width:1.784640px;}
._5{width:2.896320px;}
._13{width:3.931680px;}
._7{width:4.976640px;}
._6{width:6.627840px;}
._14{width:8.361600px;}
._c{width:9.679680px;}
._e{width:10.981440px;}
._d{width:12.692640px;}
._1b{width:14.019840px;}
._a{width:15.085440px;}
._f{width:16.553280px;}
._1a{width:17.972160px;}
._19{width:19.756320px;}
._23{width:20.914560px;}
._18{width:22.169280px;}
._17{width:23.184000px;}
._1c{width:24.321360px;}
._1e{width:25.404960px;}
._16{width:26.543040px;}
._22{width:28.055040px;}
._11{width:30.293760px;}
._12{width:31.500480px;}
._8{width:33.048000px;}
._1f{width:34.064640px;}
._24{width:36.547200px;}
._15{width:40.006080px;}
._2{width:42.811200px;}
._1d{width:44.282880px;}
._10{width:45.411840px;}
._9{width:46.808640px;}
._20{width:49.610880px;}
._21{width:50.809920px;}
._26{width:64.099680px;}
._25{width:65.449920px;}
._3{width:224.065920px;}
._1{width:1223.911200px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(84,142,213);}
.fs0{font-size:66.240000px;}
.fs1{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y5{bottom:35.280000px;}
.y4{bottom:55.440000px;}
.y5b{bottom:128.196000px;}
.y56{bottom:140.436000px;}
.y46{bottom:140.616000px;}
.y2d{bottom:143.676000px;}
.y5a{bottom:154.110000px;}
.y55{bottom:166.170000px;}
.y45{bottom:166.350000px;}
.y2c{bottom:169.590000px;}
.y59{bottom:179.850000px;}
.y54{bottom:191.910000px;}
.y44{bottom:192.090000px;}
.y2b{bottom:195.330000px;}
.y58{bottom:205.590000px;}
.y74{bottom:209.190000px;}
.y43{bottom:217.830000px;}
.y2a{bottom:221.070000px;}
.y57{bottom:226.650000px;}
.y73{bottom:234.930000px;}
.y53{bottom:243.570000px;}
.y42{bottom:243.750000px;}
.y29{bottom:246.810000px;}
.y72{bottom:260.670000px;}
.y52{bottom:269.310000px;}
.y41{bottom:269.490000px;}
.y28{bottom:272.730000px;}
.y71{bottom:286.590000px;}
.y51{bottom:295.050000px;}
.y40{bottom:295.230000px;}
.y27{bottom:298.470000px;}
.y3f{bottom:320.970000px;}
.y26{bottom:324.210000px;}
.y70{bottom:326.730000px;}
.y50{bottom:346.755000px;}
.y3e{bottom:346.935000px;}
.y25{bottom:349.995000px;}
.y4f{bottom:372.495000px;}
.y3d{bottom:372.675000px;}
.y24{bottom:375.915000px;}
.y6f{bottom:376.275000px;}
.y3c{bottom:398.415000px;}
.y23{bottom:401.655000px;}
.y6e{bottom:402.015000px;}
.y3b{bottom:424.155000px;}
.y22{bottom:427.395000px;}
.y6d{bottom:427.935000px;}
.y4e{bottom:449.895000px;}
.y3a{bottom:450.075000px;}
.y21{bottom:453.315000px;}
.y6c{bottom:453.675000px;}
.y4d{bottom:475.635000px;}
.y39{bottom:475.815000px;}
.y20{bottom:479.055000px;}
.y6b{bottom:479.415000px;}
.y38{bottom:501.555000px;}
.y1f{bottom:504.795000px;}
.y6a{bottom:505.155000px;}
.y37{bottom:527.295000px;}
.y1e{bottom:530.535000px;}
.y69{bottom:531.075000px;}
.y4c{bottom:553.035000px;}
.y36{bottom:553.215000px;}
.y1d{bottom:556.455000px;}
.y68{bottom:556.815000px;}
.y4b{bottom:578.775000px;}
.y35{bottom:578.955000px;}
.y1c{bottom:582.195000px;}
.y67{bottom:582.555000px;}
.y34{bottom:604.725000px;}
.y1b{bottom:607.965000px;}
.y66{bottom:608.325000px;}
.y4a{bottom:630.465000px;}
.y33{bottom:630.645000px;}
.y1a{bottom:633.705000px;}
.y65{bottom:634.245000px;}
.y49{bottom:656.205000px;}
.y32{bottom:656.385000px;}
.y19{bottom:659.625000px;}
.y64{bottom:659.985000px;}
.y48{bottom:681.945000px;}
.y31{bottom:682.125000px;}
.y18{bottom:685.365000px;}
.y63{bottom:685.725000px;}
.y47{bottom:703.185000px;}
.y30{bottom:703.365000px;}
.y17{bottom:711.105000px;}
.y62{bottom:711.645000px;}
.y16{bottom:736.845000px;}
.y61{bottom:737.385000px;}
.y15{bottom:762.765000px;}
.y60{bottom:763.125000px;}
.y14{bottom:788.505000px;}
.y5f{bottom:788.865000px;}
.y13{bottom:814.245000px;}
.y5e{bottom:814.785000px;}
.y12{bottom:839.985000px;}
.y5d{bottom:840.525000px;}
.y5c{bottom:861.765000px;}
.y11{bottom:865.950000px;}
.y10{bottom:891.690000px;}
.yf{bottom:917.430000px;}
.ye{bottom:943.170000px;}
.yd{bottom:969.090000px;}
.yc{bottom:994.830000px;}
.yb{bottom:1020.570000px;}
.ya{bottom:1046.490000px;}
.y9{bottom:1072.230000px;}
.y8{bottom:1097.430000px;}
.y2f{bottom:1097.970000px;}
.y7{bottom:1123.710000px;}
.y6{bottom:1149.120000px;}
.y2e{bottom:1149.660000px;}
.y3{bottom:1171.800000px;}
.y2{bottom:1191.600000px;}
.y1{bottom:1226.340000px;}
.h2{height:49.680000px;}
.h7{height:54.295313px;}
.h3{height:65.884219px;}
.h6{height:76.279219px;}
.h5{height:76.317188px;}
.h4{height:78.367500px;}
.h8{height:79.925027px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:85.140000px;}
.x5{left:127.656000px;}
.xd{left:141.876000px;}
.xc{left:148.896000px;}
.x9{left:162.210000px;}
.x6{left:188.850000px;}
.x2{left:208.650000px;}
.x1{left:309.675000px;}
.xa{left:319.575000px;}
.xb{left:327.315000px;}
.x8{left:359.895000px;}
.x12{left:421.275000px;}
.x4{left:465.915000px;}
.x7{left:489.165000px;}
.x11{left:693.870000px;}
.x10{left:714.210000px;}
.xf{left:750.210000px;}
.xe{left:759.210000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls14{letter-spacing:-0.030720pt;}
.ls15{letter-spacing:-0.023040pt;}
.ls12{letter-spacing:-0.015360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.007680pt;}
.lse{letter-spacing:0.015360pt;}
.ls11{letter-spacing:0.023040pt;}
.lsd{letter-spacing:0.030720pt;}
.ls16{letter-spacing:0.624000pt;}
.ls13{letter-spacing:0.640000pt;}
.ls1{letter-spacing:1.280000pt;}
.ls0{letter-spacing:1.866240pt;}
.ls5{letter-spacing:1.904000pt;}
.ls2{letter-spacing:1.920000pt;}
.ls7{letter-spacing:1.936000pt;}
.ls6{letter-spacing:1.941333pt;}
.lsb{letter-spacing:1.943040pt;}
.ls8{letter-spacing:1.952000pt;}
.lsf{letter-spacing:2.560000pt;}
.ls9{letter-spacing:3.840000pt;}
.ls3{letter-spacing:4.480000pt;}
.lsa{letter-spacing:24.320000pt;}
.lsc{letter-spacing:42.224640pt;}
.ws9{word-spacing:-19.840000pt;}
.ws8{word-spacing:-19.232000pt;}
.ws4{word-spacing:-19.221333pt;}
.ws6{word-spacing:-19.216000pt;}
.ws2{word-spacing:-19.200000pt;}
.ws3{word-spacing:-19.184000pt;}
.ws0{word-spacing:-19.146240pt;}
.ws7{word-spacing:-18.560000pt;}
.wsc{word-spacing:-17.904000pt;}
.wsd{word-spacing:-17.310720pt;}
.wsa{word-spacing:-17.295360pt;}
.ws1{word-spacing:-17.280000pt;}
.wsb{word-spacing:-17.264640pt;}
.ws5{word-spacing:0.000000pt;}
._b{margin-left:-2.329600pt;}
._0{margin-left:-1.000960pt;}
._4{width:1.586347pt;}
._5{width:2.574507pt;}
._13{width:3.494827pt;}
._7{width:4.423680pt;}
._6{width:5.891413pt;}
._14{width:7.432533pt;}
._c{width:8.604160pt;}
._e{width:9.761280pt;}
._d{width:11.282347pt;}
._1b{width:12.462080pt;}
._a{width:13.409280pt;}
._f{width:14.714027pt;}
._1a{width:15.975253pt;}
._19{width:17.561173pt;}
._23{width:18.590720pt;}
._18{width:19.706027pt;}
._17{width:20.608000pt;}
._1c{width:21.618987pt;}
._1e{width:22.582187pt;}
._16{width:23.593813pt;}
._22{width:24.937813pt;}
._11{width:26.927787pt;}
._12{width:28.000427pt;}
._8{width:29.376000pt;}
._1f{width:30.279680pt;}
._24{width:32.486400pt;}
._15{width:35.560960pt;}
._2{width:38.054400pt;}
._1d{width:39.362560pt;}
._10{width:40.366080pt;}
._9{width:41.607680pt;}
._20{width:44.098560pt;}
._21{width:45.164373pt;}
._26{width:56.977493pt;}
._25{width:58.177707pt;}
._3{width:199.169707pt;}
._1{width:1087.921067pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:31.360000pt;}
.y4{bottom:49.280000pt;}
.y5b{bottom:113.952000pt;}
.y56{bottom:124.832000pt;}
.y46{bottom:124.992000pt;}
.y2d{bottom:127.712000pt;}
.y5a{bottom:136.986667pt;}
.y55{bottom:147.706667pt;}
.y45{bottom:147.866667pt;}
.y2c{bottom:150.746667pt;}
.y59{bottom:159.866667pt;}
.y54{bottom:170.586667pt;}
.y44{bottom:170.746667pt;}
.y2b{bottom:173.626667pt;}
.y58{bottom:182.746667pt;}
.y74{bottom:185.946667pt;}
.y43{bottom:193.626667pt;}
.y2a{bottom:196.506667pt;}
.y57{bottom:201.466667pt;}
.y73{bottom:208.826667pt;}
.y53{bottom:216.506667pt;}
.y42{bottom:216.666667pt;}
.y29{bottom:219.386667pt;}
.y72{bottom:231.706667pt;}
.y52{bottom:239.386667pt;}
.y41{bottom:239.546667pt;}
.y28{bottom:242.426667pt;}
.y71{bottom:254.746667pt;}
.y51{bottom:262.266667pt;}
.y40{bottom:262.426667pt;}
.y27{bottom:265.306667pt;}
.y3f{bottom:285.306667pt;}
.y26{bottom:288.186667pt;}
.y70{bottom:290.426667pt;}
.y50{bottom:308.226667pt;}
.y3e{bottom:308.386667pt;}
.y25{bottom:311.106667pt;}
.y4f{bottom:331.106667pt;}
.y3d{bottom:331.266667pt;}
.y24{bottom:334.146667pt;}
.y6f{bottom:334.466667pt;}
.y3c{bottom:354.146667pt;}
.y23{bottom:357.026667pt;}
.y6e{bottom:357.346667pt;}
.y3b{bottom:377.026667pt;}
.y22{bottom:379.906667pt;}
.y6d{bottom:380.386667pt;}
.y4e{bottom:399.906667pt;}
.y3a{bottom:400.066667pt;}
.y21{bottom:402.946667pt;}
.y6c{bottom:403.266667pt;}
.y4d{bottom:422.786667pt;}
.y39{bottom:422.946667pt;}
.y20{bottom:425.826667pt;}
.y6b{bottom:426.146667pt;}
.y38{bottom:445.826667pt;}
.y1f{bottom:448.706667pt;}
.y6a{bottom:449.026667pt;}
.y37{bottom:468.706667pt;}
.y1e{bottom:471.586667pt;}
.y69{bottom:472.066667pt;}
.y4c{bottom:491.586667pt;}
.y36{bottom:491.746667pt;}
.y1d{bottom:494.626667pt;}
.y68{bottom:494.946667pt;}
.y4b{bottom:514.466667pt;}
.y35{bottom:514.626667pt;}
.y1c{bottom:517.506667pt;}
.y67{bottom:517.826667pt;}
.y34{bottom:537.533333pt;}
.y1b{bottom:540.413333pt;}
.y66{bottom:540.733333pt;}
.y4a{bottom:560.413333pt;}
.y33{bottom:560.573333pt;}
.y1a{bottom:563.293333pt;}
.y65{bottom:563.773333pt;}
.y49{bottom:583.293333pt;}
.y32{bottom:583.453333pt;}
.y19{bottom:586.333333pt;}
.y64{bottom:586.653333pt;}
.y48{bottom:606.173333pt;}
.y31{bottom:606.333333pt;}
.y18{bottom:609.213333pt;}
.y63{bottom:609.533333pt;}
.y47{bottom:625.053333pt;}
.y30{bottom:625.213333pt;}
.y17{bottom:632.093333pt;}
.y62{bottom:632.573333pt;}
.y16{bottom:654.973333pt;}
.y61{bottom:655.453333pt;}
.y15{bottom:678.013333pt;}
.y60{bottom:678.333333pt;}
.y14{bottom:700.893333pt;}
.y5f{bottom:701.213333pt;}
.y13{bottom:723.773333pt;}
.y5e{bottom:724.253333pt;}
.y12{bottom:746.653333pt;}
.y5d{bottom:747.133333pt;}
.y5c{bottom:766.013333pt;}
.y11{bottom:769.733333pt;}
.y10{bottom:792.613333pt;}
.yf{bottom:815.493333pt;}
.ye{bottom:838.373333pt;}
.yd{bottom:861.413333pt;}
.yc{bottom:884.293333pt;}
.yb{bottom:907.173333pt;}
.ya{bottom:930.213333pt;}
.y9{bottom:953.093333pt;}
.y8{bottom:975.493333pt;}
.y2f{bottom:975.973333pt;}
.y7{bottom:998.853333pt;}
.y6{bottom:1021.440000pt;}
.y2e{bottom:1021.920000pt;}
.y3{bottom:1041.600000pt;}
.y2{bottom:1059.200000pt;}
.y1{bottom:1090.080000pt;}
.h2{height:44.160000pt;}
.h7{height:48.262500pt;}
.h3{height:58.563750pt;}
.h6{height:67.803750pt;}
.h5{height:67.837500pt;}
.h4{height:69.660000pt;}
.h8{height:71.044468pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:75.680000pt;}
.x5{left:113.472000pt;}
.xd{left:126.112000pt;}
.xc{left:132.352000pt;}
.x9{left:144.186667pt;}
.x6{left:167.866667pt;}
.x2{left:185.466667pt;}
.x1{left:275.266667pt;}
.xa{left:284.066667pt;}
.xb{left:290.946667pt;}
.x8{left:319.906667pt;}
.x12{left:374.466667pt;}
.x4{left:414.146667pt;}
.x7{left:434.813333pt;}
.x11{left:616.773333pt;}
.x10{left:634.853333pt;}
.xf{left:666.853333pt;}
.xe{left:674.853333pt;}
}




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