
    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_0d0d56d3ebfb6caa70128a48.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_9f8316d8ae39811e45d698eb.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.157179;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_58d94d8dd8b8ea98e1f598c8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.224121;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_bdbae6188448bc2aef997e10.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.020020;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_f0adc31a68cd549e1081bd8d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.144350;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_4d725f08631669fa580b0cc8.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.157179;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_2c6a6486dc5b9b8663b329cb.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.215332;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;}
.m4{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:7.200000px;}
.v1{vertical-align:156.000000px;}
.ls1{letter-spacing:-0.270000px;}
.ls2{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:34.896000px;}
.ls3{letter-spacing:36.508200px;}
.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;}
}
.ws5{word-spacing:-89.730000px;}
.ws9{word-spacing:-82.896000px;}
.ws2{word-spacing:-77.709256px;}
.ws1{word-spacing:-23.436000px;}
.ws4{word-spacing:-16.620000px;}
.ws7{word-spacing:-16.380000px;}
.ws8{word-spacing:-15.066000px;}
.ws3{word-spacing:-13.123200px;}
.ws0{word-spacing:0.000000px;}
.ws6{word-spacing:34.896000px;}
._9{margin-left:-35.832000px;}
._5{margin-left:-16.740000px;}
._7{margin-left:-13.065600px;}
._4{margin-left:-10.101000px;}
._0{margin-left:-8.256000px;}
._6{margin-left:-6.876600px;}
._3{margin-left:-4.993800px;}
._2{margin-left:-3.443400px;}
._1{margin-left:-1.800000px;}
._8{width:1.073400px;}
.fc3{color:rgb(92,166,41);}
.fc2{color:rgb(100,179,43);}
.fc1{color:rgb(24,23,22);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fsa{font-size:48.000000px;}
.fsb{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:84.000000px;}
.fs9{font-size:90.000000px;}
.fs2{font-size:102.000000px;}
.fs6{font-size:126.000000px;}
.fs5{font-size:240.000000px;}
.fs8{font-size:278.527800px;}
.y0{bottom:0.000000px;}
.yc4{bottom:34.039200px;}
.y4d{bottom:34.039350px;}
.y5{bottom:66.525004px;}
.yc3{bottom:83.995200px;}
.ya1{bottom:85.795200px;}
.y45{bottom:85.795350px;}
.y4{bottom:97.125005px;}
.ya0{bottom:105.295200px;}
.y44{bottom:105.295350px;}
.y9f{bottom:124.795200px;}
.y47{bottom:124.795350px;}
.y22{bottom:139.264499px;}
.y9e{bottom:144.295200px;}
.y43{bottom:144.295350px;}
.y9d{bottom:163.795200px;}
.y42{bottom:163.795350px;}
.y9c{bottom:183.295200px;}
.y41{bottom:183.295350px;}
.y19{bottom:196.933500px;}
.y9b{bottom:202.795200px;}
.y40{bottom:202.795350px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y9a{bottom:222.295200px;}
.y3f{bottom:222.295350px;}
.y73{bottom:226.058700px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y99{bottom:241.795200px;}
.y3e{bottom:241.795350px;}
.y72{bottom:254.566200px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y98{bottom:261.295200px;}
.y3d{bottom:261.295350px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y97{bottom:280.795200px;}
.y3c{bottom:280.795350px;}
.y71{bottom:283.073700px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y96{bottom:300.295200px;}
.y3b{bottom:300.295350px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y70{bottom:311.581200px;}
.ya3{bottom:319.795200px;}
.y3a{bottom:319.795350px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y95{bottom:339.295200px;}
.y39{bottom:339.295350px;}
.y10{bottom:348.133500px;}
.y94{bottom:358.795200px;}
.y38{bottom:358.795350px;}
.y93{bottom:378.295200px;}
.y37{bottom:378.295350px;}
.yf{bottom:386.785499px;}
.y4c{bottom:387.308700px;}
.y92{bottom:397.795200px;}
.y62{bottom:397.795350px;}
.ye{bottom:408.044999px;}
.y4b{bottom:415.816200px;}
.y91{bottom:417.295200px;}
.y36{bottom:417.295350px;}
.y90{bottom:436.795200px;}
.y35{bottom:436.795350px;}
.y4a{bottom:444.323700px;}
.y8f{bottom:456.295200px;}
.y34{bottom:456.295350px;}
.y49{bottom:472.831200px;}
.y8e{bottom:475.795200px;}
.y33{bottom:475.795350px;}
.yd{bottom:484.864502px;}
.y8d{bottom:495.295200px;}
.y32{bottom:495.295350px;}
.y48{bottom:501.331200px;}
.yc{bottom:502.864502px;}
.ya2{bottom:514.795200px;}
.y31{bottom:514.795350px;}
.yb{bottom:520.864502px;}
.y8c{bottom:534.295200px;}
.y30{bottom:534.295350px;}
.yb8{bottom:535.843350px;}
.ya{bottom:538.864499px;}
.y8b{bottom:553.795200px;}
.y2f{bottom:553.795350px;}
.yb7{bottom:553.838850px;}
.y9{bottom:556.864499px;}
.yb6{bottom:571.834350px;}
.y8a{bottom:573.295200px;}
.y2d{bottom:573.295350px;}
.yb5{bottom:589.829850px;}
.y89{bottom:592.795200px;}
.y2e{bottom:592.795350px;}
.yb4{bottom:607.825350px;}
.y88{bottom:612.295200px;}
.y46{bottom:612.295350px;}
.y6f{bottom:616.793700px;}
.yb3{bottom:625.820850px;}
.y87{bottom:631.795200px;}
.y61{bottom:631.795350px;}
.yb2{bottom:643.816350px;}
.y6e{bottom:645.301200px;}
.yc2{bottom:645.382350px;}
.y8{bottom:645.510000px;}
.y86{bottom:651.295200px;}
.y2c{bottom:651.295350px;}
.yb1{bottom:661.811850px;}
.yc1{bottom:663.377850px;}
.y7{bottom:666.771000px;}
.y85{bottom:670.795200px;}
.y60{bottom:670.795350px;}
.y6d{bottom:673.808700px;}
.yc0{bottom:681.373350px;}
.y84{bottom:690.295200px;}
.y5f{bottom:690.295350px;}
.yb0{bottom:699.314850px;}
.ybf{bottom:699.368850px;}
.y6c{bottom:702.316200px;}
.y83{bottom:709.795200px;}
.y5e{bottom:709.795350px;}
.yaf{bottom:717.310350px;}
.y6{bottom:726.298500px;}
.y82{bottom:729.295200px;}
.y5d{bottom:729.295350px;}
.y2b{bottom:730.030800px;}
.y6b{bottom:730.823700px;}
.yae{bottom:735.305850px;}
.ybe{bottom:736.871850px;}
.y81{bottom:748.795200px;}
.y3{bottom:752.599495px;}
.yad{bottom:753.301350px;}
.ybd{bottom:754.867350px;}
.y2a{bottom:758.527800px;}
.y6a{bottom:759.331200px;}
.y80{bottom:768.295200px;}
.ybc{bottom:772.862850px;}
.y29{bottom:787.024800px;}
.y69{bottom:787.795200px;}
.yac{bottom:790.804350px;}
.ybb{bottom:790.858350px;}
.y68{bottom:807.295200px;}
.y5c{bottom:807.295350px;}
.yab{bottom:808.799850px;}
.yba{bottom:808.853850px;}
.y28{bottom:815.521800px;}
.y67{bottom:826.795200px;}
.y5b{bottom:826.795350px;}
.yb9{bottom:826.849350px;}
.y27{bottom:844.018800px;}
.y66{bottom:846.295200px;}
.y5a{bottom:846.295350px;}
.y65{bottom:865.795200px;}
.yaa{bottom:865.795350px;}
.y26{bottom:872.515800px;}
.y2{bottom:879.369000px;}
.y64{bottom:885.295200px;}
.y59{bottom:885.295350px;}
.y63{bottom:904.795200px;}
.y58{bottom:904.795350px;}
.y7f{bottom:924.295200px;}
.y57{bottom:924.295350px;}
.ya8{bottom:933.301200px;}
.y7e{bottom:943.795200px;}
.y56{bottom:943.795350px;}
.ya7{bottom:961.808700px;}
.y7d{bottom:963.295200px;}
.y55{bottom:963.295350px;}
.y25{bottom:964.810350px;}
.y1{bottom:966.726000px;}
.y7c{bottom:982.795200px;}
.y54{bottom:982.795350px;}
.ya6{bottom:990.316200px;}
.y24{bottom:1002.295350px;}
.ya5{bottom:1018.823700px;}
.y7b{bottom:1021.795200px;}
.y53{bottom:1021.795350px;}
.y7a{bottom:1041.295200px;}
.y52{bottom:1041.295350px;}
.ya4{bottom:1047.331200px;}
.y79{bottom:1060.795200px;}
.y23{bottom:1060.795350px;}
.y78{bottom:1080.295200px;}
.y51{bottom:1080.295350px;}
.y77{bottom:1099.795200px;}
.ya9{bottom:1099.795350px;}
.y76{bottom:1119.295200px;}
.y50{bottom:1119.295350px;}
.y75{bottom:1138.795200px;}
.y4f{bottom:1138.795350px;}
.y74{bottom:1158.295200px;}
.y4e{bottom:1158.295350px;}
.h7{height:32.130000px;}
.h10{height:40.778963px;}
.hc{height:43.652344px;}
.h13{height:43.828125px;}
.h15{height:44.998996px;}
.h6{height:45.900000px;}
.h17{height:47.199107px;}
.h3{height:48.195000px;}
.h16{height:49.306641px;}
.h11{height:49.998884px;}
.h14{height:50.973704px;}
.he{height:54.785156px;}
.h2{height:55.080000px;}
.h12{height:55.371094px;}
.hf{height:76.460556px;}
.hb{height:76.699219px;}
.h5{height:78.030000px;}
.ha{height:107.044779px;}
.h4{height:119.055004px;}
.h9{height:203.894817px;}
.hd{height:254.319817px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:55.275600px;}
.x1c{left:59.527500px;}
.x1d{left:66.291900px;}
.x10{left:81.949500px;}
.x12{left:83.189250px;}
.x11{left:84.600000px;}
.xf{left:89.730000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x13{left:143.637750px;}
.x7{left:157.136850px;}
.x5{left:159.448800px;}
.x8{left:177.026850px;}
.x4{left:203.484001px;}
.x6{left:368.571450px;}
.xe{left:410.310600px;}
.x15{left:444.920325px;}
.x14{left:451.576950px;}
.x3{left:454.959000px;}
.x16{left:492.542475px;}
.x9{left:514.483800px;}
.x18{left:542.701200px;}
.xb{left:545.530950px;}
.x19{left:548.044950px;}
.xc{left:549.350325px;}
.xa{left:557.720100px;}
.x1a{left:562.644075px;}
.x1b{left:563.670075px;}
.x17{left:740.231550px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:6.400000pt;}
.v1{vertical-align:138.666667pt;}
.ls1{letter-spacing:-0.240000pt;}
.ls2{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:31.018667pt;}
.ls3{letter-spacing:32.451733pt;}
.ws5{word-spacing:-79.760000pt;}
.ws9{word-spacing:-73.685333pt;}
.ws2{word-spacing:-69.074894pt;}
.ws1{word-spacing:-20.832000pt;}
.ws4{word-spacing:-14.773333pt;}
.ws7{word-spacing:-14.560000pt;}
.ws8{word-spacing:-13.392000pt;}
.ws3{word-spacing:-11.665067pt;}
.ws0{word-spacing:0.000000pt;}
.ws6{word-spacing:31.018667pt;}
._9{margin-left:-31.850667pt;}
._5{margin-left:-14.880000pt;}
._7{margin-left:-11.613867pt;}
._4{margin-left:-8.978667pt;}
._0{margin-left:-7.338667pt;}
._6{margin-left:-6.112533pt;}
._3{margin-left:-4.438933pt;}
._2{margin-left:-3.060800pt;}
._1{margin-left:-1.600000pt;}
._8{width:0.954133pt;}
.fs4{font-size:37.333333pt;}
.fsa{font-size:42.666667pt;}
.fsb{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:74.666667pt;}
.fs9{font-size:80.000000pt;}
.fs2{font-size:90.666667pt;}
.fs6{font-size:112.000000pt;}
.fs5{font-size:213.333333pt;}
.fs8{font-size:247.580267pt;}
.y0{bottom:0.000000pt;}
.yc4{bottom:30.257067pt;}
.y4d{bottom:30.257200pt;}
.y5{bottom:59.133337pt;}
.yc3{bottom:74.662400pt;}
.ya1{bottom:76.262400pt;}
.y45{bottom:76.262533pt;}
.y4{bottom:86.333337pt;}
.ya0{bottom:93.595733pt;}
.y44{bottom:93.595867pt;}
.y9f{bottom:110.929067pt;}
.y47{bottom:110.929200pt;}
.y22{bottom:123.790666pt;}
.y9e{bottom:128.262400pt;}
.y43{bottom:128.262533pt;}
.y9d{bottom:145.595733pt;}
.y42{bottom:145.595867pt;}
.y9c{bottom:162.929067pt;}
.y41{bottom:162.929200pt;}
.y19{bottom:175.052000pt;}
.y9b{bottom:180.262400pt;}
.y40{bottom:180.262533pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y9a{bottom:197.595733pt;}
.y3f{bottom:197.595867pt;}
.y73{bottom:200.941067pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y99{bottom:214.929067pt;}
.y3e{bottom:214.929200pt;}
.y72{bottom:226.281067pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y98{bottom:232.262400pt;}
.y3d{bottom:232.262533pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y97{bottom:249.595733pt;}
.y3c{bottom:249.595867pt;}
.y71{bottom:251.621067pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y96{bottom:266.929067pt;}
.y3b{bottom:266.929200pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y70{bottom:276.961067pt;}
.ya3{bottom:284.262400pt;}
.y3a{bottom:284.262533pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y95{bottom:301.595733pt;}
.y39{bottom:301.595867pt;}
.y10{bottom:309.452000pt;}
.y94{bottom:318.929067pt;}
.y38{bottom:318.929200pt;}
.y93{bottom:336.262400pt;}
.y37{bottom:336.262533pt;}
.yf{bottom:343.809333pt;}
.y4c{bottom:344.274400pt;}
.y92{bottom:353.595733pt;}
.y62{bottom:353.595867pt;}
.ye{bottom:362.706666pt;}
.y4b{bottom:369.614400pt;}
.y91{bottom:370.929067pt;}
.y36{bottom:370.929200pt;}
.y90{bottom:388.262400pt;}
.y35{bottom:388.262533pt;}
.y4a{bottom:394.954400pt;}
.y8f{bottom:405.595733pt;}
.y34{bottom:405.595867pt;}
.y49{bottom:420.294400pt;}
.y8e{bottom:422.929067pt;}
.y33{bottom:422.929200pt;}
.yd{bottom:430.990669pt;}
.y8d{bottom:440.262400pt;}
.y32{bottom:440.262533pt;}
.y48{bottom:445.627733pt;}
.yc{bottom:446.990669pt;}
.ya2{bottom:457.595733pt;}
.y31{bottom:457.595867pt;}
.yb{bottom:462.990669pt;}
.y8c{bottom:474.929067pt;}
.y30{bottom:474.929200pt;}
.yb8{bottom:476.305200pt;}
.ya{bottom:478.990666pt;}
.y8b{bottom:492.262400pt;}
.y2f{bottom:492.262533pt;}
.yb7{bottom:492.301200pt;}
.y9{bottom:494.990666pt;}
.yb6{bottom:508.297200pt;}
.y8a{bottom:509.595733pt;}
.y2d{bottom:509.595867pt;}
.yb5{bottom:524.293200pt;}
.y89{bottom:526.929067pt;}
.y2e{bottom:526.929200pt;}
.yb4{bottom:540.289200pt;}
.y88{bottom:544.262400pt;}
.y46{bottom:544.262533pt;}
.y6f{bottom:548.261067pt;}
.yb3{bottom:556.285200pt;}
.y87{bottom:561.595733pt;}
.y61{bottom:561.595867pt;}
.yb2{bottom:572.281200pt;}
.y6e{bottom:573.601067pt;}
.yc2{bottom:573.673200pt;}
.y8{bottom:573.786667pt;}
.y86{bottom:578.929067pt;}
.y2c{bottom:578.929200pt;}
.yb1{bottom:588.277200pt;}
.yc1{bottom:589.669200pt;}
.y7{bottom:592.685334pt;}
.y85{bottom:596.262400pt;}
.y60{bottom:596.262533pt;}
.y6d{bottom:598.941067pt;}
.yc0{bottom:605.665200pt;}
.y84{bottom:613.595733pt;}
.y5f{bottom:613.595867pt;}
.yb0{bottom:621.613200pt;}
.ybf{bottom:621.661200pt;}
.y6c{bottom:624.281067pt;}
.y83{bottom:630.929067pt;}
.y5e{bottom:630.929200pt;}
.yaf{bottom:637.609200pt;}
.y6{bottom:645.598667pt;}
.y82{bottom:648.262400pt;}
.y5d{bottom:648.262533pt;}
.y2b{bottom:648.916267pt;}
.y6b{bottom:649.621067pt;}
.yae{bottom:653.605200pt;}
.ybe{bottom:654.997200pt;}
.y81{bottom:665.595733pt;}
.y3{bottom:668.977329pt;}
.yad{bottom:669.601200pt;}
.ybd{bottom:670.993200pt;}
.y2a{bottom:674.246933pt;}
.y6a{bottom:674.961067pt;}
.y80{bottom:682.929067pt;}
.ybc{bottom:686.989200pt;}
.y29{bottom:699.577600pt;}
.y69{bottom:700.262400pt;}
.yac{bottom:702.937200pt;}
.ybb{bottom:702.985200pt;}
.y68{bottom:717.595733pt;}
.y5c{bottom:717.595867pt;}
.yab{bottom:718.933200pt;}
.yba{bottom:718.981200pt;}
.y28{bottom:724.908267pt;}
.y67{bottom:734.929067pt;}
.y5b{bottom:734.929200pt;}
.yb9{bottom:734.977200pt;}
.y27{bottom:750.238933pt;}
.y66{bottom:752.262400pt;}
.y5a{bottom:752.262533pt;}
.y65{bottom:769.595733pt;}
.yaa{bottom:769.595867pt;}
.y26{bottom:775.569600pt;}
.y2{bottom:781.661334pt;}
.y64{bottom:786.929067pt;}
.y59{bottom:786.929200pt;}
.y63{bottom:804.262400pt;}
.y58{bottom:804.262533pt;}
.y7f{bottom:821.595733pt;}
.y57{bottom:821.595867pt;}
.ya8{bottom:829.601067pt;}
.y7e{bottom:838.929067pt;}
.y56{bottom:838.929200pt;}
.ya7{bottom:854.941067pt;}
.y7d{bottom:856.262400pt;}
.y55{bottom:856.262533pt;}
.y25{bottom:857.609200pt;}
.y1{bottom:859.312000pt;}
.y7c{bottom:873.595733pt;}
.y54{bottom:873.595867pt;}
.ya6{bottom:880.281067pt;}
.y24{bottom:890.929200pt;}
.ya5{bottom:905.621067pt;}
.y7b{bottom:908.262400pt;}
.y53{bottom:908.262533pt;}
.y7a{bottom:925.595733pt;}
.y52{bottom:925.595867pt;}
.ya4{bottom:930.961067pt;}
.y79{bottom:942.929067pt;}
.y23{bottom:942.929200pt;}
.y78{bottom:960.262400pt;}
.y51{bottom:960.262533pt;}
.y77{bottom:977.595733pt;}
.ya9{bottom:977.595867pt;}
.y76{bottom:994.929067pt;}
.y50{bottom:994.929200pt;}
.y75{bottom:1012.262400pt;}
.y4f{bottom:1012.262533pt;}
.y74{bottom:1029.595733pt;}
.y4e{bottom:1029.595867pt;}
.h7{height:28.560000pt;}
.h10{height:36.247967pt;}
.hc{height:38.802083pt;}
.h13{height:38.958333pt;}
.h15{height:39.999107pt;}
.h6{height:40.800000pt;}
.h17{height:41.954762pt;}
.h3{height:42.840000pt;}
.h16{height:43.828125pt;}
.h11{height:44.443452pt;}
.h14{height:45.309959pt;}
.he{height:48.697917pt;}
.h2{height:48.960000pt;}
.h12{height:49.218750pt;}
.hf{height:67.964939pt;}
.hb{height:68.177083pt;}
.h5{height:69.360000pt;}
.ha{height:95.150915pt;}
.h4{height:105.826671pt;}
.h9{height:181.239837pt;}
.hd{height:226.062060pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:49.133867pt;}
.x1c{left:52.913333pt;}
.x1d{left:58.926133pt;}
.x10{left:72.844000pt;}
.x12{left:73.946000pt;}
.x11{left:75.200000pt;}
.xf{left:79.760000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x13{left:127.678000pt;}
.x7{left:139.677200pt;}
.x5{left:141.732267pt;}
.x8{left:157.357200pt;}
.x4{left:180.874667pt;}
.x6{left:327.619067pt;}
.xe{left:364.720533pt;}
.x15{left:395.484733pt;}
.x14{left:401.401733pt;}
.x3{left:404.408000pt;}
.x16{left:437.815533pt;}
.x9{left:457.318933pt;}
.x18{left:482.401067pt;}
.xb{left:484.916400pt;}
.x19{left:487.151067pt;}
.xc{left:488.311400pt;}
.xa{left:495.751200pt;}
.x1a{left:500.128067pt;}
.x1b{left:501.040067pt;}
.x17{left:657.983600pt;}
}




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