
    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_c42e218c5330e364abe930f7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.160156;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_35d0a1931e4e6596712dae9a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.204102;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_85e51aee960b6edd458dc305.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.011230;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_defd6fb868f83b09e83b0ce5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.740234;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_706d8232e572416153d86f82.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.145020;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_85de47bb1a989c4862050fdc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.949219;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_c42e218c5330e364abe930f7.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.160156;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_6b7a9da606fc1764b053faf1.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.219238;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:ff9;src:url('chunks/assets/font_c42e218c5330e364abe930f7.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.160156;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.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.008238px;}
.ls1{letter-spacing:0.014238px;}
.ls0{letter-spacing:0.015000px;}
.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:-41.903983px;}
.ws2{word-spacing:-35.999986px;}
.ws7{word-spacing:-20.789992px;}
.ws4{word-spacing:-17.261993px;}
.ws6{word-spacing:-16.439993px;}
.ws3{word-spacing:-12.083395px;}
.ws0{word-spacing:-11.339995px;}
.ws5{word-spacing:0.000000px;}
._a{margin-left:-7.732522px;}
._f{margin-left:-6.444083px;}
._3{margin-left:-5.326258px;}
._5{margin-left:-3.615620px;}
._1{margin-left:-2.522011px;}
._0{margin-left:-1.259583px;}
._2{width:1.000547px;}
._4{width:2.193928px;}
._8{width:3.271814px;}
._7{width:4.565392px;}
._c{width:5.825977px;}
._d{width:6.865293px;}
._9{width:8.158101px;}
._b{width:10.078168px;}
._10{width:12.583549px;}
._e{width:71.882895px;}
._6{width:301.931321px;}
.fc1{color:rgb(16,15,13);}
.fc0{color:rgb(33,75,39);}
.fs0{font-size:35.999986px;}
.fs3{font-size:44.099982px;}
.fs5{font-size:47.999981px;}
.fs4{font-size:59.999976px;}
.fs2{font-size:62.999975px;}
.fs6{font-size:65.999974px;}
.fs1{font-size:143.999942px;}
.y0{bottom:0.000000px;}
.y6{bottom:42.664854px;}
.y5{bottom:53.464850px;}
.y4{bottom:64.264846px;}
.y3{bottom:75.064841px;}
.y2{bottom:85.864837px;}
.yba{bottom:119.986823px;}
.y1{bottom:121.325580px;}
.y7{bottom:127.197321px;}
.y42{bottom:127.243821px;}
.ya9{bottom:129.232820px;}
.y41{bottom:145.243813px;}
.ya8{bottom:147.232813px;}
.y64{bottom:157.156809px;}
.y97{bottom:160.149307px;}
.y40{bottom:163.243806px;}
.ya7{bottom:165.232805px;}
.y63{bottom:175.156801px;}
.y96{bottom:178.149300px;}
.yd4{bottom:178.273800px;}
.y3f{bottom:181.243799px;}
.ya6{bottom:183.232798px;}
.yb5{bottom:191.857795px;}
.y62{bottom:193.156794px;}
.y95{bottom:196.149293px;}
.yd3{bottom:196.273793px;}
.y3e{bottom:199.243792px;}
.yb4{bottom:209.857788px;}
.y94{bottom:214.149286px;}
.y3d{bottom:217.243785px;}
.y61{bottom:219.661784px;}
.yd2{bottom:222.778782px;}
.ya5{bottom:226.747781px;}
.yef{bottom:227.836030px;}
.yb3{bottom:227.857780px;}
.y93{bottom:232.149279px;}
.y3c{bottom:235.243777px;}
.yd1{bottom:240.778775px;}
.ya3{bottom:242.487274px;}
.yee{bottom:245.836023px;}
.y60{bottom:246.166773px;}
.y1f{bottom:247.447772px;}
.y92{bottom:250.149271px;}
.y3b{bottom:253.243770px;}
.yd0{bottom:258.778768px;}
.yed{bottom:263.836016px;}
.y5f{bottom:264.166766px;}
.y1e{bottom:265.447765px;}
.y91{bottom:268.149264px;}
.y3a{bottom:271.243763px;}
.yb2{bottom:271.372763px;}
.y81{bottom:274.491262px;}
.ycf{bottom:276.778761px;}
.yec{bottom:281.836009px;}
.y5e{bottom:282.166759px;}
.y1d{bottom:283.447758px;}
.y90{bottom:286.149257px;}
.y80{bottom:292.491254px;}
.y39{bottom:297.748752px;}
.yeb{bottom:299.836002px;}
.y5d{bottom:300.166751px;}
.y1c{bottom:301.447751px;}
.yce{bottom:303.283750px;}
.y8f{bottom:304.149250px;}
.y7f{bottom:310.491247px;}
.y38{bottom:315.748745px;}
.y5c{bottom:318.166744px;}
.y1b{bottom:319.447744px;}
.ycd{bottom:321.283743px;}
.y8e{bottom:322.149243px;}
.yea{bottom:326.340991px;}
.y7e{bottom:328.491240px;}
.ycc{bottom:339.283736px;}
.y8d{bottom:340.149235px;}
.ye9{bottom:344.340984px;}
.y5b{bottom:344.671734px;}
.y7d{bottom:346.491233px;}
.y37{bottom:346.513733px;}
.ycb{bottom:357.283729px;}
.y8c{bottom:358.149228px;}
.ye8{bottom:362.340977px;}
.y5a{bottom:362.671726px;}
.y7c{bottom:364.491226px;}
.y1a{bottom:371.464723px;}
.yca{bottom:375.283721px;}
.y8b{bottom:376.149221px;}
.ye7{bottom:380.340969px;}
.y59{bottom:380.671719px;}
.y7b{bottom:382.491218px;}
.y36{bottom:387.565716px;}
.y19{bottom:390.363815px;}
.y8a{bottom:394.149214px;}
.ye6{bottom:398.340962px;}
.y58{bottom:398.671712px;}
.yc9{bottom:401.788711px;}
.y35{bottom:407.365709px;}
.y7a{bottom:413.241206px;}
.ye5{bottom:416.340955px;}
.y18{bottom:417.766704px;}
.yc8{bottom:419.788704px;}
.y89{bottom:420.654203px;}
.y57{bottom:425.176701px;}
.ye4{bottom:434.340948px;}
.y17{bottom:436.666547px;}
.yc7{bottom:437.788696px;}
.y88{bottom:438.654196px;}
.y56{bottom:443.176694px;}
.y79{bottom:443.989694px;}
.ye3{bottom:452.340941px;}
.y34{bottom:452.673190px;}
.yc6{bottom:455.788689px;}
.y55{bottom:461.176687px;}
.y78{bottom:461.989687px;}
.y16{bottom:464.070186px;}
.y87{bottom:465.159185px;}
.ye2{bottom:470.340933px;}
.y33{bottom:470.673183px;}
.yb9{bottom:471.118683px;}
.yc5{bottom:473.788682px;}
.y54{bottom:479.176680px;}
.y77{bottom:479.989679px;}
.y15{bottom:482.970028px;}
.y86{bottom:483.159178px;}
.ye1{bottom:488.340926px;}
.y32{bottom:488.673176px;}
.yb8{bottom:489.118676px;}
.yc4{bottom:491.788675px;}
.y53{bottom:497.176673px;}
.y76{bottom:497.989672px;}
.y85{bottom:501.159171px;}
.ye0{bottom:506.340919px;}
.y31{bottom:506.673169px;}
.yb7{bottom:507.118669px;}
.yc3{bottom:509.788668px;}
.y14{bottom:510.373667px;}
.y75{bottom:515.989665px;}
.y84{bottom:519.159164px;}
.y52{bottom:523.681662px;}
.y30{bottom:524.673162px;}
.y13{bottom:529.273660px;}
.ydf{bottom:532.845908px;}
.yc2{bottom:540.544655px;}
.y51{bottom:541.681655px;}
.y74{bottom:542.494654px;}
.y2f{bottom:542.673154px;}
.y83{bottom:545.664153px;}
.yf6{bottom:549.855152px;}
.yb6{bottom:550.633651px;}
.yde{bottom:550.845901px;}
.y12{bottom:556.678649px;}
.y50{bottom:559.681648px;}
.y73{bottom:560.494647px;}
.y2e{bottom:560.673147px;}
.yf5{bottom:567.855144px;}
.ydd{bottom:568.845894px;}
.y11{bottom:575.579991px;}
.yc1{bottom:577.350141px;}
.y72{bottom:578.494640px;}
.y2d{bottom:578.673140px;}
.yf4{bottom:585.855137px;}
.y4f{bottom:586.186637px;}
.ydc{bottom:586.845887px;}
.y82{bottom:589.179136px;}
.yc0{bottom:595.350133px;}
.y71{bottom:596.494633px;}
.y2c{bottom:596.673133px;}
.y10{bottom:602.983630px;}
.yf3{bottom:603.855130px;}
.y4e{bottom:604.186630px;}
.ydb{bottom:604.845880px;}
.ybf{bottom:613.350126px;}
.y70{bottom:614.494626px;}
.yf2{bottom:621.855123px;}
.yf{bottom:621.883473px;}
.y4d{bottom:622.186623px;}
.yda{bottom:622.845872px;}
.y2b{bottom:623.178122px;}
.ybe{bottom:631.350119px;}
.y6f{bottom:632.494618px;}
.ya4{bottom:638.926616px;}
.yf1{bottom:639.855116px;}
.yd9{bottom:640.845865px;}
.y4c{bottom:648.691612px;}
.ye{bottom:649.287112px;}
.ybd{bottom:649.350112px;}
.y2a{bottom:649.683112px;}
.ya2{bottom:657.855108px;}
.yd8{bottom:658.845858px;}
.y6e{bottom:658.999608px;}
.y4b{bottom:666.691605px;}
.ybc{bottom:667.350105px;}
.y29{bottom:667.683104px;}
.yd{bottom:668.187104px;}
.yb1{bottom:670.795603px;}
.ya1{bottom:675.855101px;}
.y6d{bottom:676.999601px;}
.y4a{bottom:684.691598px;}
.ybb{bottom:685.350097px;}
.y28{bottom:685.683097px;}
.yb0{bottom:688.795596px;}
.ya0{bottom:693.855094px;}
.yc{bottom:695.592093px;}
.y49{bottom:702.691590px;}
.yd7{bottom:703.350090px;}
.y6c{bottom:703.504590px;}
.yaf{bottom:706.795589px;}
.y9f{bottom:711.855087px;}
.yb{bottom:714.492086px;}
.y27{bottom:716.439085px;}
.y48{bottom:720.691583px;}
.y6b{bottom:721.504583px;}
.yae{bottom:724.795582px;}
.y9e{bottom:729.855080px;}
.y47{bottom:738.691576px;}
.y6a{bottom:739.504576px;}
.yad{bottom:742.795574px;}
.y9d{bottom:747.855072px;}
.y69{bottom:757.504568px;}
.ya{bottom:758.901068px;}
.y26{bottom:761.749567px;}
.yd6{bottom:765.855065px;}
.yac{bottom:769.300564px;}
.y46{bottom:769.449064px;}
.y9c{bottom:774.360062px;}
.y68{bottom:775.504561px;}
.y25{bottom:779.749560px;}
.yd5{bottom:783.855058px;}
.yab{bottom:787.300557px;}
.y9b{bottom:792.360055px;}
.y67{bottom:793.504554px;}
.y24{bottom:797.749552px;}
.yf0{bottom:801.855051px;}
.y9{bottom:802.101051px;}
.y45{bottom:806.254549px;}
.y9a{bottom:810.360047px;}
.y66{bottom:811.504547px;}
.y23{bottom:815.749545px;}
.yaa{bottom:818.062544px;}
.y44{bottom:824.254542px;}
.y99{bottom:828.360040px;}
.y65{bottom:829.504540px;}
.y22{bottom:833.749538px;}
.y43{bottom:842.254535px;}
.y8{bottom:845.301033px;}
.y98{bottom:859.114528px;}
.y21{bottom:860.254527px;}
.y20{bottom:939.068996px;}
.h3{height:34.857408px;}
.h2{height:35.402330px;}
.ha{height:44.589826px;}
.h7{height:46.819317px;}
.hb{height:47.203106px;}
.he{height:49.048809px;}
.hc{height:58.095680px;}
.h6{height:61.000464px;}
.h8{height:61.001064px;}
.h9{height:61.004064px;}
.hd{height:64.904271px;}
.h5{height:104.132771px;}
.h4{height:105.117145px;}
.h1{height:1020.472020px;}
.h0{height:1263.000000px;}
.w1{width:722.834100px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x6{left:22.450045px;}
.x5{left:35.043012px;}
.x4{left:39.850279px;}
.x2{left:57.678693px;}
.x3{left:69.574159px;}
.x1{left:84.802500px;}
.x7{left:97.795427px;}
.x9{left:106.303424px;}
.xa{left:119.047418px;}
.x8{left:127.558415px;}
.xb{left:131.804913px;}
.x10{left:136.065362px;}
.xe{left:140.872410px;}
.xc{left:162.119901px;}
.xf{left:204.065884px;}
.xd{left:241.499869px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.007323pt;}
.ls1{letter-spacing:0.012656pt;}
.ls0{letter-spacing:0.013333pt;}
.ws1{word-spacing:-37.247985pt;}
.ws2{word-spacing:-31.999987pt;}
.ws7{word-spacing:-18.479993pt;}
.ws4{word-spacing:-15.343994pt;}
.ws6{word-spacing:-14.613327pt;}
.ws3{word-spacing:-10.740796pt;}
.ws0{word-spacing:-10.079996pt;}
.ws5{word-spacing:0.000000pt;}
._a{margin-left:-6.873353pt;}
._f{margin-left:-5.728074pt;}
._3{margin-left:-4.734451pt;}
._5{margin-left:-3.213884pt;}
._1{margin-left:-2.241787pt;}
._0{margin-left:-1.119629pt;}
._2{width:0.889375pt;}
._4{width:1.950158pt;}
._8{width:2.908279pt;}
._7{width:4.058126pt;}
._c{width:5.178646pt;}
._d{width:6.102483pt;}
._9{width:7.251645pt;}
._b{width:8.958371pt;}
._10{width:11.185377pt;}
._e{width:63.895907pt;}
._6{width:268.383396pt;}
.fs0{font-size:31.999987pt;}
.fs3{font-size:39.199984pt;}
.fs5{font-size:42.666650pt;}
.fs4{font-size:53.333312pt;}
.fs2{font-size:55.999978pt;}
.fs6{font-size:58.666643pt;}
.fs1{font-size:127.999949pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:37.924315pt;}
.y5{bottom:47.524311pt;}
.y4{bottom:57.124307pt;}
.y3{bottom:66.724304pt;}
.y2{bottom:76.324300pt;}
.yba{bottom:106.654954pt;}
.y1{bottom:107.844960pt;}
.y7{bottom:113.064285pt;}
.y42{bottom:113.105618pt;}
.ya9{bottom:114.873618pt;}
.y41{bottom:129.105612pt;}
.ya8{bottom:130.873611pt;}
.y64{bottom:139.694941pt;}
.y97{bottom:142.354940pt;}
.y40{bottom:145.105605pt;}
.ya7{bottom:146.873605pt;}
.y63{bottom:155.694935pt;}
.y96{bottom:158.354934pt;}
.yd4{bottom:158.465600pt;}
.y3f{bottom:161.105599pt;}
.ya6{bottom:162.873598pt;}
.yb5{bottom:170.540262pt;}
.y62{bottom:171.694928pt;}
.y95{bottom:174.354927pt;}
.yd3{bottom:174.465594pt;}
.y3e{bottom:177.105593pt;}
.yb4{bottom:186.540256pt;}
.y94{bottom:190.354921pt;}
.y3d{bottom:193.105586pt;}
.y61{bottom:195.254919pt;}
.yd2{bottom:198.025584pt;}
.ya5{bottom:201.553583pt;}
.yef{bottom:202.520916pt;}
.yb3{bottom:202.540249pt;}
.y93{bottom:206.354914pt;}
.y3c{bottom:209.105580pt;}
.yd1{bottom:214.025578pt;}
.ya3{bottom:215.544244pt;}
.yee{bottom:218.520909pt;}
.y60{bottom:218.814909pt;}
.y1f{bottom:219.953576pt;}
.y92{bottom:222.354908pt;}
.y3b{bottom:225.105573pt;}
.yd0{bottom:230.025572pt;}
.yed{bottom:234.520903pt;}
.y5f{bottom:234.814903pt;}
.y1e{bottom:235.953569pt;}
.y91{bottom:238.354902pt;}
.y3a{bottom:241.105567pt;}
.yb2{bottom:241.220234pt;}
.y81{bottom:243.992233pt;}
.ycf{bottom:246.025565pt;}
.yec{bottom:250.520897pt;}
.y5e{bottom:250.814897pt;}
.y1d{bottom:251.953563pt;}
.y90{bottom:254.354895pt;}
.y80{bottom:259.992226pt;}
.y39{bottom:264.665558pt;}
.yeb{bottom:266.520890pt;}
.y5d{bottom:266.814890pt;}
.y1c{bottom:267.953556pt;}
.yce{bottom:269.585556pt;}
.y8f{bottom:270.354889pt;}
.y7f{bottom:275.992220pt;}
.y38{bottom:280.665551pt;}
.y5c{bottom:282.814884pt;}
.y1b{bottom:283.953550pt;}
.ycd{bottom:285.585549pt;}
.y8e{bottom:286.354882pt;}
.yea{bottom:290.080881pt;}
.y7e{bottom:291.992213pt;}
.ycc{bottom:301.585543pt;}
.y8d{bottom:302.354876pt;}
.ye9{bottom:306.080874pt;}
.y5b{bottom:306.374874pt;}
.y7d{bottom:307.992207pt;}
.y37{bottom:308.012207pt;}
.ycb{bottom:317.585536pt;}
.y8c{bottom:318.354870pt;}
.ye8{bottom:322.080868pt;}
.y5a{bottom:322.374868pt;}
.y7c{bottom:323.992201pt;}
.y1a{bottom:330.190865pt;}
.yca{bottom:333.585530pt;}
.y8b{bottom:334.354863pt;}
.ye7{bottom:338.080862pt;}
.y59{bottom:338.374862pt;}
.y7b{bottom:339.992194pt;}
.y36{bottom:344.502859pt;}
.y19{bottom:346.990058pt;}
.y8a{bottom:350.354857pt;}
.ye6{bottom:354.080855pt;}
.y58{bottom:354.374855pt;}
.yc9{bottom:357.145521pt;}
.y35{bottom:362.102852pt;}
.y7a{bottom:367.325517pt;}
.ye5{bottom:370.080849pt;}
.y18{bottom:371.348182pt;}
.yc8{bottom:373.145514pt;}
.y89{bottom:373.914847pt;}
.y57{bottom:377.934846pt;}
.ye4{bottom:386.080842pt;}
.y17{bottom:388.148042pt;}
.yc7{bottom:389.145508pt;}
.y88{bottom:389.914841pt;}
.y56{bottom:393.934839pt;}
.y79{bottom:394.657506pt;}
.ye3{bottom:402.080836pt;}
.y34{bottom:402.376169pt;}
.yc6{bottom:405.145501pt;}
.y55{bottom:409.934833pt;}
.y78{bottom:410.657499pt;}
.y16{bottom:412.506832pt;}
.y87{bottom:413.474831pt;}
.ye2{bottom:418.080830pt;}
.y33{bottom:418.376163pt;}
.yb9{bottom:418.772163pt;}
.yc5{bottom:421.145495pt;}
.y54{bottom:425.934826pt;}
.y77{bottom:426.657493pt;}
.y15{bottom:429.306692pt;}
.y86{bottom:429.474825pt;}
.ye1{bottom:434.080823pt;}
.y32{bottom:434.376156pt;}
.yb8{bottom:434.772156pt;}
.yc4{bottom:437.145489pt;}
.y53{bottom:441.934820pt;}
.y76{bottom:442.657486pt;}
.y85{bottom:445.474819pt;}
.ye0{bottom:450.080817pt;}
.y31{bottom:450.376150pt;}
.yb7{bottom:450.772150pt;}
.yc3{bottom:453.145482pt;}
.y14{bottom:453.665482pt;}
.y75{bottom:458.657480pt;}
.y84{bottom:461.474812pt;}
.y52{bottom:465.494811pt;}
.y30{bottom:466.376144pt;}
.y13{bottom:470.465475pt;}
.ydf{bottom:473.640807pt;}
.yc2{bottom:480.484138pt;}
.y51{bottom:481.494804pt;}
.y74{bottom:482.217471pt;}
.y2f{bottom:482.376137pt;}
.y83{bottom:485.034803pt;}
.yf6{bottom:488.760135pt;}
.yb6{bottom:489.452134pt;}
.yde{bottom:489.640801pt;}
.y12{bottom:494.825466pt;}
.y50{bottom:497.494798pt;}
.y73{bottom:498.217464pt;}
.y2e{bottom:498.376131pt;}
.yf5{bottom:504.760128pt;}
.ydd{bottom:505.640795pt;}
.y11{bottom:511.626659pt;}
.yc1{bottom:513.200125pt;}
.y72{bottom:514.217458pt;}
.y2d{bottom:514.376124pt;}
.yf4{bottom:520.760122pt;}
.y4f{bottom:521.054788pt;}
.ydc{bottom:521.640788pt;}
.y82{bottom:523.714787pt;}
.yc0{bottom:529.200119pt;}
.y71{bottom:530.217451pt;}
.y2c{bottom:530.376118pt;}
.y10{bottom:535.985449pt;}
.yf3{bottom:536.760115pt;}
.y4e{bottom:537.054782pt;}
.ydb{bottom:537.640782pt;}
.ybf{bottom:545.200112pt;}
.y70{bottom:546.217445pt;}
.yf2{bottom:552.760109pt;}
.yf{bottom:552.785309pt;}
.y4d{bottom:553.054776pt;}
.yda{bottom:553.640775pt;}
.y2b{bottom:553.936109pt;}
.ybe{bottom:561.200106pt;}
.y6f{bottom:562.217439pt;}
.ya4{bottom:567.934770pt;}
.yf1{bottom:568.760103pt;}
.yd9{bottom:569.640769pt;}
.y4c{bottom:576.614766pt;}
.ye{bottom:577.144099pt;}
.ybd{bottom:577.200099pt;}
.y2a{bottom:577.496099pt;}
.ya2{bottom:584.760096pt;}
.yd8{bottom:585.640763pt;}
.y6e{bottom:585.777429pt;}
.y4b{bottom:592.614760pt;}
.ybc{bottom:593.200093pt;}
.y29{bottom:593.496093pt;}
.yd{bottom:593.944093pt;}
.yb1{bottom:596.262758pt;}
.ya1{bottom:600.760090pt;}
.y6d{bottom:601.777423pt;}
.y4a{bottom:608.614753pt;}
.ybb{bottom:609.200087pt;}
.y28{bottom:609.496086pt;}
.yb0{bottom:612.262752pt;}
.ya0{bottom:616.760083pt;}
.yc{bottom:618.304083pt;}
.y49{bottom:624.614747pt;}
.yd7{bottom:625.200080pt;}
.y6c{bottom:625.337413pt;}
.yaf{bottom:628.262746pt;}
.y9f{bottom:632.760077pt;}
.yb{bottom:635.104076pt;}
.y27{bottom:636.834742pt;}
.y48{bottom:640.614741pt;}
.y6b{bottom:641.337407pt;}
.yae{bottom:644.262739pt;}
.y9e{bottom:648.760071pt;}
.y47{bottom:656.614734pt;}
.y6a{bottom:657.337401pt;}
.yad{bottom:660.262733pt;}
.y9d{bottom:664.760064pt;}
.y69{bottom:673.337394pt;}
.ya{bottom:674.578727pt;}
.y26{bottom:677.110726pt;}
.yd6{bottom:680.760058pt;}
.yac{bottom:683.822723pt;}
.y46{bottom:683.954723pt;}
.y9c{bottom:688.320055pt;}
.y68{bottom:689.337388pt;}
.y25{bottom:693.110720pt;}
.yd5{bottom:696.760051pt;}
.yab{bottom:699.822717pt;}
.y9b{bottom:704.320048pt;}
.y67{bottom:705.337381pt;}
.y24{bottom:709.110713pt;}
.yf0{bottom:712.760045pt;}
.y9{bottom:712.978712pt;}
.y45{bottom:716.670710pt;}
.y9a{bottom:720.320042pt;}
.y66{bottom:721.337375pt;}
.y23{bottom:725.110707pt;}
.yaa{bottom:727.166706pt;}
.y44{bottom:732.670704pt;}
.y99{bottom:736.320036pt;}
.y65{bottom:737.337369pt;}
.y22{bottom:741.110700pt;}
.y43{bottom:748.670697pt;}
.y8{bottom:751.378696pt;}
.y98{bottom:763.657358pt;}
.y21{bottom:764.670691pt;}
.y20{bottom:834.727996pt;}
.h3{height:30.984363pt;}
.h2{height:31.468737pt;}
.ha{height:39.635401pt;}
.h7{height:41.617171pt;}
.hb{height:41.958317pt;}
.he{height:43.598941pt;}
.hc{height:51.640604pt;}
.h6{height:54.222635pt;}
.h8{height:54.223168pt;}
.h9{height:54.225835pt;}
.hd{height:57.692685pt;}
.h5{height:92.562463pt;}
.h4{height:93.437463pt;}
.h1{height:907.086240pt;}
.h0{height:1122.666667pt;}
.w1{width:642.519200pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x6{left:19.955596pt;}
.x5{left:31.149344pt;}
.x4{left:35.422470pt;}
.x2{left:51.269949pt;}
.x3{left:61.843697pt;}
.x1{left:75.380000pt;}
.x7{left:86.929268pt;}
.x9{left:94.491932pt;}
.xa{left:105.819928pt;}
.x8{left:113.385258pt;}
.xb{left:117.159923pt;}
.x10{left:120.946988pt;}
.xe{left:125.219920pt;}
.xc{left:144.106579pt;}
.xf{left:181.391897pt;}
.xd{left:214.666551pt;}
}




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