
    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_704c7e0ec2adcf65e440d5bb.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_17fdb0bd4ede9dda097d36fd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_3a6de636f149bdcd2a61c207.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.202148;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_6c4e83205e5dade03b536e27.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.172852;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_8ba57f5b5162b8ec6e22a459.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.053223;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);}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls12{letter-spacing:-1.260000px;}
.ls6{letter-spacing:-0.852000px;}
.ls11{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.238800px;}
.ls4{letter-spacing:-0.175800px;}
.ls8{letter-spacing:-0.132600px;}
.lse{letter-spacing:-0.064800px;}
.ls10{letter-spacing:-0.058320px;}
.ls9{letter-spacing:-0.058200px;}
.ls7{letter-spacing:-0.039000px;}
.ls1{letter-spacing:-0.038880px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.031680px;}
.lsa{letter-spacing:0.060600px;}
.lsf{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.186600px;}
.ls0{letter-spacing:0.195600px;}
.lsb{letter-spacing:0.660000px;}
.lsc{letter-spacing:60.654240px;}
.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:-19.038240px;}
.ws9{word-spacing:-16.272000px;}
.ws7{word-spacing:-15.001920px;}
.ws3{word-spacing:-14.970240px;}
.ws6{word-spacing:-14.794440px;}
.ws0{word-spacing:-14.569680px;}
.wsf{word-spacing:-14.165760px;}
.wsc{word-spacing:-13.692360px;}
.wsa{word-spacing:-13.505760px;}
.wsb{word-spacing:-13.447560px;}
.wse{word-spacing:-13.447440px;}
.wsd{word-spacing:-13.440960px;}
.ws2{word-spacing:-9.437760px;}
.ws1{word-spacing:-9.023040px;}
.ws8{word-spacing:-9.022920px;}
.ws5{word-spacing:0.000000px;}
._1{margin-left:-18.471840px;}
._1c{margin-left:-13.266240px;}
._14{margin-left:-4.992480px;}
._6{margin-left:-3.510720px;}
._5{margin-left:-2.233920px;}
._0{margin-left:-1.144320px;}
._3{width:1.126080px;}
._9{width:2.204160px;}
._b{width:3.618240px;}
._8{width:5.118720px;}
._7{width:6.160320px;}
._e{width:7.485120px;}
._1a{width:8.496960px;}
._c{width:9.671040px;}
._d{width:11.529120px;}
._1e{width:12.719321px;}
._11{width:13.729920px;}
._27{width:15.210000px;}
._15{width:16.228800px;}
._1d{width:17.373120px;}
._1b{width:18.661440px;}
._16{width:19.805760px;}
._17{width:20.829120px;}
._13{width:22.455360px;}
._12{width:23.981280px;}
._a{width:25.369920px;}
._2{width:26.496000px;}
._4{width:27.688320px;}
._18{width:28.748160px;}
._19{width:29.837760px;}
._10{width:34.776000px;}
._f{width:36.422400px;}
._20{width:41.473799px;}
._1f{width:42.728400px;}
._25{width:50.566320px;}
._24{width:60.716160px;}
._22{width:75.237840px;}
._21{width:76.492800px;}
._23{width:78.594000px;}
._28{width:87.189840px;}
._29{width:88.395600px;}
._26{width:134.578560px;}
.fc2{color:transparent;}
.fc3{color:rgb(5,99,193);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:41.760000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y5{bottom:6.840000px;}
.y2{bottom:17.820000px;}
.y6{bottom:57.420000px;}
.y4{bottom:73.116000px;}
.y59{bottom:124.956000px;}
.y2d{bottom:126.936000px;}
.y8a{bottom:142.056000px;}
.y58{bottom:146.556000px;}
.y2c{bottom:148.536000px;}
.y89{bottom:161.850000px;}
.y57{bottom:167.970000px;}
.y2b{bottom:170.130000px;}
.y88{bottom:181.470000px;}
.y56{bottom:189.570000px;}
.y2a{bottom:191.730000px;}
.y87{bottom:201.270000px;}
.y71{bottom:211.170000px;}
.y29{bottom:213.330000px;}
.y86{bottom:221.070000px;}
.y55{bottom:223.230000px;}
.y70{bottom:232.770000px;}
.y28{bottom:234.930000px;}
.y85{bottom:240.870000px;}
.y54{bottom:244.830000px;}
.y6f{bottom:254.370000px;}
.y27{bottom:256.350000px;}
.y84{bottom:260.670000px;}
.y53{bottom:266.250000px;}
.y6e{bottom:275.790000px;}
.y83{bottom:280.290000px;}
.y52{bottom:287.850000px;}
.y26{bottom:290.550000px;}
.y51{bottom:309.450000px;}
.y82{bottom:313.230000px;}
.yb4{bottom:319.710000px;}
.y25{bottom:329.790000px;}
.y50{bottom:331.050000px;}
.y81{bottom:348.195000px;}
.yb3{bottom:351.075000px;}
.y4f{bottom:352.695000px;}
.y80{bottom:369.795000px;}
.yb2{bottom:370.875000px;}
.y24{bottom:371.235000px;}
.y4e{bottom:374.115000px;}
.yb1{bottom:390.675000px;}
.y4d{bottom:395.715000px;}
.y7f{bottom:403.815000px;}
.y23{bottom:404.715000px;}
.yb0{bottom:410.475000px;}
.y4c{bottom:417.315000px;}
.yaf{bottom:430.275000px;}
.y22{bottom:438.375000px;}
.y4b{bottom:438.915000px;}
.yae{bottom:449.895000px;}
.y6d{bottom:451.335000px;}
.y4a{bottom:460.515000px;}
.yad{bottom:469.695000px;}
.y21{bottom:471.855000px;}
.y49{bottom:482.115000px;}
.y6c{bottom:486.435000px;}
.yac{bottom:489.495000px;}
.y20{bottom:493.455000px;}
.y7e{bottom:503.535000px;}
.y6b{bottom:508.035000px;}
.yab{bottom:509.295000px;}
.y1f{bottom:515.055000px;}
.y48{bottom:516.135000px;}
.y7d{bottom:525.135000px;}
.yaa{bottom:528.915000px;}
.y6a{bottom:529.635000px;}
.y1e{bottom:536.655000px;}
.ya9{bottom:548.715000px;}
.y47{bottom:551.055000px;}
.y1d{bottom:558.075000px;}
.y7c{bottom:558.795000px;}
.ya8{bottom:568.515000px;}
.y46{bottom:572.655000px;}
.y1c{bottom:579.675000px;}
.y7b{bottom:580.395000px;}
.ya7{bottom:588.315000px;}
.y45{bottom:594.255000px;}
.y1b{bottom:601.275000px;}
.y7a{bottom:601.815000px;}
.y69{bottom:606.345000px;}
.ya6{bottom:608.145000px;}
.y44{bottom:615.885000px;}
.y1a{bottom:622.905000px;}
.y79{bottom:623.445000px;}
.ya5{bottom:627.765000px;}
.y68{bottom:627.945000px;}
.y43{bottom:637.485000px;}
.y19{bottom:644.505000px;}
.y78{bottom:645.045000px;}
.ya4{bottom:647.565000px;}
.y67{bottom:649.365000px;}
.y42{bottom:659.085000px;}
.y18{bottom:666.105000px;}
.y77{bottom:666.645000px;}
.ya3{bottom:667.365000px;}
.y66{bottom:670.965000px;}
.ya2{bottom:687.165000px;}
.y17{bottom:687.525000px;}
.y76{bottom:688.245000px;}
.y41{bottom:692.565000px;}
.ya1{bottom:706.785000px;}
.y16{bottom:709.125000px;}
.y40{bottom:714.165000px;}
.y75{bottom:722.265000px;}
.y65{bottom:726.225000px;}
.ya0{bottom:726.585000px;}
.y15{bottom:730.725000px;}
.y3f{bottom:735.765000px;}
.y9f{bottom:746.385000px;}
.y64{bottom:747.645000px;}
.y14{bottom:752.325000px;}
.y3e{bottom:757.365000px;}
.y9e{bottom:766.185000px;}
.y63{bottom:769.245000px;}
.y13{bottom:773.925000px;}
.y74{bottom:778.785000px;}
.y9d{bottom:785.985000px;}
.y62{bottom:790.845000px;}
.y3d{bottom:791.385000px;}
.y12{bottom:795.525000px;}
.y73{bottom:800.385000px;}
.y9c{bottom:805.605000px;}
.y61{bottom:812.445000px;}
.y11{bottom:816.945000px;}
.y72{bottom:821.985000px;}
.y9b{bottom:825.405000px;}
.y3c{bottom:826.305000px;}
.y60{bottom:834.045000px;}
.y9a{bottom:845.205000px;}
.y3b{bottom:847.905000px;}
.y10{bottom:850.605000px;}
.y5f{bottom:855.465000px;}
.y99{bottom:865.005000px;}
.y3a{bottom:869.505000px;}
.y5e{bottom:877.110000px;}
.y98{bottom:884.850000px;}
.yf{bottom:885.750000px;}
.y39{bottom:891.150000px;}
.y5d{bottom:898.710000px;}
.y97{bottom:904.470000px;}
.y38{bottom:912.750000px;}
.y5c{bottom:920.310000px;}
.ye{bottom:923.550000px;}
.y96{bottom:924.270000px;}
.y5b{bottom:941.910000px;}
.y95{bottom:944.070000px;}
.y37{bottom:946.230000px;}
.yd{bottom:960.270000px;}
.y94{bottom:963.870000px;}
.y36{bottom:967.830000px;}
.y5a{bottom:975.930000px;}
.y93{bottom:983.490000px;}
.y35{bottom:989.430000px;}
.yc{bottom:999.690000px;}
.y92{bottom:1003.290000px;}
.y34{bottom:1011.030000px;}
.yb{bottom:1021.290000px;}
.y91{bottom:1023.090000px;}
.y33{bottom:1032.450000px;}
.y90{bottom:1042.890000px;}
.ya{bottom:1048.830000px;}
.y32{bottom:1054.050000px;}
.y8f{bottom:1062.690000px;}
.y9{bottom:1070.430000px;}
.y31{bottom:1075.650000px;}
.y8e{bottom:1082.310000px;}
.y30{bottom:1097.250000px;}
.y8d{bottom:1102.110000px;}
.y8{bottom:1105.530000px;}
.y2f{bottom:1118.850000px;}
.y8c{bottom:1121.910000px;}
.y7{bottom:1133.070000px;}
.y2e{bottom:1140.480000px;}
.y8b{bottom:1141.740000px;}
.y3{bottom:1160.640000px;}
.y1{bottom:1176.300000px;}
.h4{height:22.500000px;}
.h2{height:33.480000px;}
.h6{height:42.124219px;}
.h9{height:59.439023px;}
.ha{height:61.189805px;}
.h3{height:65.884219px;}
.h7{height:67.824844px;}
.h8{height:73.722656px;}
.h5{height:86.255508px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:40.536000px;}
.w4{width:118.080000px;}
.w7{width:226.470000px;}
.w6{width:226.650000px;}
.w2{width:520.995000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x4{left:20.160000px;}
.x1{left:106.236000px;}
.x8{left:113.220000px;}
.x6{left:118.620000px;}
.xd{left:132.155987px;}
.xb{left:135.575987px;}
.xf{left:201.269987px;}
.xa{left:227.025000px;}
.x10{left:274.889987px;}
.xc{left:295.094987px;}
.x7{left:332.895000px;}
.xe{left:357.734987px;}
.x13{left:367.454987px;}
.x12{left:409.574987px;}
.x11{left:446.474987px;}
.x9{left:559.365000px;}
.x3{left:627.225000px;}
.x5{left:667.770000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls12{letter-spacing:-1.120000pt;}
.ls6{letter-spacing:-0.757333pt;}
.ls11{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.212267pt;}
.ls4{letter-spacing:-0.156267pt;}
.ls8{letter-spacing:-0.117867pt;}
.lse{letter-spacing:-0.057600pt;}
.ls10{letter-spacing:-0.051840pt;}
.ls9{letter-spacing:-0.051733pt;}
.ls7{letter-spacing:-0.034667pt;}
.ls1{letter-spacing:-0.034560pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.028160pt;}
.lsa{letter-spacing:0.053867pt;}
.lsf{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.165867pt;}
.ls0{letter-spacing:0.173867pt;}
.lsb{letter-spacing:0.586667pt;}
.lsc{letter-spacing:53.914880pt;}
.ws4{word-spacing:-16.922880pt;}
.ws9{word-spacing:-14.464000pt;}
.ws7{word-spacing:-13.335040pt;}
.ws3{word-spacing:-13.306880pt;}
.ws6{word-spacing:-13.150613pt;}
.ws0{word-spacing:-12.950827pt;}
.wsf{word-spacing:-12.591787pt;}
.wsc{word-spacing:-12.170987pt;}
.wsa{word-spacing:-12.005120pt;}
.wsb{word-spacing:-11.953387pt;}
.wse{word-spacing:-11.953280pt;}
.wsd{word-spacing:-11.947520pt;}
.ws2{word-spacing:-8.389120pt;}
.ws1{word-spacing:-8.020480pt;}
.ws8{word-spacing:-8.020373pt;}
.ws5{word-spacing:0.000000pt;}
._1{margin-left:-16.419413pt;}
._1c{margin-left:-11.792213pt;}
._14{margin-left:-4.437760pt;}
._6{margin-left:-3.120640pt;}
._5{margin-left:-1.985707pt;}
._0{margin-left:-1.017173pt;}
._3{width:1.000960pt;}
._9{width:1.959253pt;}
._b{width:3.216213pt;}
._8{width:4.549973pt;}
._7{width:5.475840pt;}
._e{width:6.653440pt;}
._1a{width:7.552853pt;}
._c{width:8.596480pt;}
._d{width:10.248107pt;}
._1e{width:11.306063pt;}
._11{width:12.204373pt;}
._27{width:13.520000pt;}
._15{width:14.425600pt;}
._1d{width:15.442773pt;}
._1b{width:16.587947pt;}
._16{width:17.605120pt;}
._17{width:18.514773pt;}
._13{width:19.960320pt;}
._12{width:21.316693pt;}
._a{width:22.551040pt;}
._2{width:23.552000pt;}
._4{width:24.611840pt;}
._18{width:25.553920pt;}
._19{width:26.522453pt;}
._10{width:30.912000pt;}
._f{width:32.375467pt;}
._20{width:36.865599pt;}
._1f{width:37.980800pt;}
._25{width:44.947840pt;}
._24{width:53.969920pt;}
._22{width:66.878080pt;}
._21{width:67.993600pt;}
._23{width:69.861333pt;}
._28{width:77.502080pt;}
._29{width:78.573867pt;}
._26{width:119.625387pt;}
.fs1{font-size:37.120000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:6.080000pt;}
.y2{bottom:15.840000pt;}
.y6{bottom:51.040000pt;}
.y4{bottom:64.992000pt;}
.y59{bottom:111.072000pt;}
.y2d{bottom:112.832000pt;}
.y8a{bottom:126.272000pt;}
.y58{bottom:130.272000pt;}
.y2c{bottom:132.032000pt;}
.y89{bottom:143.866667pt;}
.y57{bottom:149.306667pt;}
.y2b{bottom:151.226667pt;}
.y88{bottom:161.306667pt;}
.y56{bottom:168.506667pt;}
.y2a{bottom:170.426667pt;}
.y87{bottom:178.906667pt;}
.y71{bottom:187.706667pt;}
.y29{bottom:189.626667pt;}
.y86{bottom:196.506667pt;}
.y55{bottom:198.426667pt;}
.y70{bottom:206.906667pt;}
.y28{bottom:208.826667pt;}
.y85{bottom:214.106667pt;}
.y54{bottom:217.626667pt;}
.y6f{bottom:226.106667pt;}
.y27{bottom:227.866667pt;}
.y84{bottom:231.706667pt;}
.y53{bottom:236.666667pt;}
.y6e{bottom:245.146667pt;}
.y83{bottom:249.146667pt;}
.y52{bottom:255.866667pt;}
.y26{bottom:258.266667pt;}
.y51{bottom:275.066667pt;}
.y82{bottom:278.426667pt;}
.yb4{bottom:284.186667pt;}
.y25{bottom:293.146667pt;}
.y50{bottom:294.266667pt;}
.y81{bottom:309.506667pt;}
.yb3{bottom:312.066667pt;}
.y4f{bottom:313.506667pt;}
.y80{bottom:328.706667pt;}
.yb2{bottom:329.666667pt;}
.y24{bottom:329.986667pt;}
.y4e{bottom:332.546667pt;}
.yb1{bottom:347.266667pt;}
.y4d{bottom:351.746667pt;}
.y7f{bottom:358.946667pt;}
.y23{bottom:359.746667pt;}
.yb0{bottom:364.866667pt;}
.y4c{bottom:370.946667pt;}
.yaf{bottom:382.466667pt;}
.y22{bottom:389.666667pt;}
.y4b{bottom:390.146667pt;}
.yae{bottom:399.906667pt;}
.y6d{bottom:401.186667pt;}
.y4a{bottom:409.346667pt;}
.yad{bottom:417.506667pt;}
.y21{bottom:419.426667pt;}
.y49{bottom:428.546667pt;}
.y6c{bottom:432.386667pt;}
.yac{bottom:435.106667pt;}
.y20{bottom:438.626667pt;}
.y7e{bottom:447.586667pt;}
.y6b{bottom:451.586667pt;}
.yab{bottom:452.706667pt;}
.y1f{bottom:457.826667pt;}
.y48{bottom:458.786667pt;}
.y7d{bottom:466.786667pt;}
.yaa{bottom:470.146667pt;}
.y6a{bottom:470.786667pt;}
.y1e{bottom:477.026667pt;}
.ya9{bottom:487.746667pt;}
.y47{bottom:489.826667pt;}
.y1d{bottom:496.066667pt;}
.y7c{bottom:496.706667pt;}
.ya8{bottom:505.346667pt;}
.y46{bottom:509.026667pt;}
.y1c{bottom:515.266667pt;}
.y7b{bottom:515.906667pt;}
.ya7{bottom:522.946667pt;}
.y45{bottom:528.226667pt;}
.y1b{bottom:534.466667pt;}
.y7a{bottom:534.946667pt;}
.y69{bottom:538.973333pt;}
.ya6{bottom:540.573333pt;}
.y44{bottom:547.453333pt;}
.y1a{bottom:553.693333pt;}
.y79{bottom:554.173333pt;}
.ya5{bottom:558.013333pt;}
.y68{bottom:558.173333pt;}
.y43{bottom:566.653333pt;}
.y19{bottom:572.893333pt;}
.y78{bottom:573.373333pt;}
.ya4{bottom:575.613333pt;}
.y67{bottom:577.213333pt;}
.y42{bottom:585.853333pt;}
.y18{bottom:592.093333pt;}
.y77{bottom:592.573333pt;}
.ya3{bottom:593.213333pt;}
.y66{bottom:596.413333pt;}
.ya2{bottom:610.813333pt;}
.y17{bottom:611.133333pt;}
.y76{bottom:611.773333pt;}
.y41{bottom:615.613333pt;}
.ya1{bottom:628.253333pt;}
.y16{bottom:630.333333pt;}
.y40{bottom:634.813333pt;}
.y75{bottom:642.013333pt;}
.y65{bottom:645.533333pt;}
.ya0{bottom:645.853333pt;}
.y15{bottom:649.533333pt;}
.y3f{bottom:654.013333pt;}
.y9f{bottom:663.453333pt;}
.y64{bottom:664.573333pt;}
.y14{bottom:668.733333pt;}
.y3e{bottom:673.213333pt;}
.y9e{bottom:681.053333pt;}
.y63{bottom:683.773333pt;}
.y13{bottom:687.933333pt;}
.y74{bottom:692.253333pt;}
.y9d{bottom:698.653333pt;}
.y62{bottom:702.973333pt;}
.y3d{bottom:703.453333pt;}
.y12{bottom:707.133333pt;}
.y73{bottom:711.453333pt;}
.y9c{bottom:716.093333pt;}
.y61{bottom:722.173333pt;}
.y11{bottom:726.173333pt;}
.y72{bottom:730.653333pt;}
.y9b{bottom:733.693333pt;}
.y3c{bottom:734.493333pt;}
.y60{bottom:741.373333pt;}
.y9a{bottom:751.293333pt;}
.y3b{bottom:753.693333pt;}
.y10{bottom:756.093333pt;}
.y5f{bottom:760.413333pt;}
.y99{bottom:768.893333pt;}
.y3a{bottom:772.893333pt;}
.y5e{bottom:779.653333pt;}
.y98{bottom:786.533333pt;}
.yf{bottom:787.333333pt;}
.y39{bottom:792.133333pt;}
.y5d{bottom:798.853333pt;}
.y97{bottom:803.973333pt;}
.y38{bottom:811.333333pt;}
.y5c{bottom:818.053333pt;}
.ye{bottom:820.933333pt;}
.y96{bottom:821.573333pt;}
.y5b{bottom:837.253333pt;}
.y95{bottom:839.173333pt;}
.y37{bottom:841.093333pt;}
.yd{bottom:853.573333pt;}
.y94{bottom:856.773333pt;}
.y36{bottom:860.293333pt;}
.y5a{bottom:867.493333pt;}
.y93{bottom:874.213333pt;}
.y35{bottom:879.493333pt;}
.yc{bottom:888.613333pt;}
.y92{bottom:891.813333pt;}
.y34{bottom:898.693333pt;}
.yb{bottom:907.813333pt;}
.y91{bottom:909.413333pt;}
.y33{bottom:917.733333pt;}
.y90{bottom:927.013333pt;}
.ya{bottom:932.293333pt;}
.y32{bottom:936.933333pt;}
.y8f{bottom:944.613333pt;}
.y9{bottom:951.493333pt;}
.y31{bottom:956.133333pt;}
.y8e{bottom:962.053333pt;}
.y30{bottom:975.333333pt;}
.y8d{bottom:979.653333pt;}
.y8{bottom:982.693333pt;}
.y2f{bottom:994.533333pt;}
.y8c{bottom:997.253333pt;}
.y7{bottom:1007.173333pt;}
.y2e{bottom:1013.760000pt;}
.y8b{bottom:1014.880000pt;}
.y3{bottom:1031.680000pt;}
.y1{bottom:1045.600000pt;}
.h4{height:20.000000pt;}
.h2{height:29.760000pt;}
.h6{height:37.443750pt;}
.h9{height:52.834688pt;}
.ha{height:54.390938pt;}
.h3{height:58.563750pt;}
.h7{height:60.288750pt;}
.h8{height:65.531250pt;}
.h5{height:76.671562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:36.032000pt;}
.w4{width:104.960000pt;}
.w7{width:201.306667pt;}
.w6{width:201.466667pt;}
.w2{width:463.106667pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x4{left:17.920000pt;}
.x1{left:94.432000pt;}
.x8{left:100.640000pt;}
.x6{left:105.440000pt;}
.xd{left:117.471988pt;}
.xb{left:120.511988pt;}
.xf{left:178.906655pt;}
.xa{left:201.800000pt;}
.x10{left:244.346655pt;}
.xc{left:262.306655pt;}
.x7{left:295.906667pt;}
.xe{left:317.986655pt;}
.x13{left:326.626655pt;}
.x12{left:364.066655pt;}
.x11{left:396.866655pt;}
.x9{left:497.213333pt;}
.x3{left:557.533333pt;}
.x5{left:593.573333pt;}
}




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