
    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_3db3d04d1993d153529dea52.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_c3dcd815d32e33b8db8653c8.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_58e2c53aa24158b55a82ef1c.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_18c9939992976e31627f96f3.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_f7cef1564a34c265c9e6e940.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_f253eda979daeb9ad72587f8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.893555;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;}
.m2{transform:matrix(0.240947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240947,0.000000,0.000000,0.250000,0,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);}
.v3{vertical-align:-25.920041px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:12.240418px;}
.v2{vertical-align:30.960022px;}
.v4{vertical-align:60.480014px;}
.ls0{letter-spacing:0.000000px;}
.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:-79.204500px;}
.ws0{word-spacing:-23.761125px;}
.ws3{word-spacing:-23.760900px;}
.ws5{word-spacing:-19.800788px;}
.ws6{word-spacing:-11.520450px;}
.ws2{word-spacing:0.000000px;}
.ws4{word-spacing:489.160356px;}
.ws7{word-spacing:1002.707363px;}
._32{margin-left:-23.482184px;}
._10{margin-left:-14.547990px;}
._6{margin-left:-12.546159px;}
._31{margin-left:-10.454796px;}
._3{margin-left:-9.124272px;}
._d{margin-left:-7.249424px;}
._4{margin-left:-5.656478px;}
._2{margin-left:-4.563467px;}
._7{margin-left:-3.427121px;}
._1{margin-left:-2.369907px;}
._5{margin-left:-1.039308px;}
._0{width:1.048595px;}
._b{width:2.230728px;}
._1a{width:3.579781px;}
._f{width:5.373056px;}
._e{width:6.812600px;}
._8{width:8.634318px;}
._9{width:9.963350px;}
._c{width:11.125318px;}
._a{width:13.000629px;}
._1b{width:14.106142px;}
._1c{width:15.781196px;}
._33{width:16.927148px;}
._5b{width:18.013471px;}
._55{width:39.627745px;}
._3b{width:44.171376px;}
._3a{width:48.312999px;}
._57{width:64.827777px;}
._53{width:78.702503px;}
._39{width:160.586266px;}
._56{width:169.688682px;}
._1e{width:173.254836px;}
._45{width:188.817300px;}
._20{width:222.852913px;}
._47{width:237.057304px;}
._4d{width:285.566417px;}
._2a{width:293.357844px;}
._59{width:297.753004px;}
._54{width:317.408890px;}
._28{width:323.280210px;}
._4c{width:326.457792px;}
._51{width:335.022776px;}
._2b{width:355.724372px;}
._22{width:393.113758px;}
._35{width:394.338543px;}
._1f{width:396.483269px;}
._36{width:404.681307px;}
._48{width:405.815215px;}
._4a{width:434.995194px;}
._43{width:444.285348px;}
._1d{width:459.314155px;}
._30{width:461.703296px;}
._11{width:463.246456px;}
._37{width:464.569847px;}
._5c{width:477.917145px;}
._38{width:479.223162px;}
._2d{width:484.448497px;}
._49{width:515.478233px;}
._3e{width:517.128381px;}
._41{width:520.091170px;}
._19{width:525.393789px;}
._42{width:530.291145px;}
._2f{width:536.097632px;}
._61{width:539.882318px;}
._4f{width:540.916742px;}
._29{width:542.436285px;}
._2e{width:550.324187px;}
._3c{width:551.959130px;}
._58{width:557.224906px;}
._52{width:582.803523px;}
._3d{width:586.410832px;}
._2c{width:588.286150px;}
._50{width:614.535078px;}
._5d{width:639.032647px;}
._21{width:677.979518px;}
._44{width:687.439018px;}
._24{width:696.812339px;}
._26{width:709.590186px;}
._23{width:717.661722px;}
._25{width:728.661673px;}
._46{width:735.752940px;}
._16{width:757.603324px;}
._5a{width:760.833785px;}
._27{width:768.630163px;}
._62{width:786.551766px;}
._40{width:809.908305px;}
._4e{width:827.362111px;}
._60{width:844.641254px;}
._14{width:845.914836px;}
._17{width:1127.817801px;}
._34{width:1134.828740px;}
._18{width:1139.157952px;}
._4b{width:1162.703604px;}
._3f{width:1226.444607px;}
._5e{width:1300.954308px;}
._15{width:1365.238529px;}
._5f{width:1546.806817px;}
._13{width:1684.555696px;}
._12{width:1697.938895px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:46.081800px;}
.fs8{font-size:55.442250px;}
.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;}
.fsa{font-size:95.039814px;}
.fs6{font-size:95.043600px;}
.fs2{font-size:95.044500px;}
.y0{bottom:0.000000px;}
.y1{bottom:37.980000px;}
.y1f{bottom:37.980011px;}
.y2{bottom:41.040000px;}
.y33{bottom:41.040115px;}
.y90{bottom:97.920043px;}
.ya7{bottom:115.200096px;}
.yd7{bottom:118.620072px;}
.y8e{bottom:121.320099px;}
.y8f{bottom:128.160049px;}
.ya6{bottom:144.720085px;}
.y32{bottom:145.620072px;}
.y82{bottom:149.940033px;}
.y1d{bottom:163.800150px;}
.y31{bottom:170.460091px;}
.ya5{bottom:174.060036px;}
.y9a{bottom:178.382637px;}
.y81{bottom:178.560036px;}
.y30{bottom:199.980079px;}
.y80{bottom:207.000068px;}
.y99{bottom:207.002129px;}
.y75{bottom:207.360077px;}
.y5b{bottom:223.380066px;}
.y2f{bottom:229.500068px;}
.ya4{bottom:232.740074px;}
.ye7{bottom:235.440033px;}
.y98{bottom:235.447712px;}
.y7f{bottom:235.620072px;}
.y74{bottom:235.980079px;}
.y1c{bottom:235.980150px;}
.ye5{bottom:248.040047px;}
.y5a{bottom:252.000068px;}
.y2e{bottom:259.200096px;}
.ya3{bottom:261.360077px;}
.y97{bottom:264.059982px;}
.y7e{bottom:264.060036px;}
.y1b{bottom:264.420000px;}
.ye4{bottom:276.660049px;}
.y59{bottom:280.440033px;}
.y2d{bottom:288.720085px;}
.ya2{bottom:289.800041px;}
.y96{bottom:292.505493px;}
.y7d{bottom:292.680039px;}
.y73{bottom:293.040047px;}
.ye3{bottom:305.100083px;}
.ycb{bottom:306.720085px;}
.y58{bottom:309.060036px;}
.yb2{bottom:316.980079px;}
.y2c{bottom:318.240074px;}
.ya1{bottom:318.420043px;}
.y7c{bottom:321.120072px;}
.y95{bottom:321.125056px;}
.y72{bottom:321.480079px;}
.ye2{bottom:333.720085px;}
.yca{bottom:335.340088px;}
.y57{bottom:337.500068px;}
.yb1{bottom:345.420043px;}
.ya0{bottom:346.860077px;}
.y2b{bottom:347.940033px;}
.y94{bottom:349.560036px;}
.y7b{bottom:349.740074px;}
.y71{bottom:350.100083px;}
.ye1{bottom:362.160049px;}
.yc9{bottom:363.960091px;}
.y56{bottom:366.120072px;}
.y3e{bottom:370.260064px;}
.yb0{bottom:374.040047px;}
.y9f{bottom:375.480079px;}
.y2a{bottom:378.180039px;}
.y1a{bottom:378.540000px;}
.y70{bottom:378.540047px;}
.ye0{bottom:390.780052px;}
.yc8{bottom:392.400055px;}
.y3d{bottom:398.880066px;}
.yaf{bottom:402.480079px;}
.y9e{bottom:403.920043px;}
.y93{bottom:406.620072px;}
.y7a{bottom:406.800041px;}
.y6f{bottom:407.160049px;}
.y19{bottom:407.160150px;}
.yc7{bottom:421.020058px;}
.y55{bottom:423.180039px;}
.yae{bottom:431.100083px;}
.y9d{bottom:432.540047px;}
.y29{bottom:435.240074px;}
.y6e{bottom:435.600083px;}
.y18{bottom:435.600150px;}
.ydf{bottom:447.840088px;}
.yc6{bottom:449.460091px;}
.y54{bottom:451.620072px;}
.yad{bottom:459.540047px;}
.y28{bottom:463.680039px;}
.y79{bottom:463.860077px;}
.y6d{bottom:464.220085px;}
.y17{bottom:464.220150px;}
.yde{bottom:476.280052px;}
.yc5{bottom:478.080093px;}
.y53{bottom:480.240074px;}
.yac{bottom:488.160049px;}
.y27{bottom:492.300041px;}
.y16{bottom:492.660000px;}
.ydd{bottom:504.900055px;}
.yc4{bottom:506.520058px;}
.y52{bottom:508.680039px;}
.y9c{bottom:518.040047px;}
.y26{bottom:520.740074px;}
.y8c{bottom:520.920043px;}
.y15{bottom:521.280000px;}
.y6c{bottom:521.280052px;}
.ydc{bottom:533.340088px;}
.yc3{bottom:535.140060px;}
.y51{bottom:537.300041px;}
.yab{bottom:545.220085px;}
.y9b{bottom:547.560036px;}
.y25{bottom:549.360077px;}
.y14{bottom:549.720000px;}
.yc2{bottom:563.580093px;}
.yaa{bottom:574.740074px;}
.y24{bottom:577.800041px;}
.y8b{bottom:577.980079px;}
.y13{bottom:578.340000px;}
.ydb{bottom:590.400055px;}
.y50{bottom:594.360077px;}
.y78{bottom:601.740074px;}
.yd6{bottom:603.540047px;}
.ya9{bottom:603.900055px;}
.y8d{bottom:606.420043px;}
.y12{bottom:606.780000px;}
.y6b{bottom:606.780052px;}
.yda{bottom:619.020058px;}
.yc1{bottom:620.640060px;}
.y4f{bottom:622.800041px;}
.y77{bottom:625.500068px;}
.yd5{bottom:632.160049px;}
.ya8{bottom:633.240074px;}
.y23{bottom:634.860077px;}
.y8a{bottom:635.040047px;}
.y11{bottom:635.400000px;}
.y6a{bottom:635.400055px;}
.y76{bottom:649.260064px;}
.y4e{bottom:651.420043px;}
.yd4{bottom:660.600083px;}
.y89{bottom:663.480079px;}
.y69{bottom:663.840088px;}
.yd9{bottom:676.080093px;}
.yc0{bottom:677.700096px;}
.yd3{bottom:689.220051px;}
.y92{bottom:691.920078px;}
.y88{bottom:692.100083px;}
.y10{bottom:692.460000px;}
.y68{bottom:692.460056px;}
.yd8{bottom:699.840054px;}
.ybf{bottom:706.320065px;}
.y4d{bottom:708.480079px;}
.ye6{bottom:715.860077px;}
.yd2{bottom:717.660049px;}
.y22{bottom:720.540081px;}
.yf{bottom:720.900000px;}
.y67{bottom:720.900055px;}
.yd1{bottom:746.280052px;}
.y21{bottom:748.980079px;}
.y87{bottom:749.160049px;}
.ye{bottom:749.520000px;}
.y4c{bottom:756.900055px;}
.yd0{bottom:774.720051px;}
.y20{bottom:777.600083px;}
.yd{bottom:777.960000px;}
.y66{bottom:777.960056px;}
.y4b{bottom:780.660049px;}
.ybe{bottom:782.280052px;}
.y4a{bottom:805.320065px;}
.y91{bottom:806.040081px;}
.y86{bottom:806.220051px;}
.yc{bottom:806.580000px;}
.y65{bottom:806.580059px;}
.y85{bottom:834.660049px;}
.yb{bottom:835.020000px;}
.y49{bottom:835.020058px;}
.ybd{bottom:854.640060px;}
.y84{bottom:863.280052px;}
.y64{bottom:863.640060px;}
.y48{bottom:864.540081px;}
.ycf{bottom:884.160049px;}
.ybc{bottom:884.340054px;}
.y3c{bottom:891.720051px;}
.ya{bottom:892.080000px;}
.y63{bottom:892.080059px;}
.y47{bottom:894.060070px;}
.yce{bottom:907.920078px;}
.ybb{bottom:914.040081px;}
.y3b{bottom:920.340054px;}
.y9{bottom:920.700000px;}
.y62{bottom:920.700061px;}
.y46{bottom:923.760064px;}
.ycd{bottom:931.680073px;}
.yba{bottom:943.560070px;}
.y3a{bottom:948.780053px;}
.y8{bottom:949.140000px;}
.y61{bottom:949.140060px;}
.y45{bottom:953.280053px;}
.ycc{bottom:955.440067px;}
.yb9{bottom:973.080059px;}
.y39{bottom:977.400072px;}
.y7{bottom:977.760000px;}
.y44{bottom:982.800058px;}
.yb8{bottom:1002.780069px;}
.y38{bottom:1005.840070px;}
.y60{bottom:1006.200061px;}
.y43{bottom:1012.500068px;}
.yb7{bottom:1032.480063px;}
.y37{bottom:1034.460074px;}
.y6{bottom:1034.820000px;}
.y5f{bottom:1034.820065px;}
.y42{bottom:1042.020058px;}
.yb6{bottom:1062.000068px;}
.y36{bottom:1062.900072px;}
.y5e{bottom:1063.260064px;}
.y1e{bottom:1071.540000px;}
.y41{bottom:1071.540064px;}
.y83{bottom:1091.520058px;}
.yb5{bottom:1091.700061px;}
.y5{bottom:1091.880000px;}
.y5d{bottom:1091.880066px;}
.y40{bottom:1101.240074px;}
.y35{bottom:1119.960065px;}
.y4{bottom:1120.320000px;}
.yb4{bottom:1121.400064px;}
.y34{bottom:1148.580068px;}
.y3{bottom:1148.940000px;}
.y5c{bottom:1148.940067px;}
.y3f{bottom:1151.280069px;}
.yb3{bottom:1151.640069px;}
.h11{height:43.576083px;}
.h18{height:54.993593px;}
.h7{height:55.303923px;}
.h10{height:55.596662px;}
.h3{height:55.598636px;}
.hf{height:57.534328px;}
.h2{height:57.535781px;}
.ha{height:64.414315px;}
.h9{height:65.992187px;}
.h6{height:65.992812px;}
.h8{height:67.837080px;}
.he{height:69.496123px;}
.hd{height:70.346938px;}
.h17{height:71.066821px;}
.h16{height:71.066952px;}
.h14{height:71.066956px;}
.h12{height:83.391868px;}
.hc{height:83.395190px;}
.h5{height:83.395980px;}
.hb{height:84.416166px;}
.h4{height:84.416966px;}
.h15{height:130.826947px;}
.h13{height:130.826952px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:89.820000px;}
.x8{left:90.900000px;}
.x3{left:92.880000px;}
.x32{left:95.400003px;}
.x7{left:99.360000px;}
.x33{left:109.799998px;}
.x36{left:129.959997px;}
.x1d{left:132.120002px;}
.xd{left:140.939999px;}
.x1e{left:144.539996px;}
.x11{left:150.120002px;}
.x38{left:163.259994px;}
.x2a{left:170.639992px;}
.x12{left:174.060001px;}
.x5{left:178.740000px;}
.x1f{left:181.800007px;}
.x31{left:183.960005px;}
.x29{left:187.740006px;}
.x13{left:189.539996px;}
.x1c{left:202.139992px;}
.x2b{left:207.000000px;}
.x15{left:210.599997px;}
.x2f{left:215.819996px;}
.x6{left:217.260000px;}
.x14{left:220.500000px;}
.x10{left:222.479994px;}
.xe{left:224.639992px;}
.x27{left:228.060001px;}
.x17{left:231.659998px;}
.x23{left:236.699993px;}
.x28{left:242.639992px;}
.x26{left:245.159998px;}
.x35{left:246.780001px;}
.xc{left:257.220000px;}
.x19{left:258.479994px;}
.x2e{left:260.460005px;}
.x25{left:262.259994px;}
.x3b{left:275.400003px;}
.x3c{left:279.180005px;}
.x9{left:293.040000px;}
.x2c{left:300.600013px;}
.x24{left:305.819996px;}
.x39{left:309.959988px;}
.x20{left:318.060001px;}
.x4{left:329.580000px;}
.x34{left:336.240006px;}
.x2d{left:340.199993px;}
.x21{left:355.139992px;}
.xb{left:356.760000px;}
.x37{left:360.899987px;}
.xa{left:369.000000px;}
.xf{left:389.160015px;}
.x16{left:416.160015px;}
.x3e{left:457.920010px;}
.x3a{left:487.800007px;}
.x3d{left:507.420010px;}
.x40{left:527.399987px;}
.x1{left:533.340000px;}
.x1b{left:546.300007px;}
.x22{left:584.820030px;}
.x18{left:681.480011px;}
.x3f{left:692.279983px;}
.x1a{left:706.320030px;}
.x30{left:802.080025px;}
@media print{
.v3{vertical-align:-23.040036pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.880372pt;}
.v2{vertical-align:27.520020pt;}
.v4{vertical-align:53.760012pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-70.404000pt;}
.ws0{word-spacing:-21.121000pt;}
.ws3{word-spacing:-21.120800pt;}
.ws5{word-spacing:-17.600700pt;}
.ws6{word-spacing:-10.240400pt;}
.ws2{word-spacing:0.000000pt;}
.ws4{word-spacing:434.809205pt;}
.ws7{word-spacing:891.295434pt;}
._32{margin-left:-20.873052pt;}
._10{margin-left:-12.931547pt;}
._6{margin-left:-11.152141pt;}
._31{margin-left:-9.293152pt;}
._3{margin-left:-8.110464pt;}
._d{margin-left:-6.443933pt;}
._4{margin-left:-5.027981pt;}
._2{margin-left:-4.056415pt;}
._7{margin-left:-3.046330pt;}
._1{margin-left:-2.106584pt;}
._5{margin-left:-0.923829pt;}
._0{width:0.932084pt;}
._b{width:1.982869pt;}
._1a{width:3.182028pt;}
._f{width:4.776049pt;}
._e{width:6.055644pt;}
._8{width:7.674949pt;}
._9{width:8.856311pt;}
._c{width:9.889171pt;}
._a{width:11.556115pt;}
._1b{width:12.538793pt;}
._1c{width:14.027730pt;}
._33{width:15.046354pt;}
._5b{width:16.011974pt;}
._55{width:35.224662pt;}
._3b{width:39.263445pt;}
._3a{width:42.944888pt;}
._57{width:57.624690pt;}
._53{width:69.957780pt;}
._39{width:142.743348pt;}
._56{width:150.834384pt;}
._1e{width:154.004299pt;}
._45{width:167.837600pt;}
._20{width:198.091478pt;}
._47{width:210.717604pt;}
._4d{width:253.836815pt;}
._2a{width:260.762528pt;}
._59{width:264.669337pt;}
._54{width:282.141236pt;}
._28{width:287.360187pt;}
._4c{width:290.184704pt;}
._51{width:297.798024pt;}
._2b{width:316.199442pt;}
._22{width:349.434452pt;}
._35{width:350.523150pt;}
._1f{width:352.429573pt;}
._36{width:359.716717pt;}
._48{width:360.724635pt;}
._4a{width:386.662395pt;}
._43{width:394.920309pt;}
._1d{width:408.279249pt;}
._30{width:410.402930pt;}
._11{width:411.774628pt;}
._37{width:412.950975pt;}
._5c{width:424.815240pt;}
._38{width:425.976144pt;}
._2d{width:430.620886pt;}
._49{width:458.202873pt;}
._3e{width:459.669672pt;}
._41{width:462.303262pt;}
._19{width:467.016701pt;}
._42{width:471.369906pt;}
._2f{width:476.531228pt;}
._61{width:479.895394pt;}
._4f{width:480.814882pt;}
._29{width:482.165587pt;}
._2e{width:489.177055pt;}
._3c{width:490.630338pt;}
._58{width:495.311027pt;}
._52{width:518.047576pt;}
._3d{width:521.254073pt;}
._2c{width:522.921022pt;}
._50{width:546.253403pt;}
._5d{width:568.029019pt;}
._21{width:602.648461pt;}
._44{width:611.056905pt;}
._24{width:619.388746pt;}
._26{width:630.746832pt;}
._23{width:637.921530pt;}
._25{width:647.699265pt;}
._46{width:654.002613pt;}
._16{width:673.425177pt;}
._5a{width:676.296698pt;}
._27{width:683.226812pt;}
._62{width:699.157126pt;}
._40{width:719.918494pt;}
._4e{width:735.432988pt;}
._60{width:750.792226pt;}
._14{width:751.924299pt;}
._17{width:1002.504712pt;}
._34{width:1008.736658pt;}
._18{width:1012.584846pt;}
._4b{width:1033.514314pt;}
._3f{width:1090.172984pt;}
._5e{width:1156.403830pt;}
._15{width:1213.545359pt;}
._5f{width:1374.939393pt;}
._13{width:1497.382841pt;}
._12{width:1509.279018pt;}
.fs9{font-size:40.961600pt;}
.fs8{font-size:49.282000pt;}
.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;}
.fsa{font-size:84.479834pt;}
.fs6{font-size:84.483200pt;}
.fs2{font-size:84.484000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:33.760000pt;}
.y1f{bottom:33.760010pt;}
.y2{bottom:36.480000pt;}
.y33{bottom:36.480103pt;}
.y90{bottom:87.040039pt;}
.ya7{bottom:102.400086pt;}
.yd7{bottom:105.440064pt;}
.y8e{bottom:107.840088pt;}
.y8f{bottom:113.920044pt;}
.ya6{bottom:128.640076pt;}
.y32{bottom:129.440064pt;}
.y82{bottom:133.280030pt;}
.y1d{bottom:145.600133pt;}
.y31{bottom:151.520081pt;}
.ya5{bottom:154.720032pt;}
.y9a{bottom:158.562344pt;}
.y81{bottom:158.720032pt;}
.y30{bottom:177.760071pt;}
.y80{bottom:184.000061pt;}
.y99{bottom:184.001893pt;}
.y75{bottom:184.320069pt;}
.y5b{bottom:198.560059pt;}
.y2f{bottom:204.000061pt;}
.ya4{bottom:206.880066pt;}
.ye7{bottom:209.280030pt;}
.y98{bottom:209.286855pt;}
.y7f{bottom:209.440064pt;}
.y74{bottom:209.760071pt;}
.y1c{bottom:209.760133pt;}
.ye5{bottom:220.480042pt;}
.y5a{bottom:224.000061pt;}
.y2e{bottom:230.400086pt;}
.ya3{bottom:232.320069pt;}
.y97{bottom:234.719984pt;}
.y7e{bottom:234.720032pt;}
.y1b{bottom:235.040000pt;}
.ye4{bottom:245.920044pt;}
.y59{bottom:249.280030pt;}
.y2d{bottom:256.640076pt;}
.ya2{bottom:257.600037pt;}
.y96{bottom:260.004883pt;}
.y7d{bottom:260.160035pt;}
.y73{bottom:260.480042pt;}
.ye3{bottom:271.200074pt;}
.ycb{bottom:272.640076pt;}
.y58{bottom:274.720032pt;}
.yb2{bottom:281.760071pt;}
.y2c{bottom:282.880066pt;}
.ya1{bottom:283.040039pt;}
.y7c{bottom:285.440064pt;}
.y95{bottom:285.444495pt;}
.y72{bottom:285.760071pt;}
.ye2{bottom:296.640076pt;}
.yca{bottom:298.080079pt;}
.y57{bottom:300.000061pt;}
.yb1{bottom:307.040039pt;}
.ya0{bottom:308.320069pt;}
.y2b{bottom:309.280030pt;}
.y94{bottom:310.720032pt;}
.y7b{bottom:310.880066pt;}
.y71{bottom:311.200074pt;}
.ye1{bottom:321.920044pt;}
.yc9{bottom:323.520081pt;}
.y56{bottom:325.440064pt;}
.y3e{bottom:329.120057pt;}
.yb0{bottom:332.480042pt;}
.y9f{bottom:333.760071pt;}
.y2a{bottom:336.160035pt;}
.y1a{bottom:336.480000pt;}
.y70{bottom:336.480042pt;}
.ye0{bottom:347.360047pt;}
.yc8{bottom:348.800049pt;}
.y3d{bottom:354.560059pt;}
.yaf{bottom:357.760071pt;}
.y9e{bottom:359.040039pt;}
.y93{bottom:361.440064pt;}
.y7a{bottom:361.600037pt;}
.y6f{bottom:361.920044pt;}
.y19{bottom:361.920133pt;}
.yc7{bottom:374.240052pt;}
.y55{bottom:376.160035pt;}
.yae{bottom:383.200074pt;}
.y9d{bottom:384.480042pt;}
.y29{bottom:386.880066pt;}
.y6e{bottom:387.200074pt;}
.y18{bottom:387.200133pt;}
.ydf{bottom:398.080079pt;}
.yc6{bottom:399.520081pt;}
.y54{bottom:401.440064pt;}
.yad{bottom:408.480042pt;}
.y28{bottom:412.160035pt;}
.y79{bottom:412.320069pt;}
.y6d{bottom:412.640076pt;}
.y17{bottom:412.640133pt;}
.yde{bottom:423.360047pt;}
.yc5{bottom:424.960083pt;}
.y53{bottom:426.880066pt;}
.yac{bottom:433.920044pt;}
.y27{bottom:437.600037pt;}
.y16{bottom:437.920000pt;}
.ydd{bottom:448.800049pt;}
.yc4{bottom:450.240052pt;}
.y52{bottom:452.160035pt;}
.y9c{bottom:460.480042pt;}
.y26{bottom:462.880066pt;}
.y8c{bottom:463.040039pt;}
.y15{bottom:463.360000pt;}
.y6c{bottom:463.360047pt;}
.ydc{bottom:474.080079pt;}
.yc3{bottom:475.680054pt;}
.y51{bottom:477.600037pt;}
.yab{bottom:484.640076pt;}
.y9b{bottom:486.720032pt;}
.y25{bottom:488.320069pt;}
.y14{bottom:488.640000pt;}
.yc2{bottom:500.960083pt;}
.yaa{bottom:510.880066pt;}
.y24{bottom:513.600037pt;}
.y8b{bottom:513.760071pt;}
.y13{bottom:514.080000pt;}
.ydb{bottom:524.800049pt;}
.y50{bottom:528.320069pt;}
.y78{bottom:534.880066pt;}
.yd6{bottom:536.480042pt;}
.ya9{bottom:536.800049pt;}
.y8d{bottom:539.040039pt;}
.y12{bottom:539.360000pt;}
.y6b{bottom:539.360047pt;}
.yda{bottom:550.240052pt;}
.yc1{bottom:551.680054pt;}
.y4f{bottom:553.600037pt;}
.y77{bottom:556.000061pt;}
.yd5{bottom:561.920044pt;}
.ya8{bottom:562.880066pt;}
.y23{bottom:564.320069pt;}
.y8a{bottom:564.480042pt;}
.y11{bottom:564.800000pt;}
.y6a{bottom:564.800049pt;}
.y76{bottom:577.120057pt;}
.y4e{bottom:579.040039pt;}
.yd4{bottom:587.200074pt;}
.y89{bottom:589.760071pt;}
.y69{bottom:590.080079pt;}
.yd9{bottom:600.960083pt;}
.yc0{bottom:602.400086pt;}
.yd3{bottom:612.640046pt;}
.y92{bottom:615.040070pt;}
.y88{bottom:615.200074pt;}
.y10{bottom:615.520000pt;}
.y68{bottom:615.520050pt;}
.yd8{bottom:622.080048pt;}
.ybf{bottom:627.840058pt;}
.y4d{bottom:629.760071pt;}
.ye6{bottom:636.320069pt;}
.yd2{bottom:637.920044pt;}
.y22{bottom:640.480072pt;}
.yf{bottom:640.800000pt;}
.y67{bottom:640.800049pt;}
.yd1{bottom:663.360047pt;}
.y21{bottom:665.760071pt;}
.y87{bottom:665.920044pt;}
.ye{bottom:666.240000pt;}
.y4c{bottom:672.800049pt;}
.yd0{bottom:688.640046pt;}
.y20{bottom:691.200074pt;}
.yd{bottom:691.520000pt;}
.y66{bottom:691.520050pt;}
.y4b{bottom:693.920044pt;}
.ybe{bottom:695.360047pt;}
.y4a{bottom:715.840058pt;}
.y91{bottom:716.480072pt;}
.y86{bottom:716.640046pt;}
.yc{bottom:716.960000pt;}
.y65{bottom:716.960053pt;}
.y85{bottom:741.920044pt;}
.yb{bottom:742.240000pt;}
.y49{bottom:742.240052pt;}
.ybd{bottom:759.680054pt;}
.y84{bottom:767.360047pt;}
.y64{bottom:767.680054pt;}
.y48{bottom:768.480072pt;}
.ycf{bottom:785.920044pt;}
.ybc{bottom:786.080048pt;}
.y3c{bottom:792.640046pt;}
.ya{bottom:792.960000pt;}
.y63{bottom:792.960053pt;}
.y47{bottom:794.720063pt;}
.yce{bottom:807.040070pt;}
.ybb{bottom:812.480072pt;}
.y3b{bottom:818.080048pt;}
.y9{bottom:818.400000pt;}
.y62{bottom:818.400055pt;}
.y46{bottom:821.120057pt;}
.ycd{bottom:828.160065pt;}
.yba{bottom:838.720063pt;}
.y3a{bottom:843.360047pt;}
.y8{bottom:843.680000pt;}
.y61{bottom:843.680054pt;}
.y45{bottom:847.360047pt;}
.ycc{bottom:849.280060pt;}
.yb9{bottom:864.960053pt;}
.y39{bottom:868.800064pt;}
.y7{bottom:869.120000pt;}
.y44{bottom:873.600052pt;}
.yb8{bottom:891.360062pt;}
.y38{bottom:894.080063pt;}
.y60{bottom:894.400055pt;}
.y43{bottom:900.000061pt;}
.yb7{bottom:917.760056pt;}
.y37{bottom:919.520066pt;}
.y6{bottom:919.840000pt;}
.y5f{bottom:919.840058pt;}
.y42{bottom:926.240052pt;}
.yb6{bottom:944.000061pt;}
.y36{bottom:944.800064pt;}
.y5e{bottom:945.120057pt;}
.y1e{bottom:952.480000pt;}
.y41{bottom:952.480057pt;}
.y83{bottom:970.240052pt;}
.yb5{bottom:970.400055pt;}
.y5{bottom:970.560000pt;}
.y5d{bottom:970.560059pt;}
.y40{bottom:978.880066pt;}
.y35{bottom:995.520058pt;}
.y4{bottom:995.840000pt;}
.yb4{bottom:996.800057pt;}
.y34{bottom:1020.960061pt;}
.y3{bottom:1021.280000pt;}
.y5c{bottom:1021.280060pt;}
.y3f{bottom:1023.360062pt;}
.yb3{bottom:1023.680062pt;}
.h11{height:38.734296pt;}
.h18{height:48.883194pt;}
.h7{height:49.159043pt;}
.h10{height:49.419255pt;}
.h3{height:49.421010pt;}
.hf{height:51.141625pt;}
.h2{height:51.142916pt;}
.ha{height:57.257169pt;}
.h9{height:58.659722pt;}
.h6{height:58.660277pt;}
.h8{height:60.299627pt;}
.he{height:61.774332pt;}
.hd{height:62.530612pt;}
.h17{height:63.170508pt;}
.h16{height:63.170624pt;}
.h14{height:63.170628pt;}
.h12{height:74.126105pt;}
.hc{height:74.129058pt;}
.h5{height:74.129760pt;}
.hb{height:75.036592pt;}
.h4{height:75.037303pt;}
.h15{height:116.290620pt;}
.h13{height:116.290624pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:79.840000pt;}
.x8{left:80.800000pt;}
.x3{left:82.560000pt;}
.x32{left:84.800003pt;}
.x7{left:88.320000pt;}
.x33{left:97.599998pt;}
.x36{left:115.519997pt;}
.x1d{left:117.440002pt;}
.xd{left:125.279999pt;}
.x1e{left:128.479996pt;}
.x11{left:133.440002pt;}
.x38{left:145.119995pt;}
.x2a{left:151.679993pt;}
.x12{left:154.720001pt;}
.x5{left:158.880000pt;}
.x1f{left:161.600006pt;}
.x31{left:163.520004pt;}
.x29{left:166.880005pt;}
.x13{left:168.479996pt;}
.x1c{left:179.679993pt;}
.x2b{left:184.000000pt;}
.x15{left:187.199997pt;}
.x2f{left:191.839996pt;}
.x6{left:193.120000pt;}
.x14{left:196.000000pt;}
.x10{left:197.759995pt;}
.xe{left:199.679993pt;}
.x27{left:202.720001pt;}
.x17{left:205.919998pt;}
.x23{left:210.399994pt;}
.x28{left:215.679993pt;}
.x26{left:217.919998pt;}
.x35{left:219.360001pt;}
.xc{left:228.640000pt;}
.x19{left:229.759995pt;}
.x2e{left:231.520004pt;}
.x25{left:233.119995pt;}
.x3b{left:244.800003pt;}
.x3c{left:248.160004pt;}
.x9{left:260.480000pt;}
.x2c{left:267.200012pt;}
.x24{left:271.839996pt;}
.x39{left:275.519989pt;}
.x20{left:282.720001pt;}
.x4{left:292.960000pt;}
.x34{left:298.880005pt;}
.x2d{left:302.399994pt;}
.x21{left:315.679993pt;}
.xb{left:317.120000pt;}
.x37{left:320.799988pt;}
.xa{left:328.000000pt;}
.xf{left:345.920013pt;}
.x16{left:369.920013pt;}
.x3e{left:407.040009pt;}
.x3a{left:433.600006pt;}
.x3d{left:451.040009pt;}
.x40{left:468.799988pt;}
.x1{left:474.080000pt;}
.x1b{left:485.600006pt;}
.x22{left:519.840027pt;}
.x18{left:605.760010pt;}
.x3f{left:615.359985pt;}
.x1a{left:627.840027pt;}
.x30{left:712.960022pt;}
}




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