
    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_b412b98a80639c22b38a4e58.woff')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_d117c93f8db8372e0d300b44.woff')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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_f6b5243b5134855919795408.woff')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_6e7daadd4b8f1cdfc904bc1c.woff')format("woff");}.ff6{font-family:ff6;line-height:0.940430;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_739ccfc8cf0388452210e005.woff')format("woff");}.ff7{font-family:ff7;line-height:0.946777;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;}
.v1{vertical-align:23.940000px;}
.lsa{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.305400px;}
.ls4{letter-spacing:-0.288000px;}
.ls3{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.119520px;}
.ls7{letter-spacing:0.153600px;}
.ls1{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls8{letter-spacing:21.546720px;}
.ls6{letter-spacing:41.682720px;}
.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:-18.000000px;}
.ws4{word-spacing:-16.254600px;}
.ws1{word-spacing:-15.300000px;}
.ws6{word-spacing:-15.093600px;}
.ws7{word-spacing:-15.046800px;}
.ws0{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.580000px;}
.ws2{word-spacing:-13.500000px;}
.ws5{word-spacing:0.000000px;}
._19{margin-left:-2.270640px;}
._1{margin-left:-1.186320px;}
._0{width:1.322400px;}
._5{width:3.012240px;}
._2{width:4.140960px;}
._7{width:5.655840px;}
._6{width:6.804960px;}
._9{width:8.246880px;}
._f{width:9.442080px;}
._17{width:10.554480px;}
._10{width:11.653200px;}
._a{width:12.676800px;}
._8{width:13.856640px;}
._b{width:16.545840px;}
._c{width:17.667600px;}
._15{width:18.764640px;}
._16{width:19.812240px;}
._12{width:21.274560px;}
._11{width:22.529520px;}
._18{width:23.612880px;}
._14{width:25.151280px;}
._13{width:26.772480px;}
._d{width:28.027440px;}
._e{width:29.103120px;}
._1a{width:76.007040px;}
._4{width:85.536000px;}
._3{width:687.426000px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(76,148,216);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.ya3{bottom:10.980000px;}
.ya9{bottom:11.025000px;}
.yab{bottom:13.860000px;}
.ya1{bottom:14.040000px;}
.ya7{bottom:14.220000px;}
.ya6{bottom:17.280000px;}
.ya0{bottom:31.140000px;}
.ya5{bottom:31.320000px;}
.yc{bottom:36.720000px;}
.yb{bottom:55.260000px;}
.ya{bottom:70.740000px;}
.yba{bottom:120.240000px;}
.y9e{bottom:122.760000px;}
.y74{bottom:136.260000px;}
.yb9{bottom:137.520000px;}
.y9d{bottom:140.040000px;}
.y3f{bottom:146.340000px;}
.y73{bottom:153.540000px;}
.yb8{bottom:154.620000px;}
.y9c{bottom:157.320000px;}
.y3e{bottom:163.440000px;}
.y72{bottom:170.640000px;}
.yb7{bottom:171.900000px;}
.y9b{bottom:174.600000px;}
.y3d{bottom:180.720000px;}
.y71{bottom:187.920000px;}
.yb6{bottom:189.180000px;}
.y9a{bottom:191.880000px;}
.y3c{bottom:198.000000px;}
.y70{bottom:205.200000px;}
.yb5{bottom:206.460000px;}
.y99{bottom:209.160000px;}
.y3b{bottom:215.310000px;}
.y6f{bottom:222.510000px;}
.yb4{bottom:223.770000px;}
.y98{bottom:226.290000px;}
.y3a{bottom:232.590000px;}
.y6e{bottom:239.790000px;}
.yb3{bottom:241.050000px;}
.y97{bottom:243.570000px;}
.y39{bottom:249.690000px;}
.y6d{bottom:256.890000px;}
.yb2{bottom:258.150000px;}
.y96{bottom:260.850000px;}
.y38{bottom:266.970000px;}
.y6c{bottom:274.170000px;}
.yb1{bottom:275.430000px;}
.y95{bottom:278.130000px;}
.y37{bottom:284.250000px;}
.y6b{bottom:291.450000px;}
.yb0{bottom:292.710000px;}
.y94{bottom:295.410000px;}
.y36{bottom:301.530000px;}
.y6a{bottom:308.730000px;}
.yaf{bottom:309.990000px;}
.y93{bottom:312.690000px;}
.y35{bottom:318.810000px;}
.y69{bottom:326.010000px;}
.yae{bottom:327.270000px;}
.y92{bottom:329.790000px;}
.y34{bottom:336.090000px;}
.y68{bottom:343.290000px;}
.yad{bottom:344.550000px;}
.y91{bottom:347.070000px;}
.y33{bottom:353.190000px;}
.yac{bottom:359.310000px;}
.y67{bottom:360.390000px;}
.y90{bottom:364.350000px;}
.y32{bottom:370.470000px;}
.y66{bottom:377.670000px;}
.y8f{bottom:381.630000px;}
.y31{bottom:387.750000px;}
.yaa{bottom:391.890000px;}
.y65{bottom:394.950000px;}
.y8e{bottom:398.910000px;}
.y30{bottom:405.030000px;}
.y64{bottom:412.230000px;}
.y8d{bottom:416.010000px;}
.y2f{bottom:422.310000px;}
.y63{bottom:429.510000px;}
.y8c{bottom:433.290000px;}
.y2e{bottom:439.590000px;}
.ya8{bottom:444.810000px;}
.y62{bottom:446.790000px;}
.y8b{bottom:450.615000px;}
.y2d{bottom:456.735000px;}
.y61{bottom:463.935000px;}
.y8a{bottom:467.895000px;}
.y2c{bottom:476.715000px;}
.ya4{bottom:477.435000px;}
.y60{bottom:481.215000px;}
.y89{bottom:485.175000px;}
.y2b{bottom:493.995000px;}
.y5f{bottom:498.495000px;}
.y88{bottom:502.455000px;}
.y2a{bottom:511.095000px;}
.y5e{bottom:515.775000px;}
.y87{bottom:519.555000px;}
.y29{bottom:528.375000px;}
.ya2{bottom:530.535000px;}
.y5d{bottom:533.055000px;}
.y86{bottom:536.835000px;}
.y28{bottom:545.655000px;}
.y5c{bottom:550.335000px;}
.y85{bottom:554.115000px;}
.y27{bottom:562.935000px;}
.y9f{bottom:563.115000px;}
.y5b{bottom:567.435000px;}
.y84{bottom:571.395000px;}
.y26{bottom:580.215000px;}
.y5a{bottom:584.715000px;}
.y83{bottom:588.675000px;}
.y25{bottom:597.495000px;}
.y59{bottom:601.995000px;}
.y82{bottom:605.955000px;}
.y24{bottom:614.595000px;}
.y58{bottom:619.275000px;}
.y81{bottom:623.055000px;}
.y23{bottom:631.875000px;}
.y57{bottom:636.555000px;}
.y80{bottom:640.335000px;}
.y22{bottom:649.155000px;}
.y56{bottom:653.655000px;}
.y7f{bottom:657.615000px;}
.y21{bottom:666.435000px;}
.y55{bottom:670.935000px;}
.y7e{bottom:674.895000px;}
.y20{bottom:683.745000px;}
.y54{bottom:688.245000px;}
.y7d{bottom:692.205000px;}
.y1f{bottom:701.025000px;}
.y53{bottom:705.525000px;}
.y7c{bottom:709.485000px;}
.y1e{bottom:718.125000px;}
.y52{bottom:722.805000px;}
.y7b{bottom:726.585000px;}
.y1d{bottom:735.405000px;}
.y51{bottom:740.085000px;}
.y7a{bottom:743.865000px;}
.y1c{bottom:752.685000px;}
.y50{bottom:757.185000px;}
.y79{bottom:761.145000px;}
.y1b{bottom:769.965000px;}
.y4f{bottom:774.465000px;}
.y78{bottom:778.425000px;}
.y1a{bottom:787.245000px;}
.y4e{bottom:791.745000px;}
.y77{bottom:795.705000px;}
.y19{bottom:804.345000px;}
.y4d{bottom:809.025000px;}
.y76{bottom:812.805000px;}
.y18{bottom:822.705000px;}
.y4c{bottom:826.305000px;}
.y75{bottom:826.845000px;}
.y17{bottom:840.525000px;}
.y4b{bottom:843.585000px;}
.y16{bottom:859.425000px;}
.y4a{bottom:860.685000px;}
.y49{bottom:877.965000px;}
.y15{bottom:878.505000px;}
.y48{bottom:895.245000px;}
.y14{bottom:897.405000px;}
.y47{bottom:912.525000px;}
.y13{bottom:916.305000px;}
.y46{bottom:929.850000px;}
.y12{bottom:935.430000px;}
.y45{bottom:947.130000px;}
.y11{bottom:954.330000px;}
.y44{bottom:964.230000px;}
.y10{bottom:973.410000px;}
.y43{bottom:981.510000px;}
.yf{bottom:991.950000px;}
.y42{bottom:998.790000px;}
.ye{bottom:1009.770000px;}
.y41{bottom:1016.070000px;}
.yd{bottom:1030.470000px;}
.y40{bottom:1033.350000px;}
.y9{bottom:1051.710000px;}
.y8{bottom:1070.610000px;}
.y7{bottom:1087.890000px;}
.y6{bottom:1105.890000px;}
.y5{bottom:1122.630000px;}
.y4{bottom:1163.520000px;}
.y3{bottom:1182.060000px;}
.y2{bottom:1199.160000px;}
.y1{bottom:1216.440000px;}
.hd{height:25.020000px;}
.hf{height:25.056000px;}
.h5{height:42.164648px;}
.hb{height:43.302656px;}
.hc{height:45.180000px;}
.he{height:45.360000px;}
.h8{height:46.736719px;}
.h7{height:48.410156px;}
.h4{height:50.800781px;}
.ha{height:53.224453px;}
.h9{height:53.404453px;}
.h2{height:53.573906px;}
.h3{height:59.383125px;}
.h6{height:65.884219px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:66.816000px;}
.w3{width:95.940000px;}
.w5{width:97.740000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:7.740000px;}
.x2{left:108.035987px;}
.x8{left:122.435987px;}
.x1{left:128.015987px;}
.x11{left:135.035987px;}
.x12{left:162.029987px;}
.x5{left:167.069987px;}
.xf{left:178.769987px;}
.xb{left:191.909987px;}
.x1a{left:313.994987px;}
.x17{left:315.615000px;}
.x15{left:333.434987px;}
.x9{left:342.254987px;}
.x16{left:346.394987px;}
.x1b{left:362.414987px;}
.xd{left:366.734987px;}
.xe{left:369.074987px;}
.xc{left:372.674987px;}
.xa{left:381.134987px;}
.x13{left:384.374987px;}
.x7{left:386.354987px;}
.x1c{left:395.714987px;}
.x10{left:398.954987px;}
.x6{left:412.274987px;}
.x3{left:446.504987px;}
.x19{left:479.805000px;}
.x4{left:518.504987px;}
.x14{left:631.949987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.280000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.271467pt;}
.ls4{letter-spacing:-0.256000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.106240pt;}
.ls7{letter-spacing:0.136533pt;}
.ls1{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls8{letter-spacing:19.152640pt;}
.ls6{letter-spacing:37.051307pt;}
.ws3{word-spacing:-16.000000pt;}
.ws4{word-spacing:-14.448533pt;}
.ws1{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.416533pt;}
.ws7{word-spacing:-13.374933pt;}
.ws0{word-spacing:-13.280000pt;}
.ws8{word-spacing:-12.960000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws5{word-spacing:0.000000pt;}
._19{margin-left:-2.018347pt;}
._1{margin-left:-1.054507pt;}
._0{width:1.175467pt;}
._5{width:2.677547pt;}
._2{width:3.680853pt;}
._7{width:5.027413pt;}
._6{width:6.048853pt;}
._9{width:7.330560pt;}
._f{width:8.392960pt;}
._17{width:9.381760pt;}
._10{width:10.358400pt;}
._a{width:11.268267pt;}
._8{width:12.317013pt;}
._b{width:14.707413pt;}
._c{width:15.704533pt;}
._15{width:16.679680pt;}
._16{width:17.610880pt;}
._12{width:18.910720pt;}
._11{width:20.026240pt;}
._18{width:20.989227pt;}
._14{width:22.356693pt;}
._13{width:23.797760pt;}
._d{width:24.913280pt;}
._e{width:25.869440pt;}
._1a{width:67.561813pt;}
._4{width:76.032000pt;}
._3{width:611.045333pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.ya3{bottom:9.760000pt;}
.ya9{bottom:9.800000pt;}
.yab{bottom:12.320000pt;}
.ya1{bottom:12.480000pt;}
.ya7{bottom:12.640000pt;}
.ya6{bottom:15.360000pt;}
.ya0{bottom:27.680000pt;}
.ya5{bottom:27.840000pt;}
.yc{bottom:32.640000pt;}
.yb{bottom:49.120000pt;}
.ya{bottom:62.880000pt;}
.yba{bottom:106.880000pt;}
.y9e{bottom:109.120000pt;}
.y74{bottom:121.120000pt;}
.yb9{bottom:122.240000pt;}
.y9d{bottom:124.480000pt;}
.y3f{bottom:130.080000pt;}
.y73{bottom:136.480000pt;}
.yb8{bottom:137.440000pt;}
.y9c{bottom:139.840000pt;}
.y3e{bottom:145.280000pt;}
.y72{bottom:151.680000pt;}
.yb7{bottom:152.800000pt;}
.y9b{bottom:155.200000pt;}
.y3d{bottom:160.640000pt;}
.y71{bottom:167.040000pt;}
.yb6{bottom:168.160000pt;}
.y9a{bottom:170.560000pt;}
.y3c{bottom:176.000000pt;}
.y70{bottom:182.400000pt;}
.yb5{bottom:183.520000pt;}
.y99{bottom:185.920000pt;}
.y3b{bottom:191.386667pt;}
.y6f{bottom:197.786667pt;}
.yb4{bottom:198.906667pt;}
.y98{bottom:201.146667pt;}
.y3a{bottom:206.746667pt;}
.y6e{bottom:213.146667pt;}
.yb3{bottom:214.266667pt;}
.y97{bottom:216.506667pt;}
.y39{bottom:221.946667pt;}
.y6d{bottom:228.346667pt;}
.yb2{bottom:229.466667pt;}
.y96{bottom:231.866667pt;}
.y38{bottom:237.306667pt;}
.y6c{bottom:243.706667pt;}
.yb1{bottom:244.826667pt;}
.y95{bottom:247.226667pt;}
.y37{bottom:252.666667pt;}
.y6b{bottom:259.066667pt;}
.yb0{bottom:260.186667pt;}
.y94{bottom:262.586667pt;}
.y36{bottom:268.026667pt;}
.y6a{bottom:274.426667pt;}
.yaf{bottom:275.546667pt;}
.y93{bottom:277.946667pt;}
.y35{bottom:283.386667pt;}
.y69{bottom:289.786667pt;}
.yae{bottom:290.906667pt;}
.y92{bottom:293.146667pt;}
.y34{bottom:298.746667pt;}
.y68{bottom:305.146667pt;}
.yad{bottom:306.266667pt;}
.y91{bottom:308.506667pt;}
.y33{bottom:313.946667pt;}
.yac{bottom:319.386667pt;}
.y67{bottom:320.346667pt;}
.y90{bottom:323.866667pt;}
.y32{bottom:329.306667pt;}
.y66{bottom:335.706667pt;}
.y8f{bottom:339.226667pt;}
.y31{bottom:344.666667pt;}
.yaa{bottom:348.346667pt;}
.y65{bottom:351.066667pt;}
.y8e{bottom:354.586667pt;}
.y30{bottom:360.026667pt;}
.y64{bottom:366.426667pt;}
.y8d{bottom:369.786667pt;}
.y2f{bottom:375.386667pt;}
.y63{bottom:381.786667pt;}
.y8c{bottom:385.146667pt;}
.y2e{bottom:390.746667pt;}
.ya8{bottom:395.386667pt;}
.y62{bottom:397.146667pt;}
.y8b{bottom:400.546667pt;}
.y2d{bottom:405.986667pt;}
.y61{bottom:412.386667pt;}
.y8a{bottom:415.906667pt;}
.y2c{bottom:423.746667pt;}
.ya4{bottom:424.386667pt;}
.y60{bottom:427.746667pt;}
.y89{bottom:431.266667pt;}
.y2b{bottom:439.106667pt;}
.y5f{bottom:443.106667pt;}
.y88{bottom:446.626667pt;}
.y2a{bottom:454.306667pt;}
.y5e{bottom:458.466667pt;}
.y87{bottom:461.826667pt;}
.y29{bottom:469.666667pt;}
.ya2{bottom:471.586667pt;}
.y5d{bottom:473.826667pt;}
.y86{bottom:477.186667pt;}
.y28{bottom:485.026667pt;}
.y5c{bottom:489.186667pt;}
.y85{bottom:492.546667pt;}
.y27{bottom:500.386667pt;}
.y9f{bottom:500.546667pt;}
.y5b{bottom:504.386667pt;}
.y84{bottom:507.906667pt;}
.y26{bottom:515.746667pt;}
.y5a{bottom:519.746667pt;}
.y83{bottom:523.266667pt;}
.y25{bottom:531.106667pt;}
.y59{bottom:535.106667pt;}
.y82{bottom:538.626667pt;}
.y24{bottom:546.306667pt;}
.y58{bottom:550.466667pt;}
.y81{bottom:553.826667pt;}
.y23{bottom:561.666667pt;}
.y57{bottom:565.826667pt;}
.y80{bottom:569.186667pt;}
.y22{bottom:577.026667pt;}
.y56{bottom:581.026667pt;}
.y7f{bottom:584.546667pt;}
.y21{bottom:592.386667pt;}
.y55{bottom:596.386667pt;}
.y7e{bottom:599.906667pt;}
.y20{bottom:607.773333pt;}
.y54{bottom:611.773333pt;}
.y7d{bottom:615.293333pt;}
.y1f{bottom:623.133333pt;}
.y53{bottom:627.133333pt;}
.y7c{bottom:630.653333pt;}
.y1e{bottom:638.333333pt;}
.y52{bottom:642.493333pt;}
.y7b{bottom:645.853333pt;}
.y1d{bottom:653.693333pt;}
.y51{bottom:657.853333pt;}
.y7a{bottom:661.213333pt;}
.y1c{bottom:669.053333pt;}
.y50{bottom:673.053333pt;}
.y79{bottom:676.573333pt;}
.y1b{bottom:684.413333pt;}
.y4f{bottom:688.413333pt;}
.y78{bottom:691.933333pt;}
.y1a{bottom:699.773333pt;}
.y4e{bottom:703.773333pt;}
.y77{bottom:707.293333pt;}
.y19{bottom:714.973333pt;}
.y4d{bottom:719.133333pt;}
.y76{bottom:722.493333pt;}
.y18{bottom:731.293333pt;}
.y4c{bottom:734.493333pt;}
.y75{bottom:734.973333pt;}
.y17{bottom:747.133333pt;}
.y4b{bottom:749.853333pt;}
.y16{bottom:763.933333pt;}
.y4a{bottom:765.053333pt;}
.y49{bottom:780.413333pt;}
.y15{bottom:780.893333pt;}
.y48{bottom:795.773333pt;}
.y14{bottom:797.693333pt;}
.y47{bottom:811.133333pt;}
.y13{bottom:814.493333pt;}
.y46{bottom:826.533333pt;}
.y12{bottom:831.493333pt;}
.y45{bottom:841.893333pt;}
.y11{bottom:848.293333pt;}
.y44{bottom:857.093333pt;}
.y10{bottom:865.253333pt;}
.y43{bottom:872.453333pt;}
.yf{bottom:881.733333pt;}
.y42{bottom:887.813333pt;}
.ye{bottom:897.573333pt;}
.y41{bottom:903.173333pt;}
.yd{bottom:915.973333pt;}
.y40{bottom:918.533333pt;}
.y9{bottom:934.853333pt;}
.y8{bottom:951.653333pt;}
.y7{bottom:967.013333pt;}
.y6{bottom:983.013333pt;}
.y5{bottom:997.893333pt;}
.y4{bottom:1034.240000pt;}
.y3{bottom:1050.720000pt;}
.y2{bottom:1065.920000pt;}
.y1{bottom:1081.280000pt;}
.hd{height:22.240000pt;}
.hf{height:22.272000pt;}
.h5{height:37.479688pt;}
.hb{height:38.491250pt;}
.hc{height:40.160000pt;}
.he{height:40.320000pt;}
.h8{height:41.543750pt;}
.h7{height:43.031250pt;}
.h4{height:45.156250pt;}
.ha{height:47.310625pt;}
.h9{height:47.470625pt;}
.h2{height:47.621250pt;}
.h3{height:52.785000pt;}
.h6{height:58.563750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:59.392000pt;}
.w3{width:85.280000pt;}
.w5{width:86.880000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:6.880000pt;}
.x2{left:96.031988pt;}
.x8{left:108.831988pt;}
.x1{left:113.791988pt;}
.x11{left:120.031988pt;}
.x12{left:144.026655pt;}
.x5{left:148.506655pt;}
.xf{left:158.906655pt;}
.xb{left:170.586655pt;}
.x1a{left:279.106655pt;}
.x17{left:280.546667pt;}
.x15{left:296.386655pt;}
.x9{left:304.226655pt;}
.x16{left:307.906655pt;}
.x1b{left:322.146655pt;}
.xd{left:325.986655pt;}
.xe{left:328.066655pt;}
.xc{left:331.266655pt;}
.xa{left:338.786655pt;}
.x13{left:341.666655pt;}
.x7{left:343.426655pt;}
.x1c{left:351.746655pt;}
.x10{left:354.626655pt;}
.x6{left:366.466655pt;}
.x3{left:396.893322pt;}
.x19{left:426.493333pt;}
.x4{left:460.893322pt;}
.x14{left:561.733322pt;}
}




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