
    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_8ba7f3803f85c5fe86eddd2f.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_856de6d721781718fed79241.woff')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_d6bddb300e09c29cce40b065.woff')format("woff");}.ff3{font-family:ff3;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_d5da3710f72b0dce47687649.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_77ef8871aa38155d1ab75eb9.woff')format("woff");}.ff5{font-family:ff5;line-height:1.090332;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_18cc71814e76381bfc929ff6.woff')format("woff");}.ff6{font-family:ff6;line-height:1.090332;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_027591a5676b52be83f5ca85.woff')format("woff");}.ff7{font-family:ff7;line-height:1.059570;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_5283800ec639c4576c96e0d7.woff')format("woff");}.ff8{font-family:ff8;line-height:1.202148;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);}
.vc{vertical-align:-52.800000px;}
.v5{vertical-align:-39.600000px;}
.vb{vertical-align:-29.400000px;}
.v8{vertical-align:-27.000000px;}
.v2{vertical-align:-22.080000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:22.080000px;}
.v9{vertical-align:27.000000px;}
.vd{vertical-align:29.400000px;}
.v4{vertical-align:39.600000px;}
.v1{vertical-align:53.100000px;}
.v7{vertical-align:54.900000px;}
.v6{vertical-align:61.680000px;}
.va{vertical-align:64.500000px;}
.ve{vertical-align:82.200000px;}
.ls19{letter-spacing:-1.788000px;}
.lsb{letter-spacing:-1.752000px;}
.ls20{letter-spacing:-1.416000px;}
.lsa{letter-spacing:-1.266000px;}
.ls27{letter-spacing:-1.164000px;}
.ls12{letter-spacing:-0.380400px;}
.ls2a{letter-spacing:-0.325800px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.044220px;}
.ls9{letter-spacing:0.087000px;}
.ls1b{letter-spacing:0.230550px;}
.ls26{letter-spacing:0.390600px;}
.ls13{letter-spacing:0.852000px;}
.ls1a{letter-spacing:1.042800px;}
.ls1e{letter-spacing:1.140000px;}
.ls24{letter-spacing:1.175850px;}
.ls23{letter-spacing:1.260000px;}
.ls22{letter-spacing:1.410000px;}
.ls15{letter-spacing:1.512000px;}
.ls14{letter-spacing:1.662000px;}
.ls21{letter-spacing:2.436000px;}
.ls11{letter-spacing:2.700000px;}
.ls1f{letter-spacing:2.988000px;}
.ls10{letter-spacing:26.418300px;}
.lsf{letter-spacing:26.598300px;}
.ls1c{letter-spacing:27.414150px;}
.ls6{letter-spacing:29.901600px;}
.ls3{letter-spacing:31.919400px;}
.ls1{letter-spacing:49.770000px;}
.ls5{letter-spacing:49.822500px;}
.lsd{letter-spacing:52.920000px;}
.lsc{letter-spacing:52.972500px;}
.ls28{letter-spacing:57.675000px;}
.ls2{letter-spacing:57.727500px;}
.lse{letter-spacing:62.452500px;}
.ls18{letter-spacing:160.890000px;}
.ls17{letter-spacing:160.942500px;}
.ls1d{letter-spacing:2377.671900px;}
.ls4{letter-spacing:2382.471900px;}
.ls25{letter-spacing:2396.871900px;}
.ls29{letter-spacing:2406.471900px;}
.ls16{letter-spacing:2411.271900px;}
.ls7{letter-spacing:2493.921900px;}
.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;}
}
.ws1a{word-spacing:-145.290000px;}
.ws16{word-spacing:-144.150000px;}
.wse{word-spacing:-133.350000px;}
.wsb{word-spacing:-130.650000px;}
.ws18{word-spacing:-112.384800px;}
.ws20{word-spacing:-110.586000px;}
.ws3{word-spacing:-108.150000px;}
.ws5{word-spacing:-106.884000px;}
.ws1f{word-spacing:-106.734000px;}
.ws19{word-spacing:-104.470050px;}
.ws12{word-spacing:-102.886650px;}
.wsd{word-spacing:-102.166650px;}
.ws10{word-spacing:-98.589000px;}
.wsf{word-spacing:-92.756850px;}
.ws6{word-spacing:-81.000000px;}
.ws7{word-spacing:-79.248000px;}
.ws1e{word-spacing:-77.818050px;}
.ws1b{word-spacing:-73.460700px;}
.ws1d{word-spacing:-64.663350px;}
.ws1c{word-spacing:-63.830400px;}
.ws17{word-spacing:-62.640300px;}
.ws2{word-spacing:-60.104700px;}
.wsa{word-spacing:-60.070800px;}
.ws8{word-spacing:-59.496000px;}
.wsc{word-spacing:-55.345650px;}
.ws26{word-spacing:-53.968800px;}
.ws11{word-spacing:-50.939550px;}
.ws25{word-spacing:-37.696800px;}
.ws9{word-spacing:-35.662800px;}
.ws0{word-spacing:-32.577900px;}
.ws22{word-spacing:-30.936900px;}
.ws23{word-spacing:-30.786900px;}
.ws24{word-spacing:-30.702750px;}
.ws21{word-spacing:-29.917500px;}
.ws13{word-spacing:-27.492900px;}
.ws4{word-spacing:-22.836000px;}
.ws15{word-spacing:-21.954450px;}
.ws14{word-spacing:-21.390900px;}
.ws1{word-spacing:0.000000px;}
._7{margin-left:-19.820400px;}
._10{margin-left:-16.986750px;}
._a{margin-left:-13.905450px;}
._b{margin-left:-12.905400px;}
._f{margin-left:-10.811250px;}
._9{margin-left:-9.425550px;}
._18{margin-left:-7.974000px;}
._c{margin-left:-6.956850px;}
._3{margin-left:-5.333550px;}
._2{margin-left:-4.324500px;}
._5{margin-left:-2.883000px;}
._1{margin-left:-1.585650px;}
._0{width:1.873950px;}
._4{width:3.315450px;}
._8{width:4.591050px;}
._e{width:5.911200px;}
._16{width:7.114950px;}
._d{width:29.002200px;}
._12{width:30.960750px;}
._17{width:32.049600px;}
._13{width:34.035900px;}
._11{width:37.893150px;}
._15{width:43.198350px;}
._6{width:55.874700px;}
._14{width:60.875550px;}
.fcc{color:rgb(193,229,245);}
.fcb{color:rgb(131,203,235);}
.fc7{color:rgb(255,0,0);}
.fc6{color:rgb(71,212,90);}
.fc8{color:rgb(97,203,244);}
.fc5{color:rgb(242,170,132);}
.fc3{color:transparent;}
.fca{color:rgb(0,176,240);}
.fc1{color:rgb(166,202,236);}
.fc9{color:rgb(191,191,191);}
.fc4{color:rgb(0,0,0);}
.fc2{color:rgb(150,220,248);}
.fc0{color:rgb(255,255,255);}
.fs9{font-size:72.000000px;}
.fs8{font-size:72.150000px;}
.fsc{font-size:81.000000px;}
.fs15{font-size:81.150000px;}
.fs13{font-size:94.500000px;}
.fs12{font-size:94.650000px;}
.fs14{font-size:103.650000px;}
.fsb{font-size:108.150000px;}
.fse{font-size:112.650000px;}
.fs6{font-size:121.650000px;}
.fs10{font-size:130.650000px;}
.fs0{font-size:144.150000px;}
.fs3{font-size:144.300000px;}
.fsd{font-size:157.650000px;}
.fsf{font-size:157.800000px;}
.fsa{font-size:166.650000px;}
.fs5{font-size:166.800000px;}
.fs16{font-size:193.650000px;}
.fs7{font-size:216.300000px;}
.fs1{font-size:238.800000px;}
.fs2{font-size:238.950000px;}
.fs11{font-size:265.800000px;}
.fs4{font-size:265.950000px;}
.fs17{font-size:324.450000px;}
.y36{bottom:-9.825000px;}
.y0{bottom:0.000000px;}
.y2b{bottom:14.400000px;}
.y29{bottom:14.850000px;}
.y20{bottom:16.800000px;}
.y14{bottom:17.250000px;}
.y69{bottom:17.775000px;}
.y35{bottom:26.250000px;}
.y70{bottom:33.750000px;}
.y3{bottom:33.862500px;}
.y6d{bottom:35.175000px;}
.y8{bottom:39.787500px;}
.y68{bottom:60.600000px;}
.y34{bottom:62.287500px;}
.y6f{bottom:66.412500px;}
.y7{bottom:79.200000px;}
.y5d{bottom:87.337500px;}
.y2{bottom:87.937500px;}
.y6c{bottom:89.250000px;}
.y13{bottom:93.000000px;}
.y33{bottom:98.325000px;}
.y6e{bottom:99.075000px;}
.y67{bottom:102.262500px;}
.y53{bottom:103.200000px;}
.y47{bottom:112.050000px;}
.y1f{bottom:120.825000px;}
.y5c{bottom:125.662500px;}
.y4a{bottom:128.062500px;}
.y32{bottom:134.400000px;}
.y1{bottom:142.012500px;}
.y46{bottom:142.500000px;}
.y66{bottom:143.962500px;}
.y12{bottom:151.575000px;}
.y1e{bottom:159.150000px;}
.y5b{bottom:170.700000px;}
.y65{bottom:186.750000px;}
.y44{bottom:190.725000px;}
.y1d{bottom:198.570000px;}
.y5a{bottom:215.775000px;}
.y11{bottom:221.400000px;}
.y52{bottom:221.505000px;}
.y6{bottom:224.850000px;}
.y6b{bottom:225.000000px;}
.y64{bottom:228.450000px;}
.y43{bottom:236.925000px;}
.y31{bottom:240.450000px;}
.y1a{bottom:252.870000px;}
.y19{bottom:258.000000px;}
.y51{bottom:259.800000px;}
.y28{bottom:267.420000px;}
.y10{bottom:267.600000px;}
.y63{bottom:272.400000px;}
.y59{bottom:276.600000px;}
.y42{bottom:284.250000px;}
.y49{bottom:288.075000px;}
.y5{bottom:290.175000px;}
.y1c{bottom:291.975000px;}
.y30{bottom:294.525000px;}
.y45{bottom:303.975000px;}
.y27{bottom:307.950000px;}
.y48{bottom:320.745000px;}
.y58{bottom:321.675000px;}
.yf{bottom:323.925000px;}
.y1b{bottom:331.380000px;}
.y41{bottom:331.545000px;}
.y26{bottom:345.150000px;}
.y4{bottom:354.375000px;}
.y38{bottom:356.880000px;}
.y6a{bottom:360.195000px;}
.ye{bottom:367.875000px;}
.y50{bottom:367.950000px;}
.y4f{bottom:374.820000px;}
.y3a{bottom:375.975000px;}
.y40{bottom:377.745000px;}
.y62{bottom:382.800000px;}
.y25{bottom:398.100000px;}
.y39{bottom:400.245000px;}
.y2f{bottom:403.800000px;}
.y4e{bottom:423.150000px;}
.y61{bottom:423.345000px;}
.y3f{bottom:425.070000px;}
.y57{bottom:425.325000px;}
.yd{bottom:426.450000px;}
.y24{bottom:435.255000px;}
.y2e{bottom:455.625000px;}
.y56{bottom:463.620000px;}
.y18{bottom:465.900000px;}
.y3e{bottom:471.225000px;}
.yc{bottom:474.900000px;}
.y60{bottom:478.530000px;}
.y23{bottom:485.970000px;}
.y37{bottom:497.400000px;}
.y17{bottom:500.820000px;}
.y55{bottom:508.695000px;}
.y2d{bottom:509.700000px;}
.y3d{bottom:518.550000px;}
.y22{bottom:529.875000px;}
.y4d{bottom:533.550000px;}
.y5f{bottom:533.745000px;}
.yb{bottom:534.600000px;}
.y16{bottom:543.630000px;}
.y54{bottom:554.880000px;}
.y2c{bottom:555.900000px;}
.y3c{bottom:565.875000px;}
.y5e{bottom:574.320000px;}
.ya{bottom:580.800000px;}
.y21{bottom:582.825000px;}
.y15{bottom:584.175000px;}
.y4c{bottom:631.380000px;}
.y9{bottom:666.675000px;}
.y2a{bottom:669.900000px;}
.y3b{bottom:700.125000px;}
.y4b{bottom:702.345000px;}
.h15{height:62.532349px;}
.hd{height:91.568408px;}
.h1a{height:93.733521px;}
.h1b{height:93.992432px;}
.h17{height:96.914575px;}
.h22{height:107.569116px;}
.he{height:108.181055px;}
.h11{height:112.044946px;}
.ha{height:115.502344px;}
.hf{height:117.302344px;}
.h7{height:120.996606px;}
.h1c{height:122.175879px;}
.h18{height:126.902344px;}
.h14{height:129.948267px;}
.h1d{height:140.558350px;}
.h1{height:143.375757px;}
.h4{height:143.524951px;}
.hc{height:147.598901px;}
.h1f{height:147.752490px;}
.h10{height:156.803247px;}
.h13{height:156.952441px;}
.h19{height:161.421899px;}
.h12{height:161.575488px;}
.hb{height:165.754907px;}
.h6{height:165.904102px;}
.h8{height:170.790820px;}
.h1e{height:198.283228px;}
.h9{height:221.475146px;}
.h21{height:237.517383px;}
.h2{height:244.513477px;}
.h3{height:244.667065px;}
.h16{height:264.372363px;}
.h5{height:264.521558px;}
.h20{height:322.707349px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x12{left:25.462479px;}
.x14{left:43.387479px;}
.x16{left:46.124979px;}
.x2d{left:47.324979px;}
.x2c{left:49.724979px;}
.xd{left:53.324979px;}
.x2a{left:54.374979px;}
.x23{left:69.674979px;}
.x31{left:86.624979px;}
.x15{left:92.962479px;}
.x8{left:109.874979px;}
.x24{left:117.824979px;}
.x29{left:131.999979px;}
.x9{left:136.912479px;}
.x2b{left:143.849979px;}
.x28{left:146.812479px;}
.xc{left:150.779979px;}
.x1d{left:153.974979px;}
.xa{left:163.904979px;}
.x27{left:170.279979px;}
.xb{left:179.849979px;}
.x7{left:183.254979px;}
.xe{left:190.949979px;}
.x30{left:201.569979px;}
.x26{left:221.669979px;}
.x25{left:294.824979px;}
.x4{left:424.529979px;}
.x5{left:438.974979px;}
.x17{left:456.029979px;}
.x2e{left:495.224979px;}
.x6{left:584.924979px;}
.x11{left:589.574979px;}
.x19{left:658.049979px;}
.x1f{left:741.569979px;}
.x2f{left:744.674979px;}
.x18{left:761.129979px;}
.x10{left:782.624979px;}
.xf{left:811.649979px;}
.x1e{left:865.319979px;}
.x13{left:866.474979px;}
.x1b{left:986.594979px;}
.x32{left:1034.579979px;}
.x1c{left:1048.724979px;}
.x33{left:1056.644979px;}
.x1a{left:1063.199979px;}
.x22{left:1103.819979px;}
.x34{left:1113.674979px;}
.x20{left:1119.569979px;}
.x1{left:1123.004979px;}
.x21{left:1157.099979px;}
.x2{left:1192.199979px;}
.x3{left:1286.024979px;}
@media print{
.vc{vertical-align:-46.933333pt;}
.v5{vertical-align:-35.200000pt;}
.vb{vertical-align:-26.133333pt;}
.v8{vertical-align:-24.000000pt;}
.v2{vertical-align:-19.626667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:19.626667pt;}
.v9{vertical-align:24.000000pt;}
.vd{vertical-align:26.133333pt;}
.v4{vertical-align:35.200000pt;}
.v1{vertical-align:47.200000pt;}
.v7{vertical-align:48.800000pt;}
.v6{vertical-align:54.826667pt;}
.va{vertical-align:57.333333pt;}
.ve{vertical-align:73.066667pt;}
.ls19{letter-spacing:-1.589333pt;}
.lsb{letter-spacing:-1.557333pt;}
.ls20{letter-spacing:-1.258667pt;}
.lsa{letter-spacing:-1.125333pt;}
.ls27{letter-spacing:-1.034667pt;}
.ls12{letter-spacing:-0.338133pt;}
.ls2a{letter-spacing:-0.289600pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.039307pt;}
.ls9{letter-spacing:0.077333pt;}
.ls1b{letter-spacing:0.204933pt;}
.ls26{letter-spacing:0.347200pt;}
.ls13{letter-spacing:0.757333pt;}
.ls1a{letter-spacing:0.926933pt;}
.ls1e{letter-spacing:1.013333pt;}
.ls24{letter-spacing:1.045200pt;}
.ls23{letter-spacing:1.120000pt;}
.ls22{letter-spacing:1.253333pt;}
.ls15{letter-spacing:1.344000pt;}
.ls14{letter-spacing:1.477333pt;}
.ls21{letter-spacing:2.165333pt;}
.ls11{letter-spacing:2.400000pt;}
.ls1f{letter-spacing:2.656000pt;}
.ls10{letter-spacing:23.482933pt;}
.lsf{letter-spacing:23.642933pt;}
.ls1c{letter-spacing:24.368133pt;}
.ls6{letter-spacing:26.579200pt;}
.ls3{letter-spacing:28.372800pt;}
.ls1{letter-spacing:44.240000pt;}
.ls5{letter-spacing:44.286667pt;}
.lsd{letter-spacing:47.040000pt;}
.lsc{letter-spacing:47.086667pt;}
.ls28{letter-spacing:51.266667pt;}
.ls2{letter-spacing:51.313333pt;}
.lse{letter-spacing:55.513333pt;}
.ls18{letter-spacing:143.013333pt;}
.ls17{letter-spacing:143.060000pt;}
.ls1d{letter-spacing:2113.486133pt;}
.ls4{letter-spacing:2117.752800pt;}
.ls25{letter-spacing:2130.552800pt;}
.ls29{letter-spacing:2139.086133pt;}
.ls16{letter-spacing:2143.352800pt;}
.ls7{letter-spacing:2216.819467pt;}
.ws1a{word-spacing:-129.146667pt;}
.ws16{word-spacing:-128.133333pt;}
.wse{word-spacing:-118.533333pt;}
.wsb{word-spacing:-116.133333pt;}
.ws18{word-spacing:-99.897600pt;}
.ws20{word-spacing:-98.298667pt;}
.ws3{word-spacing:-96.133333pt;}
.ws5{word-spacing:-95.008000pt;}
.ws1f{word-spacing:-94.874667pt;}
.ws19{word-spacing:-92.862267pt;}
.ws12{word-spacing:-91.454800pt;}
.wsd{word-spacing:-90.814800pt;}
.ws10{word-spacing:-87.634667pt;}
.wsf{word-spacing:-82.450533pt;}
.ws6{word-spacing:-72.000000pt;}
.ws7{word-spacing:-70.442667pt;}
.ws1e{word-spacing:-69.171600pt;}
.ws1b{word-spacing:-65.298400pt;}
.ws1d{word-spacing:-57.478533pt;}
.ws1c{word-spacing:-56.738133pt;}
.ws17{word-spacing:-55.680267pt;}
.ws2{word-spacing:-53.426400pt;}
.wsa{word-spacing:-53.396267pt;}
.ws8{word-spacing:-52.885333pt;}
.wsc{word-spacing:-49.196133pt;}
.ws26{word-spacing:-47.972267pt;}
.ws11{word-spacing:-45.279600pt;}
.ws25{word-spacing:-33.508267pt;}
.ws9{word-spacing:-31.700267pt;}
.ws0{word-spacing:-28.958133pt;}
.ws22{word-spacing:-27.499467pt;}
.ws23{word-spacing:-27.366133pt;}
.ws24{word-spacing:-27.291333pt;}
.ws21{word-spacing:-26.593333pt;}
.ws13{word-spacing:-24.438133pt;}
.ws4{word-spacing:-20.298667pt;}
.ws15{word-spacing:-19.515067pt;}
.ws14{word-spacing:-19.014133pt;}
.ws1{word-spacing:0.000000pt;}
._7{margin-left:-17.618133pt;}
._10{margin-left:-15.099333pt;}
._a{margin-left:-12.360400pt;}
._b{margin-left:-11.471467pt;}
._f{margin-left:-9.610000pt;}
._9{margin-left:-8.378267pt;}
._18{margin-left:-7.088000pt;}
._c{margin-left:-6.183867pt;}
._3{margin-left:-4.740933pt;}
._2{margin-left:-3.844000pt;}
._5{margin-left:-2.562667pt;}
._1{margin-left:-1.409467pt;}
._0{width:1.665733pt;}
._4{width:2.947067pt;}
._8{width:4.080933pt;}
._e{width:5.254400pt;}
._16{width:6.324400pt;}
._d{width:25.779733pt;}
._12{width:27.520667pt;}
._17{width:28.488533pt;}
._13{width:30.254133pt;}
._11{width:33.682800pt;}
._15{width:38.398533pt;}
._6{width:49.666400pt;}
._14{width:54.111600pt;}
.fs9{font-size:64.000000pt;}
.fs8{font-size:64.133333pt;}
.fsc{font-size:72.000000pt;}
.fs15{font-size:72.133333pt;}
.fs13{font-size:84.000000pt;}
.fs12{font-size:84.133333pt;}
.fs14{font-size:92.133333pt;}
.fsb{font-size:96.133333pt;}
.fse{font-size:100.133333pt;}
.fs6{font-size:108.133333pt;}
.fs10{font-size:116.133333pt;}
.fs0{font-size:128.133333pt;}
.fs3{font-size:128.266667pt;}
.fsd{font-size:140.133333pt;}
.fsf{font-size:140.266667pt;}
.fsa{font-size:148.133333pt;}
.fs5{font-size:148.266667pt;}
.fs16{font-size:172.133333pt;}
.fs7{font-size:192.266667pt;}
.fs1{font-size:212.266667pt;}
.fs2{font-size:212.400000pt;}
.fs11{font-size:236.266667pt;}
.fs4{font-size:236.400000pt;}
.fs17{font-size:288.400000pt;}
.y36{bottom:-8.733333pt;}
.y0{bottom:0.000000pt;}
.y2b{bottom:12.800000pt;}
.y29{bottom:13.200000pt;}
.y20{bottom:14.933333pt;}
.y14{bottom:15.333333pt;}
.y69{bottom:15.800000pt;}
.y35{bottom:23.333333pt;}
.y70{bottom:30.000000pt;}
.y3{bottom:30.100000pt;}
.y6d{bottom:31.266667pt;}
.y8{bottom:35.366667pt;}
.y68{bottom:53.866667pt;}
.y34{bottom:55.366667pt;}
.y6f{bottom:59.033333pt;}
.y7{bottom:70.400000pt;}
.y5d{bottom:77.633333pt;}
.y2{bottom:78.166667pt;}
.y6c{bottom:79.333333pt;}
.y13{bottom:82.666667pt;}
.y33{bottom:87.400000pt;}
.y6e{bottom:88.066667pt;}
.y67{bottom:90.900000pt;}
.y53{bottom:91.733333pt;}
.y47{bottom:99.600000pt;}
.y1f{bottom:107.400000pt;}
.y5c{bottom:111.700000pt;}
.y4a{bottom:113.833333pt;}
.y32{bottom:119.466667pt;}
.y1{bottom:126.233333pt;}
.y46{bottom:126.666667pt;}
.y66{bottom:127.966667pt;}
.y12{bottom:134.733333pt;}
.y1e{bottom:141.466667pt;}
.y5b{bottom:151.733333pt;}
.y65{bottom:166.000000pt;}
.y44{bottom:169.533333pt;}
.y1d{bottom:176.506667pt;}
.y5a{bottom:191.800000pt;}
.y11{bottom:196.800000pt;}
.y52{bottom:196.893333pt;}
.y6{bottom:199.866667pt;}
.y6b{bottom:200.000000pt;}
.y64{bottom:203.066667pt;}
.y43{bottom:210.600000pt;}
.y31{bottom:213.733333pt;}
.y1a{bottom:224.773333pt;}
.y19{bottom:229.333333pt;}
.y51{bottom:230.933333pt;}
.y28{bottom:237.706667pt;}
.y10{bottom:237.866667pt;}
.y63{bottom:242.133333pt;}
.y59{bottom:245.866667pt;}
.y42{bottom:252.666667pt;}
.y49{bottom:256.066667pt;}
.y5{bottom:257.933333pt;}
.y1c{bottom:259.533333pt;}
.y30{bottom:261.800000pt;}
.y45{bottom:270.200000pt;}
.y27{bottom:273.733333pt;}
.y48{bottom:285.106667pt;}
.y58{bottom:285.933333pt;}
.yf{bottom:287.933333pt;}
.y1b{bottom:294.560000pt;}
.y41{bottom:294.706667pt;}
.y26{bottom:306.800000pt;}
.y4{bottom:315.000000pt;}
.y38{bottom:317.226667pt;}
.y6a{bottom:320.173333pt;}
.ye{bottom:327.000000pt;}
.y50{bottom:327.066667pt;}
.y4f{bottom:333.173333pt;}
.y3a{bottom:334.200000pt;}
.y40{bottom:335.773333pt;}
.y62{bottom:340.266667pt;}
.y25{bottom:353.866667pt;}
.y39{bottom:355.773333pt;}
.y2f{bottom:358.933333pt;}
.y4e{bottom:376.133333pt;}
.y61{bottom:376.306667pt;}
.y3f{bottom:377.840000pt;}
.y57{bottom:378.066667pt;}
.yd{bottom:379.066667pt;}
.y24{bottom:386.893333pt;}
.y2e{bottom:405.000000pt;}
.y56{bottom:412.106667pt;}
.y18{bottom:414.133333pt;}
.y3e{bottom:418.866667pt;}
.yc{bottom:422.133333pt;}
.y60{bottom:425.360000pt;}
.y23{bottom:431.973333pt;}
.y37{bottom:442.133333pt;}
.y17{bottom:445.173333pt;}
.y55{bottom:452.173333pt;}
.y2d{bottom:453.066667pt;}
.y3d{bottom:460.933333pt;}
.y22{bottom:471.000000pt;}
.y4d{bottom:474.266667pt;}
.y5f{bottom:474.440000pt;}
.yb{bottom:475.200000pt;}
.y16{bottom:483.226667pt;}
.y54{bottom:493.226667pt;}
.y2c{bottom:494.133333pt;}
.y3c{bottom:503.000000pt;}
.y5e{bottom:510.506667pt;}
.ya{bottom:516.266667pt;}
.y21{bottom:518.066667pt;}
.y15{bottom:519.266667pt;}
.y4c{bottom:561.226667pt;}
.y9{bottom:592.600000pt;}
.y2a{bottom:595.466667pt;}
.y3b{bottom:622.333333pt;}
.y4b{bottom:624.306667pt;}
.h15{height:55.584310pt;}
.hd{height:81.394141pt;}
.h1a{height:83.318685pt;}
.h1b{height:83.548828pt;}
.h17{height:86.146289pt;}
.h22{height:95.616992pt;}
.he{height:96.160937pt;}
.h11{height:99.595508pt;}
.ha{height:102.668750pt;}
.hf{height:104.268750pt;}
.h7{height:107.552539pt;}
.h1c{height:108.600781pt;}
.h18{height:112.802083pt;}
.h14{height:115.509570pt;}
.h1d{height:124.940755pt;}
.h1{height:127.445117pt;}
.h4{height:127.577734pt;}
.hc{height:131.199023pt;}
.h1f{height:131.335547pt;}
.h10{height:139.380664pt;}
.h13{height:139.513281pt;}
.h19{height:143.486133pt;}
.h12{height:143.622656pt;}
.hb{height:147.337695pt;}
.h6{height:147.470313pt;}
.h8{height:151.814063pt;}
.h1e{height:176.251758pt;}
.h9{height:196.866797pt;}
.h21{height:211.126562pt;}
.h2{height:217.345312pt;}
.h3{height:217.481836pt;}
.h16{height:234.997656pt;}
.h5{height:235.130273pt;}
.h20{height:286.850977pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x12{left:22.633314pt;}
.x14{left:38.566648pt;}
.x16{left:40.999981pt;}
.x2d{left:42.066648pt;}
.x2c{left:44.199981pt;}
.xd{left:47.399981pt;}
.x2a{left:48.333314pt;}
.x23{left:61.933314pt;}
.x31{left:76.999981pt;}
.x15{left:82.633314pt;}
.x8{left:97.666648pt;}
.x24{left:104.733314pt;}
.x29{left:117.333314pt;}
.x9{left:121.699981pt;}
.x2b{left:127.866648pt;}
.x28{left:130.499981pt;}
.xc{left:134.026648pt;}
.x1d{left:136.866648pt;}
.xa{left:145.693314pt;}
.x27{left:151.359981pt;}
.xb{left:159.866648pt;}
.x7{left:162.893314pt;}
.xe{left:169.733314pt;}
.x30{left:179.173314pt;}
.x26{left:197.039981pt;}
.x25{left:262.066648pt;}
.x4{left:377.359981pt;}
.x5{left:390.199981pt;}
.x17{left:405.359981pt;}
.x2e{left:440.199981pt;}
.x6{left:519.933314pt;}
.x11{left:524.066648pt;}
.x19{left:584.933314pt;}
.x1f{left:659.173314pt;}
.x2f{left:661.933314pt;}
.x18{left:676.559981pt;}
.x10{left:695.666648pt;}
.xf{left:721.466648pt;}
.x1e{left:769.173314pt;}
.x13{left:770.199981pt;}
.x1b{left:876.973314pt;}
.x32{left:919.626648pt;}
.x1c{left:932.199981pt;}
.x33{left:939.239981pt;}
.x1a{left:945.066648pt;}
.x22{left:981.173314pt;}
.x34{left:989.933314pt;}
.x20{left:995.173314pt;}
.x1{left:998.226648pt;}
.x21{left:1028.533314pt;}
.x2{left:1059.733314pt;}
.x3{left:1143.133314pt;}
}




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