
    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_1bd0e1a7fc4dc4a1c3b74feb.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_9ad9e944c4b28f03dcd08294.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_4aa66ece642943935f3d1f06.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.080566;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_36df1766e11cf0deb49c5c70.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.944824;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_427c639902233539caeaa910.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_2739935d48e0f2ea80a1cc2b.woff2')format("woff");}.ff6{font-family:ff6;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.759996px;}
.v2{vertical-align:41.759991px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.055375px;}
.ls4{letter-spacing:4.690786px;}
.ls2{letter-spacing:32.615251px;}
.ls1{letter-spacing:98.639387px;}
.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.000676px;}
.ws3{word-spacing:-15.026225px;}
.ws0{word-spacing:-10.902647px;}
.ws2{word-spacing:0.000000px;}
._2a{margin-left:-5.379671px;}
._b{margin-left:-4.129749px;}
._c{margin-left:-2.868577px;}
._1{margin-left:-1.082807px;}
._0{width:1.151997px;}
._12{width:2.793245px;}
._11{width:3.793642px;}
._1c{width:4.889071px;}
._14{width:5.941629px;}
._a{width:7.100985px;}
._d{width:8.143102px;}
._13{width:9.507169px;}
._e{width:10.650213px;}
._f{width:11.695070px;}
._5{width:12.846857px;}
._6{width:13.926054px;}
._7{width:15.582398px;}
._15{width:16.778926px;}
._2{width:19.491883px;}
._24{width:20.497084px;}
._10{width:21.514003px;}
._8{width:22.700540px;}
._9{width:23.951306px;}
._1b{width:25.071097px;}
._16{width:26.616296px;}
._23{width:27.935362px;}
._25{width:29.371094px;}
._26{width:30.430987px;}
._2f{width:31.440850px;}
._1d{width:32.530316px;}
._1e{width:33.983077px;}
._21{width:35.202006px;}
._29{width:36.267710px;}
._28{width:37.441969px;}
._3{width:38.574886px;}
._4{width:39.665615px;}
._1f{width:41.759176px;}
._20{width:43.271522px;}
._1a{width:45.424097px;}
._19{width:46.846478px;}
._2e{width:50.335608px;}
._2d{width:51.853198px;}
._17{width:53.883383px;}
._18{width:55.371767px;}
._22{width:60.350923px;}
._27{width:61.675472px;}
._2c{width:69.321400px;}
._2b{width:70.693155px;}
._30{width:137.001039px;}
._32{width:194.407302px;}
._31{width:262.426766px;}
._33{width:848.610323px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.241800px;}
.fs3{font-size:59.762250px;}
.fs4{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;}
.ybd{bottom:3.960021px;}
.yc6{bottom:4.320030px;}
.y8{bottom:24.120072px;}
.y7{bottom:39.240005px;}
.y6{bottom:53.820099px;}
.y3{bottom:57.780121px;}
.y4{bottom:65.340088px;}
.y2{bottom:78.480011px;}
.ye1{bottom:100.800110px;}
.y71{bottom:106.020127px;}
.y3d{bottom:109.440033px;}
.ye0{bottom:121.500068px;}
.ya1{bottom:125.820099px;}
.y70{bottom:126.720085px;}
.y3c{bottom:130.140060px;}
.ydf{bottom:141.840088px;}
.ya0{bottom:146.520058px;}
.y6f{bottom:147.420043px;}
.y3b{bottom:150.840088px;}
.yde{bottom:163.620072px;}
.y9f{bottom:167.220085px;}
.y6e{bottom:168.120072px;}
.y3a{bottom:171.540047px;}
.ydd{bottom:184.320099px;}
.y9e{bottom:187.920043px;}
.y6d{bottom:188.820099px;}
.y39{bottom:191.880066px;}
.ydc{bottom:205.020058px;}
.y9d{bottom:208.620072px;}
.y6c{bottom:209.520058px;}
.y38{bottom:212.940033px;}
.y7a{bottom:215.280052px;}
.ydb{bottom:225.720085px;}
.y9c{bottom:229.320099px;}
.y6b{bottom:230.220085px;}
.y37{bottom:233.640060px;}
.y79{bottom:235.980079px;}
.yda{bottom:246.420043px;}
.y9b{bottom:250.020058px;}
.y6a{bottom:250.920043px;}
.y36{bottom:254.340088px;}
.y78{bottom:256.680039px;}
.yd9{bottom:267.120072px;}
.y9a{bottom:270.720085px;}
.y69{bottom:271.620072px;}
.y35{bottom:275.040047px;}
.y77{bottom:277.380066px;}
.yd8{bottom:287.820099px;}
.y99{bottom:291.420043px;}
.y68{bottom:292.320099px;}
.y34{bottom:295.740074px;}
.y76{bottom:298.080093px;}
.yd7{bottom:309.240074px;}
.y98{bottom:312.120072px;}
.y67{bottom:313.020058px;}
.y33{bottom:316.440033px;}
.y75{bottom:318.420043px;}
.yd6{bottom:329.940033px;}
.y97{bottom:332.820099px;}
.y66{bottom:333.720085px;}
.y32{bottom:337.140060px;}
.y74{bottom:339.120072px;}
.yd5{bottom:350.640060px;}
.y96{bottom:353.520058px;}
.y65{bottom:354.420043px;}
.y73{bottom:355.860077px;}
.y31{bottom:357.840088px;}
.yd0{bottom:361.080093px;}
.yd4{bottom:371.340088px;}
.y95{bottom:374.220085px;}
.y64{bottom:375.120072px;}
.y30{bottom:378.540047px;}
.ycf{bottom:381.780052px;}
.yd3{bottom:392.040047px;}
.y94{bottom:394.920043px;}
.y63{bottom:395.820099px;}
.y2f{bottom:399.240074px;}
.yd2{bottom:412.740074px;}
.y93{bottom:415.620072px;}
.y62{bottom:416.520058px;}
.y2e{bottom:419.940033px;}
.yd1{bottom:433.440033px;}
.y92{bottom:436.320099px;}
.y61{bottom:437.220085px;}
.y2d{bottom:440.640060px;}
.ycc{bottom:454.860077px;}
.y91{bottom:457.020058px;}
.y60{bottom:457.920043px;}
.y2c{bottom:461.340088px;}
.ycb{bottom:475.560036px;}
.y90{bottom:477.720085px;}
.y5f{bottom:478.620072px;}
.y2b{bottom:481.680039px;}
.yce{bottom:486.000068px;}
.yca{bottom:496.260064px;}
.y8f{bottom:498.420043px;}
.y5e{bottom:499.320099px;}
.y2a{bottom:502.740074px;}
.yc1{bottom:506.700096px;}
.yc5{bottom:512.640060px;}
.yc4{bottom:516.960091px;}
.y8e{bottom:519.120072px;}
.y5d{bottom:520.020058px;}
.y29{bottom:523.440033px;}
.yc0{bottom:527.400055px;}
.yc3{bottom:537.660049px;}
.y8d{bottom:539.820099px;}
.y5c{bottom:540.720085px;}
.y28{bottom:544.140060px;}
.ybf{bottom:548.100083px;}
.yc2{bottom:558.360077px;}
.y8c{bottom:560.520058px;}
.y5b{bottom:561.420043px;}
.y27{bottom:564.840088px;}
.ybe{bottom:568.800041px;}
.yc9{bottom:579.060036px;}
.y8b{bottom:581.220085px;}
.y5a{bottom:582.120072px;}
.y26{bottom:585.540047px;}
.ycd{bottom:589.500068px;}
.yc8{bottom:599.760064px;}
.y8a{bottom:601.920043px;}
.y59{bottom:602.820099px;}
.y25{bottom:606.240074px;}
.yc7{bottom:620.460091px;}
.y89{bottom:622.620072px;}
.y58{bottom:623.520058px;}
.y24{bottom:626.940033px;}
.yb8{bottom:641.880066px;}
.y88{bottom:643.320099px;}
.y57{bottom:644.220085px;}
.y23{bottom:647.640060px;}
.ybc{bottom:658.620072px;}
.yb7{bottom:662.580093px;}
.y87{bottom:664.020058px;}
.y56{bottom:664.920043px;}
.y22{bottom:668.340088px;}
.yb6{bottom:683.280052px;}
.y86{bottom:684.720085px;}
.y55{bottom:685.620072px;}
.y21{bottom:689.040081px;}
.ybb{bottom:693.720051px;}
.yb2{bottom:703.980079px;}
.y85{bottom:705.420078px;}
.y54{bottom:706.320065px;}
.y20{bottom:709.740074px;}
.yba{bottom:714.420078px;}
.yb1{bottom:724.680073px;}
.y84{bottom:726.120072px;}
.y53{bottom:727.020058px;}
.y1f{bottom:730.440067px;}
.yb9{bottom:735.120072px;}
.yb5{bottom:745.380066px;}
.y83{bottom:746.820065px;}
.y52{bottom:747.720051px;}
.y1e{bottom:751.140060px;}
.yb4{bottom:766.080059px;}
.y82{bottom:767.520058px;}
.y51{bottom:768.420078px;}
.y1d{bottom:771.480079px;}
.yb3{bottom:786.780052px;}
.y81{bottom:788.220051px;}
.y50{bottom:789.120072px;}
.y1c{bottom:791.820065px;}
.yb0{bottom:808.200061px;}
.y80{bottom:808.920078px;}
.y1b{bottom:809.100083px;}
.y4f{bottom:809.820065px;}
.yae{bottom:818.640060px;}
.y1a{bottom:826.380066px;}
.yaa{bottom:828.900055px;}
.y7f{bottom:829.620072px;}
.y4e{bottom:830.520058px;}
.yad{bottom:839.340054px;}
.y19{bottom:844.020058px;}
.ya9{bottom:849.600083px;}
.y7e{bottom:850.320065px;}
.y4d{bottom:851.220051px;}
.yac{bottom:860.040081px;}
.y18{bottom:865.080059px;}
.ya8{bottom:870.300076px;}
.y7d{bottom:871.020058px;}
.y4c{bottom:871.920078px;}
.yab{bottom:880.740074px;}
.y17{bottom:885.420078px;}
.yaf{bottom:891.000068px;}
.y7c{bottom:891.720051px;}
.y4b{bottom:892.620072px;}
.y16{bottom:906.480079px;}
.y7b{bottom:907.920078px;}
.ya6{bottom:912.060070px;}
.y4a{bottom:913.320065px;}
.ya4{bottom:922.500068px;}
.y15{bottom:926.820065px;}
.ya3{bottom:932.760064px;}
.y49{bottom:934.020058px;}
.ya7{bottom:943.200061px;}
.y14{bottom:947.880066px;}
.ya5{bottom:953.460056px;}
.y48{bottom:954.720051px;}
.y13{bottom:968.580059px;}
.y47{bottom:975.060070px;}
.y72{bottom:975.420061px;}
.y12{bottom:988.920061px;}
.ya2{bottom:995.760064px;}
.y46{bottom:996.120072px;}
.y11{bottom:1009.620072px;}
.ye3{bottom:1016.460074px;}
.y45{bottom:1016.820065px;}
.y10{bottom:1030.320065px;}
.ye2{bottom:1037.160067px;}
.y44{bottom:1037.520058px;}
.yf{bottom:1051.020058px;}
.y43{bottom:1058.220068px;}
.ye{bottom:1071.720068px;}
.y42{bottom:1078.920061px;}
.yd{bottom:1092.240074px;}
.y41{bottom:1099.620072px;}
.yc{bottom:1112.940067px;}
.y40{bottom:1120.320065px;}
.yb{bottom:1136.159694px;}
.y3f{bottom:1141.020066px;}
.ya{bottom:1160.461384px;}
.y3e{bottom:1161.720068px;}
.y1{bottom:1193.580068px;}
.h5{height:11.700027px;}
.h3{height:14.579955px;}
.hf{height:20.519989px;}
.h6{height:33.825793px;}
.hc{height:41.903609px;}
.h4{height:47.982689px;}
.h2{height:50.486271px;}
.hb{height:52.173835px;}
.h12{height:52.419938px;}
.ha{height:58.716456px;}
.h9{height:59.345979px;}
.h7{height:62.261558px;}
.h8{height:62.264057px;}
.h13{height:65.886904px;}
.h10{height:91.526253px;}
.h11{height:92.246402px;}
.hd{height:104.024048px;}
.he{height:104.024053px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w4{width:5.399987px;}
.w3{width:7.019989px;}
.w5{width:7.740004px;}
.w6{width:8.819995px;}
.w2{width:53.100015px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:84.959997px;}
.x8{left:95.580810px;}
.xb{left:98.459997px;}
.x1a{left:100.799998px;}
.x1d{left:106.019998px;}
.x56{left:108.180005px;}
.x4f{left:111.780001px;}
.x41{left:112.860000px;}
.x40{left:116.459997px;}
.x1c{left:135.360000px;}
.x16{left:138.060001px;}
.xd{left:147.060001px;}
.x18{left:187.020006px;}
.x9{left:210.242632px;}
.x44{left:230.939999px;}
.x27{left:234.900003px;}
.x29{left:238.680005px;}
.x43{left:246.599997px;}
.x28{left:251.639992px;}
.x42{left:253.800007px;}
.x1e{left:263.520006px;}
.x2a{left:266.939999px;}
.xe{left:299.879998px;}
.xc{left:314.279983px;}
.x45{left:346.139992px;}
.x3a{left:363.779983px;}
.x2b{left:364.860008px;}
.x38{left:366.839985px;}
.x49{left:368.819996px;}
.x1f{left:371.519989px;}
.x37{left:375.839985px;}
.x39{left:378.180005px;}
.x35{left:381.600014px;}
.x15{left:382.860008px;}
.x58{left:384.300007px;}
.x34{left:386.279983px;}
.x20{left:387.360008px;}
.x48{left:388.620002px;}
.x51{left:389.879998px;}
.x46{left:392.220017px;}
.x36{left:394.199993px;}
.x47{left:395.279983px;}
.x21{left:396.540012px;}
.x2c{left:399.959988px;}
.x57{left:401.759994px;}
.x50{left:402.839985px;}
.x5b{left:419.220017px;}
.x4a{left:426.240006px;}
.x2{left:437.399987px;}
.xa{left:446.399987px;}
.xf{left:472.860008px;}
.x2f{left:514.079990px;}
.x4c{left:517.860008px;}
.x23{left:520.019989px;}
.x11{left:522.180005px;}
.x2d{left:525.420010px;}
.x54{left:527.939999px;}
.x22{left:531.360008px;}
.x59{left:533.339985px;}
.x53{left:534.420010px;}
.x3b{left:536.040012px;}
.x4b{left:538.740006px;}
.x52{left:540.360008px;}
.x2e{left:541.439999px;}
.x30{left:543.779983px;}
.x5a{left:545.759994px;}
.x13{left:557.279983px;}
.x17{left:643.139992px;}
.x19{left:648.899987px;}
.x24{left:652.139992px;}
.x3c{left:654.840019px;}
.x14{left:657.000000px;}
.x32{left:660.059967px;}
.x33{left:661.860008px;}
.x10{left:663.120002px;}
.x3e{left:664.379998px;}
.x4d{left:668.879998px;}
.x31{left:670.320030px;}
.x3d{left:671.759994px;}
.x25{left:674.100014px;}
.x4e{left:679.860008px;}
.x12{left:687.240006px;}
.x26{left:697.139992px;}
.x1b{left:706.320030px;}
.x55{left:725.220017px;}
.x6{left:746.279983px;}
.x5{left:751.139992px;}
.x3{left:759.779983px;}
.x7{left:786.240006px;}
.x3f{left:799.379998px;}
.x4{left:812.879998px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.119996pt;}
.v2{vertical-align:37.119992pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.049222pt;}
.ls4{letter-spacing:4.169587pt;}
.ls2{letter-spacing:28.991334pt;}
.ls1{letter-spacing:87.679455pt;}
.ws1{word-spacing:-16.000601pt;}
.ws3{word-spacing:-13.356644pt;}
.ws0{word-spacing:-9.691242pt;}
.ws2{word-spacing:0.000000pt;}
._2a{margin-left:-4.781929pt;}
._b{margin-left:-3.670888pt;}
._c{margin-left:-2.549846pt;}
._1{margin-left:-0.962495pt;}
._0{width:1.023997pt;}
._12{width:2.482884pt;}
._11{width:3.372127pt;}
._1c{width:4.345841pt;}
._14{width:5.281448pt;}
._a{width:6.311987pt;}
._d{width:7.238313pt;}
._13{width:8.450817pt;}
._e{width:9.466856pt;}
._f{width:10.395618pt;}
._5{width:11.419429pt;}
._6{width:12.378715pt;}
._7{width:13.851020pt;}
._15{width:14.914601pt;}
._2{width:17.326118pt;}
._24{width:18.219630pt;}
._10{width:19.123558pt;}
._8{width:20.178258pt;}
._9{width:21.290050pt;}
._1b{width:22.285419pt;}
._16{width:23.658930pt;}
._23{width:24.831433pt;}
._25{width:26.107639pt;}
._26{width:27.049766pt;}
._2f{width:27.947422pt;}
._1d{width:28.915836pt;}
._1e{width:30.207179pt;}
._21{width:31.290672pt;}
._29{width:32.237964pt;}
._28{width:33.281750pt;}
._3{width:34.288788pt;}
._4{width:35.258324pt;}
._1f{width:37.119268pt;}
._20{width:38.463575pt;}
._1a{width:40.376975pt;}
._19{width:41.641314pt;}
._2e{width:44.742763pt;}
._2d{width:46.091731pt;}
._17{width:47.896340pt;}
._18{width:49.219349pt;}
._22{width:53.645265pt;}
._27{width:54.822641pt;}
._2c{width:61.619022pt;}
._2b{width:62.838360pt;}
._30{width:121.778701pt;}
._32{width:172.806491pt;}
._31{width:233.268236pt;}
._33{width:754.320287pt;}
.fs1{font-size:42.881600pt;}
.fs3{font-size:53.122000pt;}
.fs4{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;}
.ybd{bottom:3.520019pt;}
.yc6{bottom:3.840027pt;}
.y8{bottom:21.440064pt;}
.y7{bottom:34.880005pt;}
.y6{bottom:47.840088pt;}
.y3{bottom:51.360108pt;}
.y4{bottom:58.080079pt;}
.y2{bottom:69.760010pt;}
.ye1{bottom:89.600098pt;}
.y71{bottom:94.240113pt;}
.y3d{bottom:97.280030pt;}
.ye0{bottom:108.000061pt;}
.ya1{bottom:111.840088pt;}
.y70{bottom:112.640076pt;}
.y3c{bottom:115.680054pt;}
.ydf{bottom:126.080079pt;}
.ya0{bottom:130.240052pt;}
.y6f{bottom:131.040039pt;}
.y3b{bottom:134.080079pt;}
.yde{bottom:145.440064pt;}
.y9f{bottom:148.640076pt;}
.y6e{bottom:149.440064pt;}
.y3a{bottom:152.480042pt;}
.ydd{bottom:163.840088pt;}
.y9e{bottom:167.040039pt;}
.y6d{bottom:167.840088pt;}
.y39{bottom:170.560059pt;}
.ydc{bottom:182.240052pt;}
.y9d{bottom:185.440064pt;}
.y6c{bottom:186.240052pt;}
.y38{bottom:189.280030pt;}
.y7a{bottom:191.360047pt;}
.ydb{bottom:200.640076pt;}
.y9c{bottom:203.840088pt;}
.y6b{bottom:204.640076pt;}
.y37{bottom:207.680054pt;}
.y79{bottom:209.760071pt;}
.yda{bottom:219.040039pt;}
.y9b{bottom:222.240052pt;}
.y6a{bottom:223.040039pt;}
.y36{bottom:226.080079pt;}
.y78{bottom:228.160035pt;}
.yd9{bottom:237.440064pt;}
.y9a{bottom:240.640076pt;}
.y69{bottom:241.440064pt;}
.y35{bottom:244.480042pt;}
.y77{bottom:246.560059pt;}
.yd8{bottom:255.840088pt;}
.y99{bottom:259.040039pt;}
.y68{bottom:259.840088pt;}
.y34{bottom:262.880066pt;}
.y76{bottom:264.960083pt;}
.yd7{bottom:274.880066pt;}
.y98{bottom:277.440064pt;}
.y67{bottom:278.240052pt;}
.y33{bottom:281.280030pt;}
.y75{bottom:283.040039pt;}
.yd6{bottom:293.280030pt;}
.y97{bottom:295.840088pt;}
.y66{bottom:296.640076pt;}
.y32{bottom:299.680054pt;}
.y74{bottom:301.440064pt;}
.yd5{bottom:311.680054pt;}
.y96{bottom:314.240052pt;}
.y65{bottom:315.040039pt;}
.y73{bottom:316.320069pt;}
.y31{bottom:318.080079pt;}
.yd0{bottom:320.960083pt;}
.yd4{bottom:330.080079pt;}
.y95{bottom:332.640076pt;}
.y64{bottom:333.440064pt;}
.y30{bottom:336.480042pt;}
.ycf{bottom:339.360047pt;}
.yd3{bottom:348.480042pt;}
.y94{bottom:351.040039pt;}
.y63{bottom:351.840088pt;}
.y2f{bottom:354.880066pt;}
.yd2{bottom:366.880066pt;}
.y93{bottom:369.440064pt;}
.y62{bottom:370.240052pt;}
.y2e{bottom:373.280030pt;}
.yd1{bottom:385.280030pt;}
.y92{bottom:387.840088pt;}
.y61{bottom:388.640076pt;}
.y2d{bottom:391.680054pt;}
.ycc{bottom:404.320069pt;}
.y91{bottom:406.240052pt;}
.y60{bottom:407.040039pt;}
.y2c{bottom:410.080079pt;}
.ycb{bottom:422.720032pt;}
.y90{bottom:424.640076pt;}
.y5f{bottom:425.440064pt;}
.y2b{bottom:428.160035pt;}
.yce{bottom:432.000061pt;}
.yca{bottom:441.120057pt;}
.y8f{bottom:443.040039pt;}
.y5e{bottom:443.840088pt;}
.y2a{bottom:446.880066pt;}
.yc1{bottom:450.400086pt;}
.yc5{bottom:455.680054pt;}
.yc4{bottom:459.520081pt;}
.y8e{bottom:461.440064pt;}
.y5d{bottom:462.240052pt;}
.y29{bottom:465.280030pt;}
.yc0{bottom:468.800049pt;}
.yc3{bottom:477.920044pt;}
.y8d{bottom:479.840088pt;}
.y5c{bottom:480.640076pt;}
.y28{bottom:483.680054pt;}
.ybf{bottom:487.200074pt;}
.yc2{bottom:496.320069pt;}
.y8c{bottom:498.240052pt;}
.y5b{bottom:499.040039pt;}
.y27{bottom:502.080079pt;}
.ybe{bottom:505.600037pt;}
.yc9{bottom:514.720032pt;}
.y8b{bottom:516.640076pt;}
.y5a{bottom:517.440064pt;}
.y26{bottom:520.480042pt;}
.ycd{bottom:524.000061pt;}
.yc8{bottom:533.120057pt;}
.y8a{bottom:535.040039pt;}
.y59{bottom:535.840088pt;}
.y25{bottom:538.880066pt;}
.yc7{bottom:551.520081pt;}
.y89{bottom:553.440064pt;}
.y58{bottom:554.240052pt;}
.y24{bottom:557.280030pt;}
.yb8{bottom:570.560059pt;}
.y88{bottom:571.840088pt;}
.y57{bottom:572.640076pt;}
.y23{bottom:575.680054pt;}
.ybc{bottom:585.440064pt;}
.yb7{bottom:588.960083pt;}
.y87{bottom:590.240052pt;}
.y56{bottom:591.040039pt;}
.y22{bottom:594.080079pt;}
.yb6{bottom:607.360047pt;}
.y86{bottom:608.640076pt;}
.y55{bottom:609.440064pt;}
.y21{bottom:612.480072pt;}
.ybb{bottom:616.640046pt;}
.yb2{bottom:625.760071pt;}
.y85{bottom:627.040070pt;}
.y54{bottom:627.840058pt;}
.y20{bottom:630.880066pt;}
.yba{bottom:635.040070pt;}
.yb1{bottom:644.160065pt;}
.y84{bottom:645.440064pt;}
.y53{bottom:646.240052pt;}
.y1f{bottom:649.280060pt;}
.yb9{bottom:653.440064pt;}
.yb5{bottom:662.560059pt;}
.y83{bottom:663.840058pt;}
.y52{bottom:664.640046pt;}
.y1e{bottom:667.680054pt;}
.yb4{bottom:680.960053pt;}
.y82{bottom:682.240052pt;}
.y51{bottom:683.040070pt;}
.y1d{bottom:685.760071pt;}
.yb3{bottom:699.360047pt;}
.y81{bottom:700.640046pt;}
.y50{bottom:701.440064pt;}
.y1c{bottom:703.840058pt;}
.yb0{bottom:718.400055pt;}
.y80{bottom:719.040070pt;}
.y1b{bottom:719.200074pt;}
.y4f{bottom:719.840058pt;}
.yae{bottom:727.680054pt;}
.y1a{bottom:734.560059pt;}
.yaa{bottom:736.800049pt;}
.y7f{bottom:737.440064pt;}
.y4e{bottom:738.240052pt;}
.yad{bottom:746.080048pt;}
.y19{bottom:750.240052pt;}
.ya9{bottom:755.200074pt;}
.y7e{bottom:755.840058pt;}
.y4d{bottom:756.640046pt;}
.yac{bottom:764.480072pt;}
.y18{bottom:768.960053pt;}
.ya8{bottom:773.600068pt;}
.y7d{bottom:774.240052pt;}
.y4c{bottom:775.040070pt;}
.yab{bottom:782.880066pt;}
.y17{bottom:787.040070pt;}
.yaf{bottom:792.000061pt;}
.y7c{bottom:792.640046pt;}
.y4b{bottom:793.440064pt;}
.y16{bottom:805.760071pt;}
.y7b{bottom:807.040070pt;}
.ya6{bottom:810.720063pt;}
.y4a{bottom:811.840058pt;}
.ya4{bottom:820.000061pt;}
.y15{bottom:823.840058pt;}
.ya3{bottom:829.120057pt;}
.y49{bottom:830.240052pt;}
.ya7{bottom:838.400055pt;}
.y14{bottom:842.560059pt;}
.ya5{bottom:847.520050pt;}
.y48{bottom:848.640046pt;}
.y13{bottom:860.960053pt;}
.y47{bottom:866.720063pt;}
.y72{bottom:867.040055pt;}
.y12{bottom:879.040055pt;}
.ya2{bottom:885.120057pt;}
.y46{bottom:885.440064pt;}
.y11{bottom:897.440064pt;}
.ye3{bottom:903.520066pt;}
.y45{bottom:903.840058pt;}
.y10{bottom:915.840058pt;}
.ye2{bottom:921.920060pt;}
.y44{bottom:922.240052pt;}
.yf{bottom:934.240052pt;}
.y43{bottom:940.640061pt;}
.ye{bottom:952.640061pt;}
.y42{bottom:959.040055pt;}
.yd{bottom:970.880066pt;}
.y41{bottom:977.440064pt;}
.yc{bottom:989.280060pt;}
.y40{bottom:995.840058pt;}
.yb{bottom:1009.919728pt;}
.y3f{bottom:1014.240059pt;}
.ya{bottom:1031.521230pt;}
.y3e{bottom:1032.640061pt;}
.y1{bottom:1060.960061pt;}
.h5{height:10.400024pt;}
.h3{height:12.959960pt;}
.hf{height:18.239990pt;}
.h6{height:30.067372pt;}
.hc{height:37.247652pt;}
.h4{height:42.651279pt;}
.h2{height:44.876686pt;}
.hb{height:46.376742pt;}
.h12{height:46.595500pt;}
.ha{height:52.192405pt;}
.h9{height:52.751981pt;}
.h7{height:55.343607pt;}
.h8{height:55.345829pt;}
.h13{height:58.566137pt;}
.h10{height:81.356670pt;}
.h11{height:81.996802pt;}
.hd{height:92.465821pt;}
.he{height:92.465825pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w4{width:4.799988pt;}
.w3{width:6.239990pt;}
.w5{width:6.880004pt;}
.w6{width:7.839996pt;}
.w2{width:47.200013pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.519997pt;}
.x8{left:84.960720pt;}
.xb{left:87.519997pt;}
.x1a{left:89.599998pt;}
.x1d{left:94.239998pt;}
.x56{left:96.160004pt;}
.x4f{left:99.360001pt;}
.x41{left:100.320000pt;}
.x40{left:103.519997pt;}
.x1c{left:120.320000pt;}
.x16{left:122.720001pt;}
.xd{left:130.720001pt;}
.x18{left:166.240005pt;}
.x9{left:186.882339pt;}
.x44{left:205.279999pt;}
.x27{left:208.800003pt;}
.x29{left:212.160004pt;}
.x43{left:219.199997pt;}
.x28{left:223.679993pt;}
.x42{left:225.600006pt;}
.x1e{left:234.240005pt;}
.x2a{left:237.279999pt;}
.xe{left:266.559998pt;}
.xc{left:279.359985pt;}
.x45{left:307.679993pt;}
.x3a{left:323.359985pt;}
.x2b{left:324.320007pt;}
.x38{left:326.079987pt;}
.x49{left:327.839996pt;}
.x1f{left:330.239990pt;}
.x37{left:334.079987pt;}
.x39{left:336.160004pt;}
.x35{left:339.200012pt;}
.x15{left:340.320007pt;}
.x58{left:341.600006pt;}
.x34{left:343.359985pt;}
.x20{left:344.320007pt;}
.x48{left:345.440002pt;}
.x51{left:346.559998pt;}
.x46{left:348.640015pt;}
.x36{left:350.399994pt;}
.x47{left:351.359985pt;}
.x21{left:352.480011pt;}
.x2c{left:355.519989pt;}
.x57{left:357.119995pt;}
.x50{left:358.079987pt;}
.x5b{left:372.640015pt;}
.x4a{left:378.880005pt;}
.x2{left:388.799988pt;}
.xa{left:396.799988pt;}
.xf{left:420.320007pt;}
.x2f{left:456.959991pt;}
.x4c{left:460.320007pt;}
.x23{left:462.239990pt;}
.x11{left:464.160004pt;}
.x2d{left:467.040009pt;}
.x54{left:469.279999pt;}
.x22{left:472.320007pt;}
.x59{left:474.079987pt;}
.x53{left:475.040009pt;}
.x3b{left:476.480011pt;}
.x4b{left:478.880005pt;}
.x52{left:480.320007pt;}
.x2e{left:481.279999pt;}
.x30{left:483.359985pt;}
.x5a{left:485.119995pt;}
.x13{left:495.359985pt;}
.x17{left:571.679993pt;}
.x19{left:576.799988pt;}
.x24{left:579.679993pt;}
.x3c{left:582.080017pt;}
.x14{left:584.000000pt;}
.x32{left:586.719971pt;}
.x33{left:588.320007pt;}
.x10{left:589.440002pt;}
.x3e{left:590.559998pt;}
.x4d{left:594.559998pt;}
.x31{left:595.840027pt;}
.x3d{left:597.119995pt;}
.x25{left:599.200012pt;}
.x4e{left:604.320007pt;}
.x12{left:610.880005pt;}
.x26{left:619.679993pt;}
.x1b{left:627.840027pt;}
.x55{left:644.640015pt;}
.x6{left:663.359985pt;}
.x5{left:667.679993pt;}
.x3{left:675.359985pt;}
.x7{left:698.880005pt;}
.x3f{left:710.559998pt;}
.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; }
  