
    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_cd4f4069b590352c7c6aba63.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_efdaa36e34f725c79dc88ef6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.201172;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_091191abf4be5343f2059ce8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_5fa7c113fd4bf0f16d505fc5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_7a5fb4ef25036d4c75f53a90.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.983887;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_2d4a71bb178a910f7a434e6b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.966797;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;}
.v1{vertical-align:57.879857px;}
.ls1c{letter-spacing:-1.673259px;}
.ls19{letter-spacing:-0.899771px;}
.lsa{letter-spacing:-0.799797px;}
.ls15{letter-spacing:-0.794535px;}
.ls7{letter-spacing:-0.752440px;}
.ls14{letter-spacing:-0.657728px;}
.ls18{letter-spacing:-0.416210px;}
.ls11{letter-spacing:-0.334652px;}
.lsd{letter-spacing:-0.305712px;}
.lsb{letter-spacing:-0.268353px;}
.ls1b{letter-spacing:-0.227837px;}
.ls3{letter-spacing:-0.224680px;}
.ls1a{letter-spacing:-0.201528px;}
.ls12{letter-spacing:-0.184164px;}
.ls9{letter-spacing:-0.088399px;}
.ls10{letter-spacing:-0.087872px;}
.ls13{letter-spacing:-0.075244px;}
.ls17{letter-spacing:-0.027151px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.056828px;}
.ls0{letter-spacing:0.062089px;}
.lsf{letter-spacing:0.088925px;}
.ls16{letter-spacing:0.148910px;}
.lsc{letter-spacing:0.159959px;}
.ls4{letter-spacing:0.162064px;}
.ls8{letter-spacing:0.215208px;}
.ls1{letter-spacing:0.325812px;}
.lse{letter-spacing:0.489349px;}
.ls6{letter-spacing:0.605109px;}
.ls1d{letter-spacing:126.253983px;}
.ls1e{letter-spacing:126.283819px;}
.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;}
}
.ws3a{word-spacing:-73.875953px;}
.ws62{word-spacing:-38.089859px;}
.ws65{word-spacing:-32.356943px;}
.wsf{word-spacing:-17.301075px;}
.ws0{word-spacing:-16.695965px;}
.ws5b{word-spacing:-16.494438px;}
.ws2b{word-spacing:-1.777443px;}
.ws30{word-spacing:-1.349341px;}
.ws59{word-spacing:-0.827790px;}
.ws2e{word-spacing:-0.661095px;}
.ws5a{word-spacing:-0.503872px;}
.ws61{word-spacing:0.000000px;}
.ws2d{word-spacing:0.176166px;}
.ws60{word-spacing:0.449991px;}
.ws5{word-spacing:0.563857px;}
.ws5d{word-spacing:0.579958px;}
.ws2c{word-spacing:0.826316px;}
.ws2f{word-spacing:0.842944px;}
.ws13{word-spacing:0.985644px;}
.ws10{word-spacing:1.137816px;}
.ws2{word-spacing:1.233160px;}
.ws8{word-spacing:1.383753px;}
.wsb{word-spacing:1.387226px;}
.ws12{word-spacing:1.393540px;}
.wsc{word-spacing:1.414377px;}
.ws9{word-spacing:1.441528px;}
.ws1{word-spacing:1.450999px;}
.ws7{word-spacing:1.461102px;}
.ws3{word-spacing:1.598120px;}
.wsa{word-spacing:1.617063px;}
.ws4{word-spacing:1.692201px;}
.ws26{word-spacing:1.692454px;}
.ws25{word-spacing:1.702999px;}
.ws28{word-spacing:1.739431px;}
.ws47{word-spacing:1.970657px;}
.ws15{word-spacing:1.978234px;}
.ws2a{word-spacing:1.996292px;}
.ws43{word-spacing:2.122197px;}
.ws16{word-spacing:2.141771px;}
.ws11{word-spacing:2.151242px;}
.wsd{word-spacing:2.155031px;}
.ws14{word-spacing:2.163871px;}
.ws17{word-spacing:2.215647px;}
.ws45{word-spacing:2.296258px;}
.ws19{word-spacing:2.368450px;}
.ws27{word-spacing:2.504395px;}
.ws24{word-spacing:2.512035px;}
.ws18{word-spacing:2.589763px;}
.ws41{word-spacing:2.607758px;}
.ws29{word-spacing:2.656503px;}
.ws5e{word-spacing:3.081953px;}
.wse{word-spacing:3.092056px;}
.ws44{word-spacing:3.246753px;}
.ws6{word-spacing:3.333258px;}
.ws5c{word-spacing:3.711793px;}
.ws46{word-spacing:3.723474px;}
.ws42{word-spacing:4.596095px;}
.ws57{word-spacing:5.172264px;}
.ws52{word-spacing:5.197836px;}
.ws58{word-spacing:5.293180px;}
.ws53{word-spacing:5.449772px;}
.ws56{word-spacing:5.556482px;}
.ws54{word-spacing:5.843567px;}
.ws4e{word-spacing:7.053575px;}
.ws49{word-spacing:7.066519px;}
.ws50{word-spacing:7.160285px;}
.ws4a{word-spacing:7.269520px;}
.ws4c{word-spacing:7.273309px;}
.ws48{word-spacing:7.311825px;}
.ws4f{word-spacing:7.344027px;}
.ws4d{word-spacing:7.511985px;}
.ws55{word-spacing:7.834008px;}
.ws4b{word-spacing:8.143403px;}
.ws51{word-spacing:8.329356px;}
.ws35{word-spacing:8.801972px;}
.ws36{word-spacing:8.810181px;}
.ws34{word-spacing:8.816495px;}
.ws32{word-spacing:8.867956px;}
.ws3b{word-spacing:8.881321px;}
.ws38{word-spacing:8.960774px;}
.ws31{word-spacing:8.990767px;}
.ws39{word-spacing:9.002132px;}
.ws37{word-spacing:9.107369px;}
.ws33{word-spacing:9.238283px;}
.ws1c{word-spacing:9.339941px;}
.ws3c{word-spacing:9.372017px;}
.ws3e{word-spacing:9.511687px;}
.ws3f{word-spacing:9.657481px;}
.ws40{word-spacing:9.695556px;}
.ws22{word-spacing:9.825502px;}
.ws1a{word-spacing:9.973885px;}
.ws20{word-spacing:10.073018px;}
.ws1e{word-spacing:10.223611px;}
.ws21{word-spacing:10.321797px;}
.ws1d{word-spacing:10.417772px;}
.ws1f{word-spacing:10.805253px;}
.ws23{word-spacing:10.932378px;}
.ws3d{word-spacing:11.530584px;}
.ws1b{word-spacing:12.173115px;}
.ws64{word-spacing:96.520572px;}
.ws5f{word-spacing:995.896042px;}
.ws63{word-spacing:1844.648680px;}
._17{margin-left:-26.955176px;}
._16{margin-left:-19.315025px;}
._f{margin-left:-14.199858px;}
._12{margin-left:-10.746710px;}
._14{margin-left:-9.591209px;}
._10{margin-left:-7.701123px;}
._5{margin-left:-6.585020px;}
._11{margin-left:-5.373355px;}
._18{margin-left:-4.322047px;}
._1{margin-left:-3.314947px;}
._0{margin-left:-1.878470px;}
._2{width:1.514773px;}
._d{width:2.903262px;}
._9{width:4.259759px;}
._7{width:15.328944px;}
._6{width:16.488860px;}
._c{width:17.736543px;}
._3{width:19.377178px;}
._a{width:20.504681px;}
._b{width:23.218938px;}
._8{width:26.687530px;}
._4{width:27.936897px;}
._13{width:126.254094px;}
._15{width:794.448392px;}
._e{width:1194.010889px;}
.fc4{color:rgb(0,151,167);}
.fc5{color:rgb(9,9,9);}
.fc3{color:rgb(89,89,89);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,75,156);}
.fs3{font-size:31.570920px;}
.fs1{font-size:73.875953px;}
.fs2{font-size:74.002236px;}
.fsc{font-size:98.220360px;}
.fsd{font-size:105.236103px;}
.fs11{font-size:107.340836px;}
.fs0{font-size:110.498220px;}
.fsf{font-size:112.251847px;}
.fs12{font-size:116.812069px;}
.fsa{font-size:119.267580px;}
.fsb{font-size:126.283324px;}
.fs8{font-size:136.280764px;}
.fs5{font-size:137.508517px;}
.fse{font-size:140.314801px;}
.fs7{font-size:141.717672px;}
.fs6{font-size:145.225812px;}
.fs9{font-size:176.796654px;}
.fs10{font-size:252.566648px;}
.fs4{font-size:258.179237px;}
.y0{bottom:0.000000px;}
.y20{bottom:44.882751px;}
.y1f{bottom:77.884793px;}
.y19{bottom:85.557193px;}
.y5c{bottom:90.397793px;}
.y1a{bottom:91.284442px;}
.y1{bottom:91.284480px;}
.y6c{bottom:104.337979px;}
.y83{bottom:108.305420px;}
.y11{bottom:111.824199px;}
.y61{bottom:121.344160px;}
.y26{bottom:122.780606px;}
.y2c{bottom:124.611438px;}
.y72{bottom:128.068720px;}
.y18{bottom:137.465048px;}
.y2b{bottom:141.921817px;}
.y1e{bottom:143.888887px;}
.y60{bottom:144.563059px;}
.y10{bottom:145.765569px;}
.y82{bottom:148.605612px;}
.y44{bottom:151.772271px;}
.y15{bottom:159.564691px;}
.y6d{bottom:163.438575px;}
.y38{bottom:163.438601px;}
.y46{bottom:166.242238px;}
.yf{bottom:167.865213px;}
.y78{bottom:173.541241px;}
.y2a{bottom:177.439002px;}
.y5f{bottom:180.080244px;}
.y43{bottom:180.712202px;}
.y3d{bottom:184.485795px;}
.y3f{bottom:185.959127px;}
.y81{bottom:188.905804px;}
.ye{bottom:189.964857px;}
.y45{bottom:195.182167px;}
.y66{bottom:199.218850px;}
.y5b{bottom:208.900598px;}
.y42{bottom:209.652133px;}
.y52{bottom:210.166009px;}
.yd{bottom:212.064501px;}
.y4c{bottom:213.900011px;}
.y77{bottom:217.109014px;}
.y6b{bottom:218.413915px;}
.y3c{bottom:228.053542px;}
.y37{bottom:228.053568px;}
.y80{bottom:229.205970px;}
.y65{bottom:233.104888px;}
.yc{bottom:234.190454px;}
.y71{bottom:244.228358px;}
.y5a{bottom:247.627484px;}
.y47{bottom:250.574081px;}
.y25{bottom:250.731922px;}
.y51{bottom:253.733769px;}
.y6a{bottom:254.404662px;}
.yb{bottom:256.290098px;}
.y76{bottom:260.676760px;}
.y7f{bottom:269.506122px;}
.y59{bottom:289.300967px;}
.ya{bottom:290.228837px;}
.y64{bottom:290.984745px;}
.y32{bottom:291.195204px;}
.y84{bottom:292.538819px;}
.y3b{bottom:292.668510px;}
.y36{bottom:292.668523px;}
.y50{bottom:297.301516px;}
.y7e{bottom:309.806262px;}
.y49{bottom:314.014118px;}
.y3e{bottom:315.189036px;}
.y9{bottom:334.428125px;}
.y31{bottom:334.762951px;}
.y3a{bottom:336.236243px;}
.y35{bottom:336.236256px;}
.y75{bottom:338.551477px;}
.y48{bottom:345.584946px;}
.y7d{bottom:350.106414px;}
.y29{bottom:353.592058px;}
.y8{bottom:356.567232px;}
.y70{bottom:360.387942px;}
.y69{bottom:366.881010px;}
.y4f{bottom:368.120283px;}
.y30{bottom:378.330685px;}
.y7{bottom:378.666876px;}
.y24{bottom:378.683252px;}
.y34{bottom:379.804003px;}
.y28{bottom:389.109243px;}
.y7c{bottom:390.406567px;}
.y74{bottom:395.378953px;}
.y68{bottom:396.473402px;}
.y6f{bottom:397.420527px;}
.y6{bottom:400.766520px;}
.y39{bottom:400.851211px;}
.y4e{bottom:411.688043px;}
.y4b{bottom:415.545542px;}
.y63{bottom:417.268063px;}
.y41{bottom:417.935374px;}
.y2f{bottom:421.898431px;}
.y5{bottom:422.866164px;}
.y58{bottom:425.266000px;}
.y55{bottom:426.846041px;}
.y7b{bottom:430.706727px;}
.y5e{bottom:431.479902px;}
.y33{bottom:444.418971px;}
.y4{bottom:444.965808px;}
.y40{bottom:446.875302px;}
.y4a{bottom:447.116371px;}
.y62{bottom:451.154081px;}
.y73{bottom:452.206442px;}
.y4d{bottom:455.255790px;}
.y1d{bottom:456.605425px;}
.y57{bottom:463.992886px;}
.y2e{bottom:465.466191px;}
.y5d{bottom:466.997087px;}
.y54{bottom:470.413801px;}
.y7a{bottom:471.006885px;}
.y3{bottom:474.958182px;}
.y14{bottom:489.393781px;}
.y23{bottom:492.302745px;}
.y56{bottom:505.666383px;}
.y2d{bottom:509.033938px;}
.y67{bottom:510.549339px;}
.y79{bottom:511.307041px;}
.y6e{bottom:513.580135px;}
.y53{bottom:513.981548px;}
.y1c{bottom:534.059197px;}
.y16{bottom:535.574349px;}
.y13{bottom:546.624171px;}
.y22{bottom:552.087309px;}
.y17{bottom:557.673993px;}
.y27{bottom:594.613209px;}
.y12{bottom:596.085279px;}
.y21{bottom:602.190205px;}
.y1b{bottom:611.512949px;}
.y2{bottom:657.332864px;}
.h8{height:31.401350px;}
.h1b{height:71.555067px;}
.h5{height:73.479158px;}
.h6{height:73.604764px;}
.h4{height:75.643493px;}
.h15{height:75.967309px;}
.h1d{height:78.199476px;}
.h17{height:81.393549px;}
.h19{height:81.777225px;}
.h1c{height:83.021428px;}
.h13{height:84.168329px;}
.h1e{height:85.099418px;}
.h11{height:86.888296px;}
.h1f{height:90.346835px;}
.h14{height:91.999375px;}
.h12{height:97.672258px;}
.hb{height:100.177103px;}
.he{height:103.243538px;}
.hf{height:105.404654px;}
.hc{height:106.354244px;}
.h18{height:108.524729px;}
.h3{height:109.904724px;}
.hd{height:112.323089px;}
.h10{height:128.799125px;}
.h16{height:133.847166px;}
.h1a{height:183.998749px;}
.ha{height:188.087608px;}
.h20{height:195.344517px;}
.h7{height:309.552871px;}
.h9{height:710.343698px;}
.h2{height:710.345700px;}
.h0{height:892.913445px;}
.h1{height:893.250000px;}
.w4{width:264.406455px;}
.w3{width:446.886373px;}
.w5{width:1262.833240px;}
.w2{width:1262.834681px;}
.w0{width:1262.834700px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x9{left:10.984049px;}
.x5{left:13.956978px;}
.xe{left:54.886429px;}
.xc{left:59.229958px;}
.x1{left:62.668257px;}
.xf{left:65.886172px;}
.x1b{left:67.388354px;}
.x37{left:68.828454px;}
.x36{left:70.256129px;}
.x3{left:80.032263px;}
.x24{left:93.187600px;}
.x2{left:113.655293px;}
.x35{left:118.028091px;}
.x10{left:120.656269px;}
.x1a{left:128.620749px;}
.x2c{left:132.652910px;}
.x34{left:134.775825px;}
.x26{left:137.044535px;}
.x33{left:141.426444px;}
.x22{left:148.376684px;}
.x25{left:154.579606px;}
.x11{left:167.870958px;}
.x1c{left:174.147354px;}
.xd{left:190.136389px;}
.x1e{left:193.236433px;}
.x4{left:199.528214px;}
.xb{left:208.083341px;}
.x2f{left:213.963314px;}
.x2e{left:218.118008px;}
.x32{left:232.182849px;}
.x2d{left:242.407891px;}
.x6{left:252.317405px;}
.x1f{left:260.000276px;}
.x1d{left:268.879749px;}
.x17{left:292.527279px;}
.x16{left:313.213430px;}
.x38{left:457.761672px;}
.x28{left:472.745491px;}
.x27{left:495.598887px;}
.x12{left:497.229222px;}
.x29{left:572.714646px;}
.x13{left:578.416732px;}
.x8{left:646.256732px;}
.x7{left:709.332781px;}
.x18{left:731.670049px;}
.x31{left:755.618446px;}
.x30{left:771.385907px;}
.x19{left:807.022067px;}
.x20{left:820.099259px;}
.x23{left:873.580495px;}
.x2a{left:889.483449px;}
.x21{left:913.459585px;}
.x2b{left:931.598444px;}
.x14{left:941.732844px;}
.x15{left:1004.708100px;}
.xa{left:1141.604448px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:51.448762pt;}
.ls1c{letter-spacing:-1.487341pt;}
.ls19{letter-spacing:-0.799797pt;}
.lsa{letter-spacing:-0.710930pt;}
.ls15{letter-spacing:-0.706253pt;}
.ls7{letter-spacing:-0.668836pt;}
.ls14{letter-spacing:-0.584647pt;}
.ls18{letter-spacing:-0.369964pt;}
.ls11{letter-spacing:-0.297468pt;}
.lsd{letter-spacing:-0.271744pt;}
.lsb{letter-spacing:-0.238536pt;}
.ls1b{letter-spacing:-0.202522pt;}
.ls3{letter-spacing:-0.199715pt;}
.ls1a{letter-spacing:-0.179136pt;}
.ls12{letter-spacing:-0.163701pt;}
.ls9{letter-spacing:-0.078577pt;}
.ls10{letter-spacing:-0.078109pt;}
.ls13{letter-spacing:-0.066884pt;}
.ls17{letter-spacing:-0.024134pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.050513pt;}
.ls0{letter-spacing:0.055191pt;}
.lsf{letter-spacing:0.079044pt;}
.ls16{letter-spacing:0.132364pt;}
.lsc{letter-spacing:0.142186pt;}
.ls4{letter-spacing:0.144057pt;}
.ls8{letter-spacing:0.191296pt;}
.ls1{letter-spacing:0.289611pt;}
.lse{letter-spacing:0.434977pt;}
.ls6{letter-spacing:0.537875pt;}
.ls1d{letter-spacing:112.225763pt;}
.ls1e{letter-spacing:112.252283pt;}
.ws3a{word-spacing:-65.667514pt;}
.ws62{word-spacing:-33.857653pt;}
.ws65{word-spacing:-28.761727pt;}
.wsf{word-spacing:-15.378733pt;}
.ws0{word-spacing:-14.840858pt;}
.ws5b{word-spacing:-14.661722pt;}
.ws2b{word-spacing:-1.579949pt;}
.ws30{word-spacing:-1.199414pt;}
.ws59{word-spacing:-0.735813pt;}
.ws2e{word-spacing:-0.587640pt;}
.ws5a{word-spacing:-0.447886pt;}
.ws61{word-spacing:0.000000pt;}
.ws2d{word-spacing:0.156592pt;}
.ws60{word-spacing:0.399992pt;}
.ws5{word-spacing:0.501206pt;}
.ws5d{word-spacing:0.515518pt;}
.ws2c{word-spacing:0.734503pt;}
.ws2f{word-spacing:0.749283pt;}
.ws13{word-spacing:0.876128pt;}
.ws10{word-spacing:1.011392pt;}
.ws2{word-spacing:1.096142pt;}
.ws8{word-spacing:1.230003pt;}
.wsb{word-spacing:1.233090pt;}
.ws12{word-spacing:1.238703pt;}
.wsc{word-spacing:1.257224pt;}
.ws9{word-spacing:1.281358pt;}
.ws1{word-spacing:1.289777pt;}
.ws7{word-spacing:1.298757pt;}
.ws3{word-spacing:1.420551pt;}
.wsa{word-spacing:1.437389pt;}
.ws4{word-spacing:1.504179pt;}
.ws26{word-spacing:1.504403pt;}
.ws25{word-spacing:1.513777pt;}
.ws28{word-spacing:1.546161pt;}
.ws47{word-spacing:1.751695pt;}
.ws15{word-spacing:1.758430pt;}
.ws2a{word-spacing:1.774482pt;}
.ws43{word-spacing:1.886398pt;}
.ws16{word-spacing:1.903797pt;}
.ws11{word-spacing:1.912216pt;}
.wsd{word-spacing:1.915583pt;}
.ws14{word-spacing:1.923441pt;}
.ws17{word-spacing:1.969464pt;}
.ws45{word-spacing:2.041118pt;}
.ws19{word-spacing:2.105289pt;}
.ws27{word-spacing:2.226129pt;}
.ws24{word-spacing:2.232920pt;}
.ws18{word-spacing:2.302011pt;}
.ws41{word-spacing:2.318007pt;}
.ws29{word-spacing:2.361336pt;}
.ws5e{word-spacing:2.739514pt;}
.wse{word-spacing:2.748494pt;}
.ws44{word-spacing:2.886003pt;}
.ws6{word-spacing:2.962896pt;}
.ws5c{word-spacing:3.299372pt;}
.ws46{word-spacing:3.309755pt;}
.ws42{word-spacing:4.085417pt;}
.ws57{word-spacing:4.597568pt;}
.ws52{word-spacing:4.620299pt;}
.ws58{word-spacing:4.705049pt;}
.ws53{word-spacing:4.844242pt;}
.ws56{word-spacing:4.939095pt;}
.ws54{word-spacing:5.194282pt;}
.ws4e{word-spacing:6.269844pt;}
.ws49{word-spacing:6.281350pt;}
.ws50{word-spacing:6.364697pt;}
.ws4a{word-spacing:6.461796pt;}
.ws4c{word-spacing:6.465163pt;}
.ws48{word-spacing:6.499400pt;}
.ws4f{word-spacing:6.528024pt;}
.ws4d{word-spacing:6.677320pt;}
.ws55{word-spacing:6.963563pt;}
.ws4b{word-spacing:7.238581pt;}
.ws51{word-spacing:7.403872pt;}
.ws35{word-spacing:7.823976pt;}
.ws36{word-spacing:7.831272pt;}
.ws34{word-spacing:7.836885pt;}
.ws32{word-spacing:7.882627pt;}
.ws3b{word-spacing:7.894507pt;}
.ws38{word-spacing:7.965133pt;}
.ws31{word-spacing:7.991793pt;}
.ws39{word-spacing:8.001895pt;}
.ws37{word-spacing:8.095439pt;}
.ws33{word-spacing:8.211807pt;}
.ws1c{word-spacing:8.302170pt;}
.ws3c{word-spacing:8.330682pt;}
.ws3e{word-spacing:8.454833pt;}
.ws3f{word-spacing:8.584428pt;}
.ws40{word-spacing:8.618272pt;}
.ws22{word-spacing:8.733779pt;}
.ws1a{word-spacing:8.865676pt;}
.ws20{word-spacing:8.953794pt;}
.ws1e{word-spacing:9.087654pt;}
.ws21{word-spacing:9.174930pt;}
.ws1d{word-spacing:9.260242pt;}
.ws1f{word-spacing:9.604669pt;}
.ws23{word-spacing:9.717669pt;}
.ws3d{word-spacing:10.249408pt;}
.ws1b{word-spacing:10.820547pt;}
.ws64{word-spacing:85.796064pt;}
.ws5f{word-spacing:885.240926pt;}
.ws63{word-spacing:1639.687715pt;}
._17{margin-left:-23.960156pt;}
._16{margin-left:-17.168911pt;}
._f{margin-left:-12.622096pt;}
._12{margin-left:-9.552631pt;}
._14{margin-left:-8.525519pt;}
._10{margin-left:-6.845443pt;}
._5{margin-left:-5.853351pt;}
._11{margin-left:-4.776316pt;}
._18{margin-left:-3.841819pt;}
._1{margin-left:-2.946619pt;}
._0{margin-left:-1.669751pt;}
._2{width:1.346465pt;}
._d{width:2.580677pt;}
._9{width:3.786452pt;}
._7{width:13.625728pt;}
._6{width:14.656765pt;}
._c{width:15.765816pt;}
._3{width:17.224159pt;}
._a{width:18.226383pt;}
._b{width:20.639056pt;}
._8{width:23.722249pt;}
._4{width:24.832797pt;}
._13{width:112.225861pt;}
._15{width:706.176348pt;}
._e{width:1061.343013pt;}
.fs3{font-size:28.063040pt;}
.fs1{font-size:65.667514pt;}
.fs2{font-size:65.779766pt;}
.fsc{font-size:87.306986pt;}
.fsd{font-size:93.543203pt;}
.fs11{font-size:95.414076pt;}
.fs0{font-size:98.220640pt;}
.fsf{font-size:99.779420pt;}
.fs12{font-size:103.832951pt;}
.fsa{font-size:106.015627pt;}
.fsb{font-size:112.251844pt;}
.fs8{font-size:121.138457pt;}
.fs5{font-size:122.229793pt;}
.fse{font-size:124.724268pt;}
.fs7{font-size:125.971264pt;}
.fs6{font-size:129.089611pt;}
.fs9{font-size:157.152581pt;}
.fs10{font-size:224.503687pt;}
.fs4{font-size:229.492655pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:39.895779pt;}
.y1f{bottom:69.230927pt;}
.y19{bottom:76.050838pt;}
.y5c{bottom:80.353594pt;}
.y1a{bottom:81.141726pt;}
.y1{bottom:81.141760pt;}
.y6c{bottom:92.744870pt;}
.y83{bottom:96.271484pt;}
.y11{bottom:99.399288pt;}
.y61{bottom:107.861475pt;}
.y26{bottom:109.138317pt;}
.y2c{bottom:110.765723pt;}
.y72{bottom:113.838862pt;}
.y18{bottom:122.191153pt;}
.y2b{bottom:126.152726pt;}
.y1e{bottom:127.901233pt;}
.y60{bottom:128.500497pt;}
.y10{bottom:129.569394pt;}
.y82{bottom:132.093877pt;}
.y44{bottom:134.908686pt;}
.y15{bottom:141.835281pt;}
.y6d{bottom:145.278733pt;}
.y38{bottom:145.278756pt;}
.y46{bottom:147.770878pt;}
.yf{bottom:149.213522pt;}
.y78{bottom:154.258881pt;}
.y2a{bottom:157.723557pt;}
.y5f{bottom:160.071328pt;}
.y43{bottom:160.633069pt;}
.y3d{bottom:163.987374pt;}
.y3f{bottom:165.297002pt;}
.y81{bottom:167.916270pt;}
.ye{bottom:168.857650pt;}
.y45{bottom:173.495259pt;}
.y66{bottom:177.083422pt;}
.y5b{bottom:185.689420pt;}
.y42{bottom:186.357452pt;}
.y52{bottom:186.814230pt;}
.yd{bottom:188.501778pt;}
.y4c{bottom:190.133343pt;}
.y77{bottom:192.985790pt;}
.y6b{bottom:194.145702pt;}
.y3c{bottom:202.714260pt;}
.y37{bottom:202.714283pt;}
.y80{bottom:203.738640pt;}
.y65{bottom:207.204345pt;}
.yc{bottom:208.169292pt;}
.y71{bottom:217.091873pt;}
.y5a{bottom:220.113319pt;}
.y47{bottom:222.732517pt;}
.y25{bottom:222.872820pt;}
.y51{bottom:225.541128pt;}
.y6a{bottom:226.137478pt;}
.yb{bottom:227.813420pt;}
.y76{bottom:231.712676pt;}
.y7f{bottom:239.560997pt;}
.y59{bottom:257.156415pt;}
.ya{bottom:257.981188pt;}
.y64{bottom:258.653107pt;}
.y32{bottom:258.840181pt;}
.y84{bottom:260.034506pt;}
.y3b{bottom:260.149786pt;}
.y36{bottom:260.149798pt;}
.y50{bottom:264.268014pt;}
.y7e{bottom:275.383344pt;}
.y49{bottom:279.123660pt;}
.y3e{bottom:280.168032pt;}
.y9{bottom:297.269444pt;}
.y31{bottom:297.567067pt;}
.y3a{bottom:298.876661pt;}
.y35{bottom:298.876672pt;}
.y75{bottom:300.934646pt;}
.y48{bottom:307.186619pt;}
.y7d{bottom:311.205702pt;}
.y29{bottom:314.304051pt;}
.y8{bottom:316.948651pt;}
.y70{bottom:320.344837pt;}
.y69{bottom:326.116453pt;}
.y4f{bottom:327.218029pt;}
.y30{bottom:336.293942pt;}
.y7{bottom:336.592779pt;}
.y24{bottom:336.607335pt;}
.y34{bottom:337.603558pt;}
.y28{bottom:345.874882pt;}
.y7c{bottom:347.028059pt;}
.y74{bottom:351.447958pt;}
.y68{bottom:352.420802pt;}
.y6f{bottom:353.262691pt;}
.y6{bottom:356.236907pt;}
.y39{bottom:356.312187pt;}
.y4e{bottom:365.944927pt;}
.y4b{bottom:369.373815pt;}
.y63{bottom:370.904944pt;}
.y41{bottom:371.498110pt;}
.y2f{bottom:375.020828pt;}
.y5{bottom:375.881035pt;}
.y58{bottom:378.014222pt;}
.y55{bottom:379.418703pt;}
.y7b{bottom:382.850424pt;}
.y5e{bottom:383.537691pt;}
.y33{bottom:395.039085pt;}
.y4{bottom:395.525163pt;}
.y40{bottom:397.222491pt;}
.y4a{bottom:397.436774pt;}
.y62{bottom:401.025850pt;}
.y73{bottom:401.961282pt;}
.y4d{bottom:404.671813pt;}
.y1d{bottom:405.871489pt;}
.y57{bottom:412.438121pt;}
.y2e{bottom:413.747726pt;}
.y5d{bottom:415.108522pt;}
.y54{bottom:418.145601pt;}
.y7a{bottom:418.672787pt;}
.y3{bottom:422.185051pt;}
.y14{bottom:435.016694pt;}
.y23{bottom:437.602440pt;}
.y56{bottom:449.481229pt;}
.y2d{bottom:452.474612pt;}
.y67{bottom:453.821635pt;}
.y79{bottom:454.495147pt;}
.y6e{bottom:456.515676pt;}
.y53{bottom:456.872487pt;}
.y1c{bottom:474.719286pt;}
.y16{bottom:476.066088pt;}
.y13{bottom:485.888152pt;}
.y22{bottom:490.744275pt;}
.y17{bottom:495.710216pt;}
.y27{bottom:528.545075pt;}
.y12{bottom:529.853581pt;}
.y21{bottom:535.280182pt;}
.y1b{bottom:543.567066pt;}
.y2{bottom:584.295879pt;}
.h8{height:27.912311pt;}
.h1b{height:63.604504pt;}
.h5{height:65.314807pt;}
.h6{height:65.426456pt;}
.h4{height:67.238660pt;}
.h15{height:67.526497pt;}
.h1d{height:69.510646pt;}
.h17{height:72.349821pt;}
.h19{height:72.690866pt;}
.h1c{height:73.796825pt;}
.h13{height:74.816292pt;}
.h1e{height:75.643927pt;}
.h11{height:77.234041pt;}
.h1f{height:80.308298pt;}
.h14{height:81.777222pt;}
.h12{height:86.819785pt;}
.hb{height:89.046314pt;}
.he{height:91.772034pt;}
.hf{height:93.693026pt;}
.hc{height:94.537106pt;}
.h18{height:96.466426pt;}
.h3{height:97.693088pt;}
.hd{height:99.842746pt;}
.h10{height:114.488111pt;}
.h16{height:118.975259pt;}
.h1a{height:163.554444pt;}
.ha{height:167.188985pt;}
.h20{height:173.639571pt;}
.h7{height:275.158107pt;}
.h9{height:631.416620pt;}
.h2{height:631.418400pt;}
.h0{height:793.700840pt;}
.h1{height:794.000000pt;}
.w4{width:235.027960pt;}
.w3{width:397.232331pt;}
.w5{width:1122.518436pt;}
.w2{width:1122.519717pt;}
.w0{width:1122.519733pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x9{left:9.763599pt;}
.x5{left:12.406202pt;}
.xe{left:48.787937pt;}
.xc{left:52.648852pt;}
.x1{left:55.705118pt;}
.xf{left:58.565486pt;}
.x1b{left:59.900760pt;}
.x37{left:61.180848pt;}
.x36{left:62.449892pt;}
.x3{left:71.139790pt;}
.x24{left:82.833422pt;}
.x2{left:101.026927pt;}
.x35{left:104.913859pt;}
.x10{left:107.250017pt;}
.x1a{left:114.329555pt;}
.x2c{left:117.913698pt;}
.x34{left:119.800733pt;}
.x26{left:121.817365pt;}
.x33{left:125.712395pt;}
.x22{left:131.890385pt;}
.x25{left:137.404094pt;}
.x11{left:149.218629pt;}
.x1c{left:154.797648pt;}
.xd{left:169.010123pt;}
.x1e{left:171.765718pt;}
.x4{left:177.358413pt;}
.xb{left:184.962969pt;}
.x2f{left:190.189613pt;}
.x2e{left:193.882674pt;}
.x32{left:206.384755pt;}
.x2d{left:215.473681pt;}
.x6{left:224.282138pt;}
.x1f{left:231.111357pt;}
.x1d{left:239.004221pt;}
.x17{left:260.024248pt;}
.x16{left:278.411938pt;}
.x38{left:406.899264pt;}
.x28{left:420.218214pt;}
.x27{left:440.532344pt;}
.x12{left:441.981530pt;}
.x29{left:509.079685pt;}
.x13{left:514.148207pt;}
.x8{left:574.450429pt;}
.x7{left:630.518027pt;}
.x18{left:650.373377pt;}
.x31{left:671.660841pt;}
.x30{left:685.676362pt;}
.x19{left:717.352948pt;}
.x20{left:728.977119pt;}
.x23{left:776.515996pt;}
.x2a{left:790.651955pt;}
.x21{left:811.964076pt;}
.x2b{left:828.087506pt;}
.x14{left:837.095861pt;}
.x15{left:893.073867pt;}
.xa{left:1014.759510pt;}
}




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