
    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_b871c1144b19690ddbd8d815.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_b34112da2e1965bb86154da1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910156;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_4af56f21a900df8be2bcc020.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.900391;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_6063114de1bf12d287af2762.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_8f7cba086f2a984611c60d94.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.693359;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;}
.ls2{letter-spacing:0.096000px;}
.ls1{letter-spacing:105.240000px;}
.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;}
}
.ws1{word-spacing:-18.000000px;}
.ws5{word-spacing:-0.072000px;}
.ws0{word-spacing:0.000000px;}
.ws4{word-spacing:130.800000px;}
.ws3{word-spacing:190.200000px;}
.ws2{word-spacing:730.200000px;}
._7{margin-left:-9.144000px;}
._b{margin-left:-7.128000px;}
._a{margin-left:-6.000000px;}
._8{margin-left:-4.776000px;}
._2{margin-left:-3.624000px;}
._5{margin-left:-2.472000px;}
._1{margin-left:-1.200000px;}
._0{width:1.032000px;}
._9{width:148.800000px;}
._6{width:179.400000px;}
._c{width:184.800000px;}
._4{width:208.200000px;}
._3{width:748.200000px;}
.fc3{color:rgb(0,0,128);}
.fc2{color:rgb(17,17,17);}
.fc1{color:rgb(20,20,20);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.150000px;}
.y132{bottom:91.200000px;}
.y3b{bottom:94.350000px;}
.y115{bottom:100.800000px;}
.yc9{bottom:102.900000px;}
.y11d{bottom:111.000000px;}
.y4b{bottom:111.900000px;}
.y8b{bottom:118.950000px;}
.ya2{bottom:120.450000px;}
.y3a{bottom:125.400000px;}
.yc8{bottom:133.950000px;}
.yf3{bottom:138.450000px;}
.y11c{bottom:142.500000px;}
.y4a{bottom:142.950000px;}
.y45{bottom:149.250000px;}
.y8a{bottom:150.000000px;}
.ya1{bottom:151.500000px;}
.y131{bottom:154.200000px;}
.y36{bottom:156.450000px;}
.y146{bottom:163.200000px;}
.yc7{bottom:165.000000px;}
.ye2{bottom:165.900000px;}
.yf2{bottom:169.500000px;}
.y102{bottom:172.050000px;}
.y11b{bottom:174.000000px;}
.y44{bottom:180.300000px;}
.ya0{bottom:182.550000px;}
.y89{bottom:182.850000px;}
.y130{bottom:185.700000px;}
.y35{bottom:187.500000px;}
.y114{bottom:193.950000px;}
.y145{bottom:194.700000px;}
.ye1{bottom:196.950000px;}
.yf1{bottom:200.550000px;}
.y101{bottom:203.100000px;}
.y65{bottom:210.300000px;}
.y50{bottom:210.750000px;}
.y43{bottom:211.350000px;}
.y9f{bottom:213.600000px;}
.y88{bottom:213.900000px;}
.y12f{bottom:217.200000px;}
.y34{bottom:218.550000px;}
.y113{bottom:225.000000px;}
.y144{bottom:226.200000px;}
.yc6{bottom:227.100000px;}
.ye0{bottom:228.000000px;}
.yf0{bottom:231.600000px;}
.y100{bottom:234.150000px;}
.y11a{bottom:237.000000px;}
.y64{bottom:237.300000px;}
.y4f{bottom:237.750000px;}
.y42{bottom:242.400000px;}
.y9e{bottom:244.650000px;}
.y87{bottom:244.950000px;}
.y33{bottom:249.600000px;}
.y112{bottom:256.050000px;}
.y143{bottom:257.700000px;}
.yc5{bottom:258.150000px;}
.ydf{bottom:259.050000px;}
.y63{bottom:264.300000px;}
.y4e{bottom:264.750000px;}
.yff{bottom:265.200000px;}
.y119{bottom:268.500000px;}
.y41{bottom:273.450000px;}
.y9d{bottom:275.700000px;}
.y86{bottom:276.000000px;}
.y12e{bottom:280.200000px;}
.y32{bottom:280.650000px;}
.y111{bottom:287.100000px;}
.yc4{bottom:289.200000px;}
.yde{bottom:290.100000px;}
.y62{bottom:291.300000px;}
.y4d{bottom:291.750000px;}
.yef{bottom:293.700000px;}
.yfe{bottom:296.250000px;}
.y118{bottom:300.000000px;}
.ybf{bottom:306.750000px;}
.y85{bottom:307.050000px;}
.y1f{bottom:309.900000px;}
.y31{bottom:311.700000px;}
.y6e{bottom:316.800000px;}
.y110{bottom:318.150000px;}
.y4c{bottom:318.750000px;}
.yc3{bottom:320.250000px;}
.y142{bottom:320.700000px;}
.ydd{bottom:321.150000px;}
.yee{bottom:324.750000px;}
.yfd{bottom:328.950000px;}
.y117{bottom:331.500000px;}
.y40{bottom:335.550000px;}
.y9c{bottom:337.800000px;}
.y84{bottom:338.100000px;}
.y30{bottom:342.750000px;}
.y12d{bottom:343.200000px;}
.y6d{bottom:343.800000px;}
.y10f{bottom:349.200000px;}
.y10{bottom:350.850000px;}
.yc2{bottom:351.300000px;}
.ydc{bottom:352.200000px;}
.yed{bottom:355.800000px;}
.yfc{bottom:360.000000px;}
.y116{bottom:363.000000px;}
.y3f{bottom:366.600000px;}
.y9b{bottom:368.850000px;}
.y83{bottom:369.150000px;}
.y6c{bottom:370.800000px;}
.y1e{bottom:372.000000px;}
.y2f{bottom:373.800000px;}
.y12c{bottom:374.700000px;}
.y10e{bottom:382.050000px;}
.yc1{bottom:382.350000px;}
.ydb{bottom:383.250000px;}
.y141{bottom:383.700000px;}
.yec{bottom:386.850000px;}
.yfb{bottom:391.050000px;}
.y3e{bottom:397.650000px;}
.y9a{bottom:399.900000px;}
.y82{bottom:401.850000px;}
.yb6{bottom:403.050000px;}
.y2e{bottom:404.850000px;}
.y12b{bottom:406.200000px;}
.ybe{bottom:408.900000px;}
.y10d{bottom:413.100000px;}
.yc0{bottom:413.400000px;}
.y3d{bottom:428.700000px;}
.y99{bottom:430.950000px;}
.y81{bottom:432.900000px;}
.yb5{bottom:434.100000px;}
.y2d{bottom:435.900000px;}
.y6b{bottom:442.800000px;}
.y1d{bottom:443.100000px;}
.y10c{bottom:444.150000px;}
.y140{bottom:446.700000px;}
.yeb{bottom:448.950000px;}
.yfa{bottom:453.150000px;}
.yda{bottom:463.350000px;}
.y80{bottom:463.950000px;}
.yb4{bottom:465.150000px;}
.y39{bottom:466.950000px;}
.y12a{bottom:469.200000px;}
.y6a{bottom:469.800000px;}
.y10b{bottom:475.200000px;}
.y13f{bottom:478.200000px;}
.ybd{bottom:480.000000px;}
.y1c{bottom:483.150000px;}
.yf9{bottom:484.200000px;}
.y49{bottom:491.400000px;}
.y98{bottom:493.050000px;}
.yd9{bottom:494.400000px;}
.y7f{bottom:495.000000px;}
.y69{bottom:496.800000px;}
.y2c{bottom:498.000000px;}
.y129{bottom:500.700000px;}
.y10a{bottom:506.250000px;}
.y13e{bottom:509.700000px;}
.ybc{bottom:511.050000px;}
.yf8{bottom:515.250000px;}
.y48{bottom:522.450000px;}
.y1b{bottom:523.200000px;}
.y68{bottom:523.800000px;}
.y97{bottom:524.100000px;}
.yd8{bottom:525.450000px;}
.yb3{bottom:527.250000px;}
.y7e{bottom:527.850000px;}
.y2b{bottom:529.050000px;}
.y128{bottom:532.200000px;}
.y109{bottom:537.300000px;}
.ybb{bottom:542.100000px;}
.yf7{bottom:546.300000px;}
.y67{bottom:550.800000px;}
.y47{bottom:553.500000px;}
.y96{bottom:555.150000px;}
.yd7{bottom:556.500000px;}
.yb2{bottom:558.300000px;}
.y7d{bottom:558.900000px;}
.y2a{bottom:560.100000px;}
.y1a{bottom:563.250000px;}
.y127{bottom:563.700000px;}
.y56{bottom:564.900000px;}
.y108{bottom:568.350000px;}
.y13d{bottom:572.700000px;}
.yf6{bottom:577.350000px;}
.y66{bottom:577.800000px;}
.yba{bottom:582.150000px;}
.y46{bottom:584.550000px;}
.yd6{bottom:587.550000px;}
.yb1{bottom:589.350000px;}
.y7c{bottom:589.950000px;}
.y29{bottom:591.150000px;}
.y55{bottom:591.900000px;}
.y126{bottom:595.200000px;}
.yf{bottom:599.250000px;}
.y107{bottom:601.050000px;}
.y19{bottom:603.300000px;}
.yea{bottom:604.200000px;}
.yf5{bottom:608.400000px;}
.yb9{bottom:613.200000px;}
.y95{bottom:617.250000px;}
.yd5{bottom:618.600000px;}
.y54{bottom:618.900000px;}
.y38{bottom:622.200000px;}
.y7b{bottom:622.650000px;}
.y125{bottom:626.700000px;}
.ye{bottom:630.300000px;}
.y106{bottom:632.100000px;}
.ye9{bottom:635.250000px;}
.y13c{bottom:635.700000px;}
.yf4{bottom:639.450000px;}
.y18{bottom:643.350000px;}
.yb8{bottom:644.250000px;}
.y53{bottom:645.900000px;}
.y94{bottom:648.300000px;}
.yd4{bottom:649.650000px;}
.yb0{bottom:651.450000px;}
.y28{bottom:653.250000px;}
.y7a{bottom:653.700000px;}
.y124{bottom:658.200000px;}
.yd{bottom:661.350000px;}
.y105{bottom:663.150000px;}
.ye8{bottom:666.300000px;}
.y13b{bottom:667.800000px;}
.y52{bottom:672.900000px;}
.yb7{bottom:675.300000px;}
.y93{bottom:679.350000px;}
.yaf{bottom:682.500000px;}
.y17{bottom:683.400000px;}
.y27{bottom:684.300000px;}
.y123{bottom:689.700000px;}
.yc{bottom:692.400000px;}
.y104{bottom:694.200000px;}
.ye7{bottom:697.350000px;}
.y13a{bottom:698.700000px;}
.y51{bottom:699.900000px;}
.yae{bottom:713.550000px;}
.y26{bottom:715.350000px;}
.y79{bottom:715.800000px;}
.y122{bottom:721.200000px;}
.y103{bottom:725.250000px;}
.ye6{bottom:728.400000px;}
.yd3{bottom:729.750000px;}
.y92{bottom:741.450000px;}
.yad{bottom:744.600000px;}
.y37{bottom:746.400000px;}
.y78{bottom:746.850000px;}
.y121{bottom:752.700000px;}
.ye5{bottom:759.450000px;}
.yd2{bottom:760.800000px;}
.y61{bottom:761.700000px;}
.y16{bottom:763.500000px;}
.yb{bottom:772.500000px;}
.yac{bottom:775.650000px;}
.y25{bottom:777.450000px;}
.y77{bottom:777.900000px;}
.y14e{bottom:781.950000px;}
.y60{bottom:788.700000px;}
.yd1{bottom:791.850000px;}
.y139{bottom:793.200000px;}
.ya{bottom:803.550000px;}
.yab{bottom:806.700000px;}
.y24{bottom:808.500000px;}
.y76{bottom:808.950000px;}
.y14d{bottom:813.450000px;}
.y5f{bottom:815.700000px;}
.ye4{bottom:821.550000px;}
.yd0{bottom:822.900000px;}
.y138{bottom:824.700000px;}
.y9{bottom:834.600000px;}
.y23{bottom:839.550000px;}
.y75{bottom:840.000000px;}
.y5e{bottom:842.700000px;}
.y15{bottom:843.600000px;}
.ye3{bottom:852.600000px;}
.ycf{bottom:853.950000px;}
.y137{bottom:856.200000px;}
.yaa{bottom:868.800000px;}
.y5d{bottom:869.700000px;}
.y3c{bottom:870.600000px;}
.y14c{bottom:873.900000px;}
.y14{bottom:883.650000px;}
.yce{bottom:885.000000px;}
.y91{bottom:896.700000px;}
.y14b{bottom:898.650000px;}
.ya9{bottom:899.850000px;}
.y22{bottom:901.650000px;}
.y74{bottom:905.700000px;}
.y8{bottom:914.700000px;}
.ycd{bottom:916.050000px;}
.y136{bottom:919.200000px;}
.y14a{bottom:923.550000px;}
.y13{bottom:923.700000px;}
.y90{bottom:927.750000px;}
.ya8{bottom:930.900000px;}
.y21{bottom:932.700000px;}
.y5c{bottom:941.700000px;}
.y7{bottom:945.750000px;}
.ycc{bottom:947.100000px;}
.y149{bottom:948.300000px;}
.y135{bottom:950.700000px;}
.y8f{bottom:958.800000px;}
.y73{bottom:959.700000px;}
.ya7{bottom:961.950000px;}
.y12{bottom:963.750000px;}
.y5b{bottom:968.700000px;}
.y6{bottom:976.800000px;}
.ycb{bottom:978.150000px;}
.y134{bottom:982.200000px;}
.y120{bottom:986.700000px;}
.y8e{bottom:989.850000px;}
.ya6{bottom:993.000000px;}
.y11{bottom:994.800000px;}
.y5a{bottom:995.700000px;}
.y148{bottom:997.950000px;}
.yca{bottom:1007.850000px;}
.y133{bottom:1013.700000px;}
.y8d{bottom:1020.900000px;}
.y59{bottom:1022.700000px;}
.y147{bottom:1022.850000px;}
.ya5{bottom:1024.050000px;}
.y20{bottom:1025.850000px;}
.y72{bottom:1031.700000px;}
.y11f{bottom:1045.200000px;}
.y58{bottom:1049.700000px;}
.y8c{bottom:1051.950000px;}
.ya4{bottom:1055.100000px;}
.y5{bottom:1056.900000px;}
.y71{bottom:1058.700000px;}
.y57{bottom:1076.700000px;}
.y70{bottom:1085.700000px;}
.ya3{bottom:1086.150000px;}
.y4{bottom:1087.950000px;}
.y11e{bottom:1108.200000px;}
.y6f{bottom:1112.700000px;}
.y3{bottom:1119.000000px;}
.y2{bottom:1161.000000px;}
.h4{height:49.289062px;}
.h3{height:49.992188px;}
.h2{height:63.175781px;}
.h5{height:73.705078px;}
.h1{height:1262.700000px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x3{left:85.200000px;}
.x2{left:106.500000px;}
.x5{left:199.650000px;}
.x7{left:293.400000px;}
.x4{left:334.500000px;}
.x8{left:337.200000px;}
.x6{left:340.500000px;}
.xd{left:355.950000px;}
.x9{left:364.200000px;}
.xa{left:369.750000px;}
.xc{left:455.100000px;}
.xb{left:790.200000px;}
.x1{left:799.200000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.085333pt;}
.ls1{letter-spacing:93.546667pt;}
.ws1{word-spacing:-16.000000pt;}
.ws5{word-spacing:-0.064000pt;}
.ws0{word-spacing:0.000000pt;}
.ws4{word-spacing:116.266667pt;}
.ws3{word-spacing:169.066667pt;}
.ws2{word-spacing:649.066667pt;}
._7{margin-left:-8.128000pt;}
._b{margin-left:-6.336000pt;}
._a{margin-left:-5.333333pt;}
._8{margin-left:-4.245333pt;}
._2{margin-left:-3.221333pt;}
._5{margin-left:-2.197333pt;}
._1{margin-left:-1.066667pt;}
._0{width:0.917333pt;}
._9{width:132.266667pt;}
._6{width:159.466667pt;}
._c{width:164.266667pt;}
._4{width:185.066667pt;}
._3{width:665.066667pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.133333pt;}
.y132{bottom:81.066667pt;}
.y3b{bottom:83.866667pt;}
.y115{bottom:89.600000pt;}
.yc9{bottom:91.466667pt;}
.y11d{bottom:98.666667pt;}
.y4b{bottom:99.466667pt;}
.y8b{bottom:105.733333pt;}
.ya2{bottom:107.066667pt;}
.y3a{bottom:111.466667pt;}
.yc8{bottom:119.066667pt;}
.yf3{bottom:123.066667pt;}
.y11c{bottom:126.666667pt;}
.y4a{bottom:127.066667pt;}
.y45{bottom:132.666667pt;}
.y8a{bottom:133.333333pt;}
.ya1{bottom:134.666667pt;}
.y131{bottom:137.066667pt;}
.y36{bottom:139.066667pt;}
.y146{bottom:145.066667pt;}
.yc7{bottom:146.666667pt;}
.ye2{bottom:147.466667pt;}
.yf2{bottom:150.666667pt;}
.y102{bottom:152.933333pt;}
.y11b{bottom:154.666667pt;}
.y44{bottom:160.266667pt;}
.ya0{bottom:162.266667pt;}
.y89{bottom:162.533333pt;}
.y130{bottom:165.066667pt;}
.y35{bottom:166.666667pt;}
.y114{bottom:172.400000pt;}
.y145{bottom:173.066667pt;}
.ye1{bottom:175.066667pt;}
.yf1{bottom:178.266667pt;}
.y101{bottom:180.533333pt;}
.y65{bottom:186.933333pt;}
.y50{bottom:187.333333pt;}
.y43{bottom:187.866667pt;}
.y9f{bottom:189.866667pt;}
.y88{bottom:190.133333pt;}
.y12f{bottom:193.066667pt;}
.y34{bottom:194.266667pt;}
.y113{bottom:200.000000pt;}
.y144{bottom:201.066667pt;}
.yc6{bottom:201.866667pt;}
.ye0{bottom:202.666667pt;}
.yf0{bottom:205.866667pt;}
.y100{bottom:208.133333pt;}
.y11a{bottom:210.666667pt;}
.y64{bottom:210.933333pt;}
.y4f{bottom:211.333333pt;}
.y42{bottom:215.466667pt;}
.y9e{bottom:217.466667pt;}
.y87{bottom:217.733333pt;}
.y33{bottom:221.866667pt;}
.y112{bottom:227.600000pt;}
.y143{bottom:229.066667pt;}
.yc5{bottom:229.466667pt;}
.ydf{bottom:230.266667pt;}
.y63{bottom:234.933333pt;}
.y4e{bottom:235.333333pt;}
.yff{bottom:235.733333pt;}
.y119{bottom:238.666667pt;}
.y41{bottom:243.066667pt;}
.y9d{bottom:245.066667pt;}
.y86{bottom:245.333333pt;}
.y12e{bottom:249.066667pt;}
.y32{bottom:249.466667pt;}
.y111{bottom:255.200000pt;}
.yc4{bottom:257.066667pt;}
.yde{bottom:257.866667pt;}
.y62{bottom:258.933333pt;}
.y4d{bottom:259.333333pt;}
.yef{bottom:261.066667pt;}
.yfe{bottom:263.333333pt;}
.y118{bottom:266.666667pt;}
.ybf{bottom:272.666667pt;}
.y85{bottom:272.933333pt;}
.y1f{bottom:275.466667pt;}
.y31{bottom:277.066667pt;}
.y6e{bottom:281.600000pt;}
.y110{bottom:282.800000pt;}
.y4c{bottom:283.333333pt;}
.yc3{bottom:284.666667pt;}
.y142{bottom:285.066667pt;}
.ydd{bottom:285.466667pt;}
.yee{bottom:288.666667pt;}
.yfd{bottom:292.400000pt;}
.y117{bottom:294.666667pt;}
.y40{bottom:298.266667pt;}
.y9c{bottom:300.266667pt;}
.y84{bottom:300.533333pt;}
.y30{bottom:304.666667pt;}
.y12d{bottom:305.066667pt;}
.y6d{bottom:305.600000pt;}
.y10f{bottom:310.400000pt;}
.y10{bottom:311.866667pt;}
.yc2{bottom:312.266667pt;}
.ydc{bottom:313.066667pt;}
.yed{bottom:316.266667pt;}
.yfc{bottom:320.000000pt;}
.y116{bottom:322.666667pt;}
.y3f{bottom:325.866667pt;}
.y9b{bottom:327.866667pt;}
.y83{bottom:328.133333pt;}
.y6c{bottom:329.600000pt;}
.y1e{bottom:330.666667pt;}
.y2f{bottom:332.266667pt;}
.y12c{bottom:333.066667pt;}
.y10e{bottom:339.600000pt;}
.yc1{bottom:339.866667pt;}
.ydb{bottom:340.666667pt;}
.y141{bottom:341.066667pt;}
.yec{bottom:343.866667pt;}
.yfb{bottom:347.600000pt;}
.y3e{bottom:353.466667pt;}
.y9a{bottom:355.466667pt;}
.y82{bottom:357.200000pt;}
.yb6{bottom:358.266667pt;}
.y2e{bottom:359.866667pt;}
.y12b{bottom:361.066667pt;}
.ybe{bottom:363.466667pt;}
.y10d{bottom:367.200000pt;}
.yc0{bottom:367.466667pt;}
.y3d{bottom:381.066667pt;}
.y99{bottom:383.066667pt;}
.y81{bottom:384.800000pt;}
.yb5{bottom:385.866667pt;}
.y2d{bottom:387.466667pt;}
.y6b{bottom:393.600000pt;}
.y1d{bottom:393.866667pt;}
.y10c{bottom:394.800000pt;}
.y140{bottom:397.066667pt;}
.yeb{bottom:399.066667pt;}
.yfa{bottom:402.800000pt;}
.yda{bottom:411.866667pt;}
.y80{bottom:412.400000pt;}
.yb4{bottom:413.466667pt;}
.y39{bottom:415.066667pt;}
.y12a{bottom:417.066667pt;}
.y6a{bottom:417.600000pt;}
.y10b{bottom:422.400000pt;}
.y13f{bottom:425.066667pt;}
.ybd{bottom:426.666667pt;}
.y1c{bottom:429.466667pt;}
.yf9{bottom:430.400000pt;}
.y49{bottom:436.800000pt;}
.y98{bottom:438.266667pt;}
.yd9{bottom:439.466667pt;}
.y7f{bottom:440.000000pt;}
.y69{bottom:441.600000pt;}
.y2c{bottom:442.666667pt;}
.y129{bottom:445.066667pt;}
.y10a{bottom:450.000000pt;}
.y13e{bottom:453.066667pt;}
.ybc{bottom:454.266667pt;}
.yf8{bottom:458.000000pt;}
.y48{bottom:464.400000pt;}
.y1b{bottom:465.066667pt;}
.y68{bottom:465.600000pt;}
.y97{bottom:465.866667pt;}
.yd8{bottom:467.066667pt;}
.yb3{bottom:468.666667pt;}
.y7e{bottom:469.200000pt;}
.y2b{bottom:470.266667pt;}
.y128{bottom:473.066667pt;}
.y109{bottom:477.600000pt;}
.ybb{bottom:481.866667pt;}
.yf7{bottom:485.600000pt;}
.y67{bottom:489.600000pt;}
.y47{bottom:492.000000pt;}
.y96{bottom:493.466667pt;}
.yd7{bottom:494.666667pt;}
.yb2{bottom:496.266667pt;}
.y7d{bottom:496.800000pt;}
.y2a{bottom:497.866667pt;}
.y1a{bottom:500.666667pt;}
.y127{bottom:501.066667pt;}
.y56{bottom:502.133333pt;}
.y108{bottom:505.200000pt;}
.y13d{bottom:509.066667pt;}
.yf6{bottom:513.200000pt;}
.y66{bottom:513.600000pt;}
.yba{bottom:517.466667pt;}
.y46{bottom:519.600000pt;}
.yd6{bottom:522.266667pt;}
.yb1{bottom:523.866667pt;}
.y7c{bottom:524.400000pt;}
.y29{bottom:525.466667pt;}
.y55{bottom:526.133333pt;}
.y126{bottom:529.066667pt;}
.yf{bottom:532.666667pt;}
.y107{bottom:534.266667pt;}
.y19{bottom:536.266667pt;}
.yea{bottom:537.066667pt;}
.yf5{bottom:540.800000pt;}
.yb9{bottom:545.066667pt;}
.y95{bottom:548.666667pt;}
.yd5{bottom:549.866667pt;}
.y54{bottom:550.133333pt;}
.y38{bottom:553.066667pt;}
.y7b{bottom:553.466667pt;}
.y125{bottom:557.066667pt;}
.ye{bottom:560.266667pt;}
.y106{bottom:561.866667pt;}
.ye9{bottom:564.666667pt;}
.y13c{bottom:565.066667pt;}
.yf4{bottom:568.400000pt;}
.y18{bottom:571.866667pt;}
.yb8{bottom:572.666667pt;}
.y53{bottom:574.133333pt;}
.y94{bottom:576.266667pt;}
.yd4{bottom:577.466667pt;}
.yb0{bottom:579.066667pt;}
.y28{bottom:580.666667pt;}
.y7a{bottom:581.066667pt;}
.y124{bottom:585.066667pt;}
.yd{bottom:587.866667pt;}
.y105{bottom:589.466667pt;}
.ye8{bottom:592.266667pt;}
.y13b{bottom:593.600000pt;}
.y52{bottom:598.133333pt;}
.yb7{bottom:600.266667pt;}
.y93{bottom:603.866667pt;}
.yaf{bottom:606.666667pt;}
.y17{bottom:607.466667pt;}
.y27{bottom:608.266667pt;}
.y123{bottom:613.066667pt;}
.yc{bottom:615.466667pt;}
.y104{bottom:617.066667pt;}
.ye7{bottom:619.866667pt;}
.y13a{bottom:621.066667pt;}
.y51{bottom:622.133333pt;}
.yae{bottom:634.266667pt;}
.y26{bottom:635.866667pt;}
.y79{bottom:636.266667pt;}
.y122{bottom:641.066667pt;}
.y103{bottom:644.666667pt;}
.ye6{bottom:647.466667pt;}
.yd3{bottom:648.666667pt;}
.y92{bottom:659.066667pt;}
.yad{bottom:661.866667pt;}
.y37{bottom:663.466667pt;}
.y78{bottom:663.866667pt;}
.y121{bottom:669.066667pt;}
.ye5{bottom:675.066667pt;}
.yd2{bottom:676.266667pt;}
.y61{bottom:677.066667pt;}
.y16{bottom:678.666667pt;}
.yb{bottom:686.666667pt;}
.yac{bottom:689.466667pt;}
.y25{bottom:691.066667pt;}
.y77{bottom:691.466667pt;}
.y14e{bottom:695.066667pt;}
.y60{bottom:701.066667pt;}
.yd1{bottom:703.866667pt;}
.y139{bottom:705.066667pt;}
.ya{bottom:714.266667pt;}
.yab{bottom:717.066667pt;}
.y24{bottom:718.666667pt;}
.y76{bottom:719.066667pt;}
.y14d{bottom:723.066667pt;}
.y5f{bottom:725.066667pt;}
.ye4{bottom:730.266667pt;}
.yd0{bottom:731.466667pt;}
.y138{bottom:733.066667pt;}
.y9{bottom:741.866667pt;}
.y23{bottom:746.266667pt;}
.y75{bottom:746.666667pt;}
.y5e{bottom:749.066667pt;}
.y15{bottom:749.866667pt;}
.ye3{bottom:757.866667pt;}
.ycf{bottom:759.066667pt;}
.y137{bottom:761.066667pt;}
.yaa{bottom:772.266667pt;}
.y5d{bottom:773.066667pt;}
.y3c{bottom:773.866667pt;}
.y14c{bottom:776.800000pt;}
.y14{bottom:785.466667pt;}
.yce{bottom:786.666667pt;}
.y91{bottom:797.066667pt;}
.y14b{bottom:798.800000pt;}
.ya9{bottom:799.866667pt;}
.y22{bottom:801.466667pt;}
.y74{bottom:805.066667pt;}
.y8{bottom:813.066667pt;}
.ycd{bottom:814.266667pt;}
.y136{bottom:817.066667pt;}
.y14a{bottom:820.933333pt;}
.y13{bottom:821.066667pt;}
.y90{bottom:824.666667pt;}
.ya8{bottom:827.466667pt;}
.y21{bottom:829.066667pt;}
.y5c{bottom:837.066667pt;}
.y7{bottom:840.666667pt;}
.ycc{bottom:841.866667pt;}
.y149{bottom:842.933333pt;}
.y135{bottom:845.066667pt;}
.y8f{bottom:852.266667pt;}
.y73{bottom:853.066667pt;}
.ya7{bottom:855.066667pt;}
.y12{bottom:856.666667pt;}
.y5b{bottom:861.066667pt;}
.y6{bottom:868.266667pt;}
.ycb{bottom:869.466667pt;}
.y134{bottom:873.066667pt;}
.y120{bottom:877.066667pt;}
.y8e{bottom:879.866667pt;}
.ya6{bottom:882.666667pt;}
.y11{bottom:884.266667pt;}
.y5a{bottom:885.066667pt;}
.y148{bottom:887.066667pt;}
.yca{bottom:895.866667pt;}
.y133{bottom:901.066667pt;}
.y8d{bottom:907.466667pt;}
.y59{bottom:909.066667pt;}
.y147{bottom:909.200000pt;}
.ya5{bottom:910.266667pt;}
.y20{bottom:911.866667pt;}
.y72{bottom:917.066667pt;}
.y11f{bottom:929.066667pt;}
.y58{bottom:933.066667pt;}
.y8c{bottom:935.066667pt;}
.ya4{bottom:937.866667pt;}
.y5{bottom:939.466667pt;}
.y71{bottom:941.066667pt;}
.y57{bottom:957.066667pt;}
.y70{bottom:965.066667pt;}
.ya3{bottom:965.466667pt;}
.y4{bottom:967.066667pt;}
.y11e{bottom:985.066667pt;}
.y6f{bottom:989.066667pt;}
.y3{bottom:994.666667pt;}
.y2{bottom:1032.000000pt;}
.h4{height:43.812500pt;}
.h3{height:44.437500pt;}
.h2{height:56.156250pt;}
.h5{height:65.515625pt;}
.h1{height:1122.400000pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x3{left:75.733333pt;}
.x2{left:94.666667pt;}
.x5{left:177.466667pt;}
.x7{left:260.800000pt;}
.x4{left:297.333333pt;}
.x8{left:299.733333pt;}
.x6{left:302.666667pt;}
.xd{left:316.400000pt;}
.x9{left:323.733333pt;}
.xa{left:328.666667pt;}
.xc{left:404.533333pt;}
.xb{left:702.400000pt;}
.x1{left:710.400000pt;}
}




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