
    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_4d669253a31f174408071fc2.woff')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_8f86482af3bdb95496c96a8e.woff')format("woff");}.ff2{font-family:ff2;line-height:0.936035;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_54f5e880d99b5704f9049222.woff')format("woff");}.ff3{font-family:ff3;line-height:0.960449;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_e3d4d0c30765449f5615a02e.woff')format("woff");}.ff4{font-family:ff4;line-height:0.935059;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_6e1ab76048c3e237760d4147.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_8787d6aa23069f2cba0cdd30.woff')format("woff");}.ff6{font-family:ff6;line-height:0.758789;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_63d804e88be9a608a5b4f676.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_c12ef97fd810f19e41fd3f1a.woff')format("woff");}.ff8{font-family:ff8;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_8656b36c053398050395f153.woff')format("woff");}.ff9{font-family:ff9;line-height:1.172363;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);}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-0.096000px;}
.ls3{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.120000px;}
.ls6{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.504000px;}
.ls0{letter-spacing:0.600000px;}
.ls5{letter-spacing:1.200000px;}
.ls2{letter-spacing:17.448000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-21.000000px;}
.ws0{word-spacing:-20.904000px;}
.ws4{word-spacing:-16.537500px;}
.ws2{word-spacing:-16.500000px;}
.ws3{word-spacing:-15.900000px;}
.ws6{word-spacing:-15.000000px;}
.ws1{word-spacing:0.000000px;}
._14{margin-left:-3.452250px;}
._2{margin-left:-2.152800px;}
._1{margin-left:-1.074000px;}
._0{width:1.008000px;}
._3{width:2.085600px;}
._a{width:3.260400px;}
._c{width:4.420800px;}
._d{width:5.824800px;}
._15{width:7.375200px;}
._19{width:8.520000px;}
._b{width:9.996000px;}
._4{width:11.322000px;}
._5{width:12.820800px;}
._e{width:13.838400px;}
._10{width:15.172800px;}
._11{width:16.212000px;}
._f{width:17.356800px;}
._6{width:18.784800px;}
._7{width:19.939200px;}
._18{width:23.706000px;}
._17{width:24.982800px;}
._12{width:27.552000px;}
._13{width:28.660800px;}
._1a{width:29.940000px;}
._8{width:31.048800px;}
._9{width:32.119200px;}
._16{width:33.834000px;}
._1c{width:34.998000px;}
._1b{width:36.022800px;}
._1e{width:37.172400px;}
._1d{width:38.493600px;}
._1f{width:39.781200px;}
._20{width:42.232800px;}
._21{width:45.366000px;}
._22{width:80.220000px;}
._23{width:83.493600px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:60.000000px;}
.fs8{font-size:60.150000px;}
.fs6{font-size:63.600000px;}
.fs5{font-size:63.750000px;}
.fs4{font-size:66.000000px;}
.fs3{font-size:66.150000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:81.600000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:7.237500px;}
.y4{bottom:30.900000px;}
.y9a{bottom:44.925000px;}
.y95{bottom:45.900000px;}
.y53{bottom:47.595000px;}
.y68{bottom:49.575000px;}
.y9e{bottom:53.880000px;}
.ya2{bottom:56.025000px;}
.y70{bottom:57.330000px;}
.y4d{bottom:57.450000px;}
.y48{bottom:57.525000px;}
.y99{bottom:60.525000px;}
.y94{bottom:61.500000px;}
.y57{bottom:64.155000px;}
.y52{bottom:64.695000px;}
.y67{bottom:65.475000px;}
.y9d{bottom:69.525000px;}
.ya1{bottom:71.655000px;}
.y76{bottom:72.705000px;}
.y6f{bottom:72.930000px;}
.y5f{bottom:74.130000px;}
.y4c{bottom:74.550000px;}
.y47{bottom:74.655000px;}
.y98{bottom:76.125000px;}
.y93{bottom:77.100000px;}
.y3{bottom:79.837500px;}
.y66{bottom:81.120000px;}
.y56{bottom:81.255000px;}
.y51{bottom:81.780000px;}
.y9c{bottom:84.825000px;}
.ya0{bottom:86.955000px;}
.y6e{bottom:88.245000px;}
.y75{bottom:88.320000px;}
.y5e{bottom:89.730000px;}
.y97{bottom:91.425000px;}
.y4b{bottom:91.650000px;}
.y46{bottom:91.755000px;}
.y92{bottom:92.400000px;}
.y65{bottom:96.405000px;}
.y55{bottom:98.355000px;}
.y50{bottom:98.880000px;}
.y9b{bottom:100.425000px;}
.y9f{bottom:102.555000px;}
.y6d{bottom:103.830000px;}
.y74{bottom:103.905000px;}
.y5d{bottom:105.330000px;}
.y96{bottom:107.025000px;}
.y91{bottom:108.000000px;}
.y4a{bottom:108.750000px;}
.y45{bottom:108.855000px;}
.y64{bottom:112.020000px;}
.y54{bottom:115.455000px;}
.y4f{bottom:115.980000px;}
.y6c{bottom:119.445000px;}
.y73{bottom:119.520000px;}
.y5c{bottom:120.930000px;}
.y49{bottom:125.850000px;}
.y44{bottom:125.955000px;}
.y63{bottom:127.605000px;}
.y4e{bottom:133.080000px;}
.y21{bottom:134.737500px;}
.y72{bottom:134.820000px;}
.y6b{bottom:135.045000px;}
.y5b{bottom:136.230000px;}
.y8e{bottom:142.237500px;}
.y62{bottom:143.205000px;}
.y6a{bottom:150.330000px;}
.y71{bottom:150.405000px;}
.y5a{bottom:151.830000px;}
.y61{bottom:158.520000px;}
.y90{bottom:160.050000px;}
.y69{bottom:165.945000px;}
.y20{bottom:170.775000px;}
.y60{bottom:174.105000px;}
.y8d{bottom:178.575000px;}
.y43{bottom:194.880000px;}
.y1f{bottom:207.075000px;}
.y8c{bottom:214.575000px;}
.y59{bottom:232.950000px;}
.y58{bottom:240.300000px;}
.y1e{bottom:243.375000px;}
.y8b{bottom:250.875000px;}
.y26{bottom:252.375000px;}
.y1d{bottom:279.375000px;}
.y8a{bottom:287.175000px;}
.y42{bottom:288.945000px;}
.y41{bottom:305.445000px;}
.y33{bottom:307.695000px;}
.y39{bottom:309.945000px;}
.y1c{bottom:315.675000px;}
.y2d{bottom:315.750000px;}
.y40{bottom:321.630000px;}
.y89{bottom:323.475000px;}
.y32{bottom:324.795000px;}
.y38{bottom:327.030000px;}
.y2c{bottom:332.850000px;}
.y3f{bottom:337.830000px;}
.y31{bottom:341.880000px;}
.y37{bottom:344.130000px;}
.y2b{bottom:349.950000px;}
.y1b{bottom:352.005000px;}
.y3e{bottom:354.330000px;}
.y30{bottom:358.980000px;}
.y88{bottom:359.505000px;}
.y36{bottom:361.230000px;}
.y2a{bottom:367.050000px;}
.y3d{bottom:370.545000px;}
.y2f{bottom:376.080000px;}
.y35{bottom:378.330000px;}
.y29{bottom:384.150000px;}
.y3c{bottom:386.745000px;}
.y1a{bottom:388.305000px;}
.y2e{bottom:393.195000px;}
.y34{bottom:395.445000px;}
.y87{bottom:395.820000px;}
.y3b{bottom:403.230000px;}
.y3a{bottom:419.475000px;}
.y19{bottom:424.320000px;}
.y86{bottom:432.105000px;}
.y18{bottom:460.620000px;}
.y85{bottom:467.820000px;}
.y28{bottom:487.080000px;}
.y17{bottom:496.905000px;}
.y27{bottom:501.000000px;}
.y84{bottom:504.405000px;}
.y25{bottom:513.150000px;}
.y16{bottom:533.250000px;}
.y83{bottom:540.750000px;}
.y15{bottom:569.250000px;}
.y82{bottom:577.050000px;}
.y14{bottom:605.550000px;}
.y81{bottom:613.350000px;}
.y13{bottom:641.850000px;}
.y80{bottom:649.350000px;}
.y12{bottom:678.195000px;}
.y7f{bottom:685.695000px;}
.y11{bottom:714.195000px;}
.y7e{bottom:721.995000px;}
.y10{bottom:750.495000px;}
.y7d{bottom:758.280000px;}
.yf{bottom:786.795000px;}
.y7c{bottom:794.280000px;}
.ye{bottom:823.080000px;}
.y7b{bottom:830.580000px;}
.yd{bottom:859.125000px;}
.y7a{bottom:866.925000px;}
.yc{bottom:895.425000px;}
.y79{bottom:903.225000px;}
.yb{bottom:931.125000px;}
.y78{bottom:939.225000px;}
.ya5{bottom:958.125000px;}
.y8f{bottom:958.200000px;}
.ya{bottom:968.025000px;}
.y77{bottom:970.425000px;}
.ya4{bottom:994.425000px;}
.y9{bottom:1004.025000px;}
.ya3{bottom:1030.755000px;}
.y8{bottom:1048.455000px;}
.y24{bottom:1066.755000px;}
.y7{bottom:1102.455000px;}
.y23{bottom:1103.070000px;}
.y6{bottom:1138.755000px;}
.y22{bottom:1139.370000px;}
.y2{bottom:1187.100000px;}
.y1{bottom:1211.100000px;}
.h4{height:32.400000px;}
.h13{height:58.886719px;}
.h15{height:59.033936px;}
.h14{height:59.677734px;}
.hd{height:62.419922px;}
.hc{height:62.567139px;}
.hb{height:64.775391px;}
.hf{height:64.922607px;}
.h10{height:65.645508px;}
.he{height:66.515625px;}
.ha{height:66.666797px;}
.h5{height:68.947266px;}
.h6{height:70.664062px;}
.h12{height:72.562500px;}
.h3{height:79.980469px;}
.h7{height:82.441406px;}
.h2{height:84.656250px;}
.h8{height:86.338763px;}
.h16{height:200.100000px;}
.h11{height:260.700000px;}
.h9{height:548.700000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w2{width:45.300000px;}
.w3{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:127.537500px;}
.xf{left:136.574987px;}
.x38{left:138.487487px;}
.x1{left:139.537500px;}
.x37{left:141.487487px;}
.x26{left:144.374987px;}
.x27{left:145.574987px;}
.x35{left:146.587487px;}
.xe{left:149.774987px;}
.x36{left:154.979987px;}
.x10{left:159.674987px;}
.x11{left:169.574987px;}
.x28{left:171.374987px;}
.xa{left:180.675000px;}
.x4a{left:193.124987px;}
.x48{left:199.124987px;}
.x5{left:204.675000px;}
.xb{left:207.675000px;}
.x49{left:214.424987px;}
.x4b{left:219.524987px;}
.x8{left:243.675000px;}
.x16{left:291.074987px;}
.x14{left:296.174987px;}
.x13{left:297.674987px;}
.x15{left:299.774987px;}
.x7{left:301.920000px;}
.x39{left:303.779987px;}
.x3c{left:307.379987px;}
.x3a{left:308.894987px;}
.x12{left:310.274987px;}
.x3b{left:315.194987px;}
.x34{left:321.119987px;}
.x29{left:324.674987px;}
.x2b{left:327.374987px;}
.x2a{left:330.374987px;}
.x17{left:335.774987px;}
.xd{left:347.879987px;}
.x4e{left:361.379987px;}
.x4d{left:365.579987px;}
.x4c{left:374.594987px;}
.x25{left:377.999987px;}
.x47{left:385.320000px;}
.x4f{left:405.779987px;}
.x2{left:414.105000px;}
.x6{left:417.750000px;}
.x9{left:478.350000px;}
.x3d{left:486.404987px;}
.x3e{left:488.849987px;}
.x2f{left:493.874987px;}
.x18{left:499.469987px;}
.x19{left:502.469987px;}
.x3f{left:504.749987px;}
.x2e{left:506.474987px;}
.x2c{left:507.674987px;}
.x40{left:514.649987px;}
.x2d{left:515.774987px;}
.x1a{left:520.454987px;}
.x41{left:527.549987px;}
.x50{left:534.644987px;}
.x1b{left:536.069987px;}
.x1c{left:539.369987px;}
.x51{left:549.329987px;}
.x30{left:559.904987px;}
.x45{left:655.619987px;}
.x44{left:661.349987px;}
.x43{left:671.849987px;}
.x31{left:678.149987px;}
.x42{left:679.349987px;}
.x32{left:681.149987px;}
.x33{left:689.849987px;}
.x53{left:691.244987px;}
.x52{left:693.944987px;}
.x23{left:702.749987px;}
.x1d{left:703.949987px;}
.x22{left:709.049987px;}
.x20{left:710.849987px;}
.x21{left:712.949987px;}
.x24{left:715.049987px;}
.x1f{left:716.249987px;}
.x1e{left:724.649987px;}
.xc{left:822.870000px;}
.x46{left:828.870000px;}
.x4{left:831.900000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.085333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.106667pt;}
.ls6{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.448000pt;}
.ls0{letter-spacing:0.533333pt;}
.ls5{letter-spacing:1.066667pt;}
.ls2{letter-spacing:15.509333pt;}
.ws5{word-spacing:-18.666667pt;}
.ws0{word-spacing:-18.581333pt;}
.ws4{word-spacing:-14.700000pt;}
.ws2{word-spacing:-14.666667pt;}
.ws3{word-spacing:-14.133333pt;}
.ws6{word-spacing:-13.333333pt;}
.ws1{word-spacing:0.000000pt;}
._14{margin-left:-3.068667pt;}
._2{margin-left:-1.913600pt;}
._1{margin-left:-0.954667pt;}
._0{width:0.896000pt;}
._3{width:1.853867pt;}
._a{width:2.898133pt;}
._c{width:3.929600pt;}
._d{width:5.177600pt;}
._15{width:6.555733pt;}
._19{width:7.573333pt;}
._b{width:8.885333pt;}
._4{width:10.064000pt;}
._5{width:11.396267pt;}
._e{width:12.300800pt;}
._10{width:13.486933pt;}
._11{width:14.410667pt;}
._f{width:15.428267pt;}
._6{width:16.697600pt;}
._7{width:17.723733pt;}
._18{width:21.072000pt;}
._17{width:22.206933pt;}
._12{width:24.490667pt;}
._13{width:25.476267pt;}
._1a{width:26.613333pt;}
._8{width:27.598933pt;}
._9{width:28.550400pt;}
._16{width:30.074667pt;}
._1c{width:31.109333pt;}
._1b{width:32.020267pt;}
._1e{width:33.042133pt;}
._1d{width:34.216533pt;}
._1f{width:35.361067pt;}
._20{width:37.540267pt;}
._21{width:40.325333pt;}
._22{width:71.306667pt;}
._23{width:74.216533pt;}
.fs7{font-size:53.333333pt;}
.fs8{font-size:53.466667pt;}
.fs6{font-size:56.533333pt;}
.fs5{font-size:56.666667pt;}
.fs4{font-size:58.666667pt;}
.fs3{font-size:58.800000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:72.533333pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:6.433333pt;}
.y4{bottom:27.466667pt;}
.y9a{bottom:39.933333pt;}
.y95{bottom:40.800000pt;}
.y53{bottom:42.306667pt;}
.y68{bottom:44.066667pt;}
.y9e{bottom:47.893333pt;}
.ya2{bottom:49.800000pt;}
.y70{bottom:50.960000pt;}
.y4d{bottom:51.066667pt;}
.y48{bottom:51.133333pt;}
.y99{bottom:53.800000pt;}
.y94{bottom:54.666667pt;}
.y57{bottom:57.026667pt;}
.y52{bottom:57.506667pt;}
.y67{bottom:58.200000pt;}
.y9d{bottom:61.800000pt;}
.ya1{bottom:63.693333pt;}
.y76{bottom:64.626667pt;}
.y6f{bottom:64.826667pt;}
.y5f{bottom:65.893333pt;}
.y4c{bottom:66.266667pt;}
.y47{bottom:66.360000pt;}
.y98{bottom:67.666667pt;}
.y93{bottom:68.533333pt;}
.y3{bottom:70.966667pt;}
.y66{bottom:72.106667pt;}
.y56{bottom:72.226667pt;}
.y51{bottom:72.693333pt;}
.y9c{bottom:75.400000pt;}
.ya0{bottom:77.293333pt;}
.y6e{bottom:78.440000pt;}
.y75{bottom:78.506667pt;}
.y5e{bottom:79.760000pt;}
.y97{bottom:81.266667pt;}
.y4b{bottom:81.466667pt;}
.y46{bottom:81.560000pt;}
.y92{bottom:82.133333pt;}
.y65{bottom:85.693333pt;}
.y55{bottom:87.426667pt;}
.y50{bottom:87.893333pt;}
.y9b{bottom:89.266667pt;}
.y9f{bottom:91.160000pt;}
.y6d{bottom:92.293333pt;}
.y74{bottom:92.360000pt;}
.y5d{bottom:93.626667pt;}
.y96{bottom:95.133333pt;}
.y91{bottom:96.000000pt;}
.y4a{bottom:96.666667pt;}
.y45{bottom:96.760000pt;}
.y64{bottom:99.573333pt;}
.y54{bottom:102.626667pt;}
.y4f{bottom:103.093333pt;}
.y6c{bottom:106.173333pt;}
.y73{bottom:106.240000pt;}
.y5c{bottom:107.493333pt;}
.y49{bottom:111.866667pt;}
.y44{bottom:111.960000pt;}
.y63{bottom:113.426667pt;}
.y4e{bottom:118.293333pt;}
.y21{bottom:119.766667pt;}
.y72{bottom:119.840000pt;}
.y6b{bottom:120.040000pt;}
.y5b{bottom:121.093333pt;}
.y8e{bottom:126.433333pt;}
.y62{bottom:127.293333pt;}
.y6a{bottom:133.626667pt;}
.y71{bottom:133.693333pt;}
.y5a{bottom:134.960000pt;}
.y61{bottom:140.906667pt;}
.y90{bottom:142.266667pt;}
.y69{bottom:147.506667pt;}
.y20{bottom:151.800000pt;}
.y60{bottom:154.760000pt;}
.y8d{bottom:158.733333pt;}
.y43{bottom:173.226667pt;}
.y1f{bottom:184.066667pt;}
.y8c{bottom:190.733333pt;}
.y59{bottom:207.066667pt;}
.y58{bottom:213.600000pt;}
.y1e{bottom:216.333333pt;}
.y8b{bottom:223.000000pt;}
.y26{bottom:224.333333pt;}
.y1d{bottom:248.333333pt;}
.y8a{bottom:255.266667pt;}
.y42{bottom:256.840000pt;}
.y41{bottom:271.506667pt;}
.y33{bottom:273.506667pt;}
.y39{bottom:275.506667pt;}
.y1c{bottom:280.600000pt;}
.y2d{bottom:280.666667pt;}
.y40{bottom:285.893333pt;}
.y89{bottom:287.533333pt;}
.y32{bottom:288.706667pt;}
.y38{bottom:290.693333pt;}
.y2c{bottom:295.866667pt;}
.y3f{bottom:300.293333pt;}
.y31{bottom:303.893333pt;}
.y37{bottom:305.893333pt;}
.y2b{bottom:311.066667pt;}
.y1b{bottom:312.893333pt;}
.y3e{bottom:314.960000pt;}
.y30{bottom:319.093333pt;}
.y88{bottom:319.560000pt;}
.y36{bottom:321.093333pt;}
.y2a{bottom:326.266667pt;}
.y3d{bottom:329.373333pt;}
.y2f{bottom:334.293333pt;}
.y35{bottom:336.293333pt;}
.y29{bottom:341.466667pt;}
.y3c{bottom:343.773333pt;}
.y1a{bottom:345.160000pt;}
.y2e{bottom:349.506667pt;}
.y34{bottom:351.506667pt;}
.y87{bottom:351.840000pt;}
.y3b{bottom:358.426667pt;}
.y3a{bottom:372.866667pt;}
.y19{bottom:377.173333pt;}
.y86{bottom:384.093333pt;}
.y18{bottom:409.440000pt;}
.y85{bottom:415.840000pt;}
.y28{bottom:432.960000pt;}
.y17{bottom:441.693333pt;}
.y27{bottom:445.333333pt;}
.y84{bottom:448.360000pt;}
.y25{bottom:456.133333pt;}
.y16{bottom:474.000000pt;}
.y83{bottom:480.666667pt;}
.y15{bottom:506.000000pt;}
.y82{bottom:512.933333pt;}
.y14{bottom:538.266667pt;}
.y81{bottom:545.200000pt;}
.y13{bottom:570.533333pt;}
.y80{bottom:577.200000pt;}
.y12{bottom:602.840000pt;}
.y7f{bottom:609.506667pt;}
.y11{bottom:634.840000pt;}
.y7e{bottom:641.773333pt;}
.y10{bottom:667.106667pt;}
.y7d{bottom:674.026667pt;}
.yf{bottom:699.373333pt;}
.y7c{bottom:706.026667pt;}
.ye{bottom:731.626667pt;}
.y7b{bottom:738.293333pt;}
.yd{bottom:763.666667pt;}
.y7a{bottom:770.600000pt;}
.yc{bottom:795.933333pt;}
.y79{bottom:802.866667pt;}
.yb{bottom:827.666667pt;}
.y78{bottom:834.866667pt;}
.ya5{bottom:851.666667pt;}
.y8f{bottom:851.733333pt;}
.ya{bottom:860.466667pt;}
.y77{bottom:862.600000pt;}
.ya4{bottom:883.933333pt;}
.y9{bottom:892.466667pt;}
.ya3{bottom:916.226667pt;}
.y8{bottom:931.960000pt;}
.y24{bottom:948.226667pt;}
.y7{bottom:979.960000pt;}
.y23{bottom:980.506667pt;}
.y6{bottom:1012.226667pt;}
.y22{bottom:1012.773333pt;}
.y2{bottom:1055.200000pt;}
.y1{bottom:1076.533333pt;}
.h4{height:28.800000pt;}
.h13{height:52.343750pt;}
.h15{height:52.474609pt;}
.h14{height:53.046875pt;}
.hd{height:55.484375pt;}
.hc{height:55.615234pt;}
.hb{height:57.578125pt;}
.hf{height:57.708984pt;}
.h10{height:58.351562pt;}
.he{height:59.125000pt;}
.ha{height:59.259375pt;}
.h5{height:61.286458pt;}
.h6{height:62.812500pt;}
.h12{height:64.500000pt;}
.h3{height:71.093750pt;}
.h7{height:73.281250pt;}
.h2{height:75.250000pt;}
.h8{height:76.745567pt;}
.h16{height:177.866667pt;}
.h11{height:231.733333pt;}
.h9{height:487.733333pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w2{width:40.266667pt;}
.w3{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:113.366667pt;}
.xf{left:121.399988pt;}
.x38{left:123.099988pt;}
.x1{left:124.033333pt;}
.x37{left:125.766655pt;}
.x26{left:128.333322pt;}
.x27{left:129.399988pt;}
.x35{left:130.299988pt;}
.xe{left:133.133322pt;}
.x36{left:137.759988pt;}
.x10{left:141.933322pt;}
.x11{left:150.733322pt;}
.x28{left:152.333322pt;}
.xa{left:160.600000pt;}
.x4a{left:171.666655pt;}
.x48{left:176.999988pt;}
.x5{left:181.933333pt;}
.xb{left:184.600000pt;}
.x49{left:190.599988pt;}
.x4b{left:195.133322pt;}
.x8{left:216.600000pt;}
.x16{left:258.733322pt;}
.x14{left:263.266655pt;}
.x13{left:264.599988pt;}
.x15{left:266.466655pt;}
.x7{left:268.373333pt;}
.x39{left:270.026655pt;}
.x3c{left:273.226655pt;}
.x3a{left:274.573322pt;}
.x12{left:275.799988pt;}
.x3b{left:280.173322pt;}
.x34{left:285.439988pt;}
.x29{left:288.599988pt;}
.x2b{left:290.999988pt;}
.x2a{left:293.666655pt;}
.x17{left:298.466655pt;}
.xd{left:309.226655pt;}
.x4e{left:321.226655pt;}
.x4d{left:324.959988pt;}
.x4c{left:332.973322pt;}
.x25{left:335.999988pt;}
.x47{left:342.506667pt;}
.x4f{left:360.693322pt;}
.x2{left:368.093333pt;}
.x6{left:371.333333pt;}
.x9{left:425.200000pt;}
.x3d{left:432.359988pt;}
.x3e{left:434.533322pt;}
.x2f{left:438.999988pt;}
.x18{left:443.973322pt;}
.x19{left:446.639988pt;}
.x3f{left:448.666655pt;}
.x2e{left:450.199988pt;}
.x2c{left:451.266655pt;}
.x40{left:457.466655pt;}
.x2d{left:458.466655pt;}
.x1a{left:462.626655pt;}
.x41{left:468.933322pt;}
.x50{left:475.239988pt;}
.x1b{left:476.506655pt;}
.x1c{left:479.439988pt;}
.x51{left:488.293322pt;}
.x30{left:497.693322pt;}
.x45{left:582.773322pt;}
.x44{left:587.866655pt;}
.x43{left:597.199988pt;}
.x31{left:602.799988pt;}
.x42{left:603.866655pt;}
.x32{left:605.466655pt;}
.x33{left:613.199988pt;}
.x53{left:614.439988pt;}
.x52{left:616.839988pt;}
.x23{left:624.666655pt;}
.x1d{left:625.733322pt;}
.x22{left:630.266655pt;}
.x20{left:631.866655pt;}
.x21{left:633.733322pt;}
.x24{left:635.599988pt;}
.x1f{left:636.666655pt;}
.x1e{left:644.133322pt;}
.xc{left:731.440000pt;}
.x46{left:736.773333pt;}
.x4{left:739.466667pt;}
}




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