
    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_cdd69be3d752372aafc79a8f.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_391e23d71f5823a37710548e.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_58f4be4d5ef18247e913e8ec.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.935547;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_2b9c8928c15308dee3f80b4e.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_49764f6d4102c6ed8a695377.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_8a19c0bae2f7071436412531.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.747070;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_a83c40e9a97e193876da7dbf.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;}
.ls6{letter-spacing:0.923432px;}
.ls1{letter-spacing:1.476000px;}
.ls2{letter-spacing:665.756677px;}
.ls4{letter-spacing:674.786362px;}
.ls3{letter-spacing:728.796479px;}
.ls5{letter-spacing:913.318994px;}
.ls7{letter-spacing:913.319000px;}
.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;}
}
.ws3{word-spacing:-21.129671px;}
.wsc{word-spacing:-19.444913px;}
.ws4{word-spacing:-14.958000px;}
.wsa{word-spacing:-14.210587px;}
.ws2{word-spacing:-13.296406px;}
.wsb{word-spacing:-11.965913px;}
.ws0{word-spacing:-11.633594px;}
.ws8{word-spacing:-10.508889px;}
.ws1{word-spacing:-2.261584px;}
.ws9{word-spacing:0.000000px;}
.ws5{word-spacing:432.962064px;}
.ws7{word-spacing:506.196000px;}
.ws6{word-spacing:508.375692px;}
._1e{margin-left:-9.546473px;}
._1f{margin-left:-8.544177px;}
._e{margin-left:-7.417784px;}
._4{margin-left:-6.072324px;}
._5{margin-left:-4.891962px;}
._6{margin-left:-3.855674px;}
._3{margin-left:-2.203242px;}
._0{margin-left:-1.007965px;}
._1{width:1.133960px;}
._2{width:2.603909px;}
._7{width:3.640473px;}
._d{width:5.097472px;}
._a{width:6.721624px;}
._b{width:8.112559px;}
._11{width:9.250402px;}
._f{width:10.426066px;}
._10{width:11.789407px;}
._18{width:13.760791px;}
._9{width:16.896207px;}
._19{width:18.144079px;}
._c{width:19.419975px;}
._1d{width:20.454249px;}
._16{width:23.229389px;}
._1a{width:25.345661px;}
._1c{width:27.352541px;}
._1b{width:28.427621px;}
._8{width:43.927036px;}
._17{width:115.830040px;}
._20{width:202.289560px;}
._14{width:558.847692px;}
._13{width:605.582244px;}
._12{width:783.514806px;}
._15{width:838.717775px;}
.fc3{color:rgb(15,39,83);}
.fc1{color:rgb(27,138,174);}
.fc6{color:rgb(64,64,64);}
.fc5{color:rgb(60,60,60);}
.fc4{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;}
.fs7{font-size:40.500000px;}
.fs0{font-size:41.998536px;}
.fs9{font-size:43.198242px;}
.fs3{font-size:48.001464px;}
.fs8{font-size:51.301758px;}
.fs1{font-size:54.000000px;}
.fs5{font-size:70.198242px;}
.fs2{font-size:91.801758px;}
.y0{bottom:0.000000px;}
.y26{bottom:46.734370px;}
.y25{bottom:59.015622px;}
.y24{bottom:71.302734px;}
.y69{bottom:90.246089px;}
.y68{bottom:108.199216px;}
.y67{bottom:126.152343px;}
.y48{bottom:136.265565px;}
.y66{bottom:144.111328px;}
.y20{bottom:145.892541px;}
.y47{bottom:155.162055px;}
.y65{bottom:162.064447px;}
.y1f{bottom:164.789031px;}
.y46{bottom:174.064404px;}
.y64{bottom:180.017574px;}
.y1e{bottom:183.691380px;}
.y45{bottom:192.966753px;}
.y63{bottom:197.976563px;}
.y44{bottom:211.863243px;}
.y62{bottom:215.929688px;}
.y1d{bottom:216.087870px;}
.y43{bottom:230.765592px;}
.y61{bottom:233.882806px;}
.y1c{bottom:234.990219px;}
.y42{bottom:249.662082px;}
.y60{bottom:251.841794px;}
.y1b{bottom:253.892568px;}
.y5f{bottom:269.794922px;}
.y1a{bottom:272.789058px;}
.y41{bottom:282.064431px;}
.y5e{bottom:287.748046px;}
.y19{bottom:291.691384px;}
.y40{bottom:300.966780px;}
.y5d{bottom:305.707032px;}
.y49{bottom:306.029297px;}
.y18{bottom:310.587874px;}
.y3f{bottom:319.863270px;}
.y17{bottom:329.490223px;}
.y3e{bottom:338.765619px;}
.y5c{bottom:343.212891px;}
.y16{bottom:348.392572px;}
.y3d{bottom:357.662067px;}
.y15{bottom:367.289062px;}
.y3c{bottom:376.564416px;}
.y3b{bottom:395.466765px;}
.y5b{bottom:396.914062px;}
.y14{bottom:397.945313px;}
.y5a{bottom:425.660157px;}
.y3a{bottom:427.863255px;}
.y39{bottom:446.765604px;}
.y38{bottom:465.662094px;}
.y13{bottom:467.044922px;}
.y59{bottom:481.271484px;}
.y12{bottom:483.843748px;}
.y37{bottom:498.064443px;}
.y11{bottom:500.648433px;}
.y58{bottom:511.927734px;}
.y36{bottom:516.966792px;}
.y10{bottom:517.447259px;}
.y35{bottom:535.863270px;}
.yf{bottom:538.746092px;}
.y34{bottom:554.765619px;}
.ye{bottom:564.544922px;}
.y57{bottom:567.533203px;}
.y33{bottom:573.662109px;}
.y56{bottom:598.189454px;}
.y32{bottom:607.253892px;}
.yd{bottom:614.800795px;}
.yc{bottom:628.031259px;}
.y31{bottom:629.830068px;}
.yb{bottom:641.261723px;}
.y30{bottom:652.406245px;}
.y55{bottom:653.800782px;}
.ya{bottom:654.492188px;}
.y2f{bottom:674.982421px;}
.y9{bottom:675.445310px;}
.y23{bottom:679.945305px;}
.y54{bottom:684.457032px;}
.y8{bottom:694.646483px;}
.y22{bottom:699.146481px;}
.y4c{bottom:711.585935px;}
.y7{bottom:713.847657px;}
.y21{bottom:718.347657px;}
.y4b{bottom:728.384767px;}
.y53{bottom:740.068353px;}
.y4a{bottom:749.683593px;}
.y6{bottom:756.158206px;}
.y52{bottom:758.964843px;}
.y71{bottom:780.703125px;}
.y2e{bottom:788.531244px;}
.y51{bottom:789.621093px;}
.y5{bottom:793.710931px;}
.y70{bottom:799.599609px;}
.y6b{bottom:802.423829px;}
.y2d{bottom:807.427713px;}
.y2c{bottom:826.330062px;}
.y6f{bottom:830.460938px;}
.y4{bottom:831.269532px;}
.y2b{bottom:845.232411px;}
.y50{bottom:845.232417px;}
.y4f{bottom:864.128891px;}
.y2a{bottom:864.128901px;}
.y4e{bottom:883.031239px;}
.y29{bottom:883.031244px;}
.y6e{bottom:885.626947px;}
.y3{bottom:899.378907px;}
.y28{bottom:901.927730px;}
.y6d{bottom:903.580074px;}
.y27{bottom:920.830079px;}
.y6c{bottom:921.539062px;}
.y2{bottom:939.462894px;}
.y1{bottom:955.212891px;}
.y4d{bottom:974.730467px;}
.y6a{bottom:974.730470px;}
.h8{height:26.244141px;}
.h5{height:27.557629px;}
.h9{height:28.048904px;}
.he{height:29.524658px;}
.hb{height:30.576083px;}
.h1{height:30.617097px;}
.h13{height:31.449501px;}
.h4{height:34.993255px;}
.hf{height:35.391704px;}
.h10{height:35.617086px;}
.h12{height:37.399182px;}
.h2{height:39.366211px;}
.h11{height:39.366277px;}
.ha{height:39.366295px;}
.h7{height:39.366301px;}
.hc{height:39.366379px;}
.hd{height:39.366451px;}
.h14{height:51.106240px;}
.h6{height:52.443023px;}
.h3{height:68.582368px;}
.h0{height:1020.000000px;}
.w0{width:700.500000px;}
.x0{left:0.000000px;}
.x3{left:78.662109px;}
.x9{left:83.162109px;}
.xc{left:86.537109px;}
.xd{left:90.246093px;}
.x5{left:94.412109px;}
.x4{left:95.537109px;}
.xf{left:103.412109px;}
.x10{left:106.787109px;}
.x7{left:121.412106px;}
.xa{left:123.662098px;}
.xe{left:135.914062px;}
.x6{left:194.068359px;}
.x1{left:205.335938px;}
.x8{left:210.287106px;}
.xb{left:230.326171px;}
.x2{left:288.351562px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.820828pt;}
.ls1{letter-spacing:1.312000pt;}
.ls2{letter-spacing:591.783713pt;}
.ls4{letter-spacing:599.810100pt;}
.ls3{letter-spacing:647.819093pt;}
.ls5{letter-spacing:811.839106pt;}
.ls7{letter-spacing:811.839111pt;}
.ws3{word-spacing:-18.781930pt;}
.wsc{word-spacing:-17.284367pt;}
.ws4{word-spacing:-13.296000pt;}
.wsa{word-spacing:-12.631633pt;}
.ws2{word-spacing:-11.819027pt;}
.wsb{word-spacing:-10.636367pt;}
.ws0{word-spacing:-10.340973pt;}
.ws8{word-spacing:-9.341234pt;}
.ws1{word-spacing:-2.010297pt;}
.ws9{word-spacing:0.000000pt;}
.ws5{word-spacing:384.855168pt;}
.ws7{word-spacing:449.952000pt;}
.ws6{word-spacing:451.889504pt;}
._1e{margin-left:-8.485754pt;}
._1f{margin-left:-7.594824pt;}
._e{margin-left:-6.593586pt;}
._4{margin-left:-5.397621pt;}
._5{margin-left:-4.348411pt;}
._6{margin-left:-3.427266pt;}
._3{margin-left:-1.958438pt;}
._0{margin-left:-0.895969pt;}
._1{width:1.007965pt;}
._2{width:2.314586pt;}
._7{width:3.235976pt;}
._d{width:4.531086pt;}
._a{width:5.974777pt;}
._b{width:7.211163pt;}
._11{width:8.222580pt;}
._f{width:9.267614pt;}
._10{width:10.479472pt;}
._18{width:12.231814pt;}
._9{width:15.018851pt;}
._19{width:16.128070pt;}
._c{width:17.262200pt;}
._1d{width:18.181555pt;}
._16{width:20.648346pt;}
._1a{width:22.529476pt;}
._1c{width:24.313369pt;}
._1b{width:25.268996pt;}
._8{width:39.046255pt;}
._17{width:102.960035pt;}
._20{width:179.812942pt;}
._14{width:496.753504pt;}
._13{width:538.295328pt;}
._12{width:696.457606pt;}
._15{width:745.526911pt;}
.fs6{font-size:32.000000pt;}
.fs4{font-size:33.601563pt;}
.fs7{font-size:36.000000pt;}
.fs0{font-size:37.332032pt;}
.fs9{font-size:38.398437pt;}
.fs3{font-size:42.667968pt;}
.fs8{font-size:45.601563pt;}
.fs1{font-size:48.000000pt;}
.fs5{font-size:62.398437pt;}
.fs2{font-size:81.601563pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:41.541662pt;}
.y25{bottom:52.458331pt;}
.y24{bottom:63.380208pt;}
.y69{bottom:80.218745pt;}
.y68{bottom:96.177081pt;}
.y67{bottom:112.135416pt;}
.y48{bottom:121.124947pt;}
.y66{bottom:128.098959pt;}
.y20{bottom:129.682259pt;}
.y47{bottom:137.921827pt;}
.y65{bottom:144.057286pt;}
.y1f{bottom:146.479139pt;}
.y46{bottom:154.723915pt;}
.y64{bottom:160.015621pt;}
.y1e{bottom:163.281227pt;}
.y45{bottom:171.526003pt;}
.y63{bottom:175.979167pt;}
.y44{bottom:188.322883pt;}
.y62{bottom:191.937500pt;}
.y1d{bottom:192.078107pt;}
.y43{bottom:205.124971pt;}
.y61{bottom:207.895828pt;}
.y1c{bottom:208.880195pt;}
.y42{bottom:221.921851pt;}
.y60{bottom:223.859373pt;}
.y1b{bottom:225.682283pt;}
.y5f{bottom:239.817708pt;}
.y1a{bottom:242.479163pt;}
.y41{bottom:250.723939pt;}
.y5e{bottom:255.776041pt;}
.y19{bottom:259.281231pt;}
.y40{bottom:267.526027pt;}
.y5d{bottom:271.739584pt;}
.y49{bottom:272.026041pt;}
.y18{bottom:276.078111pt;}
.y3f{bottom:284.322907pt;}
.y17{bottom:292.880199pt;}
.y3e{bottom:301.124995pt;}
.y5c{bottom:305.078125pt;}
.y16{bottom:309.682287pt;}
.y3d{bottom:317.921837pt;}
.y15{bottom:326.479167pt;}
.y3c{bottom:334.723925pt;}
.y3b{bottom:351.526013pt;}
.y5b{bottom:352.812500pt;}
.y14{bottom:353.729167pt;}
.y5a{bottom:378.364584pt;}
.y3a{bottom:380.322893pt;}
.y39{bottom:397.124981pt;}
.y38{bottom:413.921861pt;}
.y13{bottom:415.151041pt;}
.y59{bottom:427.796875pt;}
.y12{bottom:430.083331pt;}
.y37{bottom:442.723949pt;}
.y11{bottom:445.020829pt;}
.y58{bottom:455.046875pt;}
.y36{bottom:459.526037pt;}
.y10{bottom:459.953119pt;}
.y35{bottom:476.322907pt;}
.yf{bottom:478.885415pt;}
.y34{bottom:493.124995pt;}
.ye{bottom:501.817708pt;}
.y57{bottom:504.473959pt;}
.y33{bottom:509.921875pt;}
.y56{bottom:531.723959pt;}
.y32{bottom:539.781237pt;}
.yd{bottom:546.489596pt;}
.yc{bottom:558.250008pt;}
.y31{bottom:559.848950pt;}
.yb{bottom:570.010421pt;}
.y30{bottom:579.916662pt;}
.y55{bottom:581.156251pt;}
.ya{bottom:581.770833pt;}
.y2f{bottom:599.984375pt;}
.y9{bottom:600.395831pt;}
.y23{bottom:604.395827pt;}
.y54{bottom:608.406251pt;}
.y8{bottom:617.463541pt;}
.y22{bottom:621.463539pt;}
.y4c{bottom:632.520831pt;}
.y7{bottom:634.531251pt;}
.y21{bottom:638.531251pt;}
.y4b{bottom:647.453127pt;}
.y53{bottom:657.838536pt;}
.y4a{bottom:666.385416pt;}
.y6{bottom:672.140627pt;}
.y52{bottom:674.635416pt;}
.y71{bottom:693.958333pt;}
.y2e{bottom:700.916661pt;}
.y51{bottom:701.885416pt;}
.y5{bottom:705.520828pt;}
.y70{bottom:710.755208pt;}
.y6b{bottom:713.265625pt;}
.y2d{bottom:717.713523pt;}
.y2c{bottom:734.515611pt;}
.y6f{bottom:738.187500pt;}
.y4{bottom:738.906251pt;}
.y2b{bottom:751.317699pt;}
.y50{bottom:751.317704pt;}
.y4f{bottom:768.114569pt;}
.y2a{bottom:768.114579pt;}
.y4e{bottom:784.916657pt;}
.y29{bottom:784.916661pt;}
.y6e{bottom:787.223953pt;}
.y3{bottom:799.447917pt;}
.y28{bottom:801.713537pt;}
.y6d{bottom:803.182288pt;}
.y27{bottom:818.515625pt;}
.y6c{bottom:819.145833pt;}
.y2{bottom:835.078128pt;}
.y1{bottom:849.078125pt;}
.y4d{bottom:866.427082pt;}
.y6a{bottom:866.427084pt;}
.h8{height:23.328125pt;}
.h5{height:24.495670pt;}
.h9{height:24.932359pt;}
.he{height:26.244141pt;}
.hb{height:27.178740pt;}
.h1{height:27.215197pt;}
.h13{height:27.955112pt;}
.h4{height:31.105115pt;}
.hf{height:31.459293pt;}
.h10{height:31.659632pt;}
.h12{height:33.243717pt;}
.h2{height:34.992188pt;}
.h11{height:34.992246pt;}
.ha{height:34.992262pt;}
.h7{height:34.992268pt;}
.hc{height:34.992337pt;}
.hd{height:34.992401pt;}
.h14{height:45.427769pt;}
.h6{height:46.616020pt;}
.h3{height:60.962105pt;}
.h0{height:906.666667pt;}
.w0{width:622.666667pt;}
.x0{left:0.000000pt;}
.x3{left:69.921875pt;}
.x9{left:73.921875pt;}
.xc{left:76.921875pt;}
.xd{left:80.218749pt;}
.x5{left:83.921875pt;}
.x4{left:84.921875pt;}
.xf{left:91.921875pt;}
.x10{left:94.921875pt;}
.x7{left:107.921872pt;}
.xa{left:109.921865pt;}
.xe{left:120.812500pt;}
.x6{left:172.505208pt;}
.x1{left:182.520833pt;}
.x8{left:186.921872pt;}
.xb{left:204.734375pt;}
.x2{left:256.312500pt;}
}




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