
    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_0669efbd5ad15cf30570acc0.woff')format("woff");}.ff1{font-family:ff1;line-height:1.060000;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_0e80bc70056d010c11696cad.woff')format("woff");}.ff2{font-family:ff2;line-height:1.062000;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_cb5ba4742f5d9971ceafc7cd.woff')format("woff");}.ff3{font-family:ff3;line-height:1.011000;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_96e9a9f526f3a9fc6fa835d0.woff')format("woff");}.ff4{font-family:ff4;line-height:0.807000;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_8b41a2216ec54574561d2efe.woff')format("woff");}.ff5{font-family:ff5;line-height:1.029000;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_9d11d062b6fd6800a34e9472.woff')format("woff");}.ff6{font-family:ff6;line-height:0.715820;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:ff7;src:url('chunks/assets/font_72e919d0fd2b7d862dd3e377.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_a2009df8e7700b66c2ee0f97.woff')format("woff");}.ff8{font-family:ff8;line-height:1.120000;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.m2{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;}
.v1{vertical-align:116.158918px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.000315px;}
.ls1{letter-spacing:107.972093px;}
.lsa{letter-spacing:107.986447px;}
.lsb{letter-spacing:107.986492px;}
.ls9{letter-spacing:107.986537px;}
.lsc{letter-spacing:107.986555px;}
.ls3{letter-spacing:108.000408px;}
.ls2{letter-spacing:108.000426px;}
.ls6{letter-spacing:108.000453px;}
.lsd{letter-spacing:108.000543px;}
.ls7{letter-spacing:108.000557px;}
.ls4{letter-spacing:108.000566px;}
.ls5{letter-spacing:108.000588px;}
.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:-82.800003px;}
.wsb{word-spacing:-44.544003px;}
.ws6{word-spacing:-43.008000px;}
.ws8{word-spacing:-33.120001px;}
.ws3{word-spacing:-23.460000px;}
.ws2{word-spacing:-20.700001px;}
.ws4{word-spacing:-0.102000px;}
.ws0{word-spacing:0.000000px;}
.ws5{word-spacing:107.856588px;}
.wsd{word-spacing:169.825055px;}
.wsa{word-spacing:265.619470px;}
.wsc{word-spacing:277.481709px;}
.ws9{word-spacing:321.934474px;}
.ws7{word-spacing:2023.459012px;}
._4{margin-left:-12.778038px;}
._3{margin-left:-10.914000px;}
._0{margin-left:-3.840000px;}
._2{margin-left:-2.226001px;}
._1{margin-left:-1.140000px;}
._b{width:108.000152px;}
._8{width:369.751962px;}
._9{width:418.999963px;}
._5{width:433.836459px;}
._7{width:495.450961px;}
._6{width:500.728305px;}
._a{width:523.289717px;}
.fca{color:rgb(153,0,255);}
.fc9{color:rgb(204,0,0);}
.fcb{color:rgb(78,167,46);}
.fc6{color:transparent;}
.fc7{color:rgb(255,0,0);}
.fc5{color:rgb(106,168,79);}
.fc4{color:rgb(255,255,0);}
.fc2{color:rgb(0,0,255);}
.fc8{color:rgb(89,89,89);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(255,153,0);}
.fs2{font-size:60.000000px;}
.fsd{font-size:77.245202px;}
.fs4{font-size:78.000005px;}
.fsf{font-size:84.000000px;}
.fsb{font-size:90.000003px;}
.fsa{font-size:96.000006px;}
.fsc{font-size:102.000000px;}
.fs6{font-size:108.000003px;}
.fs3{font-size:120.000001px;}
.fs8{font-size:126.000004px;}
.fs9{font-size:138.000001px;}
.fse{font-size:144.000005px;}
.fs1{font-size:167.999999px;}
.fs10{font-size:174.000012px;}
.fs11{font-size:210.000013px;}
.fs0{font-size:240.000002px;}
.fs7{font-size:324.000010px;}
.fs5{font-size:360.000012px;}
.y0{bottom:0.000000px;}
.y19{bottom:35.655011px;}
.y9c{bottom:41.530599px;}
.y5d{bottom:43.095114px;}
.y88{bottom:48.670969px;}
.y3f{bottom:51.716902px;}
.y60{bottom:56.044603px;}
.y28{bottom:59.911412px;}
.y8c{bottom:61.985012px;}
.y7b{bottom:70.060116px;}
.y9b{bottom:72.130595px;}
.ydb{bottom:72.590331px;}
.yc4{bottom:75.810433px;}
.y4b{bottom:77.304059px;}
.y94{bottom:78.510802px;}
.yee{bottom:78.843509px;}
.y5f{bottom:79.218162px;}
.y87{bottom:79.270966px;}
.yb4{bottom:81.572827px;}
.yb3{bottom:83.651962px;}
.y84{bottom:84.671870px;}
.y69{bottom:85.137401px;}
.y6c{bottom:89.920856px;}
.y27{bottom:90.961409px;}
.y8b{bottom:92.585008px;}
.y7a{bottom:100.660112px;}
.ybe{bottom:100.844476px;}
.y5c{bottom:101.415060px;}
.y9a{bottom:102.730592px;}
.y4a{bottom:104.844037px;}
.ya{bottom:110.035204px;}
.y3e{bottom:114.810780px;}
.y83{bottom:115.271868px;}
.y68{bottom:115.737396px;}
.yed{bottom:117.723510px;}
.y5{bottom:118.619258px;}
.y6b{bottom:120.520851px;}
.y26{bottom:122.011409px;}
.y8a{bottom:123.185005px;}
.ya0{bottom:123.510803px;}
.ydd{bottom:125.365771px;}
.yc3{bottom:125.442946px;}
.y5b{bottom:130.575128px;}
.y79{bottom:131.260109px;}
.y49{bottom:132.384050px;}
.ybd{bottom:135.958708px;}
.y58{bottom:140.868046px;}
.y3d{bottom:145.860779px;}
.y67{bottom:146.337394px;}
.y6a{bottom:151.120849px;}
.y25{bottom:153.061405px;}
.y9{bottom:155.395205px;}
.y24{bottom:156.518568px;}
.y5a{bottom:159.735140px;}
.y93{bottom:162.303634px;}
.ye4{bottom:163.434332px;}
.y4{bottom:163.979248px;}
.y57{bottom:170.028047px;}
.yec{bottom:171.603508px;}
.y3c{bottom:176.910776px;}
.ydc{bottom:186.662061px;}
.yc2{bottom:187.940939px;}
.y23{bottom:188.063571px;}
.yb2{bottom:191.411980px;}
.y92{bottom:192.903629px;}
.y7f{bottom:195.887120px;}
.yd9{bottom:198.449119px;}
.y8{bottom:200.755196px;}
.y9f{bottom:203.539469px;}
.yd8{bottom:204.401348px;}
.y3{bottom:209.339250px;}
.y48{bottom:217.464101px;}
.ye3{bottom:217.734326px;}
.y2b{bottom:220.917835px;}
.y6f{bottom:222.510806px;}
.y91{bottom:223.503624px;}
.yca{bottom:223.661366px;}
.yeb{bottom:225.483507px;}
.y78{bottom:229.759069px;}
.yb1{bottom:230.291981px;}
.y9e{bottom:234.139465px;}
.y5e{bottom:239.917622px;}
.y34{bottom:240.004766px;}
.y7{bottom:246.115186px;}
.yc1{bottom:251.412012px;}
.y2a{bottom:251.967835px;}
.y90{bottom:254.103622px;}
.y2{bottom:254.699240px;}
.y56{bottom:258.348087px;}
.y77{bottom:260.359064px;}
.y9d{bottom:264.739462px;}
.y81{bottom:267.676233px;}
.y66{bottom:270.680619px;}
.y33{bottom:271.054766px;}
.y29{bottom:283.017832px;}
.y89{bottom:285.510808px;}
.y55{bottom:287.508055px;}
.yc0{bottom:290.292013px;}
.y76{bottom:290.959060px;}
.ya7{bottom:293.123976px;}
.y18{bottom:295.069360px;}
.y6{bottom:295.363187px;}
.y80{bottom:298.276231px;}
.y65{bottom:301.280614px;}
.y32{bottom:302.104762px;}
.y47{bottom:302.544119px;}
.y1{bottom:303.947230px;}
.yc9{bottom:311.141358px;}
.y6d{bottom:311.259496px;}
.y8f{bottom:311.531283px;}
.y54{bottom:316.668033px;}
.y75{bottom:321.559055px;}
.yd1{bottom:323.988059px;}
.yb9{bottom:329.172015px;}
.y46{bottom:330.084097px;}
.ye2{bottom:331.379546px;}
.y64{bottom:331.880612px;}
.yb0{bottom:338.052034px;}
.y8e{bottom:342.131278px;}
.y53{bottom:345.828056px;}
.y99{bottom:348.325258px;}
.y22{bottom:352.081459px;}
.y2e{bottom:352.141361px;}
.y74{bottom:352.159053px;}
.yd4{bottom:355.092049px;}
.y38{bottom:364.302143px;}
.yb8{bottom:368.052038px;}
.y8d{bottom:372.731276px;}
.y52{bottom:374.988069px;}
.yaf{bottom:376.932035px;}
.ybc{bottom:377.423874px;}
.y98{bottom:378.925256px;}
.ye1{bottom:379.952154px;}
.ya6{bottom:380.603956px;}
.y2d{bottom:383.191361px;}
.y21{bottom:386.101438px;}
.y17{bottom:392.269352px;}
.yd{bottom:394.795517px;}
.y37{bottom:395.352140px;}
.y10{bottom:395.378717px;}
.yc8{bottom:398.621361px;}
.yf1{bottom:400.369363px;}
.y51{bottom:404.148070px;}
.ybf{bottom:406.932040px;}
.yc{bottom:410.995517px;}
.yf{bottom:411.578717px;}
.y7c{bottom:411.887127px;}
.y2c{bottom:414.241357px;}
.yd0{bottom:414.708062px;}
.y45{bottom:415.164059px;}
.yae{bottom:415.812025px;}
.yd5{bottom:419.360662px;}
.y20{bottom:420.121428px;}
.y6e{bottom:420.887127px;}
.y36{bottom:426.402140px;}
.yb{bottom:427.195519px;}
.ye{bottom:427.778719px;}
.y82{bottom:429.887128px;}
.yd3{bottom:432.852052px;}
.ye0{bottom:434.252170px;}
.yea{bottom:439.693436px;}
.y63{bottom:442.498814px;}
.y7e{bottom:442.660156px;}
.y44{bottom:442.704059px;}
.yb6{bottom:445.812030px;}
.y73{bottom:449.359059px;}
.y97{bottom:451.323495px;}
.y1f{bottom:454.141417px;}
.yad{bottom:454.692026px;}
.yf0{bottom:457.069365px;}
.y35{bottom:457.452136px;}
.ya5{bottom:468.083948px;}
.yd6{bottom:470.335494px;}
.y62{bottom:473.098810px;}
.y7d{bottom:473.260154px;}
.y86{bottom:475.691980px;}
.y72{bottom:479.959054px;}
.y96{bottom:481.923490px;}
.y31{bottom:483.474214px;}
.yb7{bottom:484.692031px;}
.yc7{bottom:486.101356px;}
.ybb{bottom:487.811262px;}
.y1e{bottom:488.161430px;}
.y16{bottom:489.469343px;}
.y50{bottom:492.468031px;}
.ye9{bottom:493.573434px;}
.y61{bottom:503.698807px;}
.ycf{bottom:505.428043px;}
.y85{bottom:506.291978px;}
.ya2{bottom:508.923491px;}
.y71{bottom:510.559050px;}
.yd2{bottom:510.612043px;}
.y95{bottom:512.523488px;}
.y30{bottom:514.524214px;}
.y4f{bottom:521.628026px;}
.yb5{bottom:523.572032px;}
.y3b{bottom:524.110036px;}
.y43{bottom:527.784032px;}
.yba{bottom:530.723257px;}
.y1d{bottom:537.181428px;}
.ya1{bottom:539.523489px;}
.y70{bottom:541.159047px;}
.y2f{bottom:545.574210px;}
.ye6{bottom:545.793667px;}
.ye8{bottom:547.453432px;}
.ydf{bottom:547.897424px;}
.y4e{bottom:550.788022px;}
.y3a{bottom:555.160036px;}
.y42{bottom:555.324033px;}
.ya4{bottom:555.563948px;}
.yac{bottom:562.452033px;}
.yda{bottom:565.931190px;}
.yef{bottom:570.469349px;}
.y1c{bottom:571.201429px;}
.yd7{bottom:571.340652px;}
.yc6{bottom:573.581352px;}
.y4d{bottom:579.948023px;}
.y41{bottom:582.864028px;}
.y39{bottom:586.210033px;}
.yce{bottom:596.148027px;}
.yab{bottom:601.332024px;}
.ye7{bottom:601.333431px;}
.yde{bottom:602.197430px;}
.y1b{bottom:605.221430px;}
.y4c{bottom:609.108026px;}
.y40{bottom:610.404026px;}
.ya3{bottom:643.043944px;}
.y15{bottom:650.761958px;}
.y13{bottom:660.463618px;}
.yc5{bottom:661.061346px;}
.y12{bottom:683.863619px;}
.ye5{bottom:695.080706px;}
.y14{bottom:700.009959px;}
.y59{bottom:704.578058px;}
.y11{bottom:709.783620px;}
.y1a{bottom:710.313953px;}
.ycd{bottom:711.412377px;}
.yaa{bottom:711.413070px;}
.ycc{bottom:727.612377px;}
.ya9{bottom:727.613070px;}
.ycb{bottom:743.812379px;}
.ya8{bottom:743.813072px;}
.h3{height:49.020000px;}
.h5{height:61.698004px;}
.h10{height:65.040460px;}
.h17{height:70.728000px;}
.hd{height:75.780002px;}
.hc{height:75.936005px;}
.h7{height:77.308596px;}
.h11{height:85.680000px;}
.he{height:85.884000px;}
.h19{height:90.720003px;}
.hf{height:90.936003px;}
.h4{height:94.920001px;}
.ha{height:105.840003px;}
.h9{height:106.092003px;}
.hb{height:109.158001px;}
.h13{height:120.960004px;}
.h12{height:121.248004px;}
.h15{height:121.392004px;}
.h1b{height:141.119999px;}
.h2{height:141.455999px;}
.h14{height:141.623999px;}
.h18{height:146.682010px;}
.h1c{height:176.400011px;}
.h1{height:201.600001px;}
.h1a{height:202.080001px;}
.h16{height:237.550922px;}
.h8{height:272.808009px;}
.h6{height:303.120010px;}
.h0{height:810.000000px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x34{left:25.412996px;}
.x19{left:60.881574px;}
.x10{left:67.966540px;}
.x11{left:72.894689px;}
.x3d{left:98.250006px;}
.x6{left:108.375006px;}
.x7{left:110.625264px;}
.x1c{left:113.630866px;}
.x3f{left:118.130970px;}
.x12{left:119.979985px;}
.x40{left:121.852249px;}
.x28{left:129.588895px;}
.x13{left:162.375008px;}
.x41{left:166.096288px;}
.xb{left:195.216711px;}
.x16{left:292.523972px;}
.x3a{left:306.253247px;}
.x39{left:322.571598px;}
.x3e{left:366.374520px;}
.x17{left:411.035458px;}
.x18{left:412.694901px;}
.x1a{left:413.763808px;}
.xf{left:429.688904px;}
.x25{left:507.934051px;}
.x2b{left:520.095470px;}
.x15{left:521.944025px;}
.x2a{left:531.578751px;}
.x3c{left:539.316805px;}
.x27{left:600.860573px;}
.x36{left:607.505082px;}
.x26{left:629.306683px;}
.x2c{left:654.799971px;}
.x35{left:659.926821px;}
.x21{left:685.497022px;}
.x29{left:692.929162px;}
.x1d{left:695.734110px;}
.x3b{left:697.927072px;}
.x30{left:724.308442px;}
.x38{left:727.451348px;}
.xc{left:732.496456px;}
.xd{left:765.766015px;}
.x2{left:802.384171px;}
.x1b{left:816.035426px;}
.x14{left:856.494106px;}
.x2d{left:864.233375px;}
.x32{left:870.717459px;}
.x3{left:887.632588px;}
.x8{left:908.382415px;}
.x37{left:927.914655px;}
.x4{left:948.902239px;}
.x1e{left:956.397709px;}
.x22{left:962.193710px;}
.x2f{left:979.633651px;}
.x5{left:989.636657px;}
.x2e{left:998.363079px;}
.x33{left:1004.997790px;}
.x1{left:1010.650184px;}
.x31{left:1041.141881px;}
.x23{left:1064.865893px;}
.x20{left:1087.689972px;}
.x1f{left:1104.106007px;}
.x24{left:1132.186086px;}
.xa{left:1143.414172px;}
.x9{left:1255.164880px;}
.xe{left:1300.765429px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:103.252371pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.000280pt;}
.ls1{letter-spacing:95.975194pt;}
.lsa{letter-spacing:95.987953pt;}
.lsb{letter-spacing:95.987993pt;}
.ls9{letter-spacing:95.988033pt;}
.lsc{letter-spacing:95.988049pt;}
.ls3{letter-spacing:96.000363pt;}
.ls2{letter-spacing:96.000379pt;}
.ls6{letter-spacing:96.000403pt;}
.lsd{letter-spacing:96.000483pt;}
.ls7{letter-spacing:96.000495pt;}
.ls4{letter-spacing:96.000503pt;}
.ls5{letter-spacing:96.000523pt;}
.ws1{word-spacing:-73.600002pt;}
.wsb{word-spacing:-39.594669pt;}
.ws6{word-spacing:-38.229333pt;}
.ws8{word-spacing:-29.440001pt;}
.ws3{word-spacing:-20.853333pt;}
.ws2{word-spacing:-18.400001pt;}
.ws4{word-spacing:-0.090667pt;}
.ws0{word-spacing:0.000000pt;}
.ws5{word-spacing:95.872523pt;}
.wsd{word-spacing:150.955605pt;}
.wsa{word-spacing:236.106196pt;}
.wsc{word-spacing:246.650408pt;}
.ws9{word-spacing:286.163977pt;}
.ws7{word-spacing:1798.630233pt;}
._4{margin-left:-11.358256pt;}
._3{margin-left:-9.701333pt;}
._0{margin-left:-3.413333pt;}
._2{margin-left:-1.978667pt;}
._1{margin-left:-1.013333pt;}
._b{width:96.000135pt;}
._8{width:328.668411pt;}
._9{width:372.444412pt;}
._5{width:385.632408pt;}
._7{width:440.400854pt;}
._6{width:445.091826pt;}
._a{width:465.146415pt;}
.fs2{font-size:53.333334pt;}
.fsd{font-size:68.662402pt;}
.fs4{font-size:69.333338pt;}
.fsf{font-size:74.666666pt;}
.fsb{font-size:80.000003pt;}
.fsa{font-size:85.333339pt;}
.fsc{font-size:90.666667pt;}
.fs6{font-size:96.000003pt;}
.fs3{font-size:106.666667pt;}
.fs8{font-size:112.000004pt;}
.fs9{font-size:122.666668pt;}
.fse{font-size:128.000004pt;}
.fs1{font-size:149.333333pt;}
.fs10{font-size:154.666677pt;}
.fs11{font-size:186.666678pt;}
.fs0{font-size:213.333335pt;}
.fs7{font-size:288.000009pt;}
.fs5{font-size:320.000010pt;}
.y0{bottom:0.000000pt;}
.y19{bottom:31.693343pt;}
.y9c{bottom:36.916088pt;}
.y5d{bottom:38.306768pt;}
.y88{bottom:43.263083pt;}
.y3f{bottom:45.970579pt;}
.y60{bottom:49.817425pt;}
.y28{bottom:53.254589pt;}
.y8c{bottom:55.097789pt;}
.y7b{bottom:62.275659pt;}
.y9b{bottom:64.116084pt;}
.ydb{bottom:64.524739pt;}
.yc4{bottom:67.387051pt;}
.y4b{bottom:68.714719pt;}
.y94{bottom:69.787379pt;}
.yee{bottom:70.083119pt;}
.y5f{bottom:70.416144pt;}
.y87{bottom:70.463081pt;}
.yb4{bottom:72.509179pt;}
.yb3{bottom:74.357299pt;}
.y84{bottom:75.263884pt;}
.y69{bottom:75.677689pt;}
.y6c{bottom:79.929650pt;}
.y27{bottom:80.854586pt;}
.y8b{bottom:82.297785pt;}
.y7a{bottom:89.475655pt;}
.ybe{bottom:89.639534pt;}
.y5c{bottom:90.146720pt;}
.y9a{bottom:91.316082pt;}
.y4a{bottom:93.194700pt;}
.ya{bottom:97.809070pt;}
.y3e{bottom:102.054026pt;}
.y83{bottom:102.463882pt;}
.y68{bottom:102.877685pt;}
.yed{bottom:104.643120pt;}
.y5{bottom:105.439340pt;}
.y6b{bottom:107.129645pt;}
.y26{bottom:108.454585pt;}
.y8a{bottom:109.497782pt;}
.ya0{bottom:109.787380pt;}
.ydd{bottom:111.436241pt;}
.yc3{bottom:111.504841pt;}
.y5b{bottom:116.066781pt;}
.y79{bottom:116.675653pt;}
.y49{bottom:117.674711pt;}
.ybd{bottom:120.852185pt;}
.y58{bottom:125.216041pt;}
.y3d{bottom:129.654026pt;}
.y67{bottom:130.077683pt;}
.y6a{bottom:134.329643pt;}
.y25{bottom:136.054582pt;}
.y9{bottom:138.129071pt;}
.y24{bottom:139.127616pt;}
.y5a{bottom:141.986792pt;}
.y93{bottom:144.269897pt;}
.ye4{bottom:145.274962pt;}
.y4{bottom:145.759332pt;}
.y57{bottom:151.136042pt;}
.yec{bottom:152.536452pt;}
.y3c{bottom:157.254023pt;}
.ydc{bottom:165.921832pt;}
.yc2{bottom:167.058612pt;}
.y23{bottom:167.167618pt;}
.yb2{bottom:170.143982pt;}
.y92{bottom:171.469892pt;}
.y7f{bottom:174.121885pt;}
.yd9{bottom:176.399217pt;}
.y8{bottom:178.449063pt;}
.y9f{bottom:180.923973pt;}
.yd8{bottom:181.690087pt;}
.y3{bottom:186.079333pt;}
.y48{bottom:193.301423pt;}
.ye3{bottom:193.541623pt;}
.y2b{bottom:196.371409pt;}
.y6f{bottom:197.787383pt;}
.y91{bottom:198.669888pt;}
.yca{bottom:198.810103pt;}
.yeb{bottom:200.429784pt;}
.y78{bottom:204.230283pt;}
.yb1{bottom:204.703984pt;}
.y9e{bottom:208.123969pt;}
.y5e{bottom:213.260109pt;}
.y34{bottom:213.337570pt;}
.y7{bottom:218.769054pt;}
.yc1{bottom:223.477344pt;}
.y2a{bottom:223.971409pt;}
.y90{bottom:225.869886pt;}
.y2{bottom:226.399324pt;}
.y56{bottom:229.642744pt;}
.y77{bottom:231.430279pt;}
.y9d{bottom:235.323966pt;}
.y81{bottom:237.934430pt;}
.y66{bottom:240.604995pt;}
.y33{bottom:240.937570pt;}
.y29{bottom:251.571406pt;}
.y89{bottom:253.787385pt;}
.y55{bottom:255.562715pt;}
.yc0{bottom:258.037345pt;}
.y76{bottom:258.630275pt;}
.ya7{bottom:260.554645pt;}
.y18{bottom:262.283875pt;}
.y6{bottom:262.545055pt;}
.y80{bottom:265.134427pt;}
.y65{bottom:267.804991pt;}
.y32{bottom:268.537567pt;}
.y47{bottom:268.928106pt;}
.y1{bottom:270.175316pt;}
.yc9{bottom:276.570096pt;}
.y6d{bottom:276.675108pt;}
.y8f{bottom:276.916696pt;}
.y54{bottom:281.482696pt;}
.y75{bottom:285.830271pt;}
.yd1{bottom:287.989386pt;}
.yb9{bottom:292.597346pt;}
.y46{bottom:293.408086pt;}
.ye2{bottom:294.559596pt;}
.y64{bottom:295.004988pt;}
.yb0{bottom:300.490697pt;}
.y8e{bottom:304.116692pt;}
.y53{bottom:307.402717pt;}
.y99{bottom:309.622452pt;}
.y22{bottom:312.961297pt;}
.y2e{bottom:313.014543pt;}
.y74{bottom:313.030269pt;}
.yd4{bottom:315.637377pt;}
.y38{bottom:323.824127pt;}
.yb8{bottom:327.157367pt;}
.y8d{bottom:331.316690pt;}
.y52{bottom:333.322728pt;}
.yaf{bottom:335.050698pt;}
.ybc{bottom:335.487888pt;}
.y98{bottom:336.822450pt;}
.ye1{bottom:337.735248pt;}
.ya6{bottom:338.314628pt;}
.y2d{bottom:340.614543pt;}
.y21{bottom:343.201278pt;}
.y17{bottom:348.683868pt;}
.yd{bottom:350.929348pt;}
.y37{bottom:351.424124pt;}
.y10{bottom:351.447748pt;}
.yc8{bottom:354.330098pt;}
.yf1{bottom:355.883878pt;}
.y51{bottom:359.242728pt;}
.ybf{bottom:361.717369pt;}
.yc{bottom:365.329349pt;}
.yf{bottom:365.847749pt;}
.y7c{bottom:366.121891pt;}
.y2c{bottom:368.214540pt;}
.yd0{bottom:368.629389pt;}
.y45{bottom:369.034719pt;}
.yae{bottom:369.610689pt;}
.yd5{bottom:372.765033pt;}
.y20{bottom:373.441269pt;}
.y6e{bottom:374.121891pt;}
.y36{bottom:379.024124pt;}
.yb{bottom:379.729350pt;}
.ye{bottom:380.247750pt;}
.y82{bottom:382.121891pt;}
.yd3{bottom:384.757379pt;}
.ye0{bottom:386.001929pt;}
.yea{bottom:390.838609pt;}
.y63{bottom:393.332280pt;}
.y7e{bottom:393.475695pt;}
.y44{bottom:393.514720pt;}
.yb6{bottom:396.277360pt;}
.y73{bottom:399.430275pt;}
.y97{bottom:401.176440pt;}
.y1f{bottom:403.681260pt;}
.yad{bottom:404.170690pt;}
.yf0{bottom:406.283880pt;}
.y35{bottom:406.624121pt;}
.ya5{bottom:416.074620pt;}
.yd6{bottom:418.075994pt;}
.y62{bottom:420.532275pt;}
.y7d{bottom:420.675692pt;}
.y86{bottom:422.837315pt;}
.y72{bottom:426.630271pt;}
.y96{bottom:428.376436pt;}
.y31{bottom:429.754857pt;}
.yb7{bottom:430.837361pt;}
.yc7{bottom:432.090094pt;}
.ybb{bottom:433.610011pt;}
.y1e{bottom:433.921271pt;}
.y16{bottom:435.083861pt;}
.y50{bottom:437.749361pt;}
.ye9{bottom:438.731941pt;}
.y61{bottom:447.732273pt;}
.ycf{bottom:449.269371pt;}
.y85{bottom:450.037313pt;}
.ya2{bottom:452.376436pt;}
.y71{bottom:453.830266pt;}
.yd2{bottom:453.877371pt;}
.y95{bottom:455.576434pt;}
.y30{bottom:457.354857pt;}
.y4f{bottom:463.669357pt;}
.yb5{bottom:465.397362pt;}
.y3b{bottom:465.875588pt;}
.y43{bottom:469.141362pt;}
.yba{bottom:471.754006pt;}
.y1d{bottom:477.494602pt;}
.ya1{bottom:479.576434pt;}
.y70{bottom:481.030264pt;}
.y2f{bottom:484.954853pt;}
.ye6{bottom:485.149926pt;}
.ye8{bottom:486.625273pt;}
.ydf{bottom:487.019933pt;}
.y4e{bottom:489.589353pt;}
.y3a{bottom:493.475588pt;}
.y42{bottom:493.621363pt;}
.ya4{bottom:493.834621pt;}
.yac{bottom:499.957363pt;}
.yda{bottom:503.049947pt;}
.yef{bottom:507.083866pt;}
.y1c{bottom:507.734603pt;}
.yd7{bottom:507.858357pt;}
.yc6{bottom:509.850090pt;}
.y4d{bottom:515.509353pt;}
.y41{bottom:518.101359pt;}
.y39{bottom:521.075585pt;}
.yce{bottom:529.909357pt;}
.yab{bottom:534.517355pt;}
.ye7{bottom:534.518605pt;}
.yde{bottom:535.286604pt;}
.y1b{bottom:537.974604pt;}
.y4c{bottom:541.429356pt;}
.y40{bottom:542.581356pt;}
.ya3{bottom:571.594617pt;}
.y15{bottom:578.455073pt;}
.y13{bottom:587.078772pt;}
.yc5{bottom:587.610086pt;}
.y12{bottom:607.878772pt;}
.ye5{bottom:617.849517pt;}
.y14{bottom:622.231075pt;}
.y59{bottom:626.291607pt;}
.y11{bottom:630.918773pt;}
.y1a{bottom:631.390180pt;}
.ycd{bottom:632.366557pt;}
.yaa{bottom:632.367173pt;}
.ycc{bottom:646.766558pt;}
.ya9{bottom:646.767174pt;}
.ycb{bottom:661.166559pt;}
.ya8{bottom:661.167175pt;}
.h3{height:43.573334pt;}
.h5{height:54.842671pt;}
.h10{height:57.813743pt;}
.h17{height:62.869333pt;}
.hd{height:67.360002pt;}
.hc{height:67.498671pt;}
.h7{height:68.718752pt;}
.h11{height:76.160000pt;}
.he{height:76.341334pt;}
.h19{height:80.640003pt;}
.hf{height:80.832003pt;}
.h4{height:84.373334pt;}
.ha{height:94.080003pt;}
.h9{height:94.304003pt;}
.hb{height:97.029334pt;}
.h13{height:107.520003pt;}
.h12{height:107.776003pt;}
.h15{height:107.904003pt;}
.h1b{height:125.440000pt;}
.h2{height:125.738666pt;}
.h14{height:125.888000pt;}
.h18{height:130.384009pt;}
.h1c{height:156.800009pt;}
.h1{height:179.200001pt;}
.h1a{height:179.626668pt;}
.h16{height:211.156375pt;}
.h8{height:242.496008pt;}
.h6{height:269.440009pt;}
.h0{height:720.000000pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x34{left:22.589330pt;}
.x19{left:54.116955pt;}
.x10{left:60.414702pt;}
.x11{left:64.795279pt;}
.x3d{left:87.333339pt;}
.x6{left:96.333339pt;}
.x7{left:98.333568pt;}
.x1c{left:101.005214pt;}
.x3f{left:105.005306pt;}
.x12{left:106.648875pt;}
.x40{left:108.313110pt;}
.x28{left:115.190129pt;}
.x13{left:144.333341pt;}
.x41{left:147.641145pt;}
.xb{left:173.525966pt;}
.x16{left:260.021308pt;}
.x3a{left:272.225109pt;}
.x39{left:286.730309pt;}
.x3e{left:325.666240pt;}
.x17{left:365.364852pt;}
.x18{left:366.839912pt;}
.x1a{left:367.790052pt;}
.xf{left:381.945692pt;}
.x25{left:451.496934pt;}
.x2b{left:462.307085pt;}
.x15{left:463.950245pt;}
.x2a{left:472.514445pt;}
.x3c{left:479.392715pt;}
.x27{left:534.098287pt;}
.x36{left:540.004517pt;}
.x26{left:559.383718pt;}
.x2c{left:582.044419pt;}
.x35{left:586.601619pt;}
.x21{left:609.330686pt;}
.x29{left:615.937033pt;}
.x1d{left:618.430320pt;}
.x3b{left:620.379620pt;}
.x30{left:643.829727pt;}
.x38{left:646.623421pt;}
.xc{left:651.107961pt;}
.xd{left:680.680902pt;}
.x2{left:713.230374pt;}
.x1b{left:725.364823pt;}
.x14{left:761.328094pt;}
.x2d{left:768.207445pt;}
.x32{left:773.971075pt;}
.x3{left:789.006745pt;}
.x8{left:807.451036pt;}
.x37{left:824.813026pt;}
.x4{left:843.468657pt;}
.x1e{left:850.131297pt;}
.x22{left:855.283297pt;}
.x2f{left:870.785468pt;}
.x5{left:879.677028pt;}
.x2e{left:887.433848pt;}
.x33{left:893.331369pt;}
.x1{left:898.355719pt;}
.x31{left:925.459450pt;}
.x23{left:946.547460pt;}
.x20{left:966.835531pt;}
.x1f{left:981.427561pt;}
.x24{left:1006.387632pt;}
.xa{left:1016.368153pt;}
.x9{left:1115.702116pt;}
.xe{left:1156.235937pt;}
}




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