
    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_c305a049249ab14addf28229.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.087402;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_b6335573e48e58ca19c00525.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.927246;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_42a6391a43d811262cfbd201.woff2')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_6ebd1bec951945730872a4bf.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.927734;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);}
.v3{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.976000px;}
.v4{vertical-align:21.978000px;}
.v2{vertical-align:25.974000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.009186px;}
.ls4{letter-spacing:0.009445px;}
.ls0{letter-spacing:0.016200px;}
.ls3{letter-spacing:0.207781px;}
.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:-14.520000px;}
.ws0{word-spacing:-13.860000px;}
.ws6{word-spacing:-11.880000px;}
.ws2{word-spacing:-10.004280px;}
.ws5{word-spacing:-8.465160px;}
.ws4{word-spacing:-6.926040px;}
.ws1{word-spacing:0.000000px;}
.ws7{word-spacing:13.785600px;}
._0{margin-left:-9.169200px;}
._16{margin-left:-7.342800px;}
._1{margin-left:-6.155100px;}
._19{margin-left:-5.094468px;}
._3{margin-left:-4.063500px;}
._4{margin-left:-2.457000px;}
._2{margin-left:-1.278900px;}
._8{width:1.095600px;}
._18{width:2.106900px;}
._11{width:3.109500px;}
._5{width:4.680600px;}
._6{width:6.084000px;}
._f{width:7.272000px;}
._c{width:8.335800px;}
._9{width:10.025400px;}
._12{width:11.721600px;}
._a{width:13.457700px;}
._b{width:16.493400px;}
._1e{width:17.584200px;}
._d{width:18.849600px;}
._e{width:20.275200px;}
._15{width:21.294588px;}
._7{width:23.251800px;}
._17{width:24.484500px;}
._1b{width:26.109600px;}
._14{width:27.720000px;}
._1c{width:29.094600px;}
._13{width:30.564600px;}
._10{width:31.792200px;}
._1a{width:34.648500px;}
._1f{width:36.209100px;}
._20{width:40.115868px;}
._1d{width:45.936000px;}
.fc1{color:rgb(19,16,15);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:31.482000px;}
.fs2{font-size:36.729000px;}
.fs8{font-size:38.478000px;}
.fs4{font-size:45.474000px;}
.fs7{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:63.000000px;}
.fs5{font-size:66.000000px;}
.fs3{font-size:78.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:89.291400px;}
.y8a{bottom:123.419400px;}
.y24{bottom:125.754900px;}
.y67{bottom:133.653900px;}
.yc5{bottom:134.136900px;}
.yc0{bottom:135.636900px;}
.y4b{bottom:138.149400px;}
.y89{bottom:139.619400px;}
.y23{bottom:141.954900px;}
.ye5{bottom:145.686900px;}
.y66{bottom:151.653900px;}
.yc4{bottom:152.886900px;}
.ybf{bottom:154.386900px;}
.y88{bottom:155.819400px;}
.y4c{bottom:156.149400px;}
.ye9{bottom:161.886900px;}
.y22{bottom:162.650400px;}
.ye4{bottom:164.736900px;}
.yf8{bottom:168.636900px;}
.yca{bottom:169.653900px;}
.yc3{bottom:171.636900px;}
.ybe{bottom:173.136900px;}
.y65{bottom:174.149400px;}
.y87{bottom:176.514900px;}
.y21{bottom:178.850400px;}
.ye8{bottom:180.636900px;}
.y4a{bottom:182.136900px;}
.ye3{bottom:183.786900px;}
.yf7{bottom:187.386900px;}
.yc9{bottom:187.653900px;}
.y86{bottom:188.219400px;}
.yc7{bottom:188.886900px;}
.y6d{bottom:190.386900px;}
.ybd{bottom:191.886900px;}
.yaf{bottom:197.886900px;}
.ye7{bottom:199.386900px;}
.y49{bottom:200.886900px;}
.ye2{bottom:202.836900px;}
.y112{bottom:203.136900px;}
.y85{bottom:204.419400px;}
.yfe{bottom:205.653900px;}
.yf6{bottom:206.136900px;}
.yc6{bottom:207.636900px;}
.y64{bottom:209.136900px;}
.yc8{bottom:210.149400px;}
.ybc{bottom:210.636900px;}
.y20{bottom:211.152900px;}
.yae{bottom:216.636900px;}
.y104{bottom:218.136900px;}
.y48{bottom:219.636900px;}
.ye1{bottom:221.886900px;}
.y111{bottom:223.386900px;}
.ycd{bottom:223.653900px;}
.yf5{bottom:224.886900px;}
.y84{bottom:225.114900px;}
.ye6{bottom:227.136900px;}
.y63{bottom:227.886900px;}
.ybb{bottom:229.386900px;}
.y1f{bottom:229.902900px;}
.y12f{bottom:232.152900px;}
.yad{bottom:236.886900px;}
.y47{bottom:238.386900px;}
.ye0{bottom:240.936900px;}
.ycc{bottom:241.653900px;}
.y110{bottom:242.136900px;}
.yf4{bottom:243.636900px;}
.y62{bottom:246.636900px;}
.yba{bottom:248.136900px;}
.y1e{bottom:248.652900px;}
.y12e{bottom:250.902900px;}
.yac{bottom:255.336900px;}
.y103{bottom:255.636900px;}
.y46{bottom:257.136900px;}
.yfd{bottom:259.653900px;}
.ydf{bottom:259.986900px;}
.y83{bottom:260.436900px;}
.y10f{bottom:262.386900px;}
.yf3{bottom:263.886900px;}
.ycb{bottom:264.149400px;}
.y61{bottom:265.386900px;}
.yb9{bottom:266.886900px;}
.y1d{bottom:267.402900px;}
.y12d{bottom:271.152900px;}
.yab{bottom:273.786900px;}
.y102{bottom:274.386900px;}
.y45{bottom:275.886900px;}
.y82{bottom:278.886900px;}
.yde{bottom:279.036900px;}
.y10e{bottom:281.136900px;}
.yfc{bottom:282.149400px;}
.yf2{bottom:282.636900px;}
.y60{bottom:284.136900px;}
.yb8{bottom:285.636900px;}
.y1c{bottom:286.152900px;}
.y12c{bottom:289.902900px;}
.yaa{bottom:292.236900px;}
.y101{bottom:293.136900px;}
.y44{bottom:294.636900px;}
.y81{bottom:297.336900px;}
.ydd{bottom:298.086900px;}
.y10d{bottom:299.886900px;}
.yf1{bottom:301.386900px;}
.y5f{bottom:302.886900px;}
.yb7{bottom:304.386900px;}
.y12b{bottom:308.652900px;}
.ya9{bottom:310.686900px;}
.y100{bottom:311.886900px;}
.y43{bottom:313.386900px;}
.y1b{bottom:313.902900px;}
.y80{bottom:315.786900px;}
.ydc{bottom:317.136900px;}
.yf0{bottom:320.136900px;}
.y5e{bottom:321.636900px;}
.yb6{bottom:323.136900px;}
.y12a{bottom:327.402900px;}
.ya8{bottom:329.136900px;}
.y42{bottom:332.136900px;}
.y7f{bottom:334.236900px;}
.ydb{bottom:336.186900px;}
.yef{bottom:338.886900px;}
.yff{bottom:339.636900px;}
.y5d{bottom:340.386900px;}
.yb5{bottom:341.886900px;}
.y129{bottom:346.152900px;}
.ya7{bottom:347.586900px;}
.y41{bottom:350.886900px;}
.y7e{bottom:352.686900px;}
.yda{bottom:355.236900px;}
.yee{bottom:357.636900px;}
.y5c{bottom:359.136900px;}
.y1a{bottom:359.652900px;}
.yb4{bottom:360.636900px;}
.y128{bottom:364.902900px;}
.ya6{bottom:366.036900px;}
.y40{bottom:369.636900px;}
.y7d{bottom:371.136900px;}
.yd9{bottom:374.286900px;}
.yed{bottom:376.386900px;}
.y5b{bottom:377.886900px;}
.y19{bottom:378.402900px;}
.yb3{bottom:379.386900px;}
.y127{bottom:383.652900px;}
.ya5{bottom:384.486900px;}
.y3f{bottom:388.386900px;}
.y7c{bottom:389.586900px;}
.yd8{bottom:393.336900px;}
.yec{bottom:395.136900px;}
.y5a{bottom:396.636900px;}
.yb2{bottom:398.136900px;}
.y126{bottom:402.402900px;}
.ya4{bottom:402.936900px;}
.y18{bottom:406.152900px;}
.y7b{bottom:408.036900px;}
.yd7{bottom:412.386900px;}
.yeb{bottom:413.886900px;}
.y59{bottom:415.386900px;}
.y3e{bottom:416.136900px;}
.yb1{bottom:416.886900px;}
.y125{bottom:421.152900px;}
.ya3{bottom:421.386900px;}
.y17{bottom:424.902900px;}
.y7a{bottom:426.486900px;}
.yd6{bottom:431.436900px;}
.yea{bottom:432.636900px;}
.y58{bottom:434.136900px;}
.yb0{bottom:435.636900px;}
.ya2{bottom:439.836900px;}
.y124{bottom:439.902900px;}
.y16{bottom:443.652900px;}
.y79{bottom:444.936900px;}
.yd5{bottom:450.486900px;}
.y57{bottom:452.886900px;}
.y3d{bottom:454.386900px;}
.ya1{bottom:458.286900px;}
.y123{bottom:458.652900px;}
.y15{bottom:462.402900px;}
.y78{bottom:463.386900px;}
.yd4{bottom:469.536900px;}
.y56{bottom:471.636900px;}
.y3c{bottom:473.136900px;}
.y10c{bottom:474.636900px;}
.ya0{bottom:476.736900px;}
.y122{bottom:477.402900px;}
.y14{bottom:481.152900px;}
.y77{bottom:481.836900px;}
.yd3{bottom:488.586900px;}
.y55{bottom:490.386900px;}
.y3b{bottom:491.886900px;}
.y10b{bottom:494.886900px;}
.y121{bottom:496.152900px;}
.y9f{bottom:496.686900px;}
.y13{bottom:499.902900px;}
.y76{bottom:500.286900px;}
.yd2{bottom:507.636900px;}
.y54{bottom:509.136900px;}
.y3a{bottom:510.636900px;}
.y10a{bottom:513.636900px;}
.y120{bottom:514.902900px;}
.y9e{bottom:515.136900px;}
.y12{bottom:518.652900px;}
.y75{bottom:518.736900px;}
.yd1{bottom:526.686900px;}
.y53{bottom:527.886900px;}
.y39{bottom:529.386900px;}
.y9d{bottom:533.586900px;}
.y11f{bottom:533.652900px;}
.y109{bottom:533.886900px;}
.y74{bottom:537.186900px;}
.y11{bottom:537.402900px;}
.yd0{bottom:545.736900px;}
.y52{bottom:546.636900px;}
.y38{bottom:548.136900px;}
.y9c{bottom:552.036900px;}
.y11e{bottom:552.402900px;}
.y108{bottom:552.636900px;}
.y10{bottom:556.152900px;}
.y73{bottom:557.136900px;}
.ycf{bottom:564.786900px;}
.y51{bottom:565.386900px;}
.y37{bottom:566.886900px;}
.y9b{bottom:570.486900px;}
.y11d{bottom:571.152900px;}
.y107{bottom:572.886900px;}
.yf{bottom:574.902900px;}
.y72{bottom:575.886900px;}
.yce{bottom:583.836900px;}
.y50{bottom:584.136900px;}
.y36{bottom:585.636900px;}
.y9a{bottom:588.936900px;}
.y11c{bottom:589.902900px;}
.y106{bottom:591.636900px;}
.ye{bottom:593.652900px;}
.y71{bottom:594.636900px;}
.y4f{bottom:602.886900px;}
.y35{bottom:604.386900px;}
.y99{bottom:607.386900px;}
.y11b{bottom:608.652900px;}
.y105{bottom:611.886900px;}
.yd{bottom:612.402900px;}
.y70{bottom:613.386900px;}
.y4e{bottom:621.636900px;}
.y34{bottom:623.136900px;}
.y98{bottom:625.836900px;}
.y11a{bottom:627.402900px;}
.yc{bottom:631.152900px;}
.y6f{bottom:632.136900px;}
.y4d{bottom:640.386900px;}
.y33{bottom:641.886900px;}
.y97{bottom:644.286900px;}
.y119{bottom:646.152900px;}
.yb{bottom:649.902900px;}
.y6c{bottom:659.136900px;}
.y6e{bottom:659.886900px;}
.y32{bottom:660.636900px;}
.y96{bottom:662.736900px;}
.y118{bottom:664.902900px;}
.ya{bottom:668.652900px;}
.y6b{bottom:677.886900px;}
.y31{bottom:679.386900px;}
.y95{bottom:681.186900px;}
.y117{bottom:683.652900px;}
.y6a{bottom:696.636900px;}
.y30{bottom:698.136900px;}
.y94{bottom:699.636900px;}
.y116{bottom:702.402900px;}
.y69{bottom:715.386900px;}
.y2f{bottom:716.886900px;}
.y93{bottom:718.086900px;}
.y115{bottom:721.152900px;}
.y9{bottom:732.402900px;}
.y68{bottom:734.136900px;}
.y2e{bottom:735.636900px;}
.y92{bottom:738.036900px;}
.y114{bottom:748.902900px;}
.yc2{bottom:752.886900px;}
.y2d{bottom:754.386900px;}
.y91{bottom:756.486900px;}
.yc1{bottom:771.636900px;}
.y2c{bottom:773.136900px;}
.y90{bottom:774.936900px;}
.y113{bottom:781.152900px;}
.yfb{bottom:790.386900px;}
.y2b{bottom:791.886900px;}
.y8f{bottom:793.386900px;}
.yfa{bottom:809.136900px;}
.y2a{bottom:810.636900px;}
.y8e{bottom:811.836900px;}
.yf9{bottom:827.886900px;}
.y29{bottom:829.386900px;}
.y8{bottom:829.902900px;}
.y8d{bottom:830.286900px;}
.y4{bottom:843.333900px;}
.y28{bottom:848.136900px;}
.y7{bottom:848.652900px;}
.y8c{bottom:848.736900px;}
.y27{bottom:866.886900px;}
.y8b{bottom:867.186900px;}
.y6{bottom:867.402900px;}
.y3{bottom:871.538400px;}
.y26{bottom:885.636900px;}
.y5{bottom:886.152900px;}
.y2{bottom:887.738400px;}
.y25{bottom:922.796400px;}
.ha{height:28.951594px;}
.h3{height:38.285156px;}
.hc{height:41.718750px;}
.h5{height:44.666016px;}
.hd{height:45.619629px;}
.h8{height:46.792969px;}
.hb{height:46.933594px;}
.h4{height:47.572244px;}
.h7{height:47.791992px;}
.h2{height:54.755859px;}
.h9{height:57.363281px;}
.h6{height:58.902683px;}
.h0{height:1020.473400px;}
.h1{height:1020.750000px;}
.w1{width:714.000000px;}
.w0{width:714.330600px;}
.x0{left:0.000000px;}
.x5{left:91.416600px;}
.x9{left:108.425100px;}
.x8{left:133.937100px;}
.x7{left:142.440600px;}
.x6{left:198.417600px;}
.xb{left:236.787600px;}
.xc{left:322.938600px;}
.x4{left:443.360100px;}
.xa{left:490.790100px;}
.x3{left:552.690600px;}
.x2{left:559.823100px;}
.x1{left:605.471100px;}
@media print{
.v3{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.645333pt;}
.v4{vertical-align:19.536000pt;}
.v2{vertical-align:23.088000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.008165pt;}
.ls4{letter-spacing:0.008395pt;}
.ls0{letter-spacing:0.014400pt;}
.ls3{letter-spacing:0.184694pt;}
.ws3{word-spacing:-12.906667pt;}
.ws0{word-spacing:-12.320000pt;}
.ws6{word-spacing:-10.560000pt;}
.ws2{word-spacing:-8.892693pt;}
.ws5{word-spacing:-7.524587pt;}
.ws4{word-spacing:-6.156480pt;}
.ws1{word-spacing:0.000000pt;}
.ws7{word-spacing:12.253867pt;}
._0{margin-left:-8.150400pt;}
._16{margin-left:-6.526933pt;}
._1{margin-left:-5.471200pt;}
._19{margin-left:-4.528416pt;}
._3{margin-left:-3.612000pt;}
._4{margin-left:-2.184000pt;}
._2{margin-left:-1.136800pt;}
._8{width:0.973867pt;}
._18{width:1.872800pt;}
._11{width:2.764000pt;}
._5{width:4.160533pt;}
._6{width:5.408000pt;}
._f{width:6.464000pt;}
._c{width:7.409600pt;}
._9{width:8.911467pt;}
._12{width:10.419200pt;}
._a{width:11.962400pt;}
._b{width:14.660800pt;}
._1e{width:15.630400pt;}
._d{width:16.755200pt;}
._e{width:18.022400pt;}
._15{width:18.928523pt;}
._7{width:20.668267pt;}
._17{width:21.764000pt;}
._1b{width:23.208533pt;}
._14{width:24.640000pt;}
._1c{width:25.861867pt;}
._13{width:27.168533pt;}
._10{width:28.259733pt;}
._1a{width:30.798667pt;}
._1f{width:32.185867pt;}
._20{width:35.658549pt;}
._1d{width:40.832000pt;}
.fs6{font-size:27.984000pt;}
.fs2{font-size:32.648000pt;}
.fs8{font-size:34.202667pt;}
.fs4{font-size:40.421333pt;}
.fs7{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:56.000000pt;}
.fs5{font-size:58.666667pt;}
.fs3{font-size:69.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:79.370133pt;}
.y8a{bottom:109.706133pt;}
.y24{bottom:111.782133pt;}
.y67{bottom:118.803467pt;}
.yc5{bottom:119.232800pt;}
.yc0{bottom:120.566133pt;}
.y4b{bottom:122.799467pt;}
.y89{bottom:124.106133pt;}
.y23{bottom:126.182133pt;}
.ye5{bottom:129.499467pt;}
.y66{bottom:134.803467pt;}
.yc4{bottom:135.899467pt;}
.ybf{bottom:137.232800pt;}
.y88{bottom:138.506133pt;}
.y4c{bottom:138.799467pt;}
.ye9{bottom:143.899467pt;}
.y22{bottom:144.578133pt;}
.ye4{bottom:146.432800pt;}
.yf8{bottom:149.899467pt;}
.yca{bottom:150.803467pt;}
.yc3{bottom:152.566133pt;}
.ybe{bottom:153.899467pt;}
.y65{bottom:154.799467pt;}
.y87{bottom:156.902133pt;}
.y21{bottom:158.978133pt;}
.ye8{bottom:160.566133pt;}
.y4a{bottom:161.899467pt;}
.ye3{bottom:163.366133pt;}
.yf7{bottom:166.566133pt;}
.yc9{bottom:166.803467pt;}
.y86{bottom:167.306133pt;}
.yc7{bottom:167.899467pt;}
.y6d{bottom:169.232800pt;}
.ybd{bottom:170.566133pt;}
.yaf{bottom:175.899467pt;}
.ye7{bottom:177.232800pt;}
.y49{bottom:178.566133pt;}
.ye2{bottom:180.299467pt;}
.y112{bottom:180.566133pt;}
.y85{bottom:181.706133pt;}
.yfe{bottom:182.803467pt;}
.yf6{bottom:183.232800pt;}
.yc6{bottom:184.566133pt;}
.y64{bottom:185.899467pt;}
.yc8{bottom:186.799467pt;}
.ybc{bottom:187.232800pt;}
.y20{bottom:187.691467pt;}
.yae{bottom:192.566133pt;}
.y104{bottom:193.899467pt;}
.y48{bottom:195.232800pt;}
.ye1{bottom:197.232800pt;}
.y111{bottom:198.566133pt;}
.ycd{bottom:198.803467pt;}
.yf5{bottom:199.899467pt;}
.y84{bottom:200.102133pt;}
.ye6{bottom:201.899467pt;}
.y63{bottom:202.566133pt;}
.ybb{bottom:203.899467pt;}
.y1f{bottom:204.358133pt;}
.y12f{bottom:206.358133pt;}
.yad{bottom:210.566133pt;}
.y47{bottom:211.899467pt;}
.ye0{bottom:214.166133pt;}
.ycc{bottom:214.803467pt;}
.y110{bottom:215.232800pt;}
.yf4{bottom:216.566133pt;}
.y62{bottom:219.232800pt;}
.yba{bottom:220.566133pt;}
.y1e{bottom:221.024800pt;}
.y12e{bottom:223.024800pt;}
.yac{bottom:226.966133pt;}
.y103{bottom:227.232800pt;}
.y46{bottom:228.566133pt;}
.yfd{bottom:230.803467pt;}
.ydf{bottom:231.099467pt;}
.y83{bottom:231.499467pt;}
.y10f{bottom:233.232800pt;}
.yf3{bottom:234.566133pt;}
.ycb{bottom:234.799467pt;}
.y61{bottom:235.899467pt;}
.yb9{bottom:237.232800pt;}
.y1d{bottom:237.691467pt;}
.y12d{bottom:241.024800pt;}
.yab{bottom:243.366133pt;}
.y102{bottom:243.899467pt;}
.y45{bottom:245.232800pt;}
.y82{bottom:247.899467pt;}
.yde{bottom:248.032800pt;}
.y10e{bottom:249.899467pt;}
.yfc{bottom:250.799467pt;}
.yf2{bottom:251.232800pt;}
.y60{bottom:252.566133pt;}
.yb8{bottom:253.899467pt;}
.y1c{bottom:254.358133pt;}
.y12c{bottom:257.691467pt;}
.yaa{bottom:259.766133pt;}
.y101{bottom:260.566133pt;}
.y44{bottom:261.899467pt;}
.y81{bottom:264.299467pt;}
.ydd{bottom:264.966133pt;}
.y10d{bottom:266.566133pt;}
.yf1{bottom:267.899467pt;}
.y5f{bottom:269.232800pt;}
.yb7{bottom:270.566133pt;}
.y12b{bottom:274.358133pt;}
.ya9{bottom:276.166133pt;}
.y100{bottom:277.232800pt;}
.y43{bottom:278.566133pt;}
.y1b{bottom:279.024800pt;}
.y80{bottom:280.699467pt;}
.ydc{bottom:281.899467pt;}
.yf0{bottom:284.566133pt;}
.y5e{bottom:285.899467pt;}
.yb6{bottom:287.232800pt;}
.y12a{bottom:291.024800pt;}
.ya8{bottom:292.566133pt;}
.y42{bottom:295.232800pt;}
.y7f{bottom:297.099467pt;}
.ydb{bottom:298.832800pt;}
.yef{bottom:301.232800pt;}
.yff{bottom:301.899467pt;}
.y5d{bottom:302.566133pt;}
.yb5{bottom:303.899467pt;}
.y129{bottom:307.691467pt;}
.ya7{bottom:308.966133pt;}
.y41{bottom:311.899467pt;}
.y7e{bottom:313.499467pt;}
.yda{bottom:315.766133pt;}
.yee{bottom:317.899467pt;}
.y5c{bottom:319.232800pt;}
.y1a{bottom:319.691467pt;}
.yb4{bottom:320.566133pt;}
.y128{bottom:324.358133pt;}
.ya6{bottom:325.366133pt;}
.y40{bottom:328.566133pt;}
.y7d{bottom:329.899467pt;}
.yd9{bottom:332.699467pt;}
.yed{bottom:334.566133pt;}
.y5b{bottom:335.899467pt;}
.y19{bottom:336.358133pt;}
.yb3{bottom:337.232800pt;}
.y127{bottom:341.024800pt;}
.ya5{bottom:341.766133pt;}
.y3f{bottom:345.232800pt;}
.y7c{bottom:346.299467pt;}
.yd8{bottom:349.632800pt;}
.yec{bottom:351.232800pt;}
.y5a{bottom:352.566133pt;}
.yb2{bottom:353.899467pt;}
.y126{bottom:357.691467pt;}
.ya4{bottom:358.166133pt;}
.y18{bottom:361.024800pt;}
.y7b{bottom:362.699467pt;}
.yd7{bottom:366.566133pt;}
.yeb{bottom:367.899467pt;}
.y59{bottom:369.232800pt;}
.y3e{bottom:369.899467pt;}
.yb1{bottom:370.566133pt;}
.y125{bottom:374.358133pt;}
.ya3{bottom:374.566133pt;}
.y17{bottom:377.691467pt;}
.y7a{bottom:379.099467pt;}
.yd6{bottom:383.499467pt;}
.yea{bottom:384.566133pt;}
.y58{bottom:385.899467pt;}
.yb0{bottom:387.232800pt;}
.ya2{bottom:390.966133pt;}
.y124{bottom:391.024800pt;}
.y16{bottom:394.358133pt;}
.y79{bottom:395.499467pt;}
.yd5{bottom:400.432800pt;}
.y57{bottom:402.566133pt;}
.y3d{bottom:403.899467pt;}
.ya1{bottom:407.366133pt;}
.y123{bottom:407.691467pt;}
.y15{bottom:411.024800pt;}
.y78{bottom:411.899467pt;}
.yd4{bottom:417.366133pt;}
.y56{bottom:419.232800pt;}
.y3c{bottom:420.566133pt;}
.y10c{bottom:421.899467pt;}
.ya0{bottom:423.766133pt;}
.y122{bottom:424.358133pt;}
.y14{bottom:427.691467pt;}
.y77{bottom:428.299467pt;}
.yd3{bottom:434.299467pt;}
.y55{bottom:435.899467pt;}
.y3b{bottom:437.232800pt;}
.y10b{bottom:439.899467pt;}
.y121{bottom:441.024800pt;}
.y9f{bottom:441.499467pt;}
.y13{bottom:444.358133pt;}
.y76{bottom:444.699467pt;}
.yd2{bottom:451.232800pt;}
.y54{bottom:452.566133pt;}
.y3a{bottom:453.899467pt;}
.y10a{bottom:456.566133pt;}
.y120{bottom:457.691467pt;}
.y9e{bottom:457.899467pt;}
.y12{bottom:461.024800pt;}
.y75{bottom:461.099467pt;}
.yd1{bottom:468.166133pt;}
.y53{bottom:469.232800pt;}
.y39{bottom:470.566133pt;}
.y9d{bottom:474.299467pt;}
.y11f{bottom:474.358133pt;}
.y109{bottom:474.566133pt;}
.y74{bottom:477.499467pt;}
.y11{bottom:477.691467pt;}
.yd0{bottom:485.099467pt;}
.y52{bottom:485.899467pt;}
.y38{bottom:487.232800pt;}
.y9c{bottom:490.699467pt;}
.y11e{bottom:491.024800pt;}
.y108{bottom:491.232800pt;}
.y10{bottom:494.358133pt;}
.y73{bottom:495.232800pt;}
.ycf{bottom:502.032800pt;}
.y51{bottom:502.566133pt;}
.y37{bottom:503.899467pt;}
.y9b{bottom:507.099467pt;}
.y11d{bottom:507.691467pt;}
.y107{bottom:509.232800pt;}
.yf{bottom:511.024800pt;}
.y72{bottom:511.899467pt;}
.yce{bottom:518.966133pt;}
.y50{bottom:519.232800pt;}
.y36{bottom:520.566133pt;}
.y9a{bottom:523.499467pt;}
.y11c{bottom:524.358133pt;}
.y106{bottom:525.899467pt;}
.ye{bottom:527.691467pt;}
.y71{bottom:528.566133pt;}
.y4f{bottom:535.899467pt;}
.y35{bottom:537.232800pt;}
.y99{bottom:539.899467pt;}
.y11b{bottom:541.024800pt;}
.y105{bottom:543.899467pt;}
.yd{bottom:544.358133pt;}
.y70{bottom:545.232800pt;}
.y4e{bottom:552.566133pt;}
.y34{bottom:553.899467pt;}
.y98{bottom:556.299467pt;}
.y11a{bottom:557.691467pt;}
.yc{bottom:561.024800pt;}
.y6f{bottom:561.899467pt;}
.y4d{bottom:569.232800pt;}
.y33{bottom:570.566133pt;}
.y97{bottom:572.699467pt;}
.y119{bottom:574.358133pt;}
.yb{bottom:577.691467pt;}
.y6c{bottom:585.899467pt;}
.y6e{bottom:586.566133pt;}
.y32{bottom:587.232800pt;}
.y96{bottom:589.099467pt;}
.y118{bottom:591.024800pt;}
.ya{bottom:594.358133pt;}
.y6b{bottom:602.566133pt;}
.y31{bottom:603.899467pt;}
.y95{bottom:605.499467pt;}
.y117{bottom:607.691467pt;}
.y6a{bottom:619.232800pt;}
.y30{bottom:620.566133pt;}
.y94{bottom:621.899467pt;}
.y116{bottom:624.358133pt;}
.y69{bottom:635.899467pt;}
.y2f{bottom:637.232800pt;}
.y93{bottom:638.299467pt;}
.y115{bottom:641.024800pt;}
.y9{bottom:651.024800pt;}
.y68{bottom:652.566133pt;}
.y2e{bottom:653.899467pt;}
.y92{bottom:656.032800pt;}
.y114{bottom:665.691467pt;}
.yc2{bottom:669.232800pt;}
.y2d{bottom:670.566133pt;}
.y91{bottom:672.432800pt;}
.yc1{bottom:685.899467pt;}
.y2c{bottom:687.232800pt;}
.y90{bottom:688.832800pt;}
.y113{bottom:694.358133pt;}
.yfb{bottom:702.566133pt;}
.y2b{bottom:703.899467pt;}
.y8f{bottom:705.232800pt;}
.yfa{bottom:719.232800pt;}
.y2a{bottom:720.566133pt;}
.y8e{bottom:721.632800pt;}
.yf9{bottom:735.899467pt;}
.y29{bottom:737.232800pt;}
.y8{bottom:737.691467pt;}
.y8d{bottom:738.032800pt;}
.y4{bottom:749.630133pt;}
.y28{bottom:753.899467pt;}
.y7{bottom:754.358133pt;}
.y8c{bottom:754.432800pt;}
.y27{bottom:770.566133pt;}
.y8b{bottom:770.832800pt;}
.y6{bottom:771.024800pt;}
.y3{bottom:774.700800pt;}
.y26{bottom:787.232800pt;}
.y5{bottom:787.691467pt;}
.y2{bottom:789.100800pt;}
.y25{bottom:820.263467pt;}
.ha{height:25.734750pt;}
.h3{height:34.031250pt;}
.hc{height:37.083333pt;}
.h5{height:39.703125pt;}
.hd{height:40.550781pt;}
.h8{height:41.593750pt;}
.hb{height:41.718750pt;}
.h4{height:42.286439pt;}
.h7{height:42.481771pt;}
.h2{height:48.671875pt;}
.h9{height:50.989583pt;}
.h6{height:52.357940pt;}
.h0{height:907.087467pt;}
.h1{height:907.333333pt;}
.w1{width:634.666667pt;}
.w0{width:634.960533pt;}
.x0{left:0.000000pt;}
.x5{left:81.259200pt;}
.x9{left:96.377867pt;}
.x8{left:119.055200pt;}
.x7{left:126.613867pt;}
.x6{left:176.371200pt;}
.xb{left:210.477867pt;}
.xc{left:287.056533pt;}
.x4{left:394.097867pt;}
.xa{left:436.257867pt;}
.x3{left:491.280533pt;}
.x2{left:497.620533pt;}
.x1{left:538.196533pt;}
}




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