
    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_b1888613372ad5a4b903c48c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.960449;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_11562ba9164eed8c59fc30f5.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_fa91cf88aee01bd55834edd9.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_435e0018ab03ba32f3b9a20f.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_574c77c5c9068e5e9710bf5b.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_c24e308c87aeb3f2b34cae08.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls3{letter-spacing:-0.792000px;}
.ls2{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.288000px;}
.ls0{letter-spacing:-0.230400px;}
.ls8{letter-spacing:-0.216000px;}
.lsa{letter-spacing:-0.144000px;}
.ls13{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.072000px;}
.lsf{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.216000px;}
.lsc{letter-spacing:0.288000px;}
.ls6{letter-spacing:0.360000px;}
.lse{letter-spacing:0.432000px;}
.ls12{letter-spacing:0.720000px;}
.lsd{letter-spacing:2.160000px;}
.ls9{letter-spacing:5.760000px;}
.ls5{letter-spacing:12.960000px;}
.ls4{letter-spacing:21.221280px;}
.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;}
}
.wsf{word-spacing:-72.000000px;}
.ws3{word-spacing:-21.420000px;}
.ws4{word-spacing:-21.060000px;}
.ws6{word-spacing:-18.432000px;}
.ws8{word-spacing:-18.288000px;}
.wsb{word-spacing:-18.216000px;}
.ws7{word-spacing:-18.144000px;}
.wse{word-spacing:-18.072000px;}
.wsa{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.784000px;}
.wsc{word-spacing:-15.300000px;}
.wsd{word-spacing:-14.940000px;}
.ws1{word-spacing:-13.446720px;}
.ws0{word-spacing:-13.216320px;}
.ws9{word-spacing:-12.060000px;}
.ws2{word-spacing:0.000000px;}
._22{margin-left:-6.557760px;}
._a{margin-left:-5.458320px;}
._9{margin-left:-4.309200px;}
._f{margin-left:-3.024000px;}
._1d{margin-left:-2.021760px;}
._0{margin-left:-1.017600px;}
._1{width:1.723680px;}
._10{width:3.604320px;}
._12{width:5.544000px;}
._13{width:6.552000px;}
._15{width:8.208000px;}
._16{width:9.360000px;}
._b{width:10.872000px;}
._4{width:12.161520px;}
._5{width:13.310640px;}
._1b{width:14.553360px;}
._c{width:15.624000px;}
._14{width:16.641600px;}
._e{width:19.190880px;}
._d{width:20.232000px;}
._11{width:21.636000px;}
._17{width:22.648320px;}
._18{width:23.724000px;}
._6{width:25.950960px;}
._19{width:32.904000px;}
._1a{width:34.092000px;}
._1c{width:35.154720px;}
._8{width:36.197280px;}
._7{width:37.346400px;}
._1e{width:40.954080px;}
._26{width:41.979840px;}
._25{width:85.346640px;}
._24{width:86.918160px;}
._2{width:96.334560px;}
._3{width:98.441280px;}
._1f{width:108.648000px;}
._20{width:109.800000px;}
._23{width:347.000400px;}
._21{width:1051.992000px;}
.fc6{color:rgb(5,99,193);}
.fc3{color:rgb(91,155,213);}
.fc1{color:rgb(255,0,0);}
.fc7{color:rgb(28,28,28);}
.fc5{color:rgb(34,34,34);}
.fc4{color:rgb(13,13,13);}
.fc2{color:rgb(26,26,26);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.240000px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:81.360000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y4{bottom:57.960000px;}
.y3{bottom:78.696000px;}
.y2{bottom:97.596000px;}
.y1{bottom:117.576000px;}
.y2b{bottom:146.556000px;}
.y69{bottom:151.230000px;}
.y77{bottom:163.830000px;}
.y2a{bottom:167.250000px;}
.y88{bottom:169.410000px;}
.ya9{bottom:169.770000px;}
.yc7{bottom:173.010000px;}
.y9b{bottom:175.890000px;}
.y4a{bottom:176.790000px;}
.y68{bottom:182.190000px;}
.y76{bottom:194.970000px;}
.y29{bottom:199.830000px;}
.y87{bottom:200.550000px;}
.yc6{bottom:203.970000px;}
.y49{bottom:210.090000px;}
.y67{bottom:213.150000px;}
.y9a{bottom:216.210000px;}
.y28{bottom:220.530000px;}
.y75{bottom:225.930000px;}
.y86{bottom:231.510000px;}
.yc5{bottom:235.110000px;}
.y27{bottom:241.230000px;}
.y48{bottom:244.110000px;}
.y66{bottom:244.290000px;}
.y99{bottom:247.170000px;}
.yd7{bottom:257.070000px;}
.y26{bottom:261.930000px;}
.y85{bottom:262.650000px;}
.yc4{bottom:266.070000px;}
.y74{bottom:269.130000px;}
.y47{bottom:275.070000px;}
.y65{bottom:275.250000px;}
.y98{bottom:278.310000px;}
.y25{bottom:282.630000px;}
.yd6{bottom:288.030000px;}
.y84{bottom:293.610000px;}
.yc3{bottom:297.210000px;}
.y24{bottom:303.330000px;}
.y46{bottom:306.210000px;}
.y64{bottom:306.390000px;}
.y97{bottom:309.270000px;}
.y73{bottom:313.770000px;}
.yd5{bottom:319.170000px;}
.y23{bottom:324.030000px;}
.y83{bottom:324.750000px;}
.yc2{bottom:328.170000px;}
.y45{bottom:337.215000px;}
.y63{bottom:337.395000px;}
.y22{bottom:344.775000px;}
.yd4{bottom:351.975000px;}
.y96{bottom:352.335000px;}
.y72{bottom:353.775000px;}
.yc1{bottom:359.355000px;}
.y21{bottom:365.475000px;}
.y82{bottom:367.815000px;}
.y44{bottom:368.355000px;}
.y62{bottom:368.535000px;}
.y95{bottom:383.475000px;}
.yd3{bottom:385.095000px;}
.y20{bottom:386.175000px;}
.yc0{bottom:390.315000px;}
.y81{bottom:398.955000px;}
.y43{bottom:399.315000px;}
.y61{bottom:411.555000px;}
.y94{bottom:414.435000px;}
.yd2{bottom:416.235000px;}
.y1f{bottom:418.935000px;}
.ybf{bottom:421.455000px;}
.y80{bottom:429.915000px;}
.y42{bottom:430.455000px;}
.y1e{bottom:439.635000px;}
.ya8{bottom:442.335000px;}
.y93{bottom:445.575000px;}
.yd1{bottom:447.195000px;}
.ybe{bottom:452.415000px;}
.y60{bottom:454.575000px;}
.y7f{bottom:460.875000px;}
.y41{bottom:461.415000px;}
.y1d{bottom:472.395000px;}
.yd0{bottom:478.335000px;}
.ya7{bottom:482.655000px;}
.ybd{bottom:483.375000px;}
.y5f{bottom:485.715000px;}
.y92{bottom:488.595000px;}
.y40{bottom:492.555000px;}
.y1c{bottom:493.095000px;}
.y7e{bottom:504.075000px;}
.ycf{bottom:509.295000px;}
.y1b{bottom:513.795000px;}
.ybc{bottom:514.515000px;}
.y5e{bottom:516.675000px;}
.y91{bottom:519.555000px;}
.y3f{bottom:523.515000px;}
.y1a{bottom:534.315000px;}
.yce{bottom:540.435000px;}
.ya6{bottom:544.755000px;}
.ybb{bottom:545.475000px;}
.y7d{bottom:547.095000px;}
.y5d{bottom:547.815000px;}
.y90{bottom:550.695000px;}
.y3e{bottom:554.655000px;}
.y19{bottom:555.015000px;}
.ycd{bottom:571.395000px;}
.y18{bottom:575.715000px;}
.ya5{bottom:575.895000px;}
.yba{bottom:576.615000px;}
.y5c{bottom:578.775000px;}
.y8f{bottom:581.655000px;}
.y7c{bottom:583.815000px;}
.y3d{bottom:585.615000px;}
.y17{bottom:596.415000px;}
.y71{bottom:599.475000px;}
.ycc{bottom:604.185000px;}
.ya4{bottom:606.885000px;}
.yb9{bottom:607.605000px;}
.y5b{bottom:609.945000px;}
.y8e{bottom:611.745000px;}
.y3c{bottom:616.785000px;}
.y16{bottom:617.145000px;}
.y70{bottom:627.765000px;}
.y15{bottom:637.845000px;}
.ya3{bottom:638.025000px;}
.yb8{bottom:638.745000px;}
.ycb{bottom:639.105000px;}
.y8d{bottom:645.585000px;}
.y3b{bottom:647.745000px;}
.y5a{bottom:652.965000px;}
.y6f{bottom:658.905000px;}
.yb7{bottom:669.705000px;}
.y14{bottom:670.605000px;}
.yca{bottom:674.025000px;}
.y3a{bottom:678.885000px;}
.ya2{bottom:681.045000px;}
.y59{bottom:683.925000px;}
.y6e{bottom:689.865000px;}
.y13{bottom:691.305000px;}
.yb6{bottom:700.845000px;}
.yc9{bottom:708.945000px;}
.y39{bottom:709.845000px;}
.y12{bottom:712.005000px;}
.y58{bottom:715.065000px;}
.ya1{bottom:724.065000px;}
.yb5{bottom:731.805000px;}
.y6d{bottom:733.065000px;}
.y38{bottom:740.985000px;}
.yc8{bottom:743.865000px;}
.y11{bottom:744.765000px;}
.y57{bottom:746.025000px;}
.ya0{bottom:755.205000px;}
.yb4{bottom:762.945000px;}
.y37{bottom:771.945000px;}
.y6c{bottom:772.665000px;}
.y56{bottom:777.165000px;}
.y10{bottom:777.345000px;}
.y9f{bottom:786.165000px;}
.yb3{bottom:796.245000px;}
.yf{bottom:798.045000px;}
.y36{bottom:802.905000px;}
.y55{bottom:808.125000px;}
.y9e{bottom:817.305000px;}
.yb2{bottom:830.265000px;}
.ye{bottom:831.345000px;}
.y35{bottom:834.045000px;}
.y54{bottom:839.265000px;}
.y9d{bottom:847.365000px;}
.y6b{bottom:852.765000px;}
.yb1{bottom:861.225000px;}
.y34{bottom:865.005000px;}
.yd{bottom:868.245000px;}
.y53{bottom:870.225000px;}
.y7b{bottom:879.990000px;}
.y9c{bottom:881.070000px;}
.yb0{bottom:892.410000px;}
.yc{bottom:896.010000px;}
.y33{bottom:896.190000px;}
.y52{bottom:901.410000px;}
.y8c{bottom:918.150000px;}
.y7a{bottom:920.490000px;}
.yaf{bottom:923.370000px;}
.yb{bottom:923.550000px;}
.y32{bottom:927.150000px;}
.y51{bottom:932.370000px;}
.ya{bottom:951.090000px;}
.y79{bottom:951.450000px;}
.yae{bottom:954.510000px;}
.y31{bottom:958.290000px;}
.y8b{bottom:958.470000px;}
.y50{bottom:963.510000px;}
.y78{bottom:982.410000px;}
.yad{bottom:985.470000px;}
.y30{bottom:989.250000px;}
.y9{bottom:990.690000px;}
.y6a{bottom:991.590000px;}
.y4f{bottom:994.470000px;}
.y8a{bottom:1001.490000px;}
.yac{bottom:1016.430000px;}
.y2f{bottom:1020.390000px;}
.y4e{bottom:1025.610000px;}
.y8{bottom:1030.290000px;}
.y89{bottom:1044.510000px;}
.yab{bottom:1047.570000px;}
.y2e{bottom:1051.350000px;}
.y4d{bottom:1056.570000px;}
.y7{bottom:1057.830000px;}
.yaa{bottom:1072.770000px;}
.y2d{bottom:1082.490000px;}
.y6{bottom:1085.550000px;}
.y4c{bottom:1087.710000px;}
.y5{bottom:1113.090000px;}
.y2c{bottom:1115.790000px;}
.y4b{bottom:1118.670000px;}
.h7{height:52.628906px;}
.hb{height:53.573906px;}
.h2{height:59.383125px;}
.h3{height:60.855469px;}
.h9{height:63.949219px;}
.h6{height:64.546875px;}
.ha{height:70.606406px;}
.hd{height:72.262617px;}
.hc{height:72.937969px;}
.h5{height:74.820586px;}
.h8{height:75.519844px;}
.h4{height:85.052461px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.475987px;}
.x6{left:154.469987px;}
.x5{left:169.949987px;}
.x7{left:180.569987px;}
.x2{left:213.869987px;}
.x8{left:256.169987px;}
.x3{left:283.034987px;}
.xb{left:309.314987px;}
.x10{left:311.834987px;}
.xf{left:314.714987px;}
.x11{left:322.274987px;}
.xd{left:354.674987px;}
.xe{left:376.274987px;}
.xa{left:378.434987px;}
.x4{left:468.104987px;}
.xc{left:598.604987px;}
.x9{left:808.169987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls3{letter-spacing:-0.704000pt;}
.ls2{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.256000pt;}
.ls0{letter-spacing:-0.204800pt;}
.ls8{letter-spacing:-0.192000pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls13{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.064000pt;}
.lsf{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.192000pt;}
.lsc{letter-spacing:0.256000pt;}
.ls6{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.384000pt;}
.ls12{letter-spacing:0.640000pt;}
.lsd{letter-spacing:1.920000pt;}
.ls9{letter-spacing:5.120000pt;}
.ls5{letter-spacing:11.520000pt;}
.ls4{letter-spacing:18.863360pt;}
.wsf{word-spacing:-64.000000pt;}
.ws3{word-spacing:-19.040000pt;}
.ws4{word-spacing:-18.720000pt;}
.ws6{word-spacing:-16.384000pt;}
.ws8{word-spacing:-16.256000pt;}
.wsb{word-spacing:-16.192000pt;}
.ws7{word-spacing:-16.128000pt;}
.wse{word-spacing:-16.064000pt;}
.wsa{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.808000pt;}
.wsc{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.280000pt;}
.ws1{word-spacing:-11.952640pt;}
.ws0{word-spacing:-11.747840pt;}
.ws9{word-spacing:-10.720000pt;}
.ws2{word-spacing:0.000000pt;}
._22{margin-left:-5.829120pt;}
._a{margin-left:-4.851840pt;}
._9{margin-left:-3.830400pt;}
._f{margin-left:-2.688000pt;}
._1d{margin-left:-1.797120pt;}
._0{margin-left:-0.904533pt;}
._1{width:1.532160pt;}
._10{width:3.203840pt;}
._12{width:4.928000pt;}
._13{width:5.824000pt;}
._15{width:7.296000pt;}
._16{width:8.320000pt;}
._b{width:9.664000pt;}
._4{width:10.810240pt;}
._5{width:11.831680pt;}
._1b{width:12.936320pt;}
._c{width:13.888000pt;}
._14{width:14.792533pt;}
._e{width:17.058560pt;}
._d{width:17.984000pt;}
._11{width:19.232000pt;}
._17{width:20.131840pt;}
._18{width:21.088000pt;}
._6{width:23.067520pt;}
._19{width:29.248000pt;}
._1a{width:30.304000pt;}
._1c{width:31.248640pt;}
._8{width:32.175360pt;}
._7{width:33.196800pt;}
._1e{width:36.403627pt;}
._26{width:37.315413pt;}
._25{width:75.863680pt;}
._24{width:77.260587pt;}
._2{width:85.630720pt;}
._3{width:87.503360pt;}
._1f{width:96.576000pt;}
._20{width:97.600000pt;}
._23{width:308.444800pt;}
._21{width:935.104000pt;}
.fs4{font-size:42.880000pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:72.320000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:51.520000pt;}
.y3{bottom:69.952000pt;}
.y2{bottom:86.752000pt;}
.y1{bottom:104.512000pt;}
.y2b{bottom:130.272000pt;}
.y69{bottom:134.426667pt;}
.y77{bottom:145.626667pt;}
.y2a{bottom:148.666667pt;}
.y88{bottom:150.586667pt;}
.ya9{bottom:150.906667pt;}
.yc7{bottom:153.786667pt;}
.y9b{bottom:156.346667pt;}
.y4a{bottom:157.146667pt;}
.y68{bottom:161.946667pt;}
.y76{bottom:173.306667pt;}
.y29{bottom:177.626667pt;}
.y87{bottom:178.266667pt;}
.yc6{bottom:181.306667pt;}
.y49{bottom:186.746667pt;}
.y67{bottom:189.466667pt;}
.y9a{bottom:192.186667pt;}
.y28{bottom:196.026667pt;}
.y75{bottom:200.826667pt;}
.y86{bottom:205.786667pt;}
.yc5{bottom:208.986667pt;}
.y27{bottom:214.426667pt;}
.y48{bottom:216.986667pt;}
.y66{bottom:217.146667pt;}
.y99{bottom:219.706667pt;}
.yd7{bottom:228.506667pt;}
.y26{bottom:232.826667pt;}
.y85{bottom:233.466667pt;}
.yc4{bottom:236.506667pt;}
.y74{bottom:239.226667pt;}
.y47{bottom:244.506667pt;}
.y65{bottom:244.666667pt;}
.y98{bottom:247.386667pt;}
.y25{bottom:251.226667pt;}
.yd6{bottom:256.026667pt;}
.y84{bottom:260.986667pt;}
.yc3{bottom:264.186667pt;}
.y24{bottom:269.626667pt;}
.y46{bottom:272.186667pt;}
.y64{bottom:272.346667pt;}
.y97{bottom:274.906667pt;}
.y73{bottom:278.906667pt;}
.yd5{bottom:283.706667pt;}
.y23{bottom:288.026667pt;}
.y83{bottom:288.666667pt;}
.yc2{bottom:291.706667pt;}
.y45{bottom:299.746667pt;}
.y63{bottom:299.906667pt;}
.y22{bottom:306.466667pt;}
.yd4{bottom:312.866667pt;}
.y96{bottom:313.186667pt;}
.y72{bottom:314.466667pt;}
.yc1{bottom:319.426667pt;}
.y21{bottom:324.866667pt;}
.y82{bottom:326.946667pt;}
.y44{bottom:327.426667pt;}
.y62{bottom:327.586667pt;}
.y95{bottom:340.866667pt;}
.yd3{bottom:342.306667pt;}
.y20{bottom:343.266667pt;}
.yc0{bottom:346.946667pt;}
.y81{bottom:354.626667pt;}
.y43{bottom:354.946667pt;}
.y61{bottom:365.826667pt;}
.y94{bottom:368.386667pt;}
.yd2{bottom:369.986667pt;}
.y1f{bottom:372.386667pt;}
.ybf{bottom:374.626667pt;}
.y80{bottom:382.146667pt;}
.y42{bottom:382.626667pt;}
.y1e{bottom:390.786667pt;}
.ya8{bottom:393.186667pt;}
.y93{bottom:396.066667pt;}
.yd1{bottom:397.506667pt;}
.ybe{bottom:402.146667pt;}
.y60{bottom:404.066667pt;}
.y7f{bottom:409.666667pt;}
.y41{bottom:410.146667pt;}
.y1d{bottom:419.906667pt;}
.yd0{bottom:425.186667pt;}
.ya7{bottom:429.026667pt;}
.ybd{bottom:429.666667pt;}
.y5f{bottom:431.746667pt;}
.y92{bottom:434.306667pt;}
.y40{bottom:437.826667pt;}
.y1c{bottom:438.306667pt;}
.y7e{bottom:448.066667pt;}
.ycf{bottom:452.706667pt;}
.y1b{bottom:456.706667pt;}
.ybc{bottom:457.346667pt;}
.y5e{bottom:459.266667pt;}
.y91{bottom:461.826667pt;}
.y3f{bottom:465.346667pt;}
.y1a{bottom:474.946667pt;}
.yce{bottom:480.386667pt;}
.ya6{bottom:484.226667pt;}
.ybb{bottom:484.866667pt;}
.y7d{bottom:486.306667pt;}
.y5d{bottom:486.946667pt;}
.y90{bottom:489.506667pt;}
.y3e{bottom:493.026667pt;}
.y19{bottom:493.346667pt;}
.ycd{bottom:507.906667pt;}
.y18{bottom:511.746667pt;}
.ya5{bottom:511.906667pt;}
.yba{bottom:512.546667pt;}
.y5c{bottom:514.466667pt;}
.y8f{bottom:517.026667pt;}
.y7c{bottom:518.946667pt;}
.y3d{bottom:520.546667pt;}
.y17{bottom:530.146667pt;}
.y71{bottom:532.866667pt;}
.ycc{bottom:537.053333pt;}
.ya4{bottom:539.453333pt;}
.yb9{bottom:540.093333pt;}
.y5b{bottom:542.173333pt;}
.y8e{bottom:543.773333pt;}
.y3c{bottom:548.253333pt;}
.y16{bottom:548.573333pt;}
.y70{bottom:558.013333pt;}
.y15{bottom:566.973333pt;}
.ya3{bottom:567.133333pt;}
.yb8{bottom:567.773333pt;}
.ycb{bottom:568.093333pt;}
.y8d{bottom:573.853333pt;}
.y3b{bottom:575.773333pt;}
.y5a{bottom:580.413333pt;}
.y6f{bottom:585.693333pt;}
.yb7{bottom:595.293333pt;}
.y14{bottom:596.093333pt;}
.yca{bottom:599.133333pt;}
.y3a{bottom:603.453333pt;}
.ya2{bottom:605.373333pt;}
.y59{bottom:607.933333pt;}
.y6e{bottom:613.213333pt;}
.y13{bottom:614.493333pt;}
.yb6{bottom:622.973333pt;}
.yc9{bottom:630.173333pt;}
.y39{bottom:630.973333pt;}
.y12{bottom:632.893333pt;}
.y58{bottom:635.613333pt;}
.ya1{bottom:643.613333pt;}
.yb5{bottom:650.493333pt;}
.y6d{bottom:651.613333pt;}
.y38{bottom:658.653333pt;}
.yc8{bottom:661.213333pt;}
.y11{bottom:662.013333pt;}
.y57{bottom:663.133333pt;}
.ya0{bottom:671.293333pt;}
.yb4{bottom:678.173333pt;}
.y37{bottom:686.173333pt;}
.y6c{bottom:686.813333pt;}
.y56{bottom:690.813333pt;}
.y10{bottom:690.973333pt;}
.y9f{bottom:698.813333pt;}
.yb3{bottom:707.773333pt;}
.yf{bottom:709.373333pt;}
.y36{bottom:713.693333pt;}
.y55{bottom:718.333333pt;}
.y9e{bottom:726.493333pt;}
.yb2{bottom:738.013333pt;}
.ye{bottom:738.973333pt;}
.y35{bottom:741.373333pt;}
.y54{bottom:746.013333pt;}
.y9d{bottom:753.213333pt;}
.y6b{bottom:758.013333pt;}
.yb1{bottom:765.533333pt;}
.y34{bottom:768.893333pt;}
.yd{bottom:771.773333pt;}
.y53{bottom:773.533333pt;}
.y7b{bottom:782.213333pt;}
.y9c{bottom:783.173333pt;}
.yb0{bottom:793.253333pt;}
.yc{bottom:796.453333pt;}
.y33{bottom:796.613333pt;}
.y52{bottom:801.253333pt;}
.y8c{bottom:816.133333pt;}
.y7a{bottom:818.213333pt;}
.yaf{bottom:820.773333pt;}
.yb{bottom:820.933333pt;}
.y32{bottom:824.133333pt;}
.y51{bottom:828.773333pt;}
.ya{bottom:845.413333pt;}
.y79{bottom:845.733333pt;}
.yae{bottom:848.453333pt;}
.y31{bottom:851.813333pt;}
.y8b{bottom:851.973333pt;}
.y50{bottom:856.453333pt;}
.y78{bottom:873.253333pt;}
.yad{bottom:875.973333pt;}
.y30{bottom:879.333333pt;}
.y9{bottom:880.613333pt;}
.y6a{bottom:881.413333pt;}
.y4f{bottom:883.973333pt;}
.y8a{bottom:890.213333pt;}
.yac{bottom:903.493333pt;}
.y2f{bottom:907.013333pt;}
.y4e{bottom:911.653333pt;}
.y8{bottom:915.813333pt;}
.y89{bottom:928.453333pt;}
.yab{bottom:931.173333pt;}
.y2e{bottom:934.533333pt;}
.y4d{bottom:939.173333pt;}
.y7{bottom:940.293333pt;}
.yaa{bottom:953.573333pt;}
.y2d{bottom:962.213333pt;}
.y6{bottom:964.933333pt;}
.y4c{bottom:966.853333pt;}
.y5{bottom:989.413333pt;}
.y2c{bottom:991.813333pt;}
.y4b{bottom:994.373333pt;}
.h7{height:46.781250pt;}
.hb{height:47.621250pt;}
.h2{height:52.785000pt;}
.h3{height:54.093750pt;}
.h9{height:56.843750pt;}
.h6{height:57.375000pt;}
.ha{height:62.761250pt;}
.hd{height:64.233437pt;}
.hc{height:64.833750pt;}
.h5{height:66.507188pt;}
.h8{height:67.128750pt;}
.h4{height:75.602187pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.311988pt;}
.x6{left:137.306655pt;}
.x5{left:151.066655pt;}
.x7{left:160.506655pt;}
.x2{left:190.106655pt;}
.x8{left:227.706655pt;}
.x3{left:251.586655pt;}
.xb{left:274.946655pt;}
.x10{left:277.186655pt;}
.xf{left:279.746655pt;}
.x11{left:286.466655pt;}
.xd{left:315.266655pt;}
.xe{left:334.466655pt;}
.xa{left:336.386655pt;}
.x4{left:416.093322pt;}
.xc{left:532.093322pt;}
.x9{left:718.373322pt;}
}




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