
    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_66ab52f870b3e1f34cc9cc04.woff')format("woff");}.ff1{font-family:ff1;line-height:1.097168;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_56b422131c9f1ae32898b9ed.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_c306654717fa9b4b0e6dbfae.woff')format("woff");}.ff3{font-family:ff3;line-height:1.402354;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_a8cbb474cbff6356a31ee960.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_41b03eaeee4a8e586d32951c.woff')format("woff");}.ff5{font-family:ff5;line-height:1.311035;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_f45745fc56bbccf3c7afd24d.woff')format("woff");}.ff6{font-family:ff6;line-height:1.003906;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_0523d04edc3d9defcbdb09cf.woff')format("woff");}.ff7{font-family:ff7;line-height:1.246582;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);}
.v1{vertical-align:-97.140000px;}
.v2{vertical-align:-96.000000px;}
.v0{vertical-align:0.000000px;}
.ls12{letter-spacing:-2.016000px;}
.ls1e{letter-spacing:-0.552000px;}
.ls11{letter-spacing:-0.516000px;}
.ls20{letter-spacing:-0.204000px;}
.ls1c{letter-spacing:-0.048000px;}
.ls3{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.492000px;}
.ls17{letter-spacing:0.504000px;}
.ls6{letter-spacing:0.540000px;}
.ls9{letter-spacing:0.552000px;}
.ls19{letter-spacing:0.564000px;}
.ls7{letter-spacing:0.570000px;}
.ls0{letter-spacing:0.600000px;}
.ls1d{letter-spacing:0.648000px;}
.lsd{letter-spacing:0.660000px;}
.ls2{letter-spacing:0.828000px;}
.ls4{letter-spacing:0.888000px;}
.ls1{letter-spacing:1.008000px;}
.ls8{letter-spacing:4.200000px;}
.lsb{letter-spacing:4.260000px;}
.lsc{letter-spacing:4.320000px;}
.lsa{letter-spacing:5.460000px;}
.ls1f{letter-spacing:12.600000px;}
.ls16{letter-spacing:13.800000px;}
.ls15{letter-spacing:13.860000px;}
.ls14{letter-spacing:15.000000px;}
.ls18{letter-spacing:25.800000px;}
.ls1a{letter-spacing:33.000000px;}
.ls13{letter-spacing:41.400000px;}
.lsf{letter-spacing:46.800000px;}
.lse{letter-spacing:48.000000px;}
.ls5{letter-spacing:1130.130000px;}
.ls1b{letter-spacing:1339.050000px;}
.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;}
}
.ws7{word-spacing:-37.296000px;}
.ws8{word-spacing:-37.092000px;}
.ws6{word-spacing:-21.648000px;}
.ws2{word-spacing:-21.492000px;}
.ws0{word-spacing:-21.000000px;}
.ws5{word-spacing:-20.952000px;}
.ws3{word-spacing:-18.000000px;}
.ws1{word-spacing:0.000000px;}
.ws4{word-spacing:1755.156000px;}
._24{margin-left:-1769.436000px;}
._23{margin-left:-1284.714000px;}
._33{margin-left:-1275.540000px;}
._2f{margin-left:-1072.992000px;}
._25{margin-left:-701.364000px;}
._3d{margin-left:-498.348000px;}
._29{margin-left:-482.856000px;}
._41{margin-left:-330.018000px;}
._3a{margin-left:-308.892000px;}
._3c{margin-left:-306.072000px;}
._32{margin-left:-204.888000px;}
._42{margin-left:-196.800000px;}
._40{margin-left:-183.000000px;}
._44{margin-left:-172.476000px;}
._39{margin-left:-139.488000px;}
._30{margin-left:-110.868000px;}
._43{margin-left:-107.400000px;}
._38{margin-left:-98.232000px;}
._37{margin-left:-87.288000px;}
._3f{margin-left:-80.772000px;}
._3e{margin-left:-72.000000px;}
._31{margin-left:-65.076000px;}
._2c{margin-left:-62.406000px;}
._35{margin-left:-47.196000px;}
._36{margin-left:-44.496000px;}
._16{margin-left:-9.912000px;}
._4{margin-left:-8.316000px;}
._a{margin-left:-7.140000px;}
._6{margin-left:-5.712000px;}
._2{margin-left:-4.284000px;}
._3{margin-left:-2.688000px;}
._0{margin-left:-1.428000px;}
._1{width:1.092000px;}
._5{width:2.244000px;}
._d{width:3.582000px;}
._9{width:4.788000px;}
._7{width:5.796000px;}
._8{width:6.804000px;}
._c{width:8.148000px;}
._e{width:9.996000px;}
._f{width:11.004000px;}
._10{width:12.096000px;}
._13{width:13.608000px;}
._17{width:14.850000px;}
._19{width:15.894000px;}
._18{width:16.968000px;}
._12{width:17.994000px;}
._11{width:19.314000px;}
._28{width:20.622000px;}
._b{width:22.200000px;}
._15{width:23.604000px;}
._14{width:24.864000px;}
._2b{width:26.124000px;}
._21{width:27.300000px;}
._20{width:28.476000px;}
._3b{width:32.844000px;}
._1b{width:34.524000px;}
._1a{width:35.700000px;}
._1c{width:36.876000px;}
._1f{width:37.884000px;}
._27{width:40.134000px;}
._2d{width:41.400000px;}
._1e{width:47.712000px;}
._1d{width:49.224000px;}
._22{width:50.538000px;}
._47{width:53.928000px;}
._46{width:54.936000px;}
._48{width:76.632000px;}
._49{width:78.120000px;}
._34{width:182.580000px;}
._2a{width:314.550000px;}
._26{width:559.350000px;}
._4a{width:843.330000px;}
._2e{width:1577.706000px;}
._45{width:1672.050000px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:53.137500px;}
.y1{bottom:59.137500px;}
.y39{bottom:89.137500px;}
.y2f{bottom:96.037500px;}
.y38{bottom:109.837500px;}
.y2e{bottom:120.037500px;}
.y37{bottom:130.537500px;}
.y36{bottom:138.937500px;}
.y2d{bottom:144.337500px;}
.y35{bottom:151.245000px;}
.y2c{bottom:168.375000px;}
.y2b{bottom:192.675000px;}
.y2a{bottom:216.675000px;}
.y29{bottom:240.975000px;}
.y28{bottom:264.975000px;}
.y27{bottom:289.275000px;}
.y26{bottom:313.275000px;}
.y25{bottom:337.620000px;}
.y24{bottom:361.620000px;}
.y23{bottom:385.905000px;}
.y22{bottom:409.905000px;}
.y21{bottom:434.205000px;}
.y20{bottom:458.205000px;}
.y1f{bottom:482.505000px;}
.y1e{bottom:506.550000px;}
.y1d{bottom:530.850000px;}
.y1c{bottom:554.850000px;}
.y1b{bottom:579.150000px;}
.y1a{bottom:603.150000px;}
.y19{bottom:627.450000px;}
.y18{bottom:651.450000px;}
.y17{bottom:675.780000px;}
.y3a{bottom:699.195000px;}
.y16{bottom:699.780000px;}
.y15{bottom:724.080000px;}
.y14{bottom:748.080000px;}
.y13{bottom:772.380000px;}
.y12{bottom:796.380000px;}
.y11{bottom:820.695000px;}
.y10{bottom:844.725000px;}
.yf{bottom:869.025000px;}
.ye{bottom:893.025000px;}
.yd{bottom:917.325000px;}
.yc{bottom:940.725000px;}
.y33{bottom:941.325000px;}
.yb{bottom:965.025000px;}
.y32{bottom:965.625000px;}
.ya{bottom:989.625000px;}
.y9{bottom:1013.955000px;}
.y8{bottom:1037.955000px;}
.y7{bottom:1062.255000px;}
.y6{bottom:1086.255000px;}
.y5{bottom:1110.570000px;}
.y4{bottom:1133.955000px;}
.y31{bottom:1134.570000px;}
.y3{bottom:1158.255000px;}
.y30{bottom:1158.870000px;}
.y34{bottom:1168.755000px;}
.hb{height:47.109375px;}
.h8{height:52.998047px;}
.h4{height:59.267578px;}
.h3{height:61.670545px;}
.ha{height:65.645508px;}
.hc{height:70.664062px;}
.h6{height:74.033203px;}
.hd{height:74.355469px;}
.h2{height:82.441406px;}
.h5{height:84.656250px;}
.h9{height:86.338763px;}
.he{height:86.748047px;}
.h7{height:1262.681100px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w2{width:893.081250px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:84.937500px;}
.xe{left:102.937500px;}
.x3{left:105.937500px;}
.xf{left:120.937500px;}
.x7{left:125.437500px;}
.x5{left:127.537500px;}
.x4{left:203.475000px;}
.x9{left:240.075000px;}
.xa{left:281.775000px;}
.xd{left:301.020000px;}
.x8{left:339.720000px;}
.x6{left:358.905000px;}
.x1{left:430.650000px;}
.xb{left:586.076250px;}
.xc{left:606.780000px;}
@media print{
.v1{vertical-align:-86.346667pt;}
.v2{vertical-align:-85.333333pt;}
.v0{vertical-align:0.000000pt;}
.ls12{letter-spacing:-1.792000pt;}
.ls1e{letter-spacing:-0.490667pt;}
.ls11{letter-spacing:-0.458667pt;}
.ls20{letter-spacing:-0.181333pt;}
.ls1c{letter-spacing:-0.042667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.437333pt;}
.ls17{letter-spacing:0.448000pt;}
.ls6{letter-spacing:0.480000pt;}
.ls9{letter-spacing:0.490667pt;}
.ls19{letter-spacing:0.501333pt;}
.ls7{letter-spacing:0.506667pt;}
.ls0{letter-spacing:0.533333pt;}
.ls1d{letter-spacing:0.576000pt;}
.lsd{letter-spacing:0.586667pt;}
.ls2{letter-spacing:0.736000pt;}
.ls4{letter-spacing:0.789333pt;}
.ls1{letter-spacing:0.896000pt;}
.ls8{letter-spacing:3.733333pt;}
.lsb{letter-spacing:3.786667pt;}
.lsc{letter-spacing:3.840000pt;}
.lsa{letter-spacing:4.853333pt;}
.ls1f{letter-spacing:11.200000pt;}
.ls16{letter-spacing:12.266667pt;}
.ls15{letter-spacing:12.320000pt;}
.ls14{letter-spacing:13.333333pt;}
.ls18{letter-spacing:22.933333pt;}
.ls1a{letter-spacing:29.333333pt;}
.ls13{letter-spacing:36.800000pt;}
.lsf{letter-spacing:41.600000pt;}
.lse{letter-spacing:42.666667pt;}
.ls5{letter-spacing:1004.560000pt;}
.ls1b{letter-spacing:1190.266667pt;}
.ws7{word-spacing:-33.152000pt;}
.ws8{word-spacing:-32.970667pt;}
.ws6{word-spacing:-19.242667pt;}
.ws2{word-spacing:-19.104000pt;}
.ws0{word-spacing:-18.666667pt;}
.ws5{word-spacing:-18.624000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws1{word-spacing:0.000000pt;}
.ws4{word-spacing:1560.138667pt;}
._24{margin-left:-1572.832000pt;}
._23{margin-left:-1141.968000pt;}
._33{margin-left:-1133.813333pt;}
._2f{margin-left:-953.770667pt;}
._25{margin-left:-623.434667pt;}
._3d{margin-left:-442.976000pt;}
._29{margin-left:-429.205333pt;}
._41{margin-left:-293.349333pt;}
._3a{margin-left:-274.570667pt;}
._3c{margin-left:-272.064000pt;}
._32{margin-left:-182.122667pt;}
._42{margin-left:-174.933333pt;}
._40{margin-left:-162.666667pt;}
._44{margin-left:-153.312000pt;}
._39{margin-left:-123.989333pt;}
._30{margin-left:-98.549333pt;}
._43{margin-left:-95.466667pt;}
._38{margin-left:-87.317333pt;}
._37{margin-left:-77.589333pt;}
._3f{margin-left:-71.797333pt;}
._3e{margin-left:-64.000000pt;}
._31{margin-left:-57.845333pt;}
._2c{margin-left:-55.472000pt;}
._35{margin-left:-41.952000pt;}
._36{margin-left:-39.552000pt;}
._16{margin-left:-8.810667pt;}
._4{margin-left:-7.392000pt;}
._a{margin-left:-6.346667pt;}
._6{margin-left:-5.077333pt;}
._2{margin-left:-3.808000pt;}
._3{margin-left:-2.389333pt;}
._0{margin-left:-1.269333pt;}
._1{width:0.970667pt;}
._5{width:1.994667pt;}
._d{width:3.184000pt;}
._9{width:4.256000pt;}
._7{width:5.152000pt;}
._8{width:6.048000pt;}
._c{width:7.242667pt;}
._e{width:8.885333pt;}
._f{width:9.781333pt;}
._10{width:10.752000pt;}
._13{width:12.096000pt;}
._17{width:13.200000pt;}
._19{width:14.128000pt;}
._18{width:15.082667pt;}
._12{width:15.994667pt;}
._11{width:17.168000pt;}
._28{width:18.330667pt;}
._b{width:19.733333pt;}
._15{width:20.981333pt;}
._14{width:22.101333pt;}
._2b{width:23.221333pt;}
._21{width:24.266667pt;}
._20{width:25.312000pt;}
._3b{width:29.194667pt;}
._1b{width:30.688000pt;}
._1a{width:31.733333pt;}
._1c{width:32.778667pt;}
._1f{width:33.674667pt;}
._27{width:35.674667pt;}
._2d{width:36.800000pt;}
._1e{width:42.410667pt;}
._1d{width:43.754667pt;}
._22{width:44.922667pt;}
._47{width:47.936000pt;}
._46{width:48.832000pt;}
._48{width:68.117333pt;}
._49{width:69.440000pt;}
._34{width:162.293333pt;}
._2a{width:279.600000pt;}
._26{width:497.200000pt;}
._4a{width:749.626667pt;}
._2e{width:1402.405333pt;}
._45{width:1486.266667pt;}
.fs4{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:47.233333pt;}
.y1{bottom:52.566667pt;}
.y39{bottom:79.233333pt;}
.y2f{bottom:85.366667pt;}
.y38{bottom:97.633333pt;}
.y2e{bottom:106.700000pt;}
.y37{bottom:116.033333pt;}
.y36{bottom:123.500000pt;}
.y2d{bottom:128.300000pt;}
.y35{bottom:134.440000pt;}
.y2c{bottom:149.666667pt;}
.y2b{bottom:171.266667pt;}
.y2a{bottom:192.600000pt;}
.y29{bottom:214.200000pt;}
.y28{bottom:235.533333pt;}
.y27{bottom:257.133333pt;}
.y26{bottom:278.466667pt;}
.y25{bottom:300.106667pt;}
.y24{bottom:321.440000pt;}
.y23{bottom:343.026667pt;}
.y22{bottom:364.360000pt;}
.y21{bottom:385.960000pt;}
.y20{bottom:407.293333pt;}
.y1f{bottom:428.893333pt;}
.y1e{bottom:450.266667pt;}
.y1d{bottom:471.866667pt;}
.y1c{bottom:493.200000pt;}
.y1b{bottom:514.800000pt;}
.y1a{bottom:536.133333pt;}
.y19{bottom:557.733333pt;}
.y18{bottom:579.066667pt;}
.y17{bottom:600.693333pt;}
.y3a{bottom:621.506667pt;}
.y16{bottom:622.026667pt;}
.y15{bottom:643.626667pt;}
.y14{bottom:664.960000pt;}
.y13{bottom:686.560000pt;}
.y12{bottom:707.893333pt;}
.y11{bottom:729.506667pt;}
.y10{bottom:750.866667pt;}
.yf{bottom:772.466667pt;}
.ye{bottom:793.800000pt;}
.yd{bottom:815.400000pt;}
.yc{bottom:836.200000pt;}
.y33{bottom:836.733333pt;}
.yb{bottom:857.800000pt;}
.y32{bottom:858.333333pt;}
.ya{bottom:879.666667pt;}
.y9{bottom:901.293333pt;}
.y8{bottom:922.626667pt;}
.y7{bottom:944.226667pt;}
.y6{bottom:965.560000pt;}
.y5{bottom:987.173333pt;}
.y4{bottom:1007.960000pt;}
.y31{bottom:1008.506667pt;}
.y3{bottom:1029.560000pt;}
.y30{bottom:1030.106667pt;}
.y34{bottom:1038.893333pt;}
.hb{height:41.875000pt;}
.h8{height:47.109375pt;}
.h4{height:52.682292pt;}
.h3{height:54.818262pt;}
.ha{height:58.351562pt;}
.hc{height:62.812500pt;}
.h6{height:65.807292pt;}
.hd{height:66.093750pt;}
.h2{height:73.281250pt;}
.h5{height:75.250000pt;}
.h9{height:76.745567pt;}
.he{height:77.109375pt;}
.h7{height:1122.383200pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.850000pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:75.500000pt;}
.xe{left:91.500000pt;}
.x3{left:94.166667pt;}
.xf{left:107.500000pt;}
.x7{left:111.500000pt;}
.x5{left:113.366667pt;}
.x4{left:180.866667pt;}
.x9{left:213.400000pt;}
.xa{left:250.466667pt;}
.xd{left:267.573333pt;}
.x8{left:301.973333pt;}
.x6{left:319.026667pt;}
.x1{left:382.800000pt;}
.xb{left:520.956667pt;}
.xc{left:539.360000pt;}
}




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