
    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_1e9d7d8fdc0b27f31f919860.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_c935e0a30f3f20d9a4a617b1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.002930;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_2fcc6f999b4307e3d391c511.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893555;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_a89e6860b1c6252dd1a79bd6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.675781;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_b796a4f9de56eb8d2aff4fa4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_402355a8632fcac3054fc410.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.858398;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_be7ee1a59cab660854d99ec7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.873535;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(0.255397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255397,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-35.999986px;}
.v1{vertical-align:-3.599999px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.002160px;}
.ls7{letter-spacing:0.062640px;}
.ls2{letter-spacing:0.141120px;}
.ls4{letter-spacing:0.298800px;}
.ls3{letter-spacing:26.580949px;}
.ls6{letter-spacing:26.891269px;}
.ls5{letter-spacing:27.185029px;}
.ls1{letter-spacing:119.915952px;}
.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;}
}
.ws5{word-spacing:-43.446223px;}
.ws3{word-spacing:-30.059988px;}
.ws11{word-spacing:-27.174229px;}
.ws9{word-spacing:-24.734595px;}
.wse{word-spacing:-24.407990px;}
.ws14{word-spacing:-21.641751px;}
.ws6{word-spacing:-19.038232px;}
.ws4{word-spacing:-9.297427px;}
.ws10{word-spacing:-2.025202px;}
.ws0{word-spacing:-1.593444px;}
.ws13{word-spacing:-0.939270px;}
.wsf{word-spacing:-0.856813px;}
.ws1{word-spacing:-0.680439px;}
.wsd{word-spacing:-0.551664px;}
.ws12{word-spacing:-0.436832px;}
.ws2{word-spacing:0.000000px;}
.ws15{word-spacing:8.448454px;}
.wsb{word-spacing:9.569768px;}
.wsc{word-spacing:10.391756px;}
.wsa{word-spacing:41.219588px;}
.ws8{word-spacing:267.617778px;}
.ws7{word-spacing:729.900508px;}
._16{margin-left:-17.359457px;}
._9{margin-left:-11.079138px;}
._4{margin-left:-10.064001px;}
._5{margin-left:-8.552637px;}
._f{margin-left:-7.148671px;}
._3{margin-left:-5.650483px;}
._a{margin-left:-4.608990px;}
._0{margin-left:-3.359529px;}
._2{margin-left:-2.171431px;}
._6{margin-left:-1.126048px;}
._1{width:1.034651px;}
._8{width:2.245248px;}
._d{width:3.777378px;}
._1a{width:15.080643px;}
._b{width:18.412357px;}
._17{width:20.065025px;}
._7{width:22.830492px;}
._15{width:25.246618px;}
._e{width:27.556074px;}
._c{width:30.713162px;}
._18{width:45.616106px;}
._19{width:47.302372px;}
._13{width:66.635641px;}
._14{width:69.480636px;}
._10{width:289.467244px;}
._12{width:643.828084px;}
._11{width:2561.839595px;}
.fc5{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(192,80,77);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(137,137,137);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:71.999971px;}
.fs3{font-size:84.239966px;}
.fs7{font-size:88.973364px;}
.fs2{font-size:95.759962px;}
.fs8{font-size:107.999957px;}
.fs1{font-size:120.239952px;}
.fs5{font-size:143.999942px;}
.fs4{font-size:192.239923px;}
.fs0{font-size:239.759904px;}
.y34{bottom:-14.759816px;}
.y38{bottom:-12.779816px;}
.y3c{bottom:-12.239817px;}
.y57{bottom:-1.619821px;}
.y0{bottom:0.000000px;}
.y44{bottom:4.860183px;}
.y41{bottom:4.860184px;}
.y5b{bottom:8.100179px;}
.y51{bottom:71.580329px;}
.yf{bottom:72.120328px;}
.y20{bottom:72.660328px;}
.y73{bottom:79.500325px;}
.y4b{bottom:80.760325px;}
.y1a{bottom:85.080323px;}
.y50{bottom:96.780318px;}
.y72{bottom:101.100317px;}
.y4a{bottom:113.160312px;}
.y19{bottom:121.080309px;}
.y4f{bottom:121.980308px;}
.y49{bottom:145.560299px;}
.y4e{bottom:149.520297px;}
.y2b{bottom:152.580296px;}
.y62{bottom:157.080294px;}
.y18{bottom:158.700294px;}
.y6d{bottom:168.420290px;}
.y48{bottom:177.960286px;}
.y4d{bottom:185.520283px;}
.y61{bottom:200.280277px;}
.y17{bottom:201.900276px;}
.y6c{bottom:204.420275px;}
.y47{bottom:210.360273px;}
.y7{bottom:214.320271px;}
.ye{bottom:228.180266px;}
.y6b{bottom:240.420261px;}
.y60{bottom:243.480260px;}
.y16{bottom:245.100259px;}
.y2a{bottom:245.820259px;}
.y29{bottom:246.000259px;}
.y79{bottom:248.340258px;}
.y6{bottom:248.880258px;}
.y2c{bottom:255.360255px;}
.y3f{bottom:256.440255px;}
.yd{bottom:256.980254px;}
.y78{bottom:282.900244px;}
.y5{bottom:283.440244px;}
.y5f{bottom:286.680242px;}
.y15{bottom:288.300242px;}
.y28{bottom:295.500239px;}
.y2e{bottom:313.500232px;}
.y77{bottom:317.460230px;}
.y10{bottom:318.720230px;}
.y4{bottom:319.620229px;}
.y46{bottom:320.700229px;}
.y5e{bottom:322.680228px;}
.y6a{bottom:323.580228px;}
.y14{bottom:331.500225px;}
.y2d{bottom:338.700222px;}
.y23{bottom:349.500217px;}
.y76{bottom:353.640216px;}
.y27{bottom:356.700214px;}
.y26{bottom:362.280212px;}
.y5d{bottom:365.880211px;}
.y12{bottom:372.180208px;}
.y22{bottom:374.700207px;}
.y69{bottom:375.420207px;}
.y45{bottom:375.600207px;}
.y25{bottom:387.480202px;}
.y8{bottom:395.040199px;}
.y21{bottom:399.900197px;}
.y11{bottom:400.980197px;}
.y5c{bottom:401.880196px;}
.y68{bottom:404.580195px;}
.y24{bottom:412.680192px;}
.y2f{bottom:421.680188px;}
.y40{bottom:427.080000px;}
.y42{bottom:429.060000px;}
.y43{bottom:429.600000px;}
.y5a{bottom:436.980000px;}
.y33{bottom:446.700000px;}
.ya{bottom:454.800175px;}
.y32{bottom:458.580174px;}
.y37{bottom:460.380173px;}
.y3b{bottom:461.100173px;}
.y3{bottom:473.700168px;}
.y75{bottom:474.960167px;}
.y56{bottom:481.080165px;}
.y31{bottom:485.220163px;}
.y36{bottom:487.020162px;}
.y3a{bottom:487.740162px;}
.y30{bottom:511.860152px;}
.y35{bottom:513.660152px;}
.y39{bottom:514.380151px;}
.yb{bottom:517.080150px;}
.y1f{bottom:520.500149px;}
.y55{bottom:524.280147px;}
.y66{bottom:534.180143px;}
.y1d{bottom:538.500142px;}
.y2{bottom:545.700139px;}
.y54{bottom:560.280133px;}
.y1c{bottom:563.700132px;}
.y1e{bottom:570.900129px;}
.y65{bottom:577.380126px;}
.y74{bottom:590.160121px;}
.y53{bottom:596.280119px;}
.y3d{bottom:598.440118px;}
.y64{bottom:613.380112px;}
.y1{bottom:617.700110px;}
.yc{bottom:630.660105px;}
.y52{bottom:632.280104px;}
.y63{bottom:649.380097px;}
.y59{bottom:726.600067px;}
.y6f{bottom:732.360064px;}
.y71{bottom:740.100061px;}
.y1b{bottom:757.020054px;}
.y13{bottom:762.780052px;}
.y3e{bottom:770.520049px;}
.y4c{bottom:771.600049px;}
.y6e{bottom:773.040048px;}
.y67{bottom:775.380047px;}
.y9{bottom:776.280047px;}
.y70{bottom:780.780045px;}
.y58{bottom:784.200043px;}
.hf{height:5.220000px;}
.h10{height:7.200000px;}
.h11{height:7.740000px;}
.h17{height:9.720000px;}
.h14{height:17.100000px;}
.h13{height:17.640000px;}
.h12{height:19.620000px;}
.h16{height:27.000000px;}
.hd{height:48.656231px;}
.h19{height:51.679667px;}
.h1a{height:59.378882px;}
.h5{height:60.465210px;}
.he{height:64.818486px;}
.h8{height:64.899818px;}
.h4{height:68.733957px;}
.hc{height:69.473293px;}
.h15{height:77.519500px;}
.h7{height:81.490749px;}
.hb{height:86.305044px;}
.h18{height:87.596684px;}
.h3{height:99.162734px;}
.ha{height:103.359334px;}
.h9{height:118.757765px;}
.h6{height:137.984710px;}
.h2{height:172.093291px;}
.h0{height:892.920000px;}
.h1{height:893.250000px;}
.w3{width:76.320000px;}
.w5{width:114.120000px;}
.w4{width:114.300000px;}
.w2{width:120.600000px;}
.w6{width:374.760000px;}
.w0{width:1262.835000px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.xd{left:131.219948px;}
.xf{left:139.679944px;}
.x12{left:152.099939px;}
.x3a{left:156.779937px;}
.x39{left:165.239934px;}
.x24{left:167.399933px;}
.x14{left:175.499930px;}
.x1d{left:197.099921px;}
.x15{left:209.879916px;}
.x5{left:212.039915px;}
.x20{left:216.719913px;}
.x3{left:235.619906px;}
.x3e{left:264.779894px;}
.xe{left:267.299893px;}
.x3f{left:272.339891px;}
.x45{left:277.559889px;}
.x34{left:281.159888px;}
.x2a{left:285.839943px;}
.x2b{left:296.100000px;}
.x3d{left:302.399879px;}
.x10{left:309.779876px;}
.x2{left:311.759875px;}
.x1{left:313.559875px;}
.x40{left:318.239873px;}
.x9{left:322.739871px;}
.x29{left:327.599869px;}
.x43{left:331.019868px;}
.x3b{left:334.799866px;}
.x41{left:346.139862px;}
.x6{left:355.679858px;}
.xa{left:360.899856px;}
.x11{left:376.559849px;}
.x7{left:415.979834px;}
.x3c{left:425.159830px;}
.x16{left:430.919828px;}
.x17{left:437.219825px;}
.x26{left:440.999825px;}
.x27{left:458.819770px;}
.x28{left:460.080000px;}
.x19{left:466.919813px;}
.x44{left:477.179809px;}
.x36{left:481.319807px;}
.x8{left:492.659803px;}
.x4{left:502.559799px;}
.x38{left:512.089295px;}
.x25{left:513.899794px;}
.x42{left:521.999791px;}
.x35{left:542.879783px;}
.x13{left:555.659778px;}
.x37{left:581.759767px;}
.xb{left:605.519758px;}
.x2d{left:646.919773px;}
.x2f{left:654.480000px;}
.x2e{left:662.219758px;}
.x1f{left:664.019734px;}
.x1a{left:671.219732px;}
.x1c{left:676.259729px;}
.x1e{left:690.659724px;}
.x1b{left:698.579721px;}
.x2c{left:705.239718px;}
.xc{left:726.659709px;}
.x32{left:832.319733px;}
.x31{left:834.299727px;}
.x33{left:847.260000px;}
.x21{left:874.439650px;}
.x30{left:898.019641px;}
.x22{left:957.959617px;}
.x23{left:965.339614px;}
.x18{left:1096.739561px;}
@media print{
.v2{vertical-align:-31.999987pt;}
.v1{vertical-align:-3.199999pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.001920pt;}
.ls7{letter-spacing:0.055680pt;}
.ls2{letter-spacing:0.125440pt;}
.ls4{letter-spacing:0.265600pt;}
.ls3{letter-spacing:23.627511pt;}
.ls6{letter-spacing:23.903350pt;}
.ls5{letter-spacing:24.164470pt;}
.ls1{letter-spacing:106.591957pt;}
.ws5{word-spacing:-38.618865pt;}
.ws3{word-spacing:-26.719989pt;}
.ws11{word-spacing:-24.154870pt;}
.ws9{word-spacing:-21.986307pt;}
.wse{word-spacing:-21.695991pt;}
.ws14{word-spacing:-19.237112pt;}
.ws6{word-spacing:-16.922873pt;}
.ws4{word-spacing:-8.264379pt;}
.ws10{word-spacing:-1.800179pt;}
.ws0{word-spacing:-1.416395pt;}
.ws13{word-spacing:-0.834907pt;}
.wsf{word-spacing:-0.761612pt;}
.ws1{word-spacing:-0.604834pt;}
.wsd{word-spacing:-0.490368pt;}
.ws12{word-spacing:-0.388295pt;}
.ws2{word-spacing:0.000000pt;}
.ws15{word-spacing:7.509737pt;}
.wsb{word-spacing:8.506461pt;}
.wsc{word-spacing:9.237116pt;}
.wsa{word-spacing:36.639633pt;}
.ws8{word-spacing:237.882470pt;}
.ws7{word-spacing:648.800451pt;}
._16{margin-left:-15.430629pt;}
._9{margin-left:-9.848122pt;}
._4{margin-left:-8.945778pt;}
._5{margin-left:-7.602344pt;}
._f{margin-left:-6.354374pt;}
._3{margin-left:-5.022651pt;}
._a{margin-left:-4.096880pt;}
._0{margin-left:-2.986248pt;}
._2{margin-left:-1.930160pt;}
._6{margin-left:-1.000932pt;}
._1{width:0.919690pt;}
._8{width:1.995776pt;}
._d{width:3.357669pt;}
._1a{width:13.405016pt;}
._b{width:16.366540pt;}
._17{width:17.835577pt;}
._7{width:20.293771pt;}
._15{width:22.441439pt;}
._e{width:24.494288pt;}
._c{width:27.300589pt;}
._18{width:40.547650pt;}
._19{width:42.046552pt;}
._13{width:59.231681pt;}
._14{width:61.760566pt;}
._10{width:257.304217pt;}
._12{width:572.291630pt;}
._11{width:2277.190751pt;}
.fs6{font-size:63.999974pt;}
.fs3{font-size:74.879970pt;}
.fs7{font-size:79.087435pt;}
.fs2{font-size:85.119966pt;}
.fs8{font-size:95.999962pt;}
.fs1{font-size:106.879957pt;}
.fs5{font-size:127.999949pt;}
.fs4{font-size:170.879932pt;}
.fs0{font-size:213.119915pt;}
.y34{bottom:-13.119836pt;}
.y38{bottom:-11.359837pt;}
.y3c{bottom:-10.879837pt;}
.y57{bottom:-1.439841pt;}
.y0{bottom:0.000000pt;}
.y44{bottom:4.320163pt;}
.y41{bottom:4.320164pt;}
.y5b{bottom:7.200159pt;}
.y51{bottom:63.626959pt;}
.yf{bottom:64.106959pt;}
.y20{bottom:64.586958pt;}
.y73{bottom:70.666956pt;}
.y4b{bottom:71.786955pt;}
.y1a{bottom:75.626954pt;}
.y50{bottom:86.026950pt;}
.y72{bottom:89.866948pt;}
.y4a{bottom:100.586944pt;}
.y19{bottom:107.626941pt;}
.y4f{bottom:108.426941pt;}
.y49{bottom:129.386932pt;}
.y4e{bottom:132.906931pt;}
.y2b{bottom:135.626930pt;}
.y62{bottom:139.626928pt;}
.y18{bottom:141.066928pt;}
.y6d{bottom:149.706924pt;}
.y48{bottom:158.186921pt;}
.y4d{bottom:164.906918pt;}
.y61{bottom:178.026913pt;}
.y17{bottom:179.466912pt;}
.y6c{bottom:181.706911pt;}
.y47{bottom:186.986909pt;}
.y7{bottom:190.506908pt;}
.ye{bottom:202.826903pt;}
.y6b{bottom:213.706899pt;}
.y60{bottom:216.426898pt;}
.y16{bottom:217.866897pt;}
.y2a{bottom:218.506897pt;}
.y29{bottom:218.666897pt;}
.y79{bottom:220.746896pt;}
.y6{bottom:221.226896pt;}
.y2c{bottom:226.986893pt;}
.y3f{bottom:227.946893pt;}
.yd{bottom:228.426893pt;}
.y78{bottom:251.466884pt;}
.y5{bottom:251.946883pt;}
.y5f{bottom:254.826882pt;}
.y15{bottom:256.266882pt;}
.y28{bottom:262.666879pt;}
.y2e{bottom:278.666873pt;}
.y77{bottom:282.186871pt;}
.y10{bottom:283.306871pt;}
.y4{bottom:284.106871pt;}
.y46{bottom:285.066870pt;}
.y5e{bottom:286.826869pt;}
.y6a{bottom:287.626869pt;}
.y14{bottom:294.666866pt;}
.y2d{bottom:301.066864pt;}
.y23{bottom:310.666860pt;}
.y76{bottom:314.346858pt;}
.y27{bottom:317.066857pt;}
.y26{bottom:322.026855pt;}
.y5d{bottom:325.226854pt;}
.y12{bottom:330.826852pt;}
.y22{bottom:333.066851pt;}
.y69{bottom:333.706851pt;}
.y45{bottom:333.866851pt;}
.y25{bottom:344.426846pt;}
.y8{bottom:351.146844pt;}
.y21{bottom:355.466842pt;}
.y11{bottom:356.426842pt;}
.y5c{bottom:357.226841pt;}
.y68{bottom:359.626840pt;}
.y24{bottom:366.826837pt;}
.y2f{bottom:374.826834pt;}
.y40{bottom:379.626667pt;}
.y42{bottom:381.386667pt;}
.y43{bottom:381.866667pt;}
.y5a{bottom:388.426667pt;}
.y33{bottom:397.066667pt;}
.ya{bottom:404.266822pt;}
.y32{bottom:407.626821pt;}
.y37{bottom:409.226820pt;}
.y3b{bottom:409.866820pt;}
.y3{bottom:421.066816pt;}
.y75{bottom:422.186815pt;}
.y56{bottom:427.626813pt;}
.y31{bottom:431.306812pt;}
.y36{bottom:432.906811pt;}
.y3a{bottom:433.546811pt;}
.y30{bottom:454.986802pt;}
.y35{bottom:456.586802pt;}
.y39{bottom:457.226801pt;}
.yb{bottom:459.626800pt;}
.y1f{bottom:462.666799pt;}
.y55{bottom:466.026798pt;}
.y66{bottom:474.826794pt;}
.y1d{bottom:478.666793pt;}
.y2{bottom:485.066790pt;}
.y54{bottom:498.026785pt;}
.y1c{bottom:501.066784pt;}
.y1e{bottom:507.466781pt;}
.y65{bottom:513.226779pt;}
.y74{bottom:524.586774pt;}
.y53{bottom:530.026772pt;}
.y3d{bottom:531.946771pt;}
.y64{bottom:545.226766pt;}
.y1{bottom:549.066765pt;}
.yc{bottom:560.586760pt;}
.y52{bottom:562.026759pt;}
.y63{bottom:577.226753pt;}
.y59{bottom:645.866726pt;}
.y6f{bottom:650.986724pt;}
.y71{bottom:657.866721pt;}
.y1b{bottom:672.906715pt;}
.y13{bottom:678.026713pt;}
.y3e{bottom:684.906710pt;}
.y4c{bottom:685.866710pt;}
.y6e{bottom:687.146709pt;}
.y67{bottom:689.226708pt;}
.y9{bottom:690.026708pt;}
.y70{bottom:694.026707pt;}
.y58{bottom:697.066705pt;}
.hf{height:4.640000pt;}
.h10{height:6.400000pt;}
.h11{height:6.880000pt;}
.h17{height:8.640000pt;}
.h14{height:15.200000pt;}
.h13{height:15.680000pt;}
.h12{height:17.440000pt;}
.h16{height:24.000000pt;}
.hd{height:43.249983pt;}
.h19{height:45.937482pt;}
.h1a{height:52.781229pt;}
.h5{height:53.746854pt;}
.he{height:57.616432pt;}
.h8{height:57.688727pt;}
.h4{height:61.096851pt;}
.hc{height:61.754038pt;}
.h15{height:68.906222pt;}
.h7{height:72.436221pt;}
.hb{height:76.715594pt;}
.h18{height:77.863719pt;}
.h3{height:88.144652pt;}
.ha{height:91.874963pt;}
.h9{height:105.562458pt;}
.h6{height:122.653076pt;}
.h2{height:152.971814pt;}
.h0{height:793.706667pt;}
.h1{height:794.000000pt;}
.w3{width:67.840000pt;}
.w5{width:101.440000pt;}
.w4{width:101.600000pt;}
.w2{width:107.200000pt;}
.w6{width:333.120000pt;}
.w0{width:1122.520000pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.xd{left:116.639953pt;}
.xf{left:124.159950pt;}
.x12{left:135.199946pt;}
.x3a{left:139.359944pt;}
.x39{left:146.879941pt;}
.x24{left:148.799940pt;}
.x14{left:155.999938pt;}
.x1d{left:175.199930pt;}
.x15{left:186.559925pt;}
.x5{left:188.479925pt;}
.x20{left:192.639923pt;}
.x3{left:209.439916pt;}
.x3e{left:235.359906pt;}
.xe{left:237.599905pt;}
.x3f{left:242.079903pt;}
.x45{left:246.719901pt;}
.x34{left:249.919900pt;}
.x2a{left:254.079949pt;}
.x2b{left:263.200000pt;}
.x3d{left:268.799892pt;}
.x10{left:275.359890pt;}
.x2{left:277.119889pt;}
.x1{left:278.719889pt;}
.x40{left:282.879887pt;}
.x9{left:286.879885pt;}
.x29{left:291.199884pt;}
.x43{left:294.239882pt;}
.x3b{left:297.599881pt;}
.x41{left:307.679877pt;}
.x6{left:316.159874pt;}
.xa{left:320.799872pt;}
.x11{left:334.719866pt;}
.x7{left:369.759852pt;}
.x3c{left:377.919849pt;}
.x16{left:383.039847pt;}
.x17{left:388.639845pt;}
.x26{left:391.999845pt;}
.x27{left:407.839796pt;}
.x28{left:408.960000pt;}
.x19{left:415.039834pt;}
.x44{left:424.159830pt;}
.x36{left:427.839829pt;}
.x8{left:437.919825pt;}
.x4{left:446.719821pt;}
.x38{left:455.190485pt;}
.x25{left:456.799817pt;}
.x42{left:463.999814pt;}
.x35{left:482.559807pt;}
.x13{left:493.919802pt;}
.x37{left:517.119793pt;}
.xb{left:538.239785pt;}
.x2d{left:575.039798pt;}
.x2f{left:581.760000pt;}
.x2e{left:588.639785pt;}
.x1f{left:590.239764pt;}
.x1a{left:596.639761pt;}
.x1c{left:601.119760pt;}
.x1e{left:613.919754pt;}
.x1b{left:620.959752pt;}
.x2c{left:626.879749pt;}
.xc{left:645.919742pt;}
.x32{left:739.839763pt;}
.x31{left:741.599757pt;}
.x33{left:753.120000pt;}
.x21{left:777.279689pt;}
.x30{left:798.239681pt;}
.x22{left:851.519659pt;}
.x23{left:858.079657pt;}
.x18{left:974.879610pt;}
}




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