
    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_a1d3a8385d82cea1224a3d47.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_ff8d7ab9cbe3d0b94ebdf02d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_84a9a1736e0d315e9662787e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.975098;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;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.008789px;}
.ls3{letter-spacing:0.021972px;}
.ls0{letter-spacing:0.026367px;}
.ls1{letter-spacing:1.259994px;}
.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;}
}
.ws5{word-spacing:-25.885985px;}
.ws0{word-spacing:-20.955321px;}
.ws4{word-spacing:-17.380371px;}
.ws3{word-spacing:-17.257323px;}
.ws1{word-spacing:-13.327602px;}
.ws2{word-spacing:0.000000px;}
._11{margin-left:-2334.335355px;}
._16{margin-left:-2312.894438px;}
._19{margin-left:-2226.981357px;}
._1c{margin-left:-2199.675936px;}
._18{margin-left:-2165.758946px;}
._10{margin-left:-2161.463292px;}
._21{margin-left:-2100.873694px;}
._1d{margin-left:-2088.173501px;}
._1a{margin-left:-2059.600258px;}
._1e{margin-left:-2044.357828px;}
._20{margin-left:-2034.272378px;}
._13{margin-left:-1992.998942px;}
._f{margin-left:-1890.388841px;}
._23{margin-left:-1878.246751px;}
._17{margin-left:-1836.973316px;}
._c{margin-left:-1757.933280px;}
._a{margin-left:-1718.112236px;}
._22{margin-left:-1716.804862px;}
._1b{margin-left:-1675.531427px;}
._15{margin-left:-1620.322933px;}
._e{margin-left:-1609.340999px;}
._12{margin-left:-1579.383481px;}
._1f{margin-left:-1552.412046px;}
._b{margin-left:-1303.002632px;}
._6{margin-left:-1018.687461px;}
._8{margin-left:-728.263891px;}
._5{margin-left:-563.141579px;}
._7{margin-left:-526.311014px;}
._4{margin-left:-499.379130px;}
._3{margin-left:-434.197248px;}
._9{margin-left:-7.470703px;}
._d{margin-left:-5.860555px;}
._1{margin-left:-4.746072px;}
._2{margin-left:-3.229975px;}
._0{margin-left:-1.806152px;}
._14{width:1.833576px;}
.fc6{color:rgb(32,32,32);}
.fc5{color:rgb(97,97,97);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(36,36,36);}
.fc1{color:rgb(33,33,33);}
.fc4{color:rgb(0,0,238);}
.fc0{color:rgb(174,21,21);}
.fs4{font-size:47.969997px;}
.fs0{font-size:62.999997px;}
.fs3{font-size:76.499997px;}
.fs2{font-size:94.499996px;}
.fs1{font-size:161.999993px;}
.y0{bottom:0.000000px;}
.yf{bottom:2.250000px;}
.y57{bottom:4.500000px;}
.ya{bottom:5.625000px;}
.y86{bottom:6.820312px;}
.y19{bottom:20.249999px;}
.y10{bottom:22.005022px;}
.y30{bottom:28.124999px;}
.y8{bottom:32.624999px;}
.y85{bottom:42.184708px;}
.y1{bottom:42.184713px;}
.y6a{bottom:50.624998px;}
.y7{bottom:55.124998px;}
.y2f{bottom:73.124997px;}
.y84{bottom:85.005019px;}
.y2e{bottom:95.624996px;}
.y10b{bottom:95.695304px;}
.y5f{bottom:106.380018px;}
.yf9{bottom:108.630018px;}
.y2d{bottom:118.124995px;}
.y10a{bottom:120.445303px;}
.y6{bottom:122.624995px;}
.yaf{bottom:140.130017px;}
.y2c{bottom:140.624994px;}
.y83{bottom:141.255017px;}
.ya3{bottom:145.195302px;}
.ybd{bottom:151.945302px;}
.ycf{bottom:156.445301px;}
.y5e{bottom:162.630016px;}
.y69{bottom:163.124993px;}
.yf7{bottom:164.880016px;}
.y11f{bottom:173.320301px;}
.y5{bottom:176.624993px;}
.ybc{bottom:176.695301px;}
.y54{bottom:180.630015px;}
.yce{bottom:181.195300px;}
.y2b{bottom:185.624992px;}
.y61{bottom:192.445300px;}
.yfb{bottom:194.695300px;}
.y95{bottom:195.820300px;}
.yae{bottom:196.380014px;}
.y82{bottom:197.505014px;}
.y11e{bottom:198.070300px;}
.y9c{bottom:205.380014px;}
.y2a{bottom:208.124991px;}
.y34{bottom:216.630014px;}
.y60{bottom:217.195299px;}
.yfa{bottom:219.445299px;}
.yf6{bottom:221.130013px;}
.ye5{bottom:223.945299px;}
.yb1{bottom:226.195299px;}
.y4{bottom:230.624990px;}
.y53{bottom:236.880013px;}
.yd{bottom:244.195298px;}
.ye4{bottom:248.695298px;}
.yb0{bottom:250.945298px;}
.y105{bottom:252.630012px;}
.y29{bottom:253.124989px;}
.y81{bottom:253.755012px;}
.yef{bottom:258.255012px;}
.yea{bottom:259.380012px;}
.y9b{bottom:261.630012px;}
.y55{bottom:266.695297px;}
.y33{bottom:272.880011px;}
.y28{bottom:275.624989px;}
.yf5{bottom:277.380011px;}
.y17{bottom:286.945296px;}
.y9d{bottom:291.445296px;}
.y27{bottom:298.124988px;}
.ya2{bottom:304.945295px;}
.yf8{bottom:307.195295px;}
.yee{bottom:308.880010px;}
.y80{bottom:310.005010px;}
.ybb{bottom:315.630009px;}
.ycc{bottom:320.130009px;}
.y26{bottom:320.624987px;}
.y32{bottom:329.130009px;}
.y42{bottom:329.695294px;}
.y92{bottom:334.755009px;}
.yc2{bottom:336.445294px;}
.y11b{bottom:337.005009px;}
.y49{bottom:338.695294px;}
.y25{bottom:343.124986px;}
.yeb{bottom:345.445294px;}
.y41{bottom:354.445293px;}
.yc1{bottom:361.195293px;}
.y48{bottom:363.445293px;}
.yed{bottom:365.130007px;}
.y7f{bottom:366.255007px;}
.y109{bottom:370.195293px;}
.yba{bottom:371.880007px;}
.ycb{bottom:376.380007px;}
.y5d{bottom:376.945292px;}
.y72{bottom:379.195292px;}
.y31{bottom:385.380007px;}
.ye1{bottom:387.630006px;}
.y24{bottom:388.124984px;}
.y91{bottom:391.005006px;}
.y11a{bottom:393.255006px;}
.y5c{bottom:401.695291px;}
.yc{bottom:403.945291px;}
.y23{bottom:410.624983px;}
.yad{bottom:410.695291px;}
.y35{bottom:415.195291px;}
.y94{bottom:420.820290px;}
.yec{bottom:421.380005px;}
.y7e{bottom:422.505005px;}
.y11d{bottom:423.070290px;}
.y52{bottom:426.445290px;}
.yca{bottom:432.630005px;}
.y22{bottom:433.124982px;}
.yac{bottom:435.445290px;}
.ye0{bottom:443.880004px;}
.y93{bottom:445.570289px;}
.yf2{bottom:446.130004px;}
.y16{bottom:446.695289px;}
.y11c{bottom:447.820289px;}
.y51{bottom:451.195289px;}
.y122{bottom:461.320289px;}
.ycd{bottom:462.445289px;}
.yd4{bottom:464.130003px;}
.ya0{bottom:468.630003px;}
.y15{bottom:471.445288px;}
.y9a{bottom:475.945288px;}
.y21{bottom:478.124980px;}
.y7d{bottom:478.755003px;}
.ye8{bottom:484.380002px;}
.ya8{bottom:486.630002px;}
.y3e{bottom:493.380002px;}
.y121{bottom:495.070287px;}
.y110{bottom:498.445287px;}
.ydf{bottom:500.130002px;}
.y20{bottom:500.624979px;}
.y46{bottom:502.380002px;}
.y107{bottom:509.130001px;}
.y120{bottom:517.570286px;}
.y71{bottom:518.130001px;}
.yd3{bottom:520.380001px;}
.yc0{bottom:520.945286px;}
.y1f{bottom:523.124978px;}
.y104{bottom:523.195286px;}
.y9f{bottom:524.880001px;}
.y67{bottom:529.945286px;}
.y1c{bottom:530.505001px;}
.y6e{bottom:531.630000px;}
.yf4{bottom:532.195286px;}
.y7c{bottom:535.005000px;}
.ye7{bottom:540.630000px;}
.ya7{bottom:542.880000px;}
.y1e{bottom:545.624977px;}
.ybf{bottom:545.695285px;}
.y103{bottom:547.945285px;}
.y3d{bottom:549.630000px;}
.y66{bottom:554.695285px;}
.yde{bottom:556.379999px;}
.yf3{bottom:556.945285px;}
.y45{bottom:558.629999px;}
.y5b{bottom:561.445285px;}
.yb{bottom:563.695285px;}
.yb8{bottom:565.379999px;}
.y1d{bottom:568.124976px;}
.y70{bottom:574.379999px;}
.yd2{bottom:576.629999px;}
.y40{bottom:579.445284px;}
.y9e{bottom:581.129998px;}
.y5a{bottom:586.195284px;}
.y6d{bottom:587.879998px;}
.y47{bottom:588.445283px;}
.y4e{bottom:590.129998px;}
.y7b{bottom:591.254998px;}
.y108{bottom:595.195283px;}
.ye6{bottom:596.879998px;}
.ya6{bottom:599.129998px;}
.yc4{bottom:601.379998px;}
.y3f{bottom:604.195283px;}
.y119{bottom:607.570283px;}
.ya1{bottom:610.945283px;}
.ydd{bottom:612.629997px;}
.y98{bottom:614.879997px;}
.yb7{bottom:621.629997px;}
.ye9{bottom:626.695282px;}
.yab{bottom:630.629996px;}
.y14{bottom:631.195282px;}
.y118{bottom:632.320282px;}
.yd1{bottom:632.879996px;}
.y6c{bottom:644.129996px;}
.y100{bottom:644.695281px;}
.y4d{bottom:646.379996px;}
.y7a{bottom:647.504996px;}
.y90{bottom:650.320281px;}
.yb9{bottom:651.445281px;}
.ya5{bottom:655.379995px;}
.y117{bottom:657.070281px;}
.yc3{bottom:657.629995px;}
.y10f{bottom:662.129995px;}
.yd5{bottom:662.695280px;}
.ydc{bottom:668.879995px;}
.y97{bottom:671.129995px;}
.y8f{bottom:675.070280px;}
.y50{bottom:676.195280px;}
.y123{bottom:683.504994px;}
.ya9{bottom:685.195279px;}
.yaa{bottom:686.879994px;}
.yc9{bottom:687.445279px;}
.ybe{bottom:692.504994px;}
.y64{bottom:693.629994px;}
.y6b{bottom:700.379993px;}
.y4f{bottom:700.945279px;}
.y9{bottom:703.754993px;}
.yc8{bottom:712.195278px;}
.yf1{bottom:716.695278px;}
.y10e{bottom:718.379993px;}
.ydb{bottom:725.129992px;}
.y99{bottom:725.695278px;}
.y6f{bottom:730.195278px;}
.y106{bottom:734.129992px;}
.yc7{bottom:736.945277px;}
.yf0{bottom:741.445277px;}
.y3b{bottom:743.129992px;}
.y59{bottom:745.945277px;}
.y44{bottom:748.195277px;}
.y63{bottom:749.879991px;}
.y2{bottom:750.445277px;}
.y79{bottom:760.004991px;}
.y58{bottom:770.695276px;}
.y43{bottom:772.945276px;}
.y10d{bottom:774.629990px;}
.yd0{bottom:778.004990px;}
.yda{bottom:781.379990px;}
.yc6{bottom:786.445275px;}
.yb3{bottom:790.379990px;}
.y13{bottom:790.945275px;}
.y113{bottom:796.004989px;}
.y102{bottom:797.695275px;}
.y3a{bottom:799.379989px;}
.ya4{bottom:800.504989px;}
.yff{bottom:804.445274px;}
.y62{bottom:806.129989px;}
.yc5{bottom:811.195274px;}
.y8e{bottom:814.004989px;}
.y78{bottom:816.254989px;}
.y3{bottom:823.004988px;}
.yfe{bottom:829.195273px;}
.y65{bottom:835.945273px;}
.yd9{bottom:837.629988px;}
.yfd{bottom:839.879988px;}
.y68{bottom:845.504987px;}
.yb2{bottom:846.629987px;}
.y112{bottom:852.254987px;}
.y39{bottom:855.629987px;}
.y4c{bottom:860.695272px;}
.y8d{bottom:870.254986px;}
.y77{bottom:872.504986px;}
.yb6{bottom:876.445271px;}
.y96{bottom:885.445271px;}
.yd8{bottom:893.879985px;}
.yfc{bottom:896.129985px;}
.yb5{bottom:901.195270px;}
.y111{bottom:908.504985px;}
.y38{bottom:911.879985px;}
.y101{bottom:913.004985px;}
.y56{bottom:917.504984px;}
.yb4{bottom:925.945269px;}
.y8c{bottom:926.504984px;}
.y76{bottom:928.754984px;}
.y116{bottom:938.320269px;}
.y10c{bottom:943.379983px;}
.yd7{bottom:950.129983px;}
.y12{bottom:950.695268px;}
.y115{bottom:963.070268px;}
.y37{bottom:968.129982px;}
.y8b{bottom:982.754982px;}
.y75{bottom:985.004982px;}
.y114{bottom:987.820267px;}
.y4b{bottom:999.629981px;}
.yd6{bottom:1006.379981px;}
.y1a{bottom:1024.379980px;}
.ye3{bottom:1036.195265px;}
.y8a{bottom:1039.004979px;}
.y74{bottom:1041.254979px;}
.y36{bottom:1046.320264px;}
.y4a{bottom:1055.879979px;}
.ye2{bottom:1060.945264px;}
.y18{bottom:1080.629978px;}
.y3c{bottom:1085.695263px;}
.y89{bottom:1095.254977px;}
.y73{bottom:1097.504977px;}
.y11{bottom:1110.445262px;}
.y87{bottom:1127.320261px;}
.y1b{bottom:1127.879976px;}
.y88{bottom:1151.504975px;}
.ye{bottom:1226.879972px;}
.h9{height:13.499999px;}
.he{height:21.374999px;}
.h6{height:31.499999px;}
.h10{height:31.570311px;}
.ha{height:34.946892px;}
.hb{height:44.999998px;}
.hd{height:46.634764px;}
.h3{height:47.311521px;}
.h8{height:57.449705px;}
.h7{height:70.967282px;}
.h5{height:121.658198px;}
.h13{height:202.499992px;}
.hf{height:269.999989px;}
.h4{height:303.749987px;}
.h11{height:314.999987px;}
.h12{height:337.499986px;}
.hc{height:584.999976px;}
.h2{height:1177.945259px;}
.h0{height:1262.879970px;}
.h1{height:1263.000000px;}
.w8{width:67.814974px;}
.w11{width:73.439974px;}
.wf{width:74.564974px;}
.w16{width:100.124996px;}
.w5{width:142.874994px;}
.w4{width:193.499992px;}
.w14{width:226.124991px;}
.w15{width:372.374984px;}
.wd{width:379.124984px;}
.w13{width:391.499984px;}
.w12{width:422.999982px;}
.wc{width:551.249977px;}
.wa{width:568.124976px;}
.w9{width:593.999975px;}
.wb{width:615.374974px;}
.w3{width:653.624973px;}
.w6{width:749.564946px;}
.w2{width:807.855446px;}
.we{width:817.874966px;}
.w10{width:818.999966px;}
.w7{width:824.624966px;}
.w0{width:892.439940px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.xa{left:8.806646px;}
.x4{left:22.499999px;}
.x7{left:35.999999px;}
.xd{left:40.499998px;}
.x1{left:42.749998px;}
.x14{left:47.285154px;}
.x13{left:76.289059px;}
.x2{left:78.749997px;}
.xf{left:86.607418px;}
.xb{left:96.908199px;}
.x6{left:118.124995px;}
.x3{left:120.374995px;}
.xe{left:139.499994px;}
.x5{left:140.624994px;}
.x8{left:142.874994px;}
.xc{left:160.874993px;}
.x10{left:202.499992px;}
.x16{left:364.763662px;}
.x15{left:381.111318px;}
.x11{left:817.874966px;}
.x12{left:818.999966px;}
.x9{left:824.624966px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.007812pt;}
.ls3{letter-spacing:0.019531pt;}
.ls0{letter-spacing:0.023437pt;}
.ls1{letter-spacing:1.119995pt;}
.ws5{word-spacing:-23.009765pt;}
.ws0{word-spacing:-18.626952pt;}
.ws4{word-spacing:-15.449218pt;}
.ws3{word-spacing:-15.339843pt;}
.ws1{word-spacing:-11.846757pt;}
.ws2{word-spacing:0.000000pt;}
._11{margin-left:-2074.964760pt;}
._16{margin-left:-2055.906167pt;}
._19{margin-left:-1979.538984pt;}
._1c{margin-left:-1955.267499pt;}
._18{margin-left:-1925.119063pt;}
._10{margin-left:-1921.300704pt;}
._21{margin-left:-1867.443283pt;}
._1d{margin-left:-1856.154223pt;}
._1a{margin-left:-1830.755785pt;}
._1e{margin-left:-1817.206958pt;}
._20{margin-left:-1808.242114pt;}
._13{margin-left:-1771.554615pt;}
._f{margin-left:-1680.345636pt;}
._23{margin-left:-1669.552668pt;}
._17{margin-left:-1632.865169pt;}
._c{margin-left:-1562.607360pt;}
._a{margin-left:-1527.210877pt;}
._22{margin-left:-1526.048766pt;}
._1b{margin-left:-1489.361268pt;}
._15{margin-left:-1440.287051pt;}
._e{margin-left:-1430.525333pt;}
._12{margin-left:-1403.896428pt;}
._1f{margin-left:-1379.921819pt;}
._b{margin-left:-1158.224562pt;}
._6{margin-left:-905.499966pt;}
._8{margin-left:-647.345681pt;}
._5{margin-left:-500.570293pt;}
._7{margin-left:-467.832012pt;}
._4{margin-left:-443.892560pt;}
._3{margin-left:-385.953110pt;}
._9{margin-left:-6.640625pt;}
._d{margin-left:-5.209383pt;}
._1{margin-left:-4.218731pt;}
._2{margin-left:-2.871089pt;}
._0{margin-left:-1.605468pt;}
._14{width:1.629845pt;}
.fs4{font-size:42.639997pt;}
.fs0{font-size:55.999998pt;}
.fs3{font-size:67.999997pt;}
.fs2{font-size:83.999997pt;}
.fs1{font-size:143.999994pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:2.000000pt;}
.y57{bottom:4.000000pt;}
.ya{bottom:5.000000pt;}
.y86{bottom:6.062500pt;}
.y19{bottom:17.999999pt;}
.y10{bottom:19.560019pt;}
.y30{bottom:24.999999pt;}
.y8{bottom:28.999999pt;}
.y85{bottom:37.497518pt;}
.y1{bottom:37.497523pt;}
.y6a{bottom:44.999998pt;}
.y7{bottom:48.999998pt;}
.y2f{bottom:64.999997pt;}
.y84{bottom:75.560017pt;}
.y2e{bottom:84.999996pt;}
.y10b{bottom:85.062492pt;}
.y5f{bottom:94.560016pt;}
.yf9{bottom:96.560016pt;}
.y2d{bottom:104.999996pt;}
.y10a{bottom:107.062492pt;}
.y6{bottom:108.999995pt;}
.yaf{bottom:124.560015pt;}
.y2c{bottom:124.999995pt;}
.y83{bottom:125.560015pt;}
.ya3{bottom:129.062491pt;}
.ybd{bottom:135.062490pt;}
.ycf{bottom:139.062490pt;}
.y5e{bottom:144.560014pt;}
.y69{bottom:144.999994pt;}
.yf7{bottom:146.560014pt;}
.y11f{bottom:154.062490pt;}
.y5{bottom:156.999993pt;}
.ybc{bottom:157.062489pt;}
.y54{bottom:160.560013pt;}
.yce{bottom:161.062489pt;}
.y2b{bottom:164.999993pt;}
.y61{bottom:171.062489pt;}
.yfb{bottom:173.062489pt;}
.y95{bottom:174.062489pt;}
.yae{bottom:174.560013pt;}
.y82{bottom:175.560013pt;}
.y11e{bottom:176.062489pt;}
.y9c{bottom:182.560012pt;}
.y2a{bottom:184.999992pt;}
.y34{bottom:192.560012pt;}
.y60{bottom:193.062488pt;}
.yfa{bottom:195.062488pt;}
.yf6{bottom:196.560012pt;}
.ye5{bottom:199.062488pt;}
.yb1{bottom:201.062488pt;}
.y4{bottom:204.999991pt;}
.y53{bottom:210.560011pt;}
.yd{bottom:217.062487pt;}
.ye4{bottom:221.062487pt;}
.yb0{bottom:223.062487pt;}
.y105{bottom:224.560011pt;}
.y29{bottom:224.999991pt;}
.y81{bottom:225.560011pt;}
.yef{bottom:229.560011pt;}
.yea{bottom:230.560010pt;}
.y9b{bottom:232.560010pt;}
.y55{bottom:237.062486pt;}
.y33{bottom:242.560010pt;}
.y28{bottom:244.999990pt;}
.yf5{bottom:246.560010pt;}
.y17{bottom:255.062485pt;}
.y9d{bottom:259.062485pt;}
.y27{bottom:264.999989pt;}
.ya2{bottom:271.062485pt;}
.yf8{bottom:273.062485pt;}
.yee{bottom:274.560009pt;}
.y80{bottom:275.560009pt;}
.ybb{bottom:280.560008pt;}
.ycc{bottom:284.560008pt;}
.y26{bottom:284.999988pt;}
.y32{bottom:292.560008pt;}
.y42{bottom:293.062484pt;}
.y92{bottom:297.560008pt;}
.yc2{bottom:299.062484pt;}
.y11b{bottom:299.560008pt;}
.y49{bottom:301.062483pt;}
.y25{bottom:304.999987pt;}
.yeb{bottom:307.062483pt;}
.y41{bottom:315.062483pt;}
.yc1{bottom:321.062483pt;}
.y48{bottom:323.062483pt;}
.yed{bottom:324.560007pt;}
.y7f{bottom:325.560007pt;}
.y109{bottom:329.062482pt;}
.yba{bottom:330.560006pt;}
.ycb{bottom:334.560006pt;}
.y5d{bottom:335.062482pt;}
.y72{bottom:337.062482pt;}
.y31{bottom:342.560006pt;}
.ye1{bottom:344.560006pt;}
.y24{bottom:344.999986pt;}
.y91{bottom:347.560006pt;}
.y11a{bottom:349.560006pt;}
.y5c{bottom:357.062481pt;}
.yc{bottom:359.062481pt;}
.y23{bottom:364.999985pt;}
.yad{bottom:365.062481pt;}
.y35{bottom:369.062481pt;}
.y94{bottom:374.062480pt;}
.yec{bottom:374.560004pt;}
.y7e{bottom:375.560004pt;}
.y11d{bottom:376.062480pt;}
.y52{bottom:379.062480pt;}
.yca{bottom:384.560004pt;}
.y22{bottom:384.999984pt;}
.yac{bottom:387.062480pt;}
.ye0{bottom:394.560004pt;}
.y93{bottom:396.062479pt;}
.yf2{bottom:396.560004pt;}
.y16{bottom:397.062479pt;}
.y11c{bottom:398.062479pt;}
.y51{bottom:401.062479pt;}
.y122{bottom:410.062479pt;}
.ycd{bottom:411.062479pt;}
.yd4{bottom:412.560003pt;}
.ya0{bottom:416.560003pt;}
.y15{bottom:419.062479pt;}
.y9a{bottom:423.062478pt;}
.y21{bottom:424.999982pt;}
.y7d{bottom:425.560002pt;}
.ye8{bottom:430.560002pt;}
.ya8{bottom:432.560002pt;}
.y3e{bottom:438.560002pt;}
.y121{bottom:440.062478pt;}
.y110{bottom:443.062478pt;}
.ydf{bottom:444.560002pt;}
.y20{bottom:444.999981pt;}
.y46{bottom:446.560001pt;}
.y107{bottom:452.560001pt;}
.y120{bottom:460.062477pt;}
.y71{bottom:460.560001pt;}
.yd3{bottom:462.560001pt;}
.yc0{bottom:463.062477pt;}
.y1f{bottom:464.999981pt;}
.y104{bottom:465.062477pt;}
.y9f{bottom:466.560001pt;}
.y67{bottom:471.062476pt;}
.y1c{bottom:471.560000pt;}
.y6e{bottom:472.560000pt;}
.yf4{bottom:473.062476pt;}
.y7c{bottom:475.560000pt;}
.ye7{bottom:480.560000pt;}
.ya7{bottom:482.560000pt;}
.y1e{bottom:484.999980pt;}
.ybf{bottom:485.062476pt;}
.y103{bottom:487.062476pt;}
.y3d{bottom:488.560000pt;}
.y66{bottom:493.062475pt;}
.yde{bottom:494.559999pt;}
.yf3{bottom:495.062475pt;}
.y45{bottom:496.559999pt;}
.y5b{bottom:499.062475pt;}
.yb{bottom:501.062475pt;}
.yb8{bottom:502.559999pt;}
.y1d{bottom:504.999979pt;}
.y70{bottom:510.559999pt;}
.yd2{bottom:512.559999pt;}
.y40{bottom:515.062475pt;}
.y9e{bottom:516.559999pt;}
.y5a{bottom:521.062474pt;}
.y6d{bottom:522.559998pt;}
.y47{bottom:523.062474pt;}
.y4e{bottom:524.559998pt;}
.y7b{bottom:525.559998pt;}
.y108{bottom:529.062474pt;}
.ye6{bottom:530.559998pt;}
.ya6{bottom:532.559998pt;}
.yc4{bottom:534.559998pt;}
.y3f{bottom:537.062474pt;}
.y119{bottom:540.062473pt;}
.ya1{bottom:543.062473pt;}
.ydd{bottom:544.559997pt;}
.y98{bottom:546.559997pt;}
.yb7{bottom:552.559997pt;}
.ye9{bottom:557.062473pt;}
.yab{bottom:560.559997pt;}
.y14{bottom:561.062473pt;}
.y118{bottom:562.062473pt;}
.yd1{bottom:562.559997pt;}
.y6c{bottom:572.559996pt;}
.y100{bottom:573.062472pt;}
.y4d{bottom:574.559996pt;}
.y7a{bottom:575.559996pt;}
.y90{bottom:578.062472pt;}
.yb9{bottom:579.062472pt;}
.ya5{bottom:582.559996pt;}
.y117{bottom:584.062472pt;}
.yc3{bottom:584.559996pt;}
.y10f{bottom:588.559996pt;}
.yd5{bottom:589.062471pt;}
.ydc{bottom:594.559995pt;}
.y97{bottom:596.559995pt;}
.y8f{bottom:600.062471pt;}
.y50{bottom:601.062471pt;}
.y123{bottom:607.559995pt;}
.ya9{bottom:609.062471pt;}
.yaa{bottom:610.559995pt;}
.yc9{bottom:611.062471pt;}
.ybe{bottom:615.559994pt;}
.y64{bottom:616.559994pt;}
.y6b{bottom:622.559994pt;}
.y4f{bottom:623.062470pt;}
.y9{bottom:625.559994pt;}
.yc8{bottom:633.062470pt;}
.yf1{bottom:637.062469pt;}
.y10e{bottom:638.559993pt;}
.ydb{bottom:644.559993pt;}
.y99{bottom:645.062469pt;}
.y6f{bottom:649.062469pt;}
.y106{bottom:652.559993pt;}
.yc7{bottom:655.062469pt;}
.yf0{bottom:659.062469pt;}
.y3b{bottom:660.559993pt;}
.y59{bottom:663.062468pt;}
.y44{bottom:665.062468pt;}
.y63{bottom:666.559992pt;}
.y2{bottom:667.062468pt;}
.y79{bottom:675.559992pt;}
.y58{bottom:685.062467pt;}
.y43{bottom:687.062467pt;}
.y10d{bottom:688.559991pt;}
.yd0{bottom:691.559991pt;}
.yda{bottom:694.559991pt;}
.yc6{bottom:699.062467pt;}
.yb3{bottom:702.559991pt;}
.y13{bottom:703.062467pt;}
.y113{bottom:707.559991pt;}
.y102{bottom:709.062466pt;}
.y3a{bottom:710.559990pt;}
.ya4{bottom:711.559990pt;}
.yff{bottom:715.062466pt;}
.y62{bottom:716.559990pt;}
.yc5{bottom:721.062466pt;}
.y8e{bottom:723.559990pt;}
.y78{bottom:725.559990pt;}
.y3{bottom:731.559990pt;}
.yfe{bottom:737.062465pt;}
.y65{bottom:743.062465pt;}
.yd9{bottom:744.559989pt;}
.yfd{bottom:746.559989pt;}
.y68{bottom:751.559989pt;}
.yb2{bottom:752.559989pt;}
.y112{bottom:757.559989pt;}
.y39{bottom:760.559988pt;}
.y4c{bottom:765.062464pt;}
.y8d{bottom:773.559988pt;}
.y77{bottom:775.559988pt;}
.yb6{bottom:779.062464pt;}
.y96{bottom:787.062463pt;}
.yd8{bottom:794.559987pt;}
.yfc{bottom:796.559987pt;}
.yb5{bottom:801.062463pt;}
.y111{bottom:807.559986pt;}
.y38{bottom:810.559986pt;}
.y101{bottom:811.559986pt;}
.y56{bottom:815.559986pt;}
.yb4{bottom:823.062462pt;}
.y8c{bottom:823.559986pt;}
.y76{bottom:825.559986pt;}
.y116{bottom:834.062461pt;}
.y10c{bottom:838.559985pt;}
.yd7{bottom:844.559985pt;}
.y12{bottom:845.062461pt;}
.y115{bottom:856.062460pt;}
.y37{bottom:860.559984pt;}
.y8b{bottom:873.559984pt;}
.y75{bottom:875.559984pt;}
.y114{bottom:878.062459pt;}
.y4b{bottom:888.559983pt;}
.yd6{bottom:894.559983pt;}
.y1a{bottom:910.559982pt;}
.ye3{bottom:921.062458pt;}
.y8a{bottom:923.559982pt;}
.y74{bottom:925.559982pt;}
.y36{bottom:930.062457pt;}
.y4a{bottom:938.559981pt;}
.ye2{bottom:943.062457pt;}
.y18{bottom:960.559980pt;}
.y3c{bottom:965.062456pt;}
.y89{bottom:973.559980pt;}
.y73{bottom:975.559979pt;}
.y11{bottom:987.062455pt;}
.y87{bottom:1002.062454pt;}
.y1b{bottom:1002.559978pt;}
.y88{bottom:1023.559977pt;}
.ye{bottom:1090.559975pt;}
.h9{height:12.000000pt;}
.he{height:18.999999pt;}
.h6{height:27.999999pt;}
.h10{height:28.062499pt;}
.ha{height:31.063904pt;}
.hb{height:39.999998pt;}
.hd{height:41.453123pt;}
.h3{height:42.054686pt;}
.h8{height:51.066404pt;}
.h7{height:63.082029pt;}
.h5{height:108.140620pt;}
.h13{height:179.999992pt;}
.hf{height:239.999990pt;}
.h4{height:269.999989pt;}
.h11{height:279.999988pt;}
.h12{height:299.999987pt;}
.hc{height:519.999978pt;}
.h2{height:1047.062452pt;}
.h0{height:1122.559973pt;}
.h1{height:1122.666667pt;}
.w8{width:60.279977pt;}
.w11{width:65.279977pt;}
.wf{width:66.279977pt;}
.w16{width:88.999996pt;}
.w5{width:126.999995pt;}
.w4{width:171.999993pt;}
.w14{width:200.999992pt;}
.w15{width:330.999986pt;}
.wd{width:336.999986pt;}
.w13{width:347.999986pt;}
.w12{width:375.999984pt;}
.wc{width:489.999980pt;}
.wa{width:504.999979pt;}
.w9{width:527.999978pt;}
.wb{width:546.999977pt;}
.w3{width:580.999976pt;}
.w6{width:666.279952pt;}
.w2{width:718.093730pt;}
.we{width:726.999970pt;}
.w10{width:727.999970pt;}
.w7{width:732.999969pt;}
.w0{width:793.279947pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.xa{left:7.828130pt;}
.x4{left:19.999999pt;}
.x7{left:31.999999pt;}
.xd{left:35.999999pt;}
.x1{left:37.999998pt;}
.x14{left:42.031248pt;}
.x13{left:67.812497pt;}
.x2{left:69.999997pt;}
.xf{left:76.984372pt;}
.xb{left:86.140621pt;}
.x6{left:104.999996pt;}
.x3{left:106.999996pt;}
.xe{left:123.999995pt;}
.x5{left:124.999995pt;}
.x8{left:126.999995pt;}
.xc{left:142.999994pt;}
.x10{left:179.999993pt;}
.x16{left:324.234366pt;}
.x15{left:338.765616pt;}
.x11{left:726.999970pt;}
.x12{left:727.999970pt;}
.x9{left:732.999969pt;}
}




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