
    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_d44d5d5198bf427976bd4a03.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.942383;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_0f4aa4dd7769eb823106c45f.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_bfadbd8f08e7a7927619fbf0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921387;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_edf0a8e490b4394ec10f1f4c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_8223406076566194596c651e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.766602;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;}
.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;}
}
.ws2{word-spacing:-21.060786px;}
.ws0{word-spacing:-19.440789px;}
.ws1{word-spacing:0.000000px;}
._26{margin-left:-5.494642px;}
._7{margin-left:-4.475644px;}
._0{margin-left:-3.444620px;}
._1{margin-left:-2.252252px;}
._3{margin-left:-1.025068px;}
._2{width:1.014273px;}
._5{width:2.067523px;}
._4{width:3.229933px;}
._1f{width:4.830818px;}
._1a{width:5.929928px;}
._14{width:7.668101px;}
._19{width:8.690536px;}
._24{width:10.477083px;}
._39{width:11.864133px;}
._e{width:14.045048px;}
._d{width:15.366578px;}
._c{width:16.549275px;}
._3c{width:17.751231px;}
._36{width:19.705327px;}
._6{width:21.280981px;}
._f{width:22.887151px;}
._4c{width:24.313096px;}
._22{width:28.812473px;}
._21{width:29.865840px;}
._23{width:31.142980px;}
._11{width:32.804149px;}
._10{width:33.922345px;}
._45{width:35.028960px;}
._20{width:36.041193px;}
._25{width:38.025908px;}
._12{width:39.748614px;}
._13{width:41.043194px;}
._30{width:42.353270px;}
._8{width:45.150310px;}
._9{width:46.735048px;}
._b{width:48.755205px;}
._a{width:49.857421px;}
._1c{width:50.954927px;}
._2a{width:52.174286px;}
._1b{width:53.437138px;}
._1d{width:55.899605px;}
._1e{width:56.983513px;}
._2c{width:57.984029px;}
._3f{width:60.402335px;}
._18{width:66.909132px;}
._17{width:68.108873px;}
._16{width:69.220882px;}
._2e{width:100.205505px;}
._2d{width:102.063444px;}
._28{width:118.389655px;}
._33{width:130.463856px;}
._4e{width:135.227031px;}
._4f{width:136.333052px;}
._29{width:139.663951px;}
._35{width:165.116565px;}
._41{width:177.753037px;}
._3d{width:184.492489px;}
._2f{width:191.231940px;}
._37{width:306.331000px;}
._42{width:455.481198px;}
._46{width:662.490728px;}
._43{width:691.739187px;}
._3a{width:776.876859px;}
._3b{width:788.396850px;}
._3e{width:859.612590px;}
._44{width:1025.321517px;}
._15{width:1102.021481px;}
._48{width:1185.230964px;}
._32{width:1239.005961px;}
._31{width:1267.019236px;}
._4a{width:1338.623582px;}
._34{width:1341.089599px;}
._47{width:1355.758192px;}
._2b{width:1411.110336px;}
._38{width:1568.545478px;}
._4b{width:1722.625365px;}
._4d{width:1875.554430px;}
._40{width:1899.196643px;}
._49{width:2117.721555px;}
._27{width:2298.007223px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,32,96);}
.fs0{font-size:66.242700px;}
.fs1{font-size:72.002705px;}
.fs3{font-size:77.763154px;}
.fs2{font-size:84.243145px;}
.y40{bottom:-2.340019px;}
.y0{bottom:0.000000px;}
.y87{bottom:5.039977px;}
.y83{bottom:5.039979px;}
.y2{bottom:57.420043px;}
.y1d{bottom:80.460022px;}
.y3e{bottom:103.320099px;}
.y5e{bottom:108.900055px;}
.yca{bottom:111.240074px;}
.y6b{bottom:114.840088px;}
.y81{bottom:123.660049px;}
.y3d{bottom:131.040047px;}
.ya9{bottom:134.100083px;}
.yc9{bottom:138.960091px;}
.y3c{bottom:158.760064px;}
.y5d{bottom:159.120072px;}
.ya8{bottom:162.000068px;}
.y80{bottom:165.060036px;}
.yc8{bottom:166.680039px;}
.y6a{bottom:170.280052px;}
.y1c{bottom:174.240074px;}
.y3b{bottom:186.660049px;}
.ya7{bottom:189.720085px;}
.y7f{bottom:192.780052px;}
.yc7{bottom:194.400055px;}
.y69{bottom:198.180039px;}
.y1b{bottom:201.780052px;}
.y3a{bottom:214.380066px;}
.ya6{bottom:217.440033px;}
.yc6{bottom:222.300041px;}
.y1a{bottom:228.420043px;}
.y39{bottom:242.100083px;}
.y5c{bottom:242.640060px;}
.ya5{bottom:245.160049px;}
.y7e{bottom:248.400055px;}
.yc5{bottom:250.020058px;}
.y19{bottom:250.920043px;}
.y68{bottom:253.620072px;}
.y38{bottom:270.000068px;}
.y5b{bottom:270.540047px;}
.y7d{bottom:271.080093px;}
.ya4{bottom:273.060036px;}
.y67{bottom:276.300041px;}
.yc4{bottom:277.740074px;}
.y18{bottom:295.740074px;}
.y37{bottom:297.720085px;}
.ya3{bottom:300.780052px;}
.yc3{bottom:305.640060px;}
.y17{bottom:318.060036px;}
.ya2{bottom:323.460091px;}
.y36{bottom:325.440033px;}
.y5a{bottom:325.980079px;}
.yc2{bottom:333.360077px;}
.y16{bottom:340.560036px;}
.y35{bottom:353.160049px;}
.y59{bottom:354.060036px;}
.yc1{bottom:361.080093px;}
.y15{bottom:363.060036px;}
.y58{bottom:383.400055px;}
.y14{bottom:385.380066px;}
.yc0{bottom:388.800041px;}
.y13{bottom:407.880066px;}
.y34{bottom:408.780052px;}
.y57{bottom:411.120072px;}
.ybf{bottom:416.700096px;}
.y12{bottom:430.200096px;}
.y33{bottom:436.500068px;}
.y56{bottom:439.020058px;}
.ybe{bottom:444.420043px;}
.y11{bottom:452.700096px;}
.y32{bottom:464.400055px;}
.y55{bottom:466.740074px;}
.ybd{bottom:471.780052px;}
.y3f{bottom:486.000068px;}
.y31{bottom:492.120072px;}
.y54{bottom:494.460091px;}
.y10{bottom:497.520058px;}
.ybc{bottom:500.040047px;}
.y7c{bottom:513.720085px;}
.y30{bottom:519.840088px;}
.yf{bottom:520.020058px;}
.y53{bottom:522.180039px;}
.ya1{bottom:525.600083px;}
.ybb{bottom:527.760064px;}
.y7b{bottom:541.440033px;}
.ye{bottom:542.340088px;}
.y52{bottom:549.900055px;}
.ya0{bottom:553.500068px;}
.yba{bottom:555.480079px;}
.y7a{bottom:569.340088px;}
.y2f{bottom:575.460091px;}
.y51{bottom:579.600083px;}
.y9f{bottom:581.220085px;}
.yb9{bottom:583.200096px;}
.y79{bottom:597.060036px;}
.yd{bottom:597.780052px;}
.y66{bottom:603.180039px;}
.y50{bottom:607.320099px;}
.y9e{bottom:608.940033px;}
.yb8{bottom:611.100083px;}
.y78{bottom:624.780052px;}
.y65{bottom:630.900055px;}
.y4f{bottom:635.220085px;}
.y9d{bottom:636.660049px;}
.yb7{bottom:638.820099px;}
.yc{bottom:651.780052px;}
.y77{bottom:652.860077px;}
.y2e{bottom:658.800041px;}
.y64{bottom:658.980079px;}
.y4e{bottom:663.120072px;}
.y9c{bottom:664.740074px;}
.yb6{bottom:666.720085px;}
.y76{bottom:680.580093px;}
.y2d{bottom:686.700096px;}
.y4d{bottom:690.660049px;}
.y9b{bottom:692.460056px;}
.yb{bottom:706.500068px;}
.y75{bottom:708.300076px;}
.y2c{bottom:714.420078px;}
.y9a{bottom:720.180073px;}
.yb5{bottom:722.340054px;}
.y2b{bottom:742.140060px;}
.y63{bottom:742.320065px;}
.y99{bottom:748.080059px;}
.yb4{bottom:750.060070px;}
.y4c{bottom:754.200061px;}
.ya{bottom:760.140060px;}
.y74{bottom:763.920078px;}
.y2a{bottom:770.040081px;}
.y98{bottom:775.800076px;}
.yb3{bottom:777.780052px;}
.y73{bottom:791.640060px;}
.y62{bottom:797.760064px;}
.y97{bottom:803.520058px;}
.yb2{bottom:805.680073px;}
.y9{bottom:815.040081px;}
.y72{bottom:819.360077px;}
.y61{bottom:820.440067px;}
.y29{bottom:825.480079px;}
.y96{bottom:831.420078px;}
.y4b{bottom:837.540081px;}
.y28{bottom:853.200061px;}
.y8a{bottom:855.540081px;}
.y95{bottom:859.680073px;}
.y8b{bottom:860.580059px;}
.yb1{bottom:861.120072px;}
.y4a{bottom:865.260064px;}
.y8{bottom:868.680073px;}
.y27{bottom:881.100083px;}
.y88{bottom:883.980079px;}
.y94{bottom:887.400055px;}
.yb0{bottom:888.840054px;}
.y89{bottom:889.020058px;}
.y49{bottom:892.980079px;}
.y86{bottom:912.420078px;}
.y93{bottom:915.120072px;}
.yaf{bottom:916.740074px;}
.y85{bottom:917.460056px;}
.y48{bottom:920.880066px;}
.y7{bottom:923.400055px;}
.y26{bottom:936.540081px;}
.y82{bottom:941.040081px;}
.y92{bottom:942.840054px;}
.yae{bottom:945.180073px;}
.y84{bottom:946.080059px;}
.y47{bottom:949.140060px;}
.y6{bottom:959.580059px;}
.y25{bottom:964.440067px;}
.y91{bottom:970.740074px;}
.y46{bottom:976.860060px;}
.y71{bottom:983.520058px;}
.y24{bottom:992.160067px;}
.y90{bottom:998.640060px;}
.y45{bottom:1004.760064px;}
.yad{bottom:1008.180073px;}
.y70{bottom:1011.240074px;}
.y5{bottom:1013.220068px;}
.y23{bottom:1019.880066px;}
.y8f{bottom:1026.720068px;}
.y44{bottom:1033.380066px;}
.yac{bottom:1036.800058px;}
.y6f{bottom:1038.960074px;}
.y22{bottom:1047.600065px;}
.y43{bottom:1063.080059px;}
.yab{bottom:1065.240074px;}
.y6e{bottom:1066.680073px;}
.y4{bottom:1067.760064px;}
.y21{bottom:1075.500068px;}
.y60{bottom:1090.260064px;}
.yaa{bottom:1093.680073px;}
.y6d{bottom:1094.580059px;}
.y8e{bottom:1101.420061px;}
.y20{bottom:1103.220068px;}
.y3{bottom:1103.940067px;}
.y5f{bottom:1117.800058px;}
.y42{bottom:1120.680064px;}
.y6c{bottom:1122.300067px;}
.y8d{bottom:1129.140069px;}
.y1f{bottom:1130.940067px;}
.y41{bottom:1150.020066px;}
.y8c{bottom:1157.040064px;}
.y1e{bottom:1158.840063px;}
.y1{bottom:1194.300067px;}
.h9{height:16.200028px;}
.hc{height:23.759994px;}
.hb{height:23.759995px;}
.h2{height:47.838356px;}
.h3{height:50.275326px;}
.ha{height:58.740039px;}
.h8{height:58.822118px;}
.h4{height:59.439133px;}
.h5{height:60.837701px;}
.h7{height:64.093850px;}
.h6{height:69.434780px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w5{width:8.279983px;}
.w6{width:8.460022px;}
.wf{width:9.000000px;}
.w2{width:11.520024px;}
.w10{width:18.899987px;}
.w8{width:19.080025px;}
.wa{width:19.620003px;}
.w9{width:19.799972px;}
.w7{width:19.799973px;}
.w4{width:24.839985px;}
.wb{width:30.060001px;}
.w11{width:30.239937px;}
.wc{width:30.240006px;}
.wd{width:40.679970px;}
.w12{width:129.600006px;}
.w3{width:136.619994px;}
.we{width:170.279992px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:63.899999px;}
.x32{left:112.140000px;}
.x14{left:117.000000px;}
.x1{left:127.620002px;}
.x1c{left:140.579999px;}
.x3{left:149.759994px;}
.x4a{left:153.180005px;}
.xd{left:157.319996px;}
.x9{left:168.120002px;}
.xb{left:172.259994px;}
.x6{left:174.780001px;}
.x11{left:180.719999px;}
.x4f{left:189.180005px;}
.x20{left:192.240006px;}
.x21{left:194.759994px;}
.x24{left:204.479994px;}
.x1e{left:206.099997px;}
.x10{left:217.439999px;}
.x7{left:240.300007px;}
.x29{left:245.699993px;}
.x33{left:247.860008px;}
.x17{left:263.879998px;}
.x23{left:267.479994px;}
.x44{left:279.360008px;}
.x2e{left:282.780001px;}
.x4d{left:302.040012px;}
.x27{left:305.459988px;}
.xc{left:322.379998px;}
.x8{left:350.459988px;}
.x4{left:353.160015px;}
.x2d{left:360.180005px;}
.x22{left:366.300007px;}
.x25{left:374.579990px;}
.x49{left:385.920010px;}
.x34{left:393.120002px;}
.x51{left:400.319996px;}
.x45{left:402.839985px;}
.x1a{left:412.199993px;}
.x3e{left:413.459988px;}
.x2c{left:415.800007px;}
.x35{left:418.680005px;}
.x36{left:460.800007px;}
.x37{left:470.519989px;}
.x46{left:481.139992px;}
.x1f{left:487.980011px;}
.x3f{left:491.579990px;}
.x18{left:494.100014px;}
.x31{left:501.300007px;}
.x1d{left:509.220017px;}
.x38{left:516.959988px;}
.x39{left:526.860008px;}
.x47{left:537.480011px;}
.x40{left:547.920010px;}
.x4b{left:559.079990px;}
.x28{left:586.440033px;}
.x19{left:593.639992px;}
.x4e{left:594.720017px;}
.x4c{left:596.519989px;}
.x3a{left:600.840019px;}
.x5{left:609.299973px;}
.x13{left:615.779983px;}
.xa{left:620.639992px;}
.x30{left:623.340019px;}
.x16{left:625.500000px;}
.x2b{left:630.360008px;}
.x41{left:631.799973px;}
.x15{left:659.159981px;}
.x2f{left:667.620002px;}
.x3b{left:675.179970px;}
.xe{left:686.159981px;}
.x2a{left:688.679970px;}
.x3c{left:695.700027px;}
.x42{left:706.139992px;}
.x26{left:755.639992px;}
.x3d{left:760.320030px;}
.x1b{left:765.360008px;}
.xf{left:779.940033px;}
.x48{left:791.279983px;}
.x43{left:801.720017px;}
.x2{left:811.259994px;}
.x50{left:823.860008px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws2{word-spacing:-18.720699pt;}
.ws0{word-spacing:-17.280701pt;}
.ws1{word-spacing:0.000000pt;}
._26{margin-left:-4.884126pt;}
._7{margin-left:-3.978351pt;}
._0{margin-left:-3.061885pt;}
._1{margin-left:-2.002002pt;}
._3{margin-left:-0.911172pt;}
._2{width:0.901576pt;}
._5{width:1.837798pt;}
._4{width:2.871051pt;}
._1f{width:4.294060pt;}
._1a{width:5.271047pt;}
._14{width:6.816090pt;}
._19{width:7.724921pt;}
._24{width:9.312963pt;}
._39{width:10.545896pt;}
._e{width:12.484487pt;}
._d{width:13.659181pt;}
._c{width:14.710467pt;}
._3c{width:15.778872pt;}
._36{width:17.515846pt;}
._6{width:18.916427pt;}
._f{width:20.344135pt;}
._4c{width:21.611641pt;}
._22{width:25.611087pt;}
._21{width:26.547413pt;}
._23{width:27.682649pt;}
._11{width:29.159244pt;}
._10{width:30.153196pt;}
._45{width:31.136853pt;}
._20{width:32.036616pt;}
._25{width:33.800807pt;}
._12{width:35.332102pt;}
._13{width:36.482840pt;}
._30{width:37.647351pt;}
._8{width:40.133609pt;}
._9{width:41.542265pt;}
._b{width:43.337960pt;}
._a{width:44.317708pt;}
._1c{width:45.293269pt;}
._2a{width:46.377143pt;}
._1b{width:47.499679pt;}
._1d{width:49.688538pt;}
._1e{width:50.652012pt;}
._2c{width:51.541359pt;}
._3f{width:53.690965pt;}
._18{width:59.474784pt;}
._17{width:60.541221pt;}
._16{width:61.529672pt;}
._2e{width:89.071560pt;}
._2d{width:90.723061pt;}
._28{width:105.235249pt;}
._33{width:115.967872pt;}
._4e{width:120.201806pt;}
._4f{width:121.184935pt;}
._29{width:124.145735pt;}
._35{width:146.770280pt;}
._41{width:158.002700pt;}
._3d{width:163.993323pt;}
._2f{width:169.983947pt;}
._37{width:272.294222pt;}
._42{width:404.872176pt;}
._46{width:588.880648pt;}
._43{width:614.879277pt;}
._3a{width:690.557208pt;}
._3b{width:700.797200pt;}
._3e{width:764.100080pt;}
._44{width:911.396904pt;}
._15{width:979.574650pt;}
._48{width:1053.538635pt;}
._32{width:1101.338632pt;}
._31{width:1126.239321pt;}
._4a{width:1189.887628pt;}
._34{width:1192.079644pt;}
._47{width:1205.118393pt;}
._2b{width:1254.320299pt;}
._38{width:1394.262647pt;}
._4b{width:1531.222547pt;}
._4d{width:1667.159494pt;}
._40{width:1688.174794pt;}
._49{width:1882.419160pt;}
._27{width:2042.673087pt;}
.fs0{font-size:58.882400pt;}
.fs1{font-size:64.002404pt;}
.fs3{font-size:69.122804pt;}
.fs2{font-size:74.882796pt;}
.y40{bottom:-2.080017pt;}
.y0{bottom:0.000000pt;}
.y87{bottom:4.479980pt;}
.y83{bottom:4.479981pt;}
.y2{bottom:51.040039pt;}
.y1d{bottom:71.520020pt;}
.y3e{bottom:91.840088pt;}
.y5e{bottom:96.800049pt;}
.yca{bottom:98.880066pt;}
.y6b{bottom:102.080079pt;}
.y81{bottom:109.920044pt;}
.y3d{bottom:116.480042pt;}
.ya9{bottom:119.200074pt;}
.yc9{bottom:123.520081pt;}
.y3c{bottom:141.120057pt;}
.y5d{bottom:141.440064pt;}
.ya8{bottom:144.000061pt;}
.y80{bottom:146.720032pt;}
.yc8{bottom:148.160035pt;}
.y6a{bottom:151.360047pt;}
.y1c{bottom:154.880066pt;}
.y3b{bottom:165.920044pt;}
.ya7{bottom:168.640076pt;}
.y7f{bottom:171.360047pt;}
.yc7{bottom:172.800049pt;}
.y69{bottom:176.160035pt;}
.y1b{bottom:179.360047pt;}
.y3a{bottom:190.560059pt;}
.ya6{bottom:193.280030pt;}
.yc6{bottom:197.600037pt;}
.y1a{bottom:203.040039pt;}
.y39{bottom:215.200074pt;}
.y5c{bottom:215.680054pt;}
.ya5{bottom:217.920044pt;}
.y7e{bottom:220.800049pt;}
.yc5{bottom:222.240052pt;}
.y19{bottom:223.040039pt;}
.y68{bottom:225.440064pt;}
.y38{bottom:240.000061pt;}
.y5b{bottom:240.480042pt;}
.y7d{bottom:240.960083pt;}
.ya4{bottom:242.720032pt;}
.y67{bottom:245.600037pt;}
.yc4{bottom:246.880066pt;}
.y18{bottom:262.880066pt;}
.y37{bottom:264.640076pt;}
.ya3{bottom:267.360047pt;}
.yc3{bottom:271.680054pt;}
.y17{bottom:282.720032pt;}
.ya2{bottom:287.520081pt;}
.y36{bottom:289.280030pt;}
.y5a{bottom:289.760071pt;}
.yc2{bottom:296.320069pt;}
.y16{bottom:302.720032pt;}
.y35{bottom:313.920044pt;}
.y59{bottom:314.720032pt;}
.yc1{bottom:320.960083pt;}
.y15{bottom:322.720032pt;}
.y58{bottom:340.800049pt;}
.y14{bottom:342.560059pt;}
.yc0{bottom:345.600037pt;}
.y13{bottom:362.560059pt;}
.y34{bottom:363.360047pt;}
.y57{bottom:365.440064pt;}
.ybf{bottom:370.400086pt;}
.y12{bottom:382.400086pt;}
.y33{bottom:388.000061pt;}
.y56{bottom:390.240052pt;}
.ybe{bottom:395.040039pt;}
.y11{bottom:402.400086pt;}
.y32{bottom:412.800049pt;}
.y55{bottom:414.880066pt;}
.ybd{bottom:419.360047pt;}
.y3f{bottom:432.000061pt;}
.y31{bottom:437.440064pt;}
.y54{bottom:439.520081pt;}
.y10{bottom:442.240052pt;}
.ybc{bottom:444.480042pt;}
.y7c{bottom:456.640076pt;}
.y30{bottom:462.080079pt;}
.yf{bottom:462.240052pt;}
.y53{bottom:464.160035pt;}
.ya1{bottom:467.200074pt;}
.ybb{bottom:469.120057pt;}
.y7b{bottom:481.280030pt;}
.ye{bottom:482.080079pt;}
.y52{bottom:488.800049pt;}
.ya0{bottom:492.000061pt;}
.yba{bottom:493.760071pt;}
.y7a{bottom:506.080079pt;}
.y2f{bottom:511.520081pt;}
.y51{bottom:515.200074pt;}
.y9f{bottom:516.640076pt;}
.yb9{bottom:518.400086pt;}
.y79{bottom:530.720032pt;}
.yd{bottom:531.360047pt;}
.y66{bottom:536.160035pt;}
.y50{bottom:539.840088pt;}
.y9e{bottom:541.280030pt;}
.yb8{bottom:543.200074pt;}
.y78{bottom:555.360047pt;}
.y65{bottom:560.800049pt;}
.y4f{bottom:564.640076pt;}
.y9d{bottom:565.920044pt;}
.yb7{bottom:567.840088pt;}
.yc{bottom:579.360047pt;}
.y77{bottom:580.320069pt;}
.y2e{bottom:585.600037pt;}
.y64{bottom:585.760071pt;}
.y4e{bottom:589.440064pt;}
.y9c{bottom:590.880066pt;}
.yb6{bottom:592.640076pt;}
.y76{bottom:604.960083pt;}
.y2d{bottom:610.400086pt;}
.y4d{bottom:613.920044pt;}
.y9b{bottom:615.520050pt;}
.yb{bottom:628.000061pt;}
.y75{bottom:629.600068pt;}
.y2c{bottom:635.040070pt;}
.y9a{bottom:640.160065pt;}
.yb5{bottom:642.080048pt;}
.y2b{bottom:659.680054pt;}
.y63{bottom:659.840058pt;}
.y99{bottom:664.960053pt;}
.yb4{bottom:666.720063pt;}
.y4c{bottom:670.400055pt;}
.ya{bottom:675.680054pt;}
.y74{bottom:679.040070pt;}
.y2a{bottom:684.480072pt;}
.y98{bottom:689.600068pt;}
.yb3{bottom:691.360047pt;}
.y73{bottom:703.680054pt;}
.y62{bottom:709.120057pt;}
.y97{bottom:714.240052pt;}
.yb2{bottom:716.160065pt;}
.y9{bottom:724.480072pt;}
.y72{bottom:728.320069pt;}
.y61{bottom:729.280060pt;}
.y29{bottom:733.760071pt;}
.y96{bottom:739.040070pt;}
.y4b{bottom:744.480072pt;}
.y28{bottom:758.400055pt;}
.y8a{bottom:760.480072pt;}
.y95{bottom:764.160065pt;}
.y8b{bottom:764.960053pt;}
.yb1{bottom:765.440064pt;}
.y4a{bottom:769.120057pt;}
.y8{bottom:772.160065pt;}
.y27{bottom:783.200074pt;}
.y88{bottom:785.760071pt;}
.y94{bottom:788.800049pt;}
.yb0{bottom:790.080048pt;}
.y89{bottom:790.240052pt;}
.y49{bottom:793.760071pt;}
.y86{bottom:811.040070pt;}
.y93{bottom:813.440064pt;}
.yaf{bottom:814.880066pt;}
.y85{bottom:815.520050pt;}
.y48{bottom:818.560059pt;}
.y7{bottom:820.800049pt;}
.y26{bottom:832.480072pt;}
.y82{bottom:836.480072pt;}
.y92{bottom:838.080048pt;}
.yae{bottom:840.160065pt;}
.y84{bottom:840.960053pt;}
.y47{bottom:843.680054pt;}
.y6{bottom:852.960053pt;}
.y25{bottom:857.280060pt;}
.y91{bottom:862.880066pt;}
.y46{bottom:868.320054pt;}
.y71{bottom:874.240052pt;}
.y24{bottom:881.920060pt;}
.y90{bottom:887.680054pt;}
.y45{bottom:893.120057pt;}
.yad{bottom:896.160065pt;}
.y70{bottom:898.880066pt;}
.y5{bottom:900.640061pt;}
.y23{bottom:906.560059pt;}
.y8f{bottom:912.640061pt;}
.y44{bottom:918.560059pt;}
.yac{bottom:921.600052pt;}
.y6f{bottom:923.520066pt;}
.y22{bottom:931.200058pt;}
.y43{bottom:944.960053pt;}
.yab{bottom:946.880066pt;}
.y6e{bottom:948.160065pt;}
.y4{bottom:949.120057pt;}
.y21{bottom:956.000061pt;}
.y60{bottom:969.120057pt;}
.yaa{bottom:972.160065pt;}
.y6d{bottom:972.960053pt;}
.y8e{bottom:979.040055pt;}
.y20{bottom:980.640061pt;}
.y3{bottom:981.280060pt;}
.y5f{bottom:993.600052pt;}
.y42{bottom:996.160057pt;}
.y6c{bottom:997.600060pt;}
.y8d{bottom:1003.680062pt;}
.y1f{bottom:1005.280060pt;}
.y41{bottom:1022.240059pt;}
.y8c{bottom:1028.480057pt;}
.y1e{bottom:1030.080056pt;}
.y1{bottom:1061.600060pt;}
.h9{height:14.400025pt;}
.hc{height:21.119995pt;}
.hb{height:21.119996pt;}
.h2{height:42.522983pt;}
.h3{height:44.689179pt;}
.ha{height:52.213368pt;}
.h8{height:52.286327pt;}
.h4{height:52.834785pt;}
.h5{height:54.077957pt;}
.h7{height:56.972311pt;}
.h6{height:61.719805pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w5{width:7.359985pt;}
.w6{width:7.520020pt;}
.wf{width:8.000000pt;}
.w2{width:10.240021pt;}
.w10{width:16.799988pt;}
.w8{width:16.960022pt;}
.wa{width:17.440003pt;}
.w9{width:17.599975pt;}
.w7{width:17.599976pt;}
.w4{width:22.079987pt;}
.wb{width:26.720001pt;}
.w11{width:26.879944pt;}
.wc{width:26.880005pt;}
.wd{width:36.159973pt;}
.w12{width:115.200005pt;}
.w3{width:121.439995pt;}
.we{width:151.359993pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:56.799999pt;}
.x32{left:99.680000pt;}
.x14{left:104.000000pt;}
.x1{left:113.440002pt;}
.x1c{left:124.959999pt;}
.x3{left:133.119995pt;}
.x4a{left:136.160004pt;}
.xd{left:139.839996pt;}
.x9{left:149.440002pt;}
.xb{left:153.119995pt;}
.x6{left:155.360001pt;}
.x11{left:160.639999pt;}
.x4f{left:168.160004pt;}
.x20{left:170.880005pt;}
.x21{left:173.119995pt;}
.x24{left:181.759995pt;}
.x1e{left:183.199997pt;}
.x10{left:193.279999pt;}
.x7{left:213.600006pt;}
.x29{left:218.399994pt;}
.x33{left:220.320007pt;}
.x17{left:234.559998pt;}
.x23{left:237.759995pt;}
.x44{left:248.320007pt;}
.x2e{left:251.360001pt;}
.x4d{left:268.480011pt;}
.x27{left:271.519989pt;}
.xc{left:286.559998pt;}
.x8{left:311.519989pt;}
.x4{left:313.920013pt;}
.x2d{left:320.160004pt;}
.x22{left:325.600006pt;}
.x25{left:332.959991pt;}
.x49{left:343.040009pt;}
.x34{left:349.440002pt;}
.x51{left:355.839996pt;}
.x45{left:358.079987pt;}
.x1a{left:366.399994pt;}
.x3e{left:367.519989pt;}
.x2c{left:369.600006pt;}
.x35{left:372.160004pt;}
.x36{left:409.600006pt;}
.x37{left:418.239990pt;}
.x46{left:427.679993pt;}
.x1f{left:433.760010pt;}
.x3f{left:436.959991pt;}
.x18{left:439.200012pt;}
.x31{left:445.600006pt;}
.x1d{left:452.640015pt;}
.x38{left:459.519989pt;}
.x39{left:468.320007pt;}
.x47{left:477.760010pt;}
.x40{left:487.040009pt;}
.x4b{left:496.959991pt;}
.x28{left:521.280029pt;}
.x19{left:527.679993pt;}
.x4e{left:528.640015pt;}
.x4c{left:530.239990pt;}
.x3a{left:534.080017pt;}
.x5{left:541.599976pt;}
.x13{left:547.359985pt;}
.xa{left:551.679993pt;}
.x30{left:554.080017pt;}
.x16{left:556.000000pt;}
.x2b{left:560.320007pt;}
.x41{left:561.599976pt;}
.x15{left:585.919983pt;}
.x2f{left:593.440002pt;}
.x3b{left:600.159973pt;}
.xe{left:609.919983pt;}
.x2a{left:612.159973pt;}
.x3c{left:618.400024pt;}
.x42{left:627.679993pt;}
.x26{left:671.679993pt;}
.x3d{left:675.840027pt;}
.x1b{left:680.320007pt;}
.xf{left:693.280029pt;}
.x48{left:703.359985pt;}
.x43{left:712.640015pt;}
.x2{left:721.119995pt;}
.x50{left:732.320007pt;}
}




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