
    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_f1bf6ecbc77e2d1d53f2cce0.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_8663166764a4a17d31830e1f.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_3ce3de7b127ed09d14885efb.woff')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_09f3f2d1063d1631c97d2021.woff')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_d0c7cbf13512a2d9c24f43b0.woff')format("woff");}.ff5{font-family:ff5;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_0d1f0ccadc11ebd248edb160.woff')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_f7205d2e078a6a1efa0d8d29.woff')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_13e93b467135a6f49eacc651.woff')format("woff");}.ff8{font-family:ff8;line-height:0.958008;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_ec86fbcb26244874e2518d07.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_349764e7a3c4985d4d80941f.woff')format("woff");}.ffa{font-family:ffa;line-height:0.923340;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_e0897e35624a9fa910827244.woff')format("woff");}.ffb{font-family:ffb;line-height:0.923340;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:ffc;src:url('chunks/assets/font_40dbb569fc68043c6c2a978d.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_4bb065848c2c76636623fb99.woff')format("woff");}.ffd{font-family:ffd;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_5a3faac5ea979f4bc8c526df.woff')format("woff");}.ffe{font-family:ffe;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_2f396b51d43c2ef31e46d152.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_c68ffdcfef94e355ca347b04.woff')format("woff");}.ff11{font-family:ff11;line-height:0.934082;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:ff12;src:url('chunks/assets/font_c9e9f9dfe0ebe21971c084c4.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ff13{font-family:ff13;line-height:0.910156;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:-13.500000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.lsb{letter-spacing:-2.724000px;}
.lsf{letter-spacing:-1.482000px;}
.lse{letter-spacing:-1.128000px;}
.lsc{letter-spacing:-0.792000px;}
.ls10{letter-spacing:-0.780000px;}
.lsa{letter-spacing:-0.378000px;}
.ls9{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.090000px;}
.lsd{letter-spacing:0.690000px;}
.ls1{letter-spacing:1.476000px;}
.ls2{letter-spacing:1.854000px;}
.ls4{letter-spacing:1.906500px;}
.ls3{letter-spacing:1.966500px;}
.ls15{letter-spacing:2.164500px;}
.ls5{letter-spacing:2.250000px;}
.ls8{letter-spacing:4.779000px;}
.ls14{letter-spacing:7.860000px;}
.ls6{letter-spacing:8.055000px;}
.ls0{letter-spacing:14.916000px;}
.ls16{letter-spacing:15.237000px;}
.ls7{letter-spacing:46.797000px;}
.ls11{letter-spacing:46.887000px;}
.ls13{letter-spacing:64.887000px;}
.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;}
}
.ws7{word-spacing:-16.875000px;}
.wsa{word-spacing:-16.789500px;}
.ws4{word-spacing:-16.146000px;}
.ws3{word-spacing:-15.354000px;}
.ws6{word-spacing:-14.625000px;}
.ws8{word-spacing:-13.221000px;}
.ws2{word-spacing:-12.531000px;}
.ws0{word-spacing:-12.204000px;}
.ws1{word-spacing:-11.826000px;}
.ws5{word-spacing:-8.136000px;}
.ws9{word-spacing:0.000000px;}
._7{margin-left:-8.131500px;}
._19{margin-left:-7.024500px;}
._9{margin-left:-5.562000px;}
._8{margin-left:-3.708000px;}
._2{margin-left:-2.592000px;}
._1{margin-left:-1.188000px;}
._0{width:1.944000px;}
._4{width:2.988000px;}
._16{width:3.991500px;}
._5{width:5.016000px;}
._3{width:6.348000px;}
._c{width:7.365000px;}
._a{width:8.374500px;}
._6{width:10.122000px;}
._f{width:11.440500px;}
._b{width:12.525000px;}
._e{width:16.060500px;}
._d{width:17.446500px;}
._1a{width:18.850500px;}
._10{width:21.217500px;}
._17{width:23.049000px;}
._18{width:25.722000px;}
._1b{width:26.841000px;}
._12{width:29.688000px;}
._13{width:31.299000px;}
._11{width:34.231500px;}
._14{width:38.992500px;}
._15{width:40.059000px;}
.fc7{color:rgb(55,65,81);}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc6{color:rgb(17,17,17);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs5{font-size:40.500000px;}
.fs3{font-size:49.500000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:58.500000px;}
.fs1{font-size:67.500000px;}
.fs2{font-size:72.000000px;}
.fs6{font-size:85.650000px;}
.y0{bottom:0.000000px;}
.y18{bottom:2.280000px;}
.y3{bottom:3.375000px;}
.y1a{bottom:11.250000px;}
.ye{bottom:11.280000px;}
.yc{bottom:13.500000px;}
.y59{bottom:14.670000px;}
.y4{bottom:16.875000px;}
.y58{bottom:18.045000px;}
.y2{bottom:19.125000px;}
.y17{bottom:19.155000px;}
.y56{bottom:21.405000px;}
.yb{bottom:30.405000px;}
.y16{bottom:36.030000px;}
.y55{bottom:38.280000px;}
.ya{bottom:46.155000px;}
.y15{bottom:49.575000px;}
.y54{bottom:55.155000px;}
.y5{bottom:57.412500px;}
.y14{bottom:58.575000px;}
.y53{bottom:73.185000px;}
.y9{bottom:73.200000px;}
.y1{bottom:81.075000px;}
.y13{bottom:86.730000px;}
.y52{bottom:90.060000px;}
.y8{bottom:93.450000px;}
.y12{bottom:100.230000px;}
.y51{bottom:106.980000px;}
.y7{bottom:110.355000px;}
.y50{bottom:124.980000px;}
.y11{bottom:126.105000px;}
.ybf{bottom:126.112500px;}
.y5d{bottom:128.362500px;}
.y99{bottom:131.737500px;}
.y4f{bottom:141.855000px;}
.ybe{bottom:142.987500px;}
.y5c{bottom:145.237500px;}
.y98{bottom:149.737500px;}
.y10{bottom:149.775000px;}
.y4e{bottom:158.760000px;}
.ybd{bottom:159.900000px;}
.y5b{bottom:163.275000px;}
.y97{bottom:166.650000px;}
.y4d{bottom:176.775000px;}
.ybc{bottom:177.900000px;}
.y5a{bottom:180.150000px;}
.y96{bottom:183.525000px;}
.y57{bottom:193.650000px;}
.y4c{bottom:193.680000px;}
.ybb{bottom:194.775000px;}
.y95{bottom:201.570000px;}
.y4b{bottom:210.555000px;}
.yba{bottom:211.695000px;}
.y94{bottom:218.445000px;}
.y1b{bottom:222.945000px;}
.y4a{bottom:228.585000px;}
.yb9{bottom:229.695000px;}
.y93{bottom:235.320000px;}
.y49{bottom:245.460000px;}
.yb8{bottom:246.600000px;}
.y92{bottom:253.350000px;}
.y48{bottom:262.335000px;}
.yb7{bottom:263.475000px;}
.y91{bottom:270.225000px;}
.y31{bottom:270.255000px;}
.y47{bottom:280.380000px;}
.yb6{bottom:281.475000px;}
.y30{bottom:286.005000px;}
.y90{bottom:287.130000px;}
.y46{bottom:297.255000px;}
.yb5{bottom:298.395000px;}
.y2f{bottom:304.005000px;}
.y8f{bottom:305.145000px;}
.y45{bottom:314.175000px;}
.yb4{bottom:316.380000px;}
.y2e{bottom:320.925000px;}
.y8e{bottom:322.020000px;}
.y44{bottom:332.160000px;}
.yb3{bottom:334.425000px;}
.y2d{bottom:338.910000px;}
.y8d{bottom:338.925000px;}
.y43{bottom:349.035000px;}
.yb2{bottom:351.300000px;}
.y2c{bottom:355.830000px;}
.y8c{bottom:356.925000px;}
.y42{bottom:365.955000px;}
.yb1{bottom:369.345000px;}
.y2b{bottom:372.705000px;}
.y8b{bottom:373.830000px;}
.y41{bottom:383.955000px;}
.yb0{bottom:387.330000px;}
.y2a{bottom:390.705000px;}
.y40{bottom:400.875000px;}
.yaf{bottom:405.330000px;}
.y29{bottom:407.625000px;}
.y8a{bottom:408.705000px;}
.y3f{bottom:417.750000px;}
.yae{bottom:422.250000px;}
.y28{bottom:425.625000px;}
.y3e{bottom:435.750000px;}
.yad{bottom:440.250000px;}
.y89{bottom:442.500000px;}
.y27{bottom:442.530000px;}
.y3d{bottom:452.655000px;}
.yac{bottom:457.170000px;}
.y26{bottom:460.530000px;}
.y88{bottom:460.545000px;}
.y3c{bottom:469.530000px;}
.yab{bottom:474.045000px;}
.y25{bottom:477.405000px;}
.y87{bottom:477.420000px;}
.y3b{bottom:487.560000px;}
.yaa{bottom:492.030000px;}
.y86{bottom:494.325000px;}
.y24{bottom:495.435000px;}
.y3a{bottom:504.435000px;}
.ya9{bottom:508.950000px;}
.y23{bottom:512.310000px;}
.y85{bottom:512.325000px;}
.y39{bottom:521.355000px;}
.ya8{bottom:525.825000px;}
.y84{bottom:529.200000px;}
.y22{bottom:530.355000px;}
.y38{bottom:539.355000px;}
.ya7{bottom:543.870000px;}
.y83{bottom:546.120000px;}
.y21{bottom:547.230000px;}
.y37{bottom:556.230000px;}
.ya6{bottom:560.745000px;}
.y82{bottom:564.120000px;}
.y20{bottom:565.260000px;}
.y36{bottom:573.135000px;}
.ya5{bottom:577.650000px;}
.y81{bottom:581.025000px;}
.y1f{bottom:582.135000px;}
.y35{bottom:591.135000px;}
.ya4{bottom:595.650000px;}
.y80{bottom:597.900000px;}
.y1e{bottom:599.010000px;}
.y34{bottom:608.055000px;}
.ya3{bottom:612.525000px;}
.y7f{bottom:615.900000px;}
.y33{bottom:624.930000px;}
.y1d{bottom:627.180000px;}
.ya2{bottom:629.445000px;}
.y7e{bottom:632.820000px;}
.y32{bottom:642.930000px;}
.y1c{bottom:645.180000px;}
.ya1{bottom:647.445000px;}
.y7d{bottom:649.695000px;}
.ya0{bottom:664.350000px;}
.y7c{bottom:667.725000px;}
.y9f{bottom:681.225000px;}
.y7b{bottom:684.600000px;}
.y9e{bottom:699.225000px;}
.y7a{bottom:701.475000px;}
.y9d{bottom:717.255000px;}
.y79{bottom:719.520000px;}
.y9c{bottom:734.130000px;}
.y78{bottom:736.395000px;}
.y9b{bottom:752.175000px;}
.y77{bottom:753.300000px;}
.y9a{bottom:770.175000px;}
.y76{bottom:771.300000px;}
.y75{bottom:788.205000px;}
.y74{bottom:805.080000px;}
.y73{bottom:823.080000px;}
.y72{bottom:840.000000px;}
.y71{bottom:856.875000px;}
.y70{bottom:874.920000px;}
.y19{bottom:879.420000px;}
.y6f{bottom:891.795000px;}
.yf{bottom:908.670000px;}
.y6e{bottom:926.700000px;}
.y6d{bottom:943.575000px;}
.y6c{bottom:960.495000px;}
.y6b{bottom:978.495000px;}
.y6a{bottom:995.400000px;}
.y69{bottom:1012.275000px;}
.y68{bottom:1030.275000px;}
.y67{bottom:1047.195000px;}
.y66{bottom:1064.070000px;}
.yd{bottom:1068.570000px;}
.y65{bottom:1082.100000px;}
.y6{bottom:1094.475000px;}
.y64{bottom:1098.975000px;}
.y63{bottom:1115.850000px;}
.y62{bottom:1133.880000px;}
.y61{bottom:1150.755000px;}
.y60{bottom:1167.675000px;}
.y5f{bottom:1185.675000px;}
.y5e{bottom:1202.580000px;}
.hb{height:25.912500px;}
.h13{height:29.235000px;}
.h1e{height:29.287500px;}
.h11{height:29.953125px;}
.hd{height:30.375000px;}
.h2{height:32.625000px;}
.hf{height:35.806641px;}
.h8{height:37.125000px;}
.h1a{height:39.832031px;}
.h12{height:40.282471px;}
.h1c{height:40.847168px;}
.h1b{height:41.275635px;}
.h18{height:41.389893px;}
.h1d{height:42.589600px;}
.ha{height:43.875000px;}
.h17{height:47.074219px;}
.h16{height:49.234131px;}
.h4{height:53.709961px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.h19{height:58.185791px;}
.h10{height:59.899658px;}
.he{height:64.237500px;}
.h5{height:69.114990px;}
.h6{height:71.613281px;}
.h14{height:73.722656px;}
.h7{height:121.612500px;}
.hc{height:159.885000px;}
.h15{height:656.475000px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w2{width:74.362500px;}
.w4{width:152.055000px;}
.w7{width:223.020000px;}
.w8{width:524.925000px;}
.w5{width:595.875000px;}
.w1{width:674.745000px;}
.w6{width:747.945000px;}
.w3{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:7.875000px;}
.x2{left:9.037500px;}
.x16{left:12.420000px;}
.xe{left:15.750000px;}
.x17{left:39.420000px;}
.x12{left:57.412500px;}
.x1{left:72.075000px;}
.x5{left:73.237500px;}
.x4{left:81.112487px;}
.x18{left:85.612487px;}
.x11{left:94.612500px;}
.x6{left:97.987500px;}
.x1a{left:108.149987px;}
.x19{left:112.649987px;}
.x1c{left:113.774987px;}
.x1b{left:135.187487px;}
.x13{left:140.782500px;}
.x10{left:153.187500px;}
.x14{left:214.012500px;}
.x7{left:225.300000px;}
.xf{left:266.962500px;}
.xb{left:290.625000px;}
.x15{left:296.250000px;}
.x9{left:345.780000px;}
.xa{left:364.950000px;}
.xd{left:373.957500px;}
.xc{left:453.945000px;}
.x3{left:746.820000px;}
@media print{
.v2{vertical-align:-12.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.lsb{letter-spacing:-2.421333pt;}
.lsf{letter-spacing:-1.317333pt;}
.lse{letter-spacing:-1.002667pt;}
.lsc{letter-spacing:-0.704000pt;}
.ls10{letter-spacing:-0.693333pt;}
.lsa{letter-spacing:-0.336000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.080000pt;}
.lsd{letter-spacing:0.613333pt;}
.ls1{letter-spacing:1.312000pt;}
.ls2{letter-spacing:1.648000pt;}
.ls4{letter-spacing:1.694667pt;}
.ls3{letter-spacing:1.748000pt;}
.ls15{letter-spacing:1.924000pt;}
.ls5{letter-spacing:2.000000pt;}
.ls8{letter-spacing:4.248000pt;}
.ls14{letter-spacing:6.986667pt;}
.ls6{letter-spacing:7.160000pt;}
.ls0{letter-spacing:13.258667pt;}
.ls16{letter-spacing:13.544000pt;}
.ls7{letter-spacing:41.597333pt;}
.ls11{letter-spacing:41.677333pt;}
.ls13{letter-spacing:57.677333pt;}
.ws7{word-spacing:-15.000000pt;}
.wsa{word-spacing:-14.924000pt;}
.ws4{word-spacing:-14.352000pt;}
.ws3{word-spacing:-13.648000pt;}
.ws6{word-spacing:-13.000000pt;}
.ws8{word-spacing:-11.752000pt;}
.ws2{word-spacing:-11.138667pt;}
.ws0{word-spacing:-10.848000pt;}
.ws1{word-spacing:-10.512000pt;}
.ws5{word-spacing:-7.232000pt;}
.ws9{word-spacing:0.000000pt;}
._7{margin-left:-7.228000pt;}
._19{margin-left:-6.244000pt;}
._9{margin-left:-4.944000pt;}
._8{margin-left:-3.296000pt;}
._2{margin-left:-2.304000pt;}
._1{margin-left:-1.056000pt;}
._0{width:1.728000pt;}
._4{width:2.656000pt;}
._16{width:3.548000pt;}
._5{width:4.458667pt;}
._3{width:5.642667pt;}
._c{width:6.546667pt;}
._a{width:7.444000pt;}
._6{width:8.997333pt;}
._f{width:10.169333pt;}
._b{width:11.133333pt;}
._e{width:14.276000pt;}
._d{width:15.508000pt;}
._1a{width:16.756000pt;}
._10{width:18.860000pt;}
._17{width:20.488000pt;}
._18{width:22.864000pt;}
._1b{width:23.858667pt;}
._12{width:26.389333pt;}
._13{width:27.821333pt;}
._11{width:30.428000pt;}
._14{width:34.660000pt;}
._15{width:35.608000pt;}
.fs7{font-size:32.000000pt;}
.fs5{font-size:36.000000pt;}
.fs3{font-size:44.000000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:52.000000pt;}
.fs1{font-size:60.000000pt;}
.fs2{font-size:64.000000pt;}
.fs6{font-size:76.133333pt;}
.y0{bottom:0.000000pt;}
.y18{bottom:2.026667pt;}
.y3{bottom:3.000000pt;}
.y1a{bottom:10.000000pt;}
.ye{bottom:10.026667pt;}
.yc{bottom:12.000000pt;}
.y59{bottom:13.040000pt;}
.y4{bottom:15.000000pt;}
.y58{bottom:16.040000pt;}
.y2{bottom:17.000000pt;}
.y17{bottom:17.026667pt;}
.y56{bottom:19.026667pt;}
.yb{bottom:27.026667pt;}
.y16{bottom:32.026667pt;}
.y55{bottom:34.026667pt;}
.ya{bottom:41.026667pt;}
.y15{bottom:44.066667pt;}
.y54{bottom:49.026667pt;}
.y5{bottom:51.033333pt;}
.y14{bottom:52.066667pt;}
.y53{bottom:65.053333pt;}
.y9{bottom:65.066667pt;}
.y1{bottom:72.066667pt;}
.y13{bottom:77.093333pt;}
.y52{bottom:80.053333pt;}
.y8{bottom:83.066667pt;}
.y12{bottom:89.093333pt;}
.y51{bottom:95.093333pt;}
.y7{bottom:98.093333pt;}
.y50{bottom:111.093333pt;}
.y11{bottom:112.093333pt;}
.ybf{bottom:112.100000pt;}
.y5d{bottom:114.100000pt;}
.y99{bottom:117.100000pt;}
.y4f{bottom:126.093333pt;}
.ybe{bottom:127.100000pt;}
.y5c{bottom:129.100000pt;}
.y98{bottom:133.100000pt;}
.y10{bottom:133.133333pt;}
.y4e{bottom:141.120000pt;}
.ybd{bottom:142.133333pt;}
.y5b{bottom:145.133333pt;}
.y97{bottom:148.133333pt;}
.y4d{bottom:157.133333pt;}
.ybc{bottom:158.133333pt;}
.y5a{bottom:160.133333pt;}
.y96{bottom:163.133333pt;}
.y57{bottom:172.133333pt;}
.y4c{bottom:172.160000pt;}
.ybb{bottom:173.133333pt;}
.y95{bottom:179.173333pt;}
.y4b{bottom:187.160000pt;}
.yba{bottom:188.173333pt;}
.y94{bottom:194.173333pt;}
.y1b{bottom:198.173333pt;}
.y4a{bottom:203.186667pt;}
.yb9{bottom:204.173333pt;}
.y93{bottom:209.173333pt;}
.y49{bottom:218.186667pt;}
.yb8{bottom:219.200000pt;}
.y92{bottom:225.200000pt;}
.y48{bottom:233.186667pt;}
.yb7{bottom:234.200000pt;}
.y91{bottom:240.200000pt;}
.y31{bottom:240.226667pt;}
.y47{bottom:249.226667pt;}
.yb6{bottom:250.200000pt;}
.y30{bottom:254.226667pt;}
.y90{bottom:255.226667pt;}
.y46{bottom:264.226667pt;}
.yb5{bottom:265.240000pt;}
.y2f{bottom:270.226667pt;}
.y8f{bottom:271.240000pt;}
.y45{bottom:279.266667pt;}
.yb4{bottom:281.226667pt;}
.y2e{bottom:285.266667pt;}
.y8e{bottom:286.240000pt;}
.y44{bottom:295.253333pt;}
.yb3{bottom:297.266667pt;}
.y2d{bottom:301.253333pt;}
.y8d{bottom:301.266667pt;}
.y43{bottom:310.253333pt;}
.yb2{bottom:312.266667pt;}
.y2c{bottom:316.293333pt;}
.y8c{bottom:317.266667pt;}
.y42{bottom:325.293333pt;}
.yb1{bottom:328.306667pt;}
.y2b{bottom:331.293333pt;}
.y8b{bottom:332.293333pt;}
.y41{bottom:341.293333pt;}
.yb0{bottom:344.293333pt;}
.y2a{bottom:347.293333pt;}
.y40{bottom:356.333333pt;}
.yaf{bottom:360.293333pt;}
.y29{bottom:362.333333pt;}
.y8a{bottom:363.293333pt;}
.y3f{bottom:371.333333pt;}
.yae{bottom:375.333333pt;}
.y28{bottom:378.333333pt;}
.y3e{bottom:387.333333pt;}
.yad{bottom:391.333333pt;}
.y89{bottom:393.333333pt;}
.y27{bottom:393.360000pt;}
.y3d{bottom:402.360000pt;}
.yac{bottom:406.373333pt;}
.y26{bottom:409.360000pt;}
.y88{bottom:409.373333pt;}
.y3c{bottom:417.360000pt;}
.yab{bottom:421.373333pt;}
.y25{bottom:424.360000pt;}
.y87{bottom:424.373333pt;}
.y3b{bottom:433.386667pt;}
.yaa{bottom:437.360000pt;}
.y86{bottom:439.400000pt;}
.y24{bottom:440.386667pt;}
.y3a{bottom:448.386667pt;}
.ya9{bottom:452.400000pt;}
.y23{bottom:455.386667pt;}
.y85{bottom:455.400000pt;}
.y39{bottom:463.426667pt;}
.ya8{bottom:467.400000pt;}
.y84{bottom:470.400000pt;}
.y22{bottom:471.426667pt;}
.y38{bottom:479.426667pt;}
.ya7{bottom:483.440000pt;}
.y83{bottom:485.440000pt;}
.y21{bottom:486.426667pt;}
.y37{bottom:494.426667pt;}
.ya6{bottom:498.440000pt;}
.y82{bottom:501.440000pt;}
.y20{bottom:502.453333pt;}
.y36{bottom:509.453333pt;}
.ya5{bottom:513.466667pt;}
.y81{bottom:516.466667pt;}
.y1f{bottom:517.453333pt;}
.y35{bottom:525.453333pt;}
.ya4{bottom:529.466667pt;}
.y80{bottom:531.466667pt;}
.y1e{bottom:532.453333pt;}
.y34{bottom:540.493333pt;}
.ya3{bottom:544.466667pt;}
.y7f{bottom:547.466667pt;}
.y33{bottom:555.493333pt;}
.y1d{bottom:557.493333pt;}
.ya2{bottom:559.506667pt;}
.y7e{bottom:562.506667pt;}
.y32{bottom:571.493333pt;}
.y1c{bottom:573.493333pt;}
.ya1{bottom:575.506667pt;}
.y7d{bottom:577.506667pt;}
.ya0{bottom:590.533333pt;}
.y7c{bottom:593.533333pt;}
.y9f{bottom:605.533333pt;}
.y7b{bottom:608.533333pt;}
.y9e{bottom:621.533333pt;}
.y7a{bottom:623.533333pt;}
.y9d{bottom:637.560000pt;}
.y79{bottom:639.573333pt;}
.y9c{bottom:652.560000pt;}
.y78{bottom:654.573333pt;}
.y9b{bottom:668.600000pt;}
.y77{bottom:669.600000pt;}
.y9a{bottom:684.600000pt;}
.y76{bottom:685.600000pt;}
.y75{bottom:700.626667pt;}
.y74{bottom:715.626667pt;}
.y73{bottom:731.626667pt;}
.y72{bottom:746.666667pt;}
.y71{bottom:761.666667pt;}
.y70{bottom:777.706667pt;}
.y19{bottom:781.706667pt;}
.y6f{bottom:792.706667pt;}
.yf{bottom:807.706667pt;}
.y6e{bottom:823.733333pt;}
.y6d{bottom:838.733333pt;}
.y6c{bottom:853.773333pt;}
.y6b{bottom:869.773333pt;}
.y6a{bottom:884.800000pt;}
.y69{bottom:899.800000pt;}
.y68{bottom:915.800000pt;}
.y67{bottom:930.840000pt;}
.y66{bottom:945.840000pt;}
.yd{bottom:949.840000pt;}
.y65{bottom:961.866667pt;}
.y6{bottom:972.866667pt;}
.y64{bottom:976.866667pt;}
.y63{bottom:991.866667pt;}
.y62{bottom:1007.893333pt;}
.y61{bottom:1022.893333pt;}
.y60{bottom:1037.933333pt;}
.y5f{bottom:1053.933333pt;}
.y5e{bottom:1068.960000pt;}
.hb{height:23.033333pt;}
.h13{height:25.986667pt;}
.h1e{height:26.033333pt;}
.h11{height:26.625000pt;}
.hd{height:27.000000pt;}
.h2{height:29.000000pt;}
.hf{height:31.828125pt;}
.h8{height:33.000000pt;}
.h1a{height:35.406250pt;}
.h12{height:35.806641pt;}
.h1c{height:36.308594pt;}
.h1b{height:36.689453pt;}
.h18{height:36.791016pt;}
.h1d{height:37.857422pt;}
.ha{height:39.000000pt;}
.h17{height:41.843750pt;}
.h16{height:43.763672pt;}
.h4{height:47.742188pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.h19{height:51.720703pt;}
.h10{height:53.244141pt;}
.he{height:57.100000pt;}
.h5{height:61.435547pt;}
.h6{height:63.656250pt;}
.h14{height:65.531250pt;}
.h7{height:108.100000pt;}
.hc{height:142.120000pt;}
.h15{height:583.533333pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w2{width:66.100000pt;}
.w4{width:135.160000pt;}
.w7{width:198.240000pt;}
.w8{width:466.600000pt;}
.w5{width:529.666667pt;}
.w1{width:599.773333pt;}
.w6{width:664.840000pt;}
.w3{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:7.000000pt;}
.x2{left:8.033333pt;}
.x16{left:11.040000pt;}
.xe{left:14.000000pt;}
.x17{left:35.040000pt;}
.x12{left:51.033333pt;}
.x1{left:64.066667pt;}
.x5{left:65.100000pt;}
.x4{left:72.099988pt;}
.x18{left:76.099988pt;}
.x11{left:84.100000pt;}
.x6{left:87.100000pt;}
.x1a{left:96.133322pt;}
.x19{left:100.133322pt;}
.x1c{left:101.133322pt;}
.x1b{left:120.166655pt;}
.x13{left:125.140000pt;}
.x10{left:136.166667pt;}
.x14{left:190.233333pt;}
.x7{left:200.266667pt;}
.xf{left:237.300000pt;}
.xb{left:258.333333pt;}
.x15{left:263.333333pt;}
.x9{left:307.360000pt;}
.xa{left:324.400000pt;}
.xd{left:332.406667pt;}
.xc{left:403.506667pt;}
.x3{left:663.840000pt;}
}




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