
    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_512a796cc1744e854aa43aa3.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_6c2533dda04a82e379bc0e1b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_14b176afdb3f3032f0e63d05.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_6fe2610e2441909e30fa6b3a.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_819507d2cea20ecef7e35100.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.084961;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_be24541eeea1051e43ba4464.woff2')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_6193fc93719873dbca485474.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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;}
.lsa{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.414600px;}
.lse{letter-spacing:-0.305400px;}
.ls8{letter-spacing:-0.018000px;}
.ls6{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.008640px;}
.ls3{letter-spacing:0.017280px;}
.ls5{letter-spacing:0.018000px;}
.ls2{letter-spacing:0.022320px;}
.lsf{letter-spacing:0.109200px;}
.ls0{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.262200px;}
.ls7{letter-spacing:0.269400px;}
.ls1{letter-spacing:0.360000px;}
.lsd{letter-spacing:39.905280px;}
.lsb{letter-spacing:199.416000px;}
.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;}
}
.ws3{word-spacing:-19.457280px;}
.ws8{word-spacing:-16.822200px;}
.ws9{word-spacing:-16.669200px;}
.wsa{word-spacing:-16.560000px;}
.ws6{word-spacing:-16.145400px;}
.ws7{word-spacing:-15.840000px;}
.ws0{word-spacing:-14.940000px;}
.ws4{word-spacing:-13.482000px;}
.ws2{word-spacing:-10.924560px;}
.ws1{word-spacing:-10.902240px;}
.ws5{word-spacing:0.000000px;}
._1c{margin-left:-5.215200px;}
._13{margin-left:-3.739680px;}
._12{margin-left:-2.322000px;}
._0{margin-left:-1.192320px;}
._1{width:1.254960px;}
._2{width:2.357040px;}
._3{width:3.996000px;}
._5{width:5.259360px;}
._4{width:6.546000px;}
._e{width:7.776000px;}
._10{width:8.910000px;}
._f{width:9.936000px;}
._14{width:11.185200px;}
._d{width:12.366000px;}
._19{width:14.239200px;}
._11{width:15.273360px;}
._a{width:16.694640px;}
._7{width:17.766000px;}
._6{width:18.900000px;}
._1a{width:20.203200px;}
._16{width:21.298080px;}
._15{width:22.322880px;}
._17{width:23.347680px;}
._1d{width:24.423360px;}
._18{width:25.436160px;}
._9{width:27.378000px;}
._b{width:28.620000px;}
._c{width:33.426000px;}
._21{width:36.477360px;}
._22{width:37.683120px;}
._8{width:38.934000px;}
._1e{width:152.418240px;}
._1f{width:153.478080px;}
._20{width:154.500720px;}
._1b{width:199.416000px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y3b{bottom:2.880000px;}
.y2{bottom:6.510000px;}
.y47{bottom:9.540000px;}
.y9{bottom:11.730000px;}
.y3a{bottom:18.405000px;}
.y48{bottom:18.540000px;}
.y5{bottom:27.210000px;}
.y8{bottom:29.010000px;}
.y39{bottom:33.885000px;}
.y4{bottom:44.490000px;}
.y7{bottom:46.110000px;}
.y38{bottom:49.545000px;}
.yb{bottom:56.340000px;}
.y3{bottom:62.130000px;}
.y6{bottom:63.390000px;}
.y37{bottom:65.025000px;}
.y36{bottom:80.505000px;}
.y35{bottom:95.985000px;}
.y34{bottom:111.465000px;}
.y51{bottom:114.876000px;}
.y33{bottom:127.125000px;}
.y7d{bottom:131.976000px;}
.y50{bottom:136.656000px;}
.y32{bottom:142.605000px;}
.y7c{bottom:153.930000px;}
.y31{bottom:158.085000px;}
.y4f{bottom:158.610000px;}
.y30{bottom:173.565000px;}
.y7b{bottom:175.710000px;}
.y4e{bottom:180.390000px;}
.y2f{bottom:189.225000px;}
.y7a{bottom:197.490000px;}
.y4d{bottom:202.170000px;}
.y2e{bottom:204.705000px;}
.y79{bottom:219.270000px;}
.y2d{bottom:220.185000px;}
.y4c{bottom:223.950000px;}
.y2c{bottom:235.665000px;}
.y78{bottom:241.230000px;}
.y4b{bottom:245.730000px;}
.y2b{bottom:251.325000px;}
.y45{bottom:252.585000px;}
.y77{bottom:263.010000px;}
.y44{bottom:266.445000px;}
.y2a{bottom:266.805000px;}
.y4a{bottom:267.690000px;}
.y43{bottom:280.155000px;}
.y29{bottom:282.315000px;}
.y76{bottom:284.790000px;}
.y49{bottom:286.770000px;}
.y42{bottom:294.015000px;}
.y28{bottom:297.795000px;}
.y46{bottom:302.070000px;}
.y75{bottom:306.570000px;}
.y41{bottom:307.875000px;}
.y27{bottom:313.455000px;}
.y40{bottom:321.555000px;}
.y74{bottom:328.350000px;}
.y26{bottom:328.935000px;}
.y19{bottom:333.210000px;}
.y3f{bottom:335.415000px;}
.y25{bottom:344.415000px;}
.y3e{bottom:349.275000px;}
.y73{bottom:350.355000px;}
.y24{bottom:359.895000px;}
.y3d{bottom:362.955000px;}
.y72{bottom:372.135000px;}
.y23{bottom:375.555000px;}
.y3c{bottom:376.815000px;}
.y22{bottom:391.035000px;}
.y71{bottom:393.915000px;}
.y21{bottom:406.515000px;}
.y70{bottom:415.695000px;}
.y20{bottom:421.995000px;}
.y1f{bottom:437.655000px;}
.y1e{bottom:453.135000px;}
.y6f{bottom:459.435000px;}
.y1d{bottom:468.615000px;}
.y6e{bottom:481.215000px;}
.y1c{bottom:484.095000px;}
.y1b{bottom:499.755000px;}
.y6d{bottom:502.995000px;}
.y1a{bottom:515.235000px;}
.y6c{bottom:524.775000px;}
.y6b{bottom:546.735000px;}
.y6a{bottom:568.515000px;}
.y69{bottom:590.295000px;}
.y68{bottom:612.105000px;}
.y67{bottom:633.885000px;}
.y66{bottom:655.845000px;}
.y65{bottom:677.625000px;}
.y64{bottom:699.405000px;}
.y63{bottom:721.185000px;}
.y62{bottom:743.145000px;}
.y61{bottom:764.925000px;}
.y60{bottom:786.705000px;}
.y5f{bottom:808.485000px;}
.y5e{bottom:830.265000px;}
.y5d{bottom:852.225000px;}
.y18{bottom:864.645000px;}
.y5c{bottom:874.050000px;}
.y17{bottom:883.230000px;}
.y5b{bottom:895.830000px;}
.y16{bottom:900.510000px;}
.y5a{bottom:917.610000px;}
.y15{bottom:918.150000px;}
.y14{bottom:935.970000px;}
.y59{bottom:939.570000px;}
.y13{bottom:950.910000px;}
.y58{bottom:961.350000px;}
.y12{bottom:969.990000px;}
.y57{bottom:983.130000px;}
.y11{bottom:988.890000px;}
.y56{bottom:1004.910000px;}
.y10{bottom:1006.710000px;}
.yf{bottom:1022.190000px;}
.y55{bottom:1026.690000px;}
.ye{bottom:1044.510000px;}
.y54{bottom:1048.650000px;}
.yd{bottom:1067.010000px;}
.y53{bottom:1070.430000px;}
.yc{bottom:1089.510000px;}
.y52{bottom:1092.210000px;}
.ya{bottom:1112.190000px;}
.y1{bottom:1132.350000px;}
.h12{height:31.140000px;}
.hc{height:34.036523px;}
.h10{height:37.705078px;}
.hf{height:38.100586px;}
.ha{height:39.760312px;}
.h3{height:41.726953px;}
.h5{height:42.164648px;}
.h11{height:44.507812px;}
.hd{height:46.251562px;}
.h4{height:46.736719px;}
.h8{height:47.980898px;}
.h13{height:48.224531px;}
.h6{height:49.255313px;}
.hb{height:54.596250px;}
.h9{height:54.864844px;}
.h7{height:65.884219px;}
.h2{height:77.436000px;}
.he{height:527.835000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:72.000000px;}
.w4{width:209.370000px;}
.w7{width:228.090000px;}
.w3{width:427.935000px;}
.w6{width:467.175000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.920000px;}
.x6{left:18.540000px;}
.x16{left:29.520000px;}
.x2{left:58.494000px;}
.x7{left:85.725000px;}
.x1{left:99.936000px;}
.x9{left:104.445000px;}
.xa{left:108.035987px;}
.x10{left:110.915987px;}
.xd{left:114.695987px;}
.xc{left:119.195987px;}
.x8{left:132.345000px;}
.x17{left:135.035987px;}
.x19{left:140.075987px;}
.x18{left:162.029987px;}
.x3{left:171.930000px;}
.x13{left:264.089987px;}
.x14{left:336.314987px;}
.x12{left:366.374987px;}
.xe{left:378.974987px;}
.x11{left:412.814987px;}
.xf{left:446.474987px;}
.xb{left:499.964987px;}
.x15{left:575.205000px;}
.x5{left:599.865000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.368533pt;}
.lse{letter-spacing:-0.271467pt;}
.ls8{letter-spacing:-0.016000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.007680pt;}
.ls3{letter-spacing:0.015360pt;}
.ls5{letter-spacing:0.016000pt;}
.ls2{letter-spacing:0.019840pt;}
.lsf{letter-spacing:0.097067pt;}
.ls0{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.233067pt;}
.ls7{letter-spacing:0.239467pt;}
.ls1{letter-spacing:0.320000pt;}
.lsd{letter-spacing:35.471360pt;}
.lsb{letter-spacing:177.258667pt;}
.ws3{word-spacing:-17.295360pt;}
.ws8{word-spacing:-14.953067pt;}
.ws9{word-spacing:-14.817067pt;}
.wsa{word-spacing:-14.720000pt;}
.ws6{word-spacing:-14.351467pt;}
.ws7{word-spacing:-14.080000pt;}
.ws0{word-spacing:-13.280000pt;}
.ws4{word-spacing:-11.984000pt;}
.ws2{word-spacing:-9.710720pt;}
.ws1{word-spacing:-9.690880pt;}
.ws5{word-spacing:0.000000pt;}
._1c{margin-left:-4.635733pt;}
._13{margin-left:-3.324160pt;}
._12{margin-left:-2.064000pt;}
._0{margin-left:-1.059840pt;}
._1{width:1.115520pt;}
._2{width:2.095147pt;}
._3{width:3.552000pt;}
._5{width:4.674987pt;}
._4{width:5.818667pt;}
._e{width:6.912000pt;}
._10{width:7.920000pt;}
._f{width:8.832000pt;}
._14{width:9.942400pt;}
._d{width:10.992000pt;}
._19{width:12.657067pt;}
._11{width:13.576320pt;}
._a{width:14.839680pt;}
._7{width:15.792000pt;}
._6{width:16.800000pt;}
._1a{width:17.958400pt;}
._16{width:18.931627pt;}
._15{width:19.842560pt;}
._17{width:20.753493pt;}
._1d{width:21.709653pt;}
._18{width:22.609920pt;}
._9{width:24.336000pt;}
._b{width:25.440000pt;}
._c{width:29.712000pt;}
._21{width:32.424320pt;}
._22{width:33.496107pt;}
._8{width:34.608000pt;}
._1e{width:135.482880pt;}
._1f{width:136.424960pt;}
._20{width:137.333973pt;}
._1b{width:177.258667pt;}
.fs2{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y3b{bottom:2.560000pt;}
.y2{bottom:5.786667pt;}
.y47{bottom:8.480000pt;}
.y9{bottom:10.426667pt;}
.y3a{bottom:16.360000pt;}
.y48{bottom:16.480000pt;}
.y5{bottom:24.186667pt;}
.y8{bottom:25.786667pt;}
.y39{bottom:30.120000pt;}
.y4{bottom:39.546667pt;}
.y7{bottom:40.986667pt;}
.y38{bottom:44.040000pt;}
.yb{bottom:50.080000pt;}
.y3{bottom:55.226667pt;}
.y6{bottom:56.346667pt;}
.y37{bottom:57.800000pt;}
.y36{bottom:71.560000pt;}
.y35{bottom:85.320000pt;}
.y34{bottom:99.080000pt;}
.y51{bottom:102.112000pt;}
.y33{bottom:113.000000pt;}
.y7d{bottom:117.312000pt;}
.y50{bottom:121.472000pt;}
.y32{bottom:126.760000pt;}
.y7c{bottom:136.826667pt;}
.y31{bottom:140.520000pt;}
.y4f{bottom:140.986667pt;}
.y30{bottom:154.280000pt;}
.y7b{bottom:156.186667pt;}
.y4e{bottom:160.346667pt;}
.y2f{bottom:168.200000pt;}
.y7a{bottom:175.546667pt;}
.y4d{bottom:179.706667pt;}
.y2e{bottom:181.960000pt;}
.y79{bottom:194.906667pt;}
.y2d{bottom:195.720000pt;}
.y4c{bottom:199.066667pt;}
.y2c{bottom:209.480000pt;}
.y78{bottom:214.426667pt;}
.y4b{bottom:218.426667pt;}
.y2b{bottom:223.400000pt;}
.y45{bottom:224.520000pt;}
.y77{bottom:233.786667pt;}
.y44{bottom:236.840000pt;}
.y2a{bottom:237.160000pt;}
.y4a{bottom:237.946667pt;}
.y43{bottom:249.026667pt;}
.y29{bottom:250.946667pt;}
.y76{bottom:253.146667pt;}
.y49{bottom:254.906667pt;}
.y42{bottom:261.346667pt;}
.y28{bottom:264.706667pt;}
.y46{bottom:268.506667pt;}
.y75{bottom:272.506667pt;}
.y41{bottom:273.666667pt;}
.y27{bottom:278.626667pt;}
.y40{bottom:285.826667pt;}
.y74{bottom:291.866667pt;}
.y26{bottom:292.386667pt;}
.y19{bottom:296.186667pt;}
.y3f{bottom:298.146667pt;}
.y25{bottom:306.146667pt;}
.y3e{bottom:310.466667pt;}
.y73{bottom:311.426667pt;}
.y24{bottom:319.906667pt;}
.y3d{bottom:322.626667pt;}
.y72{bottom:330.786667pt;}
.y23{bottom:333.826667pt;}
.y3c{bottom:334.946667pt;}
.y22{bottom:347.586667pt;}
.y71{bottom:350.146667pt;}
.y21{bottom:361.346667pt;}
.y70{bottom:369.506667pt;}
.y20{bottom:375.106667pt;}
.y1f{bottom:389.026667pt;}
.y1e{bottom:402.786667pt;}
.y6f{bottom:408.386667pt;}
.y1d{bottom:416.546667pt;}
.y6e{bottom:427.746667pt;}
.y1c{bottom:430.306667pt;}
.y1b{bottom:444.226667pt;}
.y6d{bottom:447.106667pt;}
.y1a{bottom:457.986667pt;}
.y6c{bottom:466.466667pt;}
.y6b{bottom:485.986667pt;}
.y6a{bottom:505.346667pt;}
.y69{bottom:524.706667pt;}
.y68{bottom:544.093333pt;}
.y67{bottom:563.453333pt;}
.y66{bottom:582.973333pt;}
.y65{bottom:602.333333pt;}
.y64{bottom:621.693333pt;}
.y63{bottom:641.053333pt;}
.y62{bottom:660.573333pt;}
.y61{bottom:679.933333pt;}
.y60{bottom:699.293333pt;}
.y5f{bottom:718.653333pt;}
.y5e{bottom:738.013333pt;}
.y5d{bottom:757.533333pt;}
.y18{bottom:768.573333pt;}
.y5c{bottom:776.933333pt;}
.y17{bottom:785.093333pt;}
.y5b{bottom:796.293333pt;}
.y16{bottom:800.453333pt;}
.y5a{bottom:815.653333pt;}
.y15{bottom:816.133333pt;}
.y14{bottom:831.973333pt;}
.y59{bottom:835.173333pt;}
.y13{bottom:845.253333pt;}
.y58{bottom:854.533333pt;}
.y12{bottom:862.213333pt;}
.y57{bottom:873.893333pt;}
.y11{bottom:879.013333pt;}
.y56{bottom:893.253333pt;}
.y10{bottom:894.853333pt;}
.yf{bottom:908.613333pt;}
.y55{bottom:912.613333pt;}
.ye{bottom:928.453333pt;}
.y54{bottom:932.133333pt;}
.yd{bottom:948.453333pt;}
.y53{bottom:951.493333pt;}
.yc{bottom:968.453333pt;}
.y52{bottom:970.853333pt;}
.ya{bottom:988.613333pt;}
.y1{bottom:1006.533333pt;}
.h12{height:27.680000pt;}
.hc{height:30.254687pt;}
.h10{height:33.515625pt;}
.hf{height:33.867188pt;}
.ha{height:35.342500pt;}
.h3{height:37.090625pt;}
.h5{height:37.479688pt;}
.h11{height:39.562500pt;}
.hd{height:41.112500pt;}
.h4{height:41.543750pt;}
.h8{height:42.649687pt;}
.h13{height:42.866250pt;}
.h6{height:43.782500pt;}
.hb{height:48.530000pt;}
.h9{height:48.768750pt;}
.h7{height:58.563750pt;}
.h2{height:68.832000pt;}
.he{height:469.186667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:64.000000pt;}
.w4{width:186.106667pt;}
.w7{width:202.746667pt;}
.w3{width:380.386667pt;}
.w6{width:415.266667pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.040000pt;}
.x6{left:16.480000pt;}
.x16{left:26.240000pt;}
.x2{left:51.994667pt;}
.x7{left:76.200000pt;}
.x1{left:88.832000pt;}
.x9{left:92.840000pt;}
.xa{left:96.031988pt;}
.x10{left:98.591988pt;}
.xd{left:101.951988pt;}
.xc{left:105.951988pt;}
.x8{left:117.640000pt;}
.x17{left:120.031988pt;}
.x19{left:124.511988pt;}
.x18{left:144.026655pt;}
.x3{left:152.826667pt;}
.x13{left:234.746655pt;}
.x14{left:298.946655pt;}
.x12{left:325.666655pt;}
.xe{left:336.866655pt;}
.x11{left:366.946655pt;}
.xf{left:396.866655pt;}
.xb{left:444.413322pt;}
.x15{left:511.293333pt;}
.x5{left:533.213333pt;}
}




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