
    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_54ff0605667000ea3f48350f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_fd0aaa626e1430dc37a66276.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_3af9b97a07209e069349407d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.050293;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_f64c6eb1a8bcecd426c60752.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.120605;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_e07313bd13a3055e64f11c73.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.090820;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_c8f43063c7381202954cc67e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.090820;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_850a0ed9ba4b848b5d26da81.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.050293;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_3045feab11b81cd35c2b1fcb.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.940000px;}
.ls3{letter-spacing:-0.288000px;}
.lsd{letter-spacing:-0.216000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.174000px;}
.ls1{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.504000px;}
.ls5{letter-spacing:0.684000px;}
.lsc{letter-spacing:0.720000px;}
.ls4{letter-spacing:1.440000px;}
.ls11{letter-spacing:2.160000px;}
.ls7{letter-spacing:2.880000px;}
.lsb{letter-spacing:5.040000px;}
.ls10{letter-spacing:14.400000px;}
.lse{letter-spacing:15.120000px;}
.ls6{letter-spacing:15.840000px;}
.lsa{letter-spacing:16.560000px;}
.ls9{letter-spacing:20.160000px;}
.lsf{letter-spacing:46.080000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.784000px;}
.ws2{word-spacing:-17.712000px;}
.ws0{word-spacing:-13.505760px;}
.ws3{word-spacing:0.000000px;}
._19{margin-left:-4.596000px;}
._18{margin-left:-3.384000px;}
._16{margin-left:-2.328000px;}
._2{margin-left:-1.296000px;}
._0{width:1.055520px;}
._7{width:2.064480px;}
._e{width:3.600000px;}
._5{width:5.400000px;}
._6{width:6.480000px;}
._d{width:7.632000px;}
._c{width:8.712000px;}
._1a{width:9.864000px;}
._14{width:11.592000px;}
._15{width:12.600000px;}
._1e{width:13.752000px;}
._1f{width:15.192000px;}
._1c{width:16.992000px;}
._a{width:19.656000px;}
._1d{width:21.168000px;}
._1b{width:22.176000px;}
._9{width:23.976000px;}
._8{width:25.848000px;}
._3{width:27.288000px;}
._26{width:28.296000px;}
._4{width:29.304000px;}
._20{width:30.312000px;}
._21{width:31.440960px;}
._24{width:32.976000px;}
._25{width:34.128000px;}
._27{width:35.208000px;}
._b{width:36.216000px;}
._11{width:37.440480px;}
._29{width:38.808000px;}
._17{width:41.688000px;}
._28{width:42.816960px;}
._2b{width:44.424000px;}
._2a{width:46.080000px;}
._22{width:47.376000px;}
._10{width:51.552000px;}
._f{width:52.632000px;}
._23{width:54.288000px;}
._12{width:77.400000px;}
._13{width:78.552000px;}
._1{width:82.776000px;}
._2c{width:1701.636000px;}
.fc3{color:transparent;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,112,192);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yd{bottom:4.319850px;}
.y8{bottom:4.500000px;}
.y3{bottom:5.400000px;}
.y9{bottom:6.300000px;}
.yf{bottom:12.600000px;}
.y6{bottom:14.400000px;}
.y7{bottom:19.080000px;}
.yc{bottom:20.160000px;}
.y2{bottom:40.140000px;}
.y5{bottom:49.140000px;}
.yd9{bottom:111.960000px;}
.y111{bottom:114.660000px;}
.y67{bottom:118.260000px;}
.y39{bottom:120.060000px;}
.ya8{bottom:120.960000px;}
.y88{bottom:124.560000px;}
.ye3{bottom:127.260000px;}
.ye7{bottom:129.960000px;}
.yd8{bottom:132.660000px;}
.y110{bottom:135.360000px;}
.yc3{bottom:136.260000px;}
.y66{bottom:138.960000px;}
.y38{bottom:140.760000px;}
.y87{bottom:145.260000px;}
.ye2{bottom:147.960000px;}
.ya7{bottom:150.660000px;}
.yd7{bottom:153.360000px;}
.y10f{bottom:156.060000px;}
.yc2{bottom:156.960000px;}
.ye6{bottom:159.660000px;}
.y86{bottom:165.960000px;}
.y65{bottom:168.660000px;}
.y37{bottom:170.460000px;}
.yd6{bottom:174.060000px;}
.yc1{bottom:177.660000px;}
.ya6{bottom:180.360000px;}
.y10e{bottom:185.760000px;}
.y85{bottom:186.660000px;}
.ye5{bottom:189.360000px;}
.y64{bottom:198.390000px;}
.y36{bottom:200.190000px;}
.ya5{bottom:201.090000px;}
.yd5{bottom:203.790000px;}
.y10d{bottom:206.490000px;}
.y84{bottom:207.390000px;}
.y63{bottom:219.090000px;}
.ya4{bottom:221.790000px;}
.y10c{bottom:227.190000px;}
.y35{bottom:229.890000px;}
.yd4{bottom:233.490000px;}
.y83{bottom:237.090000px;}
.y62{bottom:239.790000px;}
.ya3{bottom:242.490000px;}
.y10b{bottom:247.890000px;}
.yc0{bottom:248.790000px;}
.y34{bottom:250.590000px;}
.yd3{bottom:254.190000px;}
.y82{bottom:257.790000px;}
.y61{bottom:260.490000px;}
.ya2{bottom:263.190000px;}
.ybf{bottom:269.490000px;}
.yd2{bottom:274.890000px;}
.y10a{bottom:277.590000px;}
.y81{bottom:278.490000px;}
.y33{bottom:280.290000px;}
.y60{bottom:281.190000px;}
.ybe{bottom:290.190000px;}
.ya1{bottom:292.890000px;}
.y109{bottom:298.290000px;}
.y80{bottom:299.190000px;}
.y32{bottom:300.990000px;}
.y5f{bottom:301.890000px;}
.yd1{bottom:304.590000px;}
.ybd{bottom:310.890000px;}
.ya0{bottom:313.590000px;}
.y108{bottom:318.990000px;}
.y7f{bottom:319.890000px;}
.y31{bottom:321.690000px;}
.y5e{bottom:322.590000px;}
.yd0{bottom:325.290000px;}
.ybc{bottom:331.590000px;}
.y9f{bottom:334.290000px;}
.y7e{bottom:340.590000px;}
.y30{bottom:342.390000px;}
.y5d{bottom:343.290000px;}
.ycf{bottom:345.990000px;}
.y107{bottom:348.690000px;}
.ybb{bottom:352.290000px;}
.y9e{bottom:354.990000px;}
.y2f{bottom:363.090000px;}
.y106{bottom:369.390000px;}
.y7d{bottom:370.290000px;}
.y5c{bottom:372.990000px;}
.y9d{bottom:375.690000px;}
.yba{bottom:381.990000px;}
.y2e{bottom:383.790000px;}
.y105{bottom:390.090000px;}
.y7c{bottom:390.990000px;}
.y5b{bottom:393.690000px;}
.y9c{bottom:396.390000px;}
.yb9{bottom:402.690000px;}
.y7b{bottom:411.690000px;}
.y2d{bottom:413.490000px;}
.y5a{bottom:414.390000px;}
.y9b{bottom:417.090000px;}
.y104{bottom:419.790000px;}
.yb8{bottom:423.390000px;}
.y7a{bottom:432.390000px;}
.y2c{bottom:434.190000px;}
.y59{bottom:435.090000px;}
.y103{bottom:440.535000px;}
.yb7{bottom:444.135000px;}
.y9a{bottom:446.835000px;}
.y79{bottom:453.135000px;}
.y2b{bottom:454.935000px;}
.y58{bottom:455.835000px;}
.y102{bottom:461.235000px;}
.yb6{bottom:464.835000px;}
.yce{bottom:467.535000px;}
.y78{bottom:473.835000px;}
.y2a{bottom:475.635000px;}
.y57{bottom:476.535000px;}
.yb5{bottom:485.535000px;}
.ycd{bottom:488.235000px;}
.y101{bottom:490.935000px;}
.y77{bottom:494.535000px;}
.y29{bottom:496.335000px;}
.y56{bottom:497.235000px;}
.yb4{bottom:506.235000px;}
.y100{bottom:511.635000px;}
.y76{bottom:515.235000px;}
.y28{bottom:517.035000px;}
.y99{bottom:517.935000px;}
.y55{bottom:526.935000px;}
.yff{bottom:532.335000px;}
.y75{bottom:535.935000px;}
.y27{bottom:537.735000px;}
.y98{bottom:538.635000px;}
.y54{bottom:547.635000px;}
.ye1{bottom:556.635000px;}
.ycc{bottom:559.335000px;}
.yfe{bottom:562.035000px;}
.y74{bottom:565.635000px;}
.y26{bottom:567.435000px;}
.y53{bottom:568.335000px;}
.ye0{bottom:577.335000px;}
.ycb{bottom:580.035000px;}
.y11d{bottom:581.835000px;}
.yfd{bottom:582.735000px;}
.yb3{bottom:586.335000px;}
.y25{bottom:588.135000px;}
.y52{bottom:589.035000px;}
.y73{bottom:595.335000px;}
.ydf{bottom:598.035000px;}
.yfc{bottom:603.435000px;}
.yb2{bottom:607.035000px;}
.y24{bottom:608.835000px;}
.y51{bottom:609.735000px;}
.y11c{bottom:611.535000px;}
.y72{bottom:616.035000px;}
.ye{bottom:617.475000px;}
.yde{bottom:618.735000px;}
.yb1{bottom:627.735000px;}
.y23{bottom:629.535000px;}
.y50{bottom:630.435000px;}
.yfb{bottom:633.135000px;}
.y71{bottom:636.735000px;}
.ydd{bottom:639.435000px;}
.y11b{bottom:641.235000px;}
.yb0{bottom:648.435000px;}
.y22{bottom:650.235000px;}
.y4f{bottom:651.135000px;}
.yfa{bottom:653.835000px;}
.y70{bottom:657.435000px;}
.ye4{bottom:660.135000px;}
.yaf{bottom:669.135000px;}
.y21{bottom:670.935000px;}
.y97{bottom:671.835000px;}
.yf9{bottom:674.565000px;}
.y6f{bottom:678.165000px;}
.y4e{bottom:680.865000px;}
.ydc{bottom:689.865000px;}
.y20{bottom:691.665000px;}
.y96{bottom:692.565000px;}
.yf8{bottom:695.265000px;}
.y6e{bottom:698.865000px;}
.y11a{bottom:700.665000px;}
.yca{bottom:701.565000px;}
.y4d{bottom:710.565000px;}
.y1f{bottom:712.365000px;}
.y95{bottom:713.265000px;}
.y6d{bottom:719.565000px;}
.yc9{bottom:722.265000px;}
.yf7{bottom:724.965000px;}
.y119{bottom:730.365000px;}
.ydb{bottom:731.265000px;}
.y4c{bottom:740.265000px;}
.y1e{bottom:742.065000px;}
.y94{bottom:742.965000px;}
.yf6{bottom:745.665000px;}
.y6c{bottom:749.265000px;}
.yc8{bottom:751.965000px;}
.y118{bottom:760.065000px;}
.y4b{bottom:760.965000px;}
.yf5{bottom:766.365000px;}
.y6b{bottom:769.965000px;}
.y1d{bottom:771.765000px;}
.y93{bottom:772.665000px;}
.yae{bottom:781.665000px;}
.y117{bottom:789.765000px;}
.y4a{bottom:790.665000px;}
.y92{bottom:793.365000px;}
.yf4{bottom:796.065000px;}
.y1c{bottom:801.465000px;}
.yad{bottom:802.365000px;}
.y49{bottom:811.365000px;}
.y91{bottom:814.065000px;}
.yf3{bottom:816.765000px;}
.y116{bottom:819.465000px;}
.yda{bottom:823.065000px;}
.y1b{bottom:829.005000px;}
.y48{bottom:832.065000px;}
.y90{bottom:834.765000px;}
.yf2{bottom:837.465000px;}
.yc7{bottom:843.765000px;}
.y115{bottom:849.165000px;}
.y1a{bottom:851.865000px;}
.y47{bottom:852.765000px;}
.y8f{bottom:855.465000px;}
.yc6{bottom:864.465000px;}
.yf1{bottom:867.165000px;}
.y46{bottom:873.465000px;}
.y8e{bottom:876.165000px;}
.y114{bottom:878.865000px;}
.y6a{bottom:882.465000px;}
.yc5{bottom:885.165000px;}
.yf0{bottom:887.865000px;}
.y19{bottom:888.405000px;}
.y45{bottom:894.165000px;}
.y8d{bottom:896.865000px;}
.y69{bottom:903.165000px;}
.yc4{bottom:905.865000px;}
.yef{bottom:908.565000px;}
.y18{bottom:911.265000px;}
.yac{bottom:914.910000px;}
.y44{bottom:923.910000px;}
.y8c{bottom:926.610000px;}
.yab{bottom:935.610000px;}
.yee{bottom:938.310000px;}
.y17{bottom:941.010000px;}
.y43{bottom:944.610000px;}
.y8b{bottom:956.310000px;}
.yed{bottom:959.010000px;}
.y42{bottom:965.310000px;}
.y113{bottom:968.010000px;}
.y16{bottom:970.710000px;}
.yec{bottom:979.710000px;}
.y41{bottom:986.010000px;}
.y15{bottom:991.410000px;}
.y112{bottom:997.710000px;}
.y40{bottom:1006.710000px;}
.yeb{bottom:1009.410000px;}
.y14{bottom:1021.110000px;}
.y3f{bottom:1027.410000px;}
.yea{bottom:1030.110000px;}
.y68{bottom:1036.410000px;}
.y13{bottom:1041.810000px;}
.y8a{bottom:1048.110000px;}
.y3e{bottom:1057.110000px;}
.ye9{bottom:1059.810000px;}
.y89{bottom:1068.810000px;}
.y12{bottom:1071.510000px;}
.y3d{bottom:1077.810000px;}
.ye8{bottom:1080.510000px;}
.yaa{bottom:1089.510000px;}
.y3c{bottom:1098.510000px;}
.y11{bottom:1101.210000px;}
.ya9{bottom:1110.210000px;}
.y3b{bottom:1119.210000px;}
.y10{bottom:1130.910000px;}
.y3a{bottom:1139.910000px;}
.y4{bottom:1191.780000px;}
.y1{bottom:1200.780000px;}
.yb{bottom:1246.320000px;}
.ya{bottom:1261.980000px;}
.h6{height:19.620000px;}
.h8{height:21.420000px;}
.hb{height:28.260000px;}
.hf{height:40.254961px;}
.h9{height:49.868086px;}
.h10{height:52.628906px;}
.h2{height:54.900000px;}
.hd{height:60.082031px;}
.h7{height:61.189805px;}
.hc{height:63.000000px;}
.h4{height:63.900000px;}
.ha{height:65.884219px;}
.he{height:66.150000px;}
.h5{height:67.824844px;}
.h3{height:73.722656px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:75.240000px;}
.w8{width:84.990000px;}
.w5{width:188.130000px;}
.w4{width:192.090000px;}
.w6{width:200.595000px;}
.w2{width:359.175000px;}
.w7{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:1.440000px;}
.xd{left:10.800000px;}
.x5{left:21.780000px;}
.xa{left:31.185000px;}
.x7{left:47.340000px;}
.x3{left:51.120000px;}
.xb{left:106.235987px;}
.xe{left:115.055987px;}
.x10{left:120.815987px;}
.x15{left:124.415987px;}
.xf{left:129.455987px;}
.x13{left:131.075987px;}
.x2{left:161.145000px;}
.x11{left:177.689987px;}
.x1{left:212.430000px;}
.x12{left:284.654987px;}
.x16{left:306.974987px;}
.x14{left:340.274987px;}
.x8{left:420.375000px;}
.x9{left:656.205000px;}
.x4{left:761.010000px;}
.xc{left:807.990000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.280000pt;}
.ls3{letter-spacing:-0.256000pt;}
.lsd{letter-spacing:-0.192000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.154667pt;}
.ls1{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.448000pt;}
.ls5{letter-spacing:0.608000pt;}
.lsc{letter-spacing:0.640000pt;}
.ls4{letter-spacing:1.280000pt;}
.ls11{letter-spacing:1.920000pt;}
.ls7{letter-spacing:2.560000pt;}
.lsb{letter-spacing:4.480000pt;}
.ls10{letter-spacing:12.800000pt;}
.lse{letter-spacing:13.440000pt;}
.ls6{letter-spacing:14.080000pt;}
.lsa{letter-spacing:14.720000pt;}
.ls9{letter-spacing:17.920000pt;}
.lsf{letter-spacing:40.960000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.808000pt;}
.ws2{word-spacing:-15.744000pt;}
.ws0{word-spacing:-12.005120pt;}
.ws3{word-spacing:0.000000pt;}
._19{margin-left:-4.085333pt;}
._18{margin-left:-3.008000pt;}
._16{margin-left:-2.069333pt;}
._2{margin-left:-1.152000pt;}
._0{width:0.938240pt;}
._7{width:1.835093pt;}
._e{width:3.200000pt;}
._5{width:4.800000pt;}
._6{width:5.760000pt;}
._d{width:6.784000pt;}
._c{width:7.744000pt;}
._1a{width:8.768000pt;}
._14{width:10.304000pt;}
._15{width:11.200000pt;}
._1e{width:12.224000pt;}
._1f{width:13.504000pt;}
._1c{width:15.104000pt;}
._a{width:17.472000pt;}
._1d{width:18.816000pt;}
._1b{width:19.712000pt;}
._9{width:21.312000pt;}
._8{width:22.976000pt;}
._3{width:24.256000pt;}
._26{width:25.152000pt;}
._4{width:26.048000pt;}
._20{width:26.944000pt;}
._21{width:27.947520pt;}
._24{width:29.312000pt;}
._25{width:30.336000pt;}
._27{width:31.296000pt;}
._b{width:32.192000pt;}
._11{width:33.280427pt;}
._29{width:34.496000pt;}
._17{width:37.056000pt;}
._28{width:38.059520pt;}
._2b{width:39.488000pt;}
._2a{width:40.960000pt;}
._22{width:42.112000pt;}
._10{width:45.824000pt;}
._f{width:46.784000pt;}
._23{width:48.256000pt;}
._12{width:68.800000pt;}
._13{width:69.824000pt;}
._1{width:73.578667pt;}
._2c{width:1512.565333pt;}
.fs3{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:3.839867pt;}
.y8{bottom:4.000000pt;}
.y3{bottom:4.800000pt;}
.y9{bottom:5.600000pt;}
.yf{bottom:11.200000pt;}
.y6{bottom:12.800000pt;}
.y7{bottom:16.960000pt;}
.yc{bottom:17.920000pt;}
.y2{bottom:35.680000pt;}
.y5{bottom:43.680000pt;}
.yd9{bottom:99.520000pt;}
.y111{bottom:101.920000pt;}
.y67{bottom:105.120000pt;}
.y39{bottom:106.720000pt;}
.ya8{bottom:107.520000pt;}
.y88{bottom:110.720000pt;}
.ye3{bottom:113.120000pt;}
.ye7{bottom:115.520000pt;}
.yd8{bottom:117.920000pt;}
.y110{bottom:120.320000pt;}
.yc3{bottom:121.120000pt;}
.y66{bottom:123.520000pt;}
.y38{bottom:125.120000pt;}
.y87{bottom:129.120000pt;}
.ye2{bottom:131.520000pt;}
.ya7{bottom:133.920000pt;}
.yd7{bottom:136.320000pt;}
.y10f{bottom:138.720000pt;}
.yc2{bottom:139.520000pt;}
.ye6{bottom:141.920000pt;}
.y86{bottom:147.520000pt;}
.y65{bottom:149.920000pt;}
.y37{bottom:151.520000pt;}
.yd6{bottom:154.720000pt;}
.yc1{bottom:157.920000pt;}
.ya6{bottom:160.320000pt;}
.y10e{bottom:165.120000pt;}
.y85{bottom:165.920000pt;}
.ye5{bottom:168.320000pt;}
.y64{bottom:176.346667pt;}
.y36{bottom:177.946667pt;}
.ya5{bottom:178.746667pt;}
.yd5{bottom:181.146667pt;}
.y10d{bottom:183.546667pt;}
.y84{bottom:184.346667pt;}
.y63{bottom:194.746667pt;}
.ya4{bottom:197.146667pt;}
.y10c{bottom:201.946667pt;}
.y35{bottom:204.346667pt;}
.yd4{bottom:207.546667pt;}
.y83{bottom:210.746667pt;}
.y62{bottom:213.146667pt;}
.ya3{bottom:215.546667pt;}
.y10b{bottom:220.346667pt;}
.yc0{bottom:221.146667pt;}
.y34{bottom:222.746667pt;}
.yd3{bottom:225.946667pt;}
.y82{bottom:229.146667pt;}
.y61{bottom:231.546667pt;}
.ya2{bottom:233.946667pt;}
.ybf{bottom:239.546667pt;}
.yd2{bottom:244.346667pt;}
.y10a{bottom:246.746667pt;}
.y81{bottom:247.546667pt;}
.y33{bottom:249.146667pt;}
.y60{bottom:249.946667pt;}
.ybe{bottom:257.946667pt;}
.ya1{bottom:260.346667pt;}
.y109{bottom:265.146667pt;}
.y80{bottom:265.946667pt;}
.y32{bottom:267.546667pt;}
.y5f{bottom:268.346667pt;}
.yd1{bottom:270.746667pt;}
.ybd{bottom:276.346667pt;}
.ya0{bottom:278.746667pt;}
.y108{bottom:283.546667pt;}
.y7f{bottom:284.346667pt;}
.y31{bottom:285.946667pt;}
.y5e{bottom:286.746667pt;}
.yd0{bottom:289.146667pt;}
.ybc{bottom:294.746667pt;}
.y9f{bottom:297.146667pt;}
.y7e{bottom:302.746667pt;}
.y30{bottom:304.346667pt;}
.y5d{bottom:305.146667pt;}
.ycf{bottom:307.546667pt;}
.y107{bottom:309.946667pt;}
.ybb{bottom:313.146667pt;}
.y9e{bottom:315.546667pt;}
.y2f{bottom:322.746667pt;}
.y106{bottom:328.346667pt;}
.y7d{bottom:329.146667pt;}
.y5c{bottom:331.546667pt;}
.y9d{bottom:333.946667pt;}
.yba{bottom:339.546667pt;}
.y2e{bottom:341.146667pt;}
.y105{bottom:346.746667pt;}
.y7c{bottom:347.546667pt;}
.y5b{bottom:349.946667pt;}
.y9c{bottom:352.346667pt;}
.yb9{bottom:357.946667pt;}
.y7b{bottom:365.946667pt;}
.y2d{bottom:367.546667pt;}
.y5a{bottom:368.346667pt;}
.y9b{bottom:370.746667pt;}
.y104{bottom:373.146667pt;}
.yb8{bottom:376.346667pt;}
.y7a{bottom:384.346667pt;}
.y2c{bottom:385.946667pt;}
.y59{bottom:386.746667pt;}
.y103{bottom:391.586667pt;}
.yb7{bottom:394.786667pt;}
.y9a{bottom:397.186667pt;}
.y79{bottom:402.786667pt;}
.y2b{bottom:404.386667pt;}
.y58{bottom:405.186667pt;}
.y102{bottom:409.986667pt;}
.yb6{bottom:413.186667pt;}
.yce{bottom:415.586667pt;}
.y78{bottom:421.186667pt;}
.y2a{bottom:422.786667pt;}
.y57{bottom:423.586667pt;}
.yb5{bottom:431.586667pt;}
.ycd{bottom:433.986667pt;}
.y101{bottom:436.386667pt;}
.y77{bottom:439.586667pt;}
.y29{bottom:441.186667pt;}
.y56{bottom:441.986667pt;}
.yb4{bottom:449.986667pt;}
.y100{bottom:454.786667pt;}
.y76{bottom:457.986667pt;}
.y28{bottom:459.586667pt;}
.y99{bottom:460.386667pt;}
.y55{bottom:468.386667pt;}
.yff{bottom:473.186667pt;}
.y75{bottom:476.386667pt;}
.y27{bottom:477.986667pt;}
.y98{bottom:478.786667pt;}
.y54{bottom:486.786667pt;}
.ye1{bottom:494.786667pt;}
.ycc{bottom:497.186667pt;}
.yfe{bottom:499.586667pt;}
.y74{bottom:502.786667pt;}
.y26{bottom:504.386667pt;}
.y53{bottom:505.186667pt;}
.ye0{bottom:513.186667pt;}
.ycb{bottom:515.586667pt;}
.y11d{bottom:517.186667pt;}
.yfd{bottom:517.986667pt;}
.yb3{bottom:521.186667pt;}
.y25{bottom:522.786667pt;}
.y52{bottom:523.586667pt;}
.y73{bottom:529.186667pt;}
.ydf{bottom:531.586667pt;}
.yfc{bottom:536.386667pt;}
.yb2{bottom:539.586667pt;}
.y24{bottom:541.186667pt;}
.y51{bottom:541.986667pt;}
.y11c{bottom:543.586667pt;}
.y72{bottom:547.586667pt;}
.ye{bottom:548.866667pt;}
.yde{bottom:549.986667pt;}
.yb1{bottom:557.986667pt;}
.y23{bottom:559.586667pt;}
.y50{bottom:560.386667pt;}
.yfb{bottom:562.786667pt;}
.y71{bottom:565.986667pt;}
.ydd{bottom:568.386667pt;}
.y11b{bottom:569.986667pt;}
.yb0{bottom:576.386667pt;}
.y22{bottom:577.986667pt;}
.y4f{bottom:578.786667pt;}
.yfa{bottom:581.186667pt;}
.y70{bottom:584.386667pt;}
.ye4{bottom:586.786667pt;}
.yaf{bottom:594.786667pt;}
.y21{bottom:596.386667pt;}
.y97{bottom:597.186667pt;}
.yf9{bottom:599.613333pt;}
.y6f{bottom:602.813333pt;}
.y4e{bottom:605.213333pt;}
.ydc{bottom:613.213333pt;}
.y20{bottom:614.813333pt;}
.y96{bottom:615.613333pt;}
.yf8{bottom:618.013333pt;}
.y6e{bottom:621.213333pt;}
.y11a{bottom:622.813333pt;}
.yca{bottom:623.613333pt;}
.y4d{bottom:631.613333pt;}
.y1f{bottom:633.213333pt;}
.y95{bottom:634.013333pt;}
.y6d{bottom:639.613333pt;}
.yc9{bottom:642.013333pt;}
.yf7{bottom:644.413333pt;}
.y119{bottom:649.213333pt;}
.ydb{bottom:650.013333pt;}
.y4c{bottom:658.013333pt;}
.y1e{bottom:659.613333pt;}
.y94{bottom:660.413333pt;}
.yf6{bottom:662.813333pt;}
.y6c{bottom:666.013333pt;}
.yc8{bottom:668.413333pt;}
.y118{bottom:675.613333pt;}
.y4b{bottom:676.413333pt;}
.yf5{bottom:681.213333pt;}
.y6b{bottom:684.413333pt;}
.y1d{bottom:686.013333pt;}
.y93{bottom:686.813333pt;}
.yae{bottom:694.813333pt;}
.y117{bottom:702.013333pt;}
.y4a{bottom:702.813333pt;}
.y92{bottom:705.213333pt;}
.yf4{bottom:707.613333pt;}
.y1c{bottom:712.413333pt;}
.yad{bottom:713.213333pt;}
.y49{bottom:721.213333pt;}
.y91{bottom:723.613333pt;}
.yf3{bottom:726.013333pt;}
.y116{bottom:728.413333pt;}
.yda{bottom:731.613333pt;}
.y1b{bottom:736.893333pt;}
.y48{bottom:739.613333pt;}
.y90{bottom:742.013333pt;}
.yf2{bottom:744.413333pt;}
.yc7{bottom:750.013333pt;}
.y115{bottom:754.813333pt;}
.y1a{bottom:757.213333pt;}
.y47{bottom:758.013333pt;}
.y8f{bottom:760.413333pt;}
.yc6{bottom:768.413333pt;}
.yf1{bottom:770.813333pt;}
.y46{bottom:776.413333pt;}
.y8e{bottom:778.813333pt;}
.y114{bottom:781.213333pt;}
.y6a{bottom:784.413333pt;}
.yc5{bottom:786.813333pt;}
.yf0{bottom:789.213333pt;}
.y19{bottom:789.693333pt;}
.y45{bottom:794.813333pt;}
.y8d{bottom:797.213333pt;}
.y69{bottom:802.813333pt;}
.yc4{bottom:805.213333pt;}
.yef{bottom:807.613333pt;}
.y18{bottom:810.013333pt;}
.yac{bottom:813.253333pt;}
.y44{bottom:821.253333pt;}
.y8c{bottom:823.653333pt;}
.yab{bottom:831.653333pt;}
.yee{bottom:834.053333pt;}
.y17{bottom:836.453333pt;}
.y43{bottom:839.653333pt;}
.y8b{bottom:850.053333pt;}
.yed{bottom:852.453333pt;}
.y42{bottom:858.053333pt;}
.y113{bottom:860.453333pt;}
.y16{bottom:862.853333pt;}
.yec{bottom:870.853333pt;}
.y41{bottom:876.453333pt;}
.y15{bottom:881.253333pt;}
.y112{bottom:886.853333pt;}
.y40{bottom:894.853333pt;}
.yeb{bottom:897.253333pt;}
.y14{bottom:907.653333pt;}
.y3f{bottom:913.253333pt;}
.yea{bottom:915.653333pt;}
.y68{bottom:921.253333pt;}
.y13{bottom:926.053333pt;}
.y8a{bottom:931.653333pt;}
.y3e{bottom:939.653333pt;}
.ye9{bottom:942.053333pt;}
.y89{bottom:950.053333pt;}
.y12{bottom:952.453333pt;}
.y3d{bottom:958.053333pt;}
.ye8{bottom:960.453333pt;}
.yaa{bottom:968.453333pt;}
.y3c{bottom:976.453333pt;}
.y11{bottom:978.853333pt;}
.ya9{bottom:986.853333pt;}
.y3b{bottom:994.853333pt;}
.y10{bottom:1005.253333pt;}
.y3a{bottom:1013.253333pt;}
.y4{bottom:1059.360000pt;}
.y1{bottom:1067.360000pt;}
.yb{bottom:1107.840000pt;}
.ya{bottom:1121.760000pt;}
.h6{height:17.440000pt;}
.h8{height:19.040000pt;}
.hb{height:25.120000pt;}
.hf{height:35.782187pt;}
.h9{height:44.327188pt;}
.h10{height:46.781250pt;}
.h2{height:48.800000pt;}
.hd{height:53.406250pt;}
.h7{height:54.390938pt;}
.hc{height:56.000000pt;}
.h4{height:56.800000pt;}
.ha{height:58.563750pt;}
.he{height:58.800000pt;}
.h5{height:60.288750pt;}
.h3{height:65.531250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.880000pt;}
.w8{width:75.546667pt;}
.w5{width:167.226667pt;}
.w4{width:170.746667pt;}
.w6{width:178.306667pt;}
.w2{width:319.266667pt;}
.w7{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:1.280000pt;}
.xd{left:9.600000pt;}
.x5{left:19.360000pt;}
.xa{left:27.720000pt;}
.x7{left:42.080000pt;}
.x3{left:45.440000pt;}
.xb{left:94.431988pt;}
.xe{left:102.271988pt;}
.x10{left:107.391988pt;}
.x15{left:110.591988pt;}
.xf{left:115.071988pt;}
.x13{left:116.511988pt;}
.x2{left:143.240000pt;}
.x11{left:157.946655pt;}
.x1{left:188.826667pt;}
.x12{left:253.026655pt;}
.x16{left:272.866655pt;}
.x14{left:302.466655pt;}
.x8{left:373.666667pt;}
.x9{left:583.293333pt;}
.x4{left:676.453333pt;}
.xc{left:718.213333pt;}
}




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