
    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_302f5e2308839fcf1e98fa24.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_8109deb23cc1af6d484be025.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_bbc997bcc66b91d8c7061576.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_834e70ba57cf8a5ba25d65b8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_7aafbd88817286c9a12613b3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.973633;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_f570d90f5241bb0dadb7de76.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.973633;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_fbcc9715572396597ccfd2b4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.923340;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;}
.ls4{letter-spacing:-0.540000px;}
.lsd{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.106800px;}
.ls9{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.053280px;}
.ls0{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.259800px;}
.ls7{letter-spacing:0.306600px;}
.ls6{letter-spacing:0.360000px;}
.lsc{letter-spacing:16.506720px;}
.lsb{letter-spacing:46.002720px;}
.ls2{letter-spacing:636.840000px;}
.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:-18.000000px;}
.ws5{word-spacing:-15.300000px;}
.ws6{word-spacing:-15.246600px;}
.ws3{word-spacing:-15.199800px;}
.ws9{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.ws7{word-spacing:-14.833200px;}
.wsa{word-spacing:-14.580000px;}
.ws1{word-spacing:-13.500000px;}
.ws4{word-spacing:0.000000px;}
._b{margin-left:-9.489840px;}
._0{margin-left:-8.007840px;}
._5{margin-left:-6.633840px;}
._8{margin-left:-5.352000px;}
._a{margin-left:-4.279920px;}
._9{margin-left:-2.704080px;}
._1{margin-left:-1.430160px;}
._3{width:1.422240px;}
._2{width:2.592960px;}
._7{width:4.500000px;}
._f{width:5.509920px;}
._10{width:6.758640px;}
._14{width:7.874640px;}
._11{width:9.083520px;}
._e{width:10.709040px;}
._13{width:11.784720px;}
._15{width:13.565520px;}
._12{width:16.147200px;}
._1f{width:17.178480px;}
._1d{width:18.203040px;}
._16{width:19.242720px;}
._17{width:20.966400px;}
._20{width:22.608480px;}
._1e{width:23.904000px;}
._c{width:24.974160px;}
._d{width:26.974800px;}
._27{width:28.584240px;}
._21{width:30.967680px;}
._22{width:32.162880px;}
._23{width:33.286320px;}
._1a{width:58.564800px;}
._19{width:74.102400px;}
._1c{width:117.380640px;}
._1b{width:118.862640px;}
._6{width:136.122000px;}
._26{width:142.276560px;}
._24{width:146.961840px;}
._25{width:148.025520px;}
._18{width:283.979520px;}
._4{width:746.796000px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y9a{bottom:3.240000px;}
.y9b{bottom:11.880000px;}
.y9d{bottom:20.520000px;}
.y99{bottom:20.565000px;}
.yb{bottom:37.080000px;}
.ya{bottom:57.060000px;}
.y9{bottom:72.576000px;}
.y97{bottom:112.896000px;}
.y41{bottom:115.056000px;}
.y78{bottom:115.956000px;}
.yc6{bottom:117.036000px;}
.ya2{bottom:125.136000px;}
.ye9{bottom:126.576000px;}
.y96{bottom:130.176000px;}
.y40{bottom:132.156000px;}
.y107{bottom:132.516000px;}
.y77{bottom:133.236000px;}
.yc5{bottom:134.316000px;}
.ye8{bottom:143.676000px;}
.y95{bottom:147.456000px;}
.y3f{bottom:149.436000px;}
.y106{bottom:149.796000px;}
.y76{bottom:150.510000px;}
.yc4{bottom:151.590000px;}
.ye7{bottom:160.950000px;}
.ya1{bottom:162.930000px;}
.y94{bottom:164.730000px;}
.y3e{bottom:166.710000px;}
.y105{bottom:166.890000px;}
.y75{bottom:167.790000px;}
.yc3{bottom:168.690000px;}
.ye6{bottom:178.230000px;}
.y93{bottom:182.010000px;}
.y3d{bottom:183.990000px;}
.y104{bottom:184.170000px;}
.y74{bottom:185.070000px;}
.yc2{bottom:185.970000px;}
.ye5{bottom:195.510000px;}
.y92{bottom:199.290000px;}
.ya0{bottom:200.910000px;}
.y3c{bottom:201.270000px;}
.y103{bottom:201.450000px;}
.y73{bottom:202.170000px;}
.yc1{bottom:203.250000px;}
.ye4{bottom:212.790000px;}
.y91{bottom:216.390000px;}
.y3b{bottom:218.370000px;}
.y102{bottom:218.730000px;}
.y72{bottom:219.450000px;}
.yc0{bottom:220.530000px;}
.y9f{bottom:221.430000px;}
.ye3{bottom:230.070000px;}
.y90{bottom:233.670000px;}
.y3a{bottom:235.650000px;}
.y101{bottom:236.010000px;}
.y71{bottom:236.730000px;}
.ybf{bottom:237.810000px;}
.ye2{bottom:247.170000px;}
.y8f{bottom:250.950000px;}
.y39{bottom:252.930000px;}
.y100{bottom:253.290000px;}
.y70{bottom:254.010000px;}
.ybe{bottom:255.090000px;}
.y9e{bottom:259.410000px;}
.ye1{bottom:264.450000px;}
.y8e{bottom:268.230000px;}
.y38{bottom:270.210000px;}
.yff{bottom:270.390000px;}
.y6f{bottom:271.290000px;}
.ybd{bottom:272.190000px;}
.y9c{bottom:279.930000px;}
.ye0{bottom:281.730000px;}
.y8d{bottom:285.510000px;}
.y37{bottom:287.490000px;}
.yfe{bottom:287.670000px;}
.y6e{bottom:288.570000px;}
.ybc{bottom:289.470000px;}
.ydf{bottom:299.010000px;}
.y8c{bottom:302.790000px;}
.y36{bottom:304.770000px;}
.yfd{bottom:304.950000px;}
.y6d{bottom:305.670000px;}
.ybb{bottom:306.750000px;}
.yde{bottom:316.290000px;}
.y98{bottom:317.910000px;}
.y8b{bottom:319.890000px;}
.y35{bottom:321.870000px;}
.yfc{bottom:322.230000px;}
.y6c{bottom:322.950000px;}
.yba{bottom:324.030000px;}
.ydd{bottom:333.570000px;}
.y8a{bottom:337.215000px;}
.y34{bottom:339.195000px;}
.yfb{bottom:339.555000px;}
.y6b{bottom:340.275000px;}
.yb9{bottom:341.355000px;}
.ydc{bottom:350.715000px;}
.y89{bottom:354.495000px;}
.y33{bottom:356.475000px;}
.yfa{bottom:356.835000px;}
.y6a{bottom:357.555000px;}
.yb8{bottom:358.635000px;}
.ydb{bottom:367.995000px;}
.y88{bottom:371.775000px;}
.y32{bottom:373.755000px;}
.yf9{bottom:373.935000px;}
.y69{bottom:374.835000px;}
.yb7{bottom:375.735000px;}
.yda{bottom:385.275000px;}
.y87{bottom:389.055000px;}
.y31{bottom:391.035000px;}
.yf8{bottom:391.215000px;}
.y68{bottom:392.115000px;}
.yb6{bottom:393.015000px;}
.yd9{bottom:402.555000px;}
.y86{bottom:406.335000px;}
.y30{bottom:408.315000px;}
.yf7{bottom:408.495000px;}
.y67{bottom:409.215000px;}
.yb5{bottom:410.295000px;}
.yd8{bottom:419.835000px;}
.y85{bottom:423.435000px;}
.y2f{bottom:425.415000px;}
.yf6{bottom:425.775000px;}
.y66{bottom:426.495000px;}
.yb4{bottom:427.575000px;}
.yd7{bottom:437.115000px;}
.y84{bottom:440.715000px;}
.y2e{bottom:442.695000px;}
.yf5{bottom:443.055000px;}
.y65{bottom:443.775000px;}
.yb3{bottom:444.855000px;}
.yd6{bottom:454.215000px;}
.y83{bottom:457.995000px;}
.yf4{bottom:460.155000px;}
.y64{bottom:461.055000px;}
.y2d{bottom:462.135000px;}
.yd5{bottom:471.495000px;}
.y82{bottom:475.275000px;}
.yf3{bottom:477.435000px;}
.y63{bottom:478.335000px;}
.yb2{bottom:479.235000px;}
.y2c{bottom:479.415000px;}
.yd4{bottom:488.775000px;}
.y81{bottom:492.555000px;}
.yf2{bottom:494.715000px;}
.y62{bottom:495.435000px;}
.yb1{bottom:496.515000px;}
.y2b{bottom:496.695000px;}
.yd3{bottom:506.055000px;}
.y80{bottom:509.655000px;}
.yf1{bottom:511.995000px;}
.y61{bottom:512.715000px;}
.yb0{bottom:513.795000px;}
.y2a{bottom:513.975000px;}
.yd2{bottom:523.335000px;}
.y7f{bottom:526.935000px;}
.yf0{bottom:529.275000px;}
.y60{bottom:529.995000px;}
.yaf{bottom:531.075000px;}
.y29{bottom:531.255000px;}
.yd1{bottom:540.435000px;}
.y7e{bottom:544.215000px;}
.yef{bottom:546.555000px;}
.y5f{bottom:547.275000px;}
.yae{bottom:548.355000px;}
.y28{bottom:548.535000px;}
.yd0{bottom:557.715000px;}
.y7d{bottom:561.495000px;}
.yee{bottom:563.655000px;}
.y5e{bottom:564.555000px;}
.yad{bottom:565.455000px;}
.y27{bottom:565.635000px;}
.ycf{bottom:574.995000px;}
.y7c{bottom:578.775000px;}
.yed{bottom:580.935000px;}
.y5d{bottom:581.835000px;}
.yac{bottom:582.735000px;}
.y26{bottom:582.915000px;}
.yce{bottom:592.275000px;}
.y7b{bottom:596.055000px;}
.yec{bottom:598.215000px;}
.y5c{bottom:598.935000px;}
.yab{bottom:600.015000px;}
.y25{bottom:600.195000px;}
.ycd{bottom:608.145000px;}
.y7a{bottom:613.185000px;}
.yeb{bottom:615.525000px;}
.y5b{bottom:616.245000px;}
.yaa{bottom:617.325000px;}
.y24{bottom:617.505000px;}
.y79{bottom:627.225000px;}
.ycc{bottom:628.845000px;}
.yea{bottom:629.565000px;}
.y5a{bottom:633.525000px;}
.ya9{bottom:634.605000px;}
.y23{bottom:634.785000px;}
.ycb{bottom:649.365000px;}
.y59{bottom:650.805000px;}
.ya8{bottom:651.885000px;}
.y22{bottom:652.065000px;}
.y58{bottom:668.085000px;}
.ya7{bottom:668.985000px;}
.y21{bottom:669.165000px;}
.yca{bottom:670.065000px;}
.y57{bottom:685.365000px;}
.ya6{bottom:686.265000px;}
.y20{bottom:686.445000px;}
.yc9{bottom:690.585000px;}
.y56{bottom:702.465000px;}
.ya5{bottom:703.545000px;}
.y1f{bottom:703.725000px;}
.yc8{bottom:711.285000px;}
.y55{bottom:719.745000px;}
.ya4{bottom:720.825000px;}
.y1e{bottom:721.005000px;}
.yc7{bottom:731.985000px;}
.ya3{bottom:734.865000px;}
.y54{bottom:737.025000px;}
.y1d{bottom:738.285000px;}
.y53{bottom:754.305000px;}
.y1c{bottom:755.565000px;}
.y52{bottom:771.585000px;}
.y1b{bottom:772.665000px;}
.y51{bottom:788.865000px;}
.y1a{bottom:789.945000px;}
.y50{bottom:805.965000px;}
.y19{bottom:807.225000px;}
.y4f{bottom:823.245000px;}
.y18{bottom:824.505000px;}
.y4e{bottom:840.525000px;}
.y17{bottom:841.785000px;}
.y4d{bottom:857.805000px;}
.y16{bottom:858.885000px;}
.y4c{bottom:875.130000px;}
.y15{bottom:876.210000px;}
.y4b{bottom:892.230000px;}
.y14{bottom:893.490000px;}
.y4a{bottom:909.510000px;}
.y13{bottom:910.770000px;}
.y49{bottom:926.790000px;}
.y12{bottom:930.210000px;}
.y48{bottom:944.070000px;}
.y11{bottom:948.030000px;}
.y47{bottom:961.350000px;}
.y10{bottom:966.930000px;}
.y46{bottom:978.630000px;}
.yf{bottom:985.470000px;}
.y45{bottom:995.730000px;}
.ye{bottom:1003.470000px;}
.y44{bottom:1013.010000px;}
.yd{bottom:1024.170000px;}
.y43{bottom:1030.290000px;}
.yc{bottom:1044.870000px;}
.y42{bottom:1047.570000px;}
.y8{bottom:1066.470000px;}
.y7{bottom:1086.450000px;}
.y6{bottom:1102.290000px;}
.y5{bottom:1120.290000px;}
.y4{bottom:1137.030000px;}
.y3{bottom:1179.180000px;}
.y2{bottom:1199.160000px;}
.y1{bottom:1216.440000px;}
.he{height:17.100000px;}
.hd{height:17.280000px;}
.hb{height:34.416000px;}
.hc{height:34.560000px;}
.h5{height:42.164648px;}
.ha{height:45.024258px;}
.h8{height:46.736719px;}
.h6{height:48.410156px;}
.h4{height:50.800781px;}
.h2{height:53.573906px;}
.h9{height:59.383125px;}
.h3{height:64.546875px;}
.h7{height:71.613281px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:120.096000px;}
.w3{width:130.680000px;}
.w7{width:161.280000px;}
.w4{width:183.450000px;}
.w8{width:220.395000px;}
.w6{width:238.350000px;}
.w9{width:269.310000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:108.035987px;}
.x8{left:116.135987px;}
.xf{left:119.555987px;}
.x2{left:123.155987px;}
.x7{left:124.415987px;}
.x14{left:126.035987px;}
.xb{left:130.715987px;}
.x1f{left:133.775987px;}
.x23{left:135.035987px;}
.x16{left:137.195987px;}
.x1c{left:144.035987px;}
.x1e{left:147.995987px;}
.x4{left:158.429987px;}
.x24{left:162.029987px;}
.x10{left:165.269987px;}
.x18{left:173.549987px;}
.xd{left:206.849987px;}
.x11{left:240.510000px;}
.x19{left:271.110000px;}
.xa{left:348.014987px;}
.xc{left:378.974987px;}
.x21{left:384.374987px;}
.x1d{left:389.234987px;}
.x20{left:394.454987px;}
.x6{left:396.434987px;}
.x22{left:400.214987px;}
.x17{left:411.194987px;}
.x5{left:412.274987px;}
.x12{left:425.055000px;}
.x9{left:446.474987px;}
.x1a{left:492.585000px;}
.x3{left:518.504987px;}
.x13{left:546.045000px;}
.x15{left:610.844987px;}
.x1b{left:662.549987px;}
.xe{left:663.629987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.480000pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.094933pt;}
.ls9{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.047360pt;}
.ls0{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.230933pt;}
.ls7{letter-spacing:0.272533pt;}
.ls6{letter-spacing:0.320000pt;}
.lsc{letter-spacing:14.672640pt;}
.lsb{letter-spacing:40.891307pt;}
.ls2{letter-spacing:566.080000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.552533pt;}
.ws3{word-spacing:-13.510933pt;}
.ws9{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.ws7{word-spacing:-13.185067pt;}
.wsa{word-spacing:-12.960000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws4{word-spacing:0.000000pt;}
._b{margin-left:-8.435413pt;}
._0{margin-left:-7.118080pt;}
._5{margin-left:-5.896747pt;}
._8{margin-left:-4.757333pt;}
._a{margin-left:-3.804373pt;}
._9{margin-left:-2.403627pt;}
._1{margin-left:-1.271253pt;}
._3{width:1.264213pt;}
._2{width:2.304853pt;}
._7{width:4.000000pt;}
._f{width:4.897707pt;}
._10{width:6.007680pt;}
._14{width:6.999680pt;}
._11{width:8.074240pt;}
._e{width:9.519147pt;}
._13{width:10.475307pt;}
._15{width:12.058240pt;}
._12{width:14.353067pt;}
._1f{width:15.269760pt;}
._1d{width:16.180480pt;}
._16{width:17.104640pt;}
._17{width:18.636800pt;}
._20{width:20.096427pt;}
._1e{width:21.248000pt;}
._c{width:22.199253pt;}
._d{width:23.977600pt;}
._27{width:25.408213pt;}
._21{width:27.526827pt;}
._22{width:28.589227pt;}
._23{width:29.587840pt;}
._1a{width:52.057600pt;}
._19{width:65.868800pt;}
._1c{width:104.338347pt;}
._1b{width:105.655680pt;}
._6{width:120.997333pt;}
._26{width:126.468053pt;}
._24{width:130.632747pt;}
._25{width:131.578240pt;}
._18{width:252.426240pt;}
._4{width:663.818667pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y9a{bottom:2.880000pt;}
.y9b{bottom:10.560000pt;}
.y9d{bottom:18.240000pt;}
.y99{bottom:18.280000pt;}
.yb{bottom:32.960000pt;}
.ya{bottom:50.720000pt;}
.y9{bottom:64.512000pt;}
.y97{bottom:100.352000pt;}
.y41{bottom:102.272000pt;}
.y78{bottom:103.072000pt;}
.yc6{bottom:104.032000pt;}
.ya2{bottom:111.232000pt;}
.ye9{bottom:112.512000pt;}
.y96{bottom:115.712000pt;}
.y40{bottom:117.472000pt;}
.y107{bottom:117.792000pt;}
.y77{bottom:118.432000pt;}
.yc5{bottom:119.392000pt;}
.ye8{bottom:127.712000pt;}
.y95{bottom:131.072000pt;}
.y3f{bottom:132.832000pt;}
.y106{bottom:133.152000pt;}
.y76{bottom:133.786667pt;}
.yc4{bottom:134.746667pt;}
.ye7{bottom:143.066667pt;}
.ya1{bottom:144.826667pt;}
.y94{bottom:146.426667pt;}
.y3e{bottom:148.186667pt;}
.y105{bottom:148.346667pt;}
.y75{bottom:149.146667pt;}
.yc3{bottom:149.946667pt;}
.ye6{bottom:158.426667pt;}
.y93{bottom:161.786667pt;}
.y3d{bottom:163.546667pt;}
.y104{bottom:163.706667pt;}
.y74{bottom:164.506667pt;}
.yc2{bottom:165.306667pt;}
.ye5{bottom:173.786667pt;}
.y92{bottom:177.146667pt;}
.ya0{bottom:178.586667pt;}
.y3c{bottom:178.906667pt;}
.y103{bottom:179.066667pt;}
.y73{bottom:179.706667pt;}
.yc1{bottom:180.666667pt;}
.ye4{bottom:189.146667pt;}
.y91{bottom:192.346667pt;}
.y3b{bottom:194.106667pt;}
.y102{bottom:194.426667pt;}
.y72{bottom:195.066667pt;}
.yc0{bottom:196.026667pt;}
.y9f{bottom:196.826667pt;}
.ye3{bottom:204.506667pt;}
.y90{bottom:207.706667pt;}
.y3a{bottom:209.466667pt;}
.y101{bottom:209.786667pt;}
.y71{bottom:210.426667pt;}
.ybf{bottom:211.386667pt;}
.ye2{bottom:219.706667pt;}
.y8f{bottom:223.066667pt;}
.y39{bottom:224.826667pt;}
.y100{bottom:225.146667pt;}
.y70{bottom:225.786667pt;}
.ybe{bottom:226.746667pt;}
.y9e{bottom:230.586667pt;}
.ye1{bottom:235.066667pt;}
.y8e{bottom:238.426667pt;}
.y38{bottom:240.186667pt;}
.yff{bottom:240.346667pt;}
.y6f{bottom:241.146667pt;}
.ybd{bottom:241.946667pt;}
.y9c{bottom:248.826667pt;}
.ye0{bottom:250.426667pt;}
.y8d{bottom:253.786667pt;}
.y37{bottom:255.546667pt;}
.yfe{bottom:255.706667pt;}
.y6e{bottom:256.506667pt;}
.ybc{bottom:257.306667pt;}
.ydf{bottom:265.786667pt;}
.y8c{bottom:269.146667pt;}
.y36{bottom:270.906667pt;}
.yfd{bottom:271.066667pt;}
.y6d{bottom:271.706667pt;}
.ybb{bottom:272.666667pt;}
.yde{bottom:281.146667pt;}
.y98{bottom:282.586667pt;}
.y8b{bottom:284.346667pt;}
.y35{bottom:286.106667pt;}
.yfc{bottom:286.426667pt;}
.y6c{bottom:287.066667pt;}
.yba{bottom:288.026667pt;}
.ydd{bottom:296.506667pt;}
.y8a{bottom:299.746667pt;}
.y34{bottom:301.506667pt;}
.yfb{bottom:301.826667pt;}
.y6b{bottom:302.466667pt;}
.yb9{bottom:303.426667pt;}
.ydc{bottom:311.746667pt;}
.y89{bottom:315.106667pt;}
.y33{bottom:316.866667pt;}
.yfa{bottom:317.186667pt;}
.y6a{bottom:317.826667pt;}
.yb8{bottom:318.786667pt;}
.ydb{bottom:327.106667pt;}
.y88{bottom:330.466667pt;}
.y32{bottom:332.226667pt;}
.yf9{bottom:332.386667pt;}
.y69{bottom:333.186667pt;}
.yb7{bottom:333.986667pt;}
.yda{bottom:342.466667pt;}
.y87{bottom:345.826667pt;}
.y31{bottom:347.586667pt;}
.yf8{bottom:347.746667pt;}
.y68{bottom:348.546667pt;}
.yb6{bottom:349.346667pt;}
.yd9{bottom:357.826667pt;}
.y86{bottom:361.186667pt;}
.y30{bottom:362.946667pt;}
.yf7{bottom:363.106667pt;}
.y67{bottom:363.746667pt;}
.yb5{bottom:364.706667pt;}
.yd8{bottom:373.186667pt;}
.y85{bottom:376.386667pt;}
.y2f{bottom:378.146667pt;}
.yf6{bottom:378.466667pt;}
.y66{bottom:379.106667pt;}
.yb4{bottom:380.066667pt;}
.yd7{bottom:388.546667pt;}
.y84{bottom:391.746667pt;}
.y2e{bottom:393.506667pt;}
.yf5{bottom:393.826667pt;}
.y65{bottom:394.466667pt;}
.yb3{bottom:395.426667pt;}
.yd6{bottom:403.746667pt;}
.y83{bottom:407.106667pt;}
.yf4{bottom:409.026667pt;}
.y64{bottom:409.826667pt;}
.y2d{bottom:410.786667pt;}
.yd5{bottom:419.106667pt;}
.y82{bottom:422.466667pt;}
.yf3{bottom:424.386667pt;}
.y63{bottom:425.186667pt;}
.yb2{bottom:425.986667pt;}
.y2c{bottom:426.146667pt;}
.yd4{bottom:434.466667pt;}
.y81{bottom:437.826667pt;}
.yf2{bottom:439.746667pt;}
.y62{bottom:440.386667pt;}
.yb1{bottom:441.346667pt;}
.y2b{bottom:441.506667pt;}
.yd3{bottom:449.826667pt;}
.y80{bottom:453.026667pt;}
.yf1{bottom:455.106667pt;}
.y61{bottom:455.746667pt;}
.yb0{bottom:456.706667pt;}
.y2a{bottom:456.866667pt;}
.yd2{bottom:465.186667pt;}
.y7f{bottom:468.386667pt;}
.yf0{bottom:470.466667pt;}
.y60{bottom:471.106667pt;}
.yaf{bottom:472.066667pt;}
.y29{bottom:472.226667pt;}
.yd1{bottom:480.386667pt;}
.y7e{bottom:483.746667pt;}
.yef{bottom:485.826667pt;}
.y5f{bottom:486.466667pt;}
.yae{bottom:487.426667pt;}
.y28{bottom:487.586667pt;}
.yd0{bottom:495.746667pt;}
.y7d{bottom:499.106667pt;}
.yee{bottom:501.026667pt;}
.y5e{bottom:501.826667pt;}
.yad{bottom:502.626667pt;}
.y27{bottom:502.786667pt;}
.ycf{bottom:511.106667pt;}
.y7c{bottom:514.466667pt;}
.yed{bottom:516.386667pt;}
.y5d{bottom:517.186667pt;}
.yac{bottom:517.986667pt;}
.y26{bottom:518.146667pt;}
.yce{bottom:526.466667pt;}
.y7b{bottom:529.826667pt;}
.yec{bottom:531.746667pt;}
.y5c{bottom:532.386667pt;}
.yab{bottom:533.346667pt;}
.y25{bottom:533.506667pt;}
.ycd{bottom:540.573333pt;}
.y7a{bottom:545.053333pt;}
.yeb{bottom:547.133333pt;}
.y5b{bottom:547.773333pt;}
.yaa{bottom:548.733333pt;}
.y24{bottom:548.893333pt;}
.y79{bottom:557.533333pt;}
.ycc{bottom:558.973333pt;}
.yea{bottom:559.613333pt;}
.y5a{bottom:563.133333pt;}
.ya9{bottom:564.093333pt;}
.y23{bottom:564.253333pt;}
.ycb{bottom:577.213333pt;}
.y59{bottom:578.493333pt;}
.ya8{bottom:579.453333pt;}
.y22{bottom:579.613333pt;}
.y58{bottom:593.853333pt;}
.ya7{bottom:594.653333pt;}
.y21{bottom:594.813333pt;}
.yca{bottom:595.613333pt;}
.y57{bottom:609.213333pt;}
.ya6{bottom:610.013333pt;}
.y20{bottom:610.173333pt;}
.yc9{bottom:613.853333pt;}
.y56{bottom:624.413333pt;}
.ya5{bottom:625.373333pt;}
.y1f{bottom:625.533333pt;}
.yc8{bottom:632.253333pt;}
.y55{bottom:639.773333pt;}
.ya4{bottom:640.733333pt;}
.y1e{bottom:640.893333pt;}
.yc7{bottom:650.653333pt;}
.ya3{bottom:653.213333pt;}
.y54{bottom:655.133333pt;}
.y1d{bottom:656.253333pt;}
.y53{bottom:670.493333pt;}
.y1c{bottom:671.613333pt;}
.y52{bottom:685.853333pt;}
.y1b{bottom:686.813333pt;}
.y51{bottom:701.213333pt;}
.y1a{bottom:702.173333pt;}
.y50{bottom:716.413333pt;}
.y19{bottom:717.533333pt;}
.y4f{bottom:731.773333pt;}
.y18{bottom:732.893333pt;}
.y4e{bottom:747.133333pt;}
.y17{bottom:748.253333pt;}
.y4d{bottom:762.493333pt;}
.y16{bottom:763.453333pt;}
.y4c{bottom:777.893333pt;}
.y15{bottom:778.853333pt;}
.y4b{bottom:793.093333pt;}
.y14{bottom:794.213333pt;}
.y4a{bottom:808.453333pt;}
.y13{bottom:809.573333pt;}
.y49{bottom:823.813333pt;}
.y12{bottom:826.853333pt;}
.y48{bottom:839.173333pt;}
.y11{bottom:842.693333pt;}
.y47{bottom:854.533333pt;}
.y10{bottom:859.493333pt;}
.y46{bottom:869.893333pt;}
.yf{bottom:875.973333pt;}
.y45{bottom:885.093333pt;}
.ye{bottom:891.973333pt;}
.y44{bottom:900.453333pt;}
.yd{bottom:910.373333pt;}
.y43{bottom:915.813333pt;}
.yc{bottom:928.773333pt;}
.y42{bottom:931.173333pt;}
.y8{bottom:947.973333pt;}
.y7{bottom:965.733333pt;}
.y6{bottom:979.813333pt;}
.y5{bottom:995.813333pt;}
.y4{bottom:1010.693333pt;}
.y3{bottom:1048.160000pt;}
.y2{bottom:1065.920000pt;}
.y1{bottom:1081.280000pt;}
.he{height:15.200000pt;}
.hd{height:15.360000pt;}
.hb{height:30.592000pt;}
.hc{height:30.720000pt;}
.h5{height:37.479688pt;}
.ha{height:40.021563pt;}
.h8{height:41.543750pt;}
.h6{height:43.031250pt;}
.h4{height:45.156250pt;}
.h2{height:47.621250pt;}
.h9{height:52.785000pt;}
.h3{height:57.375000pt;}
.h7{height:63.656250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:106.752000pt;}
.w3{width:116.160000pt;}
.w7{width:143.360000pt;}
.w4{width:163.066667pt;}
.w8{width:195.906667pt;}
.w6{width:211.866667pt;}
.w9{width:239.386667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.031988pt;}
.x8{left:103.231988pt;}
.xf{left:106.271988pt;}
.x2{left:109.471988pt;}
.x7{left:110.591988pt;}
.x14{left:112.031988pt;}
.xb{left:116.191988pt;}
.x1f{left:118.911988pt;}
.x23{left:120.031988pt;}
.x16{left:121.951988pt;}
.x1c{left:128.031988pt;}
.x1e{left:131.551988pt;}
.x4{left:140.826655pt;}
.x24{left:144.026655pt;}
.x10{left:146.906655pt;}
.x18{left:154.266655pt;}
.xd{left:183.866655pt;}
.x11{left:213.786667pt;}
.x19{left:240.986667pt;}
.xa{left:309.346655pt;}
.xc{left:336.866655pt;}
.x21{left:341.666655pt;}
.x1d{left:345.986655pt;}
.x20{left:350.626655pt;}
.x6{left:352.386655pt;}
.x22{left:355.746655pt;}
.x17{left:365.506655pt;}
.x5{left:366.466655pt;}
.x12{left:377.826667pt;}
.x9{left:396.866655pt;}
.x1a{left:437.853333pt;}
.x3{left:460.893322pt;}
.x13{left:485.373333pt;}
.x15{left:542.973322pt;}
.x1b{left:588.933322pt;}
.xe{left:589.893322pt;}
}




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