
    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_b0923eaeb9ad91f93e8acf6c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_ca45a59d6c9ccfb5f9a43ba1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.861816;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_154fafcaa12bcd4c432e956e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.677734;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_cb80de6d83c32d4535a81c2c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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;}
.m7{transform:matrix(0.176835,-0.176835,0.176777,0.176777,0,0);-ms-transform:matrix(0.176835,-0.176835,0.176777,0.176777,0,0);-webkit-transform:matrix(0.176835,-0.176835,0.176777,0.176777,0,0);}
.m1{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250070,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.665688px;}
.ls0{letter-spacing:41.381026px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(0,21,136),0 0.015em rgb(0,21,136),0.015em 0 rgb(0,21,136),0 -0.015em  rgb(0,21,136);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,21,136);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-16.207955px;}
.ws2{word-spacing:-14.970234px;}
.ws1{word-spacing:-13.505755px;}
.ws0{word-spacing:-10.251356px;}
.ws3{word-spacing:0.000000px;}
._1c{margin-left:-9.303036px;}
._18{margin-left:-8.167004px;}
._3{margin-left:-6.335684px;}
._12{margin-left:-4.504475px;}
._1{margin-left:-2.246029px;}
._0{margin-left:-1.025791px;}
._2{width:1.177320px;}
._7{width:2.735362px;}
._8{width:3.812774px;}
._6{width:5.249187px;}
._5{width:7.048405px;}
._4{width:8.048798px;}
._b{width:9.114721px;}
._c{width:10.514348px;}
._d{width:11.621623px;}
._11{width:12.891604px;}
._9{width:13.946583px;}
._a{width:16.279673px;}
._15{width:17.306414px;}
._f{width:18.354204px;}
._e{width:19.905528px;}
._10{width:21.233191px;}
._14{width:22.270062px;}
._17{width:23.968370px;}
._13{width:25.206572px;}
._19{width:26.931649px;}
._1a{width:28.006604px;}
._16{width:29.498217px;}
._1b{width:197.552110px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,21,136);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:41.759983px;}
.fs1{font-size:45.359982px;}
.fs5{font-size:53.999978px;}
.fs7{font-size:58.301995px;}
.fs6{font-size:58.303417px;}
.fs4{font-size:59.759976px;}
.fs0{font-size:66.239974px;}
.fs2{font-size:84.239966px;}
.y0{bottom:0.000000px;}
.y4{bottom:2.878920px;}
.y2{bottom:4.498930px;}
.y9{bottom:30.900288px;}
.y8{bottom:49.440280px;}
.y93{bottom:98.039961px;}
.y37{bottom:105.059958px;}
.yac{bottom:110.459956px;}
.y65{bottom:111.359955px;}
.y92{bottom:118.199953px;}
.y36{bottom:125.219950px;}
.yab{bottom:130.619948px;}
.y64{bottom:131.339947px;}
.yea{bottom:133.139947px;}
.y91{bottom:138.359945px;}
.y35{bottom:145.379942px;}
.y63{bottom:151.499939px;}
.ye9{bottom:153.299939px;}
.y90{bottom:158.339937px;}
.yaa{bottom:159.779936px;}
.y34{bottom:165.539934px;}
.y62{bottom:171.659931px;}
.ye8{bottom:173.459931px;}
.y8f{bottom:178.499929px;}
.ya9{bottom:179.759928px;}
.y61{bottom:191.819923px;}
.y33{bottom:194.519922px;}
.ya8{bottom:199.919920px;}
.ye7{bottom:202.619919px;}
.y8e{bottom:207.659917px;}
.y60{bottom:211.979915px;}
.y32{bottom:214.679914px;}
.ye6{bottom:222.599911px;}
.y8d{bottom:227.819909px;}
.ya7{bottom:228.899908px;}
.y5f{bottom:232.139907px;}
.y31{bottom:234.839906px;}
.ye5{bottom:242.759903px;}
.y8c{bottom:247.979901px;}
.y5e{bottom:252.299899px;}
.y30{bottom:263.999894px;}
.ya6{bottom:267.239893px;}
.ye4{bottom:271.919891px;}
.y5d{bottom:272.459891px;}
.y8b{bottom:277.139889px;}
.ye3{bottom:292.079883px;}
.y5c{bottom:292.619883px;}
.y2f{bottom:293.159883px;}
.ya5{bottom:296.399881px;}
.y8a{bottom:297.299881px;}
.ye2{bottom:312.239875px;}
.y2e{bottom:313.319875px;}
.ya4{bottom:316.559873px;}
.y89{bottom:317.459873px;}
.y5b{bottom:321.419871px;}
.y2d{bottom:333.479867px;}
.y88{bottom:337.619865px;}
.ye1{bottom:341.399863px;}
.y5a{bottom:341.579863px;}
.ya3{bottom:345.719862px;}
.y2c{bottom:353.639859px;}
.y87{bottom:357.599857px;}
.ye0{bottom:361.559855px;}
.ya2{bottom:365.879854px;}
.y2b{bottom:373.799850px;}
.y86{bottom:377.759849px;}
.y59{bottom:379.919848px;}
.ydf{bottom:381.719847px;}
.ya1{bottom:386.039846px;}
.y2a{bottom:393.959842px;}
.y85{bottom:397.919841px;}
.ya0{bottom:406.199838px;}
.y58{bottom:409.079836px;}
.yde{bottom:410.879836px;}
.y29{bottom:422.939831px;}
.y9f{bottom:426.179830px;}
.y84{bottom:427.079829px;}
.y57{bottom:429.239828px;}
.ydd{bottom:431.039828px;}
.y28{bottom:443.099823px;}
.y9e{bottom:446.339821px;}
.y83{bottom:447.239821px;}
.y56{bottom:449.399820px;}
.ydc{bottom:460.019816px;}
.y27{bottom:463.259815px;}
.y9d{bottom:466.499813px;}
.y82{bottom:467.399813px;}
.y55{bottom:469.559812px;}
.ydb{bottom:480.179808px;}
.y26{bottom:483.419807px;}
.y81{bottom:487.559805px;}
.y54{bottom:489.719804px;}
.y9c{bottom:495.659802px;}
.yda{bottom:500.339800px;}
.y25{bottom:503.579799px;}
.y80{bottom:507.719797px;}
.y53{bottom:509.879796px;}
.y9b{bottom:515.819794px;}
.y24{bottom:523.739791px;}
.y7f{bottom:527.879789px;}
.yd9{bottom:529.319788px;}
.y52{bottom:530.039788px;}
.y9a{bottom:535.979786px;}
.y23{bottom:543.899782px;}
.y7e{bottom:548.039781px;}
.y51{bottom:550.019780px;}
.y99{bottom:556.139778px;}
.y22{bottom:564.059774px;}
.yd8{bottom:567.659773px;}
.y98{bottom:576.299769px;}
.y7d{bottom:577.019769px;}
.y50{bottom:579.179768px;}
.y21{bottom:593.219763px;}
.yd7{bottom:596.819761px;}
.y7c{bottom:597.179761px;}
.y4f{bottom:599.339760px;}
.y97{bottom:605.459758px;}
.yd6{bottom:616.979753px;}
.y7b{bottom:617.339753px;}
.y4e{bottom:619.499752px;}
.y20{bottom:622.199751px;}
.y96{bottom:633.539747px;}
.yd5{bottom:637.139745px;}
.y7a{bottom:637.499745px;}
.y4d{bottom:639.659744px;}
.y95{bottom:649.919740px;}
.yd4{bottom:657.299737px;}
.y79{bottom:657.659737px;}
.y4c{bottom:659.819736px;}
.y1f{bottom:660.359736px;}
.y94{bottom:671.879731px;}
.yd3{bottom:677.459729px;}
.y78{bottom:677.819729px;}
.y4b{bottom:688.979724px;}
.y1e{bottom:689.339724px;}
.yb5{bottom:689.699724px;}
.yb6{bottom:689.699808px;}
.yb7{bottom:689.699892px;}
.yb8{bottom:689.699976px;}
.yb9{bottom:689.699996px;}
.yba{bottom:689.700080px;}
.ybb{bottom:689.700164px;}
.ybc{bottom:689.700248px;}
.ybd{bottom:689.700332px;}
.ybe{bottom:689.700416px;}
.ybf{bottom:689.700500px;}
.yc0{bottom:689.700520px;}
.yc1{bottom:689.700551px;}
.yc2{bottom:689.700582px;}
.yc3{bottom:689.700613px;}
.yd2{bottom:697.439721px;}
.y77{bottom:697.979721px;}
.y4a{bottom:709.139716px;}
.yd1{bottom:717.599713px;}
.y76{bottom:718.139713px;}
.y1d{bottom:718.679713px;}
.y49{bottom:729.299708px;}
.yad{bottom:731.819707px;}
.y1c{bottom:738.839704px;}
.yd0{bottom:746.759701px;}
.y75{bottom:747.299701px;}
.y48{bottom:749.459700px;}
.y1b{bottom:758.999696px;}
.yae{bottom:765.479694px;}
.ycf{bottom:766.919693px;}
.y74{bottom:767.459693px;}
.y47{bottom:778.439689px;}
.y1a{bottom:779.159688px;}
.yce{bottom:787.079685px;}
.y73{bottom:787.439685px;}
.y46{bottom:798.599681px;}
.yaf{bottom:799.139680px;}
.ycd{bottom:807.239677px;}
.y72{bottom:807.599677px;}
.y19{bottom:808.319677px;}
.y45{bottom:818.759672px;}
.y71{bottom:827.759669px;}
.y18{bottom:828.479669px;}
.yb0{bottom:832.979667px;}
.ycc{bottom:836.399665px;}
.y44{bottom:838.919664px;}
.y70{bottom:847.919661px;}
.y17{bottom:848.639661px;}
.ycb{bottom:865.559654px;}
.yb1{bottom:866.639653px;}
.y43{bottom:868.079653px;}
.y16{bottom:868.619653px;}
.y6f{bottom:877.079649px;}
.y42{bottom:888.239645px;}
.y15{bottom:888.779644px;}
.yca{bottom:894.719642px;}
.y6e{bottom:897.239641px;}
.yb2{bottom:900.299640px;}
.y41{bottom:908.399637px;}
.y14{bottom:908.939636px;}
.y6d{bottom:917.399633px;}
.yc9{bottom:923.879630px;}
.y40{bottom:928.559629px;}
.y13{bottom:929.099628px;}
.yb3{bottom:933.959626px;}
.y6c{bottom:937.559625px;}
.y3f{bottom:948.719621px;}
.yc8{bottom:952.859619px;}
.y6b{bottom:957.719617px;}
.y12{bottom:958.259617px;}
.yb4{bottom:967.799613px;}
.y3e{bottom:968.879612px;}
.y6a{bottom:977.879609px;}
.yc7{bottom:982.019607px;}
.y11{bottom:987.419605px;}
.y3d{bottom:988.859604px;}
.y69{bottom:997.859601px;}
.y3c{bottom:1009.019596px;}
.yc6{bottom:1011.179596px;}
.y10{bottom:1016.039594px;}
.y68{bottom:1018.019593px;}
.y3b{bottom:1029.179588px;}
.yf{bottom:1034.939586px;}
.y67{bottom:1038.179585px;}
.yc5{bottom:1040.339584px;}
.ye{bottom:1040.879584px;}
.y3a{bottom:1049.339580px;}
.y66{bottom:1058.339577px;}
.yc{bottom:1064.099574px;}
.yc4{bottom:1069.499572px;}
.yd{bottom:1070.039572px;}
.y39{bottom:1078.499569px;}
.ya{bottom:1093.979562px;}
.yb{bottom:1094.159562px;}
.y38{bottom:1098.659561px;}
.y7{bottom:1150.499540px;}
.y1{bottom:1170.660600px;}
.y6{bottom:1171.739531px;}
.y5{bottom:1185.419526px;}
.y3{bottom:1196.220600px;}
.h3{height:13.680000px;}
.h1{height:20.340000px;}
.h6{height:34.439752px;}
.h4{height:37.408696px;}
.h8{height:44.149201px;}
.hb{height:44.534162px;}
.ha{height:45.254162px;}
.h7{height:49.284472px;}
.h2{height:54.628572px;}
.hd{height:60.807159px;}
.hc{height:60.808642px;}
.h5{height:69.473293px;}
.h9{height:69.806222px;}
.h0{height:1263.000000px;}
.w1{width:0.180000px;}
.w4{width:3.420000px;}
.w3{width:18.540000px;}
.w5{width:152.280000px;}
.w2{width:334.440000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x8{left:84.959966px;}
.xd{left:90.179964px;}
.x10{left:103.319959px;}
.xe{left:112.139955px;}
.x12{left:144.179942px;}
.x13{left:154.799938px;}
.x14{left:193.139914px;}
.x15{left:231.479890px;}
.xa{left:233.999906px;}
.xc{left:247.499901px;}
.x1{left:253.620000px;}
.x16{left:269.819865px;}
.x2{left:299.160000px;}
.x17{left:309.059854px;}
.x11{left:320.040720px;}
.x18{left:347.399830px;}
.x19{left:385.739805px;}
.x1a{left:424.079781px;}
.x1b{left:462.419757px;}
.x1c{left:500.759733px;}
.x1d{left:539.099709px;}
.x1e{left:578.339697px;}
.x1f{left:616.679620px;}
.x6{left:629.099748px;}
.x3{left:633.600000px;}
.x7{left:643.859750px;}
.x4{left:652.140000px;}
.x5{left:655.560000px;}
.xb{left:658.979736px;}
.x20{left:693.359465px;}
.xf{left:764.999287px;}
.x9{left:802.079679px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.591723pt;}
.ls0{letter-spacing:36.783134pt;}
.ws4{word-spacing:-14.407071pt;}
.ws2{word-spacing:-13.306875pt;}
.ws1{word-spacing:-12.005115pt;}
.ws0{word-spacing:-9.112316pt;}
.ws3{word-spacing:0.000000pt;}
._1c{margin-left:-8.269365pt;}
._18{margin-left:-7.259559pt;}
._3{margin-left:-5.631719pt;}
._12{margin-left:-4.003978pt;}
._1{margin-left:-1.996470pt;}
._0{margin-left:-0.911814pt;}
._2{width:1.046506pt;}
._7{width:2.431433pt;}
._8{width:3.389132pt;}
._6{width:4.665944pt;}
._5{width:6.265249pt;}
._4{width:7.154487pt;}
._b{width:8.101974pt;}
._c{width:9.346088pt;}
._d{width:10.330332pt;}
._11{width:11.459204pt;}
._9{width:12.396963pt;}
._a{width:14.470821pt;}
._15{width:15.383479pt;}
._f{width:16.314848pt;}
._e{width:17.693803pt;}
._10{width:18.873948pt;}
._14{width:19.795611pt;}
._17{width:21.305218pt;}
._13{width:22.405842pt;}
._19{width:23.939243pt;}
._1a{width:24.894759pt;}
._16{width:26.220637pt;}
._1b{width:175.601875pt;}
.fs3{font-size:37.119985pt;}
.fs1{font-size:40.319984pt;}
.fs5{font-size:47.999981pt;}
.fs7{font-size:51.823995pt;}
.fs6{font-size:51.825259pt;}
.fs4{font-size:53.119979pt;}
.fs0{font-size:58.879976pt;}
.fs2{font-size:74.879970pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:2.559040pt;}
.y2{bottom:3.999049pt;}
.y9{bottom:27.466922pt;}
.y8{bottom:43.946916pt;}
.y93{bottom:87.146632pt;}
.y37{bottom:93.386629pt;}
.yac{bottom:98.186627pt;}
.y65{bottom:98.986627pt;}
.y92{bottom:105.066625pt;}
.y36{bottom:111.306622pt;}
.yab{bottom:116.106620pt;}
.y64{bottom:116.746620pt;}
.yea{bottom:118.346619pt;}
.y91{bottom:122.986617pt;}
.y35{bottom:129.226615pt;}
.y63{bottom:134.666613pt;}
.ye9{bottom:136.266612pt;}
.y90{bottom:140.746610pt;}
.yaa{bottom:142.026610pt;}
.y34{bottom:147.146608pt;}
.y62{bottom:152.586606pt;}
.ye8{bottom:154.186605pt;}
.y8f{bottom:158.666603pt;}
.ya9{bottom:159.786603pt;}
.y61{bottom:170.506598pt;}
.y33{bottom:172.906598pt;}
.ya8{bottom:177.706596pt;}
.ye7{bottom:180.106595pt;}
.y8e{bottom:184.586593pt;}
.y60{bottom:188.426591pt;}
.y32{bottom:190.826590pt;}
.ye6{bottom:197.866588pt;}
.y8d{bottom:202.506586pt;}
.ya7{bottom:203.466585pt;}
.y5f{bottom:206.346584pt;}
.y31{bottom:208.746583pt;}
.ye5{bottom:215.786580pt;}
.y8c{bottom:220.426578pt;}
.y5e{bottom:224.266577pt;}
.y30{bottom:234.666573pt;}
.ya6{bottom:237.546572pt;}
.ye4{bottom:241.706570pt;}
.y5d{bottom:242.186570pt;}
.y8b{bottom:246.346568pt;}
.ye3{bottom:259.626563pt;}
.y5c{bottom:260.106563pt;}
.y2f{bottom:260.586562pt;}
.ya5{bottom:263.466561pt;}
.y8a{bottom:264.266561pt;}
.ye2{bottom:277.546556pt;}
.y2e{bottom:278.506555pt;}
.ya4{bottom:281.386554pt;}
.y89{bottom:282.186554pt;}
.y5b{bottom:285.706552pt;}
.y2d{bottom:296.426548pt;}
.y88{bottom:300.106547pt;}
.ye1{bottom:303.466545pt;}
.y5a{bottom:303.626545pt;}
.ya3{bottom:307.306544pt;}
.y2c{bottom:314.346541pt;}
.y87{bottom:317.866540pt;}
.ye0{bottom:321.386538pt;}
.ya2{bottom:325.226537pt;}
.y2b{bottom:332.266534pt;}
.y86{bottom:335.786532pt;}
.y59{bottom:337.706532pt;}
.ydf{bottom:339.306531pt;}
.ya1{bottom:343.146529pt;}
.y2a{bottom:350.186527pt;}
.y85{bottom:353.706525pt;}
.ya0{bottom:361.066522pt;}
.y58{bottom:363.626521pt;}
.yde{bottom:365.226521pt;}
.y29{bottom:375.946516pt;}
.y9f{bottom:378.826515pt;}
.y84{bottom:379.626515pt;}
.y57{bottom:381.546514pt;}
.ydd{bottom:383.146513pt;}
.y28{bottom:393.866509pt;}
.y9e{bottom:396.746508pt;}
.y83{bottom:397.546508pt;}
.y56{bottom:399.466507pt;}
.ydc{bottom:408.906503pt;}
.y27{bottom:411.786502pt;}
.y9d{bottom:414.666501pt;}
.y82{bottom:415.466500pt;}
.y55{bottom:417.386500pt;}
.ydb{bottom:426.826496pt;}
.y26{bottom:429.706495pt;}
.y81{bottom:433.386493pt;}
.y54{bottom:435.306493pt;}
.y9c{bottom:440.586490pt;}
.yda{bottom:444.746489pt;}
.y25{bottom:447.626488pt;}
.y80{bottom:451.306486pt;}
.y53{bottom:453.226485pt;}
.y9b{bottom:458.506483pt;}
.y24{bottom:465.546480pt;}
.y7f{bottom:469.226479pt;}
.yd9{bottom:470.506478pt;}
.y52{bottom:471.146478pt;}
.y9a{bottom:476.426476pt;}
.y23{bottom:483.466473pt;}
.y7e{bottom:487.146472pt;}
.y51{bottom:488.906471pt;}
.y99{bottom:494.346469pt;}
.y22{bottom:501.386466pt;}
.yd8{bottom:504.586465pt;}
.y98{bottom:512.266462pt;}
.y7d{bottom:512.906462pt;}
.y50{bottom:514.826461pt;}
.y21{bottom:527.306456pt;}
.yd7{bottom:530.506454pt;}
.y7c{bottom:530.826454pt;}
.y4f{bottom:532.746454pt;}
.y97{bottom:538.186451pt;}
.yd6{bottom:548.426447pt;}
.y7b{bottom:548.746447pt;}
.y4e{bottom:550.666446pt;}
.y20{bottom:553.066445pt;}
.y96{bottom:563.146441pt;}
.yd5{bottom:566.346440pt;}
.y7a{bottom:566.666440pt;}
.y4d{bottom:568.586439pt;}
.y95{bottom:577.706436pt;}
.yd4{bottom:584.266433pt;}
.y79{bottom:584.586433pt;}
.y4c{bottom:586.506432pt;}
.y1f{bottom:586.986432pt;}
.y94{bottom:597.226428pt;}
.yd3{bottom:602.186426pt;}
.y78{bottom:602.506426pt;}
.y4b{bottom:612.426422pt;}
.y1e{bottom:612.746422pt;}
.yb5{bottom:613.066421pt;}
.yb6{bottom:613.066496pt;}
.yb7{bottom:613.066571pt;}
.yb8{bottom:613.066645pt;}
.yb9{bottom:613.066663pt;}
.yba{bottom:613.066738pt;}
.ybb{bottom:613.066812pt;}
.ybc{bottom:613.066887pt;}
.ybd{bottom:613.066962pt;}
.ybe{bottom:613.067036pt;}
.ybf{bottom:613.067111pt;}
.yc0{bottom:613.067129pt;}
.yc1{bottom:613.067156pt;}
.yc2{bottom:613.067184pt;}
.yc3{bottom:613.067211pt;}
.yd2{bottom:619.946419pt;}
.y77{bottom:620.426418pt;}
.y4a{bottom:630.346415pt;}
.yd1{bottom:637.866412pt;}
.y76{bottom:638.346411pt;}
.y1d{bottom:638.826411pt;}
.y49{bottom:648.266407pt;}
.yad{bottom:650.506406pt;}
.y1c{bottom:656.746404pt;}
.yd0{bottom:663.786401pt;}
.y75{bottom:664.266401pt;}
.y48{bottom:666.186400pt;}
.y1b{bottom:674.666397pt;}
.yae{bottom:680.426394pt;}
.ycf{bottom:681.706394pt;}
.y74{bottom:682.186394pt;}
.y47{bottom:691.946390pt;}
.y1a{bottom:692.586390pt;}
.yce{bottom:699.626387pt;}
.y73{bottom:699.946387pt;}
.y46{bottom:709.866383pt;}
.yaf{bottom:710.346383pt;}
.ycd{bottom:717.546380pt;}
.y72{bottom:717.866380pt;}
.y19{bottom:718.506379pt;}
.y45{bottom:727.786376pt;}
.y71{bottom:735.786372pt;}
.y18{bottom:736.426372pt;}
.yb0{bottom:740.426370pt;}
.ycc{bottom:743.466369pt;}
.y44{bottom:745.706368pt;}
.y70{bottom:753.706365pt;}
.y17{bottom:754.346365pt;}
.ycb{bottom:769.386359pt;}
.yb1{bottom:770.346359pt;}
.y43{bottom:771.626358pt;}
.y16{bottom:772.106358pt;}
.y6f{bottom:779.626355pt;}
.y42{bottom:789.546351pt;}
.y15{bottom:790.026351pt;}
.yca{bottom:795.306349pt;}
.y6e{bottom:797.546348pt;}
.yb2{bottom:800.266347pt;}
.y41{bottom:807.466344pt;}
.y14{bottom:807.946343pt;}
.y6d{bottom:815.466340pt;}
.yc9{bottom:821.226338pt;}
.y40{bottom:825.386337pt;}
.y13{bottom:825.866336pt;}
.yb3{bottom:830.186335pt;}
.y6c{bottom:833.386333pt;}
.y3f{bottom:843.306329pt;}
.yc8{bottom:846.986328pt;}
.y6b{bottom:851.306326pt;}
.y12{bottom:851.786326pt;}
.yb4{bottom:860.266323pt;}
.y3e{bottom:861.226322pt;}
.y6a{bottom:869.226319pt;}
.yc7{bottom:872.906318pt;}
.y11{bottom:877.706316pt;}
.y3d{bottom:878.986315pt;}
.y69{bottom:886.986312pt;}
.y3c{bottom:896.906308pt;}
.yc6{bottom:898.826307pt;}
.y10{bottom:903.146305pt;}
.y68{bottom:904.906305pt;}
.y3b{bottom:914.826301pt;}
.yf{bottom:919.946299pt;}
.y67{bottom:922.826298pt;}
.yc5{bottom:924.746297pt;}
.ye{bottom:925.226297pt;}
.y3a{bottom:932.746294pt;}
.y66{bottom:940.746290pt;}
.yc{bottom:945.866288pt;}
.yc4{bottom:950.666286pt;}
.yd{bottom:951.146286pt;}
.y39{bottom:958.666283pt;}
.ya{bottom:972.426278pt;}
.yb{bottom:972.586278pt;}
.y38{bottom:976.586276pt;}
.y7{bottom:1022.666258pt;}
.y1{bottom:1040.587200pt;}
.y6{bottom:1041.546250pt;}
.y5{bottom:1053.706245pt;}
.y3{bottom:1063.307200pt;}
.h3{height:12.160000pt;}
.h1{height:18.080000pt;}
.h6{height:30.613113pt;}
.h4{height:33.252174pt;}
.h8{height:39.243734pt;}
.hb{height:39.585922pt;}
.ha{height:40.225921pt;}
.h7{height:43.808420pt;}
.h2{height:48.558731pt;}
.hd{height:54.050808pt;}
.hc{height:54.052126pt;}
.h5{height:61.754038pt;}
.h9{height:62.049975pt;}
.h0{height:1122.666667pt;}
.w1{width:0.160000pt;}
.w4{width:3.040000pt;}
.w3{width:16.480000pt;}
.w5{width:135.360000pt;}
.w2{width:297.280000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x8{left:75.519970pt;}
.xd{left:80.159968pt;}
.x10{left:91.839963pt;}
.xe{left:99.679960pt;}
.x12{left:128.159949pt;}
.x13{left:137.599945pt;}
.x14{left:171.679923pt;}
.x15{left:205.759902pt;}
.xa{left:207.999917pt;}
.xc{left:219.999912pt;}
.x1{left:225.440000pt;}
.x16{left:239.839880pt;}
.x2{left:265.920000pt;}
.x17{left:274.719870pt;}
.x11{left:284.480640pt;}
.x18{left:308.799849pt;}
.x19{left:342.879827pt;}
.x1a{left:376.959806pt;}
.x1b{left:411.039784pt;}
.x1c{left:445.119762pt;}
.x1d{left:479.199741pt;}
.x1e{left:514.079731pt;}
.x1f{left:548.159662pt;}
.x6{left:559.199776pt;}
.x3{left:563.200000pt;}
.x7{left:572.319778pt;}
.x4{left:579.680000pt;}
.x5{left:582.720000pt;}
.xb{left:585.759766pt;}
.x20{left:616.319525pt;}
.xf{left:679.999366pt;}
.x9{left:712.959715pt;}
}




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