
    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_64144050e63e9d22658a8610.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.972168;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_fe8b9b0e311ca376630be8fc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.070312;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_859903a111a6593267899afb.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893555;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_c9039a0d0acba5d21ad6d5e3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.120605;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_89bb1b4d525e5ddff0498491.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.727539;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_55b14680dc84db44eb655957.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.971191;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);}
.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;}
}
.ws3{word-spacing:-54.000003px;}
.ws0{word-spacing:-35.068362px;}
.ws4{word-spacing:-28.054687px;}
.ws7{word-spacing:-25.249220px;}
.ws5{word-spacing:-25.249218px;}
.ws8{word-spacing:-19.953897px;}
.ws1{word-spacing:-13.327603px;}
.ws6{word-spacing:-13.327602px;}
.ws2{word-spacing:0.000000px;}
._9{margin-left:-10.825873px;}
._3{margin-left:-7.992000px;}
._7{margin-left:-6.551568px;}
._8{margin-left:-5.273496px;}
._5{margin-left:-3.948552px;}
._6{margin-left:-2.741400px;}
._0{margin-left:-1.255032px;}
._2{width:4.485600px;}
._1{width:5.764032px;}
._4{width:10.098937px;}
.fc5{color:rgb(126,172,39);}
.fc4{color:rgb(30,30,30);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(30,30,30);}
.fc3{color:rgb(21,37,54);}
.fc0{color:rgb(21,37,54);}
.fsa{font-size:47.969997px;}
.fs4{font-size:47.970002px;}
.fs6{font-size:59.984997px;}
.fs3{font-size:59.985003px;}
.fs7{font-size:71.819997px;}
.fs5{font-size:71.820004px;}
.fs8{font-size:71.999997px;}
.fsb{font-size:72.000002px;}
.fs1{font-size:72.000004px;}
.fs9{font-size:82.079997px;}
.fs2{font-size:82.080004px;}
.fs0{font-size:102.600005px;}
.y0{bottom:0.000000px;}
.y17{bottom:2.249978px;}
.ydb{bottom:2.250000px;}
.y15{bottom:2.250017px;}
.y16{bottom:20.879970px;}
.ydc{bottom:20.880022px;}
.y15a{bottom:24.749981px;}
.y1{bottom:41.129970px;}
.yc9{bottom:41.130021px;}
.y159{bottom:51.749982px;}
.y2d{bottom:75.849733px;}
.y62{bottom:103.499985px;}
.y151{bottom:107.999985px;}
.y2c{bottom:111.849735px;}
.y4e{bottom:124.224736px;}
.ye9{bottom:134.349736px;}
.y61{bottom:148.499987px;}
.y2b{bottom:148.974737px;}
.y150{bottom:152.999987px;}
.y4d{bottom:160.224737px;}
.y8b{bottom:160.874987px;}
.y158{bottom:165.374988px;}
.y60{bottom:175.499988px;}
.ybe{bottom:176.870988px;}
.y14f{bottom:179.999988px;}
.y5f{bottom:202.499990px;}
.y2a{bottom:203.624990px;}
.y14e{bottom:206.999990px;}
.ye8{bottom:207.474740px;}
.y120{bottom:208.124990px;}
.y157{bottom:210.374990px;}
.yc8{bottom:213.749990px;}
.y4c{bottom:214.874990px;}
.yf9{bottom:221.624991px;}
.y12b{bottom:224.999991px;}
.ya8{bottom:226.124991px;}
.y29{bottom:230.624991px;}
.ybd{bottom:235.370991px;}
.y156{bottom:237.374991px;}
.y4b{bottom:241.874992px;}
.y5e{bottom:244.124992px;}
.y14d{bottom:248.624992px;}
.y11f{bottom:253.124992px;}
.yc7{bottom:255.374992px;}
.y79{bottom:255.849742px;}
.y8a{bottom:261.474743px;}
.yf8{bottom:264.374993px;}
.y6d{bottom:266.624993px;}
.y13{bottom:271.124993px;}
.y28{bottom:273.374993px;}
.y11e{bottom:280.124993px;}
.ye7{bottom:280.599743px;}
.y4a{bottom:283.499994px;}
.y113{bottom:289.124994px;}
.y78{bottom:292.974744px;}
.ybc{bottom:293.870994px;}
.yc6{bottom:295.874994px;}
.ya7{bottom:298.124994px;}
.y89{bottom:298.599744px;}
.y49{bottom:305.999995px;}
.y11d{bottom:307.124995px;}
.y155{bottom:309.374995px;}
.y99{bottom:310.499995px;}
.y6c{bottom:311.624995px;}
.y12{bottom:312.749995px;}
.y116{bottom:316.124995px;}
.yc5{bottom:318.374995px;}
.ya6{bottom:325.124996px;}
.y112{bottom:334.124996px;}
.y9c{bottom:335.249996px;}
.y154{bottom:336.374996px;}
.y6b{bottom:338.624996px;}
.yc4{bottom:340.874996px;}
.y13f{bottom:341.999997px;}
.y115{bottom:343.124997px;}
.y77{bottom:347.624997px;}
.y11c{bottom:348.749997px;}
.ybb{bottom:352.370997px;}
.y88{bottom:353.249997px;}
.y98{bottom:355.974747px;}
.y10d{bottom:356.624997px;}
.y106{bottom:357.749997px;}
.y111{bottom:361.124998px;}
.ye6{bottom:362.249998px;}
.y6a{bottom:365.624998px;}
.ya5{bottom:366.749998px;}
.y76{bottom:374.624998px;}
.y153{bottom:379.124998px;}
.y87{bottom:380.249998px;}
.y10c{bottom:383.624999px;}
.y110{bottom:388.124999px;}
.ya4{bottom:389.249999px;}
.y97{bottom:393.099749px;}
.y105{bottom:402.750000px;}
.ye5{bottom:403.875000px;}
.y11{bottom:407.250000px;}
.y27{bottom:408.849750px;}
.y10b{bottom:410.625000px;}
.yba{bottom:410.871000px;}
.y75{bottom:416.250000px;}
.y35{bottom:418.974750px;}
.y86{bottom:425.250001px;}
.yd9{bottom:426.374982px;}
.ye4{bottom:426.375001px;}
.y96{bottom:429.099751px;}
.y69{bottom:429.750001px;}
.y5d{bottom:430.875001px;}
.y9b{bottom:434.250001px;}
.y136{bottom:439.875001px;}
.y48{bottom:442.370252px;}
.y26{bottom:445.974752px;}
.y85{bottom:452.250002px;}
.y34{bottom:456.099752px;}
.y104{bottom:456.750002px;}
.y148{bottom:463.500003px;}
.y95{bottom:466.224753px;}
.yb9{bottom:468.246003px;}
.y10{bottom:470.250003px;}
.yd8{bottom:471.374980px;}
.y5c{bottom:475.875003px;}
.yc3{bottom:477.474753px;}
.y84{bottom:479.250003px;}
.yf1{bottom:481.974754px;}
.y25{bottom:483.099754px;}
.y135{bottom:484.875004px;}
.y33{bottom:492.099754px;}
.yf7{bottom:492.750004px;}
.y14c{bottom:493.875004px;}
.yd7{bottom:498.374979px;}
.y103{bottom:498.375004px;}
.y47{bottom:500.185129px;}
.y5b{bottom:502.875005px;}
.y147{bottom:508.500005px;}
.y134{bottom:511.875005px;}
.yc2{bottom:513.474755px;}
.yf{bottom:515.250005px;}
.y8c{bottom:515.724755px;}
.y24{bottom:519.099755px;}
.y83{bottom:520.875005px;}
.yd6{bottom:525.374978px;}
.yb8{bottom:526.746006px;}
.y32{bottom:529.224756px;}
.y5a{bottom:529.875006px;}
.y46{bottom:533.935131px;}
.yb0{bottom:535.500006px;}
.yf6{bottom:537.750006px;}
.y133{bottom:538.875006px;}
.y82{bottom:543.375007px;}
.y94{bottom:547.875007px;}
.yc1{bottom:550.599757px;}
.y74{bottom:551.724757px;}
.yf0{bottom:555.099757px;}
.y23{bottom:556.224757px;}
.ye{bottom:560.250007px;}
.y146{bottom:562.500008px;}
.yf5{bottom:564.750008px;}
.y31{bottom:565.224758px;}
.y81{bottom:565.875008px;}
.y45{bottom:566.560133px;}
.yd5{bottom:566.999976px;}
.y59{bottom:571.500008px;}
.ya3{bottom:576.000008px;}
.yaf{bottom:577.125008px;}
.y12c{bottom:578.250008px;}
.y11b{bottom:580.500008px;}
.y132{bottom:583.875009px;}
.yb7{bottom:585.246009px;}
.yd{bottom:587.250009px;}
.y73{bottom:588.849759px;}
.yd4{bottom:589.499975px;}
.y93{bottom:589.500009px;}
.yf4{bottom:591.750009px;}
.y22{bottom:592.224759px;}
.y14b{bottom:592.875009px;}
.y114{bottom:594.000009px;}
.y102{bottom:597.375009px;}
.y44{bottom:600.310134px;}
.y128{bottom:600.750009px;}
.yc0{bottom:605.250010px;}
.y11a{bottom:607.500010px;}
.yef{bottom:609.750010px;}
.y131{bottom:610.875010px;}
.y92{bottom:612.000010px;}
.y68{bottom:616.500010px;}
.y30{bottom:619.875010px;}
.ya2{bottom:621.000010px;}
.y12a{bottom:623.250011px;}
.y101{bottom:624.375011px;}
.yc{bottom:632.250011px;}
.y43{bottom:632.935136px;}
.y119{bottom:634.500011px;}
.yee{bottom:636.750011px;}
.y14a{bottom:637.875011px;}
.y10a{bottom:639.000011px;}
.y127{bottom:642.375012px;}
.y72{bottom:643.500012px;}
.yb6{bottom:643.746012px;}
.y21{bottom:646.875012px;}
.ya1{bottom:648.000012px;}
.y123{bottom:653.625012px;}
.yf3{bottom:655.875012px;}
.yb{bottom:659.250012px;}
.y2f{bottom:661.500013px;}
.y13e{bottom:663.750013px;}
.y100{bottom:664.875013px;}
.y42{bottom:665.560138px;}
.y58{bottom:666.000013px;}
.y71{bottom:670.500013px;}
.yae{bottom:671.625013px;}
.y20{bottom:673.875013px;}
.ya0{bottom:675.000013px;}
.y118{bottom:676.125013px;}
.yed{bottom:678.375013px;}
.yd3{bottom:683.999971px;}
.y109{bottom:684.000014px;}
.y126{bottom:687.375014px;}
.y67{bottom:688.500014px;}
.y2e{bottom:693.000014px;}
.ybf{bottom:696.375014px;}
.y122{bottom:698.625014px;}
.y41{bottom:699.310139px;}
.yec{bottom:700.875014px;}
.yb5{bottom:701.121015px;}
.y80{bottom:701.349765px;}
.ya{bottom:704.250015px;}
.y13d{bottom:706.500015px;}
.y149{bottom:707.625015px;}
.y129{bottom:709.875015px;}
.y108{bottom:711.000015px;}
.y1f{bottom:715.500015px;}
.y9f{bottom:716.625015px;}
.y121{bottom:721.125016px;}
.y40{bottom:731.935141px;}
.y152{bottom:736.875016px;}
.y107{bottom:738.000016px;}
.y7f{bottom:738.474766px;}
.y70{bottom:742.500017px;}
.y91{bottom:747.474767px;}
.y9{bottom:749.250017px;}
.y66{bottom:757.125017px;}
.yb4{bottom:759.621017px;}
.yff{bottom:765.474768px;}
.y3f{bottom:765.685143px;}
.y57{bottom:766.810143px;}
.y6f{bottom:769.500018px;}
.y117{bottom:770.625018px;}
.y7e{bottom:774.474768px;}
.y65{bottom:779.625018px;}
.yd2{bottom:784.371005px;}
.y90{bottom:784.599769px;}
.y8{bottom:794.250019px;}
.y3e{bottom:798.310144px;}
.y56{bottom:799.435144px;}
.yfe{bottom:802.125020px;}
.y1e{bottom:810.000020px;}
.y6e{bottom:811.125020px;}
.y7d{bottom:811.599770px;}
.yf2{bottom:814.974770px;}
.ye3{bottom:815.625020px;}
.yb3{bottom:818.121020px;}
.y8f{bottom:820.599770px;}
.yad{bottom:822.375021px;}
.yfd{bottom:828.474771px;}
.y55{bottom:832.060146px;}
.yeb{bottom:837.474771px;}
.y130{bottom:840.375021px;}
.yd1{bottom:841.974602px;}
.ye0{bottom:842.625022px;}
.y7c{bottom:847.599772px;}
.y3d{bottom:849.375022px;}
.y8e{bottom:857.250022px;}
.ye2{bottom:861.099772px;}
.y145{bottom:862.875023px;}
.y9a{bottom:865.125023px;}
.yfc{bottom:865.599773px;}
.y54{bottom:865.810148px;}
.yac{bottom:867.375023px;}
.yea{bottom:873.474773px;}
.y3c{bottom:876.375023px;}
.yd0{bottom:879.099601px;}
.y8d{bottom:884.724624px;}
.y7b{bottom:884.724774px;}
.y12f{bottom:885.375024px;}
.ydf{bottom:888.099774px;}
.y13c{bottom:893.250024px;}
.yab{bottom:894.375024px;}
.ye1{bottom:897.750024px;}
.y53{bottom:898.435149px;}
.yfb{bottom:901.599775px;}
.y9e{bottom:903.375025px;}
.y144{bottom:907.875025px;}
.y1d{bottom:910.599775px;}
.y12e{bottom:912.375025px;}
.ycf{bottom:915.099599px;}
.y3b{bottom:921.375026px;}
.yde{bottom:924.099776px;}
.y7{bottom:929.250026px;}
.y52{bottom:932.185151px;}
.y143{bottom:934.875026px;}
.y13b{bottom:938.250026px;}
.yfa{bottom:938.724776px;}
.y7a{bottom:939.375026px;}
.y10f{bottom:943.875027px;}
.y1c{bottom:946.599777px;}
.y3a{bottom:948.375027px;}
.yce{bottom:952.224598px;}
.ydd{bottom:961.224778px;}
.y142{bottom:961.875028px;}
.y51{bottom:964.810153px;}
.y13a{bottom:965.250028px;}
.y64{bottom:966.375028px;}
.y6{bottom:974.250028px;}
.y39{bottom:975.375028px;}
.y1b{bottom:983.724779px;}
.y12d{bottom:984.375029px;}
.y10e{bottom:988.875029px;}
.yb2{bottom:990.000029px;}
.y139{bottom:992.250029px;}
.yaa{bottom:993.375029px;}
.y125{bottom:997.875029px;}
.y38{bottom:1002.375030px;}
.ycd{bottom:1006.874958px;}
.y141{bottom:1006.875030px;}
.y63{bottom:1011.375030px;}
.y50{bottom:1015.875030px;}
.y5{bottom:1019.250030px;}
.ya9{bottom:1020.375030px;}
.ycc{bottom:1033.874957px;}
.y140{bottom:1033.875031px;}
.y138{bottom:1037.250031px;}
.y1a{bottom:1038.375031px;}
.y124{bottom:1039.500031px;}
.y4f{bottom:1042.875032px;}
.y37{bottom:1044.000032px;}
.y4{bottom:1060.875032px;}
.yb1{bottom:1062.000033px;}
.y137{bottom:1064.250033px;}
.y19{bottom:1065.375033px;}
.y9d{bottom:1066.500033px;}
.ycb{bottom:1075.499955px;}
.y36{bottom:1084.500034px;}
.y3{bottom:1090.125034px;}
.yca{bottom:1106.999954px;}
.y18{bottom:1107.000035px;}
.y2{bottom:1119.375035px;}
.y15c{bottom:1134.000015px;}
.y15b{bottom:1161.000016px;}
.y14{bottom:1228.004970px;}
.yda{bottom:1228.004971px;}
.h7{height:13.500000px;}
.h6{height:40.653899px;}
.h11{height:41.247639px;}
.h8{height:41.247643px;}
.hb{height:45.867439px;}
.hd{height:54.830036px;}
.ha{height:54.830042px;}
.h12{height:55.054690px;}
.hf{height:61.910154px;}
.h13{height:61.910158px;}
.h4{height:61.910159px;}
.h10{height:62.762341px;}
.h5{height:62.762347px;}
.he{height:65.647966px;}
.h9{height:65.647972px;}
.h3{height:78.452934px;}
.hc{height:1180.124951px;}
.h2{height:1180.125000px;}
.h0{height:1262.879970px;}
.h1{height:1263.000000px;}
.w5{width:70.064940px;}
.w9{width:75.689940px;}
.w7{width:76.814940px;}
.we{width:76.814974px;}
.wb{width:130.499995px;}
.w3{width:761.939940px;}
.wc{width:761.939945px;}
.wa{width:767.249968px;}
.w2{width:767.250000px;}
.wd{width:815.624966px;}
.w6{width:815.625000px;}
.w8{width:816.750000px;}
.w4{width:822.375000px;}
.w0{width:892.439940px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x6{left:8.789127px;}
.x2{left:28.125003px;}
.x4{left:37.898405px;}
.x1{left:41.625000px;}
.x7{left:56.900255px;}
.x3{left:130.500000px;}
.xa{left:157.253860px;}
.x8{left:815.625000px;}
.x9{left:816.750000px;}
.x5{left:822.375000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws3{word-spacing:-48.000002pt;}
.ws0{word-spacing:-31.171877pt;}
.ws4{word-spacing:-24.937499pt;}
.ws7{word-spacing:-22.443751pt;}
.ws5{word-spacing:-22.443749pt;}
.ws8{word-spacing:-17.736798pt;}
.ws1{word-spacing:-11.846758pt;}
.ws6{word-spacing:-11.846757pt;}
.ws2{word-spacing:0.000000pt;}
._9{margin-left:-9.622998pt;}
._3{margin-left:-7.104000pt;}
._7{margin-left:-5.823616pt;}
._8{margin-left:-4.687552pt;}
._5{margin-left:-3.509824pt;}
._6{margin-left:-2.436800pt;}
._0{margin-left:-1.115584pt;}
._2{width:3.987200pt;}
._1{width:5.123584pt;}
._4{width:8.976832pt;}
.fsa{font-size:42.639997pt;}
.fs4{font-size:42.640001pt;}
.fs6{font-size:53.319997pt;}
.fs3{font-size:53.320003pt;}
.fs7{font-size:63.839997pt;}
.fs5{font-size:63.840003pt;}
.fs8{font-size:63.999997pt;}
.fsb{font-size:64.000002pt;}
.fs1{font-size:64.000003pt;}
.fs9{font-size:72.959997pt;}
.fs2{font-size:72.960004pt;}
.fs0{font-size:91.200005pt;}
.y0{bottom:0.000000pt;}
.y17{bottom:1.999981pt;}
.ydb{bottom:2.000000pt;}
.y15{bottom:2.000015pt;}
.y16{bottom:18.559973pt;}
.ydc{bottom:18.560019pt;}
.y15a{bottom:21.999983pt;}
.y1{bottom:36.559973pt;}
.yc9{bottom:36.560019pt;}
.y159{bottom:45.999984pt;}
.y2d{bottom:67.421985pt;}
.y62{bottom:91.999986pt;}
.y151{bottom:95.999987pt;}
.y2c{bottom:99.421987pt;}
.y4e{bottom:110.421987pt;}
.ye9{bottom:119.421988pt;}
.y61{bottom:131.999988pt;}
.y2b{bottom:132.421988pt;}
.y150{bottom:135.999989pt;}
.y4d{bottom:142.421989pt;}
.y8b{bottom:142.999989pt;}
.y158{bottom:146.999989pt;}
.y60{bottom:155.999990pt;}
.ybe{bottom:157.218656pt;}
.y14f{bottom:159.999990pt;}
.y5f{bottom:179.999991pt;}
.y2a{bottom:180.999991pt;}
.y14e{bottom:183.999991pt;}
.ye8{bottom:184.421991pt;}
.y120{bottom:184.999991pt;}
.y157{bottom:186.999991pt;}
.yc8{bottom:189.999991pt;}
.y4c{bottom:190.999991pt;}
.yf9{bottom:196.999992pt;}
.y12b{bottom:199.999992pt;}
.ya8{bottom:200.999992pt;}
.y29{bottom:204.999992pt;}
.ybd{bottom:209.218659pt;}
.y156{bottom:210.999992pt;}
.y4b{bottom:214.999992pt;}
.y5e{bottom:216.999993pt;}
.y14d{bottom:220.999993pt;}
.y11f{bottom:224.999993pt;}
.yc7{bottom:226.999993pt;}
.y79{bottom:227.421993pt;}
.y8a{bottom:232.421993pt;}
.yf8{bottom:234.999993pt;}
.y6d{bottom:236.999994pt;}
.y13{bottom:240.999994pt;}
.y28{bottom:242.999994pt;}
.y11e{bottom:248.999994pt;}
.ye7{bottom:249.421994pt;}
.y4a{bottom:251.999994pt;}
.y113{bottom:256.999995pt;}
.y78{bottom:260.421995pt;}
.ybc{bottom:261.218661pt;}
.yc6{bottom:262.999995pt;}
.ya7{bottom:264.999995pt;}
.y89{bottom:265.421995pt;}
.y49{bottom:271.999995pt;}
.y11d{bottom:272.999995pt;}
.y155{bottom:274.999995pt;}
.y99{bottom:275.999996pt;}
.y6c{bottom:276.999996pt;}
.y12{bottom:277.999996pt;}
.y116{bottom:280.999996pt;}
.yc5{bottom:282.999996pt;}
.ya6{bottom:288.999996pt;}
.y112{bottom:296.999997pt;}
.y9c{bottom:297.999997pt;}
.y154{bottom:298.999997pt;}
.y6b{bottom:300.999997pt;}
.yc4{bottom:302.999997pt;}
.y13f{bottom:303.999997pt;}
.y115{bottom:304.999997pt;}
.y77{bottom:308.999997pt;}
.y11c{bottom:309.999997pt;}
.ybb{bottom:313.218664pt;}
.y88{bottom:313.999997pt;}
.y98{bottom:316.421998pt;}
.y10d{bottom:316.999998pt;}
.y106{bottom:317.999998pt;}
.y111{bottom:320.999998pt;}
.ye6{bottom:321.999998pt;}
.y6a{bottom:324.999998pt;}
.ya5{bottom:325.999998pt;}
.y76{bottom:332.999998pt;}
.y153{bottom:336.999999pt;}
.y87{bottom:337.999999pt;}
.y10c{bottom:340.999999pt;}
.y110{bottom:344.999999pt;}
.ya4{bottom:345.999999pt;}
.y97{bottom:349.421999pt;}
.y105{bottom:358.000000pt;}
.ye5{bottom:359.000000pt;}
.y11{bottom:362.000000pt;}
.y27{bottom:363.422000pt;}
.y10b{bottom:365.000000pt;}
.yba{bottom:365.218667pt;}
.y75{bottom:370.000000pt;}
.y35{bottom:372.422000pt;}
.y86{bottom:378.000001pt;}
.yd9{bottom:378.999984pt;}
.ye4{bottom:379.000001pt;}
.y96{bottom:381.422001pt;}
.y69{bottom:382.000001pt;}
.y5d{bottom:383.000001pt;}
.y9b{bottom:386.000001pt;}
.y136{bottom:391.000001pt;}
.y48{bottom:393.218001pt;}
.y26{bottom:396.422002pt;}
.y85{bottom:402.000002pt;}
.y34{bottom:405.422002pt;}
.y104{bottom:406.000002pt;}
.y148{bottom:412.000002pt;}
.y95{bottom:414.422002pt;}
.yb9{bottom:416.218669pt;}
.y10{bottom:418.000003pt;}
.yd8{bottom:418.999983pt;}
.y5c{bottom:423.000003pt;}
.yc3{bottom:424.422003pt;}
.y84{bottom:426.000003pt;}
.yf1{bottom:428.422003pt;}
.y25{bottom:429.422003pt;}
.y135{bottom:431.000003pt;}
.y33{bottom:437.422004pt;}
.yf7{bottom:438.000004pt;}
.y14c{bottom:439.000004pt;}
.yd7{bottom:442.999982pt;}
.y103{bottom:443.000004pt;}
.y47{bottom:444.609004pt;}
.y5b{bottom:447.000004pt;}
.y147{bottom:452.000004pt;}
.y134{bottom:455.000004pt;}
.yc2{bottom:456.422005pt;}
.yf{bottom:458.000005pt;}
.y8c{bottom:458.422005pt;}
.y24{bottom:461.422005pt;}
.y83{bottom:463.000005pt;}
.yd6{bottom:466.999981pt;}
.yb8{bottom:468.218672pt;}
.y32{bottom:470.422005pt;}
.y5a{bottom:471.000005pt;}
.y46{bottom:474.609005pt;}
.yb0{bottom:476.000006pt;}
.yf6{bottom:478.000006pt;}
.y133{bottom:479.000006pt;}
.y82{bottom:483.000006pt;}
.y94{bottom:487.000006pt;}
.yc1{bottom:489.422006pt;}
.y74{bottom:490.422006pt;}
.yf0{bottom:493.422006pt;}
.y23{bottom:494.422006pt;}
.ye{bottom:498.000007pt;}
.y146{bottom:500.000007pt;}
.yf5{bottom:502.000007pt;}
.y31{bottom:502.422007pt;}
.y81{bottom:503.000007pt;}
.y45{bottom:503.609007pt;}
.yd5{bottom:503.999979pt;}
.y59{bottom:508.000007pt;}
.ya3{bottom:512.000007pt;}
.yaf{bottom:513.000007pt;}
.y12c{bottom:514.000007pt;}
.y11b{bottom:516.000008pt;}
.y132{bottom:519.000008pt;}
.yb7{bottom:520.218674pt;}
.yd{bottom:522.000008pt;}
.y73{bottom:523.422008pt;}
.yd4{bottom:523.999978pt;}
.y93{bottom:524.000008pt;}
.yf4{bottom:526.000008pt;}
.y22{bottom:526.422008pt;}
.y14b{bottom:527.000008pt;}
.y114{bottom:528.000008pt;}
.y102{bottom:531.000008pt;}
.y44{bottom:533.609008pt;}
.y128{bottom:534.000008pt;}
.yc0{bottom:538.000009pt;}
.y11a{bottom:540.000009pt;}
.yef{bottom:542.000009pt;}
.y131{bottom:543.000009pt;}
.y92{bottom:544.000009pt;}
.y68{bottom:548.000009pt;}
.y30{bottom:551.000009pt;}
.ya2{bottom:552.000009pt;}
.y12a{bottom:554.000009pt;}
.y101{bottom:555.000009pt;}
.yc{bottom:562.000010pt;}
.y43{bottom:562.609010pt;}
.y119{bottom:564.000010pt;}
.yee{bottom:566.000010pt;}
.y14a{bottom:567.000010pt;}
.y10a{bottom:568.000010pt;}
.y127{bottom:571.000010pt;}
.y72{bottom:572.000010pt;}
.yb6{bottom:572.218677pt;}
.y21{bottom:575.000010pt;}
.ya1{bottom:576.000011pt;}
.y123{bottom:581.000011pt;}
.yf3{bottom:583.000011pt;}
.yb{bottom:586.000011pt;}
.y2f{bottom:588.000011pt;}
.y13e{bottom:590.000011pt;}
.y100{bottom:591.000011pt;}
.y42{bottom:591.609011pt;}
.y58{bottom:592.000011pt;}
.y71{bottom:596.000012pt;}
.yae{bottom:597.000012pt;}
.y20{bottom:599.000012pt;}
.ya0{bottom:600.000012pt;}
.y118{bottom:601.000012pt;}
.yed{bottom:603.000012pt;}
.yd3{bottom:607.999975pt;}
.y109{bottom:608.000012pt;}
.y126{bottom:611.000012pt;}
.y67{bottom:612.000012pt;}
.y2e{bottom:616.000013pt;}
.ybf{bottom:619.000013pt;}
.y122{bottom:621.000013pt;}
.y41{bottom:621.609013pt;}
.yec{bottom:623.000013pt;}
.yb5{bottom:623.218680pt;}
.y80{bottom:623.422013pt;}
.ya{bottom:626.000013pt;}
.y13d{bottom:628.000013pt;}
.y149{bottom:629.000013pt;}
.y129{bottom:631.000013pt;}
.y108{bottom:632.000013pt;}
.y1f{bottom:636.000014pt;}
.y9f{bottom:637.000014pt;}
.y121{bottom:641.000014pt;}
.y40{bottom:650.609014pt;}
.y152{bottom:655.000014pt;}
.y107{bottom:656.000015pt;}
.y7f{bottom:656.422015pt;}
.y70{bottom:660.000015pt;}
.y91{bottom:664.422015pt;}
.y9{bottom:666.000015pt;}
.y66{bottom:673.000015pt;}
.yb4{bottom:675.218682pt;}
.yff{bottom:680.422016pt;}
.y3f{bottom:680.609016pt;}
.y57{bottom:681.609016pt;}
.y6f{bottom:684.000016pt;}
.y117{bottom:685.000016pt;}
.y7e{bottom:688.422016pt;}
.y65{bottom:693.000016pt;}
.yd2{bottom:697.218671pt;}
.y90{bottom:697.422017pt;}
.y8{bottom:706.000017pt;}
.y3e{bottom:709.609017pt;}
.y56{bottom:710.609017pt;}
.yfe{bottom:713.000017pt;}
.y1e{bottom:720.000018pt;}
.y6e{bottom:721.000018pt;}
.y7d{bottom:721.422018pt;}
.yf2{bottom:724.422018pt;}
.ye3{bottom:725.000018pt;}
.yb3{bottom:727.218685pt;}
.y8f{bottom:729.422018pt;}
.yad{bottom:731.000018pt;}
.yfd{bottom:736.422019pt;}
.y55{bottom:739.609019pt;}
.yeb{bottom:744.422019pt;}
.y130{bottom:747.000019pt;}
.yd1{bottom:748.421869pt;}
.ye0{bottom:749.000019pt;}
.y7c{bottom:753.422019pt;}
.y3d{bottom:755.000019pt;}
.y8e{bottom:762.000020pt;}
.ye2{bottom:765.422020pt;}
.y145{bottom:767.000020pt;}
.y9a{bottom:769.000020pt;}
.yfc{bottom:769.422020pt;}
.y54{bottom:769.609020pt;}
.yac{bottom:771.000020pt;}
.yea{bottom:776.422021pt;}
.y3c{bottom:779.000021pt;}
.yd0{bottom:781.421867pt;}
.y8d{bottom:786.421888pt;}
.y7b{bottom:786.422021pt;}
.y12f{bottom:787.000021pt;}
.ydf{bottom:789.422021pt;}
.y13c{bottom:794.000021pt;}
.yab{bottom:795.000021pt;}
.ye1{bottom:798.000022pt;}
.y53{bottom:798.609022pt;}
.yfb{bottom:801.422022pt;}
.y9e{bottom:803.000022pt;}
.y144{bottom:807.000022pt;}
.y1d{bottom:809.422022pt;}
.y12e{bottom:811.000022pt;}
.ycf{bottom:813.421866pt;}
.y3b{bottom:819.000023pt;}
.yde{bottom:821.422023pt;}
.y7{bottom:826.000023pt;}
.y52{bottom:828.609023pt;}
.y143{bottom:831.000023pt;}
.y13b{bottom:834.000023pt;}
.yfa{bottom:834.422023pt;}
.y7a{bottom:835.000023pt;}
.y10f{bottom:839.000024pt;}
.y1c{bottom:841.422024pt;}
.y3a{bottom:843.000024pt;}
.yce{bottom:846.421865pt;}
.ydd{bottom:854.422024pt;}
.y142{bottom:855.000024pt;}
.y51{bottom:857.609025pt;}
.y13a{bottom:858.000025pt;}
.y64{bottom:859.000025pt;}
.y6{bottom:866.000025pt;}
.y39{bottom:867.000025pt;}
.y1b{bottom:874.422025pt;}
.y12d{bottom:875.000025pt;}
.y10e{bottom:879.000026pt;}
.yb2{bottom:880.000026pt;}
.y139{bottom:882.000026pt;}
.yaa{bottom:883.000026pt;}
.y125{bottom:887.000026pt;}
.y38{bottom:891.000026pt;}
.ycd{bottom:894.999963pt;}
.y141{bottom:895.000026pt;}
.y63{bottom:899.000027pt;}
.y50{bottom:903.000027pt;}
.y5{bottom:906.000027pt;}
.ya9{bottom:907.000027pt;}
.ycc{bottom:918.999962pt;}
.y140{bottom:919.000028pt;}
.y138{bottom:922.000028pt;}
.y1a{bottom:923.000028pt;}
.y124{bottom:924.000028pt;}
.y4f{bottom:927.000028pt;}
.y37{bottom:928.000028pt;}
.y4{bottom:943.000029pt;}
.yb1{bottom:944.000029pt;}
.y137{bottom:946.000029pt;}
.y19{bottom:947.000029pt;}
.y9d{bottom:948.000029pt;}
.ycb{bottom:955.999960pt;}
.y36{bottom:964.000030pt;}
.y3{bottom:969.000030pt;}
.yca{bottom:983.999959pt;}
.y18{bottom:984.000031pt;}
.y2{bottom:995.000031pt;}
.y15c{bottom:1008.000013pt;}
.y15b{bottom:1032.000014pt;}
.y14{bottom:1091.559973pt;}
.yda{bottom:1091.559975pt;}
.h7{height:12.000000pt;}
.h6{height:36.136799pt;}
.h11{height:36.664568pt;}
.h8{height:36.664571pt;}
.hb{height:40.771057pt;}
.hd{height:48.737810pt;}
.ha{height:48.737815pt;}
.h12{height:48.937502pt;}
.hf{height:55.031248pt;}
.h13{height:55.031252pt;}
.h4{height:55.031253pt;}
.h10{height:55.788748pt;}
.h5{height:55.788753pt;}
.he{height:58.353748pt;}
.h9{height:58.353753pt;}
.h3{height:69.735941pt;}
.hc{height:1048.999956pt;}
.h2{height:1049.000000pt;}
.h0{height:1122.559973pt;}
.h1{height:1122.666667pt;}
.w5{width:62.279947pt;}
.w9{width:67.279947pt;}
.w7{width:68.279947pt;}
.we{width:68.279977pt;}
.wb{width:115.999995pt;}
.w3{width:677.279947pt;}
.wc{width:677.279951pt;}
.wa{width:681.999972pt;}
.w2{width:682.000000pt;}
.wd{width:724.999970pt;}
.w6{width:725.000000pt;}
.w8{width:726.000000pt;}
.w4{width:731.000000pt;}
.w0{width:793.279947pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x6{left:7.812557pt;}
.x2{left:25.000003pt;}
.x4{left:33.687471pt;}
.x1{left:37.000000pt;}
.x7{left:50.578004pt;}
.x3{left:116.000000pt;}
.xa{left:139.781209pt;}
.x8{left:725.000000pt;}
.x9{left:726.000000pt;}
.x5{left:731.000000pt;}
}




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