
    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_eaa3d804056fe02cf3211c0e.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_e1310158c40a30e5450ac541.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.119629;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_cf6b5960ad667d299c65fed7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.096680;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_b0b399f8d5dbe9de7ef0e5fa.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_8212d079880ccf1d944a23d2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.104492;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_bab1b3b4db39f23cd1fdbbee.woff2')format("woff");}.ff6{font-family:ff6;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.008227px;}
.ls2{letter-spacing:0.358880px;}
.ls3{letter-spacing:0.376462px;}
.ls0{letter-spacing:0.424662px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-59.762250px;}
.ws6{word-spacing:-23.335351px;}
.ws3{word-spacing:-18.349228px;}
.ws0{word-spacing:-16.554143px;}
.ws1{word-spacing:-15.840595px;}
.ws2{word-spacing:-14.958623px;}
.ws5{word-spacing:-10.770171px;}
.ws4{word-spacing:0.000000px;}
._c{margin-left:-7.364516px;}
._b{margin-left:-4.783071px;}
._5{margin-left:-3.625819px;}
._4{margin-left:-2.389104px;}
._3{margin-left:-1.126271px;}
._0{width:1.304731px;}
._2{width:2.373088px;}
._1{width:3.563303px;}
._6{width:4.610798px;}
._9{width:5.806043px;}
._a{width:6.883164px;}
._7{width:8.195599px;}
._8{width:9.464846px;}
._f{width:10.502515px;}
._e{width:11.961554px;}
._d{width:12.968408px;}
.fc4{color:rgb(112,159,219);}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(36,64,97);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.881485px;}
.fs1{font-size:54.002250px;}
.fs0{font-size:59.762250px;}
.fs5{font-size:66.242700px;}
.fs3{font-size:72.002705px;}
.fs4{font-size:84.243145px;}
.fs2{font-size:156.245841px;}
.y0{bottom:0.000000px;}
.y8{bottom:1.980010px;}
.y3b{bottom:3.240006px;}
.yb{bottom:24.120072px;}
.ya{bottom:66.960022px;}
.ya3{bottom:112.860077px;}
.y75{bottom:117.900055px;}
.yff{bottom:118.980079px;}
.y36{bottom:119.700096px;}
.y5b{bottom:120.780052px;}
.yd1{bottom:126.360077px;}
.y117{bottom:129.420043px;}
.ya2{bottom:130.860077px;}
.y74{bottom:135.900055px;}
.yfe{bottom:136.980079px;}
.y35{bottom:137.700096px;}
.y5a{bottom:138.780052px;}
.y116{bottom:147.420043px;}
.ya1{bottom:148.860077px;}
.yd0{bottom:153.360077px;}
.y73{bottom:153.900055px;}
.yfd{bottom:154.980079px;}
.y59{bottom:156.780052px;}
.y34{bottom:164.700096px;}
.y115{bottom:165.420043px;}
.ycf{bottom:171.360077px;}
.y72{bottom:171.900055px;}
.yfc{bottom:172.980079px;}
.ya0{bottom:176.400055px;}
.y33{bottom:182.700096px;}
.y114{bottom:183.420043px;}
.y58{bottom:183.780052px;}
.y71{bottom:189.900055px;}
.yce{bottom:198.360077px;}
.yfb{bottom:199.980079px;}
.y32{bottom:200.700096px;}
.y113{bottom:201.420043px;}
.y57{bottom:201.780052px;}
.y70{bottom:207.900055px;}
.y9f{bottom:214.740074px;}
.yfa{bottom:217.980079px;}
.y31{bottom:218.700096px;}
.y112{bottom:219.420043px;}
.y56{bottom:219.780052px;}
.ycd{bottom:225.360077px;}
.y6f{bottom:225.900055px;}
.y144{bottom:228.060036px;}
.yf9{bottom:235.980079px;}
.y30{bottom:236.700096px;}
.y111{bottom:237.420043px;}
.y55{bottom:237.780052px;}
.y143{bottom:250.560036px;}
.ycc{bottom:252.360077px;}
.y6e{bottom:252.900055px;}
.yf8{bottom:253.980079px;}
.y2f{bottom:254.700096px;}
.y9e{bottom:255.420043px;}
.y54{bottom:264.780052px;}
.y142{bottom:267.120072px;}
.y6d{bottom:270.900055px;}
.yf7{bottom:271.980079px;}
.y2e{bottom:272.700096px;}
.ycb{bottom:279.360077px;}
.y9d{bottom:282.420043px;}
.y53{bottom:282.780052px;}
.y141{bottom:289.620072px;}
.yf6{bottom:289.980079px;}
.y2d{bottom:290.700096px;}
.y6c{bottom:293.400055px;}
.yca{bottom:297.360077px;}
.y9c{bottom:300.420043px;}
.y52{bottom:300.780052px;}
.y2c{bottom:308.700096px;}
.y140{bottom:312.120072px;}
.yc9{bottom:315.360077px;}
.y6b{bottom:315.900055px;}
.yf5{bottom:316.980079px;}
.y9b{bottom:318.420043px;}
.y51{bottom:318.780052px;}
.y2b{bottom:326.700096px;}
.y13f{bottom:328.500068px;}
.yc8{bottom:333.360077px;}
.y6a{bottom:333.900055px;}
.y110{bottom:336.420043px;}
.yf4{bottom:343.980079px;}
.y2a{bottom:344.700096px;}
.y9a{bottom:345.420043px;}
.y50{bottom:345.780052px;}
.y13e{bottom:351.000068px;}
.yc7{bottom:351.360077px;}
.y69{bottom:351.900055px;}
.y10f{bottom:354.420043px;}
.yf3{bottom:361.980079px;}
.y99{bottom:363.420043px;}
.y4f{bottom:363.780052px;}
.y10e{bottom:372.420043px;}
.y29{bottom:372.960091px;}
.y13d{bottom:373.500068px;}
.yc6{bottom:378.360077px;}
.y68{bottom:379.440033px;}
.y98{bottom:381.420043px;}
.y4e{bottom:381.780052px;}
.yf2{bottom:388.980079px;}
.y10d{bottom:390.420043px;}
.y13c{bottom:396.000068px;}
.yc5{bottom:396.360077px;}
.y4d{bottom:399.780052px;}
.yf1{bottom:406.980079px;}
.y97{bottom:408.420043px;}
.y28{bottom:413.640060px;}
.yc4{bottom:414.360077px;}
.y67{bottom:416.520058px;}
.y13b{bottom:418.500068px;}
.y96{bottom:426.420043px;}
.y4c{bottom:426.780052px;}
.yc3{bottom:432.360077px;}
.yf0{bottom:433.980079px;}
.y66{bottom:434.520058px;}
.y13a{bottom:435.060036px;}
.y27{bottom:440.280052px;}
.y95{bottom:444.420043px;}
.y4b{bottom:444.780052px;}
.yef{bottom:451.980079px;}
.y65{bottom:452.520058px;}
.y139{bottom:457.560036px;}
.yc2{bottom:459.360077px;}
.y94{bottom:462.420043px;}
.y26{bottom:462.780052px;}
.yee{bottom:469.980079px;}
.y64{bottom:470.520058px;}
.y10c{bottom:471.420043px;}
.y138{bottom:474.120072px;}
.yc1{bottom:477.360077px;}
.y93{bottom:480.420043px;}
.y25{bottom:485.280052px;}
.yed{bottom:487.980079px;}
.y10b{bottom:489.420043px;}
.y4a{bottom:489.780052px;}
.yc0{bottom:495.360077px;}
.y137{bottom:496.620072px;}
.y63{bottom:497.520058px;}
.y92{bottom:498.420043px;}
.yec{bottom:505.980079px;}
.y10a{bottom:507.420043px;}
.y24{bottom:507.780052px;}
.y136{bottom:513.000068px;}
.y62{bottom:515.520058px;}
.y91{bottom:516.420043px;}
.ybf{bottom:522.360077px;}
.y23{bottom:524.340088px;}
.y109{bottom:525.420043px;}
.y49{bottom:525.780052px;}
.yeb{bottom:532.980079px;}
.y61{bottom:533.520058px;}
.yd2{bottom:535.140060px;}
.y135{bottom:535.500068px;}
.ybe{bottom:540.360077px;}
.y22{bottom:540.720085px;}
.y90{bottom:543.420043px;}
.y48{bottom:543.780052px;}
.yea{bottom:550.980079px;}
.y60{bottom:551.520058px;}
.y134{bottom:552.060036px;}
.y108{bottom:552.420043px;}
.y21{bottom:557.280052px;}
.ybd{bottom:558.360077px;}
.y8f{bottom:561.420043px;}
.y47{bottom:561.780052px;}
.ye9{bottom:568.980079px;}
.y107{bottom:570.420043px;}
.y20{bottom:573.840088px;}
.y133{bottom:574.560036px;}
.ybc{bottom:576.360077px;}
.y5f{bottom:578.160049px;}
.y8e{bottom:579.420043px;}
.y46{bottom:579.780052px;}
.ye8{bottom:586.980079px;}
.y106{bottom:588.420043px;}
.y1f{bottom:590.220085px;}
.ybb{bottom:594.360077px;}
.y5e{bottom:595.260064px;}
.y132{bottom:597.060036px;}
.y8d{bottom:597.420043px;}
.y45{bottom:597.780052px;}
.y105{bottom:606.420043px;}
.y1e{bottom:606.780052px;}
.y5d{bottom:612.540047px;}
.y131{bottom:613.620072px;}
.ye7{bottom:613.980079px;}
.y44{bottom:615.780052px;}
.yba{bottom:621.360077px;}
.y1d{bottom:623.340088px;}
.y8c{bottom:624.420043px;}
.ye6{bottom:631.980079px;}
.y43{bottom:633.780052px;}
.y5c{bottom:635.580093px;}
.y130{bottom:636.120072px;}
.yb9{bottom:639.360077px;}
.y104{bottom:642.060036px;}
.y8b{bottom:642.420043px;}
.y1c{bottom:645.840088px;}
.ye5{bottom:649.980079px;}
.y12f{bottom:652.500068px;}
.yb8{bottom:657.360077px;}
.y103{bottom:659.340088px;}
.y8a{bottom:660.420043px;}
.y42{bottom:660.780052px;}
.ye4{bottom:667.980079px;}
.y1b{bottom:668.340088px;}
.y12e{bottom:675.000068px;}
.yb7{bottom:675.360077px;}
.y102{bottom:676.620072px;}
.y89{bottom:678.420043px;}
.y41{bottom:678.780052px;}
.y1a{bottom:684.720085px;}
.ye3{bottom:685.980079px;}
.y12d{bottom:691.560070px;}
.yb6{bottom:693.360077px;}
.y101{bottom:693.720051px;}
.y88{bottom:696.420078px;}
.y40{bottom:696.780052px;}
.y19{bottom:701.280052px;}
.ye2{bottom:703.980079px;}
.y12c{bottom:714.060070px;}
.y3f{bottom:714.780052px;}
.y100{bottom:716.760064px;}
.y18{bottom:717.840054px;}
.yb5{bottom:720.360077px;}
.ye1{bottom:721.980079px;}
.y87{bottom:723.420078px;}
.y12b{bottom:730.620072px;}
.y3e{bottom:732.780052px;}
.y17{bottom:734.220051px;}
.yb4{bottom:738.360077px;}
.ye0{bottom:739.980079px;}
.y86{bottom:741.420078px;}
.y16{bottom:750.780052px;}
.y12a{bottom:753.120072px;}
.yb3{bottom:756.360077px;}
.ydf{bottom:757.980079px;}
.y85{bottom:759.420078px;}
.y3d{bottom:760.140060px;}
.y15{bottom:767.340054px;}
.y129{bottom:769.500068px;}
.yb2{bottom:774.360077px;}
.yde{bottom:775.980079px;}
.y84{bottom:777.420078px;}
.y14{bottom:783.720051px;}
.y128{bottom:792.000068px;}
.ydd{bottom:793.980079px;}
.y83{bottom:795.420078px;}
.y3c{bottom:798.660049px;}
.y13{bottom:800.280052px;}
.yb1{bottom:801.360077px;}
.y82{bottom:813.420078px;}
.y127{bottom:814.500068px;}
.yb0{bottom:819.360077px;}
.ydc{bottom:820.980079px;}
.y12{bottom:822.780052px;}
.y126{bottom:831.060070px;}
.y3a{bottom:835.740074px;}
.ydb{bottom:838.980079px;}
.y81{bottom:840.780052px;}
.y11{bottom:845.820065px;}
.yaf{bottom:846.360077px;}
.y125{bottom:853.560070px;}
.yae{bottom:864.360077px;}
.y10{bottom:865.620072px;}
.yda{bottom:866.160049px;}
.y124{bottom:876.060070px;}
.y80{bottom:877.860077px;}
.yad{bottom:882.360077px;}
.yd9{bottom:885.780052px;}
.yf{bottom:889.560070px;}
.y7f{bottom:895.860077px;}
.y123{bottom:898.920078px;}
.yac{bottom:900.360077px;}
.ye{bottom:913.320065px;}
.y7e{bottom:913.860077px;}
.yab{bottom:918.360077px;}
.yd8{bottom:922.860077px;}
.y122{bottom:925.920078px;}
.y7d{bottom:931.860077px;}
.yaa{bottom:936.360077px;}
.yd7{bottom:940.860077px;}
.y121{bottom:943.920078px;}
.y7c{bottom:949.860077px;}
.ya9{bottom:954.360077px;}
.yd6{bottom:958.860077px;}
.y120{bottom:961.920078px;}
.y7b{bottom:967.860077px;}
.ya8{bottom:972.360077px;}
.yd{bottom:974.880066px;}
.yd5{bottom:976.860060px;}
.y11f{bottom:979.920061px;}
.ya7{bottom:990.360060px;}
.y7a{bottom:994.860060px;}
.y11e{bottom:997.920061px;}
.ya6{bottom:1008.360060px;}
.y79{bottom:1012.860060px;}
.y11d{bottom:1015.920061px;}
.yc{bottom:1017.000068px;}
.ya5{bottom:1026.360060px;}
.y78{bottom:1030.860060px;}
.y11c{bottom:1033.920061px;}
.yd4{bottom:1039.860060px;}
.ya4{bottom:1040.760064px;}
.y77{bottom:1048.860060px;}
.y11b{bottom:1051.920061px;}
.y76{bottom:1066.860060px;}
.y11a{bottom:1069.920061px;}
.y39{bottom:1084.860060px;}
.y119{bottom:1087.920061px;}
.yd3{bottom:1093.860060px;}
.y9{bottom:1098.720068px;}
.y38{bottom:1102.860060px;}
.y7{bottom:1112.760064px;}
.y6{bottom:1116.000068px;}
.y118{bottom:1116.180073px;}
.y37{bottom:1120.860068px;}
.y1{bottom:1126.800067px;}
.y5{bottom:1133.280069px;}
.y4{bottom:1150.560070px;}
.y3{bottom:1167.840063px;}
.y2{bottom:1185.120063px;}
.h4{height:15.840001px;}
.hb{height:16.560002px;}
.he{height:16.560036px;}
.h5{height:48.412173px;}
.h9{height:48.860434px;}
.hc{height:53.430019px;}
.h2{height:53.575923px;}
.h3{height:54.071997px;}
.h8{height:62.650791px;}
.h7{height:63.213312px;}
.hd{height:65.146978px;}
.ha{height:76.221948px;}
.h6{height:137.172862px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w2{width:3.420044px;}
.w6{width:4.139992px;}
.wa{width:4.140000px;}
.wc{width:4.319996px;}
.wd{width:5.399987px;}
.w8{width:8.279983px;}
.w4{width:8.280000px;}
.w7{width:8.460022px;}
.w5{width:24.840019px;}
.w3{width:37.439999px;}
.w9{width:41.580000px;}
.wb{width:234.540012px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:63.899999px;}
.x12{left:66.420001px;}
.x18{left:73.620002px;}
.x13{left:82.260003px;}
.xa{left:85.140000px;}
.x9{left:106.379998px;}
.x19{left:115.200002px;}
.x1a{left:123.480002px;}
.x1f{left:125.819996px;}
.x1b{left:127.620002px;}
.xb{left:189.539996px;}
.xc{left:226.979994px;}
.x14{left:247.500000px;}
.x1{left:318.060001px;}
.x1c{left:361.980011px;}
.x1d{left:366.300007px;}
.x17{left:383.399987px;}
.x4{left:398.519989px;}
.x16{left:404.639992px;}
.x6{left:420.839985px;}
.x15{left:525.240006px;}
.x2{left:570.240006px;}
.xd{left:583.019989px;}
.xe{left:607.860008px;}
.xf{left:612.000000px;}
.x3{left:619.379998px;}
.x10{left:620.460023px;}
.x5{left:622.799973px;}
.x1e{left:758.159981px;}
.x11{left:768.779983px;}
.x7{left:825.659981px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.007313pt;}
.ls2{letter-spacing:0.319004pt;}
.ls3{letter-spacing:0.334633pt;}
.ls0{letter-spacing:0.377478pt;}
.ws7{word-spacing:-53.122000pt;}
.ws6{word-spacing:-20.742534pt;}
.ws3{word-spacing:-16.310425pt;}
.ws0{word-spacing:-14.714794pt;}
.ws1{word-spacing:-14.080529pt;}
.ws2{word-spacing:-13.296554pt;}
.ws5{word-spacing:-9.573486pt;}
.ws4{word-spacing:0.000000pt;}
._c{margin-left:-6.546236pt;}
._b{margin-left:-4.251618pt;}
._5{margin-left:-3.222950pt;}
._4{margin-left:-2.123648pt;}
._3{margin-left:-1.001130pt;}
._0{width:1.159761pt;}
._2{width:2.109412pt;}
._1{width:3.167381pt;}
._6{width:4.098487pt;}
._9{width:5.160927pt;}
._a{width:6.118368pt;}
._7{width:7.284977pt;}
._8{width:8.413197pt;}
._f{width:9.335569pt;}
._e{width:10.632493pt;}
._d{width:11.527474pt;}
.fs6{font-size:34.561320pt;}
.fs1{font-size:48.002000pt;}
.fs0{font-size:53.122000pt;}
.fs5{font-size:58.882400pt;}
.fs3{font-size:64.002404pt;}
.fs4{font-size:74.882796pt;}
.fs2{font-size:138.885192pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:1.760009pt;}
.y3b{bottom:2.880005pt;}
.yb{bottom:21.440064pt;}
.ya{bottom:59.520020pt;}
.ya3{bottom:100.320069pt;}
.y75{bottom:104.800049pt;}
.yff{bottom:105.760071pt;}
.y36{bottom:106.400086pt;}
.y5b{bottom:107.360047pt;}
.yd1{bottom:112.320069pt;}
.y117{bottom:115.040039pt;}
.ya2{bottom:116.320069pt;}
.y74{bottom:120.800049pt;}
.yfe{bottom:121.760071pt;}
.y35{bottom:122.400086pt;}
.y5a{bottom:123.360047pt;}
.y116{bottom:131.040039pt;}
.ya1{bottom:132.320069pt;}
.yd0{bottom:136.320069pt;}
.y73{bottom:136.800049pt;}
.yfd{bottom:137.760071pt;}
.y59{bottom:139.360047pt;}
.y34{bottom:146.400086pt;}
.y115{bottom:147.040039pt;}
.ycf{bottom:152.320069pt;}
.y72{bottom:152.800049pt;}
.yfc{bottom:153.760071pt;}
.ya0{bottom:156.800049pt;}
.y33{bottom:162.400086pt;}
.y114{bottom:163.040039pt;}
.y58{bottom:163.360047pt;}
.y71{bottom:168.800049pt;}
.yce{bottom:176.320069pt;}
.yfb{bottom:177.760071pt;}
.y32{bottom:178.400086pt;}
.y113{bottom:179.040039pt;}
.y57{bottom:179.360047pt;}
.y70{bottom:184.800049pt;}
.y9f{bottom:190.880066pt;}
.yfa{bottom:193.760071pt;}
.y31{bottom:194.400086pt;}
.y112{bottom:195.040039pt;}
.y56{bottom:195.360047pt;}
.ycd{bottom:200.320069pt;}
.y6f{bottom:200.800049pt;}
.y144{bottom:202.720032pt;}
.yf9{bottom:209.760071pt;}
.y30{bottom:210.400086pt;}
.y111{bottom:211.040039pt;}
.y55{bottom:211.360047pt;}
.y143{bottom:222.720032pt;}
.ycc{bottom:224.320069pt;}
.y6e{bottom:224.800049pt;}
.yf8{bottom:225.760071pt;}
.y2f{bottom:226.400086pt;}
.y9e{bottom:227.040039pt;}
.y54{bottom:235.360047pt;}
.y142{bottom:237.440064pt;}
.y6d{bottom:240.800049pt;}
.yf7{bottom:241.760071pt;}
.y2e{bottom:242.400086pt;}
.ycb{bottom:248.320069pt;}
.y9d{bottom:251.040039pt;}
.y53{bottom:251.360047pt;}
.y141{bottom:257.440064pt;}
.yf6{bottom:257.760071pt;}
.y2d{bottom:258.400086pt;}
.y6c{bottom:260.800049pt;}
.yca{bottom:264.320069pt;}
.y9c{bottom:267.040039pt;}
.y52{bottom:267.360047pt;}
.y2c{bottom:274.400086pt;}
.y140{bottom:277.440064pt;}
.yc9{bottom:280.320069pt;}
.y6b{bottom:280.800049pt;}
.yf5{bottom:281.760071pt;}
.y9b{bottom:283.040039pt;}
.y51{bottom:283.360047pt;}
.y2b{bottom:290.400086pt;}
.y13f{bottom:292.000061pt;}
.yc8{bottom:296.320069pt;}
.y6a{bottom:296.800049pt;}
.y110{bottom:299.040039pt;}
.yf4{bottom:305.760071pt;}
.y2a{bottom:306.400086pt;}
.y9a{bottom:307.040039pt;}
.y50{bottom:307.360047pt;}
.y13e{bottom:312.000061pt;}
.yc7{bottom:312.320069pt;}
.y69{bottom:312.800049pt;}
.y10f{bottom:315.040039pt;}
.yf3{bottom:321.760071pt;}
.y99{bottom:323.040039pt;}
.y4f{bottom:323.360047pt;}
.y10e{bottom:331.040039pt;}
.y29{bottom:331.520081pt;}
.y13d{bottom:332.000061pt;}
.yc6{bottom:336.320069pt;}
.y68{bottom:337.280030pt;}
.y98{bottom:339.040039pt;}
.y4e{bottom:339.360047pt;}
.yf2{bottom:345.760071pt;}
.y10d{bottom:347.040039pt;}
.y13c{bottom:352.000061pt;}
.yc5{bottom:352.320069pt;}
.y4d{bottom:355.360047pt;}
.yf1{bottom:361.760071pt;}
.y97{bottom:363.040039pt;}
.y28{bottom:367.680054pt;}
.yc4{bottom:368.320069pt;}
.y67{bottom:370.240052pt;}
.y13b{bottom:372.000061pt;}
.y96{bottom:379.040039pt;}
.y4c{bottom:379.360047pt;}
.yc3{bottom:384.320069pt;}
.yf0{bottom:385.760071pt;}
.y66{bottom:386.240052pt;}
.y13a{bottom:386.720032pt;}
.y27{bottom:391.360047pt;}
.y95{bottom:395.040039pt;}
.y4b{bottom:395.360047pt;}
.yef{bottom:401.760071pt;}
.y65{bottom:402.240052pt;}
.y139{bottom:406.720032pt;}
.yc2{bottom:408.320069pt;}
.y94{bottom:411.040039pt;}
.y26{bottom:411.360047pt;}
.yee{bottom:417.760071pt;}
.y64{bottom:418.240052pt;}
.y10c{bottom:419.040039pt;}
.y138{bottom:421.440064pt;}
.yc1{bottom:424.320069pt;}
.y93{bottom:427.040039pt;}
.y25{bottom:431.360047pt;}
.yed{bottom:433.760071pt;}
.y10b{bottom:435.040039pt;}
.y4a{bottom:435.360047pt;}
.yc0{bottom:440.320069pt;}
.y137{bottom:441.440064pt;}
.y63{bottom:442.240052pt;}
.y92{bottom:443.040039pt;}
.yec{bottom:449.760071pt;}
.y10a{bottom:451.040039pt;}
.y24{bottom:451.360047pt;}
.y136{bottom:456.000061pt;}
.y62{bottom:458.240052pt;}
.y91{bottom:459.040039pt;}
.ybf{bottom:464.320069pt;}
.y23{bottom:466.080079pt;}
.y109{bottom:467.040039pt;}
.y49{bottom:467.360047pt;}
.yeb{bottom:473.760071pt;}
.y61{bottom:474.240052pt;}
.yd2{bottom:475.680054pt;}
.y135{bottom:476.000061pt;}
.ybe{bottom:480.320069pt;}
.y22{bottom:480.640076pt;}
.y90{bottom:483.040039pt;}
.y48{bottom:483.360047pt;}
.yea{bottom:489.760071pt;}
.y60{bottom:490.240052pt;}
.y134{bottom:490.720032pt;}
.y108{bottom:491.040039pt;}
.y21{bottom:495.360047pt;}
.ybd{bottom:496.320069pt;}
.y8f{bottom:499.040039pt;}
.y47{bottom:499.360047pt;}
.ye9{bottom:505.760071pt;}
.y107{bottom:507.040039pt;}
.y20{bottom:510.080079pt;}
.y133{bottom:510.720032pt;}
.ybc{bottom:512.320069pt;}
.y5f{bottom:513.920044pt;}
.y8e{bottom:515.040039pt;}
.y46{bottom:515.360047pt;}
.ye8{bottom:521.760071pt;}
.y106{bottom:523.040039pt;}
.y1f{bottom:524.640076pt;}
.ybb{bottom:528.320069pt;}
.y5e{bottom:529.120057pt;}
.y132{bottom:530.720032pt;}
.y8d{bottom:531.040039pt;}
.y45{bottom:531.360047pt;}
.y105{bottom:539.040039pt;}
.y1e{bottom:539.360047pt;}
.y5d{bottom:544.480042pt;}
.y131{bottom:545.440064pt;}
.ye7{bottom:545.760071pt;}
.y44{bottom:547.360047pt;}
.yba{bottom:552.320069pt;}
.y1d{bottom:554.080079pt;}
.y8c{bottom:555.040039pt;}
.ye6{bottom:561.760071pt;}
.y43{bottom:563.360047pt;}
.y5c{bottom:564.960083pt;}
.y130{bottom:565.440064pt;}
.yb9{bottom:568.320069pt;}
.y104{bottom:570.720032pt;}
.y8b{bottom:571.040039pt;}
.y1c{bottom:574.080079pt;}
.ye5{bottom:577.760071pt;}
.y12f{bottom:580.000061pt;}
.yb8{bottom:584.320069pt;}
.y103{bottom:586.080079pt;}
.y8a{bottom:587.040039pt;}
.y42{bottom:587.360047pt;}
.ye4{bottom:593.760071pt;}
.y1b{bottom:594.080079pt;}
.y12e{bottom:600.000061pt;}
.yb7{bottom:600.320069pt;}
.y102{bottom:601.440064pt;}
.y89{bottom:603.040039pt;}
.y41{bottom:603.360047pt;}
.y1a{bottom:608.640076pt;}
.ye3{bottom:609.760071pt;}
.y12d{bottom:614.720063pt;}
.yb6{bottom:616.320069pt;}
.y101{bottom:616.640046pt;}
.y88{bottom:619.040070pt;}
.y40{bottom:619.360047pt;}
.y19{bottom:623.360047pt;}
.ye2{bottom:625.760071pt;}
.y12c{bottom:634.720063pt;}
.y3f{bottom:635.360047pt;}
.y100{bottom:637.120057pt;}
.y18{bottom:638.080048pt;}
.yb5{bottom:640.320069pt;}
.ye1{bottom:641.760071pt;}
.y87{bottom:643.040070pt;}
.y12b{bottom:649.440064pt;}
.y3e{bottom:651.360047pt;}
.y17{bottom:652.640046pt;}
.yb4{bottom:656.320069pt;}
.ye0{bottom:657.760071pt;}
.y86{bottom:659.040070pt;}
.y16{bottom:667.360047pt;}
.y12a{bottom:669.440064pt;}
.yb3{bottom:672.320069pt;}
.ydf{bottom:673.760071pt;}
.y85{bottom:675.040070pt;}
.y3d{bottom:675.680054pt;}
.y15{bottom:682.080048pt;}
.y129{bottom:684.000061pt;}
.yb2{bottom:688.320069pt;}
.yde{bottom:689.760071pt;}
.y84{bottom:691.040070pt;}
.y14{bottom:696.640046pt;}
.y128{bottom:704.000061pt;}
.ydd{bottom:705.760071pt;}
.y83{bottom:707.040070pt;}
.y3c{bottom:709.920044pt;}
.y13{bottom:711.360047pt;}
.yb1{bottom:712.320069pt;}
.y82{bottom:723.040070pt;}
.y127{bottom:724.000061pt;}
.yb0{bottom:728.320069pt;}
.ydc{bottom:729.760071pt;}
.y12{bottom:731.360047pt;}
.y126{bottom:738.720063pt;}
.y3a{bottom:742.880066pt;}
.ydb{bottom:745.760071pt;}
.y81{bottom:747.360047pt;}
.y11{bottom:751.840058pt;}
.yaf{bottom:752.320069pt;}
.y125{bottom:758.720063pt;}
.yae{bottom:768.320069pt;}
.y10{bottom:769.440064pt;}
.yda{bottom:769.920044pt;}
.y124{bottom:778.720063pt;}
.y80{bottom:780.320069pt;}
.yad{bottom:784.320069pt;}
.yd9{bottom:787.360047pt;}
.yf{bottom:790.720063pt;}
.y7f{bottom:796.320069pt;}
.y123{bottom:799.040070pt;}
.yac{bottom:800.320069pt;}
.ye{bottom:811.840058pt;}
.y7e{bottom:812.320069pt;}
.yab{bottom:816.320069pt;}
.yd8{bottom:820.320069pt;}
.y122{bottom:823.040070pt;}
.y7d{bottom:828.320069pt;}
.yaa{bottom:832.320069pt;}
.yd7{bottom:836.320069pt;}
.y121{bottom:839.040070pt;}
.y7c{bottom:844.320069pt;}
.ya9{bottom:848.320069pt;}
.yd6{bottom:852.320069pt;}
.y120{bottom:855.040070pt;}
.y7b{bottom:860.320069pt;}
.ya8{bottom:864.320069pt;}
.yd{bottom:866.560059pt;}
.yd5{bottom:868.320054pt;}
.y11f{bottom:871.040055pt;}
.ya7{bottom:880.320054pt;}
.y7a{bottom:884.320054pt;}
.y11e{bottom:887.040055pt;}
.ya6{bottom:896.320054pt;}
.y79{bottom:900.320054pt;}
.y11d{bottom:903.040055pt;}
.yc{bottom:904.000061pt;}
.ya5{bottom:912.320054pt;}
.y78{bottom:916.320054pt;}
.y11c{bottom:919.040055pt;}
.yd4{bottom:924.320054pt;}
.ya4{bottom:925.120057pt;}
.y77{bottom:932.320054pt;}
.y11b{bottom:935.040055pt;}
.y76{bottom:948.320054pt;}
.y11a{bottom:951.040055pt;}
.y39{bottom:964.320054pt;}
.y119{bottom:967.040055pt;}
.yd3{bottom:972.320054pt;}
.y9{bottom:976.640061pt;}
.y38{bottom:980.320054pt;}
.y7{bottom:989.120057pt;}
.y6{bottom:992.000061pt;}
.y118{bottom:992.160065pt;}
.y37{bottom:996.320061pt;}
.y1{bottom:1001.600060pt;}
.y5{bottom:1007.360062pt;}
.y4{bottom:1022.720063pt;}
.y3{bottom:1038.080056pt;}
.y2{bottom:1053.440056pt;}
.h4{height:14.080001pt;}
.hb{height:14.720002pt;}
.he{height:14.720032pt;}
.h5{height:43.033043pt;}
.h9{height:43.431497pt;}
.hc{height:47.493351pt;}
.h2{height:47.623043pt;}
.h3{height:48.063997pt;}
.h8{height:55.689592pt;}
.h7{height:56.189611pt;}
.hd{height:57.908425pt;}
.ha{height:67.752842pt;}
.h6{height:121.931433pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w2{width:3.040039pt;}
.w6{width:3.679993pt;}
.wa{width:3.680000pt;}
.wc{width:3.839996pt;}
.wd{width:4.799988pt;}
.w8{width:7.359985pt;}
.w4{width:7.360000pt;}
.w7{width:7.520020pt;}
.w5{width:22.080017pt;}
.w3{width:33.279999pt;}
.w9{width:36.960000pt;}
.wb{width:208.480011pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:56.799999pt;}
.x12{left:59.040001pt;}
.x18{left:65.440002pt;}
.x13{left:73.120003pt;}
.xa{left:75.680000pt;}
.x9{left:94.559998pt;}
.x19{left:102.400002pt;}
.x1a{left:109.760002pt;}
.x1f{left:111.839996pt;}
.x1b{left:113.440002pt;}
.xb{left:168.479996pt;}
.xc{left:201.759995pt;}
.x14{left:220.000000pt;}
.x1{left:282.720001pt;}
.x1c{left:321.760010pt;}
.x1d{left:325.600006pt;}
.x17{left:340.799988pt;}
.x4{left:354.239990pt;}
.x16{left:359.679993pt;}
.x6{left:374.079987pt;}
.x15{left:466.880005pt;}
.x2{left:506.880005pt;}
.xd{left:518.239990pt;}
.xe{left:540.320007pt;}
.xf{left:544.000000pt;}
.x3{left:550.559998pt;}
.x10{left:551.520020pt;}
.x5{left:553.599976pt;}
.x1e{left:673.919983pt;}
.x11{left:683.359985pt;}
.x7{left:733.919983pt;}
}




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