
    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_f5c842637934ac732c3596af.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_56f0ea7cff8685c7c7113528.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_9afe5e1f7cf7aa27822363f2.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_130301694ab792f9947e2b7d.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ff6{font-family:ff6;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.576000px;}
.ls8{letter-spacing:7.344000px;}
.ls4{letter-spacing:33.984000px;}
.ls1{letter-spacing:51.264000px;}
.ls3{letter-spacing:54.864000px;}
.ls6{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;}
}
.ws3{word-spacing:-72.000000px;}
.ws5{word-spacing:-59.760000px;}
.ws4{word-spacing:-18.576000px;}
.ws0{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.856000px;}
.ws2{word-spacing:-17.712000px;}
.ws1{word-spacing:0.000000px;}
._2c{margin-left:-10.656000px;}
._25{margin-left:-5.013600px;}
._7{margin-left:-3.888000px;}
._11{margin-left:-2.664000px;}
._0{margin-left:-1.080000px;}
._3{width:1.008000px;}
._5{width:2.028000px;}
._f{width:3.384000px;}
._12{width:4.548000px;}
._6{width:6.120000px;}
._a{width:7.272000px;}
._b{width:8.496000px;}
._d{width:10.008000px;}
._10{width:11.088000px;}
._15{width:12.096000px;}
._16{width:13.176000px;}
._17{width:14.184000px;}
._2{width:15.408000px;}
._1{width:16.632000px;}
._2a{width:19.008000px;}
._13{width:20.016000px;}
._14{width:21.024000px;}
._1a{width:22.092000px;}
._c{width:23.328000px;}
._1c{width:24.840000px;}
._e{width:26.208000px;}
._19{width:27.360000px;}
._1b{width:28.368000px;}
._2b{width:29.880000px;}
._24{width:30.974400px;}
._18{width:32.040000px;}
._4{width:34.128000px;}
._8{width:35.784000px;}
._9{width:37.152000px;}
._26{width:38.592000px;}
._27{width:39.600000px;}
._28{width:51.696000px;}
._29{width:52.992000px;}
._1f{width:54.288000px;}
._1d{width:74.448000px;}
._23{width:168.120000px;}
._22{width:169.128000px;}
._21{width:172.548000px;}
._1e{width:212.364000px;}
._20{width:225.576000px;}
._2d{width:846.300000px;}
.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;}
.y69{bottom:3.960000px;}
.y6b{bottom:24.660000px;}
.yc7{bottom:24.705000px;}
.y2{bottom:58.320000px;}
.y1{bottom:78.516000px;}
.y71{bottom:97.416000px;}
.y58{bottom:101.196000px;}
.y2f{bottom:101.736000px;}
.yc3{bottom:111.636000px;}
.ye2{bottom:114.336000px;}
.y92{bottom:115.416000px;}
.y57{bottom:121.896000px;}
.y2e{bottom:122.436000px;}
.yaa{bottom:127.476000px;}
.yc2{bottom:132.156000px;}
.ye1{bottom:135.036000px;}
.y91{bottom:136.116000px;}
.y56{bottom:142.596000px;}
.y2d{bottom:143.136000px;}
.ya9{bottom:148.176000px;}
.yc1{bottom:152.850000px;}
.ye0{bottom:155.730000px;}
.y90{bottom:156.810000px;}
.y55{bottom:163.290000px;}
.y2c{bottom:163.830000px;}
.ya8{bottom:168.870000px;}
.yc0{bottom:173.550000px;}
.ydf{bottom:176.430000px;}
.y8f{bottom:177.510000px;}
.y54{bottom:183.990000px;}
.y2b{bottom:184.530000px;}
.ya7{bottom:189.570000px;}
.ybf{bottom:194.250000px;}
.yde{bottom:197.130000px;}
.y8e{bottom:199.470000px;}
.y53{bottom:204.690000px;}
.y2a{bottom:205.230000px;}
.ya6{bottom:210.270000px;}
.ybe{bottom:214.950000px;}
.ydd{bottom:217.830000px;}
.y8d{bottom:220.170000px;}
.y52{bottom:225.390000px;}
.y29{bottom:225.930000px;}
.ya5{bottom:230.970000px;}
.ybd{bottom:235.650000px;}
.ydc{bottom:238.530000px;}
.y8c{bottom:240.870000px;}
.y51{bottom:246.090000px;}
.y28{bottom:246.630000px;}
.ya4{bottom:251.670000px;}
.ybc{bottom:256.350000px;}
.ydb{bottom:259.230000px;}
.y8b{bottom:261.570000px;}
.y50{bottom:266.790000px;}
.y27{bottom:267.330000px;}
.ya3{bottom:272.370000px;}
.ybb{bottom:277.050000px;}
.yda{bottom:279.930000px;}
.y8a{bottom:282.270000px;}
.y4f{bottom:287.490000px;}
.y26{bottom:288.030000px;}
.ya2{bottom:293.115000px;}
.yba{bottom:297.795000px;}
.yd9{bottom:300.675000px;}
.y89{bottom:303.015000px;}
.y4e{bottom:308.235000px;}
.y25{bottom:308.775000px;}
.ya1{bottom:311.835000px;}
.yb9{bottom:318.495000px;}
.ya0{bottom:320.115000px;}
.yd8{bottom:321.375000px;}
.y88{bottom:324.975000px;}
.y4d{bottom:328.935000px;}
.y24{bottom:329.475000px;}
.yb8{bottom:339.195000px;}
.yd7{bottom:342.075000px;}
.y87{bottom:345.675000px;}
.y4c{bottom:349.635000px;}
.y23{bottom:350.175000px;}
.yb7{bottom:359.895000px;}
.yd6{bottom:362.775000px;}
.y86{bottom:366.375000px;}
.y4b{bottom:370.335000px;}
.y22{bottom:370.875000px;}
.yb6{bottom:380.595000px;}
.yd5{bottom:383.475000px;}
.y85{bottom:387.075000px;}
.y4a{bottom:391.035000px;}
.y21{bottom:391.575000px;}
.yf1{bottom:399.495000px;}
.yb5{bottom:401.295000px;}
.yd4{bottom:404.175000px;}
.y84{bottom:407.775000px;}
.y49{bottom:411.735000px;}
.y20{bottom:412.275000px;}
.y70{bottom:414.255000px;}
.yb4{bottom:421.995000px;}
.yd3{bottom:424.875000px;}
.y83{bottom:428.475000px;}
.y48{bottom:432.435000px;}
.y1f{bottom:432.975000px;}
.y6f{bottom:441.975000px;}
.yb3{bottom:442.695000px;}
.yd2{bottom:445.575000px;}
.y82{bottom:449.175000px;}
.y47{bottom:453.135000px;}
.y1e{bottom:453.675000px;}
.yb2{bottom:463.395000px;}
.yd1{bottom:466.275000px;}
.y81{bottom:471.135000px;}
.y46{bottom:473.835000px;}
.y1d{bottom:474.375000px;}
.yb1{bottom:484.095000px;}
.y6e{bottom:484.275000px;}
.yd0{bottom:486.975000px;}
.y9f{bottom:490.575000px;}
.y80{bottom:491.835000px;}
.y45{bottom:494.535000px;}
.y1c{bottom:495.075000px;}
.yb0{bottom:504.795000px;}
.ycf{bottom:507.675000px;}
.y9e{bottom:511.275000px;}
.y7f{bottom:512.535000px;}
.y1b{bottom:513.975000px;}
.y44{bottom:515.235000px;}
.yaf{bottom:525.525000px;}
.y1a{bottom:526.245000px;}
.y6d{bottom:526.425000px;}
.yce{bottom:526.605000px;}
.y9d{bottom:530.205000px;}
.y7e{bottom:533.265000px;}
.ycd{bottom:535.605000px;}
.y43{bottom:535.965000px;}
.y9c{bottom:542.445000px;}
.yae{bottom:546.225000px;}
.y19{bottom:546.945000px;}
.y7d{bottom:553.965000px;}
.y42{bottom:556.665000px;}
.y9b{bottom:563.145000px;}
.y18{bottom:565.665000px;}
.yad{bottom:566.925000px;}
.y6c{bottom:568.545000px;}
.y7c{bottom:574.845000px;}
.y41{bottom:577.365000px;}
.ycc{bottom:577.725000px;}
.y17{bottom:577.905000px;}
.y9a{bottom:583.845000px;}
.yac{bottom:587.625000px;}
.y7b{bottom:596.805000px;}
.y40{bottom:598.065000px;}
.y16{bottom:598.605000px;}
.y99{bottom:604.545000px;}
.yab{bottom:608.325000px;}
.y6a{bottom:610.665000px;}
.y3f{bottom:616.785000px;}
.y7a{bottom:617.505000px;}
.yf0{bottom:618.765000px;}
.y15{bottom:619.305000px;}
.ycb{bottom:619.845000px;}
.y98{bottom:625.245000px;}
.y3e{bottom:629.025000px;}
.y79{bottom:638.205000px;}
.yef{bottom:639.465000px;}
.y14{bottom:640.005000px;}
.y97{bottom:645.945000px;}
.y3d{bottom:649.725000px;}
.y68{bottom:652.785000px;}
.y78{bottom:658.905000px;}
.yee{bottom:660.165000px;}
.y13{bottom:660.705000px;}
.yca{bottom:661.965000px;}
.y96{bottom:666.645000px;}
.y3c{bottom:670.425000px;}
.y67{bottom:678.165000px;}
.y77{bottom:679.605000px;}
.yed{bottom:680.865000px;}
.y12{bottom:681.405000px;}
.yc9{bottom:683.385000px;}
.y95{bottom:688.605000px;}
.y3b{bottom:691.125000px;}
.y66{bottom:697.065000px;}
.y76{bottom:700.305000px;}
.yec{bottom:701.565000px;}
.y11{bottom:702.105000px;}
.yc8{bottom:704.985000px;}
.y65{bottom:709.305000px;}
.y3a{bottom:711.825000px;}
.y75{bottom:721.005000px;}
.yeb{bottom:722.265000px;}
.y10{bottom:722.805000px;}
.y64{bottom:730.005000px;}
.y39{bottom:732.525000px;}
.y74{bottom:741.705000px;}
.yea{bottom:742.965000px;}
.yf{bottom:743.505000px;}
.yc6{bottom:747.105000px;}
.y63{bottom:750.705000px;}
.y38{bottom:753.225000px;}
.y73{bottom:763.710000px;}
.ye{bottom:764.250000px;}
.y62{bottom:771.450000px;}
.y37{bottom:773.970000px;}
.y72{bottom:782.430000px;}
.ye9{bottom:784.410000px;}
.yd{bottom:784.950000px;}
.yc5{bottom:789.270000px;}
.y61{bottom:792.150000px;}
.y36{bottom:794.670000px;}
.ye8{bottom:805.110000px;}
.yc{bottom:805.650000px;}
.yc4{bottom:810.690000px;}
.y60{bottom:812.850000px;}
.y35{bottom:815.370000px;}
.ye7{bottom:825.810000px;}
.yb{bottom:826.350000px;}
.y5f{bottom:833.550000px;}
.y94{bottom:834.810000px;}
.y34{bottom:836.070000px;}
.ye6{bottom:846.510000px;}
.ya{bottom:847.050000px;}
.y5e{bottom:854.250000px;}
.y93{bottom:855.510000px;}
.y33{bottom:856.770000px;}
.y9{bottom:865.770000px;}
.ye5{bottom:867.210000px;}
.y5d{bottom:876.210000px;}
.y32{bottom:877.470000px;}
.y8{bottom:883.050000px;}
.ye4{bottom:887.910000px;}
.y5c{bottom:896.910000px;}
.y31{bottom:898.170000px;}
.y7{bottom:903.750000px;}
.ye3{bottom:906.630000px;}
.y5b{bottom:917.610000px;}
.y30{bottom:918.870000px;}
.y6{bottom:922.470000px;}
.y5a{bottom:938.310000px;}
.y5{bottom:939.570000px;}
.y59{bottom:959.010000px;}
.y4{bottom:960.270000px;}
.y3{bottom:980.970000px;}
.h6{height:20.700000px;}
.h4{height:25.400391px;}
.h9{height:32.273438px;}
.h7{height:41.400000px;}
.h8{height:41.436000px;}
.h3{height:50.800781px;}
.ha{height:52.417969px;}
.h5{height:64.546875px;}
.h2{height:67.824844px;}
.h1{height:1092.750000px;}
.h0{height:1092.780000px;}
.w3{width:132.120000px;}
.w4{width:193.215000px;}
.w6{width:223.950000px;}
.w5{width:255.630000px;}
.w7{width:357.735000px;}
.w2{width:773.819988px;}
.w0{width:773.820000px;}
.w1{width:774.000000px;}
.x0{left:0.000000px;}
.xb{left:7.740000px;}
.x16{left:83.735988px;}
.x14{left:88.235988px;}
.x8{left:95.075988px;}
.x15{left:108.575988px;}
.x4{left:110.915988px;}
.x9{left:122.075988px;}
.xe{left:129.455988px;}
.xa{left:149.075988px;}
.x10{left:176.069988px;}
.xc{left:228.630000px;}
.x6{left:299.414988px;}
.x7{left:301.214988px;}
.x13{left:320.475000px;}
.x3{left:330.914988px;}
.x5{left:350.354988px;}
.x11{left:357.014988px;}
.x1{left:374.474988px;}
.x2{left:386.894988px;}
.xd{left:422.565000px;}
.xf{left:546.944988px;}
.x12{left:678.929988px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.512000pt;}
.ls8{letter-spacing:6.528000pt;}
.ls4{letter-spacing:30.208000pt;}
.ls1{letter-spacing:45.568000pt;}
.ls3{letter-spacing:48.768000pt;}
.ls6{letter-spacing:56.912640pt;}
.ws3{word-spacing:-64.000000pt;}
.ws5{word-spacing:-53.120000pt;}
.ws4{word-spacing:-16.512000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.872000pt;}
.ws2{word-spacing:-15.744000pt;}
.ws1{word-spacing:0.000000pt;}
._2c{margin-left:-9.472000pt;}
._25{margin-left:-4.456533pt;}
._7{margin-left:-3.456000pt;}
._11{margin-left:-2.368000pt;}
._0{margin-left:-0.960000pt;}
._3{width:0.896000pt;}
._5{width:1.802667pt;}
._f{width:3.008000pt;}
._12{width:4.042667pt;}
._6{width:5.440000pt;}
._a{width:6.464000pt;}
._b{width:7.552000pt;}
._d{width:8.896000pt;}
._10{width:9.856000pt;}
._15{width:10.752000pt;}
._16{width:11.712000pt;}
._17{width:12.608000pt;}
._2{width:13.696000pt;}
._1{width:14.784000pt;}
._2a{width:16.896000pt;}
._13{width:17.792000pt;}
._14{width:18.688000pt;}
._1a{width:19.637333pt;}
._c{width:20.736000pt;}
._1c{width:22.080000pt;}
._e{width:23.296000pt;}
._19{width:24.320000pt;}
._1b{width:25.216000pt;}
._2b{width:26.560000pt;}
._24{width:27.532800pt;}
._18{width:28.480000pt;}
._4{width:30.336000pt;}
._8{width:31.808000pt;}
._9{width:33.024000pt;}
._26{width:34.304000pt;}
._27{width:35.200000pt;}
._28{width:45.952000pt;}
._29{width:47.104000pt;}
._1f{width:48.256000pt;}
._1d{width:66.176000pt;}
._23{width:149.440000pt;}
._22{width:150.336000pt;}
._21{width:153.376000pt;}
._1e{width:188.768000pt;}
._20{width:200.512000pt;}
._2d{width:752.266667pt;}
.fs2{font-size:32.000000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y69{bottom:3.520000pt;}
.y6b{bottom:21.920000pt;}
.yc7{bottom:21.960000pt;}
.y2{bottom:51.840000pt;}
.y1{bottom:69.792000pt;}
.y71{bottom:86.592000pt;}
.y58{bottom:89.952000pt;}
.y2f{bottom:90.432000pt;}
.yc3{bottom:99.232000pt;}
.ye2{bottom:101.632000pt;}
.y92{bottom:102.592000pt;}
.y57{bottom:108.352000pt;}
.y2e{bottom:108.832000pt;}
.yaa{bottom:113.312000pt;}
.yc2{bottom:117.472000pt;}
.ye1{bottom:120.032000pt;}
.y91{bottom:120.992000pt;}
.y56{bottom:126.752000pt;}
.y2d{bottom:127.232000pt;}
.ya9{bottom:131.712000pt;}
.yc1{bottom:135.866667pt;}
.ye0{bottom:138.426667pt;}
.y90{bottom:139.386667pt;}
.y55{bottom:145.146667pt;}
.y2c{bottom:145.626667pt;}
.ya8{bottom:150.106667pt;}
.yc0{bottom:154.266667pt;}
.ydf{bottom:156.826667pt;}
.y8f{bottom:157.786667pt;}
.y54{bottom:163.546667pt;}
.y2b{bottom:164.026667pt;}
.ya7{bottom:168.506667pt;}
.ybf{bottom:172.666667pt;}
.yde{bottom:175.226667pt;}
.y8e{bottom:177.306667pt;}
.y53{bottom:181.946667pt;}
.y2a{bottom:182.426667pt;}
.ya6{bottom:186.906667pt;}
.ybe{bottom:191.066667pt;}
.ydd{bottom:193.626667pt;}
.y8d{bottom:195.706667pt;}
.y52{bottom:200.346667pt;}
.y29{bottom:200.826667pt;}
.ya5{bottom:205.306667pt;}
.ybd{bottom:209.466667pt;}
.ydc{bottom:212.026667pt;}
.y8c{bottom:214.106667pt;}
.y51{bottom:218.746667pt;}
.y28{bottom:219.226667pt;}
.ya4{bottom:223.706667pt;}
.ybc{bottom:227.866667pt;}
.ydb{bottom:230.426667pt;}
.y8b{bottom:232.506667pt;}
.y50{bottom:237.146667pt;}
.y27{bottom:237.626667pt;}
.ya3{bottom:242.106667pt;}
.ybb{bottom:246.266667pt;}
.yda{bottom:248.826667pt;}
.y8a{bottom:250.906667pt;}
.y4f{bottom:255.546667pt;}
.y26{bottom:256.026667pt;}
.ya2{bottom:260.546667pt;}
.yba{bottom:264.706667pt;}
.yd9{bottom:267.266667pt;}
.y89{bottom:269.346667pt;}
.y4e{bottom:273.986667pt;}
.y25{bottom:274.466667pt;}
.ya1{bottom:277.186667pt;}
.yb9{bottom:283.106667pt;}
.ya0{bottom:284.546667pt;}
.yd8{bottom:285.666667pt;}
.y88{bottom:288.866667pt;}
.y4d{bottom:292.386667pt;}
.y24{bottom:292.866667pt;}
.yb8{bottom:301.506667pt;}
.yd7{bottom:304.066667pt;}
.y87{bottom:307.266667pt;}
.y4c{bottom:310.786667pt;}
.y23{bottom:311.266667pt;}
.yb7{bottom:319.906667pt;}
.yd6{bottom:322.466667pt;}
.y86{bottom:325.666667pt;}
.y4b{bottom:329.186667pt;}
.y22{bottom:329.666667pt;}
.yb6{bottom:338.306667pt;}
.yd5{bottom:340.866667pt;}
.y85{bottom:344.066667pt;}
.y4a{bottom:347.586667pt;}
.y21{bottom:348.066667pt;}
.yf1{bottom:355.106667pt;}
.yb5{bottom:356.706667pt;}
.yd4{bottom:359.266667pt;}
.y84{bottom:362.466667pt;}
.y49{bottom:365.986667pt;}
.y20{bottom:366.466667pt;}
.y70{bottom:368.226667pt;}
.yb4{bottom:375.106667pt;}
.yd3{bottom:377.666667pt;}
.y83{bottom:380.866667pt;}
.y48{bottom:384.386667pt;}
.y1f{bottom:384.866667pt;}
.y6f{bottom:392.866667pt;}
.yb3{bottom:393.506667pt;}
.yd2{bottom:396.066667pt;}
.y82{bottom:399.266667pt;}
.y47{bottom:402.786667pt;}
.y1e{bottom:403.266667pt;}
.yb2{bottom:411.906667pt;}
.yd1{bottom:414.466667pt;}
.y81{bottom:418.786667pt;}
.y46{bottom:421.186667pt;}
.y1d{bottom:421.666667pt;}
.yb1{bottom:430.306667pt;}
.y6e{bottom:430.466667pt;}
.yd0{bottom:432.866667pt;}
.y9f{bottom:436.066667pt;}
.y80{bottom:437.186667pt;}
.y45{bottom:439.586667pt;}
.y1c{bottom:440.066667pt;}
.yb0{bottom:448.706667pt;}
.ycf{bottom:451.266667pt;}
.y9e{bottom:454.466667pt;}
.y7f{bottom:455.586667pt;}
.y1b{bottom:456.866667pt;}
.y44{bottom:457.986667pt;}
.yaf{bottom:467.133333pt;}
.y1a{bottom:467.773333pt;}
.y6d{bottom:467.933333pt;}
.yce{bottom:468.093333pt;}
.y9d{bottom:471.293333pt;}
.y7e{bottom:474.013333pt;}
.ycd{bottom:476.093333pt;}
.y43{bottom:476.413333pt;}
.y9c{bottom:482.173333pt;}
.yae{bottom:485.533333pt;}
.y19{bottom:486.173333pt;}
.y7d{bottom:492.413333pt;}
.y42{bottom:494.813333pt;}
.y9b{bottom:500.573333pt;}
.y18{bottom:502.813333pt;}
.yad{bottom:503.933333pt;}
.y6c{bottom:505.373333pt;}
.y7c{bottom:510.973333pt;}
.y41{bottom:513.213333pt;}
.ycc{bottom:513.533333pt;}
.y17{bottom:513.693333pt;}
.y9a{bottom:518.973333pt;}
.yac{bottom:522.333333pt;}
.y7b{bottom:530.493333pt;}
.y40{bottom:531.613333pt;}
.y16{bottom:532.093333pt;}
.y99{bottom:537.373333pt;}
.yab{bottom:540.733333pt;}
.y6a{bottom:542.813333pt;}
.y3f{bottom:548.253333pt;}
.y7a{bottom:548.893333pt;}
.yf0{bottom:550.013333pt;}
.y15{bottom:550.493333pt;}
.ycb{bottom:550.973333pt;}
.y98{bottom:555.773333pt;}
.y3e{bottom:559.133333pt;}
.y79{bottom:567.293333pt;}
.yef{bottom:568.413333pt;}
.y14{bottom:568.893333pt;}
.y97{bottom:574.173333pt;}
.y3d{bottom:577.533333pt;}
.y68{bottom:580.253333pt;}
.y78{bottom:585.693333pt;}
.yee{bottom:586.813333pt;}
.y13{bottom:587.293333pt;}
.yca{bottom:588.413333pt;}
.y96{bottom:592.573333pt;}
.y3c{bottom:595.933333pt;}
.y67{bottom:602.813333pt;}
.y77{bottom:604.093333pt;}
.yed{bottom:605.213333pt;}
.y12{bottom:605.693333pt;}
.yc9{bottom:607.453333pt;}
.y95{bottom:612.093333pt;}
.y3b{bottom:614.333333pt;}
.y66{bottom:619.613333pt;}
.y76{bottom:622.493333pt;}
.yec{bottom:623.613333pt;}
.y11{bottom:624.093333pt;}
.yc8{bottom:626.653333pt;}
.y65{bottom:630.493333pt;}
.y3a{bottom:632.733333pt;}
.y75{bottom:640.893333pt;}
.yeb{bottom:642.013333pt;}
.y10{bottom:642.493333pt;}
.y64{bottom:648.893333pt;}
.y39{bottom:651.133333pt;}
.y74{bottom:659.293333pt;}
.yea{bottom:660.413333pt;}
.yf{bottom:660.893333pt;}
.yc6{bottom:664.093333pt;}
.y63{bottom:667.293333pt;}
.y38{bottom:669.533333pt;}
.y73{bottom:678.853333pt;}
.ye{bottom:679.333333pt;}
.y62{bottom:685.733333pt;}
.y37{bottom:687.973333pt;}
.y72{bottom:695.493333pt;}
.ye9{bottom:697.253333pt;}
.yd{bottom:697.733333pt;}
.yc5{bottom:701.573333pt;}
.y61{bottom:704.133333pt;}
.y36{bottom:706.373333pt;}
.ye8{bottom:715.653333pt;}
.yc{bottom:716.133333pt;}
.yc4{bottom:720.613333pt;}
.y60{bottom:722.533333pt;}
.y35{bottom:724.773333pt;}
.ye7{bottom:734.053333pt;}
.yb{bottom:734.533333pt;}
.y5f{bottom:740.933333pt;}
.y94{bottom:742.053333pt;}
.y34{bottom:743.173333pt;}
.ye6{bottom:752.453333pt;}
.ya{bottom:752.933333pt;}
.y5e{bottom:759.333333pt;}
.y93{bottom:760.453333pt;}
.y33{bottom:761.573333pt;}
.y9{bottom:769.573333pt;}
.ye5{bottom:770.853333pt;}
.y5d{bottom:778.853333pt;}
.y32{bottom:779.973333pt;}
.y8{bottom:784.933333pt;}
.ye4{bottom:789.253333pt;}
.y5c{bottom:797.253333pt;}
.y31{bottom:798.373333pt;}
.y7{bottom:803.333333pt;}
.ye3{bottom:805.893333pt;}
.y5b{bottom:815.653333pt;}
.y30{bottom:816.773333pt;}
.y6{bottom:819.973333pt;}
.y5a{bottom:834.053333pt;}
.y5{bottom:835.173333pt;}
.y59{bottom:852.453333pt;}
.y4{bottom:853.573333pt;}
.y3{bottom:871.973333pt;}
.h6{height:18.400000pt;}
.h4{height:22.578125pt;}
.h9{height:28.687500pt;}
.h7{height:36.800000pt;}
.h8{height:36.832000pt;}
.h3{height:45.156250pt;}
.ha{height:46.593750pt;}
.h5{height:57.375000pt;}
.h2{height:60.288750pt;}
.h1{height:971.333333pt;}
.h0{height:971.360000pt;}
.w3{width:117.440000pt;}
.w4{width:171.746667pt;}
.w6{width:199.066667pt;}
.w5{width:227.226667pt;}
.w7{width:317.986667pt;}
.w2{width:687.839990pt;}
.w0{width:687.840000pt;}
.w1{width:688.000000pt;}
.x0{left:0.000000pt;}
.xb{left:6.880000pt;}
.x16{left:74.431990pt;}
.x14{left:78.431990pt;}
.x8{left:84.511990pt;}
.x15{left:96.511990pt;}
.x4{left:98.591990pt;}
.x9{left:108.511990pt;}
.xe{left:115.071990pt;}
.xa{left:132.511990pt;}
.x10{left:156.506656pt;}
.xc{left:203.226667pt;}
.x6{left:266.146656pt;}
.x7{left:267.746656pt;}
.x13{left:284.866667pt;}
.x3{left:294.146656pt;}
.x5{left:311.426656pt;}
.x11{left:317.346656pt;}
.x1{left:332.866656pt;}
.x2{left:343.906656pt;}
.xd{left:375.613333pt;}
.xf{left:486.173323pt;}
.x12{left:603.493323pt;}
}




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