
    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_a9a6b54a5a0d5b7560e56dbb.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_30d4163540a276188f933e37.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_1a3d67df808c5aff6f7c98fe.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_2d5724db442ac291a3a33d9f.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_130301694ab792f9947e2b7d.woff')format("woff");}.ff6{font-family:ff6;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;}
.ls8{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.576000px;}
.ls5{letter-spacing:0.720000px;}
.ls9{letter-spacing:0.864000px;}
.ls2{letter-spacing:3.600000px;}
.ls7{letter-spacing:33.984000px;}
.ls1{letter-spacing:64.026720px;}
.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;}
}
.ws2{word-spacing:-59.760000px;}
.ws8{word-spacing:-18.864000px;}
.ws6{word-spacing:-18.720000px;}
.ws3{word-spacing:-18.576000px;}
.ws5{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.856000px;}
.ws7{word-spacing:-17.712000px;}
.ws0{word-spacing:0.000000px;}
._7{margin-left:-4.248000px;}
._6{margin-left:-2.952000px;}
._0{margin-left:-1.152000px;}
._1{width:1.008000px;}
._13{width:2.016000px;}
._2{width:3.024000px;}
._3{width:4.032000px;}
._f{width:5.040000px;}
._11{width:6.048000px;}
._c{width:7.920000px;}
._e{width:8.928000px;}
._d{width:9.936000px;}
._10{width:11.520000px;}
._b{width:12.960000px;}
._a{width:14.472000px;}
._5{width:15.480000px;}
._4{width:16.560000px;}
._12{width:19.008000px;}
._8{width:20.808000px;}
._9{width:21.960000px;}
._17{width:23.376000px;}
._19{width:24.408000px;}
._18{width:25.416000px;}
._35{width:26.928000px;}
._16{width:27.936000px;}
._14{width:29.592000px;}
._15{width:30.600000px;}
._27{width:32.616000px;}
._32{width:34.272000px;}
._34{width:35.378400px;}
._2f{width:38.088000px;}
._2e{width:40.536000px;}
._24{width:43.200000px;}
._2c{width:46.008000px;}
._26{width:48.456000px;}
._33{width:52.992000px;}
._39{width:54.648000px;}
._1e{width:55.656000px;}
._20{width:57.816000px;}
._28{width:61.272000px;}
._1b{width:63.504000px;}
._36{width:69.120000px;}
._37{width:70.572000px;}
._1f{width:72.000000px;}
._38{width:73.452000px;}
._23{width:80.136000px;}
._30{width:101.448000px;}
._25{width:107.712000px;}
._21{width:117.552000px;}
._2b{width:119.016000px;}
._31{width:120.672000px;}
._22{width:128.088000px;}
._29{width:129.672000px;}
._2a{width:147.432000px;}
._1a{width:153.936000px;}
._1d{width:171.648000px;}
._2d{width:199.416000px;}
._1c{width:239.688000px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:36.000000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y85{bottom:3.960000px;}
.y91{bottom:24.654000px;}
.y84{bottom:24.660000px;}
.yb8{bottom:24.705000px;}
.y90{bottom:45.354000px;}
.y88{bottom:45.360000px;}
.yb7{bottom:45.405000px;}
.y2{bottom:58.320000px;}
.y92{bottom:66.054000px;}
.y87{bottom:66.060000px;}
.yba{bottom:66.105000px;}
.y1{bottom:78.516000px;}
.y98{bottom:86.754000px;}
.y8e{bottom:86.760000px;}
.ya4{bottom:86.790000px;}
.yb9{bottom:86.805000px;}
.yb5{bottom:97.014000px;}
.yad{bottom:98.856000px;}
.ye3{bottom:101.196000px;}
.y2f{bottom:101.736000px;}
.y97{bottom:107.454000px;}
.y8d{bottom:107.460000px;}
.ya3{bottom:107.490000px;}
.yac{bottom:107.505000px;}
.ydb{bottom:110.016000px;}
.y5a{bottom:111.636000px;}
.yb4{bottom:117.714000px;}
.ye2{bottom:121.896000px;}
.y2e{bottom:122.436000px;}
.yb2{bottom:125.316000px;}
.y8f{bottom:126.036000px;}
.y96{bottom:128.154000px;}
.y8c{bottom:128.160000px;}
.ya2{bottom:128.190000px;}
.yab{bottom:128.205000px;}
.y59{bottom:130.356000px;}
.yda{bottom:130.716000px;}
.y7c{bottom:132.156000px;}
.y58{bottom:142.596000px;}
.y2d{bottom:143.136000px;}
.y95{bottom:148.854000px;}
.y8b{bottom:148.860000px;}
.ya1{bottom:148.890000px;}
.yaa{bottom:148.905000px;}
.yd9{bottom:149.616000px;}
.y7b{bottom:152.850000px;}
.yd8{bottom:161.850000px;}
.y57{bottom:163.290000px;}
.y2c{bottom:163.830000px;}
.y8a{bottom:169.560000px;}
.ya0{bottom:169.590000px;}
.y94{bottom:169.599000px;}
.ya9{bottom:169.605000px;}
.y7a{bottom:173.550000px;}
.yd7{bottom:182.550000px;}
.y56{bottom:183.990000px;}
.y2b{bottom:184.530000px;}
.y9b{bottom:190.260000px;}
.y89{bottom:190.290000px;}
.y93{bottom:190.299000px;}
.ya8{bottom:190.305000px;}
.ya5{bottom:190.650000px;}
.y79{bottom:194.250000px;}
.yd6{bottom:203.250000px;}
.y55{bottom:204.690000px;}
.y2a{bottom:205.230000px;}
.y9a{bottom:210.960000px;}
.y9f{bottom:210.990000px;}
.yb3{bottom:210.999000px;}
.ya7{bottom:211.005000px;}
.y78{bottom:214.950000px;}
.ye1{bottom:223.410000px;}
.yd5{bottom:223.950000px;}
.y54{bottom:225.390000px;}
.y29{bottom:225.930000px;}
.yb1{bottom:231.690000px;}
.ya6{bottom:231.705000px;}
.y77{bottom:235.650000px;}
.yd4{bottom:244.650000px;}
.y53{bottom:246.090000px;}
.y28{bottom:246.630000px;}
.y76{bottom:256.350000px;}
.yd3{bottom:265.350000px;}
.y52{bottom:266.790000px;}
.y27{bottom:267.330000px;}
.y75{bottom:277.050000px;}
.yd2{bottom:286.050000px;}
.y51{bottom:287.490000px;}
.y26{bottom:288.030000px;}
.y74{bottom:297.795000px;}
.yd1{bottom:304.815000px;}
.y50{bottom:308.235000px;}
.y25{bottom:308.775000px;}
.yd0{bottom:317.055000px;}
.y73{bottom:318.495000px;}
.y4f{bottom:328.935000px;}
.y24{bottom:329.475000px;}
.y86{bottom:333.795000px;}
.ycf{bottom:337.755000px;}
.y72{bottom:339.195000px;}
.y4e{bottom:349.635000px;}
.y23{bottom:350.175000px;}
.yb0{bottom:353.775000px;}
.y71{bottom:358.095000px;}
.yce{bottom:358.455000px;}
.ye0{bottom:359.895000px;}
.y4d{bottom:370.335000px;}
.y22{bottom:370.875000px;}
.ycd{bottom:379.155000px;}
.ydf{bottom:380.595000px;}
.y4c{bottom:391.035000px;}
.y21{bottom:391.575000px;}
.ycc{bottom:399.855000px;}
.yde{bottom:401.295000px;}
.y4b{bottom:409.755000px;}
.y70{bottom:411.735000px;}
.y20{bottom:412.275000px;}
.ycb{bottom:420.555000px;}
.y4a{bottom:421.995000px;}
.y6f{bottom:432.435000px;}
.y1f{bottom:432.975000px;}
.y9e{bottom:439.815000px;}
.yca{bottom:441.255000px;}
.y49{bottom:442.695000px;}
.y6e{bottom:453.135000px;}
.y1e{bottom:453.675000px;}
.yc9{bottom:461.955000px;}
.y48{bottom:463.395000px;}
.y6d{bottom:473.835000px;}
.y1d{bottom:474.375000px;}
.yc8{bottom:480.675000px;}
.y47{bottom:484.095000px;}
.yc7{bottom:492.915000px;}
.y6c{bottom:494.535000px;}
.y1c{bottom:495.075000px;}
.y46{bottom:504.795000px;}
.yc6{bottom:513.615000px;}
.y6b{bottom:515.235000px;}
.y1b{bottom:515.775000px;}
.y45{bottom:525.525000px;}
.yc5{bottom:534.345000px;}
.y6a{bottom:535.965000px;}
.y1a{bottom:536.505000px;}
.y83{bottom:541.545000px;}
.y44{bottom:546.225000px;}
.yc4{bottom:555.045000px;}
.y69{bottom:556.665000px;}
.y19{bottom:557.205000px;}
.y43{bottom:566.925000px;}
.yc3{bottom:575.745000px;}
.y18{bottom:576.105000px;}
.y68{bottom:577.365000px;}
.y42{bottom:587.625000px;}
.y17{bottom:593.205000px;}
.yc2{bottom:596.445000px;}
.y67{bottom:598.065000px;}
.yaf{bottom:602.925000px;}
.y82{bottom:606.525000px;}
.y41{bottom:608.325000px;}
.y16{bottom:613.905000px;}
.yc1{bottom:617.145000px;}
.y66{bottom:618.765000px;}
.y40{bottom:629.025000px;}
.y15{bottom:634.605000px;}
.yc0{bottom:637.845000px;}
.y65{bottom:639.465000px;}
.y3f{bottom:649.725000px;}
.y14{bottom:655.305000px;}
.ybf{bottom:658.545000px;}
.y64{bottom:660.165000px;}
.y9d{bottom:668.265000px;}
.ydd{bottom:668.625000px;}
.y3e{bottom:670.425000px;}
.y13{bottom:676.005000px;}
.ybe{bottom:679.245000px;}
.y63{bottom:680.865000px;}
.y3d{bottom:691.125000px;}
.y12{bottom:694.725000px;}
.ybd{bottom:699.945000px;}
.y62{bottom:701.565000px;}
.y11{bottom:706.965000px;}
.y3c{bottom:711.825000px;}
.ybc{bottom:720.645000px;}
.y61{bottom:722.265000px;}
.y10{bottom:727.665000px;}
.y3b{bottom:732.525000px;}
.ybb{bottom:739.545000px;}
.y60{bottom:742.965000px;}
.yf{bottom:748.365000px;}
.yb6{bottom:748.545000px;}
.y9c{bottom:751.785000px;}
.y3a{bottom:753.225000px;}
.ye4{bottom:761.730000px;}
.y5f{bottom:763.710000px;}
.ye{bottom:769.110000px;}
.y99{bottom:769.290000px;}
.y39{bottom:773.970000px;}
.y5e{bottom:784.410000px;}
.yd{bottom:789.810000px;}
.y38{bottom:794.670000px;}
.y5d{bottom:803.130000px;}
.y81{bottom:805.110000px;}
.yc{bottom:808.710000px;}
.y37{bottom:815.370000px;}
.yb{bottom:820.950000px;}
.y80{bottom:825.810000px;}
.yae{bottom:831.390000px;}
.y36{bottom:836.070000px;}
.ya{bottom:841.650000px;}
.ydc{bottom:844.530000px;}
.y7f{bottom:846.510000px;}
.y35{bottom:856.770000px;}
.y9{bottom:862.350000px;}
.y7e{bottom:867.210000px;}
.y34{bottom:877.470000px;}
.y8{bottom:883.050000px;}
.y7d{bottom:887.910000px;}
.y33{bottom:896.370000px;}
.y5c{bottom:898.170000px;}
.y7{bottom:903.750000px;}
.y32{bottom:908.610000px;}
.y5b{bottom:918.870000px;}
.y6{bottom:922.470000px;}
.y31{bottom:929.310000px;}
.y5{bottom:939.570000px;}
.y30{bottom:948.030000px;}
.y4{bottom:960.270000px;}
.y3{bottom:980.970000px;}
.h4{height:25.400391px;}
.h6{height:32.273438px;}
.h7{height:41.400000px;}
.h3{height:50.800781px;}
.h5{height:64.546875px;}
.h2{height:67.824844px;}
.ha{height:78.840000px;}
.hc{height:91.080000px;}
.hd{height:165.630000px;}
.h8{height:207.030000px;}
.h9{height:227.730000px;}
.hb{height:248.430000px;}
.he{height:248.475000px;}
.h1{height:1092.750000px;}
.h0{height:1092.780000px;}
.w4{width:97.416000px;}
.wa{width:99.216000px;}
.w9{width:105.876000px;}
.wb{width:107.460000px;}
.w8{width:114.840000px;}
.w3{width:117.540000px;}
.w7{width:120.456000px;}
.w6{width:120.960000px;}
.w5{width:122.976000px;}
.wc{width:152.130000px;}
.w2{width:773.819988px;}
.w0{width:773.820000px;}
.w1{width:774.000000px;}
.x0{left:0.000000px;}
.x10{left:7.740000px;}
.xd{left:95.075988px;}
.x4{left:109.115988px;}
.xe{left:122.075988px;}
.x8{left:128.375988px;}
.xf{left:149.075988px;}
.xa{left:174.449988px;}
.x7{left:186.149988px;}
.x15{left:211.350000px;}
.x11{left:214.050000px;}
.xb{left:249.194988px;}
.x5{left:259.454988px;}
.x6{left:301.934988px;}
.x12{left:312.375000px;}
.x16{left:317.955000px;}
.xc{left:326.414988px;}
.x3{left:330.914988px;}
.x9{left:349.994988px;}
.x1{left:374.474988px;}
.x2{left:386.894988px;}
.x17{left:417.885000px;}
.x13{left:436.065000px;}
.x18{left:526.065000px;}
.x14{left:557.745000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.512000pt;}
.ls5{letter-spacing:0.640000pt;}
.ls9{letter-spacing:0.768000pt;}
.ls2{letter-spacing:3.200000pt;}
.ls7{letter-spacing:30.208000pt;}
.ls1{letter-spacing:56.912640pt;}
.ws2{word-spacing:-53.120000pt;}
.ws8{word-spacing:-16.768000pt;}
.ws6{word-spacing:-16.640000pt;}
.ws3{word-spacing:-16.512000pt;}
.ws5{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.872000pt;}
.ws7{word-spacing:-15.744000pt;}
.ws0{word-spacing:0.000000pt;}
._7{margin-left:-3.776000pt;}
._6{margin-left:-2.624000pt;}
._0{margin-left:-1.024000pt;}
._1{width:0.896000pt;}
._13{width:1.792000pt;}
._2{width:2.688000pt;}
._3{width:3.584000pt;}
._f{width:4.480000pt;}
._11{width:5.376000pt;}
._c{width:7.040000pt;}
._e{width:7.936000pt;}
._d{width:8.832000pt;}
._10{width:10.240000pt;}
._b{width:11.520000pt;}
._a{width:12.864000pt;}
._5{width:13.760000pt;}
._4{width:14.720000pt;}
._12{width:16.896000pt;}
._8{width:18.496000pt;}
._9{width:19.520000pt;}
._17{width:20.778667pt;}
._19{width:21.696000pt;}
._18{width:22.592000pt;}
._35{width:23.936000pt;}
._16{width:24.832000pt;}
._14{width:26.304000pt;}
._15{width:27.200000pt;}
._27{width:28.992000pt;}
._32{width:30.464000pt;}
._34{width:31.447467pt;}
._2f{width:33.856000pt;}
._2e{width:36.032000pt;}
._24{width:38.400000pt;}
._2c{width:40.896000pt;}
._26{width:43.072000pt;}
._33{width:47.104000pt;}
._39{width:48.576000pt;}
._1e{width:49.472000pt;}
._20{width:51.392000pt;}
._28{width:54.464000pt;}
._1b{width:56.448000pt;}
._36{width:61.440000pt;}
._37{width:62.730667pt;}
._1f{width:64.000000pt;}
._38{width:65.290667pt;}
._23{width:71.232000pt;}
._30{width:90.176000pt;}
._25{width:95.744000pt;}
._21{width:104.490667pt;}
._2b{width:105.792000pt;}
._31{width:107.264000pt;}
._22{width:113.856000pt;}
._29{width:115.264000pt;}
._2a{width:131.050667pt;}
._1a{width:136.832000pt;}
._1d{width:152.576000pt;}
._2d{width:177.258667pt;}
._1c{width:213.056000pt;}
.fs2{font-size:32.000000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y85{bottom:3.520000pt;}
.y91{bottom:21.914667pt;}
.y84{bottom:21.920000pt;}
.yb8{bottom:21.960000pt;}
.y90{bottom:40.314667pt;}
.y88{bottom:40.320000pt;}
.yb7{bottom:40.360000pt;}
.y2{bottom:51.840000pt;}
.y92{bottom:58.714667pt;}
.y87{bottom:58.720000pt;}
.yba{bottom:58.760000pt;}
.y1{bottom:69.792000pt;}
.y98{bottom:77.114667pt;}
.y8e{bottom:77.120000pt;}
.ya4{bottom:77.146667pt;}
.yb9{bottom:77.160000pt;}
.yb5{bottom:86.234667pt;}
.yad{bottom:87.872000pt;}
.ye3{bottom:89.952000pt;}
.y2f{bottom:90.432000pt;}
.y97{bottom:95.514667pt;}
.y8d{bottom:95.520000pt;}
.ya3{bottom:95.546667pt;}
.yac{bottom:95.560000pt;}
.ydb{bottom:97.792000pt;}
.y5a{bottom:99.232000pt;}
.yb4{bottom:104.634667pt;}
.ye2{bottom:108.352000pt;}
.y2e{bottom:108.832000pt;}
.yb2{bottom:111.392000pt;}
.y8f{bottom:112.032000pt;}
.y96{bottom:113.914667pt;}
.y8c{bottom:113.920000pt;}
.ya2{bottom:113.946667pt;}
.yab{bottom:113.960000pt;}
.y59{bottom:115.872000pt;}
.yda{bottom:116.192000pt;}
.y7c{bottom:117.472000pt;}
.y58{bottom:126.752000pt;}
.y2d{bottom:127.232000pt;}
.y95{bottom:132.314667pt;}
.y8b{bottom:132.320000pt;}
.ya1{bottom:132.346667pt;}
.yaa{bottom:132.360000pt;}
.yd9{bottom:132.992000pt;}
.y7b{bottom:135.866667pt;}
.yd8{bottom:143.866667pt;}
.y57{bottom:145.146667pt;}
.y2c{bottom:145.626667pt;}
.y8a{bottom:150.720000pt;}
.ya0{bottom:150.746667pt;}
.y94{bottom:150.754667pt;}
.ya9{bottom:150.760000pt;}
.y7a{bottom:154.266667pt;}
.yd7{bottom:162.266667pt;}
.y56{bottom:163.546667pt;}
.y2b{bottom:164.026667pt;}
.y9b{bottom:169.120000pt;}
.y89{bottom:169.146667pt;}
.y93{bottom:169.154667pt;}
.ya8{bottom:169.160000pt;}
.ya5{bottom:169.466667pt;}
.y79{bottom:172.666667pt;}
.yd6{bottom:180.666667pt;}
.y55{bottom:181.946667pt;}
.y2a{bottom:182.426667pt;}
.y9a{bottom:187.520000pt;}
.y9f{bottom:187.546667pt;}
.yb3{bottom:187.554667pt;}
.ya7{bottom:187.560000pt;}
.y78{bottom:191.066667pt;}
.ye1{bottom:198.586667pt;}
.yd5{bottom:199.066667pt;}
.y54{bottom:200.346667pt;}
.y29{bottom:200.826667pt;}
.yb1{bottom:205.946667pt;}
.ya6{bottom:205.960000pt;}
.y77{bottom:209.466667pt;}
.yd4{bottom:217.466667pt;}
.y53{bottom:218.746667pt;}
.y28{bottom:219.226667pt;}
.y76{bottom:227.866667pt;}
.yd3{bottom:235.866667pt;}
.y52{bottom:237.146667pt;}
.y27{bottom:237.626667pt;}
.y75{bottom:246.266667pt;}
.yd2{bottom:254.266667pt;}
.y51{bottom:255.546667pt;}
.y26{bottom:256.026667pt;}
.y74{bottom:264.706667pt;}
.yd1{bottom:270.946667pt;}
.y50{bottom:273.986667pt;}
.y25{bottom:274.466667pt;}
.yd0{bottom:281.826667pt;}
.y73{bottom:283.106667pt;}
.y4f{bottom:292.386667pt;}
.y24{bottom:292.866667pt;}
.y86{bottom:296.706667pt;}
.ycf{bottom:300.226667pt;}
.y72{bottom:301.506667pt;}
.y4e{bottom:310.786667pt;}
.y23{bottom:311.266667pt;}
.yb0{bottom:314.466667pt;}
.y71{bottom:318.306667pt;}
.yce{bottom:318.626667pt;}
.ye0{bottom:319.906667pt;}
.y4d{bottom:329.186667pt;}
.y22{bottom:329.666667pt;}
.ycd{bottom:337.026667pt;}
.ydf{bottom:338.306667pt;}
.y4c{bottom:347.586667pt;}
.y21{bottom:348.066667pt;}
.ycc{bottom:355.426667pt;}
.yde{bottom:356.706667pt;}
.y4b{bottom:364.226667pt;}
.y70{bottom:365.986667pt;}
.y20{bottom:366.466667pt;}
.ycb{bottom:373.826667pt;}
.y4a{bottom:375.106667pt;}
.y6f{bottom:384.386667pt;}
.y1f{bottom:384.866667pt;}
.y9e{bottom:390.946667pt;}
.yca{bottom:392.226667pt;}
.y49{bottom:393.506667pt;}
.y6e{bottom:402.786667pt;}
.y1e{bottom:403.266667pt;}
.yc9{bottom:410.626667pt;}
.y48{bottom:411.906667pt;}
.y6d{bottom:421.186667pt;}
.y1d{bottom:421.666667pt;}
.yc8{bottom:427.266667pt;}
.y47{bottom:430.306667pt;}
.yc7{bottom:438.146667pt;}
.y6c{bottom:439.586667pt;}
.y1c{bottom:440.066667pt;}
.y46{bottom:448.706667pt;}
.yc6{bottom:456.546667pt;}
.y6b{bottom:457.986667pt;}
.y1b{bottom:458.466667pt;}
.y45{bottom:467.133333pt;}
.yc5{bottom:474.973333pt;}
.y6a{bottom:476.413333pt;}
.y1a{bottom:476.893333pt;}
.y83{bottom:481.373333pt;}
.y44{bottom:485.533333pt;}
.yc4{bottom:493.373333pt;}
.y69{bottom:494.813333pt;}
.y19{bottom:495.293333pt;}
.y43{bottom:503.933333pt;}
.yc3{bottom:511.773333pt;}
.y18{bottom:512.093333pt;}
.y68{bottom:513.213333pt;}
.y42{bottom:522.333333pt;}
.y17{bottom:527.293333pt;}
.yc2{bottom:530.173333pt;}
.y67{bottom:531.613333pt;}
.yaf{bottom:535.933333pt;}
.y82{bottom:539.133333pt;}
.y41{bottom:540.733333pt;}
.y16{bottom:545.693333pt;}
.yc1{bottom:548.573333pt;}
.y66{bottom:550.013333pt;}
.y40{bottom:559.133333pt;}
.y15{bottom:564.093333pt;}
.yc0{bottom:566.973333pt;}
.y65{bottom:568.413333pt;}
.y3f{bottom:577.533333pt;}
.y14{bottom:582.493333pt;}
.ybf{bottom:585.373333pt;}
.y64{bottom:586.813333pt;}
.y9d{bottom:594.013333pt;}
.ydd{bottom:594.333333pt;}
.y3e{bottom:595.933333pt;}
.y13{bottom:600.893333pt;}
.ybe{bottom:603.773333pt;}
.y63{bottom:605.213333pt;}
.y3d{bottom:614.333333pt;}
.y12{bottom:617.533333pt;}
.ybd{bottom:622.173333pt;}
.y62{bottom:623.613333pt;}
.y11{bottom:628.413333pt;}
.y3c{bottom:632.733333pt;}
.ybc{bottom:640.573333pt;}
.y61{bottom:642.013333pt;}
.y10{bottom:646.813333pt;}
.y3b{bottom:651.133333pt;}
.ybb{bottom:657.373333pt;}
.y60{bottom:660.413333pt;}
.yf{bottom:665.213333pt;}
.yb6{bottom:665.373333pt;}
.y9c{bottom:668.253333pt;}
.y3a{bottom:669.533333pt;}
.ye4{bottom:677.093333pt;}
.y5f{bottom:678.853333pt;}
.ye{bottom:683.653333pt;}
.y99{bottom:683.813333pt;}
.y39{bottom:687.973333pt;}
.y5e{bottom:697.253333pt;}
.yd{bottom:702.053333pt;}
.y38{bottom:706.373333pt;}
.y5d{bottom:713.893333pt;}
.y81{bottom:715.653333pt;}
.yc{bottom:718.853333pt;}
.y37{bottom:724.773333pt;}
.yb{bottom:729.733333pt;}
.y80{bottom:734.053333pt;}
.yae{bottom:739.013333pt;}
.y36{bottom:743.173333pt;}
.ya{bottom:748.133333pt;}
.ydc{bottom:750.693333pt;}
.y7f{bottom:752.453333pt;}
.y35{bottom:761.573333pt;}
.y9{bottom:766.533333pt;}
.y7e{bottom:770.853333pt;}
.y34{bottom:779.973333pt;}
.y8{bottom:784.933333pt;}
.y7d{bottom:789.253333pt;}
.y33{bottom:796.773333pt;}
.y5c{bottom:798.373333pt;}
.y7{bottom:803.333333pt;}
.y32{bottom:807.653333pt;}
.y5b{bottom:816.773333pt;}
.y6{bottom:819.973333pt;}
.y31{bottom:826.053333pt;}
.y5{bottom:835.173333pt;}
.y30{bottom:842.693333pt;}
.y4{bottom:853.573333pt;}
.y3{bottom:871.973333pt;}
.h4{height:22.578125pt;}
.h6{height:28.687500pt;}
.h7{height:36.800000pt;}
.h3{height:45.156250pt;}
.h5{height:57.375000pt;}
.h2{height:60.288750pt;}
.ha{height:70.080000pt;}
.hc{height:80.960000pt;}
.hd{height:147.226667pt;}
.h8{height:184.026667pt;}
.h9{height:202.426667pt;}
.hb{height:220.826667pt;}
.he{height:220.866667pt;}
.h1{height:971.333333pt;}
.h0{height:971.360000pt;}
.w4{width:86.592000pt;}
.wa{width:88.192000pt;}
.w9{width:94.112000pt;}
.wb{width:95.520000pt;}
.w8{width:102.080000pt;}
.w3{width:104.480000pt;}
.w7{width:107.072000pt;}
.w6{width:107.520000pt;}
.w5{width:109.312000pt;}
.wc{width:135.226667pt;}
.w2{width:687.839990pt;}
.w0{width:687.840000pt;}
.w1{width:688.000000pt;}
.x0{left:0.000000pt;}
.x10{left:6.880000pt;}
.xd{left:84.511990pt;}
.x4{left:96.991990pt;}
.xe{left:108.511990pt;}
.x8{left:114.111990pt;}
.xf{left:132.511990pt;}
.xa{left:155.066656pt;}
.x7{left:165.466656pt;}
.x15{left:187.866667pt;}
.x11{left:190.266667pt;}
.xb{left:221.506656pt;}
.x5{left:230.626656pt;}
.x6{left:268.386656pt;}
.x12{left:277.666667pt;}
.x16{left:282.626667pt;}
.xc{left:290.146656pt;}
.x3{left:294.146656pt;}
.x9{left:311.106656pt;}
.x1{left:332.866656pt;}
.x2{left:343.906656pt;}
.x17{left:371.453333pt;}
.x13{left:387.613333pt;}
.x18{left:467.613333pt;}
.x14{left:495.773333pt;}
}




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