
    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_c6c2c69fcadc8ffe25699774.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.913086;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_c30bb802facde43e92ebc996.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.666000;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_1893687f077b30c3706e08f5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.967773;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_eca7180c689ca45c778d820c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.909180;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_9dd777c9375c4a0ce622802d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.733398;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_c9443d5c7e1f72fe38400347.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_b17c7c7e1fd12594fd235c7a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.967000;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_0184e0385c94cbaa572f7aa7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.936523;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_b6940aef3ed842b6e4861408.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.049000;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:ffa;src:url('chunks/assets/font_039eafdc30168a97497cede4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.981445;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:ffb;src:url('chunks/assets/font_b49719f956eab13dfd33d58d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.881836;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:ffc;src:url('chunks/assets/font_35df12d721c1f45f5fc5eded.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.727539;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:ffd;src:url('chunks/assets/font_e85d1ff6e1558b02b37d02b6.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910156;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:ffe;src:url('chunks/assets/font_d54dec906c6a50755da82b46.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910156;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:fff;src:url('chunks/assets/font_f17d9ead8348d064f310af44.woff2')format("woff");}.fff{font-family:fff;line-height:0.759000;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:ff10;src:url('chunks/assets/font_69fd85e4e7fe288136b9ffbb.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.708000;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.000000,-0.250038,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250038,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250038,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.249962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249962,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249962,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:22.765779px;}
.v2{vertical-align:54.459965px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws2{word-spacing:0.000000px;}
.ws1{word-spacing:523.196535px;}
.ws0{word-spacing:1196.140756px;}
._10{margin-left:-10290.061296px;}
._13{margin-left:-1336.257773px;}
._2{margin-left:-31.205542px;}
._1{margin-left:-26.404690px;}
._f{margin-left:-15.482809px;}
._e{margin-left:-14.402613px;}
._c{margin-left:-13.322417px;}
._0{margin-left:-11.762107px;}
._15{margin-left:-10.291845px;}
._4{margin-left:-7.441334px;}
._9{margin-left:-5.280946px;}
._8{margin-left:-2.494335px;}
._5{margin-left:-1.425334px;}
._7{width:1.069001px;}
._6{width:2.138001px;}
._b{width:13.682483px;}
._d{width:16.563005px;}
._3{width:23.404157px;}
._11{width:826.468136px;}
._a{width:948.953035px;}
._12{width:1415.533724px;}
._14{width:1553.856493px;}
.fc2{color:transparent;}
.fc1{color:rgb(174,37,2);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:71.266716px;}
.fsb{font-size:139.188990px;}
.fsc{font-size:180.004830px;}
.fs10{font-size:180.032154px;}
.fs9{font-size:198.698154px;}
.fsa{font-size:210.037374px;}
.fse{font-size:210.037656px;}
.fs8{font-size:210.037920px;}
.fsf{font-size:210.037926px;}
.fsd{font-size:240.042726px;}
.fs5{font-size:240.042900px;}
.fs0{font-size:240.042990px;}
.fs2{font-size:240.043026px;}
.fs3{font-size:300.054126px;}
.fs6{font-size:360.065334px;}
.fs7{font-size:480.087840px;}
.fs1{font-size:600.106584px;}
.y0{bottom:0.000000px;}
.y14{bottom:94.559833px;}
.y1b{bottom:95.863730px;}
.y13{bottom:116.830700px;}
.y12{bottom:139.101566px;}
.y11{bottom:161.372433px;}
.y10{bottom:183.643174px;}
.y1a{bottom:211.551552px;}
.y19{bottom:327.239374px;}
.y38{bottom:454.788033px;}
.y37{bottom:520.425042px;}
.y36{bottom:586.062051px;}
.y35{bottom:651.699061px;}
.y1d{bottom:665.136261px;}
.y34{bottom:717.336070px;}
.y33{bottom:782.973080px;}
.y29{bottom:1154.403646px;}
.y1c{bottom:1593.743988px;}
.y18{bottom:1751.675568px;}
.y25{bottom:1908.236282px;}
.y32{bottom:1965.004723px;}
.y26{bottom:1972.940162px;}
.y31{bottom:2031.993800px;}
.y30{bottom:2097.170915px;}
.y2f{bottom:2163.647308px;}
.y2e{bottom:2230.123701px;}
.y2d{bottom:2296.600094px;}
.y2c{bottom:2363.076382px;}
.y28{bottom:2427.090899px;}
.y2b{bottom:2429.552670px;}
.y27{bottom:2469.372408px;}
.y2a{bottom:2524.787679px;}
.y39{bottom:2573.774579px;}
.y17{bottom:2661.626559px;}
.y24{bottom:2812.482404px;}
.y23{bottom:2878.119254px;}
.y22{bottom:2943.756104px;}
.y21{bottom:3009.392954px;}
.y20{bottom:3076.382186px;}
.y1f{bottom:3142.019036px;}
.y1e{bottom:3209.008215px;}
.y16{bottom:3348.432484px;}
.y15{bottom:3358.608696px;}
.yf{bottom:3961.590159px;}
.ye{bottom:4055.357073px;}
.yd{bottom:4149.123988px;}
.ya{bottom:4161.351486px;}
.yc{bottom:4242.890902px;}
.y6{bottom:4259.681924px;}
.y3{bottom:4266.242539px;}
.y5{bottom:4335.654870px;}
.yb{bottom:4336.657817px;}
.y2{bottom:4342.215485px;}
.y4{bottom:4411.627816px;}
.y1{bottom:4418.188431px;}
.y9{bottom:4497.755418px;}
.y8{bottom:4690.567713px;}
.y7{bottom:4883.380008px;}
.h6{height:53.592570px;}
.h10{height:98.139112px;}
.h11{height:126.917468px;}
.h17{height:136.782242px;}
.he{height:140.097722px;}
.hf{height:148.092758px;}
.h14{height:151.990140px;}
.hc{height:151.990331px;}
.h15{height:151.990335px;}
.h13{height:154.041289px;}
.hd{height:154.041482px;}
.h16{height:154.041487px;}
.h12{height:173.702793px;}
.h1{height:173.702984px;}
.h7{height:182.376412px;}
.h3{height:182.376440px;}
.h5{height:217.129011px;}
.h4{height:220.059227px;}
.h8{height:236.836377px;}
.ha{height:277.970438px;}
.h9{height:278.488032px;}
.hb{height:338.499434px;}
.h2{height:399.670985px;}
.h0{height:5056.500000px;}
.w0{width:3576.000000px;}
.x0{left:0.000000px;}
.x8{left:82.311396px;}
.x13{left:145.833870px;}
.x1f{left:171.532314px;}
.x1c{left:217.734588px;}
.xd{left:305.966950px;}
.x18{left:318.137874px;}
.xc{left:324.680853px;}
.x14{left:326.053119px;}
.xb{left:360.533842px;}
.x10{left:410.286757px;}
.x7{left:433.620040px;}
.x1e{left:436.208166px;}
.x9{left:476.821235px;}
.x12{left:548.685784px;}
.x1d{left:741.866769px;}
.xe{left:768.229134px;}
.x15{left:801.110548px;}
.xf{left:1202.017628px;}
.x16{left:2160.702992px;}
.xa{left:2328.084606px;}
.x11{left:2384.062701px;}
.x1{left:2455.423652px;}
.x20{left:2496.247419px;}
.x2{left:2503.706170px;}
.x3{left:2523.701803px;}
.x19{left:2712.756855px;}
.x1a{left:2777.338197px;}
.x4{left:3000.231025px;}
.x1b{left:3067.913436px;}
.x5{left:3074.104980px;}
.x6{left:3096.839923px;}
.x17{left:3164.681660px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:20.236248pt;}
.v2{vertical-align:48.408858pt;}
.ls0{letter-spacing:0.000000pt;}
.ws2{word-spacing:0.000000pt;}
.ws1{word-spacing:465.063587pt;}
.ws0{word-spacing:1063.236228pt;}
._10{margin-left:-9146.721152pt;}
._13{margin-left:-1187.784687pt;}
._2{margin-left:-27.738260pt;}
._1{margin-left:-23.470835pt;}
._f{margin-left:-13.762497pt;}
._e{margin-left:-12.802323pt;}
._c{margin-left:-11.842149pt;}
._0{margin-left:-10.455206pt;}
._15{margin-left:-9.148307pt;}
._4{margin-left:-6.614519pt;}
._9{margin-left:-4.694174pt;}
._8{margin-left:-2.217187pt;}
._5{margin-left:-1.266964pt;}
._7{width:0.950223pt;}
._6{width:1.900446pt;}
._b{width:12.162207pt;}
._d{width:14.722671pt;}
._3{width:20.803695pt;}
._11{width:734.638343pt;}
._a{width:843.513809pt;}
._12{width:1258.252199pt;}
._14{width:1381.205771pt;}
.fs4{font-size:63.348192pt;}
.fsb{font-size:123.723547pt;}
.fsc{font-size:160.004293pt;}
.fs10{font-size:160.028581pt;}
.fs9{font-size:176.620581pt;}
.fsa{font-size:186.699888pt;}
.fse{font-size:186.700139pt;}
.fs8{font-size:186.700373pt;}
.fsf{font-size:186.700379pt;}
.fsd{font-size:213.371312pt;}
.fs5{font-size:213.371467pt;}
.fs0{font-size:213.371547pt;}
.fs2{font-size:213.371579pt;}
.fs3{font-size:266.714779pt;}
.fs6{font-size:320.058075pt;}
.fs7{font-size:426.744747pt;}
.fs1{font-size:533.428075pt;}
.y0{bottom:0.000000pt;}
.y14{bottom:84.053185pt;}
.y1b{bottom:85.212205pt;}
.y13{bottom:103.849511pt;}
.y12{bottom:123.645837pt;}
.y11{bottom:143.442162pt;}
.y10{bottom:163.238377pt;}
.y1a{bottom:188.045824pt;}
.y19{bottom:290.879443pt;}
.y38{bottom:404.256029pt;}
.y37{bottom:462.600037pt;}
.y36{bottom:520.944046pt;}
.y35{bottom:579.288054pt;}
.y1d{bottom:591.232232pt;}
.y34{bottom:637.632062pt;}
.y33{bottom:695.976071pt;}
.y29{bottom:1026.136575pt;}
.y1c{bottom:1416.661323pt;}
.y18{bottom:1557.044949pt;}
.y25{bottom:1696.210028pt;}
.y32{bottom:1746.670865pt;}
.y26{bottom:1753.724588pt;}
.y31{bottom:1806.216711pt;}
.y30{bottom:1864.151924pt;}
.y2f{bottom:1923.242051pt;}
.y2e{bottom:1982.332179pt;}
.y2d{bottom:2041.422306pt;}
.y2c{bottom:2100.512340pt;}
.y28{bottom:2157.414132pt;}
.y2b{bottom:2159.602373pt;}
.y27{bottom:2194.997696pt;}
.y2a{bottom:2244.255715pt;}
.y39{bottom:2287.799625pt;}
.y17{bottom:2365.890275pt;}
.y24{bottom:2499.984359pt;}
.y23{bottom:2558.328226pt;}
.y22{bottom:2616.672093pt;}
.y21{bottom:2675.015959pt;}
.y20{bottom:2734.561943pt;}
.y1f{bottom:2792.905810pt;}
.y1e{bottom:2852.451747pt;}
.y16{bottom:2976.384431pt;}
.y15{bottom:2985.429952pt;}
.yf{bottom:3521.413475pt;}
.ye{bottom:3604.761843pt;}
.yd{bottom:3688.110211pt;}
.ya{bottom:3698.979099pt;}
.yc{bottom:3771.458580pt;}
.y6{bottom:3786.383932pt;}
.y3{bottom:3792.215590pt;}
.y5{bottom:3853.915440pt;}
.yb{bottom:3854.806948pt;}
.y2{bottom:3859.747098pt;}
.y4{bottom:3921.446948pt;}
.y1{bottom:3927.278605pt;}
.y9{bottom:3998.004816pt;}
.y8{bottom:4169.393523pt;}
.y7{bottom:4340.782229pt;}
.h6{height:47.637840pt;}
.h10{height:87.234766pt;}
.h11{height:112.815527pt;}
.h17{height:121.584215pt;}
.he{height:124.531308pt;}
.hf{height:131.638007pt;}
.h14{height:135.102346pt;}
.hc{height:135.102516pt;}
.h15{height:135.102520pt;}
.h13{height:136.925590pt;}
.hd{height:136.925762pt;}
.h16{height:136.925766pt;}
.h12{height:154.402483pt;}
.h1{height:154.402652pt;}
.h7{height:162.112367pt;}
.h3{height:162.112391pt;}
.h5{height:193.003565pt;}
.h4{height:195.608202pt;}
.h8{height:210.521224pt;}
.ha{height:247.084834pt;}
.h9{height:247.544917pt;}
.hb{height:300.888386pt;}
.h2{height:355.263098pt;}
.h0{height:4494.666667pt;}
.w0{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x8{left:73.165685pt;}
.x13{left:129.630107pt;}
.x1f{left:152.473168pt;}
.x1c{left:193.541856pt;}
.xd{left:271.970622pt;}
.x18{left:282.789221pt;}
.xc{left:288.605203pt;}
.x14{left:289.824995pt;}
.xb{left:320.474527pt;}
.x10{left:364.699340pt;}
.x7{left:385.440036pt;}
.x1e{left:387.740592pt;}
.x9{left:423.841098pt;}
.x12{left:487.720697pt;}
.x1d{left:659.437128pt;}
.xe{left:682.870342pt;}
.x15{left:712.098265pt;}
.xf{left:1068.460114pt;}
.x16{left:1920.624881pt;}
.xa{left:2069.408539pt;}
.x11{left:2119.166845pt;}
.x1{left:2182.598801pt;}
.x20{left:2218.886595pt;}
.x2{left:2225.516595pt;}
.x3{left:2243.290491pt;}
.x19{left:2411.339427pt;}
.x1a{left:2468.745064pt;}
.x4{left:2666.872023pt;}
.x1b{left:2727.034165pt;}
.x5{left:2732.537760pt;}
.x6{left:2752.746599pt;}
.x17{left:2813.050364pt;}
}




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