
    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_6e48a637c58ae397e676e0c6.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_ee2d9860db202095b4a1fce8.woff')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_19026b0ddba4861df7549ff6.woff')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_ef4ea02fd11060b993c8980d.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_72f24af050fa8d62799240d1.woff')format("woff");}.ff5{font-family:ff5;line-height:0.706055;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_6e48a637c58ae397e676e0c6.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_5043d3ce31c2df40c18a8e21.woff')format("woff");}.ff7{font-family:ff7;line-height:0.910645;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;}
.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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.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:-36.000000px;}
.ws1{word-spacing:-18.000000px;}
.ws0{word-spacing:0.000000px;}
._1{margin-left:-11.778548px;}
._f{margin-left:-9.568335px;}
._3{margin-left:-7.503948px;}
._b{margin-left:-5.904237px;}
._e{margin-left:-4.449175px;}
._2{margin-left:-3.330697px;}
._0{margin-left:-2.146541px;}
._8{width:4.500002px;}
._7{width:8.999993px;}
._6{width:13.499999px;}
._5{width:22.500001px;}
._4{width:27.000000px;}
._a{width:31.499998px;}
._9{width:36.000000px;}
._c{width:40.499999px;}
._d{width:174.445312px;}
.fc2{color:rgb(17,85,204);}
.fc1{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:63.000000px;}
.fs0{font-size:66.000002px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:83.999997px;}
.y0{bottom:0.000000px;}
.y4e{bottom:15.562500px;}
.y2{bottom:15.562569px;}
.y2a{bottom:15.562592px;}
.yd6{bottom:15.563232px;}
.yd4{bottom:59.967044px;}
.y28{bottom:59.967584px;}
.y73{bottom:59.967779px;}
.yd3{bottom:82.442138px;}
.y27{bottom:82.442693px;}
.y72{bottom:82.442873px;}
.yd2{bottom:106.245113px;}
.y26{bottom:106.245668px;}
.y71{bottom:106.245848px;}
.yd1{bottom:130.048102px;}
.y25{bottom:130.048642px;}
.y70{bottom:130.048823px;}
.yd0{bottom:154.959955px;}
.y96{bottom:164.630131px;}
.y4c{bottom:165.570559px;}
.yb3{bottom:167.240473px;}
.y89{bottom:167.640378px;}
.y6f{bottom:167.640384px;}
.ya4{bottom:167.688714px;}
.ycf{bottom:175.658197px;}
.y24{bottom:176.958253px;}
.y95{bottom:195.677494px;}
.yce{bottom:196.356442px;}
.y4b{bottom:196.617923px;}
.yb2{bottom:198.287836px;}
.y88{bottom:198.687741px;}
.y6e{bottom:198.687748px;}
.ya3{bottom:198.736078px;}
.y23{bottom:208.005616px;}
.ycd{bottom:217.054690px;}
.y94{bottom:226.724857px;}
.y4a{bottom:227.665278px;}
.yb1{bottom:229.335199px;}
.y87{bottom:229.735104px;}
.y6d{bottom:229.735111px;}
.ya2{bottom:229.783441px;}
.ycc{bottom:237.752932px;}
.y22{bottom:239.052979px;}
.y93{bottom:257.772217px;}
.y49{bottom:258.712641px;}
.yb0{bottom:260.382562px;}
.y86{bottom:260.782468px;}
.y6c{bottom:260.782474px;}
.ya1{bottom:260.830804px;}
.ycb{bottom:261.555173px;}
.y21{bottom:270.100342px;}
.yca{bottom:285.358883px;}
.y92{bottom:288.819577px;}
.y48{bottom:289.760004px;}
.yaf{bottom:291.429938px;}
.y85{bottom:291.829831px;}
.y6b{bottom:291.829837px;}
.ya0{bottom:291.878167px;}
.y20{bottom:301.147704px;}
.yae{bottom:312.128174px;}
.y9f{bottom:312.576413px;}
.yc9{bottom:316.406242px;}
.y91{bottom:319.866938px;}
.y47{bottom:320.807368px;}
.y84{bottom:322.877194px;}
.y6a{bottom:322.877199px;}
.y1f{bottom:332.195068px;}
.y90{bottom:340.565189px;}
.y9e{bottom:343.623772px;}
.yc8{bottom:347.453609px;}
.y46{bottom:351.854731px;}
.y83{bottom:353.924558px;}
.y69{bottom:353.924563px;}
.y1e{bottom:363.242431px;}
.y9d{bottom:364.322022px;}
.yc7{bottom:378.500965px;}
.y45{bottom:382.902094px;}
.y68{bottom:384.971926px;}
.y82{bottom:384.971928px;}
.y1d{bottom:394.289794px;}
.yc6{bottom:409.548333px;}
.y44{bottom:413.949458px;}
.y67{bottom:416.019289px;}
.y81{bottom:416.019291px;}
.y1c{bottom:425.337157px;}
.yc5{bottom:440.595696px;}
.y43{bottom:444.996828px;}
.y66{bottom:447.066653px;}
.y80{bottom:447.066654px;}
.y1b{bottom:449.140133px;}
.yc4{bottom:471.643059px;}
.y1a{bottom:472.943123px;}
.y42{bottom:476.044191px;}
.y65{bottom:478.114014px;}
.y7f{bottom:478.114018px;}
.y19{bottom:496.746049px;}
.yc3{bottom:502.690423px;}
.y41{bottom:507.091554px;}
.yad{bottom:507.271732px;}
.y64{bottom:509.161378px;}
.y7e{bottom:509.161381px;}
.y18{bottom:520.549027px;}
.yc2{bottom:533.737786px;}
.y40{bottom:538.138918px;}
.yac{bottom:538.319094px;}
.y63{bottom:540.208741px;}
.y7d{bottom:540.208744px;}
.y8f{bottom:540.208747px;}
.y17{bottom:544.352003px;}
.yc1{bottom:564.785149px;}
.y16{bottom:568.154992px;}
.y3f{bottom:569.186281px;}
.yab{bottom:569.366458px;}
.y8e{bottom:571.256095px;}
.y62{bottom:571.256104px;}
.y7c{bottom:571.256107px;}
.y9c{bottom:589.840582px;}
.y15{bottom:591.957978px;}
.yc0{bottom:595.832513px;}
.y3e{bottom:600.233644px;}
.yaa{bottom:600.413821px;}
.y7b{bottom:602.303463px;}
.y61{bottom:602.303468px;}
.y14{bottom:615.760953px;}
.ybf{bottom:619.634768px;}
.y9b{bottom:620.887943px;}
.yf1{bottom:625.588628px;}
.y3d{bottom:631.281007px;}
.ya9{bottom:631.461184px;}
.y8d{bottom:633.350819px;}
.y7a{bottom:633.350826px;}
.y60{bottom:633.350827px;}
.y13{bottom:639.563929px;}
.ybe{bottom:643.438477px;}
.yf0{bottom:646.286873px;}
.y9a{bottom:651.935303px;}
.y3c{bottom:655.083982px;}
.ya8{bottom:662.508548px;}
.y12{bottom:663.366890px;}
.y5f{bottom:664.398187px;}
.y79{bottom:664.398189px;}
.yef{bottom:666.985102px;}
.ybd{bottom:667.240718px;}
.y99{bottom:672.633537px;}
.y3b{bottom:678.886958px;}
.ya7{bottom:683.206792px;}
.y11{bottom:687.169835px;}
.yee{bottom:687.683348px;}
.y5e{bottom:695.445549px;}
.y78{bottom:695.445553px;}
.y8c{bottom:695.445554px;}
.ybc{bottom:698.288091px;}
.y3a{bottom:702.689948px;}
.ya6{bottom:703.905022px;}
.yed{bottom:708.381592px;}
.y10{bottom:710.972813px;}
.ya5{bottom:724.603272px;}
.y8b{bottom:726.492910px;}
.y5d{bottom:726.492913px;}
.y77{bottom:726.492916px;}
.y39{bottom:726.492923px;}
.yec{bottom:729.079837px;}
.ybb{bottom:729.335454px;}
.yf{bottom:734.775792px;}
.yeb{bottom:749.778082px;}
.y5c{bottom:757.540276px;}
.y38{bottom:757.540278px;}
.y76{bottom:757.540279px;}
.ye{bottom:758.578770px;}
.yba{bottom:760.382818px;}
.yea{bottom:770.476318px;}
.yd{bottom:782.381749px;}
.y5b{bottom:788.587639px;}
.y37{bottom:788.587641px;}
.y75{bottom:788.587643px;}
.ye9{bottom:791.174560px;}
.yb9{bottom:791.430181px;}
.yc{bottom:806.184728px;}
.ye8{bottom:811.872803px;}
.y5a{bottom:819.635003px;}
.y36{bottom:819.635004px;}
.yb8{bottom:822.477544px;}
.yb{bottom:829.987703px;}
.ye7{bottom:832.571048px;}
.y35{bottom:850.682368px;}
.y59{bottom:850.682373px;}
.ye6{bottom:853.269286px;}
.yb7{bottom:853.524908px;}
.ya{bottom:853.790678px;}
.ye5{bottom:873.967528px;}
.yb6{bottom:874.223137px;}
.y9{bottom:877.593652px;}
.y34{bottom:881.729731px;}
.y58{bottom:881.729736px;}
.ye4{bottom:894.665770px;}
.yb5{bottom:894.921382px;}
.y8{bottom:901.396642px;}
.y33{bottom:912.777094px;}
.y98{bottom:912.777098px;}
.y57{bottom:912.777100px;}
.ye3{bottom:915.364012px;}
.yb4{bottom:915.620360px;}
.y7{bottom:922.743798px;}
.ye2{bottom:936.062257px;}
.y32{bottom:943.824457px;}
.y97{bottom:943.824459px;}
.y56{bottom:943.824463px;}
.y6{bottom:946.891755px;}
.ye1{bottom:956.760497px;}
.y5{bottom:971.039726px;}
.y55{bottom:974.871826px;}
.y31{bottom:974.871829px;}
.y8a{bottom:974.871832px;}
.ye0{bottom:977.458740px;}
.y4{bottom:995.187675px;}
.ydf{bottom:998.156982px;}
.y30{bottom:1005.919097px;}
.y54{bottom:1005.919190px;}
.yde{bottom:1018.298951px;}
.y3{bottom:1019.335620px;}
.ydd{bottom:1036.965820px;}
.y2f{bottom:1036.966460px;}
.y53{bottom:1036.966552px;}
.y74{bottom:1036.966553px;}
.ydc{bottom:1057.664062px;}
.y2e{bottom:1068.013824px;}
.y52{bottom:1068.013916px;}
.ydb{bottom:1078.362304px;}
.yda{bottom:1099.060546px;}
.y2d{bottom:1099.061188px;}
.y51{bottom:1099.061279px;}
.yd9{bottom:1119.758789px;}
.y2c{bottom:1130.108551px;}
.y50{bottom:1130.108642px;}
.yd8{bottom:1140.457030px;}
.yd7{bottom:1161.155274px;}
.y2b{bottom:1161.155914px;}
.y4f{bottom:1161.156006px;}
.yd5{bottom:1177.959961px;}
.y29{bottom:1177.960602px;}
.y1{bottom:1177.960624px;}
.y4d{bottom:1177.960693px;}
.hc{height:41.989746px;}
.h2{height:43.989259px;}
.hd{height:50.027344px;}
.h4{height:63.949219px;}
.h5{height:64.546875px;}
.h3{height:74.607419px;}
.h8{height:85.039307px;}
.h1{height:85.039376px;}
.h7{height:85.039398px;}
.hb{height:85.040039px;}
.ha{height:146.852790px;}
.h6{height:146.853330px;}
.h9{height:146.853510px;}
.h0{height:1263.000000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x1{left:108.000000px;}
.x3{left:123.542408px;}
.x5{left:137.295359px;}
.x4{left:157.909024px;}
.x9{left:193.500000px;}
.x6{left:245.038880px;}
.x11{left:255.413229px;}
.xb{left:278.216452px;}
.xe{left:294.186178px;}
.x10{left:295.724265px;}
.xd{left:307.958636px;}
.x13{left:327.936184px;}
.x8{left:336.712061px;}
.xa{left:420.260906px;}
.x7{left:446.456700px;}
.x2{left:577.519200px;}
.x12{left:645.019200px;}
.x14{left:668.644200px;}
.xf{left:683.269200px;}
.xc{left:693.956700px;}
.x15{left:777.375000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws2{word-spacing:-32.000000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws0{word-spacing:0.000000pt;}
._1{margin-left:-10.469820pt;}
._f{margin-left:-8.505186pt;}
._3{margin-left:-6.670176pt;}
._b{margin-left:-5.248210pt;}
._e{margin-left:-3.954822pt;}
._2{margin-left:-2.960619pt;}
._0{margin-left:-1.908036pt;}
._8{width:4.000002pt;}
._7{width:7.999994pt;}
._6{width:11.999999pt;}
._5{width:20.000001pt;}
._4{width:24.000000pt;}
._a{width:27.999998pt;}
._9{width:32.000000pt;}
._c{width:35.999999pt;}
._d{width:155.062499pt;}
.fs3{font-size:56.000000pt;}
.fs0{font-size:58.666668pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.666664pt;}
.y0{bottom:0.000000pt;}
.y4e{bottom:13.833333pt;}
.y2{bottom:13.833395pt;}
.y2a{bottom:13.833415pt;}
.yd6{bottom:13.833984pt;}
.yd4{bottom:53.304039pt;}
.y28{bottom:53.304519pt;}
.y73{bottom:53.304692pt;}
.yd3{bottom:73.281900pt;}
.y27{bottom:73.282393pt;}
.y72{bottom:73.282553pt;}
.yd2{bottom:94.440100pt;}
.y26{bottom:94.440593pt;}
.y71{bottom:94.440753pt;}
.yd1{bottom:115.598313pt;}
.y25{bottom:115.598793pt;}
.y70{bottom:115.598953pt;}
.yd0{bottom:137.742182pt;}
.y96{bottom:146.337894pt;}
.y4c{bottom:147.173830pt;}
.yb3{bottom:148.658198pt;}
.y89{bottom:149.013669pt;}
.y6f{bottom:149.013674pt;}
.ya4{bottom:149.056634pt;}
.ycf{bottom:156.140620pt;}
.y24{bottom:157.296225pt;}
.y95{bottom:173.935550pt;}
.yce{bottom:174.539060pt;}
.y4b{bottom:174.771487pt;}
.yb2{bottom:176.255854pt;}
.y88{bottom:176.611325pt;}
.y6e{bottom:176.611331pt;}
.ya3{bottom:176.654291pt;}
.y23{bottom:184.893881pt;}
.ycd{bottom:192.937502pt;}
.y94{bottom:201.533207pt;}
.y4a{bottom:202.369136pt;}
.yb1{bottom:203.853510pt;}
.y87{bottom:204.208981pt;}
.y6d{bottom:204.208987pt;}
.ya2{bottom:204.251947pt;}
.ycc{bottom:211.335940pt;}
.y22{bottom:212.491537pt;}
.y93{bottom:229.130860pt;}
.y49{bottom:229.966792pt;}
.yb0{bottom:231.451167pt;}
.y86{bottom:231.806638pt;}
.y6c{bottom:231.806643pt;}
.ya1{bottom:231.849603pt;}
.ycb{bottom:232.493487pt;}
.y21{bottom:240.089193pt;}
.yca{bottom:253.652340pt;}
.y92{bottom:256.728513pt;}
.y48{bottom:257.564448pt;}
.yaf{bottom:259.048833pt;}
.y85{bottom:259.404294pt;}
.y6b{bottom:259.404300pt;}
.ya0{bottom:259.447260pt;}
.y20{bottom:267.686848pt;}
.yae{bottom:277.447266pt;}
.y9f{bottom:277.845700pt;}
.yc9{bottom:281.249993pt;}
.y91{bottom:284.326167pt;}
.y47{bottom:285.162105pt;}
.y84{bottom:287.001950pt;}
.y6a{bottom:287.001955pt;}
.y1f{bottom:295.284505pt;}
.y90{bottom:302.724613pt;}
.y9e{bottom:305.443353pt;}
.yc8{bottom:308.847652pt;}
.y46{bottom:312.759761pt;}
.y83{bottom:314.599607pt;}
.y69{bottom:314.599611pt;}
.y1e{bottom:322.882161pt;}
.y9d{bottom:323.841797pt;}
.yc7{bottom:336.445302pt;}
.y45{bottom:340.357417pt;}
.y68{bottom:342.197268pt;}
.y82{bottom:342.197269pt;}
.y1d{bottom:350.479817pt;}
.yc6{bottom:364.042962pt;}
.y44{bottom:367.955073pt;}
.y67{bottom:369.794924pt;}
.y81{bottom:369.794925pt;}
.y1c{bottom:378.077473pt;}
.yc5{bottom:391.640619pt;}
.y43{bottom:395.552736pt;}
.y66{bottom:397.392580pt;}
.y80{bottom:397.392581pt;}
.y1b{bottom:399.235673pt;}
.yc4{bottom:419.238274pt;}
.y1a{bottom:420.393887pt;}
.y42{bottom:423.150392pt;}
.y65{bottom:424.990235pt;}
.y7f{bottom:424.990238pt;}
.y19{bottom:441.552043pt;}
.yc3{bottom:446.835931pt;}
.y41{bottom:450.748048pt;}
.yad{bottom:450.908207pt;}
.y64{bottom:452.587892pt;}
.y7e{bottom:452.587894pt;}
.y18{bottom:462.710247pt;}
.yc2{bottom:474.433587pt;}
.y40{bottom:478.345705pt;}
.yac{bottom:478.505861pt;}
.y63{bottom:480.185548pt;}
.y7d{bottom:480.185550pt;}
.y8f{bottom:480.185553pt;}
.y17{bottom:483.868447pt;}
.yc1{bottom:502.031244pt;}
.y16{bottom:505.026659pt;}
.y3f{bottom:505.943361pt;}
.yab{bottom:506.103518pt;}
.y8e{bottom:507.783196pt;}
.y62{bottom:507.783204pt;}
.y7c{bottom:507.783207pt;}
.y9c{bottom:524.302740pt;}
.y15{bottom:526.184869pt;}
.yc0{bottom:529.628900pt;}
.y3e{bottom:533.541017pt;}
.yaa{bottom:533.701174pt;}
.y7b{bottom:535.380856pt;}
.y61{bottom:535.380860pt;}
.y14{bottom:547.343069pt;}
.ybf{bottom:550.786460pt;}
.y9b{bottom:551.900393pt;}
.yf1{bottom:556.078780pt;}
.y3d{bottom:561.138673pt;}
.ya9{bottom:561.298830pt;}
.y8d{bottom:562.978506pt;}
.y7a{bottom:562.978512pt;}
.y60{bottom:562.978513pt;}
.y13{bottom:568.501270pt;}
.ybe{bottom:571.945313pt;}
.yf0{bottom:574.477220pt;}
.y9a{bottom:579.498047pt;}
.y3c{bottom:582.296873pt;}
.ya8{bottom:588.896487pt;}
.y12{bottom:589.659458pt;}
.y5f{bottom:590.576167pt;}
.y79{bottom:590.576168pt;}
.yef{bottom:592.875647pt;}
.ybd{bottom:593.102860pt;}
.y99{bottom:597.896477pt;}
.y3b{bottom:603.455073pt;}
.ya7{bottom:607.294927pt;}
.y11{bottom:610.817631pt;}
.yee{bottom:611.274087pt;}
.y5e{bottom:618.173821pt;}
.y78{bottom:618.173825pt;}
.y8c{bottom:618.173826pt;}
.ybc{bottom:620.700525pt;}
.y3a{bottom:624.613287pt;}
.ya6{bottom:625.693353pt;}
.yed{bottom:629.672527pt;}
.y10{bottom:631.975834pt;}
.ya5{bottom:644.091797pt;}
.y8b{bottom:645.771476pt;}
.y5d{bottom:645.771478pt;}
.y77{bottom:645.771481pt;}
.y39{bottom:645.771487pt;}
.yec{bottom:648.070967pt;}
.ybb{bottom:648.298181pt;}
.yf{bottom:653.134037pt;}
.yeb{bottom:666.469407pt;}
.y5c{bottom:673.369134pt;}
.y38{bottom:673.369136pt;}
.y76{bottom:673.369137pt;}
.ye{bottom:674.292240pt;}
.yba{bottom:675.895838pt;}
.yea{bottom:684.867838pt;}
.yd{bottom:695.450443pt;}
.y5b{bottom:700.966790pt;}
.y37{bottom:700.966792pt;}
.y75{bottom:700.966793pt;}
.ye9{bottom:703.266276pt;}
.yb9{bottom:703.493494pt;}
.yc{bottom:716.608647pt;}
.ye8{bottom:721.664713pt;}
.y5a{bottom:728.564447pt;}
.y36{bottom:728.564448pt;}
.yb8{bottom:731.091150pt;}
.yb{bottom:737.766847pt;}
.ye7{bottom:740.063153pt;}
.y35{bottom:756.162105pt;}
.y59{bottom:756.162109pt;}
.ye6{bottom:758.461587pt;}
.yb7{bottom:758.688807pt;}
.ya{bottom:758.925047pt;}
.ye5{bottom:776.860024pt;}
.yb6{bottom:777.087233pt;}
.y9{bottom:780.083247pt;}
.y34{bottom:783.759761pt;}
.y58{bottom:783.759765pt;}
.ye4{bottom:795.258462pt;}
.yb5{bottom:795.485673pt;}
.y8{bottom:801.241460pt;}
.y33{bottom:811.357417pt;}
.y98{bottom:811.357420pt;}
.y57{bottom:811.357422pt;}
.ye3{bottom:813.656900pt;}
.yb4{bottom:813.884765pt;}
.y7{bottom:820.216709pt;}
.ye2{bottom:832.055340pt;}
.y32{bottom:838.955073pt;}
.y97{bottom:838.955074pt;}
.y56{bottom:838.955078pt;}
.y6{bottom:841.681560pt;}
.ye1{bottom:850.453775pt;}
.y5{bottom:863.146423pt;}
.y55{bottom:866.552734pt;}
.y31{bottom:866.552737pt;}
.y8a{bottom:866.552740pt;}
.ye0{bottom:868.852213pt;}
.y4{bottom:884.611267pt;}
.ydf{bottom:887.250651pt;}
.y30{bottom:894.150309pt;}
.y54{bottom:894.150391pt;}
.yde{bottom:905.154623pt;}
.y3{bottom:906.076106pt;}
.ydd{bottom:921.747395pt;}
.y2f{bottom:921.747965pt;}
.y53{bottom:921.748046pt;}
.y74{bottom:921.748047pt;}
.ydc{bottom:940.145832pt;}
.y2e{bottom:949.345621pt;}
.y52{bottom:949.345704pt;}
.ydb{bottom:958.544270pt;}
.yda{bottom:976.942708pt;}
.y2d{bottom:976.943278pt;}
.y51{bottom:976.943359pt;}
.yd9{bottom:995.341145pt;}
.y2c{bottom:1004.540934pt;}
.y50{bottom:1004.541015pt;}
.yd8{bottom:1013.739583pt;}
.yd7{bottom:1032.138021pt;}
.y2b{bottom:1032.138591pt;}
.y4f{bottom:1032.138672pt;}
.yd5{bottom:1047.075521pt;}
.y29{bottom:1047.076091pt;}
.y1{bottom:1047.076111pt;}
.y4d{bottom:1047.076172pt;}
.hc{height:37.324219pt;}
.h2{height:39.101563pt;}
.hd{height:44.468750pt;}
.h4{height:56.843750pt;}
.h5{height:57.375000pt;}
.h3{height:66.317706pt;}
.h8{height:75.590495pt;}
.h1{height:75.590556pt;}
.h7{height:75.590576pt;}
.hb{height:75.591145pt;}
.ha{height:130.535813pt;}
.h6{height:130.536293pt;}
.h9{height:130.536453pt;}
.h0{height:1122.666667pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x1{left:96.000000pt;}
.x3{left:109.815474pt;}
.x5{left:122.040319pt;}
.x4{left:140.363577pt;}
.x9{left:172.000000pt;}
.x6{left:217.812338pt;}
.x11{left:227.033981pt;}
.xb{left:247.303513pt;}
.xe{left:261.498825pt;}
.x10{left:262.866013pt;}
.xd{left:273.741010pt;}
.x13{left:291.498830pt;}
.x8{left:299.299610pt;}
.xa{left:373.565250pt;}
.x7{left:396.850400pt;}
.x2{left:513.350400pt;}
.x12{left:573.350400pt;}
.x14{left:594.350400pt;}
.xf{left:607.350400pt;}
.xc{left:616.850400pt;}
.x15{left:691.000000pt;}
}




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