
    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_0c9868110550e8c8f2fb81e5.woff')format("woff");}.ff1{font-family:ff1;line-height:1.182129;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_e2d13aec2334d2de758b2581.woff')format("woff");}.ff2{font-family:ff2;line-height:1.016113;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_d202fd09eae046b2be33a5d4.woff')format("woff");}.ff3{font-family:ff3;line-height:1.377930;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_1f278c5621fb1d83b3b33fb7.woff')format("woff");}.ff4{font-family:ff4;line-height:1.016113;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_635bc2a184a73bdd16676be1.woff')format("woff");}.ff5{font-family:ff5;line-height:1.377930;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_6a5b109a82553c9625ec60fa.woff')format("woff");}.ff6{font-family:ff6;line-height:1.105957;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_dca5c6adac24dabbac2a6a2e.woff')format("woff");}.ff7{font-family:ff7;line-height:1.105957;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);}
.v2{vertical-align:-11.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.611800px;}
.lsa{letter-spacing:-2.760000px;}
.ls4{letter-spacing:-2.160000px;}
.lsc{letter-spacing:-2.139000px;}
.lsb{letter-spacing:-1.794000px;}
.ls3{letter-spacing:-0.720000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.000300px;}
.ls5{letter-spacing:1.920000px;}
.ls2{letter-spacing:2.400000px;}
.ls7{letter-spacing:3.225000px;}
.ls9{letter-spacing:5.325000px;}
.ls8{letter-spacing:5.460000px;}
.lsd{letter-spacing:5.850000px;}
.ls1{letter-spacing:6.000000px;}
.lsf{letter-spacing:6.300000px;}
.lse{letter-spacing:7.725000px;}
.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;}
}
.ws11{word-spacing:-28.800000px;}
.ws0{word-spacing:-28.188000px;}
.wsf{word-spacing:-26.925000px;}
.wsb{word-spacing:-26.400000px;}
.ws6{word-spacing:-24.300000px;}
.ws8{word-spacing:-19.389000px;}
.ws7{word-spacing:-17.262000px;}
.ws9{word-spacing:-17.043000px;}
.ws12{word-spacing:-15.561000px;}
.wsd{word-spacing:-15.249000px;}
.wse{word-spacing:-14.904000px;}
.wsc{word-spacing:-14.283000px;}
.ws10{word-spacing:-13.338000px;}
.wsa{word-spacing:-11.303787px;}
.ws13{word-spacing:-6.300000px;}
.ws2{word-spacing:-6.000000px;}
.ws3{word-spacing:-2.400000px;}
.ws5{word-spacing:-1.920000px;}
.ws1{word-spacing:0.000000px;}
.ws4{word-spacing:0.720000px;}
._1c{margin-left:-10.529400px;}
._1d{margin-left:-9.517800px;}
._e{margin-left:-7.678800px;}
._17{margin-left:-6.372900px;}
._8{margin-left:-5.034000px;}
._a{margin-left:-3.902100px;}
._4{margin-left:-2.765700px;}
._1{margin-left:-1.494000px;}
._2{width:1.122000px;}
._5{width:2.646000px;}
._9{width:3.846000px;}
._6{width:5.286000px;}
._7{width:6.360000px;}
._b{width:7.596000px;}
._c{width:8.700000px;}
._d{width:9.768000px;}
._10{width:11.069100px;}
._14{width:13.039800px;}
._13{width:14.421000px;}
._1b{width:16.015200px;}
._1a{width:22.669200px;}
._11{width:43.445160px;}
._19{width:447.108000px;}
._18{width:451.209000px;}
._15{width:452.746200px;}
._f{width:455.200200px;}
._0{width:578.400000px;}
._3{width:940.552200px;}
._12{width:943.177200px;}
._16{width:947.227200px;}
._1e{width:949.207200px;}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:31.482000px;}
.fs8{font-size:40.227000px;}
.fs7{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fsa{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:63.000000px;}
.fs5{font-size:69.000000px;}
.fs1{font-size:75.000000px;}
.fs3{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y96{bottom:106.165350px;}
.ybd{bottom:106.287300px;}
.ydf{bottom:106.293300px;}
.y6f{bottom:106.296300px;}
.y21{bottom:106.332150px;}
.y48{bottom:109.294800px;}
.ybc{bottom:123.540300px;}
.yde{bottom:123.546300px;}
.y6e{bottom:126.544800px;}
.y95{bottom:126.589350px;}
.y20{bottom:126.704400px;}
.ybb{bottom:140.793300px;}
.ydd{bottom:143.794800px;}
.y94{bottom:147.013350px;}
.y1f{bottom:147.076650px;}
.y6d{bottom:148.046700px;}
.y47{bottom:153.154350px;}
.yba{bottom:158.046300px;}
.y93{bottom:167.437350px;}
.y1e{bottom:167.448900px;}
.y46{bottom:173.975100px;}
.yb9{bottom:178.294800px;}
.y1d{bottom:187.821150px;}
.y92{bottom:187.861350px;}
.ydc{bottom:187.895850px;}
.y6c{bottom:192.087600px;}
.y45{bottom:194.795850px;}
.yb8{bottom:196.768200px;}
.y1c{bottom:208.193400px;}
.ydb{bottom:208.213350px;}
.y91{bottom:208.285350px;}
.y6b{bottom:212.390850px;}
.yb7{bottom:214.021200px;}
.y44{bottom:215.616600px;}
.y1b{bottom:228.565650px;}
.y90{bottom:228.709350px;}
.yb6{bottom:231.274200px;}
.y6a{bottom:232.694100px;}
.y43{bottom:236.437350px;}
.yda{bottom:237.035850px;}
.yb5{bottom:248.527200px;}
.y1a{bottom:248.937900px;}
.y8f{bottom:249.133350px;}
.y69{bottom:252.997350px;}
.y42{bottom:257.258100px;}
.yd9{bottom:257.353350px;}
.yb4{bottom:265.780200px;}
.y19{bottom:269.310150px;}
.y8e{bottom:269.557350px;}
.y68{bottom:273.300600px;}
.yd8{bottom:277.670850px;}
.y41{bottom:278.078850px;}
.yb3{bottom:283.033200px;}
.y18{bottom:289.682400px;}
.y8d{bottom:289.981350px;}
.y67{bottom:293.603850px;}
.yd7{bottom:297.988350px;}
.y40{bottom:298.899600px;}
.yb2{bottom:300.286200px;}
.y17{bottom:310.054650px;}
.y8c{bottom:310.405350px;}
.y66{bottom:313.907100px;}
.yb1{bottom:317.539200px;}
.yd6{bottom:318.305850px;}
.y3f{bottom:319.720350px;}
.y16{bottom:330.426900px;}
.y8b{bottom:330.829350px;}
.y65{bottom:334.210350px;}
.yb0{bottom:334.792200px;}
.y3e{bottom:340.541100px;}
.yd5{bottom:347.128350px;}
.y15{bottom:350.799150px;}
.y8a{bottom:351.253350px;}
.yaf{bottom:352.045200px;}
.y64{bottom:354.513600px;}
.y3d{bottom:361.361850px;}
.yd4{bottom:367.445850px;}
.yae{bottom:369.298200px;}
.y14{bottom:371.171400px;}
.y89{bottom:371.677350px;}
.y63{bottom:374.816850px;}
.y3c{bottom:382.182600px;}
.yd3{bottom:387.763350px;}
.yad{bottom:389.546700px;}
.y13{bottom:391.543650px;}
.y88{bottom:392.101350px;}
.yf4{bottom:393.415500px;}
.y62{bottom:395.120100px;}
.y3b{bottom:403.003350px;}
.yac{bottom:408.047250px;}
.yd2{bottom:408.080850px;}
.y12{bottom:411.915900px;}
.y87{bottom:412.525350px;}
.yf3{bottom:413.665500px;}
.y61{bottom:415.423350px;}
.y3a{bottom:423.824100px;}
.yab{bottom:425.300250px;}
.yd1{bottom:428.398350px;}
.y11{bottom:432.288150px;}
.y86{bottom:432.949350px;}
.yf2{bottom:433.915500px;}
.y60{bottom:435.726600px;}
.y39{bottom:444.644850px;}
.yaa{bottom:445.548750px;}
.y10{bottom:452.660400px;}
.y85{bottom:453.373350px;}
.yf1{bottom:454.165500px;}
.y5f{bottom:456.029850px;}
.yd0{bottom:457.220850px;}
.y38{bottom:465.465600px;}
.yf{bottom:473.032650px;}
.y84{bottom:473.797350px;}
.y5e{bottom:476.333100px;}
.ycf{bottom:477.538350px;}
.y37{bottom:486.286350px;}
.yf0{bottom:487.165500px;}
.ya9{bottom:489.492000px;}
.y83{bottom:494.221350px;}
.y5d{bottom:496.636350px;}
.yce{bottom:506.360850px;}
.y36{bottom:507.107100px;}
.ya8{bottom:511.244250px;}
.y82{bottom:514.645350px;}
.y5c{bottom:516.939600px;}
.ye{bottom:523.174650px;}
.y35{bottom:527.927850px;}
.yef{bottom:528.596850px;}
.ya7{bottom:532.996500px;}
.y81{bottom:535.069350px;}
.y5b{bottom:537.242850px;}
.yd{bottom:544.294650px;}
.y34{bottom:548.748600px;}
.yee{bottom:548.851350px;}
.ya6{bottom:554.748750px;}
.y80{bottom:555.493350px;}
.y5a{bottom:557.546100px;}
.y33{bottom:569.569350px;}
.y7f{bottom:575.917350px;}
.ya5{bottom:576.501000px;}
.ycd{bottom:577.566900px;}
.yed{bottom:577.610850px;}
.y59{bottom:577.849350px;}
.y32{bottom:590.390100px;}
.yc{bottom:595.196700px;}
.y7e{bottom:596.341350px;}
.yec{bottom:597.865350px;}
.ycc{bottom:597.887400px;}
.y58{bottom:598.152600px;}
.ya4{bottom:598.253250px;}
.y31{bottom:611.210850px;}
.y7d{bottom:616.765350px;}
.yeb{bottom:618.119850px;}
.ycb{bottom:618.207900px;}
.y57{bottom:618.455850px;}
.ya3{bottom:620.005500px;}
.yb{bottom:626.813700px;}
.y30{bottom:632.031600px;}
.y7c{bottom:637.189350px;}
.yca{bottom:638.528400px;}
.y56{bottom:638.759100px;}
.ya2{bottom:641.757750px;}
.yea{bottom:646.879350px;}
.y2f{bottom:652.852350px;}
.y7b{bottom:657.613350px;}
.ya{bottom:658.430700px;}
.yc9{bottom:658.848900px;}
.y55{bottom:659.062350px;}
.ya1{bottom:663.510000px;}
.ye9{bottom:667.133850px;}
.y2e{bottom:673.673100px;}
.y7a{bottom:678.037350px;}
.yc8{bottom:679.169400px;}
.y54{bottom:679.365600px;}
.ya0{bottom:685.237200px;}
.y9{bottom:690.054750px;}
.y2d{bottom:694.493850px;}
.ye8{bottom:695.893350px;}
.y79{bottom:698.461350px;}
.yc7{bottom:699.489900px;}
.y53{bottom:699.668850px;}
.y9f{bottom:706.989450px;}
.y2c{bottom:715.314600px;}
.y78{bottom:718.885350px;}
.yc6{bottom:719.810400px;}
.y52{bottom:719.972100px;}
.ye7{bottom:724.652850px;}
.y9e{bottom:728.741700px;}
.y2b{bottom:736.135350px;}
.y77{bottom:739.309350px;}
.yc5{bottom:740.130900px;}
.y51{bottom:740.275350px;}
.ye6{bottom:744.907350px;}
.y9d{bottom:750.443850px;}
.y8{bottom:751.459800px;}
.y2a{bottom:756.956100px;}
.y76{bottom:759.733350px;}
.yc4{bottom:760.451400px;}
.y50{bottom:760.578600px;}
.y9c{bottom:772.196100px;}
.ye5{bottom:773.666850px;}
.y29{bottom:777.776850px;}
.y75{bottom:780.157350px;}
.yc3{bottom:780.771900px;}
.y4f{bottom:780.881850px;}
.y7{bottom:781.084800px;}
.ye4{bottom:793.921350px;}
.y9b{bottom:793.948350px;}
.y28{bottom:798.597600px;}
.y74{bottom:800.581350px;}
.yc2{bottom:801.092400px;}
.y4e{bottom:801.185100px;}
.y6{bottom:802.204800px;}
.y9a{bottom:815.700600px;}
.y27{bottom:819.418350px;}
.y73{bottom:821.005350px;}
.yc1{bottom:821.412900px;}
.y4d{bottom:821.488350px;}
.ye3{bottom:822.680850px;}
.y5{bottom:823.324800px;}
.y99{bottom:837.452850px;}
.y26{bottom:840.239100px;}
.y72{bottom:841.429350px;}
.yc0{bottom:841.733400px;}
.y4c{bottom:841.791600px;}
.ye2{bottom:842.935350px;}
.y4{bottom:852.949800px;}
.y98{bottom:859.205100px;}
.y25{bottom:861.059850px;}
.y71{bottom:861.853350px;}
.ybf{bottom:862.060350px;}
.y4b{bottom:862.094850px;}
.ye1{bottom:863.189850px;}
.y97{bottom:880.949100px;}
.y24{bottom:881.880600px;}
.y70{bottom:882.277350px;}
.ybe{bottom:882.380850px;}
.y4a{bottom:882.398100px;}
.y3{bottom:882.574800px;}
.ye0{bottom:883.444350px;}
.y23{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y22{bottom:948.189000px;}
.y49{bottom:966.189000px;}
.hc{height:37.983820px;}
.ha{height:44.414062px;}
.he{height:48.530695px;}
.h13{height:49.965820px;}
.h4{height:55.517578px;}
.h3{height:58.293457px;}
.hf{height:60.512695px;}
.h8{height:63.845215px;}
.h10{height:63.878215px;}
.h12{height:63.945415px;}
.h11{height:64.045615px;}
.hb{height:64.480015px;}
.hd{height:67.236328px;}
.h2{height:69.396973px;}
.h14{height:70.598145px;}
.h9{height:77.321777px;}
.h5{height:77.724609px;}
.h7{height:84.585938px;}
.h6{height:99.931641px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x6{left:80.886300px;}
.x8{left:82.507200px;}
.x5{left:83.672550px;}
.x1{left:85.039350px;}
.x7{left:104.078850px;}
.x4{left:105.683550px;}
.x9{left:106.690650px;}
.x3{left:232.218000px;}
.x2{left:233.345250px;}
@media print{
.v2{vertical-align:-10.650667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.654933pt;}
.lsa{letter-spacing:-2.453333pt;}
.ls4{letter-spacing:-1.920000pt;}
.lsc{letter-spacing:-1.901333pt;}
.lsb{letter-spacing:-1.594667pt;}
.ls3{letter-spacing:-0.640000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.000267pt;}
.ls5{letter-spacing:1.706667pt;}
.ls2{letter-spacing:2.133333pt;}
.ls7{letter-spacing:2.866667pt;}
.ls9{letter-spacing:4.733333pt;}
.ls8{letter-spacing:4.853333pt;}
.lsd{letter-spacing:5.200000pt;}
.ls1{letter-spacing:5.333333pt;}
.lsf{letter-spacing:5.600000pt;}
.lse{letter-spacing:6.866667pt;}
.ws11{word-spacing:-25.600000pt;}
.ws0{word-spacing:-25.056000pt;}
.wsf{word-spacing:-23.933333pt;}
.wsb{word-spacing:-23.466667pt;}
.ws6{word-spacing:-21.600000pt;}
.ws8{word-spacing:-17.234667pt;}
.ws7{word-spacing:-15.344000pt;}
.ws9{word-spacing:-15.149333pt;}
.ws12{word-spacing:-13.832000pt;}
.wsd{word-spacing:-13.554667pt;}
.wse{word-spacing:-13.248000pt;}
.wsc{word-spacing:-12.696000pt;}
.ws10{word-spacing:-11.856000pt;}
.wsa{word-spacing:-10.047811pt;}
.ws13{word-spacing:-5.600000pt;}
.ws2{word-spacing:-5.333333pt;}
.ws3{word-spacing:-2.133333pt;}
.ws5{word-spacing:-1.706667pt;}
.ws1{word-spacing:0.000000pt;}
.ws4{word-spacing:0.640000pt;}
._1c{margin-left:-9.359467pt;}
._1d{margin-left:-8.460267pt;}
._e{margin-left:-6.825600pt;}
._17{margin-left:-5.664800pt;}
._8{margin-left:-4.474667pt;}
._a{margin-left:-3.468533pt;}
._4{margin-left:-2.458400pt;}
._1{margin-left:-1.328000pt;}
._2{width:0.997333pt;}
._5{width:2.352000pt;}
._9{width:3.418667pt;}
._6{width:4.698667pt;}
._7{width:5.653333pt;}
._b{width:6.752000pt;}
._c{width:7.733333pt;}
._d{width:8.682667pt;}
._10{width:9.839200pt;}
._14{width:11.590933pt;}
._13{width:12.818667pt;}
._1b{width:14.235733pt;}
._1a{width:20.150400pt;}
._11{width:38.617920pt;}
._19{width:397.429333pt;}
._18{width:401.074667pt;}
._15{width:402.441067pt;}
._f{width:404.622400pt;}
._0{width:514.133333pt;}
._3{width:836.046400pt;}
._12{width:838.379733pt;}
._16{width:841.979733pt;}
._1e{width:843.739733pt;}
.fs9{font-size:27.984000pt;}
.fs8{font-size:35.757333pt;}
.fs7{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fsa{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:56.000000pt;}
.fs5{font-size:61.333333pt;}
.fs1{font-size:66.666667pt;}
.fs3{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y96{bottom:94.369200pt;}
.ybd{bottom:94.477600pt;}
.ydf{bottom:94.482933pt;}
.y6f{bottom:94.485600pt;}
.y21{bottom:94.517467pt;}
.y48{bottom:97.150933pt;}
.ybc{bottom:109.813600pt;}
.yde{bottom:109.818933pt;}
.y6e{bottom:112.484267pt;}
.y95{bottom:112.523867pt;}
.y20{bottom:112.626133pt;}
.ybb{bottom:125.149600pt;}
.ydd{bottom:127.817600pt;}
.y94{bottom:130.678533pt;}
.y1f{bottom:130.734800pt;}
.y6d{bottom:131.597067pt;}
.y47{bottom:136.137200pt;}
.yba{bottom:140.485600pt;}
.y93{bottom:148.833200pt;}
.y1e{bottom:148.843467pt;}
.y46{bottom:154.644533pt;}
.yb9{bottom:158.484267pt;}
.y1d{bottom:166.952133pt;}
.y92{bottom:166.987867pt;}
.ydc{bottom:167.018533pt;}
.y6c{bottom:170.744533pt;}
.y45{bottom:173.151867pt;}
.yb8{bottom:174.905067pt;}
.y1c{bottom:185.060800pt;}
.ydb{bottom:185.078533pt;}
.y91{bottom:185.142533pt;}
.y6b{bottom:188.791867pt;}
.yb7{bottom:190.241067pt;}
.y44{bottom:191.659200pt;}
.y1b{bottom:203.169467pt;}
.y90{bottom:203.297200pt;}
.yb6{bottom:205.577067pt;}
.y6a{bottom:206.839200pt;}
.y43{bottom:210.166533pt;}
.yda{bottom:210.698533pt;}
.yb5{bottom:220.913067pt;}
.y1a{bottom:221.278133pt;}
.y8f{bottom:221.451867pt;}
.y69{bottom:224.886533pt;}
.y42{bottom:228.673867pt;}
.yd9{bottom:228.758533pt;}
.yb4{bottom:236.249067pt;}
.y19{bottom:239.386800pt;}
.y8e{bottom:239.606533pt;}
.y68{bottom:242.933867pt;}
.yd8{bottom:246.818533pt;}
.y41{bottom:247.181200pt;}
.yb3{bottom:251.585067pt;}
.y18{bottom:257.495467pt;}
.y8d{bottom:257.761200pt;}
.y67{bottom:260.981200pt;}
.yd7{bottom:264.878533pt;}
.y40{bottom:265.688533pt;}
.yb2{bottom:266.921067pt;}
.y17{bottom:275.604133pt;}
.y8c{bottom:275.915867pt;}
.y66{bottom:279.028533pt;}
.yb1{bottom:282.257067pt;}
.yd6{bottom:282.938533pt;}
.y3f{bottom:284.195867pt;}
.y16{bottom:293.712800pt;}
.y8b{bottom:294.070533pt;}
.y65{bottom:297.075867pt;}
.yb0{bottom:297.593067pt;}
.y3e{bottom:302.703200pt;}
.yd5{bottom:308.558533pt;}
.y15{bottom:311.821467pt;}
.y8a{bottom:312.225200pt;}
.yaf{bottom:312.929067pt;}
.y64{bottom:315.123200pt;}
.y3d{bottom:321.210533pt;}
.yd4{bottom:326.618533pt;}
.yae{bottom:328.265067pt;}
.y14{bottom:329.930133pt;}
.y89{bottom:330.379867pt;}
.y63{bottom:333.170533pt;}
.y3c{bottom:339.717867pt;}
.yd3{bottom:344.678533pt;}
.yad{bottom:346.263733pt;}
.y13{bottom:348.038800pt;}
.y88{bottom:348.534533pt;}
.yf4{bottom:349.702667pt;}
.y62{bottom:351.217867pt;}
.y3b{bottom:358.225200pt;}
.yac{bottom:362.708667pt;}
.yd2{bottom:362.738533pt;}
.y12{bottom:366.147467pt;}
.y87{bottom:366.689200pt;}
.yf3{bottom:367.702667pt;}
.y61{bottom:369.265200pt;}
.y3a{bottom:376.732533pt;}
.yab{bottom:378.044667pt;}
.yd1{bottom:380.798533pt;}
.y11{bottom:384.256133pt;}
.y86{bottom:384.843867pt;}
.yf2{bottom:385.702667pt;}
.y60{bottom:387.312533pt;}
.y39{bottom:395.239867pt;}
.yaa{bottom:396.043333pt;}
.y10{bottom:402.364800pt;}
.y85{bottom:402.998533pt;}
.yf1{bottom:403.702667pt;}
.y5f{bottom:405.359867pt;}
.yd0{bottom:406.418533pt;}
.y38{bottom:413.747200pt;}
.yf{bottom:420.473467pt;}
.y84{bottom:421.153200pt;}
.y5e{bottom:423.407200pt;}
.ycf{bottom:424.478533pt;}
.y37{bottom:432.254533pt;}
.yf0{bottom:433.036000pt;}
.ya9{bottom:435.104000pt;}
.y83{bottom:439.307867pt;}
.y5d{bottom:441.454533pt;}
.yce{bottom:450.098533pt;}
.y36{bottom:450.761867pt;}
.ya8{bottom:454.439333pt;}
.y82{bottom:457.462533pt;}
.y5c{bottom:459.501867pt;}
.ye{bottom:465.044133pt;}
.y35{bottom:469.269200pt;}
.yef{bottom:469.863867pt;}
.ya7{bottom:473.774667pt;}
.y81{bottom:475.617200pt;}
.y5b{bottom:477.549200pt;}
.yd{bottom:483.817467pt;}
.y34{bottom:487.776533pt;}
.yee{bottom:487.867867pt;}
.ya6{bottom:493.110000pt;}
.y80{bottom:493.771867pt;}
.y5a{bottom:495.596533pt;}
.y33{bottom:506.283867pt;}
.y7f{bottom:511.926533pt;}
.ya5{bottom:512.445333pt;}
.ycd{bottom:513.392800pt;}
.yed{bottom:513.431867pt;}
.y59{bottom:513.643867pt;}
.y32{bottom:524.791200pt;}
.yc{bottom:529.063733pt;}
.y7e{bottom:530.081200pt;}
.yec{bottom:531.435867pt;}
.ycc{bottom:531.455467pt;}
.y58{bottom:531.691200pt;}
.ya4{bottom:531.780667pt;}
.y31{bottom:543.298533pt;}
.y7d{bottom:548.235867pt;}
.yeb{bottom:549.439867pt;}
.ycb{bottom:549.518133pt;}
.y57{bottom:549.738533pt;}
.ya3{bottom:551.116000pt;}
.yb{bottom:557.167733pt;}
.y30{bottom:561.805867pt;}
.y7c{bottom:566.390533pt;}
.yca{bottom:567.580800pt;}
.y56{bottom:567.785867pt;}
.ya2{bottom:570.451333pt;}
.yea{bottom:575.003867pt;}
.y2f{bottom:580.313200pt;}
.y7b{bottom:584.545200pt;}
.ya{bottom:585.271733pt;}
.yc9{bottom:585.643467pt;}
.y55{bottom:585.833200pt;}
.ya1{bottom:589.786667pt;}
.ye9{bottom:593.007867pt;}
.y2e{bottom:598.820533pt;}
.y7a{bottom:602.699867pt;}
.yc8{bottom:603.706133pt;}
.y54{bottom:603.880533pt;}
.ya0{bottom:609.099733pt;}
.y9{bottom:613.382000pt;}
.y2d{bottom:617.327867pt;}
.ye8{bottom:618.571867pt;}
.y79{bottom:620.854533pt;}
.yc7{bottom:621.768800pt;}
.y53{bottom:621.927867pt;}
.y9f{bottom:628.435067pt;}
.y2c{bottom:635.835200pt;}
.y78{bottom:639.009200pt;}
.yc6{bottom:639.831467pt;}
.y52{bottom:639.975200pt;}
.ye7{bottom:644.135867pt;}
.y9e{bottom:647.770400pt;}
.y2b{bottom:654.342533pt;}
.y77{bottom:657.163867pt;}
.yc5{bottom:657.894133pt;}
.y51{bottom:658.022533pt;}
.ye6{bottom:662.139867pt;}
.y9d{bottom:667.061200pt;}
.y8{bottom:667.964267pt;}
.y2a{bottom:672.849867pt;}
.y76{bottom:675.318533pt;}
.yc4{bottom:675.956800pt;}
.y50{bottom:676.069867pt;}
.y9c{bottom:686.396533pt;}
.ye5{bottom:687.703867pt;}
.y29{bottom:691.357200pt;}
.y75{bottom:693.473200pt;}
.yc3{bottom:694.019467pt;}
.y4f{bottom:694.117200pt;}
.y7{bottom:694.297600pt;}
.ye4{bottom:705.707867pt;}
.y9b{bottom:705.731867pt;}
.y28{bottom:709.864533pt;}
.y74{bottom:711.627867pt;}
.yc2{bottom:712.082133pt;}
.y4e{bottom:712.164533pt;}
.y6{bottom:713.070933pt;}
.y9a{bottom:725.067200pt;}
.y27{bottom:728.371867pt;}
.y73{bottom:729.782533pt;}
.yc1{bottom:730.144800pt;}
.y4d{bottom:730.211867pt;}
.ye3{bottom:731.271867pt;}
.y5{bottom:731.844267pt;}
.y99{bottom:744.402533pt;}
.y26{bottom:746.879200pt;}
.y72{bottom:747.937200pt;}
.yc0{bottom:748.207467pt;}
.y4c{bottom:748.259200pt;}
.ye2{bottom:749.275867pt;}
.y4{bottom:758.177600pt;}
.y98{bottom:763.737867pt;}
.y25{bottom:765.386533pt;}
.y71{bottom:766.091867pt;}
.ybf{bottom:766.275867pt;}
.y4b{bottom:766.306533pt;}
.ye1{bottom:767.279867pt;}
.y97{bottom:783.065867pt;}
.y24{bottom:783.893867pt;}
.y70{bottom:784.246533pt;}
.ybe{bottom:784.338533pt;}
.y4a{bottom:784.353867pt;}
.y3{bottom:784.510933pt;}
.ye0{bottom:785.283867pt;}
.y23{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y22{bottom:842.834667pt;}
.y49{bottom:858.834667pt;}
.hc{height:33.763396pt;}
.ha{height:39.479167pt;}
.he{height:43.138396pt;}
.h13{height:44.414062pt;}
.h4{height:49.348958pt;}
.h3{height:51.816406pt;}
.hf{height:53.789062pt;}
.h8{height:56.751302pt;}
.h10{height:56.780635pt;}
.h12{height:56.840369pt;}
.h11{height:56.929435pt;}
.hb{height:57.315569pt;}
.hd{height:59.765625pt;}
.h2{height:61.686198pt;}
.h14{height:62.753906pt;}
.h9{height:68.730469pt;}
.h5{height:69.088542pt;}
.h7{height:75.187500pt;}
.h6{height:88.828125pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x6{left:71.898933pt;}
.x8{left:73.339733pt;}
.x5{left:74.375600pt;}
.x1{left:75.590533pt;}
.x7{left:92.514533pt;}
.x4{left:93.940933pt;}
.x9{left:94.836133pt;}
.x3{left:206.416000pt;}
.x2{left:207.418000pt;}
}




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