
    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_2b4f29f1e118a411f397eeb3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.106934;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_667367d8cb197d2ffde87c6c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_602b8d7fc20f2405272cf33a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.750000;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_64e5aa821ddc62fd23545272.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.926758;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_a39ad9f613685b21706a33d3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_a8ab9d0fefdfbb97cb3d4203.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_761ca12f6b54f6cbc5dd40b2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.942383;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);}
.v1{vertical-align:-12.000000px;}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-0.016800px;}
.ls9{letter-spacing:-0.014400px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.009000px;}
.ls3{letter-spacing:0.012000px;}
.ls1{letter-spacing:0.014400px;}
.lsd{letter-spacing:0.028800px;}
.ls0{letter-spacing:1.036800px;}
.lsb{letter-spacing:24.674400px;}
.ls8{letter-spacing:68.880000px;}
.lsc{letter-spacing:89.740800px;}
.lsa{letter-spacing:192.384000px;}
.ls6{letter-spacing:199.320000px;}
.ls5{letter-spacing:199.326000px;}
.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:-20.030400px;}
.ws5{word-spacing:-20.016000px;}
.ws4{word-spacing:-20.001600px;}
.ws2{word-spacing:-16.692000px;}
.ws1{word-spacing:-16.680000px;}
.ws6{word-spacing:-0.100800px;}
.ws0{word-spacing:0.000000px;}
._11{margin-left:-176.478540px;}
._12{margin-left:-108.000000px;}
._18{margin-left:-9.266400px;}
._e{margin-left:-8.006400px;}
._19{margin-left:-6.993600px;}
._a{margin-left:-5.889600px;}
._10{margin-left:-4.783200px;}
._1{margin-left:-3.201600px;}
._5{margin-left:-2.121600px;}
._f{margin-left:-1.098000px;}
._0{width:1.915200px;}
._3{width:2.923200px;}
._d{width:4.024800px;}
._6{width:5.248800px;}
._2{width:6.300000px;}
._9{width:7.416000px;}
._4{width:9.374400px;}
._7{width:10.706400px;}
._8{width:12.585600px;}
._c{width:13.824000px;}
._13{width:14.882400px;}
._14{width:15.948000px;}
._15{width:18.261600px;}
._b{width:21.873600px;}
._16{width:172.368000px;}
._17{width:192.369600px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(68,68,68);}
.fc2{color:rgb(51,51,51);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs3{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y6f{bottom:7.357035px;}
.y41{bottom:13.725000px;}
.y99{bottom:16.725000px;}
.yf0{bottom:19.674900px;}
.y6e{bottom:23.857035px;}
.y6d{bottom:40.357035px;}
.y20{bottom:43.725000px;}
.y40{bottom:46.725000px;}
.y98{bottom:49.725000px;}
.yef{bottom:51.174900px;}
.yd1{bottom:52.725000px;}
.y6c{bottom:56.857035px;}
.y97{bottom:66.225000px;}
.y6b{bottom:73.357035px;}
.y1f{bottom:73.725000px;}
.y13b{bottom:75.225000px;}
.y3f{bottom:79.725000px;}
.yee{bottom:82.674900px;}
.y131{bottom:82.725000px;}
.yd0{bottom:84.225000px;}
.yb8{bottom:87.225000px;}
.y6a{bottom:89.857035px;}
.y104{bottom:93.147360px;}
.yd2{bottom:94.325100px;}
.y3e{bottom:96.225000px;}
.y96{bottom:99.225000px;}
.y42{bottom:102.142965px;}
.y1e{bottom:105.225000px;}
.y1{bottom:106.275000px;}
.y69{bottom:106.357035px;}
.yed{bottom:112.674900px;}
.y130{bottom:114.225000px;}
.y95{bottom:115.725000px;}
.yb7{bottom:118.725000px;}
.y68{bottom:122.857035px;}
.y3d{bottom:132.225000px;}
.y1d{bottom:136.725000px;}
.y67{bottom:139.357035px;}
.y13a{bottom:142.725000px;}
.yec{bottom:144.174900px;}
.y12f{bottom:145.725000px;}
.ycf{bottom:147.225000px;}
.y94{bottom:148.725000px;}
.y11d{bottom:154.352640px;}
.y66{bottom:155.857035px;}
.y3c{bottom:163.725000px;}
.y1c{bottom:168.225000px;}
.yeb{bottom:175.674900px;}
.y12e{bottom:177.225000px;}
.yce{bottom:178.725000px;}
.yb6{bottom:180.225000px;}
.y93{bottom:184.725000px;}
.y11c{bottom:185.852640px;}
.y65{bottom:193.357035px;}
.y3b{bottom:195.225000px;}
.y1b{bottom:199.725000px;}
.yea{bottom:207.174900px;}
.ycd{bottom:208.725000px;}
.yb5{bottom:211.725000px;}
.y11b{bottom:215.852640px;}
.y92{bottom:216.225000px;}
.y64{bottom:223.357035px;}
.y3a{bottom:225.225000px;}
.y1a{bottom:229.725000px;}
.ye9{bottom:238.674900px;}
.ycc{bottom:240.225000px;}
.yb4{bottom:243.225000px;}
.y12d{bottom:244.725000px;}
.y11a{bottom:247.352640px;}
.y63{bottom:254.857035px;}
.y39{bottom:256.725000px;}
.y91{bottom:258.225000px;}
.y19{bottom:261.225000px;}
.ye8{bottom:268.674900px;}
.ycb{bottom:271.725000px;}
.y90{bottom:274.725000px;}
.y139{bottom:276.225000px;}
.y119{bottom:278.852640px;}
.y103{bottom:285.225000px;}
.yb3{bottom:286.725000px;}
.y38{bottom:288.225000px;}
.y8f{bottom:291.225000px;}
.y62{bottom:292.357035px;}
.y18{bottom:292.725000px;}
.ye7{bottom:300.174900px;}
.y12c{bottom:306.225000px;}
.y8e{bottom:307.725000px;}
.y61{bottom:308.857035px;}
.y118{bottom:310.352640px;}
.yca{bottom:315.225000px;}
.y102{bottom:316.725000px;}
.y37{bottom:319.725000px;}
.y17{bottom:324.225000px;}
.y60{bottom:325.357035px;}
.ye6{bottom:331.674900px;}
.y12b{bottom:337.725000px;}
.y8d{bottom:340.725000px;}
.y117{bottom:341.852640px;}
.y5f{bottom:341.857035px;}
.y138{bottom:343.725000px;}
.yb2{bottom:345.225000px;}
.y101{bottom:346.725000px;}
.y36{bottom:351.225000px;}
.y16{bottom:355.725000px;}
.y8c{bottom:357.225000px;}
.yb1{bottom:361.725000px;}
.y5e{bottom:362.857035px;}
.ye5{bottom:363.174900px;}
.y12a{bottom:369.225000px;}
.y116{bottom:371.852640px;}
.y8b{bottom:373.725000px;}
.y137{bottom:375.225000px;}
.yb0{bottom:378.225000px;}
.y35{bottom:381.225000px;}
.y5d{bottom:383.857035px;}
.y15{bottom:385.725000px;}
.y8a{bottom:390.225000px;}
.yc9{bottom:393.225000px;}
.ye4{bottom:394.674900px;}
.yaf{bottom:394.725000px;}
.y5c{bottom:400.357035px;}
.y129{bottom:400.725000px;}
.y115{bottom:403.352640px;}
.y136{bottom:406.725000px;}
.y100{bottom:409.725000px;}
.yae{bottom:411.225000px;}
.y34{bottom:412.725000px;}
.y5b{bottom:416.857035px;}
.y14{bottom:417.225000px;}
.yc8{bottom:423.225000px;}
.y89{bottom:426.225000px;}
.yad{bottom:427.725000px;}
.y128{bottom:430.725000px;}
.y5a{bottom:433.357035px;}
.y114{bottom:434.852640px;}
.yff{bottom:441.225000px;}
.y33{bottom:444.225000px;}
.y13{bottom:448.725000px;}
.y59{bottom:449.857035px;}
.y88{bottom:457.725000px;}
.ye3{bottom:460.674900px;}
.yac{bottom:460.725000px;}
.y127{bottom:462.225000px;}
.y58{bottom:466.357035px;}
.yfe{bottom:472.725000px;}
.y32{bottom:475.725000px;}
.yab{bottom:477.225000px;}
.y12{bottom:480.225000px;}
.y57{bottom:488.857035px;}
.ye2{bottom:492.174900px;}
.yaa{bottom:493.725000px;}
.yc7{bottom:495.225000px;}
.y87{bottom:499.725000px;}
.y113{bottom:502.352640px;}
.yfd{bottom:502.725000px;}
.y135{bottom:505.725000px;}
.y56{bottom:509.857035px;}
.ya9{bottom:510.225000px;}
.y11{bottom:511.725000px;}
.y86{bottom:516.225000px;}
.ye1{bottom:523.674900px;}
.y126{bottom:525.225000px;}
.ya8{bottom:526.725000px;}
.y55{bottom:530.857035px;}
.yfc{bottom:534.225000px;}
.y31{bottom:535.725000px;}
.y134{bottom:537.225000px;}
.ya7{bottom:543.225000px;}
.y54{bottom:547.357035px;}
.y85{bottom:549.225000px;}
.y10{bottom:550.725000px;}
.y30{bottom:552.225000px;}
.ye0{bottom:555.174900px;}
.y125{bottom:556.725000px;}
.yc6{bottom:558.225000px;}
.ya6{bottom:559.725000px;}
.y53{bottom:563.857035px;}
.y84{bottom:565.725000px;}
.y2f{bottom:568.725000px;}
.y112{bottom:569.852640px;}
.yf{bottom:582.225000px;}
.y52{bottom:584.857035px;}
.ydf{bottom:586.674900px;}
.yc5{bottom:588.225000px;}
.ya5{bottom:597.225000px;}
.y83{bottom:598.725000px;}
.y111{bottom:599.852640px;}
.y51{bottom:602.857035px;}
.y2e{bottom:604.725000px;}
.ye{bottom:613.725000px;}
.y82{bottom:615.225000px;}
.yde{bottom:616.674900px;}
.y50{bottom:622.357035px;}
.yc4{bottom:622.725000px;}
.ya4{bottom:627.225000px;}
.yfb{bottom:628.725000px;}
.y110{bottom:631.352640px;}
.y81{bottom:631.725000px;}
.y2d{bottom:636.225000px;}
.y4f{bottom:638.857035px;}
.yd{bottom:645.225000px;}
.y80{bottom:648.225000px;}
.y124{bottom:654.225000px;}
.y4e{bottom:656.857035px;}
.ydd{bottom:657.174900px;}
.yfa{bottom:658.725000px;}
.yc3{bottom:660.225000px;}
.y10f{bottom:662.852640px;}
.y2c{bottom:667.725000px;}
.y133{bottom:670.725000px;}
.yc{bottom:676.725000px;}
.y7f{bottom:681.225000px;}
.y123{bottom:685.725000px;}
.yf9{bottom:690.225000px;}
.y10e{bottom:694.352640px;}
.yc2{bottom:694.725000px;}
.y4d{bottom:697.357035px;}
.y7e{bottom:697.725000px;}
.ya3{bottom:699.225000px;}
.yb{bottom:706.725000px;}
.y2b{bottom:708.225000px;}
.y7d{bottom:714.225000px;}
.y122{bottom:717.225000px;}
.yf8{bottom:721.725000px;}
.y10d{bottom:725.852640px;}
.y4c{bottom:727.357035px;}
.y7c{bottom:730.725000px;}
.yc1{bottom:732.225000px;}
.ydc{bottom:738.174900px;}
.ya{bottom:738.225000px;}
.y2a{bottom:739.725000px;}
.y7b{bottom:747.225000px;}
.y121{bottom:748.725000px;}
.yf7{bottom:753.225000px;}
.y10c{bottom:755.852640px;}
.y4b{bottom:758.857035px;}
.ya2{bottom:762.225000px;}
.ydb{bottom:769.674900px;}
.y29{bottom:769.725000px;}
.y9{bottom:778.725000px;}
.y7a{bottom:780.225000px;}
.yf6{bottom:784.725000px;}
.y10b{bottom:787.352640px;}
.y4a{bottom:790.357035px;}
.ya1{bottom:792.225000px;}
.yc0{bottom:793.725000px;}
.y79{bottom:796.725000px;}
.y28{bottom:801.225000px;}
.yda{bottom:802.674900px;}
.y132{bottom:805.725000px;}
.y8{bottom:810.225000px;}
.y78{bottom:813.225000px;}
.yf5{bottom:814.725000px;}
.ya0{bottom:823.725000px;}
.ybf{bottom:825.225000px;}
.y49{bottom:827.857035px;}
.y77{bottom:829.725000px;}
.y27{bottom:832.725000px;}
.yd9{bottom:840.174900px;}
.y7{bottom:841.725000px;}
.y76{bottom:846.225000px;}
.y10a{bottom:854.852640px;}
.y9f{bottom:855.225000px;}
.ybe{bottom:859.725000px;}
.y48{bottom:860.857035px;}
.y26{bottom:864.225000px;}
.y6{bottom:871.725000px;}
.y120{bottom:873.225000px;}
.yd8{bottom:874.674900px;}
.yf4{bottom:877.725000px;}
.y75{bottom:879.225000px;}
.y109{bottom:886.352640px;}
.y9e{bottom:886.725000px;}
.y47{bottom:893.857035px;}
.y25{bottom:895.725000px;}
.ybd{bottom:897.225000px;}
.y5{bottom:903.225000px;}
.y11f{bottom:904.725000px;}
.yf3{bottom:909.225000px;}
.yd7{bottom:912.174900px;}
.y74{bottom:912.225000px;}
.y108{bottom:917.852640px;}
.y9d{bottom:918.225000px;}
.y24{bottom:925.725000px;}
.y46{bottom:926.857035px;}
.ybc{bottom:927.225000px;}
.y4{bottom:934.725000px;}
.yf2{bottom:940.725000px;}
.y73{bottom:945.225000px;}
.yd6{bottom:946.674900px;}
.y107{bottom:947.852640px;}
.y9c{bottom:948.225000px;}
.y23{bottom:957.225000px;}
.ybb{bottom:958.725000px;}
.y45{bottom:959.857035px;}
.y72{bottom:961.725000px;}
.y11e{bottom:966.225000px;}
.y13c{bottom:970.725000px;}
.y3{bottom:976.853250px;}
.y71{bottom:978.225000px;}
.y106{bottom:979.352640px;}
.y9b{bottom:979.725000px;}
.yd5{bottom:982.674900px;}
.y22{bottom:988.725000px;}
.yba{bottom:990.225000px;}
.y44{bottom:992.857035px;}
.yf1{bottom:1002.225000px;}
.y9a{bottom:1011.225000px;}
.yd4{bottom:1014.174900px;}
.y70{bottom:1015.725000px;}
.y43{bottom:1025.857035px;}
.y2{bottom:1026.225000px;}
.y21{bottom:1032.225000px;}
.yb9{bottom:1033.725000px;}
.y105{bottom:1046.852640px;}
.yd3{bottom:1048.674900px;}
.h8{height:45.000000px;}
.hb{height:52.417969px;}
.hd{height:52.546875px;}
.h6{height:53.789062px;}
.h5{height:61.154297px;}
.h3{height:64.546875px;}
.h2{height:96.820312px;}
.h9{height:1054.639500px;}
.hc{height:1055.477400px;}
.ha{height:1055.896350px;}
.h4{height:1056.315300px;}
.h1{height:1057.990950px;}
.h7{height:1058.771550px;}
.he{height:1067.427300px;}
.hf{height:1068.604950px;}
.h0{height:1263.000000px;}
.w3{width:647.404650px;}
.w4{width:648.242550px;}
.w2{width:649.080450px;}
.w5{width:655.973250px;}
.w1{width:660.673350px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x7{left:5.790225px;}
.x5{left:7.466010px;}
.x9{left:32.790225px;}
.x2{left:37.466010px;}
.xa{left:57.452340px;}
.x8{left:59.790225px;}
.x4{left:61.466010px;}
.xb{left:85.952340px;}
.xc{left:111.452340px;}
.x1{left:120.033990px;}
.x6{left:121.709775px;}
.x3{left:384.778710px;}
@media print{
.v1{vertical-align:-10.666667pt;}
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.014933pt;}
.ls9{letter-spacing:-0.012800pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.008000pt;}
.ls3{letter-spacing:0.010667pt;}
.ls1{letter-spacing:0.012800pt;}
.lsd{letter-spacing:0.025600pt;}
.ls0{letter-spacing:0.921600pt;}
.lsb{letter-spacing:21.932800pt;}
.ls8{letter-spacing:61.226667pt;}
.lsc{letter-spacing:79.769600pt;}
.lsa{letter-spacing:171.008000pt;}
.ls6{letter-spacing:177.173333pt;}
.ls5{letter-spacing:177.178667pt;}
.ws3{word-spacing:-17.804800pt;}
.ws5{word-spacing:-17.792000pt;}
.ws4{word-spacing:-17.779200pt;}
.ws2{word-spacing:-14.837333pt;}
.ws1{word-spacing:-14.826667pt;}
.ws6{word-spacing:-0.089600pt;}
.ws0{word-spacing:0.000000pt;}
._11{margin-left:-156.869813pt;}
._12{margin-left:-96.000000pt;}
._18{margin-left:-8.236800pt;}
._e{margin-left:-7.116800pt;}
._19{margin-left:-6.216533pt;}
._a{margin-left:-5.235200pt;}
._10{margin-left:-4.251733pt;}
._1{margin-left:-2.845867pt;}
._5{margin-left:-1.885867pt;}
._f{margin-left:-0.976000pt;}
._0{width:1.702400pt;}
._3{width:2.598400pt;}
._d{width:3.577600pt;}
._6{width:4.665600pt;}
._2{width:5.600000pt;}
._9{width:6.592000pt;}
._4{width:8.332800pt;}
._7{width:9.516800pt;}
._8{width:11.187200pt;}
._c{width:12.288000pt;}
._13{width:13.228800pt;}
._14{width:14.176000pt;}
._15{width:16.232533pt;}
._b{width:19.443200pt;}
._16{width:153.216000pt;}
._17{width:170.995200pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y6f{bottom:6.539587pt;}
.y41{bottom:12.200000pt;}
.y99{bottom:14.866667pt;}
.yf0{bottom:17.488800pt;}
.y6e{bottom:21.206253pt;}
.y6d{bottom:35.872920pt;}
.y20{bottom:38.866667pt;}
.y40{bottom:41.533333pt;}
.y98{bottom:44.200000pt;}
.yef{bottom:45.488800pt;}
.yd1{bottom:46.866667pt;}
.y6c{bottom:50.539587pt;}
.y97{bottom:58.866667pt;}
.y6b{bottom:65.206253pt;}
.y1f{bottom:65.533333pt;}
.y13b{bottom:66.866667pt;}
.y3f{bottom:70.866667pt;}
.yee{bottom:73.488800pt;}
.y131{bottom:73.533333pt;}
.yd0{bottom:74.866667pt;}
.yb8{bottom:77.533333pt;}
.y6a{bottom:79.872920pt;}
.y104{bottom:82.797653pt;}
.yd2{bottom:83.844533pt;}
.y3e{bottom:85.533333pt;}
.y96{bottom:88.200000pt;}
.y42{bottom:90.793747pt;}
.y1e{bottom:93.533333pt;}
.y1{bottom:94.466667pt;}
.y69{bottom:94.539587pt;}
.yed{bottom:100.155467pt;}
.y130{bottom:101.533333pt;}
.y95{bottom:102.866667pt;}
.yb7{bottom:105.533333pt;}
.y68{bottom:109.206253pt;}
.y3d{bottom:117.533333pt;}
.y1d{bottom:121.533333pt;}
.y67{bottom:123.872920pt;}
.y13a{bottom:126.866667pt;}
.yec{bottom:128.155467pt;}
.y12f{bottom:129.533333pt;}
.ycf{bottom:130.866667pt;}
.y94{bottom:132.200000pt;}
.y11d{bottom:137.202347pt;}
.y66{bottom:138.539587pt;}
.y3c{bottom:145.533333pt;}
.y1c{bottom:149.533333pt;}
.yeb{bottom:156.155467pt;}
.y12e{bottom:157.533333pt;}
.yce{bottom:158.866667pt;}
.yb6{bottom:160.200000pt;}
.y93{bottom:164.200000pt;}
.y11c{bottom:165.202347pt;}
.y65{bottom:171.872920pt;}
.y3b{bottom:173.533333pt;}
.y1b{bottom:177.533333pt;}
.yea{bottom:184.155467pt;}
.ycd{bottom:185.533333pt;}
.yb5{bottom:188.200000pt;}
.y11b{bottom:191.869013pt;}
.y92{bottom:192.200000pt;}
.y64{bottom:198.539587pt;}
.y3a{bottom:200.200000pt;}
.y1a{bottom:204.200000pt;}
.ye9{bottom:212.155467pt;}
.ycc{bottom:213.533333pt;}
.yb4{bottom:216.200000pt;}
.y12d{bottom:217.533333pt;}
.y11a{bottom:219.869013pt;}
.y63{bottom:226.539587pt;}
.y39{bottom:228.200000pt;}
.y91{bottom:229.533333pt;}
.y19{bottom:232.200000pt;}
.ye8{bottom:238.822133pt;}
.ycb{bottom:241.533333pt;}
.y90{bottom:244.200000pt;}
.y139{bottom:245.533333pt;}
.y119{bottom:247.869013pt;}
.y103{bottom:253.533333pt;}
.yb3{bottom:254.866667pt;}
.y38{bottom:256.200000pt;}
.y8f{bottom:258.866667pt;}
.y62{bottom:259.872920pt;}
.y18{bottom:260.200000pt;}
.ye7{bottom:266.822133pt;}
.y12c{bottom:272.200000pt;}
.y8e{bottom:273.533333pt;}
.y61{bottom:274.539587pt;}
.y118{bottom:275.869013pt;}
.yca{bottom:280.200000pt;}
.y102{bottom:281.533333pt;}
.y37{bottom:284.200000pt;}
.y17{bottom:288.200000pt;}
.y60{bottom:289.206253pt;}
.ye6{bottom:294.822133pt;}
.y12b{bottom:300.200000pt;}
.y8d{bottom:302.866667pt;}
.y117{bottom:303.869013pt;}
.y5f{bottom:303.872920pt;}
.y138{bottom:305.533333pt;}
.yb2{bottom:306.866667pt;}
.y101{bottom:308.200000pt;}
.y36{bottom:312.200000pt;}
.y16{bottom:316.200000pt;}
.y8c{bottom:317.533333pt;}
.yb1{bottom:321.533333pt;}
.y5e{bottom:322.539587pt;}
.ye5{bottom:322.822133pt;}
.y12a{bottom:328.200000pt;}
.y116{bottom:330.535680pt;}
.y8b{bottom:332.200000pt;}
.y137{bottom:333.533333pt;}
.yb0{bottom:336.200000pt;}
.y35{bottom:338.866667pt;}
.y5d{bottom:341.206253pt;}
.y15{bottom:342.866667pt;}
.y8a{bottom:346.866667pt;}
.yc9{bottom:349.533333pt;}
.ye4{bottom:350.822133pt;}
.yaf{bottom:350.866667pt;}
.y5c{bottom:355.872920pt;}
.y129{bottom:356.200000pt;}
.y115{bottom:358.535680pt;}
.y136{bottom:361.533333pt;}
.y100{bottom:364.200000pt;}
.yae{bottom:365.533333pt;}
.y34{bottom:366.866667pt;}
.y5b{bottom:370.539587pt;}
.y14{bottom:370.866667pt;}
.yc8{bottom:376.200000pt;}
.y89{bottom:378.866667pt;}
.yad{bottom:380.200000pt;}
.y128{bottom:382.866667pt;}
.y5a{bottom:385.206253pt;}
.y114{bottom:386.535680pt;}
.yff{bottom:392.200000pt;}
.y33{bottom:394.866667pt;}
.y13{bottom:398.866667pt;}
.y59{bottom:399.872920pt;}
.y88{bottom:406.866667pt;}
.ye3{bottom:409.488800pt;}
.yac{bottom:409.533333pt;}
.y127{bottom:410.866667pt;}
.y58{bottom:414.539587pt;}
.yfe{bottom:420.200000pt;}
.y32{bottom:422.866667pt;}
.yab{bottom:424.200000pt;}
.y12{bottom:426.866667pt;}
.y57{bottom:434.539587pt;}
.ye2{bottom:437.488800pt;}
.yaa{bottom:438.866667pt;}
.yc7{bottom:440.200000pt;}
.y87{bottom:444.200000pt;}
.y113{bottom:446.535680pt;}
.yfd{bottom:446.866667pt;}
.y135{bottom:449.533333pt;}
.y56{bottom:453.206253pt;}
.ya9{bottom:453.533333pt;}
.y11{bottom:454.866667pt;}
.y86{bottom:458.866667pt;}
.ye1{bottom:465.488800pt;}
.y126{bottom:466.866667pt;}
.ya8{bottom:468.200000pt;}
.y55{bottom:471.872920pt;}
.yfc{bottom:474.866667pt;}
.y31{bottom:476.200000pt;}
.y134{bottom:477.533333pt;}
.ya7{bottom:482.866667pt;}
.y54{bottom:486.539587pt;}
.y85{bottom:488.200000pt;}
.y10{bottom:489.533333pt;}
.y30{bottom:490.866667pt;}
.ye0{bottom:493.488800pt;}
.y125{bottom:494.866667pt;}
.yc6{bottom:496.200000pt;}
.ya6{bottom:497.533333pt;}
.y53{bottom:501.206253pt;}
.y84{bottom:502.866667pt;}
.y2f{bottom:505.533333pt;}
.y112{bottom:506.535680pt;}
.yf{bottom:517.533333pt;}
.y52{bottom:519.872920pt;}
.ydf{bottom:521.488800pt;}
.yc5{bottom:522.866667pt;}
.ya5{bottom:530.866667pt;}
.y83{bottom:532.200000pt;}
.y111{bottom:533.202347pt;}
.y51{bottom:535.872920pt;}
.y2e{bottom:537.533333pt;}
.ye{bottom:545.533333pt;}
.y82{bottom:546.866667pt;}
.yde{bottom:548.155467pt;}
.y50{bottom:553.206253pt;}
.yc4{bottom:553.533333pt;}
.ya4{bottom:557.533333pt;}
.yfb{bottom:558.866667pt;}
.y110{bottom:561.202347pt;}
.y81{bottom:561.533333pt;}
.y2d{bottom:565.533333pt;}
.y4f{bottom:567.872920pt;}
.yd{bottom:573.533333pt;}
.y80{bottom:576.200000pt;}
.y124{bottom:581.533333pt;}
.y4e{bottom:583.872920pt;}
.ydd{bottom:584.155467pt;}
.yfa{bottom:585.533333pt;}
.yc3{bottom:586.866667pt;}
.y10f{bottom:589.202347pt;}
.y2c{bottom:593.533333pt;}
.y133{bottom:596.200000pt;}
.yc{bottom:601.533333pt;}
.y7f{bottom:605.533333pt;}
.y123{bottom:609.533333pt;}
.yf9{bottom:613.533333pt;}
.y10e{bottom:617.202347pt;}
.yc2{bottom:617.533333pt;}
.y4d{bottom:619.872920pt;}
.y7e{bottom:620.200000pt;}
.ya3{bottom:621.533333pt;}
.yb{bottom:628.200000pt;}
.y2b{bottom:629.533333pt;}
.y7d{bottom:634.866667pt;}
.y122{bottom:637.533333pt;}
.yf8{bottom:641.533333pt;}
.y10d{bottom:645.202347pt;}
.y4c{bottom:646.539587pt;}
.y7c{bottom:649.533333pt;}
.yc1{bottom:650.866667pt;}
.ydc{bottom:656.155467pt;}
.ya{bottom:656.200000pt;}
.y2a{bottom:657.533333pt;}
.y7b{bottom:664.200000pt;}
.y121{bottom:665.533333pt;}
.yf7{bottom:669.533333pt;}
.y10c{bottom:671.869013pt;}
.y4b{bottom:674.539587pt;}
.ya2{bottom:677.533333pt;}
.ydb{bottom:684.155467pt;}
.y29{bottom:684.200000pt;}
.y9{bottom:692.200000pt;}
.y7a{bottom:693.533333pt;}
.yf6{bottom:697.533333pt;}
.y10b{bottom:699.869013pt;}
.y4a{bottom:702.539587pt;}
.ya1{bottom:704.200000pt;}
.yc0{bottom:705.533333pt;}
.y79{bottom:708.200000pt;}
.y28{bottom:712.200000pt;}
.yda{bottom:713.488800pt;}
.y132{bottom:716.200000pt;}
.y8{bottom:720.200000pt;}
.y78{bottom:722.866667pt;}
.yf5{bottom:724.200000pt;}
.ya0{bottom:732.200000pt;}
.ybf{bottom:733.533333pt;}
.y49{bottom:735.872920pt;}
.y77{bottom:737.533333pt;}
.y27{bottom:740.200000pt;}
.yd9{bottom:746.822133pt;}
.y7{bottom:748.200000pt;}
.y76{bottom:752.200000pt;}
.y10a{bottom:759.869013pt;}
.y9f{bottom:760.200000pt;}
.ybe{bottom:764.200000pt;}
.y48{bottom:765.206253pt;}
.y26{bottom:768.200000pt;}
.y6{bottom:774.866667pt;}
.y120{bottom:776.200000pt;}
.yd8{bottom:777.488800pt;}
.yf4{bottom:780.200000pt;}
.y75{bottom:781.533333pt;}
.y109{bottom:787.869013pt;}
.y9e{bottom:788.200000pt;}
.y47{bottom:794.539587pt;}
.y25{bottom:796.200000pt;}
.ybd{bottom:797.533333pt;}
.y5{bottom:802.866667pt;}
.y11f{bottom:804.200000pt;}
.yf3{bottom:808.200000pt;}
.yd7{bottom:810.822133pt;}
.y74{bottom:810.866667pt;}
.y108{bottom:815.869013pt;}
.y9d{bottom:816.200000pt;}
.y24{bottom:822.866667pt;}
.y46{bottom:823.872920pt;}
.ybc{bottom:824.200000pt;}
.y4{bottom:830.866667pt;}
.yf2{bottom:836.200000pt;}
.y73{bottom:840.200000pt;}
.yd6{bottom:841.488800pt;}
.y107{bottom:842.535680pt;}
.y9c{bottom:842.866667pt;}
.y23{bottom:850.866667pt;}
.ybb{bottom:852.200000pt;}
.y45{bottom:853.206253pt;}
.y72{bottom:854.866667pt;}
.y11e{bottom:858.866667pt;}
.y13c{bottom:862.866667pt;}
.y3{bottom:868.314000pt;}
.y71{bottom:869.533333pt;}
.y106{bottom:870.535680pt;}
.y9b{bottom:870.866667pt;}
.yd5{bottom:873.488800pt;}
.y22{bottom:878.866667pt;}
.yba{bottom:880.200000pt;}
.y44{bottom:882.539587pt;}
.yf1{bottom:890.866667pt;}
.y9a{bottom:898.866667pt;}
.yd4{bottom:901.488800pt;}
.y70{bottom:902.866667pt;}
.y43{bottom:911.872920pt;}
.y2{bottom:912.200000pt;}
.y21{bottom:917.533333pt;}
.yb9{bottom:918.866667pt;}
.y105{bottom:930.535680pt;}
.yd3{bottom:932.155467pt;}
.h8{height:40.000000pt;}
.hb{height:46.593750pt;}
.hd{height:46.708333pt;}
.h6{height:47.812500pt;}
.h5{height:54.359375pt;}
.h3{height:57.375000pt;}
.h2{height:86.062500pt;}
.h9{height:937.457333pt;}
.hc{height:938.202133pt;}
.ha{height:938.574533pt;}
.h4{height:938.946933pt;}
.h1{height:940.436400pt;}
.h7{height:941.130267pt;}
.he{height:948.824267pt;}
.hf{height:949.871067pt;}
.h0{height:1122.666667pt;}
.w3{width:575.470800pt;}
.w4{width:576.215600pt;}
.w2{width:576.960400pt;}
.w5{width:583.087333pt;}
.w1{width:587.265200pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x7{left:5.146867pt;}
.x5{left:6.636453pt;}
.x9{left:29.146867pt;}
.x2{left:33.303120pt;}
.xa{left:51.068747pt;}
.x8{left:53.146867pt;}
.x4{left:54.636453pt;}
.xb{left:76.402080pt;}
.xc{left:99.068747pt;}
.x1{left:106.696880pt;}
.x6{left:108.186467pt;}
.x3{left:342.025520pt;}
}




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