
    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_54a53d06f2bb9d75f141fc39.woff')format("woff");}.ff1{font-family:ff1;line-height:0.986816;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_29d0ff821e2f2a2ea6a669f9.woff')format("woff");}.ff2{font-family:ff2;line-height:0.986816;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_016c6b24befb5ef78e5c1dd3.woff')format("woff");}.ff3{font-family:ff3;line-height:0.986328;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_d2638cbd114edc3c0d5952db.woff')format("woff");}.ff4{font-family:ff4;line-height:0.986816;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_cd02094e67000fe50a246e5c.woff')format("woff");}.ff5{font-family:ff5;line-height:0.912109;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_0f15504a1c855d3bc15f5e2d.woff')format("woff");}.ff6{font-family:ff6;line-height:0.986328;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-2.812500px;}
.v2{vertical-align:-1.687500px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws4{word-spacing:-32.980032px;}
.ws0{word-spacing:-18.199731px;}
.ws1{word-spacing:-18.135306px;}
.ws2{word-spacing:-18.070883px;}
.ws5{word-spacing:-8.948831px;}
.ws3{word-spacing:0.000000px;}
._e{margin-left:-11.614601px;}
._a{margin-left:-9.993963px;}
._f{margin-left:-8.910875px;}
._9{margin-left:-7.371217px;}
._b{margin-left:-6.350647px;}
._6{margin-left:-5.103134px;}
._2{margin-left:-3.375001px;}
._5{margin-left:-2.313995px;}
._1{margin-left:-1.265626px;}
._7{width:1.321269px;}
._8{width:2.330812px;}
._4{width:3.352294px;}
._3{width:5.010675px;}
._d{width:6.051470px;}
._0{width:7.199960px;}
._c{width:27.886804px;}
.fc3{color:rgb(102,102,102);}
.fc2{color:rgb(51,51,51);}
.fc1{color:rgb(34,37,41);}
.fc0{color:rgb(44,62,80);}
.fs4{font-size:59.399997px;}
.fs2{font-size:65.969996px;}
.fs5{font-size:83.969997px;}
.fs3{font-size:95.984996px;}
.fs1{font-size:119.969995px;}
.fs0{font-size:143.999994px;}
.y0{bottom:0.000000px;}
.yc9{bottom:12.779279px;}
.ydd{bottom:15.029279px;}
.y12a{bottom:16.154279px;}
.y57{bottom:17.279279px;}
.y2a{bottom:20.654279px;}
.y148{bottom:22.904279px;}
.y10f{bottom:24.029279px;}
.y89{bottom:37.529278px;}
.yc8{bottom:38.654278px;}
.y39{bottom:39.779278px;}
.ydc{bottom:42.029278px;}
.y129{bottom:43.154278px;}
.y56{bottom:44.279278px;}
.y29{bottom:47.654278px;}
.y147{bottom:49.904278px;}
.y10e{bottom:51.029278px;}
.y102{bottom:54.404278px;}
.y6d{bottom:61.154277px;}
.y88{bottom:63.404277px;}
.yc7{bottom:65.654277px;}
.y38{bottom:66.779277px;}
.yec{bottom:70.154277px;}
.y16a{bottom:75.779277px;}
.y10d{bottom:76.904277px;}
.y11f{bottom:80.279277px;}
.y101{bottom:81.404277px;}
.y1{bottom:84.600739px;}
.y55{bottom:84.779276px;}
.y128{bottom:85.904276px;}
.y6c{bottom:87.029276px;}
.y28{bottom:90.404276px;}
.yc6{bottom:91.529276px;}
.y37{bottom:92.654276px;}
.y112{bottom:97.154276px;}
.yaa{bottom:99.404276px;}
.y169{bottom:102.779276px;}
.y100{bottom:107.279276px;}
.ydb{bottom:110.654275px;}
.y127{bottom:111.779275px;}
.y16{bottom:112.904275px;}
.y27{bottom:116.279275px;}
.yc5{bottom:118.529275px;}
.y71{bottom:119.654275px;}
.ya9{bottom:125.279275px;}
.y157{bottom:132.029274px;}
.y87{bottom:133.154274px;}
.y36{bottom:135.404274px;}
.yda{bottom:137.654274px;}
.y126{bottom:138.779274px;}
.y15{bottom:139.904274px;}
.y26{bottom:143.279274px;}
.y168{bottom:145.529274px;}
.y10c{bottom:146.654274px;}
.y146{bottom:148.904274px;}
.yff{bottom:150.029274px;}
.ya8{bottom:152.279274px;}
.y54{bottom:153.404274px;}
.y86{bottom:160.154273px;}
.yc4{bottom:161.279273px;}
.y35{bottom:162.404273px;}
.yd9{bottom:163.529273px;}
.y125{bottom:164.654273px;}
.yeb{bottom:165.779273px;}
.y25{bottom:169.154273px;}
.y167{bottom:171.404273px;}
.y10b{bottom:172.529273px;}
.y14{bottom:173.654273px;}
.y11e{bottom:175.904273px;}
.yfe{bottom:177.029273px;}
.y53{bottom:179.279273px;}
.y6b{bottom:182.654272px;}
.y85{bottom:186.029272px;}
.yc3{bottom:187.154272px;}
.y34{bottom:188.279272px;}
.y156{bottom:192.779272px;}
.ya7{bottom:195.029272px;}
.y166{bottom:198.404272px;}
.y13{bottom:200.654272px;}
.yfd{bottom:202.904272px;}
.yd8{bottom:205.154271px;}
.y52{bottom:206.279271px;}
.y124{bottom:207.404271px;}
.yea{bottom:208.529271px;}
.y6a{bottom:209.654271px;}
.y24{bottom:211.904271px;}
.yc2{bottom:214.154271px;}
.y33{bottom:215.279271px;}
.y155{bottom:218.654271px;}
.ya6{bottom:220.904271px;}
.y165{bottom:224.279271px;}
.y84{bottom:228.779270px;}
.y51{bottom:232.154270px;}
.y123{bottom:234.404270px;}
.y12{bottom:235.529270px;}
.y23{bottom:238.904270px;}
.y32{bottom:241.154270px;}
.y10a{bottom:242.279270px;}
.yfc{bottom:245.654270px;}
.ya5{bottom:247.904270px;}
.y164{bottom:251.279270px;}
.y69{bottom:252.404269px;}
.y83{bottom:255.779269px;}
.yc1{bottom:256.904269px;}
.y50{bottom:258.029269px;}
.y145{bottom:261.404269px;}
.y22{bottom:264.779269px;}
.y31{bottom:268.154269px;}
.y11{bottom:270.404269px;}
.y11d{bottom:271.529269px;}
.yfb{bottom:272.654269px;}
.ya4{bottom:273.779269px;}
.y122{bottom:274.904269px;}
.ye9{bottom:276.029268px;}
.y163{bottom:277.154268px;}
.y68{bottom:278.279268px;}
.y82{bottom:281.654268px;}
.yc0{bottom:282.779268px;}
.y111{bottom:285.029268px;}
.y144{bottom:288.404268px;}
.y21{bottom:291.779268px;}
.y30{bottom:294.029268px;}
.y10{bottom:296.279268px;}
.yfa{bottom:298.529268px;}
.y4f{bottom:301.904267px;}
.y162{bottom:304.154267px;}
.y67{bottom:305.279267px;}
.ybf{bottom:309.779267px;}
.y70{bottom:310.904267px;}
.y154{bottom:314.279267px;}
.ya3{bottom:316.529267px;}
.yd7{bottom:319.904267px;}
.y81{bottom:324.404266px;}
.y17a{bottom:326.654266px;}
.y4e{bottom:327.779266px;}
.y161{bottom:330.029266px;}
.y143{bottom:331.154266px;}
.y20{bottom:334.529266px;}
.y2f{bottom:335.654266px;}
.yf{bottom:336.779266px;}
.y109{bottom:337.904266px;}
.yf9{bottom:340.154266px;}
.y11c{bottom:341.279266px;}
.ya2{bottom:343.529266px;}
.ye8{bottom:344.654266px;}
.yd6{bottom:346.904266px;}
.y66{bottom:348.029265px;}
.y136{bottom:351.404265px;}
.y121{bottom:353.654265px;}
.y4d{bottom:354.779265px;}
.y142{bottom:357.029265px;}
.y1f{bottom:360.404265px;}
.y6f{bottom:363.779265px;}
.y80{bottom:364.904265px;}
.y11b{bottom:367.154265px;}
.ya1{bottom:369.404265px;}
.ye7{bottom:370.529265px;}
.y65{bottom:373.904264px;}
.ybe{bottom:377.279264px;}
.y4c{bottom:380.654264px;}
.y160{bottom:382.904264px;}
.y141{bottom:384.029264px;}
.y1e{bottom:387.404264px;}
.y179{bottom:388.529264px;}
.y6e{bottom:389.654264px;}
.y120{bottom:390.779264px;}
.y11a{bottom:394.154264px;}
.ya0{bottom:396.404263px;}
.ye6{bottom:397.529263px;}
.yd5{bottom:399.779263px;}
.y64{bottom:400.904263px;}
.ye{bottom:405.404263px;}
.y108{bottom:406.529263px;}
.yf8{bottom:407.654263px;}
.y153{bottom:409.904263px;}
.y1d{bottom:413.279263px;}
.y178{bottom:414.404263px;}
.y135{bottom:420.029262px;}
.y9f{bottom:422.279262px;}
.y4b{bottom:423.404262px;}
.y140{bottom:426.779262px;}
.yd{bottom:431.279262px;}
.y7f{bottom:433.529262px;}
.yf7{bottom:434.654262px;}
.y119{bottom:436.904262px;}
.yd4{bottom:442.529262px;}
.y63{bottom:443.654262px;}
.ybd{bottom:444.779261px;}
.y177{bottom:449.279261px;}
.y2e{bottom:450.404261px;}
.y13f{bottom:452.654261px;}
.y1c{bottom:456.029261px;}
.yc{bottom:458.279261px;}
.y7e{bottom:459.404261px;}
.yf6{bottom:460.529261px;}
.y134{bottom:461.654261px;}
.y118{bottom:462.779261px;}
.y9e{bottom:465.029261px;}
.ye5{bottom:466.154261px;}
.yd3{bottom:469.529260px;}
.ybc{bottom:470.654260px;}
.y4a{bottom:476.279260px;}
.y152{bottom:477.404260px;}
.y13e{bottom:479.654260px;}
.y1b{bottom:483.029260px;}
.yb{bottom:484.154260px;}
.y7d{bottom:486.404260px;}
.y117{bottom:489.779260px;}
.y9d{bottom:492.029259px;}
.ye4{bottom:493.154259px;}
.yd2{bottom:495.404259px;}
.ybb{bottom:497.654259px;}
.y107{bottom:503.279259px;}
.y1a{bottom:508.904259px;}
.y176{bottom:510.029259px;}
.ya{bottom:511.154259px;}
.yf5{bottom:513.404259px;}
.y9c{bottom:517.904258px;}
.y49{bottom:519.029258px;}
.y13d{bottom:522.404258px;}
.y7c{bottom:529.154258px;}
.y116{bottom:532.529258px;}
.y19{bottom:535.904258px;}
.y151{bottom:537.029258px;}
.yd1{bottom:539.279258px;}
.yba{bottom:540.404257px;}
.y9b{bottom:544.904257px;}
.y48{bottom:546.029257px;}
.y13c{bottom:548.279257px;}
.y62{bottom:552.779257px;}
.y133{bottom:555.029257px;}
.yf4{bottom:556.154257px;}
.y115{bottom:558.404257px;}
.y9{bottom:564.029256px;}
.yd0{bottom:565.154256px;}
.y106{bottom:569.654256px;}
.y175{bottom:570.779256px;}
.y47{bottom:571.904256px;}
.yb9{bottom:575.279256px;}
.y18{bottom:578.654256px;}
.y15f{bottom:579.779256px;}
.y132{bottom:582.029256px;}
.yf3{bottom:583.154256px;}
.y9a{bottom:585.404256px;}
.ye3{bottom:588.779255px;}
.y150{bottom:589.904255px;}
.ycf{bottom:591.029255px;}
.y46{bottom:598.904255px;}
.y114{bottom:600.029255px;}
.y17{bottom:604.529255px;}
.y174{bottom:605.654255px;}
.y15e{bottom:606.779255px;}
.yf2{bottom:609.029255px;}
.yb8{bottom:610.154255px;}
.ye2{bottom:614.654254px;}
.yce{bottom:618.029254px;}
.y131{bottom:624.779254px;}
.y61{bottom:631.529254px;}
.y14f{bottom:632.654254px;}
.yf1{bottom:634.904254px;}
.y105{bottom:638.279253px;}
.y173{bottom:640.529253px;}
.y45{bottom:641.654253px;}
.yb7{bottom:643.904253px;}
.y130{bottom:651.779253px;}
.y99{bottom:654.029253px;}
.y14e{bottom:659.654253px;}
.ycd{bottom:660.779252px;}
.yf0{bottom:661.904252px;}
.y104{bottom:664.154252px;}
.y8{bottom:665.279252px;}
.y172{bottom:666.404252px;}
.ye1{bottom:667.529252px;}
.y13b{bottom:670.904252px;}
.y60{bottom:674.279252px;}
.y15d{bottom:676.529252px;}
.y12f{bottom:677.654252px;}
.y98{bottom:679.904252px;}
.y44{bottom:682.154252px;}
.y7b{bottom:684.404251px;}
.y14d{bottom:685.529251px;}
.yb6{bottom:687.779251px;}
.y103{bottom:691.154251px;}
.ye0{bottom:694.529251px;}
.y5f{bottom:701.279251px;}
.y15c{bottom:702.404251px;}
.yef{bottom:704.654251px;}
.y8d{bottom:706.904251px;}
.y7a{bottom:710.279250px;}
.ycc{bottom:713.654250px;}
.y97{bottom:714.779250px;}
.y7{bottom:718.154250px;}
.y110{bottom:720.404250px;}
.y113{bottom:728.279250px;}
.yb5{bottom:730.529250px;}
.yee{bottom:731.654250px;}
.y8c{bottom:733.904249px;}
.y171{bottom:736.154249px;}
.y79{bottom:737.279249px;}
.y13a{bottom:739.529249px;}
.y5e{bottom:744.029249px;}
.y12e{bottom:747.404249px;}
.y43{bottom:750.779249px;}
.y6{bottom:755.279249px;}
.yb4{bottom:756.404248px;}
.y96{bottom:757.529248px;}
.y8b{bottom:759.779248px;}
.y78{bottom:763.154248px;}
.y139{bottom:766.529248px;}
.y5d{bottom:769.904248px;}
.y170{bottom:771.029248px;}
.y15b{bottom:772.154248px;}
.y12d{bottom:773.279248px;}
.y42{bottom:776.654248px;}
.y14c{bottom:781.154247px;}
.y95{bottom:783.404247px;}
.y8a{bottom:786.779247px;}
.y77{bottom:790.154247px;}
.y5{bottom:792.404247px;}
.y15a{bottom:798.029247px;}
.y41{bottom:802.529247px;}
.y16f{bottom:805.904246px;}
.yb3{bottom:809.279246px;}
.y5c{bottom:812.654246px;}
.ydf{bottom:816.029246px;}
.y14b{bottom:821.654246px;}
.y159{bottom:825.029246px;}
.y94{bottom:827.279246px;}
.y40{bottom:829.529245px;}
.y16e{bottom:831.779245px;}
.y76{bottom:832.904245px;}
.yb2{bottom:836.279245px;}
.y5b{bottom:839.654245px;}
.y12c{bottom:843.029245px;}
.ycb{bottom:852.029244px;}
.y93{bottom:853.154244px;}
.y3f{bottom:855.404244px;}
.yde{bottom:857.654244px;}
.y75{bottom:858.779244px;}
.y138{bottom:862.154244px;}
.y158{bottom:865.529244px;}
.y16d{bottom:866.654244px;}
.yb1{bottom:879.029243px;}
.y92{bottom:880.154243px;}
.y5a{bottom:882.404243px;}
.y12b{bottom:883.529243px;}
.y74{bottom:885.779243px;}
.y4{bottom:889.154243px;}
.y16c{bottom:892.529243px;}
.y3e{bottom:899.279243px;}
.yb0{bottom:904.904242px;}
.y91{bottom:906.029242px;}
.y59{bottom:908.279242px;}
.y73{bottom:911.654242px;}
.y3d{bottom:925.154241px;}
.yed{bottom:926.279241px;}
.yca{bottom:931.904241px;}
.y3{bottom:934.154241px;}
.y14a{bottom:935.279241px;}
.y72{bottom:938.654241px;}
.y16b{bottom:945.404241px;}
.y90{bottom:946.529241px;}
.yaf{bottom:948.076115px;}
.y3c{bottom:951.029240px;}
.y137{bottom:957.779240px;}
.yae{bottom:974.654239px;}
.y3b{bottom:978.029239px;}
.y2{bottom:979.154239px;}
.y58{bottom:994.904239px;}
.yad{bottom:1000.529238px;}
.y3a{bottom:1003.904238px;}
.y2d{bottom:1020.779237px;}
.y8f{bottom:1025.279237px;}
.yac{bottom:1027.529237px;}
.y149{bottom:1030.904237px;}
.y2c{bottom:1047.779236px;}
.y8e{bottom:1062.404236px;}
.yab{bottom:1068.029235px;}
.y2b{bottom:1073.654235px;}
.h8{height:47.854421px;}
.h6{height:49.541921px;}
.h5{height:49.606345px;}
.h9{height:63.100500px;}
.h7{height:72.129350px;}
.h4{height:90.153234px;}
.h3{height:108.210933px;}
.h2{height:1092.779234px;}
.h0{height:1262.879970px;}
.h1{height:1263.000000px;}
.w2{width:722.865210px;}
.w0{width:892.439940px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:22.499999px;}
.x6{left:28.792968px;}
.x5{left:37.669920px;}
.x3{left:42.363279px;}
.x4{left:55.494138px;}
.x1{left:85.499996px;}
@media print{
.v1{vertical-align:-2.500000pt;}
.v2{vertical-align:-1.500000pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws4{word-spacing:-29.315584pt;}
.ws0{word-spacing:-16.177538pt;}
.ws1{word-spacing:-16.120272pt;}
.ws2{word-spacing:-16.063007pt;}
.ws5{word-spacing:-7.954516pt;}
.ws3{word-spacing:0.000000pt;}
._e{margin-left:-10.324090pt;}
._a{margin-left:-8.883523pt;}
._f{margin-left:-7.920778pt;}
._9{margin-left:-6.552193pt;}
._b{margin-left:-5.645020pt;}
._6{margin-left:-4.536119pt;}
._2{margin-left:-3.000001pt;}
._5{margin-left:-2.056885pt;}
._1{margin-left:-1.125001pt;}
._7{width:1.174461pt;}
._8{width:2.071833pt;}
._4{width:2.979816pt;}
._3{width:4.453933pt;}
._d{width:5.379085pt;}
._0{width:6.399965pt;}
._c{width:24.788270pt;}
.fs4{font-size:52.799997pt;}
.fs2{font-size:58.639997pt;}
.fs5{font-size:74.639997pt;}
.fs3{font-size:85.319996pt;}
.fs1{font-size:106.639996pt;}
.fs0{font-size:127.999995pt;}
.y0{bottom:0.000000pt;}
.yc9{bottom:11.359360pt;}
.ydd{bottom:13.359359pt;}
.y12a{bottom:14.359359pt;}
.y57{bottom:15.359359pt;}
.y2a{bottom:18.359359pt;}
.y148{bottom:20.359359pt;}
.y10f{bottom:21.359359pt;}
.y89{bottom:33.359359pt;}
.yc8{bottom:34.359359pt;}
.y39{bottom:35.359359pt;}
.ydc{bottom:37.359358pt;}
.y129{bottom:38.359358pt;}
.y56{bottom:39.359358pt;}
.y29{bottom:42.359358pt;}
.y147{bottom:44.359358pt;}
.y10e{bottom:45.359358pt;}
.y102{bottom:48.359358pt;}
.y6d{bottom:54.359358pt;}
.y88{bottom:56.359358pt;}
.yc7{bottom:58.359358pt;}
.y38{bottom:59.359358pt;}
.yec{bottom:62.359357pt;}
.y16a{bottom:67.359357pt;}
.y10d{bottom:68.359357pt;}
.y11f{bottom:71.359357pt;}
.y101{bottom:72.359357pt;}
.y1{bottom:75.200657pt;}
.y55{bottom:75.359357pt;}
.y128{bottom:76.359357pt;}
.y6c{bottom:77.359357pt;}
.y28{bottom:80.359357pt;}
.yc6{bottom:81.359357pt;}
.y37{bottom:82.359357pt;}
.y112{bottom:86.359356pt;}
.yaa{bottom:88.359356pt;}
.y169{bottom:91.359356pt;}
.y100{bottom:95.359356pt;}
.ydb{bottom:98.359356pt;}
.y127{bottom:99.359356pt;}
.y16{bottom:100.359356pt;}
.y27{bottom:103.359356pt;}
.yc5{bottom:105.359356pt;}
.y71{bottom:106.359356pt;}
.ya9{bottom:111.359355pt;}
.y157{bottom:117.359355pt;}
.y87{bottom:118.359355pt;}
.y36{bottom:120.359355pt;}
.yda{bottom:122.359355pt;}
.y126{bottom:123.359355pt;}
.y15{bottom:124.359355pt;}
.y26{bottom:127.359355pt;}
.y168{bottom:129.359355pt;}
.y10c{bottom:130.359355pt;}
.y146{bottom:132.359354pt;}
.yff{bottom:133.359354pt;}
.ya8{bottom:135.359354pt;}
.y54{bottom:136.359354pt;}
.y86{bottom:142.359354pt;}
.yc4{bottom:143.359354pt;}
.y35{bottom:144.359354pt;}
.yd9{bottom:145.359354pt;}
.y125{bottom:146.359354pt;}
.yeb{bottom:147.359354pt;}
.y25{bottom:150.359354pt;}
.y167{bottom:152.359354pt;}
.y10b{bottom:153.359354pt;}
.y14{bottom:154.359354pt;}
.y11e{bottom:156.359353pt;}
.yfe{bottom:157.359353pt;}
.y53{bottom:159.359353pt;}
.y6b{bottom:162.359353pt;}
.y85{bottom:165.359353pt;}
.yc3{bottom:166.359353pt;}
.y34{bottom:167.359353pt;}
.y156{bottom:171.359353pt;}
.ya7{bottom:173.359353pt;}
.y166{bottom:176.359353pt;}
.y13{bottom:178.359353pt;}
.yfd{bottom:180.359352pt;}
.yd8{bottom:182.359352pt;}
.y52{bottom:183.359352pt;}
.y124{bottom:184.359352pt;}
.yea{bottom:185.359352pt;}
.y6a{bottom:186.359352pt;}
.y24{bottom:188.359352pt;}
.yc2{bottom:190.359352pt;}
.y33{bottom:191.359352pt;}
.y155{bottom:194.359352pt;}
.ya6{bottom:196.359352pt;}
.y165{bottom:199.359352pt;}
.y84{bottom:203.359352pt;}
.y51{bottom:206.359351pt;}
.y123{bottom:208.359351pt;}
.y12{bottom:209.359351pt;}
.y23{bottom:212.359351pt;}
.y32{bottom:214.359351pt;}
.y10a{bottom:215.359351pt;}
.yfc{bottom:218.359351pt;}
.ya5{bottom:220.359351pt;}
.y164{bottom:223.359351pt;}
.y69{bottom:224.359351pt;}
.y83{bottom:227.359351pt;}
.yc1{bottom:228.359350pt;}
.y50{bottom:229.359350pt;}
.y145{bottom:232.359350pt;}
.y22{bottom:235.359350pt;}
.y31{bottom:238.359350pt;}
.y11{bottom:240.359350pt;}
.y11d{bottom:241.359350pt;}
.yfb{bottom:242.359350pt;}
.ya4{bottom:243.359350pt;}
.y122{bottom:244.359350pt;}
.ye9{bottom:245.359350pt;}
.y163{bottom:246.359350pt;}
.y68{bottom:247.359350pt;}
.y82{bottom:250.359350pt;}
.yc0{bottom:251.359350pt;}
.y111{bottom:253.359349pt;}
.y144{bottom:256.359349pt;}
.y21{bottom:259.359349pt;}
.y30{bottom:261.359349pt;}
.y10{bottom:263.359349pt;}
.yfa{bottom:265.359349pt;}
.y4f{bottom:268.359349pt;}
.y162{bottom:270.359349pt;}
.y67{bottom:271.359349pt;}
.ybf{bottom:275.359349pt;}
.y70{bottom:276.359348pt;}
.y154{bottom:279.359348pt;}
.ya3{bottom:281.359348pt;}
.yd7{bottom:284.359348pt;}
.y81{bottom:288.359348pt;}
.y17a{bottom:290.359348pt;}
.y4e{bottom:291.359348pt;}
.y161{bottom:293.359348pt;}
.y143{bottom:294.359348pt;}
.y20{bottom:297.359348pt;}
.y2f{bottom:298.359348pt;}
.yf{bottom:299.359348pt;}
.y109{bottom:300.359347pt;}
.yf9{bottom:302.359347pt;}
.y11c{bottom:303.359347pt;}
.ya2{bottom:305.359347pt;}
.ye8{bottom:306.359347pt;}
.yd6{bottom:308.359347pt;}
.y66{bottom:309.359347pt;}
.y136{bottom:312.359347pt;}
.y121{bottom:314.359347pt;}
.y4d{bottom:315.359347pt;}
.y142{bottom:317.359347pt;}
.y1f{bottom:320.359347pt;}
.y6f{bottom:323.359347pt;}
.y80{bottom:324.359346pt;}
.y11b{bottom:326.359346pt;}
.ya1{bottom:328.359346pt;}
.ye7{bottom:329.359346pt;}
.y65{bottom:332.359346pt;}
.ybe{bottom:335.359346pt;}
.y4c{bottom:338.359346pt;}
.y160{bottom:340.359346pt;}
.y141{bottom:341.359346pt;}
.y1e{bottom:344.359346pt;}
.y179{bottom:345.359346pt;}
.y6e{bottom:346.359346pt;}
.y120{bottom:347.359346pt;}
.y11a{bottom:350.359345pt;}
.ya0{bottom:352.359345pt;}
.ye6{bottom:353.359345pt;}
.yd5{bottom:355.359345pt;}
.y64{bottom:356.359345pt;}
.ye{bottom:360.359345pt;}
.y108{bottom:361.359345pt;}
.yf8{bottom:362.359345pt;}
.y153{bottom:364.359345pt;}
.y1d{bottom:367.359345pt;}
.y178{bottom:368.359345pt;}
.y135{bottom:373.359344pt;}
.y9f{bottom:375.359344pt;}
.y4b{bottom:376.359344pt;}
.y140{bottom:379.359344pt;}
.yd{bottom:383.359344pt;}
.y7f{bottom:385.359344pt;}
.yf7{bottom:386.359344pt;}
.y119{bottom:388.359344pt;}
.yd4{bottom:393.359344pt;}
.y63{bottom:394.359344pt;}
.ybd{bottom:395.359344pt;}
.y177{bottom:399.359343pt;}
.y2e{bottom:400.359343pt;}
.y13f{bottom:402.359343pt;}
.y1c{bottom:405.359343pt;}
.yc{bottom:407.359343pt;}
.y7e{bottom:408.359343pt;}
.yf6{bottom:409.359343pt;}
.y134{bottom:410.359343pt;}
.y118{bottom:411.359343pt;}
.y9e{bottom:413.359343pt;}
.ye5{bottom:414.359343pt;}
.yd3{bottom:417.359343pt;}
.ybc{bottom:418.359343pt;}
.y4a{bottom:423.359342pt;}
.y152{bottom:424.359342pt;}
.y13e{bottom:426.359342pt;}
.y1b{bottom:429.359342pt;}
.yb{bottom:430.359342pt;}
.y7d{bottom:432.359342pt;}
.y117{bottom:435.359342pt;}
.y9d{bottom:437.359342pt;}
.ye4{bottom:438.359342pt;}
.yd2{bottom:440.359342pt;}
.ybb{bottom:442.359342pt;}
.y107{bottom:447.359341pt;}
.y1a{bottom:452.359341pt;}
.y176{bottom:453.359341pt;}
.ya{bottom:454.359341pt;}
.yf5{bottom:456.359341pt;}
.y9c{bottom:460.359341pt;}
.y49{bottom:461.359341pt;}
.y13d{bottom:464.359341pt;}
.y7c{bottom:470.359340pt;}
.y116{bottom:473.359340pt;}
.y19{bottom:476.359340pt;}
.y151{bottom:477.359340pt;}
.yd1{bottom:479.359340pt;}
.yba{bottom:480.359340pt;}
.y9b{bottom:484.359340pt;}
.y48{bottom:485.359340pt;}
.y13c{bottom:487.359340pt;}
.y62{bottom:491.359340pt;}
.y133{bottom:493.359339pt;}
.yf4{bottom:494.359339pt;}
.y115{bottom:496.359339pt;}
.y9{bottom:501.359339pt;}
.yd0{bottom:502.359339pt;}
.y106{bottom:506.359339pt;}
.y175{bottom:507.359339pt;}
.y47{bottom:508.359339pt;}
.yb9{bottom:511.359339pt;}
.y18{bottom:514.359339pt;}
.y15f{bottom:515.359339pt;}
.y132{bottom:517.359338pt;}
.yf3{bottom:518.359338pt;}
.y9a{bottom:520.359338pt;}
.ye3{bottom:523.359338pt;}
.y150{bottom:524.359338pt;}
.ycf{bottom:525.359338pt;}
.y46{bottom:532.359338pt;}
.y114{bottom:533.359338pt;}
.y17{bottom:537.359338pt;}
.y174{bottom:538.359338pt;}
.y15e{bottom:539.359338pt;}
.yf2{bottom:541.359337pt;}
.yb8{bottom:542.359337pt;}
.ye2{bottom:546.359337pt;}
.yce{bottom:549.359337pt;}
.y131{bottom:555.359337pt;}
.y61{bottom:561.359337pt;}
.y14f{bottom:562.359337pt;}
.yf1{bottom:564.359336pt;}
.y105{bottom:567.359336pt;}
.y173{bottom:569.359336pt;}
.y45{bottom:570.359336pt;}
.yb7{bottom:572.359336pt;}
.y130{bottom:579.359336pt;}
.y99{bottom:581.359336pt;}
.y14e{bottom:586.359336pt;}
.ycd{bottom:587.359336pt;}
.yf0{bottom:588.359335pt;}
.y104{bottom:590.359335pt;}
.y8{bottom:591.359335pt;}
.y172{bottom:592.359335pt;}
.ye1{bottom:593.359335pt;}
.y13b{bottom:596.359335pt;}
.y60{bottom:599.359335pt;}
.y15d{bottom:601.359335pt;}
.y12f{bottom:602.359335pt;}
.y98{bottom:604.359335pt;}
.y44{bottom:606.359335pt;}
.y7b{bottom:608.359335pt;}
.y14d{bottom:609.359335pt;}
.yb6{bottom:611.359335pt;}
.y103{bottom:614.359334pt;}
.ye0{bottom:617.359334pt;}
.y5f{bottom:623.359334pt;}
.y15c{bottom:624.359334pt;}
.yef{bottom:626.359334pt;}
.y8d{bottom:628.359334pt;}
.y7a{bottom:631.359334pt;}
.ycc{bottom:634.359334pt;}
.y97{bottom:635.359334pt;}
.y7{bottom:638.359333pt;}
.y110{bottom:640.359333pt;}
.y113{bottom:647.359333pt;}
.yb5{bottom:649.359333pt;}
.yee{bottom:650.359333pt;}
.y8c{bottom:652.359333pt;}
.y171{bottom:654.359333pt;}
.y79{bottom:655.359333pt;}
.y13a{bottom:657.359333pt;}
.y5e{bottom:661.359332pt;}
.y12e{bottom:664.359332pt;}
.y43{bottom:667.359332pt;}
.y6{bottom:671.359332pt;}
.yb4{bottom:672.359332pt;}
.y96{bottom:673.359332pt;}
.y8b{bottom:675.359332pt;}
.y78{bottom:678.359332pt;}
.y139{bottom:681.359332pt;}
.y5d{bottom:684.359331pt;}
.y170{bottom:685.359331pt;}
.y15b{bottom:686.359331pt;}
.y12d{bottom:687.359331pt;}
.y42{bottom:690.359331pt;}
.y14c{bottom:694.359331pt;}
.y95{bottom:696.359331pt;}
.y8a{bottom:699.359331pt;}
.y77{bottom:702.359331pt;}
.y5{bottom:704.359331pt;}
.y15a{bottom:709.359330pt;}
.y41{bottom:713.359330pt;}
.y16f{bottom:716.359330pt;}
.yb3{bottom:719.359330pt;}
.y5c{bottom:722.359330pt;}
.ydf{bottom:725.359330pt;}
.y14b{bottom:730.359330pt;}
.y159{bottom:733.359329pt;}
.y94{bottom:735.359329pt;}
.y40{bottom:737.359329pt;}
.y16e{bottom:739.359329pt;}
.y76{bottom:740.359329pt;}
.yb2{bottom:743.359329pt;}
.y5b{bottom:746.359329pt;}
.y12c{bottom:749.359329pt;}
.ycb{bottom:757.359328pt;}
.y93{bottom:758.359328pt;}
.y3f{bottom:760.359328pt;}
.yde{bottom:762.359328pt;}
.y75{bottom:763.359328pt;}
.y138{bottom:766.359328pt;}
.y158{bottom:769.359328pt;}
.y16d{bottom:770.359328pt;}
.yb1{bottom:781.359327pt;}
.y92{bottom:782.359327pt;}
.y5a{bottom:784.359327pt;}
.y12b{bottom:785.359327pt;}
.y74{bottom:787.359327pt;}
.y4{bottom:790.359327pt;}
.y16c{bottom:793.359327pt;}
.y3e{bottom:799.359327pt;}
.yb0{bottom:804.359326pt;}
.y91{bottom:805.359326pt;}
.y59{bottom:807.359326pt;}
.y73{bottom:810.359326pt;}
.y3d{bottom:822.359326pt;}
.yed{bottom:823.359326pt;}
.yca{bottom:828.359325pt;}
.y3{bottom:830.359325pt;}
.y14a{bottom:831.359325pt;}
.y72{bottom:834.359325pt;}
.y16b{bottom:840.359325pt;}
.y90{bottom:841.359325pt;}
.yaf{bottom:842.734325pt;}
.y3c{bottom:845.359325pt;}
.y137{bottom:851.359325pt;}
.yae{bottom:866.359324pt;}
.y3b{bottom:869.359324pt;}
.y2{bottom:870.359324pt;}
.y58{bottom:884.359323pt;}
.yad{bottom:889.359323pt;}
.y3a{bottom:892.359323pt;}
.y2d{bottom:907.359322pt;}
.y8f{bottom:911.359322pt;}
.yac{bottom:913.359322pt;}
.y149{bottom:916.359322pt;}
.y2c{bottom:931.359321pt;}
.y8e{bottom:944.359321pt;}
.yab{bottom:949.359320pt;}
.y2b{bottom:954.359320pt;}
.h8{height:42.537263pt;}
.h6{height:44.037263pt;}
.h5{height:44.094529pt;}
.h9{height:56.089334pt;}
.h7{height:64.114978pt;}
.h4{height:80.136208pt;}
.h3{height:96.187496pt;}
.h2{height:971.359320pt;}
.h0{height:1122.559973pt;}
.h1{height:1122.666667pt;}
.w2{width:642.546853pt;}
.w0{width:793.279947pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:19.999999pt;}
.x6{left:25.593749pt;}
.x5{left:33.484374pt;}
.x3{left:37.656248pt;}
.x4{left:49.328123pt;}
.x1{left:75.999997pt;}
}




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