
    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_e8025d46445181d3eef03d14.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.081000;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_05d4a63a9f7bd8b92e09ac83.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_3db3cab1415b9fbeed976982.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.878418;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_ed59871f9753ed199b75bf25.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_e1fd6bb0dabc43128cc8a960.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.943000;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_f09c03325ed609bebacf238f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.862305;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_cc52433ded7880c30fc1b204.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.677734;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:ff8;src:url('chunks/assets/font_5d8e0b7256295885dd2dfb64.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.875000;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:ff9;src:url('chunks/assets/font_38e3d1c4acaea53a150a3851.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.907000;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);}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-0.132000px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:1.320000px;}
.ls0{letter-spacing:2.574000px;}
.ls1{letter-spacing:20.658000px;}
.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:-17.490000px;}
.ws0{word-spacing:-14.916000px;}
.ws7{word-spacing:-11.520000px;}
.ws3{word-spacing:-2.574000px;}
.ws8{word-spacing:-1.320000px;}
.ws4{word-spacing:-1.254000px;}
.ws6{word-spacing:-0.078000px;}
.ws5{word-spacing:-0.066000px;}
.ws2{word-spacing:0.000000px;}
.ws9{word-spacing:0.132000px;}
._26{margin-left:-919.107000px;}
._4{margin-left:-22.096800px;}
._15{margin-left:-18.817200px;}
._18{margin-left:-17.082000px;}
._10{margin-left:-15.798000px;}
._6{margin-left:-12.102000px;}
._28{margin-left:-9.126000px;}
._9{margin-left:-6.685800px;}
._f{margin-left:-5.181000px;}
._3{margin-left:-3.775800px;}
._1{margin-left:-2.184000px;}
._0{margin-left:-1.176000px;}
._2{width:1.442400px;}
._5{width:3.260400px;}
._20{width:4.402200px;}
._1b{width:6.317400px;}
._1e{width:7.386000px;}
._22{width:16.890600px;}
._14{width:20.157000px;}
._11{width:26.691000px;}
._24{width:32.521800px;}
._12{width:36.108600px;}
._17{width:46.374000px;}
._16{width:50.425200px;}
._21{width:52.085400px;}
._1d{width:53.473800px;}
._b{width:63.082800px;}
._e{width:74.941800px;}
._19{width:100.827600px;}
._29{width:105.180000px;}
._1a{width:121.149600px;}
._1f{width:122.949000px;}
._13{width:166.695000px;}
._23{width:173.502600px;}
._1c{width:186.792600px;}
._25{width:200.265000px;}
._7{width:202.440000px;}
._8{width:423.420000px;}
._c{width:481.344000px;}
._d{width:586.363800px;}
._a{width:766.200000px;}
._27{width:3319.596000px;}
.fc3{color:transparent;}
.fc1{color:rgb(15,174,161);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs4{font-size:48.000000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs5{font-size:78.000000px;}
.fs0{font-size:84.000000px;}
.fs3{font-size:168.000000px;}
.y0{bottom:0.000000px;}
.y2b{bottom:17.185050px;}
.y3f{bottom:31.594500px;}
.y2a{bottom:31.907550px;}
.y3e{bottom:51.394500px;}
.y26{bottom:54.235200px;}
.y3d{bottom:71.194500px;}
.y25{bottom:74.035200px;}
.y3c{bottom:90.994500px;}
.y24{bottom:106.589700px;}
.y65{bottom:106.639050px;}
.y3b{bottom:110.794500px;}
.y23{bottom:126.389700px;}
.y64{bottom:126.439050px;}
.y3a{bottom:130.594500px;}
.y63{bottom:146.239050px;}
.y39{bottom:150.394500px;}
.y29{bottom:150.876300px;}
.y22{bottom:158.944200px;}
.y62{bottom:166.039050px;}
.y38{bottom:170.194500px;}
.y21{bottom:178.744200px;}
.y61{bottom:185.839050px;}
.y37{bottom:189.994500px;}
.y28{bottom:201.276300px;}
.y60{bottom:205.639050px;}
.y20{bottom:211.298700px;}
.y1f{bottom:231.098700px;}
.y5f{bottom:233.936550px;}
.y66{bottom:245.477400px;}
.y27{bottom:251.676300px;}
.y5e{bottom:253.736550px;}
.y5d{bottom:273.536550px;}
.y1e{bottom:289.684800px;}
.y5c{bottom:293.336550px;}
.y55{bottom:294.475350px;}
.y54{bottom:312.475350px;}
.y5b{bottom:313.136550px;}
.y36{bottom:319.519500px;}
.y53{bottom:330.475350px;}
.y35{bottom:339.319500px;}
.y6a{bottom:355.198800px;}
.y52{bottom:356.991000px;}
.y1d{bottom:359.212050px;}
.y69{bottom:373.198800px;}
.y51{bottom:376.791000px;}
.y1c{bottom:379.012050px;}
.y68{bottom:391.198800px;}
.y1b{bottom:398.812050px;}
.y50{bottom:416.391000px;}
.y1a{bottom:418.612050px;}
.y4f{bottom:436.191000px;}
.y67{bottom:437.571900px;}
.y19{bottom:438.412050px;}
.y4e{bottom:455.991000px;}
.y4d{bottom:475.791000px;}
.y18{bottom:479.464050px;}
.y5a{bottom:484.291050px;}
.y4c{bottom:495.591000px;}
.y17{bottom:499.264050px;}
.y34{bottom:500.639100px;}
.y59{bottom:504.091050px;}
.y4b{bottom:515.391000px;}
.y16{bottom:519.064050px;}
.y33{bottom:520.439100px;}
.y58{bottom:523.891050px;}
.yb{bottom:528.475350px;}
.y32{bottom:538.439100px;}
.y15{bottom:538.864050px;}
.y4a{bottom:543.688500px;}
.y57{bottom:543.691050px;}
.ya{bottom:546.475350px;}
.y49{bottom:563.488500px;}
.y31{bottom:564.943050px;}
.y14{bottom:579.916050px;}
.y48{bottom:583.288500px;}
.y30{bottom:584.743050px;}
.y13{bottom:599.716050px;}
.y9{bottom:603.091050px;}
.y56{bottom:604.543050px;}
.y12{bottom:619.516050px;}
.y8{bottom:622.891050px;}
.y47{bottom:624.340500px;}
.y2f{bottom:624.343050px;}
.y11{bottom:639.316050px;}
.y7{bottom:642.691050px;}
.y46{bottom:644.140500px;}
.y2e{bottom:644.143050px;}
.y10{bottom:659.116050px;}
.y6{bottom:662.491050px;}
.y45{bottom:663.940500px;}
.y2d{bottom:663.943050px;}
.y44{bottom:683.740500px;}
.y2c{bottom:683.743050px;}
.yf{bottom:700.168050px;}
.y43{bottom:703.540500px;}
.y5{bottom:703.543050px;}
.ye{bottom:719.968050px;}
.y42{bottom:723.340500px;}
.y4{bottom:723.343050px;}
.yd{bottom:739.768050px;}
.y41{bottom:743.140500px;}
.y3{bottom:743.143050px;}
.yc{bottom:759.568050px;}
.y40{bottom:762.940500px;}
.y2{bottom:762.943050px;}
.y1{bottom:818.430150px;}
.h7{height:39.585938px;}
.h6{height:41.074219px;}
.ha{height:42.720000px;}
.h4{height:49.482422px;}
.h9{height:51.900000px;}
.h3{height:54.430664px;}
.h8{height:57.564000px;}
.h2{height:73.584000px;}
.h5{height:123.984000px;}
.h0{height:892.914000px;}
.h1{height:893.250000px;}
.w0{width:1262.835000px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x2{left:21.582150px;}
.xb{left:34.006650px;}
.xc{left:49.350000px;}
.x3{left:130.500000px;}
.xd{left:171.270000px;}
.xe{left:173.655000px;}
.x10{left:252.615000px;}
.xf{left:274.905000px;}
.x9{left:428.393700px;}
.x8{left:449.967900px;}
.x1{left:453.189000px;}
.x7{left:496.389150px;}
.xa{left:884.024700px;}
.x5{left:967.874550px;}
.x6{left:1011.890550px;}
.x4{left:1034.024550px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.117333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:1.173333pt;}
.ls0{letter-spacing:2.288000pt;}
.ls1{letter-spacing:18.362667pt;}
.ws1{word-spacing:-15.546667pt;}
.ws0{word-spacing:-13.258667pt;}
.ws7{word-spacing:-10.240000pt;}
.ws3{word-spacing:-2.288000pt;}
.ws8{word-spacing:-1.173333pt;}
.ws4{word-spacing:-1.114667pt;}
.ws6{word-spacing:-0.069333pt;}
.ws5{word-spacing:-0.058667pt;}
.ws2{word-spacing:0.000000pt;}
.ws9{word-spacing:0.117333pt;}
._26{margin-left:-816.984000pt;}
._4{margin-left:-19.641600pt;}
._15{margin-left:-16.726400pt;}
._18{margin-left:-15.184000pt;}
._10{margin-left:-14.042667pt;}
._6{margin-left:-10.757333pt;}
._28{margin-left:-8.112000pt;}
._9{margin-left:-5.942933pt;}
._f{margin-left:-4.605333pt;}
._3{margin-left:-3.356267pt;}
._1{margin-left:-1.941333pt;}
._0{margin-left:-1.045333pt;}
._2{width:1.282133pt;}
._5{width:2.898133pt;}
._20{width:3.913067pt;}
._1b{width:5.615467pt;}
._1e{width:6.565333pt;}
._22{width:15.013867pt;}
._14{width:17.917333pt;}
._11{width:23.725333pt;}
._24{width:28.908267pt;}
._12{width:32.096533pt;}
._17{width:41.221333pt;}
._16{width:44.822400pt;}
._21{width:46.298133pt;}
._1d{width:47.532267pt;}
._b{width:56.073600pt;}
._e{width:66.614933pt;}
._19{width:89.624533pt;}
._29{width:93.493333pt;}
._1a{width:107.688533pt;}
._1f{width:109.288000pt;}
._13{width:148.173333pt;}
._23{width:154.224533pt;}
._1c{width:166.037867pt;}
._25{width:178.013333pt;}
._7{width:179.946667pt;}
._8{width:376.373333pt;}
._c{width:427.861333pt;}
._d{width:521.212267pt;}
._a{width:681.066667pt;}
._27{width:2950.752000pt;}
.fs4{font-size:42.666667pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs5{font-size:69.333333pt;}
.fs0{font-size:74.666667pt;}
.fs3{font-size:149.333333pt;}
.y0{bottom:0.000000pt;}
.y2b{bottom:15.275600pt;}
.y3f{bottom:28.084000pt;}
.y2a{bottom:28.362267pt;}
.y3e{bottom:45.684000pt;}
.y26{bottom:48.209067pt;}
.y3d{bottom:63.284000pt;}
.y25{bottom:65.809067pt;}
.y3c{bottom:80.884000pt;}
.y24{bottom:94.746400pt;}
.y65{bottom:94.790267pt;}
.y3b{bottom:98.484000pt;}
.y23{bottom:112.346400pt;}
.y64{bottom:112.390267pt;}
.y3a{bottom:116.084000pt;}
.y63{bottom:129.990267pt;}
.y39{bottom:133.684000pt;}
.y29{bottom:134.112267pt;}
.y22{bottom:141.283733pt;}
.y62{bottom:147.590267pt;}
.y38{bottom:151.284000pt;}
.y21{bottom:158.883733pt;}
.y61{bottom:165.190267pt;}
.y37{bottom:168.884000pt;}
.y28{bottom:178.912267pt;}
.y60{bottom:182.790267pt;}
.y20{bottom:187.821067pt;}
.y1f{bottom:205.421067pt;}
.y5f{bottom:207.943600pt;}
.y66{bottom:218.202133pt;}
.y27{bottom:223.712267pt;}
.y5e{bottom:225.543600pt;}
.y5d{bottom:243.143600pt;}
.y1e{bottom:257.497600pt;}
.y5c{bottom:260.743600pt;}
.y55{bottom:261.755867pt;}
.y54{bottom:277.755867pt;}
.y5b{bottom:278.343600pt;}
.y36{bottom:284.017333pt;}
.y53{bottom:293.755867pt;}
.y35{bottom:301.617333pt;}
.y6a{bottom:315.732267pt;}
.y52{bottom:317.325333pt;}
.y1d{bottom:319.299600pt;}
.y69{bottom:331.732267pt;}
.y51{bottom:334.925333pt;}
.y1c{bottom:336.899600pt;}
.y68{bottom:347.732267pt;}
.y1b{bottom:354.499600pt;}
.y50{bottom:370.125333pt;}
.y1a{bottom:372.099600pt;}
.y4f{bottom:387.725333pt;}
.y67{bottom:388.952800pt;}
.y19{bottom:389.699600pt;}
.y4e{bottom:405.325333pt;}
.y4d{bottom:422.925333pt;}
.y18{bottom:426.190267pt;}
.y5a{bottom:430.480933pt;}
.y4c{bottom:440.525333pt;}
.y17{bottom:443.790267pt;}
.y34{bottom:445.012533pt;}
.y59{bottom:448.080933pt;}
.y4b{bottom:458.125333pt;}
.y16{bottom:461.390267pt;}
.y33{bottom:462.612533pt;}
.y58{bottom:465.680933pt;}
.yb{bottom:469.755867pt;}
.y32{bottom:478.612533pt;}
.y15{bottom:478.990267pt;}
.y4a{bottom:483.278667pt;}
.y57{bottom:483.280933pt;}
.ya{bottom:485.755867pt;}
.y49{bottom:500.878667pt;}
.y31{bottom:502.171600pt;}
.y14{bottom:515.480933pt;}
.y48{bottom:518.478667pt;}
.y30{bottom:519.771600pt;}
.y13{bottom:533.080933pt;}
.y9{bottom:536.080933pt;}
.y56{bottom:537.371600pt;}
.y12{bottom:550.680933pt;}
.y8{bottom:553.680933pt;}
.y47{bottom:554.969333pt;}
.y2f{bottom:554.971600pt;}
.y11{bottom:568.280933pt;}
.y7{bottom:571.280933pt;}
.y46{bottom:572.569333pt;}
.y2e{bottom:572.571600pt;}
.y10{bottom:585.880933pt;}
.y6{bottom:588.880933pt;}
.y45{bottom:590.169333pt;}
.y2d{bottom:590.171600pt;}
.y44{bottom:607.769333pt;}
.y2c{bottom:607.771600pt;}
.yf{bottom:622.371600pt;}
.y43{bottom:625.369333pt;}
.y5{bottom:625.371600pt;}
.ye{bottom:639.971600pt;}
.y42{bottom:642.969333pt;}
.y4{bottom:642.971600pt;}
.yd{bottom:657.571600pt;}
.y41{bottom:660.569333pt;}
.y3{bottom:660.571600pt;}
.yc{bottom:675.171600pt;}
.y40{bottom:678.169333pt;}
.y2{bottom:678.171600pt;}
.y1{bottom:727.493467pt;}
.h7{height:35.187500pt;}
.h6{height:36.510417pt;}
.ha{height:37.973333pt;}
.h4{height:43.984375pt;}
.h9{height:46.133333pt;}
.h3{height:48.382812pt;}
.h8{height:51.168000pt;}
.h2{height:65.408000pt;}
.h5{height:110.208000pt;}
.h0{height:793.701333pt;}
.h1{height:794.000000pt;}
.w0{width:1122.520000pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x2{left:19.184133pt;}
.xb{left:30.228133pt;}
.xc{left:43.866667pt;}
.x3{left:116.000000pt;}
.xd{left:152.240000pt;}
.xe{left:154.360000pt;}
.x10{left:224.546667pt;}
.xf{left:244.360000pt;}
.x9{left:380.794400pt;}
.x8{left:399.971467pt;}
.x1{left:402.834667pt;}
.x7{left:441.234800pt;}
.xa{left:785.799733pt;}
.x5{left:860.332933pt;}
.x6{left:899.458267pt;}
.x4{left:919.132933pt;}
}




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