
    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_655e5c24ca56db54e2687d51.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_20125c04f0c2ecf30f4841a1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_5ff2b90af9578976e369614c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.901855;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_3309aafba61998750eb34ea8.woff2')format("woff");}.ff4{font-family:ff4;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;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.035496px;}
.ls7{letter-spacing:0.057202px;}
.ls4{letter-spacing:0.088439px;}
.ls1{letter-spacing:0.104634px;}
.ls3{letter-spacing:0.149150px;}
.lsb{letter-spacing:0.219267px;}
.lsc{letter-spacing:0.219272px;}
.ls9{letter-spacing:0.219541px;}
.ls8{letter-spacing:0.367348px;}
.lsa{letter-spacing:0.367488px;}
.ls6{letter-spacing:8.753465px;}
.ls5{letter-spacing:845.999288px;}
.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;}
}
.ws4{word-spacing:-21.642574px;}
.ws2{word-spacing:-18.000676px;}
.ws5{word-spacing:-17.574473px;}
.ws3{word-spacing:-14.970850px;}
.ws6{word-spacing:-13.506269px;}
.ws0{word-spacing:-12.855389px;}
.ws1{word-spacing:0.000000px;}
._21{margin-left:-11.833057px;}
._1d{margin-left:-5.273540px;}
._1e{margin-left:-3.976004px;}
._1c{margin-left:-2.879870px;}
._0{margin-left:-1.449402px;}
._1{width:1.090711px;}
._c{width:2.704565px;}
._d{width:4.570746px;}
._19{width:5.743533px;}
._5{width:6.787807px;}
._6{width:7.951132px;}
._b{width:9.115411px;}
._a{width:10.160066px;}
._1a{width:11.836568px;}
._1f{width:13.600196px;}
._20{width:15.991227px;}
._8{width:17.851198px;}
._7{width:18.962659px;}
._23{width:27.949930px;}
._22{width:28.985063px;}
._9{width:31.732841px;}
._1b{width:32.736573px;}
._f{width:66.592286px;}
._2{width:186.378982px;}
._3{width:757.568345px;}
._24{width:848.833958px;}
._4{width:878.719223px;}
._11{width:1374.963407px;}
._10{width:1435.748330px;}
._12{width:1603.580938px;}
._16{width:1834.002722px;}
._14{width:1886.855081px;}
._15{width:1972.258223px;}
._e{width:2046.158165px;}
._18{width:2292.794144px;}
._17{width:2304.773205px;}
._13{width:2346.060261px;}
.fc6{color:rgb(47,84,150);}
.fc4{color:rgb(5,99,193);}
.fc3{color:rgb(46,117,181);}
.fc2{color:rgb(0,32,96);}
.fc5{color:rgb(46,116,181);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.002250px;}
.fs6{font-size:56.882250px;}
.fs3{font-size:59.762250px;}
.fs7{font-size:66.242700px;}
.fs0{font-size:72.002705px;}
.fs9{font-size:77.763154px;}
.fs1{font-size:84.243145px;}
.fs8{font-size:95.763600px;}
.fs5{font-size:108.004050px;}
.fs4{font-size:120.244505px;}
.y0{bottom:0.000000px;}
.yd{bottom:1.980010px;}
.y12{bottom:3.960022px;}
.y18{bottom:56.700028px;}
.y17{bottom:73.620072px;}
.ydf{bottom:96.120072px;}
.ybf{bottom:107.820099px;}
.y5e{bottom:112.860077px;}
.yde{bottom:120.600083px;}
.ybe{bottom:127.980079px;}
.y99{bottom:132.120072px;}
.y5d{bottom:133.020058px;}
.ydd{bottom:143.820099px;}
.ybd{bottom:148.140060px;}
.y98{bottom:152.280052px;}
.y5c{bottom:153.000068px;}
.y13{bottom:154.980079px;}
.ydc{bottom:167.040047px;}
.ybc{bottom:168.300041px;}
.y11{bottom:169.380066px;}
.y97{bottom:172.440033px;}
.ydb{bottom:190.080093px;}
.y96{bottom:192.600083px;}
.y10{bottom:193.860077px;}
.y5b{bottom:196.200096px;}
.ybb{bottom:209.340088px;}
.yf{bottom:211.140060px;}
.yda{bottom:213.300041px;}
.yba{bottom:229.500068px;}
.ye{bottom:231.300041px;}
.y95{bottom:234.540047px;}
.yd9{bottom:236.520058px;}
.y5a{bottom:241.020058px;}
.yb9{bottom:249.660049px;}
.y59{bottom:259.200096px;}
.yd8{bottom:259.560036px;}
.yc{bottom:260.100083px;}
.yb8{bottom:269.820099px;}
.y58{bottom:277.560036px;}
.y94{bottom:278.460091px;}
.yd7{bottom:282.780052px;}
.yb7{bottom:289.980079px;}
.y57{bottom:295.920043px;}
.y93{bottom:298.620072px;}
.yd6{bottom:306.000068px;}
.y85{bottom:311.220085px;}
.y56{bottom:314.280052px;}
.y92{bottom:318.780052px;}
.yd5{bottom:329.040047px;}
.yb6{bottom:331.020058px;}
.y84{bottom:331.380066px;}
.y55{bottom:332.460091px;}
.y91{bottom:338.940033px;}
.yb{bottom:342.720085px;}
.y54{bottom:346.860077px;}
.yb5{bottom:351.180039px;}
.y83{bottom:351.540047px;}
.yd4{bottom:352.260064px;}
.y90{bottom:359.100083px;}
.yb4{bottom:371.340088px;}
.y82{bottom:371.700096px;}
.ya{bottom:373.140060px;}
.yd3{bottom:375.480079px;}
.y8f{bottom:379.260064px;}
.yb3{bottom:391.500068px;}
.y81{bottom:391.860077px;}
.yd2{bottom:398.520058px;}
.y8e{bottom:399.420043px;}
.yb2{bottom:411.660049px;}
.y80{bottom:412.020058px;}
.y34{bottom:413.820099px;}
.y8d{bottom:419.580093px;}
.yd1{bottom:421.740074px;}
.yb1{bottom:431.820099px;}
.y8c{bottom:439.740074px;}
.y7f{bottom:441.900055px;}
.yd0{bottom:444.960091px;}
.y33{bottom:449.640060px;}
.yb0{bottom:451.980079px;}
.y8b{bottom:459.900055px;}
.ycf{bottom:468.000068px;}
.yaf{bottom:472.140060px;}
.y32{bottom:474.120072px;}
.ya9{bottom:482.220085px;}
.y7e{bottom:482.940033px;}
.yce{bottom:491.220085px;}
.yae{bottom:492.300041px;}
.y31{bottom:497.340088px;}
.y8a{bottom:500.580093px;}
.ya8{bottom:502.380066px;}
.y7d{bottom:503.100083px;}
.yad{bottom:512.280052px;}
.ycd{bottom:514.440033px;}
.y30{bottom:520.560036px;}
.ya7{bottom:522.360077px;}
.y7c{bottom:523.260064px;}
.y89{bottom:535.860077px;}
.ya6{bottom:542.520058px;}
.y7b{bottom:543.420043px;}
.y2f{bottom:543.600083px;}
.yac{bottom:553.140060px;}
.ycc{bottom:556.200096px;}
.ya5{bottom:562.680039px;}
.y7a{bottom:563.400055px;}
.yab{bottom:571.320099px;}
.y2e{bottom:578.880066px;}
.ya4{bottom:582.840088px;}
.y79{bottom:583.560036px;}
.ycb{bottom:600.660049px;}
.ya3{bottom:603.000068px;}
.y78{bottom:603.720085px;}
.yaa{bottom:606.780052px;}
.y2d{bottom:613.980079px;}
.yca{bottom:622.260064px;}
.ya2{bottom:623.160049px;}
.y77{bottom:623.880066px;}
.y2c{bottom:637.200096px;}
.yc9{bottom:642.420043px;}
.ya1{bottom:643.320099px;}
.y76{bottom:644.040047px;}
.yc8{bottom:662.580093px;}
.y75{bottom:664.200096px;}
.y2b{bottom:672.300041px;}
.yc7{bottom:682.740074px;}
.ya0{bottom:684.000068px;}
.y74{bottom:684.360077px;}
.y2a{bottom:695.520058px;}
.y9f{bottom:702.180073px;}
.yc6{bottom:702.900055px;}
.y73{bottom:704.520058px;}
.y29{bottom:718.560070px;}
.yc5{bottom:723.060070px;}
.y72{bottom:724.680073px;}
.y9e{bottom:737.640060px;}
.y28{bottom:741.780052px;}
.y53{bottom:742.680073px;}
.yc4{bottom:743.220051px;}
.y71{bottom:744.840054px;}
.y52{bottom:764.280052px;}
.y70{bottom:764.820065px;}
.y27{bottom:765.000068px;}
.y51{bottom:784.440067px;}
.y6f{bottom:784.980079px;}
.yc3{bottom:785.160049px;}
.y26{bottom:788.040081px;}
.y50{bottom:804.600083px;}
.y6e{bottom:805.140060px;}
.y25{bottom:811.260064px;}
.y9{bottom:817.020058px;}
.y4f{bottom:824.760064px;}
.y6d{bottom:825.300076px;}
.y40{bottom:826.020058px;}
.yc2{bottom:828.720051px;}
.y24{bottom:834.480079px;}
.y8{bottom:838.980079px;}
.y4e{bottom:844.740074px;}
.y6c{bottom:845.460056px;}
.yee{bottom:846.540081px;}
.yc1{bottom:846.900055px;}
.y3f{bottom:855.180073px;}
.y23{bottom:857.700061px;}
.y7{bottom:863.280052px;}
.y4d{bottom:864.900055px;}
.y6b{bottom:865.620072px;}
.yed{bottom:868.140060px;}
.y22{bottom:880.740074px;}
.yc0{bottom:882.360077px;}
.y3e{bottom:882.720051px;}
.y4c{bottom:885.060070px;}
.y6a{bottom:885.780052px;}
.yec{bottom:888.300076px;}
.y6{bottom:897.120072px;}
.y4b{bottom:905.220051px;}
.y69{bottom:905.940067px;}
.yeb{bottom:908.460056px;}
.y3d{bottom:910.440067px;}
.y21{bottom:912.960056px;}
.y4a{bottom:925.380066px;}
.y68{bottom:926.100083px;}
.yea{bottom:928.620072px;}
.y5{bottom:933.840054px;}
.y3c{bottom:937.980079px;}
.y20{bottom:945.000068px;}
.y49{bottom:945.540081px;}
.y67{bottom:946.080059px;}
.ye9{bottom:948.780053px;}
.y3b{bottom:965.700061px;}
.y66{bottom:966.240074px;}
.y4{bottom:967.140060px;}
.ye8{bottom:968.760064px;}
.y1f{bottom:977.220068px;}
.y48{bottom:985.860060px;}
.y65{bottom:986.400072px;}
.ye7{bottom:988.920061px;}
.y3{bottom:989.820065px;}
.y3a{bottom:993.420061px;}
.y47{bottom:1006.020058px;}
.y64{bottom:1006.560070px;}
.ye6{bottom:1009.080059px;}
.y1e{bottom:1009.260064px;}
.y2{bottom:1015.560070px;}
.y39{bottom:1020.960074px;}
.y46{bottom:1026.180073px;}
.y63{bottom:1026.720068px;}
.ye5{bottom:1029.240074px;}
.y88{bottom:1030.680073px;}
.y1{bottom:1035.540064px;}
.y9d{bottom:1040.220068px;}
.y1d{bottom:1041.480063px;}
.y45{bottom:1046.160067px;}
.y62{bottom:1046.880066px;}
.y38{bottom:1048.680073px;}
.ye4{bottom:1049.760064px;}
.y9c{bottom:1060.380066px;}
.y1c{bottom:1061.640060px;}
.y44{bottom:1066.320065px;}
.ye3{bottom:1071.360060px;}
.y87{bottom:1072.080059px;}
.y37{bottom:1076.220068px;}
.y61{bottom:1076.760064px;}
.y9b{bottom:1080.540064px;}
.y43{bottom:1086.480063px;}
.ye2{bottom:1091.520058px;}
.y1b{bottom:1093.860060px;}
.y86{bottom:1095.660067px;}
.y9a{bottom:1100.700061px;}
.y36{bottom:1103.940067px;}
.ye1{bottom:1111.680073px;}
.y1a{bottom:1114.020058px;}
.y60{bottom:1120.860068px;}
.y42{bottom:1123.380066px;}
.y35{bottom:1129.680064px;}
.ye0{bottom:1133.820065px;}
.y19{bottom:1134.000068px;}
.y5f{bottom:1141.020066px;}
.y16{bottom:1153.620063px;}
.y15{bottom:1175.220068px;}
.y41{bottom:1175.580068px;}
.y14{bottom:1196.100065px;}
.h7{height:16.199958px;}
.h9{height:18.179970px;}
.hc{height:20.159981px;}
.h8{height:50.275326px;}
.he{height:53.712199px;}
.hb{height:56.576730px;}
.h13{height:59.441261px;}
.h12{height:61.192109px;}
.hd{height:65.886904px;}
.hf{height:67.827608px;}
.h2{height:71.615971px;}
.h10{height:73.725425px;}
.h14{height:77.345481px;}
.h3{height:83.790668px;}
.ha{height:83.959786px;}
.h6{height:86.258729px;}
.h11{height:95.249245px;}
.h5{height:107.423950px;}
.h4{height:119.598660px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w2{width:7.740006px;}
.w3{width:9.000000px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:106.200002px;}
.x6{left:114.840002px;}
.xa{left:122.760003px;}
.xc{left:133.200002px;}
.x8{left:384.300007px;}
.x7{left:446.579990px;}
.x4{left:457.560001px;}
.x1{left:574.740006px;}
.xb{left:661.860008px;}
.x3{left:689.399987px;}
.xd{left:736.740006px;}
.x5{left:751.860008px;}
.xf{left:768.600014px;}
.x9{left:777.600014px;}
.xe{left:786.600014px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.031552pt;}
.ls7{letter-spacing:0.050846pt;}
.ls4{letter-spacing:0.078613pt;}
.ls1{letter-spacing:0.093008pt;}
.ls3{letter-spacing:0.132578pt;}
.lsb{letter-spacing:0.194904pt;}
.lsc{letter-spacing:0.194908pt;}
.ls9{letter-spacing:0.195148pt;}
.ls8{letter-spacing:0.326532pt;}
.lsa{letter-spacing:0.326656pt;}
.ls6{letter-spacing:7.780858pt;}
.ls5{letter-spacing:751.999367pt;}
.ws4{word-spacing:-19.237843pt;}
.ws2{word-spacing:-16.000601pt;}
.ws5{word-spacing:-15.621754pt;}
.ws3{word-spacing:-13.307422pt;}
.ws6{word-spacing:-12.005572pt;}
.ws0{word-spacing:-11.427012pt;}
.ws1{word-spacing:0.000000pt;}
._21{margin-left:-10.518273pt;}
._1d{margin-left:-4.687591pt;}
._1e{margin-left:-3.534226pt;}
._1c{margin-left:-2.559884pt;}
._0{margin-left:-1.288357pt;}
._1{width:0.969521pt;}
._c{width:2.404058pt;}
._d{width:4.062886pt;}
._19{width:5.105363pt;}
._5{width:6.033606pt;}
._6{width:7.067673pt;}
._b{width:8.102588pt;}
._a{width:9.031170pt;}
._1a{width:10.521394pt;}
._1f{width:12.089063pt;}
._20{width:14.214424pt;}
._8{width:15.867732pt;}
._7{width:16.855697pt;}
._23{width:24.844383pt;}
._22{width:25.764500pt;}
._9{width:28.206970pt;}
._1b{width:29.099176pt;}
._f{width:59.193143pt;}
._2{width:165.670206pt;}
._3{width:673.394084pt;}
._24{width:754.519074pt;}
._4{width:781.083754pt;}
._11{width:1222.189696pt;}
._10{width:1276.220738pt;}
._12{width:1425.405279pt;}
._16{width:1630.224642pt;}
._14{width:1677.204517pt;}
._15{width:1753.118421pt;}
._e{width:1818.807258pt;}
._18{width:2038.039239pt;}
._17{width:2048.687293pt;}
._13{width:2085.386899pt;}
.fs2{font-size:48.002000pt;}
.fs6{font-size:50.562000pt;}
.fs3{font-size:53.122000pt;}
.fs7{font-size:58.882400pt;}
.fs0{font-size:64.002404pt;}
.fs9{font-size:69.122804pt;}
.fs1{font-size:74.882796pt;}
.fs8{font-size:85.123200pt;}
.fs5{font-size:96.003600pt;}
.fs4{font-size:106.884004pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:1.760009pt;}
.y12{bottom:3.520020pt;}
.y18{bottom:50.400025pt;}
.y17{bottom:65.440064pt;}
.ydf{bottom:85.440064pt;}
.ybf{bottom:95.840088pt;}
.y5e{bottom:100.320069pt;}
.yde{bottom:107.200074pt;}
.ybe{bottom:113.760071pt;}
.y99{bottom:117.440064pt;}
.y5d{bottom:118.240052pt;}
.ydd{bottom:127.840088pt;}
.ybd{bottom:131.680054pt;}
.y98{bottom:135.360047pt;}
.y5c{bottom:136.000061pt;}
.y13{bottom:137.760071pt;}
.ydc{bottom:148.480042pt;}
.ybc{bottom:149.600037pt;}
.y11{bottom:150.560059pt;}
.y97{bottom:153.280030pt;}
.ydb{bottom:168.960083pt;}
.y96{bottom:171.200074pt;}
.y10{bottom:172.320069pt;}
.y5b{bottom:174.400086pt;}
.ybb{bottom:186.080079pt;}
.yf{bottom:187.680054pt;}
.yda{bottom:189.600037pt;}
.yba{bottom:204.000061pt;}
.ye{bottom:205.600037pt;}
.y95{bottom:208.480042pt;}
.yd9{bottom:210.240052pt;}
.y5a{bottom:214.240052pt;}
.yb9{bottom:221.920044pt;}
.y59{bottom:230.400086pt;}
.yd8{bottom:230.720032pt;}
.yc{bottom:231.200074pt;}
.yb8{bottom:239.840088pt;}
.y58{bottom:246.720032pt;}
.y94{bottom:247.520081pt;}
.yd7{bottom:251.360047pt;}
.yb7{bottom:257.760071pt;}
.y57{bottom:263.040039pt;}
.y93{bottom:265.440064pt;}
.yd6{bottom:272.000061pt;}
.y85{bottom:276.640076pt;}
.y56{bottom:279.360047pt;}
.y92{bottom:283.360047pt;}
.yd5{bottom:292.480042pt;}
.yb6{bottom:294.240052pt;}
.y84{bottom:294.560059pt;}
.y55{bottom:295.520081pt;}
.y91{bottom:301.280030pt;}
.yb{bottom:304.640076pt;}
.y54{bottom:308.320069pt;}
.yb5{bottom:312.160035pt;}
.y83{bottom:312.480042pt;}
.yd4{bottom:313.120057pt;}
.y90{bottom:319.200074pt;}
.yb4{bottom:330.080079pt;}
.y82{bottom:330.400086pt;}
.ya{bottom:331.680054pt;}
.yd3{bottom:333.760071pt;}
.y8f{bottom:337.120057pt;}
.yb3{bottom:348.000061pt;}
.y81{bottom:348.320069pt;}
.yd2{bottom:354.240052pt;}
.y8e{bottom:355.040039pt;}
.yb2{bottom:365.920044pt;}
.y80{bottom:366.240052pt;}
.y34{bottom:367.840088pt;}
.y8d{bottom:372.960083pt;}
.yd1{bottom:374.880066pt;}
.yb1{bottom:383.840088pt;}
.y8c{bottom:390.880066pt;}
.y7f{bottom:392.800049pt;}
.yd0{bottom:395.520081pt;}
.y33{bottom:399.680054pt;}
.yb0{bottom:401.760071pt;}
.y8b{bottom:408.800049pt;}
.ycf{bottom:416.000061pt;}
.yaf{bottom:419.680054pt;}
.y32{bottom:421.440064pt;}
.ya9{bottom:428.640076pt;}
.y7e{bottom:429.280030pt;}
.yce{bottom:436.640076pt;}
.yae{bottom:437.600037pt;}
.y31{bottom:442.080079pt;}
.y8a{bottom:444.960083pt;}
.ya8{bottom:446.560059pt;}
.y7d{bottom:447.200074pt;}
.yad{bottom:455.360047pt;}
.ycd{bottom:457.280030pt;}
.y30{bottom:462.720032pt;}
.ya7{bottom:464.320069pt;}
.y7c{bottom:465.120057pt;}
.y89{bottom:476.320069pt;}
.ya6{bottom:482.240052pt;}
.y7b{bottom:483.040039pt;}
.y2f{bottom:483.200074pt;}
.yac{bottom:491.680054pt;}
.ycc{bottom:494.400086pt;}
.ya5{bottom:500.160035pt;}
.y7a{bottom:500.800049pt;}
.yab{bottom:507.840088pt;}
.y2e{bottom:514.560059pt;}
.ya4{bottom:518.080079pt;}
.y79{bottom:518.720032pt;}
.ycb{bottom:533.920044pt;}
.ya3{bottom:536.000061pt;}
.y78{bottom:536.640076pt;}
.yaa{bottom:539.360047pt;}
.y2d{bottom:545.760071pt;}
.yca{bottom:553.120057pt;}
.ya2{bottom:553.920044pt;}
.y77{bottom:554.560059pt;}
.y2c{bottom:566.400086pt;}
.yc9{bottom:571.040039pt;}
.ya1{bottom:571.840088pt;}
.y76{bottom:572.480042pt;}
.yc8{bottom:588.960083pt;}
.y75{bottom:590.400086pt;}
.y2b{bottom:597.600037pt;}
.yc7{bottom:606.880066pt;}
.ya0{bottom:608.000061pt;}
.y74{bottom:608.320069pt;}
.y2a{bottom:618.240052pt;}
.y9f{bottom:624.160065pt;}
.yc6{bottom:624.800049pt;}
.y73{bottom:626.240052pt;}
.y29{bottom:638.720063pt;}
.yc5{bottom:642.720063pt;}
.y72{bottom:644.160065pt;}
.y9e{bottom:655.680054pt;}
.y28{bottom:659.360047pt;}
.y53{bottom:660.160065pt;}
.yc4{bottom:660.640046pt;}
.y71{bottom:662.080048pt;}
.y52{bottom:679.360047pt;}
.y70{bottom:679.840058pt;}
.y27{bottom:680.000061pt;}
.y51{bottom:697.280060pt;}
.y6f{bottom:697.760071pt;}
.yc3{bottom:697.920044pt;}
.y26{bottom:700.480072pt;}
.y50{bottom:715.200074pt;}
.y6e{bottom:715.680054pt;}
.y25{bottom:721.120057pt;}
.y9{bottom:726.240052pt;}
.y4f{bottom:733.120057pt;}
.y6d{bottom:733.600068pt;}
.y40{bottom:734.240052pt;}
.yc2{bottom:736.640046pt;}
.y24{bottom:741.760071pt;}
.y8{bottom:745.760071pt;}
.y4e{bottom:750.880066pt;}
.y6c{bottom:751.520050pt;}
.yee{bottom:752.480072pt;}
.yc1{bottom:752.800049pt;}
.y3f{bottom:760.160065pt;}
.y23{bottom:762.400055pt;}
.y7{bottom:767.360047pt;}
.y4d{bottom:768.800049pt;}
.y6b{bottom:769.440064pt;}
.yed{bottom:771.680054pt;}
.y22{bottom:782.880066pt;}
.yc0{bottom:784.320069pt;}
.y3e{bottom:784.640046pt;}
.y4c{bottom:786.720063pt;}
.y6a{bottom:787.360047pt;}
.yec{bottom:789.600068pt;}
.y6{bottom:797.440064pt;}
.y4b{bottom:804.640046pt;}
.y69{bottom:805.280060pt;}
.yeb{bottom:807.520050pt;}
.y3d{bottom:809.280060pt;}
.y21{bottom:811.520050pt;}
.y4a{bottom:822.560059pt;}
.y68{bottom:823.200074pt;}
.yea{bottom:825.440064pt;}
.y5{bottom:830.080048pt;}
.y3c{bottom:833.760071pt;}
.y20{bottom:840.000061pt;}
.y49{bottom:840.480072pt;}
.y67{bottom:840.960053pt;}
.ye9{bottom:843.360047pt;}
.y3b{bottom:858.400055pt;}
.y66{bottom:858.880066pt;}
.y4{bottom:859.680054pt;}
.ye8{bottom:861.120057pt;}
.y1f{bottom:868.640061pt;}
.y48{bottom:876.320054pt;}
.y65{bottom:876.800064pt;}
.ye7{bottom:879.040055pt;}
.y3{bottom:879.840058pt;}
.y3a{bottom:883.040055pt;}
.y47{bottom:894.240052pt;}
.y64{bottom:894.720063pt;}
.ye6{bottom:896.960053pt;}
.y1e{bottom:897.120057pt;}
.y2{bottom:902.720063pt;}
.y39{bottom:907.520066pt;}
.y46{bottom:912.160065pt;}
.y63{bottom:912.640061pt;}
.ye5{bottom:914.880066pt;}
.y88{bottom:916.160065pt;}
.y1{bottom:920.480057pt;}
.y9d{bottom:924.640061pt;}
.y1d{bottom:925.760056pt;}
.y45{bottom:929.920060pt;}
.y62{bottom:930.560059pt;}
.y38{bottom:932.160065pt;}
.ye4{bottom:933.120057pt;}
.y9c{bottom:942.560059pt;}
.y1c{bottom:943.680054pt;}
.y44{bottom:947.840058pt;}
.ye3{bottom:952.320054pt;}
.y87{bottom:952.960053pt;}
.y37{bottom:956.640061pt;}
.y61{bottom:957.120057pt;}
.y9b{bottom:960.480057pt;}
.y43{bottom:965.760056pt;}
.ye2{bottom:970.240052pt;}
.y1b{bottom:972.320054pt;}
.y86{bottom:973.920060pt;}
.y9a{bottom:978.400055pt;}
.y36{bottom:981.280060pt;}
.ye1{bottom:988.160065pt;}
.y1a{bottom:990.240052pt;}
.y60{bottom:996.320061pt;}
.y42{bottom:998.560059pt;}
.y35{bottom:1004.160057pt;}
.ye0{bottom:1007.840058pt;}
.y19{bottom:1008.000061pt;}
.y5f{bottom:1014.240059pt;}
.y16{bottom:1025.440056pt;}
.y15{bottom:1044.640061pt;}
.y41{bottom:1044.960061pt;}
.y14{bottom:1063.200058pt;}
.h7{height:14.399963pt;}
.h9{height:16.159973pt;}
.hc{height:17.919983pt;}
.h8{height:44.689179pt;}
.he{height:47.744177pt;}
.hb{height:50.290427pt;}
.h13{height:52.836677pt;}
.h12{height:54.392985pt;}
.hd{height:58.566137pt;}
.hf{height:60.291207pt;}
.h2{height:63.658641pt;}
.h10{height:65.533712pt;}
.h14{height:68.751539pt;}
.h3{height:74.480593pt;}
.ha{height:74.630921pt;}
.h6{height:76.674425pt;}
.h11{height:84.665995pt;}
.h5{height:95.487956pt;}
.h4{height:106.309920pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w2{width:6.880005pt;}
.w3{width:8.000000pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:94.400002pt;}
.x6{left:102.080002pt;}
.xa{left:109.120003pt;}
.xc{left:118.400002pt;}
.x8{left:341.600006pt;}
.x7{left:396.959991pt;}
.x4{left:406.720001pt;}
.x1{left:510.880005pt;}
.xb{left:588.320007pt;}
.x3{left:612.799988pt;}
.xd{left:654.880005pt;}
.x5{left:668.320007pt;}
.xf{left:683.200012pt;}
.x9{left:691.200012pt;}
.xe{left:699.200012pt;}
}




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