
    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_cf7fcf5f4d82cb858341ba3c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.916992;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_fdd29494a565a37247d2e904.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.163086;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_4ef4a8e6ab48e1a5570f0703.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.903809;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_66d11d84ca7c3ad65b1b05d2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.942383;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_77319e409b4a2b9a919bbacd.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_5426d875ef3f8764cd3eef69.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.052734;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_bfd5e6fd443e60b6265232f3.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);}
.v3{vertical-align:-5.759996px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:5.759856px;}
.v4{vertical-align:27.360076px;}
.v2{vertical-align:36.000000px;}
.v1{vertical-align:42.480014px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.055375px;}
.ls2{letter-spacing:0.286460px;}
.ls6{letter-spacing:0.359041px;}
.ls5{letter-spacing:0.359109px;}
.ls1{letter-spacing:0.359113px;}
.ls7{letter-spacing:1.079127px;}
.ls4{letter-spacing:2.159373px;}
.ls3{letter-spacing:3.599270px;}
.lsa{letter-spacing:4.690786px;}
.ls8{letter-spacing:32.615251px;}
.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:-72.002705px;}
.ws3{word-spacing:-51.121800px;}
.ws4{word-spacing:-18.317805px;}
.ws1{word-spacing:-18.000676px;}
.ws8{word-spacing:-17.999954px;}
.wsa{word-spacing:-15.026225px;}
.ws6{word-spacing:-14.939873px;}
.ws9{word-spacing:-12.060450px;}
.ws0{word-spacing:-10.902647px;}
.ws2{word-spacing:0.000000px;}
.ws7{word-spacing:207.367797px;}
._16{margin-left:-4.122999px;}
._f{margin-left:-2.872795px;}
._7{margin-left:-1.301111px;}
._0{width:1.007997px;}
._e{width:3.005832px;}
._11{width:4.237342px;}
._d{width:6.090135px;}
._17{width:7.152456px;}
._13{width:8.197902px;}
._12{width:9.563703px;}
._14{width:10.872408px;}
._15{width:12.020795px;}
._b{width:13.099992px;}
._c{width:14.293461px;}
._2c{width:16.304394px;}
._1a{width:19.076217px;}
._a{width:20.084254px;}
._9{width:21.607562px;}
._1{width:23.436037px;}
._2{width:24.730960px;}
._2b{width:25.965549px;}
._3{width:27.056619px;}
._4{width:28.202926px;}
._1c{width:29.356612px;}
._10{width:30.533928px;}
._18{width:31.564015px;}
._1f{width:32.835765px;}
._1e{width:34.064592px;}
._1d{width:35.550813px;}
._19{width:36.903355px;}
._1b{width:38.893555px;}
._2d{width:43.041585px;}
._8{width:47.307865px;}
._6{width:48.547020px;}
._20{width:55.485397px;}
._21{width:56.869199px;}
._5{width:68.458821px;}
._2a{width:72.315748px;}
._29{width:73.360068px;}
._23{width:328.256433px;}
._24{width:342.631338px;}
._22{width:430.576173px;}
._28{width:486.309963px;}
._25{width:491.934009px;}
._26{width:636.503908px;}
._27{width:673.945314px;}
._2e{width:847.933045px;}
.fc6{color:rgb(0,0,255);}
.fc4{color:transparent;}
.fc2{color:rgb(255,0,0);}
.fc5{color:rgb(51,51,51);}
.fc3{color:rgb(34,34,34);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.241800px;}
.fs4{font-size:51.121800px;}
.fs5{font-size:59.759492px;}
.fs3{font-size:59.762250px;}
.fs6{font-size:66.242700px;}
.fs2{font-size:71.999814px;}
.fs0{font-size:72.002705px;}
.y0{bottom:0.000000px;}
.y9{bottom:0.900055px;}
.y5{bottom:3.240005px;}
.yc3{bottom:4.139991px;}
.y8{bottom:24.120072px;}
.y7{bottom:39.240005px;}
.y6{bottom:53.820099px;}
.y3{bottom:57.780121px;}
.y4{bottom:65.340088px;}
.y2{bottom:78.480011px;}
.yd6{bottom:104.580093px;}
.y3d{bottom:109.440033px;}
.y66{bottom:116.280052px;}
.yd5{bottom:125.280052px;}
.y3c{bottom:130.140060px;}
.y8e{bottom:132.120072px;}
.y65{bottom:137.700096px;}
.yd4{bottom:145.980079px;}
.yf4{bottom:147.420043px;}
.y3b{bottom:150.840088px;}
.y8d{bottom:152.820099px;}
.y64{bottom:159.300041px;}
.yd3{bottom:166.680039px;}
.yf3{bottom:168.120072px;}
.y3a{bottom:171.540047px;}
.y8c{bottom:173.520058px;}
.y63{bottom:180.720085px;}
.yd2{bottom:187.380066px;}
.yf2{bottom:188.820099px;}
.y39{bottom:192.240074px;}
.y8b{bottom:194.220085px;}
.y62{bottom:201.780052px;}
.yd1{bottom:208.080093px;}
.yf1{bottom:209.520058px;}
.y38{bottom:212.940033px;}
.y8a{bottom:214.920043px;}
.y61{bottom:222.480079px;}
.yd0{bottom:228.780052px;}
.yf0{bottom:230.220085px;}
.y37{bottom:233.280052px;}
.y89{bottom:235.620072px;}
.y60{bottom:243.540047px;}
.ycf{bottom:249.480079px;}
.yef{bottom:250.920043px;}
.y36{bottom:254.340088px;}
.y88{bottom:256.320099px;}
.y5f{bottom:264.240074px;}
.yce{bottom:270.180039px;}
.yee{bottom:271.620072px;}
.y35{bottom:275.040047px;}
.y87{bottom:277.020058px;}
.y5e{bottom:284.940033px;}
.ycd{bottom:290.880066px;}
.yed{bottom:292.320099px;}
.y34{bottom:295.740074px;}
.y86{bottom:297.720085px;}
.y5d{bottom:305.640060px;}
.ycc{bottom:311.580093px;}
.yec{bottom:313.020058px;}
.y33{bottom:316.440033px;}
.y85{bottom:318.420043px;}
.y5c{bottom:325.980079px;}
.yb5{bottom:329.220085px;}
.ycb{bottom:332.280052px;}
.yeb{bottom:333.720085px;}
.y32{bottom:337.140060px;}
.y84{bottom:339.120072px;}
.y5b{bottom:342.540047px;}
.yb4{bottom:349.920043px;}
.yca{bottom:352.980079px;}
.yea{bottom:354.420043px;}
.y31{bottom:357.840088px;}
.y83{bottom:359.820099px;}
.yb3{bottom:370.620072px;}
.yc9{bottom:373.680039px;}
.ye9{bottom:375.120072px;}
.y30{bottom:378.540047px;}
.y82{bottom:380.520058px;}
.yb2{bottom:391.320099px;}
.yc8{bottom:394.380066px;}
.ye8{bottom:395.820099px;}
.y2f{bottom:399.240074px;}
.y81{bottom:401.220085px;}
.yb1{bottom:412.020058px;}
.yc7{bottom:415.080093px;}
.ye7{bottom:416.520058px;}
.y2e{bottom:419.940033px;}
.y80{bottom:421.920043px;}
.yb0{bottom:432.720085px;}
.yc6{bottom:435.780052px;}
.ye6{bottom:437.220085px;}
.y6e{bottom:438.847163px;}
.y2d{bottom:440.640060px;}
.y7f{bottom:442.620072px;}
.y6a{bottom:451.445415px;}
.yc5{bottom:456.300041px;}
.yaf{bottom:456.840088px;}
.ye5{bottom:457.920043px;}
.y2c{bottom:461.340088px;}
.y7e{bottom:463.320099px;}
.y69{bottom:468.725114px;}
.y6d{bottom:475.744608px;}
.yc4{bottom:477.000068px;}
.yae{bottom:477.540047px;}
.ye4{bottom:478.620072px;}
.y2b{bottom:482.040047px;}
.y7d{bottom:484.020058px;}
.yc2{bottom:494.100083px;}
.yad{bottom:498.240074px;}
.ye3{bottom:499.320099px;}
.y2a{bottom:502.740074px;}
.y7c{bottom:504.720085px;}
.y6c{bottom:516.784591px;}
.yac{bottom:518.940033px;}
.ye2{bottom:520.020058px;}
.y68{bottom:520.030812px;}
.y29{bottom:523.440033px;}
.y7b{bottom:525.420043px;}
.y6b{bottom:534.064290px;}
.y67{bottom:537.305926px;}
.yab{bottom:539.640060px;}
.ye1{bottom:540.720085px;}
.y28{bottom:544.140060px;}
.y7a{bottom:546.120072px;}
.yaa{bottom:560.340088px;}
.ye0{bottom:561.420043px;}
.y27{bottom:564.840088px;}
.y79{bottom:566.820099px;}
.ya9{bottom:581.040047px;}
.ydf{bottom:582.120072px;}
.y26{bottom:585.540047px;}
.y78{bottom:587.520058px;}
.y5a{bottom:593.100083px;}
.ya8{bottom:601.740074px;}
.yde{bottom:602.820099px;}
.y25{bottom:606.240074px;}
.y77{bottom:608.220085px;}
.y59{bottom:613.800041px;}
.yc1{bottom:622.440033px;}
.ya7{bottom:622.800041px;}
.ydd{bottom:623.520058px;}
.y24{bottom:626.940033px;}
.y76{bottom:628.920043px;}
.y58{bottom:634.500068px;}
.yc0{bottom:643.140060px;}
.ya6{bottom:643.500068px;}
.ydc{bottom:644.220085px;}
.y23{bottom:647.640060px;}
.y75{bottom:649.620072px;}
.y57{bottom:655.200096px;}
.ya5{bottom:663.840088px;}
.ydb{bottom:664.920043px;}
.y22{bottom:668.340088px;}
.y74{bottom:670.320099px;}
.y56{bottom:675.900055px;}
.ya4{bottom:684.540047px;}
.yda{bottom:685.620072px;}
.y21{bottom:689.040081px;}
.y73{bottom:691.020058px;}
.y55{bottom:694.440067px;}
.y54{bottom:703.440067px;}
.ya3{bottom:705.240074px;}
.yd9{bottom:706.320065px;}
.y20{bottom:709.740074px;}
.y72{bottom:711.360077px;}
.ya2{bottom:725.940067px;}
.y53{bottom:727.020058px;}
.y1f{bottom:730.440067px;}
.y71{bottom:732.060070px;}
.ybf{bottom:746.640060px;}
.ya1{bottom:747.000068px;}
.y52{bottom:747.720051px;}
.y1e{bottom:751.140060px;}
.y70{bottom:753.120072px;}
.ya0{bottom:767.700061px;}
.y51{bottom:768.420078px;}
.y6f{bottom:769.320065px;}
.y1d{bottom:771.840054px;}
.y9f{bottom:788.400055px;}
.yd8{bottom:788.760064px;}
.y50{bottom:789.120072px;}
.y1c{bottom:792.540081px;}
.y9e{bottom:808.920078px;}
.yd7{bottom:809.460056px;}
.y4f{bottom:809.820065px;}
.y1b{bottom:813.240074px;}
.y9d{bottom:829.620072px;}
.y4e{bottom:830.520058px;}
.y1a{bottom:833.940067px;}
.y9c{bottom:849.960056px;}
.ybe{bottom:850.320065px;}
.y4d{bottom:851.220051px;}
.y19{bottom:854.640060px;}
.y9b{bottom:870.660049px;}
.ybd{bottom:871.020058px;}
.y4c{bottom:871.920078px;}
.y18{bottom:875.340054px;}
.y9a{bottom:891.360077px;}
.y4b{bottom:892.620072px;}
.y17{bottom:896.040081px;}
.y99{bottom:912.060070px;}
.y4a{bottom:913.320065px;}
.y16{bottom:916.380066px;}
.ybc{bottom:932.760064px;}
.y98{bottom:933.120072px;}
.y49{bottom:934.020058px;}
.y15{bottom:936.720051px;}
.y97{bottom:953.820065px;}
.y14{bottom:954.000068px;}
.y48{bottom:954.720051px;}
.y13{bottom:971.280053px;}
.y96{bottom:974.520058px;}
.y47{bottom:975.420061px;}
.y12{bottom:988.920061px;}
.y95{bottom:995.220068px;}
.y46{bottom:996.120072px;}
.y11{bottom:1009.980063px;}
.y94{bottom:1015.560070px;}
.ybb{bottom:1015.920061px;}
.y45{bottom:1016.820065px;}
.y10{bottom:1030.680073px;}
.y93{bottom:1036.620072px;}
.y44{bottom:1037.520058px;}
.yf{bottom:1051.020058px;}
.yba{bottom:1056.960074px;}
.y92{bottom:1057.320065px;}
.y43{bottom:1058.220068px;}
.ye{bottom:1071.720068px;}
.yb9{bottom:1077.660067px;}
.y91{bottom:1078.020058px;}
.y42{bottom:1078.920061px;}
.yd{bottom:1092.240074px;}
.yb8{bottom:1098.360060px;}
.y90{bottom:1098.720068px;}
.y41{bottom:1099.620072px;}
.yc{bottom:1112.940067px;}
.y8f{bottom:1119.420069px;}
.y40{bottom:1120.320065px;}
.yb{bottom:1136.159694px;}
.yb7{bottom:1140.120063px;}
.y3f{bottom:1141.020066px;}
.yb6{bottom:1160.460065px;}
.ya{bottom:1160.461384px;}
.y3e{bottom:1161.720068px;}
.y1{bottom:1193.580068px;}
.h5{height:11.700027px;}
.h3{height:14.579955px;}
.h11{height:20.339950px;}
.h6{height:33.825793px;}
.ha{height:41.903609px;}
.hd{height:43.156391px;}
.h4{height:47.982689px;}
.h7{height:49.535028px;}
.h8{height:49.537017px;}
.h2{height:50.486271px;}
.h12{height:52.419938px;}
.he{height:59.343597px;}
.h9{height:59.345979px;}
.h10{height:61.185595px;}
.hf{height:61.185870px;}
.h13{height:65.886904px;}
.hb{height:85.564109px;}
.hc{height:96.681967px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w4{width:5.399987px;}
.w3{width:7.019989px;}
.w5{width:9.000000px;}
.w2{width:53.100015px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:84.959997px;}
.x1f{left:93.599997px;}
.x8{left:108.360075px;}
.x24{left:111.780001px;}
.x21{left:121.140000px;}
.x14{left:136.079999px;}
.xa{left:138.060001px;}
.x1e{left:146.699993px;}
.x1c{left:165.960005px;}
.x20{left:169.560001px;}
.x13{left:195.840002px;}
.x10{left:217.259994px;}
.x1a{left:230.218484px;}
.x19{left:242.094515px;}
.x18{left:260.638059px;}
.x9{left:267.116515px;}
.x12{left:273.240006px;}
.x17{left:296.638198px;}
.x16{left:308.514229px;}
.x23{left:319.500000px;}
.xe{left:325.079990px;}
.x1d{left:405.180005px;}
.x2{left:437.399987px;}
.xb{left:446.399987px;}
.xd{left:450.360008px;}
.x15{left:472.860008px;}
.xc{left:562.500000px;}
.x1b{left:594.360008px;}
.x11{left:719.820030px;}
.x6{left:746.279983px;}
.x5{left:751.139992px;}
.xf{left:752.759994px;}
.x3{left:759.779983px;}
.x22{left:771.840019px;}
.x7{left:786.240006px;}
.x4{left:812.879998px;}
@media print{
.v3{vertical-align:-5.119996pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:5.119872pt;}
.v4{vertical-align:24.320068pt;}
.v2{vertical-align:32.000000pt;}
.v1{vertical-align:37.760012pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.049222pt;}
.ls2{letter-spacing:0.254631pt;}
.ls6{letter-spacing:0.319148pt;}
.ls5{letter-spacing:0.319208pt;}
.ls1{letter-spacing:0.319212pt;}
.ls7{letter-spacing:0.959224pt;}
.ls4{letter-spacing:1.919443pt;}
.ls3{letter-spacing:3.199351pt;}
.lsa{letter-spacing:4.169587pt;}
.ls8{letter-spacing:28.991334pt;}
.ws5{word-spacing:-64.002404pt;}
.ws3{word-spacing:-45.441600pt;}
.ws4{word-spacing:-16.282493pt;}
.ws1{word-spacing:-16.000601pt;}
.ws8{word-spacing:-15.999959pt;}
.wsa{word-spacing:-13.356644pt;}
.ws6{word-spacing:-13.279887pt;}
.ws9{word-spacing:-10.720400pt;}
.ws0{word-spacing:-9.691242pt;}
.ws2{word-spacing:0.000000pt;}
.ws7{word-spacing:184.326931pt;}
._16{margin-left:-3.664888pt;}
._f{margin-left:-2.553596pt;}
._7{margin-left:-1.156543pt;}
._0{width:0.895998pt;}
._e{width:2.671850pt;}
._11{width:3.766526pt;}
._d{width:5.413453pt;}
._17{width:6.357739pt;}
._13{width:7.287024pt;}
._12{width:8.501069pt;}
._14{width:9.664363pt;}
._15{width:10.685151pt;}
._b{width:11.644437pt;}
._c{width:12.705299pt;}
._2c{width:14.492794pt;}
._1a{width:16.956637pt;}
._a{width:17.852671pt;}
._9{width:19.206721pt;}
._1{width:20.832033pt;}
._2{width:21.983076pt;}
._2b{width:23.080488pt;}
._3{width:24.050328pt;}
._4{width:25.069267pt;}
._1c{width:26.094766pt;}
._10{width:27.141270pt;}
._18{width:28.056903pt;}
._1f{width:29.187346pt;}
._1e{width:30.279637pt;}
._1d{width:31.600723pt;}
._19{width:32.802982pt;}
._1b{width:34.572049pt;}
._2d{width:38.259187pt;}
._8{width:42.051435pt;}
._6{width:43.152907pt;}
._20{width:49.320353pt;}
._21{width:50.550399pt;}
._5{width:60.852286pt;}
._2a{width:64.280665pt;}
._29{width:65.208949pt;}
._23{width:291.783496pt;}
._24{width:304.561190pt;}
._22{width:382.734376pt;}
._28{width:432.275523pt;}
._25{width:437.274675pt;}
._26{width:565.781251pt;}
._27{width:599.062501pt;}
._2e{width:753.718262pt;}
.fs1{font-size:42.881600pt;}
.fs4{font-size:45.441600pt;}
.fs5{font-size:53.119548pt;}
.fs3{font-size:53.122000pt;}
.fs6{font-size:58.882400pt;}
.fs2{font-size:63.999835pt;}
.fs0{font-size:64.002404pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:0.800049pt;}
.y5{bottom:2.880004pt;}
.yc3{bottom:3.679992pt;}
.y8{bottom:21.440064pt;}
.y7{bottom:34.880005pt;}
.y6{bottom:47.840088pt;}
.y3{bottom:51.360108pt;}
.y4{bottom:58.080079pt;}
.y2{bottom:69.760010pt;}
.yd6{bottom:92.960083pt;}
.y3d{bottom:97.280030pt;}
.y66{bottom:103.360047pt;}
.yd5{bottom:111.360047pt;}
.y3c{bottom:115.680054pt;}
.y8e{bottom:117.440064pt;}
.y65{bottom:122.400086pt;}
.yd4{bottom:129.760071pt;}
.yf4{bottom:131.040039pt;}
.y3b{bottom:134.080079pt;}
.y8d{bottom:135.840088pt;}
.y64{bottom:141.600037pt;}
.yd3{bottom:148.160035pt;}
.yf3{bottom:149.440064pt;}
.y3a{bottom:152.480042pt;}
.y8c{bottom:154.240052pt;}
.y63{bottom:160.640076pt;}
.yd2{bottom:166.560059pt;}
.yf2{bottom:167.840088pt;}
.y39{bottom:170.880066pt;}
.y8b{bottom:172.640076pt;}
.y62{bottom:179.360047pt;}
.yd1{bottom:184.960083pt;}
.yf1{bottom:186.240052pt;}
.y38{bottom:189.280030pt;}
.y8a{bottom:191.040039pt;}
.y61{bottom:197.760071pt;}
.yd0{bottom:203.360047pt;}
.yf0{bottom:204.640076pt;}
.y37{bottom:207.360047pt;}
.y89{bottom:209.440064pt;}
.y60{bottom:216.480042pt;}
.ycf{bottom:221.760071pt;}
.yef{bottom:223.040039pt;}
.y36{bottom:226.080079pt;}
.y88{bottom:227.840088pt;}
.y5f{bottom:234.880066pt;}
.yce{bottom:240.160035pt;}
.yee{bottom:241.440064pt;}
.y35{bottom:244.480042pt;}
.y87{bottom:246.240052pt;}
.y5e{bottom:253.280030pt;}
.ycd{bottom:258.560059pt;}
.yed{bottom:259.840088pt;}
.y34{bottom:262.880066pt;}
.y86{bottom:264.640076pt;}
.y5d{bottom:271.680054pt;}
.ycc{bottom:276.960083pt;}
.yec{bottom:278.240052pt;}
.y33{bottom:281.280030pt;}
.y85{bottom:283.040039pt;}
.y5c{bottom:289.760071pt;}
.yb5{bottom:292.640076pt;}
.ycb{bottom:295.360047pt;}
.yeb{bottom:296.640076pt;}
.y32{bottom:299.680054pt;}
.y84{bottom:301.440064pt;}
.y5b{bottom:304.480042pt;}
.yb4{bottom:311.040039pt;}
.yca{bottom:313.760071pt;}
.yea{bottom:315.040039pt;}
.y31{bottom:318.080079pt;}
.y83{bottom:319.840088pt;}
.yb3{bottom:329.440064pt;}
.yc9{bottom:332.160035pt;}
.ye9{bottom:333.440064pt;}
.y30{bottom:336.480042pt;}
.y82{bottom:338.240052pt;}
.yb2{bottom:347.840088pt;}
.yc8{bottom:350.560059pt;}
.ye8{bottom:351.840088pt;}
.y2f{bottom:354.880066pt;}
.y81{bottom:356.640076pt;}
.yb1{bottom:366.240052pt;}
.yc7{bottom:368.960083pt;}
.ye7{bottom:370.240052pt;}
.y2e{bottom:373.280030pt;}
.y80{bottom:375.040039pt;}
.yb0{bottom:384.640076pt;}
.yc6{bottom:387.360047pt;}
.ye6{bottom:388.640076pt;}
.y6e{bottom:390.086367pt;}
.y2d{bottom:391.680054pt;}
.y7f{bottom:393.440064pt;}
.y6a{bottom:401.284813pt;}
.yc5{bottom:405.600037pt;}
.yaf{bottom:406.080079pt;}
.ye5{bottom:407.040039pt;}
.y2c{bottom:410.080079pt;}
.y7e{bottom:411.840088pt;}
.y69{bottom:416.644546pt;}
.y6d{bottom:422.884096pt;}
.yc4{bottom:424.000061pt;}
.yae{bottom:424.480042pt;}
.ye4{bottom:425.440064pt;}
.y2b{bottom:428.480042pt;}
.y7d{bottom:430.240052pt;}
.yc2{bottom:439.200074pt;}
.yad{bottom:442.880066pt;}
.ye3{bottom:443.840088pt;}
.y2a{bottom:446.880066pt;}
.y7c{bottom:448.640076pt;}
.y6c{bottom:459.364080pt;}
.yac{bottom:461.280030pt;}
.ye2{bottom:462.240052pt;}
.y68{bottom:462.249611pt;}
.y29{bottom:465.280030pt;}
.y7b{bottom:467.040039pt;}
.y6b{bottom:474.723813pt;}
.y67{bottom:477.605267pt;}
.yab{bottom:479.680054pt;}
.ye1{bottom:480.640076pt;}
.y28{bottom:483.680054pt;}
.y7a{bottom:485.440064pt;}
.yaa{bottom:498.080079pt;}
.ye0{bottom:499.040039pt;}
.y27{bottom:502.080079pt;}
.y79{bottom:503.840088pt;}
.ya9{bottom:516.480042pt;}
.ydf{bottom:517.440064pt;}
.y26{bottom:520.480042pt;}
.y78{bottom:522.240052pt;}
.y5a{bottom:527.200074pt;}
.ya8{bottom:534.880066pt;}
.yde{bottom:535.840088pt;}
.y25{bottom:538.880066pt;}
.y77{bottom:540.640076pt;}
.y59{bottom:545.600037pt;}
.yc1{bottom:553.280030pt;}
.ya7{bottom:553.600037pt;}
.ydd{bottom:554.240052pt;}
.y24{bottom:557.280030pt;}
.y76{bottom:559.040039pt;}
.y58{bottom:564.000061pt;}
.yc0{bottom:571.680054pt;}
.ya6{bottom:572.000061pt;}
.ydc{bottom:572.640076pt;}
.y23{bottom:575.680054pt;}
.y75{bottom:577.440064pt;}
.y57{bottom:582.400086pt;}
.ya5{bottom:590.080079pt;}
.ydb{bottom:591.040039pt;}
.y22{bottom:594.080079pt;}
.y74{bottom:595.840088pt;}
.y56{bottom:600.800049pt;}
.ya4{bottom:608.480042pt;}
.yda{bottom:609.440064pt;}
.y21{bottom:612.480072pt;}
.y73{bottom:614.240052pt;}
.y55{bottom:617.280060pt;}
.y54{bottom:625.280060pt;}
.ya3{bottom:626.880066pt;}
.yd9{bottom:627.840058pt;}
.y20{bottom:630.880066pt;}
.y72{bottom:632.320069pt;}
.ya2{bottom:645.280060pt;}
.y53{bottom:646.240052pt;}
.y1f{bottom:649.280060pt;}
.y71{bottom:650.720063pt;}
.ybf{bottom:663.680054pt;}
.ya1{bottom:664.000061pt;}
.y52{bottom:664.640046pt;}
.y1e{bottom:667.680054pt;}
.y70{bottom:669.440064pt;}
.ya0{bottom:682.400055pt;}
.y51{bottom:683.040070pt;}
.y6f{bottom:683.840058pt;}
.y1d{bottom:686.080048pt;}
.y9f{bottom:700.800049pt;}
.yd8{bottom:701.120057pt;}
.y50{bottom:701.440064pt;}
.y1c{bottom:704.480072pt;}
.y9e{bottom:719.040070pt;}
.yd7{bottom:719.520050pt;}
.y4f{bottom:719.840058pt;}
.y1b{bottom:722.880066pt;}
.y9d{bottom:737.440064pt;}
.y4e{bottom:738.240052pt;}
.y1a{bottom:741.280060pt;}
.y9c{bottom:755.520050pt;}
.ybe{bottom:755.840058pt;}
.y4d{bottom:756.640046pt;}
.y19{bottom:759.680054pt;}
.y9b{bottom:773.920044pt;}
.ybd{bottom:774.240052pt;}
.y4c{bottom:775.040070pt;}
.y18{bottom:778.080048pt;}
.y9a{bottom:792.320069pt;}
.y4b{bottom:793.440064pt;}
.y17{bottom:796.480072pt;}
.y99{bottom:810.720063pt;}
.y4a{bottom:811.840058pt;}
.y16{bottom:814.560059pt;}
.ybc{bottom:829.120057pt;}
.y98{bottom:829.440064pt;}
.y49{bottom:830.240052pt;}
.y15{bottom:832.640046pt;}
.y97{bottom:847.840058pt;}
.y14{bottom:848.000061pt;}
.y48{bottom:848.640046pt;}
.y13{bottom:863.360047pt;}
.y96{bottom:866.240052pt;}
.y47{bottom:867.040055pt;}
.y12{bottom:879.040055pt;}
.y95{bottom:884.640061pt;}
.y46{bottom:885.440064pt;}
.y11{bottom:897.760056pt;}
.y94{bottom:902.720063pt;}
.ybb{bottom:903.040055pt;}
.y45{bottom:903.840058pt;}
.y10{bottom:916.160065pt;}
.y93{bottom:921.440064pt;}
.y44{bottom:922.240052pt;}
.yf{bottom:934.240052pt;}
.yba{bottom:939.520066pt;}
.y92{bottom:939.840058pt;}
.y43{bottom:940.640061pt;}
.ye{bottom:952.640061pt;}
.yb9{bottom:957.920060pt;}
.y91{bottom:958.240052pt;}
.y42{bottom:959.040055pt;}
.yd{bottom:970.880066pt;}
.yb8{bottom:976.320054pt;}
.y90{bottom:976.640061pt;}
.y41{bottom:977.440064pt;}
.yc{bottom:989.280060pt;}
.y8f{bottom:995.040062pt;}
.y40{bottom:995.840058pt;}
.yb{bottom:1009.919728pt;}
.yb7{bottom:1013.440056pt;}
.y3f{bottom:1014.240059pt;}
.yb6{bottom:1031.520058pt;}
.ya{bottom:1031.521230pt;}
.y3e{bottom:1032.640061pt;}
.y1{bottom:1060.960061pt;}
.h5{height:10.400024pt;}
.h3{height:12.959960pt;}
.h11{height:18.079956pt;}
.h6{height:30.067372pt;}
.ha{height:37.247652pt;}
.hd{height:38.361236pt;}
.h4{height:42.651279pt;}
.h7{height:44.031136pt;}
.h8{height:44.032904pt;}
.h2{height:44.876686pt;}
.h12{height:46.595500pt;}
.he{height:52.749864pt;}
.h9{height:52.751981pt;}
.h10{height:54.387196pt;}
.hf{height:54.387440pt;}
.h13{height:58.566137pt;}
.hb{height:76.056985pt;}
.hc{height:85.939526pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w4{width:4.799988pt;}
.w3{width:6.239990pt;}
.w5{width:8.000000pt;}
.w2{width:47.200013pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.519997pt;}
.x1f{left:83.199997pt;}
.x8{left:96.320067pt;}
.x24{left:99.360001pt;}
.x21{left:107.680000pt;}
.x14{left:120.959999pt;}
.xa{left:122.720001pt;}
.x1e{left:130.399994pt;}
.x1c{left:147.520004pt;}
.x20{left:150.720001pt;}
.x13{left:174.080002pt;}
.x10{left:193.119995pt;}
.x1a{left:204.638652pt;}
.x19{left:215.195125pt;}
.x18{left:231.678275pt;}
.x9{left:237.436903pt;}
.x12{left:242.880005pt;}
.x17{left:263.678398pt;}
.x16{left:274.234870pt;}
.x23{left:284.000000pt;}
.xe{left:288.959991pt;}
.x1d{left:360.160004pt;}
.x2{left:388.799988pt;}
.xb{left:396.799988pt;}
.xd{left:400.320007pt;}
.x15{left:420.320007pt;}
.xc{left:500.000000pt;}
.x1b{left:528.320007pt;}
.x11{left:639.840027pt;}
.x6{left:663.359985pt;}
.x5{left:667.679993pt;}
.xf{left:669.119995pt;}
.x3{left:675.359985pt;}
.x22{left:686.080017pt;}
.x7{left:698.880005pt;}
.x4{left:722.559998pt;}
}




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