
    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_2142dc7c25d6f988ce32dbfe.woff')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_63b442e9f81b5d511740517b.woff')format("woff");}.ff2{font-family:ff2;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_ca65bd4c6f548264d8409d15.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_cb831bfc45030f6d94299355.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_79c18152a708be6d6fe976b4.woff')format("woff");}.ff6{font-family:ff6;line-height:1.402354;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_6684e6f45c226ce2fd90a7fb.woff')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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);}
.v2{vertical-align:-33.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls7{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.144000px;}
.ls8{letter-spacing:-0.072000px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.120000px;}
.ls5{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.336000px;}
.ls0{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.504000px;}
.lsa{letter-spacing:33.984000px;}
.ls9{letter-spacing:54.864000px;}
.ls6{letter-spacing:64.026720px;}
.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;}
}
.ws6{word-spacing:-72.000000px;}
.ws3{word-spacing:-59.760000px;}
.ws0{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.928000px;}
.ws7{word-spacing:-17.856000px;}
.ws1{word-spacing:-17.784000px;}
.ws4{word-spacing:-17.712000px;}
.ws2{word-spacing:0.000000px;}
._1e{margin-left:-2.184000px;}
._1{margin-left:-1.008000px;}
._3{width:1.080000px;}
._2{width:2.220000px;}
._9{width:3.408000px;}
._19{width:4.596000px;}
._16{width:5.628000px;}
._7{width:6.984000px;}
._8{width:8.148000px;}
._13{width:9.864000px;}
._e{width:10.872000px;}
._f{width:12.240000px;}
._10{width:13.320000px;}
._d{width:14.400000px;}
._12{width:16.272000px;}
._4{width:19.368000px;}
._a{width:21.312000px;}
._1a{width:22.392000px;}
._1b{width:23.664000px;}
._5{width:24.984000px;}
._6{width:26.496000px;}
._11{width:27.768000px;}
._b{width:29.376000px;}
._c{width:30.756000px;}
._14{width:32.688000px;}
._15{width:33.756000px;}
._17{width:35.136000px;}
._18{width:36.504000px;}
._1d{width:37.584000px;}
._1c{width:38.664000px;}
._20{width:43.416000px;}
._1f{width:44.568000px;}
._22{width:76.260000px;}
._0{width:814.476000px;}
._21{width:991.008000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.240000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y5{bottom:57.600000px;}
.y4{bottom:77.616000px;}
.y42{bottom:123.156000px;}
.y23{bottom:135.756000px;}
.y68{bottom:142.236000px;}
.ye4{bottom:143.136000px;}
.yd7{bottom:144.036000px;}
.y82{bottom:152.310000px;}
.yc4{bottom:153.210000px;}
.y9d{bottom:156.450000px;}
.y58{bottom:162.030000px;}
.y22{bottom:166.710000px;}
.y67{bottom:173.370000px;}
.ye3{bottom:174.270000px;}
.y41{bottom:174.810000px;}
.yd6{bottom:175.170000px;}
.y81{bottom:183.450000px;}
.yc3{bottom:184.350000px;}
.ya5{bottom:185.250000px;}
.y9c{bottom:187.410000px;}
.y21{bottom:197.850000px;}
.y66{bottom:204.330000px;}
.ye2{bottom:205.230000px;}
.yd5{bottom:206.130000px;}
.y57{bottom:214.050000px;}
.yc2{bottom:215.310000px;}
.ya4{bottom:216.210000px;}
.y9b{bottom:218.550000px;}
.y40{bottom:226.830000px;}
.y20{bottom:228.810000px;}
.y80{bottom:235.110000px;}
.y65{bottom:235.470000px;}
.ye1{bottom:236.370000px;}
.yd4{bottom:237.270000px;}
.yc1{bottom:246.450000px;}
.ya3{bottom:247.350000px;}
.yb5{bottom:256.350000px;}
.y1f{bottom:259.950000px;}
.y56{bottom:266.430000px;}
.ye0{bottom:267.330000px;}
.yd3{bottom:268.230000px;}
.y9a{bottom:270.210000px;}
.yc0{bottom:277.410000px;}
.ya2{bottom:278.310000px;}
.y3f{bottom:279.210000px;}
.y7f{bottom:287.490000px;}
.y55{bottom:297.570000px;}
.ydf{bottom:298.470000px;}
.yd2{bottom:299.370000px;}
.y1e{bottom:302.610000px;}
.yb4{bottom:308.550000px;}
.y3e{bottom:310.350000px;}
.y64{bottom:318.090000px;}
.y7e{bottom:318.450000px;}
.y99{bottom:322.590000px;}
.y54{bottom:328.575000px;}
.yde{bottom:329.475000px;}
.ya1{bottom:330.375000px;}
.ybf{bottom:339.555000px;}
.y3d{bottom:341.355000px;}
.y1d{bottom:346.035000px;}
.y7d{bottom:349.635000px;}
.y98{bottom:353.775000px;}
.y53{bottom:359.715000px;}
.yb3{bottom:360.615000px;}
.ya0{bottom:361.515000px;}
.y63{bottom:370.695000px;}
.y3c{bottom:372.495000px;}
.y1c{bottom:376.995000px;}
.y7c{bottom:380.595000px;}
.y97{bottom:384.735000px;}
.ydd{bottom:391.575000px;}
.y9f{bottom:392.475000px;}
.y62{bottom:401.655000px;}
.y3b{bottom:403.455000px;}
.y1b{bottom:408.135000px;}
.y52{bottom:411.375000px;}
.y7b{bottom:411.735000px;}
.yb2{bottom:412.635000px;}
.y96{bottom:415.875000px;}
.ybe{bottom:422.355000px;}
.ydc{bottom:422.715000px;}
.yd1{bottom:423.615000px;}
.y61{bottom:432.795000px;}
.y3a{bottom:434.595000px;}
.y1a{bottom:439.095000px;}
.yb1{bottom:443.595000px;}
.y9e{bottom:444.135000px;}
.y95{bottom:448.095000px;}
.ydb{bottom:453.675000px;}
.yd0{bottom:454.575000px;}
.y7a{bottom:463.395000px;}
.y51{bottom:463.755000px;}
.y39{bottom:465.555000px;}
.y19{bottom:470.235000px;}
.yb0{bottom:474.735000px;}
.y94{bottom:479.235000px;}
.yda{bottom:484.815000px;}
.ycf{bottom:485.715000px;}
.y50{bottom:494.715000px;}
.y38{bottom:496.695000px;}
.y18{bottom:501.195000px;}
.yaf{bottom:505.695000px;}
.y93{bottom:510.195000px;}
.y60{bottom:515.415000px;}
.y79{bottom:515.775000px;}
.yce{bottom:516.675000px;}
.y4f{bottom:525.855000px;}
.y37{bottom:527.655000px;}
.y17{bottom:532.335000px;}
.yd9{bottom:536.475000px;}
.yae{bottom:536.835000px;}
.y92{bottom:541.335000px;}
.y78{bottom:546.915000px;}
.ycd{bottom:547.815000px;}
.y4e{bottom:556.815000px;}
.y36{bottom:558.795000px;}
.y16{bottom:563.295000px;}
.y5f{bottom:567.795000px;}
.y91{bottom:573.555000px;}
.y77{bottom:577.875000px;}
.ycc{bottom:578.775000px;}
.yd8{bottom:588.855000px;}
.y35{bottom:589.755000px;}
.y15{bottom:594.435000px;}
.y5e{bottom:598.965000px;}
.y90{bottom:604.725000px;}
.y4d{bottom:608.685000px;}
.y76{bottom:609.045000px;}
.ycb{bottom:609.945000px;}
.yad{bottom:619.845000px;}
.y34{bottom:620.745000px;}
.y14{bottom:625.425000px;}
.y5d{bottom:629.925000px;}
.y8f{bottom:635.685000px;}
.y75{bottom:640.005000px;}
.yca{bottom:640.905000px;}
.yac{bottom:650.985000px;}
.y33{bottom:651.885000px;}
.y13{bottom:656.565000px;}
.y4c{bottom:661.065000px;}
.y8e{bottom:666.825000px;}
.yc9{bottom:672.045000px;}
.yab{bottom:681.945000px;}
.y32{bottom:682.845000px;}
.y12{bottom:687.525000px;}
.y74{bottom:691.665000px;}
.y4b{bottom:692.025000px;}
.y8d{bottom:699.225000px;}
.yc8{bottom:703.005000px;}
.yaa{bottom:713.085000px;}
.y31{bottom:713.985000px;}
.ye8{bottom:717.045000px;}
.y11{bottom:718.665000px;}
.y4a{bottom:723.165000px;}
.y8c{bottom:730.185000px;}
.yc7{bottom:734.145000px;}
.y5c{bottom:743.685000px;}
.y73{bottom:744.045000px;}
.y30{bottom:744.945000px;}
.y10{bottom:749.625000px;}
.y49{bottom:754.125000px;}
.ye7{bottom:758.805000px;}
.y8b{bottom:761.325000px;}
.yc6{bottom:765.105000px;}
.y72{bottom:775.185000px;}
.y2f{bottom:776.085000px;}
.yf{bottom:780.765000px;}
.ybd{bottom:785.265000px;}
.y8a{bottom:792.285000px;}
.y5b{bottom:796.245000px;}
.ye6{bottom:803.625000px;}
.y48{bottom:805.785000px;}
.y71{bottom:806.145000px;}
.y2e{bottom:807.045000px;}
.ybc{bottom:816.225000px;}
.ye{bottom:823.425000px;}
.y89{bottom:824.685000px;}
.ya9{bottom:826.845000px;}
.y5a{bottom:827.205000px;}
.y70{bottom:837.285000px;}
.y2d{bottom:838.185000px;}
.ybb{bottom:847.365000px;}
.ye5{bottom:848.445000px;}
.y88{bottom:855.645000px;}
.y47{bottom:858.345000px;}
.yd{bottom:859.425000px;}
.y6f{bottom:868.290000px;}
.y2c{bottom:869.190000px;}
.yba{bottom:878.370000px;}
.ya8{bottom:879.270000px;}
.y87{bottom:886.830000px;}
.y46{bottom:889.350000px;}
.yc{bottom:895.650000px;}
.y2b{bottom:900.330000px;}
.yb9{bottom:909.510000px;}
.yc5{bottom:910.050000px;}
.ya7{bottom:910.410000px;}
.y86{bottom:917.790000px;}
.y6e{bottom:919.950000px;}
.y45{bottom:920.310000px;}
.yb{bottom:927.510000px;}
.y2a{bottom:931.290000px;}
.ya6{bottom:941.370000px;}
.y85{bottom:950.190000px;}
.y44{bottom:951.450000px;}
.ya{bottom:955.230000px;}
.yb8{bottom:961.170000px;}
.y29{bottom:962.430000px;}
.y59{bottom:972.150000px;}
.y6d{bottom:972.510000px;}
.y84{bottom:981.150000px;}
.y9{bottom:987.090000px;}
.y28{bottom:993.390000px;}
.y43{bottom:1003.110000px;}
.y6c{bottom:1003.470000px;}
.y8{bottom:1004.370000px;}
.yb7{bottom:1013.190000px;}
.y27{bottom:1024.530000px;}
.y83{bottom:1034.250000px;}
.y6b{bottom:1034.610000px;}
.y7{bottom:1050.630000px;}
.y26{bottom:1055.490000px;}
.yb6{bottom:1065.210000px;}
.y6a{bottom:1065.570000px;}
.y25{bottom:1086.630000px;}
.y6{bottom:1096.890000px;}
.y69{bottom:1117.230000px;}
.y24{bottom:1117.590000px;}
.y3{bottom:1151.820000px;}
.y2{bottom:1172.880000px;}
.y1{bottom:1193.220000px;}
.h7{height:47.344922px;}
.h8{height:50.273438px;}
.h4{height:65.884219px;}
.h3{height:70.664062px;}
.h2{height:72.562500px;}
.h9{height:74.004654px;}
.ha{height:74.953125px;}
.h6{height:81.736875px;}
.h5{height:84.898125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:81.036000px;}
.x1{left:108.036000px;}
.x5{left:112.716000px;}
.x8{left:124.776000px;}
.xf{left:135.036000px;}
.xa{left:147.636000px;}
.xe{left:221.250000px;}
.x3{left:256.575000px;}
.x7{left:292.215000px;}
.xb{left:340.635000px;}
.x6{left:373.935000px;}
.x9{left:383.115000px;}
.x2{left:397.695000px;}
.x4{left:437.505000px;}
.xd{left:446.505000px;}
@media print{
.v2{vertical-align:-29.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.128000pt;}
.ls8{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.106667pt;}
.ls5{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.298667pt;}
.ls0{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.448000pt;}
.lsa{letter-spacing:30.208000pt;}
.ls9{letter-spacing:48.768000pt;}
.ls6{letter-spacing:56.912640pt;}
.ws6{word-spacing:-64.000000pt;}
.ws3{word-spacing:-53.120000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.936000pt;}
.ws7{word-spacing:-15.872000pt;}
.ws1{word-spacing:-15.808000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws2{word-spacing:0.000000pt;}
._1e{margin-left:-1.941333pt;}
._1{margin-left:-0.896000pt;}
._3{width:0.960000pt;}
._2{width:1.973333pt;}
._9{width:3.029333pt;}
._19{width:4.085333pt;}
._16{width:5.002667pt;}
._7{width:6.208000pt;}
._8{width:7.242667pt;}
._13{width:8.768000pt;}
._e{width:9.664000pt;}
._f{width:10.880000pt;}
._10{width:11.840000pt;}
._d{width:12.800000pt;}
._12{width:14.464000pt;}
._4{width:17.216000pt;}
._a{width:18.944000pt;}
._1a{width:19.904000pt;}
._1b{width:21.034667pt;}
._5{width:22.208000pt;}
._6{width:23.552000pt;}
._11{width:24.682667pt;}
._b{width:26.112000pt;}
._c{width:27.338667pt;}
._14{width:29.056000pt;}
._15{width:30.005333pt;}
._17{width:31.232000pt;}
._18{width:32.448000pt;}
._1d{width:33.408000pt;}
._1c{width:34.368000pt;}
._20{width:38.592000pt;}
._1f{width:39.616000pt;}
._22{width:67.786667pt;}
._0{width:723.978667pt;}
._21{width:880.896000pt;}
.fs3{font-size:42.880000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:51.200000pt;}
.y4{bottom:68.992000pt;}
.y42{bottom:109.472000pt;}
.y23{bottom:120.672000pt;}
.y68{bottom:126.432000pt;}
.ye4{bottom:127.232000pt;}
.yd7{bottom:128.032000pt;}
.y82{bottom:135.386667pt;}
.yc4{bottom:136.186667pt;}
.y9d{bottom:139.066667pt;}
.y58{bottom:144.026667pt;}
.y22{bottom:148.186667pt;}
.y67{bottom:154.106667pt;}
.ye3{bottom:154.906667pt;}
.y41{bottom:155.386667pt;}
.yd6{bottom:155.706667pt;}
.y81{bottom:163.066667pt;}
.yc3{bottom:163.866667pt;}
.ya5{bottom:164.666667pt;}
.y9c{bottom:166.586667pt;}
.y21{bottom:175.866667pt;}
.y66{bottom:181.626667pt;}
.ye2{bottom:182.426667pt;}
.yd5{bottom:183.226667pt;}
.y57{bottom:190.266667pt;}
.yc2{bottom:191.386667pt;}
.ya4{bottom:192.186667pt;}
.y9b{bottom:194.266667pt;}
.y40{bottom:201.626667pt;}
.y20{bottom:203.386667pt;}
.y80{bottom:208.986667pt;}
.y65{bottom:209.306667pt;}
.ye1{bottom:210.106667pt;}
.yd4{bottom:210.906667pt;}
.yc1{bottom:219.066667pt;}
.ya3{bottom:219.866667pt;}
.yb5{bottom:227.866667pt;}
.y1f{bottom:231.066667pt;}
.y56{bottom:236.826667pt;}
.ye0{bottom:237.626667pt;}
.yd3{bottom:238.426667pt;}
.y9a{bottom:240.186667pt;}
.yc0{bottom:246.586667pt;}
.ya2{bottom:247.386667pt;}
.y3f{bottom:248.186667pt;}
.y7f{bottom:255.546667pt;}
.y55{bottom:264.506667pt;}
.ydf{bottom:265.306667pt;}
.yd2{bottom:266.106667pt;}
.y1e{bottom:268.986667pt;}
.yb4{bottom:274.266667pt;}
.y3e{bottom:275.866667pt;}
.y64{bottom:282.746667pt;}
.y7e{bottom:283.066667pt;}
.y99{bottom:286.746667pt;}
.y54{bottom:292.066667pt;}
.yde{bottom:292.866667pt;}
.ya1{bottom:293.666667pt;}
.ybf{bottom:301.826667pt;}
.y3d{bottom:303.426667pt;}
.y1d{bottom:307.586667pt;}
.y7d{bottom:310.786667pt;}
.y98{bottom:314.466667pt;}
.y53{bottom:319.746667pt;}
.yb3{bottom:320.546667pt;}
.ya0{bottom:321.346667pt;}
.y63{bottom:329.506667pt;}
.y3c{bottom:331.106667pt;}
.y1c{bottom:335.106667pt;}
.y7c{bottom:338.306667pt;}
.y97{bottom:341.986667pt;}
.ydd{bottom:348.066667pt;}
.y9f{bottom:348.866667pt;}
.y62{bottom:357.026667pt;}
.y3b{bottom:358.626667pt;}
.y1b{bottom:362.786667pt;}
.y52{bottom:365.666667pt;}
.y7b{bottom:365.986667pt;}
.yb2{bottom:366.786667pt;}
.y96{bottom:369.666667pt;}
.ybe{bottom:375.426667pt;}
.ydc{bottom:375.746667pt;}
.yd1{bottom:376.546667pt;}
.y61{bottom:384.706667pt;}
.y3a{bottom:386.306667pt;}
.y1a{bottom:390.306667pt;}
.yb1{bottom:394.306667pt;}
.y9e{bottom:394.786667pt;}
.y95{bottom:398.306667pt;}
.ydb{bottom:403.266667pt;}
.yd0{bottom:404.066667pt;}
.y7a{bottom:411.906667pt;}
.y51{bottom:412.226667pt;}
.y39{bottom:413.826667pt;}
.y19{bottom:417.986667pt;}
.yb0{bottom:421.986667pt;}
.y94{bottom:425.986667pt;}
.yda{bottom:430.946667pt;}
.ycf{bottom:431.746667pt;}
.y50{bottom:439.746667pt;}
.y38{bottom:441.506667pt;}
.y18{bottom:445.506667pt;}
.yaf{bottom:449.506667pt;}
.y93{bottom:453.506667pt;}
.y60{bottom:458.146667pt;}
.y79{bottom:458.466667pt;}
.yce{bottom:459.266667pt;}
.y4f{bottom:467.426667pt;}
.y37{bottom:469.026667pt;}
.y17{bottom:473.186667pt;}
.yd9{bottom:476.866667pt;}
.yae{bottom:477.186667pt;}
.y92{bottom:481.186667pt;}
.y78{bottom:486.146667pt;}
.ycd{bottom:486.946667pt;}
.y4e{bottom:494.946667pt;}
.y36{bottom:496.706667pt;}
.y16{bottom:500.706667pt;}
.y5f{bottom:504.706667pt;}
.y91{bottom:509.826667pt;}
.y77{bottom:513.666667pt;}
.ycc{bottom:514.466667pt;}
.yd8{bottom:523.426667pt;}
.y35{bottom:524.226667pt;}
.y15{bottom:528.386667pt;}
.y5e{bottom:532.413333pt;}
.y90{bottom:537.533333pt;}
.y4d{bottom:541.053333pt;}
.y76{bottom:541.373333pt;}
.ycb{bottom:542.173333pt;}
.yad{bottom:550.973333pt;}
.y34{bottom:551.773333pt;}
.y14{bottom:555.933333pt;}
.y5d{bottom:559.933333pt;}
.y8f{bottom:565.053333pt;}
.y75{bottom:568.893333pt;}
.yca{bottom:569.693333pt;}
.yac{bottom:578.653333pt;}
.y33{bottom:579.453333pt;}
.y13{bottom:583.613333pt;}
.y4c{bottom:587.613333pt;}
.y8e{bottom:592.733333pt;}
.yc9{bottom:597.373333pt;}
.yab{bottom:606.173333pt;}
.y32{bottom:606.973333pt;}
.y12{bottom:611.133333pt;}
.y74{bottom:614.813333pt;}
.y4b{bottom:615.133333pt;}
.y8d{bottom:621.533333pt;}
.yc8{bottom:624.893333pt;}
.yaa{bottom:633.853333pt;}
.y31{bottom:634.653333pt;}
.ye8{bottom:637.373333pt;}
.y11{bottom:638.813333pt;}
.y4a{bottom:642.813333pt;}
.y8c{bottom:649.053333pt;}
.yc7{bottom:652.573333pt;}
.y5c{bottom:661.053333pt;}
.y73{bottom:661.373333pt;}
.y30{bottom:662.173333pt;}
.y10{bottom:666.333333pt;}
.y49{bottom:670.333333pt;}
.ye7{bottom:674.493333pt;}
.y8b{bottom:676.733333pt;}
.yc6{bottom:680.093333pt;}
.y72{bottom:689.053333pt;}
.y2f{bottom:689.853333pt;}
.yf{bottom:694.013333pt;}
.ybd{bottom:698.013333pt;}
.y8a{bottom:704.253333pt;}
.y5b{bottom:707.773333pt;}
.ye6{bottom:714.333333pt;}
.y48{bottom:716.253333pt;}
.y71{bottom:716.573333pt;}
.y2e{bottom:717.373333pt;}
.ybc{bottom:725.533333pt;}
.ye{bottom:731.933333pt;}
.y89{bottom:733.053333pt;}
.ya9{bottom:734.973333pt;}
.y5a{bottom:735.293333pt;}
.y70{bottom:744.253333pt;}
.y2d{bottom:745.053333pt;}
.ybb{bottom:753.213333pt;}
.ye5{bottom:754.173333pt;}
.y88{bottom:760.573333pt;}
.y47{bottom:762.973333pt;}
.yd{bottom:763.933333pt;}
.y6f{bottom:771.813333pt;}
.y2c{bottom:772.613333pt;}
.yba{bottom:780.773333pt;}
.ya8{bottom:781.573333pt;}
.y87{bottom:788.293333pt;}
.y46{bottom:790.533333pt;}
.yc{bottom:796.133333pt;}
.y2b{bottom:800.293333pt;}
.yb9{bottom:808.453333pt;}
.yc5{bottom:808.933333pt;}
.ya7{bottom:809.253333pt;}
.y86{bottom:815.813333pt;}
.y6e{bottom:817.733333pt;}
.y45{bottom:818.053333pt;}
.yb{bottom:824.453333pt;}
.y2a{bottom:827.813333pt;}
.ya6{bottom:836.773333pt;}
.y85{bottom:844.613333pt;}
.y44{bottom:845.733333pt;}
.ya{bottom:849.093333pt;}
.yb8{bottom:854.373333pt;}
.y29{bottom:855.493333pt;}
.y59{bottom:864.133333pt;}
.y6d{bottom:864.453333pt;}
.y84{bottom:872.133333pt;}
.y9{bottom:877.413333pt;}
.y28{bottom:883.013333pt;}
.y43{bottom:891.653333pt;}
.y6c{bottom:891.973333pt;}
.y8{bottom:892.773333pt;}
.yb7{bottom:900.613333pt;}
.y27{bottom:910.693333pt;}
.y83{bottom:919.333333pt;}
.y6b{bottom:919.653333pt;}
.y7{bottom:933.893333pt;}
.y26{bottom:938.213333pt;}
.yb6{bottom:946.853333pt;}
.y6a{bottom:947.173333pt;}
.y25{bottom:965.893333pt;}
.y6{bottom:975.013333pt;}
.y69{bottom:993.093333pt;}
.y24{bottom:993.413333pt;}
.y3{bottom:1023.840000pt;}
.y2{bottom:1042.560000pt;}
.y1{bottom:1060.640000pt;}
.h7{height:42.084375pt;}
.h8{height:44.687500pt;}
.h4{height:58.563750pt;}
.h3{height:62.812500pt;}
.h2{height:64.500000pt;}
.h9{height:65.781915pt;}
.ha{height:66.625000pt;}
.h6{height:72.655000pt;}
.h5{height:75.465000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:72.032000pt;}
.x1{left:96.032000pt;}
.x5{left:100.192000pt;}
.x8{left:110.912000pt;}
.xf{left:120.032000pt;}
.xa{left:131.232000pt;}
.xe{left:196.666667pt;}
.x3{left:228.066667pt;}
.x7{left:259.746667pt;}
.xb{left:302.786667pt;}
.x6{left:332.386667pt;}
.x9{left:340.546667pt;}
.x2{left:353.506667pt;}
.x4{left:388.893333pt;}
.xd{left:396.893333pt;}
}




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