
    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_b63653a1215313a560085f9e.woff')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_0b09e51670a09de3f1e94008.woff')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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_d354c505d1684573ba57d339.woff')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_912c2f19790e3378041373f7.woff')format("woff");}.ff4{font-family:ff4;line-height:0.940918;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_c63bb295fcc39df32aa9a859.woff')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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_f7cc21bf172e6fb86dfa51ad.woff')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_ee89f9ea76bee84af506b949.woff')format("woff");}.ff7{font-family:ff7;line-height:0.940918;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:ff8;src:url('chunks/assets/font_7f3d57618d88d6eb8fc57569.woff')format("woff");}.ff8{font-family:ff8;line-height:0.731934;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:ff9;src:url('chunks/assets/font_eeb58160e7df577eca00f6c2.woff')format("woff");}.ff9{font-family:ff9;line-height:0.926758;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.m2{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);}
.v2{vertical-align:-67.500002px;}
.v3{vertical-align:-40.500001px;}
.v6{vertical-align:-13.590000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:6.958350px;}
.v4{vertical-align:11.102400px;}
.v1{vertical-align:67.500002px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.000088px;}
.ls1{letter-spacing:0.056806px;}
.ls2{letter-spacing:0.056851px;}
.ls0{letter-spacing:0.057031px;}
.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;}
}
.ws8{word-spacing:-36.564002px;}
.ws1{word-spacing:-36.000001px;}
.ws4{word-spacing:-33.240000px;}
.ws0{word-spacing:-24.000002px;}
.ws3{word-spacing:-18.000001px;}
.ws2{word-spacing:-14.400001px;}
.ws9{word-spacing:0.000000px;}
.ws5{word-spacing:563.970217px;}
.ws7{word-spacing:661.376526px;}
.ws6{word-spacing:771.401113px;}
._0{margin-left:-20.868001px;}
._1f{margin-left:-14.400000px;}
._39{margin-left:-12.840000px;}
._5{margin-left:-11.520000px;}
._1b{margin-left:-9.240000px;}
._2{margin-left:-7.403208px;}
._1c{margin-left:-5.760000px;}
._4{margin-left:-3.782963px;}
._3{margin-left:-2.700000px;}
._1{margin-left:-1.643140px;}
._19{width:1.764000px;}
._6{width:3.720000px;}
._1a{width:4.848000px;}
._26{width:6.194963px;}
._14{width:7.440000px;}
._25{width:9.383140px;}
._15{width:12.023140px;}
._18{width:13.680859px;}
._10{width:14.880000px;}
._27{width:15.960000px;}
._12{width:17.820000px;}
._b{width:19.680000px;}
._c{width:20.760000px;}
._8{width:21.840000px;}
._23{width:23.003140px;}
._2c{width:24.036860px;}
._1e{width:25.500000px;}
._1d{width:26.580000px;}
._3e{width:28.679140px;}
._7{width:29.760000px;}
._9{width:31.080000px;}
._13{width:35.280000px;}
._28{width:36.480000px;}
._24{width:37.680000px;}
._a{width:42.240000px;}
._e{width:43.956792px;}
._d{width:45.563208px;}
._38{width:46.620000px;}
._22{width:47.640000px;}
._f{width:54.240000px;}
._29{width:55.800000px;}
._2a{width:57.622954px;}
._17{width:61.260000px;}
._16{width:62.340001px;}
._2f{width:68.760000px;}
._11{width:74.040001px;}
._3b{width:79.560001px;}
._2b{width:83.640001px;}
._2e{width:95.856860px;}
._2d{width:97.343141px;}
._34{width:98.796860px;}
._33{width:102.000001px;}
._30{width:125.520001px;}
._3d{width:139.680001px;}
._21{width:158.640001px;}
._20{width:188.640001px;}
._3a{width:208.440001px;}
._31{width:223.200002px;}
._32{width:231.540002px;}
._37{width:245.880002px;}
._3c{width:344.160002px;}
._35{width:350.880002px;}
._36{width:367.140003px;}
.fc2{color:transparent;}
.fc1{color:rgb(17,85,204);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:72.000002px;}
.fs4{font-size:72.000006px;}
.fs3{font-size:84.000000px;}
.fs5{font-size:108.000003px;}
.fs6{font-size:120.000001px;}
.fs2{font-size:120.000010px;}
.fs9{font-size:132.000007px;}
.fs8{font-size:149.999999px;}
.fs1{font-size:180.000006px;}
.fs0{font-size:282.000015px;}
.y0{bottom:0.000000px;}
.y27{bottom:132.003690px;}
.y31{bottom:134.364199px;}
.y30{bottom:159.384188px;}
.y26{bottom:160.983691px;}
.y2a{bottom:169.477430px;}
.y25{bottom:189.963681px;}
.y29{bottom:198.457427px;}
.y2f{bottom:202.404167px;}
.y24{bottom:218.943678px;}
.y2e{bottom:227.424157px;}
.y28{bottom:227.437423px;}
.y23{bottom:247.923673px;}
.y2d{bottom:270.444153px;}
.y2c{bottom:295.464148px;}
.yf{bottom:339.658694px;}
.y36{bottom:346.369263px;}
.y35{bottom:388.069246px;}
.y9d{bottom:405.966601px;}
.y34{bottom:429.769239px;}
.y9c{bottom:441.966602px;}
.y33{bottom:471.469222px;}
.y9b{bottom:477.966604px;}
.y32{bottom:513.169205px;}
.y9a{bottom:513.966605px;}
.y99{bottom:549.966606px;}
.ye{bottom:582.146157px;}
.y98{bottom:585.966607px;}
.y22{bottom:636.469884px;}
.ya2{bottom:671.956885px;}
.ya1{bottom:707.956886px;}
.ya0{bottom:743.956887px;}
.y9f{bottom:779.956888px;}
.y9e{bottom:815.956889px;}
.y2b{bottom:873.889891px;}
.y4e{bottom:1091.773598px;}
.y4d{bottom:1127.773599px;}
.y4c{bottom:1163.773600px;}
.y4b{bottom:1199.773602px;}
.ya4{bottom:1202.845127px;}
.y4a{bottom:1235.773603px;}
.y49{bottom:1271.773604px;}
.y55{bottom:1325.515643px;}
.y78{bottom:1334.543363px;}
.y54{bottom:1367.215614px;}
.y77{bottom:1376.243346px;}
.y53{bottom:1408.915597px;}
.y76{bottom:1417.943329px;}
.y52{bottom:1450.615580px;}
.y75{bottom:1459.643322px;}
.y51{bottom:1492.315573px;}
.y74{bottom:1501.343305px;}
.y50{bottom:1534.015556px;}
.y73{bottom:1543.043288px;}
.y4f{bottom:1575.715539px;}
.y43{bottom:1725.330259px;}
.ya3{bottom:1975.306817px;}
.y48{bottom:2093.230405px;}
.y47{bottom:2129.230406px;}
.y46{bottom:2165.230408px;}
.y45{bottom:2201.230409px;}
.y44{bottom:2237.230410px;}
.y41{bottom:2340.785691px;}
.y97{bottom:2521.412506px;}
.y80{bottom:2550.278770px;}
.y88{bottom:2553.291970px;}
.y96{bottom:2557.412508px;}
.y7f{bottom:2586.278771px;}
.y87{bottom:2589.291971px;}
.y3e{bottom:2590.031659px;}
.y95{bottom:2593.412509px;}
.y7e{bottom:2622.278772px;}
.y86{bottom:2625.291972px;}
.y3d{bottom:2626.031660px;}
.y8e{bottom:2628.564372px;}
.y94{bottom:2629.412510px;}
.y7d{bottom:2658.278773px;}
.y85{bottom:2661.291973px;}
.y3c{bottom:2662.031661px;}
.y8d{bottom:2664.564374px;}
.y93{bottom:2665.412511px;}
.y7c{bottom:2694.278774px;}
.y84{bottom:2697.291975px;}
.y3b{bottom:2698.031662px;}
.y8c{bottom:2700.564375px;}
.y92{bottom:2701.412512px;}
.y7b{bottom:2730.278776px;}
.y83{bottom:2733.291976px;}
.y3a{bottom:2734.031663px;}
.y8b{bottom:2736.564376px;}
.y91{bottom:2737.412513px;}
.y7a{bottom:2766.278777px;}
.y82{bottom:2769.291977px;}
.y39{bottom:2770.031664px;}
.y8a{bottom:2772.564377px;}
.y90{bottom:2773.412514px;}
.y79{bottom:2802.278778px;}
.y81{bottom:2805.291978px;}
.y38{bottom:2806.031666px;}
.y89{bottom:2808.564378px;}
.y8f{bottom:2809.412516px;}
.y42{bottom:2970.361924px;}
.ya9{bottom:3090.321762px;}
.y6b{bottom:3116.337388px;}
.y72{bottom:3137.984639px;}
.y5c{bottom:3141.892664px;}
.y70{bottom:3144.564989px;}
.y6a{bottom:3155.937389px;}
.y71{bottom:3177.584640px;}
.y5b{bottom:3181.492665px;}
.y6f{bottom:3184.164990px;}
.y69{bottom:3195.537390px;}
.y3f{bottom:3281.967768px;}
.ya8{bottom:3298.671094px;}
.y63{bottom:3325.905770px;}
.y62{bottom:3365.505771px;}
.y5f{bottom:3381.668309px;}
.y6e{bottom:3382.720971px;}
.y68{bottom:3391.650097px;}
.y61{bottom:3405.105772px;}
.y5e{bottom:3421.268310px;}
.y6d{bottom:3422.320973px;}
.y67{bottom:3431.250098px;}
.y5d{bottom:3439.711786px;}
.y60{bottom:3444.705773px;}
.y21{bottom:3477.076783px;}
.ya6{bottom:3514.805882px;}
.y20{bottom:3518.476773px;}
.y58{bottom:3553.080334px;}
.ya5{bottom:3556.205877px;}
.y1f{bottom:3559.876797px;}
.ya7{bottom:3568.848290px;}
.y66{bottom:3580.622990px;}
.y1e{bottom:3601.276776px;}
.y57{bottom:3610.950197px;}
.y65{bottom:3620.222992px;}
.y5a{bottom:3628.091917px;}
.y1d{bottom:3642.676766px;}
.y6c{bottom:3647.320980px;}
.y64{bottom:3659.822993px;}
.y59{bottom:3667.691918px;}
.y56{bottom:3668.820068px;}
.y1c{bottom:3684.076779px;}
.y1b{bottom:3725.476769px;}
.y1a{bottom:3766.876766px;}
.y40{bottom:3793.680035px;}
.y19{bottom:3808.276760px;}
.y18{bottom:3864.946409px;}
.y17{bottom:3906.646280px;}
.y16{bottom:3948.346172px;}
.y15{bottom:3990.046053px;}
.y14{bottom:4031.745935px;}
.y13{bottom:4073.445816px;}
.y12{bottom:4115.145686px;}
.yd{bottom:4117.114960px;}
.y11{bottom:4156.845556px;}
.y10{bottom:4198.545426px;}
.yc{bottom:4206.007715px;}
.yb{bottom:4247.407710px;}
.yaa{bottom:4271.263590px;}
.y37{bottom:4312.720639px;}
.ya{bottom:4317.491770px;}
.y9{bottom:4349.891760px;}
.y8{bottom:4392.416761px;}
.y7{bottom:4424.816769px;}
.y6{bottom:4457.216775px;}
.y5{bottom:4506.701562px;}
.y4{bottom:4560.701559px;}
.y3{bottom:4696.691775px;}
.y2{bottom:4794.686489px;}
.y1{bottom:4892.681215px;}
.ha{height:50.027345px;}
.h3{height:56.592005px;}
.h9{height:61.154297px;}
.h8{height:61.195312px;}
.h4{height:84.888003px;}
.hd{height:86.132813px;}
.h7{height:87.363282px;}
.h5{height:87.714844px;}
.he{height:94.746099px;}
.hc{height:96.486333px;}
.hb{height:135.960750px;}
.h6{height:141.480005px;}
.h2{height:161.820010px;}
.h1{height:205.441417px;}
.h0{height:5055.000000px;}
.w0{width:3574.500000px;}
.x0{left:0.000000px;}
.x1d{left:178.642911px;}
.x18{left:186.941942px;}
.x10{left:198.853353px;}
.xf{left:200.167330px;}
.x11{left:212.936186px;}
.x2c{left:228.138780px;}
.x12{left:259.924733px;}
.x16{left:276.782488px;}
.x35{left:286.537655px;}
.x9{left:371.577781px;}
.x4{left:476.778193px;}
.x19{left:516.627793px;}
.x1{left:536.975342px;}
.x2{left:557.110402px;}
.x7{left:746.522968px;}
.x32{left:801.142676px;}
.x1b{left:834.029014px;}
.x2d{left:893.766966px;}
.x8{left:915.650501px;}
.x20{left:958.101443px;}
.x5{left:1033.120102px;}
.x6{left:1048.494465px;}
.x33{left:1109.436043px;}
.x2f{left:1195.751176px;}
.xd{left:1278.138033px;}
.x2e{left:1463.442009px;}
.x3{left:1494.590605px;}
.x13{left:1512.789011px;}
.xa{left:1672.809185px;}
.x15{left:1847.049247px;}
.xb{left:1867.088647px;}
.x34{left:1885.113173px;}
.x1a{left:1890.274974px;}
.x30{left:1911.891886px;}
.x23{left:1930.581174px;}
.x21{left:1946.760925px;}
.x1f{left:1958.899675px;}
.x1e{left:1979.704751px;}
.x25{left:2286.496086px;}
.x22{left:2304.019311px;}
.x2a{left:2312.179274px;}
.x31{left:2453.202000px;}
.x1c{left:2469.620892px;}
.x14{left:2518.312659px;}
.xe{left:2529.794241px;}
.xc{left:2589.895163px;}
.x24{left:2684.324786px;}
.x29{left:2693.459674px;}
.x26{left:2695.789549px;}
.x2b{left:2702.335811px;}
.x28{left:3097.030599px;}
.x27{left:3100.402562px;}
.x17{left:3174.337485px;}
@media print{
.v2{vertical-align:-60.000002pt;}
.v3{vertical-align:-36.000001pt;}
.v6{vertical-align:-12.080000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:6.185200pt;}
.v4{vertical-align:9.868800pt;}
.v1{vertical-align:60.000002pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000078pt;}
.ls1{letter-spacing:0.050494pt;}
.ls2{letter-spacing:0.050534pt;}
.ls0{letter-spacing:0.050694pt;}
.ws8{word-spacing:-32.501335pt;}
.ws1{word-spacing:-32.000001pt;}
.ws4{word-spacing:-29.546667pt;}
.ws0{word-spacing:-21.333335pt;}
.ws3{word-spacing:-16.000001pt;}
.ws2{word-spacing:-12.800001pt;}
.ws9{word-spacing:0.000000pt;}
.ws5{word-spacing:501.306860pt;}
.ws7{word-spacing:587.890245pt;}
.ws6{word-spacing:685.689878pt;}
._0{margin-left:-18.549334pt;}
._1f{margin-left:-12.800000pt;}
._39{margin-left:-11.413333pt;}
._5{margin-left:-10.240000pt;}
._1b{margin-left:-8.213333pt;}
._2{margin-left:-6.580629pt;}
._1c{margin-left:-5.120000pt;}
._4{margin-left:-3.362634pt;}
._3{margin-left:-2.400000pt;}
._1{margin-left:-1.460569pt;}
._19{width:1.568000pt;}
._6{width:3.306667pt;}
._1a{width:4.309333pt;}
._26{width:5.506634pt;}
._14{width:6.613333pt;}
._25{width:8.340569pt;}
._15{width:10.687236pt;}
._18{width:12.160764pt;}
._10{width:13.226667pt;}
._27{width:14.186667pt;}
._12{width:15.840000pt;}
._b{width:17.493333pt;}
._c{width:18.453333pt;}
._8{width:19.413333pt;}
._23{width:20.447236pt;}
._2c{width:21.366098pt;}
._1e{width:22.666667pt;}
._1d{width:23.626667pt;}
._3e{width:25.492569pt;}
._7{width:26.453334pt;}
._9{width:27.626667pt;}
._13{width:31.360000pt;}
._28{width:32.426667pt;}
._24{width:33.493334pt;}
._a{width:37.546667pt;}
._e{width:39.072704pt;}
._d{width:40.500630pt;}
._38{width:41.440000pt;}
._22{width:42.346667pt;}
._f{width:48.213334pt;}
._29{width:49.600000pt;}
._2a{width:51.220403pt;}
._17{width:54.453334pt;}
._16{width:55.413334pt;}
._2f{width:61.120000pt;}
._11{width:65.813334pt;}
._3b{width:70.720000pt;}
._2b{width:74.346667pt;}
._2e{width:85.206098pt;}
._2d{width:86.527236pt;}
._34{width:87.819431pt;}
._33{width:90.666667pt;}
._30{width:111.573334pt;}
._3d{width:124.160001pt;}
._21{width:141.013334pt;}
._20{width:167.680001pt;}
._3a{width:185.280001pt;}
._31{width:198.400001pt;}
._32{width:205.813335pt;}
._37{width:218.560002pt;}
._3c{width:305.920002pt;}
._35{width:311.893336pt;}
._36{width:326.346669pt;}
.fs7{font-size:64.000002pt;}
.fs4{font-size:64.000005pt;}
.fs3{font-size:74.666666pt;}
.fs5{font-size:96.000003pt;}
.fs6{font-size:106.666667pt;}
.fs2{font-size:106.666675pt;}
.fs9{font-size:117.333340pt;}
.fs8{font-size:133.333332pt;}
.fs1{font-size:160.000005pt;}
.fs0{font-size:250.666680pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:117.336613pt;}
.y31{bottom:119.434843pt;}
.y30{bottom:141.674834pt;}
.y26{bottom:143.096614pt;}
.y2a{bottom:150.646604pt;}
.y25{bottom:168.856605pt;}
.y29{bottom:176.406602pt;}
.y2f{bottom:179.914815pt;}
.y24{bottom:194.616603pt;}
.y2e{bottom:202.154806pt;}
.y28{bottom:202.166598pt;}
.y23{bottom:220.376599pt;}
.y2d{bottom:240.394802pt;}
.y2c{bottom:262.634798pt;}
.yf{bottom:301.918839pt;}
.y36{bottom:307.883789pt;}
.y35{bottom:344.950441pt;}
.y9d{bottom:360.859201pt;}
.y34{bottom:382.017102pt;}
.y9c{bottom:392.859202pt;}
.y33{bottom:419.083753pt;}
.y9b{bottom:424.859203pt;}
.y32{bottom:456.150404pt;}
.y9a{bottom:456.859204pt;}
.y99{bottom:488.859205pt;}
.ye{bottom:517.463251pt;}
.y98{bottom:520.859206pt;}
.y22{bottom:565.751008pt;}
.ya2{bottom:597.295009pt;}
.ya1{bottom:629.295010pt;}
.ya0{bottom:661.295011pt;}
.y9f{bottom:693.295012pt;}
.y9e{bottom:725.295013pt;}
.y2b{bottom:776.791014pt;}
.y4e{bottom:970.465421pt;}
.y4d{bottom:1002.465422pt;}
.y4c{bottom:1034.465423pt;}
.y4b{bottom:1066.465424pt;}
.ya4{bottom:1069.195669pt;}
.y4a{bottom:1098.465425pt;}
.y49{bottom:1130.465426pt;}
.y55{bottom:1178.236127pt;}
.y78{bottom:1186.260768pt;}
.y54{bottom:1215.302768pt;}
.y77{bottom:1223.327419pt;}
.y53{bottom:1252.369420pt;}
.y76{bottom:1260.394070pt;}
.y52{bottom:1289.436071pt;}
.y75{bottom:1297.460731pt;}
.y51{bottom:1326.502732pt;}
.y74{bottom:1334.527382pt;}
.y50{bottom:1363.569383pt;}
.y73{bottom:1371.594033pt;}
.y4f{bottom:1400.636034pt;}
.y43{bottom:1533.626897pt;}
.ya3{bottom:1755.828282pt;}
.y48{bottom:1860.649249pt;}
.y47{bottom:1892.649250pt;}
.y46{bottom:1924.649251pt;}
.y45{bottom:1956.649252pt;}
.y44{bottom:1988.649253pt;}
.y41{bottom:2080.698392pt;}
.y97{bottom:2241.255561pt;}
.y80{bottom:2266.914462pt;}
.y88{bottom:2269.592862pt;}
.y96{bottom:2273.255562pt;}
.y7f{bottom:2298.914463pt;}
.y87{bottom:2301.592863pt;}
.y3e{bottom:2302.250363pt;}
.y95{bottom:2305.255563pt;}
.y7e{bottom:2330.914464pt;}
.y86{bottom:2333.592864pt;}
.y3d{bottom:2334.250364pt;}
.y8e{bottom:2336.501664pt;}
.y94{bottom:2337.255564pt;}
.y7d{bottom:2362.914465pt;}
.y85{bottom:2365.592865pt;}
.y3c{bottom:2366.250365pt;}
.y8d{bottom:2368.501665pt;}
.y93{bottom:2369.255565pt;}
.y7c{bottom:2394.914466pt;}
.y84{bottom:2397.592866pt;}
.y3b{bottom:2398.250366pt;}
.y8c{bottom:2400.501666pt;}
.y92{bottom:2401.255566pt;}
.y7b{bottom:2426.914467pt;}
.y83{bottom:2429.592867pt;}
.y3a{bottom:2430.250367pt;}
.y8b{bottom:2432.501667pt;}
.y91{bottom:2433.255567pt;}
.y7a{bottom:2458.914468pt;}
.y82{bottom:2461.592868pt;}
.y39{bottom:2462.250368pt;}
.y8a{bottom:2464.501668pt;}
.y90{bottom:2465.255568pt;}
.y79{bottom:2490.914469pt;}
.y81{bottom:2493.592869pt;}
.y38{bottom:2494.250369pt;}
.y89{bottom:2496.501669pt;}
.y8f{bottom:2497.255569pt;}
.y42{bottom:2640.321710pt;}
.ya9{bottom:2746.952677pt;}
.y6b{bottom:2770.077678pt;}
.y72{bottom:2789.319679pt;}
.y5c{bottom:2792.793479pt;}
.y70{bottom:2795.168879pt;}
.y6a{bottom:2805.277679pt;}
.y71{bottom:2824.519680pt;}
.y5b{bottom:2827.993480pt;}
.y6f{bottom:2830.368880pt;}
.y69{bottom:2840.477680pt;}
.y3f{bottom:2917.304683pt;}
.ya8{bottom:2932.152083pt;}
.y63{bottom:2956.360684pt;}
.y62{bottom:2991.560685pt;}
.y5f{bottom:3005.927386pt;}
.y6e{bottom:3006.863086pt;}
.y68{bottom:3014.800086pt;}
.y61{bottom:3026.760686pt;}
.y5e{bottom:3041.127387pt;}
.y6d{bottom:3042.063087pt;}
.y67{bottom:3050.000087pt;}
.y5d{bottom:3057.521587pt;}
.y60{bottom:3061.960688pt;}
.y21{bottom:3090.734918pt;}
.ya6{bottom:3124.271896pt;}
.y20{bottom:3127.534910pt;}
.y58{bottom:3158.293631pt;}
.ya5{bottom:3161.071891pt;}
.y1f{bottom:3164.334931pt;}
.ya7{bottom:3172.309591pt;}
.y66{bottom:3182.775991pt;}
.y1e{bottom:3201.134912pt;}
.y57{bottom:3209.733508pt;}
.y65{bottom:3217.975993pt;}
.y5a{bottom:3224.970593pt;}
.y1d{bottom:3237.934903pt;}
.y6c{bottom:3242.063093pt;}
.y64{bottom:3253.175994pt;}
.y59{bottom:3260.170594pt;}
.y56{bottom:3261.173394pt;}
.y1c{bottom:3274.734914pt;}
.y1b{bottom:3311.534906pt;}
.y1a{bottom:3348.334903pt;}
.y40{bottom:3372.160031pt;}
.y19{bottom:3385.134898pt;}
.y18{bottom:3435.507919pt;}
.y17{bottom:3472.574471pt;}
.y16{bottom:3509.641042pt;}
.y15{bottom:3546.707603pt;}
.y14{bottom:3583.774164pt;}
.y13{bottom:3620.840725pt;}
.y12{bottom:3657.907277pt;}
.yd{bottom:3659.657743pt;}
.y11{bottom:3694.973828pt;}
.y10{bottom:3732.040379pt;}
.yc{bottom:3738.673524pt;}
.yb{bottom:3775.473520pt;}
.yaa{bottom:3796.678747pt;}
.y37{bottom:3833.529457pt;}
.ya{bottom:3837.770462pt;}
.y9{bottom:3866.570453pt;}
.y8{bottom:3904.370454pt;}
.y7{bottom:3933.170461pt;}
.y6{bottom:3961.970466pt;}
.y5{bottom:4005.956944pt;}
.y4{bottom:4053.956941pt;}
.y3{bottom:4174.837133pt;}
.y2{bottom:4261.943546pt;}
.y1{bottom:4349.049969pt;}
.ha{height:44.468751pt;}
.h3{height:50.304004pt;}
.h9{height:54.359375pt;}
.h8{height:54.395833pt;}
.h4{height:75.456002pt;}
.hd{height:76.562501pt;}
.h7{height:77.656251pt;}
.h5{height:77.968751pt;}
.he{height:84.218755pt;}
.hc{height:85.765630pt;}
.hb{height:120.854000pt;}
.h6{height:125.760004pt;}
.h2{height:143.840009pt;}
.h1{height:182.614593pt;}
.h0{height:4493.333333pt;}
.w0{width:3177.333333pt;}
.x0{left:0.000000pt;}
.x1d{left:158.793699pt;}
.x18{left:166.170615pt;}
.x10{left:176.758536pt;}
.xf{left:177.926516pt;}
.x11{left:189.276610pt;}
.x2c{left:202.790026pt;}
.x12{left:231.044207pt;}
.x16{left:246.028878pt;}
.x35{left:254.700138pt;}
.x9{left:330.291361pt;}
.x4{left:423.802839pt;}
.x19{left:459.224705pt;}
.x1{left:477.311415pt;}
.x2{left:495.209246pt;}
.x7{left:663.575971pt;}
.x32{left:712.126823pt;}
.x1b{left:741.359124pt;}
.x2d{left:794.459525pt;}
.x8{left:813.911556pt;}
.x20{left:851.645727pt;}
.x5{left:918.328979pt;}
.x6{left:931.995080pt;}
.x33{left:986.165372pt;}
.x2f{left:1062.889934pt;}
.xd{left:1136.122696pt;}
.x2e{left:1300.837342pt;}
.x3{left:1328.524983pt;}
.x13{left:1344.701343pt;}
.xa{left:1486.941498pt;}
.x15{left:1641.821553pt;}
.xb{left:1659.634353pt;}
.x34{left:1675.656154pt;}
.x1a{left:1680.244422pt;}
.x30{left:1699.459454pt;}
.x23{left:1716.072155pt;}
.x21{left:1730.454155pt;}
.x1f{left:1741.244156pt;}
.x1e{left:1759.737556pt;}
.x25{left:2032.440965pt;}
.x22{left:2048.017166pt;}
.x2a{left:2055.270466pt;}
.x31{left:2180.624000pt;}
.x1c{left:2195.218570pt;}
.x14{left:2238.500142pt;}
.xe{left:2248.705992pt;}
.xc{left:2302.129034pt;}
.x24{left:2386.066476pt;}
.x29{left:2394.186377pt;}
.x26{left:2396.257377pt;}
.x2b{left:2402.076277pt;}
.x28{left:2752.916088pt;}
.x27{left:2755.913388pt;}
.x17{left:2821.633320pt;}
}




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