
    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_5e8a0346e642cc557ddd7966.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_3b452cf0e172933301b15bf8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_95d35525383c28c6d569fd69.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_7e9a6227afa905eb5ef16ce5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.811523;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_dc65e4bb86d34ece88657a94.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff6{font-family:ff6;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;}
.m5{transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249840,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);}
.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);}
.m1{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.909720px;}
.ls2{letter-spacing:10.043096px;}
.ls3{letter-spacing:13.645315px;}
.ls4{letter-spacing:16.527053px;}
.ls5{letter-spacing:20.129272px;}
.ls7{letter-spacing:30.215508px;}
.ls6{letter-spacing:33.097247px;}
.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;}
}
.ws0{word-spacing:-14.939994px;}
.ws2{word-spacing:-12.059995px;}
.ws1{word-spacing:0.000000px;}
._1a{margin-left:-9.341424px;}
._1{margin-left:-1.211392px;}
._0{width:1.252472px;}
._4{width:2.600543px;}
._2{width:4.020603px;}
._b{width:5.584487px;}
._3{width:6.932338px;}
._d{width:8.811323px;}
._c{width:10.425538px;}
._11{width:11.547266px;}
._e{width:12.740001px;}
._a{width:13.844700px;}
._17{width:16.007206px;}
._18{width:17.633135px;}
._5{width:18.701867px;}
._7{width:19.729515px;}
._6{width:20.973400px;}
._19{width:21.975489px;}
._13{width:23.712101px;}
._16{width:24.866447px;}
._9{width:26.902959px;}
._12{width:28.067630px;}
._14{width:29.538931px;}
._f{width:32.347179px;}
._10{width:33.683952px;}
._15{width:35.624095px;}
._8{width:734.846106px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:17.999993px;}
.fs8{font-size:38.879984px;}
.fs6{font-size:48.239981px;}
.fs3{font-size:53.999978px;}
.fs5{font-size:59.759976px;}
.fs2{font-size:63.359975px;}
.fs0{font-size:66.239974px;}
.fs4{font-size:71.999971px;}
.fs1{font-size:95.759962px;}
.y0{bottom:0.000000px;}
.y51{bottom:2.878920px;}
.y54{bottom:3.238951px;}
.y57{bottom:3.598962px;}
.y5a{bottom:3.598969px;}
.y5d{bottom:3.598976px;}
.y5f{bottom:3.598982px;}
.y61{bottom:3.598989px;}
.y63{bottom:3.598996px;}
.y67{bottom:3.599125px;}
.y6a{bottom:3.599144px;}
.y6c{bottom:3.599151px;}
.y6e{bottom:3.599158px;}
.y70{bottom:3.599165px;}
.y72{bottom:3.599172px;}
.y76{bottom:3.599189px;}
.y79{bottom:3.599196px;}
.y7c{bottom:3.599203px;}
.y7e{bottom:3.599210px;}
.y81{bottom:3.599217px;}
.y84{bottom:3.599224px;}
.y87{bottom:3.599231px;}
.y3{bottom:321.419871px;}
.y2{bottom:341.579863px;}
.y22{bottom:375.059850px;}
.yd1{bottom:376.679849px;}
.y89{bottom:379.199848px;}
.y4f{bottom:379.559848px;}
.yb0{bottom:384.059846px;}
.y21{bottom:392.339843px;}
.yd0{bottom:393.779842px;}
.y4e{bottom:396.659841px;}
.yaf{bottom:401.159840px;}
.y88{bottom:405.479838px;}
.y20{bottom:409.619836px;}
.ycf{bottom:411.059836px;}
.y4d{bottom:413.939834px;}
.yae{bottom:418.439833px;}
.y86{bottom:419.160600px;}
.y85{bottom:422.759831px;}
.y1f{bottom:426.899829px;}
.yce{bottom:428.339829px;}
.y4c{bottom:431.219828px;}
.y83{bottom:436.440600px;}
.y82{bottom:440.039824px;}
.yad{bottom:444.359822px;}
.ycd{bottom:445.619822px;}
.y4b{bottom:448.499821px;}
.y1e{bottom:453.179819px;}
.y80{bottom:453.540600px;}
.y7f{bottom:457.139817px;}
.ycc{bottom:462.899815px;}
.y4a{bottom:465.779814px;}
.ycb{bottom:469.739812px;}
.y1d{bottom:470.279812px;}
.y7d{bottom:470.820600px;}
.yac{bottom:470.999812px;}
.y8e{bottom:474.419810px;}
.yca{bottom:479.999808px;}
.y49{bottom:483.059807px;}
.y1c{bottom:487.559805px;}
.y7b{bottom:488.100600px;}
.yab{bottom:488.279805px;}
.y7a{bottom:491.699803px;}
.yc9{bottom:497.279801px;}
.y48{bottom:500.159800px;}
.y1b{bottom:504.839798px;}
.yaa{bottom:505.379798px;}
.y78{bottom:505.380600px;}
.y77{bottom:508.979796px;}
.yc8{bottom:514.559794px;}
.y8d{bottom:515.819794px;}
.y47{bottom:517.439793px;}
.y1a{bottom:522.119791px;}
.ya9{bottom:522.659791px;}
.y75{bottom:522.660600px;}
.y74{bottom:526.259789px;}
.yc7{bottom:531.839787px;}
.y46{bottom:534.719786px;}
.y19{bottom:539.399784px;}
.ya8{bottom:539.939784px;}
.yc6{bottom:549.119780px;}
.y45{bottom:551.999779px;}
.y73{bottom:552.539779px;}
.yc5{bottom:555.959778px;}
.ya7{bottom:557.219777px;}
.y18{bottom:565.139774px;}
.y71{bottom:566.040600px;}
.yc4{bottom:567.299773px;}
.y44{bottom:569.279772px;}
.ya6{bottom:574.499770px;}
.y6f{bottom:583.320600px;}
.y43{bottom:586.379765px;}
.y8c{bottom:586.919765px;}
.ya5{bottom:591.779763px;}
.y17{bottom:592.139763px;}
.y6d{bottom:600.600600px;}
.y42{bottom:603.659759px;}
.ya4{bottom:608.879756px;}
.y6b{bottom:617.880600px;}
.y41{bottom:620.939752px;}
.y16{bottom:621.479751px;}
.ya3{bottom:626.159750px;}
.y69{bottom:635.160600px;}
.y40{bottom:638.219745px;}
.y15{bottom:638.759744px;}
.ya2{bottom:643.439743px;}
.y3f{bottom:655.499738px;}
.ya1{bottom:660.719736px;}
.y14{bottom:664.679734px;}
.y68{bottom:669.359732px;}
.y3e{bottom:672.779731px;}
.ya0{bottom:677.999729px;}
.y66{bottom:683.040600px;}
.y65{bottom:686.639725px;}
.y3d{bottom:689.879724px;}
.y13{bottom:690.959724px;}
.y9f{bottom:704.279718px;}
.y3c{bottom:707.159717px;}
.y8b{bottom:709.319716px;}
.y12{bottom:717.599713px;}
.y9e{bottom:721.379711px;}
.y3b{bottom:724.439710px;}
.y11{bottom:734.699706px;}
.y9d{bottom:738.659705px;}
.yc3{bottom:741.719703px;}
.y3a{bottom:750.719700px;}
.y10{bottom:751.979699px;}
.y9c{bottom:755.939698px;}
.yc2{bottom:758.999696px;}
.y39{bottom:767.999693px;}
.yf{bottom:769.259692px;}
.yc1{bottom:776.279689px;}
.y9b{bottom:782.219687px;}
.y38{bottom:785.279686px;}
.ye{bottom:786.539685px;}
.yc0{bottom:793.379683px;}
.y9a{bottom:799.499680px;}
.y37{bottom:802.379679px;}
.ybf{bottom:810.659676px;}
.yd{bottom:812.459675px;}
.y36{bottom:819.659672px;}
.y99{bottom:825.779670px;}
.ybe{bottom:827.939669px;}
.yc{bottom:829.559668px;}
.y35{bottom:836.939665px;}
.y98{bottom:842.879663px;}
.ybd{bottom:845.219662px;}
.y34{bottom:854.219658px;}
.yb{bottom:855.839658px;}
.y97{bottom:860.159656px;}
.ybc{bottom:862.499655px;}
.y33{bottom:871.499651px;}
.ybb{bottom:879.779648px;}
.ya{bottom:885.359646px;}
.y96{bottom:886.439645px;}
.y32{bottom:888.779644px;}
.yba{bottom:896.879641px;}
.y95{bottom:903.719639px;}
.y31{bottom:905.879638px;}
.y9{bottom:910.379636px;}
.yb9{bottom:914.159634px;}
.y30{bottom:923.159631px;}
.y8{bottom:929.279628px;}
.y94{bottom:929.999628px;}
.yb8{bottom:931.439627px;}
.y2f{bottom:940.439624px;}
.yb7{bottom:948.719621px;}
.y93{bottom:956.099618px;}
.y2e{bottom:957.719617px;}
.yb6{bottom:965.999614px;}
.y2d{bottom:974.999610px;}
.y6{bottom:976.979609px;}
.y92{bottom:982.379607px;}
.yb5{bottom:983.099607px;}
.y7{bottom:988.319605px;}
.y2c{bottom:992.099603px;}
.y64{bottom:992.639603px;}
.y91{bottom:999.659600px;}
.yb4{bottom:1000.379600px;}
.y5{bottom:1004.519598px;}
.y62{bottom:1005.780600px;}
.y2b{bottom:1009.379596px;}
.yb3{bottom:1017.659593px;}
.y60{bottom:1023.060600px;}
.y90{bottom:1025.939590px;}
.y4{bottom:1032.059587px;}
.y2a{bottom:1035.659586px;}
.y5e{bottom:1040.340600px;}
.yb2{bottom:1043.579583px;}
.y8a{bottom:1043.939582px;}
.y8f{bottom:1052.219579px;}
.y29{bottom:1052.939579px;}
.y5c{bottom:1057.620600px;}
.y5b{bottom:1061.219576px;}
.yb1{bottom:1069.859572px;}
.y28{bottom:1070.219572px;}
.y59{bottom:1074.900600px;}
.y58{bottom:1078.499569px;}
.y27{bottom:1087.499565px;}
.y56{bottom:1092.000600px;}
.y55{bottom:1095.599562px;}
.y26{bottom:1104.599558px;}
.y53{bottom:1118.280600px;}
.y52{bottom:1121.519551px;}
.y25{bottom:1121.879551px;}
.y24{bottom:1180.559528px;}
.y1{bottom:1194.419522px;}
.y50{bottom:1196.220600px;}
.y23{bottom:1199.099520px;}
.hc{height:13.680000px;}
.hd{height:16.740000px;}
.he{height:16.920000px;}
.hf{height:17.666009px;}
.h10{height:38.158578px;}
.h1{height:44.149201px;}
.ha{height:47.321348px;}
.h6{height:47.988262px;}
.h5{height:52.998026px;}
.h9{height:58.651148px;}
.h7{height:60.226851px;}
.h11{height:62.327788px;}
.h3{height:63.854974px;}
.h4{height:66.757473px;}
.hb{height:70.664034px;}
.h8{height:72.562471px;}
.h2{height:96.508086px;}
.h0{height:1263.000000px;}
.w1d{width:1.080000px;}
.w2{width:2.340000px;}
.wf{width:5.940000px;}
.w13{width:6.120000px;}
.wb{width:7.020000px;}
.w3{width:16.920000px;}
.w1b{width:18.000000px;}
.w1{width:18.360000px;}
.w16{width:29.160000px;}
.w10{width:34.200000px;}
.w1f{width:35.640000px;}
.w4{width:42.660000px;}
.w7{width:54.000000px;}
.wd{width:56.340000px;}
.w9{width:60.480000px;}
.w1a{width:63.180000px;}
.we{width:69.840000px;}
.w15{width:78.840000px;}
.w1c{width:82.620000px;}
.wa{width:107.280000px;}
.wc{width:126.180000px;}
.w1e{width:135.540000px;}
.w12{width:141.840000px;}
.w8{width:167.940000px;}
.w5{width:168.300000px;}
.w17{width:178.740000px;}
.w11{width:180.000000px;}
.w6{width:237.780000px;}
.w18{width:254.880000px;}
.w19{width:255.060000px;}
.w14{width:255.240000px;}
.w0{width:892.500000px;}
.x26{left:-237.780081px;}
.x25{left:-168.300108px;}
.x33{left:-126.180125px;}
.x2d{left:-107.280133px;}
.x38{left:-69.840148px;}
.x2b{left:-60.480152px;}
.x36{left:-56.340153px;}
.x28{left:-54.000154px;}
.x24{left:-42.480159px;}
.x1f{left:-18.360168px;}
.x22{left:-16.920169px;}
.x2f{left:-7.020173px;}
.x39{left:-5.940173px;}
.x20{left:-2.340175px;}
.x0{left:0.000000px;}
.x1{left:201.599919px;}
.x3c{left:204.299918px;}
.x3d{left:206.999917px;}
.x3{left:212.939915px;}
.xa{left:217.079913px;}
.x3a{left:222.840991px;}
.x8{left:225.719910px;}
.x4{left:238.859856px;}
.x5{left:248.219855px;}
.xe{left:260.819896px;}
.x15{left:271.080000px;}
.x1a{left:313.200000px;}
.x18{left:332.100000px;}
.x9{left:345.418739px;}
.x1c{left:369.540000px;}
.x17{left:378.900000px;}
.x1b{left:383.040000px;}
.x16{left:385.380000px;}
.x14{left:396.720000px;}
.x3b{left:399.779840px;}
.xf{left:412.559835px;}
.x11{left:421.020000px;}
.x13{left:422.460000px;}
.x19{left:432.360000px;}
.x1d{left:433.440000px;}
.x12{left:437.040000px;}
.x1e{left:439.380000px;}
.x35{left:440.459824px;}
.xd{left:446.039795px;}
.x30{left:457.379817px;}
.xb{left:468.179813px;}
.xc{left:472.679811px;}
.x10{left:475.739810px;}
.x2c{left:502.559799px;}
.x27{left:518.219793px;}
.x34{left:521.999791px;}
.x2e{left:565.559774px;}
.x37{left:574.919770px;}
.x23{left:581.219768px;}
.x2a{left:618.119753px;}
.x21{left:619.379752px;}
.x6{left:639.719744px;}
.x7{left:644.039742px;}
.x31{left:665.279734px;}
.x32{left:670.679732px;}
.x2{left:682.380048px;}
.x29{left:692.819930px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.808640pt;}
.ls2{letter-spacing:8.927196pt;}
.ls3{letter-spacing:12.129168pt;}
.ls4{letter-spacing:14.690714pt;}
.ls5{letter-spacing:17.892686pt;}
.ls7{letter-spacing:26.858229pt;}
.ls6{letter-spacing:29.419775pt;}
.ws0{word-spacing:-13.279995pt;}
.ws2{word-spacing:-10.719996pt;}
.ws1{word-spacing:0.000000pt;}
._1a{margin-left:-8.303488pt;}
._1{margin-left:-1.076793pt;}
._0{width:1.113308pt;}
._4{width:2.311594pt;}
._2{width:3.573869pt;}
._b{width:4.963988pt;}
._3{width:6.162078pt;}
._d{width:7.832287pt;}
._c{width:9.267145pt;}
._11{width:10.264236pt;}
._e{width:11.324446pt;}
._a{width:12.306400pt;}
._17{width:14.228627pt;}
._18{width:15.673898pt;}
._5{width:16.623882pt;}
._7{width:17.537347pt;}
._6{width:18.643022pt;}
._19{width:19.533768pt;}
._13{width:21.077423pt;}
._16{width:22.103508pt;}
._9{width:23.913741pt;}
._12{width:24.949004pt;}
._14{width:26.256827pt;}
._f{width:28.753048pt;}
._10{width:29.941290pt;}
._15{width:31.665863pt;}
._8{width:653.196539pt;}
.fs7{font-size:15.999994pt;}
.fs8{font-size:34.559986pt;}
.fs6{font-size:42.879983pt;}
.fs3{font-size:47.999981pt;}
.fs5{font-size:53.119979pt;}
.fs2{font-size:56.319977pt;}
.fs0{font-size:58.879976pt;}
.fs4{font-size:63.999974pt;}
.fs1{font-size:85.119966pt;}
.y0{bottom:0.000000pt;}
.y51{bottom:2.559040pt;}
.y54{bottom:2.879068pt;}
.y57{bottom:3.199077pt;}
.y5a{bottom:3.199083pt;}
.y5d{bottom:3.199089pt;}
.y5f{bottom:3.199095pt;}
.y61{bottom:3.199102pt;}
.y63{bottom:3.199108pt;}
.y67{bottom:3.199223pt;}
.y6a{bottom:3.199240pt;}
.y6c{bottom:3.199246pt;}
.y6e{bottom:3.199252pt;}
.y70{bottom:3.199258pt;}
.y72{bottom:3.199264pt;}
.y76{bottom:3.199280pt;}
.y79{bottom:3.199286pt;}
.y7c{bottom:3.199292pt;}
.y7e{bottom:3.199298pt;}
.y81{bottom:3.199304pt;}
.y84{bottom:3.199310pt;}
.y87{bottom:3.199316pt;}
.y3{bottom:285.706552pt;}
.y2{bottom:303.626545pt;}
.y22{bottom:333.386533pt;}
.yd1{bottom:334.826533pt;}
.y89{bottom:337.066532pt;}
.y4f{bottom:337.386532pt;}
.yb0{bottom:341.386530pt;}
.y21{bottom:348.746527pt;}
.yd0{bottom:350.026527pt;}
.y4e{bottom:352.586526pt;}
.yaf{bottom:356.586524pt;}
.y88{bottom:360.426522pt;}
.y20{bottom:364.106521pt;}
.ycf{bottom:365.386521pt;}
.y4d{bottom:367.946519pt;}
.yae{bottom:371.946518pt;}
.y86{bottom:372.587200pt;}
.y85{bottom:375.786516pt;}
.y1f{bottom:379.466515pt;}
.yce{bottom:380.746514pt;}
.y4c{bottom:383.306513pt;}
.y83{bottom:387.947200pt;}
.y82{bottom:391.146510pt;}
.yad{bottom:394.986509pt;}
.ycd{bottom:396.106508pt;}
.y4b{bottom:398.666507pt;}
.y1e{bottom:402.826506pt;}
.y80{bottom:403.147200pt;}
.y7f{bottom:406.346504pt;}
.ycc{bottom:411.466502pt;}
.y4a{bottom:414.026501pt;}
.ycb{bottom:417.546500pt;}
.y1d{bottom:418.026499pt;}
.y7d{bottom:418.507200pt;}
.yac{bottom:418.666499pt;}
.y8e{bottom:421.706498pt;}
.yca{bottom:426.666496pt;}
.y49{bottom:429.386495pt;}
.y1c{bottom:433.386493pt;}
.y7b{bottom:433.867200pt;}
.yab{bottom:434.026493pt;}
.y7a{bottom:437.066492pt;}
.yc9{bottom:442.026490pt;}
.y48{bottom:444.586489pt;}
.y1b{bottom:448.746487pt;}
.yaa{bottom:449.226487pt;}
.y78{bottom:449.227200pt;}
.y77{bottom:452.426486pt;}
.yc8{bottom:457.386484pt;}
.y8d{bottom:458.506483pt;}
.y47{bottom:459.946483pt;}
.y1a{bottom:464.106481pt;}
.ya9{bottom:464.586481pt;}
.y75{bottom:464.587200pt;}
.y74{bottom:467.786480pt;}
.yc7{bottom:472.746478pt;}
.y46{bottom:475.306477pt;}
.y19{bottom:479.466475pt;}
.ya8{bottom:479.946475pt;}
.yc6{bottom:488.106471pt;}
.y45{bottom:490.666470pt;}
.y73{bottom:491.146470pt;}
.yc5{bottom:494.186469pt;}
.ya7{bottom:495.306469pt;}
.y18{bottom:502.346466pt;}
.y71{bottom:503.147200pt;}
.yc4{bottom:504.266465pt;}
.y44{bottom:506.026464pt;}
.ya6{bottom:510.666462pt;}
.y6f{bottom:518.507200pt;}
.y43{bottom:521.226458pt;}
.y8c{bottom:521.706458pt;}
.ya5{bottom:526.026456pt;}
.y17{bottom:526.346456pt;}
.y6d{bottom:533.867200pt;}
.y42{bottom:536.586452pt;}
.ya4{bottom:541.226450pt;}
.y6b{bottom:549.227200pt;}
.y41{bottom:551.946446pt;}
.y16{bottom:552.426446pt;}
.ya3{bottom:556.586444pt;}
.y69{bottom:564.587200pt;}
.y40{bottom:567.306440pt;}
.y15{bottom:567.786440pt;}
.ya2{bottom:571.946438pt;}
.y3f{bottom:582.666434pt;}
.ya1{bottom:587.306432pt;}
.y14{bottom:590.826430pt;}
.y68{bottom:594.986429pt;}
.y3e{bottom:598.026427pt;}
.ya0{bottom:602.666426pt;}
.y66{bottom:607.147200pt;}
.y65{bottom:610.346423pt;}
.y3d{bottom:613.226421pt;}
.y13{bottom:614.186421pt;}
.y9f{bottom:626.026416pt;}
.y3c{bottom:628.586415pt;}
.y8b{bottom:630.506414pt;}
.y12{bottom:637.866412pt;}
.y9e{bottom:641.226410pt;}
.y3b{bottom:643.946409pt;}
.y11{bottom:653.066405pt;}
.y9d{bottom:656.586404pt;}
.yc3{bottom:659.306403pt;}
.y3a{bottom:667.306400pt;}
.y10{bottom:668.426399pt;}
.y9c{bottom:671.946398pt;}
.yc2{bottom:674.666397pt;}
.y39{bottom:682.666394pt;}
.yf{bottom:683.786393pt;}
.yc1{bottom:690.026391pt;}
.y9b{bottom:695.306389pt;}
.y38{bottom:698.026387pt;}
.ye{bottom:699.146387pt;}
.yc0{bottom:705.226385pt;}
.y9a{bottom:710.666382pt;}
.y37{bottom:713.226381pt;}
.ybf{bottom:720.586378pt;}
.yd{bottom:722.186378pt;}
.y36{bottom:728.586375pt;}
.y99{bottom:734.026373pt;}
.ybe{bottom:735.946372pt;}
.yc{bottom:737.386372pt;}
.y35{bottom:743.946369pt;}
.y98{bottom:749.226367pt;}
.ybd{bottom:751.306366pt;}
.y34{bottom:759.306363pt;}
.yb{bottom:760.746362pt;}
.y97{bottom:764.586361pt;}
.ybc{bottom:766.666360pt;}
.y33{bottom:774.666357pt;}
.ybb{bottom:782.026354pt;}
.ya{bottom:786.986352pt;}
.y96{bottom:787.946351pt;}
.y32{bottom:790.026351pt;}
.yba{bottom:797.226348pt;}
.y95{bottom:803.306345pt;}
.y31{bottom:805.226345pt;}
.y9{bottom:809.226343pt;}
.yb9{bottom:812.586342pt;}
.y30{bottom:820.586338pt;}
.y8{bottom:826.026336pt;}
.y94{bottom:826.666336pt;}
.yb8{bottom:827.946335pt;}
.y2f{bottom:835.946332pt;}
.yb7{bottom:843.306329pt;}
.y93{bottom:849.866327pt;}
.y2e{bottom:851.306326pt;}
.yb6{bottom:858.666323pt;}
.y2d{bottom:866.666320pt;}
.y6{bottom:868.426319pt;}
.y92{bottom:873.226317pt;}
.yb5{bottom:873.866317pt;}
.y7{bottom:878.506315pt;}
.y2c{bottom:881.866314pt;}
.y64{bottom:882.346314pt;}
.y91{bottom:888.586311pt;}
.yb4{bottom:889.226311pt;}
.y5{bottom:892.906310pt;}
.y62{bottom:894.027200pt;}
.y2b{bottom:897.226308pt;}
.yb3{bottom:904.586305pt;}
.y60{bottom:909.387200pt;}
.y90{bottom:911.946302pt;}
.y4{bottom:917.386300pt;}
.y2a{bottom:920.586298pt;}
.y5e{bottom:924.747200pt;}
.yb2{bottom:927.626296pt;}
.y8a{bottom:927.946295pt;}
.y8f{bottom:935.306293pt;}
.y29{bottom:935.946292pt;}
.y5c{bottom:940.107200pt;}
.y5b{bottom:943.306289pt;}
.yb1{bottom:950.986286pt;}
.y28{bottom:951.306286pt;}
.y59{bottom:955.467200pt;}
.y58{bottom:958.666283pt;}
.y27{bottom:966.666280pt;}
.y56{bottom:970.667200pt;}
.y55{bottom:973.866277pt;}
.y26{bottom:981.866274pt;}
.y53{bottom:994.027200pt;}
.y52{bottom:996.906268pt;}
.y25{bottom:997.226268pt;}
.y24{bottom:1049.386247pt;}
.y1{bottom:1061.706242pt;}
.y50{bottom:1063.307200pt;}
.y23{bottom:1065.866240pt;}
.hc{height:12.160000pt;}
.hd{height:14.880000pt;}
.he{height:15.040000pt;}
.hf{height:15.703119pt;}
.h10{height:33.918736pt;}
.h1{height:39.243734pt;}
.ha{height:42.063421pt;}
.h6{height:42.656233pt;}
.h5{height:47.109356pt;}
.h9{height:52.134354pt;}
.h7{height:53.534979pt;}
.h11{height:55.402478pt;}
.h3{height:56.759977pt;}
.h4{height:59.339976pt;}
.hb{height:62.812475pt;}
.h8{height:64.499974pt;}
.h2{height:85.784966pt;}
.h0{height:1122.666667pt;}
.w1d{width:0.960000pt;}
.w2{width:2.080000pt;}
.wf{width:5.280000pt;}
.w13{width:5.440000pt;}
.wb{width:6.240000pt;}
.w3{width:15.040000pt;}
.w1b{width:16.000000pt;}
.w1{width:16.320000pt;}
.w16{width:25.920000pt;}
.w10{width:30.400000pt;}
.w1f{width:31.680000pt;}
.w4{width:37.920000pt;}
.w7{width:48.000000pt;}
.wd{width:50.080000pt;}
.w9{width:53.760000pt;}
.w1a{width:56.160000pt;}
.we{width:62.080000pt;}
.w15{width:70.080000pt;}
.w1c{width:73.440000pt;}
.wa{width:95.360000pt;}
.wc{width:112.160000pt;}
.w1e{width:120.480000pt;}
.w12{width:126.080000pt;}
.w8{width:149.280000pt;}
.w5{width:149.600000pt;}
.w17{width:158.880000pt;}
.w11{width:160.000000pt;}
.w6{width:211.360000pt;}
.w18{width:226.560000pt;}
.w19{width:226.720000pt;}
.w14{width:226.880000pt;}
.w0{width:793.333333pt;}
.x26{left:-211.360072pt;}
.x25{left:-149.600096pt;}
.x33{left:-112.160111pt;}
.x2d{left:-95.360118pt;}
.x38{left:-62.080131pt;}
.x2b{left:-53.760135pt;}
.x36{left:-50.080136pt;}
.x28{left:-48.000137pt;}
.x24{left:-37.760141pt;}
.x1f{left:-16.320150pt;}
.x22{left:-15.040150pt;}
.x2f{left:-6.240154pt;}
.x39{left:-5.280154pt;}
.x20{left:-2.080155pt;}
.x0{left:0.000000pt;}
.x1{left:179.199928pt;}
.x3c{left:181.599927pt;}
.x3d{left:183.999926pt;}
.x3{left:189.279924pt;}
.xa{left:192.959923pt;}
.x3a{left:198.080881pt;}
.x8{left:200.639920pt;}
.x4{left:212.319872pt;}
.x5{left:220.639871pt;}
.xe{left:231.839907pt;}
.x15{left:240.960000pt;}
.x1a{left:278.400000pt;}
.x18{left:295.200000pt;}
.x9{left:307.038879pt;}
.x1c{left:328.480000pt;}
.x17{left:336.800000pt;}
.x1b{left:340.480000pt;}
.x16{left:342.560000pt;}
.x14{left:352.640000pt;}
.x3b{left:355.359858pt;}
.xf{left:366.719853pt;}
.x11{left:374.240000pt;}
.x13{left:375.520000pt;}
.x19{left:384.320000pt;}
.x1d{left:385.280000pt;}
.x12{left:388.480000pt;}
.x1e{left:390.560000pt;}
.x35{left:391.519843pt;}
.xd{left:396.479818pt;}
.x30{left:406.559837pt;}
.xb{left:416.159834pt;}
.xc{left:420.159832pt;}
.x10{left:422.879831pt;}
.x2c{left:446.719821pt;}
.x27{left:460.639816pt;}
.x34{left:463.999814pt;}
.x2e{left:502.719799pt;}
.x37{left:511.039796pt;}
.x23{left:516.639793pt;}
.x2a{left:549.439780pt;}
.x21{left:550.559780pt;}
.x6{left:568.639773pt;}
.x7{left:572.479771pt;}
.x31{left:591.359763pt;}
.x32{left:596.159762pt;}
.x2{left:606.560043pt;}
.x29{left:615.839938pt;}
}




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