
    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_e5080ace36095d7aeb3dc2af.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_596a750de933c8880bd9d55c.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d72bc78452538d8d479edbe4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_b0732dd98d7867136d808d27.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_ec46a6972a91626c7612454d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_181996e5e6efdea8bcd5ce22.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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;}
.m2{transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:27.360600px;}
.v1{vertical-align:30.239400px;}
.ls7{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.055980px;}
.lsc{letter-spacing:0.059760px;}
.ls4{letter-spacing:0.133080px;}
.ls9{letter-spacing:0.189799px;}
.lsb{letter-spacing:0.358560px;}
.ls5{letter-spacing:0.430500px;}
.ls2{letter-spacing:0.514980px;}
.ls1{letter-spacing:0.730740px;}
.ls3{letter-spacing:0.895320px;}
.ls6{letter-spacing:1.031160px;}
.lsa{letter-spacing:4.505760px;}
.ls8{letter-spacing:7.932000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9{word-spacing:-16.560000px;}
.wsb{word-spacing:-15.298560px;}
.wsa{word-spacing:-14.940000px;}
.ws8{word-spacing:-10.440000px;}
.wsc{word-spacing:-9.720000px;}
.ws0{word-spacing:0.000000px;}
.ws1{word-spacing:0.139920px;}
.ws5{word-spacing:0.332760px;}
.ws6{word-spacing:1.076340px;}
.ws3{word-spacing:1.287420px;}
.ws2{word-spacing:1.826880px;}
.ws4{word-spacing:2.238360px;}
.ws7{word-spacing:2.577960px;}
._24{margin-left:-2.837760px;}
._1{margin-left:-1.826880px;}
._0{width:1.826850px;}
._7{width:2.877510px;}
._12{width:4.091970px;}
._c{width:5.139360px;}
._d{width:6.172650px;}
._6{width:7.529760px;}
._3{width:8.674350px;}
._2{width:9.995040px;}
._e{width:11.866560px;}
._5{width:13.770510px;}
._11{width:14.980800px;}
._4{width:16.135230px;}
._29{width:17.490570px;}
._14{width:18.536640px;}
._13{width:19.987200px;}
._1d{width:21.643200px;}
._1e{width:23.034240px;}
._1f{width:24.121920px;}
._19{width:25.286400px;}
._f{width:26.605230px;}
._21{width:27.711570px;}
._20{width:28.797120px;}
._26{width:30.119040px;}
._27{width:31.465620px;}
._1c{width:32.468160px;}
._1b{width:33.622080px;}
._a{width:35.370030px;}
._b{width:36.495090px;}
._17{width:38.185920px;}
._18{width:39.618240px;}
._8{width:41.055120px;}
._9{width:42.429600px;}
._25{width:44.129280px;}
._23{width:45.339840px;}
._22{width:46.472640px;}
._1a{width:48.658560px;}
._28{width:50.398080px;}
._16{width:54.194880px;}
._15{width:55.491840px;}
._10{width:68.425920px;}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:57.000000px;}
.fs5{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y19{bottom:238.079850px;}
.y18{bottom:256.799850px;}
.y17{bottom:278.759550px;}
.yab{bottom:343.019850px;}
.y3f{bottom:344.819850px;}
.y113{bottom:347.339550px;}
.y62{bottom:350.039700px;}
.ya3{bottom:350.039850px;}
.yc3{bottom:361.919700px;}
.yaa{bottom:361.919850px;}
.ye2{bottom:363.899550px;}
.y3e{bottom:363.899850px;}
.y112{bottom:364.619550px;}
.y61{bottom:369.119700px;}
.y7a{bottom:369.119850px;}
.y87{bottom:370.379850px;}
.yfc{bottom:372.899700px;}
.yc2{bottom:379.199700px;}
.y14{bottom:379.200000px;}
.ya9{bottom:380.819850px;}
.y111{bottom:381.899550px;}
.y3d{bottom:382.799850px;}
.y60{bottom:388.019700px;}
.y79{bottom:388.019850px;}
.y86{bottom:389.459850px;}
.ye1{bottom:390.179550px;}
.yfb{bottom:399.179700px;}
.ya8{bottom:399.899850px;}
.y3c{bottom:401.879850px;}
.yc1{bottom:405.479700px;}
.y5f{bottom:406.919700px;}
.y78{bottom:406.919850px;}
.ye0{bottom:407.279550px;}
.y110{bottom:408.179550px;}
.y85{bottom:408.359850px;}
.yfa{bottom:416.279700px;}
.ya7{bottom:418.619850px;}
.y3b{bottom:420.779850px;}
.y13{bottom:421.200000px;}
.ydf{bottom:424.559550px;}
.y10f{bottom:425.279550px;}
.ya2{bottom:425.999550px;}
.y5e{bottom:425.999700px;}
.y77{bottom:425.999850px;}
.y84{bottom:427.439850px;}
.yc0{bottom:431.579700px;}
.ya6{bottom:435.719850px;}
.y3a{bottom:439.679850px;}
.yf9{bottom:442.559700px;}
.ya1{bottom:444.899550px;}
.y5d{bottom:444.899700px;}
.y76{bottom:444.899850px;}
.y83{bottom:446.339850px;}
.ybf{bottom:448.859700px;}
.yde{bottom:450.839550px;}
.y10e{bottom:451.559550px;}
.y12{bottom:452.700000px;}
.ya5{bottom:453.359850px;}
.y39{bottom:458.759850px;}
.yf8{bottom:459.839700px;}
.ya0{bottom:463.979550px;}
.y5c{bottom:463.979700px;}
.y75{bottom:463.979850px;}
.y82{bottom:465.239850px;}
.ybe{bottom:466.139700px;}
.ydd{bottom:468.119550px;}
.ya4{bottom:468.299850px;}
.y10d{bottom:468.839550px;}
.yf7{bottom:477.119700px;}
.y38{bottom:477.659850px;}
.y9f{bottom:482.879550px;}
.y5b{bottom:482.879700px;}
.y74{bottom:482.879850px;}
.y81{bottom:483.959850px;}
.y11{bottom:484.200000px;}
.ydc{bottom:485.399550px;}
.y10c{bottom:486.119550px;}
.ybd{bottom:492.419700px;}
.y37{bottom:496.739850px;}
.y9e{bottom:501.779550px;}
.y5a{bottom:501.779700px;}
.y73{bottom:501.779850px;}
.y80{bottom:503.219850px;}
.y10b{bottom:503.399550px;}
.yf6{bottom:503.399700px;}
.y10{bottom:508.200000px;}
.ybc{bottom:509.699700px;}
.ydb{bottom:511.679550px;}
.y36{bottom:515.279850px;}
.yf5{bottom:520.679700px;}
.y9d{bottom:520.859550px;}
.y59{bottom:520.859700px;}
.y72{bottom:520.859850px;}
.y7f{bottom:521.939700px;}
.yda{bottom:528.779550px;}
.y10a{bottom:529.679550px;}
.y35{bottom:534.179850px;}
.ybb{bottom:535.979700px;}
.y7e{bottom:539.219700px;}
.yae{bottom:539.399850px;}
.yf{bottom:539.700000px;}
.y9c{bottom:539.759550px;}
.y58{bottom:539.759700px;}
.y71{bottom:539.759850px;}
.y109{bottom:546.779550px;}
.yf4{bottom:546.779700px;}
.yba{bottom:553.079700px;}
.y34{bottom:553.259700px;}
.yd9{bottom:555.059550px;}
.y7d{bottom:556.499700px;}
.y9b{bottom:558.839550px;}
.y57{bottom:558.839700px;}
.y70{bottom:558.839850px;}
.y108{bottom:564.059550px;}
.yf3{bottom:564.059700px;}
.yb9{bottom:570.359700px;}
.y33{bottom:570.539700px;}
.yd8{bottom:572.339550px;}
.y7c{bottom:573.779700px;}
.y9a{bottom:577.739550px;}
.y56{bottom:577.739700px;}
.y6f{bottom:577.739850px;}
.y7b{bottom:587.279700px;}
.y32{bottom:587.819700px;}
.y107{bottom:590.339550px;}
.yf2{bottom:590.339700px;}
.y99{bottom:596.639550px;}
.y55{bottom:596.639700px;}
.y6e{bottom:596.639850px;}
.yd7{bottom:598.619550px;}
.y31{bottom:605.099700px;}
.y106{bottom:607.619550px;}
.yf1{bottom:607.619700px;}
.yb8{bottom:613.919700px;}
.y98{bottom:615.719550px;}
.y54{bottom:615.719700px;}
.y6d{bottom:615.719850px;}
.yd6{bottom:615.899550px;}
.y30{bottom:622.379700px;}
.y105{bottom:624.899550px;}
.yb7{bottom:631.199700px;}
.yd5{bottom:633.179550px;}
.yf0{bottom:633.899700px;}
.y97{bottom:634.619550px;}
.y53{bottom:634.619700px;}
.y6c{bottom:634.619850px;}
.y2f{bottom:639.479700px;}
.ye{bottom:641.700000px;}
.y104{bottom:642.179550px;}
.yd4{bottom:650.279550px;}
.yef{bottom:651.179700px;}
.y96{bottom:653.699550px;}
.y52{bottom:653.699700px;}
.y6b{bottom:653.699850px;}
.y2e{bottom:656.759700px;}
.yb6{bottom:657.479700px;}
.y103{bottom:659.279550px;}
.yd{bottom:661.200000px;}
.y95{bottom:672.599550px;}
.y51{bottom:672.599700px;}
.y6a{bottom:672.599850px;}
.y2d{bottom:674.039700px;}
.yb5{bottom:674.579700px;}
.yd3{bottom:676.559550px;}
.yee{bottom:677.279700px;}
.yc{bottom:680.700000px;}
.y102{bottom:685.559550px;}
.y2c{bottom:691.319700px;}
.y94{bottom:691.499550px;}
.y50{bottom:691.499700px;}
.y69{bottom:691.499850px;}
.yb4{bottom:691.859700px;}
.yd2{bottom:693.839550px;}
.yed{bottom:694.559700px;}
.yb{bottom:700.200000px;}
.y101{bottom:702.839550px;}
.y2b{bottom:708.239700px;}
.y93{bottom:710.579550px;}
.y4f{bottom:710.579700px;}
.y68{bottom:710.579850px;}
.yd1{bottom:711.119550px;}
.yec{bottom:711.839700px;}
.yb3{bottom:718.139700px;}
.ya{bottom:719.700000px;}
.y100{bottom:720.119550px;}
.y2a{bottom:725.879700px;}
.y92{bottom:729.479550px;}
.y4e{bottom:729.479700px;}
.y67{bottom:729.479850px;}
.yb2{bottom:735.419700px;}
.yd0{bottom:737.399550px;}
.yeb{bottom:738.119700px;}
.y29{bottom:742.979700px;}
.yff{bottom:746.399550px;}
.y91{bottom:748.559550px;}
.y4d{bottom:748.559700px;}
.y66{bottom:748.559850px;}
.yea{bottom:755.399700px;}
.y28{bottom:760.259700px;}
.yb1{bottom:761.699700px;}
.ycf{bottom:763.679550px;}
.yad{bottom:767.099850px;}
.y90{bottom:767.459550px;}
.y4c{bottom:767.459700px;}
.y65{bottom:767.459850px;}
.ye9{bottom:772.679700px;}
.y9{bottom:773.700000px;}
.y27{bottom:777.539700px;}
.yb0{bottom:778.979700px;}
.yce{bottom:780.779550px;}
.yac{bottom:786.179850px;}
.y8f{bottom:786.539550px;}
.y4b{bottom:786.539700px;}
.y64{bottom:786.539850px;}
.yfe{bottom:789.779550px;}
.y8{bottom:793.200000px;}
.y26{bottom:794.819700px;}
.ye8{bottom:798.779700px;}
.yaf{bottom:805.079850px;}
.y8e{bottom:805.439550px;}
.y4a{bottom:805.439700px;}
.y63{bottom:805.439850px;}
.ycd{bottom:807.059550px;}
.y25{bottom:812.099700px;}
.y7{bottom:812.700000px;}
.ye7{bottom:816.059700px;}
.y11a{bottom:818.399700px;}
.y8d{bottom:824.339550px;}
.y49{bottom:824.339850px;}
.y24{bottom:829.379700px;}
.y6{bottom:832.200000px;}
.yfd{bottom:833.339550px;}
.ye6{bottom:833.339700px;}
.y119{bottom:837.479700px;}
.y8c{bottom:843.419550px;}
.y48{bottom:843.419850px;}
.y23{bottom:846.479700px;}
.ycc{bottom:850.619550px;}
.y5{bottom:851.700000px;}
.y118{bottom:856.199700px;}
.ye5{bottom:859.619700px;}
.y8b{bottom:862.319550px;}
.y47{bottom:862.319850px;}
.y22{bottom:863.759700px;}
.ycb{bottom:867.899550px;}
.y117{bottom:873.299700px;}
.ye4{bottom:876.899550px;}
.y46{bottom:881.039850px;}
.y8a{bottom:881.399550px;}
.y21{bottom:881.399850px;}
.yca{bottom:893.999550px;}
.y116{bottom:899.579700px;}
.y89{bottom:900.299550px;}
.y20{bottom:900.299850px;}
.yc9{bottom:911.279550px;}
.y115{bottom:918.839700px;}
.y88{bottom:919.199550px;}
.y1f{bottom:919.199850px;}
.ye3{bottom:920.279550px;}
.yc8{bottom:937.559550px;}
.y1e{bottom:938.279850px;}
.yc7{bottom:954.839550px;}
.y1d{bottom:956.819850px;}
.y45{bottom:957.179850px;}
.y114{bottom:972.119550px;}
.y1c{bottom:975.899850px;}
.y44{bottom:976.259850px;}
.yc6{bottom:981.119550px;}
.y1b{bottom:994.799850px;}
.y43{bottom:995.159850px;}
.yc5{bottom:998.399550px;}
.y4{bottom:1001.700000px;}
.y1a{bottom:1013.699850px;}
.y42{bottom:1014.059850px;}
.yc4{bottom:1015.499550px;}
.y3{bottom:1033.200000px;}
.y16{bottom:1057.259550px;}
.y41{bottom:1059.059550px;}
.y15{bottom:1076.699550px;}
.y40{bottom:1077.959550px;}
.y2{bottom:1155.000000px;}
.y1{bottom:1179.000000px;}
.h4{height:41.497559px;}
.hc{height:58.621992px;}
.hb{height:58.651172px;}
.h5{height:59.449219px;}
.ha{height:60.226875px;}
.h9{height:64.978594px;}
.h7{height:65.010937px;}
.h11{height:65.519194px;}
.h8{height:66.757500px;}
.h6{height:70.664062px;}
.he{height:71.223956px;}
.hd{height:71.224556px;}
.h10{height:71.225156px;}
.hf{height:71.226356px;}
.h3{height:75.093750px;}
.h2{height:78.626953px;}
.h1{height:87.609375px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x3{left:57.000000px;}
.x4{left:60.000000px;}
.x5{left:67.500000px;}
.x7{left:204.119850px;}
.xd{left:275.580494px;}
.xf{left:276.839738px;}
.xa{left:279.721008px;}
.xb{left:328.140439px;}
.xe{left:343.440253px;}
.x10{left:367.919057px;}
.x11{left:438.119850px;}
.x6{left:441.899850px;}
.xc{left:446.399940px;}
.x9{left:464.039850px;}
.x1{left:544.170000px;}
.x12{left:686.879700px;}
.x8{left:688.858332px;}
.x2{left:727.440000px;}
@media print{
.v2{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:24.320533pt;}
.v1{vertical-align:26.879467pt;}
.ls7{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.049760pt;}
.lsc{letter-spacing:0.053120pt;}
.ls4{letter-spacing:0.118293pt;}
.ls9{letter-spacing:0.168710pt;}
.lsb{letter-spacing:0.318720pt;}
.ls5{letter-spacing:0.382667pt;}
.ls2{letter-spacing:0.457760pt;}
.ls1{letter-spacing:0.649547pt;}
.ls3{letter-spacing:0.795840pt;}
.ls6{letter-spacing:0.916587pt;}
.lsa{letter-spacing:4.005120pt;}
.ls8{letter-spacing:7.050667pt;}
.ws9{word-spacing:-14.720000pt;}
.wsb{word-spacing:-13.598720pt;}
.wsa{word-spacing:-13.280000pt;}
.ws8{word-spacing:-9.280000pt;}
.wsc{word-spacing:-8.640000pt;}
.ws0{word-spacing:0.000000pt;}
.ws1{word-spacing:0.124373pt;}
.ws5{word-spacing:0.295787pt;}
.ws6{word-spacing:0.956747pt;}
.ws3{word-spacing:1.144373pt;}
.ws2{word-spacing:1.623893pt;}
.ws4{word-spacing:1.989653pt;}
.ws7{word-spacing:2.291520pt;}
._24{margin-left:-2.522453pt;}
._1{margin-left:-1.623893pt;}
._0{width:1.623867pt;}
._7{width:2.557787pt;}
._12{width:3.637307pt;}
._c{width:4.568320pt;}
._d{width:5.486800pt;}
._6{width:6.693120pt;}
._3{width:7.710533pt;}
._2{width:8.884480pt;}
._e{width:10.548053pt;}
._5{width:12.240453pt;}
._11{width:13.316267pt;}
._4{width:14.342427pt;}
._29{width:15.547173pt;}
._14{width:16.477013pt;}
._13{width:17.766400pt;}
._1d{width:19.238400pt;}
._1e{width:20.474880pt;}
._1f{width:21.441707pt;}
._19{width:22.476800pt;}
._f{width:23.649093pt;}
._21{width:24.632507pt;}
._20{width:25.597440pt;}
._26{width:26.772480pt;}
._27{width:27.969440pt;}
._1c{width:28.860587pt;}
._1b{width:29.886293pt;}
._a{width:31.440027pt;}
._b{width:32.440080pt;}
._17{width:33.943040pt;}
._18{width:35.216213pt;}
._8{width:36.493440pt;}
._9{width:37.715200pt;}
._25{width:39.226027pt;}
._23{width:40.302080pt;}
._22{width:41.309013pt;}
._1a{width:43.252053pt;}
._28{width:44.798293pt;}
._16{width:48.173227pt;}
._15{width:49.326080pt;}
._10{width:60.823040pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:50.666667pt;}
.fs5{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y19{bottom:211.626533pt;}
.y18{bottom:228.266533pt;}
.y17{bottom:247.786267pt;}
.yab{bottom:304.906533pt;}
.y3f{bottom:306.506533pt;}
.y113{bottom:308.746267pt;}
.y62{bottom:311.146400pt;}
.ya3{bottom:311.146533pt;}
.yc3{bottom:321.706400pt;}
.yaa{bottom:321.706533pt;}
.ye2{bottom:323.466267pt;}
.y3e{bottom:323.466533pt;}
.y112{bottom:324.106267pt;}
.y61{bottom:328.106400pt;}
.y7a{bottom:328.106533pt;}
.y87{bottom:329.226533pt;}
.yfc{bottom:331.466400pt;}
.yc2{bottom:337.066400pt;}
.y14{bottom:337.066667pt;}
.ya9{bottom:338.506533pt;}
.y111{bottom:339.466267pt;}
.y3d{bottom:340.266533pt;}
.y60{bottom:344.906400pt;}
.y79{bottom:344.906533pt;}
.y86{bottom:346.186533pt;}
.ye1{bottom:346.826267pt;}
.yfb{bottom:354.826400pt;}
.ya8{bottom:355.466533pt;}
.y3c{bottom:357.226533pt;}
.yc1{bottom:360.426400pt;}
.y5f{bottom:361.706400pt;}
.y78{bottom:361.706533pt;}
.ye0{bottom:362.026267pt;}
.y110{bottom:362.826267pt;}
.y85{bottom:362.986533pt;}
.yfa{bottom:370.026400pt;}
.ya7{bottom:372.106533pt;}
.y3b{bottom:374.026533pt;}
.y13{bottom:374.400000pt;}
.ydf{bottom:377.386267pt;}
.y10f{bottom:378.026267pt;}
.ya2{bottom:378.666267pt;}
.y5e{bottom:378.666400pt;}
.y77{bottom:378.666533pt;}
.y84{bottom:379.946533pt;}
.yc0{bottom:383.626400pt;}
.ya6{bottom:387.306533pt;}
.y3a{bottom:390.826533pt;}
.yf9{bottom:393.386400pt;}
.ya1{bottom:395.466267pt;}
.y5d{bottom:395.466400pt;}
.y76{bottom:395.466533pt;}
.y83{bottom:396.746533pt;}
.ybf{bottom:398.986400pt;}
.yde{bottom:400.746267pt;}
.y10e{bottom:401.386267pt;}
.y12{bottom:402.400000pt;}
.ya5{bottom:402.986533pt;}
.y39{bottom:407.786533pt;}
.yf8{bottom:408.746400pt;}
.ya0{bottom:412.426267pt;}
.y5c{bottom:412.426400pt;}
.y75{bottom:412.426533pt;}
.y82{bottom:413.546533pt;}
.ybe{bottom:414.346400pt;}
.ydd{bottom:416.106267pt;}
.ya4{bottom:416.266533pt;}
.y10d{bottom:416.746267pt;}
.yf7{bottom:424.106400pt;}
.y38{bottom:424.586533pt;}
.y9f{bottom:429.226267pt;}
.y5b{bottom:429.226400pt;}
.y74{bottom:429.226533pt;}
.y81{bottom:430.186533pt;}
.y11{bottom:430.400000pt;}
.ydc{bottom:431.466267pt;}
.y10c{bottom:432.106267pt;}
.ybd{bottom:437.706400pt;}
.y37{bottom:441.546533pt;}
.y9e{bottom:446.026267pt;}
.y5a{bottom:446.026400pt;}
.y73{bottom:446.026533pt;}
.y80{bottom:447.306533pt;}
.y10b{bottom:447.466267pt;}
.yf6{bottom:447.466400pt;}
.y10{bottom:451.733333pt;}
.ybc{bottom:453.066400pt;}
.ydb{bottom:454.826267pt;}
.y36{bottom:458.026533pt;}
.yf5{bottom:462.826400pt;}
.y9d{bottom:462.986267pt;}
.y59{bottom:462.986400pt;}
.y72{bottom:462.986533pt;}
.y7f{bottom:463.946400pt;}
.yda{bottom:470.026267pt;}
.y10a{bottom:470.826267pt;}
.y35{bottom:474.826533pt;}
.ybb{bottom:476.426400pt;}
.y7e{bottom:479.306400pt;}
.yae{bottom:479.466533pt;}
.yf{bottom:479.733333pt;}
.y9c{bottom:479.786267pt;}
.y58{bottom:479.786400pt;}
.y71{bottom:479.786533pt;}
.y109{bottom:486.026267pt;}
.yf4{bottom:486.026400pt;}
.yba{bottom:491.626400pt;}
.y34{bottom:491.786400pt;}
.yd9{bottom:493.386267pt;}
.y7d{bottom:494.666400pt;}
.y9b{bottom:496.746267pt;}
.y57{bottom:496.746400pt;}
.y70{bottom:496.746533pt;}
.y108{bottom:501.386267pt;}
.yf3{bottom:501.386400pt;}
.yb9{bottom:506.986400pt;}
.y33{bottom:507.146400pt;}
.yd8{bottom:508.746267pt;}
.y7c{bottom:510.026400pt;}
.y9a{bottom:513.546267pt;}
.y56{bottom:513.546400pt;}
.y6f{bottom:513.546533pt;}
.y7b{bottom:522.026400pt;}
.y32{bottom:522.506400pt;}
.y107{bottom:524.746267pt;}
.yf2{bottom:524.746400pt;}
.y99{bottom:530.346267pt;}
.y55{bottom:530.346400pt;}
.y6e{bottom:530.346533pt;}
.yd7{bottom:532.106267pt;}
.y31{bottom:537.866400pt;}
.y106{bottom:540.106267pt;}
.yf1{bottom:540.106400pt;}
.yb8{bottom:545.706400pt;}
.y98{bottom:547.306267pt;}
.y54{bottom:547.306400pt;}
.y6d{bottom:547.306533pt;}
.yd6{bottom:547.466267pt;}
.y30{bottom:553.226400pt;}
.y105{bottom:555.466267pt;}
.yb7{bottom:561.066400pt;}
.yd5{bottom:562.826267pt;}
.yf0{bottom:563.466400pt;}
.y97{bottom:564.106267pt;}
.y53{bottom:564.106400pt;}
.y6c{bottom:564.106533pt;}
.y2f{bottom:568.426400pt;}
.ye{bottom:570.400000pt;}
.y104{bottom:570.826267pt;}
.yd4{bottom:578.026267pt;}
.yef{bottom:578.826400pt;}
.y96{bottom:581.066267pt;}
.y52{bottom:581.066400pt;}
.y6b{bottom:581.066533pt;}
.y2e{bottom:583.786400pt;}
.yb6{bottom:584.426400pt;}
.y103{bottom:586.026267pt;}
.yd{bottom:587.733333pt;}
.y95{bottom:597.866267pt;}
.y51{bottom:597.866400pt;}
.y6a{bottom:597.866533pt;}
.y2d{bottom:599.146400pt;}
.yb5{bottom:599.626400pt;}
.yd3{bottom:601.386267pt;}
.yee{bottom:602.026400pt;}
.yc{bottom:605.066667pt;}
.y102{bottom:609.386267pt;}
.y2c{bottom:614.506400pt;}
.y94{bottom:614.666267pt;}
.y50{bottom:614.666400pt;}
.y69{bottom:614.666533pt;}
.yb4{bottom:614.986400pt;}
.yd2{bottom:616.746267pt;}
.yed{bottom:617.386400pt;}
.yb{bottom:622.400000pt;}
.y101{bottom:624.746267pt;}
.y2b{bottom:629.546400pt;}
.y93{bottom:631.626267pt;}
.y4f{bottom:631.626400pt;}
.y68{bottom:631.626533pt;}
.yd1{bottom:632.106267pt;}
.yec{bottom:632.746400pt;}
.yb3{bottom:638.346400pt;}
.ya{bottom:639.733333pt;}
.y100{bottom:640.106267pt;}
.y2a{bottom:645.226400pt;}
.y92{bottom:648.426267pt;}
.y4e{bottom:648.426400pt;}
.y67{bottom:648.426533pt;}
.yb2{bottom:653.706400pt;}
.yd0{bottom:655.466267pt;}
.yeb{bottom:656.106400pt;}
.y29{bottom:660.426400pt;}
.yff{bottom:663.466267pt;}
.y91{bottom:665.386267pt;}
.y4d{bottom:665.386400pt;}
.y66{bottom:665.386533pt;}
.yea{bottom:671.466400pt;}
.y28{bottom:675.786400pt;}
.yb1{bottom:677.066400pt;}
.ycf{bottom:678.826267pt;}
.yad{bottom:681.866533pt;}
.y90{bottom:682.186267pt;}
.y4c{bottom:682.186400pt;}
.y65{bottom:682.186533pt;}
.ye9{bottom:686.826400pt;}
.y9{bottom:687.733333pt;}
.y27{bottom:691.146400pt;}
.yb0{bottom:692.426400pt;}
.yce{bottom:694.026267pt;}
.yac{bottom:698.826533pt;}
.y8f{bottom:699.146267pt;}
.y4b{bottom:699.146400pt;}
.y64{bottom:699.146533pt;}
.yfe{bottom:702.026267pt;}
.y8{bottom:705.066667pt;}
.y26{bottom:706.506400pt;}
.ye8{bottom:710.026400pt;}
.yaf{bottom:715.626533pt;}
.y8e{bottom:715.946267pt;}
.y4a{bottom:715.946400pt;}
.y63{bottom:715.946533pt;}
.ycd{bottom:717.386267pt;}
.y25{bottom:721.866400pt;}
.y7{bottom:722.400000pt;}
.ye7{bottom:725.386400pt;}
.y11a{bottom:727.466400pt;}
.y8d{bottom:732.746267pt;}
.y49{bottom:732.746533pt;}
.y24{bottom:737.226400pt;}
.y6{bottom:739.733333pt;}
.yfd{bottom:740.746267pt;}
.ye6{bottom:740.746400pt;}
.y119{bottom:744.426400pt;}
.y8c{bottom:749.706267pt;}
.y48{bottom:749.706533pt;}
.y23{bottom:752.426400pt;}
.ycc{bottom:756.106267pt;}
.y5{bottom:757.066667pt;}
.y118{bottom:761.066400pt;}
.ye5{bottom:764.106400pt;}
.y8b{bottom:766.506267pt;}
.y47{bottom:766.506533pt;}
.y22{bottom:767.786400pt;}
.ycb{bottom:771.466267pt;}
.y117{bottom:776.266400pt;}
.ye4{bottom:779.466267pt;}
.y46{bottom:783.146533pt;}
.y8a{bottom:783.466267pt;}
.y21{bottom:783.466533pt;}
.yca{bottom:794.666267pt;}
.y116{bottom:799.626400pt;}
.y89{bottom:800.266267pt;}
.y20{bottom:800.266533pt;}
.yc9{bottom:810.026267pt;}
.y115{bottom:816.746400pt;}
.y88{bottom:817.066267pt;}
.y1f{bottom:817.066533pt;}
.ye3{bottom:818.026267pt;}
.yc8{bottom:833.386267pt;}
.y1e{bottom:834.026533pt;}
.yc7{bottom:848.746267pt;}
.y1d{bottom:850.506533pt;}
.y45{bottom:850.826533pt;}
.y114{bottom:864.106267pt;}
.y1c{bottom:867.466533pt;}
.y44{bottom:867.786533pt;}
.yc6{bottom:872.106267pt;}
.y1b{bottom:884.266533pt;}
.y43{bottom:884.586533pt;}
.yc5{bottom:887.466267pt;}
.y4{bottom:890.400000pt;}
.y1a{bottom:901.066533pt;}
.y42{bottom:901.386533pt;}
.yc4{bottom:902.666267pt;}
.y3{bottom:918.400000pt;}
.y16{bottom:939.786267pt;}
.y41{bottom:941.386267pt;}
.y15{bottom:957.066267pt;}
.y40{bottom:958.186267pt;}
.y2{bottom:1026.666667pt;}
.y1{bottom:1048.000000pt;}
.h4{height:36.886719pt;}
.hc{height:52.108438pt;}
.hb{height:52.134375pt;}
.h5{height:52.843750pt;}
.ha{height:53.535000pt;}
.h9{height:57.758750pt;}
.h7{height:57.787500pt;}
.h11{height:58.239283pt;}
.h8{height:59.340000pt;}
.h6{height:62.812500pt;}
.he{height:63.310183pt;}
.hd{height:63.310717pt;}
.h10{height:63.311250pt;}
.hf{height:63.312317pt;}
.h3{height:66.750000pt;}
.h2{height:69.890625pt;}
.h1{height:77.875000pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x3{left:50.666667pt;}
.x4{left:53.333333pt;}
.x5{left:60.000000pt;}
.x7{left:181.439867pt;}
.xd{left:244.960439pt;}
.xf{left:246.079767pt;}
.xa{left:248.640896pt;}
.xb{left:291.680390pt;}
.xe{left:305.280225pt;}
.x10{left:327.039162pt;}
.x11{left:389.439867pt;}
.x6{left:392.799867pt;}
.xc{left:396.799947pt;}
.x9{left:412.479867pt;}
.x1{left:483.706667pt;}
.x12{left:610.559733pt;}
.x8{left:612.318518pt;}
.x2{left:646.613333pt;}
}




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