
    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_0d5d7b989397b06af07bb08d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.823730;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_98fe13e34d075ce4a5ae7d5c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_1139c2052ec1d134627986bb.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_a6fd7d337fb31ae343a78165.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914062;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_e152e387491e0edbdcccdf39.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.693359;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_f923cd07f8218cbd3a62ac50.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_e05694b50c88cef7562aae6a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.675781;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);}
.v4{vertical-align:-47.519991px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:12.240418px;}
.v2{vertical-align:46.800112px;}
.v3{vertical-align:95.039977px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.094301px;}
.ls2{letter-spacing:11.519221px;}
.ls4{letter-spacing:17.279077px;}
.ls3{letter-spacing:239.757007px;}
.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;}
}
.ws3{word-spacing:-95.137901px;}
.ws5{word-spacing:-95.043600px;}
.ws1{word-spacing:-79.204500px;}
.ws0{word-spacing:-23.761125px;}
.ws4{word-spacing:-23.760900px;}
.ws6{word-spacing:-19.800788px;}
.ws2{word-spacing:0.000000px;}
.ws7{word-spacing:93.175809px;}
.ws9{word-spacing:115.929559px;}
.ws8{word-spacing:150.775304px;}
.wsb{word-spacing:197.122808px;}
.wsc{word-spacing:211.522866px;}
.wsd{word-spacing:214.640536px;}
.wsa{word-spacing:593.612523px;}
._1e{margin-left:-13.731633px;}
._12{margin-left:-12.109761px;}
._5{margin-left:-10.453058px;}
._9{margin-left:-8.605329px;}
._8{margin-left:-7.101564px;}
._3{margin-left:-5.702860px;}
._1{margin-left:-3.725143px;}
._2{margin-left:-2.393570px;}
._4{margin-left:-1.155551px;}
._0{width:1.048595px;}
._10{width:2.946352px;}
._6{width:4.752035px;}
._7{width:6.449054px;}
._d{width:7.696159px;}
._e{width:9.462698px;}
._c{width:10.821233px;}
._b{width:12.450712px;}
._f{width:13.458419px;}
._11{width:14.728643px;}
._13{width:15.967470px;}
._16{width:17.972710px;}
._17{width:19.045548px;}
._14{width:25.323920px;}
._15{width:26.977171px;}
._18{width:34.384060px;}
._22{width:119.277573px;}
._19{width:249.252313px;}
._1b{width:269.053101px;}
._1a{width:405.147492px;}
._21{width:912.197459px;}
._1d{width:998.353814px;}
._20{width:1165.688753px;}
._1c{width:1342.083692px;}
._23{width:1412.494227px;}
._1f{width:1566.499024px;}
._a{width:1695.568988px;}
.fc3{color:rgb(167,93,155);}
.fc2{color:rgb(97,148,58);}
.fc1{color:rgb(1,2,2);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:63.362250px;}
.fs1{font-size:63.364500px;}
.fs4{font-size:71.282700px;}
.fs0{font-size:71.284500px;}
.fs7{font-size:79.203150px;}
.fs3{font-size:79.204500px;}
.fs6{font-size:95.043600px;}
.fs2{font-size:95.044500px;}
.y0{bottom:0.000000px;}
.y1{bottom:37.980000px;}
.y16{bottom:37.980011px;}
.y2{bottom:41.040000px;}
.y2f{bottom:41.040115px;}
.yab{bottom:95.760132px;}
.y5d{bottom:99.180039px;}
.yd1{bottom:102.420043px;}
.y9e{bottom:121.320099px;}
.y2e{bottom:121.860077px;}
.yaa{bottom:124.200096px;}
.ye2{bottom:125.280052px;}
.yd0{bottom:130.860077px;}
.yc8{bottom:134.820099px;}
.y77{bottom:136.080093px;}
.y4d{bottom:149.940033px;}
.y14{bottom:150.300000px;}
.y2d{bottom:150.300041px;}
.ye1{bottom:153.900055px;}
.y5c{bottom:155.700096px;}
.ycf{bottom:158.580093px;}
.y76{bottom:164.520058px;}
.y9c{bottom:170.460091px;}
.ya9{bottom:175.680039px;}
.y4c{bottom:178.560036px;}
.y2c{bottom:178.920043px;}
.ye0{bottom:182.340088px;}
.y5b{bottom:183.600083px;}
.yc7{bottom:192.960091px;}
.y75{bottom:193.140060px;}
.y9b{bottom:198.900055px;}
.y69{bottom:204.660049px;}
.y4b{bottom:207.000068px;}
.ye4{bottom:207.360077px;}
.y5a{bottom:211.500068px;}
.yc6{bottom:222.480079px;}
.y9a{bottom:227.520058px;}
.y68{bottom:233.100083px;}
.y4a{bottom:235.620072px;}
.y13{bottom:235.980000px;}
.y59{bottom:239.400055px;}
.y74{bottom:250.200096px;}
.yc5{bottom:252.000068px;}
.ya8{bottom:252.900055px;}
.y67{bottom:261.720085px;}
.y49{bottom:264.060036px;}
.y12{bottom:264.420000px;}
.y2b{bottom:264.420043px;}
.y58{bottom:267.480079px;}
.ydf{bottom:268.020058px;}
.y99{bottom:275.940033px;}
.y73{bottom:278.640060px;}
.ya7{bottom:278.820099px;}
.yc4{bottom:281.520058px;}
.y66{bottom:290.160049px;}
.y48{bottom:292.680039px;}
.y2a{bottom:293.040047px;}
.y57{bottom:295.380066px;}
.yde{bottom:296.460091px;}
.yce{bottom:297.360077px;}
.y98{bottom:304.380066px;}
.y72{bottom:307.260064px;}
.yc3{bottom:311.040047px;}
.y65{bottom:318.780052px;}
.y47{bottom:321.120072px;}
.y29{bottom:321.480079px;}
.y56{bottom:323.280052px;}
.ycd{bottom:325.080093px;}
.ydd{bottom:325.440033px;}
.yc2{bottom:340.560036px;}
.ydc{bottom:349.380066px;}
.y46{bottom:349.740074px;}
.y28{bottom:350.100083px;}
.y55{bottom:351.180039px;}
.y97{bottom:352.800041px;}
.ya6{bottom:358.740074px;}
.y71{bottom:359.460091px;}
.ydb{bottom:373.140060px;}
.y9d{bottom:378.180039px;}
.ye3{bottom:378.540047px;}
.y54{bottom:379.080093px;}
.ycc{bottom:380.520058px;}
.y96{bottom:381.240074px;}
.y70{bottom:383.400055px;}
.ya5{bottom:388.260064px;}
.y8d{bottom:390.960091px;}
.y64{bottom:395.640060px;}
.yc1{bottom:399.600083px;}
.y45{bottom:406.800041px;}
.y6f{bottom:407.160049px;}
.y11{bottom:407.160150px;}
.ycb{bottom:408.240074px;}
.y95{bottom:409.860077px;}
.ya4{bottom:412.200096px;}
.y63{bottom:424.080093px;}
.yc0{bottom:429.120072px;}
.y6e{bottom:430.920043px;}
.yc9{bottom:435.240074px;}
.y27{bottom:435.600083px;}
.y10{bottom:435.600150px;}
.yca{bottom:435.960091px;}
.ya3{bottom:441.720085px;}
.y8c{bottom:448.020058px;}
.yda{bottom:450.180039px;}
.ya2{bottom:453.780052px;}
.y6d{bottom:454.680039px;}
.ybf{bottom:458.640060px;}
.y44{bottom:463.860077px;}
.y26{bottom:464.220085px;}
.y94{bottom:466.920043px;}
.y62{bottom:472.500068px;}
.yd9{bottom:473.940033px;}
.ybe{bottom:488.160049px;}
.y43{bottom:492.300041px;}
.yf{bottom:492.660000px;}
.y25{bottom:492.660049px;}
.ya1{bottom:495.000068px;}
.y93{bottom:495.360077px;}
.y61{bottom:501.120072px;}
.y6c{bottom:502.200096px;}
.yd8{bottom:503.640060px;}
.y8b{bottom:505.080093px;}
.ya0{bottom:507.060036px;}
.ybd{bottom:517.680039px;}
.y42{bottom:520.920043px;}
.ye{bottom:521.280000px;}
.y53{bottom:521.280052px;}
.y92{bottom:523.980079px;}
.y6b{bottom:525.960091px;}
.yd7{bottom:527.400055px;}
.y8a{bottom:533.700096px;}
.ybc{bottom:547.380066px;}
.y41{bottom:549.360077px;}
.y24{bottom:549.720085px;}
.yd6{bottom:551.160049px;}
.y91{bottom:552.420043px;}
.ybb{bottom:576.900055px;}
.y40{bottom:577.980079px;}
.y52{bottom:578.340088px;}
.yd5{bottom:580.680039px;}
.y90{bottom:581.040047px;}
.yd4{bottom:604.440033px;}
.y60{bottom:606.420043px;}
.yd{bottom:606.780000px;}
.y51{bottom:606.780052px;}
.yd2{bottom:607.140060px;}
.yd3{bottom:633.780052px;}
.y3f{bottom:635.040047px;}
.yc{bottom:635.400000px;}
.y23{bottom:635.400055px;}
.yba{bottom:635.940033px;}
.y89{bottom:647.820099px;}
.y3e{bottom:663.480079px;}
.yb{bottom:663.840000px;}
.y22{bottom:663.840088px;}
.yb9{bottom:665.460091px;}
.y8f{bottom:666.540047px;}
.y88{bottom:677.340088px;}
.y3d{bottom:692.100083px;}
.y50{bottom:692.460056px;}
.yb8{bottom:694.980079px;}
.y87{bottom:701.100083px;}
.y84{bottom:713.160049px;}
.y3c{bottom:720.540081px;}
.y21{bottom:720.900055px;}
.yb7{bottom:724.500068px;}
.y86{bottom:724.860077px;}
.y85{bottom:748.620072px;}
.y3b{bottom:749.160049px;}
.y4f{bottom:749.520058px;}
.yb6{bottom:754.020058px;}
.y5f{bottom:777.600083px;}
.ya{bottom:777.960000px;}
.y20{bottom:777.960056px;}
.y83{bottom:778.320065px;}
.y82{bottom:802.080059px;}
.y5e{bottom:806.220051px;}
.y9{bottom:806.580000px;}
.yb5{bottom:813.060070px;}
.y81{bottom:831.600083px;}
.y3a{bottom:834.660049px;}
.y6a{bottom:835.020058px;}
.yb4{bottom:842.580059px;}
.y80{bottom:855.360077px;}
.y9f{bottom:863.280052px;}
.y8{bottom:863.640000px;}
.y4e{bottom:863.640060px;}
.yb3{bottom:872.100083px;}
.y7d{bottom:879.300076px;}
.y39{bottom:891.720051px;}
.y7{bottom:892.080000px;}
.y1f{bottom:892.080059px;}
.y7c{bottom:903.060070px;}
.y38{bottom:920.340054px;}
.y6{bottom:920.700000px;}
.y1e{bottom:920.700061px;}
.y7f{bottom:926.640060px;}
.yb2{bottom:930.240074px;}
.y37{bottom:948.780053px;}
.y5{bottom:949.140000px;}
.y1d{bottom:949.140060px;}
.y7e{bottom:950.400055px;}
.yb1{bottom:954.000068px;}
.y36{bottom:977.400072px;}
.y1c{bottom:977.760064px;}
.y7b{bottom:980.100065px;}
.y79{bottom:980.280069px;}
.yb0{bottom:1001.520058px;}
.y7a{bottom:1003.860060px;}
.y78{bottom:1004.040064px;}
.y35{bottom:1005.840070px;}
.y4{bottom:1006.200000px;}
.yaf{bottom:1025.280069px;}
.y34{bottom:1034.460074px;}
.y3{bottom:1034.820000px;}
.y1b{bottom:1034.820065px;}
.yae{bottom:1049.040064px;}
.y33{bottom:1062.900072px;}
.y1a{bottom:1063.260064px;}
.yad{bottom:1072.800058px;}
.y32{bottom:1091.520058px;}
.y19{bottom:1091.880066px;}
.yac{bottom:1096.560070px;}
.y15{bottom:1096.920000px;}
.y31{bottom:1119.960065px;}
.y18{bottom:1120.320065px;}
.y30{bottom:1148.580068px;}
.y17{bottom:1148.940067px;}
.y8e{bottom:1151.640069px;}
.h6{height:55.303923px;}
.hd{height:55.596662px;}
.h3{height:55.598636px;}
.hc{height:57.534328px;}
.h2{height:57.535781px;}
.h8{height:64.414315px;}
.h9{height:65.992187px;}
.h7{height:67.837080px;}
.he{height:69.496123px;}
.hf{height:70.346938px;}
.hb{height:83.395190px;}
.h4{height:83.395980px;}
.ha{height:84.416166px;}
.h5{height:84.416966px;}
.h11{height:116.296231px;}
.h10{height:116.296236px;}
.h13{height:117.866925px;}
.h12{height:165.386916px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:89.820000px;}
.x1b{left:103.500000px;}
.x1a{left:116.640000px;}
.x16{left:118.439999px;}
.x17{left:129.060001px;}
.xd{left:140.939999px;}
.x19{left:145.620002px;}
.x2b{left:159.840002px;}
.x1f{left:162.900003px;}
.x22{left:168.300007px;}
.x11{left:174.240006px;}
.x21{left:177.120002px;}
.x2c{left:187.919992px;}
.x12{left:202.139992px;}
.x6{left:210.780000px;}
.x5{left:214.380000px;}
.x33{left:219.960005px;}
.x10{left:224.639992px;}
.x4{left:227.700000px;}
.x3{left:231.480000px;}
.x26{left:241.560001px;}
.x7{left:246.240000px;}
.x18{left:249.659998px;}
.x8{left:252.540000px;}
.xc{left:255.960000px;}
.x1d{left:266.580008px;}
.x31{left:274.319996px;}
.x15{left:285.300007px;}
.x1e{left:303.480011px;}
.x9{left:306.360000px;}
.xa{left:310.860000px;}
.x25{left:314.459988px;}
.x20{left:321.120002px;}
.x1c{left:335.699993px;}
.x30{left:352.980011px;}
.x14{left:365.040012px;}
.xb{left:369.000000px;}
.x2f{left:384.839985px;}
.xf{left:389.160015px;}
.x23{left:393.660015px;}
.x24{left:398.879998px;}
.xe{left:410.939999px;}
.x13{left:449.279983px;}
.x29{left:452.699993px;}
.x28{left:454.860008px;}
.x2d{left:465.300007px;}
.x27{left:506.339985px;}
.x1{left:532.800000px;}
.x32{left:634.500000px;}
.x2a{left:639.539978px;}
.x2e{left:729.179970px;}
@media print{
.v4{vertical-align:-42.239992pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.880372pt;}
.v2{vertical-align:41.600100pt;}
.v3{vertical-align:84.479980pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.083823pt;}
.ls2{letter-spacing:10.239308pt;}
.ls4{letter-spacing:15.359180pt;}
.ls3{letter-spacing:213.117340pt;}
.ws3{word-spacing:-84.567023pt;}
.ws5{word-spacing:-84.483200pt;}
.ws1{word-spacing:-70.404000pt;}
.ws0{word-spacing:-21.121000pt;}
.ws4{word-spacing:-21.120800pt;}
.ws6{word-spacing:-17.600700pt;}
.ws2{word-spacing:0.000000pt;}
.ws7{word-spacing:82.822941pt;}
.ws9{word-spacing:103.048497pt;}
.ws8{word-spacing:134.022492pt;}
.wsb{word-spacing:175.220273pt;}
.wsc{word-spacing:188.020325pt;}
.wsd{word-spacing:190.791588pt;}
.wsa{word-spacing:527.655576pt;}
._1e{margin-left:-12.205896pt;}
._12{margin-left:-10.764232pt;}
._5{margin-left:-9.291607pt;}
._9{margin-left:-7.649181pt;}
._8{margin-left:-6.312501pt;}
._3{margin-left:-5.069209pt;}
._1{margin-left:-3.311238pt;}
._2{margin-left:-2.127618pt;}
._4{margin-left:-1.027156pt;}
._0{width:0.932084pt;}
._10{width:2.618979pt;}
._6{width:4.224031pt;}
._7{width:5.732493pt;}
._d{width:6.841030pt;}
._e{width:8.411287pt;}
._c{width:9.618874pt;}
._b{width:11.067299pt;}
._f{width:11.963039pt;}
._11{width:13.092127pt;}
._13{width:14.193307pt;}
._16{width:15.975742pt;}
._17{width:16.929376pt;}
._14{width:22.510151pt;}
._15{width:23.979708pt;}
._18{width:30.563609pt;}
._22{width:106.024510pt;}
._19{width:221.557612pt;}
._1b{width:239.158312pt;}
._1a{width:360.131104pt;}
._21{width:810.842186pt;}
._1d{width:887.425613pt;}
._20{width:1036.167780pt;}
._1c{width:1192.963282pt;}
._23{width:1255.550424pt;}
._1f{width:1392.443577pt;}
._a{width:1507.172434pt;}
.fs5{font-size:56.322000pt;}
.fs1{font-size:56.324000pt;}
.fs4{font-size:63.362400pt;}
.fs0{font-size:63.364000pt;}
.fs7{font-size:70.402800pt;}
.fs3{font-size:70.404000pt;}
.fs6{font-size:84.483200pt;}
.fs2{font-size:84.484000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:33.760000pt;}
.y16{bottom:33.760010pt;}
.y2{bottom:36.480000pt;}
.y2f{bottom:36.480103pt;}
.yab{bottom:85.120118pt;}
.y5d{bottom:88.160035pt;}
.yd1{bottom:91.040039pt;}
.y9e{bottom:107.840088pt;}
.y2e{bottom:108.320069pt;}
.yaa{bottom:110.400086pt;}
.ye2{bottom:111.360047pt;}
.yd0{bottom:116.320069pt;}
.yc8{bottom:119.840088pt;}
.y77{bottom:120.960083pt;}
.y4d{bottom:133.280030pt;}
.y14{bottom:133.600000pt;}
.y2d{bottom:133.600037pt;}
.ye1{bottom:136.800049pt;}
.y5c{bottom:138.400086pt;}
.ycf{bottom:140.960083pt;}
.y76{bottom:146.240052pt;}
.y9c{bottom:151.520081pt;}
.ya9{bottom:156.160035pt;}
.y4c{bottom:158.720032pt;}
.y2c{bottom:159.040039pt;}
.ye0{bottom:162.080079pt;}
.y5b{bottom:163.200074pt;}
.yc7{bottom:171.520081pt;}
.y75{bottom:171.680054pt;}
.y9b{bottom:176.800049pt;}
.y69{bottom:181.920044pt;}
.y4b{bottom:184.000061pt;}
.ye4{bottom:184.320069pt;}
.y5a{bottom:188.000061pt;}
.yc6{bottom:197.760071pt;}
.y9a{bottom:202.240052pt;}
.y68{bottom:207.200074pt;}
.y4a{bottom:209.440064pt;}
.y13{bottom:209.760000pt;}
.y59{bottom:212.800049pt;}
.y74{bottom:222.400086pt;}
.yc5{bottom:224.000061pt;}
.ya8{bottom:224.800049pt;}
.y67{bottom:232.640076pt;}
.y49{bottom:234.720032pt;}
.y12{bottom:235.040000pt;}
.y2b{bottom:235.040039pt;}
.y58{bottom:237.760071pt;}
.ydf{bottom:238.240052pt;}
.y99{bottom:245.280030pt;}
.y73{bottom:247.680054pt;}
.ya7{bottom:247.840088pt;}
.yc4{bottom:250.240052pt;}
.y66{bottom:257.920044pt;}
.y48{bottom:260.160035pt;}
.y2a{bottom:260.480042pt;}
.y57{bottom:262.560059pt;}
.yde{bottom:263.520081pt;}
.yce{bottom:264.320069pt;}
.y98{bottom:270.560059pt;}
.y72{bottom:273.120057pt;}
.yc3{bottom:276.480042pt;}
.y65{bottom:283.360047pt;}
.y47{bottom:285.440064pt;}
.y29{bottom:285.760071pt;}
.y56{bottom:287.360047pt;}
.ycd{bottom:288.960083pt;}
.ydd{bottom:289.280030pt;}
.yc2{bottom:302.720032pt;}
.ydc{bottom:310.560059pt;}
.y46{bottom:310.880066pt;}
.y28{bottom:311.200074pt;}
.y55{bottom:312.160035pt;}
.y97{bottom:313.600037pt;}
.ya6{bottom:318.880066pt;}
.y71{bottom:319.520081pt;}
.ydb{bottom:331.680054pt;}
.y9d{bottom:336.160035pt;}
.ye3{bottom:336.480042pt;}
.y54{bottom:336.960083pt;}
.ycc{bottom:338.240052pt;}
.y96{bottom:338.880066pt;}
.y70{bottom:340.800049pt;}
.ya5{bottom:345.120057pt;}
.y8d{bottom:347.520081pt;}
.y64{bottom:351.680054pt;}
.yc1{bottom:355.200074pt;}
.y45{bottom:361.600037pt;}
.y6f{bottom:361.920044pt;}
.y11{bottom:361.920133pt;}
.ycb{bottom:362.880066pt;}
.y95{bottom:364.320069pt;}
.ya4{bottom:366.400086pt;}
.y63{bottom:376.960083pt;}
.yc0{bottom:381.440064pt;}
.y6e{bottom:383.040039pt;}
.yc9{bottom:386.880066pt;}
.y27{bottom:387.200074pt;}
.y10{bottom:387.200133pt;}
.yca{bottom:387.520081pt;}
.ya3{bottom:392.640076pt;}
.y8c{bottom:398.240052pt;}
.yda{bottom:400.160035pt;}
.ya2{bottom:403.360047pt;}
.y6d{bottom:404.160035pt;}
.ybf{bottom:407.680054pt;}
.y44{bottom:412.320069pt;}
.y26{bottom:412.640076pt;}
.y94{bottom:415.040039pt;}
.y62{bottom:420.000061pt;}
.yd9{bottom:421.280030pt;}
.ybe{bottom:433.920044pt;}
.y43{bottom:437.600037pt;}
.yf{bottom:437.920000pt;}
.y25{bottom:437.920044pt;}
.ya1{bottom:440.000061pt;}
.y93{bottom:440.320069pt;}
.y61{bottom:445.440064pt;}
.y6c{bottom:446.400086pt;}
.yd8{bottom:447.680054pt;}
.y8b{bottom:448.960083pt;}
.ya0{bottom:450.720032pt;}
.ybd{bottom:460.160035pt;}
.y42{bottom:463.040039pt;}
.ye{bottom:463.360000pt;}
.y53{bottom:463.360047pt;}
.y92{bottom:465.760071pt;}
.y6b{bottom:467.520081pt;}
.yd7{bottom:468.800049pt;}
.y8a{bottom:474.400086pt;}
.ybc{bottom:486.560059pt;}
.y41{bottom:488.320069pt;}
.y24{bottom:488.640076pt;}
.yd6{bottom:489.920044pt;}
.y91{bottom:491.040039pt;}
.ybb{bottom:512.800049pt;}
.y40{bottom:513.760071pt;}
.y52{bottom:514.080079pt;}
.yd5{bottom:516.160035pt;}
.y90{bottom:516.480042pt;}
.yd4{bottom:537.280030pt;}
.y60{bottom:539.040039pt;}
.yd{bottom:539.360000pt;}
.y51{bottom:539.360047pt;}
.yd2{bottom:539.680054pt;}
.yd3{bottom:563.360047pt;}
.y3f{bottom:564.480042pt;}
.yc{bottom:564.800000pt;}
.y23{bottom:564.800049pt;}
.yba{bottom:565.280030pt;}
.y89{bottom:575.840088pt;}
.y3e{bottom:589.760071pt;}
.yb{bottom:590.080000pt;}
.y22{bottom:590.080079pt;}
.yb9{bottom:591.520081pt;}
.y8f{bottom:592.480042pt;}
.y88{bottom:602.080079pt;}
.y3d{bottom:615.200074pt;}
.y50{bottom:615.520050pt;}
.yb8{bottom:617.760071pt;}
.y87{bottom:623.200074pt;}
.y84{bottom:633.920044pt;}
.y3c{bottom:640.480072pt;}
.y21{bottom:640.800049pt;}
.yb7{bottom:644.000061pt;}
.y86{bottom:644.320069pt;}
.y85{bottom:665.440064pt;}
.y3b{bottom:665.920044pt;}
.y4f{bottom:666.240052pt;}
.yb6{bottom:670.240052pt;}
.y5f{bottom:691.200074pt;}
.ya{bottom:691.520000pt;}
.y20{bottom:691.520050pt;}
.y83{bottom:691.840058pt;}
.y82{bottom:712.960053pt;}
.y5e{bottom:716.640046pt;}
.y9{bottom:716.960000pt;}
.yb5{bottom:722.720063pt;}
.y81{bottom:739.200074pt;}
.y3a{bottom:741.920044pt;}
.y6a{bottom:742.240052pt;}
.yb4{bottom:748.960053pt;}
.y80{bottom:760.320069pt;}
.y9f{bottom:767.360047pt;}
.y8{bottom:767.680000pt;}
.y4e{bottom:767.680054pt;}
.yb3{bottom:775.200074pt;}
.y7d{bottom:781.600068pt;}
.y39{bottom:792.640046pt;}
.y7{bottom:792.960000pt;}
.y1f{bottom:792.960053pt;}
.y7c{bottom:802.720063pt;}
.y38{bottom:818.080048pt;}
.y6{bottom:818.400000pt;}
.y1e{bottom:818.400055pt;}
.y7f{bottom:823.680054pt;}
.yb2{bottom:826.880066pt;}
.y37{bottom:843.360047pt;}
.y5{bottom:843.680000pt;}
.y1d{bottom:843.680054pt;}
.y7e{bottom:844.800049pt;}
.yb1{bottom:848.000061pt;}
.y36{bottom:868.800064pt;}
.y1c{bottom:869.120057pt;}
.y7b{bottom:871.200058pt;}
.y79{bottom:871.360062pt;}
.yb0{bottom:890.240052pt;}
.y7a{bottom:892.320054pt;}
.y78{bottom:892.480057pt;}
.y35{bottom:894.080063pt;}
.y4{bottom:894.400000pt;}
.yaf{bottom:911.360062pt;}
.y34{bottom:919.520066pt;}
.y3{bottom:919.840000pt;}
.y1b{bottom:919.840058pt;}
.yae{bottom:932.480057pt;}
.y33{bottom:944.800064pt;}
.y1a{bottom:945.120057pt;}
.yad{bottom:953.600052pt;}
.y32{bottom:970.240052pt;}
.y19{bottom:970.560059pt;}
.yac{bottom:974.720063pt;}
.y15{bottom:975.040000pt;}
.y31{bottom:995.520058pt;}
.y18{bottom:995.840058pt;}
.y30{bottom:1020.960061pt;}
.y17{bottom:1021.280060pt;}
.y8e{bottom:1023.680062pt;}
.h6{height:49.159043pt;}
.hd{height:49.419255pt;}
.h3{height:49.421010pt;}
.hc{height:51.141625pt;}
.h2{height:51.142916pt;}
.h8{height:57.257169pt;}
.h9{height:58.659722pt;}
.h7{height:60.299627pt;}
.he{height:61.774332pt;}
.hf{height:62.530612pt;}
.hb{height:74.129058pt;}
.h4{height:74.129760pt;}
.ha{height:75.036592pt;}
.h5{height:75.037303pt;}
.h11{height:103.374428pt;}
.h10{height:103.374432pt;}
.h13{height:104.770600pt;}
.h12{height:147.010592pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:79.840000pt;}
.x1b{left:92.000000pt;}
.x1a{left:103.680000pt;}
.x16{left:105.279999pt;}
.x17{left:114.720001pt;}
.xd{left:125.279999pt;}
.x19{left:129.440002pt;}
.x2b{left:142.080002pt;}
.x1f{left:144.800003pt;}
.x22{left:149.600006pt;}
.x11{left:154.880005pt;}
.x21{left:157.440002pt;}
.x2c{left:167.039993pt;}
.x12{left:179.679993pt;}
.x6{left:187.360000pt;}
.x5{left:190.560000pt;}
.x33{left:195.520004pt;}
.x10{left:199.679993pt;}
.x4{left:202.400000pt;}
.x3{left:205.760000pt;}
.x26{left:214.720001pt;}
.x7{left:218.880000pt;}
.x18{left:221.919998pt;}
.x8{left:224.480000pt;}
.xc{left:227.520000pt;}
.x1d{left:236.960007pt;}
.x31{left:243.839996pt;}
.x15{left:253.600006pt;}
.x1e{left:269.760010pt;}
.x9{left:272.320000pt;}
.xa{left:276.320000pt;}
.x25{left:279.519989pt;}
.x20{left:285.440002pt;}
.x1c{left:298.399994pt;}
.x30{left:313.760010pt;}
.x14{left:324.480011pt;}
.xb{left:328.000000pt;}
.x2f{left:342.079987pt;}
.xf{left:345.920013pt;}
.x23{left:349.920013pt;}
.x24{left:354.559998pt;}
.xe{left:365.279999pt;}
.x13{left:399.359985pt;}
.x29{left:402.399994pt;}
.x28{left:404.320007pt;}
.x2d{left:413.600006pt;}
.x27{left:450.079987pt;}
.x1{left:473.600000pt;}
.x32{left:564.000000pt;}
.x2a{left:568.479980pt;}
.x2e{left:648.159973pt;}
}




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