
    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_c318666a2e2170046cae9a97.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_7cc59b538f318bd8aa949e45.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.952148;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_d794fed8b52dfd735e06bdd1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.960000;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_0bd3c80397d7aebfcf49d139.woff2')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_e9f54b5346765f8ff1f91be4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.925781;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_161575dced0e66be01a94720.woff2')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_5122160959f99187c587bd9a.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;}
.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;}
.ls5{letter-spacing:0.017988px;}
.ls7{letter-spacing:0.872130px;}
.ls6{letter-spacing:0.923432px;}
.ls4{letter-spacing:1.458000px;}
.ls2{letter-spacing:1.476000px;}
.ls1{letter-spacing:6.966000px;}
.ls3{letter-spacing:1001.069000px;}
.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:-21.129671px;}
.ws4{word-spacing:-14.958000px;}
.ws5{word-spacing:-14.210587px;}
.ws0{word-spacing:-11.633594px;}
.ws2{word-spacing:-10.508889px;}
.ws3{word-spacing:0.000000px;}
._4{margin-left:-8.629365px;}
._1b{margin-left:-7.026166px;}
._1c{margin-left:-5.971528px;}
._7{margin-left:-4.315803px;}
._6{margin-left:-3.160670px;}
._a{margin-left:-2.112922px;}
._1{margin-left:-1.091962px;}
._0{width:1.175959px;}
._2{width:2.561911px;}
._5{width:3.855674px;}
._9{width:5.646427px;}
._8{width:6.852085px;}
._d{width:8.342462px;}
._c{width:9.666000px;}
._14{width:11.106294px;}
._b{width:12.714253px;}
._18{width:16.290123px;}
._12{width:17.735713px;}
._11{width:19.260294px;}
._19{width:20.283124px;}
._13{width:22.329506px;}
._f{width:23.490000px;}
._e{width:25.512082px;}
._10{width:27.006922px;}
._16{width:28.363957px;}
._3{width:75.450468px;}
._15{width:89.835828px;}
._1a{width:115.685464px;}
._17{width:180.505269px;}
.fc1{color:rgb(27,138,174);}
.fc4{color:rgb(60,60,60);}
.fc3{color:rgb(83,83,83);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs4{font-size:37.801758px;}
.fs0{font-size:41.998536px;}
.fs3{font-size:48.001464px;}
.fs7{font-size:51.301758px;}
.fs1{font-size:54.000000px;}
.fs5{font-size:70.198242px;}
.fs2{font-size:91.801758px;}
.y0{bottom:0.000000px;}
.y24{bottom:46.734370px;}
.y23{bottom:59.015622px;}
.y22{bottom:71.302734px;}
.y63{bottom:98.818359px;}
.y3b{bottom:110.964846px;}
.y62{bottom:117.714838px;}
.y3c{bottom:131.138672px;}
.y3a{bottom:132.263672px;}
.y61{bottom:136.617177px;}
.y60{bottom:155.513667px;}
.y20{bottom:161.882732px;}
.y5f{bottom:174.416016px;}
.y1f{bottom:180.779222px;}
.y85{bottom:183.867171px;}
.y1e{bottom:199.681571px;}
.y84{bottom:202.763661px;}
.y5e{bottom:205.072266px;}
.y1d{bottom:218.578061px;}
.y83{bottom:221.666010px;}
.y1c{bottom:237.480410px;}
.y82{bottom:240.568359px;}
.y1b{bottom:256.382759px;}
.y5d{bottom:260.677670px;}
.y81{bottom:271.218750px;}
.ya3{bottom:273.978516px;}
.y1a{bottom:275.279249px;}
.y5c{bottom:279.580019px;}
.ya2{bottom:291.937498px;}
.y19{bottom:294.181598px;}
.y5b{bottom:298.482368px;}
.ya1{bottom:309.890625px;}
.y18{bottom:313.078088px;}
.y5a{bottom:317.378858px;}
.y80{bottom:326.830052px;}
.ya0{bottom:327.843743px;}
.y17{bottom:331.980437px;}
.y59{bottom:336.281207px;}
.y7f{bottom:345.732400px;}
.y9f{bottom:345.802732px;}
.y16{bottom:350.882786px;}
.y58{bottom:355.177697px;}
.y9e{bottom:363.755859px;}
.y7e{bottom:364.628890px;}
.y15{bottom:369.779276px;}
.y57{bottom:374.080046px;}
.y9d{bottom:381.708982px;}
.y7d{bottom:383.531239px;}
.y14{bottom:388.681625px;}
.y56{bottom:392.982395px;}
.y9c{bottom:399.662109px;}
.y7c{bottom:402.427729px;}
.y13{bottom:407.578115px;}
.y55{bottom:411.878885px;}
.y9b{bottom:417.621092px;}
.y7b{bottom:421.329964px;}
.y12{bottom:426.480464px;}
.y54{bottom:430.781234px;}
.y39{bottom:432.398411px;}
.y9a{bottom:435.574220px;}
.y7a{bottom:440.232313px;}
.y11{bottom:445.382813px;}
.y53{bottom:449.677724px;}
.y38{bottom:451.300760px;}
.y99{bottom:453.527343px;}
.y79{bottom:459.128803px;}
.y52{bottom:468.580073px;}
.y37{bottom:470.203109px;}
.y98{bottom:471.486326px;}
.y10{bottom:476.039062px;}
.y78{bottom:478.031152px;}
.y51{bottom:487.482417px;}
.y36{bottom:489.099599px;}
.y97{bottom:489.439454px;}
.y77{bottom:496.927642px;}
.y50{bottom:506.378907px;}
.y96{bottom:507.392579px;}
.y35{bottom:508.001948px;}
.y76{bottom:515.829991px;}
.y95{bottom:525.351562px;}
.y4f{bottom:533.525395px;}
.y75{bottom:534.732340px;}
.y34{bottom:540.398421px;}
.y94{bottom:543.304688px;}
.yf{bottom:545.132813px;}
.y74{bottom:553.628830px;}
.y33{bottom:559.300770px;}
.y93{bottom:561.257806px;}
.y4e{bottom:561.603516px;}
.ye{bottom:561.937487px;}
.y73{bottom:572.531179px;}
.y32{bottom:578.203119px;}
.yd{bottom:578.736313px;}
.y92{bottom:579.216794px;}
.y72{bottom:591.427669px;}
.y31{bottom:597.099605px;}
.y91{bottom:597.169922px;}
.yc{bottom:600.035146px;}
.y71{bottom:610.330018px;}
.y4d{bottom:613.705068px;}
.y90{bottom:615.123047px;}
.y30{bottom:616.001927px;}
.yb{bottom:621.333979px;}
.y70{bottom:629.232368px;}
.y4c{bottom:632.607417px;}
.y8f{bottom:633.082030px;}
.y2f{bottom:634.898416px;}
.y3{bottom:641.507812px;}
.ya{bottom:642.632812px;}
.y6f{bottom:648.128857px;}
.y8e{bottom:651.035157px;}
.y4b{bottom:651.503901px;}
.y2e{bottom:653.800765px;}
.y8d{bottom:668.988282px;}
.y4a{bottom:670.406196px;}
.y2d{bottom:672.703114px;}
.y6e{bottom:680.531207px;}
.y8c{bottom:686.947264px;}
.y49{bottom:689.302686px;}
.y2c{bottom:691.599604px;}
.y9{bottom:692.888671px;}
.y6d{bottom:699.427696px;}
.y8b{bottom:704.900391px;}
.y48{bottom:708.205035px;}
.y2b{bottom:710.501953px;}
.y8{bottom:713.847657px;}
.y6c{bottom:718.330045px;}
.y21{bottom:718.347657px;}
.y47{bottom:727.107384px;}
.y6b{bottom:737.232395px;}
.y2a{bottom:741.158204px;}
.y8a{bottom:742.406250px;}
.y46{bottom:746.003874px;}
.y6a{bottom:756.128884px;}
.y7{bottom:756.158206px;}
.y45{bottom:764.906223px;}
.y69{bottom:775.031233px;}
.y44{bottom:783.802713px;}
.y6{bottom:793.710931px;}
.y68{bottom:793.927723px;}
.y89{bottom:796.107421px;}
.y29{bottom:796.763667px;}
.y43{bottom:802.705062px;}
.y67{bottom:812.830072px;}
.y28{bottom:815.666016px;}
.y42{bottom:821.607411px;}
.y88{bottom:824.853516px;}
.y5{bottom:831.269532px;}
.y41{bottom:840.503901px;}
.y66{bottom:845.232411px;}
.y27{bottom:846.322266px;}
.y40{bottom:859.406250px;}
.y65{bottom:864.128901px;}
.y87{bottom:880.464843px;}
.y64{bottom:883.031244px;}
.y3f{bottom:886.552738px;}
.y4{bottom:899.378907px;}
.y26{bottom:901.927730px;}
.y86{bottom:911.121093px;}
.y3e{bottom:914.630859px;}
.y25{bottom:920.830079px;}
.y2{bottom:939.462894px;}
.y1{bottom:955.212891px;}
.y3d{bottom:974.730470px;}
.h7{height:26.244141px;}
.h5{height:27.557629px;}
.h8{height:28.048904px;}
.h1{height:30.617097px;}
.hb{height:31.993163px;}
.h4{height:34.993255px;}
.hc{height:35.617086px;}
.hf{height:37.399182px;}
.h2{height:39.366211px;}
.ha{height:39.366277px;}
.h9{height:39.366319px;}
.hd{height:39.366427px;}
.he{height:39.366667px;}
.h6{height:52.443023px;}
.h3{height:68.582368px;}
.h0{height:1020.000000px;}
.w0{width:700.500000px;}
.x0{left:0.000000px;}
.x4{left:78.662109px;}
.x8{left:86.537109px;}
.xb{left:90.246093px;}
.x6{left:94.412109px;}
.x5{left:95.537109px;}
.xc{left:123.662109px;}
.xa{left:130.289062px;}
.x9{left:138.287109px;}
.x7{left:148.412109px;}
.x1{left:232.769532px;}
.x3{left:305.789062px;}
.x2{left:526.412109px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.015989pt;}
.ls7{letter-spacing:0.775227pt;}
.ls6{letter-spacing:0.820828pt;}
.ls4{letter-spacing:1.296000pt;}
.ls2{letter-spacing:1.312000pt;}
.ls1{letter-spacing:6.192000pt;}
.ls3{letter-spacing:889.839111pt;}
.ws1{word-spacing:-18.781930pt;}
.ws4{word-spacing:-13.296000pt;}
.ws5{word-spacing:-12.631633pt;}
.ws0{word-spacing:-10.340973pt;}
.ws2{word-spacing:-9.341234pt;}
.ws3{word-spacing:0.000000pt;}
._4{margin-left:-7.670547pt;}
._1b{margin-left:-6.245481pt;}
._1c{margin-left:-5.308025pt;}
._7{margin-left:-3.836270pt;}
._6{margin-left:-2.809484pt;}
._a{margin-left:-1.878153pt;}
._1{margin-left:-0.970633pt;}
._0{width:1.045297pt;}
._2{width:2.277254pt;}
._5{width:3.427266pt;}
._9{width:5.019046pt;}
._8{width:6.090742pt;}
._d{width:7.415522pt;}
._c{width:8.592000pt;}
._14{width:9.872262pt;}
._b{width:11.301558pt;}
._18{width:14.480109pt;}
._12{width:15.765078pt;}
._11{width:17.120262pt;}
._19{width:18.029444pt;}
._13{width:19.848450pt;}
._f{width:20.880000pt;}
._e{width:22.677406pt;}
._10{width:24.006153pt;}
._16{width:25.212406pt;}
._3{width:67.067083pt;}
._15{width:79.854070pt;}
._1a{width:102.831524pt;}
._17{width:160.449128pt;}
.fs6{font-size:32.000000pt;}
.fs4{font-size:33.601563pt;}
.fs0{font-size:37.332032pt;}
.fs3{font-size:42.667968pt;}
.fs7{font-size:45.601563pt;}
.fs1{font-size:48.000000pt;}
.fs5{font-size:62.398437pt;}
.fs2{font-size:81.601563pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:41.541662pt;}
.y23{bottom:52.458331pt;}
.y22{bottom:63.380208pt;}
.y63{bottom:87.838541pt;}
.y3b{bottom:98.635419pt;}
.y62{bottom:104.635412pt;}
.y3c{bottom:116.567708pt;}
.y3a{bottom:117.567708pt;}
.y61{bottom:121.437491pt;}
.y60{bottom:138.234371pt;}
.y20{bottom:143.895761pt;}
.y5f{bottom:155.036459pt;}
.y1f{bottom:160.692641pt;}
.y85{bottom:163.437485pt;}
.y1e{bottom:177.494729pt;}
.y84{bottom:180.234365pt;}
.y5e{bottom:182.286459pt;}
.y1d{bottom:194.291609pt;}
.y83{bottom:197.036453pt;}
.y1c{bottom:211.093697pt;}
.y82{bottom:213.838541pt;}
.y1b{bottom:227.895785pt;}
.y5d{bottom:231.713484pt;}
.y81{bottom:241.083333pt;}
.ya3{bottom:243.536459pt;}
.y1a{bottom:244.692665pt;}
.y5c{bottom:248.515572pt;}
.ya2{bottom:259.499998pt;}
.y19{bottom:261.494753pt;}
.y5b{bottom:265.317660pt;}
.ya1{bottom:275.458333pt;}
.y18{bottom:278.291633pt;}
.y5a{bottom:282.114540pt;}
.y80{bottom:290.515601pt;}
.ya0{bottom:291.416661pt;}
.y17{bottom:295.093721pt;}
.y59{bottom:298.916628pt;}
.y7f{bottom:307.317689pt;}
.y9f{bottom:307.380206pt;}
.y16{bottom:311.895809pt;}
.y58{bottom:315.713508pt;}
.y9e{bottom:323.338541pt;}
.y7e{bottom:324.114569pt;}
.y15{bottom:328.692689pt;}
.y57{bottom:332.515596pt;}
.y9d{bottom:339.296873pt;}
.y7d{bottom:340.916657pt;}
.y14{bottom:345.494777pt;}
.y56{bottom:349.317684pt;}
.y9c{bottom:355.255208pt;}
.y7c{bottom:357.713537pt;}
.y13{bottom:362.291657pt;}
.y55{bottom:366.114564pt;}
.y9b{bottom:371.218749pt;}
.y7b{bottom:374.515524pt;}
.y12{bottom:379.093745pt;}
.y54{bottom:382.916652pt;}
.y39{bottom:384.354143pt;}
.y9a{bottom:387.177084pt;}
.y7a{bottom:391.317612pt;}
.y11{bottom:395.895833pt;}
.y53{bottom:399.713532pt;}
.y38{bottom:401.156231pt;}
.y99{bottom:403.135416pt;}
.y79{bottom:408.114492pt;}
.y52{bottom:416.515620pt;}
.y37{bottom:417.958319pt;}
.y98{bottom:419.098957pt;}
.y10{bottom:423.145833pt;}
.y78{bottom:424.916580pt;}
.y51{bottom:433.317704pt;}
.y36{bottom:434.755199pt;}
.y97{bottom:435.057292pt;}
.y77{bottom:441.713460pt;}
.y50{bottom:450.114584pt;}
.y96{bottom:451.015625pt;}
.y35{bottom:451.557287pt;}
.y76{bottom:458.515548pt;}
.y95{bottom:466.979167pt;}
.y4f{bottom:474.244796pt;}
.y75{bottom:475.317636pt;}
.y34{bottom:480.354152pt;}
.y94{bottom:482.937500pt;}
.yf{bottom:484.562500pt;}
.y74{bottom:492.114516pt;}
.y33{bottom:497.156240pt;}
.y93{bottom:498.895828pt;}
.y4e{bottom:499.203125pt;}
.ye{bottom:499.499988pt;}
.y73{bottom:508.916604pt;}
.y32{bottom:513.958328pt;}
.yd{bottom:514.432279pt;}
.y92{bottom:514.859373pt;}
.y72{bottom:525.713484pt;}
.y31{bottom:530.755204pt;}
.y91{bottom:530.817708pt;}
.yc{bottom:533.364575pt;}
.y71{bottom:542.515572pt;}
.y4d{bottom:545.515616pt;}
.y90{bottom:546.776041pt;}
.y30{bottom:547.557268pt;}
.yb{bottom:552.296871pt;}
.y70{bottom:559.317660pt;}
.y4c{bottom:562.317704pt;}
.y8f{bottom:562.739582pt;}
.y2f{bottom:564.354148pt;}
.y3{bottom:570.229167pt;}
.ya{bottom:571.229167pt;}
.y6f{bottom:576.114540pt;}
.y8e{bottom:578.697917pt;}
.y4b{bottom:579.114579pt;}
.y2e{bottom:581.156236pt;}
.y8d{bottom:594.656251pt;}
.y4a{bottom:595.916619pt;}
.y2d{bottom:597.958324pt;}
.y6e{bottom:604.916628pt;}
.y8c{bottom:610.619790pt;}
.y49{bottom:612.713499pt;}
.y2c{bottom:614.755204pt;}
.y9{bottom:615.901041pt;}
.y6d{bottom:621.713508pt;}
.y8b{bottom:626.578125pt;}
.y48{bottom:629.515587pt;}
.y2b{bottom:631.557292pt;}
.y8{bottom:634.531251pt;}
.y6c{bottom:638.515596pt;}
.y21{bottom:638.531251pt;}
.y47{bottom:646.317675pt;}
.y6b{bottom:655.317684pt;}
.y2a{bottom:658.807292pt;}
.y8a{bottom:659.916667pt;}
.y46{bottom:663.114555pt;}
.y6a{bottom:672.114564pt;}
.y7{bottom:672.140627pt;}
.y45{bottom:679.916643pt;}
.y69{bottom:688.916652pt;}
.y44{bottom:696.713523pt;}
.y6{bottom:705.520828pt;}
.y68{bottom:705.713532pt;}
.y89{bottom:707.651041pt;}
.y29{bottom:708.234371pt;}
.y43{bottom:713.515611pt;}
.y67{bottom:722.515620pt;}
.y28{bottom:725.036459pt;}
.y42{bottom:730.317699pt;}
.y88{bottom:733.203125pt;}
.y5{bottom:738.906251pt;}
.y41{bottom:747.114579pt;}
.y66{bottom:751.317699pt;}
.y27{bottom:752.286459pt;}
.y40{bottom:763.916667pt;}
.y65{bottom:768.114579pt;}
.y87{bottom:782.635416pt;}
.y64{bottom:784.916661pt;}
.y3f{bottom:788.046878pt;}
.y4{bottom:799.447917pt;}
.y26{bottom:801.713537pt;}
.y86{bottom:809.885416pt;}
.y3e{bottom:813.005208pt;}
.y25{bottom:818.515625pt;}
.y2{bottom:835.078128pt;}
.y1{bottom:849.078125pt;}
.y3d{bottom:866.427084pt;}
.h7{height:23.328125pt;}
.h5{height:24.495670pt;}
.h8{height:24.932359pt;}
.h1{height:27.215197pt;}
.hb{height:28.438367pt;}
.h4{height:31.105115pt;}
.hc{height:31.659632pt;}
.hf{height:33.243717pt;}
.h2{height:34.992188pt;}
.ha{height:34.992246pt;}
.h9{height:34.992284pt;}
.hd{height:34.992379pt;}
.he{height:34.992593pt;}
.h6{height:46.616020pt;}
.h3{height:60.962105pt;}
.h0{height:906.666667pt;}
.w0{width:622.666667pt;}
.x0{left:0.000000pt;}
.x4{left:69.921875pt;}
.x8{left:76.921875pt;}
.xb{left:80.218749pt;}
.x6{left:83.921875pt;}
.x5{left:84.921875pt;}
.xc{left:109.921874pt;}
.xa{left:115.812500pt;}
.x9{left:122.921875pt;}
.x7{left:131.921875pt;}
.x1{left:206.906251pt;}
.x3{left:271.812500pt;}
.x2{left:467.921875pt;}
}




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