
    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_eb9e708ef30350d453800183.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.042000;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_a5d6ddab8b359b374f8b4ad4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.946000;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_a0b109fbfe01cc0078ca2529.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.079590;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_a968a0422f880677a6e59c3e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.973000;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_90df4070980eb29a9b6bc119.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040000;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_d4fbd9b6ac835604dbb4837e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.044000;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_2e45a25b5683d18f403a5ee5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.746094;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_9672d7dfb24a881ce3dcc910.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.715820;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_45fc7e3a614b6f1952823c59.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.936000;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);}
.m2{transform:matrix(0.240567,-0.068024,0.068037,0.240564,0,0);-ms-transform:matrix(0.240567,-0.068024,0.068037,0.240564,0,0);-webkit-transform:matrix(0.240567,-0.068024,0.068037,0.240564,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);}
.v2{vertical-align:-40.500001px;}
.v3{vertical-align:-37.125001px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:56.307071px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000044px;}
.ls4{letter-spacing:0.000315px;}
.ls5{letter-spacing:0.749998px;}
.ls7{letter-spacing:107.986392px;}
.ls6{letter-spacing:107.986397px;}
.ls3{letter-spacing:108.000003px;}
.ls1{letter-spacing:108.000426px;}
.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;}
}
.ws2{word-spacing:-38.088000px;}
.wsb{word-spacing:-35.508002px;}
.ws5{word-spacing:-30.564001px;}
.ws4{word-spacing:-29.052001px;}
.ws1{word-spacing:-28.296001px;}
.ws9{word-spacing:-17.292001px;}
.wsa{word-spacing:-16.980000px;}
.ws6{word-spacing:-16.962001px;}
.ws7{word-spacing:-16.620000px;}
.ws8{word-spacing:-0.132000px;}
.ws3{word-spacing:-0.108000px;}
.ws0{word-spacing:0.000000px;}
._2{margin-left:-8.769600px;}
._b{margin-left:-6.468000px;}
._5{margin-left:-5.198400px;}
._1{margin-left:-3.967200px;}
._0{margin-left:-2.923200px;}
._3{margin-left:-1.461600px;}
._4{width:1.252800px;}
._6{width:3.192000px;}
._a{width:5.570400px;}
._8{width:1726.292132px;}
._9{width:1730.745229px;}
._7{width:1759.648271px;}
.fc9{color:transparent;}
.fc8{color:rgb(255,0,0);}
.fc6{color:rgb(255,241,247);}
.fc3{color:rgb(194,123,160);}
.fc7{color:rgb(0,0,0);}
.fc5{color:rgb(51,51,51);}
.fc4{color:rgb(102,102,102);}
.fc1{color:rgb(89,89,89);}
.fc2{color:rgb(166,77,121);}
.fc0{color:rgb(116,27,71);}
.fs9{font-size:42.000000px;}
.fs5{font-size:60.000000px;}
.fsa{font-size:66.000004px;}
.fs11{font-size:66.000005px;}
.fsc{font-size:72.000002px;}
.fsb{font-size:72.000006px;}
.fsf{font-size:81.000003px;}
.fs4{font-size:84.000000px;}
.fs3{font-size:90.000003px;}
.fsd{font-size:93.000000px;}
.fs8{font-size:96.000006px;}
.fs10{font-size:99.000003px;}
.fs2{font-size:102.000000px;}
.fs7{font-size:108.000003px;}
.fs12{font-size:132.000007px;}
.fse{font-size:132.000009px;}
.fs6{font-size:138.000001px;}
.fs13{font-size:151.200005px;}
.fs1{font-size:167.999999px;}
.fs0{font-size:208.799998px;}
.y0{bottom:0.000000px;}
.ya{bottom:14.005477px;}
.y3d{bottom:20.720400px;}
.y68{bottom:28.082245px;}
.y9{bottom:39.285144px;}
.y3c{bottom:40.520401px;}
.y2a{bottom:42.100947px;}
.y51{bottom:44.429641px;}
.y20{bottom:44.884579px;}
.y4c{bottom:46.965807px;}
.y3f{bottom:59.775102px;}
.y1d{bottom:60.100947px;}
.y3a{bottom:60.320401px;}
.y35{bottom:60.681605px;}
.y8{bottom:64.485142px;}
.y1f{bottom:64.684580px;}
.y13{bottom:66.171965px;}
.y50{bottom:77.962438px;}
.y52{bottom:78.294538px;}
.y41{bottom:87.294538px;}
.y34{bottom:89.059123px;}
.y61{bottom:89.457756px;}
.y48{bottom:92.060912px;}
.y43{bottom:105.294539px;}
.y65{bottom:111.982000px;}
.y32{bottom:121.459147px;}
.y4f{bottom:122.962436px;}
.y47{bottom:124.685913px;}
.y28{bottom:126.871545px;}
.y64{bottom:129.982001px;}
.y60{bottom:136.857799px;}
.y31{bottom:153.859148px;}
.y75{bottom:155.524722px;}
.y66{bottom:156.652894px;}
.y46{bottom:157.310914px;}
.y27{bottom:159.271546px;}
.y4e{bottom:163.282437px;}
.y5f{bottom:169.257777px;}
.y4b{bottom:172.012790px;}
.y1c{bottom:179.428734px;}
.y53{bottom:183.785431px;}
.y30{bottom:186.259138px;}
.y12{bottom:186.698417px;}
.y45{bottom:189.935910px;}
.y26{bottom:191.671535px;}
.y42{bottom:192.785432px;}
.y74{bottom:195.124723px;}
.y1b{bottom:208.948723px;}
.y44{bottom:210.785432px;}
.y63{bottom:212.337437px;}
.y39{bottom:215.059116px;}
.y11{bottom:216.218406px;}
.y5e{bottom:216.657764px;}
.y7{bottom:221.757265px;}
.y2f{bottom:233.659124px;}
.y73{bottom:234.724713px;}
.y25{bottom:239.071522px;}
.y70{bottom:239.072996px;}
.y1a{bottom:241.348713px;}
.y49{bottom:241.605596px;}
.y10{bottom:248.618396px;}
.y6{bottom:248.757266px;}
.y5d{bottom:249.057754px;}
.y62{bottom:258.307571px;}
.y38{bottom:262.459120px;}
.y2e{bottom:266.059103px;}
.y24{bottom:271.471500px;}
.y6f{bottom:271.472974px;}
.y4a{bottom:273.655486px;}
.y5{bottom:276.477267px;}
.y19{bottom:288.748700px;}
.y29{bottom:290.324409px;}
.y37{bottom:294.859126px;}
.yf{bottom:296.018383px;}
.y5c{bottom:296.457729px;}
.y2d{bottom:298.459115px;}
.y58{bottom:302.817028px;}
.y4{bottom:311.037273px;}
.y72{bottom:313.924716px;}
.y23{bottom:318.871510px;}
.y6e{bottom:318.872983px;}
.y18{bottom:321.148690px;}
.ye{bottom:328.418372px;}
.y5b{bottom:328.857741px;}
.y36{bottom:342.259124px;}
.y2c{bottom:345.859120px;}
.y22{bottom:351.271517px;}
.y6d{bottom:351.272991px;}
.y71{bottom:353.524717px;}
.y57{bottom:365.678610px;}
.y17{bottom:367.828695px;}
.y3b{bottom:368.618381px;}
.yd{bottom:375.098378px;}
.y5a{bottom:376.257746px;}
.y2b{bottom:378.259125px;}
.y21{bottom:383.671523px;}
.y6c{bottom:383.672997px;}
.y16{bottom:397.348700px;}
.y56{bottom:398.078618px;}
.y6b{bottom:401.678611px;}
.yc{bottom:404.618382px;}
.y59{bottom:408.657751px;}
.y3{bottom:411.513236px;}
.y55{bottom:430.478623px;}
.y6a{bottom:434.078619px;}
.y14{bottom:440.753262px;}
.y1e{bottom:455.756582px;}
.y4d{bottom:463.362243px;}
.y69{bottom:466.478624px;}
.y2{bottom:474.153226px;}
.y15{bottom:492.624090px;}
.yb{bottom:497.156572px;}
.y3e{bottom:500.782553px;}
.y54{bottom:506.156572px;}
.y40{bottom:506.841610px;}
.y67{bottom:508.524991px;}
.y1{bottom:536.793217px;}
.y33{bottom:539.960195px;}
.hb{height:35.364000px;}
.h18{height:44.820000px;}
.hd{height:50.520000px;}
.h1a{height:52.148438px;}
.h16{height:53.424002px;}
.he{height:55.572003px;}
.h14{height:60.507002px;}
.h10{height:60.624002px;}
.h4{height:67.230002px;}
.h12{height:69.471000px;}
.h5{height:70.728000px;}
.h15{height:73.953002px;}
.h3{height:76.194000px;}
.h11{height:78.306000px;}
.ha{height:80.676003px;}
.h9{height:80.832005px;}
.hc{height:85.884000px;}
.hf{height:90.936003px;}
.h8{height:93.867191px;}
.h13{height:94.488288px;}
.h7{height:106.536001px;}
.h6{height:108.455509px;}
.h17{height:111.144006px;}
.h1b{height:114.726569px;}
.h2{height:125.496000px;}
.h19{height:131.414067px;}
.h1{height:175.809598px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x1{left:19.739174px;}
.xf{left:22.833662px;}
.x20{left:24.652559px;}
.x2b{left:31.798227px;}
.x14{left:35.633825px;}
.x8{left:47.294293px;}
.x10{left:53.341438px;}
.x2c{left:62.574805px;}
.x1c{left:67.352365px;}
.x26{left:68.613898px;}
.xc{left:71.875951px;}
.x39{left:77.415359px;}
.x15{left:78.941932px;}
.x9{left:82.257843px;}
.x11{left:96.649545px;}
.xd{left:115.184058px;}
.xa{left:125.565950px;}
.x2e{left:132.652562px;}
.x24{left:153.994111px;}
.x2d{left:252.008862px;}
.x29{left:255.474398px;}
.x34{left:266.665542px;}
.x36{left:268.018407px;}
.x25{left:277.883863px;}
.x23{left:281.788119px;}
.x22{left:290.788119px;}
.x37{left:305.345744px;}
.x38{left:318.444535px;}
.x21{left:450.655518px;}
.x7{left:473.980430px;}
.x1d{left:487.057111px;}
.x35{left:493.016303px;}
.x1e{left:518.787410px;}
.x17{left:536.784452px;}
.x1a{left:539.633837px;}
.x6{left:547.999026px;}
.x3{left:555.917598px;}
.x16{left:573.702768px;}
.x1b{left:582.941944px;}
.x12{left:583.990174px;}
.x18{left:590.784454px;}
.x2a{left:621.143120px;}
.x33{left:631.694945px;}
.x4{left:633.470499px;}
.x27{left:636.358070px;}
.x5{left:666.927888px;}
.xb{left:673.505954px;}
.x2{left:678.303100px;}
.xe{left:696.150630px;}
.x28{left:699.989197px;}
.x13{left:714.150630px;}
.x2f{left:723.516661px;}
.x30{left:782.677263px;}
.x1f{left:806.725410px;}
.x19{left:818.512856px;}
.x31{left:904.300971px;}
.x32{left:1029.688064px;}
@media print{
.v2{vertical-align:-36.000001pt;}
.v3{vertical-align:-33.000001pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:50.050730pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000039pt;}
.ls4{letter-spacing:0.000280pt;}
.ls5{letter-spacing:0.666665pt;}
.ls7{letter-spacing:95.987904pt;}
.ls6{letter-spacing:95.987908pt;}
.ls3{letter-spacing:96.000003pt;}
.ls1{letter-spacing:96.000379pt;}
.ws2{word-spacing:-33.856000pt;}
.wsb{word-spacing:-31.562668pt;}
.ws5{word-spacing:-27.168001pt;}
.ws4{word-spacing:-25.824001pt;}
.ws1{word-spacing:-25.152001pt;}
.ws9{word-spacing:-15.370668pt;}
.wsa{word-spacing:-15.093333pt;}
.ws6{word-spacing:-15.077334pt;}
.ws7{word-spacing:-14.773333pt;}
.ws8{word-spacing:-0.117333pt;}
.ws3{word-spacing:-0.096000pt;}
.ws0{word-spacing:0.000000pt;}
._2{margin-left:-7.795200pt;}
._b{margin-left:-5.749334pt;}
._5{margin-left:-4.620800pt;}
._1{margin-left:-3.526400pt;}
._0{margin-left:-2.598400pt;}
._3{margin-left:-1.299200pt;}
._4{width:1.113600pt;}
._6{width:2.837333pt;}
._a{width:4.951467pt;}
._8{width:1534.481895pt;}
._9{width:1538.440204pt;}
._7{width:1564.131796pt;}
.fs9{font-size:37.333333pt;}
.fs5{font-size:53.333334pt;}
.fsa{font-size:58.666670pt;}
.fs11{font-size:58.666671pt;}
.fsc{font-size:64.000002pt;}
.fsb{font-size:64.000005pt;}
.fsf{font-size:72.000002pt;}
.fs4{font-size:74.666666pt;}
.fs3{font-size:80.000003pt;}
.fsd{font-size:82.666667pt;}
.fs8{font-size:85.333339pt;}
.fs10{font-size:88.000003pt;}
.fs2{font-size:90.666667pt;}
.fs7{font-size:96.000003pt;}
.fs12{font-size:117.333340pt;}
.fse{font-size:117.333341pt;}
.fs6{font-size:122.666668pt;}
.fs13{font-size:134.400004pt;}
.fs1{font-size:149.333333pt;}
.fs0{font-size:185.599998pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:12.449313pt;}
.y3d{bottom:18.418133pt;}
.y68{bottom:24.961996pt;}
.y9{bottom:34.920128pt;}
.y3c{bottom:36.018134pt;}
.y2a{bottom:37.423064pt;}
.y51{bottom:39.493014pt;}
.y20{bottom:39.897404pt;}
.y4c{bottom:41.747384pt;}
.y3f{bottom:53.133424pt;}
.y1d{bottom:53.423064pt;}
.y3a{bottom:53.618134pt;}
.y35{bottom:53.939204pt;}
.y8{bottom:57.320127pt;}
.y1f{bottom:57.497405pt;}
.y13{bottom:58.819525pt;}
.y50{bottom:69.299945pt;}
.y52{bottom:69.595145pt;}
.y41{bottom:77.595145pt;}
.y34{bottom:79.163665pt;}
.y61{bottom:79.518005pt;}
.y48{bottom:81.831921pt;}
.y43{bottom:93.595146pt;}
.y65{bottom:99.539556pt;}
.y32{bottom:107.963686pt;}
.y4f{bottom:109.299943pt;}
.y47{bottom:110.831922pt;}
.y28{bottom:112.774706pt;}
.y64{bottom:115.539556pt;}
.y60{bottom:121.651377pt;}
.y31{bottom:136.763687pt;}
.y75{bottom:138.244197pt;}
.y66{bottom:139.247017pt;}
.y46{bottom:139.831923pt;}
.y27{bottom:141.574707pt;}
.y4e{bottom:145.139944pt;}
.y5f{bottom:150.451358pt;}
.y4b{bottom:152.900258pt;}
.y1c{bottom:159.492208pt;}
.y53{bottom:163.364828pt;}
.y30{bottom:165.563678pt;}
.y12{bottom:165.954148pt;}
.y45{bottom:168.831920pt;}
.y26{bottom:170.374698pt;}
.y42{bottom:171.364828pt;}
.y74{bottom:173.444198pt;}
.y1b{bottom:185.732199pt;}
.y44{bottom:187.364829pt;}
.y63{bottom:188.744389pt;}
.y39{bottom:191.163659pt;}
.y11{bottom:192.194139pt;}
.y5e{bottom:192.584679pt;}
.y7{bottom:197.117569pt;}
.y2f{bottom:207.696999pt;}
.y73{bottom:208.644189pt;}
.y25{bottom:212.508020pt;}
.y70{bottom:212.509330pt;}
.y1a{bottom:214.532190pt;}
.y49{bottom:214.760530pt;}
.y10{bottom:220.994130pt;}
.y6{bottom:221.117570pt;}
.y5d{bottom:221.384670pt;}
.y62{bottom:229.606730pt;}
.y38{bottom:233.296995pt;}
.y2e{bottom:236.496980pt;}
.y24{bottom:241.308000pt;}
.y6f{bottom:241.309310pt;}
.y4a{bottom:243.249321pt;}
.y5{bottom:245.757571pt;}
.y19{bottom:256.665511pt;}
.y29{bottom:258.066141pt;}
.y37{bottom:262.097001pt;}
.yf{bottom:263.127451pt;}
.y5c{bottom:263.517981pt;}
.y2d{bottom:265.296991pt;}
.y58{bottom:269.170691pt;}
.y4{bottom:276.477576pt;}
.y72{bottom:279.044192pt;}
.y23{bottom:283.441342pt;}
.y6e{bottom:283.442652pt;}
.y18{bottom:285.465502pt;}
.ye{bottom:291.927442pt;}
.y5b{bottom:292.317992pt;}
.y36{bottom:304.230332pt;}
.y2c{bottom:307.430329pt;}
.y22{bottom:312.241349pt;}
.y6d{bottom:312.242659pt;}
.y71{bottom:314.244193pt;}
.y57{bottom:325.047653pt;}
.y17{bottom:326.958840pt;}
.y3b{bottom:327.660783pt;}
.yd{bottom:333.420780pt;}
.y5a{bottom:334.451329pt;}
.y2b{bottom:336.230333pt;}
.y21{bottom:341.041354pt;}
.y6c{bottom:341.042664pt;}
.y16{bottom:353.198844pt;}
.y56{bottom:353.847660pt;}
.y6b{bottom:357.047654pt;}
.yc{bottom:359.660784pt;}
.y59{bottom:363.251334pt;}
.y3{bottom:365.789543pt;}
.y55{bottom:382.647665pt;}
.y6a{bottom:385.847661pt;}
.y14{bottom:391.780677pt;}
.y1e{bottom:405.116962pt;}
.y4d{bottom:411.877549pt;}
.y69{bottom:414.647666pt;}
.y2{bottom:421.469534pt;}
.y15{bottom:437.888080pt;}
.yb{bottom:441.916953pt;}
.y3e{bottom:445.140047pt;}
.y54{bottom:449.916953pt;}
.y40{bottom:450.525875pt;}
.y67{bottom:452.022214pt;}
.y1{bottom:477.149526pt;}
.y33{bottom:479.964618pt;}
.hb{height:31.434667pt;}
.h18{height:39.840000pt;}
.hd{height:44.906667pt;}
.h1a{height:46.354167pt;}
.h16{height:47.488002pt;}
.he{height:49.397336pt;}
.h14{height:53.784002pt;}
.h10{height:53.888002pt;}
.h4{height:59.760002pt;}
.h12{height:61.752000pt;}
.h5{height:62.869333pt;}
.h15{height:65.736002pt;}
.h3{height:67.728000pt;}
.h11{height:69.605333pt;}
.ha{height:71.712002pt;}
.h9{height:71.850671pt;}
.hc{height:76.341334pt;}
.hf{height:80.832003pt;}
.h8{height:83.437503pt;}
.h13{height:83.989589pt;}
.h7{height:94.698668pt;}
.h6{height:96.404897pt;}
.h17{height:98.794672pt;}
.h1b{height:101.979172pt;}
.h2{height:111.552000pt;}
.h19{height:116.812504pt;}
.h1{height:156.275198pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x1{left:17.545933pt;}
.xf{left:20.296589pt;}
.x20{left:21.913386pt;}
.x2b{left:28.265091pt;}
.x14{left:31.674511pt;}
.x8{left:42.039371pt;}
.x10{left:47.414612pt;}
.x2c{left:55.622049pt;}
.x1c{left:59.868769pt;}
.x26{left:60.990132pt;}
.xc{left:63.889734pt;}
.x39{left:68.813652pt;}
.x15{left:70.170606pt;}
.x9{left:73.118082pt;}
.x11{left:85.910707pt;}
.xd{left:102.385829pt;}
.xa{left:111.614178pt;}
.x2e{left:117.913389pt;}
.x24{left:136.883654pt;}
.x2d{left:224.007877pt;}
.x29{left:227.088354pt;}
.x34{left:237.036038pt;}
.x36{left:238.238584pt;}
.x25{left:247.007878pt;}
.x23{left:250.478328pt;}
.x22{left:258.478328pt;}
.x37{left:271.418439pt;}
.x38{left:283.061809pt;}
.x21{left:400.582683pt;}
.x7{left:421.315938pt;}
.x1d{left:432.939654pt;}
.x35{left:438.236714pt;}
.x1e{left:461.144365pt;}
.x17{left:477.141735pt;}
.x1a{left:479.674521pt;}
.x6{left:487.110246pt;}
.x3{left:494.148976pt;}
.x16{left:509.958016pt;}
.x1b{left:518.170617pt;}
.x12{left:519.102377pt;}
.x18{left:525.141737pt;}
.x2a{left:552.127218pt;}
.x33{left:561.506618pt;}
.x4{left:563.084888pt;}
.x27{left:565.651618pt;}
.x5{left:592.824789pt;}
.xb{left:598.671959pt;}
.x2{left:602.936089pt;}
.xe{left:618.800560pt;}
.x28{left:622.212620pt;}
.x13{left:634.800560pt;}
.x2f{left:643.125921pt;}
.x30{left:695.713122pt;}
.x1f{left:717.089253pt;}
.x19{left:727.566983pt;}
.x31{left:803.823086pt;}
.x32{left:915.278279pt;}
}




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