
    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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_a46fa979697b0fbc6d7933e4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_d9aa42d6c4ec59efd58739b9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_45c42760ee75243a14498ead.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_d4fecf82ddd0e6981e1cf2de.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_9c87773129385887047e398b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.115234;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_a4598ae25b8a434b7117d3d7.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112305;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_66bab7c2c83423a3d3342eb2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.081543;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_48bf29739d38add350a2fa9a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.106934;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;}
.ls5{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.216000px;}
.ls1{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.106800px;}
.ls8{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.432000px;}
.ls2{letter-spacing:64.421280px;}
.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.060000px;}
.ws0{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.712000px;}
.ws1{word-spacing:0.000000px;}
._1d{margin-left:-5.299200px;}
._0{margin-left:-1.457280px;}
._1{width:1.125600px;}
._11{width:2.251200px;}
._8{width:3.384000px;}
._9{width:4.824000px;}
._1b{width:6.126240px;}
._e{width:7.344000px;}
._f{width:9.314400px;}
._2{width:10.533600px;}
._3{width:11.706240px;}
._16{width:12.872160px;}
._17{width:14.283840px;}
._18{width:15.380160px;}
._10{width:16.805280px;}
._1c{width:19.015200px;}
._12{width:20.016000px;}
._1a{width:21.041280px;}
._d{width:22.392000px;}
._19{width:24.390720px;}
._5{width:25.950960px;}
._6{width:27.004320px;}
._a{width:28.128000px;}
._b{width:29.306400px;}
._7{width:31.145520px;}
._1e{width:32.532960px;}
._c{width:35.184000px;}
._1f{width:37.632960px;}
._4{width:38.687040px;}
._15{width:40.296960px;}
._14{width:43.584000px;}
._13{width:45.120000px;}
._20{width:2253.336000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,10);}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y72{bottom:9.180000px;}
.y6d{bottom:9.360000px;}
.y71{bottom:24.840000px;}
.y7f{bottom:24.870000px;}
.y74{bottom:24.885000px;}
.y6e{bottom:25.020000px;}
.y5{bottom:82.116000px;}
.y4{bottom:106.056000px;}
.y3{bottom:125.136000px;}
.y2{bottom:144.036000px;}
.ye0{bottom:164.550000px;}
.yc9{bottom:167.970000px;}
.y4d{bottom:176.430000px;}
.y8f{bottom:176.970000px;}
.y2f{bottom:179.850000px;}
.ya1{bottom:185.070000px;}
.ydf{bottom:185.250000px;}
.y6a{bottom:186.330000px;}
.yc8{bottom:188.670000px;}
.ybb{bottom:189.570000px;}
.y2e{bottom:200.550000px;}
.y8e{bottom:203.610000px;}
.yde{bottom:205.950000px;}
.y4c{bottom:207.390000px;}
.yc7{bottom:209.370000px;}
.yaf{bottom:214.230000px;}
.ya0{bottom:216.210000px;}
.y69{bottom:217.470000px;}
.yba{bottom:220.530000px;}
.y2d{bottom:221.250000px;}
.ydd{bottom:226.650000px;}
.yc6{bottom:230.070000px;}
.y8d{bottom:230.250000px;}
.y4b{bottom:238.530000px;}
.y2c{bottom:241.950000px;}
.yae{bottom:245.370000px;}
.y9f{bottom:247.170000px;}
.y68{bottom:248.430000px;}
.yc5{bottom:250.770000px;}
.yb9{bottom:251.670000px;}
.y8c{bottom:257.070000px;}
.y2b{bottom:262.650000px;}
.ydc{bottom:268.410000px;}
.y4a{bottom:269.490000px;}
.yad{bottom:276.330000px;}
.yc4{bottom:277.950000px;}
.y9e{bottom:278.310000px;}
.y67{bottom:279.570000px;}
.y2a{bottom:283.350000px;}
.y8b{bottom:283.710000px;}
.ydb{bottom:289.110000px;}
.y49{bottom:300.630000px;}
.yb8{bottom:301.170000px;}
.y29{bottom:304.050000px;}
.yac{bottom:307.470000px;}
.y9d{bottom:309.270000px;}
.yda{bottom:309.810000px;}
.y8a{bottom:310.350000px;}
.y66{bottom:310.530000px;}
.y28{bottom:324.750000px;}
.y48{bottom:331.590000px;}
.y89{bottom:337.215000px;}
.yab{bottom:338.475000px;}
.y9c{bottom:340.275000px;}
.y65{bottom:341.715000px;}
.y27{bottom:345.495000px;}
.yd9{bottom:351.435000px;}
.y47{bottom:362.775000px;}
.y88{bottom:363.855000px;}
.y26{bottom:366.195000px;}
.yaa{bottom:369.615000px;}
.y9b{bottom:371.415000px;}
.yd8{bottom:372.135000px;}
.y64{bottom:372.675000px;}
.y25{bottom:386.895000px;}
.y87{bottom:390.495000px;}
.yd7{bottom:392.835000px;}
.y46{bottom:393.735000px;}
.ya9{bottom:400.575000px;}
.y9a{bottom:402.375000px;}
.y63{bottom:403.815000px;}
.y24{bottom:407.595000px;}
.yd6{bottom:413.535000px;}
.y86{bottom:417.315000px;}
.y45{bottom:424.875000px;}
.ya8{bottom:427.395000px;}
.y23{bottom:428.295000px;}
.y99{bottom:433.515000px;}
.yd5{bottom:434.235000px;}
.y62{bottom:434.775000px;}
.y85{bottom:443.955000px;}
.y22{bottom:448.995000px;}
.ya7{bottom:450.075000px;}
.yd4{bottom:454.935000px;}
.y44{bottom:455.835000px;}
.y98{bottom:464.475000px;}
.y61{bottom:465.915000px;}
.y84{bottom:470.595000px;}
.y21{bottom:475.635000px;}
.y43{bottom:486.975000px;}
.y97{bottom:495.615000px;}
.y20{bottom:496.335000px;}
.y60{bottom:496.875000px;}
.y83{bottom:497.415000px;}
.y82{bottom:514.875000px;}
.y1f{bottom:517.035000px;}
.y42{bottom:517.935000px;}
.y96{bottom:526.575000px;}
.y5f{bottom:528.015000px;}
.y1e{bottom:537.735000px;}
.y81{bottom:540.615000px;}
.y41{bottom:549.075000px;}
.y95{bottom:557.715000px;}
.y1d{bottom:558.435000px;}
.y5e{bottom:558.975000px;}
.y80{bottom:566.355000px;}
.y1c{bottom:579.135000px;}
.y40{bottom:580.035000px;}
.y94{bottom:588.675000px;}
.y5d{bottom:590.115000px;}
.y7e{bottom:592.095000px;}
.y1b{bottom:599.835000px;}
.y3f{bottom:611.205000px;}
.y7d{bottom:617.685000px;}
.y93{bottom:619.845000px;}
.y1a{bottom:620.565000px;}
.y5c{bottom:621.105000px;}
.yb7{bottom:629.925000px;}
.y19{bottom:641.265000px;}
.y3e{bottom:642.165000px;}
.y7c{bottom:643.425000px;}
.y92{bottom:647.025000px;}
.yb6{bottom:647.205000px;}
.y5b{bottom:652.245000px;}
.y18{bottom:661.965000px;}
.yb5{bottom:664.485000px;}
.y7b{bottom:669.165000px;}
.y3d{bottom:673.305000px;}
.y91{bottom:679.605000px;}
.yb4{bottom:682.305000px;}
.y17{bottom:682.665000px;}
.y5a{bottom:683.205000px;}
.yc3{bottom:691.485000px;}
.y7a{bottom:694.905000px;}
.y90{bottom:702.465000px;}
.y16{bottom:703.365000px;}
.y3c{bottom:704.265000px;}
.yb3{bottom:705.165000px;}
.y59{bottom:714.345000px;}
.y79{bottom:720.645000px;}
.y15{bottom:724.065000px;}
.ya6{bottom:732.885000px;}
.yc2{bottom:734.505000px;}
.y3b{bottom:735.405000px;}
.y14{bottom:744.765000px;}
.y58{bottom:745.305000px;}
.y78{bottom:746.385000px;}
.ya5{bottom:750.885000px;}
.y13{bottom:765.465000px;}
.y3a{bottom:766.365000px;}
.y77{bottom:772.125000px;}
.y57{bottom:776.445000px;}
.ya4{bottom:777.705000px;}
.y12{bottom:785.445000px;}
.yd3{bottom:786.165000px;}
.yc1{bottom:796.605000px;}
.y39{bottom:797.505000px;}
.y76{bottom:797.865000px;}
.ya3{bottom:800.385000px;}
.y11{bottom:802.725000px;}
.yd2{bottom:806.865000px;}
.y56{bottom:807.405000px;}
.y10{bottom:820.725000px;}
.y75{bottom:823.605000px;}
.yc0{bottom:827.565000px;}
.y38{bottom:828.465000px;}
.y55{bottom:838.545000px;}
.yf{bottom:841.425000px;}
.yd1{bottom:848.265000px;}
.y73{bottom:849.345000px;}
.ybf{bottom:858.705000px;}
.y37{bottom:859.605000px;}
.ye{bottom:862.125000px;}
.yd0{bottom:868.965000px;}
.y54{bottom:869.505000px;}
.y70{bottom:875.130000px;}
.yd{bottom:882.870000px;}
.ybe{bottom:889.710000px;}
.y36{bottom:890.610000px;}
.y53{bottom:900.510000px;}
.y6f{bottom:900.690000px;}
.yc{bottom:904.830000px;}
.ycf{bottom:910.410000px;}
.ybd{bottom:920.850000px;}
.y35{bottom:921.750000px;}
.y6c{bottom:926.430000px;}
.yce{bottom:931.110000px;}
.yb{bottom:932.370000px;}
.y52{bottom:939.930000px;}
.ybc{bottom:951.810000px;}
.yb2{bottom:951.990000px;}
.y34{bottom:952.710000px;}
.y6b{bottom:956.130000px;}
.ya{bottom:960.090000px;}
.yb1{bottom:969.270000px;}
.ycd{bottom:972.510000px;}
.y51{bottom:982.950000px;}
.y33{bottom:983.850000px;}
.yb0{bottom:987.270000px;}
.y9{bottom:987.630000px;}
.ycc{bottom:993.210000px;}
.y50{bottom:1013.910000px;}
.y32{bottom:1014.810000px;}
.y8{bottom:1015.170000px;}
.ycb{bottom:1034.610000px;}
.y7{bottom:1042.890000px;}
.y4f{bottom:1045.050000px;}
.y31{bottom:1045.950000px;}
.yca{bottom:1055.310000px;}
.ya2{bottom:1058.010000px;}
.y6{bottom:1070.430000px;}
.y30{bottom:1073.130000px;}
.y4e{bottom:1076.010000px;}
.y1{bottom:1236.240000px;}
.hc{height:24.840000px;}
.hd{height:24.876000px;}
.h9{height:25.020000px;}
.he{height:49.255313px;}
.h7{height:53.573906px;}
.hb{height:57.895312px;}
.h5{height:59.343750px;}
.h3{height:59.383125px;}
.h2{height:59.439023px;}
.ha{height:59.932969px;}
.h6{height:64.546875px;}
.h8{height:76.219102px;}
.h4{height:85.052461px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:180.750000px;}
.w3{width:231.330000px;}
.w4{width:265.890000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:8.100000px;}
.x9{left:50.580000px;}
.x8{left:98.316000px;}
.x2{left:106.415987px;}
.x18{left:107.495987px;}
.x4{left:111.275987px;}
.xf{left:112.895987px;}
.x19{left:113.975987px;}
.x12{left:125.495987px;}
.x1a{left:133.235987px;}
.x15{left:134.675987px;}
.x10{left:143.315987px;}
.x3{left:148.895987px;}
.xd{left:153.749987px;}
.x7{left:208.469987px;}
.x16{left:233.309987px;}
.x5{left:311.474987px;}
.xa{left:329.655000px;}
.x14{left:446.474987px;}
.x1{left:467.744987px;}
.xb{left:595.545000px;}
.x1b{left:610.844987px;}
.x13{left:644.684987px;}
.x17{left:661.469987px;}
.x11{left:785.309987px;}
.x6{left:786.749987px;}
.xe{left:797.369987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.094933pt;}
.ls8{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.384000pt;}
.ls2{letter-spacing:57.263360pt;}
.ws2{word-spacing:-18.720000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.744000pt;}
.ws1{word-spacing:0.000000pt;}
._1d{margin-left:-4.710400pt;}
._0{margin-left:-1.295360pt;}
._1{width:1.000533pt;}
._11{width:2.001067pt;}
._8{width:3.008000pt;}
._9{width:4.288000pt;}
._1b{width:5.445547pt;}
._e{width:6.528000pt;}
._f{width:8.279467pt;}
._2{width:9.363200pt;}
._3{width:10.405547pt;}
._16{width:11.441920pt;}
._17{width:12.696747pt;}
._18{width:13.671253pt;}
._10{width:14.938027pt;}
._1c{width:16.902400pt;}
._12{width:17.792000pt;}
._1a{width:18.703360pt;}
._d{width:19.904000pt;}
._19{width:21.680640pt;}
._5{width:23.067520pt;}
._6{width:24.003840pt;}
._a{width:25.002667pt;}
._b{width:26.050133pt;}
._7{width:27.684907pt;}
._1e{width:28.918187pt;}
._c{width:31.274667pt;}
._1f{width:33.451520pt;}
._4{width:34.388480pt;}
._15{width:35.819520pt;}
._14{width:38.741333pt;}
._13{width:40.106667pt;}
._20{width:2002.965333pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y72{bottom:8.160000pt;}
.y6d{bottom:8.320000pt;}
.y71{bottom:22.080000pt;}
.y7f{bottom:22.106667pt;}
.y74{bottom:22.120000pt;}
.y6e{bottom:22.240000pt;}
.y5{bottom:72.992000pt;}
.y4{bottom:94.272000pt;}
.y3{bottom:111.232000pt;}
.y2{bottom:128.032000pt;}
.ye0{bottom:146.266667pt;}
.yc9{bottom:149.306667pt;}
.y4d{bottom:156.826667pt;}
.y8f{bottom:157.306667pt;}
.y2f{bottom:159.866667pt;}
.ya1{bottom:164.506667pt;}
.ydf{bottom:164.666667pt;}
.y6a{bottom:165.626667pt;}
.yc8{bottom:167.706667pt;}
.ybb{bottom:168.506667pt;}
.y2e{bottom:178.266667pt;}
.y8e{bottom:180.986667pt;}
.yde{bottom:183.066667pt;}
.y4c{bottom:184.346667pt;}
.yc7{bottom:186.106667pt;}
.yaf{bottom:190.426667pt;}
.ya0{bottom:192.186667pt;}
.y69{bottom:193.306667pt;}
.yba{bottom:196.026667pt;}
.y2d{bottom:196.666667pt;}
.ydd{bottom:201.466667pt;}
.yc6{bottom:204.506667pt;}
.y8d{bottom:204.666667pt;}
.y4b{bottom:212.026667pt;}
.y2c{bottom:215.066667pt;}
.yae{bottom:218.106667pt;}
.y9f{bottom:219.706667pt;}
.y68{bottom:220.826667pt;}
.yc5{bottom:222.906667pt;}
.yb9{bottom:223.706667pt;}
.y8c{bottom:228.506667pt;}
.y2b{bottom:233.466667pt;}
.ydc{bottom:238.586667pt;}
.y4a{bottom:239.546667pt;}
.yad{bottom:245.626667pt;}
.yc4{bottom:247.066667pt;}
.y9e{bottom:247.386667pt;}
.y67{bottom:248.506667pt;}
.y2a{bottom:251.866667pt;}
.y8b{bottom:252.186667pt;}
.ydb{bottom:256.986667pt;}
.y49{bottom:267.226667pt;}
.yb8{bottom:267.706667pt;}
.y29{bottom:270.266667pt;}
.yac{bottom:273.306667pt;}
.y9d{bottom:274.906667pt;}
.yda{bottom:275.386667pt;}
.y8a{bottom:275.866667pt;}
.y66{bottom:276.026667pt;}
.y28{bottom:288.666667pt;}
.y48{bottom:294.746667pt;}
.y89{bottom:299.746667pt;}
.yab{bottom:300.866667pt;}
.y9c{bottom:302.466667pt;}
.y65{bottom:303.746667pt;}
.y27{bottom:307.106667pt;}
.yd9{bottom:312.386667pt;}
.y47{bottom:322.466667pt;}
.y88{bottom:323.426667pt;}
.y26{bottom:325.506667pt;}
.yaa{bottom:328.546667pt;}
.y9b{bottom:330.146667pt;}
.yd8{bottom:330.786667pt;}
.y64{bottom:331.266667pt;}
.y25{bottom:343.906667pt;}
.y87{bottom:347.106667pt;}
.yd7{bottom:349.186667pt;}
.y46{bottom:349.986667pt;}
.ya9{bottom:356.066667pt;}
.y9a{bottom:357.666667pt;}
.y63{bottom:358.946667pt;}
.y24{bottom:362.306667pt;}
.yd6{bottom:367.586667pt;}
.y86{bottom:370.946667pt;}
.y45{bottom:377.666667pt;}
.ya8{bottom:379.906667pt;}
.y23{bottom:380.706667pt;}
.y99{bottom:385.346667pt;}
.yd5{bottom:385.986667pt;}
.y62{bottom:386.466667pt;}
.y85{bottom:394.626667pt;}
.y22{bottom:399.106667pt;}
.ya7{bottom:400.066667pt;}
.yd4{bottom:404.386667pt;}
.y44{bottom:405.186667pt;}
.y98{bottom:412.866667pt;}
.y61{bottom:414.146667pt;}
.y84{bottom:418.306667pt;}
.y21{bottom:422.786667pt;}
.y43{bottom:432.866667pt;}
.y97{bottom:440.546667pt;}
.y20{bottom:441.186667pt;}
.y60{bottom:441.666667pt;}
.y83{bottom:442.146667pt;}
.y82{bottom:457.666667pt;}
.y1f{bottom:459.586667pt;}
.y42{bottom:460.386667pt;}
.y96{bottom:468.066667pt;}
.y5f{bottom:469.346667pt;}
.y1e{bottom:477.986667pt;}
.y81{bottom:480.546667pt;}
.y41{bottom:488.066667pt;}
.y95{bottom:495.746667pt;}
.y1d{bottom:496.386667pt;}
.y5e{bottom:496.866667pt;}
.y80{bottom:503.426667pt;}
.y1c{bottom:514.786667pt;}
.y40{bottom:515.586667pt;}
.y94{bottom:523.266667pt;}
.y5d{bottom:524.546667pt;}
.y7e{bottom:526.306667pt;}
.y1b{bottom:533.186667pt;}
.y3f{bottom:543.293333pt;}
.y7d{bottom:549.053333pt;}
.y93{bottom:550.973333pt;}
.y1a{bottom:551.613333pt;}
.y5c{bottom:552.093333pt;}
.yb7{bottom:559.933333pt;}
.y19{bottom:570.013333pt;}
.y3e{bottom:570.813333pt;}
.y7c{bottom:571.933333pt;}
.y92{bottom:575.133333pt;}
.yb6{bottom:575.293333pt;}
.y5b{bottom:579.773333pt;}
.y18{bottom:588.413333pt;}
.yb5{bottom:590.653333pt;}
.y7b{bottom:594.813333pt;}
.y3d{bottom:598.493333pt;}
.y91{bottom:604.093333pt;}
.yb4{bottom:606.493333pt;}
.y17{bottom:606.813333pt;}
.y5a{bottom:607.293333pt;}
.yc3{bottom:614.653333pt;}
.y7a{bottom:617.693333pt;}
.y90{bottom:624.413333pt;}
.y16{bottom:625.213333pt;}
.y3c{bottom:626.013333pt;}
.yb3{bottom:626.813333pt;}
.y59{bottom:634.973333pt;}
.y79{bottom:640.573333pt;}
.y15{bottom:643.613333pt;}
.ya6{bottom:651.453333pt;}
.yc2{bottom:652.893333pt;}
.y3b{bottom:653.693333pt;}
.y14{bottom:662.013333pt;}
.y58{bottom:662.493333pt;}
.y78{bottom:663.453333pt;}
.ya5{bottom:667.453333pt;}
.y13{bottom:680.413333pt;}
.y3a{bottom:681.213333pt;}
.y77{bottom:686.333333pt;}
.y57{bottom:690.173333pt;}
.ya4{bottom:691.293333pt;}
.y12{bottom:698.173333pt;}
.yd3{bottom:698.813333pt;}
.yc1{bottom:708.093333pt;}
.y39{bottom:708.893333pt;}
.y76{bottom:709.213333pt;}
.ya3{bottom:711.453333pt;}
.y11{bottom:713.533333pt;}
.yd2{bottom:717.213333pt;}
.y56{bottom:717.693333pt;}
.y10{bottom:729.533333pt;}
.y75{bottom:732.093333pt;}
.yc0{bottom:735.613333pt;}
.y38{bottom:736.413333pt;}
.y55{bottom:745.373333pt;}
.yf{bottom:747.933333pt;}
.yd1{bottom:754.013333pt;}
.y73{bottom:754.973333pt;}
.ybf{bottom:763.293333pt;}
.y37{bottom:764.093333pt;}
.ye{bottom:766.333333pt;}
.yd0{bottom:772.413333pt;}
.y54{bottom:772.893333pt;}
.y70{bottom:777.893333pt;}
.yd{bottom:784.773333pt;}
.ybe{bottom:790.853333pt;}
.y36{bottom:791.653333pt;}
.y53{bottom:800.453333pt;}
.y6f{bottom:800.613333pt;}
.yc{bottom:804.293333pt;}
.ycf{bottom:809.253333pt;}
.ybd{bottom:818.533333pt;}
.y35{bottom:819.333333pt;}
.y6c{bottom:823.493333pt;}
.yce{bottom:827.653333pt;}
.yb{bottom:828.773333pt;}
.y52{bottom:835.493333pt;}
.ybc{bottom:846.053333pt;}
.yb2{bottom:846.213333pt;}
.y34{bottom:846.853333pt;}
.y6b{bottom:849.893333pt;}
.ya{bottom:853.413333pt;}
.yb1{bottom:861.573333pt;}
.ycd{bottom:864.453333pt;}
.y51{bottom:873.733333pt;}
.y33{bottom:874.533333pt;}
.yb0{bottom:877.573333pt;}
.y9{bottom:877.893333pt;}
.ycc{bottom:882.853333pt;}
.y50{bottom:901.253333pt;}
.y32{bottom:902.053333pt;}
.y8{bottom:902.373333pt;}
.ycb{bottom:919.653333pt;}
.y7{bottom:927.013333pt;}
.y4f{bottom:928.933333pt;}
.y31{bottom:929.733333pt;}
.yca{bottom:938.053333pt;}
.ya2{bottom:940.453333pt;}
.y6{bottom:951.493333pt;}
.y30{bottom:953.893333pt;}
.y4e{bottom:956.453333pt;}
.y1{bottom:1098.880000pt;}
.hc{height:22.080000pt;}
.hd{height:22.112000pt;}
.h9{height:22.240000pt;}
.he{height:43.782500pt;}
.h7{height:47.621250pt;}
.hb{height:51.462500pt;}
.h5{height:52.750000pt;}
.h3{height:52.785000pt;}
.h2{height:52.834688pt;}
.ha{height:53.273750pt;}
.h6{height:57.375000pt;}
.h8{height:67.750312pt;}
.h4{height:75.602187pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:160.666667pt;}
.w3{width:205.626667pt;}
.w4{width:236.346667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:7.200000pt;}
.x9{left:44.960000pt;}
.x8{left:87.392000pt;}
.x2{left:94.591988pt;}
.x18{left:95.551988pt;}
.x4{left:98.911988pt;}
.xf{left:100.351988pt;}
.x19{left:101.311988pt;}
.x12{left:111.551988pt;}
.x1a{left:118.431988pt;}
.x15{left:119.711988pt;}
.x10{left:127.391988pt;}
.x3{left:132.351988pt;}
.xd{left:136.666655pt;}
.x7{left:185.306655pt;}
.x16{left:207.386655pt;}
.x5{left:276.866655pt;}
.xa{left:293.026667pt;}
.x14{left:396.866655pt;}
.x1{left:415.773322pt;}
.xb{left:529.373333pt;}
.x1b{left:542.973322pt;}
.x13{left:573.053322pt;}
.x17{left:587.973322pt;}
.x11{left:698.053322pt;}
.x6{left:699.333322pt;}
.xe{left:708.773322pt;}
}




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