
    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_6ad16715492667ddd48da16e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.937988;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_7fc35796099c00f55a3e889d.woff2')format("woff");}.ff2{font-family:ff2;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;}
@font-face{font-family:ff3;src:url('chunks/assets/font_995a17c4613051ff85e809cd.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.717285;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_b5f9f0e90388e0826ef1234e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.937988;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_fb55e6f1cdbad773a7c0c2c3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.746094;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;}
.m1{transform:matrix(0.242529,0.000000,-0.060632,0.242536,0,0);-ms-transform:matrix(0.242529,0.000000,-0.060632,0.242536,0,0);-webkit-transform:matrix(0.242529,0.000000,-0.060632,0.242536,0,0);}
.m0{transform:matrix(0.249993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249993,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249993,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-64.774992px;}
.v5{vertical-align:-44.982675px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:53.979210px;}
.v3{vertical-align:64.774992px;}
.v1{vertical-align:86.366676px;}
.ls12{letter-spacing:-6.855360px;}
.ls10{letter-spacing:-2.375085px;}
.lsf{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.000600px;}
.ls3{letter-spacing:0.017573px;}
.lsd{letter-spacing:0.022191px;}
.lse{letter-spacing:0.028789px;}
.ls2{letter-spacing:0.034307px;}
.ls7{letter-spacing:0.035986px;}
.ls8{letter-spacing:0.042883px;}
.ls0{letter-spacing:0.045582px;}
.ls1{letter-spacing:0.047982px;}
.lsb{letter-spacing:0.629757px;}
.lsa{letter-spacing:0.665744px;}
.ls6{letter-spacing:8.186847px;}
.ls11{letter-spacing:94.067770px;}
.ls4{letter-spacing:127.913274px;}
.ls9{letter-spacing:128.246206px;}
.ls5{letter-spacing:132.007478px;}
.sc_{text-shadow:none;}
.sc3{text-shadow:-0.015em 0 rgb(0,0,255),0 0.015em rgb(0,0,255),0.015em 0 rgb(0,0,255),0 -0.015em  rgb(0,0,255);}
.sc2{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc3{-webkit-text-stroke:0.015em rgb(0,0,255);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2{word-spacing:-53.169522px;}
.ws3{word-spacing:-46.367006px;}
.ws5{word-spacing:-45.612432px;}
.ws4{word-spacing:-45.018661px;}
.ws0{word-spacing:-44.982675px;}
.ws1{word-spacing:-42.607590px;}
.ws7{word-spacing:-38.127315px;}
.ws6{word-spacing:-29.988450px;}
.ws8{word-spacing:0.000000px;}
._17{margin-left:-92.844241px;}
._15{margin-left:-90.325211px;}
._18{margin-left:-89.245627px;}
._16{margin-left:-87.986112px;}
._14{margin-left:-85.826944px;}
._19{margin-left:-73.951518px;}
._4{margin-left:-35.896774px;}
._2b{margin-left:-24.147180px;}
._2{margin-left:-21.591684px;}
._2f{margin-left:-20.482711px;}
._1d{margin-left:-15.254525px;}
._20{margin-left:-13.563176px;}
._1a{margin-left:-11.335634px;}
._0{margin-left:-9.320650px;}
._13{margin-left:-8.173952px;}
._3{margin-left:-7.110861px;}
._6{margin-left:-5.195319px;}
._5{margin-left:-3.656192px;}
._9{margin-left:-2.547819px;}
._12{margin-left:-1.428650px;}
._7{width:1.022006px;}
._e{width:2.267127px;}
._8{width:3.591417px;}
._d{width:4.742973px;}
._10{width:6.711415px;}
._f{width:8.078888px;}
._1f{width:9.295220px;}
._24{width:10.399994px;}
._28{width:14.034595px;}
._29{width:15.080765px;}
._27{width:17.383825px;}
._21{width:18.932308px;}
._b{width:20.116252px;}
._22{width:21.351776px;}
._25{width:22.768431px;}
._a{width:32.276389px;}
._c{width:34.225998px;}
._11{width:35.410362px;}
._39{width:36.507939px;}
._2e{width:40.603642px;}
._2d{width:42.099106px;}
._1{width:44.255755px;}
._1c{width:56.456136px;}
._1b{width:58.267678px;}
._1e{width:64.559135px;}
._23{width:68.049791px;}
._2a{width:77.640097px;}
._3a{width:80.043971px;}
._2c{width:89.942679px;}
._26{width:92.034553px;}
._33{width:553.778512px;}
._38{width:607.245402px;}
._34{width:658.722915px;}
._37{width:660.706232px;}
._36{width:751.958326px;}
._30{width:768.527962px;}
._35{width:846.253228px;}
._31{width:1097.698105px;}
._32{width:1388.509239px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:119.953800px;}
.fs3{font-size:143.944560px;}
.fs6{font-size:179.930700px;}
.fs7{font-size:185.468022px;}
.fs2{font-size:191.926080px;}
.fs4{font-size:215.916840px;}
.fs5{font-size:239.907600px;}
.fs1{font-size:287.889120px;}
.fs0{font-size:395.847540px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.981678px;}
.y21{bottom:165.044997px;}
.y20{bottom:219.023847px;}
.y1f{bottom:273.003297px;}
.y1e{bottom:326.982597px;}
.y1d{bottom:380.961447px;}
.y1c{bottom:434.940897px;}
.y1b{bottom:488.920347px;}
.y1a{bottom:542.899197px;}
.y19{bottom:596.878647px;}
.y18{bottom:650.857947px;}
.y17{bottom:783.588522px;}
.y32{bottom:933.417297px;}
.y4c{bottom:940.852347px;}
.y31{bottom:987.396597px;}
.y4b{bottom:994.831797px;}
.y30{bottom:1041.375897px;}
.y4a{bottom:1048.810947px;}
.y2f{bottom:1095.355197px;}
.y49{bottom:1102.789947px;}
.y48{bottom:1156.769397px;}
.y47{bottom:1210.748547px;}
.y46{bottom:1264.727697px;}
.y45{bottom:1318.706997px;}
.y44{bottom:1372.686147px;}
.y43{bottom:1426.665297px;}
.y2e{bottom:1557.251922px;}
.y42{bottom:1701.418647px;}
.y41{bottom:1766.193147px;}
.y40{bottom:1830.967647px;}
.y3f{bottom:1895.743647px;}
.y3e{bottom:1960.518147px;}
.y3d{bottom:2025.292647px;}
.y3c{bottom:2090.068647px;}
.y3b{bottom:2187.616647px;}
.y3a{bottom:2241.595647px;}
.y2c{bottom:2498.069922px;}
.y2b{bottom:2641.512147px;}
.y2a{bottom:2695.491147px;}
.y29{bottom:2749.470147px;}
.y28{bottom:2803.450647px;}
.y27{bottom:2857.429647px;}
.y26{bottom:2911.408647px;}
.y25{bottom:2965.387647px;}
.y24{bottom:3019.366647px;}
.y23{bottom:3073.345647px;}
.y22{bottom:3208.337922px;}
.y16{bottom:3360.517647px;}
.y15{bottom:3414.496647px;}
.y14{bottom:3468.475647px;}
.y13{bottom:3522.454647px;}
.y12{bottom:3576.433647px;}
.y11{bottom:3630.412647px;}
.y10{bottom:3684.391647px;}
.yf{bottom:3738.372147px;}
.y2d{bottom:3759.554922px;}
.ye{bottom:3792.351147px;}
.yd{bottom:3846.330147px;}
.yc{bottom:3900.309147px;}
.y39{bottom:3900.742647px;}
.yb{bottom:3954.288147px;}
.y38{bottom:3965.517147px;}
.ya{bottom:4008.267147px;}
.y37{bottom:4030.293147px;}
.y9{bottom:4062.246147px;}
.y36{bottom:4095.067647px;}
.y8{bottom:4116.225147px;}
.y35{bottom:4159.842147px;}
.y34{bottom:4224.618147px;}
.y7{bottom:4249.460922px;}
.y33{bottom:4289.392647px;}
.y6{bottom:4437.462360px;}
.y5{bottom:4501.938360px;}
.y4{bottom:4554.718542px;}
.y3{bottom:4640.185542px;}
.y2{bottom:4842.299937px;}
.h5{height:104.795576px;}
.h7{height:130.994470px;}
.h8{height:135.025792px;}
.h9{height:141.308856px;}
.h6{height:174.659293px;}
.h4{height:209.591151px;}
.h3{height:226.094110px;}
.h2{height:288.187833px;}
.h1{height:5101.036500px;}
.h0{height:5103.000000px;}
.w1{width:3571.363500px;}
.w0{width:3571.500000px;}
.x0{left:0.000000px;}
.x7{left:154.968000px;}
.x6{left:161.443050px;}
.x8{left:208.945800px;}
.x4{left:297.243450px;}
.x1{left:428.476043px;}
.x2{left:741.060450px;}
.x5{left:798.036900px;}
.x3{left:1771.135500px;}
.x14{left:1871.511000px;}
.xa{left:1874.196000px;}
.x9{left:1880.670000px;}
.x10{left:1925.439973px;}
.x11{left:1928.173500px;}
.xf{left:1963.283254px;}
.xb{left:2060.271649px;}
.xc{left:2235.396865px;}
.x13{left:2292.470473px;}
.x12{left:2330.313754px;}
.xd{left:2516.259368px;}
.xe{left:3416.122501px;}
@media print{
.v2{vertical-align:-57.577771pt;}
.v5{vertical-align:-39.984600pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:47.981520pt;}
.v3{vertical-align:57.577771pt;}
.v1{vertical-align:76.770379pt;}
.ls12{letter-spacing:-6.093653pt;}
.ls10{letter-spacing:-2.111187pt;}
.lsf{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.000533pt;}
.ls3{letter-spacing:0.015621pt;}
.lsd{letter-spacing:0.019726pt;}
.lse{letter-spacing:0.025590pt;}
.ls2{letter-spacing:0.030495pt;}
.ls7{letter-spacing:0.031988pt;}
.ls8{letter-spacing:0.038119pt;}
.ls0{letter-spacing:0.040518pt;}
.ls1{letter-spacing:0.042650pt;}
.lsb{letter-spacing:0.559784pt;}
.lsa{letter-spacing:0.591772pt;}
.ls6{letter-spacing:7.277197pt;}
.ls11{letter-spacing:83.615796pt;}
.ls4{letter-spacing:113.700688pt;}
.ls9{letter-spacing:113.996628pt;}
.ls5{letter-spacing:117.339980pt;}
.ws2{word-spacing:-47.261797pt;}
.ws3{word-spacing:-41.215116pt;}
.ws5{word-spacing:-40.544384pt;}
.ws4{word-spacing:-40.016588pt;}
.ws0{word-spacing:-39.984600pt;}
.ws1{word-spacing:-37.873413pt;}
.ws7{word-spacing:-33.890947pt;}
.ws6{word-spacing:-26.656400pt;}
.ws8{word-spacing:0.000000pt;}
._17{margin-left:-82.528214pt;}
._15{margin-left:-80.289077pt;}
._18{margin-left:-79.329446pt;}
._16{margin-left:-78.209878pt;}
._14{margin-left:-76.290617pt;}
._19{margin-left:-65.734682pt;}
._4{margin-left:-31.908244pt;}
._2b{margin-left:-21.464160pt;}
._2{margin-left:-19.192608pt;}
._2f{margin-left:-18.206854pt;}
._1d{margin-left:-13.559578pt;}
._20{margin-left:-12.056157pt;}
._1a{margin-left:-10.076119pt;}
._0{margin-left:-8.285022pt;}
._13{margin-left:-7.265735pt;}
._3{margin-left:-6.320766pt;}
._6{margin-left:-4.618061pt;}
._5{margin-left:-3.249948pt;}
._9{margin-left:-2.264728pt;}
._12{margin-left:-1.269911pt;}
._7{width:0.908450pt;}
._e{width:2.015224pt;}
._8{width:3.192370pt;}
._d{width:4.215976pt;}
._10{width:5.965702pt;}
._f{width:7.181234pt;}
._1f{width:8.262418pt;}
._24{width:9.244440pt;}
._28{width:12.475195pt;}
._29{width:13.405124pt;}
._27{width:15.452289pt;}
._21{width:16.828718pt;}
._b{width:17.881113pt;}
._22{width:18.979357pt;}
._25{width:20.238605pt;}
._a{width:28.690123pt;}
._c{width:30.423109pt;}
._11{width:31.475877pt;}
._39{width:32.451501pt;}
._2e{width:36.092126pt;}
._2d{width:37.421427pt;}
._1{width:39.338449pt;}
._1c{width:50.183232pt;}
._1b{width:51.793492pt;}
._1e{width:57.385898pt;}
._23{width:60.488703pt;}
._2a{width:69.013420pt;}
._3a{width:71.150197pt;}
._2c{width:79.949048pt;}
._26{width:81.808492pt;}
._33{width:492.247566pt;}
._38{width:539.773691pt;}
._34{width:585.531480pt;}
._37{width:587.294428pt;}
._36{width:668.407401pt;}
._30{width:683.135966pt;}
._35{width:752.225092pt;}
._31{width:975.731649pt;}
._32{width:1234.230435pt;}
.fs8{font-size:106.625600pt;}
.fs3{font-size:127.950720pt;}
.fs6{font-size:159.938400pt;}
.fs7{font-size:164.860464pt;}
.fs2{font-size:170.600960pt;}
.fs4{font-size:191.926080pt;}
.fs5{font-size:213.251200pt;}
.fs1{font-size:255.901440pt;}
.fs0{font-size:351.864480pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.872603pt;}
.y21{bottom:146.706664pt;}
.y20{bottom:194.687864pt;}
.y1f{bottom:242.669597pt;}
.y1e{bottom:290.651197pt;}
.y1d{bottom:338.632397pt;}
.y1c{bottom:386.614131pt;}
.y1b{bottom:434.595864pt;}
.y1a{bottom:482.577064pt;}
.y19{bottom:530.558797pt;}
.y18{bottom:578.540397pt;}
.y17{bottom:696.523131pt;}
.y32{bottom:829.704264pt;}
.y4c{bottom:836.313197pt;}
.y31{bottom:877.685864pt;}
.y4b{bottom:884.294931pt;}
.y30{bottom:925.667464pt;}
.y4a{bottom:932.276397pt;}
.y2f{bottom:973.649064pt;}
.y49{bottom:980.257731pt;}
.y48{bottom:1028.239464pt;}
.y47{bottom:1076.220931pt;}
.y46{bottom:1124.202397pt;}
.y45{bottom:1172.183997pt;}
.y44{bottom:1220.165464pt;}
.y43{bottom:1268.146931pt;}
.y2e{bottom:1384.223931pt;}
.y42{bottom:1512.372131pt;}
.y41{bottom:1569.949464pt;}
.y40{bottom:1627.526797pt;}
.y3f{bottom:1685.105464pt;}
.y3e{bottom:1742.682797pt;}
.y3d{bottom:1800.260131pt;}
.y3c{bottom:1857.838797pt;}
.y3b{bottom:1944.548131pt;}
.y3a{bottom:1992.529464pt;}
.y2c{bottom:2220.506597pt;}
.y2b{bottom:2348.010797pt;}
.y2a{bottom:2395.992131pt;}
.y29{bottom:2443.973464pt;}
.y28{bottom:2491.956131pt;}
.y27{bottom:2539.937464pt;}
.y26{bottom:2587.918797pt;}
.y25{bottom:2635.900131pt;}
.y24{bottom:2683.881464pt;}
.y23{bottom:2731.862797pt;}
.y22{bottom:2851.855931pt;}
.y16{bottom:2987.126797pt;}
.y15{bottom:3035.108131pt;}
.y14{bottom:3083.089464pt;}
.y13{bottom:3131.070797pt;}
.y12{bottom:3179.052131pt;}
.y11{bottom:3227.033464pt;}
.y10{bottom:3275.014797pt;}
.yf{bottom:3322.997464pt;}
.y2d{bottom:3341.826597pt;}
.ye{bottom:3370.978797pt;}
.yd{bottom:3418.960131pt;}
.yc{bottom:3466.941464pt;}
.y39{bottom:3467.326797pt;}
.yb{bottom:3514.922797pt;}
.y38{bottom:3524.904131pt;}
.ya{bottom:3562.904131pt;}
.y37{bottom:3582.482797pt;}
.y9{bottom:3610.885464pt;}
.y36{bottom:3640.060131pt;}
.y8{bottom:3658.866797pt;}
.y35{bottom:3697.637464pt;}
.y34{bottom:3755.216131pt;}
.y7{bottom:3777.298597pt;}
.y33{bottom:3812.793464pt;}
.y6{bottom:3944.410987pt;}
.y5{bottom:4001.722987pt;}
.y4{bottom:4048.638704pt;}
.y3{bottom:4124.609371pt;}
.y2{bottom:4304.266611pt;}
.h5{height:93.151623pt;}
.h7{height:116.439529pt;}
.h8{height:120.022926pt;}
.h9{height:125.607872pt;}
.h6{height:155.252705pt;}
.h4{height:186.303246pt;}
.h3{height:200.972542pt;}
.h2{height:256.166963pt;}
.h1{height:4534.254667pt;}
.h0{height:4536.000000pt;}
.w1{width:3174.545333pt;}
.w0{width:3174.666667pt;}
.x0{left:0.000000pt;}
.x7{left:137.749333pt;}
.x6{left:143.504933pt;}
.x8{left:185.729600pt;}
.x4{left:264.216400pt;}
.x1{left:380.867594pt;}
.x2{left:658.720400pt;}
.x5{left:709.366133pt;}
.x3{left:1574.342667pt;}
.x14{left:1663.565333pt;}
.xa{left:1665.952000pt;}
.x9{left:1671.706667pt;}
.x10{left:1711.502199pt;}
.x11{left:1713.932000pt;}
.xf{left:1745.140670pt;}
.xb{left:1831.352577pt;}
.xc{left:1987.019436pt;}
.x13{left:2037.751532pt;}
.x12{left:2071.390004pt;}
.xd{left:2236.674994pt;}
.xe{left:3036.553335pt;}
}




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