
    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_ee99cb2f99585913a31b7ade.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_2f595d5159f02b3dd0dbd759.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e54cca234496ede9ef9b3ad9.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_6dfeadfbcc5e406b9ebbcdd3.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_25574c7df5612be933797b01.woff')format("woff");}.ff5{font-family:ff5;line-height:1.035156;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_6653eb6f12b3dc4d7ac95014.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_fed4ae3a7d4efc16090cb68c.woff')format("woff");}.ff7{font-family:ff7;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;}
.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;}
.ls8{letter-spacing:-2.724000px;}
.lsc{letter-spacing:-2.016000px;}
.ls3{letter-spacing:-1.482000px;}
.ls9{letter-spacing:-1.476000px;}
.ls5{letter-spacing:-1.128000px;}
.ls4{letter-spacing:-0.972000px;}
.lsb{letter-spacing:-0.112200px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:1.737000px;}
.ls6{letter-spacing:1.776000px;}
.ls0{letter-spacing:2.250000px;}
.ls7{letter-spacing:2.742000px;}
.lsa{letter-spacing:4.500000px;}
.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;}
}
.wsa{word-spacing:-72.000000px;}
.ws5{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.031000px;}
.ws2{word-spacing:-16.875000px;}
.ws6{word-spacing:-16.524000px;}
.ws9{word-spacing:-15.984000px;}
.ws8{word-spacing:-15.142800px;}
.ws0{word-spacing:-14.625000px;}
.ws4{word-spacing:-12.531000px;}
.ws1{word-spacing:-12.204000px;}
.ws7{word-spacing:0.000000px;}
._18{margin-left:-9.172500px;}
._9{margin-left:-8.117550px;}
._4{margin-left:-6.817500px;}
._2{margin-left:-5.535000px;}
._a{margin-left:-3.865500px;}
._5{margin-left:-2.850000px;}
._1{margin-left:-1.552500px;}
._0{width:1.012500px;}
._3{width:2.767500px;}
._6{width:4.068000px;}
._7{width:5.265000px;}
._17{width:6.402000px;}
._8{width:7.585500px;}
._c{width:8.727000px;}
._13{width:9.735000px;}
._14{width:12.610500px;}
._b{width:13.882500px;}
._16{width:16.779000px;}
._d{width:21.507000px;}
._11{width:22.618500px;}
._e{width:26.845500px;}
._12{width:27.862500px;}
._10{width:30.823500px;}
._f{width:31.828500px;}
._15{width:35.487000px;}
._1a{width:122.010000px;}
._1b{width:125.434500px;}
._19{width:127.120500px;}
.fc4{color:transparent;}
.fc1{color:rgb(5,99,193);}
.fc5{color:rgb(34,34,34);}
.fc3{color:rgb(51,51,51);}
.fc2{color:rgb(13,13,13);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.000000px;}
.fs1{font-size:58.500000px;}
.fs0{font-size:67.500000px;}
.fs3{font-size:72.000000px;}
.fs4{font-size:85.650000px;}
.y8d{bottom:-13.530000px;}
.y0{bottom:0.000000px;}
.y68{bottom:4.500000px;}
.y6b{bottom:4.515000px;}
.y63{bottom:4.545000px;}
.y5{bottom:14.625000px;}
.y8c{bottom:20.265000px;}
.y67{bottom:24.750000px;}
.y65{bottom:24.795000px;}
.y84{bottom:30.390000px;}
.y4{bottom:31.500000px;}
.y87{bottom:40.545000px;}
.y8b{bottom:41.670000px;}
.y3{bottom:48.420000px;}
.y7{bottom:50.670000px;}
.y83{bottom:51.795000px;}
.yb{bottom:57.412500px;}
.y86{bottom:61.920000px;}
.y8a{bottom:64.170000px;}
.y2{bottom:66.420000px;}
.y6{bottom:68.670000px;}
.y82{bottom:73.170000px;}
.ya{bottom:77.662500px;}
.y89{bottom:85.575000px;}
.y85{bottom:95.700000px;}
.y81{bottom:106.950000px;}
.y88{bottom:119.370000px;}
.y62{bottom:126.112500px;}
.y7f{bottom:132.862500px;}
.y2a{bottom:140.737500px;}
.y47{bottom:145.237500px;}
.ya1{bottom:149.737500px;}
.y7e{bottom:163.230000px;}
.y61{bottom:168.900000px;}
.ya0{bottom:171.150000px;}
.y29{bottom:172.275000px;}
.y46{bottom:188.025000px;}
.y9f{bottom:193.650000px;}
.y7d{bottom:194.775000px;}
.y28{bottom:203.775000px;}
.y60{bottom:211.695000px;}
.y45{bottom:218.445000px;}
.y7c{bottom:226.320000px;}
.y9e{bottom:228.570000px;}
.y27{bottom:234.195000px;}
.y5f{bottom:242.070000px;}
.y44{bottom:248.850000px;}
.y9d{bottom:251.100000px;}
.y7b{bottom:262.350000px;}
.y26{bottom:265.725000px;}
.y5e{bottom:272.475000px;}
.y43{bottom:280.350000px;}
.y7a{bottom:296.130000px;}
.y80{bottom:298.380000px;}
.y25{bottom:299.505000px;}
.y5d{bottom:304.005000px;}
.y42{bottom:310.755000px;}
.y9c{bottom:317.505000px;}
.y79{bottom:329.880000px;}
.y24{bottom:335.550000px;}
.y41{bottom:342.300000px;}
.y9b{bottom:352.425000px;}
.y78{bottom:363.675000px;}
.y5c{bottom:365.925000px;}
.y23{bottom:369.300000px;}
.y40{bottom:386.220000px;}
.y5b{bottom:397.455000px;}
.y22{bottom:412.080000px;}
.y3f{bottom:416.625000px;}
.y9a{bottom:427.875000px;}
.y5a{bottom:431.250000px;}
.y21{bottom:441.375000px;}
.y3e{bottom:447.000000px;}
.y99{bottom:458.280000px;}
.y77{bottom:465.030000px;}
.y59{bottom:476.295000px;}
.y3d{bottom:478.530000px;}
.y20{bottom:486.420000px;}
.y98{bottom:489.795000px;}
.y76{bottom:506.700000px;}
.y3c{bottom:510.075000px;}
.y1f{bottom:515.700000px;}
.y58{bottom:519.075000px;}
.y97{bottom:520.200000px;}
.y75{bottom:537.075000px;}
.y3b{bottom:540.495000px;}
.y1e{bottom:547.245000px;}
.y96{bottom:551.730000px;}
.y57{bottom:561.855000px;}
.y3a{bottom:571.980000px;}
.y1d{bottom:578.730000px;}
.y74{bottom:581.025000px;}
.y95{bottom:582.150000px;}
.y56{bottom:592.275000px;}
.y1c{bottom:609.150000px;}
.y73{bottom:611.400000px;}
.y94{bottom:613.650000px;}
.y39{bottom:615.900000px;}
.y55{bottom:622.695000px;}
.y1b{bottom:640.695000px;}
.y72{bottom:641.820000px;}
.y93{bottom:645.195000px;}
.y38{bottom:646.320000px;}
.y54{bottom:654.195000px;}
.y1a{bottom:671.100000px;}
.y37{bottom:676.725000px;}
.y92{bottom:678.975000px;}
.y71{bottom:686.850000px;}
.y53{bottom:698.100000px;}
.y19{bottom:702.600000px;}
.y36{bottom:707.130000px;}
.y70{bottom:716.145000px;}
.y91{bottom:722.895000px;}
.y52{bottom:728.505000px;}
.y18{bottom:734.130000px;}
.y35{bottom:737.505000px;}
.y6f{bottom:747.675000px;}
.y17{bottom:764.550000px;}
.y90{bottom:766.800000px;}
.y34{bottom:767.925000px;}
.y51{bottom:772.425000px;}
.y6e{bottom:778.050000px;}
.y16{bottom:796.080000px;}
.y50{bottom:802.830000px;}
.y33{bottom:809.580000px;}
.y15{bottom:826.455000px;}
.y4f{bottom:833.250000px;}
.ya7{bottom:836.625000px;}
.y32{bottom:840.000000px;}
.y6d{bottom:841.125000px;}
.y14{bottom:861.375000px;}
.y4e{bottom:864.750000px;}
.y31{bottom:870.420000px;}
.y6c{bottom:877.170000px;}
.y6a{bottom:892.905000px;}
.y13{bottom:897.420000px;}
.y30{bottom:901.920000px;}
.y4d{bottom:908.670000px;}
.y69{bottom:913.200000px;}
.y12{bottom:931.200000px;}
.y2f{bottom:932.325000px;}
.ya6{bottom:933.450000px;}
.y4c{bottom:939.075000px;}
.y11{bottom:950.325000px;}
.y66{bottom:953.745000px;}
.y2e{bottom:963.870000px;}
.ya5{bottom:967.245000px;}
.y4b{bottom:969.495000px;}
.y10{bottom:971.745000px;}
.ya4{bottom:989.745000px;}
.yf{bottom:991.995000px;}
.y64{bottom:994.230000px;}
.y2d{bottom:995.400000px;}
.y4a{bottom:1001.025000px;}
.y8f{bottom:1007.775000px;}
.ye{bottom:1008.900000px;}
.ya3{bottom:1024.650000px;}
.y49{bottom:1034.775000px;}
.y8e{bottom:1038.195000px;}
.y2c{bottom:1039.320000px;}
.yd{bottom:1040.445000px;}
.ya2{bottom:1047.195000px;}
.yc{bottom:1067.445000px;}
.y2b{bottom:1068.570000px;}
.y48{bottom:1070.820000px;}
.y9{bottom:1091.100000px;}
.y8{bottom:1111.350000px;}
.y1{bottom:1128.255000px;}
.hc{height:20.287500px;}
.he{height:40.485000px;}
.hd{height:40.537500px;}
.h6{height:57.414551px;}
.h4{height:58.957031px;}
.h9{height:60.128782px;}
.h3{height:67.137451px;}
.ha{height:69.114990px;}
.h7{height:70.664062px;}
.h5{height:71.613281px;}
.hb{height:72.562500px;}
.h2{height:82.200000px;}
.h8{height:86.319141px;}
.hf{height:135.112500px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w7{width:121.650000px;}
.w4{width:225.270000px;}
.w6{width:225.300000px;}
.w5{width:226.425000px;}
.w2{width:265.830000px;}
.w1{width:415.650000px;}
.w3{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:7.875000px;}
.x11{left:9.030000px;}
.x19{left:10.155000px;}
.x18{left:12.405000px;}
.x1e{left:14.625000px;}
.x22{left:20.280000px;}
.x1d{left:21.375000px;}
.x1a{left:22.530000px;}
.x1f{left:27.030000px;}
.x24{left:28.170000px;}
.x16{left:30.412500px;}
.x14{left:31.537500px;}
.x1c{left:32.655000px;}
.x15{left:39.412500px;}
.x23{left:41.700000px;}
.x20{left:59.685000px;}
.x1{left:108.150000px;}
.x13{left:110.400000px;}
.xb{left:139.687487px;}
.x27{left:144.187487px;}
.x5{left:147.562487px;}
.xf{left:150.929987px;}
.xc{left:203.894987px;}
.x9{left:238.799987px;}
.x17{left:270.345000px;}
.xe{left:319.904987px;}
.x10{left:333.420000px;}
.x8{left:363.824987px;}
.x6{left:371.744987px;}
.xd{left:373.994987px;}
.x25{left:379.619987px;}
.xa{left:396.524987px;}
.x26{left:399.899987px;}
.x1b{left:430.320000px;}
.x4{left:439.319987px;}
.x7{left:447.194987px;}
.x3{left:523.800000px;}
.x12{left:559.845000px;}
.x21{left:590.250000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-2.421333pt;}
.lsc{letter-spacing:-1.792000pt;}
.ls3{letter-spacing:-1.317333pt;}
.ls9{letter-spacing:-1.312000pt;}
.ls5{letter-spacing:-1.002667pt;}
.ls4{letter-spacing:-0.864000pt;}
.lsb{letter-spacing:-0.099733pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:1.544000pt;}
.ls6{letter-spacing:1.578667pt;}
.ls0{letter-spacing:2.000000pt;}
.ls7{letter-spacing:2.437333pt;}
.lsa{letter-spacing:4.000000pt;}
.wsa{word-spacing:-64.000000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.138667pt;}
.ws2{word-spacing:-15.000000pt;}
.ws6{word-spacing:-14.688000pt;}
.ws9{word-spacing:-14.208000pt;}
.ws8{word-spacing:-13.460267pt;}
.ws0{word-spacing:-13.000000pt;}
.ws4{word-spacing:-11.138667pt;}
.ws1{word-spacing:-10.848000pt;}
.ws7{word-spacing:0.000000pt;}
._18{margin-left:-8.153333pt;}
._9{margin-left:-7.215600pt;}
._4{margin-left:-6.060000pt;}
._2{margin-left:-4.920000pt;}
._a{margin-left:-3.436000pt;}
._5{margin-left:-2.533333pt;}
._1{margin-left:-1.380000pt;}
._0{width:0.900000pt;}
._3{width:2.460000pt;}
._6{width:3.616000pt;}
._7{width:4.680000pt;}
._17{width:5.690667pt;}
._8{width:6.742667pt;}
._c{width:7.757333pt;}
._13{width:8.653333pt;}
._14{width:11.209333pt;}
._b{width:12.340000pt;}
._16{width:14.914667pt;}
._d{width:19.117333pt;}
._11{width:20.105333pt;}
._e{width:23.862667pt;}
._12{width:24.766667pt;}
._10{width:27.398667pt;}
._f{width:28.292000pt;}
._15{width:31.544000pt;}
._1a{width:108.453333pt;}
._1b{width:111.497333pt;}
._19{width:112.996000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:52.000000pt;}
.fs0{font-size:60.000000pt;}
.fs3{font-size:64.000000pt;}
.fs4{font-size:76.133333pt;}
.y8d{bottom:-12.026667pt;}
.y0{bottom:0.000000pt;}
.y68{bottom:4.000000pt;}
.y6b{bottom:4.013333pt;}
.y63{bottom:4.040000pt;}
.y5{bottom:13.000000pt;}
.y8c{bottom:18.013333pt;}
.y67{bottom:22.000000pt;}
.y65{bottom:22.040000pt;}
.y84{bottom:27.013333pt;}
.y4{bottom:28.000000pt;}
.y87{bottom:36.040000pt;}
.y8b{bottom:37.040000pt;}
.y3{bottom:43.040000pt;}
.y7{bottom:45.040000pt;}
.y83{bottom:46.040000pt;}
.yb{bottom:51.033333pt;}
.y86{bottom:55.040000pt;}
.y8a{bottom:57.040000pt;}
.y2{bottom:59.040000pt;}
.y6{bottom:61.040000pt;}
.y82{bottom:65.040000pt;}
.ya{bottom:69.033333pt;}
.y89{bottom:76.066667pt;}
.y85{bottom:85.066667pt;}
.y81{bottom:95.066667pt;}
.y88{bottom:106.106667pt;}
.y62{bottom:112.100000pt;}
.y7f{bottom:118.100000pt;}
.y2a{bottom:125.100000pt;}
.y47{bottom:129.100000pt;}
.ya1{bottom:133.100000pt;}
.y7e{bottom:145.093333pt;}
.y61{bottom:150.133333pt;}
.ya0{bottom:152.133333pt;}
.y29{bottom:153.133333pt;}
.y46{bottom:167.133333pt;}
.y9f{bottom:172.133333pt;}
.y7d{bottom:173.133333pt;}
.y28{bottom:181.133333pt;}
.y60{bottom:188.173333pt;}
.y45{bottom:194.173333pt;}
.y7c{bottom:201.173333pt;}
.y9e{bottom:203.173333pt;}
.y27{bottom:208.173333pt;}
.y5f{bottom:215.173333pt;}
.y44{bottom:221.200000pt;}
.y9d{bottom:223.200000pt;}
.y7b{bottom:233.200000pt;}
.y26{bottom:236.200000pt;}
.y5e{bottom:242.200000pt;}
.y43{bottom:249.200000pt;}
.y7a{bottom:263.226667pt;}
.y80{bottom:265.226667pt;}
.y25{bottom:266.226667pt;}
.y5d{bottom:270.226667pt;}
.y42{bottom:276.226667pt;}
.y9c{bottom:282.226667pt;}
.y79{bottom:293.226667pt;}
.y24{bottom:298.266667pt;}
.y41{bottom:304.266667pt;}
.y9b{bottom:313.266667pt;}
.y78{bottom:323.266667pt;}
.y5c{bottom:325.266667pt;}
.y23{bottom:328.266667pt;}
.y40{bottom:343.306667pt;}
.y5b{bottom:353.293333pt;}
.y22{bottom:366.293333pt;}
.y3f{bottom:370.333333pt;}
.y9a{bottom:380.333333pt;}
.y5a{bottom:383.333333pt;}
.y21{bottom:392.333333pt;}
.y3e{bottom:397.333333pt;}
.y99{bottom:407.360000pt;}
.y77{bottom:413.360000pt;}
.y59{bottom:423.373333pt;}
.y3d{bottom:425.360000pt;}
.y20{bottom:432.373333pt;}
.y98{bottom:435.373333pt;}
.y76{bottom:450.400000pt;}
.y3c{bottom:453.400000pt;}
.y1f{bottom:458.400000pt;}
.y58{bottom:461.400000pt;}
.y97{bottom:462.400000pt;}
.y75{bottom:477.400000pt;}
.y3b{bottom:480.440000pt;}
.y1e{bottom:486.440000pt;}
.y96{bottom:490.426667pt;}
.y57{bottom:499.426667pt;}
.y3a{bottom:508.426667pt;}
.y1d{bottom:514.426667pt;}
.y74{bottom:516.466667pt;}
.y95{bottom:517.466667pt;}
.y56{bottom:526.466667pt;}
.y1c{bottom:541.466667pt;}
.y73{bottom:543.466667pt;}
.y94{bottom:545.466667pt;}
.y39{bottom:547.466667pt;}
.y55{bottom:553.506667pt;}
.y1b{bottom:569.506667pt;}
.y72{bottom:570.506667pt;}
.y93{bottom:573.506667pt;}
.y38{bottom:574.506667pt;}
.y54{bottom:581.506667pt;}
.y1a{bottom:596.533333pt;}
.y37{bottom:601.533333pt;}
.y92{bottom:603.533333pt;}
.y71{bottom:610.533333pt;}
.y53{bottom:620.533333pt;}
.y19{bottom:624.533333pt;}
.y36{bottom:628.560000pt;}
.y70{bottom:636.573333pt;}
.y91{bottom:642.573333pt;}
.y52{bottom:647.560000pt;}
.y18{bottom:652.560000pt;}
.y35{bottom:655.560000pt;}
.y6f{bottom:664.600000pt;}
.y17{bottom:679.600000pt;}
.y90{bottom:681.600000pt;}
.y34{bottom:682.600000pt;}
.y51{bottom:686.600000pt;}
.y6e{bottom:691.600000pt;}
.y16{bottom:707.626667pt;}
.y50{bottom:713.626667pt;}
.y33{bottom:719.626667pt;}
.y15{bottom:734.626667pt;}
.y4f{bottom:740.666667pt;}
.ya7{bottom:743.666667pt;}
.y32{bottom:746.666667pt;}
.y6d{bottom:747.666667pt;}
.y14{bottom:765.666667pt;}
.y4e{bottom:768.666667pt;}
.y31{bottom:773.706667pt;}
.y6c{bottom:779.706667pt;}
.y6a{bottom:793.693333pt;}
.y13{bottom:797.706667pt;}
.y30{bottom:801.706667pt;}
.y4d{bottom:807.706667pt;}
.y69{bottom:811.733333pt;}
.y12{bottom:827.733333pt;}
.y2f{bottom:828.733333pt;}
.ya6{bottom:829.733333pt;}
.y4c{bottom:834.733333pt;}
.y11{bottom:844.733333pt;}
.y66{bottom:847.773333pt;}
.y2e{bottom:856.773333pt;}
.ya5{bottom:859.773333pt;}
.y4b{bottom:861.773333pt;}
.y10{bottom:863.773333pt;}
.ya4{bottom:879.773333pt;}
.yf{bottom:881.773333pt;}
.y64{bottom:883.760000pt;}
.y2d{bottom:884.800000pt;}
.y4a{bottom:889.800000pt;}
.y8f{bottom:895.800000pt;}
.ye{bottom:896.800000pt;}
.ya3{bottom:910.800000pt;}
.y49{bottom:919.800000pt;}
.y8e{bottom:922.840000pt;}
.y2c{bottom:923.840000pt;}
.yd{bottom:924.840000pt;}
.ya2{bottom:930.840000pt;}
.yc{bottom:948.840000pt;}
.y2b{bottom:949.840000pt;}
.y48{bottom:951.840000pt;}
.y9{bottom:969.866667pt;}
.y8{bottom:987.866667pt;}
.y1{bottom:1002.893333pt;}
.hc{height:18.033333pt;}
.he{height:35.986667pt;}
.hd{height:36.033333pt;}
.h6{height:51.035156pt;}
.h4{height:52.406250pt;}
.h9{height:53.447806pt;}
.h3{height:59.677734pt;}
.ha{height:61.435547pt;}
.h7{height:62.812500pt;}
.h5{height:63.656250pt;}
.hb{height:64.500000pt;}
.h2{height:73.066667pt;}
.h8{height:76.728125pt;}
.hf{height:120.100000pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w7{width:108.133333pt;}
.w4{width:200.240000pt;}
.w6{width:200.266667pt;}
.w5{width:201.266667pt;}
.w2{width:236.293333pt;}
.w1{width:369.466667pt;}
.w3{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.000000pt;}
.x11{left:8.026667pt;}
.x19{left:9.026667pt;}
.x18{left:11.026667pt;}
.x1e{left:13.000000pt;}
.x22{left:18.026667pt;}
.x1d{left:19.000000pt;}
.x1a{left:20.026667pt;}
.x1f{left:24.026667pt;}
.x24{left:25.040000pt;}
.x16{left:27.033333pt;}
.x14{left:28.033333pt;}
.x1c{left:29.026667pt;}
.x15{left:35.033333pt;}
.x23{left:37.066667pt;}
.x20{left:53.053333pt;}
.x1{left:96.133333pt;}
.x13{left:98.133333pt;}
.xb{left:124.166655pt;}
.x27{left:128.166655pt;}
.x5{left:131.166655pt;}
.xf{left:134.159988pt;}
.xc{left:181.239988pt;}
.x9{left:212.266655pt;}
.x17{left:240.306667pt;}
.xe{left:284.359988pt;}
.x10{left:296.373333pt;}
.x8{left:323.399988pt;}
.x6{left:330.439988pt;}
.xd{left:332.439988pt;}
.x25{left:337.439988pt;}
.xa{left:352.466655pt;}
.x26{left:355.466655pt;}
.x1b{left:382.506667pt;}
.x4{left:390.506655pt;}
.x7{left:397.506655pt;}
.x3{left:465.600000pt;}
.x12{left:497.640000pt;}
.x21{left:524.666667pt;}
}




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