
    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_198ea04b902f3c9b8fac9f30.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.196023;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_85b42ebd12113aa7027e858e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.971000;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_61a592ee98529d68c8bef20f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.985352;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_8fc7c0ae191e1d8259410967.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.975098;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_2db05cad59bcc5f16cb34c9f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.898926;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_1feff4b8c963f3b88c10e975.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.196023;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_eb1b100cebeeed1d7aa5d8de.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.181818;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_fcbd324b53c878fe47023a86.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.975098;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_3fbc3627b2e644c6f6334e40.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.985352;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_df085b452716999ea5e2c8df.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.971000;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_a72de04aabfc71d40c18ea01.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.971000;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_bdca5d42e765581f260557df.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.181818;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_3849bf7a395d1677dacd9513.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.181818;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_838f9c6148e7f2792cc31451.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.181818;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_87751aab11ca606e02a4b534.woff2')format("woff");}.fff{font-family:fff;line-height:1.181818;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.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:-59.152498px;}
.ws2{word-spacing:-33.552245px;}
.ws8{word-spacing:-24.005159px;}
.ws3{word-spacing:-22.368163px;}
.ws9{word-spacing:-17.894355px;}
.wsa{word-spacing:-16.604999px;}
.wsb{word-spacing:-14.753806px;}
.ws0{word-spacing:0.000000px;}
.ws6{word-spacing:1530.615170px;}
.ws4{word-spacing:1818.158127px;}
.ws5{word-spacing:1942.119059px;}
.ws7{word-spacing:2031.292884px;}
._12{margin-left:-7.240553px;}
._5{margin-left:-5.229940px;}
._3{margin-left:-3.960011px;}
._29{margin-left:-2.838830px;}
._4{margin-left:-1.669475px;}
._0{width:1.208046px;}
._1{width:2.303341px;}
._13{width:3.381451px;}
._2{width:4.499994px;}
._1b{width:5.699243px;}
._16{width:7.534055px;}
._15{width:8.928970px;}
._25{width:10.646425px;}
._18{width:11.808185px;}
._17{width:13.254241px;}
._1a{width:14.727990px;}
._2a{width:16.559917px;}
._19{width:19.020777px;}
._23{width:20.861851px;}
._24{width:22.216201px;}
._2c{width:23.333970px;}
._20{width:25.253929px;}
._1f{width:26.423778px;}
._2f{width:27.696241px;}
._2b{width:29.141003px;}
._2d{width:30.272017px;}
._2e{width:31.592729px;}
._1e{width:32.912622px;}
._1d{width:34.772943px;}
._1c{width:36.652244px;}
._32{width:37.804060px;}
._27{width:38.822156px;}
._26{width:39.983790px;}
._14{width:43.217991px;}
._28{width:44.927036px;}
._37{width:46.445613px;}
._21{width:47.525728px;}
._30{width:49.589854px;}
._22{width:52.532197px;}
._36{width:75.106904px;}
._39{width:79.832250px;}
._31{width:89.957095px;}
._38{width:94.460577px;}
._33{width:111.767419px;}
._34{width:152.595550px;}
._35{width:190.713833px;}
._3b{width:282.296441px;}
._3a{width:283.631277px;}
._d{width:1163.794427px;}
._7{width:1168.083490px;}
._f{width:1210.341299px;}
._b{width:1362.234316px;}
._8{width:1391.027284px;}
._10{width:1430.999492px;}
._a{width:1457.648379px;}
._11{width:1466.033142px;}
._c{width:1470.567851px;}
._9{width:1545.174701px;}
._e{width:1696.570242px;}
._6{width:1849.060020px;}
.fc2{color:rgb(10,10,10);}
.fc1{color:rgb(17,17,17);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:53.999998px;}
.fs8{font-size:59.039997px;}
.fs4{font-size:63.624373px;}
.fs5{font-size:71.999997px;}
.fs7{font-size:84.954371px;}
.fs3{font-size:89.999996px;}
.fs6{font-size:100.439996px;}
.fs2{font-size:134.999994px;}
.fs1{font-size:247.499990px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.067523px;}
.y2{bottom:90.703121px;}
.yca{bottom:132.046869px;}
.ya6{bottom:135.140619px;}
.y8e{bottom:142.312494px;}
.y72{bottom:150.749994px;}
.y5a{bottom:151.593744px;}
.yc9{bottom:153.843744px;}
.ya5{bottom:156.937493px;}
.y8d{bottom:164.109368px;}
.y71{bottom:172.546868px;}
.y59{bottom:173.390618px;}
.y4a{bottom:175.218743px;}
.ye4{bottom:178.031243px;}
.ya4{bottom:178.734368px;}
.yc8{bottom:182.671867px;}
.y8c{bottom:185.906242px;}
.y70{bottom:194.343742px;}
.y58{bottom:195.187492px;}
.y49{bottom:197.015617px;}
.ye3{bottom:199.828117px;}
.ya3{bottom:200.531242px;}
.y8b{bottom:207.703116px;}
.y6f{bottom:216.140616px;}
.y48{bottom:218.812491px;}
.ye2{bottom:221.624991px;}
.ya2{bottom:222.328116px;}
.y6e{bottom:237.937490px;}
.y47{bottom:240.609365px;}
.y102{bottom:242.718740px;}
.ye1{bottom:243.421865px;}
.ya1{bottom:244.124990px;}
.yc7{bottom:245.109365px;}
.y57{bottom:257.062489px;}
.y6d{bottom:259.734364px;}
.y46{bottom:262.406239px;}
.ye0{bottom:265.218739px;}
.ya0{bottom:265.921864px;}
.yc6{bottom:266.906239px;}
.y8a{bottom:269.578114px;}
.y101{bottom:278.015613px;}
.y6c{bottom:281.531238px;}
.y45{bottom:284.203113px;}
.y9f{bottom:287.578113px;}
.yc5{bottom:288.703113px;}
.y100{bottom:299.812488px;}
.ydf{bottom:300.515612px;}
.y6b{bottom:303.328112px;}
.y44{bottom:305.999987px;}
.yc4{bottom:317.531237px;}
.yde{bottom:322.312487px;}
.y9e{bottom:322.874987px;}
.y6a{bottom:325.124986px;}
.y43{bottom:327.796861px;}
.yff{bottom:335.109361px;}
.ydd{bottom:344.109361px;}
.y9d{bottom:344.671861px;}
.y69{bottom:346.921861px;}
.y1f{bottom:362.531235px;}
.ydc{bottom:365.906235px;}
.y9c{bottom:366.468735px;}
.y68{bottom:368.718735px;}
.yfe{bottom:370.406235px;}
.yc3{bottom:379.968734px;}
.y9b{bottom:388.265609px;}
.y42{bottom:389.671859px;}
.y38{bottom:389.953109px;}
.y67{bottom:390.515609px;}
.yfd{bottom:392.203109px;}
.ydb{bottom:401.203108px;}
.yc2{bottom:401.765608px;}
.y1e{bottom:405.140608px;}
.y37{bottom:411.749983px;}
.y66{bottom:412.312483px;}
.yfc{bottom:413.999983px;}
.y9a{bottom:417.234358px;}
.yc1{bottom:423.421857px;}
.y36{bottom:433.546857px;}
.y65{bottom:434.109357px;}
.yda{bottom:436.499982px;}
.yc0{bottom:445.218731px;}
.y1d{bottom:447.609356px;}
.yfb{bottom:449.296856px;}
.y35{bottom:455.343731px;}
.yd9{bottom:458.296856px;}
.ybf{bottom:467.015606px;}
.yfa{bottom:471.093730px;}
.y80{bottom:471.796855px;}
.y34{bottom:477.140605px;}
.y99{bottom:479.531230px;}
.y1c{bottom:490.078105px;}
.yf9{bottom:492.890604px;}
.y7f{bottom:493.593729px;}
.y64{bottom:495.843729px;}
.y33{bottom:498.937479px;}
.y98{bottom:501.328104px;}
.ybe{bottom:502.312479px;}
.y7e{bottom:515.390604px;}
.y32{bottom:520.734353px;}
.y97{bottom:523.124978px;}
.ybd{bottom:524.109353px;}
.yf8{bottom:528.187478px;}
.y1b{bottom:532.687478px;}
.y7d{bottom:537.187478px;}
.y31{bottom:542.531227px;}
.y96{bottom:544.921852px;}
.ybc{bottom:545.906227px;}
.yf7{bottom:549.984352px;}
.y7c{bottom:558.984352px;}
.y56{bottom:561.374977px;}
.y30{bottom:564.328101px;}
.y95{bottom:566.718726px;}
.ybb{bottom:567.703101px;}
.y89{bottom:571.078101px;}
.yf6{bottom:571.781226px;}
.yd8{bottom:572.484351px;}
.y1a{bottom:575.156226px;}
.y7b{bottom:580.781226px;}
.y2f{bottom:586.124976px;}
.y94{bottom:588.515600px;}
.yd7{bottom:594.281225px;}
.y7a{bottom:602.578100px;}
.yba{bottom:602.999975px;}
.yf5{bottom:607.078100px;}
.y2e{bottom:607.921850px;}
.y93{bottom:610.312475px;}
.y55{bottom:614.953099px;}
.yd6{bottom:616.078099px;}
.y19{bottom:617.624974px;}
.y9{bottom:623.671849px;}
.y79{bottom:624.374974px;}
.y88{bottom:624.656224px;}
.yb9{bottom:624.796849px;}
.y92{bottom:632.109349px;}
.y54{bottom:636.749973px;}
.y2d{bottom:638.859348px;}
.yf4{bottom:642.374973px;}
.y78{bottom:646.171848px;}
.y87{bottom:646.453098px;}
.yb8{bottom:646.593723px;}
.yd5{bottom:651.374973px;}
.y53{bottom:658.546848px;}
.y18{bottom:660.234347px;}
.y77{bottom:667.828097px;}
.y86{bottom:668.249972px;}
.yb7{bottom:668.390597px;}
.yd4{bottom:673.031222px;}
.y8{bottom:673.593722px;}
.y2c{bottom:674.015597px;}
.yf3{bottom:677.671847px;}
.y52{bottom:680.343722px;}
.y76{bottom:689.624971px;}
.y85{bottom:690.046846px;}
.y41{bottom:692.437471px;}
.y91{bottom:693.984346px;}
.yd3{bottom:694.828096px;}
.y51{bottom:702.140596px;}
.y17{bottom:702.703096px;}
.y7{bottom:703.265596px;}
.yb6{bottom:703.687471px;}
.y84{bottom:711.843720px;}
.yf2{bottom:712.968720px;}
.y50{bottom:723.937470px;}
.yb5{bottom:725.484345px;}
.yd2{bottom:730.124970px;}
.y83{bottom:733.640594px;}
.yf1{bottom:734.765594px;}
.y2b{bottom:736.453094px;}
.y16{bottom:745.312469px;}
.y4f{bottom:745.734344px;}
.y40{bottom:746.156219px;}
.yb4{bottom:747.281219px;}
.y75{bottom:751.499969px;}
.y2a{bottom:758.249968px;}
.yd1{bottom:765.421843px;}
.y4e{bottom:767.531218px;}
.y3f{bottom:767.812468px;}
.yb3{bottom:769.078093px;}
.yf0{bottom:770.062468px;}
.y74{bottom:771.749968px;}
.y6{bottom:778.078093px;}
.y29{bottom:780.046842px;}
.y15{bottom:787.781217px;}
.y4d{bottom:789.328092px;}
.y3e{bottom:789.609342px;}
.yb2{bottom:790.874967px;}
.yef{bottom:791.859342px;}
.y82{bottom:795.515592px;}
.yd0{bottom:800.718717px;}
.y28{bottom:801.843717px;}
.y3d{bottom:811.406216px;}
.yb1{bottom:812.671841px;}
.y81{bottom:815.624966px;}
.y5{bottom:822.515591px;}
.y27{bottom:823.640591px;}
.yee{bottom:827.156216px;}
.y14{bottom:830.249965px;}
.y3c{bottom:833.203090px;}
.yb0{bottom:834.468715px;}
.ycf{bottom:836.015590px;}
.y26{bottom:845.437465px;}
.y4c{bottom:851.062465px;}
.y3b{bottom:854.999964px;}
.yaf{bottom:856.265589px;}
.yed{bottom:862.312464px;}
.y25{bottom:867.093714px;}
.yce{bottom:871.312464px;}
.y13{bottom:872.859339px;}
.y4{bottom:876.656213px;}
.y3a{bottom:876.796838px;}
.yae{bottom:878.062463px;}
.yec{bottom:884.109338px;}
.y24{bottom:888.890588px;}
.ycd{bottom:893.109338px;}
.yad{bottom:899.859338px;}
.y23{bottom:910.687462px;}
.ycc{bottom:914.906212px;}
.y12{bottom:915.328087px;}
.yeb{bottom:919.406212px;}
.y63{bottom:919.828087px;}
.yac{bottom:921.656212px;}
.y22{bottom:932.484336px;}
.y39{bottom:938.671836px;}
.yab{bottom:943.312461px;}
.yea{bottom:954.703085px;}
.y11{bottom:957.937460px;}
.y3{bottom:959.062460px;}
.y21{bottom:961.453085px;}
.yaa{bottom:965.109335px;}
.ycb{bottom:971.999960px;}
.y62{bottom:973.406209px;}
.ye9{bottom:976.499959px;}
.ya9{bottom:986.906209px;}
.y61{bottom:995.203084px;}
.y90{bottom:998.718708px;}
.y10{bottom:1000.406208px;}
.ya8{bottom:1008.703083px;}
.ye8{bottom:1011.796833px;}
.y60{bottom:1016.999958px;}
.ye{bottom:1020.093707px;}
.ya7{bottom:1030.499957px;}
.y5f{bottom:1038.796832px;}
.ye7{bottom:1047.093706px;}
.y20{bottom:1049.062456px;}
.y8f{bottom:1052.296831px;}
.yd{bottom:1055.390581px;}
.ye6{bottom:1068.890580px;}
.y5e{bottom:1074.093705px;}
.yf{bottom:1074.937455px;}
.y73{bottom:1085.906205px;}
.yc{bottom:1090.687455px;}
.y5d{bottom:1095.890579px;}
.ye5{bottom:1104.187454px;}
.y5c{bottom:1117.687453px;}
.yb{bottom:1125.984328px;}
.y5b{bottom:1139.484328px;}
.y4b{bottom:1154.953077px;}
.ya{bottom:1161.281202px;}
.h3{height:51.928975px;}
.h8{height:54.843748px;}
.h9{height:55.582029px;}
.hc{height:56.356361px;}
.h7{height:60.732356px;}
.hb{height:66.519272px;}
.h6{height:68.554685px;}
.ha{height:78.644517px;}
.h5{height:104.216304px;}
.h4{height:193.792492px;}
.h2{height:1262.812447px;}
.h0{height:1262.879970px;}
.h1{height:1263.000000px;}
.w2{width:892.968731px;}
.w0{width:893.879970px;}
.w1{width:894.000000px;}
.x0{left:0.000000px;}
.x1{left:63.777829px;}
.x2{left:84.937496px;}
.x4{left:106.536617px;}
.x5{left:128.135737px;}
.x9{left:254.953114px;}
.x6{left:276.187488px;}
.x8{left:326.823469px;}
.xa{left:348.057843px;}
.xd{left:409.748270px;}
.xe{left:430.982645px;}
.xc{left:708.921364px;}
.xb{left:711.241677px;}
.x7{left:716.225075px;}
.xf{left:756.780001px;}
.x3{left:811.880826px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-52.579998pt;}
.ws2{word-spacing:-29.824218pt;}
.ws8{word-spacing:-21.337919pt;}
.ws3{word-spacing:-19.882812pt;}
.ws9{word-spacing:-15.906093pt;}
.wsa{word-spacing:-14.759999pt;}
.wsb{word-spacing:-13.114494pt;}
.ws0{word-spacing:0.000000pt;}
.ws6{word-spacing:1360.546818pt;}
.ws4{word-spacing:1616.140558pt;}
.ws5{word-spacing:1726.328053pt;}
.ws7{word-spacing:1805.593675pt;}
._12{margin-left:-6.436047pt;}
._5{margin-left:-4.648836pt;}
._3{margin-left:-3.520010pt;}
._29{margin-left:-2.523404pt;}
._4{margin-left:-1.483977pt;}
._0{width:1.073819pt;}
._1{width:2.047414pt;}
._13{width:3.005734pt;}
._2{width:3.999995pt;}
._1b{width:5.065994pt;}
._16{width:6.696938pt;}
._15{width:7.936862pt;}
._25{width:9.463489pt;}
._18{width:10.496165pt;}
._17{width:11.781548pt;}
._1a{width:13.091547pt;}
._2a{width:14.719926pt;}
._19{width:16.907357pt;}
._23{width:18.543867pt;}
._24{width:19.747734pt;}
._2c{width:20.741306pt;}
._20{width:22.447937pt;}
._1f{width:23.487803pt;}
._2f{width:24.618880pt;}
._2b{width:25.903114pt;}
._2d{width:26.908459pt;}
._2e{width:28.082426pt;}
._1e{width:29.255664pt;}
._1d{width:30.909283pt;}
._1c{width:32.579772pt;}
._32{width:33.603609pt;}
._27{width:34.508583pt;}
._26{width:35.541147pt;}
._14{width:38.415992pt;}
._28{width:39.935143pt;}
._37{width:41.284990pt;}
._21{width:42.245092pt;}
._30{width:44.079870pt;}
._22{width:46.695286pt;}
._36{width:66.761693pt;}
._39{width:70.962000pt;}
._31{width:79.961862pt;}
._38{width:83.964958pt;}
._33{width:99.348817pt;}
._34{width:135.640489pt;}
._35{width:169.523407pt;}
._3b{width:250.930169pt;}
._3a{width:252.116691pt;}
._d{width:1034.483935pt;}
._7{width:1038.296435pt;}
._f{width:1075.858932pt;}
._b{width:1210.874947pt;}
._8{width:1236.468697pt;}
._10{width:1271.999549pt;}
._a{width:1295.687448pt;}
._11{width:1303.140571pt;}
._c{width:1307.171423pt;}
._9{width:1373.488623pt;}
._e{width:1508.062437pt;}
._6{width:1643.608907pt;}
.fs0{font-size:47.999998pt;}
.fs8{font-size:52.479997pt;}
.fs4{font-size:56.554998pt;}
.fs5{font-size:63.999997pt;}
.fs7{font-size:75.514996pt;}
.fs3{font-size:79.999997pt;}
.fs6{font-size:89.279996pt;}
.fs2{font-size:119.999995pt;}
.fs1{font-size:219.999991pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.060020pt;}
.y2{bottom:80.624997pt;}
.yca{bottom:117.374995pt;}
.ya6{bottom:120.124995pt;}
.y8e{bottom:126.499995pt;}
.y72{bottom:133.999994pt;}
.y5a{bottom:134.749994pt;}
.yc9{bottom:136.749994pt;}
.ya5{bottom:139.499994pt;}
.y8d{bottom:145.874994pt;}
.y71{bottom:153.374994pt;}
.y59{bottom:154.124994pt;}
.y4a{bottom:155.749994pt;}
.ye4{bottom:158.249993pt;}
.ya4{bottom:158.874993pt;}
.yc8{bottom:162.374993pt;}
.y8c{bottom:165.249993pt;}
.y70{bottom:172.749993pt;}
.y58{bottom:173.499993pt;}
.y49{bottom:175.124993pt;}
.ye3{bottom:177.624993pt;}
.ya3{bottom:178.249993pt;}
.y8b{bottom:184.624992pt;}
.y6f{bottom:192.124992pt;}
.y48{bottom:194.499992pt;}
.ye2{bottom:196.999992pt;}
.ya2{bottom:197.624992pt;}
.y6e{bottom:211.499991pt;}
.y47{bottom:213.874991pt;}
.y102{bottom:215.749991pt;}
.ye1{bottom:216.374991pt;}
.ya1{bottom:216.999991pt;}
.yc7{bottom:217.874991pt;}
.y57{bottom:228.499990pt;}
.y6d{bottom:230.874990pt;}
.y46{bottom:233.249990pt;}
.ye0{bottom:235.749990pt;}
.ya0{bottom:236.374990pt;}
.yc6{bottom:237.249990pt;}
.y8a{bottom:239.624990pt;}
.y101{bottom:247.124990pt;}
.y6c{bottom:250.249990pt;}
.y45{bottom:252.624989pt;}
.y9f{bottom:255.624989pt;}
.yc5{bottom:256.624989pt;}
.y100{bottom:266.499989pt;}
.ydf{bottom:267.124989pt;}
.y6b{bottom:269.624989pt;}
.y44{bottom:271.999989pt;}
.yc4{bottom:282.249988pt;}
.yde{bottom:286.499988pt;}
.y9e{bottom:286.999988pt;}
.y6a{bottom:288.999988pt;}
.y43{bottom:291.374988pt;}
.yff{bottom:297.874988pt;}
.ydd{bottom:305.874987pt;}
.y9d{bottom:306.374987pt;}
.y69{bottom:308.374987pt;}
.y1f{bottom:322.249987pt;}
.ydc{bottom:325.249986pt;}
.y9c{bottom:325.749986pt;}
.y68{bottom:327.749986pt;}
.yfe{bottom:329.249986pt;}
.yc3{bottom:337.749986pt;}
.y9b{bottom:345.124986pt;}
.y42{bottom:346.374986pt;}
.y38{bottom:346.624986pt;}
.y67{bottom:347.124986pt;}
.yfd{bottom:348.624985pt;}
.ydb{bottom:356.624985pt;}
.yc2{bottom:357.124985pt;}
.y1e{bottom:360.124985pt;}
.y37{bottom:365.999985pt;}
.y66{bottom:366.499985pt;}
.yfc{bottom:367.999985pt;}
.y9a{bottom:370.874985pt;}
.yc1{bottom:376.374984pt;}
.y36{bottom:385.374984pt;}
.y65{bottom:385.874984pt;}
.yda{bottom:387.999984pt;}
.yc0{bottom:395.749984pt;}
.y1d{bottom:397.874983pt;}
.yfb{bottom:399.374983pt;}
.y35{bottom:404.749983pt;}
.yd9{bottom:407.374983pt;}
.ybf{bottom:415.124983pt;}
.yfa{bottom:418.749983pt;}
.y80{bottom:419.374983pt;}
.y34{bottom:424.124982pt;}
.y99{bottom:426.249982pt;}
.y1c{bottom:435.624982pt;}
.yf9{bottom:438.124982pt;}
.y7f{bottom:438.749982pt;}
.y64{bottom:440.749982pt;}
.y33{bottom:443.499982pt;}
.y98{bottom:445.624981pt;}
.ybe{bottom:446.499981pt;}
.y7e{bottom:458.124981pt;}
.y32{bottom:462.874981pt;}
.y97{bottom:464.999981pt;}
.ybd{bottom:465.874981pt;}
.yf8{bottom:469.499980pt;}
.y1b{bottom:473.499980pt;}
.y7d{bottom:477.499980pt;}
.y31{bottom:482.249980pt;}
.y96{bottom:484.374980pt;}
.ybc{bottom:485.249980pt;}
.yf7{bottom:488.874980pt;}
.y7c{bottom:496.874979pt;}
.y56{bottom:498.999979pt;}
.y30{bottom:501.624979pt;}
.y95{bottom:503.749979pt;}
.ybb{bottom:504.624979pt;}
.y89{bottom:507.624979pt;}
.yf6{bottom:508.249979pt;}
.yd8{bottom:508.874979pt;}
.y1a{bottom:511.249979pt;}
.y7b{bottom:516.249978pt;}
.y2f{bottom:520.999978pt;}
.y94{bottom:523.124978pt;}
.yd7{bottom:528.249978pt;}
.y7a{bottom:535.624978pt;}
.yba{bottom:535.999978pt;}
.yf5{bottom:539.624978pt;}
.y2e{bottom:540.374977pt;}
.y93{bottom:542.499977pt;}
.y55{bottom:546.624977pt;}
.yd6{bottom:547.624977pt;}
.y19{bottom:548.999977pt;}
.y9{bottom:554.374977pt;}
.y79{bottom:554.999977pt;}
.y88{bottom:555.249977pt;}
.yb9{bottom:555.374977pt;}
.y92{bottom:561.874977pt;}
.y54{bottom:565.999976pt;}
.y2d{bottom:567.874976pt;}
.yf4{bottom:570.999976pt;}
.y78{bottom:574.374976pt;}
.y87{bottom:574.624976pt;}
.yb8{bottom:574.749976pt;}
.yd5{bottom:578.999976pt;}
.y53{bottom:585.374976pt;}
.y18{bottom:586.874976pt;}
.y77{bottom:593.624975pt;}
.y86{bottom:593.999975pt;}
.yb7{bottom:594.124975pt;}
.yd4{bottom:598.249975pt;}
.y8{bottom:598.749975pt;}
.y2c{bottom:599.124975pt;}
.yf3{bottom:602.374975pt;}
.y52{bottom:604.749975pt;}
.y76{bottom:612.999974pt;}
.y85{bottom:613.374974pt;}
.y41{bottom:615.499974pt;}
.y91{bottom:616.874974pt;}
.yd3{bottom:617.624974pt;}
.y51{bottom:624.124974pt;}
.y17{bottom:624.624974pt;}
.y7{bottom:625.124974pt;}
.yb6{bottom:625.499974pt;}
.y84{bottom:632.749974pt;}
.yf2{bottom:633.749974pt;}
.y50{bottom:643.499973pt;}
.yb5{bottom:644.874973pt;}
.yd2{bottom:648.999973pt;}
.y83{bottom:652.124973pt;}
.yf1{bottom:653.124973pt;}
.y2b{bottom:654.624973pt;}
.y16{bottom:662.499972pt;}
.y4f{bottom:662.874972pt;}
.y40{bottom:663.249972pt;}
.yb4{bottom:664.249972pt;}
.y75{bottom:667.999972pt;}
.y2a{bottom:673.999972pt;}
.yd1{bottom:680.374972pt;}
.y4e{bottom:682.249972pt;}
.y3f{bottom:682.499972pt;}
.yb3{bottom:683.624972pt;}
.yf0{bottom:684.499971pt;}
.y74{bottom:685.999971pt;}
.y6{bottom:691.624971pt;}
.y29{bottom:693.374971pt;}
.y15{bottom:700.249971pt;}
.y4d{bottom:701.624971pt;}
.y3e{bottom:701.874971pt;}
.yb2{bottom:702.999971pt;}
.yef{bottom:703.874971pt;}
.y82{bottom:707.124971pt;}
.yd0{bottom:711.749970pt;}
.y28{bottom:712.749970pt;}
.y3d{bottom:721.249970pt;}
.yb1{bottom:722.374970pt;}
.y81{bottom:724.999970pt;}
.y5{bottom:731.124970pt;}
.y27{bottom:732.124969pt;}
.yee{bottom:735.249969pt;}
.y14{bottom:737.999969pt;}
.y3c{bottom:740.624969pt;}
.yb0{bottom:741.749969pt;}
.ycf{bottom:743.124969pt;}
.y26{bottom:751.499969pt;}
.y4c{bottom:756.499968pt;}
.y3b{bottom:759.999968pt;}
.yaf{bottom:761.124968pt;}
.yed{bottom:766.499968pt;}
.y25{bottom:770.749968pt;}
.yce{bottom:774.499968pt;}
.y13{bottom:775.874968pt;}
.y4{bottom:779.249968pt;}
.y3a{bottom:779.374968pt;}
.yae{bottom:780.499967pt;}
.yec{bottom:785.874967pt;}
.y24{bottom:790.124967pt;}
.ycd{bottom:793.874967pt;}
.yad{bottom:799.874967pt;}
.y23{bottom:809.499966pt;}
.ycc{bottom:813.249966pt;}
.y12{bottom:813.624966pt;}
.yeb{bottom:817.249966pt;}
.y63{bottom:817.624966pt;}
.yac{bottom:819.249966pt;}
.y22{bottom:828.874965pt;}
.y39{bottom:834.374965pt;}
.yab{bottom:838.499965pt;}
.yea{bottom:848.624965pt;}
.y11{bottom:851.499965pt;}
.y3{bottom:852.499964pt;}
.y21{bottom:854.624964pt;}
.yaa{bottom:857.874964pt;}
.ycb{bottom:863.999964pt;}
.y62{bottom:865.249964pt;}
.ye9{bottom:867.999964pt;}
.ya9{bottom:877.249963pt;}
.y61{bottom:884.624963pt;}
.y90{bottom:887.749963pt;}
.y10{bottom:889.249963pt;}
.ya8{bottom:896.624963pt;}
.ye8{bottom:899.374963pt;}
.y60{bottom:903.999962pt;}
.ye{bottom:906.749962pt;}
.ya7{bottom:915.999962pt;}
.y5f{bottom:923.374962pt;}
.ye7{bottom:930.749961pt;}
.y20{bottom:932.499961pt;}
.y8f{bottom:935.374961pt;}
.yd{bottom:938.124961pt;}
.ye6{bottom:950.124960pt;}
.y5e{bottom:954.749960pt;}
.yf{bottom:955.499960pt;}
.y73{bottom:965.249960pt;}
.yc{bottom:969.499960pt;}
.y5d{bottom:974.124959pt;}
.ye5{bottom:981.499959pt;}
.y5c{bottom:993.499959pt;}
.yb{bottom:1000.874958pt;}
.y5b{bottom:1012.874958pt;}
.y4b{bottom:1026.624957pt;}
.ya{bottom:1032.249957pt;}
.h3{height:46.159089pt;}
.h8{height:48.749998pt;}
.h9{height:49.406248pt;}
.hc{height:50.094543pt;}
.h7{height:53.984316pt;}
.hb{height:59.128242pt;}
.h6{height:60.937497pt;}
.ha{height:69.906237pt;}
.h5{height:92.636715pt;}
.h4{height:172.259993pt;}
.h2{height:1122.499953pt;}
.h0{height:1122.559973pt;}
.h1{height:1122.666667pt;}
.w2{width:793.749983pt;}
.w0{width:794.559973pt;}
.w1{width:794.666667pt;}
.x0{left:0.000000pt;}
.x1{left:56.691404pt;}
.x2{left:75.499997pt;}
.x4{left:94.699215pt;}
.x5{left:113.898433pt;}
.x9{left:226.624991pt;}
.x6{left:245.499990pt;}
.x8{left:290.509750pt;}
.xa{left:309.384750pt;}
.xd{left:364.220685pt;}
.xe{left:383.095684pt;}
.xc{left:630.152324pt;}
.xb{left:632.214824pt;}
.x7{left:636.644511pt;}
.xf{left:672.693334pt;}
.x3{left:721.671845pt;}
}




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