
    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_52c3e6088a1b0676c09f7c81.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.844727;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_e0f6b06c3f04084924263a23.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.895996;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_2428de2418ee9ebbfac84cab.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.873535;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_5b08286de4ef24a71b842c60.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_e1a5d77d4b1918b746ddf6dd.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.855469;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_fa35524eef4163979457b981.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_942e5e8012105d48a9d87098.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.861816;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_e1c2a613a8e47b8ea9602845.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.690918;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_7842102d94362cb10b4545c9.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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_b51d43ff96c20e4895c2e2ac.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938477;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_aee6854d928665f3cd369e9a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938965;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_f83bcb435cda7e786745876f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;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_98a1dd7ec8ce416caac8d65c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666504;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_824cb9fe1a260aba2c9a8b8d.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666504;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_1d0769d5611c8762c028d618.woff2')format("woff");}.fff{font-family:fff;line-height:0.666504;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_11243ee88d46e144fe8bba12.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.666504;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(0.260417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);}
.m2{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:-9.360000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.ls18{letter-spacing:-0.211968px;}
.ls12{letter-spacing:-0.205344px;}
.ls1b{letter-spacing:-0.185472px;}
.ls1c{letter-spacing:-0.178848px;}
.ls11{letter-spacing:-0.165600px;}
.ls19{letter-spacing:-0.158976px;}
.ls20{letter-spacing:-0.152352px;}
.ls23{letter-spacing:-0.145728px;}
.lsa{letter-spacing:-0.144720px;}
.ls1a{letter-spacing:-0.139104px;}
.ls13{letter-spacing:-0.132480px;}
.ls32{letter-spacing:-0.119232px;}
.ls1d{letter-spacing:-0.112608px;}
.ls15{letter-spacing:-0.105984px;}
.ls1e{letter-spacing:-0.099360px;}
.ls14{letter-spacing:-0.092736px;}
.ls22{letter-spacing:-0.086112px;}
.ls25{letter-spacing:-0.079488px;}
.ls16{letter-spacing:-0.072864px;}
.ls1f{letter-spacing:-0.059616px;}
.ls21{letter-spacing:-0.033120px;}
.ls17{letter-spacing:-0.019872px;}
.ls31{letter-spacing:-0.010800px;}
.ls30{letter-spacing:-0.005400px;}
.lsb{letter-spacing:0.000000px;}
.ls2a{letter-spacing:0.005400px;}
.ls2b{letter-spacing:0.010800px;}
.lse{letter-spacing:0.028728px;}
.ls0{letter-spacing:0.047880px;}
.ls7{letter-spacing:0.056880px;}
.ls36{letter-spacing:0.059760px;}
.ls3{letter-spacing:0.061200px;}
.ls6{letter-spacing:0.065434px;}
.ls10{letter-spacing:0.076608px;}
.ls2{letter-spacing:0.086184px;}
.ls1{letter-spacing:0.095760px;}
.lsd{letter-spacing:0.105336px;}
.ls5{letter-spacing:0.105840px;}
.ls24{letter-spacing:0.112608px;}
.ls27{letter-spacing:0.113544px;}
.ls9{letter-spacing:0.114480px;}
.ls8{letter-spacing:0.115200px;}
.ls29{letter-spacing:0.119520px;}
.ls26{letter-spacing:0.123768px;}
.ls4{letter-spacing:0.124488px;}
.ls33{letter-spacing:0.125496px;}
.ls28{letter-spacing:0.129600px;}
.ls34{letter-spacing:0.131472px;}
.lsf{letter-spacing:0.153216px;}
.ls35{letter-spacing:0.170640px;}
.lsc{letter-spacing:0.172368px;}
.ls2c{letter-spacing:59.227848px;}
.ls2f{letter-spacing:178.204320px;}
.ls2e{letter-spacing:180.943920px;}
.ls2d{letter-spacing:250.327512px;}
.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;}
}
.ws1{word-spacing:-21.794976px;}
.ws2{word-spacing:-21.718368px;}
.wsf{word-spacing:-15.082848px;}
.wsc{word-spacing:-14.970240px;}
.ws7{word-spacing:-14.950368px;}
.wse{word-spacing:-14.910624px;}
.ws12{word-spacing:-14.890752px;}
.ws1f{word-spacing:-14.877504px;}
.wsd{word-spacing:-14.870880px;}
.ws6{word-spacing:-14.864256px;}
.wsb{word-spacing:-14.857632px;}
.ws1a{word-spacing:-14.851008px;}
.ws5{word-spacing:-14.837760px;}
.ws9{word-spacing:-14.831136px;}
.ws1c{word-spacing:-14.824512px;}
.ws11{word-spacing:-14.811264px;}
.ws3{word-spacing:-14.804640px;}
.wsa{word-spacing:-14.791392px;}
.ws10{word-spacing:-14.784768px;}
.ws4{word-spacing:-14.764896px;}
.ws8{word-spacing:-14.758272px;}
.ws1e{word-spacing:-13.756752px;}
.ws1d{word-spacing:-13.750776px;}
.ws14{word-spacing:-13.744800px;}
.ws21{word-spacing:-13.685040px;}
.ws20{word-spacing:-13.625280px;}
.ws17{word-spacing:-12.322800px;}
.ws16{word-spacing:-12.317400px;}
.ws19{word-spacing:-12.312000px;}
.ws15{word-spacing:-12.306600px;}
.ws18{word-spacing:-12.301200px;}
.ws1b{word-spacing:-0.066240px;}
.ws0{word-spacing:-0.063360px;}
.ws13{word-spacing:0.000000px;}
._0{margin-left:-1.126800px;}
._1{width:1.091664px;}
._4{width:61.878456px;}
._2{width:79.697016px;}
._3{width:259.829928px;}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(34,34,34);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs0{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs3{font-size:63.360000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y7d{bottom:3.060000px;}
.y37{bottom:3.120000px;}
.y3d{bottom:3.180000px;}
.y43{bottom:3.240000px;}
.y49{bottom:3.300000px;}
.ya8{bottom:3.360000px;}
.y6b{bottom:3.420000px;}
.y7b{bottom:3.480000px;}
.y6f{bottom:3.540000px;}
.y74{bottom:3.600000px;}
.y41{bottom:3.660000px;}
.y47{bottom:3.720000px;}
.y3b{bottom:3.780000px;}
.ya2{bottom:3.840000px;}
.y7f{bottom:3.960000px;}
.y72{bottom:4.020000px;}
.y35{bottom:4.080000px;}
.y6d{bottom:4.140000px;}
.y39{bottom:4.200000px;}
.y3f{bottom:4.260000px;}
.y45{bottom:4.320000px;}
.y79{bottom:10.560000px;}
.ya7{bottom:18.840000px;}
.ya1{bottom:19.320000px;}
.yab{bottom:20.580000px;}
.yb6{bottom:20.700000px;}
.ya6{bottom:34.500000px;}
.ya0{bottom:34.800000px;}
.ya5{bottom:49.980000px;}
.y9f{bottom:50.280000px;}
.y2{bottom:58.500000px;}
.ya4{bottom:65.460000px;}
.y9e{bottom:65.760000px;}
.y1{bottom:77.400000px;}
.y9d{bottom:81.240000px;}
.y9c{bottom:96.720000px;}
.y80{bottom:111.000000px;}
.y9b{bottom:112.200000px;}
.y9a{bottom:127.680000px;}
.y64{bottom:129.780000px;}
.y2c{bottom:130.320000px;}
.y99{bottom:143.340000px;}
.y63{bottom:146.700000px;}
.y2b{bottom:150.300000px;}
.y98{bottom:158.820000px;}
.y62{bottom:166.860000px;}
.y97{bottom:174.300000px;}
.y2a{bottom:179.460000px;}
.y61{bottom:187.020000px;}
.y96{bottom:189.780000px;}
.y95{bottom:205.260000px;}
.y60{bottom:207.180000px;}
.y29{bottom:217.620000px;}
.y94{bottom:220.740000px;}
.y5f{bottom:227.340000px;}
.y93{bottom:236.220000px;}
.y28{bottom:237.780000px;}
.y5e{bottom:244.260000px;}
.y92{bottom:251.700000px;}
.y27{bottom:257.940000px;}
.y5d{bottom:264.420000px;}
.y91{bottom:267.180000px;}
.y26{bottom:278.100000px;}
.y90{bottom:282.660000px;}
.y5c{bottom:284.580000px;}
.y8f{bottom:298.140000px;}
.y25{bottom:298.260000px;}
.y5b{bottom:304.740000px;}
.y8e{bottom:313.620000px;}
.y24{bottom:318.420000px;}
.y5a{bottom:324.900000px;}
.y8d{bottom:329.100000px;}
.y23{bottom:338.580000px;}
.y8c{bottom:344.580000px;}
.y59{bottom:344.880000px;}
.yc2{bottom:354.960000px;}
.y22{bottom:358.740000px;}
.y8b{bottom:360.060000px;}
.yc1{bottom:373.860000px;}
.y58{bottom:374.040000px;}
.y8a{bottom:375.540000px;}
.y21{bottom:378.720000px;}
.yc0{bottom:388.500000px;}
.y89{bottom:391.020000px;}
.y57{bottom:395.100000px;}
.y20{bottom:398.880000px;}
.ybf{bottom:405.000000px;}
.y88{bottom:406.680000px;}
.y56{bottom:416.160000px;}
.y1f{bottom:419.040000px;}
.y87{bottom:422.160000px;}
.ybe{bottom:423.000000px;}
.y55{bottom:437.220000px;}
.y86{bottom:437.640000px;}
.y1e{bottom:439.200000px;}
.ybd{bottom:439.500000px;}
.y85{bottom:453.120000px;}
.ybc{bottom:456.000000px;}
.y54{bottom:458.100000px;}
.y1d{bottom:468.360000px;}
.y84{bottom:468.600000px;}
.ybb{bottom:474.000000px;}
.y53{bottom:479.160000px;}
.y83{bottom:484.080000px;}
.y1c{bottom:488.520000px;}
.yba{bottom:490.500000px;}
.y82{bottom:499.560000px;}
.y52{bottom:500.220000px;}
.yb9{bottom:507.000000px;}
.y81{bottom:515.040000px;}
.y1b{bottom:517.680000px;}
.y51{bottom:521.280000px;}
.yb8{bottom:525.000000px;}
.y1a{bottom:537.840000px;}
.yb7{bottom:541.500000px;}
.y50{bottom:542.340000px;}
.y19{bottom:558.000000px;}
.y4f{bottom:563.220000px;}
.yb5{bottom:576.000000px;}
.y4e{bottom:584.280000px;}
.y18{bottom:587.160000px;}
.y4d{bottom:605.340000px;}
.y17{bottom:607.140000px;}
.yb4{bottom:621.180000px;}
.y4c{bottom:634.500000px;}
.y16{bottom:636.300000px;}
.y7e{bottom:639.000000px;}
.y15{bottom:656.460000px;}
.y7c{bottom:657.000000px;}
.yb3{bottom:659.340000px;}
.y4b{bottom:663.660000px;}
.y7a{bottom:673.500000px;}
.y14{bottom:676.620000px;}
.yb2{bottom:679.500000px;}
.y78{bottom:690.000000px;}
.y4a{bottom:692.820000px;}
.y13{bottom:696.780000px;}
.yb1{bottom:708.660000px;}
.y77{bottom:714.000000px;}
.y12{bottom:716.940000px;}
.y48{bottom:727.500000px;}
.y76{bottom:730.500000px;}
.y11{bottom:737.100000px;}
.yb0{bottom:742.500000px;}
.y46{bottom:744.000000px;}
.y75{bottom:748.500000px;}
.y10{bottom:757.260000px;}
.y44{bottom:760.500000px;}
.y73{bottom:765.000000px;}
.yaf{bottom:777.000000px;}
.yf{bottom:777.420000px;}
.y42{bottom:778.500000px;}
.y71{bottom:781.500000px;}
.yae{bottom:793.500000px;}
.y40{bottom:795.000000px;}
.ye{bottom:797.580000px;}
.y70{bottom:799.500000px;}
.y3e{bottom:811.500000px;}
.y6e{bottom:816.000000px;}
.yd{bottom:817.560000px;}
.yad{bottom:828.000000px;}
.y3c{bottom:829.500000px;}
.y6c{bottom:832.500000px;}
.yc{bottom:837.720000px;}
.yac{bottom:844.500000px;}
.y3a{bottom:846.000000px;}
.y6a{bottom:850.500000px;}
.y38{bottom:862.500000px;}
.yb{bottom:866.880000px;}
.y69{bottom:878.400000px;}
.y36{bottom:880.500000px;}
.y34{bottom:897.000000px;}
.ya{bottom:905.040000px;}
.yaa{bottom:907.560000px;}
.y68{bottom:916.560000px;}
.y9{bottom:925.200000px;}
.y33{bottom:925.560000px;}
.y67{bottom:936.720000px;}
.y8{bottom:945.360000px;}
.y32{bottom:945.720000px;}
.y66{bottom:956.880000px;}
.y7{bottom:965.520000px;}
.ya9{bottom:965.880000px;}
.y31{bottom:983.880000px;}
.y6{bottom:985.680000px;}
.y65{bottom:985.860000px;}
.ya3{bottom:1000.500000px;}
.y30{bottom:1003.860000px;}
.y5{bottom:1005.840000px;}
.y2f{bottom:1024.020000px;}
.y4{bottom:1027.800000px;}
.y2e{bottom:1044.180000px;}
.y3{bottom:1057.140000px;}
.y2d{bottom:1064.340000px;}
.h9{height:16.500000px;}
.h7{height:18.000000px;}
.hc{height:24.000000px;}
.h1{height:32.152148px;}
.hf{height:36.000000px;}
.ha{height:39.339844px;}
.hb{height:39.830273px;}
.h8{height:43.506914px;}
.h4{height:44.925469px;}
.h6{height:45.281250px;}
.h2{height:47.545313px;}
.h5{height:51.593203px;}
.h3{height:66.583125px;}
.he{height:78.000000px;}
.hd{height:528.000000px;}
.h0{height:1188.000000px;}
.wa{width:91.500000px;}
.w6{width:93.000000px;}
.w7{width:94.500000px;}
.w9{width:130.500000px;}
.wb{width:139.500000px;}
.w2{width:175.500000px;}
.w1{width:181.500000px;}
.w3{width:189.000000px;}
.w5{width:219.000000px;}
.w8{width:232.500000px;}
.w4{width:520.500000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x9{left:7.920036px;}
.x12{left:10.195980px;}
.xe{left:12.692580px;}
.x13{left:14.120760px;}
.x16{left:17.651400px;}
.x1f{left:25.734300px;}
.x11{left:27.262200px;}
.x1b{left:31.891020px;}
.xf{left:34.892160px;}
.x1a{left:37.809000px;}
.x1e{left:43.275840px;}
.x17{left:49.779060px;}
.x20{left:53.800740px;}
.x1d{left:59.957460px;}
.x14{left:66.213060px;}
.x1c{left:71.909880px;}
.x2{left:108.000000px;}
.x3{left:113.916870px;}
.x8{left:117.000000px;}
.x5{left:135.000000px;}
.x6{left:212.075647px;}
.xb{left:249.750000px;}
.x7{left:264.065220px;}
.xa{left:298.500000px;}
.xc{left:306.000000px;}
.x4{left:312.966720px;}
.xd{left:336.000000px;}
.x15{left:349.500000px;}
.x10{left:429.000000px;}
.x1{left:441.213840px;}
.x18{left:480.000000px;}
.x19{left:571.500000px;}
@media print{
.v1{vertical-align:-8.320000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.ls18{letter-spacing:-0.188416pt;}
.ls12{letter-spacing:-0.182528pt;}
.ls1b{letter-spacing:-0.164864pt;}
.ls1c{letter-spacing:-0.158976pt;}
.ls11{letter-spacing:-0.147200pt;}
.ls19{letter-spacing:-0.141312pt;}
.ls20{letter-spacing:-0.135424pt;}
.ls23{letter-spacing:-0.129536pt;}
.lsa{letter-spacing:-0.128640pt;}
.ls1a{letter-spacing:-0.123648pt;}
.ls13{letter-spacing:-0.117760pt;}
.ls32{letter-spacing:-0.105984pt;}
.ls1d{letter-spacing:-0.100096pt;}
.ls15{letter-spacing:-0.094208pt;}
.ls1e{letter-spacing:-0.088320pt;}
.ls14{letter-spacing:-0.082432pt;}
.ls22{letter-spacing:-0.076544pt;}
.ls25{letter-spacing:-0.070656pt;}
.ls16{letter-spacing:-0.064768pt;}
.ls1f{letter-spacing:-0.052992pt;}
.ls21{letter-spacing:-0.029440pt;}
.ls17{letter-spacing:-0.017664pt;}
.ls31{letter-spacing:-0.009600pt;}
.ls30{letter-spacing:-0.004800pt;}
.lsb{letter-spacing:0.000000pt;}
.ls2a{letter-spacing:0.004800pt;}
.ls2b{letter-spacing:0.009600pt;}
.lse{letter-spacing:0.025536pt;}
.ls0{letter-spacing:0.042560pt;}
.ls7{letter-spacing:0.050560pt;}
.ls36{letter-spacing:0.053120pt;}
.ls3{letter-spacing:0.054400pt;}
.ls6{letter-spacing:0.058163pt;}
.ls10{letter-spacing:0.068096pt;}
.ls2{letter-spacing:0.076608pt;}
.ls1{letter-spacing:0.085120pt;}
.lsd{letter-spacing:0.093632pt;}
.ls5{letter-spacing:0.094080pt;}
.ls24{letter-spacing:0.100096pt;}
.ls27{letter-spacing:0.100928pt;}
.ls9{letter-spacing:0.101760pt;}
.ls8{letter-spacing:0.102400pt;}
.ls29{letter-spacing:0.106240pt;}
.ls26{letter-spacing:0.110016pt;}
.ls4{letter-spacing:0.110656pt;}
.ls33{letter-spacing:0.111552pt;}
.ls28{letter-spacing:0.115200pt;}
.ls34{letter-spacing:0.116864pt;}
.lsf{letter-spacing:0.136192pt;}
.ls35{letter-spacing:0.151680pt;}
.lsc{letter-spacing:0.153216pt;}
.ls2c{letter-spacing:52.646976pt;}
.ls2f{letter-spacing:158.403840pt;}
.ls2e{letter-spacing:160.839040pt;}
.ls2d{letter-spacing:222.513344pt;}
.ws1{word-spacing:-19.373312pt;}
.ws2{word-spacing:-19.305216pt;}
.wsf{word-spacing:-13.406976pt;}
.wsc{word-spacing:-13.306880pt;}
.ws7{word-spacing:-13.289216pt;}
.wse{word-spacing:-13.253888pt;}
.ws12{word-spacing:-13.236224pt;}
.ws1f{word-spacing:-13.224448pt;}
.wsd{word-spacing:-13.218560pt;}
.ws6{word-spacing:-13.212672pt;}
.wsb{word-spacing:-13.206784pt;}
.ws1a{word-spacing:-13.200896pt;}
.ws5{word-spacing:-13.189120pt;}
.ws9{word-spacing:-13.183232pt;}
.ws1c{word-spacing:-13.177344pt;}
.ws11{word-spacing:-13.165568pt;}
.ws3{word-spacing:-13.159680pt;}
.wsa{word-spacing:-13.147904pt;}
.ws10{word-spacing:-13.142016pt;}
.ws4{word-spacing:-13.124352pt;}
.ws8{word-spacing:-13.118464pt;}
.ws1e{word-spacing:-12.228224pt;}
.ws1d{word-spacing:-12.222912pt;}
.ws14{word-spacing:-12.217600pt;}
.ws21{word-spacing:-12.164480pt;}
.ws20{word-spacing:-12.111360pt;}
.ws17{word-spacing:-10.953600pt;}
.ws16{word-spacing:-10.948800pt;}
.ws19{word-spacing:-10.944000pt;}
.ws15{word-spacing:-10.939200pt;}
.ws18{word-spacing:-10.934400pt;}
.ws1b{word-spacing:-0.058880pt;}
.ws0{word-spacing:-0.056320pt;}
.ws13{word-spacing:0.000000pt;}
._0{margin-left:-1.001600pt;}
._1{width:0.970368pt;}
._4{width:55.003072pt;}
._2{width:70.841792pt;}
._3{width:230.959936pt;}
.fs4{font-size:37.120000pt;}
.fs0{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs3{font-size:56.320000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y7d{bottom:2.720000pt;}
.y37{bottom:2.773333pt;}
.y3d{bottom:2.826667pt;}
.y43{bottom:2.880000pt;}
.y49{bottom:2.933333pt;}
.ya8{bottom:2.986667pt;}
.y6b{bottom:3.040000pt;}
.y7b{bottom:3.093333pt;}
.y6f{bottom:3.146667pt;}
.y74{bottom:3.200000pt;}
.y41{bottom:3.253333pt;}
.y47{bottom:3.306667pt;}
.y3b{bottom:3.360000pt;}
.ya2{bottom:3.413333pt;}
.y7f{bottom:3.520000pt;}
.y72{bottom:3.573333pt;}
.y35{bottom:3.626667pt;}
.y6d{bottom:3.680000pt;}
.y39{bottom:3.733333pt;}
.y3f{bottom:3.786667pt;}
.y45{bottom:3.840000pt;}
.y79{bottom:9.386667pt;}
.ya7{bottom:16.746667pt;}
.ya1{bottom:17.173333pt;}
.yab{bottom:18.293333pt;}
.yb6{bottom:18.400000pt;}
.ya6{bottom:30.666667pt;}
.ya0{bottom:30.933333pt;}
.ya5{bottom:44.426667pt;}
.y9f{bottom:44.693333pt;}
.y2{bottom:52.000000pt;}
.ya4{bottom:58.186667pt;}
.y9e{bottom:58.453333pt;}
.y1{bottom:68.800000pt;}
.y9d{bottom:72.213333pt;}
.y9c{bottom:85.973333pt;}
.y80{bottom:98.666667pt;}
.y9b{bottom:99.733333pt;}
.y9a{bottom:113.493333pt;}
.y64{bottom:115.360000pt;}
.y2c{bottom:115.840000pt;}
.y99{bottom:127.413333pt;}
.y63{bottom:130.400000pt;}
.y2b{bottom:133.600000pt;}
.y98{bottom:141.173333pt;}
.y62{bottom:148.320000pt;}
.y97{bottom:154.933333pt;}
.y2a{bottom:159.520000pt;}
.y61{bottom:166.240000pt;}
.y96{bottom:168.693333pt;}
.y95{bottom:182.453333pt;}
.y60{bottom:184.160000pt;}
.y29{bottom:193.440000pt;}
.y94{bottom:196.213333pt;}
.y5f{bottom:202.080000pt;}
.y93{bottom:209.973333pt;}
.y28{bottom:211.360000pt;}
.y5e{bottom:217.120000pt;}
.y92{bottom:223.733333pt;}
.y27{bottom:229.280000pt;}
.y5d{bottom:235.040000pt;}
.y91{bottom:237.493333pt;}
.y26{bottom:247.200000pt;}
.y90{bottom:251.253333pt;}
.y5c{bottom:252.960000pt;}
.y8f{bottom:265.013333pt;}
.y25{bottom:265.120000pt;}
.y5b{bottom:270.880000pt;}
.y8e{bottom:278.773333pt;}
.y24{bottom:283.040000pt;}
.y5a{bottom:288.800000pt;}
.y8d{bottom:292.533333pt;}
.y23{bottom:300.960000pt;}
.y8c{bottom:306.293333pt;}
.y59{bottom:306.560000pt;}
.yc2{bottom:315.520000pt;}
.y22{bottom:318.880000pt;}
.y8b{bottom:320.053333pt;}
.yc1{bottom:332.320000pt;}
.y58{bottom:332.480000pt;}
.y8a{bottom:333.813333pt;}
.y21{bottom:336.640000pt;}
.yc0{bottom:345.333333pt;}
.y89{bottom:347.573333pt;}
.y57{bottom:351.200000pt;}
.y20{bottom:354.560000pt;}
.ybf{bottom:360.000000pt;}
.y88{bottom:361.493333pt;}
.y56{bottom:369.920000pt;}
.y1f{bottom:372.480000pt;}
.y87{bottom:375.253333pt;}
.ybe{bottom:376.000000pt;}
.y55{bottom:388.640000pt;}
.y86{bottom:389.013333pt;}
.y1e{bottom:390.400000pt;}
.ybd{bottom:390.666667pt;}
.y85{bottom:402.773333pt;}
.ybc{bottom:405.333333pt;}
.y54{bottom:407.200000pt;}
.y1d{bottom:416.320000pt;}
.y84{bottom:416.533333pt;}
.ybb{bottom:421.333333pt;}
.y53{bottom:425.920000pt;}
.y83{bottom:430.293333pt;}
.y1c{bottom:434.240000pt;}
.yba{bottom:436.000000pt;}
.y82{bottom:444.053333pt;}
.y52{bottom:444.640000pt;}
.yb9{bottom:450.666667pt;}
.y81{bottom:457.813333pt;}
.y1b{bottom:460.160000pt;}
.y51{bottom:463.360000pt;}
.yb8{bottom:466.666667pt;}
.y1a{bottom:478.080000pt;}
.yb7{bottom:481.333333pt;}
.y50{bottom:482.080000pt;}
.y19{bottom:496.000000pt;}
.y4f{bottom:500.640000pt;}
.yb5{bottom:512.000000pt;}
.y4e{bottom:519.360000pt;}
.y18{bottom:521.920000pt;}
.y4d{bottom:538.080000pt;}
.y17{bottom:539.680000pt;}
.yb4{bottom:552.160000pt;}
.y4c{bottom:564.000000pt;}
.y16{bottom:565.600000pt;}
.y7e{bottom:568.000000pt;}
.y15{bottom:583.520000pt;}
.y7c{bottom:584.000000pt;}
.yb3{bottom:586.080000pt;}
.y4b{bottom:589.920000pt;}
.y7a{bottom:598.666667pt;}
.y14{bottom:601.440000pt;}
.yb2{bottom:604.000000pt;}
.y78{bottom:613.333333pt;}
.y4a{bottom:615.840000pt;}
.y13{bottom:619.360000pt;}
.yb1{bottom:629.920000pt;}
.y77{bottom:634.666667pt;}
.y12{bottom:637.280000pt;}
.y48{bottom:646.666667pt;}
.y76{bottom:649.333333pt;}
.y11{bottom:655.200000pt;}
.yb0{bottom:660.000000pt;}
.y46{bottom:661.333333pt;}
.y75{bottom:665.333333pt;}
.y10{bottom:673.120000pt;}
.y44{bottom:676.000000pt;}
.y73{bottom:680.000000pt;}
.yaf{bottom:690.666667pt;}
.yf{bottom:691.040000pt;}
.y42{bottom:692.000000pt;}
.y71{bottom:694.666667pt;}
.yae{bottom:705.333333pt;}
.y40{bottom:706.666667pt;}
.ye{bottom:708.960000pt;}
.y70{bottom:710.666667pt;}
.y3e{bottom:721.333333pt;}
.y6e{bottom:725.333333pt;}
.yd{bottom:726.720000pt;}
.yad{bottom:736.000000pt;}
.y3c{bottom:737.333333pt;}
.y6c{bottom:740.000000pt;}
.yc{bottom:744.640000pt;}
.yac{bottom:750.666667pt;}
.y3a{bottom:752.000000pt;}
.y6a{bottom:756.000000pt;}
.y38{bottom:766.666667pt;}
.yb{bottom:770.560000pt;}
.y69{bottom:780.800000pt;}
.y36{bottom:782.666667pt;}
.y34{bottom:797.333333pt;}
.ya{bottom:804.480000pt;}
.yaa{bottom:806.720000pt;}
.y68{bottom:814.720000pt;}
.y9{bottom:822.400000pt;}
.y33{bottom:822.720000pt;}
.y67{bottom:832.640000pt;}
.y8{bottom:840.320000pt;}
.y32{bottom:840.640000pt;}
.y66{bottom:850.560000pt;}
.y7{bottom:858.240000pt;}
.ya9{bottom:858.560000pt;}
.y31{bottom:874.560000pt;}
.y6{bottom:876.160000pt;}
.y65{bottom:876.320000pt;}
.ya3{bottom:889.333333pt;}
.y30{bottom:892.320000pt;}
.y5{bottom:894.080000pt;}
.y2f{bottom:910.240000pt;}
.y4{bottom:913.600000pt;}
.y2e{bottom:928.160000pt;}
.y3{bottom:939.680000pt;}
.y2d{bottom:946.080000pt;}
.h9{height:14.666667pt;}
.h7{height:16.000000pt;}
.hc{height:21.333333pt;}
.h1{height:28.579688pt;}
.hf{height:32.000000pt;}
.ha{height:34.968750pt;}
.hb{height:35.404688pt;}
.h8{height:38.672812pt;}
.h4{height:39.933750pt;}
.h6{height:40.250000pt;}
.h2{height:42.262500pt;}
.h5{height:45.860625pt;}
.h3{height:59.185000pt;}
.he{height:69.333333pt;}
.hd{height:469.333333pt;}
.h0{height:1056.000000pt;}
.wa{width:81.333333pt;}
.w6{width:82.666667pt;}
.w7{width:84.000000pt;}
.w9{width:116.000000pt;}
.wb{width:124.000000pt;}
.w2{width:156.000000pt;}
.w1{width:161.333333pt;}
.w3{width:168.000000pt;}
.w5{width:194.666667pt;}
.w8{width:206.666667pt;}
.w4{width:462.666667pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x9{left:7.040032pt;}
.x12{left:9.063093pt;}
.xe{left:11.282293pt;}
.x13{left:12.551787pt;}
.x16{left:15.690133pt;}
.x1f{left:22.874933pt;}
.x11{left:24.233067pt;}
.x1b{left:28.347573pt;}
.xf{left:31.015253pt;}
.x1a{left:33.608000pt;}
.x1e{left:38.467413pt;}
.x17{left:44.248053pt;}
.x20{left:47.822880pt;}
.x1d{left:53.295520pt;}
.x14{left:58.856053pt;}
.x1c{left:63.919893pt;}
.x2{left:96.000000pt;}
.x3{left:101.259440pt;}
.x8{left:104.000000pt;}
.x5{left:120.000000pt;}
.x6{left:188.511687pt;}
.xb{left:222.000000pt;}
.x7{left:234.724640pt;}
.xa{left:265.333333pt;}
.xc{left:272.000000pt;}
.x4{left:278.192640pt;}
.xd{left:298.666667pt;}
.x15{left:310.666667pt;}
.x10{left:381.333333pt;}
.x1{left:392.190080pt;}
.x18{left:426.666667pt;}
.x19{left:508.000000pt;}
}




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