
    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_14db116329a05e99a631b6a3.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_029465f483d05261126b9b31.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_e5a61013ac45884a9db0c345.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_71765a449cc988dcc8325cdc.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_07492cd06e240f8b674bfeb6.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_39c06502adc133c7f52ad341.woff2')format("woff");}.ff6{font-family:ff6;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;}
.m1{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);}
.m0{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.m3{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);}
.v1{vertical-align:-82.799967px;}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.010641px;}
.ls6{letter-spacing:0.155834px;}
.ls5{letter-spacing:0.189300px;}
.ls1{letter-spacing:17.479913px;}
.ls3{letter-spacing:19.641232px;}
.ls7{letter-spacing:196.111437px;}
.ls0{letter-spacing:2532.448987px;}
.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;}
}
.ws1{word-spacing:-20.015992px;}
.ws2{word-spacing:-16.613273px;}
.ws3{word-spacing:-14.939994px;}
.ws4{word-spacing:-13.410715px;}
.ws5{word-spacing:-10.808636px;}
.ws0{word-spacing:0.000000px;}
._4{margin-left:-1.293867px;}
._1{width:1.107063px;}
._14{width:2.829464px;}
._e{width:4.174923px;}
._7{width:5.225675px;}
._8{width:6.394690px;}
._16{width:8.295736px;}
._15{width:9.582093px;}
._10{width:11.085486px;}
._5{width:12.316570px;}
._6{width:13.747267px;}
._20{width:14.763201px;}
._18{width:16.249720px;}
._d{width:17.398840px;}
._c{width:19.180478px;}
._3{width:21.176841px;}
._b{width:22.649797px;}
._21{width:23.737034px;}
._f{width:24.760182px;}
._13{width:26.341747px;}
._19{width:27.602834px;}
._a{width:28.659790px;}
._9{width:29.999097px;}
._25{width:31.702621px;}
._24{width:32.904495px;}
._2e{width:34.017870px;}
._2f{width:35.088542px;}
._1c{width:36.283400px;}
._1b{width:37.345300px;}
._1f{width:38.978961px;}
._1e{width:40.146600px;}
._22{width:41.899976px;}
._23{width:42.907026px;}
._31{width:44.001864px;}
._17{width:45.741204px;}
._1a{width:47.006815px;}
._12{width:48.058356px;}
._11{width:49.090537px;}
._30{width:50.741589px;}
._2c{width:62.047135px;}
._2d{width:63.095906px;}
._29{width:88.048045px;}
._33{width:129.461535px;}
._1d{width:142.079703px;}
._26{width:168.014813px;}
._32{width:176.095771px;}
._2b{width:181.702727px;}
._27{width:192.509203px;}
._2{width:196.111362px;}
._2a{width:412.238715px;}
._28{width:2462.423015px;}
._0{width:2498.441001px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.879984px;}
.fs2{font-size:48.239981px;}
.fs1{font-size:59.759976px;}
.fs0{font-size:71.999971px;}
.y0{bottom:0.000000px;}
.y1{bottom:57.720277px;}
.y61{bottom:109.740256px;}
.y4a{bottom:109.920256px;}
.y49{bottom:117.480253px;}
.y1b{bottom:118.019953px;}
.y89{bottom:118.199953px;}
.y8b{bottom:127.020249px;}
.y60{bottom:127.200249px;}
.y48{bottom:128.099949px;}
.ya2{bottom:131.339947px;}
.y8a{bottom:134.580246px;}
.y5f{bottom:134.760246px;}
.y1a{bottom:135.299946px;}
.y5e{bottom:144.299942px;}
.y8e{bottom:144.300242px;}
.y2d{bottom:145.199942px;}
.y6e{bottom:145.379942px;}
.y8f{bottom:146.639941px;}
.y6f{bottom:146.640241px;}
.y8d{bottom:151.859939px;}
.y19{bottom:152.579939px;}
.y88{bottom:159.599936px;}
.y96{bottom:161.579935px;}
.y5d{bottom:161.759935px;}
.y8c{bottom:162.659935px;}
.y18{bottom:166.079934px;}
.y74{bottom:167.339933px;}
.y5c{bottom:169.319932px;}
.ya1{bottom:172.739931px;}
.yb2{bottom:178.139929px;}
.y6b{bottom:178.859928px;}
.y5b{bottom:179.039928px;}
.y87{bottom:180.299928px;}
.y6a{bottom:186.419925px;}
.y2c{bottom:186.599925px;}
.y47{bottom:188.039925px;}
.y39{bottom:188.040225px;}
.y95{bottom:196.139922px;}
.y5a{bottom:196.319921px;}
.y69{bottom:197.219921px;}
.yb1{bottom:198.479921px;}
.y86{bottom:200.639920px;}
.y72{bottom:202.619919px;}
.y94{bottom:203.699919px;}
.y59{bottom:203.879918px;}
.y73{bottom:208.739917px;}
.y58{bottom:213.239915px;}
.ya0{bottom:214.139914px;}
.y93{bottom:214.499914px;}
.y85{bottom:217.559913px;}
.y71{bottom:222.959911px;}
.y2b{bottom:227.999909px;}
.y45{bottom:229.439908px;}
.y38{bottom:229.440208px;}
.y57{bottom:230.699908px;}
.y84{bottom:234.839906px;}
.y46{bottom:237.719905px;}
.y56{bottom:238.259905px;}
.y55{bottom:248.879900px;}
.y83{bottom:251.939899px;}
.y9f{bottom:255.539898px;}
.y70{bottom:257.339897px;}
.yb0{bottom:260.399896px;}
.y82{bottom:269.219892px;}
.y2a{bottom:269.399892px;}
.y44{bottom:270.839892px;}
.y37{bottom:270.840192px;}
.y68{bottom:279.119888px;}
.y81{bottom:283.259887px;}
.yaf{bottom:291.539883px;}
.y9e{bottom:296.939881px;}
.y29{bottom:310.799876px;}
.y43{bottom:312.239875px;}
.y36{bottom:312.240175px;}
.y54{bottom:320.519872px;}
.yae{bottom:322.499871px;}
.y9d{bottom:338.339865px;}
.y28{bottom:352.199859px;}
.y67{bottom:353.639859px;}
.y35{bottom:353.640159px;}
.y42{bottom:353.819858px;}
.y9c{bottom:359.039856px;}
.y9b{bottom:379.379848px;}
.yad{bottom:384.599846px;}
.y27{bottom:393.599843px;}
.y41{bottom:395.039842px;}
.y34{bottom:395.040142px;}
.y9a{bottom:397.019841px;}
.y26{bottom:413.939834px;}
.yac{bottom:415.559834px;}
.y99{bottom:417.719833px;}
.y25{bottom:431.219828px;}
.y98{bottom:434.279826px;}
.y40{bottom:436.439825px;}
.y33{bottom:436.440125px;}
.yab{bottom:446.519821px;}
.y24{bottom:448.319821px;}
.y23{bottom:465.599814px;}
.yaa{bottom:477.659809px;}
.y3f{bottom:477.839809px;}
.y32{bottom:477.840109px;}
.y22{bottom:482.879807px;}
.y53{bottom:486.119806px;}
.y21{bottom:500.159800px;}
.ya9{bottom:508.620097px;}
.y20{bottom:517.439793px;}
.y3e{bottom:519.239792px;}
.y31{bottom:519.240092px;}
.y51{bottom:519.419792px;}
.y52{bottom:527.699789px;}
.y1f{bottom:530.939788px;}
.ya8{bottom:539.760084px;}
.y3d{bottom:560.639776px;}
.y17{bottom:560.640076px;}
.y50{bottom:560.819776px;}
.y92{bottom:568.919772px;}
.ya7{bottom:570.720072px;}
.ya6{bottom:601.860059px;}
.y3c{bottom:602.039759px;}
.y16{bottom:602.040059px;}
.ya5{bottom:622.740051px;}
.y3b{bottom:643.439743px;}
.y30{bottom:643.440043px;}
.y15{bottom:643.620043px;}
.ya4{bottom:664.140034px;}
.y3a{bottom:684.839726px;}
.y2f{bottom:684.840026px;}
.y14{bottom:685.020026px;}
.y4f{bottom:726.239710px;}
.y13{bottom:726.240010px;}
.y4e{bottom:734.519706px;}
.y66{bottom:767.639693px;}
.y12{bottom:767.639993px;}
.y65{bottom:809.039676px;}
.y11{bottom:809.039976px;}
.y10{bottom:829.739968px;}
.y64{bottom:850.439660px;}
.yf{bottom:850.439960px;}
.y97{bottom:858.719657px;}
.ye{bottom:871.139952px;}
.y63{bottom:891.839643px;}
.y2e{bottom:891.839943px;}
.y62{bottom:900.119640px;}
.yd{bottom:912.539935px;}
.y6d{bottom:933.239627px;}
.yc{bottom:933.239927px;}
.y6c{bottom:941.519623px;}
.y80{bottom:953.219619px;}
.yb{bottom:953.939918px;}
.y7f{bottom:970.319612px;}
.y91{bottom:974.639610px;}
.ya{bottom:974.639910px;}
.y7e{bottom:987.599605px;}
.y9{bottom:995.339902px;}
.y7d{bottom:1004.879598px;}
.y90{bottom:1016.039594px;}
.y8{bottom:1016.039894px;}
.y4d{bottom:1016.219894px;}
.y7c{bottom:1022.159591px;}
.y7{bottom:1036.739885px;}
.y7b{bottom:1039.439584px;}
.y7a{bottom:1056.539577px;}
.ya3{bottom:1057.439577px;}
.y6{bottom:1057.439877px;}
.y79{bottom:1073.819570px;}
.y5{bottom:1078.139869px;}
.y78{bottom:1091.099564px;}
.y4{bottom:1098.839860px;}
.y4c{bottom:1099.019860px;}
.y77{bottom:1108.379557px;}
.y1e{bottom:1108.739557px;}
.y3{bottom:1119.539852px;}
.y76{bottom:1125.659550px;}
.y1d{bottom:1126.019550px;}
.y2{bottom:1140.239844px;}
.y4b{bottom:1140.419844px;}
.y75{bottom:1142.939543px;}
.y1c{bottom:1143.299543px;}
.h9{height:40.550609px;}
.h7{height:50.312792px;}
.h5{height:58.621969px;}
.h4{height:58.651148px;}
.h3{height:60.226851px;}
.h6{height:62.327788px;}
.h1{height:70.664034px;}
.h8{height:70.665234px;}
.h2{height:75.093720px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:127.619949px;}
.xa{left:133.019947px;}
.x1e{left:138.419945px;}
.x7{left:154.620018px;}
.x26{left:173.699931px;}
.x6{left:180.718581px;}
.x27{left:187.019925px;}
.x21{left:207.539917px;}
.x8{left:268.739893px;}
.x1a{left:273.599891px;}
.x9{left:279.539888px;}
.x28{left:292.679883px;}
.x2{left:412.199834px;}
.x4{left:446.399821px;}
.x17{left:463.679815px;}
.x13{left:464.939814px;}
.x18{left:470.339812px;}
.x14{left:471.599811px;}
.x1f{left:491.759803px;}
.x20{left:505.079798px;}
.x22{left:554.759778px;}
.x23{left:568.079773px;}
.x1c{left:609.299756px;}
.x1d{left:622.619751px;}
.x3{left:639.899744px;}
.x5{left:661.679735px;}
.x19{left:664.739734px;}
.xb{left:670.679732px;}
.x15{left:676.259729px;}
.xc{left:677.339729px;}
.xf{left:678.599729px;}
.x16{left:682.919727px;}
.x10{left:685.259726px;}
.x1b{left:695.879722px;}
.xd{left:706.859717px;}
.x24{left:710.819716px;}
.xe{left:713.519715px;}
.x29{left:717.299713px;}
.x25{left:724.139710px;}
.x11{left:746.999701px;}
.x12{left:753.659699px;}
@media print{
.v1{vertical-align:-73.599971pt;}
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.009459pt;}
.ls6{letter-spacing:0.138519pt;}
.ls5{letter-spacing:0.168267pt;}
.ls1{letter-spacing:15.537700pt;}
.ls3{letter-spacing:17.458873pt;}
.ls7{letter-spacing:174.321277pt;}
.ls0{letter-spacing:2251.065766pt;}
.ws1{word-spacing:-17.791993pt;}
.ws2{word-spacing:-14.767354pt;}
.ws3{word-spacing:-13.279995pt;}
.ws4{word-spacing:-11.920635pt;}
.ws5{word-spacing:-9.607676pt;}
.ws0{word-spacing:0.000000pt;}
._4{margin-left:-1.150104pt;}
._1{width:0.984056pt;}
._14{width:2.515079pt;}
._e{width:3.711043pt;}
._7{width:4.645044pt;}
._8{width:5.684169pt;}
._16{width:7.373987pt;}
._15{width:8.517416pt;}
._10{width:9.853766pt;}
._5{width:10.948062pt;}
._6{width:12.219793pt;}
._20{width:13.122845pt;}
._18{width:14.444196pt;}
._d{width:15.465635pt;}
._c{width:17.049314pt;}
._3{width:18.823859pt;}
._b{width:20.133153pt;}
._21{width:21.099586pt;}
._f{width:22.009051pt;}
._13{width:23.414886pt;}
._19{width:24.535853pt;}
._a{width:25.475369pt;}
._9{width:26.665864pt;}
._25{width:28.180108pt;}
._24{width:29.248440pt;}
._2e{width:30.238106pt;}
._2f{width:31.189815pt;}
._1c{width:32.251911pt;}
._1b{width:33.195822pt;}
._1f{width:34.647966pt;}
._1e{width:35.685867pt;}
._22{width:37.244423pt;}
._23{width:38.139578pt;}
._31{width:39.112768pt;}
._17{width:40.658848pt;}
._1a{width:41.783836pt;}
._12{width:42.718538pt;}
._11{width:43.636033pt;}
._30{width:45.103635pt;}
._2c{width:55.153009pt;}
._2d{width:56.085250pt;}
._29{width:78.264929pt;}
._33{width:115.076920pt;}
._1d{width:126.293069pt;}
._26{width:149.346500pt;}
._32{width:156.529575pt;}
._2b{width:161.513535pt;}
._27{width:171.119292pt;}
._2{width:174.321210pt;}
._2a{width:366.434413pt;}
._28{width:2188.820458pt;}
._0{width:2220.836445pt;}
.fs3{font-size:34.559986pt;}
.fs2{font-size:42.879983pt;}
.fs1{font-size:53.119979pt;}
.fs0{font-size:63.999974pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:51.306913pt;}
.y61{bottom:97.546894pt;}
.y4a{bottom:97.706894pt;}
.y49{bottom:104.426892pt;}
.y1b{bottom:104.906625pt;}
.y89{bottom:105.066625pt;}
.y8b{bottom:112.906888pt;}
.y60{bottom:113.066888pt;}
.y48{bottom:113.866621pt;}
.ya2{bottom:116.746620pt;}
.y8a{bottom:119.626885pt;}
.y5f{bottom:119.786885pt;}
.y1a{bottom:120.266619pt;}
.y5e{bottom:128.266615pt;}
.y8e{bottom:128.266882pt;}
.y2d{bottom:129.066615pt;}
.y6e{bottom:129.226615pt;}
.y8f{bottom:130.346615pt;}
.y6f{bottom:130.346881pt;}
.y8d{bottom:134.986613pt;}
.y19{bottom:135.626612pt;}
.y88{bottom:141.866610pt;}
.y96{bottom:143.626609pt;}
.y5d{bottom:143.786609pt;}
.y8c{bottom:144.586609pt;}
.y18{bottom:147.626608pt;}
.y74{bottom:148.746607pt;}
.y5c{bottom:150.506606pt;}
.ya1{bottom:153.546605pt;}
.yb2{bottom:158.346603pt;}
.y6b{bottom:158.986603pt;}
.y5b{bottom:159.146603pt;}
.y87{bottom:160.266603pt;}
.y6a{bottom:165.706600pt;}
.y2c{bottom:165.866600pt;}
.y47{bottom:167.146600pt;}
.y39{bottom:167.146866pt;}
.y95{bottom:174.346597pt;}
.y5a{bottom:174.506597pt;}
.y69{bottom:175.306597pt;}
.yb1{bottom:176.426596pt;}
.y86{bottom:178.346595pt;}
.y72{bottom:180.106595pt;}
.y94{bottom:181.066594pt;}
.y59{bottom:181.226594pt;}
.y73{bottom:185.546592pt;}
.y58{bottom:189.546591pt;}
.ya0{bottom:190.346591pt;}
.y93{bottom:190.666590pt;}
.y85{bottom:193.386589pt;}
.y71{bottom:198.186587pt;}
.y2b{bottom:202.666586pt;}
.y45{bottom:203.946585pt;}
.y38{bottom:203.946852pt;}
.y57{bottom:205.066585pt;}
.y84{bottom:208.746583pt;}
.y46{bottom:211.306582pt;}
.y56{bottom:211.786582pt;}
.y55{bottom:221.226578pt;}
.y83{bottom:223.946577pt;}
.y9f{bottom:227.146576pt;}
.y70{bottom:228.746575pt;}
.yb0{bottom:231.466574pt;}
.y82{bottom:239.306571pt;}
.y2a{bottom:239.466571pt;}
.y44{bottom:240.746570pt;}
.y37{bottom:240.746837pt;}
.y68{bottom:248.106567pt;}
.y81{bottom:251.786566pt;}
.yaf{bottom:259.146563pt;}
.y9e{bottom:263.946561pt;}
.y29{bottom:276.266556pt;}
.y43{bottom:277.546556pt;}
.y36{bottom:277.546822pt;}
.y54{bottom:284.906553pt;}
.yae{bottom:286.666552pt;}
.y9d{bottom:300.746546pt;}
.y28{bottom:313.066541pt;}
.y67{bottom:314.346541pt;}
.y35{bottom:314.346808pt;}
.y42{bottom:314.506541pt;}
.y9c{bottom:319.146539pt;}
.y9b{bottom:337.226532pt;}
.yad{bottom:341.866530pt;}
.y27{bottom:349.866527pt;}
.y41{bottom:351.146526pt;}
.y34{bottom:351.146793pt;}
.y9a{bottom:352.906526pt;}
.y26{bottom:367.946519pt;}
.yac{bottom:369.386519pt;}
.y99{bottom:371.306518pt;}
.y25{bottom:383.306513pt;}
.y98{bottom:386.026512pt;}
.y40{bottom:387.946511pt;}
.y33{bottom:387.946778pt;}
.yab{bottom:396.906508pt;}
.y24{bottom:398.506507pt;}
.y23{bottom:413.866501pt;}
.yaa{bottom:424.586497pt;}
.y3f{bottom:424.746497pt;}
.y32{bottom:424.746763pt;}
.y22{bottom:429.226495pt;}
.y53{bottom:432.106494pt;}
.y21{bottom:444.586489pt;}
.ya9{bottom:452.106752pt;}
.y20{bottom:459.946483pt;}
.y3e{bottom:461.546482pt;}
.y31{bottom:461.546749pt;}
.y51{bottom:461.706482pt;}
.y52{bottom:469.066479pt;}
.y1f{bottom:471.946478pt;}
.ya8{bottom:479.786741pt;}
.y3d{bottom:498.346467pt;}
.y17{bottom:498.346734pt;}
.y50{bottom:498.506467pt;}
.y92{bottom:505.706464pt;}
.ya7{bottom:507.306730pt;}
.ya6{bottom:534.986719pt;}
.y3c{bottom:535.146453pt;}
.y16{bottom:535.146719pt;}
.ya5{bottom:553.546712pt;}
.y3b{bottom:571.946438pt;}
.y30{bottom:571.946705pt;}
.y15{bottom:572.106704pt;}
.ya4{bottom:590.346697pt;}
.y3a{bottom:608.746423pt;}
.y2f{bottom:608.746690pt;}
.y14{bottom:608.906690pt;}
.y4f{bottom:645.546408pt;}
.y13{bottom:645.546675pt;}
.y4e{bottom:652.906406pt;}
.y66{bottom:682.346394pt;}
.y12{bottom:682.346660pt;}
.y65{bottom:719.146379pt;}
.y11{bottom:719.146646pt;}
.y10{bottom:737.546638pt;}
.y64{bottom:755.946364pt;}
.yf{bottom:755.946631pt;}
.y97{bottom:763.306361pt;}
.ye{bottom:774.346624pt;}
.y63{bottom:792.746350pt;}
.y2e{bottom:792.746616pt;}
.y62{bottom:800.106347pt;}
.yd{bottom:811.146609pt;}
.y6d{bottom:829.546335pt;}
.yc{bottom:829.546602pt;}
.y6c{bottom:836.906332pt;}
.y80{bottom:847.306328pt;}
.yb{bottom:847.946594pt;}
.y7f{bottom:862.506322pt;}
.y91{bottom:866.346320pt;}
.ya{bottom:866.346587pt;}
.y7e{bottom:877.866316pt;}
.y9{bottom:884.746579pt;}
.y7d{bottom:893.226309pt;}
.y90{bottom:903.146305pt;}
.y8{bottom:903.146572pt;}
.y4d{bottom:903.306572pt;}
.y7c{bottom:908.586303pt;}
.y7{bottom:921.546565pt;}
.y7b{bottom:923.946297pt;}
.y7a{bottom:939.146291pt;}
.ya3{bottom:939.946291pt;}
.y6{bottom:939.946557pt;}
.y79{bottom:954.506285pt;}
.y5{bottom:958.346550pt;}
.y78{bottom:969.866279pt;}
.y4{bottom:976.746543pt;}
.y4c{bottom:976.906543pt;}
.y77{bottom:985.226273pt;}
.y1e{bottom:985.546272pt;}
.y3{bottom:995.146535pt;}
.y76{bottom:1000.586266pt;}
.y1d{bottom:1000.906266pt;}
.y2{bottom:1013.546528pt;}
.y4b{bottom:1013.706528pt;}
.y75{bottom:1015.946260pt;}
.y1c{bottom:1016.266260pt;}
.h9{height:36.044986pt;}
.h7{height:44.722482pt;}
.h5{height:52.108417pt;}
.h4{height:52.134354pt;}
.h3{height:53.534979pt;}
.h6{height:55.402478pt;}
.h1{height:62.812475pt;}
.h8{height:62.813542pt;}
.h2{height:66.749973pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:113.439955pt;}
.xa{left:118.239953pt;}
.x1e{left:123.039951pt;}
.x7{left:137.440016pt;}
.x26{left:154.399938pt;}
.x6{left:160.638739pt;}
.x27{left:166.239934pt;}
.x21{left:184.479926pt;}
.x8{left:238.879904pt;}
.x1a{left:243.199903pt;}
.x9{left:248.479901pt;}
.x28{left:260.159896pt;}
.x2{left:366.399852pt;}
.x4{left:396.799841pt;}
.x17{left:412.159835pt;}
.x13{left:413.279835pt;}
.x18{left:418.079833pt;}
.x14{left:419.199832pt;}
.x1f{left:437.119825pt;}
.x20{left:448.959820pt;}
.x22{left:493.119803pt;}
.x23{left:504.959798pt;}
.x1c{left:541.599783pt;}
.x1d{left:553.439779pt;}
.x3{left:568.799772pt;}
.x5{left:588.159765pt;}
.x19{left:590.879764pt;}
.xb{left:596.159762pt;}
.x15{left:601.119760pt;}
.xc{left:602.079759pt;}
.xf{left:603.199759pt;}
.x16{left:607.039757pt;}
.x10{left:609.119756pt;}
.x1b{left:618.559753pt;}
.xd{left:628.319749pt;}
.x24{left:631.839747pt;}
.xe{left:634.239746pt;}
.x29{left:637.599745pt;}
.x25{left:643.679743pt;}
.x11{left:663.999734pt;}
.x12{left:669.919732pt;}
}




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