
    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_54761371498aada5a6e6f4c2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.022000;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_6330133fc4ab058463475a48.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.939453;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_69e74c31e9083029a80f4474.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_717b32ac62cea3ac463a81a0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.689453;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_79fd1be3ec6b7e58cba3d1bb.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.713867;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_ac0ad92a9d2fff5cf2ebc497.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.687988;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_05278e7d01bcbfc06e17a812.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.031738;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_7156369c7a19bf5033657b49.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.924332;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);}
.v2{vertical-align:-17.421301px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:9.980190px;}
.v1{vertical-align:18.566956px;}
.v4{vertical-align:44.822701px;}
.v5{vertical-align:55.465409px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.179721px;}
.ls4{letter-spacing:107.983398px;}
.ls1{letter-spacing:107.990418px;}
.ls5{letter-spacing:108.000408px;}
.ls2{letter-spacing:108.000426px;}
.ls3{letter-spacing:108.010533px;}
.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;}
}
.wse{word-spacing:-44.043000px;}
.wsc{word-spacing:-38.316000px;}
.ws4{word-spacing:-29.916001px;}
.ws0{word-spacing:0.000000px;}
.ws1{word-spacing:59.378906px;}
.ws8{word-spacing:84.704021px;}
.wsb{word-spacing:183.631812px;}
.ws3{word-spacing:388.217442px;}
.ws7{word-spacing:442.217444px;}
.ws6{word-spacing:445.097885px;}
.ws9{word-spacing:476.355701px;}
.ws2{word-spacing:532.754297px;}
.ws5{word-spacing:663.615813px;}
.wsa{word-spacing:985.679681px;}
.wsd{word-spacing:1324.766606px;}
._f{margin-left:-20.486999px;}
._b{margin-left:-16.740000px;}
._3{margin-left:-11.904000px;}
._0{margin-left:-10.176000px;}
._a{margin-left:-8.136000px;}
._c{margin-left:-6.291001px;}
._4{margin-left:-5.076000px;}
._2{margin-left:-3.816000px;}
._1{margin-left:-2.544000px;}
._7{margin-left:-1.416000px;}
._e{width:1.211580px;}
._d{width:2.496180px;}
._6{width:107.972021px;}
._9{width:281.819034px;}
._8{width:356.350448px;}
._5{width:546.702232px;}
.fc5{color:transparent;}
.fc4{color:rgb(31,31,31);}
.fc3{color:rgb(227,6,19);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(65,60,58);}
.fc0{color:rgb(255,255,255);}
.fs3{font-size:60.000000px;}
.fs8{font-size:63.000002px;}
.fs4{font-size:78.000005px;}
.fs2{font-size:84.000000px;}
.fs1{font-size:96.000006px;}
.fs5{font-size:97.200003px;}
.fsa{font-size:102.000000px;}
.fs6{font-size:108.000003px;}
.fs9{font-size:144.000005px;}
.fs0{font-size:158.999999px;}
.fsd{font-size:180.000006px;}
.fs7{font-size:186.000000px;}
.fsc{font-size:216.000007px;}
.fsb{font-size:219.787207px;}
.y0{bottom:0.000000px;}
.y45{bottom:13.762084px;}
.y7{bottom:19.404107px;}
.y18{bottom:22.523112px;}
.y10{bottom:27.773981px;}
.y79{bottom:32.948241px;}
.y11{bottom:38.324963px;}
.y6e{bottom:41.415181px;}
.y70{bottom:49.575898px;}
.y3c{bottom:50.782910px;}
.y31{bottom:51.724501px;}
.y55{bottom:52.912670px;}
.y73{bottom:54.744756px;}
.y42{bottom:59.632137px;}
.y27{bottom:62.973050px;}
.y37{bottom:66.556524px;}
.y84{bottom:68.679039px;}
.y76{bottom:69.225170px;}
.y4f{bottom:69.234024px;}
.y6d{bottom:71.790182px;}
.y3b{bottom:75.532910px;}
.y66{bottom:76.442565px;}
.y30{bottom:80.884491px;}
.y54{bottom:85.537671px;}
.y36{bottom:91.306525px;}
.y26{bottom:92.133040px;}
.y83{bottom:92.295051px;}
.y65{bottom:95.342565px;}
.y3a{bottom:100.282911px;}
.y75{bottom:101.850171px;}
.y4e{bottom:101.859025px;}
.y98{bottom:102.052660px;}
.y6c{bottom:102.165183px;}
.y78{bottom:102.487074px;}
.y62{bottom:108.324850px;}
.y2f{bottom:110.044469px;}
.y82{bottom:117.639063px;}
.y53{bottom:118.162672px;}
.y25{bottom:121.293007px;}
.y69{bottom:122.385692px;}
.y39{bottom:125.032915px;}
.y44{bottom:125.107522px;}
.y6b{bottom:132.540176px;}
.y47{bottom:132.543007px;}
.y61{bottom:134.244862px;}
.y74{bottom:134.475172px;}
.y4d{bottom:134.484026px;}
.y77{bottom:134.887080px;}
.y8d{bottom:136.864447px;}
.y72{bottom:138.576529px;}
.y2e{bottom:139.204448px;}
.y59{bottom:139.228203px;}
.y96{bottom:140.072576px;}
.y35{bottom:140.806530px;}
.y81{bottom:141.255053px;}
.y38{bottom:149.782916px;}
.y24{bottom:150.453030px;}
.y52{bottom:150.787676px;}
.y97{bottom:152.596662px;}
.y68{bottom:154.785698px;}
.y6a{bottom:162.915177px;}
.y8c{bottom:166.024448px;}
.y80{bottom:167.175053px;}
.y2d{bottom:168.364448px;}
.y95{bottom:169.232555px;}
.y58{bottom:171.628209px;}
.y23{bottom:179.613031px;}
.yf{bottom:180.151760px;}
.y4c{bottom:180.341570px;}
.y43{bottom:188.007944px;}
.y8b{bottom:195.184449px;}
.y2c{bottom:197.524449px;}
.ye{bottom:198.151761px;}
.y12{bottom:204.926932px;}
.y22{bottom:208.773032px;}
.y60{bottom:212.004842px;}
.y13{bottom:212.394537px;}
.y94{bottom:216.392556px;}
.yd{bottom:217.591755px;}
.y7f{bottom:218.439021px;}
.y46{bottom:220.023033px;}
.y17{bottom:220.024450px;}
.y4b{bottom:223.091571px;}
.y8a{bottom:224.344439px;}
.y2b{bottom:226.684450px;}
.y5f{bottom:237.924832px;}
.y21{bottom:237.933033px;}
.y48{bottom:239.792568px;}
.y7e{bottom:242.055033px;}
.yc{bottom:242.791753px;}
.y33{bottom:243.826076px;}
.y93{bottom:245.552557px;}
.y41{bottom:249.183034px;}
.y6{bottom:258.547770px;}
.y4a{bottom:265.841567px;}
.y7d{bottom:267.975023px;}
.y89{bottom:271.504440px;}
.y92{bottom:274.712558px;}
.y71{bottom:276.227551px;}
.y40{bottom:278.343023px;}
.y16{bottom:278.344441px;}
.y20{bottom:296.253018px;}
.y2a{bottom:296.254436px;}
.y5{bottom:301.477771px;}
.y91{bottom:303.872548px;}
.y3f{bottom:307.503019px;}
.y49{bottom:308.591569px;}
.y5e{bottom:315.684818px;}
.y88{bottom:318.664431px;}
.y7c{bottom:319.815020px;}
.y1f{bottom:325.413013px;}
.y29{bottom:325.414431px;}
.y90{bottom:333.032549px;}
.y3e{bottom:336.663014px;}
.y15{bottom:336.664431px;}
.y5d{bottom:341.604819px;}
.y4{bottom:344.407784px;}
.y7b{bottom:345.735025px;}
.y87{bottom:347.824432px;}
.y1e{bottom:354.573014px;}
.y28{bottom:354.574432px;}
.y64{bottom:358.452813px;}
.y8f{bottom:362.192538px;}
.y32{bottom:362.255190px;}
.y57{bottom:363.663543px;}
.y3{bottom:387.337774px;}
.y67{bottom:387.612814px;}
.y1d{bottom:394.983018px;}
.y14{bottom:394.984435px;}
.y7a{bottom:397.575019px;}
.y8e{bottom:409.352540px;}
.y63{bottom:416.772817px;}
.y5c{bottom:419.364819px;}
.y3d{bottom:419.487937px;}
.y56{bottom:421.983548px;}
.y2{bottom:430.267770px;}
.yb{bottom:434.924421px;}
.y6f{bottom:436.212481px;}
.y34{bottom:437.487943px;}
.ya{bottom:452.924421px;}
.y51{bottom:460.439401px;}
.y9{bottom:472.364415px;}
.y1{bottom:473.197766px;}
.y50{bottom:485.189407px;}
.y86{bottom:494.684170px;}
.y1c{bottom:496.073057px;}
.y1a{bottom:497.461946px;}
.y8{bottom:497.564414px;}
.y5b{bottom:499.138893px;}
.y85{bottom:544.904167px;}
.y1b{bottom:546.293055px;}
.y19{bottom:547.681944px;}
.y5a{bottom:549.358890px;}
.h4{height:43.740235px;}
.hb{height:45.927248px;}
.hf{height:50.541506px;}
.h7{height:50.820000px;}
.h5{height:56.786137px;}
.h3{height:61.236328px;}
.h2{height:69.984379px;}
.h10{height:74.358399px;}
.h9{height:78.626956px;}
.h6{height:78.732424px;}
.hd{height:89.433290px;}
.ha{height:97.299380px;}
.he{height:104.976566px;}
.hc{height:123.555126px;}
.h13{height:131.044926px;}
.h1{height:134.672999px;}
.h12{height:157.464849px;}
.h8{height:157.542000px;}
.h11{height:160.011097px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x3{left:23.294292px;}
.x5{left:40.437521px;}
.x6{left:58.437522px;}
.x30{left:94.665356px;}
.x26{left:117.000004px;}
.x1a{left:120.000001px;}
.xb{left:127.125004px;}
.x12{left:133.203385px;}
.x9{left:135.905278px;}
.x18{left:137.650258px;}
.x38{left:139.451956px;}
.xc{left:145.525201px;}
.x33{left:154.860249px;}
.x21{left:157.853240px;}
.x35{left:163.554485px;}
.x13{left:167.625005px;}
.xd{left:181.125006px;}
.x28{left:188.914314px;}
.x39{left:191.816905px;}
.x36{left:198.672374px;}
.x29{left:206.956064px;}
.x2f{left:213.683356px;}
.x11{left:221.028555px;}
.x17{left:226.688981px;}
.x37{left:235.125008px;}
.x16{left:260.291408px;}
.x2c{left:263.855720px;}
.x2d{left:366.016264px;}
.x2e{left:389.713602px;}
.x32{left:400.579730px;}
.x23{left:424.439206px;}
.x22{left:426.680417px;}
.x20{left:479.126007px;}
.x3b{left:550.687585px;}
.xe{left:606.058782px;}
.xf{left:624.458979px;}
.x2a{left:628.234859px;}
.x14{left:641.320896px;}
.x34{left:651.947871px;}
.x15{left:655.643892px;}
.x1e{left:657.496436px;}
.x1d{left:658.678952px;}
.x10{left:660.058784px;}
.x1c{left:663.345944px;}
.x1f{left:678.106291px;}
.x2b{left:691.278806px;}
.x31{left:728.013792px;}
.x24{left:740.199470px;}
.x25{left:757.443611px;}
.x1{left:781.312593px;}
.x2{left:786.879186px;}
.x27{left:1036.315010px;}
.x19{left:1037.327107px;}
.x1b{left:1038.819017px;}
.xa{left:1041.622916px;}
.x3a{left:1043.642430px;}
.x7{left:1046.115188px;}
.x4{left:1054.484151px;}
.x8{left:1064.115188px;}
@media print{
.v2{vertical-align:-15.485600pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:8.871280pt;}
.v1{vertical-align:16.503961pt;}
.v4{vertical-align:39.842401pt;}
.v5{vertical-align:49.302586pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.159752pt;}
.ls4{letter-spacing:95.985243pt;}
.ls1{letter-spacing:95.991483pt;}
.ls5{letter-spacing:96.000363pt;}
.ls2{letter-spacing:96.000379pt;}
.ls3{letter-spacing:96.009363pt;}
.wse{word-spacing:-39.149333pt;}
.wsc{word-spacing:-34.058667pt;}
.ws4{word-spacing:-26.592001pt;}
.ws0{word-spacing:0.000000pt;}
.ws1{word-spacing:52.781250pt;}
.ws8{word-spacing:75.292463pt;}
.wsb{word-spacing:163.228277pt;}
.ws3{word-spacing:345.082171pt;}
.ws7{word-spacing:393.082173pt;}
.ws6{word-spacing:395.642565pt;}
.ws9{word-spacing:423.427290pt;}
.ws2{word-spacing:473.559375pt;}
.ws5{word-spacing:589.880723pt;}
.wsa{word-spacing:876.159716pt;}
.wsd{word-spacing:1177.570316pt;}
._f{margin-left:-18.210666pt;}
._b{margin-left:-14.880000pt;}
._3{margin-left:-10.581333pt;}
._0{margin-left:-9.045333pt;}
._a{margin-left:-7.232000pt;}
._c{margin-left:-5.592001pt;}
._4{margin-left:-4.512000pt;}
._2{margin-left:-3.392000pt;}
._1{margin-left:-2.261333pt;}
._7{margin-left:-1.258667pt;}
._e{width:1.076960pt;}
._d{width:2.218827pt;}
._6{width:95.975130pt;}
._9{width:250.505808pt;}
._8{width:316.755954pt;}
._5{width:485.957540pt;}
.fs3{font-size:53.333334pt;}
.fs8{font-size:56.000002pt;}
.fs4{font-size:69.333338pt;}
.fs2{font-size:74.666666pt;}
.fs1{font-size:85.333339pt;}
.fs5{font-size:86.400003pt;}
.fsa{font-size:90.666667pt;}
.fs6{font-size:96.000003pt;}
.fs9{font-size:128.000004pt;}
.fs0{font-size:141.333333pt;}
.fsd{font-size:160.000005pt;}
.fs7{font-size:165.333333pt;}
.fsc{font-size:192.000006pt;}
.fsb{font-size:195.366406pt;}
.y0{bottom:0.000000pt;}
.y45{bottom:12.232963pt;}
.y7{bottom:17.248095pt;}
.y18{bottom:20.020544pt;}
.y10{bottom:24.687984pt;}
.y79{bottom:29.287326pt;}
.y11{bottom:34.066634pt;}
.y6e{bottom:36.813494pt;}
.y70{bottom:44.067465pt;}
.y3c{bottom:45.140364pt;}
.y31{bottom:45.977334pt;}
.y55{bottom:47.033484pt;}
.y73{bottom:48.662005pt;}
.y42{bottom:53.006344pt;}
.y27{bottom:55.976045pt;}
.y37{bottom:59.161355pt;}
.y84{bottom:61.048035pt;}
.y76{bottom:61.533485pt;}
.y4f{bottom:61.541355pt;}
.y6d{bottom:63.813495pt;}
.y3b{bottom:67.140365pt;}
.y66{bottom:67.948947pt;}
.y30{bottom:71.897325pt;}
.y54{bottom:76.033485pt;}
.y36{bottom:81.161355pt;}
.y26{bottom:81.896035pt;}
.y83{bottom:82.040045pt;}
.y65{bottom:84.748946pt;}
.y3a{bottom:89.140366pt;}
.y75{bottom:90.533486pt;}
.y4e{bottom:90.541356pt;}
.y98{bottom:90.713476pt;}
.y6c{bottom:90.813496pt;}
.y78{bottom:91.099622pt;}
.y62{bottom:96.288756pt;}
.y2f{bottom:97.817306pt;}
.y82{bottom:104.568056pt;}
.y53{bottom:105.033486pt;}
.y25{bottom:107.816006pt;}
.y69{bottom:108.787282pt;}
.y39{bottom:111.140369pt;}
.y44{bottom:111.206686pt;}
.y6b{bottom:117.813489pt;}
.y47{bottom:117.816006pt;}
.y61{bottom:119.328767pt;}
.y74{bottom:119.533487pt;}
.y4d{bottom:119.541357pt;}
.y77{bottom:119.899627pt;}
.y8d{bottom:121.657287pt;}
.y72{bottom:123.179137pt;}
.y2e{bottom:123.737287pt;}
.y59{bottom:123.758403pt;}
.y96{bottom:124.508957pt;}
.y35{bottom:125.161360pt;}
.y81{bottom:125.560047pt;}
.y38{bottom:133.140370pt;}
.y24{bottom:133.736027pt;}
.y52{bottom:134.033490pt;}
.y97{bottom:135.641477pt;}
.y68{bottom:137.587287pt;}
.y6a{bottom:144.813490pt;}
.y8c{bottom:147.577287pt;}
.y80{bottom:148.600047pt;}
.y2d{bottom:149.657288pt;}
.y95{bottom:150.428938pt;}
.y58{bottom:152.558408pt;}
.y23{bottom:159.656028pt;}
.yf{bottom:160.134898pt;}
.y4c{bottom:160.303618pt;}
.y43{bottom:167.118172pt;}
.y8b{bottom:173.497288pt;}
.y2c{bottom:175.577288pt;}
.ye{bottom:176.134898pt;}
.y12{bottom:182.157273pt;}
.y22{bottom:185.576029pt;}
.y60{bottom:188.448749pt;}
.y13{bottom:188.795144pt;}
.y94{bottom:192.348939pt;}
.yd{bottom:193.414893pt;}
.y7f{bottom:194.168019pt;}
.y46{bottom:195.576029pt;}
.y17{bottom:195.577289pt;}
.y4b{bottom:198.303619pt;}
.y8a{bottom:199.417279pt;}
.y2b{bottom:201.497289pt;}
.y5f{bottom:211.488739pt;}
.y21{bottom:211.496029pt;}
.y48{bottom:213.148950pt;}
.y7e{bottom:215.160030pt;}
.yc{bottom:215.814892pt;}
.y33{bottom:216.734290pt;}
.y93{bottom:218.268940pt;}
.y41{bottom:221.496030pt;}
.y6{bottom:229.820240pt;}
.y4a{bottom:236.303615pt;}
.y7d{bottom:238.200020pt;}
.y89{bottom:241.337280pt;}
.y92{bottom:244.188941pt;}
.y71{bottom:245.535601pt;}
.y40{bottom:247.416021pt;}
.y16{bottom:247.417281pt;}
.y20{bottom:263.336016pt;}
.y2a{bottom:263.337276pt;}
.y5{bottom:267.980241pt;}
.y91{bottom:270.108931pt;}
.y3f{bottom:273.336016pt;}
.y49{bottom:274.303616pt;}
.y5e{bottom:280.608727pt;}
.y88{bottom:283.257272pt;}
.y7c{bottom:284.280018pt;}
.y1f{bottom:289.256012pt;}
.y29{bottom:289.257272pt;}
.y90{bottom:296.028932pt;}
.y3e{bottom:299.256012pt;}
.y15{bottom:299.257272pt;}
.y5d{bottom:303.648728pt;}
.y4{bottom:306.140253pt;}
.y7b{bottom:307.320023pt;}
.y87{bottom:309.177273pt;}
.y1e{bottom:315.176013pt;}
.y28{bottom:315.177273pt;}
.y64{bottom:318.624723pt;}
.y8f{bottom:321.948923pt;}
.y32{bottom:322.004613pt;}
.y57{bottom:323.256483pt;}
.y3{bottom:344.300244pt;}
.y67{bottom:344.544724pt;}
.y1d{bottom:351.096016pt;}
.y14{bottom:351.097276pt;}
.y7a{bottom:353.400017pt;}
.y8e{bottom:363.868924pt;}
.y63{bottom:370.464727pt;}
.y5c{bottom:372.768728pt;}
.y3d{bottom:372.878167pt;}
.y56{bottom:375.096487pt;}
.y2{bottom:382.460240pt;}
.yb{bottom:386.599485pt;}
.y6f{bottom:387.744427pt;}
.y34{bottom:388.878171pt;}
.ya{bottom:402.599486pt;}
.y51{bottom:409.279468pt;}
.y9{bottom:419.879480pt;}
.y1{bottom:420.620236pt;}
.y50{bottom:431.279473pt;}
.y86{bottom:439.719262pt;}
.y1c{bottom:440.953829pt;}
.y1a{bottom:442.188397pt;}
.y8{bottom:442.279479pt;}
.y5b{bottom:443.679016pt;}
.y85{bottom:484.359259pt;}
.y1b{bottom:485.593826pt;}
.y19{bottom:486.828394pt;}
.y5a{bottom:488.319013pt;}
.h4{height:38.880209pt;}
.hb{height:40.824220pt;}
.hf{height:44.925783pt;}
.h7{height:45.173334pt;}
.h5{height:50.476566pt;}
.h3{height:54.432291pt;}
.h2{height:62.208337pt;}
.h10{height:66.096354pt;}
.h9{height:69.890627pt;}
.h6{height:69.984377pt;}
.hd{height:79.496258pt;}
.ha{height:86.488338pt;}
.he{height:93.312503pt;}
.hc{height:109.826779pt;}
.h13{height:116.484379pt;}
.h1{height:119.709333pt;}
.h12{height:139.968754pt;}
.h8{height:140.037333pt;}
.h11{height:142.232086pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x3{left:20.706038pt;}
.x5{left:35.944463pt;}
.x6{left:51.944464pt;}
.x30{left:84.146983pt;}
.x26{left:104.000003pt;}
.x1a{left:106.666667pt;}
.xb{left:113.000004pt;}
.x12{left:118.403009pt;}
.x9{left:120.804692pt;}
.x18{left:122.355785pt;}
.x38{left:123.957294pt;}
.xc{left:129.355734pt;}
.x33{left:137.653554pt;}
.x21{left:140.313991pt;}
.x35{left:145.381765pt;}
.x13{left:149.000005pt;}
.xd{left:161.000005pt;}
.x28{left:167.923834pt;}
.x39{left:170.503915pt;}
.x36{left:176.597666pt;}
.x29{left:183.960946pt;}
.x2f{left:189.940761pt;}
.x11{left:196.469826pt;}
.x17{left:201.501316pt;}
.x37{left:209.000007pt;}
.x16{left:231.370140pt;}
.x2c{left:234.538418pt;}
.x2d{left:325.347790pt;}
.x2e{left:346.412091pt;}
.x32{left:356.070871pt;}
.x23{left:377.279294pt;}
.x22{left:379.271482pt;}
.x20{left:425.889784pt;}
.x3b{left:489.500076pt;}
.xe{left:538.718917pt;}
.xf{left:555.074648pt;}
.x2a{left:558.430986pt;}
.x14{left:570.063018pt;}
.x34{left:579.509219pt;}
.x15{left:582.794571pt;}
.x1e{left:584.441277pt;}
.x1d{left:585.492402pt;}
.x10{left:586.718919pt;}
.x1c{left:589.640839pt;}
.x1f{left:602.761147pt;}
.x2b{left:614.470050pt;}
.x31{left:647.123371pt;}
.x24{left:657.955084pt;}
.x25{left:673.283210pt;}
.x1{left:694.500082pt;}
.x2{left:699.448165pt;}
.x27{left:921.168897pt;}
.x19{left:922.068540pt;}
.x1b{left:923.394682pt;}
.xa{left:925.887037pt;}
.x3a{left:927.682160pt;}
.x7{left:929.880167pt;}
.x4{left:937.319245pt;}
.x8{left:945.880167pt;}
}




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