
    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_6196a6679008f7ba7028b837.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_cc5231ae8e9e0c6b35eea1a1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_a4ba2531d164571e14c520df.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_03d9d273fb3b3d1aa883ef63.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_0f2e261d272743f9f561ea58.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_a6f61ce81ab606fca8a27e02.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_34dd8dfcc47ebc0cb8f0dcdd.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_d44671c94d71ce11a45f533c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-76.319969px;}
.v1{vertical-align:-74.879970px;}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.021238px;}
.ls6{letter-spacing:0.021282px;}
.ls5{letter-spacing:0.378602px;}
.ls2{letter-spacing:0.731040px;}
.ls3{letter-spacing:1.451459px;}
.ls0{letter-spacing:1605.436638px;}
.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;}
}
.ws0{word-spacing:-18.414713px;}
.ws8{word-spacing:-18.021275px;}
.ws3{word-spacing:-18.021231px;}
.ws2{word-spacing:-17.999993px;}
.ws7{word-spacing:-15.318596px;}
.ws6{word-spacing:-14.939994px;}
.ws4{word-spacing:-12.059995px;}
.ws5{word-spacing:-9.719996px;}
.ws1{word-spacing:0.000000px;}
._17{margin-left:-9.629248px;}
._13{margin-left:-4.559947px;}
._10{margin-left:-3.512508px;}
._6{margin-left:-2.434710px;}
._1{margin-left:-1.194266px;}
._0{width:1.176314px;}
._2{width:2.278820px;}
._3{width:4.271672px;}
._e{width:5.587119px;}
._f{width:6.992271px;}
._16{width:7.993649px;}
._c{width:9.310956px;}
._14{width:10.337703px;}
._a{width:11.350547px;}
._b{width:12.641122px;}
._5{width:14.071854px;}
._4{width:15.122293px;}
._15{width:16.434008px;}
._7{width:20.252778px;}
._8{width:21.386672px;}
._18{width:23.363018px;}
._11{width:25.241035px;}
._12{width:26.393527px;}
._9{width:32.159704px;}
._d{width:50.377806px;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.879984px;}
.fs4{font-size:48.239981px;}
.fs2{font-size:59.759976px;}
.fs1{font-size:66.239974px;}
.fs3{font-size:71.999971px;}
.fs0{font-size:95.759962px;}
.y0{bottom:0.000000px;}
.y79{bottom:131.520247px;}
.y82{bottom:136.740245px;}
.y30{bottom:137.099945px;}
.y8f{bottom:148.799940px;}
.y78{bottom:148.800240px;}
.y81{bottom:149.700240px;}
.y67{bottom:151.139940px;}
.y77{bottom:154.019938px;}
.y2f{bottom:156.179938px;}
.yd9{bottom:156.539937px;}
.y4c{bottom:163.379935px;}
.y76{bottom:165.899934px;}
.y8e{bottom:171.119932px;}
.y2e{bottom:175.079930px;}
.y66{bottom:182.279927px;}
.y75{bottom:183.179927px;}
.yc0{bottom:184.979926px;}
.yd8{bottom:187.679925px;}
.y74{bottom:188.399925px;}
.y2d{bottom:193.979922px;}
.y4b{bottom:194.339922px;}
.ya5{bottom:200.459920px;}
.y73{bottom:201.359919px;}
.yaf{bottom:205.679918px;}
.y2c{bottom:212.879915px;}
.y65{bottom:213.239915px;}
.ybf{bottom:215.939914px;}
.ya4{bottom:217.739913px;}
.yae{bottom:218.639913px;}
.yb6{bottom:222.959911px;}
.y4a{bottom:225.479910px;}
.y2b{bottom:231.779907px;}
.y94{bottom:234.839906px;}
.ya3{bottom:235.019906px;}
.ybe{bottom:247.079901px;}
.yd7{bottom:249.779900px;}
.y2a{bottom:250.859900px;}
.ya2{bottom:252.299899px;}
.y49{bottom:256.439897px;}
.ya1{bottom:257.519897px;}
.y87{bottom:263.279895px;}
.y64{bottom:265.979894px;}
.ya0{bottom:269.399892px;}
.y29{bottom:269.759892px;}
.yb5{bottom:270.299892px;}
.y9f{bottom:274.619890px;}
.ybd{bottom:278.039889px;}
.yd6{bottom:280.739888px;}
.y9e{bottom:286.679885px;}
.y48{bottom:287.579885px;}
.y28{bottom:288.659885px;}
.y9d{bottom:291.899883px;}
.y63{bottom:296.939881px;}
.y9c{bottom:304.859878px;}
.y27{bottom:307.739877px;}
.y86{bottom:309.179876px;}
.yd5{bottom:311.879875px;}
.yb4{bottom:318.179873px;}
.y80{bottom:318.539873px;}
.y26{bottom:326.639869px;}
.y62{bottom:328.079869px;}
.y93{bottom:334.919866px;}
.y47{bottom:340.139864px;}
.yd4{bottom:342.839863px;}
.y25{bottom:345.719862px;}
.y7f{bottom:349.679860px;}
.y61{bottom:359.039856px;}
.y24{bottom:364.619854px;}
.ybc{bottom:370.919852px;}
.y46{bottom:371.279851px;}
.yd3{bottom:373.979850px;}
.y7e{bottom:380.639848px;}
.y23{bottom:383.699847px;}
.y9b{bottom:387.479845px;}
.y72{bottom:390.179844px;}
.yad{bottom:392.879843px;}
.y45{bottom:402.239839px;}
.yd2{bottom:404.939838px;}
.y60{bottom:411.779835px;}
.y71{bottom:421.139832px;}
.y22{bottom:421.499831px;}
.y97{bottom:423.839830px;}
.yac{bottom:430.679828px;}
.y44{bottom:433.379827px;}
.yd1{bottom:436.079826px;}
.y21{bottom:440.579824px;}
.y5f{bottom:442.739823px;}
.y9a{bottom:449.579820px;}
.y70{bottom:452.279819px;}
.y95{bottom:454.979818px;}
.y96{bottom:461.819815px;}
.y43{bottom:464.339814px;}
.yd0{bottom:467.039813px;}
.y5e{bottom:473.879810px;}
.y20{bottom:478.739809px;}
.y99{bottom:480.719808px;}
.y6f{bottom:483.239807px;}
.y85{bottom:485.939806px;}
.y42{bottom:495.479802px;}
.y1f{bottom:497.459801px;}
.ycf{bottom:498.179801px;}
.yb3{bottom:502.319799px;}
.y5d{bottom:504.839798px;}
.y1e{bottom:516.359793px;}
.y84{bottom:517.079793px;}
.y41{bottom:526.439789px;}
.yce{bottom:529.139788px;}
.y92{bottom:533.279787px;}
.y1d{bottom:535.439786px;}
.y5c{bottom:535.799786px;}
.y83{bottom:548.039781px;}
.y1c{bottom:554.339778px;}
.yab{bottom:554.879778px;}
.y7d{bottom:557.399777px;}
.ycd{bottom:560.279776px;}
.yb2{bottom:564.239774px;}
.y6d{bottom:566.939773px;}
.y1b{bottom:573.419771px;}
.y6e{bottom:573.779770px;}
.y40{bottom:578.999768px;}
.y5b{bottom:588.539765px;}
.ycc{bottom:591.239764px;}
.y1a{bottom:592.319763px;}
.y91{bottom:595.379762px;}
.y6c{bottom:597.899761px;}
.y3f{bottom:610.139756px;}
.y19{bottom:611.219756px;}
.ybb{bottom:619.139752px;}
.y5a{bottom:619.499752px;}
.ydb{bottom:621.839751px;}
.ycb{bottom:622.199751px;}
.y18{bottom:630.299748px;}
.ya9{bottom:631.739747px;}
.yaa{bottom:638.579745px;}
.y3e{bottom:641.099744px;}
.y8d{bottom:647.939741px;}
.y17{bottom:649.199740px;}
.yba{bottom:650.279740px;}
.y59{bottom:650.639740px;}
.yca{bottom:653.339739px;}
.ya8{bottom:662.699735px;}
.y16{bottom:668.279733px;}
.y3d{bottom:672.239731px;}
.yb9{bottom:681.239728px;}
.y58{bottom:681.599727px;}
.yc9{bottom:684.299726px;}
.y15{bottom:687.179725px;}
.ya7{bottom:693.839722px;}
.y3c{bottom:703.199719px;}
.y14{bottom:706.079718px;}
.yb1{bottom:710.039716px;}
.y57{bottom:712.739715px;}
.yc8{bottom:715.439714px;}
.ya6{bottom:724.799710px;}
.y13{bottom:725.159710px;}
.y3b{bottom:734.339706px;}
.y56{bottom:743.699703px;}
.y12{bottom:744.059702px;}
.yc7{bottom:746.399701px;}
.y8c{bottom:755.939698px;}
.y3a{bottom:765.299694px;}
.y55{bottom:774.839690px;}
.yc6{bottom:777.539689px;}
.y11{bottom:782.219687px;}
.y8b{bottom:786.899685px;}
.y39{bottom:796.439681px;}
.y10{bottom:800.939680px;}
.y6a{bottom:805.799678px;}
.yc5{bottom:808.499677px;}
.y6b{bottom:812.639675px;}
.y7c{bottom:818.039673px;}
.yf{bottom:820.199672px;}
.y38{bottom:827.399669px;}
.yb8{bottom:836.939665px;}
.ye{bottom:838.739665px;}
.yc4{bottom:839.639664px;}
.y7b{bottom:848.999660px;}
.yd{bottom:856.019658px;}
.y54{bottom:858.539657px;}
.yc3{bottom:870.599652px;}
.yc{bottom:873.659651px;}
.y37{bottom:880.139648px;}
.y8a{bottom:886.979645px;}
.y53{bottom:889.499644px;}
.yb{bottom:892.559643px;}
.yc2{bottom:901.739639px;}
.ya{bottom:911.099636px;}
.y7a{bottom:917.939633px;}
.y69{bottom:920.639632px;}
.y9{bottom:928.379629px;}
.yc1{bottom:932.699627px;}
.y52{bottom:941.879623px;}
.y36{bottom:942.239623px;}
.y8{bottom:946.019622px;}
.yb7{bottom:951.599619px;}
.y89{bottom:963.839614px;}
.y7{bottom:965.099614px;}
.y68{bottom:972.839611px;}
.y35{bottom:973.199611px;}
.y6{bottom:983.639607px;}
.y51{bottom:994.799602px;}
.y5{bottom:1000.739600px;}
.y34{bottom:1004.339598px;}
.yb0{bottom:1011.179596px;}
.yda{bottom:1025.579590px;}
.y50{bottom:1025.939590px;}
.y98{bottom:1032.779587px;}
.y33{bottom:1035.299586px;}
.y4{bottom:1037.279585px;}
.y4f{bottom:1056.899577px;}
.y3{bottom:1058.159577px;}
.y32{bottom:1066.259573px;}
.y2{bottom:1085.699566px;}
.y90{bottom:1087.679565px;}
.y4e{bottom:1088.039565px;}
.y1{bottom:1113.239555px;}
.y31{bottom:1118.639553px;}
.y4d{bottom:1118.999552px;}
.y88{bottom:1125.839550px;}
.h8{height:38.158578px;}
.h7{height:44.149201px;}
.h6{height:47.344903px;}
.h9{height:58.651148px;}
.h3{height:62.327788px;}
.h2{height:69.086222px;}
.h5{height:70.664034px;}
.ha{height:72.562471px;}
.h4{height:75.093720px;}
.h1{height:99.874648px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x4{left:127.619949px;}
.xd{left:131.399947px;}
.x14{left:132.479947px;}
.x24{left:137.339945px;}
.xe{left:160.738881px;}
.x1{left:161.819935px;}
.x15{left:180.720290px;}
.x2{left:182.339895px;}
.x32{left:184.679926px;}
.x33{left:196.919921px;}
.x12{left:200.519920px;}
.x13{left:206.639917px;}
.xc{left:212.580525px;}
.x1f{left:224.279910px;}
.x20{left:230.399908px;}
.x3{left:233.639945px;}
.x3b{left:302.579879px;}
.x3c{left:314.819874px;}
.x34{left:316.439873px;}
.x30{left:320.039872px;}
.x35{left:328.679869px;}
.x31{left:332.279867px;}
.x27{left:361.079856px;}
.xf{left:366.118908px;}
.x25{left:367.199853px;}
.x38{left:370.979852px;}
.x28{left:373.319851px;}
.x2d{left:379.979848px;}
.x26{left:382.499847px;}
.x29{left:451.619819px;}
.x2a{left:463.859814px;}
.x1d{left:494.639802px;}
.x1e{left:506.699797px;}
.x2e{left:517.319793px;}
.x39{left:523.799790px;}
.x2f{left:529.559788px;}
.x3a{left:536.039786px;}
.x36{left:551.339779px;}
.x37{left:563.579775px;}
.xa{left:573.660475px;}
.x18{left:590.399764px;}
.x19{left:593.819762px;}
.x8{left:596.700180px;}
.x1a{left:599.939760px;}
.x5{left:611.999755px;}
.x9{left:626.759756px;}
.x1b{left:630.359748px;}
.x1c{left:636.479745px;}
.x23{left:638.819744px;}
.x6{left:640.079742px;}
.xb{left:652.499757px;}
.x2b{left:669.779732px;}
.x2c{left:682.019727px;}
.x16{left:685.799726px;}
.x10{left:687.779725px;}
.x17{left:691.919723px;}
.x11{left:693.899722px;}
.x21{left:718.379713px;}
.x22{left:724.499710px;}
.x7{left:765.359694px;}
@media print{
.v2{vertical-align:-67.839973pt;}
.v1{vertical-align:-66.559973pt;}
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.018878pt;}
.ls6{letter-spacing:0.018917pt;}
.ls5{letter-spacing:0.336535pt;}
.ls2{letter-spacing:0.649813pt;}
.ls3{letter-spacing:1.290186pt;}
.ls0{letter-spacing:1427.054789pt;}
.ws0{word-spacing:-16.368633pt;}
.ws8{word-spacing:-16.018911pt;}
.ws3{word-spacing:-16.018872pt;}
.ws2{word-spacing:-15.999994pt;}
.ws7{word-spacing:-13.616529pt;}
.ws6{word-spacing:-13.279995pt;}
.ws4{word-spacing:-10.719996pt;}
.ws5{word-spacing:-8.639997pt;}
.ws1{word-spacing:0.000000pt;}
._17{margin-left:-8.559332pt;}
._13{margin-left:-4.053286pt;}
._10{margin-left:-3.122229pt;}
._6{margin-left:-2.164187pt;}
._1{margin-left:-1.061569pt;}
._0{width:1.045613pt;}
._2{width:2.025618pt;}
._3{width:3.797042pt;}
._e{width:4.966328pt;}
._f{width:6.215352pt;}
._16{width:7.105466pt;}
._c{width:8.276406pt;}
._14{width:9.189069pt;}
._a{width:10.089375pt;}
._b{width:11.236552pt;}
._5{width:12.508315pt;}
._4{width:13.442038pt;}
._15{width:14.608008pt;}
._7{width:18.002469pt;}
._8{width:19.010375pt;}
._18{width:20.767127pt;}
._11{width:22.436476pt;}
._12{width:23.460913pt;}
._9{width:28.586403pt;}
._d{width:44.780272pt;}
.fs5{font-size:34.559986pt;}
.fs4{font-size:42.879983pt;}
.fs2{font-size:53.119979pt;}
.fs1{font-size:58.879976pt;}
.fs3{font-size:63.999974pt;}
.fs0{font-size:85.119966pt;}
.y0{bottom:0.000000pt;}
.y79{bottom:116.906887pt;}
.y82{bottom:121.546885pt;}
.y30{bottom:121.866618pt;}
.y8f{bottom:132.266614pt;}
.y78{bottom:132.266880pt;}
.y81{bottom:133.066880pt;}
.y67{bottom:134.346613pt;}
.y77{bottom:136.906612pt;}
.y2f{bottom:138.826611pt;}
.yd9{bottom:139.146611pt;}
.y4c{bottom:145.226609pt;}
.y76{bottom:147.466608pt;}
.y8e{bottom:152.106606pt;}
.y2e{bottom:155.626604pt;}
.y66{bottom:162.026602pt;}
.y75{bottom:162.826602pt;}
.yc0{bottom:164.426601pt;}
.yd8{bottom:166.826600pt;}
.y74{bottom:167.466600pt;}
.y2d{bottom:172.426598pt;}
.y4b{bottom:172.746598pt;}
.ya5{bottom:178.186595pt;}
.y73{bottom:178.986595pt;}
.yaf{bottom:182.826594pt;}
.y2c{bottom:189.226591pt;}
.y65{bottom:189.546591pt;}
.ybf{bottom:191.946590pt;}
.ya4{bottom:193.546589pt;}
.yae{bottom:194.346589pt;}
.yb6{bottom:198.186587pt;}
.y4a{bottom:200.426586pt;}
.y2b{bottom:206.026584pt;}
.y94{bottom:208.746583pt;}
.ya3{bottom:208.906583pt;}
.ybe{bottom:219.626579pt;}
.yd7{bottom:222.026578pt;}
.y2a{bottom:222.986577pt;}
.ya2{bottom:224.266577pt;}
.y49{bottom:227.946575pt;}
.ya1{bottom:228.906575pt;}
.y87{bottom:234.026573pt;}
.y64{bottom:236.426572pt;}
.ya0{bottom:239.466571pt;}
.y29{bottom:239.786571pt;}
.yb5{bottom:240.266571pt;}
.y9f{bottom:244.106569pt;}
.ybd{bottom:247.146568pt;}
.yd6{bottom:249.546567pt;}
.y9e{bottom:254.826565pt;}
.y48{bottom:255.626564pt;}
.y28{bottom:256.586564pt;}
.y9d{bottom:259.466563pt;}
.y63{bottom:263.946561pt;}
.y9c{bottom:270.986558pt;}
.y27{bottom:273.546557pt;}
.y86{bottom:274.826557pt;}
.yd5{bottom:277.226556pt;}
.yb4{bottom:282.826554pt;}
.y80{bottom:283.146553pt;}
.y26{bottom:290.346551pt;}
.y62{bottom:291.626550pt;}
.y93{bottom:297.706548pt;}
.y47{bottom:302.346546pt;}
.yd4{bottom:304.746545pt;}
.y25{bottom:307.306544pt;}
.y7f{bottom:310.826542pt;}
.y61{bottom:319.146539pt;}
.y24{bottom:324.106537pt;}
.ybc{bottom:329.706535pt;}
.y46{bottom:330.026535pt;}
.yd3{bottom:332.426534pt;}
.y7e{bottom:338.346531pt;}
.y23{bottom:341.066530pt;}
.y9b{bottom:344.426529pt;}
.y72{bottom:346.826528pt;}
.yad{bottom:349.226527pt;}
.y45{bottom:357.546524pt;}
.yd2{bottom:359.946523pt;}
.y60{bottom:366.026520pt;}
.y71{bottom:374.346517pt;}
.y22{bottom:374.666517pt;}
.y97{bottom:376.746516pt;}
.yac{bottom:382.826514pt;}
.y44{bottom:385.226513pt;}
.yd1{bottom:387.626512pt;}
.y21{bottom:391.626510pt;}
.y5f{bottom:393.546509pt;}
.y9a{bottom:399.626507pt;}
.y70{bottom:402.026506pt;}
.y95{bottom:404.426505pt;}
.y96{bottom:410.506502pt;}
.y43{bottom:412.746502pt;}
.yd0{bottom:415.146501pt;}
.y5e{bottom:421.226498pt;}
.y20{bottom:425.546496pt;}
.y99{bottom:427.306496pt;}
.y6f{bottom:429.546495pt;}
.y85{bottom:431.946494pt;}
.y42{bottom:440.426490pt;}
.y1f{bottom:442.186490pt;}
.ycf{bottom:442.826490pt;}
.yb3{bottom:446.506488pt;}
.y5d{bottom:448.746487pt;}
.y1e{bottom:458.986483pt;}
.y84{bottom:459.626483pt;}
.y41{bottom:467.946479pt;}
.yce{bottom:470.346479pt;}
.y92{bottom:474.026477pt;}
.y1d{bottom:475.946476pt;}
.y5c{bottom:476.266476pt;}
.y83{bottom:487.146472pt;}
.y1c{bottom:492.746470pt;}
.yab{bottom:493.226469pt;}
.y7d{bottom:495.466468pt;}
.ycd{bottom:498.026467pt;}
.yb2{bottom:501.546466pt;}
.y6d{bottom:503.946465pt;}
.y1b{bottom:509.706463pt;}
.y6e{bottom:510.026463pt;}
.y40{bottom:514.666461pt;}
.y5b{bottom:523.146457pt;}
.ycc{bottom:525.546456pt;}
.y1a{bottom:526.506456pt;}
.y91{bottom:529.226455pt;}
.y6c{bottom:531.466454pt;}
.y3f{bottom:542.346450pt;}
.y19{bottom:543.306449pt;}
.ybb{bottom:550.346447pt;}
.y5a{bottom:550.666446pt;}
.ydb{bottom:552.746446pt;}
.ycb{bottom:553.066445pt;}
.y18{bottom:560.266443pt;}
.ya9{bottom:561.546442pt;}
.yaa{bottom:567.626440pt;}
.y3e{bottom:569.866439pt;}
.y8d{bottom:575.946436pt;}
.y17{bottom:577.066436pt;}
.yba{bottom:578.026435pt;}
.y59{bottom:578.346435pt;}
.yca{bottom:580.746434pt;}
.ya8{bottom:589.066431pt;}
.y16{bottom:594.026429pt;}
.y3d{bottom:597.546428pt;}
.yb9{bottom:605.546424pt;}
.y58{bottom:605.866424pt;}
.yc9{bottom:608.266423pt;}
.y15{bottom:610.826422pt;}
.ya7{bottom:616.746420pt;}
.y3c{bottom:625.066417pt;}
.y14{bottom:627.626416pt;}
.yb1{bottom:631.146414pt;}
.y57{bottom:633.546413pt;}
.yc8{bottom:635.946412pt;}
.ya6{bottom:644.266409pt;}
.y13{bottom:644.586409pt;}
.y3b{bottom:652.746406pt;}
.y56{bottom:661.066402pt;}
.y12{bottom:661.386402pt;}
.yc7{bottom:663.466401pt;}
.y8c{bottom:671.946398pt;}
.y3a{bottom:680.266395pt;}
.y55{bottom:688.746391pt;}
.yc6{bottom:691.146390pt;}
.y11{bottom:695.306389pt;}
.y8b{bottom:699.466387pt;}
.y39{bottom:707.946383pt;}
.y10{bottom:711.946382pt;}
.y6a{bottom:716.266380pt;}
.yc5{bottom:718.666379pt;}
.y6b{bottom:722.346378pt;}
.y7c{bottom:727.146376pt;}
.yf{bottom:729.066375pt;}
.y38{bottom:735.466372pt;}
.yb8{bottom:743.946369pt;}
.ye{bottom:745.546368pt;}
.yc4{bottom:746.346368pt;}
.y7b{bottom:754.666365pt;}
.yd{bottom:760.906362pt;}
.y54{bottom:763.146361pt;}
.yc3{bottom:773.866357pt;}
.yc{bottom:776.586356pt;}
.y37{bottom:782.346354pt;}
.y8a{bottom:788.426351pt;}
.y53{bottom:790.666350pt;}
.yb{bottom:793.386349pt;}
.yc2{bottom:801.546346pt;}
.ya{bottom:809.866343pt;}
.y7a{bottom:815.946340pt;}
.y69{bottom:818.346339pt;}
.y9{bottom:825.226337pt;}
.yc1{bottom:829.066335pt;}
.y52{bottom:837.226332pt;}
.y36{bottom:837.546332pt;}
.y8{bottom:840.906330pt;}
.yb7{bottom:845.866328pt;}
.y89{bottom:856.746324pt;}
.y7{bottom:857.866324pt;}
.y68{bottom:864.746321pt;}
.y35{bottom:865.066321pt;}
.y6{bottom:874.346317pt;}
.y51{bottom:884.266313pt;}
.y5{bottom:889.546311pt;}
.y34{bottom:892.746310pt;}
.yb0{bottom:898.826307pt;}
.yda{bottom:911.626302pt;}
.y50{bottom:911.946302pt;}
.y98{bottom:918.026299pt;}
.y33{bottom:920.266299pt;}
.y4{bottom:922.026298pt;}
.y4f{bottom:939.466291pt;}
.y3{bottom:940.586290pt;}
.y32{bottom:947.786288pt;}
.y2{bottom:965.066281pt;}
.y90{bottom:966.826280pt;}
.y4e{bottom:967.146280pt;}
.y1{bottom:989.546271pt;}
.y31{bottom:994.346269pt;}
.y4d{bottom:994.666269pt;}
.y88{bottom:1000.746266pt;}
.h8{height:33.918736pt;}
.h7{height:39.243734pt;}
.h6{height:42.084358pt;}
.h9{height:52.134354pt;}
.h3{height:55.402478pt;}
.h2{height:61.409975pt;}
.h5{height:62.812475pt;}
.ha{height:64.499974pt;}
.h4{height:66.749973pt;}
.h1{height:88.777464pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x4{left:113.439955pt;}
.xd{left:116.799953pt;}
.x14{left:117.759953pt;}
.x24{left:122.079951pt;}
.xe{left:142.879005pt;}
.x1{left:143.839942pt;}
.x15{left:160.640258pt;}
.x2{left:162.079907pt;}
.x32{left:164.159934pt;}
.x33{left:175.039930pt;}
.x12{left:178.239929pt;}
.x13{left:183.679927pt;}
.xc{left:188.960467pt;}
.x1f{left:199.359920pt;}
.x20{left:204.799918pt;}
.x3{left:207.679951pt;}
.x3b{left:268.959892pt;}
.x3c{left:279.839888pt;}
.x34{left:281.279887pt;}
.x30{left:284.479886pt;}
.x35{left:292.159883pt;}
.x31{left:295.359882pt;}
.x27{left:320.959872pt;}
.xf{left:325.439029pt;}
.x25{left:326.399869pt;}
.x38{left:329.759868pt;}
.x28{left:331.839867pt;}
.x2d{left:337.759865pt;}
.x26{left:339.999864pt;}
.x29{left:401.439839pt;}
.x2a{left:412.319835pt;}
.x1d{left:439.679824pt;}
.x1e{left:450.399820pt;}
.x2e{left:459.839816pt;}
.x39{left:465.599814pt;}
.x2f{left:470.719812pt;}
.x3a{left:476.479809pt;}
.x36{left:490.079804pt;}
.x37{left:500.959800pt;}
.xa{left:509.920422pt;}
.x18{left:524.799790pt;}
.x19{left:527.839789pt;}
.x8{left:530.400160pt;}
.x1a{left:533.279787pt;}
.x5{left:543.999782pt;}
.x9{left:557.119783pt;}
.x1b{left:560.319776pt;}
.x1c{left:565.759774pt;}
.x23{left:567.839773pt;}
.x6{left:568.959771pt;}
.xb{left:579.999784pt;}
.x2b{left:595.359762pt;}
.x2c{left:606.239758pt;}
.x16{left:609.599756pt;}
.x10{left:611.359755pt;}
.x17{left:615.039754pt;}
.x11{left:616.799753pt;}
.x21{left:638.559745pt;}
.x22{left:643.999742pt;}
.x7{left:680.319728pt;}
}




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