
    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_5be01f694bc96891c96692f9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.065430;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_d26dac2c8e55a5f2258acd89.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.064941;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_c7a3e36a01ed761ff54fbaca.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_f72d013d09852db65962252e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_c0f8604b356887cb6519bb0a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.035156;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_edc8e225a64d4a8317d74074.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.035156;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;}
.ls6{letter-spacing:-0.762000px;}
.ls5{letter-spacing:-0.648000px;}
.ls8{letter-spacing:-0.334200px;}
.lsf{letter-spacing:-0.247800px;}
.lsb{letter-spacing:-0.233400px;}
.lsa{letter-spacing:-0.109200px;}
.ls7{letter-spacing:-0.051840px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.023040px;}
.lse{letter-spacing:0.075000px;}
.ls9{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.120000px;}
.ls1{letter-spacing:0.144720px;}
.lsc{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.187200px;}
.lsd{letter-spacing:0.319800px;}
.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;}
}
.ws7{word-spacing:-14.892600px;}
.ws4{word-spacing:-14.679600px;}
.ws8{word-spacing:-14.647800px;}
.ws9{word-spacing:-14.595840px;}
.ws0{word-spacing:-14.572800px;}
.ws5{word-spacing:-14.463600px;}
.ws6{word-spacing:-14.339400px;}
.ws3{word-spacing:-14.238600px;}
.ws1{word-spacing:0.000000px;}
.ws2{word-spacing:3.047040px;}
._a{margin-left:-6.771600px;}
._0{margin-left:-1.126080px;}
._2{width:1.004400px;}
._9{width:2.311200px;}
._3{width:3.568800px;}
._c{width:4.860000px;}
._11{width:5.922720px;}
._b{width:6.924000px;}
._4{width:8.519760px;}
._d{width:10.068480px;}
._14{width:11.128320px;}
._e{width:12.386880px;}
._7{width:13.941360px;}
._8{width:15.050880px;}
._f{width:16.667280px;}
._1f{width:17.771520px;}
._1b{width:18.783360px;}
._19{width:19.805760px;}
._1c{width:20.828160px;}
._1a{width:21.991680px;}
._15{width:23.713920px;}
._16{width:25.568640px;}
._13{width:27.158400px;}
._12{width:29.145600px;}
._17{width:31.199040px;}
._18{width:32.457600px;}
._24{width:33.914880px;}
._21{width:35.239680px;}
._1d{width:36.432000px;}
._1e{width:37.564800px;}
._20{width:39.479040px;}
._5{width:40.569840px;}
._6{width:42.425760px;}
._10{width:43.620000px;}
._28{width:44.778240px;}
._22{width:47.361600px;}
._23{width:48.421440px;}
._29{width:49.479360px;}
._25{width:50.541120px;}
._26{width:52.263360px;}
._27{width:53.455680px;}
._2c{width:90.417600px;}
._2d{width:91.543680px;}
._2b{width:128.903040px;}
._31{width:152.418240px;}
._2e{width:159.307200px;}
._2f{width:160.499520px;}
._1{width:201.403200px;}
._2a{width:283.904640px;}
._30{width:417.974400px;}
._32{width:469.774080px;}
.fc4{color:rgb(0,0,255);}
.fc2{color:transparent;}
.fc1{color:rgb(23,54,93);}
.fc3{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:18.000000px;}
.fs2{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y31{bottom:57.420000px;}
.yd{bottom:58.176000px;}
.yc{bottom:73.656000px;}
.yb{bottom:89.136000px;}
.ya{bottom:104.616000px;}
.y7a{bottom:113.796000px;}
.yd7{bottom:114.336000px;}
.y9{bottom:120.096000px;}
.yb5{bottom:121.176000px;}
.yf4{bottom:121.536000px;}
.y91{bottom:128.376000px;}
.ye9{bottom:128.916000px;}
.y57{bottom:129.456000px;}
.y8{bottom:135.576000px;}
.y79{bottom:136.116000px;}
.yd6{bottom:136.656000px;}
.ycc{bottom:142.416000px;}
.ya5{bottom:143.856000px;}
.y90{bottom:150.510000px;}
.ye8{bottom:151.050000px;}
.y2f{bottom:151.590000px;}
.y78{bottom:158.430000px;}
.yd5{bottom:158.790000px;}
.yf3{bottom:166.170000px;}
.y8f{bottom:172.830000px;}
.ye7{bottom:173.370000px;}
.y2e{bottom:173.910000px;}
.ycb{bottom:179.670000px;}
.y77{bottom:180.570000px;}
.ya4{bottom:181.110000px;}
.yf2{bottom:188.310000px;}
.y8e{bottom:195.150000px;}
.ye6{bottom:195.510000px;}
.y2d{bottom:196.050000px;}
.yca{bottom:201.810000px;}
.y76{bottom:202.890000px;}
.ya3{bottom:203.430000px;}
.yf1{bottom:210.630000px;}
.y8d{bottom:217.290000px;}
.ye5{bottom:217.830000px;}
.y56{bottom:218.370000px;}
.yc9{bottom:224.130000px;}
.y75{bottom:225.030000px;}
.ya2{bottom:225.570000px;}
.yf0{bottom:232.770000px;}
.y2c{bottom:233.310000px;}
.y8c{bottom:239.610000px;}
.ye4{bottom:240.150000px;}
.y55{bottom:240.510000px;}
.yb4{bottom:247.350000px;}
.ya1{bottom:247.890000px;}
.yc8{bottom:261.390000px;}
.y74{bottom:262.290000px;}
.y54{bottom:262.830000px;}
.yb3{bottom:269.670000px;}
.ya0{bottom:270.030000px;}
.y2b{bottom:270.570000px;}
.y8b{bottom:276.870000px;}
.ye3{bottom:284.610000px;}
.y53{bottom:285.150000px;}
.yb2{bottom:291.810000px;}
.y9f{bottom:292.350000px;}
.y2a{bottom:292.890000px;}
.yc7{bottom:298.650000px;}
.y73{bottom:299.550000px;}
.ye2{bottom:306.750000px;}
.y52{bottom:307.290000px;}
.y8a{bottom:314.175000px;}
.y9e{bottom:314.715000px;}
.y29{bottom:315.075000px;}
.yc6{bottom:320.835000px;}
.y72{bottom:321.915000px;}
.yb1{bottom:329.115000px;}
.y51{bottom:329.655000px;}
.y89{bottom:336.315000px;}
.y9d{bottom:336.855000px;}
.y28{bottom:337.395000px;}
.yc5{bottom:343.155000px;}
.y71{bottom:344.055000px;}
.ye1{bottom:351.435000px;}
.y50{bottom:351.795000px;}
.y88{bottom:358.635000px;}
.y9c{bottom:359.175000px;}
.y27{bottom:359.535000px;}
.y70{bottom:366.375000px;}
.yd0{bottom:374.115000px;}
.yc4{bottom:380.415000px;}
.y87{bottom:380.775000px;}
.y9b{bottom:381.315000px;}
.y26{bottom:381.855000px;}
.y6f{bottom:388.695000px;}
.y4f{bottom:389.055000px;}
.yd4{bottom:396.435000px;}
.y86{bottom:403.095000px;}
.y9a{bottom:403.635000px;}
.y25{bottom:404.175000px;}
.y6e{bottom:410.835000px;}
.y4e{bottom:411.375000px;}
.yc3{bottom:417.675000px;}
.yd3{bottom:418.575000px;}
.y85{bottom:425.415000px;}
.y99{bottom:425.775000px;}
.y24{bottom:426.315000px;}
.y6d{bottom:433.155000px;}
.y4d{bottom:433.695000px;}
.yc2{bottom:439.815000px;}
.yd2{bottom:440.895000px;}
.y84{bottom:447.555000px;}
.y98{bottom:448.095000px;}
.y23{bottom:448.635000px;}
.y6c{bottom:455.295000px;}
.y4c{bottom:455.835000px;}
.yc1{bottom:462.135000px;}
.yd1{bottom:463.035000px;}
.y97{bottom:470.415000px;}
.y6b{bottom:477.615000px;}
.y4b{bottom:478.155000px;}
.y83{bottom:484.815000px;}
.yef{bottom:485.355000px;}
.y22{bottom:485.895000px;}
.ye0{bottom:492.555000px;}
.yc0{bottom:499.395000px;}
.y6a{bottom:499.755000px;}
.y4a{bottom:500.295000px;}
.y96{bottom:507.675000px;}
.y21{bottom:508.035000px;}
.ydf{bottom:514.875000px;}
.y69{bottom:522.075000px;}
.y49{bottom:522.615000px;}
.yee{bottom:529.815000px;}
.y20{bottom:530.355000px;}
.ybf{bottom:536.655000px;}
.yb0{bottom:537.015000px;}
.y68{bottom:544.395000px;}
.y48{bottom:544.755000px;}
.yed{bottom:552.135000px;}
.y1f{bottom:552.495000px;}
.yf7{bottom:552.675000px;}
.ybe{bottom:558.795000px;}
.yde{bottom:559.335000px;}
.y82{bottom:566.565000px;}
.y47{bottom:567.105000px;}
.yaf{bottom:574.305000px;}
.y1e{bottom:574.845000px;}
.ybd{bottom:581.145000px;}
.y67{bottom:581.685000px;}
.y81{bottom:588.885000px;}
.y46{bottom:589.425000px;}
.yae{bottom:596.625000px;}
.y1d{bottom:597.165000px;}
.ybc{bottom:603.285000px;}
.ydd{bottom:603.825000px;}
.y80{bottom:611.025000px;}
.y45{bottom:611.565000px;}
.y66{bottom:618.765000px;}
.y1c{bottom:619.305000px;}
.ybb{bottom:625.605000px;}
.ydc{bottom:626.145000px;}
.y7f{bottom:633.345000px;}
.y44{bottom:633.885000px;}
.y65{bottom:641.085000px;}
.y1b{bottom:641.625000px;}
.ydb{bottom:648.285000px;}
.y7e{bottom:655.665000px;}
.y43{bottom:656.025000px;}
.yba{bottom:662.865000px;}
.y64{bottom:663.405000px;}
.y1a{bottom:663.765000px;}
.yda{bottom:670.605000px;}
.yf6{bottom:671.145000px;}
.y42{bottom:678.345000px;}
.y63{bottom:685.545000px;}
.y19{bottom:686.085000px;}
.y7d{bottom:692.745000px;}
.yec{bottom:693.285000px;}
.yb9{bottom:700.125000px;}
.y41{bottom:700.665000px;}
.y62{bottom:707.865000px;}
.y18{bottom:708.405000px;}
.yd9{bottom:715.065000px;}
.yeb{bottom:715.605000px;}
.yb8{bottom:722.265000px;}
.y40{bottom:722.805000px;}
.y61{bottom:730.005000px;}
.y17{bottom:730.545000px;}
.yd8{bottom:737.385000px;}
.ycf{bottom:737.745000px;}
.yb7{bottom:744.585000px;}
.y95{bottom:745.125000px;}
.y60{bottom:752.325000px;}
.y16{bottom:752.865000px;}
.y3f{bottom:760.065000px;}
.y94{bottom:767.265000px;}
.y5f{bottom:774.645000px;}
.yf5{bottom:775.005000px;}
.yb6{bottom:781.845000px;}
.yce{bottom:782.385000px;}
.y93{bottom:789.585000px;}
.y15{bottom:790.125000px;}
.y5e{bottom:796.785000px;}
.y3e{bottom:797.325000px;}
.ycd{bottom:804.525000px;}
.yad{bottom:811.770000px;}
.y14{bottom:812.310000px;}
.y5d{bottom:819.150000px;}
.y3d{bottom:819.690000px;}
.y92{bottom:826.890000px;}
.y13{bottom:834.630000px;}
.y5c{bottom:841.290000px;}
.y3c{bottom:841.830000px;}
.yac{bottom:849.030000px;}
.y12{bottom:856.770000px;}
.y5b{bottom:863.610000px;}
.y3b{bottom:864.150000px;}
.yab{bottom:871.350000px;}
.yea{bottom:878.550000px;}
.y11{bottom:879.090000px;}
.y5a{bottom:885.750000px;}
.y3a{bottom:886.290000px;}
.yaa{bottom:893.670000px;}
.y7c{bottom:900.870000px;}
.y39{bottom:908.610000px;}
.ya9{bottom:915.810000px;}
.y59{bottom:923.010000px;}
.y10{bottom:929.670000px;}
.y38{bottom:930.750000px;}
.y7b{bottom:938.130000px;}
.y37{bottom:953.070000px;}
.yf{bottom:953.970000px;}
.y58{bottom:960.270000px;}
.y36{bottom:975.390000px;}
.ya8{bottom:982.590000px;}
.ye{bottom:986.910000px;}
.y35{bottom:997.530000px;}
.ya7{bottom:1004.730000px;}
.y7{bottom:1013.730000px;}
.y34{bottom:1019.850000px;}
.y6{bottom:1021.650000px;}
.ya6{bottom:1027.050000px;}
.y5{bottom:1040.910000px;}
.y33{bottom:1041.990000px;}
.y4{bottom:1060.350000px;}
.y32{bottom:1064.340000px;}
.y3{bottom:1079.640000px;}
.y2{bottom:1099.080000px;}
.y1{bottom:1118.340000px;}
.y30{bottom:1121.220000px;}
.h2{height:15.240234px;}
.h3{height:40.843828px;}
.h6{height:45.720703px;}
.h1{height:56.084062px;}
.h5{height:73.722656px;}
.h4{height:110.583984px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:135.036000px;}
.x4{left:147.096000px;}
.xb{left:189.030000px;}
.x5{left:202.350000px;}
.x7{left:235.650000px;}
.x8{left:245.730000px;}
.x3{left:262.470000px;}
.x9{left:277.230000px;}
.xa{left:412.275000px;}
.x6{left:459.075000px;}
.x2{left:783.150000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.677333pt;}
.ls5{letter-spacing:-0.576000pt;}
.ls8{letter-spacing:-0.297067pt;}
.lsf{letter-spacing:-0.220267pt;}
.lsb{letter-spacing:-0.207467pt;}
.lsa{letter-spacing:-0.097067pt;}
.ls7{letter-spacing:-0.046080pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.020480pt;}
.lse{letter-spacing:0.066667pt;}
.ls9{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.106667pt;}
.ls1{letter-spacing:0.128640pt;}
.lsc{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.166400pt;}
.lsd{letter-spacing:0.284267pt;}
.ws7{word-spacing:-13.237867pt;}
.ws4{word-spacing:-13.048533pt;}
.ws8{word-spacing:-13.020267pt;}
.ws9{word-spacing:-12.974080pt;}
.ws0{word-spacing:-12.953600pt;}
.ws5{word-spacing:-12.856533pt;}
.ws6{word-spacing:-12.746133pt;}
.ws3{word-spacing:-12.656533pt;}
.ws1{word-spacing:0.000000pt;}
.ws2{word-spacing:2.708480pt;}
._a{margin-left:-6.019200pt;}
._0{margin-left:-1.000960pt;}
._2{width:0.892800pt;}
._9{width:2.054400pt;}
._3{width:3.172267pt;}
._c{width:4.320000pt;}
._11{width:5.264640pt;}
._b{width:6.154667pt;}
._4{width:7.573120pt;}
._d{width:8.949760pt;}
._14{width:9.891840pt;}
._e{width:11.010560pt;}
._7{width:12.392320pt;}
._8{width:13.378560pt;}
._f{width:14.815360pt;}
._1f{width:15.796907pt;}
._1b{width:16.696320pt;}
._19{width:17.605120pt;}
._1c{width:18.513920pt;}
._1a{width:19.548160pt;}
._15{width:21.079040pt;}
._16{width:22.727680pt;}
._13{width:24.140800pt;}
._12{width:25.907200pt;}
._17{width:27.732480pt;}
._18{width:28.851200pt;}
._24{width:30.146560pt;}
._21{width:31.324160pt;}
._1d{width:32.384000pt;}
._1e{width:33.390933pt;}
._20{width:35.092480pt;}
._5{width:36.062080pt;}
._6{width:37.711787pt;}
._10{width:38.773333pt;}
._28{width:39.802880pt;}
._22{width:42.099200pt;}
._23{width:43.041280pt;}
._29{width:43.981653pt;}
._25{width:44.925440pt;}
._26{width:46.456320pt;}
._27{width:47.516160pt;}
._2c{width:80.371200pt;}
._2d{width:81.372160pt;}
._2b{width:114.580480pt;}
._31{width:135.482880pt;}
._2e{width:141.606400pt;}
._2f{width:142.666240pt;}
._1{width:179.025067pt;}
._2a{width:252.359680pt;}
._30{width:371.532800pt;}
._32{width:417.576960pt;}
.fs1{font-size:16.000000pt;}
.fs2{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y31{bottom:51.040000pt;}
.yd{bottom:51.712000pt;}
.yc{bottom:65.472000pt;}
.yb{bottom:79.232000pt;}
.ya{bottom:92.992000pt;}
.y7a{bottom:101.152000pt;}
.yd7{bottom:101.632000pt;}
.y9{bottom:106.752000pt;}
.yb5{bottom:107.712000pt;}
.yf4{bottom:108.032000pt;}
.y91{bottom:114.112000pt;}
.ye9{bottom:114.592000pt;}
.y57{bottom:115.072000pt;}
.y8{bottom:120.512000pt;}
.y79{bottom:120.992000pt;}
.yd6{bottom:121.472000pt;}
.ycc{bottom:126.592000pt;}
.ya5{bottom:127.872000pt;}
.y90{bottom:133.786667pt;}
.ye8{bottom:134.266667pt;}
.y2f{bottom:134.746667pt;}
.y78{bottom:140.826667pt;}
.yd5{bottom:141.146667pt;}
.yf3{bottom:147.706667pt;}
.y8f{bottom:153.626667pt;}
.ye7{bottom:154.106667pt;}
.y2e{bottom:154.586667pt;}
.ycb{bottom:159.706667pt;}
.y77{bottom:160.506667pt;}
.ya4{bottom:160.986667pt;}
.yf2{bottom:167.386667pt;}
.y8e{bottom:173.466667pt;}
.ye6{bottom:173.786667pt;}
.y2d{bottom:174.266667pt;}
.yca{bottom:179.386667pt;}
.y76{bottom:180.346667pt;}
.ya3{bottom:180.826667pt;}
.yf1{bottom:187.226667pt;}
.y8d{bottom:193.146667pt;}
.ye5{bottom:193.626667pt;}
.y56{bottom:194.106667pt;}
.yc9{bottom:199.226667pt;}
.y75{bottom:200.026667pt;}
.ya2{bottom:200.506667pt;}
.yf0{bottom:206.906667pt;}
.y2c{bottom:207.386667pt;}
.y8c{bottom:212.986667pt;}
.ye4{bottom:213.466667pt;}
.y55{bottom:213.786667pt;}
.yb4{bottom:219.866667pt;}
.ya1{bottom:220.346667pt;}
.yc8{bottom:232.346667pt;}
.y74{bottom:233.146667pt;}
.y54{bottom:233.626667pt;}
.yb3{bottom:239.706667pt;}
.ya0{bottom:240.026667pt;}
.y2b{bottom:240.506667pt;}
.y8b{bottom:246.106667pt;}
.ye3{bottom:252.986667pt;}
.y53{bottom:253.466667pt;}
.yb2{bottom:259.386667pt;}
.y9f{bottom:259.866667pt;}
.y2a{bottom:260.346667pt;}
.yc7{bottom:265.466667pt;}
.y73{bottom:266.266667pt;}
.ye2{bottom:272.666667pt;}
.y52{bottom:273.146667pt;}
.y8a{bottom:279.266667pt;}
.y9e{bottom:279.746667pt;}
.y29{bottom:280.066667pt;}
.yc6{bottom:285.186667pt;}
.y72{bottom:286.146667pt;}
.yb1{bottom:292.546667pt;}
.y51{bottom:293.026667pt;}
.y89{bottom:298.946667pt;}
.y9d{bottom:299.426667pt;}
.y28{bottom:299.906667pt;}
.yc5{bottom:305.026667pt;}
.y71{bottom:305.826667pt;}
.ye1{bottom:312.386667pt;}
.y50{bottom:312.706667pt;}
.y88{bottom:318.786667pt;}
.y9c{bottom:319.266667pt;}
.y27{bottom:319.586667pt;}
.y70{bottom:325.666667pt;}
.yd0{bottom:332.546667pt;}
.yc4{bottom:338.146667pt;}
.y87{bottom:338.466667pt;}
.y9b{bottom:338.946667pt;}
.y26{bottom:339.426667pt;}
.y6f{bottom:345.506667pt;}
.y4f{bottom:345.826667pt;}
.yd4{bottom:352.386667pt;}
.y86{bottom:358.306667pt;}
.y9a{bottom:358.786667pt;}
.y25{bottom:359.266667pt;}
.y6e{bottom:365.186667pt;}
.y4e{bottom:365.666667pt;}
.yc3{bottom:371.266667pt;}
.yd3{bottom:372.066667pt;}
.y85{bottom:378.146667pt;}
.y99{bottom:378.466667pt;}
.y24{bottom:378.946667pt;}
.y6d{bottom:385.026667pt;}
.y4d{bottom:385.506667pt;}
.yc2{bottom:390.946667pt;}
.yd2{bottom:391.906667pt;}
.y84{bottom:397.826667pt;}
.y98{bottom:398.306667pt;}
.y23{bottom:398.786667pt;}
.y6c{bottom:404.706667pt;}
.y4c{bottom:405.186667pt;}
.yc1{bottom:410.786667pt;}
.yd1{bottom:411.586667pt;}
.y97{bottom:418.146667pt;}
.y6b{bottom:424.546667pt;}
.y4b{bottom:425.026667pt;}
.y83{bottom:430.946667pt;}
.yef{bottom:431.426667pt;}
.y22{bottom:431.906667pt;}
.ye0{bottom:437.826667pt;}
.yc0{bottom:443.906667pt;}
.y6a{bottom:444.226667pt;}
.y4a{bottom:444.706667pt;}
.y96{bottom:451.266667pt;}
.y21{bottom:451.586667pt;}
.ydf{bottom:457.666667pt;}
.y69{bottom:464.066667pt;}
.y49{bottom:464.546667pt;}
.yee{bottom:470.946667pt;}
.y20{bottom:471.426667pt;}
.ybf{bottom:477.026667pt;}
.yb0{bottom:477.346667pt;}
.y68{bottom:483.906667pt;}
.y48{bottom:484.226667pt;}
.yed{bottom:490.786667pt;}
.y1f{bottom:491.106667pt;}
.yf7{bottom:491.266667pt;}
.ybe{bottom:496.706667pt;}
.yde{bottom:497.186667pt;}
.y82{bottom:503.613333pt;}
.y47{bottom:504.093333pt;}
.yaf{bottom:510.493333pt;}
.y1e{bottom:510.973333pt;}
.ybd{bottom:516.573333pt;}
.y67{bottom:517.053333pt;}
.y81{bottom:523.453333pt;}
.y46{bottom:523.933333pt;}
.yae{bottom:530.333333pt;}
.y1d{bottom:530.813333pt;}
.ybc{bottom:536.253333pt;}
.ydd{bottom:536.733333pt;}
.y80{bottom:543.133333pt;}
.y45{bottom:543.613333pt;}
.y66{bottom:550.013333pt;}
.y1c{bottom:550.493333pt;}
.ybb{bottom:556.093333pt;}
.ydc{bottom:556.573333pt;}
.y7f{bottom:562.973333pt;}
.y44{bottom:563.453333pt;}
.y65{bottom:569.853333pt;}
.y1b{bottom:570.333333pt;}
.ydb{bottom:576.253333pt;}
.y7e{bottom:582.813333pt;}
.y43{bottom:583.133333pt;}
.yba{bottom:589.213333pt;}
.y64{bottom:589.693333pt;}
.y1a{bottom:590.013333pt;}
.yda{bottom:596.093333pt;}
.yf6{bottom:596.573333pt;}
.y42{bottom:602.973333pt;}
.y63{bottom:609.373333pt;}
.y19{bottom:609.853333pt;}
.y7d{bottom:615.773333pt;}
.yec{bottom:616.253333pt;}
.yb9{bottom:622.333333pt;}
.y41{bottom:622.813333pt;}
.y62{bottom:629.213333pt;}
.y18{bottom:629.693333pt;}
.yd9{bottom:635.613333pt;}
.yeb{bottom:636.093333pt;}
.yb8{bottom:642.013333pt;}
.y40{bottom:642.493333pt;}
.y61{bottom:648.893333pt;}
.y17{bottom:649.373333pt;}
.yd8{bottom:655.453333pt;}
.ycf{bottom:655.773333pt;}
.yb7{bottom:661.853333pt;}
.y95{bottom:662.333333pt;}
.y60{bottom:668.733333pt;}
.y16{bottom:669.213333pt;}
.y3f{bottom:675.613333pt;}
.y94{bottom:682.013333pt;}
.y5f{bottom:688.573333pt;}
.yf5{bottom:688.893333pt;}
.yb6{bottom:694.973333pt;}
.yce{bottom:695.453333pt;}
.y93{bottom:701.853333pt;}
.y15{bottom:702.333333pt;}
.y5e{bottom:708.253333pt;}
.y3e{bottom:708.733333pt;}
.ycd{bottom:715.133333pt;}
.yad{bottom:721.573333pt;}
.y14{bottom:722.053333pt;}
.y5d{bottom:728.133333pt;}
.y3d{bottom:728.613333pt;}
.y92{bottom:735.013333pt;}
.y13{bottom:741.893333pt;}
.y5c{bottom:747.813333pt;}
.y3c{bottom:748.293333pt;}
.yac{bottom:754.693333pt;}
.y12{bottom:761.573333pt;}
.y5b{bottom:767.653333pt;}
.y3b{bottom:768.133333pt;}
.yab{bottom:774.533333pt;}
.yea{bottom:780.933333pt;}
.y11{bottom:781.413333pt;}
.y5a{bottom:787.333333pt;}
.y3a{bottom:787.813333pt;}
.yaa{bottom:794.373333pt;}
.y7c{bottom:800.773333pt;}
.y39{bottom:807.653333pt;}
.ya9{bottom:814.053333pt;}
.y59{bottom:820.453333pt;}
.y10{bottom:826.373333pt;}
.y38{bottom:827.333333pt;}
.y7b{bottom:833.893333pt;}
.y37{bottom:847.173333pt;}
.yf{bottom:847.973333pt;}
.y58{bottom:853.573333pt;}
.y36{bottom:867.013333pt;}
.ya8{bottom:873.413333pt;}
.ye{bottom:877.253333pt;}
.y35{bottom:886.693333pt;}
.ya7{bottom:893.093333pt;}
.y7{bottom:901.093333pt;}
.y34{bottom:906.533333pt;}
.y6{bottom:908.133333pt;}
.ya6{bottom:912.933333pt;}
.y5{bottom:925.253333pt;}
.y33{bottom:926.213333pt;}
.y4{bottom:942.533333pt;}
.y32{bottom:946.080000pt;}
.y3{bottom:959.680000pt;}
.y2{bottom:976.960000pt;}
.y1{bottom:994.080000pt;}
.y30{bottom:996.640000pt;}
.h2{height:13.546875pt;}
.h3{height:36.305625pt;}
.h6{height:40.640625pt;}
.h1{height:49.852500pt;}
.h5{height:65.531250pt;}
.h4{height:98.296875pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:120.032000pt;}
.x4{left:130.752000pt;}
.xb{left:168.026667pt;}
.x5{left:179.866667pt;}
.x7{left:209.466667pt;}
.x8{left:218.426667pt;}
.x3{left:233.306667pt;}
.x9{left:246.426667pt;}
.xa{left:366.466667pt;}
.x6{left:408.066667pt;}
.x2{left:696.133333pt;}
}




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