
    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_cd53d9d4d2b9ad46cd26a345.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_5bacae4bbdc0e56975d6f65d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_d11cb45d8ff5521708f1069a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_e846dccb9fa89dd29219c275.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.916992;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_918338b44f26c437eb1b000d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.916992;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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;}
.lsa{letter-spacing:-0.600000px;}
.lsb{letter-spacing:-0.552000px;}
.lsf{letter-spacing:-0.372000px;}
.ls9{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.060000px;}
.ls6{letter-spacing:0.096000px;}
.ls2{letter-spacing:0.120000px;}
.ls1{letter-spacing:0.138000px;}
.ls3{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.552000px;}
.lsc{letter-spacing:0.600000px;}
.ls0{letter-spacing:0.732000px;}
.ls4{letter-spacing:0.828000px;}
.ls7{letter-spacing:0.888000px;}
.ls11{letter-spacing:12.600000px;}
.ls8{letter-spacing:31.800000px;}
.lsd{letter-spacing:113.400000px;}
.ls10{letter-spacing:113.568000px;}
.ls14{letter-spacing:119.448000px;}
.lse{letter-spacing:161.568000px;}
.ls12{letter-spacing:167.448000px;}
.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:-21.552000px;}
.ws2{word-spacing:-21.096000px;}
.ws0{word-spacing:-21.000000px;}
.ws4{word-spacing:-20.628000px;}
.ws1{word-spacing:-20.448000px;}
.ws3{word-spacing:0.000000px;}
._29{margin-left:-9.144000px;}
._26{margin-left:-4.620000px;}
._18{margin-left:-3.192000px;}
._1{margin-left:-1.344000px;}
._0{width:1.092000px;}
._2{width:2.280000px;}
._3{width:3.948000px;}
._4{width:5.460000px;}
._f{width:6.720000px;}
._8{width:7.812000px;}
._9{width:9.072000px;}
._25{width:10.584000px;}
._2c{width:11.844000px;}
._2b{width:12.852000px;}
._30{width:14.094000px;}
._1f{width:15.162000px;}
._1e{width:16.170000px;}
._1b{width:17.238000px;}
._1d{width:19.308000px;}
._6{width:22.428000px;}
._5{width:24.150000px;}
._2a{width:25.158000px;}
._17{width:26.376000px;}
._15{width:27.384000px;}
._16{width:28.392000px;}
._14{width:29.568000px;}
._a{width:30.828000px;}
._b{width:31.860000px;}
._20{width:33.936000px;}
._21{width:35.034000px;}
._2e{width:36.528000px;}
._e{width:37.632000px;}
._1a{width:38.664000px;}
._32{width:39.756000px;}
._33{width:40.800000px;}
._7{width:42.168000px;}
._12{width:45.780000px;}
._11{width:46.872000px;}
._13{width:48.216000px;}
._c{width:51.216000px;}
._d{width:53.052000px;}
._2d{width:54.264000px;}
._1c{width:55.332000px;}
._23{width:62.076000px;}
._27{width:63.252000px;}
._28{width:64.260000px;}
._10{width:66.432000px;}
._31{width:72.324000px;}
._2f{width:75.012000px;}
._19{width:113.652000px;}
._24{width:312.732000px;}
._22{width:363.720000px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(13,13,13);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y36{bottom:16.185000px;}
.y3d{bottom:16.192500px;}
.y39{bottom:16.200000px;}
.y44{bottom:16.485000px;}
.y41{bottom:16.500000px;}
.y5c{bottom:16.515000px;}
.y59{bottom:16.530000px;}
.y4a{bottom:16.545000px;}
.y38{bottom:52.500000px;}
.y3c{bottom:52.537500px;}
.y49{bottom:52.545000px;}
.y43{bottom:52.785000px;}
.y5b{bottom:52.800000px;}
.y58{bottom:52.830000px;}
.y40{bottom:52.845000px;}
.y7{bottom:58.837500px;}
.y6{bottom:80.737500px;}
.y4c{bottom:88.800000px;}
.y57{bottom:88.830000px;}
.y48{bottom:88.845000px;}
.y54{bottom:117.337500px;}
.y3e{bottom:117.937500px;}
.y47{bottom:125.145000px;}
.y3b{bottom:138.637500px;}
.y53{bottom:153.330000px;}
.y6c{bottom:155.745000px;}
.y22{bottom:165.330000px;}
.y52{bottom:189.675000px;}
.y6b{bottom:192.075000px;}
.y72{bottom:194.175000px;}
.y21{bottom:201.675000px;}
.y3a{bottom:211.875000px;}
.y51{bottom:225.975000px;}
.y6a{bottom:228.375000px;}
.y71{bottom:230.475000px;}
.y20{bottom:237.675000px;}
.y50{bottom:262.275000px;}
.y69{bottom:264.375000px;}
.y70{bottom:266.775000px;}
.y1f{bottom:273.975000px;}
.y37{bottom:285.075000px;}
.y4f{bottom:298.275000px;}
.y68{bottom:300.675000px;}
.y6f{bottom:302.775000px;}
.y1e{bottom:310.275000px;}
.y4e{bottom:334.575000px;}
.y67{bottom:336.975000px;}
.y6e{bottom:339.120000px;}
.y1d{bottom:346.620000px;}
.y35{bottom:358.320000px;}
.y4d{bottom:370.905000px;}
.y66{bottom:373.320000px;}
.y6d{bottom:375.420000px;}
.y1c{bottom:382.620000px;}
.y4b{bottom:391.320000px;}
.y65{bottom:409.320000px;}
.y34{bottom:411.705000px;}
.y1b{bottom:418.905000px;}
.y64{bottom:445.605000px;}
.y33{bottom:447.705000px;}
.y1a{bottom:455.205000px;}
.y63{bottom:481.905000px;}
.y32{bottom:484.005000px;}
.y19{bottom:491.505000px;}
.y46{bottom:500.805000px;}
.y62{bottom:518.250000px;}
.y31{bottom:520.350000px;}
.y18{bottom:527.550000px;}
.y61{bottom:554.250000px;}
.y30{bottom:556.350000px;}
.y17{bottom:563.850000px;}
.y60{bottom:590.550000px;}
.y2f{bottom:592.650000px;}
.y16{bottom:600.150000px;}
.y5f{bottom:626.850000px;}
.y2e{bottom:628.950000px;}
.y15{bottom:636.450000px;}
.y45{bottom:646.350000px;}
.y5e{bottom:663.150000px;}
.y2d{bottom:665.250000px;}
.y14{bottom:672.450000px;}
.y5d{bottom:683.580000px;}
.y2c{bottom:701.280000px;}
.y13{bottom:708.780000px;}
.y42{bottom:719.595000px;}
.y2b{bottom:737.595000px;}
.y12{bottom:745.080000px;}
.y5a{bottom:756.780000px;}
.y2a{bottom:773.880000px;}
.y11{bottom:781.380000px;}
.y3f{bottom:792.780000px;}
.y29{bottom:810.195000px;}
.y10{bottom:817.380000px;}
.y56{bottom:829.995000px;}
.yf{bottom:845.325000px;}
.y28{bottom:846.225000px;}
.ye{bottom:872.925000px;}
.y27{bottom:882.525000px;}
.yd{bottom:900.825000px;}
.y26{bottom:918.825000px;}
.y55{bottom:939.525000px;}
.yc{bottom:940.725000px;}
.y25{bottom:955.125000px;}
.yb{bottom:980.325000px;}
.y24{bottom:991.125000px;}
.ya{bottom:1008.225000px;}
.y23{bottom:1027.455000px;}
.y9{bottom:1035.855000px;}
.y8{bottom:1063.755000px;}
.y5{bottom:1089.570000px;}
.y4{bottom:1111.455000px;}
.y3{bottom:1137.570000px;}
.y2{bottom:1163.655000px;}
.y1{bottom:1189.800000px;}
.h6{height:36.000000px;}
.h4{height:58.898438px;}
.h2{height:59.267578px;}
.h5{height:61.154297px;}
.h3{height:65.645508px;}
.h8{height:72.300000px;}
.h7{height:72.337500px;}
.ha{height:72.600000px;}
.h9{height:72.637500px;}
.hc{height:108.600000px;}
.hd{height:108.637500px;}
.hb{height:144.937500px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w6{width:161.130000px;}
.w4{width:161.145000px;}
.w5{width:161.175000px;}
.w3{width:215.175000px;}
.w8{width:323.205000px;}
.w7{width:323.220000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2e{left:7.500000px;}
.x23{left:9.900000px;}
.x19{left:13.200000px;}
.x24{left:14.700000px;}
.x1c{left:16.500000px;}
.x1f{left:21.300000px;}
.x1b{left:22.492500px;}
.x26{left:23.992500px;}
.x2b{left:25.192500px;}
.x17{left:31.192500px;}
.x14{left:32.985000px;}
.x18{left:38.685000px;}
.x1d{left:42.300000px;}
.x1e{left:44.100000px;}
.x2a{left:45.592500px;}
.x1a{left:50.685000px;}
.x20{left:62.985000px;}
.x28{left:64.537500px;}
.x16{left:65.985000px;}
.x27{left:67.245000px;}
.x29{left:69.930000px;}
.x2c{left:75.045000px;}
.x12{left:81.037500px;}
.x5{left:127.537487px;}
.xf{left:170.129987px;}
.x1{left:246.074987px;}
.x7{left:258.974987px;}
.x8{left:265.274987px;}
.x10{left:288.674987px;}
.x21{left:290.475000px;}
.x6{left:309.119987px;}
.x9{left:311.519987px;}
.x13{left:344.520000px;}
.x2{left:412.904987px;}
.xc{left:425.849987px;}
.x22{left:452.550000px;}
.x4{left:465.749987px;}
.xb{left:467.249987px;}
.xe{left:499.649987px;}
.xd{left:534.779987px;}
.x3{left:537.794987px;}
.x15{left:560.595000px;}
.xa{left:564.194987px;}
.x25{left:614.595000px;}
.x11{left:711.824987px;}
.x2d{left:724.124987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.533333pt;}
.lsb{letter-spacing:-0.490667pt;}
.lsf{letter-spacing:-0.330667pt;}
.ls9{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.053333pt;}
.ls6{letter-spacing:0.085333pt;}
.ls2{letter-spacing:0.106667pt;}
.ls1{letter-spacing:0.122667pt;}
.ls3{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.490667pt;}
.lsc{letter-spacing:0.533333pt;}
.ls0{letter-spacing:0.650667pt;}
.ls4{letter-spacing:0.736000pt;}
.ls7{letter-spacing:0.789333pt;}
.ls11{letter-spacing:11.200000pt;}
.ls8{letter-spacing:28.266667pt;}
.lsd{letter-spacing:100.800000pt;}
.ls10{letter-spacing:100.949333pt;}
.ls14{letter-spacing:106.176000pt;}
.lse{letter-spacing:143.616000pt;}
.ls12{letter-spacing:148.842667pt;}
.ws5{word-spacing:-19.157333pt;}
.ws2{word-spacing:-18.752000pt;}
.ws0{word-spacing:-18.666667pt;}
.ws4{word-spacing:-18.336000pt;}
.ws1{word-spacing:-18.176000pt;}
.ws3{word-spacing:0.000000pt;}
._29{margin-left:-8.128000pt;}
._26{margin-left:-4.106667pt;}
._18{margin-left:-2.837333pt;}
._1{margin-left:-1.194667pt;}
._0{width:0.970667pt;}
._2{width:2.026667pt;}
._3{width:3.509333pt;}
._4{width:4.853333pt;}
._f{width:5.973333pt;}
._8{width:6.944000pt;}
._9{width:8.064000pt;}
._25{width:9.408000pt;}
._2c{width:10.528000pt;}
._2b{width:11.424000pt;}
._30{width:12.528000pt;}
._1f{width:13.477333pt;}
._1e{width:14.373333pt;}
._1b{width:15.322667pt;}
._1d{width:17.162667pt;}
._6{width:19.936000pt;}
._5{width:21.466667pt;}
._2a{width:22.362667pt;}
._17{width:23.445333pt;}
._15{width:24.341333pt;}
._16{width:25.237333pt;}
._14{width:26.282667pt;}
._a{width:27.402667pt;}
._b{width:28.320000pt;}
._20{width:30.165333pt;}
._21{width:31.141333pt;}
._2e{width:32.469333pt;}
._e{width:33.450667pt;}
._1a{width:34.368000pt;}
._32{width:35.338667pt;}
._33{width:36.266667pt;}
._7{width:37.482667pt;}
._12{width:40.693333pt;}
._11{width:41.664000pt;}
._13{width:42.858667pt;}
._c{width:45.525333pt;}
._d{width:47.157333pt;}
._2d{width:48.234667pt;}
._1c{width:49.184000pt;}
._23{width:55.178667pt;}
._27{width:56.224000pt;}
._28{width:57.120000pt;}
._10{width:59.050667pt;}
._31{width:64.288000pt;}
._2f{width:66.677333pt;}
._19{width:101.024000pt;}
._24{width:277.984000pt;}
._22{width:323.306667pt;}
.fs1{font-size:58.666667pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y36{bottom:14.386667pt;}
.y3d{bottom:14.393333pt;}
.y39{bottom:14.400000pt;}
.y44{bottom:14.653333pt;}
.y41{bottom:14.666667pt;}
.y5c{bottom:14.680000pt;}
.y59{bottom:14.693333pt;}
.y4a{bottom:14.706667pt;}
.y38{bottom:46.666667pt;}
.y3c{bottom:46.700000pt;}
.y49{bottom:46.706667pt;}
.y43{bottom:46.920000pt;}
.y5b{bottom:46.933333pt;}
.y58{bottom:46.960000pt;}
.y40{bottom:46.973333pt;}
.y7{bottom:52.300000pt;}
.y6{bottom:71.766667pt;}
.y4c{bottom:78.933333pt;}
.y57{bottom:78.960000pt;}
.y48{bottom:78.973333pt;}
.y54{bottom:104.300000pt;}
.y3e{bottom:104.833333pt;}
.y47{bottom:111.240000pt;}
.y3b{bottom:123.233333pt;}
.y53{bottom:136.293333pt;}
.y6c{bottom:138.440000pt;}
.y22{bottom:146.960000pt;}
.y52{bottom:168.600000pt;}
.y6b{bottom:170.733333pt;}
.y72{bottom:172.600000pt;}
.y21{bottom:179.266667pt;}
.y3a{bottom:188.333333pt;}
.y51{bottom:200.866667pt;}
.y6a{bottom:203.000000pt;}
.y71{bottom:204.866667pt;}
.y20{bottom:211.266667pt;}
.y50{bottom:233.133333pt;}
.y69{bottom:235.000000pt;}
.y70{bottom:237.133333pt;}
.y1f{bottom:243.533333pt;}
.y37{bottom:253.400000pt;}
.y4f{bottom:265.133333pt;}
.y68{bottom:267.266667pt;}
.y6f{bottom:269.133333pt;}
.y1e{bottom:275.800000pt;}
.y4e{bottom:297.400000pt;}
.y67{bottom:299.533333pt;}
.y6e{bottom:301.440000pt;}
.y1d{bottom:308.106667pt;}
.y35{bottom:318.506667pt;}
.y4d{bottom:329.693333pt;}
.y66{bottom:331.840000pt;}
.y6d{bottom:333.706667pt;}
.y1c{bottom:340.106667pt;}
.y4b{bottom:347.840000pt;}
.y65{bottom:363.840000pt;}
.y34{bottom:365.960000pt;}
.y1b{bottom:372.360000pt;}
.y64{bottom:396.093333pt;}
.y33{bottom:397.960000pt;}
.y1a{bottom:404.626667pt;}
.y63{bottom:428.360000pt;}
.y32{bottom:430.226667pt;}
.y19{bottom:436.893333pt;}
.y46{bottom:445.160000pt;}
.y62{bottom:460.666667pt;}
.y31{bottom:462.533333pt;}
.y18{bottom:468.933333pt;}
.y61{bottom:492.666667pt;}
.y30{bottom:494.533333pt;}
.y17{bottom:501.200000pt;}
.y60{bottom:524.933333pt;}
.y2f{bottom:526.800000pt;}
.y16{bottom:533.466667pt;}
.y5f{bottom:557.200000pt;}
.y2e{bottom:559.066667pt;}
.y15{bottom:565.733333pt;}
.y45{bottom:574.533333pt;}
.y5e{bottom:589.466667pt;}
.y2d{bottom:591.333333pt;}
.y14{bottom:597.733333pt;}
.y5d{bottom:607.626667pt;}
.y2c{bottom:623.360000pt;}
.y13{bottom:630.026667pt;}
.y42{bottom:639.640000pt;}
.y2b{bottom:655.640000pt;}
.y12{bottom:662.293333pt;}
.y5a{bottom:672.693333pt;}
.y2a{bottom:687.893333pt;}
.y11{bottom:694.560000pt;}
.y3f{bottom:704.693333pt;}
.y29{bottom:720.173333pt;}
.y10{bottom:726.560000pt;}
.y56{bottom:737.773333pt;}
.yf{bottom:751.400000pt;}
.y28{bottom:752.200000pt;}
.ye{bottom:775.933333pt;}
.y27{bottom:784.466667pt;}
.yd{bottom:800.733333pt;}
.y26{bottom:816.733333pt;}
.y55{bottom:835.133333pt;}
.yc{bottom:836.200000pt;}
.y25{bottom:849.000000pt;}
.yb{bottom:871.400000pt;}
.y24{bottom:881.000000pt;}
.ya{bottom:896.200000pt;}
.y23{bottom:913.293333pt;}
.y9{bottom:920.760000pt;}
.y8{bottom:945.560000pt;}
.y5{bottom:968.506667pt;}
.y4{bottom:987.960000pt;}
.y3{bottom:1011.173333pt;}
.y2{bottom:1034.360000pt;}
.y1{bottom:1057.600000pt;}
.h6{height:32.000000pt;}
.h4{height:52.354167pt;}
.h2{height:52.682292pt;}
.h5{height:54.359375pt;}
.h3{height:58.351562pt;}
.h8{height:64.266667pt;}
.h7{height:64.300000pt;}
.ha{height:64.533333pt;}
.h9{height:64.566667pt;}
.hc{height:96.533333pt;}
.hd{height:96.566667pt;}
.hb{height:128.833333pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w6{width:143.226667pt;}
.w4{width:143.240000pt;}
.w5{width:143.266667pt;}
.w3{width:191.266667pt;}
.w8{width:287.293333pt;}
.w7{width:287.306667pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2e{left:6.666667pt;}
.x23{left:8.800000pt;}
.x19{left:11.733333pt;}
.x24{left:13.066667pt;}
.x1c{left:14.666667pt;}
.x1f{left:18.933333pt;}
.x1b{left:19.993333pt;}
.x26{left:21.326667pt;}
.x2b{left:22.393333pt;}
.x17{left:27.726667pt;}
.x14{left:29.320000pt;}
.x18{left:34.386667pt;}
.x1d{left:37.600000pt;}
.x1e{left:39.200000pt;}
.x2a{left:40.526667pt;}
.x1a{left:45.053333pt;}
.x20{left:55.986667pt;}
.x28{left:57.366667pt;}
.x16{left:58.653333pt;}
.x27{left:59.773333pt;}
.x29{left:62.160000pt;}
.x2c{left:66.706667pt;}
.x12{left:72.033333pt;}
.x5{left:113.366655pt;}
.xf{left:151.226655pt;}
.x1{left:218.733322pt;}
.x7{left:230.199988pt;}
.x8{left:235.799988pt;}
.x10{left:256.599988pt;}
.x21{left:258.200000pt;}
.x6{left:274.773322pt;}
.x9{left:276.906655pt;}
.x13{left:306.240000pt;}
.x2{left:367.026655pt;}
.xc{left:378.533322pt;}
.x22{left:402.266667pt;}
.x4{left:413.999988pt;}
.xb{left:415.333322pt;}
.xe{left:444.133322pt;}
.xd{left:475.359988pt;}
.x3{left:478.039988pt;}
.x15{left:498.306667pt;}
.xa{left:501.506655pt;}
.x25{left:546.306667pt;}
.x11{left:632.733322pt;}
.x2d{left:643.666655pt;}
}




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