
    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_70838c7c5b05e48e966921c4.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_cb20332eed69d915fc3ec8fd.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_9cd09c9a6b323302adffe335.woff')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_e8e550c3ff026deaeed4af3d.woff')format("woff");}.ff4{font-family:ff4;line-height:0.758789;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_417f87077c96f8f273469e8a.woff')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_1f80c14260355decfa56aa5a.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_fb90a099ebf30da4febf19a5.woff')format("woff");}.ff7{font-family:ff7;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_c023eb5f80c80030fa05a7c6.woff')format("woff");}.ff8{font-family:ff8;line-height:1.435059;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);}
.v1{vertical-align:-74.880000px;}
.v0{vertical-align:0.000000px;}
.ls13{letter-spacing:-1.440000px;}
.lsb{letter-spacing:-1.260000px;}
.lsd{letter-spacing:-0.452400px;}
.lsa{letter-spacing:-0.178800px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.120000px;}
.ls4{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.357000px;}
.lsf{letter-spacing:0.630000px;}
.ls5{letter-spacing:0.720000px;}
.ls9{letter-spacing:1.440000px;}
.ls7{letter-spacing:1.620000px;}
.ls6{letter-spacing:1.797120px;}
.lse{letter-spacing:2.070000px;}
.ls8{letter-spacing:2.160000px;}
.ls11{letter-spacing:9.360000px;}
.ls10{letter-spacing:20.880000px;}
.ls12{letter-spacing:21.565440px;}
.ls3{letter-spacing:43.810560px;}
.lsc{letter-spacing:132.301440px;}
.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;}
}
.ws4{word-spacing:-83.520000px;}
.ws3{word-spacing:-60.480000px;}
.ws7{word-spacing:-22.320000px;}
.ws1{word-spacing:-21.237000px;}
.ws0{word-spacing:-20.880000px;}
.ws5{word-spacing:-20.701200px;}
.ws6{word-spacing:-20.427600px;}
.ws8{word-spacing:-19.440000px;}
.ws2{word-spacing:0.000000px;}
._36{margin-left:-19.474560px;}
._1a{margin-left:-3.702720px;}
._1{margin-left:-1.837440px;}
._0{width:1.837440px;}
._2{width:3.587520px;}
._8{width:4.703520px;}
._9{width:5.850720px;}
._1f{width:6.932160px;}
._15{width:7.934400px;}
._1c{width:9.169440px;}
._b{width:10.290720px;}
._a{width:11.525760px;}
._4{width:13.363200px;}
._5{width:15.203520px;}
._1b{width:16.220160px;}
._10{width:17.288640px;}
._11{width:18.792000px;}
._17{width:19.875840px;}
._16{width:22.795680px;}
._13{width:24.805440px;}
._14{width:26.308800px;}
._d{width:27.561600px;}
._c{width:28.647360px;}
._18{width:30.401280px;}
._19{width:31.570560px;}
._2b{width:32.572800px;}
._7{width:33.575040px;}
._12{width:34.577280px;}
._6{width:35.913600px;}
._f{width:37.500480px;}
._e{width:39.058560px;}
._1d{width:40.200960px;}
._2a{width:41.249280px;}
._2e{width:42.394560px;}
._1e{width:43.552800px;}
._2d{width:44.727840px;}
._28{width:47.555040px;}
._27{width:48.672480px;}
._24{width:50.195520px;}
._23{width:51.865920px;}
._2c{width:54.522720px;}
._34{width:81.097920px;}
._35{width:83.100480px;}
._21{width:119.851200px;}
._22{width:121.020480px;}
._20{width:122.054880px;}
._37{width:126.198720px;}
._29{width:127.730400px;}
._3c{width:162.839520px;}
._3b{width:164.018400px;}
._25{width:166.622400px;}
._26{width:167.958720px;}
._32{width:184.296960px;}
._33{width:185.811840px;}
._38{width:207.459840px;}
._39{width:208.887360px;}
._3a{width:210.270240px;}
._30{width:212.172480px;}
._2f{width:213.278400px;}
._31{width:214.442400px;}
._3{width:1619.290080px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(128,100,162);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(95,73,122);}
.fs2{font-size:60.480000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y8{bottom:57.600000px;}
.y7{bottom:76.356000px;}
.y24{bottom:102.276000px;}
.y3e{bottom:109.836000px;}
.y6d{bottom:135.036000px;}
.y23{bottom:138.636000px;}
.y4f{bottom:143.676000px;}
.y45{bottom:145.476000px;}
.y3d{bottom:145.836000px;}
.y6c{bottom:162.750000px;}
.y4e{bottom:171.390000px;}
.y22{bottom:174.990000px;}
.y3c{bottom:181.830000px;}
.y41{bottom:182.190000px;}
.y6b{bottom:190.470000px;}
.y4d{bottom:199.515000px;}
.y21{bottom:211.035000px;}
.y3b{bottom:218.595000px;}
.y4c{bottom:227.235000px;}
.y6a{bottom:246.315000px;}
.y20{bottom:247.395000px;}
.y3a{bottom:254.595000px;}
.y4b{bottom:254.955000px;}
.y69{bottom:274.035000px;}
.y4a{bottom:282.675000px;}
.y1f{bottom:283.755000px;}
.y39{bottom:290.955000px;}
.y68{bottom:301.755000px;}
.y49{bottom:310.395000px;}
.y1e{bottom:319.755000px;}
.y38{bottom:326.625000px;}
.y40{bottom:326.985000px;}
.y67{bottom:329.505000px;}
.y48{bottom:338.145000px;}
.y1d{bottom:356.145000px;}
.y66{bottom:357.225000px;}
.y37{bottom:363.345000px;}
.y47{bottom:365.865000px;}
.y65{bottom:384.945000px;}
.y1c{bottom:392.145000px;}
.y44{bottom:399.345000px;}
.y36{bottom:399.705000px;}
.y64{bottom:412.665000px;}
.y46{bottom:414.105000px;}
.y1b{bottom:428.505000px;}
.y35{bottom:435.705000px;}
.y63{bottom:440.745000px;}
.y1a{bottom:464.910000px;}
.y62{bottom:468.510000px;}
.y34{bottom:472.110000px;}
.y61{bottom:496.230000px;}
.y19{bottom:500.910000px;}
.y33{bottom:508.110000px;}
.y60{bottom:523.950000px;}
.y18{bottom:537.270000px;}
.y32{bottom:544.470000px;}
.y5f{bottom:551.670000px;}
.y17{bottom:573.660000px;}
.y5e{bottom:579.420000px;}
.y43{bottom:580.500000px;}
.y31{bottom:580.860000px;}
.y5d{bottom:607.140000px;}
.y16{bottom:609.660000px;}
.y30{bottom:616.860000px;}
.y5c{bottom:635.220000px;}
.y15{bottom:646.020000px;}
.y2f{bottom:653.220000px;}
.y5b{bottom:662.940000px;}
.y14{bottom:682.020000px;}
.y2e{bottom:689.580000px;}
.y5a{bottom:690.660000px;}
.y13{bottom:718.410000px;}
.y2d{bottom:725.610000px;}
.y59{bottom:746.130000px;}
.y12{bottom:754.770000px;}
.y2c{bottom:761.970000px;}
.y58{bottom:773.850000px;}
.y11{bottom:790.770000px;}
.y2b{bottom:797.970000px;}
.y57{bottom:801.570000px;}
.y10{bottom:826.815000px;}
.y56{bottom:829.695000px;}
.y42{bottom:834.015000px;}
.y2a{bottom:834.375000px;}
.yf{bottom:855.975000px;}
.y55{bottom:857.415000px;}
.y29{bottom:870.735000px;}
.ye{bottom:885.135000px;}
.y28{bottom:906.735000px;}
.y54{bottom:912.855000px;}
.yd{bottom:913.935000px;}
.y53{bottom:940.575000px;}
.yc{bottom:942.735000px;}
.y27{bottom:943.095000px;}
.y6e{bottom:944.535000px;}
.y52{bottom:968.325000px;}
.yb{bottom:978.765000px;}
.y26{bottom:979.125000px;}
.y51{bottom:996.045000px;}
.ya{bottom:1015.125000px;}
.y25{bottom:1015.485000px;}
.y50{bottom:1024.125000px;}
.y9{bottom:1051.485000px;}
.y3f{bottom:1051.845000px;}
.y6{bottom:1074.525000px;}
.y5{bottom:1093.650000px;}
.y4{bottom:1131.450000px;}
.y3{bottom:1150.890000px;}
.y2{bottom:1169.610000px;}
.y1{bottom:1189.410000px;}
.h6{height:60.397031px;}
.h3{height:65.010937px;}
.h4{height:66.757500px;}
.h5{height:81.970312px;}
.h2{height:84.172500px;}
.h8{height:85.845399px;}
.h7{height:86.945625px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:84.995987px;}
.xd{left:111.995987px;}
.xc{left:138.311987px;}
.x5{left:161.354987px;}
.x1{left:209.954987px;}
.x9{left:309.344987px;}
.xa{left:326.309987px;}
.xb{left:335.309987px;}
.x6{left:354.029987px;}
.x8{left:386.429987px;}
.xe{left:459.539987px;}
.x4{left:463.859987px;}
.x7{left:494.489987px;}
.x3{left:615.494987px;}
@media print{
.v1{vertical-align:-66.560000pt;}
.v0{vertical-align:0.000000pt;}
.ls13{letter-spacing:-1.280000pt;}
.lsb{letter-spacing:-1.120000pt;}
.lsd{letter-spacing:-0.402133pt;}
.lsa{letter-spacing:-0.158933pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.106667pt;}
.ls4{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.317333pt;}
.lsf{letter-spacing:0.560000pt;}
.ls5{letter-spacing:0.640000pt;}
.ls9{letter-spacing:1.280000pt;}
.ls7{letter-spacing:1.440000pt;}
.ls6{letter-spacing:1.597440pt;}
.lse{letter-spacing:1.840000pt;}
.ls8{letter-spacing:1.920000pt;}
.ls11{letter-spacing:8.320000pt;}
.ls10{letter-spacing:18.560000pt;}
.ls12{letter-spacing:19.169280pt;}
.ls3{letter-spacing:38.942720pt;}
.lsc{letter-spacing:117.601280pt;}
.ws4{word-spacing:-74.240000pt;}
.ws3{word-spacing:-53.760000pt;}
.ws7{word-spacing:-19.840000pt;}
.ws1{word-spacing:-18.877333pt;}
.ws0{word-spacing:-18.560000pt;}
.ws5{word-spacing:-18.401067pt;}
.ws6{word-spacing:-18.157867pt;}
.ws8{word-spacing:-17.280000pt;}
.ws2{word-spacing:0.000000pt;}
._36{margin-left:-17.310720pt;}
._1a{margin-left:-3.291307pt;}
._1{margin-left:-1.633280pt;}
._0{width:1.633280pt;}
._2{width:3.188907pt;}
._8{width:4.180907pt;}
._9{width:5.200640pt;}
._1f{width:6.161920pt;}
._15{width:7.052800pt;}
._1c{width:8.150613pt;}
._b{width:9.147307pt;}
._a{width:10.245120pt;}
._4{width:11.878400pt;}
._5{width:13.514240pt;}
._1b{width:14.417920pt;}
._10{width:15.367680pt;}
._11{width:16.704000pt;}
._17{width:17.667413pt;}
._16{width:20.262827pt;}
._13{width:22.049280pt;}
._14{width:23.385600pt;}
._d{width:24.499200pt;}
._c{width:25.464320pt;}
._18{width:27.023360pt;}
._19{width:28.062720pt;}
._2b{width:28.953600pt;}
._7{width:29.844480pt;}
._12{width:30.735360pt;}
._6{width:31.923200pt;}
._f{width:33.333760pt;}
._e{width:34.718720pt;}
._1d{width:35.734187pt;}
._2a{width:36.666027pt;}
._2e{width:37.684053pt;}
._1e{width:38.713600pt;}
._2d{width:39.758080pt;}
._28{width:42.271147pt;}
._27{width:43.264427pt;}
._24{width:44.618240pt;}
._23{width:46.103040pt;}
._2c{width:48.464640pt;}
._34{width:72.087040pt;}
._35{width:73.867093pt;}
._21{width:106.534400pt;}
._22{width:107.573760pt;}
._20{width:108.493227pt;}
._37{width:112.176640pt;}
._29{width:113.538133pt;}
._3c{width:144.746240pt;}
._3b{width:145.794133pt;}
._25{width:148.108800pt;}
._26{width:149.296640pt;}
._32{width:163.819520pt;}
._33{width:165.166080pt;}
._38{width:184.408747pt;}
._39{width:185.677653pt;}
._3a{width:186.906880pt;}
._30{width:188.597760pt;}
._2f{width:189.580800pt;}
._31{width:190.615467pt;}
._3{width:1439.368960pt;}
.fs2{font-size:53.760000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:51.200000pt;}
.y7{bottom:67.872000pt;}
.y24{bottom:90.912000pt;}
.y3e{bottom:97.632000pt;}
.y6d{bottom:120.032000pt;}
.y23{bottom:123.232000pt;}
.y4f{bottom:127.712000pt;}
.y45{bottom:129.312000pt;}
.y3d{bottom:129.632000pt;}
.y6c{bottom:144.666667pt;}
.y4e{bottom:152.346667pt;}
.y22{bottom:155.546667pt;}
.y3c{bottom:161.626667pt;}
.y41{bottom:161.946667pt;}
.y6b{bottom:169.306667pt;}
.y4d{bottom:177.346667pt;}
.y21{bottom:187.586667pt;}
.y3b{bottom:194.306667pt;}
.y4c{bottom:201.986667pt;}
.y6a{bottom:218.946667pt;}
.y20{bottom:219.906667pt;}
.y3a{bottom:226.306667pt;}
.y4b{bottom:226.626667pt;}
.y69{bottom:243.586667pt;}
.y4a{bottom:251.266667pt;}
.y1f{bottom:252.226667pt;}
.y39{bottom:258.626667pt;}
.y68{bottom:268.226667pt;}
.y49{bottom:275.906667pt;}
.y1e{bottom:284.226667pt;}
.y38{bottom:290.333333pt;}
.y40{bottom:290.653333pt;}
.y67{bottom:292.893333pt;}
.y48{bottom:300.573333pt;}
.y1d{bottom:316.573333pt;}
.y66{bottom:317.533333pt;}
.y37{bottom:322.973333pt;}
.y47{bottom:325.213333pt;}
.y65{bottom:342.173333pt;}
.y1c{bottom:348.573333pt;}
.y44{bottom:354.973333pt;}
.y36{bottom:355.293333pt;}
.y64{bottom:366.813333pt;}
.y46{bottom:368.093333pt;}
.y1b{bottom:380.893333pt;}
.y35{bottom:387.293333pt;}
.y63{bottom:391.773333pt;}
.y1a{bottom:413.253333pt;}
.y62{bottom:416.453333pt;}
.y34{bottom:419.653333pt;}
.y61{bottom:441.093333pt;}
.y19{bottom:445.253333pt;}
.y33{bottom:451.653333pt;}
.y60{bottom:465.733333pt;}
.y18{bottom:477.573333pt;}
.y32{bottom:483.973333pt;}
.y5f{bottom:490.373333pt;}
.y17{bottom:509.920000pt;}
.y5e{bottom:515.040000pt;}
.y43{bottom:516.000000pt;}
.y31{bottom:516.320000pt;}
.y5d{bottom:539.680000pt;}
.y16{bottom:541.920000pt;}
.y30{bottom:548.320000pt;}
.y5c{bottom:564.640000pt;}
.y15{bottom:574.240000pt;}
.y2f{bottom:580.640000pt;}
.y5b{bottom:589.280000pt;}
.y14{bottom:606.240000pt;}
.y2e{bottom:612.960000pt;}
.y5a{bottom:613.920000pt;}
.y13{bottom:638.586667pt;}
.y2d{bottom:644.986667pt;}
.y59{bottom:663.226667pt;}
.y12{bottom:670.906667pt;}
.y2c{bottom:677.306667pt;}
.y58{bottom:687.866667pt;}
.y11{bottom:702.906667pt;}
.y2b{bottom:709.306667pt;}
.y57{bottom:712.506667pt;}
.y10{bottom:734.946667pt;}
.y56{bottom:737.506667pt;}
.y42{bottom:741.346667pt;}
.y2a{bottom:741.666667pt;}
.yf{bottom:760.866667pt;}
.y55{bottom:762.146667pt;}
.y29{bottom:773.986667pt;}
.ye{bottom:786.786667pt;}
.y28{bottom:805.986667pt;}
.y54{bottom:811.426667pt;}
.yd{bottom:812.386667pt;}
.y53{bottom:836.066667pt;}
.yc{bottom:837.986667pt;}
.y27{bottom:838.306667pt;}
.y6e{bottom:839.586667pt;}
.y52{bottom:860.733333pt;}
.yb{bottom:870.013333pt;}
.y26{bottom:870.333333pt;}
.y51{bottom:885.373333pt;}
.ya{bottom:902.333333pt;}
.y25{bottom:902.653333pt;}
.y50{bottom:910.333333pt;}
.y9{bottom:934.653333pt;}
.y3f{bottom:934.973333pt;}
.y6{bottom:955.133333pt;}
.y5{bottom:972.133333pt;}
.y4{bottom:1005.733333pt;}
.y3{bottom:1023.013333pt;}
.y2{bottom:1039.653333pt;}
.y1{bottom:1057.253333pt;}
.h6{height:53.686250pt;}
.h3{height:57.787500pt;}
.h4{height:59.340000pt;}
.h5{height:72.862500pt;}
.h2{height:74.820000pt;}
.h8{height:76.307021pt;}
.h7{height:77.285000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:75.551988pt;}
.xd{left:99.551988pt;}
.xc{left:122.943988pt;}
.x5{left:143.426655pt;}
.x1{left:186.626655pt;}
.x9{left:274.973322pt;}
.xa{left:290.053322pt;}
.xb{left:298.053322pt;}
.x6{left:314.693322pt;}
.x8{left:343.493322pt;}
.xe{left:408.479988pt;}
.x4{left:412.319988pt;}
.x7{left:439.546655pt;}
.x3{left:547.106655pt;}
}




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