
    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_d04410062f89c13533f79572.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_9e8e503001a6b1332619d39d.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_900930db3fefbfb2315799b1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.775879;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_da56c13f8aecbd5368b2daf8.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_fc2c68e3059631a9824069f6.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_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_e7e54a5dbc6ec71ffe2c28cc.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_feac133cb9c2b6af963529b6.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_c5df9839560198850dc124f5.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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:ffa;src:url('chunks/assets/font_c4cbb7918f910bff385fc18e.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-69.120000px;}
.v2{vertical-align:-65.520000px;}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-0.612000px;}
.ls5{letter-spacing:-0.058320px;}
.ls7{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.360000px;}
.lsa{letter-spacing:2.106720px;}
.lsc{letter-spacing:2.340000px;}
.lsd{letter-spacing:8.100000px;}
.lse{letter-spacing:21.060000px;}
.ls8{letter-spacing:31.602720px;}
.ls9{letter-spacing:31.626720px;}
.lsb{letter-spacing:434.340000px;}
.ls0{letter-spacing:1732.794240px;}
.ls1{letter-spacing:2162.796000px;}
.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:-15.300000px;}
.ws2{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.886720px;}
.ws0{word-spacing:-13.447440px;}
.ws3{word-spacing:0.000000px;}
._12{margin-left:-9.026640px;}
._14{margin-left:-3.585600px;}
._6{margin-left:-2.211120px;}
._2{margin-left:-1.015920px;}
._0{width:1.075680px;}
._1{width:2.503920px;}
._5{width:3.944160px;}
._4{width:5.139360px;}
._d{width:6.394320px;}
._9{width:7.768800px;}
._3{width:8.904240px;}
._e{width:10.338480px;}
._c{width:12.071520px;}
._b{width:13.505760px;}
._16{width:16.613280px;}
._15{width:17.808480px;}
._8{width:19.242720px;}
._7{width:20.269200px;}
._1a{width:21.362400px;}
._1c{width:22.410000px;}
._25{width:23.484960px;}
._a{width:25.577280px;}
._19{width:26.622000px;}
._1d{width:28.625040px;}
._17{width:30.178800px;}
._11{width:31.672800px;}
._10{width:33.465600px;}
._26{width:34.541280px;}
._f{width:35.557200px;}
._28{width:36.857520px;}
._24{width:37.948320px;}
._23{width:39.082320px;}
._21{width:40.935600px;}
._20{width:42.071040px;}
._1e{width:62.209440px;}
._1f{width:63.285840px;}
._1b{width:66.990960px;}
._18{width:85.709520px;}
._27{width:86.831280px;}
._22{width:100.217520px;}
._29{width:849.216000px;}
._13{width:1732.050240px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:59.760000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y6e{bottom:3.240000px;}
.y8b{bottom:20.340000px;}
.y85{bottom:20.370000px;}
.y87{bottom:20.520000px;}
.y82{bottom:87.480000px;}
.yb9{bottom:91.260000px;}
.yf7{bottom:104.760000px;}
.y81{bottom:105.480000px;}
.yb8{bottom:108.540000px;}
.y40{bottom:117.180000px;}
.yf6{bottom:122.040000px;}
.y80{bottom:123.480000px;}
.yb7{bottom:125.820000px;}
.y3f{bottom:133.560000px;}
.yf5{bottom:139.356000px;}
.y7f{bottom:141.516000px;}
.yb6{bottom:143.136000px;}
.y3e{bottom:149.976000px;}
.yf4{bottom:156.630000px;}
.y7e{bottom:159.510000px;}
.yb5{bottom:160.410000px;}
.y3d{bottom:166.350000px;}
.yf3{bottom:173.910000px;}
.y7d{bottom:177.510000px;}
.y3c{bottom:182.730000px;}
.yf2{bottom:191.010000px;}
.yb4{bottom:194.790000px;}
.y7c{bottom:195.510000px;}
.y3b{bottom:199.110000px;}
.yf1{bottom:208.290000px;}
.yb3{bottom:212.070000px;}
.y7b{bottom:213.510000px;}
.y3a{bottom:215.490000px;}
.yf0{bottom:225.570000px;}
.yb2{bottom:229.350000px;}
.y7a{bottom:231.510000px;}
.y39{bottom:231.870000px;}
.yef{bottom:242.850000px;}
.yb1{bottom:246.630000px;}
.y38{bottom:248.250000px;}
.y79{bottom:249.510000px;}
.yee{bottom:260.130000px;}
.yb0{bottom:263.910000px;}
.y37{bottom:264.630000px;}
.y78{bottom:267.510000px;}
.yed{bottom:277.410000px;}
.y36{bottom:281.010000px;}
.y77{bottom:285.510000px;}
.yec{bottom:294.510000px;}
.y35{bottom:297.390000px;}
.yaf{bottom:298.290000px;}
.y76{bottom:303.510000px;}
.yeb{bottom:311.790000px;}
.y34{bottom:313.770000px;}
.yae{bottom:315.570000px;}
.y75{bottom:321.510000px;}
.yea{bottom:329.070000px;}
.y33{bottom:330.150000px;}
.yad{bottom:332.850000px;}
.y74{bottom:339.510000px;}
.ye9{bottom:346.350000px;}
.y32{bottom:346.530000px;}
.yac{bottom:350.130000px;}
.y73{bottom:357.510000px;}
.y31{bottom:362.910000px;}
.ye8{bottom:363.630000px;}
.yab{bottom:367.230000px;}
.y72{bottom:375.510000px;}
.y30{bottom:379.290000px;}
.ye7{bottom:380.730000px;}
.yaa{bottom:384.510000px;}
.y71{bottom:393.555000px;}
.y2f{bottom:395.715000px;}
.ye6{bottom:398.055000px;}
.ya9{bottom:401.835000px;}
.y70{bottom:411.555000px;}
.y2e{bottom:412.095000px;}
.ye5{bottom:415.335000px;}
.ya8{bottom:419.115000px;}
.y2d{bottom:428.475000px;}
.y6f{bottom:429.555000px;}
.ye4{bottom:432.615000px;}
.ya7{bottom:436.395000px;}
.y2c{bottom:444.855000px;}
.y6d{bottom:447.555000px;}
.ye3{bottom:449.895000px;}
.ya6{bottom:453.675000px;}
.y2b{bottom:461.235000px;}
.ye2{bottom:467.175000px;}
.y6c{bottom:468.795000px;}
.ya5{bottom:470.775000px;}
.y2a{bottom:477.615000px;}
.ye1{bottom:484.275000px;}
.y6b{bottom:486.075000px;}
.ya4{bottom:488.055000px;}
.y29{bottom:493.995000px;}
.ye0{bottom:501.555000px;}
.y6a{bottom:503.175000px;}
.ya3{bottom:505.335000px;}
.y28{bottom:510.555000px;}
.ydf{bottom:518.835000px;}
.y69{bottom:519.555000px;}
.ya2{bottom:522.615000px;}
.y27{bottom:526.935000px;}
.y68{bottom:535.935000px;}
.yde{bottom:536.115000px;}
.ya1{bottom:539.895000px;}
.y26{bottom:543.315000px;}
.y67{bottom:552.315000px;}
.ydd{bottom:553.395000px;}
.ya0{bottom:557.175000px;}
.y25{bottom:559.695000px;}
.y66{bottom:568.695000px;}
.ydc{bottom:570.675000px;}
.y9f{bottom:574.275000px;}
.y24{bottom:576.075000px;}
.y65{bottom:585.075000px;}
.ydb{bottom:587.775000px;}
.y9e{bottom:591.555000px;}
.y23{bottom:592.455000px;}
.y64{bottom:601.455000px;}
.yda{bottom:605.055000px;}
.y22{bottom:608.835000px;}
.y63{bottom:617.835000px;}
.yd9{bottom:622.335000px;}
.y21{bottom:625.215000px;}
.y9d{bottom:626.115000px;}
.y62{bottom:634.215000px;}
.yd8{bottom:639.615000px;}
.y20{bottom:641.625000px;}
.y9c{bottom:643.425000px;}
.y61{bottom:650.625000px;}
.yd7{bottom:656.925000px;}
.y1f{bottom:658.005000px;}
.y9b{bottom:660.525000px;}
.y60{bottom:667.005000px;}
.yd6{bottom:674.025000px;}
.y1e{bottom:674.385000px;}
.y9a{bottom:677.805000px;}
.y5f{bottom:683.385000px;}
.y1d{bottom:690.765000px;}
.yd5{bottom:691.305000px;}
.y99{bottom:695.085000px;}
.y5e{bottom:699.765000px;}
.y1c{bottom:707.145000px;}
.yd4{bottom:708.585000px;}
.y98{bottom:712.365000px;}
.y5d{bottom:716.145000px;}
.y1b{bottom:723.525000px;}
.yd3{bottom:725.865000px;}
.y5c{bottom:732.525000px;}
.y1a{bottom:739.905000px;}
.yd2{bottom:743.145000px;}
.y97{bottom:744.405000px;}
.y5b{bottom:748.905000px;}
.y19{bottom:756.285000px;}
.yd1{bottom:760.425000px;}
.y96{bottom:762.405000px;}
.y5a{bottom:765.285000px;}
.y18{bottom:772.665000px;}
.yd0{bottom:777.525000px;}
.y95{bottom:780.405000px;}
.y59{bottom:781.665000px;}
.y17{bottom:789.045000px;}
.ycf{bottom:794.805000px;}
.y58{bottom:798.045000px;}
.y94{bottom:798.405000px;}
.y16{bottom:805.425000px;}
.yce{bottom:812.085000px;}
.y57{bottom:814.605000px;}
.y93{bottom:816.405000px;}
.y15{bottom:821.805000px;}
.ycd{bottom:829.365000px;}
.y56{bottom:830.985000px;}
.y92{bottom:834.405000px;}
.y14{bottom:838.185000px;}
.ycc{bottom:846.645000px;}
.y55{bottom:847.365000px;}
.y91{bottom:852.405000px;}
.y13{bottom:854.565000px;}
.y54{bottom:863.745000px;}
.ycb{bottom:863.925000px;}
.y90{bottom:870.405000px;}
.y12{bottom:870.945000px;}
.y53{bottom:880.125000px;}
.yca{bottom:881.025000px;}
.y11{bottom:887.325000px;}
.y8f{bottom:888.405000px;}
.y52{bottom:896.550000px;}
.yc9{bottom:898.350000px;}
.y10{bottom:903.750000px;}
.y8e{bottom:909.690000px;}
.y51{bottom:912.930000px;}
.yc8{bottom:915.630000px;}
.yf{bottom:920.130000px;}
.y8d{bottom:926.970000px;}
.y50{bottom:929.310000px;}
.yc7{bottom:932.910000px;}
.ye{bottom:936.690000px;}
.y8c{bottom:941.730000px;}
.y4f{bottom:945.690000px;}
.yc6{bottom:950.190000px;}
.yd{bottom:953.970000px;}
.y8a{bottom:959.730000px;}
.y4e{bottom:962.070000px;}
.yc5{bottom:967.470000px;}
.yc{bottom:971.250000px;}
.y4d{bottom:978.450000px;}
.yc4{bottom:984.570000px;}
.yb{bottom:988.530000px;}
.y4c{bottom:994.830000px;}
.yc3{bottom:1001.850000px;}
.ya{bottom:1005.810000px;}
.y4b{bottom:1011.210000px;}
.yc2{bottom:1019.130000px;}
.y9{bottom:1023.090000px;}
.y4a{bottom:1027.590000px;}
.y89{bottom:1030.110000px;}
.yc1{bottom:1036.410000px;}
.y8{bottom:1040.190000px;}
.y49{bottom:1043.970000px;}
.yc0{bottom:1053.690000px;}
.y7{bottom:1057.470000px;}
.y48{bottom:1060.350000px;}
.y88{bottom:1065.390000px;}
.ybf{bottom:1070.790000px;}
.y6{bottom:1074.750000px;}
.y47{bottom:1076.730000px;}
.ybe{bottom:1088.070000px;}
.y46{bottom:1093.110000px;}
.y86{bottom:1100.670000px;}
.ybd{bottom:1105.350000px;}
.y5{bottom:1109.310000px;}
.y45{bottom:1109.490000px;}
.ybc{bottom:1122.630000px;}
.y44{bottom:1125.870000px;}
.y4{bottom:1126.410000px;}
.y84{bottom:1135.950000px;}
.ybb{bottom:1139.910000px;}
.y43{bottom:1142.250000px;}
.y3{bottom:1143.690000px;}
.yba{bottom:1157.220000px;}
.y42{bottom:1158.660000px;}
.y2{bottom:1163.880000px;}
.y83{bottom:1174.320000px;}
.y41{bottom:1175.040000px;}
.y1{bottom:1195.560000px;}
.he{height:17.100000px;}
.h9{height:17.280000px;}
.ha{height:17.316000px;}
.hc{height:34.380000px;}
.hb{height:34.416000px;}
.hd{height:34.560000px;}
.h8{height:53.573906px;}
.h6{height:58.621992px;}
.h5{height:58.651172px;}
.h2{height:59.439023px;}
.h4{height:60.226875px;}
.hf{height:61.423863px;}
.h7{height:62.211094px;}
.h3{height:81.949219px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:114.840000px;}
.w7{width:195.150000px;}
.w4{width:204.690000px;}
.w5{width:226.650000px;}
.w3{width:246.090000px;}
.wa{width:293.610000px;}
.w6{width:367.275000px;}
.w9{width:384.375000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x23{left:7.740000px;}
.x12{left:40.320000px;}
.x14{left:43.920000px;}
.x15{left:46.974000px;}
.x20{left:57.234000px;}
.x18{left:72.354000px;}
.x29{left:77.220000px;}
.x21{left:83.694000px;}
.x1c{left:85.314000px;}
.x26{left:90.000000px;}
.x22{left:91.110000px;}
.x1f{left:92.514000px;}
.x16{left:94.890000px;}
.x10{left:95.934000px;}
.x1d{left:97.194000px;}
.x1a{left:98.490000px;}
.x17{left:100.125000px;}
.x1e{left:102.594000px;}
.x19{left:103.905000px;}
.x1{left:106.415987px;}
.x1b{left:109.254000px;}
.x5{left:136.115987px;}
.x27{left:164.379000px;}
.x4{left:168.509987px;}
.x2{left:328.754987px;}
.x11{left:353.955000px;}
.xf{left:446.504987px;}
.xe{left:457.304987px;}
.x3{left:461.444987px;}
.x24{left:475.305000px;}
.xd{left:487.004987px;}
.x28{left:492.405000px;}
.xb{left:537.944987px;}
.x13{left:559.365000px;}
.x6{left:562.964987px;}
.xa{left:630.149987px;}
.x8{left:666.689987px;}
.x25{left:671.190000px;}
.x7{left:674.609987px;}
.x9{left:692.249987px;}
.xc{left:786.749987px;}
@media print{
.v1{vertical-align:-61.440000pt;}
.v2{vertical-align:-58.240000pt;}
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.544000pt;}
.ls5{letter-spacing:-0.051840pt;}
.ls7{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.320000pt;}
.lsa{letter-spacing:1.872640pt;}
.lsc{letter-spacing:2.080000pt;}
.lsd{letter-spacing:7.200000pt;}
.lse{letter-spacing:18.720000pt;}
.ls8{letter-spacing:28.091307pt;}
.ls9{letter-spacing:28.112640pt;}
.lsb{letter-spacing:386.080000pt;}
.ls0{letter-spacing:1540.261547pt;}
.ls1{letter-spacing:1922.485333pt;}
.ws1{word-spacing:-13.600000pt;}
.ws2{word-spacing:-13.280000pt;}
.ws4{word-spacing:-13.232640pt;}
.ws0{word-spacing:-11.953280pt;}
.ws3{word-spacing:0.000000pt;}
._12{margin-left:-8.023680pt;}
._14{margin-left:-3.187200pt;}
._6{margin-left:-1.965440pt;}
._2{margin-left:-0.903040pt;}
._0{width:0.956160pt;}
._1{width:2.225707pt;}
._5{width:3.505920pt;}
._4{width:4.568320pt;}
._d{width:5.683840pt;}
._9{width:6.905600pt;}
._3{width:7.914880pt;}
._e{width:9.189760pt;}
._c{width:10.730240pt;}
._b{width:12.005120pt;}
._16{width:14.767360pt;}
._15{width:15.829760pt;}
._8{width:17.104640pt;}
._7{width:18.017067pt;}
._1a{width:18.988800pt;}
._1c{width:19.920000pt;}
._25{width:20.875520pt;}
._a{width:22.735360pt;}
._19{width:23.664000pt;}
._1d{width:25.444480pt;}
._17{width:26.825600pt;}
._11{width:28.153600pt;}
._10{width:29.747200pt;}
._26{width:30.703360pt;}
._f{width:31.606400pt;}
._28{width:32.762240pt;}
._24{width:33.731840pt;}
._23{width:34.739840pt;}
._21{width:36.387200pt;}
._20{width:37.396480pt;}
._1e{width:55.297280pt;}
._1f{width:56.254080pt;}
._1b{width:59.547520pt;}
._18{width:76.186240pt;}
._27{width:77.183360pt;}
._22{width:89.082240pt;}
._29{width:754.858667pt;}
._13{width:1539.600213pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y6e{bottom:2.880000pt;}
.y8b{bottom:18.080000pt;}
.y85{bottom:18.106667pt;}
.y87{bottom:18.240000pt;}
.y82{bottom:77.760000pt;}
.yb9{bottom:81.120000pt;}
.yf7{bottom:93.120000pt;}
.y81{bottom:93.760000pt;}
.yb8{bottom:96.480000pt;}
.y40{bottom:104.160000pt;}
.yf6{bottom:108.480000pt;}
.y80{bottom:109.760000pt;}
.yb7{bottom:111.840000pt;}
.y3f{bottom:118.720000pt;}
.yf5{bottom:123.872000pt;}
.y7f{bottom:125.792000pt;}
.yb6{bottom:127.232000pt;}
.y3e{bottom:133.312000pt;}
.yf4{bottom:139.226667pt;}
.y7e{bottom:141.786667pt;}
.yb5{bottom:142.586667pt;}
.y3d{bottom:147.866667pt;}
.yf3{bottom:154.586667pt;}
.y7d{bottom:157.786667pt;}
.y3c{bottom:162.426667pt;}
.yf2{bottom:169.786667pt;}
.yb4{bottom:173.146667pt;}
.y7c{bottom:173.786667pt;}
.y3b{bottom:176.986667pt;}
.yf1{bottom:185.146667pt;}
.yb3{bottom:188.506667pt;}
.y7b{bottom:189.786667pt;}
.y3a{bottom:191.546667pt;}
.yf0{bottom:200.506667pt;}
.yb2{bottom:203.866667pt;}
.y7a{bottom:205.786667pt;}
.y39{bottom:206.106667pt;}
.yef{bottom:215.866667pt;}
.yb1{bottom:219.226667pt;}
.y38{bottom:220.666667pt;}
.y79{bottom:221.786667pt;}
.yee{bottom:231.226667pt;}
.yb0{bottom:234.586667pt;}
.y37{bottom:235.226667pt;}
.y78{bottom:237.786667pt;}
.yed{bottom:246.586667pt;}
.y36{bottom:249.786667pt;}
.y77{bottom:253.786667pt;}
.yec{bottom:261.786667pt;}
.y35{bottom:264.346667pt;}
.yaf{bottom:265.146667pt;}
.y76{bottom:269.786667pt;}
.yeb{bottom:277.146667pt;}
.y34{bottom:278.906667pt;}
.yae{bottom:280.506667pt;}
.y75{bottom:285.786667pt;}
.yea{bottom:292.506667pt;}
.y33{bottom:293.466667pt;}
.yad{bottom:295.866667pt;}
.y74{bottom:301.786667pt;}
.ye9{bottom:307.866667pt;}
.y32{bottom:308.026667pt;}
.yac{bottom:311.226667pt;}
.y73{bottom:317.786667pt;}
.y31{bottom:322.586667pt;}
.ye8{bottom:323.226667pt;}
.yab{bottom:326.426667pt;}
.y72{bottom:333.786667pt;}
.y30{bottom:337.146667pt;}
.ye7{bottom:338.426667pt;}
.yaa{bottom:341.786667pt;}
.y71{bottom:349.826667pt;}
.y2f{bottom:351.746667pt;}
.ye6{bottom:353.826667pt;}
.ya9{bottom:357.186667pt;}
.y70{bottom:365.826667pt;}
.y2e{bottom:366.306667pt;}
.ye5{bottom:369.186667pt;}
.ya8{bottom:372.546667pt;}
.y2d{bottom:380.866667pt;}
.y6f{bottom:381.826667pt;}
.ye4{bottom:384.546667pt;}
.ya7{bottom:387.906667pt;}
.y2c{bottom:395.426667pt;}
.y6d{bottom:397.826667pt;}
.ye3{bottom:399.906667pt;}
.ya6{bottom:403.266667pt;}
.y2b{bottom:409.986667pt;}
.ye2{bottom:415.266667pt;}
.y6c{bottom:416.706667pt;}
.ya5{bottom:418.466667pt;}
.y2a{bottom:424.546667pt;}
.ye1{bottom:430.466667pt;}
.y6b{bottom:432.066667pt;}
.ya4{bottom:433.826667pt;}
.y29{bottom:439.106667pt;}
.ye0{bottom:445.826667pt;}
.y6a{bottom:447.266667pt;}
.ya3{bottom:449.186667pt;}
.y28{bottom:453.826667pt;}
.ydf{bottom:461.186667pt;}
.y69{bottom:461.826667pt;}
.ya2{bottom:464.546667pt;}
.y27{bottom:468.386667pt;}
.y68{bottom:476.386667pt;}
.yde{bottom:476.546667pt;}
.ya1{bottom:479.906667pt;}
.y26{bottom:482.946667pt;}
.y67{bottom:490.946667pt;}
.ydd{bottom:491.906667pt;}
.ya0{bottom:495.266667pt;}
.y25{bottom:497.506667pt;}
.y66{bottom:505.506667pt;}
.ydc{bottom:507.266667pt;}
.y9f{bottom:510.466667pt;}
.y24{bottom:512.066667pt;}
.y65{bottom:520.066667pt;}
.ydb{bottom:522.466667pt;}
.y9e{bottom:525.826667pt;}
.y23{bottom:526.626667pt;}
.y64{bottom:534.626667pt;}
.yda{bottom:537.826667pt;}
.y22{bottom:541.186667pt;}
.y63{bottom:549.186667pt;}
.yd9{bottom:553.186667pt;}
.y21{bottom:555.746667pt;}
.y9d{bottom:556.546667pt;}
.y62{bottom:563.746667pt;}
.yd8{bottom:568.546667pt;}
.y20{bottom:570.333333pt;}
.y9c{bottom:571.933333pt;}
.y61{bottom:578.333333pt;}
.yd7{bottom:583.933333pt;}
.y1f{bottom:584.893333pt;}
.y9b{bottom:587.133333pt;}
.y60{bottom:592.893333pt;}
.yd6{bottom:599.133333pt;}
.y1e{bottom:599.453333pt;}
.y9a{bottom:602.493333pt;}
.y5f{bottom:607.453333pt;}
.y1d{bottom:614.013333pt;}
.yd5{bottom:614.493333pt;}
.y99{bottom:617.853333pt;}
.y5e{bottom:622.013333pt;}
.y1c{bottom:628.573333pt;}
.yd4{bottom:629.853333pt;}
.y98{bottom:633.213333pt;}
.y5d{bottom:636.573333pt;}
.y1b{bottom:643.133333pt;}
.yd3{bottom:645.213333pt;}
.y5c{bottom:651.133333pt;}
.y1a{bottom:657.693333pt;}
.yd2{bottom:660.573333pt;}
.y97{bottom:661.693333pt;}
.y5b{bottom:665.693333pt;}
.y19{bottom:672.253333pt;}
.yd1{bottom:675.933333pt;}
.y96{bottom:677.693333pt;}
.y5a{bottom:680.253333pt;}
.y18{bottom:686.813333pt;}
.yd0{bottom:691.133333pt;}
.y95{bottom:693.693333pt;}
.y59{bottom:694.813333pt;}
.y17{bottom:701.373333pt;}
.ycf{bottom:706.493333pt;}
.y58{bottom:709.373333pt;}
.y94{bottom:709.693333pt;}
.y16{bottom:715.933333pt;}
.yce{bottom:721.853333pt;}
.y57{bottom:724.093333pt;}
.y93{bottom:725.693333pt;}
.y15{bottom:730.493333pt;}
.ycd{bottom:737.213333pt;}
.y56{bottom:738.653333pt;}
.y92{bottom:741.693333pt;}
.y14{bottom:745.053333pt;}
.ycc{bottom:752.573333pt;}
.y55{bottom:753.213333pt;}
.y91{bottom:757.693333pt;}
.y13{bottom:759.613333pt;}
.y54{bottom:767.773333pt;}
.ycb{bottom:767.933333pt;}
.y90{bottom:773.693333pt;}
.y12{bottom:774.173333pt;}
.y53{bottom:782.333333pt;}
.yca{bottom:783.133333pt;}
.y11{bottom:788.733333pt;}
.y8f{bottom:789.693333pt;}
.y52{bottom:796.933333pt;}
.yc9{bottom:798.533333pt;}
.y10{bottom:803.333333pt;}
.y8e{bottom:808.613333pt;}
.y51{bottom:811.493333pt;}
.yc8{bottom:813.893333pt;}
.yf{bottom:817.893333pt;}
.y8d{bottom:823.973333pt;}
.y50{bottom:826.053333pt;}
.yc7{bottom:829.253333pt;}
.ye{bottom:832.613333pt;}
.y8c{bottom:837.093333pt;}
.y4f{bottom:840.613333pt;}
.yc6{bottom:844.613333pt;}
.yd{bottom:847.973333pt;}
.y8a{bottom:853.093333pt;}
.y4e{bottom:855.173333pt;}
.yc5{bottom:859.973333pt;}
.yc{bottom:863.333333pt;}
.y4d{bottom:869.733333pt;}
.yc4{bottom:875.173333pt;}
.yb{bottom:878.693333pt;}
.y4c{bottom:884.293333pt;}
.yc3{bottom:890.533333pt;}
.ya{bottom:894.053333pt;}
.y4b{bottom:898.853333pt;}
.yc2{bottom:905.893333pt;}
.y9{bottom:909.413333pt;}
.y4a{bottom:913.413333pt;}
.y89{bottom:915.653333pt;}
.yc1{bottom:921.253333pt;}
.y8{bottom:924.613333pt;}
.y49{bottom:927.973333pt;}
.yc0{bottom:936.613333pt;}
.y7{bottom:939.973333pt;}
.y48{bottom:942.533333pt;}
.y88{bottom:947.013333pt;}
.ybf{bottom:951.813333pt;}
.y6{bottom:955.333333pt;}
.y47{bottom:957.093333pt;}
.ybe{bottom:967.173333pt;}
.y46{bottom:971.653333pt;}
.y86{bottom:978.373333pt;}
.ybd{bottom:982.533333pt;}
.y5{bottom:986.053333pt;}
.y45{bottom:986.213333pt;}
.ybc{bottom:997.893333pt;}
.y44{bottom:1000.773333pt;}
.y4{bottom:1001.253333pt;}
.y84{bottom:1009.733333pt;}
.ybb{bottom:1013.253333pt;}
.y43{bottom:1015.333333pt;}
.y3{bottom:1016.613333pt;}
.yba{bottom:1028.640000pt;}
.y42{bottom:1029.920000pt;}
.y2{bottom:1034.560000pt;}
.y83{bottom:1043.840000pt;}
.y41{bottom:1044.480000pt;}
.y1{bottom:1062.720000pt;}
.he{height:15.200000pt;}
.h9{height:15.360000pt;}
.ha{height:15.392000pt;}
.hc{height:30.560000pt;}
.hb{height:30.592000pt;}
.hd{height:30.720000pt;}
.h8{height:47.621250pt;}
.h6{height:52.108438pt;}
.h5{height:52.134375pt;}
.h2{height:52.834688pt;}
.h4{height:53.535000pt;}
.hf{height:54.598989pt;}
.h7{height:55.298750pt;}
.h3{height:72.843750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:102.080000pt;}
.w7{width:173.466667pt;}
.w4{width:181.946667pt;}
.w5{width:201.466667pt;}
.w3{width:218.746667pt;}
.wa{width:260.986667pt;}
.w6{width:326.466667pt;}
.w9{width:341.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x23{left:6.880000pt;}
.x12{left:35.840000pt;}
.x14{left:39.040000pt;}
.x15{left:41.754667pt;}
.x20{left:50.874667pt;}
.x18{left:64.314667pt;}
.x29{left:68.640000pt;}
.x21{left:74.394667pt;}
.x1c{left:75.834667pt;}
.x26{left:80.000000pt;}
.x22{left:80.986667pt;}
.x1f{left:82.234667pt;}
.x16{left:84.346667pt;}
.x10{left:85.274667pt;}
.x1d{left:86.394667pt;}
.x1a{left:87.546667pt;}
.x17{left:89.000000pt;}
.x1e{left:91.194667pt;}
.x19{left:92.360000pt;}
.x1{left:94.591988pt;}
.x1b{left:97.114667pt;}
.x5{left:120.991988pt;}
.x27{left:146.114667pt;}
.x4{left:149.786655pt;}
.x2{left:292.226655pt;}
.x11{left:314.626667pt;}
.xf{left:396.893322pt;}
.xe{left:406.493322pt;}
.x3{left:410.173322pt;}
.x24{left:422.493333pt;}
.xd{left:432.893322pt;}
.x28{left:437.693333pt;}
.xb{left:478.173322pt;}
.x13{left:497.213333pt;}
.x6{left:500.413322pt;}
.xa{left:560.133322pt;}
.x8{left:592.613322pt;}
.x25{left:596.613333pt;}
.x7{left:599.653322pt;}
.x9{left:615.333322pt;}
.xc{left:699.333322pt;}
}




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