
    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_c046a6782ea7ad52b180a688.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.916992;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_a8e06f26360d7326bc67c362.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.163086;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_4b949fdc77423204aede9c8c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.080566;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_74718b34632bc9a951d48182.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_fe221717bb6207f222def38a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.946777;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_54aa3d6a6daff5e80b4bd0ac.woff2')format("woff");}.ff6{font-family:ff6;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;}
.v1{vertical-align:27.360081px;}
.v4{vertical-align:41.039982px;}
.v2{vertical-align:42.480014px;}
.v3{vertical-align:69.840090px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.359109px;}
.ls2{letter-spacing:0.359113px;}
.ls3{letter-spacing:32.615251px;}
.ls4{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;}
}
.ws1{word-spacing:-18.000676px;}
.ws3{word-spacing:-12.060450px;}
.ws0{word-spacing:-10.902647px;}
.ws2{word-spacing:0.000000px;}
._1d{margin-left:-4.353856px;}
._c{margin-left:-3.327386px;}
._1{margin-left:-1.560387px;}
._0{width:1.151997px;}
._19{width:2.676241px;}
._16{width:3.746391px;}
._1b{width:5.064894px;}
._b{width:6.684720px;}
._14{width:7.734779px;}
._5{width:9.564828px;}
._4{width:10.798764px;}
._39{width:11.800287px;}
._7{width:12.972018px;}
._17{width:14.419152px;}
._a{width:15.630821px;}
._9{width:16.690845px;}
._20{width:19.105468px;}
._8{width:20.353139px;}
._1c{width:21.400273px;}
._2{width:22.521252px;}
._3{width:23.589948px;}
._1a{width:25.083381px;}
._d{width:26.724254px;}
._15{width:27.742274px;}
._6{width:28.922024px;}
._18{width:29.956920px;}
._11{width:31.697784px;}
._12{width:33.370722px;}
._e{width:34.404355px;}
._f{width:35.536756px;}
._1f{width:38.523134px;}
._13{width:43.136651px;}
._3f{width:48.104497px;}
._3c{width:49.372479px;}
._3a{width:50.932351px;}
._3b{width:51.997531px;}
._3e{width:53.402334px;}
._3d{width:54.830622px;}
._33{width:59.821872px;}
._2c{width:64.862061px;}
._10{width:67.623196px;}
._32{width:71.342305px;}
._40{width:75.362081px;}
._2b{width:77.822548px;}
._2a{width:82.862737px;}
._21{width:88.323130px;}
._2e{width:89.342981px;}
._30{width:95.823224px;}
._35{width:118.581362px;}
._22{width:130.678721px;}
._31{width:133.264272px;}
._2d{width:136.816108px;}
._1e{width:144.005409px;}
._37{width:163.907908px;}
._24{width:167.120342px;}
._36{width:169.937352px;}
._38{width:185.875152px;}
._23{width:192.889969px;}
._29{width:202.951436px;}
._28{width:218.168195px;}
._2f{width:220.952112px;}
._27{width:231.128681px;}
._25{width:236.168871px;}
._26{width:241.929087px;}
._34{width:254.073356px;}
.fc3{color:transparent;}
.fc2{color:rgb(55,61,63);}
.fc1{color:rgb(0,0,255);}
.fc4{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.241800px;}
.fs3{font-size:59.762250px;}
.fs4{font-size:66.242700px;}
.fs2{font-size:71.999814px;}
.fs0{font-size:72.002705px;}
.y0{bottom:0.000000px;}
.y9{bottom:0.900055px;}
.y78{bottom:2.879998px;}
.y5{bottom:3.240005px;}
.y80{bottom:4.319961px;}
.y83{bottom:4.319962px;}
.y8d{bottom:4.319996px;}
.y94{bottom:4.319997px;}
.y87{bottom:4.320005px;}
.y7d{bottom:4.320029px;}
.y8{bottom:24.120072px;}
.y7{bottom:39.240005px;}
.y6{bottom:53.820099px;}
.y3{bottom:57.780121px;}
.y4{bottom:65.340088px;}
.y2{bottom:78.480011px;}
.y82{bottom:97.920043px;}
.y81{bottom:102.240005px;}
.y70{bottom:106.020127px;}
.y7f{bottom:119.340088px;}
.yc7{bottom:121.500068px;}
.y7e{bottom:123.660049px;}
.y7a{bottom:124.020058px;}
.y6f{bottom:126.720085px;}
.y3c{bottom:130.140060px;}
.y7c{bottom:140.760064px;}
.yc6{bottom:142.200096px;}
.y79{bottom:144.720085px;}
.y7b{bottom:145.080093px;}
.y6e{bottom:147.420043px;}
.y3b{bottom:150.840088px;}
.yc5{bottom:162.900055px;}
.y76{bottom:166.680039px;}
.y6d{bottom:168.120072px;}
.y77{bottom:170.640060px;}
.y3a{bottom:171.180039px;}
.yc4{bottom:183.600083px;}
.y74{bottom:187.740074px;}
.y75{bottom:188.100083px;}
.y6c{bottom:188.820099px;}
.y39{bottom:192.240074px;}
.yc3{bottom:204.300041px;}
.y6b{bottom:209.520058px;}
.y38{bottom:212.940033px;}
.yc2{bottom:225.000068px;}
.y73{bottom:229.860077px;}
.y6a{bottom:230.220085px;}
.y37{bottom:233.640060px;}
.yc1{bottom:245.700096px;}
.y72{bottom:250.560036px;}
.y69{bottom:250.920043px;}
.y36{bottom:254.340088px;}
.yc0{bottom:266.400055px;}
.y71{bottom:271.260064px;}
.y68{bottom:271.620072px;}
.y35{bottom:275.040047px;}
.ybf{bottom:287.100083px;}
.y67{bottom:292.320099px;}
.y34{bottom:295.740074px;}
.ybe{bottom:307.800041px;}
.y66{bottom:313.020058px;}
.y33{bottom:316.440033px;}
.ybd{bottom:328.500068px;}
.y65{bottom:333.720085px;}
.y32{bottom:337.140060px;}
.ybc{bottom:349.200096px;}
.y64{bottom:354.420043px;}
.y31{bottom:357.840088px;}
.ybb{bottom:369.900055px;}
.y63{bottom:375.120072px;}
.yca{bottom:375.660049px;}
.y30{bottom:378.540047px;}
.yba{bottom:390.600083px;}
.y62{bottom:395.820099px;}
.y2f{bottom:399.240074px;}
.yb9{bottom:411.300041px;}
.y61{bottom:416.520058px;}
.y2e{bottom:419.940033px;}
.yb8{bottom:432.000068px;}
.y60{bottom:437.220085px;}
.y2d{bottom:440.640060px;}
.yb7{bottom:452.700096px;}
.y5f{bottom:457.920043px;}
.y2c{bottom:461.340088px;}
.yb6{bottom:473.400055px;}
.y5e{bottom:478.620072px;}
.y2b{bottom:482.040047px;}
.yb5{bottom:494.100083px;}
.y5d{bottom:499.320099px;}
.y2a{bottom:502.740074px;}
.yb4{bottom:514.800041px;}
.y5c{bottom:520.020058px;}
.y29{bottom:523.080093px;}
.yb3{bottom:535.500068px;}
.y5b{bottom:540.720085px;}
.y28{bottom:544.140060px;}
.yb2{bottom:556.200096px;}
.y5a{bottom:561.420043px;}
.y27{bottom:564.840088px;}
.yb1{bottom:576.900055px;}
.y59{bottom:582.120072px;}
.y26{bottom:585.540047px;}
.yb0{bottom:597.600083px;}
.y58{bottom:602.820099px;}
.y25{bottom:606.240074px;}
.yaf{bottom:618.300041px;}
.y57{bottom:623.520058px;}
.y24{bottom:626.940033px;}
.yae{bottom:639.000068px;}
.y56{bottom:644.220085px;}
.y23{bottom:647.640060px;}
.yad{bottom:659.700096px;}
.y55{bottom:664.920043px;}
.y22{bottom:668.340088px;}
.yac{bottom:680.400055px;}
.y54{bottom:685.620072px;}
.y21{bottom:689.040081px;}
.yab{bottom:701.100083px;}
.y53{bottom:706.320065px;}
.y20{bottom:709.740074px;}
.yaa{bottom:721.800076px;}
.y52{bottom:727.020058px;}
.y1f{bottom:730.440067px;}
.ya9{bottom:742.500068px;}
.y51{bottom:747.720051px;}
.y1e{bottom:751.140060px;}
.ya8{bottom:763.200061px;}
.y50{bottom:768.420078px;}
.y1d{bottom:771.840054px;}
.ya7{bottom:783.900055px;}
.y4f{bottom:789.120072px;}
.y1c{bottom:792.540081px;}
.ya6{bottom:804.420078px;}
.y4e{bottom:809.820065px;}
.y1b{bottom:813.240074px;}
.ya5{bottom:825.120072px;}
.y4d{bottom:830.520058px;}
.y1a{bottom:833.940067px;}
.ya4{bottom:845.820065px;}
.y4c{bottom:851.220051px;}
.y19{bottom:854.280052px;}
.ya3{bottom:866.520058px;}
.y4b{bottom:871.920078px;}
.y18{bottom:874.620072px;}
.ya2{bottom:887.220051px;}
.y17{bottom:891.900055px;}
.y4a{bottom:892.620072px;}
.y9d{bottom:908.820065px;}
.y16{bottom:909.180073px;}
.y49{bottom:913.320065px;}
.y15{bottom:926.820065px;}
.y9c{bottom:929.520058px;}
.y48{bottom:934.020058px;}
.ya1{bottom:935.100083px;}
.ya0{bottom:945.540081px;}
.y14{bottom:947.880066px;}
.y9b{bottom:950.220051px;}
.y47{bottom:954.720051px;}
.y13{bottom:968.220051px;}
.y9a{bottom:970.920078px;}
.y46{bottom:975.420061px;}
.y12{bottom:989.280069px;}
.y99{bottom:991.620072px;}
.y45{bottom:996.120072px;}
.y11{bottom:1009.980063px;}
.y98{bottom:1012.320065px;}
.y9f{bottom:1014.120072px;}
.y44{bottom:1016.820065px;}
.y9e{bottom:1018.440067px;}
.y10{bottom:1030.320065px;}
.y97{bottom:1033.020058px;}
.y43{bottom:1037.520058px;}
.y96{bottom:1050.120072px;}
.yf{bottom:1051.020058px;}
.y95{bottom:1054.440067px;}
.y91{bottom:1054.800058px;}
.y42{bottom:1058.220068px;}
.y93{bottom:1071.540064px;}
.ye{bottom:1071.720068px;}
.y90{bottom:1075.500068px;}
.y92{bottom:1075.860060px;}
.y41{bottom:1078.920061px;}
.yd{bottom:1092.240074px;}
.y8f{bottom:1092.960074px;}
.y8e{bottom:1097.280069px;}
.y8a{bottom:1097.640060px;}
.yc9{bottom:1099.260064px;}
.y40{bottom:1099.620072px;}
.yc{bottom:1112.940067px;}
.y8c{bottom:1114.380066px;}
.y89{bottom:1118.340070px;}
.y8b{bottom:1118.700061px;}
.yc8{bottom:1119.960065px;}
.y3f{bottom:1120.320065px;}
.yb{bottom:1136.159694px;}
.y85{bottom:1140.120063px;}
.y3e{bottom:1141.020066px;}
.y86{bottom:1146.240066px;}
.y88{bottom:1150.560070px;}
.ya{bottom:1160.461384px;}
.y84{bottom:1160.820065px;}
.y3d{bottom:1161.720068px;}
.y1{bottom:1193.580068px;}
.h5{height:11.700027px;}
.he{height:12.240006px;}
.h3{height:14.579955px;}
.hf{height:20.519989px;}
.h10{height:20.519990px;}
.h12{height:20.519998px;}
.h13{height:20.520007px;}
.h6{height:33.825793px;}
.hb{height:41.903609px;}
.h4{height:47.982689px;}
.h2{height:50.486271px;}
.h9{height:51.998047px;}
.h18{height:52.419938px;}
.ha{height:52.630883px;}
.h17{height:61.185595px;}
.h14{height:61.185802px;}
.h16{height:61.185870px;}
.hc{height:61.185874px;}
.h7{height:62.261558px;}
.h8{height:62.264057px;}
.h19{height:65.886904px;}
.h15{height:91.526253px;}
.h11{height:92.246303px;}
.hd{height:134.726141px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w4{width:5.399987px;}
.w3{width:7.019989px;}
.wa{width:7.740006px;}
.wb{width:8.820030px;}
.w7{width:12.059966px;}
.w5{width:12.060001px;}
.w6{width:12.060002px;}
.w8{width:12.060035px;}
.w9{width:12.060036px;}
.w2{width:53.100015px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:84.959997px;}
.x2d{left:97.379998px;}
.x15{left:99.180005px;}
.x23{left:104.040003px;}
.x2e{left:108.360000px;}
.x13{left:110.519998px;}
.x2a{left:111.959997px;}
.x2f{left:114.120002px;}
.x8{left:137.882464px;}
.xb{left:147.960005px;}
.x24{left:197.280001px;}
.xc{left:213.659998px;}
.x9{left:299.882056px;}
.x17{left:307.980011px;}
.x32{left:311.759994px;}
.x14{left:317.699993px;}
.x18{left:329.040012px;}
.x25{left:354.959988px;}
.x26{left:371.160015px;}
.x19{left:410.579990px;}
.x1a{left:422.639992px;}
.x2{left:432.899987px;}
.x27{left:444.060001px;}
.xa{left:446.399987px;}
.x28{left:466.199993px;}
.x1b{left:496.620002px;}
.x1c{left:508.680005px;}
.xe{left:522.360008px;}
.xd{left:535.139992px;}
.x11{left:544.319996px;}
.xf{left:564.480011px;}
.x1d{left:590.220017px;}
.x1e{left:602.279983px;}
.x1f{left:673.559967px;}
.x16{left:675.179970px;}
.x10{left:678.059967px;}
.x20{left:685.620002px;}
.x31{left:691.200027px;}
.x2b{left:711.539978px;}
.x2c{left:732.240006px;}
.x12{left:740.340019px;}
.x6{left:746.279983px;}
.x5{left:751.139992px;}
.x3{left:759.779983px;}
.x21{left:762.659981px;}
.x22{left:774.720017px;}
.x7{left:786.240006px;}
.x30{left:790.559967px;}
.x29{left:791.639992px;}
.x4{left:812.879998px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320072pt;}
.v4{vertical-align:36.479984pt;}
.v2{vertical-align:37.760012pt;}
.v3{vertical-align:62.080080pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.319208pt;}
.ls2{letter-spacing:0.319212pt;}
.ls3{letter-spacing:28.991334pt;}
.ls4{letter-spacing:751.999367pt;}
.ws1{word-spacing:-16.000601pt;}
.ws3{word-spacing:-10.720400pt;}
.ws0{word-spacing:-9.691242pt;}
.ws2{word-spacing:0.000000pt;}
._1d{margin-left:-3.870095pt;}
._c{margin-left:-2.957676pt;}
._1{margin-left:-1.387011pt;}
._0{width:1.023997pt;}
._19{width:2.378880pt;}
._16{width:3.330125pt;}
._1b{width:4.502128pt;}
._b{width:5.941973pt;}
._14{width:6.875359pt;}
._5{width:8.502069pt;}
._4{width:9.598902pt;}
._39{width:10.489144pt;}
._7{width:11.530683pt;}
._17{width:12.817024pt;}
._a{width:13.894063pt;}
._9{width:14.836307pt;}
._20{width:16.982638pt;}
._8{width:18.091680pt;}
._1c{width:19.022464pt;}
._2{width:20.018890pt;}
._3{width:20.968842pt;}
._1a{width:22.296339pt;}
._d{width:23.754892pt;}
._15{width:24.659799pt;}
._6{width:25.708466pt;}
._18{width:26.628373pt;}
._11{width:28.175808pt;}
._12{width:29.662864pt;}
._e{width:30.581649pt;}
._f{width:31.588228pt;}
._1f{width:34.242786pt;}
._13{width:38.343690pt;}
._3f{width:42.759553pt;}
._3c{width:43.886648pt;}
._3a{width:45.273200pt;}
._3b{width:46.220027pt;}
._3e{width:47.468742pt;}
._3d{width:48.738331pt;}
._33{width:53.174997pt;}
._2c{width:57.655166pt;}
._10{width:60.109508pt;}
._32{width:63.415382pt;}
._40{width:66.988516pt;}
._2b{width:69.175598pt;}
._2a{width:73.655767pt;}
._21{width:78.509449pt;}
._2e{width:79.415983pt;}
._30{width:85.176199pt;}
._35{width:105.405655pt;}
._22{width:116.158863pt;}
._31{width:118.457131pt;}
._2d{width:121.614318pt;}
._1e{width:128.004808pt;}
._37{width:145.695918pt;}
._24{width:148.551416pt;}
._36{width:151.055424pt;}
._38{width:165.222357pt;}
._23{width:171.457751pt;}
._29{width:180.401276pt;}
._28{width:193.927284pt;}
._2f{width:196.401877pt;}
._27{width:205.447717pt;}
._25{width:209.927885pt;}
._26{width:215.048077pt;}
._34{width:225.842983pt;}
.fs1{font-size:42.881600pt;}
.fs3{font-size:53.122000pt;}
.fs4{font-size:58.882400pt;}
.fs2{font-size:63.999835pt;}
.fs0{font-size:64.002404pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:0.800049pt;}
.y78{bottom:2.559998pt;}
.y5{bottom:2.880004pt;}
.y80{bottom:3.839965pt;}
.y83{bottom:3.839966pt;}
.y8d{bottom:3.839996pt;}
.y94{bottom:3.839997pt;}
.y87{bottom:3.840004pt;}
.y7d{bottom:3.840026pt;}
.y8{bottom:21.440064pt;}
.y7{bottom:34.880005pt;}
.y6{bottom:47.840088pt;}
.y3{bottom:51.360108pt;}
.y4{bottom:58.080079pt;}
.y2{bottom:69.760010pt;}
.y82{bottom:87.040039pt;}
.y81{bottom:90.880005pt;}
.y70{bottom:94.240113pt;}
.y7f{bottom:106.080079pt;}
.yc7{bottom:108.000061pt;}
.y7e{bottom:109.920044pt;}
.y7a{bottom:110.240052pt;}
.y6f{bottom:112.640076pt;}
.y3c{bottom:115.680054pt;}
.y7c{bottom:125.120057pt;}
.yc6{bottom:126.400086pt;}
.y79{bottom:128.640076pt;}
.y7b{bottom:128.960083pt;}
.y6e{bottom:131.040039pt;}
.y3b{bottom:134.080079pt;}
.yc5{bottom:144.800049pt;}
.y76{bottom:148.160035pt;}
.y6d{bottom:149.440064pt;}
.y77{bottom:151.680054pt;}
.y3a{bottom:152.160035pt;}
.yc4{bottom:163.200074pt;}
.y74{bottom:166.880066pt;}
.y75{bottom:167.200074pt;}
.y6c{bottom:167.840088pt;}
.y39{bottom:170.880066pt;}
.yc3{bottom:181.600037pt;}
.y6b{bottom:186.240052pt;}
.y38{bottom:189.280030pt;}
.yc2{bottom:200.000061pt;}
.y73{bottom:204.320069pt;}
.y6a{bottom:204.640076pt;}
.y37{bottom:207.680054pt;}
.yc1{bottom:218.400086pt;}
.y72{bottom:222.720032pt;}
.y69{bottom:223.040039pt;}
.y36{bottom:226.080079pt;}
.yc0{bottom:236.800049pt;}
.y71{bottom:241.120057pt;}
.y68{bottom:241.440064pt;}
.y35{bottom:244.480042pt;}
.ybf{bottom:255.200074pt;}
.y67{bottom:259.840088pt;}
.y34{bottom:262.880066pt;}
.ybe{bottom:273.600037pt;}
.y66{bottom:278.240052pt;}
.y33{bottom:281.280030pt;}
.ybd{bottom:292.000061pt;}
.y65{bottom:296.640076pt;}
.y32{bottom:299.680054pt;}
.ybc{bottom:310.400086pt;}
.y64{bottom:315.040039pt;}
.y31{bottom:318.080079pt;}
.ybb{bottom:328.800049pt;}
.y63{bottom:333.440064pt;}
.yca{bottom:333.920044pt;}
.y30{bottom:336.480042pt;}
.yba{bottom:347.200074pt;}
.y62{bottom:351.840088pt;}
.y2f{bottom:354.880066pt;}
.yb9{bottom:365.600037pt;}
.y61{bottom:370.240052pt;}
.y2e{bottom:373.280030pt;}
.yb8{bottom:384.000061pt;}
.y60{bottom:388.640076pt;}
.y2d{bottom:391.680054pt;}
.yb7{bottom:402.400086pt;}
.y5f{bottom:407.040039pt;}
.y2c{bottom:410.080079pt;}
.yb6{bottom:420.800049pt;}
.y5e{bottom:425.440064pt;}
.y2b{bottom:428.480042pt;}
.yb5{bottom:439.200074pt;}
.y5d{bottom:443.840088pt;}
.y2a{bottom:446.880066pt;}
.yb4{bottom:457.600037pt;}
.y5c{bottom:462.240052pt;}
.y29{bottom:464.960083pt;}
.yb3{bottom:476.000061pt;}
.y5b{bottom:480.640076pt;}
.y28{bottom:483.680054pt;}
.yb2{bottom:494.400086pt;}
.y5a{bottom:499.040039pt;}
.y27{bottom:502.080079pt;}
.yb1{bottom:512.800049pt;}
.y59{bottom:517.440064pt;}
.y26{bottom:520.480042pt;}
.yb0{bottom:531.200074pt;}
.y58{bottom:535.840088pt;}
.y25{bottom:538.880066pt;}
.yaf{bottom:549.600037pt;}
.y57{bottom:554.240052pt;}
.y24{bottom:557.280030pt;}
.yae{bottom:568.000061pt;}
.y56{bottom:572.640076pt;}
.y23{bottom:575.680054pt;}
.yad{bottom:586.400086pt;}
.y55{bottom:591.040039pt;}
.y22{bottom:594.080079pt;}
.yac{bottom:604.800049pt;}
.y54{bottom:609.440064pt;}
.y21{bottom:612.480072pt;}
.yab{bottom:623.200074pt;}
.y53{bottom:627.840058pt;}
.y20{bottom:630.880066pt;}
.yaa{bottom:641.600068pt;}
.y52{bottom:646.240052pt;}
.y1f{bottom:649.280060pt;}
.ya9{bottom:660.000061pt;}
.y51{bottom:664.640046pt;}
.y1e{bottom:667.680054pt;}
.ya8{bottom:678.400055pt;}
.y50{bottom:683.040070pt;}
.y1d{bottom:686.080048pt;}
.ya7{bottom:696.800049pt;}
.y4f{bottom:701.440064pt;}
.y1c{bottom:704.480072pt;}
.ya6{bottom:715.040070pt;}
.y4e{bottom:719.840058pt;}
.y1b{bottom:722.880066pt;}
.ya5{bottom:733.440064pt;}
.y4d{bottom:738.240052pt;}
.y1a{bottom:741.280060pt;}
.ya4{bottom:751.840058pt;}
.y4c{bottom:756.640046pt;}
.y19{bottom:759.360047pt;}
.ya3{bottom:770.240052pt;}
.y4b{bottom:775.040070pt;}
.y18{bottom:777.440064pt;}
.ya2{bottom:788.640046pt;}
.y17{bottom:792.800049pt;}
.y4a{bottom:793.440064pt;}
.y9d{bottom:807.840058pt;}
.y16{bottom:808.160065pt;}
.y49{bottom:811.840058pt;}
.y15{bottom:823.840058pt;}
.y9c{bottom:826.240052pt;}
.y48{bottom:830.240052pt;}
.ya1{bottom:831.200074pt;}
.ya0{bottom:840.480072pt;}
.y14{bottom:842.560059pt;}
.y9b{bottom:844.640046pt;}
.y47{bottom:848.640046pt;}
.y13{bottom:860.640046pt;}
.y9a{bottom:863.040070pt;}
.y46{bottom:867.040055pt;}
.y12{bottom:879.360062pt;}
.y99{bottom:881.440064pt;}
.y45{bottom:885.440064pt;}
.y11{bottom:897.760056pt;}
.y98{bottom:899.840058pt;}
.y9f{bottom:901.440064pt;}
.y44{bottom:903.840058pt;}
.y9e{bottom:905.280060pt;}
.y10{bottom:915.840058pt;}
.y97{bottom:918.240052pt;}
.y43{bottom:922.240052pt;}
.y96{bottom:933.440064pt;}
.yf{bottom:934.240052pt;}
.y95{bottom:937.280060pt;}
.y91{bottom:937.600052pt;}
.y42{bottom:940.640061pt;}
.y93{bottom:952.480057pt;}
.ye{bottom:952.640061pt;}
.y90{bottom:956.000061pt;}
.y92{bottom:956.320054pt;}
.y41{bottom:959.040055pt;}
.yd{bottom:970.880066pt;}
.y8f{bottom:971.520066pt;}
.y8e{bottom:975.360062pt;}
.y8a{bottom:975.680054pt;}
.yc9{bottom:977.120057pt;}
.y40{bottom:977.440064pt;}
.yc{bottom:989.280060pt;}
.y8c{bottom:990.560059pt;}
.y89{bottom:994.080063pt;}
.y8b{bottom:994.400055pt;}
.yc8{bottom:995.520058pt;}
.y3f{bottom:995.840058pt;}
.yb{bottom:1009.919728pt;}
.y85{bottom:1013.440056pt;}
.y3e{bottom:1014.240059pt;}
.y86{bottom:1018.880059pt;}
.y88{bottom:1022.720063pt;}
.ya{bottom:1031.521230pt;}
.y84{bottom:1031.840058pt;}
.y3d{bottom:1032.640061pt;}
.y1{bottom:1060.960061pt;}
.h5{height:10.400024pt;}
.he{height:10.880005pt;}
.h3{height:12.959960pt;}
.hf{height:18.239990pt;}
.h10{height:18.239991pt;}
.h12{height:18.239998pt;}
.h13{height:18.240006pt;}
.h6{height:30.067372pt;}
.hb{height:37.247652pt;}
.h4{height:42.651279pt;}
.h2{height:44.876686pt;}
.h9{height:46.220486pt;}
.h18{height:46.595500pt;}
.ha{height:46.783007pt;}
.h17{height:54.387196pt;}
.h14{height:54.387380pt;}
.h16{height:54.387440pt;}
.hc{height:54.387444pt;}
.h7{height:55.343607pt;}
.h8{height:55.345829pt;}
.h19{height:58.566137pt;}
.h15{height:81.356670pt;}
.h11{height:81.996714pt;}
.hd{height:119.756570pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w4{width:4.799988pt;}
.w3{width:6.239990pt;}
.wa{width:6.880005pt;}
.wb{width:7.840027pt;}
.w7{width:10.719970pt;}
.w5{width:10.720001pt;}
.w6{width:10.720002pt;}
.w8{width:10.720031pt;}
.w9{width:10.720032pt;}
.w2{width:47.200013pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.519997pt;}
.x2d{left:86.559998pt;}
.x15{left:88.160004pt;}
.x23{left:92.480003pt;}
.x2e{left:96.320000pt;}
.x13{left:98.239998pt;}
.x2a{left:99.519997pt;}
.x2f{left:101.440002pt;}
.x8{left:122.562190pt;}
.xb{left:131.520004pt;}
.x24{left:175.360001pt;}
.xc{left:189.919998pt;}
.x9{left:266.561827pt;}
.x17{left:273.760010pt;}
.x32{left:277.119995pt;}
.x14{left:282.399994pt;}
.x18{left:292.480011pt;}
.x25{left:315.519989pt;}
.x26{left:329.920013pt;}
.x19{left:364.959991pt;}
.x1a{left:375.679993pt;}
.x2{left:384.799988pt;}
.x27{left:394.720001pt;}
.xa{left:396.799988pt;}
.x28{left:414.399994pt;}
.x1b{left:441.440002pt;}
.x1c{left:452.160004pt;}
.xe{left:464.320007pt;}
.xd{left:475.679993pt;}
.x11{left:483.839996pt;}
.xf{left:501.760010pt;}
.x1d{left:524.640015pt;}
.x1e{left:535.359985pt;}
.x1f{left:598.719971pt;}
.x16{left:600.159973pt;}
.x10{left:602.719971pt;}
.x20{left:609.440002pt;}
.x31{left:614.400024pt;}
.x2b{left:632.479980pt;}
.x2c{left:650.880005pt;}
.x12{left:658.080017pt;}
.x6{left:663.359985pt;}
.x5{left:667.679993pt;}
.x3{left:675.359985pt;}
.x21{left:677.919983pt;}
.x22{left:688.640015pt;}
.x7{left:698.880005pt;}
.x30{left:702.719971pt;}
.x29{left:703.679993pt;}
.x4{left:722.559998pt;}
}




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