
    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_dfa65992bbc2277457771ebb.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.675293;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_85edf3d83f3f9cbe5538f588.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.949219;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_d95ebc33438ba82a97303b22.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.871094;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_6af91d4407519db7c6265dfc.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.851562;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_a74c9b5f3fa9d101a132ef33.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.904297;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_e07058a51acae14033b4e4ab.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_f8a6aa501ee562634b995406.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_a266f7e72e5d0c1f28455b46.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_f53ff4aca2f269714fb17536.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.764160;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.v1{vertical-align:-39.385842px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:3.196980px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.004221px;}
.ls4{letter-spacing:2.250000px;}
.ls3{letter-spacing:107.972165px;}
.ls1{letter-spacing:108.000003px;}
.ls2{letter-spacing:108.000408px;}
.sc_{text-shadow:none;}
.sc3{text-shadow:-0.015em 0 rgb(0,0,255),0 0.015em rgb(0,0,255),0.015em 0 rgb(0,0,255),0 -0.015em  rgb(0,0,255);}
.sc2{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);}
.sc1{text-shadow:-0.015em 0 rgb(31,26,132),0 0.015em rgb(31,26,132),0.015em 0 rgb(31,26,132),0 -0.015em  rgb(31,26,132);}
.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;}
.sc3{-webkit-text-stroke:0.015em rgb(0,0,255);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(31,26,132);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-42.120001px;}
.ws6{word-spacing:-27.120000px;}
.ws5{word-spacing:-20.340001px;}
.ws3{word-spacing:-16.272001px;}
.ws2{word-spacing:-0.120000px;}
.ws0{word-spacing:0.000000px;}
.ws4{word-spacing:1074.154611px;}
._8{margin-left:-11.167124px;}
._d{margin-left:-8.481935px;}
._9{margin-left:-7.284749px;}
._c{margin-left:-5.580000px;}
._2{margin-left:-3.600000px;}
._4{margin-left:-2.237625px;}
._1{margin-left:-1.200000px;}
._3{width:1.156657px;}
._5{width:2.375890px;}
._0{width:4.032000px;}
._6{width:41.760006px;}
._7{width:68.880006px;}
._b{width:1742.234501px;}
._a{width:2002.917574px;}
._e{width:2291.915894px;}
.fcc{color:rgb(0,0,255);}
.fcb{color:rgb(112,173,71);}
.fc7{color:rgb(204,0,0);}
.fc9{color:rgb(17,85,204);}
.fc6{color:rgb(255,0,255);}
.fc5{color:rgb(11,57,243);}
.fca{color:rgb(255,0,0);}
.fc4{color:rgb(106,168,79);}
.fc3{color:rgb(224,102,102);}
.fc8{color:rgb(153,153,153);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(136,136,136);}
.fc0{color:rgb(31,26,132);}
.fs7{font-size:60.000000px;}
.fs2{font-size:72.000002px;}
.fs8{font-size:84.000000px;}
.fs6{font-size:90.000003px;}
.fs4{font-size:108.000003px;}
.fs5{font-size:120.000001px;}
.fs0{font-size:167.999999px;}
.fs3{font-size:180.000006px;}
.fs1{font-size:240.000002px;}
.y0{bottom:0.000000px;}
.ya{bottom:18.446420px;}
.y46{bottom:20.056531px;}
.y38{bottom:21.192387px;}
.y4c{bottom:21.329075px;}
.y49{bottom:21.330200px;}
.y20{bottom:26.550684px;}
.y3f{bottom:31.960145px;}
.y4{bottom:40.245557px;}
.y52{bottom:62.540798px;}
.y64{bottom:78.373057px;}
.yd{bottom:84.767309px;}
.y41{bottom:92.023065px;}
.y10{bottom:92.562277px;}
.y5c{bottom:109.164555px;}
.yc{bottom:115.946922px;}
.y56{bottom:116.783866px;}
.y1a{bottom:134.487248px;}
.y12{bottom:147.126534px;}
.y16{bottom:157.125355px;}
.y2a{bottom:159.913619px;}
.y55{bottom:170.783868px;}
.y29{bottom:181.513622px;}
.y15{bottom:201.643237px;}
.y28{bottom:203.113623px;}
.y17{bottom:222.299081px;}
.y62{bottom:251.095313px;}
.y54{bottom:260.075189px;}
.ye{bottom:264.050083px;}
.y61{bottom:269.095314px;}
.y5b{bottom:271.164560px;}
.y2f{bottom:271.361188px;}
.yb{bottom:271.844983px;}
.yf{bottom:279.639883px;}
.y60{bottom:293.215315px;}
.y40{bottom:298.399112px;}
.y5a{bottom:307.164561px;}
.y69{bottom:307.688250px;}
.y30{bottom:311.025112px;}
.y66{bottom:312.096551px;}
.y48{bottom:319.543207px;}
.y2c{bottom:325.629738px;}
.y18{bottom:325.870151px;}
.y4b{bottom:326.340435px;}
.y13{bottom:329.055982px;}
.y43{bottom:333.365643px;}
.y68{bottom:340.059305px;}
.y47{bottom:341.143207px;}
.y2b{bottom:347.229739px;}
.y2e{bottom:347.700698px;}
.y4a{bottom:347.940435px;}
.y51{bottom:348.158955px;}
.y39{bottom:365.414858px;}
.y2d{bottom:369.300698px;}
.y50{bottom:369.758956px;}
.y3e{bottom:371.290430px;}
.y14{bottom:380.329243px;}
.y3d{bottom:392.890430px;}
.y19{bottom:409.039165px;}
.y4e{bottom:410.485712px;}
.y42{bottom:423.241638px;}
.y27{bottom:424.164576px;}
.y5d{bottom:428.457273px;}
.y11{bottom:430.835185px;}
.y4d{bottom:431.468032px;}
.y5f{bottom:432.130623px;}
.y31{bottom:442.432181px;}
.y5e{bottom:453.730624px;}
.y1f{bottom:460.125214px;}
.y21{bottom:460.138714px;}
.y26{bottom:460.164578px;}
.y53{bottom:462.448228px;}
.y59{bottom:469.164567px;}
.y25{bottom:496.164579px;}
.y35{bottom:498.904708px;}
.y1b{bottom:504.990350px;}
.y58{bottom:505.164568px;}
.y3c{bottom:507.904708px;}
.y67{bottom:531.934124px;}
.y1e{bottom:531.990351px;}
.y24{bottom:532.164580px;}
.y34{bottom:534.904709px;}
.y1{bottom:544.073857px;}
.y57{bottom:551.440150px;}
.y23{bottom:568.164570px;}
.y9{bottom:584.308455px;}
.y3b{bottom:595.164559px;}
.y45{bottom:604.164560px;}
.y33{bottom:613.164560px;}
.y1d{bottom:616.108460px;}
.y8{bottom:620.308456px;}
.y3a{bottom:631.164561px;}
.y3{bottom:635.088779px;}
.y63{bottom:646.895515px;}
.y37{bottom:647.712994px;}
.y44{bottom:649.164561px;}
.y1c{bottom:652.108461px;}
.y4f{bottom:653.664561px;}
.y7{bottom:661.108461px;}
.y36{bottom:674.712992px;}
.y32{bottom:676.164562px;}
.y65{bottom:691.423342px;}
.y22{bottom:694.164563px;}
.y6{bottom:697.108463px;}
.y2{bottom:707.088777px;}
.y5{bottom:751.755710px;}
.h12{height:41.572266px;}
.h7{height:43.066407px;}
.h8{height:43.564453px;}
.h3{height:49.886720px;}
.hc{height:51.679689px;}
.h9{height:52.277345px;}
.hf{height:55.474326px;}
.h10{height:57.656252px;}
.h11{height:60.292969px;}
.he{height:62.358400px;}
.hd{height:64.599611px;}
.ha{height:65.346682px;}
.h6{height:86.132813px;}
.hb{height:86.484378px;}
.h5{height:87.128907px;}
.h1{height:111.972656px;}
.h4{height:133.945317px;}
.h2{height:178.593751px;}
.h0{height:810.000000px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x33{left:15.953741px;}
.x39{left:31.570867px;}
.x48{left:40.570867px;}
.x2b{left:47.279527px;}
.x53{left:49.476381px;}
.x3e{left:53.123035px;}
.x6{left:58.848426px;}
.x51{left:63.829728px;}
.x17{left:67.848426px;}
.x1d{left:74.279528px;}
.x34{left:78.840703px;}
.x3d{left:94.457829px;}
.x49{left:103.457829px;}
.x7{left:112.848427px;}
.x19{left:117.070874px;}
.x18{left:121.848428px;}
.x8{left:123.540326px;}
.x1e{left:128.279530px;}
.x1f{left:137.166490px;}
.x35{left:163.688979px;}
.x20{left:182.279531px;}
.x16{left:185.241156px;}
.x3{left:197.056609px;}
.xf{left:206.225175px;}
.x10{left:208.999019px;}
.x11{left:212.180604px;}
.x2c{left:217.910448px;}
.xb{left:230.557646px;}
.x2{left:242.512101px;}
.x1b{left:245.044178px;}
.xa{left:246.568420px;}
.x58{left:264.652456px;}
.x3b{left:269.380884px;}
.x42{left:272.239670px;}
.x46{left:308.264882px;}
.x2d{left:325.910452px;}
.xc{left:339.119223px;}
.x2a{left:352.882001px;}
.x45{left:358.412929px;}
.x44{left:370.535398px;}
.x43{left:388.860594px;}
.x1c{left:415.931155px;}
.xd{left:427.763826px;}
.x32{left:433.476318px;}
.x29{left:450.186528px;}
.x5a{left:502.745124px;}
.x56{left:509.984094px;}
.x28{left:515.415953px;}
.xe{left:519.725034px;}
.x54{left:552.259548px;}
.x3a{left:558.041069px;}
.x3c{left:578.746087px;}
.x59{left:589.306406px;}
.x1{left:592.863066px;}
.x26{left:604.765552px;}
.x52{left:617.695074px;}
.x57{left:631.628738px;}
.x47{left:633.614263px;}
.x27{left:637.386158px;}
.x5{left:660.003434px;}
.x4a{left:669.309139px;}
.x4{left:671.584518px;}
.x4f{left:705.880586px;}
.x4b{left:709.848691px;}
.x50{left:712.568289px;}
.x4e{left:744.206851px;}
.x4d{left:746.140445px;}
.x24{left:762.770162px;}
.x25{left:778.014792px;}
.x37{left:797.297606px;}
.x30{left:852.310980px;}
.x31{left:854.902671px;}
.x4c{left:861.490198px;}
.x55{left:871.778210px;}
.x36{left:885.275863px;}
.x23{left:892.982027px;}
.x5c{left:894.531325px;}
.x22{left:896.370211px;}
.x21{left:910.010836px;}
.x15{left:914.494897px;}
.x5b{left:1010.654558px;}
.x1a{left:1028.576478px;}
.x5e{left:1046.010675px;}
.x5d{left:1047.543809px;}
.x38{left:1099.650704px;}
.x2e{left:1128.449275px;}
.x2f{left:1130.212581px;}
.x3f{left:1133.397771px;}
.x12{left:1187.660992px;}
.x13{left:1194.049186px;}
.x14{left:1196.826530px;}
.x41{left:1208.486219px;}
.x40{left:1226.811414px;}
.x9{left:1393.975395px;}
@media print{
.v1{vertical-align:-35.009637pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:2.841760pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.003752pt;}
.ls4{letter-spacing:2.000000pt;}
.ls3{letter-spacing:95.975258pt;}
.ls1{letter-spacing:96.000003pt;}
.ls2{letter-spacing:96.000363pt;}
.ws1{word-spacing:-37.440001pt;}
.ws6{word-spacing:-24.106667pt;}
.ws5{word-spacing:-18.080001pt;}
.ws3{word-spacing:-14.464000pt;}
.ws2{word-spacing:-0.106667pt;}
.ws0{word-spacing:0.000000pt;}
.ws4{word-spacing:954.804099pt;}
._8{margin-left:-9.926332pt;}
._d{margin-left:-7.539498pt;}
._9{margin-left:-6.475333pt;}
._c{margin-left:-4.960000pt;}
._2{margin-left:-3.200000pt;}
._4{margin-left:-1.989000pt;}
._1{margin-left:-1.066667pt;}
._3{width:1.028139pt;}
._5{width:2.111902pt;}
._0{width:3.584000pt;}
._6{width:37.120005pt;}
._7{width:61.226672pt;}
._b{width:1548.652890pt;}
._a{width:1780.371177pt;}
._e{width:2037.258572pt;}
.fs7{font-size:53.333334pt;}
.fs2{font-size:64.000002pt;}
.fs8{font-size:74.666666pt;}
.fs6{font-size:80.000003pt;}
.fs4{font-size:96.000003pt;}
.fs5{font-size:106.666667pt;}
.fs0{font-size:149.333333pt;}
.fs3{font-size:160.000005pt;}
.fs1{font-size:213.333335pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:16.396817pt;}
.y46{bottom:17.828028pt;}
.y38{bottom:18.837678pt;}
.y4c{bottom:18.959178pt;}
.y49{bottom:18.960178pt;}
.y20{bottom:23.600608pt;}
.y3f{bottom:28.409018pt;}
.y4{bottom:35.773828pt;}
.y52{bottom:55.591821pt;}
.y64{bottom:69.664939pt;}
.yd{bottom:75.348719pt;}
.y41{bottom:81.798280pt;}
.y10{bottom:82.277580pt;}
.y5c{bottom:97.035160pt;}
.yc{bottom:103.063930pt;}
.y56{bottom:103.807881pt;}
.y1a{bottom:119.544221pt;}
.y12{bottom:130.779141pt;}
.y16{bottom:139.666982pt;}
.y2a{bottom:142.145440pt;}
.y55{bottom:151.807883pt;}
.y29{bottom:161.345442pt;}
.y15{bottom:179.238433pt;}
.y28{bottom:180.545443pt;}
.y17{bottom:197.599183pt;}
.y62{bottom:223.195834pt;}
.y54{bottom:231.177945pt;}
.ye{bottom:234.711184pt;}
.y61{bottom:239.195835pt;}
.y5b{bottom:241.035165pt;}
.y2f{bottom:241.209945pt;}
.yb{bottom:241.639985pt;}
.yf{bottom:248.568785pt;}
.y60{bottom:260.635835pt;}
.y40{bottom:265.243655pt;}
.y5a{bottom:273.035166pt;}
.y69{bottom:273.500667pt;}
.y30{bottom:276.466766pt;}
.y66{bottom:277.419157pt;}
.y48{bottom:284.038406pt;}
.y2c{bottom:289.448656pt;}
.y18{bottom:289.662356pt;}
.y4b{bottom:290.080386pt;}
.y13{bottom:292.494206pt;}
.y43{bottom:296.325016pt;}
.y68{bottom:302.274938pt;}
.y47{bottom:303.238407pt;}
.y2b{bottom:308.648657pt;}
.y2e{bottom:309.067287pt;}
.y4a{bottom:309.280387pt;}
.y51{bottom:309.474627pt;}
.y39{bottom:324.813207pt;}
.y2d{bottom:328.267287pt;}
.y50{bottom:328.674627pt;}
.y3e{bottom:330.035938pt;}
.y14{bottom:338.070438pt;}
.y3d{bottom:349.235938pt;}
.y19{bottom:363.590369pt;}
.y4e{bottom:364.876189pt;}
.y42{bottom:376.214789pt;}
.y27{bottom:377.035179pt;}
.y5d{bottom:380.850909pt;}
.y11{bottom:382.964609pt;}
.y4d{bottom:383.527139pt;}
.y5f{bottom:384.116109pt;}
.y31{bottom:393.273050pt;}
.y5e{bottom:403.316110pt;}
.y1f{bottom:409.000190pt;}
.y21{bottom:409.012190pt;}
.y26{bottom:409.035180pt;}
.y53{bottom:411.065091pt;}
.y59{bottom:417.035170pt;}
.y25{bottom:441.035181pt;}
.y35{bottom:443.470851pt;}
.y1b{bottom:448.880311pt;}
.y58{bottom:449.035171pt;}
.y3c{bottom:451.470851pt;}
.y67{bottom:472.830332pt;}
.y1e{bottom:472.880312pt;}
.y24{bottom:473.035182pt;}
.y34{bottom:475.470852pt;}
.y1{bottom:483.621206pt;}
.y57{bottom:490.169023pt;}
.y23{bottom:505.035173pt;}
.y9{bottom:519.385294pt;}
.y3b{bottom:529.035164pt;}
.y45{bottom:537.035164pt;}
.y33{bottom:545.035164pt;}
.y1d{bottom:547.651964pt;}
.y8{bottom:551.385295pt;}
.y3a{bottom:561.035165pt;}
.y3{bottom:564.523359pt;}
.y63{bottom:575.018235pt;}
.y37{bottom:575.744883pt;}
.y44{bottom:577.035165pt;}
.y1c{bottom:579.651966pt;}
.y4f{bottom:581.035166pt;}
.y7{bottom:587.651966pt;}
.y36{bottom:599.744882pt;}
.y32{bottom:601.035166pt;}
.y65{bottom:614.598527pt;}
.y22{bottom:617.035167pt;}
.y6{bottom:619.651967pt;}
.y2{bottom:628.523357pt;}
.y5{bottom:668.227297pt;}
.h12{height:36.953125pt;}
.h7{height:38.281250pt;}
.h8{height:38.723959pt;}
.h3{height:44.343751pt;}
.hc{height:45.937501pt;}
.h9{height:46.468751pt;}
.hf{height:49.310512pt;}
.h10{height:51.250002pt;}
.h11{height:53.593750pt;}
.he{height:55.429689pt;}
.hd{height:57.421877pt;}
.ha{height:58.085939pt;}
.h6{height:76.562501pt;}
.hb{height:76.875002pt;}
.h5{height:77.447917pt;}
.h1{height:99.531250pt;}
.h4{height:119.062504pt;}
.h2{height:158.750001pt;}
.h0{height:720.000000pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x33{left:14.181103pt;}
.x39{left:28.062993pt;}
.x48{left:36.062993pt;}
.x2b{left:42.026246pt;}
.x53{left:43.979005pt;}
.x3e{left:47.220476pt;}
.x6{left:52.309712pt;}
.x51{left:56.737536pt;}
.x17{left:60.309712pt;}
.x1d{left:66.026247pt;}
.x34{left:70.080625pt;}
.x3d{left:83.962515pt;}
.x49{left:91.962515pt;}
.x7{left:100.309713pt;}
.x19{left:104.062999pt;}
.x18{left:108.309713pt;}
.x8{left:109.813624pt;}
.x1e{left:114.026249pt;}
.x1f{left:121.925769pt;}
.x35{left:145.501315pt;}
.x20{left:162.026250pt;}
.x16{left:164.658805pt;}
.x3{left:175.161431pt;}
.xf{left:183.311267pt;}
.x10{left:185.776906pt;}
.x11{left:188.604981pt;}
.x2c{left:193.698176pt;}
.xb{left:204.940130pt;}
.x2{left:215.566312pt;}
.x1b{left:217.817047pt;}
.xa{left:219.171929pt;}
.x58{left:235.246628pt;}
.x3b{left:239.449675pt;}
.x42{left:241.990818pt;}
.x46{left:274.013229pt;}
.x2d{left:289.698179pt;}
.xc{left:301.439309pt;}
.x2a{left:313.672890pt;}
.x45{left:318.589270pt;}
.x44{left:329.364799pt;}
.x43{left:345.653861pt;}
.x1c{left:369.716582pt;}
.xd{left:380.234512pt;}
.x32{left:385.312282pt;}
.x29{left:400.165803pt;}
.x5a{left:446.884554pt;}
.x56{left:453.319195pt;}
.x28{left:458.147514pt;}
.xe{left:461.977808pt;}
.x54{left:490.897376pt;}
.x3a{left:496.036506pt;}
.x3c{left:514.440966pt;}
.x59{left:523.827917pt;}
.x1{left:526.989392pt;}
.x26{left:537.569379pt;}
.x52{left:549.062288pt;}
.x57{left:561.447767pt;}
.x47{left:563.212678pt;}
.x27{left:566.565474pt;}
.x5{left:586.669719pt;}
.x4a{left:594.941457pt;}
.x4{left:596.964016pt;}
.x4f{left:627.449410pt;}
.x4b{left:630.976614pt;}
.x50{left:633.394034pt;}
.x4e{left:661.517201pt;}
.x4d{left:663.235951pt;}
.x24{left:678.017922pt;}
.x25{left:691.568704pt;}
.x37{left:708.708983pt;}
.x30{left:757.609760pt;}
.x31{left:759.913485pt;}
.x4c{left:765.769065pt;}
.x55{left:774.913965pt;}
.x36{left:786.911878pt;}
.x23{left:793.761801pt;}
.x5c{left:795.138955pt;}
.x22{left:796.773520pt;}
.x21{left:808.898521pt;}
.x15{left:812.884353pt;}
.x5b{left:898.359607pt;}
.x1a{left:914.290202pt;}
.x5e{left:929.787267pt;}
.x5d{left:931.150053pt;}
.x38{left:977.467292pt;}
.x2e{left:1003.066022pt;}
.x2f{left:1004.633405pt;}
.x3f{left:1007.464685pt;}
.x12{left:1055.698660pt;}
.x13{left:1061.377054pt;}
.x14{left:1063.845804pt;}
.x41{left:1074.209972pt;}
.x40{left:1090.499035pt;}
.x9{left:1239.089240pt;}
}




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