
    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_933ef6e51e43d9ca1ac1acf6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_5ddf2181cd4a058f417c521c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.900391;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_44bedd259073574c9e82f1ee.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_4886c1cbcb6467c66279277f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.959000;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_13a63bbda65da5b873839793.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.960000;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;}
.m7{transform:matrix(0.172336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172336,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.172342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172342,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.172347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172347,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-42.479983px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.119994px;}
.v3{vertical-align:30.239988px;}
.ls2{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.021238px;}
.ls1{letter-spacing:0.021282px;}
.ls4{letter-spacing:28.252467px;}
.ls3{letter-spacing:31.818570px;}
.ls5{letter-spacing:31.854591px;}
.ls7{letter-spacing:32.429747px;}
.ls6{letter-spacing:64.273705px;}
.ls0{letter-spacing:2497.721001px;}
.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;}
}
.ws4{word-spacing:-17.999993px;}
.ws2{word-spacing:-13.763396px;}
.ws8{word-spacing:-13.523405px;}
.ws3{word-spacing:-12.377155px;}
.ws0{word-spacing:-12.059995px;}
.ws5{word-spacing:-10.987779px;}
.ws1{word-spacing:0.000000px;}
.ws7{word-spacing:88.602917px;}
.ws6{word-spacing:704.802671px;}
._17{margin-left:-7.326507px;}
._18{margin-left:-5.968881px;}
._2{margin-left:-4.280026px;}
._7{margin-left:-2.318639px;}
._1{margin-left:-1.011951px;}
._0{width:1.038777px;}
._4{width:2.948840px;}
._3{width:4.055687px;}
._6{width:5.305832px;}
._8{width:6.637120px;}
._5{width:8.565448px;}
._13{width:10.184352px;}
._14{width:11.334898px;}
._15{width:12.341750px;}
._9{width:13.413825px;}
._a{width:14.424726px;}
._16{width:15.769693px;}
._1b{width:16.861908px;}
._f{width:19.113863px;}
._d{width:20.155925px;}
._e{width:21.386379px;}
._2b{width:23.106731px;}
._12{width:26.787439px;}
._b{width:27.836254px;}
._c{width:28.873269px;}
._2c{width:32.335363px;}
._10{width:33.446925px;}
._11{width:34.599465px;}
._19{width:35.632554px;}
._1a{width:37.532556px;}
._20{width:99.469116px;}
._1d{width:116.019229px;}
._2d{width:143.722518px;}
._2e{width:144.739267px;}
._1f{width:159.866456px;}
._1e{width:202.096660px;}
._21{width:244.865662px;}
._2a{width:252.794498px;}
._28{width:268.643736px;}
._23{width:270.961100px;}
._1c{width:338.166600px;}
._29{width:826.503932px;}
._22{width:903.566637px;}
._26{width:1076.354632px;}
._27{width:1227.586971px;}
._24{width:1355.842142px;}
._25{width:1441.080624px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(255,0,0);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:39.524384px;}
.fs1{font-size:48.239981px;}
.fs7{font-size:48.645341px;}
.fs2{font-size:49.508620px;}
.fs3{font-size:58.508617px;}
.fs8{font-size:59.759976px;}
.fs5{font-size:60.806376px;}
.fs4{font-size:66.239974px;}
.fs0{font-size:71.999971px;}
.y0{bottom:0.000000px;}
.y62{bottom:3.598944px;}
.y3{bottom:4.320037px;}
.y2{bottom:54.300240px;}
.y1{bottom:58.800276px;}
.yda{bottom:112.619955px;}
.y96{bottom:118.739953px;}
.y5f{bottom:126.479949px;}
.y33{bottom:128.099949px;}
.yd9{bottom:133.319947px;}
.y95{bottom:139.439944px;}
.y5e{bottom:147.179941px;}
.y32{bottom:148.799940px;}
.yd8{bottom:154.019938px;}
.y94{bottom:160.139936px;}
.y5d{bottom:167.879933px;}
.y31{bottom:169.499932px;}
.yd7{bottom:174.719930px;}
.y93{bottom:180.839928px;}
.y5c{bottom:188.579925px;}
.y30{bottom:190.199924px;}
.yd6{bottom:195.419922px;}
.y92{bottom:201.539919px;}
.y5b{bottom:209.279916px;}
.y2f{bottom:215.399914px;}
.yd5{bottom:216.119914px;}
.y91{bottom:222.239911px;}
.y5a{bottom:229.979908px;}
.yd4{bottom:236.819905px;}
.y2e{bottom:240.599904px;}
.y90{bottom:242.939903px;}
.y59{bottom:250.679900px;}
.yd3{bottom:257.519897px;}
.y2d{bottom:261.299895px;}
.y8f{bottom:263.639895px;}
.y58{bottom:271.379891px;}
.yd2{bottom:277.319889px;}
.y2b{bottom:281.999887px;}
.y8e{bottom:284.339886px;}
.y2c{bottom:290.279884px;}
.yd1{bottom:290.819884px;}
.y57{bottom:292.079883px;}
.yc8{bottom:300.719880px;}
.y2a{bottom:302.699879px;}
.y8d{bottom:305.039878px;}
.y56{bottom:312.779875px;}
.y29{bottom:323.399871px;}
.yb8{bottom:323.759870px;}
.y8c{bottom:325.739870px;}
.y55{bottom:333.479867px;}
.yc9{bottom:334.199866px;}
.yb7{bottom:336.719865px;}
.y8b{bottom:346.439861px;}
.y28{bottom:348.239861px;}
.y54{bottom:354.179858px;}
.yca{bottom:366.779853px;}
.y8a{bottom:367.139853px;}
.y53{bottom:374.879850px;}
.y27{bottom:378.299849px;}
.yc7{bottom:383.159847px;}
.yc0{bottom:384.599846px;}
.y89{bottom:387.839845px;}
.yc6{bottom:388.379845px;}
.ybf{bottom:393.779842px;}
.y52{bottom:395.219842px;}
.y26{bottom:398.999840px;}
.ycb{bottom:400.259840px;}
.yc5{bottom:401.339839px;}
.ybe{bottom:406.739837px;}
.y88{bottom:408.539837px;}
.yc4{bottom:415.739834px;}
.y51{bottom:416.279833px;}
.y25{bottom:419.699832px;}
.yc3{bottom:428.699829px;}
.y87{bottom:429.239828px;}
.ycc{bottom:433.019827px;}
.y50{bottom:436.979825px;}
.yba{bottom:440.039824px;}
.y24{bottom:440.399824px;}
.y86{bottom:449.939820px;}
.yb9{bottom:452.999819px;}
.y4f{bottom:457.679817px;}
.y23{bottom:461.099816px;}
.ycd{bottom:466.499813px;}
.yf5{bottom:467.759813px;}
.y85{bottom:470.639812px;}
.y4e{bottom:478.379809px;}
.yc2{bottom:480.359808px;}
.y22{bottom:481.799807px;}
.yb4{bottom:482.699807px;}
.yb6{bottom:483.419807px;}
.yf4{bottom:488.459805px;}
.ybb{bottom:489.539804px;}
.y84{bottom:491.339803px;}
.yc1{bottom:493.319803px;}
.yb3{bottom:495.659802px;}
.yb5{bottom:496.379801px;}
.y4d{bottom:499.079800px;}
.yce{bottom:499.799800px;}
.y21{bottom:502.499799px;}
.y83{bottom:512.039795px;}
.yf3{bottom:517.979793px;}
.y4c{bottom:519.779792px;}
.y20{bottom:523.199791px;}
.ycf{bottom:532.559787px;}
.y82{bottom:532.739787px;}
.y4b{bottom:540.479784px;}
.yb2{bottom:541.919783px;}
.y1f{bottom:543.899782px;}
.ybd{bottom:544.979782px;}
.yf2{bottom:547.679781px;}
.y81{bottom:553.439779px;}
.yb1{bottom:554.879778px;}
.ybc{bottom:557.939777px;}
.y4a{bottom:561.179776px;}
.y1e{bottom:564.599774px;}
.yd0{bottom:566.039774px;}
.yf1{bottom:568.379773px;}
.y80{bottom:574.139770px;}
.y49{bottom:581.879767px;}
.y1d{bottom:585.299766px;}
.yf0{bottom:589.079764px;}
.y48{bottom:602.579759px;}
.yb0{bottom:603.299759px;}
.y7f{bottom:603.479759px;}
.y1c{bottom:605.999758px;}
.yef{bottom:618.779752px;}
.y47{bottom:622.919751px;}
.y1b{bottom:626.699749px;}
.y7e{bottom:633.539747px;}
.yaf{bottom:636.959745px;}
.yee{bottom:639.479744px;}
.y1a{bottom:647.399741px;}
.y46{bottom:652.979739px;}
.y7d{bottom:656.039738px;}
.yae{bottom:657.659737px;}
.yed{bottom:660.179736px;}
.y19{bottom:668.099733px;}
.y45{bottom:673.679731px;}
.y7b{bottom:676.199730px;}
.yad{bottom:678.359729px;}
.y18{bottom:688.799724px;}
.yec{bottom:689.879724px;}
.y7a{bottom:696.359721px;}
.y44{bottom:698.879720px;}
.yac{bottom:699.059720px;}
.y17{bottom:709.499716px;}
.yeb{bottom:710.579716px;}
.y79{bottom:716.339713px;}
.yab{bottom:719.759712px;}
.y42{bottom:725.879710px;}
.y16{bottom:730.199708px;}
.yea{bottom:731.279707px;}
.y78{bottom:736.499705px;}
.yaa{bottom:740.459704px;}
.y41{bottom:748.559701px;}
.y15{bottom:750.899700px;}
.y77{bottom:756.659697px;}
.ye9{bottom:760.979696px;}
.ya9{bottom:761.159696px;}
.y40{bottom:765.299694px;}
.y7c{bottom:767.279693px;}
.y13{bottom:771.599691px;}
.y76{bottom:776.639689px;}
.y14{bottom:779.879688px;}
.y38{bottom:780.059688px;}
.ye8{bottom:781.679687px;}
.ya8{bottom:781.859687px;}
.y12{bottom:796.439681px;}
.y75{bottom:796.799681px;}
.y39{bottom:800.219680px;}
.ya7{bottom:802.559679px;}
.ye7{bottom:811.379675px;}
.y74{bottom:816.959673px;}
.y3a{bottom:820.559672px;}
.y3f{bottom:822.539671px;}
.ya6{bottom:823.259671px;}
.ye6{bottom:832.079667px;}
.y11{bottom:835.499666px;}
.y73{bottom:836.939665px;}
.y3e{bottom:838.379665px;}
.y3b{bottom:840.719664px;}
.ya5{bottom:843.959662px;}
.ye5{bottom:852.779659px;}
.y10{bottom:856.199658px;}
.y72{bottom:857.099657px;}
.y3c{bottom:861.059656px;}
.ya4{bottom:864.659654px;}
.y71{bottom:877.259649px;}
.y3d{bottom:880.139648px;}
.ya3{bottom:885.359646px;}
.yf{bottom:885.899646px;}
.ye4{bottom:894.539642px;}
.ya2{bottom:905.699638px;}
.y70{bottom:907.859637px;}
.ye3{bottom:915.239634px;}
.ye{bottom:915.599634px;}
.y6f{bottom:917.399633px;}
.y43{bottom:921.899631px;}
.ya1{bottom:924.599630px;}
.ye2{bottom:935.939626px;}
.y6e{bottom:937.559625px;}
.ya0{bottom:944.759622px;}
.yd{bottom:945.299622px;}
.y37{bottom:954.299618px;}
.y6c{bottom:957.539617px;}
.y6d{bottom:958.079617px;}
.y9f{bottom:963.659615px;}
.yc{bottom:974.999610px;}
.y6b{bottom:977.699609px;}
.y9e{bottom:983.819606px;}
.yb{bottom:995.699602px;}
.y6a{bottom:997.679601px;}
.ye1{bottom:998.399601px;}
.y9d{bottom:1002.719599px;}
.ya{bottom:1016.399593px;}
.y68{bottom:1017.839593px;}
.y69{bottom:1018.379593px;}
.ye0{bottom:1019.099592px;}
.y9c{bottom:1022.879591px;}
.y9{bottom:1037.099585px;}
.y67{bottom:1037.999585px;}
.ydf{bottom:1039.799584px;}
.y9b{bottom:1041.779583px;}
.y8{bottom:1057.799577px;}
.y9a{bottom:1061.939575px;}
.y66{bottom:1068.599573px;}
.yde{bottom:1069.499572px;}
.y65{bottom:1078.139569px;}
.y7{bottom:1078.499569px;}
.y99{bottom:1081.019568px;}
.ydc{bottom:1090.199564px;}
.y64{bottom:1098.299561px;}
.ydd{bottom:1098.479561px;}
.y6{bottom:1098.839560px;}
.y36{bottom:1099.199560px;}
.y98{bottom:1100.999560px;}
.ydb{bottom:1110.899556px;}
.y63{bottom:1118.279553px;}
.y5{bottom:1119.539552px;}
.y35{bottom:1119.899552px;}
.y97{bottom:1120.079552px;}
.y61{bottom:1135.560600px;}
.y60{bottom:1139.159544px;}
.y4{bottom:1140.239544px;}
.y34{bottom:1140.599544px;}
.h9{height:18.720000px;}
.h2{height:20.520000px;}
.hc{height:29.287569px;}
.h6{height:33.892132px;}
.hf{height:36.046197px;}
.h5{height:36.685888px;}
.h7{height:40.053262px;}
.h10{height:41.493499px;}
.h4{height:42.327757px;}
.hd{height:44.407563px;}
.hb{height:45.057524px;}
.h8{height:45.345919px;}
.h3{height:49.289043px;}
.ha{height:58.121696px;}
.he{height:59.527557px;}
.h1{height:63.175756px;}
.h0{height:1263.000000px;}
.w1{width:0.360000px;}
.w2{width:57.960000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:127.619949px;}
.x49{left:139.312594px;}
.x21{left:154.616977px;}
.x20{left:159.119417px;}
.x4a{left:164.159934px;}
.x4b{left:173.519931px;}
.x2b{left:174.599930px;}
.x29{left:176.039930px;}
.x3{left:180.179928px;}
.x22{left:181.619903px;}
.x2a{left:182.879927px;}
.x23{left:184.319926px;}
.x27{left:186.659925px;}
.x47{left:188.999918px;}
.x46{left:193.679921px;}
.x2d{left:201.239920px;}
.x3d{left:214.919365px;}
.x26{left:220.679912px;}
.x3e{left:228.599354px;}
.x39{left:233.819571px;}
.x3a{left:262.799543px;}
.x2e{left:264.239894px;}
.x14{left:265.319796px;}
.x13{left:277.739795px;}
.x2f{left:283.499887px;}
.x9{left:289.259239px;}
.x4{left:290.520744px;}
.x24{left:292.320000px;}
.xa{left:296.279292px;}
.x38{left:300.419589px;}
.xe{left:306.359877px;}
.x2c{left:310.679901px;}
.x28{left:314.819874px;}
.x8{left:319.679269px;}
.xc{left:321.479871px;}
.x36{left:324.179602px;}
.xd{left:334.619866px;}
.x37{left:338.939587px;}
.x1e{left:340.739864px;}
.x12{left:342.899852px;}
.xf{left:346.139862px;}
.x11{left:349.739854px;}
.x6{left:353.880215px;}
.x25{left:356.219858px;}
.x7{left:359.639812px;}
.x10{left:363.239855px;}
.xb{left:366.839204px;}
.x15{left:377.819849px;}
.x16{left:380.159855px;}
.x3f{left:399.599676px;}
.x40{left:410.759708px;}
.x5{left:446.400159px;}
.x17{left:447.659784px;}
.x3b{left:448.739056px;}
.x18{left:449.819788px;}
.x3c{left:451.259055px;}
.x1d{left:454.319648px;}
.x41{left:478.799686px;}
.x42{left:489.419720px;}
.x19{left:517.319717px;}
.x1a{left:519.659723px;}
.x43{left:523.079744px;}
.x44{left:529.019745px;}
.x45{left:566.459757px;}
.x1b{left:587.159652px;}
.x1c{left:589.319656px;}
.x34{left:594.359702px;}
.x35{left:602.279703px;}
.x30{left:634.499746px;}
.x31{left:639.719746px;}
.x32{left:674.099699px;}
.x33{left:677.879697px;}
.x1f{left:681.659727px;}
.x48{left:720.899712px;}
.x2{left:765.180000px;}
@media print{
.v1{vertical-align:-37.759985pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.439995pt;}
.v3{vertical-align:26.879989pt;}
.ls2{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.018878pt;}
.ls1{letter-spacing:0.018917pt;}
.ls4{letter-spacing:25.113304pt;}
.ls3{letter-spacing:28.283173pt;}
.ls5{letter-spacing:28.315192pt;}
.ls7{letter-spacing:28.826442pt;}
.ls6{letter-spacing:57.132182pt;}
.ls0{letter-spacing:2220.196445pt;}
.ws4{word-spacing:-15.999994pt;}
.ws2{word-spacing:-12.234130pt;}
.ws8{word-spacing:-12.020804pt;}
.ws3{word-spacing:-11.001916pt;}
.ws0{word-spacing:-10.719996pt;}
.ws5{word-spacing:-9.766914pt;}
.ws1{word-spacing:0.000000pt;}
.ws7{word-spacing:78.758149pt;}
.ws6{word-spacing:626.491263pt;}
._17{margin-left:-6.512451pt;}
._18{margin-left:-5.305672pt;}
._2{margin-left:-3.804468pt;}
._7{margin-left:-2.061013pt;}
._1{margin-left:-0.899512pt;}
._0{width:0.923358pt;}
._4{width:2.621191pt;}
._3{width:3.605055pt;}
._6{width:4.716295pt;}
._8{width:5.899662pt;}
._5{width:7.613731pt;}
._13{width:9.052757pt;}
._14{width:10.075465pt;}
._15{width:10.970445pt;}
._9{width:11.923400pt;}
._a{width:12.821979pt;}
._16{width:14.017505pt;}
._1b{width:14.988363pt;}
._f{width:16.990101pt;}
._d{width:17.916378pt;}
._e{width:19.010115pt;}
._2b{width:20.539316pt;}
._12{width:23.811057pt;}
._b{width:24.743337pt;}
._c{width:25.665128pt;}
._2c{width:28.742545pt;}
._10{width:29.730600pt;}
._11{width:30.755080pt;}
._19{width:31.673381pt;}
._1a{width:33.362272pt;}
._20{width:88.416992pt;}
._1d{width:103.128203pt;}
._2d{width:127.753350pt;}
._2e{width:128.657126pt;}
._1f{width:142.103516pt;}
._1e{width:179.641476pt;}
._21{width:217.658366pt;}
._2a{width:224.706220pt;}
._28{width:238.794432pt;}
._23{width:240.854311pt;}
._1c{width:300.592534pt;}
._29{width:734.670162pt;}
._22{width:803.170344pt;}
._26{width:956.759673pt;}
._27{width:1091.188419pt;}
._24{width:1205.193015pt;}
._25{width:1280.960554pt;}
.fs6{font-size:35.132786pt;}
.fs1{font-size:42.879983pt;}
.fs7{font-size:43.240303pt;}
.fs2{font-size:44.007662pt;}
.fs3{font-size:52.007659pt;}
.fs8{font-size:53.119979pt;}
.fs5{font-size:54.050112pt;}
.fs4{font-size:58.879976pt;}
.fs0{font-size:63.999974pt;}
.y0{bottom:0.000000pt;}
.y62{bottom:3.199062pt;}
.y3{bottom:3.840032pt;}
.y2{bottom:48.266880pt;}
.y1{bottom:52.266912pt;}
.yda{bottom:100.106627pt;}
.y96{bottom:105.546624pt;}
.y5f{bottom:112.426622pt;}
.y33{bottom:113.866621pt;}
.yd9{bottom:118.506619pt;}
.y95{bottom:123.946617pt;}
.y5e{bottom:130.826614pt;}
.y32{bottom:132.266614pt;}
.yd8{bottom:136.906612pt;}
.y94{bottom:142.346610pt;}
.y5d{bottom:149.226607pt;}
.y31{bottom:150.666606pt;}
.yd7{bottom:155.306605pt;}
.y93{bottom:160.746602pt;}
.y5c{bottom:167.626600pt;}
.y30{bottom:169.066599pt;}
.yd6{bottom:173.706597pt;}
.y92{bottom:179.146595pt;}
.y5b{bottom:186.026592pt;}
.y2f{bottom:191.466590pt;}
.yd5{bottom:192.106590pt;}
.y91{bottom:197.546588pt;}
.y5a{bottom:204.426585pt;}
.yd4{bottom:210.506582pt;}
.y2e{bottom:213.866581pt;}
.y90{bottom:215.946580pt;}
.y59{bottom:222.826578pt;}
.yd3{bottom:228.906575pt;}
.y2d{bottom:232.266574pt;}
.y8f{bottom:234.346573pt;}
.y58{bottom:241.226570pt;}
.yd2{bottom:246.506568pt;}
.y2b{bottom:250.666566pt;}
.y8e{bottom:252.746566pt;}
.y2c{bottom:258.026563pt;}
.yd1{bottom:258.506563pt;}
.y57{bottom:259.626563pt;}
.yc8{bottom:267.306560pt;}
.y2a{bottom:269.066559pt;}
.y8d{bottom:271.146558pt;}
.y56{bottom:278.026555pt;}
.y29{bottom:287.466552pt;}
.yb8{bottom:287.786552pt;}
.y8c{bottom:289.546551pt;}
.y55{bottom:296.426548pt;}
.yc9{bottom:297.066548pt;}
.yb7{bottom:299.306547pt;}
.y8b{bottom:307.946543pt;}
.y28{bottom:309.546543pt;}
.y54{bottom:314.826541pt;}
.yca{bottom:326.026536pt;}
.y8a{bottom:326.346536pt;}
.y53{bottom:333.226533pt;}
.y27{bottom:336.266532pt;}
.yc7{bottom:340.586530pt;}
.yc0{bottom:341.866530pt;}
.y89{bottom:344.746529pt;}
.yc6{bottom:345.226529pt;}
.ybf{bottom:350.026527pt;}
.y52{bottom:351.306526pt;}
.y26{bottom:354.666525pt;}
.ycb{bottom:355.786524pt;}
.yc5{bottom:356.746524pt;}
.ybe{bottom:361.546522pt;}
.y88{bottom:363.146521pt;}
.yc4{bottom:369.546519pt;}
.y51{bottom:370.026519pt;}
.y25{bottom:373.066517pt;}
.yc3{bottom:381.066514pt;}
.y87{bottom:381.546514pt;}
.ycc{bottom:384.906513pt;}
.y50{bottom:388.426511pt;}
.yba{bottom:391.146510pt;}
.y24{bottom:391.466510pt;}
.y86{bottom:399.946507pt;}
.yb9{bottom:402.666506pt;}
.y4f{bottom:406.826504pt;}
.y23{bottom:409.866503pt;}
.ycd{bottom:414.666501pt;}
.yf5{bottom:415.786500pt;}
.y85{bottom:418.346499pt;}
.y4e{bottom:425.226497pt;}
.yc2{bottom:426.986496pt;}
.y22{bottom:428.266495pt;}
.yb4{bottom:429.066495pt;}
.yb6{bottom:429.706495pt;}
.yf4{bottom:434.186493pt;}
.ybb{bottom:435.146493pt;}
.y84{bottom:436.746492pt;}
.yc1{bottom:438.506491pt;}
.yb3{bottom:440.586490pt;}
.yb5{bottom:441.226490pt;}
.y4d{bottom:443.626489pt;}
.yce{bottom:444.266489pt;}
.y21{bottom:446.666488pt;}
.y83{bottom:455.146485pt;}
.yf3{bottom:460.426482pt;}
.y4c{bottom:462.026482pt;}
.y20{bottom:465.066481pt;}
.ycf{bottom:473.386477pt;}
.y82{bottom:473.546477pt;}
.y4b{bottom:480.426474pt;}
.yb2{bottom:481.706474pt;}
.y1f{bottom:483.466473pt;}
.ybd{bottom:484.426473pt;}
.yf2{bottom:486.826472pt;}
.y81{bottom:491.946470pt;}
.yb1{bottom:493.226469pt;}
.ybc{bottom:495.946468pt;}
.y4a{bottom:498.826467pt;}
.y1e{bottom:501.866466pt;}
.yd0{bottom:503.146465pt;}
.yf1{bottom:505.226465pt;}
.y80{bottom:510.346463pt;}
.y49{bottom:517.226460pt;}
.y1d{bottom:520.266459pt;}
.yf0{bottom:523.626457pt;}
.y48{bottom:535.626452pt;}
.yb0{bottom:536.266452pt;}
.y7f{bottom:536.426452pt;}
.y1c{bottom:538.666451pt;}
.yef{bottom:550.026447pt;}
.y47{bottom:553.706445pt;}
.y1b{bottom:557.066444pt;}
.y7e{bottom:563.146441pt;}
.yaf{bottom:566.186440pt;}
.yee{bottom:568.426439pt;}
.y1a{bottom:575.466436pt;}
.y46{bottom:580.426434pt;}
.y7d{bottom:583.146433pt;}
.yae{bottom:584.586433pt;}
.yed{bottom:586.826432pt;}
.y19{bottom:593.866429pt;}
.y45{bottom:598.826427pt;}
.y7b{bottom:601.066426pt;}
.yad{bottom:602.986425pt;}
.y18{bottom:612.266422pt;}
.yec{bottom:613.226421pt;}
.y7a{bottom:618.986419pt;}
.y44{bottom:621.226418pt;}
.yac{bottom:621.386418pt;}
.y17{bottom:630.666414pt;}
.yeb{bottom:631.626414pt;}
.y79{bottom:636.746412pt;}
.yab{bottom:639.786411pt;}
.y42{bottom:645.226409pt;}
.y16{bottom:649.066407pt;}
.yea{bottom:650.026407pt;}
.y78{bottom:654.666405pt;}
.yaa{bottom:658.186403pt;}
.y41{bottom:665.386401pt;}
.y15{bottom:667.466400pt;}
.y77{bottom:672.586398pt;}
.ye9{bottom:676.426396pt;}
.ya9{bottom:676.586396pt;}
.y40{bottom:680.266395pt;}
.y7c{bottom:682.026394pt;}
.y13{bottom:685.866392pt;}
.y76{bottom:690.346391pt;}
.y14{bottom:693.226389pt;}
.y38{bottom:693.386389pt;}
.ye8{bottom:694.826389pt;}
.ya8{bottom:694.986389pt;}
.y12{bottom:707.946383pt;}
.y75{bottom:708.266383pt;}
.y39{bottom:711.306382pt;}
.ya7{bottom:713.386381pt;}
.ye7{bottom:721.226378pt;}
.y74{bottom:726.186376pt;}
.y3a{bottom:729.386375pt;}
.y3f{bottom:731.146374pt;}
.ya6{bottom:731.786374pt;}
.ye6{bottom:739.626371pt;}
.y11{bottom:742.666370pt;}
.y73{bottom:743.946369pt;}
.y3e{bottom:745.226369pt;}
.y3b{bottom:747.306368pt;}
.ya5{bottom:750.186367pt;}
.ye5{bottom:758.026363pt;}
.y10{bottom:761.066362pt;}
.y72{bottom:761.866362pt;}
.y3c{bottom:765.386361pt;}
.ya4{bottom:768.586359pt;}
.y71{bottom:779.786355pt;}
.y3d{bottom:782.346354pt;}
.ya3{bottom:786.986352pt;}
.yf{bottom:787.466352pt;}
.ye4{bottom:795.146349pt;}
.ya2{bottom:805.066345pt;}
.y70{bottom:806.986344pt;}
.ye3{bottom:813.546341pt;}
.ye{bottom:813.866341pt;}
.y6f{bottom:815.466340pt;}
.y43{bottom:819.466339pt;}
.ya1{bottom:821.866338pt;}
.ye2{bottom:831.946334pt;}
.y6e{bottom:833.386333pt;}
.ya0{bottom:839.786331pt;}
.yd{bottom:840.266331pt;}
.y37{bottom:848.266327pt;}
.y6c{bottom:851.146326pt;}
.y6d{bottom:851.626326pt;}
.y9f{bottom:856.586324pt;}
.yc{bottom:866.666320pt;}
.y6b{bottom:869.066319pt;}
.y9e{bottom:874.506317pt;}
.yb{bottom:885.066313pt;}
.y6a{bottom:886.826312pt;}
.ye1{bottom:887.466312pt;}
.y9d{bottom:891.306310pt;}
.ya{bottom:903.466305pt;}
.y68{bottom:904.746305pt;}
.y69{bottom:905.226305pt;}
.ye0{bottom:905.866304pt;}
.y9c{bottom:909.226303pt;}
.y9{bottom:921.866298pt;}
.y67{bottom:922.666298pt;}
.ydf{bottom:924.266297pt;}
.y9b{bottom:926.026296pt;}
.y8{bottom:940.266291pt;}
.y9a{bottom:943.946289pt;}
.y66{bottom:949.866287pt;}
.yde{bottom:950.666286pt;}
.y65{bottom:958.346283pt;}
.y7{bottom:958.666283pt;}
.y99{bottom:960.906282pt;}
.ydc{bottom:969.066279pt;}
.y64{bottom:976.266276pt;}
.ydd{bottom:976.426276pt;}
.y6{bottom:976.746276pt;}
.y36{bottom:977.066276pt;}
.y98{bottom:978.666275pt;}
.ydb{bottom:987.466272pt;}
.y63{bottom:994.026269pt;}
.y5{bottom:995.146269pt;}
.y35{bottom:995.466268pt;}
.y97{bottom:995.626268pt;}
.y61{bottom:1009.387200pt;}
.y60{bottom:1012.586262pt;}
.y4{bottom:1013.546261pt;}
.y34{bottom:1013.866261pt;}
.h9{height:16.640000pt;}
.h2{height:18.240000pt;}
.hc{height:26.033394pt;}
.h6{height:30.126339pt;}
.hf{height:32.041064pt;}
.h5{height:32.609678pt;}
.h7{height:35.602900pt;}
.h10{height:36.883110pt;}
.h4{height:37.624672pt;}
.hd{height:39.473389pt;}
.hb{height:40.051133pt;}
.h8{height:40.307484pt;}
.h3{height:43.812482pt;}
.ha{height:51.663729pt;}
.he{height:52.913384pt;}
.h1{height:56.156228pt;}
.h0{height:1122.666667pt;}
.w1{width:0.320000pt;}
.w2{width:51.520000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:113.439955pt;}
.x49{left:123.833417pt;}
.x21{left:137.437313pt;}
.x20{left:141.439482pt;}
.x4a{left:145.919942pt;}
.x4b{left:154.239938pt;}
.x2b{left:155.199938pt;}
.x29{left:156.479937pt;}
.x3{left:160.159936pt;}
.x22{left:161.439913pt;}
.x2a{left:162.559935pt;}
.x23{left:163.839934pt;}
.x27{left:165.919934pt;}
.x47{left:167.999928pt;}
.x46{left:172.159930pt;}
.x2d{left:178.879928pt;}
.x3d{left:191.039436pt;}
.x26{left:196.159922pt;}
.x3e{left:203.199426pt;}
.x39{left:207.839619pt;}
.x3a{left:233.599593pt;}
.x2e{left:234.879906pt;}
.x14{left:235.839819pt;}
.x13{left:246.879818pt;}
.x2f{left:251.999899pt;}
.x9{left:257.119324pt;}
.x4{left:258.240662pt;}
.x24{left:259.840000pt;}
.xa{left:263.359371pt;}
.x38{left:267.039634pt;}
.xe{left:272.319891pt;}
.x2c{left:276.159912pt;}
.x28{left:279.839888pt;}
.x8{left:284.159350pt;}
.xc{left:285.759886pt;}
.x36{left:288.159646pt;}
.xd{left:297.439881pt;}
.x37{left:301.279633pt;}
.x1e{left:302.879879pt;}
.x12{left:304.799869pt;}
.xf{left:307.679877pt;}
.x11{left:310.879870pt;}
.x6{left:314.560191pt;}
.x25{left:316.639873pt;}
.x7{left:319.679833pt;}
.x10{left:322.879871pt;}
.xb{left:326.079293pt;}
.x15{left:335.839866pt;}
.x16{left:337.919871pt;}
.x3f{left:355.199712pt;}
.x40{left:365.119740pt;}
.x5{left:396.800141pt;}
.x17{left:397.919808pt;}
.x3b{left:398.879161pt;}
.x18{left:399.839811pt;}
.x3c{left:401.119160pt;}
.x1d{left:403.839687pt;}
.x41{left:425.599721pt;}
.x42{left:435.039751pt;}
.x19{left:459.839748pt;}
.x1a{left:461.919754pt;}
.x43{left:464.959773pt;}
.x44{left:470.239773pt;}
.x45{left:503.519784pt;}
.x1b{left:521.919691pt;}
.x1c{left:523.839694pt;}
.x34{left:528.319735pt;}
.x35{left:535.359736pt;}
.x30{left:563.999774pt;}
.x31{left:568.639774pt;}
.x32{left:599.199733pt;}
.x33{left:602.559731pt;}
.x1f{left:605.919758pt;}
.x48{left:640.799744pt;}
.x2{left:680.160000pt;}
}




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