
    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_205bda8f421c20ade22a951e.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_19119d8709f0fd867f5ce9f4.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_758b1424d8a9b56e3acfe89b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.940918;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_8a0a66c5f0ea84b96785d921.woff')format("woff");}.ff4{font-family:ff4;line-height:0.972656;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_e9ad2497ff12e5e288329d10.woff')format("woff");}.ff5{font-family:ff5;line-height:0.942383;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_8d0ca4a100226faec2405b09.woff')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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_472216c7abd038d0c89bd2d3.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_a55a4b278bffec62357cdc3b.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_8d3a95f05dde40d5e9921d3d.woff')format("woff");}.ff9{font-family:ff9;line-height:0.940918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_3db3422eea63b202938da46c.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_7b25f6d54734d743c383d6d6.woff')format("woff");}.ffb{font-family:ffb;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-1.350000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.500000px;}
.v4{vertical-align:2.760000px;}
.v2{vertical-align:8.250000px;}
.ls6{letter-spacing:-0.580200px;}
.ls7{letter-spacing:-0.504000px;}
.lsc{letter-spacing:-0.156600px;}
.lsa{letter-spacing:-0.037500px;}
.ls0{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.278100px;}
.ls2{letter-spacing:0.324450px;}
.ls11{letter-spacing:0.338100px;}
.ls12{letter-spacing:0.996000px;}
.ls8{letter-spacing:1.404000px;}
.ls9{letter-spacing:1.692000px;}
.ls3{letter-spacing:1.830000px;}
.ls13{letter-spacing:2.124000px;}
.ls15{letter-spacing:92.370000px;}
.ls14{letter-spacing:92.422500px;}
.lsb{letter-spacing:92.520000px;}
.ls1{letter-spacing:92.572500px;}
.ls5{letter-spacing:97.267500px;}
.ls4{letter-spacing:97.297500px;}
.ls16{letter-spacing:97.327500px;}
.ls18{letter-spacing:119.370000px;}
.ls17{letter-spacing:119.422500px;}
.lse{letter-spacing:119.452500px;}
.ls19{letter-spacing:119.542500px;}
.lsd{letter-spacing:119.572500px;}
.lsf{letter-spacing:124.297500px;}
.ls10{letter-spacing:124.327500px;}
.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;}
}
.ws16{word-spacing:-121.800000px;}
.ws10{word-spacing:-60.070800px;}
.ws17{word-spacing:-48.883800px;}
.ws15{word-spacing:-32.577900px;}
.wse{word-spacing:-32.421300px;}
.wsf{word-spacing:-28.488900px;}
.ws6{word-spacing:-27.526800px;}
.ws5{word-spacing:-27.492900px;}
.ws4{word-spacing:-24.766350px;}
.ws3{word-spacing:-24.441900px;}
.ws11{word-spacing:-19.356900px;}
.ws14{word-spacing:-19.323000px;}
.wsc{word-spacing:-17.709900px;}
.ws9{word-spacing:-16.305900px;}
.wsb{word-spacing:-16.272000px;}
.ws1{word-spacing:-0.324450px;}
.ws0{word-spacing:0.000000px;}
.wsa{word-spacing:38.742000px;}
.ws8{word-spacing:38.822850px;}
.ws13{word-spacing:92.742000px;}
.ws12{word-spacing:92.822850px;}
.ws7{word-spacing:747.554100px;}
.ws2{word-spacing:1160.341350px;}
.wsd{word-spacing:2155.851150px;}
._14{margin-left:-17.521200px;}
._13{margin-left:-13.756800px;}
._a{margin-left:-11.762850px;}
._18{margin-left:-10.574850px;}
._11{margin-left:-9.186900px;}
._7{margin-left:-7.924050px;}
._5{margin-left:-6.379200px;}
._6{margin-left:-4.362600px;}
._2{margin-left:-2.639250px;}
._3{margin-left:-1.231650px;}
._1{width:1.173000px;}
._0{width:2.580600px;}
._4{width:4.281450px;}
._8{width:5.812650px;}
._17{width:25.730700px;}
._15{width:142.241100px;}
._9{width:178.961100px;}
._c{width:239.744700px;}
._d{width:241.017000px;}
._10{width:852.882300px;}
._e{width:1206.199200px;}
._12{width:1557.203850px;}
._16{width:1839.629700px;}
._f{width:2204.562150px;}
._b{width:2342.875650px;}
.fc5{color:rgb(186,12,47);}
.fc4{color:transparent;}
.fc2{color:rgb(19,50,43);}
.fc7{color:rgb(89,89,89);}
.fc6{color:rgb(255,255,255);}
.fc3{color:rgb(166,166,166);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(127,127,127);}
.fs6{font-size:58.500000px;}
.fs0{font-size:58.650000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:72.150000px;}
.fsd{font-size:85.500000px;}
.fs2{font-size:85.650000px;}
.fs3{font-size:108.150000px;}
.fsb{font-size:121.650000px;}
.fsc{font-size:121.800000px;}
.fs8{font-size:144.150000px;}
.fs9{font-size:144.300000px;}
.fsa{font-size:216.300000px;}
.fs1{font-size:265.800000px;}
.fse{font-size:265.950000px;}
.fs5{font-size:324.450000px;}
.y0{bottom:0.000000px;}
.y12{bottom:27.600000px;}
.y1{bottom:28.050000px;}
.ya{bottom:29.662500px;}
.y2{bottom:30.600000px;}
.y7{bottom:30.975000px;}
.y33{bottom:96.375000px;}
.y43{bottom:100.800000px;}
.y24{bottom:110.662500px;}
.y32{bottom:117.750000px;}
.y70{bottom:127.725000px;}
.y61{bottom:132.112500px;}
.y23{bottom:138.825000px;}
.y31{bottom:139.162500px;}
.y28{bottom:143.437500px;}
.y2d{bottom:158.700000px;}
.y22{bottom:168.120000px;}
.y1b{bottom:175.905000px;}
.y27{bottom:179.505000px;}
.y69{bottom:187.500000px;}
.y2c{bottom:194.730000px;}
.y78{bottom:203.205000px;}
.y60{bottom:206.625000px;}
.y55{bottom:211.575000px;}
.y26{bottom:215.550000px;}
.y42{bottom:224.400000px;}
.y49{bottom:224.730000px;}
.y2b{bottom:230.820000px;}
.y6f{bottom:236.445000px;}
.y82{bottom:238.155000px;}
.y77{bottom:239.250000px;}
.y5f{bottom:242.655000px;}
.y6e{bottom:243.195000px;}
.y54{bottom:244.245000px;}
.y68{bottom:247.005000px;}
.y41{bottom:260.445000px;}
.y48{bottom:260.820000px;}
.y21{bottom:261.195000px;}
.y4{bottom:262.650000px;}
.y11{bottom:268.125000px;}
.y81{bottom:270.825000px;}
.y6c{bottom:272.475000px;}
.y88{bottom:273.570000px;}
.y4c{bottom:275.325000px;}
.y53{bottom:276.900000px;}
.y5e{bottom:278.730000px;}
.y6d{bottom:279.225000px;}
.y67{bottom:283.050000px;}
.y46{bottom:284.670000px;}
.y20{bottom:289.350000px;}
.y1a{bottom:290.655000px;}
.y40{bottom:296.520000px;}
.y75{bottom:296.745000px;}
.y47{bottom:296.850000px;}
.y3a{bottom:304.350000px;}
.y87{bottom:306.225000px;}
.y6b{bottom:308.550000px;}
.y52{bottom:309.570000px;}
.y76{bottom:311.370000px;}
.y4b{bottom:311.400000px;}
.y6{bottom:311.970000px;}
.y5d{bottom:314.775000px;}
.y1f{bottom:318.675000px;}
.y29{bottom:318.900000px;}
.y66{bottom:319.095000px;}
.y3f{bottom:332.550000px;}
.y39{bottom:335.880000px;}
.y74{bottom:336.195000px;}
.y51{bottom:342.270000px;}
.y1c{bottom:342.630000px;}
.y30{bottom:342.825000px;}
.y6a{bottom:343.455000px;}
.y5{bottom:344.625000px;}
.y4a{bottom:347.445000px;}
.y5c{bottom:350.820000px;}
.y86{bottom:352.125000px;}
.y10{bottom:354.855000px;}
.y38{bottom:368.550000px;}
.y80{bottom:368.850000px;}
.y2f{bottom:375.495000px;}
.y73{bottom:375.600000px;}
.y44{bottom:383.475000px;}
.y64{bottom:384.405000px;}
.y5b{bottom:386.880000px;}
.y4d{bottom:387.450000px;}
.yf{bottom:398.775000px;}
.y37{bottom:401.250000px;}
.y72{bottom:415.050000px;}
.y3e{bottom:419.550000px;}
.y63{bottom:420.495000px;}
.y85{bottom:420.750000px;}
.y5a{bottom:422.925000px;}
.y1e{bottom:424.530000px;}
.y59{bottom:431.475000px;}
.y7f{bottom:433.050000px;}
.y36{bottom:433.905000px;}
.y3{bottom:438.030000px;}
.ye{bottom:441.600000px;}
.y2e{bottom:446.280000px;}
.y84{bottom:453.405000px;}
.y1d{bottom:453.825000px;}
.y3d{bottom:455.595000px;}
.y50{bottom:455.820000px;}
.y62{bottom:456.525000px;}
.y7b{bottom:457.650000px;}
.y79{bottom:458.400000px;}
.y19{bottom:458.970000px;}
.y8{bottom:461.595000px;}
.y7e{bottom:465.720000px;}
.y35{bottom:466.575000px;}
.y45{bottom:484.275000px;}
.yd{bottom:484.425000px;}
.y83{bottom:486.075000px;}
.y3c{bottom:491.625000px;}
.y4f{bottom:491.850000px;}
.y18{bottom:495.045000px;}
.y7d{bottom:498.420000px;}
.y58{bottom:503.595000px;}
.y34{bottom:516.450000px;}
.y65{bottom:522.120000px;}
.y3b{bottom:527.700000px;}
.y4e{bottom:527.880000px;}
.y17{bottom:531.075000px;}
.y25{bottom:532.170000px;}
.y7c{bottom:562.725000px;}
.y7a{bottom:563.100000px;}
.y16{bottom:567.120000px;}
.yc{bottom:571.155000px;}
.y57{bottom:574.575000px;}
.y2a{bottom:584.100000px;}
.y15{bottom:603.150000px;}
.y71{bottom:606.570000px;}
.y9{bottom:638.070000px;}
.y14{bottom:657.675000px;}
.yb{bottom:657.900000px;}
.y56{bottom:701.550000px;}
.y13{bottom:711.195000px;}
.h1{height:58.334985px;}
.h19{height:71.613281px;}
.h18{height:71.762476px;}
.h8{height:72.372656px;}
.h5{height:73.876245px;}
.hb{height:80.622656px;}
.h4{height:82.485498px;}
.h14{height:82.591113px;}
.h3{height:85.189966px;}
.h11{height:87.545654px;}
.h10{height:87.699243px;}
.h1b{height:92.900684px;}
.h17{height:107.569116px;}
.h15{height:109.942529px;}
.h7{height:110.737573px;}
.h12{height:112.237573px;}
.he{height:120.996606px;}
.hf{height:121.145801px;}
.hd{height:124.560571px;}
.h13{height:124.714160px;}
.h9{height:147.598901px;}
.ha{height:147.752490px;}
.h16{height:150.512490px;}
.hc{height:221.475146px;}
.h6{height:245.238574px;}
.h2{height:272.159473px;}
.h1a{height:272.313062px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x5{left:60.449979px;}
.x2c{left:71.024979px;}
.xc{left:72.337479px;}
.x30{left:73.912479px;}
.xa{left:76.274979px;}
.x20{left:81.262479px;}
.x18{left:92.887479px;}
.x9{left:93.974979px;}
.x2d{left:111.524979px;}
.x1c{left:114.487479px;}
.x21{left:121.799979px;}
.x19{left:126.674979px;}
.x11{left:146.849979px;}
.x24{left:148.274979px;}
.x2{left:156.029979px;}
.x13{left:177.779979px;}
.xe{left:190.994979px;}
.x1f{left:245.849979px;}
.xd{left:281.024979px;}
.x17{left:302.099979px;}
.x12{left:310.394979px;}
.x25{left:330.869979px;}
.x27{left:334.319979px;}
.x14{left:343.049979px;}
.x1{left:374.024979px;}
.x8{left:376.694979px;}
.x3{left:432.629979px;}
.x28{left:509.219979px;}
.x7{left:511.904979px;}
.x2b{left:541.649979px;}
.x29{left:542.999979px;}
.xf{left:611.129979px;}
.x2e{left:625.904979px;}
.x10{left:694.904979px;}
.x4{left:727.499979px;}
.x2f{left:750.344979px;}
.xb{left:751.349979px;}
.x15{left:766.124979px;}
.x1a{left:773.294979px;}
.x22{left:776.774979px;}
.x32{left:803.294979px;}
.x1b{left:807.074979px;}
.x23{left:817.319979px;}
.x16{left:908.594979px;}
.x31{left:934.874979px;}
.x2a{left:959.699979px;}
.x6{left:1112.249979px;}
.x1d{left:1153.319979px;}
.x1e{left:1188.599979px;}
.x26{left:1290.449979px;}
@media print{
.v1{vertical-align:-1.200000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.333333pt;}
.v4{vertical-align:2.453333pt;}
.v2{vertical-align:7.333333pt;}
.ls6{letter-spacing:-0.515733pt;}
.ls7{letter-spacing:-0.448000pt;}
.lsc{letter-spacing:-0.139200pt;}
.lsa{letter-spacing:-0.033333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.247200pt;}
.ls2{letter-spacing:0.288400pt;}
.ls11{letter-spacing:0.300533pt;}
.ls12{letter-spacing:0.885333pt;}
.ls8{letter-spacing:1.248000pt;}
.ls9{letter-spacing:1.504000pt;}
.ls3{letter-spacing:1.626667pt;}
.ls13{letter-spacing:1.888000pt;}
.ls15{letter-spacing:82.106667pt;}
.ls14{letter-spacing:82.153333pt;}
.lsb{letter-spacing:82.240000pt;}
.ls1{letter-spacing:82.286667pt;}
.ls5{letter-spacing:86.460000pt;}
.ls4{letter-spacing:86.486667pt;}
.ls16{letter-spacing:86.513333pt;}
.ls18{letter-spacing:106.106667pt;}
.ls17{letter-spacing:106.153333pt;}
.lse{letter-spacing:106.180000pt;}
.ls19{letter-spacing:106.260000pt;}
.lsd{letter-spacing:106.286667pt;}
.lsf{letter-spacing:110.486667pt;}
.ls10{letter-spacing:110.513333pt;}
.ws16{word-spacing:-108.266667pt;}
.ws10{word-spacing:-53.396267pt;}
.ws17{word-spacing:-43.452267pt;}
.ws15{word-spacing:-28.958133pt;}
.wse{word-spacing:-28.818933pt;}
.wsf{word-spacing:-25.323467pt;}
.ws6{word-spacing:-24.468267pt;}
.ws5{word-spacing:-24.438133pt;}
.ws4{word-spacing:-22.014533pt;}
.ws3{word-spacing:-21.726133pt;}
.ws11{word-spacing:-17.206133pt;}
.ws14{word-spacing:-17.176000pt;}
.wsc{word-spacing:-15.742133pt;}
.ws9{word-spacing:-14.494133pt;}
.wsb{word-spacing:-14.464000pt;}
.ws1{word-spacing:-0.288400pt;}
.ws0{word-spacing:0.000000pt;}
.wsa{word-spacing:34.437333pt;}
.ws8{word-spacing:34.509200pt;}
.ws13{word-spacing:82.437333pt;}
.ws12{word-spacing:82.509200pt;}
.ws7{word-spacing:664.492533pt;}
.ws2{word-spacing:1031.414533pt;}
.wsd{word-spacing:1916.312133pt;}
._14{margin-left:-15.574400pt;}
._13{margin-left:-12.228267pt;}
._a{margin-left:-10.455867pt;}
._18{margin-left:-9.399867pt;}
._11{margin-left:-8.166133pt;}
._7{margin-left:-7.043600pt;}
._5{margin-left:-5.670400pt;}
._6{margin-left:-3.877867pt;}
._2{margin-left:-2.346000pt;}
._3{margin-left:-1.094800pt;}
._1{width:1.042667pt;}
._0{width:2.293867pt;}
._4{width:3.805733pt;}
._8{width:5.166800pt;}
._17{width:22.871733pt;}
._15{width:126.436533pt;}
._9{width:159.076533pt;}
._c{width:213.106400pt;}
._d{width:214.237333pt;}
._10{width:758.117600pt;}
._e{width:1072.177067pt;}
._12{width:1384.181200pt;}
._16{width:1635.226400pt;}
._f{width:1959.610800pt;}
._b{width:2082.556133pt;}
.fs6{font-size:52.000000pt;}
.fs0{font-size:52.133333pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:64.133333pt;}
.fsd{font-size:76.000000pt;}
.fs2{font-size:76.133333pt;}
.fs3{font-size:96.133333pt;}
.fsb{font-size:108.133333pt;}
.fsc{font-size:108.266667pt;}
.fs8{font-size:128.133333pt;}
.fs9{font-size:128.266667pt;}
.fsa{font-size:192.266667pt;}
.fs1{font-size:236.266667pt;}
.fse{font-size:236.400000pt;}
.fs5{font-size:288.400000pt;}
.y0{bottom:0.000000pt;}
.y12{bottom:24.533333pt;}
.y1{bottom:24.933333pt;}
.ya{bottom:26.366667pt;}
.y2{bottom:27.200000pt;}
.y7{bottom:27.533333pt;}
.y33{bottom:85.666667pt;}
.y43{bottom:89.600000pt;}
.y24{bottom:98.366667pt;}
.y32{bottom:104.666667pt;}
.y70{bottom:113.533333pt;}
.y61{bottom:117.433333pt;}
.y23{bottom:123.400000pt;}
.y31{bottom:123.700000pt;}
.y28{bottom:127.500000pt;}
.y2d{bottom:141.066667pt;}
.y22{bottom:149.440000pt;}
.y1b{bottom:156.360000pt;}
.y27{bottom:159.560000pt;}
.y69{bottom:166.666667pt;}
.y2c{bottom:173.093333pt;}
.y78{bottom:180.626667pt;}
.y60{bottom:183.666667pt;}
.y55{bottom:188.066667pt;}
.y26{bottom:191.600000pt;}
.y42{bottom:199.466667pt;}
.y49{bottom:199.760000pt;}
.y2b{bottom:205.173333pt;}
.y6f{bottom:210.173333pt;}
.y82{bottom:211.693333pt;}
.y77{bottom:212.666667pt;}
.y5f{bottom:215.693333pt;}
.y6e{bottom:216.173333pt;}
.y54{bottom:217.106667pt;}
.y68{bottom:219.560000pt;}
.y41{bottom:231.506667pt;}
.y48{bottom:231.840000pt;}
.y21{bottom:232.173333pt;}
.y4{bottom:233.466667pt;}
.y11{bottom:238.333333pt;}
.y81{bottom:240.733333pt;}
.y6c{bottom:242.200000pt;}
.y88{bottom:243.173333pt;}
.y4c{bottom:244.733333pt;}
.y53{bottom:246.133333pt;}
.y5e{bottom:247.760000pt;}
.y6d{bottom:248.200000pt;}
.y67{bottom:251.600000pt;}
.y46{bottom:253.040000pt;}
.y20{bottom:257.200000pt;}
.y1a{bottom:258.360000pt;}
.y40{bottom:263.573333pt;}
.y75{bottom:263.773333pt;}
.y47{bottom:263.866667pt;}
.y3a{bottom:270.533333pt;}
.y87{bottom:272.200000pt;}
.y6b{bottom:274.266667pt;}
.y52{bottom:275.173333pt;}
.y76{bottom:276.773333pt;}
.y4b{bottom:276.800000pt;}
.y6{bottom:277.306667pt;}
.y5d{bottom:279.800000pt;}
.y1f{bottom:283.266667pt;}
.y29{bottom:283.466667pt;}
.y66{bottom:283.640000pt;}
.y3f{bottom:295.600000pt;}
.y39{bottom:298.560000pt;}
.y74{bottom:298.840000pt;}
.y51{bottom:304.240000pt;}
.y1c{bottom:304.560000pt;}
.y30{bottom:304.733333pt;}
.y6a{bottom:305.293333pt;}
.y5{bottom:306.333333pt;}
.y4a{bottom:308.840000pt;}
.y5c{bottom:311.840000pt;}
.y86{bottom:313.000000pt;}
.y10{bottom:315.426667pt;}
.y38{bottom:327.600000pt;}
.y80{bottom:327.866667pt;}
.y2f{bottom:333.773333pt;}
.y73{bottom:333.866667pt;}
.y44{bottom:340.866667pt;}
.y64{bottom:341.693333pt;}
.y5b{bottom:343.893333pt;}
.y4d{bottom:344.400000pt;}
.yf{bottom:354.466667pt;}
.y37{bottom:356.666667pt;}
.y72{bottom:368.933333pt;}
.y3e{bottom:372.933333pt;}
.y63{bottom:373.773333pt;}
.y85{bottom:374.000000pt;}
.y5a{bottom:375.933333pt;}
.y1e{bottom:377.360000pt;}
.y59{bottom:383.533333pt;}
.y7f{bottom:384.933333pt;}
.y36{bottom:385.693333pt;}
.y3{bottom:389.360000pt;}
.ye{bottom:392.533333pt;}
.y2e{bottom:396.693333pt;}
.y84{bottom:403.026667pt;}
.y1d{bottom:403.400000pt;}
.y3d{bottom:404.973333pt;}
.y50{bottom:405.173333pt;}
.y62{bottom:405.800000pt;}
.y7b{bottom:406.800000pt;}
.y79{bottom:407.466667pt;}
.y19{bottom:407.973333pt;}
.y8{bottom:410.306667pt;}
.y7e{bottom:413.973333pt;}
.y35{bottom:414.733333pt;}
.y45{bottom:430.466667pt;}
.yd{bottom:430.600000pt;}
.y83{bottom:432.066667pt;}
.y3c{bottom:437.000000pt;}
.y4f{bottom:437.200000pt;}
.y18{bottom:440.040000pt;}
.y7d{bottom:443.040000pt;}
.y58{bottom:447.640000pt;}
.y34{bottom:459.066667pt;}
.y65{bottom:464.106667pt;}
.y3b{bottom:469.066667pt;}
.y4e{bottom:469.226667pt;}
.y17{bottom:472.066667pt;}
.y25{bottom:473.040000pt;}
.y7c{bottom:500.200000pt;}
.y7a{bottom:500.533333pt;}
.y16{bottom:504.106667pt;}
.yc{bottom:507.693333pt;}
.y57{bottom:510.733333pt;}
.y2a{bottom:519.200000pt;}
.y15{bottom:536.133333pt;}
.y71{bottom:539.173333pt;}
.y9{bottom:567.173333pt;}
.y14{bottom:584.600000pt;}
.yb{bottom:584.800000pt;}
.y56{bottom:623.600000pt;}
.y13{bottom:632.173333pt;}
.h1{height:51.853320pt;}
.h19{height:63.656250pt;}
.h18{height:63.788867pt;}
.h8{height:64.331250pt;}
.h5{height:65.667773pt;}
.hb{height:71.664583pt;}
.h4{height:73.320443pt;}
.h14{height:73.414323pt;}
.h3{height:75.724414pt;}
.h11{height:77.818359pt;}
.h10{height:77.954883pt;}
.h1b{height:82.578385pt;}
.h17{height:95.616992pt;}
.h15{height:97.726693pt;}
.h7{height:98.433398pt;}
.h12{height:99.766732pt;}
.he{height:107.552539pt;}
.hf{height:107.685156pt;}
.hd{height:110.720508pt;}
.h13{height:110.857031pt;}
.h9{height:131.199023pt;}
.ha{height:131.335547pt;}
.h16{height:133.788880pt;}
.hc{height:196.866797pt;}
.h6{height:217.989844pt;}
.h2{height:241.919531pt;}
.h1a{height:242.056055pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x5{left:53.733314pt;}
.x2c{left:63.133314pt;}
.xc{left:64.299981pt;}
.x30{left:65.699981pt;}
.xa{left:67.799981pt;}
.x20{left:72.233314pt;}
.x18{left:82.566648pt;}
.x9{left:83.533314pt;}
.x2d{left:99.133314pt;}
.x1c{left:101.766648pt;}
.x21{left:108.266648pt;}
.x19{left:112.599981pt;}
.x11{left:130.533314pt;}
.x24{left:131.799981pt;}
.x2{left:138.693314pt;}
.x13{left:158.026648pt;}
.xe{left:169.773314pt;}
.x1f{left:218.533314pt;}
.xd{left:249.799981pt;}
.x17{left:268.533314pt;}
.x12{left:275.906648pt;}
.x25{left:294.106648pt;}
.x27{left:297.173314pt;}
.x14{left:304.933314pt;}
.x1{left:332.466648pt;}
.x8{left:334.839981pt;}
.x3{left:384.559981pt;}
.x28{left:452.639981pt;}
.x7{left:455.026648pt;}
.x2b{left:481.466648pt;}
.x29{left:482.666648pt;}
.xf{left:543.226648pt;}
.x2e{left:556.359981pt;}
.x10{left:617.693314pt;}
.x4{left:646.666648pt;}
.x2f{left:666.973314pt;}
.xb{left:667.866648pt;}
.x15{left:680.999981pt;}
.x1a{left:687.373314pt;}
.x22{left:690.466648pt;}
.x32{left:714.039981pt;}
.x1b{left:717.399981pt;}
.x23{left:726.506648pt;}
.x16{left:807.639981pt;}
.x31{left:830.999981pt;}
.x2a{left:853.066648pt;}
.x6{left:988.666648pt;}
.x1d{left:1025.173314pt;}
.x1e{left:1056.533314pt;}
.x26{left:1147.066648pt;}
}




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