
    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_744d5c8792fbbcc09cfe3734.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.946777;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_e58b6b047447ec94ad50f41f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.102051;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_de68ffe3964f1b166ab0e0e2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.129395;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_5311b14bb4cd8e29be426b00.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.175293;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_517079b51f7e8f52d0344fe1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.979004;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_405e1a2701016aae20cb9cdb.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_b13733342e8920f85de9a62a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-23.760027px;}
.v5{vertical-align:-20.880067px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.440031px;}
.v1{vertical-align:5.760135px;}
.v3{vertical-align:23.760027px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.007763px;}
.ls3{letter-spacing:0.179437px;}
.ls2{letter-spacing:0.179442px;}
.ls9{letter-spacing:12.610723px;}
.ls7{letter-spacing:37.012990px;}
.ls6{letter-spacing:37.013062px;}
.ls8{letter-spacing:39.970732px;}
.ls4{letter-spacing:49.330745px;}
.ls5{letter-spacing:195.119298px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-66.242700px;}
.ws6{word-spacing:-17.280675px;}
.ws1{word-spacing:-16.560675px;}
.ws4{word-spacing:-14.940563px;}
.ws2{word-spacing:-10.440405px;}
.ws3{word-spacing:-9.720371px;}
.ws0{word-spacing:0.000000px;}
._f{margin-left:-2.087895px;}
._1{margin-left:-1.080045px;}
._0{width:1.086373px;}
._4{width:2.129054px;}
._2{width:3.149217px;}
._13{width:4.826402px;}
._1d{width:5.849001px;}
._b{width:7.286697px;}
._a{width:8.589815px;}
._1e{width:9.626410px;}
._7{width:10.687846px;}
._1c{width:11.984139px;}
._1a{width:13.160044px;}
._6{width:14.374666px;}
._e{width:15.375228px;}
._21{width:18.107028px;}
._22{width:19.191256px;}
._17{width:20.249048px;}
._24{width:21.467249px;}
._12{width:22.556416px;}
._11{width:23.869108px;}
._14{width:25.348701px;}
._23{width:26.794255px;}
._1b{width:27.821934px;}
._1f{width:29.729236px;}
._d{width:30.848397px;}
._c{width:32.260195px;}
._9{width:33.995874px;}
._8{width:35.572330px;}
._19{width:37.122682px;}
._10{width:38.497100px;}
._16{width:39.546374px;}
._15{width:40.673018px;}
._18{width:139.165821px;}
._25{width:173.357146px;}
._5{width:179.423963px;}
._20{width:195.415965px;}
._3{width:354.759451px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:5.760225px;}
.fs6{font-size:38.881485px;}
.fs5{font-size:41.761620px;}
.fs0{font-size:54.002250px;}
.fs4{font-size:59.762250px;}
.fs1{font-size:66.242700px;}
.fs7{font-size:69.122700px;}
.fs2{font-size:72.002705px;}
.y0{bottom:0.000000px;}
.ya{bottom:3.599997px;}
.y6{bottom:305.280052px;}
.y5{bottom:322.380066px;}
.y5f{bottom:342.360077px;}
.yba{bottom:342.720085px;}
.y36{bottom:344.340088px;}
.y65{bottom:347.580093px;}
.y64{bottom:360.360077px;}
.yb9{bottom:361.800041px;}
.y35{bottom:363.240074px;}
.y5e{bottom:364.860077px;}
.y71{bottom:376.740074px;}
.y5d{bottom:377.640060px;}
.yb8{bottom:380.700096px;}
.y7b{bottom:381.960091px;}
.yca{bottom:382.140060px;}
.y34{bottom:382.320099px;}
.y63{bottom:383.580093px;}
.y83{bottom:394.740074px;}
.ya8{bottom:398.340088px;}
.y70{bottom:399.240074px;}
.yb7{bottom:399.780052px;}
.y33{bottom:401.220085px;}
.yc9{bottom:401.760064px;}
.y62{bottom:401.940033px;}
.y96{bottom:402.300041px;}
.ya9{bottom:406.080093px;}
.y6f{bottom:411.300041px;}
.ya7{bottom:417.240074px;}
.yb6{bottom:418.680039px;}
.y61{bottom:419.040047px;}
.y32{bottom:420.300041px;}
.yc8{bottom:420.840088px;}
.y95{bottom:421.380066px;}
.y5c{bottom:424.980079px;}
.y7a{bottom:428.580093px;}
.y82{bottom:432.540047px;}
.y60{bottom:433.080093px;}
.y6e{bottom:433.800041px;}
.ya6{bottom:436.320099px;}
.yb5{bottom:437.580093px;}
.y31{bottom:439.200096px;}
.y94{bottom:440.280052px;}
.yc7{bottom:440.460091px;}
.y5b{bottom:444.060036px;}
.y6d{bottom:445.860077px;}
.y79{bottom:451.080093px;}
.y81{bottom:451.620072px;}
.ya5{bottom:455.220085px;}
.yb4{bottom:456.660049px;}
.y30{bottom:458.100083px;}
.y93{bottom:459.180039px;}
.yc6{bottom:459.360077px;}
.yaa{bottom:462.600083px;}
.y5a{bottom:462.960091px;}
.y6c{bottom:463.140060px;}
.y78{bottom:463.860077px;}
.y7e{bottom:468.360077px;}
.y80{bottom:470.520058px;}
.ya4{bottom:474.120072px;}
.yb3{bottom:475.380066px;}
.y2f{bottom:477.180039px;}
.y92{bottom:478.260064px;}
.yc5{bottom:479.160049px;}
.y6b{bottom:480.240074px;}
.y59{bottom:481.860077px;}
.y77{bottom:485.640060px;}
.y7f{bottom:489.060036px;}
.yb2{bottom:492.120072px;}
.ya3{bottom:493.200096px;}
.y2e{bottom:495.720085px;}
.y91{bottom:497.340088px;}
.yc4{bottom:498.060036px;}
.y58{bottom:500.940033px;}
.y6a{bottom:502.740074px;}
.y76{bottom:504.540047px;}
.yb1{bottom:505.980079px;}
.ya2{bottom:512.100083px;}
.y2d{bottom:514.800041px;}
.y7d{bottom:515.520058px;}
.yc3{bottom:517.140060px;}
.y90{bottom:517.320099px;}
.y57{bottom:519.840088px;}
.y69{bottom:520.020058px;}
.y75{bottom:523.620072px;}
.ya1{bottom:531.180039px;}
.y2a{bottom:534.420043px;}
.y8f{bottom:536.400055px;}
.yc2{bottom:536.760064px;}
.y68{bottom:537.300041px;}
.y56{bottom:538.920043px;}
.y74{bottom:542.520058px;}
.yb0{bottom:549.360077px;}
.y67{bottom:550.080093px;}
.y29{bottom:553.500068px;}
.y2c{bottom:553.860077px;}
.yc1{bottom:555.660049px;}
.y8e{bottom:556.560036px;}
.y55{bottom:557.820099px;}
.y73{bottom:560.880066px;}
.ya0{bottom:568.980079px;}
.yaf{bottom:571.860077px;}
.y28{bottom:572.400055px;}
.y2b{bottom:572.760064px;}
.y72{bottom:574.740074px;}
.yc0{bottom:575.460091px;}
.y54{bottom:576.720085px;}
.yae{bottom:583.740074px;}
.y9f{bottom:588.060036px;}
.y27{bottom:592.200096px;}
.ybf{bottom:594.360077px;}
.y53{bottom:595.800041px;}
.y8d{bottom:596.880066px;}
.yad{bottom:606.240074px;}
.y9e{bottom:606.960091px;}
.y26{bottom:611.100083px;}
.ye6{bottom:612.900055px;}
.ybe{bottom:613.980079px;}
.y52{bottom:614.700096px;}
.y8c{bottom:615.780052px;}
.yac{bottom:619.020058px;}
.y9d{bottom:626.040047px;}
.y25{bottom:631.260064px;}
.ye5{bottom:632.340088px;}
.ybd{bottom:633.060036px;}
.y51{bottom:633.780052px;}
.y8b{bottom:634.680039px;}
.y9c{bottom:644.940033px;}
.y24{bottom:650.160049px;}
.ye4{bottom:651.240074px;}
.yab{bottom:652.320099px;}
.y50{bottom:652.680039px;}
.y8a{bottom:653.760064px;}
.y9b{bottom:663.660049px;}
.y23{bottom:669.060036px;}
.ye3{bottom:670.320099px;}
.ybc{bottom:671.400055px;}
.y4f{bottom:671.760064px;}
.y89{bottom:672.660049px;}
.y9a{bottom:680.940033px;}
.y22{bottom:688.140060px;}
.ye2{bottom:689.220051px;}
.y7c{bottom:690.300076px;}
.y4e{bottom:690.660049px;}
.y88{bottom:691.740074px;}
.y99{bottom:697.680073px;}
.y21{bottom:707.040081px;}
.ye1{bottom:707.940067px;}
.ybb{bottom:709.200061px;}
.y4d{bottom:709.560070px;}
.y87{bottom:710.280052px;}
.y98{bottom:714.960056px;}
.y20{bottom:726.120072px;}
.ye0{bottom:726.840054px;}
.y86{bottom:727.560070px;}
.y4c{bottom:728.640060px;}
.y97{bottom:728.820065px;}
.y85{bottom:744.480079px;}
.y1f{bottom:745.020058px;}
.ydf{bottom:746.100083px;}
.y4b{bottom:747.540081px;}
.y84{bottom:758.340054px;}
.y1e{bottom:763.920078px;}
.yde{bottom:765.180073px;}
.y4a{bottom:766.620072px;}
.y1d{bottom:783.000068px;}
.ydd{bottom:784.080059px;}
.y49{bottom:785.520058px;}
.y1c{bottom:801.900055px;}
.ydc{bottom:803.160049px;}
.y48{bottom:804.420078px;}
.y1b{bottom:820.980079px;}
.ydb{bottom:822.060070px;}
.y47{bottom:823.500068px;}
.y1a{bottom:839.880066px;}
.yda{bottom:840.960056px;}
.y46{bottom:842.400055px;}
.y19{bottom:858.780052px;}
.yd9{bottom:860.040081px;}
.y45{bottom:861.480079px;}
.y18{bottom:877.860077px;}
.yd8{bottom:878.940067px;}
.y44{bottom:880.380066px;}
.y17{bottom:896.760064px;}
.yd7{bottom:898.020058px;}
.y43{bottom:899.280052px;}
.y16{bottom:915.840054px;}
.yd6{bottom:916.920078px;}
.y42{bottom:918.360077px;}
.y15{bottom:934.380066px;}
.yd5{bottom:935.820065px;}
.y41{bottom:937.260064px;}
.y14{bottom:953.820065px;}
.yd4{bottom:954.900055px;}
.y40{bottom:956.340054px;}
.y13{bottom:969.660049px;}
.yd3{bottom:973.800076px;}
.y3f{bottom:975.240074px;}
.y12{bottom:989.280069px;}
.yd2{bottom:992.880066px;}
.y3e{bottom:994.140060px;}
.y11{bottom:1008.360060px;}
.yd1{bottom:1011.780069px;}
.y3d{bottom:1013.220068px;}
.y10{bottom:1025.640060px;}
.yd0{bottom:1030.680073px;}
.y3c{bottom:1032.120072px;}
.yf{bottom:1044.540064px;}
.ycf{bottom:1049.400072px;}
.y3b{bottom:1051.200061px;}
.ye{bottom:1063.440067px;}
.yce{bottom:1068.300058px;}
.y3a{bottom:1070.100065px;}
.yd{bottom:1082.520058px;}
.ycd{bottom:1087.740074px;}
.y39{bottom:1089.000068px;}
.yc{bottom:1100.160067px;}
.yb{bottom:1103.760064px;}
.ycc{bottom:1107.360060px;}
.y38{bottom:1108.080059px;}
.y9{bottom:1119.060070px;}
.y8{bottom:1122.660067px;}
.ycb{bottom:1126.260064px;}
.y66{bottom:1126.620063px;}
.y37{bottom:1126.980063px;}
.y7{bottom:1140.660067px;}
.y4{bottom:1145.880066px;}
.y3{bottom:1164.420069px;}
.y2{bottom:1180.260064px;}
.y1{bottom:1196.100065px;}
.h5{height:5.116137px;}
.h7{height:18.539994px;}
.hf{height:34.040284px;}
.h2{height:38.682276px;}
.h3{height:47.450215px;}
.hc{height:50.490652px;}
.h9{height:52.321150px;}
.hb{height:53.079850px;}
.h11{height:54.918240px;}
.hd{height:57.994708px;}
.h8{height:58.835679px;}
.ha{height:58.839985px;}
.h14{height:60.321665px;}
.h15{height:60.321800px;}
.h10{height:60.321804px;}
.he{height:60.321836px;}
.h13{height:60.321939px;}
.h12{height:60.321944px;}
.h16{height:60.516114px;}
.h6{height:60.873419px;}
.h4{height:63.037524px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w2{width:8.099945px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:166.860008px;}
.x5{left:175.319996px;}
.x23{left:181.259994px;}
.x20{left:186.479994px;}
.x1c{left:189.180005px;}
.xa{left:193.319996px;}
.x2a{left:202.319996px;}
.x19{left:207.360008px;}
.x14{left:212.039996px;}
.x25{left:214.379998px;}
.xf{left:215.819996px;}
.x16{left:220.860008px;}
.x2{left:223.560001px;}
.x10{left:228.780001px;}
.x1{left:237.240006px;}
.x1f{left:243.000000px;}
.x28{left:277.379998px;}
.x24{left:288.180005px;}
.xe{left:291.420010px;}
.xb{left:296.279983px;}
.x1b{left:303.839985px;}
.x29{left:314.639992px;}
.x18{left:339.839985px;}
.xd{left:368.459988px;}
.x11{left:375.300007px;}
.x3{left:383.759994px;}
.x1d{left:400.139992px;}
.x21{left:405.899987px;}
.x15{left:408.420010px;}
.x26{left:410.040012px;}
.x6{left:427.500000px;}
.xc{left:442.620002px;}
.x4{left:450.540012px;}
.x9{left:501.300007px;}
.x17{left:570.779983px;}
.x7{left:595.259994px;}
.x27{left:600.480011px;}
.x1e{left:602.639992px;}
.x13{left:607.139992px;}
.x1a{left:609.840019px;}
.x22{left:628.740006px;}
.x8{left:725.940033px;}
@media print{
.v4{vertical-align:-21.120024pt;}
.v5{vertical-align:-18.560060pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.280028pt;}
.v1{vertical-align:5.120120pt;}
.v3{vertical-align:21.120024pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.006900pt;}
.ls3{letter-spacing:0.159500pt;}
.ls2{letter-spacing:0.159504pt;}
.ls9{letter-spacing:11.209531pt;}
.ls7{letter-spacing:32.900435pt;}
.ls6{letter-spacing:32.900499pt;}
.ls8{letter-spacing:35.529539pt;}
.ls4{letter-spacing:43.849551pt;}
.ls5{letter-spacing:173.439376pt;}
.ws5{word-spacing:-58.882400pt;}
.ws6{word-spacing:-15.360600pt;}
.ws1{word-spacing:-14.720600pt;}
.ws4{word-spacing:-13.280500pt;}
.ws2{word-spacing:-9.280360pt;}
.ws3{word-spacing:-8.640330pt;}
.ws0{word-spacing:0.000000pt;}
._f{margin-left:-1.855907pt;}
._1{margin-left:-0.960040pt;}
._0{width:0.965665pt;}
._4{width:1.892492pt;}
._2{width:2.799304pt;}
._13{width:4.290135pt;}
._1d{width:5.199112pt;}
._b{width:6.477064pt;}
._a{width:7.635391pt;}
._1e{width:8.556809pt;}
._7{width:9.500307pt;}
._1c{width:10.652568pt;}
._1a{width:11.697817pt;}
._6{width:12.777481pt;}
._e{width:13.666870pt;}
._21{width:16.095136pt;}
._22{width:17.058895pt;}
._17{width:17.999154pt;}
._24{width:19.081999pt;}
._12{width:20.050147pt;}
._11{width:21.216985pt;}
._14{width:22.532178pt;}
._23{width:23.817116pt;}
._1b{width:24.730608pt;}
._1f{width:26.425987pt;}
._d{width:27.420798pt;}
._c{width:28.675729pt;}
._9{width:30.218555pt;}
._8{width:31.619849pt;}
._19{width:32.997940pt;}
._10{width:34.219645pt;}
._16{width:35.152333pt;}
._15{width:36.153794pt;}
._18{width:123.702952pt;}
._25{width:154.095241pt;}
._5{width:159.487967pt;}
._20{width:173.703080pt;}
._3{width:315.341734pt;}
.fs3{font-size:5.120200pt;}
.fs6{font-size:34.561320pt;}
.fs5{font-size:37.121440pt;}
.fs0{font-size:48.002000pt;}
.fs4{font-size:53.122000pt;}
.fs1{font-size:58.882400pt;}
.fs7{font-size:61.442400pt;}
.fs2{font-size:64.002404pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:3.199997pt;}
.y6{bottom:271.360047pt;}
.y5{bottom:286.560059pt;}
.y5f{bottom:304.320069pt;}
.yba{bottom:304.640076pt;}
.y36{bottom:306.080079pt;}
.y65{bottom:308.960083pt;}
.y64{bottom:320.320069pt;}
.yb9{bottom:321.600037pt;}
.y35{bottom:322.880066pt;}
.y5e{bottom:324.320069pt;}
.y71{bottom:334.880066pt;}
.y5d{bottom:335.680054pt;}
.yb8{bottom:338.400086pt;}
.y7b{bottom:339.520081pt;}
.yca{bottom:339.680054pt;}
.y34{bottom:339.840088pt;}
.y63{bottom:340.960083pt;}
.y83{bottom:350.880066pt;}
.ya8{bottom:354.080079pt;}
.y70{bottom:354.880066pt;}
.yb7{bottom:355.360047pt;}
.y33{bottom:356.640076pt;}
.yc9{bottom:357.120057pt;}
.y62{bottom:357.280030pt;}
.y96{bottom:357.600037pt;}
.ya9{bottom:360.960083pt;}
.y6f{bottom:365.600037pt;}
.ya7{bottom:370.880066pt;}
.yb6{bottom:372.160035pt;}
.y61{bottom:372.480042pt;}
.y32{bottom:373.600037pt;}
.yc8{bottom:374.080079pt;}
.y95{bottom:374.560059pt;}
.y5c{bottom:377.760071pt;}
.y7a{bottom:380.960083pt;}
.y82{bottom:384.480042pt;}
.y60{bottom:384.960083pt;}
.y6e{bottom:385.600037pt;}
.ya6{bottom:387.840088pt;}
.yb5{bottom:388.960083pt;}
.y31{bottom:390.400086pt;}
.y94{bottom:391.360047pt;}
.yc7{bottom:391.520081pt;}
.y5b{bottom:394.720032pt;}
.y6d{bottom:396.320069pt;}
.y79{bottom:400.960083pt;}
.y81{bottom:401.440064pt;}
.ya5{bottom:404.640076pt;}
.yb4{bottom:405.920044pt;}
.y30{bottom:407.200074pt;}
.y93{bottom:408.160035pt;}
.yc6{bottom:408.320069pt;}
.yaa{bottom:411.200074pt;}
.y5a{bottom:411.520081pt;}
.y6c{bottom:411.680054pt;}
.y78{bottom:412.320069pt;}
.y7e{bottom:416.320069pt;}
.y80{bottom:418.240052pt;}
.ya4{bottom:421.440064pt;}
.yb3{bottom:422.560059pt;}
.y2f{bottom:424.160035pt;}
.y92{bottom:425.120057pt;}
.yc5{bottom:425.920044pt;}
.y6b{bottom:426.880066pt;}
.y59{bottom:428.320069pt;}
.y77{bottom:431.680054pt;}
.y7f{bottom:434.720032pt;}
.yb2{bottom:437.440064pt;}
.ya3{bottom:438.400086pt;}
.y2e{bottom:440.640076pt;}
.y91{bottom:442.080079pt;}
.yc4{bottom:442.720032pt;}
.y58{bottom:445.280030pt;}
.y6a{bottom:446.880066pt;}
.y76{bottom:448.480042pt;}
.yb1{bottom:449.760071pt;}
.ya2{bottom:455.200074pt;}
.y2d{bottom:457.600037pt;}
.y7d{bottom:458.240052pt;}
.yc3{bottom:459.680054pt;}
.y90{bottom:459.840088pt;}
.y57{bottom:462.080079pt;}
.y69{bottom:462.240052pt;}
.y75{bottom:465.440064pt;}
.ya1{bottom:472.160035pt;}
.y2a{bottom:475.040039pt;}
.y8f{bottom:476.800049pt;}
.yc2{bottom:477.120057pt;}
.y68{bottom:477.600037pt;}
.y56{bottom:479.040039pt;}
.y74{bottom:482.240052pt;}
.yb0{bottom:488.320069pt;}
.y67{bottom:488.960083pt;}
.y29{bottom:492.000061pt;}
.y2c{bottom:492.320069pt;}
.yc1{bottom:493.920044pt;}
.y8e{bottom:494.720032pt;}
.y55{bottom:495.840088pt;}
.y73{bottom:498.560059pt;}
.ya0{bottom:505.760071pt;}
.yaf{bottom:508.320069pt;}
.y28{bottom:508.800049pt;}
.y2b{bottom:509.120057pt;}
.y72{bottom:510.880066pt;}
.yc0{bottom:511.520081pt;}
.y54{bottom:512.640076pt;}
.yae{bottom:518.880066pt;}
.y9f{bottom:522.720032pt;}
.y27{bottom:526.400086pt;}
.ybf{bottom:528.320069pt;}
.y53{bottom:529.600037pt;}
.y8d{bottom:530.560059pt;}
.yad{bottom:538.880066pt;}
.y9e{bottom:539.520081pt;}
.y26{bottom:543.200074pt;}
.ye6{bottom:544.800049pt;}
.ybe{bottom:545.760071pt;}
.y52{bottom:546.400086pt;}
.y8c{bottom:547.360047pt;}
.yac{bottom:550.240052pt;}
.y9d{bottom:556.480042pt;}
.y25{bottom:561.120057pt;}
.ye5{bottom:562.080079pt;}
.ybd{bottom:562.720032pt;}
.y51{bottom:563.360047pt;}
.y8b{bottom:564.160035pt;}
.y9c{bottom:573.280030pt;}
.y24{bottom:577.920044pt;}
.ye4{bottom:578.880066pt;}
.yab{bottom:579.840088pt;}
.y50{bottom:580.160035pt;}
.y8a{bottom:581.120057pt;}
.y9b{bottom:589.920044pt;}
.y23{bottom:594.720032pt;}
.ye3{bottom:595.840088pt;}
.ybc{bottom:596.800049pt;}
.y4f{bottom:597.120057pt;}
.y89{bottom:597.920044pt;}
.y9a{bottom:605.280030pt;}
.y22{bottom:611.680054pt;}
.ye2{bottom:612.640046pt;}
.y7c{bottom:613.600068pt;}
.y4e{bottom:613.920044pt;}
.y88{bottom:614.880066pt;}
.y99{bottom:620.160065pt;}
.y21{bottom:628.480072pt;}
.ye1{bottom:629.280060pt;}
.ybb{bottom:630.400055pt;}
.y4d{bottom:630.720063pt;}
.y87{bottom:631.360047pt;}
.y98{bottom:635.520050pt;}
.y20{bottom:645.440064pt;}
.ye0{bottom:646.080048pt;}
.y86{bottom:646.720063pt;}
.y4c{bottom:647.680054pt;}
.y97{bottom:647.840058pt;}
.y85{bottom:661.760071pt;}
.y1f{bottom:662.240052pt;}
.ydf{bottom:663.200074pt;}
.y4b{bottom:664.480072pt;}
.y84{bottom:674.080048pt;}
.y1e{bottom:679.040070pt;}
.yde{bottom:680.160065pt;}
.y4a{bottom:681.440064pt;}
.y1d{bottom:696.000061pt;}
.ydd{bottom:696.960053pt;}
.y49{bottom:698.240052pt;}
.y1c{bottom:712.800049pt;}
.ydc{bottom:713.920044pt;}
.y48{bottom:715.040070pt;}
.y1b{bottom:729.760071pt;}
.ydb{bottom:730.720063pt;}
.y47{bottom:732.000061pt;}
.y1a{bottom:746.560059pt;}
.yda{bottom:747.520050pt;}
.y46{bottom:748.800049pt;}
.y19{bottom:763.360047pt;}
.yd9{bottom:764.480072pt;}
.y45{bottom:765.760071pt;}
.y18{bottom:780.320069pt;}
.yd8{bottom:781.280060pt;}
.y44{bottom:782.560059pt;}
.y17{bottom:797.120057pt;}
.yd7{bottom:798.240052pt;}
.y43{bottom:799.360047pt;}
.y16{bottom:814.080048pt;}
.yd6{bottom:815.040070pt;}
.y42{bottom:816.320069pt;}
.y15{bottom:830.560059pt;}
.yd5{bottom:831.840058pt;}
.y41{bottom:833.120057pt;}
.y14{bottom:847.840058pt;}
.yd4{bottom:848.800049pt;}
.y40{bottom:850.080048pt;}
.y13{bottom:861.920044pt;}
.yd3{bottom:865.600068pt;}
.y3f{bottom:866.880066pt;}
.y12{bottom:879.360062pt;}
.yd2{bottom:882.560059pt;}
.y3e{bottom:883.680054pt;}
.y11{bottom:896.320054pt;}
.yd1{bottom:899.360062pt;}
.y3d{bottom:900.640061pt;}
.y10{bottom:911.680054pt;}
.yd0{bottom:916.160065pt;}
.y3c{bottom:917.440064pt;}
.yf{bottom:928.480057pt;}
.ycf{bottom:932.800064pt;}
.y3b{bottom:934.400055pt;}
.ye{bottom:945.280060pt;}
.yce{bottom:949.600052pt;}
.y3a{bottom:951.200058pt;}
.yd{bottom:962.240052pt;}
.ycd{bottom:966.880066pt;}
.y39{bottom:968.000061pt;}
.yc{bottom:977.920060pt;}
.yb{bottom:981.120057pt;}
.ycc{bottom:984.320054pt;}
.y38{bottom:984.960053pt;}
.y9{bottom:994.720063pt;}
.y8{bottom:997.920060pt;}
.ycb{bottom:1001.120057pt;}
.y66{bottom:1001.440056pt;}
.y37{bottom:1001.760056pt;}
.y7{bottom:1013.920060pt;}
.y4{bottom:1018.560059pt;}
.y3{bottom:1035.040062pt;}
.y2{bottom:1049.120057pt;}
.y1{bottom:1063.200058pt;}
.h5{height:4.547678pt;}
.h7{height:16.479995pt;}
.hf{height:30.258031pt;}
.h2{height:34.384245pt;}
.h3{height:42.177969pt;}
.hc{height:44.880579pt;}
.h9{height:46.507688pt;}
.hb{height:47.182089pt;}
.h11{height:48.816213pt;}
.hd{height:51.550851pt;}
.h8{height:52.298382pt;}
.ha{height:52.302209pt;}
.h14{height:53.619258pt;}
.h15{height:53.619378pt;}
.h10{height:53.619382pt;}
.he{height:53.619410pt;}
.h13{height:53.619502pt;}
.h12{height:53.619506pt;}
.h16{height:53.792101pt;}
.h6{height:54.109705pt;}
.h4{height:56.033355pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w2{width:7.199951pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:148.320007pt;}
.x5{left:155.839996pt;}
.x23{left:161.119995pt;}
.x20{left:165.759995pt;}
.x1c{left:168.160004pt;}
.xa{left:171.839996pt;}
.x2a{left:179.839996pt;}
.x19{left:184.320007pt;}
.x14{left:188.479996pt;}
.x25{left:190.559998pt;}
.xf{left:191.839996pt;}
.x16{left:196.320007pt;}
.x2{left:198.720001pt;}
.x10{left:203.360001pt;}
.x1{left:210.880005pt;}
.x1f{left:216.000000pt;}
.x28{left:246.559998pt;}
.x24{left:256.160004pt;}
.xe{left:259.040009pt;}
.xb{left:263.359985pt;}
.x1b{left:270.079987pt;}
.x29{left:279.679993pt;}
.x18{left:302.079987pt;}
.xd{left:327.519989pt;}
.x11{left:333.600006pt;}
.x3{left:341.119995pt;}
.x1d{left:355.679993pt;}
.x21{left:360.799988pt;}
.x15{left:363.040009pt;}
.x26{left:364.480011pt;}
.x6{left:380.000000pt;}
.xc{left:393.440002pt;}
.x4{left:400.480011pt;}
.x9{left:445.600006pt;}
.x17{left:507.359985pt;}
.x7{left:529.119995pt;}
.x27{left:533.760010pt;}
.x1e{left:535.679993pt;}
.x13{left:539.679993pt;}
.x1a{left:542.080017pt;}
.x22{left:558.880005pt;}
.x8{left:645.280029pt;}
}




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