
    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_517c24d0ae5685f8e321312b.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_cc3981ead4827e9e13c80daf.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_8abd648a7771e11c4521aee3.woff')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_802af7f51771f9c6d994c9d5.woff')format("woff");}.ff4{font-family:ff4;line-height:1.040039;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_08185e0fb18048bc7dbc934b.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_fd8e547ab614e7549f59ea94.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_6fcb2f5d817d77a2d7fa6b0a.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_d1be96bfc09e84662889c3fd.woff')format("woff");}.ff8{font-family:ff8;line-height:1.084961;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_f431beccf71a095a882de645.woff')format("woff");}.ff9{font-family:ff9;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);}
.v2{vertical-align:-87.840000px;}
.v1{vertical-align:-82.800000px;}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-0.900000px;}
.ls20{letter-spacing:-0.774000px;}
.ls16{letter-spacing:-0.540000px;}
.ls38{letter-spacing:-0.378600px;}
.ls31{letter-spacing:-0.360000px;}
.ls14{letter-spacing:-0.180000px;}
.ls1d{letter-spacing:-0.037440px;}
.ls1e{letter-spacing:-0.018720px;}
.ls3{letter-spacing:0.000000px;}
.ls2b{letter-spacing:0.028080px;}
.ls37{letter-spacing:0.037440px;}
.ls1f{letter-spacing:0.053280px;}
.ls18{letter-spacing:0.134640px;}
.ls2a{letter-spacing:0.170640px;}
.lsa{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.252720px;}
.ls1c{letter-spacing:0.259920px;}
.ls32{letter-spacing:0.350400px;}
.ls1{letter-spacing:0.360000px;}
.ls34{letter-spacing:0.504000px;}
.ls27{letter-spacing:0.558720px;}
.ls3b{letter-spacing:0.720000px;}
.ls15{letter-spacing:0.828000px;}
.ls2{letter-spacing:2.700000px;}
.ls1b{letter-spacing:4.860000px;}
.ls8{letter-spacing:6.660000px;}
.ls4{letter-spacing:7.380000px;}
.ls25{letter-spacing:7.740000px;}
.lsd{letter-spacing:8.460000px;}
.ls2c{letter-spacing:9.180000px;}
.ls1a{letter-spacing:9.900000px;}
.ls2e{letter-spacing:12.060000px;}
.ls5{letter-spacing:13.140000px;}
.ls6{letter-spacing:13.860000px;}
.ls11{letter-spacing:14.220000px;}
.ls3d{letter-spacing:14.400000px;}
.ls7{letter-spacing:14.580000px;}
.lse{letter-spacing:15.660000px;}
.ls19{letter-spacing:17.820000px;}
.ls23{letter-spacing:18.540000px;}
.ls24{letter-spacing:21.420000px;}
.ls36{letter-spacing:21.540000px;}
.ls17{letter-spacing:22.116000px;}
.ls2f{letter-spacing:22.140000px;}
.lsc{letter-spacing:22.860000px;}
.ls10{letter-spacing:23.580000px;}
.ls29{letter-spacing:25.020000px;}
.ls2d{letter-spacing:28.080000px;}
.ls30{letter-spacing:29.340000px;}
.ls3e{letter-spacing:29.520000px;}
.ls22{letter-spacing:32.940000px;}
.ls3a{letter-spacing:33.984000px;}
.ls3c{letter-spacing:35.280000px;}
.ls28{letter-spacing:42.797280px;}
.ls0{letter-spacing:43.200000px;}
.ls35{letter-spacing:50.940000px;}
.ls33{letter-spacing:55.980000px;}
.ls12{letter-spacing:70.020000px;}
.ls13{letter-spacing:70.716000px;}
.ls26{letter-spacing:76.140000px;}
.lsf{letter-spacing:79.020000px;}
.ls21{letter-spacing:191.484000px;}
.ls39{letter-spacing:1098.480000px;}
.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;}
}
.ws0{word-spacing:-21.420000px;}
.wsc{word-spacing:-21.410400px;}
.ws5{word-spacing:-21.312720px;}
.wsd{word-spacing:-21.097440px;}
.ws3{word-spacing:-21.060000px;}
.ws8{word-spacing:-21.041280px;}
.ws7{word-spacing:-21.022560px;}
.wsb{word-spacing:-20.880000px;}
.ws1{word-spacing:-18.000000px;}
.ws6{word-spacing:-15.300000px;}
.ws9{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.166000px;}
.ws2{word-spacing:0.000000px;}
._27{margin-left:-4.480560px;}
._1f{margin-left:-3.145440px;}
._0{margin-left:-1.347840px;}
._1{width:1.010880px;}
._4{width:2.356800px;}
._7{width:3.959280px;}
._6{width:4.970160px;}
._18{width:6.065280px;}
._1e{width:7.069680px;}
._16{width:8.592480px;}
._17{width:9.644880px;}
._c{width:11.372400px;}
._5{width:13.057200px;}
._13{width:14.152320px;}
._3{width:15.359760px;}
._2{width:16.614000px;}
._11{width:17.699760px;}
._12{width:19.459440px;}
._1a{width:22.070880px;}
._15{width:23.250240px;}
._29{width:24.261120px;}
._b{width:25.272000px;}
._a{width:26.956800px;}
._e{width:28.388880px;}
._d{width:29.484000px;}
._8{width:30.747600px;}
._1c{width:32.237040px;}
._1b{width:33.864480px;}
._14{width:35.212320px;}
._1d{width:36.391680px;}
._19{width:37.402560px;}
._32{width:39.312000px;}
._20{width:40.519440px;}
._21{width:41.530320px;}
._24{width:42.709680px;}
._9{width:44.226000px;}
._2a{width:47.848320px;}
._2f{width:49.792320px;}
._2b{width:50.960400px;}
._31{width:52.060320px;}
._30{width:53.408160px;}
._2e{width:55.693200px;}
._2c{width:60.231600px;}
._f{width:61.916400px;}
._10{width:63.230880px;}
._25{width:69.171120px;}
._26{width:70.638960px;}
._2d{width:75.920880px;}
._23{width:78.105600px;}
._22{width:79.711680px;}
._28{width:191.484000px;}
.fc5{color:transparent;}
.fc6{color:rgb(0,0,255);}
.fc4{color:rgb(31,56,100);}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs2{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y4{bottom:12.240000px;}
.y3{bottom:23.976000px;}
.y2{bottom:31.176000px;}
.y54{bottom:77.616000px;}
.y60{bottom:82.836000px;}
.y63{bottom:83.916000px;}
.y2a{bottom:84.996000px;}
.y53{bottom:94.896000px;}
.y5a{bottom:100.116000px;}
.y62{bottom:111.636000px;}
.y52{bottom:112.176000px;}
.y29{bottom:112.896000px;}
.y59{bottom:117.396000px;}
.y51{bottom:129.276000px;}
.y58{bottom:130.716000px;}
.y61{bottom:139.356000px;}
.y28{bottom:140.616000px;}
.y50{bottom:146.556000px;}
.y4f{bottom:163.830000px;}
.y5f{bottom:167.250000px;}
.y27{bottom:168.330000px;}
.y4e{bottom:181.110000px;}
.y4d{bottom:186.330000px;}
.y5e{bottom:194.970000px;}
.y26{bottom:196.230000px;}
.y4c{bottom:198.390000px;}
.y4b{bottom:203.610000px;}
.y4a{bottom:216.930000px;}
.y57{bottom:222.690000px;}
.y25{bottom:223.950000px;}
.y56{bottom:250.410000px;}
.y24{bottom:251.670000px;}
.y49{bottom:278.310000px;}
.y23{bottom:279.390000px;}
.y48{bottom:306.075000px;}
.y22{bottom:307.335000px;}
.y47{bottom:333.795000px;}
.y21{bottom:335.055000px;}
.y46{bottom:361.695000px;}
.y20{bottom:362.775000px;}
.y74{bottom:376.455000px;}
.y44{bottom:389.415000px;}
.y1f{bottom:390.495000px;}
.y45{bottom:396.975000px;}
.y73{bottom:397.155000px;}
.y43{bottom:417.135000px;}
.y72{bottom:417.855000px;}
.y1e{bottom:418.395000px;}
.y71{bottom:438.555000px;}
.y42{bottom:444.855000px;}
.y1d{bottom:446.115000px;}
.y5d{bottom:452.415000px;}
.y70{bottom:459.255000px;}
.y41{bottom:472.755000px;}
.y1c{bottom:473.835000px;}
.y6f{bottom:479.955000px;}
.y40{bottom:500.475000px;}
.y6e{bottom:500.655000px;}
.y1b{bottom:501.735000px;}
.y6d{bottom:521.355000px;}
.y3f{bottom:528.195000px;}
.y1a{bottom:529.455000px;}
.y6c{bottom:542.055000px;}
.y3e{bottom:555.915000px;}
.y19{bottom:557.175000px;}
.y6b{bottom:562.755000px;}
.y6a{bottom:583.485000px;}
.y3d{bottom:583.845000px;}
.y18{bottom:584.925000px;}
.y69{bottom:604.185000px;}
.y3c{bottom:611.565000px;}
.y17{bottom:612.825000px;}
.y5c{bottom:619.125000px;}
.y68{bottom:624.885000px;}
.y3b{bottom:639.285000px;}
.y16{bottom:640.545000px;}
.y67{bottom:645.585000px;}
.y66{bottom:666.285000px;}
.y3a{bottom:667.185000px;}
.y15{bottom:668.265000px;}
.y65{bottom:686.985000px;}
.y39{bottom:694.905000px;}
.y14{bottom:696.165000px;}
.y38{bottom:722.625000px;}
.y13{bottom:723.885000px;}
.y64{bottom:729.645000px;}
.y37{bottom:750.345000px;}
.y12{bottom:751.605000px;}
.y36{bottom:778.245000px;}
.y11{bottom:779.325000px;}
.y5b{bottom:785.805000px;}
.y35{bottom:805.965000px;}
.y10{bottom:807.225000px;}
.y34{bottom:833.685000px;}
.yf{bottom:834.945000px;}
.y33{bottom:861.630000px;}
.ye{bottom:862.710000px;}
.y32{bottom:889.350000px;}
.yd{bottom:890.610000px;}
.yc{bottom:914.190000px;}
.y31{bottom:917.070000px;}
.y30{bottom:944.790000px;}
.yb{bottom:955.410000px;}
.y2e{bottom:972.690000px;}
.ya{bottom:976.110000px;}
.y2f{bottom:980.250000px;}
.y9{bottom:996.810000px;}
.y2d{bottom:1000.410000px;}
.y8{bottom:1017.510000px;}
.y2c{bottom:1028.130000px;}
.y55{bottom:1035.690000px;}
.y7{bottom:1038.210000px;}
.y2b{bottom:1055.850000px;}
.y6{bottom:1059.630000px;}
.y5{bottom:1083.750000px;}
.y1{bottom:1190.160000px;}
.h3{height:31.860000px;}
.h9{height:38.158594px;}
.hd{height:52.971680px;}
.h8{height:52.998047px;}
.ha{height:58.651172px;}
.h7{height:59.066719px;}
.hb{height:69.432187px;}
.h6{height:70.628906px;}
.h10{height:70.664062px;}
.h5{height:72.562500px;}
.hf{height:74.004654px;}
.hc{height:82.635820px;}
.h2{height:82.676953px;}
.h4{height:84.898125px;}
.he{height:86.585445px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:75.816000px;}
.w4{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:27.360000px;}
.x1{left:84.959987px;}
.x10{left:89.855987px;}
.x1b{left:117.035987px;}
.xa{left:137.915987px;}
.x4{left:162.029987px;}
.xd{left:241.769973px;}
.xe{left:248.609987px;}
.x19{left:264.629973px;}
.x1a{left:271.469987px;}
.x5{left:297.434987px;}
.xf{left:301.034987px;}
.x8{left:303.734987px;}
.x9{left:319.394987px;}
.x7{left:356.474987px;}
.x2{left:409.035000px;}
.x6{left:446.474987px;}
.x15{left:582.584973px;}
.x16{left:589.424987px;}
.x13{left:682.349973px;}
.x14{left:689.189987px;}
.x11{left:713.489973px;}
.x17{left:716.909973px;}
.x12{left:720.329987px;}
.x18{left:723.749987px;}
.xb{left:796.109973px;}
.xc{left:802.949987px;}
@media print{
.v2{vertical-align:-78.080000pt;}
.v1{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.800000pt;}
.ls20{letter-spacing:-0.688000pt;}
.ls16{letter-spacing:-0.480000pt;}
.ls38{letter-spacing:-0.336533pt;}
.ls31{letter-spacing:-0.320000pt;}
.ls14{letter-spacing:-0.160000pt;}
.ls1d{letter-spacing:-0.033280pt;}
.ls1e{letter-spacing:-0.016640pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2b{letter-spacing:0.024960pt;}
.ls37{letter-spacing:0.033280pt;}
.ls1f{letter-spacing:0.047360pt;}
.ls18{letter-spacing:0.119680pt;}
.ls2a{letter-spacing:0.151680pt;}
.lsa{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.224640pt;}
.ls1c{letter-spacing:0.231040pt;}
.ls32{letter-spacing:0.311467pt;}
.ls1{letter-spacing:0.320000pt;}
.ls34{letter-spacing:0.448000pt;}
.ls27{letter-spacing:0.496640pt;}
.ls3b{letter-spacing:0.640000pt;}
.ls15{letter-spacing:0.736000pt;}
.ls2{letter-spacing:2.400000pt;}
.ls1b{letter-spacing:4.320000pt;}
.ls8{letter-spacing:5.920000pt;}
.ls4{letter-spacing:6.560000pt;}
.ls25{letter-spacing:6.880000pt;}
.lsd{letter-spacing:7.520000pt;}
.ls2c{letter-spacing:8.160000pt;}
.ls1a{letter-spacing:8.800000pt;}
.ls2e{letter-spacing:10.720000pt;}
.ls5{letter-spacing:11.680000pt;}
.ls6{letter-spacing:12.320000pt;}
.ls11{letter-spacing:12.640000pt;}
.ls3d{letter-spacing:12.800000pt;}
.ls7{letter-spacing:12.960000pt;}
.lse{letter-spacing:13.920000pt;}
.ls19{letter-spacing:15.840000pt;}
.ls23{letter-spacing:16.480000pt;}
.ls24{letter-spacing:19.040000pt;}
.ls36{letter-spacing:19.146667pt;}
.ls17{letter-spacing:19.658667pt;}
.ls2f{letter-spacing:19.680000pt;}
.lsc{letter-spacing:20.320000pt;}
.ls10{letter-spacing:20.960000pt;}
.ls29{letter-spacing:22.240000pt;}
.ls2d{letter-spacing:24.960000pt;}
.ls30{letter-spacing:26.080000pt;}
.ls3e{letter-spacing:26.240000pt;}
.ls22{letter-spacing:29.280000pt;}
.ls3a{letter-spacing:30.208000pt;}
.ls3c{letter-spacing:31.360000pt;}
.ls28{letter-spacing:38.042027pt;}
.ls0{letter-spacing:38.400000pt;}
.ls35{letter-spacing:45.280000pt;}
.ls33{letter-spacing:49.760000pt;}
.ls12{letter-spacing:62.240000pt;}
.ls13{letter-spacing:62.858667pt;}
.ls26{letter-spacing:67.680000pt;}
.lsf{letter-spacing:70.240000pt;}
.ls21{letter-spacing:170.208000pt;}
.ls39{letter-spacing:976.426667pt;}
.ws0{word-spacing:-19.040000pt;}
.wsc{word-spacing:-19.031467pt;}
.ws5{word-spacing:-18.944640pt;}
.wsd{word-spacing:-18.753280pt;}
.ws3{word-spacing:-18.720000pt;}
.ws8{word-spacing:-18.703360pt;}
.ws7{word-spacing:-18.686720pt;}
.wsb{word-spacing:-18.560000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws6{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.wsa{word-spacing:-12.592000pt;}
.ws2{word-spacing:0.000000pt;}
._27{margin-left:-3.982720pt;}
._1f{margin-left:-2.795947pt;}
._0{margin-left:-1.198080pt;}
._1{width:0.898560pt;}
._4{width:2.094933pt;}
._7{width:3.519360pt;}
._6{width:4.417920pt;}
._18{width:5.391360pt;}
._1e{width:6.284160pt;}
._16{width:7.637760pt;}
._17{width:8.573227pt;}
._c{width:10.108800pt;}
._5{width:11.606400pt;}
._13{width:12.579840pt;}
._3{width:13.653120pt;}
._2{width:14.768000pt;}
._11{width:15.733120pt;}
._12{width:17.297280pt;}
._1a{width:19.618560pt;}
._15{width:20.666880pt;}
._29{width:21.565440pt;}
._b{width:22.464000pt;}
._a{width:23.961600pt;}
._e{width:25.234560pt;}
._d{width:26.208000pt;}
._8{width:27.331200pt;}
._1c{width:28.655147pt;}
._1b{width:30.101760pt;}
._14{width:31.299840pt;}
._1d{width:32.348160pt;}
._19{width:33.246720pt;}
._32{width:34.944000pt;}
._20{width:36.017280pt;}
._21{width:36.915840pt;}
._24{width:37.964160pt;}
._9{width:39.312000pt;}
._2a{width:42.531840pt;}
._2f{width:44.259840pt;}
._2b{width:45.298133pt;}
._31{width:46.275840pt;}
._30{width:47.473920pt;}
._2e{width:49.505067pt;}
._2c{width:53.539200pt;}
._f{width:55.036800pt;}
._10{width:56.205227pt;}
._25{width:61.485440pt;}
._26{width:62.790187pt;}
._2d{width:67.485227pt;}
._23{width:69.427200pt;}
._22{width:70.854827pt;}
._28{width:170.208000pt;}
.fs3{font-size:34.560000pt;}
.fs2{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:10.880000pt;}
.y3{bottom:21.312000pt;}
.y2{bottom:27.712000pt;}
.y54{bottom:68.992000pt;}
.y60{bottom:73.632000pt;}
.y63{bottom:74.592000pt;}
.y2a{bottom:75.552000pt;}
.y53{bottom:84.352000pt;}
.y5a{bottom:88.992000pt;}
.y62{bottom:99.232000pt;}
.y52{bottom:99.712000pt;}
.y29{bottom:100.352000pt;}
.y59{bottom:104.352000pt;}
.y51{bottom:114.912000pt;}
.y58{bottom:116.192000pt;}
.y61{bottom:123.872000pt;}
.y28{bottom:124.992000pt;}
.y50{bottom:130.272000pt;}
.y4f{bottom:145.626667pt;}
.y5f{bottom:148.666667pt;}
.y27{bottom:149.626667pt;}
.y4e{bottom:160.986667pt;}
.y4d{bottom:165.626667pt;}
.y5e{bottom:173.306667pt;}
.y26{bottom:174.426667pt;}
.y4c{bottom:176.346667pt;}
.y4b{bottom:180.986667pt;}
.y4a{bottom:192.826667pt;}
.y57{bottom:197.946667pt;}
.y25{bottom:199.066667pt;}
.y56{bottom:222.586667pt;}
.y24{bottom:223.706667pt;}
.y49{bottom:247.386667pt;}
.y23{bottom:248.346667pt;}
.y48{bottom:272.066667pt;}
.y22{bottom:273.186667pt;}
.y47{bottom:296.706667pt;}
.y21{bottom:297.826667pt;}
.y46{bottom:321.506667pt;}
.y20{bottom:322.466667pt;}
.y74{bottom:334.626667pt;}
.y44{bottom:346.146667pt;}
.y1f{bottom:347.106667pt;}
.y45{bottom:352.866667pt;}
.y73{bottom:353.026667pt;}
.y43{bottom:370.786667pt;}
.y72{bottom:371.426667pt;}
.y1e{bottom:371.906667pt;}
.y71{bottom:389.826667pt;}
.y42{bottom:395.426667pt;}
.y1d{bottom:396.546667pt;}
.y5d{bottom:402.146667pt;}
.y70{bottom:408.226667pt;}
.y41{bottom:420.226667pt;}
.y1c{bottom:421.186667pt;}
.y6f{bottom:426.626667pt;}
.y40{bottom:444.866667pt;}
.y6e{bottom:445.026667pt;}
.y1b{bottom:445.986667pt;}
.y6d{bottom:463.426667pt;}
.y3f{bottom:469.506667pt;}
.y1a{bottom:470.626667pt;}
.y6c{bottom:481.826667pt;}
.y3e{bottom:494.146667pt;}
.y19{bottom:495.266667pt;}
.y6b{bottom:500.226667pt;}
.y6a{bottom:518.653333pt;}
.y3d{bottom:518.973333pt;}
.y18{bottom:519.933333pt;}
.y69{bottom:537.053333pt;}
.y3c{bottom:543.613333pt;}
.y17{bottom:544.733333pt;}
.y5c{bottom:550.333333pt;}
.y68{bottom:555.453333pt;}
.y3b{bottom:568.253333pt;}
.y16{bottom:569.373333pt;}
.y67{bottom:573.853333pt;}
.y66{bottom:592.253333pt;}
.y3a{bottom:593.053333pt;}
.y15{bottom:594.013333pt;}
.y65{bottom:610.653333pt;}
.y39{bottom:617.693333pt;}
.y14{bottom:618.813333pt;}
.y38{bottom:642.333333pt;}
.y13{bottom:643.453333pt;}
.y64{bottom:648.573333pt;}
.y37{bottom:666.973333pt;}
.y12{bottom:668.093333pt;}
.y36{bottom:691.773333pt;}
.y11{bottom:692.733333pt;}
.y5b{bottom:698.493333pt;}
.y35{bottom:716.413333pt;}
.y10{bottom:717.533333pt;}
.y34{bottom:741.053333pt;}
.yf{bottom:742.173333pt;}
.y33{bottom:765.893333pt;}
.ye{bottom:766.853333pt;}
.y32{bottom:790.533333pt;}
.yd{bottom:791.653333pt;}
.yc{bottom:812.613333pt;}
.y31{bottom:815.173333pt;}
.y30{bottom:839.813333pt;}
.yb{bottom:849.253333pt;}
.y2e{bottom:864.613333pt;}
.ya{bottom:867.653333pt;}
.y2f{bottom:871.333333pt;}
.y9{bottom:886.053333pt;}
.y2d{bottom:889.253333pt;}
.y8{bottom:904.453333pt;}
.y2c{bottom:913.893333pt;}
.y55{bottom:920.613333pt;}
.y7{bottom:922.853333pt;}
.y2b{bottom:938.533333pt;}
.y6{bottom:941.893333pt;}
.y5{bottom:963.333333pt;}
.y1{bottom:1057.920000pt;}
.h3{height:28.320000pt;}
.h9{height:33.918750pt;}
.hd{height:47.085938pt;}
.h8{height:47.109375pt;}
.ha{height:52.134375pt;}
.h7{height:52.503750pt;}
.hb{height:61.717500pt;}
.h6{height:62.781250pt;}
.h10{height:62.812500pt;}
.h5{height:64.500000pt;}
.hf{height:65.781915pt;}
.hc{height:73.454062pt;}
.h2{height:73.490625pt;}
.h4{height:75.465000pt;}
.he{height:76.964840pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:67.392000pt;}
.w4{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:24.320000pt;}
.x1{left:75.519988pt;}
.x10{left:79.871988pt;}
.x1b{left:104.031988pt;}
.xa{left:122.591988pt;}
.x4{left:144.026655pt;}
.xd{left:214.906643pt;}
.xe{left:220.986655pt;}
.x19{left:235.226643pt;}
.x1a{left:241.306655pt;}
.x5{left:264.386655pt;}
.xf{left:267.586655pt;}
.x8{left:269.986655pt;}
.x9{left:283.906655pt;}
.x7{left:316.866655pt;}
.x2{left:363.586667pt;}
.x6{left:396.866655pt;}
.x15{left:517.853310pt;}
.x16{left:523.933322pt;}
.x13{left:606.533310pt;}
.x14{left:612.613322pt;}
.x11{left:634.213310pt;}
.x17{left:637.253310pt;}
.x12{left:640.293322pt;}
.x18{left:643.333322pt;}
.xb{left:707.653310pt;}
.xc{left:713.733322pt;}
}




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