
    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_2661b85d61fc4d15db18b185.woff')format("woff");}.ff1{font-family:ff1;line-height:1.171875;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_eb407d1059b9667ab8cbe19d.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d6609b762f5df16e5c295ec9.woff')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_4382b29229e6c90ded4f2ac1.woff')format("woff");}.ff4{font-family:ff4;line-height:1.080566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_dc368881c11a9f805512ff3c.woff')format("woff");}.ff5{font-family:ff5;line-height:0.916992;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_d6418db37c50ddfe20f3f94c.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_cc2a9a98c21e0ceedc604861.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ceecbcf2e24bded748439f0a.woff')format("woff");}.ff8{font-family:ff8;line-height:0.853027;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_75db79f9d529bade16d4a816.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_2527243ccde5765f6885c4d6.woff')format("woff");}.ffa{font-family:ffa;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;}
.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);}
.v1{vertical-align:-6.000000px;}
.v2{vertical-align:-3.600000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:6.060000px;}
.ls14{letter-spacing:-3.984000px;}
.lsa{letter-spacing:-0.768000px;}
.ls3{letter-spacing:-0.420000px;}
.ls15{letter-spacing:-0.384000px;}
.ls11{letter-spacing:-0.144000px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.024000px;}
.lsd{letter-spacing:0.060000px;}
.ls12{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.120000px;}
.ls0{letter-spacing:0.138000px;}
.lsc{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.192000px;}
.ls7{letter-spacing:0.204000px;}
.lsb{letter-spacing:0.384000px;}
.ls4{letter-spacing:0.432000px;}
.ls8{letter-spacing:1.140000px;}
.lsf{letter-spacing:1.200000px;}
.ls10{letter-spacing:1.380000px;}
.lse{letter-spacing:3.600000px;}
.ls13{letter-spacing:152.784000px;}
.ls5{letter-spacing:194.400000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-72.000000px;}
.ws3{word-spacing:-18.432000px;}
.ws5{word-spacing:-18.192000px;}
.ws6{word-spacing:-18.024000px;}
.ws2{word-spacing:-18.000000px;}
.ws0{word-spacing:-13.140000px;}
.ws8{word-spacing:-12.000000px;}
.ws7{word-spacing:-11.856000px;}
.ws4{word-spacing:0.000000px;}
._a{margin-left:-11.322000px;}
._23{margin-left:-8.784000px;}
._b{margin-left:-7.488000px;}
._4{margin-left:-5.598000px;}
._3{margin-left:-3.600000px;}
._2{margin-left:-2.448000px;}
._0{margin-left:-1.080000px;}
._1{width:1.380000px;}
._6{width:2.556000px;}
._5{width:4.338000px;}
._16{width:5.520000px;}
._7{width:6.522000px;}
._15{width:7.650000px;}
._1c{width:9.318000px;}
._1d{width:10.734000px;}
._9{width:12.360000px;}
._8{width:13.398000px;}
._1a{width:14.688000px;}
._17{width:16.416000px;}
._18{width:19.266000px;}
._14{width:20.448000px;}
._19{width:21.804000px;}
._11{width:23.112000px;}
._10{width:24.408000px;}
._e{width:25.692000px;}
._f{width:26.874000px;}
._24{width:28.470000px;}
._d{width:31.986000px;}
._c{width:33.174000px;}
._25{width:34.704000px;}
._12{width:37.344000px;}
._13{width:38.376000px;}
._1f{width:39.672000px;}
._1e{width:40.740000px;}
._27{width:60.468000px;}
._26{width:61.704000px;}
._22{width:64.380000px;}
._20{width:65.436000px;}
._21{width:66.912000px;}
._28{width:92.520000px;}
._1b{width:194.400000px;}
.fc1{color:rgb(0,112,192);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs4{font-size:48.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y3b{bottom:6.900000px;}
.y43{bottom:6.915000px;}
.y39{bottom:7.200000px;}
.y6e{bottom:18.885000px;}
.y36{bottom:18.900000px;}
.y3e{bottom:30.600000px;}
.y6d{bottom:30.885000px;}
.y38{bottom:30.900000px;}
.y70{bottom:30.930000px;}
.y42{bottom:30.945000px;}
.y3f{bottom:42.600000px;}
.y35{bottom:42.900000px;}
.y3d{bottom:54.600000px;}
.y37{bottom:54.615000px;}
.y41{bottom:54.645000px;}
.y7{bottom:57.337500px;}
.y33{bottom:99.337500px;}
.y69{bottom:104.737500px;}
.y52{bottom:109.537500px;}
.y32{bottom:123.037500px;}
.y68{bottom:130.837500px;}
.y51{bottom:133.237500px;}
.ya6{bottom:144.337500px;}
.y31{bottom:146.737500px;}
.y50{bottom:157.245000px;}
.y67{bottom:163.830000px;}
.ya5{bottom:168.030000px;}
.y30{bottom:170.775000px;}
.y4f{bottom:180.975000px;}
.y66{bottom:187.575000px;}
.ya4{bottom:192.075000px;}
.y2f{bottom:194.475000px;}
.y4e{bottom:204.675000px;}
.y65{bottom:211.575000px;}
.ya3{bottom:215.775000px;}
.y2e{bottom:218.175000px;}
.y4d{bottom:228.675000px;}
.y64{bottom:235.275000px;}
.ya2{bottom:239.775000px;}
.y2d{bottom:242.175000px;}
.y4c{bottom:252.375000px;}
.y63{bottom:258.975000px;}
.ya1{bottom:263.475000px;}
.y2c{bottom:265.875000px;}
.y4b{bottom:276.075000px;}
.y62{bottom:282.975000px;}
.ya0{bottom:287.175000px;}
.y2b{bottom:289.575000px;}
.y8c{bottom:297.375000px;}
.y4a{bottom:300.075000px;}
.y61{bottom:306.675000px;}
.y9f{bottom:311.175000px;}
.y2a{bottom:313.575000px;}
.y8b{bottom:321.375000px;}
.y49{bottom:323.775000px;}
.y60{bottom:330.675000px;}
.y9e{bottom:334.875000px;}
.y29{bottom:337.275000px;}
.y8a{bottom:345.120000px;}
.y48{bottom:347.505000px;}
.y5f{bottom:354.405000px;}
.y9d{bottom:358.620000px;}
.y28{bottom:361.005000px;}
.y89{bottom:368.820000px;}
.y47{bottom:371.505000px;}
.y5e{bottom:378.105000px;}
.y9c{bottom:382.320000px;}
.y27{bottom:385.005000px;}
.y88{bottom:392.820000px;}
.y46{bottom:395.220000px;}
.y5d{bottom:402.120000px;}
.y9b{bottom:407.505000px;}
.y26{bottom:408.705000px;}
.y87{bottom:417.105000px;}
.y45{bottom:418.905000px;}
.y5c{bottom:425.820000px;}
.y9a{bottom:431.205000px;}
.y25{bottom:432.405000px;}
.y44{bottom:438.105000px;}
.y86{bottom:441.120000px;}
.y5b{bottom:449.505000px;}
.y24{bottom:456.420000px;}
.y85{bottom:465.120000px;}
.y5a{bottom:473.505000px;}
.y23{bottom:480.120000px;}
.y40{bottom:487.905000px;}
.y84{bottom:489.120000px;}
.y59{bottom:497.205000px;}
.y22{bottom:503.805000px;}
.y83{bottom:513.150000px;}
.y58{bottom:520.950000px;}
.y99{bottom:526.350000px;}
.y21{bottom:527.850000px;}
.y82{bottom:536.850000px;}
.y57{bottom:544.950000px;}
.y98{bottom:550.350000px;}
.y20{bottom:551.550000px;}
.y81{bottom:560.850000px;}
.y3c{bottom:561.750000px;}
.y56{bottom:568.650000px;}
.y97{bottom:574.050000px;}
.y1f{bottom:575.250000px;}
.y80{bottom:584.550000px;}
.y55{bottom:592.350000px;}
.y96{bottom:597.750000px;}
.y1e{bottom:599.250000px;}
.y7f{bottom:608.250000px;}
.y54{bottom:611.550000px;}
.y95{bottom:621.750000px;}
.y1d{bottom:622.950000px;}
.y7e{bottom:632.250000px;}
.y3a{bottom:635.250000px;}
.y53{bottom:637.650000px;}
.y94{bottom:645.450000px;}
.y1c{bottom:646.650000px;}
.y7d{bottom:655.950000px;}
.y93{bottom:669.150000px;}
.y1b{bottom:670.650000px;}
.y7c{bottom:679.695000px;}
.y34{bottom:685.080000px;}
.y92{bottom:693.195000px;}
.y1a{bottom:694.380000px;}
.y7b{bottom:703.695000px;}
.y91{bottom:716.880000px;}
.y19{bottom:718.080000px;}
.y7a{bottom:727.380000px;}
.y90{bottom:740.595000px;}
.y18{bottom:742.080000px;}
.y79{bottom:751.095000px;}
.y8f{bottom:764.595000px;}
.y17{bottom:765.780000px;}
.y78{bottom:775.080000px;}
.y8e{bottom:788.295000px;}
.y16{bottom:789.795000px;}
.y77{bottom:798.795000px;}
.y8d{bottom:808.080000px;}
.y15{bottom:813.480000px;}
.y76{bottom:822.480000px;}
.y14{bottom:837.195000px;}
.y75{bottom:846.525000px;}
.y13{bottom:861.225000px;}
.y74{bottom:870.225000px;}
.y12{bottom:884.925000px;}
.y73{bottom:893.925000px;}
.y11{bottom:908.625000px;}
.y72{bottom:913.125000px;}
.y10{bottom:932.625000px;}
.yf{bottom:956.325000px;}
.y71{bottom:962.925000px;}
.ye{bottom:980.025000px;}
.y6f{bottom:989.025000px;}
.yd{bottom:1004.025000px;}
.yc{bottom:1027.755000px;}
.y6c{bottom:1038.870000px;}
.yb{bottom:1051.455000px;}
.ya{bottom:1075.455000px;}
.y6b{bottom:1088.655000px;}
.y9{bottom:1099.155000px;}
.y6a{bottom:1114.755000px;}
.y8{bottom:1122.855000px;}
.y6{bottom:1143.570000px;}
.y5{bottom:1164.255000px;}
.y4{bottom:1182.570000px;}
.y3{bottom:1200.900000px;}
.y2{bottom:1219.200000px;}
.y1{bottom:1237.500000px;}
.hd{height:23.700000px;}
.he{height:24.000000px;}
.hc{height:47.700000px;}
.ha{height:47.737500px;}
.h7{height:50.484375px;}
.h2{height:61.435547px;}
.h5{height:62.261719px;}
.h4{height:65.645508px;}
.h9{height:71.400000px;}
.hb{height:71.437500px;}
.h6{height:72.562500px;}
.h8{height:74.004654px;}
.h3{height:84.656250px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.wc{width:64.500000px;}
.wb{width:64.537500px;}
.wd{width:65.137500px;}
.w8{width:96.937500px;}
.w6{width:97.237500px;}
.w5{width:98.400000px;}
.w7{width:100.537500px;}
.w4{width:103.837500px;}
.w3{width:106.537500px;}
.w9{width:110.437500px;}
.wf{width:219.075000px;}
.w10{width:239.475000px;}
.we{width:259.875000px;}
.wa{width:392.205000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2c{left:2.700000px;}
.x30{left:4.200000px;}
.x1b{left:6.300000px;}
.x1e{left:8.100000px;}
.x28{left:10.200000px;}
.x24{left:12.600000px;}
.x2e{left:13.800000px;}
.x29{left:15.900000px;}
.x20{left:17.700000px;}
.x23{left:19.230000px;}
.x1f{left:21.000000px;}
.x37{left:22.800000px;}
.x32{left:24.300000px;}
.x27{left:26.400000px;}
.x31{left:28.185000px;}
.x2f{left:29.400000px;}
.x1c{left:30.900000px;}
.x33{left:34.800000px;}
.x25{left:36.030000px;}
.x48{left:39.300000px;}
.x2d{left:45.000000px;}
.x42{left:60.600000px;}
.x45{left:63.000000px;}
.x47{left:77.692500px;}
.x3c{left:80.092500px;}
.x41{left:81.300000px;}
.xf{left:84.937487px;}
.x14{left:86.437487px;}
.x17{left:88.837487px;}
.x43{left:93.630000px;}
.x3e{left:95.437500px;}
.x5{left:98.737487px;}
.x9{left:100.237487px;}
.x11{left:104.737487px;}
.x44{left:106.230000px;}
.x35{left:107.737500px;}
.x46{left:116.737500px;}
.x10{left:137.137487px;}
.x34{left:143.137487px;}
.x4a{left:171.929987px;}
.x1d{left:193.575000px;}
.x1a{left:195.374987px;}
.xd{left:198.374987px;}
.x6{left:216.374987px;}
.x15{left:265.874987px;}
.xa{left:282.074987px;}
.x3d{left:287.474987px;}
.x21{left:298.620000px;}
.x13{left:301.619987px;}
.xe{left:303.719987px;}
.xc{left:315.419987px;}
.x8{left:318.404987px;}
.x16{left:321.119987px;}
.xb{left:334.904987px;}
.x3f{left:347.220000px;}
.x3{left:350.504987px;}
.x18{left:395.219987px;}
.x22{left:398.220000px;}
.x4b{left:404.504987px;}
.x12{left:412.904987px;}
.x4{left:433.949987px;}
.x7{left:446.249987px;}
.x2{left:457.049987px;}
.x36{left:479.550000px;}
.x26{left:496.650000px;}
.x1{left:510.449987px;}
.x38{left:544.995000px;}
.x40{left:567.495000px;}
.x2a{left:598.395000px;}
.x39{left:610.695000px;}
.x49{left:625.079987px;}
.x3a{left:676.125000px;}
.x2b{left:696.525000px;}
.x3b{left:741.825000px;}
.x19{left:747.524987px;}
@media print{
.v1{vertical-align:-5.333333pt;}
.v2{vertical-align:-3.200000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:5.386667pt;}
.ls14{letter-spacing:-3.541333pt;}
.lsa{letter-spacing:-0.682667pt;}
.ls3{letter-spacing:-0.373333pt;}
.ls15{letter-spacing:-0.341333pt;}
.ls11{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.021333pt;}
.lsd{letter-spacing:0.053333pt;}
.ls12{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.106667pt;}
.ls0{letter-spacing:0.122667pt;}
.lsc{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.170667pt;}
.ls7{letter-spacing:0.181333pt;}
.lsb{letter-spacing:0.341333pt;}
.ls4{letter-spacing:0.384000pt;}
.ls8{letter-spacing:1.013333pt;}
.lsf{letter-spacing:1.066667pt;}
.ls10{letter-spacing:1.226667pt;}
.lse{letter-spacing:3.200000pt;}
.ls13{letter-spacing:135.808000pt;}
.ls5{letter-spacing:172.800000pt;}
.ws1{word-spacing:-64.000000pt;}
.ws3{word-spacing:-16.384000pt;}
.ws5{word-spacing:-16.170667pt;}
.ws6{word-spacing:-16.021333pt;}
.ws2{word-spacing:-16.000000pt;}
.ws0{word-spacing:-11.680000pt;}
.ws8{word-spacing:-10.666667pt;}
.ws7{word-spacing:-10.538667pt;}
.ws4{word-spacing:0.000000pt;}
._a{margin-left:-10.064000pt;}
._23{margin-left:-7.808000pt;}
._b{margin-left:-6.656000pt;}
._4{margin-left:-4.976000pt;}
._3{margin-left:-3.200000pt;}
._2{margin-left:-2.176000pt;}
._0{margin-left:-0.960000pt;}
._1{width:1.226667pt;}
._6{width:2.272000pt;}
._5{width:3.856000pt;}
._16{width:4.906667pt;}
._7{width:5.797333pt;}
._15{width:6.800000pt;}
._1c{width:8.282667pt;}
._1d{width:9.541333pt;}
._9{width:10.986667pt;}
._8{width:11.909333pt;}
._1a{width:13.056000pt;}
._17{width:14.592000pt;}
._18{width:17.125333pt;}
._14{width:18.176000pt;}
._19{width:19.381333pt;}
._11{width:20.544000pt;}
._10{width:21.696000pt;}
._e{width:22.837333pt;}
._f{width:23.888000pt;}
._24{width:25.306667pt;}
._d{width:28.432000pt;}
._c{width:29.488000pt;}
._25{width:30.848000pt;}
._12{width:33.194667pt;}
._13{width:34.112000pt;}
._1f{width:35.264000pt;}
._1e{width:36.213333pt;}
._27{width:53.749333pt;}
._26{width:54.848000pt;}
._22{width:57.226667pt;}
._20{width:58.165333pt;}
._21{width:59.477333pt;}
._28{width:82.240000pt;}
._1b{width:172.800000pt;}
.fs4{font-size:42.666667pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y3b{bottom:6.133333pt;}
.y43{bottom:6.146667pt;}
.y39{bottom:6.400000pt;}
.y6e{bottom:16.786667pt;}
.y36{bottom:16.800000pt;}
.y3e{bottom:27.200000pt;}
.y6d{bottom:27.453333pt;}
.y38{bottom:27.466667pt;}
.y70{bottom:27.493333pt;}
.y42{bottom:27.506667pt;}
.y3f{bottom:37.866667pt;}
.y35{bottom:38.133333pt;}
.y3d{bottom:48.533333pt;}
.y37{bottom:48.546667pt;}
.y41{bottom:48.573333pt;}
.y7{bottom:50.966667pt;}
.y33{bottom:88.300000pt;}
.y69{bottom:93.100000pt;}
.y52{bottom:97.366667pt;}
.y32{bottom:109.366667pt;}
.y68{bottom:116.300000pt;}
.y51{bottom:118.433333pt;}
.ya6{bottom:128.300000pt;}
.y31{bottom:130.433333pt;}
.y50{bottom:139.773333pt;}
.y67{bottom:145.626667pt;}
.ya5{bottom:149.360000pt;}
.y30{bottom:151.800000pt;}
.y4f{bottom:160.866667pt;}
.y66{bottom:166.733333pt;}
.ya4{bottom:170.733333pt;}
.y2f{bottom:172.866667pt;}
.y4e{bottom:181.933333pt;}
.y65{bottom:188.066667pt;}
.ya3{bottom:191.800000pt;}
.y2e{bottom:193.933333pt;}
.y4d{bottom:203.266667pt;}
.y64{bottom:209.133333pt;}
.ya2{bottom:213.133333pt;}
.y2d{bottom:215.266667pt;}
.y4c{bottom:224.333333pt;}
.y63{bottom:230.200000pt;}
.ya1{bottom:234.200000pt;}
.y2c{bottom:236.333333pt;}
.y4b{bottom:245.400000pt;}
.y62{bottom:251.533333pt;}
.ya0{bottom:255.266667pt;}
.y2b{bottom:257.400000pt;}
.y8c{bottom:264.333333pt;}
.y4a{bottom:266.733333pt;}
.y61{bottom:272.600000pt;}
.y9f{bottom:276.600000pt;}
.y2a{bottom:278.733333pt;}
.y8b{bottom:285.666667pt;}
.y49{bottom:287.800000pt;}
.y60{bottom:293.933333pt;}
.y9e{bottom:297.666667pt;}
.y29{bottom:299.800000pt;}
.y8a{bottom:306.773333pt;}
.y48{bottom:308.893333pt;}
.y5f{bottom:315.026667pt;}
.y9d{bottom:318.773333pt;}
.y28{bottom:320.893333pt;}
.y89{bottom:327.840000pt;}
.y47{bottom:330.226667pt;}
.y5e{bottom:336.093333pt;}
.y9c{bottom:339.840000pt;}
.y27{bottom:342.226667pt;}
.y88{bottom:349.173333pt;}
.y46{bottom:351.306667pt;}
.y5d{bottom:357.440000pt;}
.y9b{bottom:362.226667pt;}
.y26{bottom:363.293333pt;}
.y87{bottom:370.760000pt;}
.y45{bottom:372.360000pt;}
.y5c{bottom:378.506667pt;}
.y9a{bottom:383.293333pt;}
.y25{bottom:384.360000pt;}
.y44{bottom:389.426667pt;}
.y86{bottom:392.106667pt;}
.y5b{bottom:399.560000pt;}
.y24{bottom:405.706667pt;}
.y85{bottom:413.440000pt;}
.y5a{bottom:420.893333pt;}
.y23{bottom:426.773333pt;}
.y40{bottom:433.693333pt;}
.y84{bottom:434.773333pt;}
.y59{bottom:441.960000pt;}
.y22{bottom:447.826667pt;}
.y83{bottom:456.133333pt;}
.y58{bottom:463.066667pt;}
.y99{bottom:467.866667pt;}
.y21{bottom:469.200000pt;}
.y82{bottom:477.200000pt;}
.y57{bottom:484.400000pt;}
.y98{bottom:489.200000pt;}
.y20{bottom:490.266667pt;}
.y81{bottom:498.533333pt;}
.y3c{bottom:499.333333pt;}
.y56{bottom:505.466667pt;}
.y97{bottom:510.266667pt;}
.y1f{bottom:511.333333pt;}
.y80{bottom:519.600000pt;}
.y55{bottom:526.533333pt;}
.y96{bottom:531.333333pt;}
.y1e{bottom:532.666667pt;}
.y7f{bottom:540.666667pt;}
.y54{bottom:543.600000pt;}
.y95{bottom:552.666667pt;}
.y1d{bottom:553.733333pt;}
.y7e{bottom:562.000000pt;}
.y3a{bottom:564.666667pt;}
.y53{bottom:566.800000pt;}
.y94{bottom:573.733333pt;}
.y1c{bottom:574.800000pt;}
.y7d{bottom:583.066667pt;}
.y93{bottom:594.800000pt;}
.y1b{bottom:596.133333pt;}
.y7c{bottom:604.173333pt;}
.y34{bottom:608.960000pt;}
.y92{bottom:616.173333pt;}
.y1a{bottom:617.226667pt;}
.y7b{bottom:625.506667pt;}
.y91{bottom:637.226667pt;}
.y19{bottom:638.293333pt;}
.y7a{bottom:646.560000pt;}
.y90{bottom:658.306667pt;}
.y18{bottom:659.626667pt;}
.y79{bottom:667.640000pt;}
.y8f{bottom:679.640000pt;}
.y17{bottom:680.693333pt;}
.y78{bottom:688.960000pt;}
.y8e{bottom:700.706667pt;}
.y16{bottom:702.040000pt;}
.y77{bottom:710.040000pt;}
.y8d{bottom:718.293333pt;}
.y15{bottom:723.093333pt;}
.y76{bottom:731.093333pt;}
.y14{bottom:744.173333pt;}
.y75{bottom:752.466667pt;}
.y13{bottom:765.533333pt;}
.y74{bottom:773.533333pt;}
.y12{bottom:786.600000pt;}
.y73{bottom:794.600000pt;}
.y11{bottom:807.666667pt;}
.y72{bottom:811.666667pt;}
.y10{bottom:829.000000pt;}
.yf{bottom:850.066667pt;}
.y71{bottom:855.933333pt;}
.ye{bottom:871.133333pt;}
.y6f{bottom:879.133333pt;}
.yd{bottom:892.466667pt;}
.yc{bottom:913.560000pt;}
.y6c{bottom:923.440000pt;}
.yb{bottom:934.626667pt;}
.ya{bottom:955.960000pt;}
.y6b{bottom:967.693333pt;}
.y9{bottom:977.026667pt;}
.y6a{bottom:990.893333pt;}
.y8{bottom:998.093333pt;}
.y6{bottom:1016.506667pt;}
.y5{bottom:1034.893333pt;}
.y4{bottom:1051.173333pt;}
.y3{bottom:1067.466667pt;}
.y2{bottom:1083.733333pt;}
.y1{bottom:1100.000000pt;}
.hd{height:21.066667pt;}
.he{height:21.333333pt;}
.hc{height:42.400000pt;}
.ha{height:42.433333pt;}
.h7{height:44.875000pt;}
.h2{height:54.609375pt;}
.h5{height:55.343750pt;}
.h4{height:58.351562pt;}
.h9{height:63.466667pt;}
.hb{height:63.500000pt;}
.h6{height:64.500000pt;}
.h8{height:65.781915pt;}
.h3{height:75.250000pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.wc{width:57.333333pt;}
.wb{width:57.366667pt;}
.wd{width:57.900000pt;}
.w8{width:86.166667pt;}
.w6{width:86.433333pt;}
.w5{width:87.466667pt;}
.w7{width:89.366667pt;}
.w4{width:92.300000pt;}
.w3{width:94.700000pt;}
.w9{width:98.166667pt;}
.wf{width:194.733333pt;}
.w10{width:212.866667pt;}
.we{width:231.000000pt;}
.wa{width:348.626667pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2c{left:2.400000pt;}
.x30{left:3.733333pt;}
.x1b{left:5.600000pt;}
.x1e{left:7.200000pt;}
.x28{left:9.066667pt;}
.x24{left:11.200000pt;}
.x2e{left:12.266667pt;}
.x29{left:14.133333pt;}
.x20{left:15.733333pt;}
.x23{left:17.093333pt;}
.x1f{left:18.666667pt;}
.x37{left:20.266667pt;}
.x32{left:21.600000pt;}
.x27{left:23.466667pt;}
.x31{left:25.053333pt;}
.x2f{left:26.133333pt;}
.x1c{left:27.466667pt;}
.x33{left:30.933333pt;}
.x25{left:32.026667pt;}
.x48{left:34.933333pt;}
.x2d{left:40.000000pt;}
.x42{left:53.866667pt;}
.x45{left:56.000000pt;}
.x47{left:69.060000pt;}
.x3c{left:71.193333pt;}
.x41{left:72.266667pt;}
.xf{left:75.499988pt;}
.x14{left:76.833322pt;}
.x17{left:78.966655pt;}
.x43{left:83.226667pt;}
.x3e{left:84.833333pt;}
.x5{left:87.766655pt;}
.x9{left:89.099988pt;}
.x11{left:93.099988pt;}
.x44{left:94.426667pt;}
.x35{left:95.766667pt;}
.x46{left:103.766667pt;}
.x10{left:121.899988pt;}
.x34{left:127.233322pt;}
.x4a{left:152.826655pt;}
.x1d{left:172.066667pt;}
.x1a{left:173.666655pt;}
.xd{left:176.333322pt;}
.x6{left:192.333322pt;}
.x15{left:236.333322pt;}
.xa{left:250.733322pt;}
.x3d{left:255.533322pt;}
.x21{left:265.440000pt;}
.x13{left:268.106655pt;}
.xe{left:269.973322pt;}
.xc{left:280.373322pt;}
.x8{left:283.026655pt;}
.x16{left:285.439988pt;}
.xb{left:297.693322pt;}
.x3f{left:308.640000pt;}
.x3{left:311.559988pt;}
.x18{left:351.306655pt;}
.x22{left:353.973333pt;}
.x4b{left:359.559988pt;}
.x12{left:367.026655pt;}
.x4{left:385.733322pt;}
.x7{left:396.666655pt;}
.x2{left:406.266655pt;}
.x36{left:426.266667pt;}
.x26{left:441.466667pt;}
.x1{left:453.733322pt;}
.x38{left:484.440000pt;}
.x40{left:504.440000pt;}
.x2a{left:531.906667pt;}
.x39{left:542.840000pt;}
.x49{left:555.626655pt;}
.x3a{left:601.000000pt;}
.x2b{left:619.133333pt;}
.x3b{left:659.400000pt;}
.x19{left:664.466655pt;}
}




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