
    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_d483306c7bceab77acf9fc62.woff')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_a5f75ba3a9abaf2f0c5e0a50.woff')format("woff");}.ff2{font-family:ff2;line-height:0.939453;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_0a160c4bb1cbd58648a7e760.woff')format("woff");}.ff3{font-family:ff3;line-height:0.926270;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_36c43d624b5f72ab42bdd21b.woff')format("woff");}.ff4{font-family:ff4;line-height:0.932129;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_109a6dafd65ed02cfd04feb5.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_1ce710cf756873c6404db071.woff')format("woff");}.ff6{font-family:ff6;line-height:0.932129;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_5aff75234e9869734272e2a2.woff')format("woff");}.ff7{font-family:ff7;line-height:0.856000;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_7f14faca5589d4ad6b7341e0.woff')format("woff");}.ff8{font-family:ff8;line-height:1.000000;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.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);}
.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);}
.v3{vertical-align:-46.596960px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:67.970382px;}
.v2{vertical-align:74.555040px;}
.ls7{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.011532px;}
.ls3{letter-spacing:0.014723px;}
.ls1{letter-spacing:0.038104px;}
.ls0{letter-spacing:0.038112px;}
.ls2{letter-spacing:0.155057px;}
.ls6{letter-spacing:17.472013px;}
.ls5{letter-spacing:38.784029px;}
.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:-192.000144px;}
.ws5{word-spacing:-144.000000px;}
.ws3{word-spacing:-53.184040px;}
.ws0{word-spacing:-53.184000px;}
.ws1{word-spacing:-26.847285px;}
.ws6{word-spacing:0.000000px;}
.ws4{word-spacing:755.999988px;}
._11{margin-left:-21.312016px;}
._0{margin-left:-14.208000px;}
._3{margin-left:-11.721600px;}
._10{margin-left:-10.560008px;}
._8{margin-left:-8.620437px;}
._6{margin-left:-7.228800px;}
._4{margin-left:-5.808000px;}
._5{margin-left:-3.907200px;}
._2{margin-left:-1.900800px;}
._7{width:2.223985px;}
._d{width:3.456003px;}
._16{width:7.296005px;}
._14{width:16.512012px;}
._13{width:17.664013px;}
._f{width:19.008014px;}
._9{width:22.848017px;}
._e{width:25.728019px;}
._21{width:26.880041px;}
._1c{width:28.224011px;}
._1a{width:29.568022px;}
._24{width:31.248000px;}
._1f{width:34.944026px;}
._1e{width:37.440028px;}
._12{width:38.784029px;}
._20{width:48.000036px;}
._a{width:49.152037px;}
._1d{width:50.304038px;}
._22{width:57.216043px;}
._15{width:62.592047px;}
._18{width:64.320048px;}
._c{width:65.664049px;}
._19{width:75.648057px;}
._1b{width:82.560062px;}
._23{width:87.120000px;}
._b{width:88.128066px;}
._17{width:216.384162px;}
._1{width:1148.805600px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,84,159);}
.fc2{color:rgb(0,128,0);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsc{font-size:75.720054px;}
.fs4{font-size:86.400000px;}
.fs9{font-size:96.921606px;}
.fsb{font-size:96.922200px;}
.fs3{font-size:105.600000px;}
.fsd{font-size:116.492394px;}
.fs10{font-size:144.000000px;}
.fs8{font-size:180.562794px;}
.fsa{font-size:186.387600px;}
.fs2{font-size:189.057000px;}
.fs6{font-size:189.057126px;}
.fs1{font-size:192.000000px;}
.fse{font-size:192.000144px;}
.fs5{font-size:226.868646px;}
.fs0{font-size:226.869000px;}
.fs7{font-size:288.000000px;}
.fsf{font-size:360.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:58.130529px;}
.y15{bottom:71.197183px;}
.y6{bottom:91.194655px;}
.y14{bottom:104.133058px;}
.yc{bottom:119.099114px;}
.y4{bottom:119.549518px;}
.y7{bottom:124.258780px;}
.y13{bottom:137.197183px;}
.y8{bottom:157.194655px;}
.y12{bottom:170.197183px;}
.yb{bottom:178.179466px;}
.y3{bottom:178.629831px;}
.y11{bottom:203.197183px;}
.y10{bottom:236.197183px;}
.ya{bottom:237.259818px;}
.y2{bottom:237.710144px;}
.yf{bottom:269.197183px;}
.y9{bottom:282.648951px;}
.y1{bottom:300.091875px;}
.ye{bottom:302.197183px;}
.yd{bottom:335.197183px;}
.y57{bottom:507.720657px;}
.y43{bottom:533.634088px;}
.y55{bottom:589.787481px;}
.y42{bottom:593.750725px;}
.y5b{bottom:627.980483px;}
.y41{bottom:653.867362px;}
.y5a{bottom:678.256667px;}
.y40{bottom:713.867407px;}
.y59{bottom:728.532850px;}
.y58{bottom:778.809035px;}
.y3f{bottom:803.609618px;}
.y54{bottom:838.664049px;}
.y56{bottom:850.669869px;}
.y3e{bottom:863.609663px;}
.y3d{bottom:923.609708px;}
.y31{bottom:1044.684394px;}
.y4e{bottom:1213.664026px;}
.y3c{bottom:1240.842330px;}
.y4d{bottom:1261.664050px;}
.y3b{bottom:1300.842375px;}
.y3a{bottom:1390.467946px;}
.y39{bottom:1450.467991px;}
.y38{bottom:1510.468036px;}
.y37{bottom:1570.584673px;}
.y36{bottom:1682.593765px;}
.y35{bottom:1742.593810px;}
.y34{bottom:1802.593855px;}
.y33{bottom:1862.710492px;}
.y32{bottom:1922.710538px;}
.y30{bottom:2043.785188px;}
.y4c{bottom:2144.692398px;}
.y2e{bottom:2177.873553px;}
.y4b{bottom:2192.692422px;}
.y2d{bottom:2237.873598px;}
.y4a{bottom:2240.692446px;}
.y2c{bottom:2297.873643px;}
.y53{bottom:2413.710977px;}
.y52{bottom:2480.745980px;}
.y51{bottom:2547.780982px;}
.y50{bottom:2614.815986px;}
.y4f{bottom:2681.850989px;}
.y2b{bottom:2755.210354px;}
.y2a{bottom:2815.210399px;}
.y29{bottom:2875.327036px;}
.y28{bottom:2935.327081px;}
.y2f{bottom:3056.285184px;}
.y48{bottom:3164.788800px;}
.y27{bottom:3188.681925px;}
.y47{bottom:3212.788896px;}
.y26{bottom:3255.716930px;}
.y46{bottom:3260.788992px;}
.y45{bottom:3308.789016px;}
.y25{bottom:3322.751933px;}
.y44{bottom:3356.789040px;}
.y24{bottom:3389.786936px;}
.y23{bottom:3494.718597px;}
.y22{bottom:3554.718642px;}
.y21{bottom:3614.718687px;}
.y20{bottom:3674.718732px;}
.y49{bottom:3693.232185px;}
.y1f{bottom:3734.718777px;}
.y1e{bottom:4110.793659px;}
.y1d{bottom:4169.039784px;}
.y1c{bottom:4227.285909px;}
.y1b{bottom:4291.078626px;}
.y1a{bottom:4327.482501px;}
.y19{bottom:4363.886374px;}
.y18{bottom:4432.243656px;}
.y17{bottom:4515.690677px;}
.y16{bottom:4587.690677px;}
.ha{height:55.200215px;}
.h5{height:75.590625px;}
.h3{height:76.879688px;}
.h4{height:76.982813px;}
.hf{height:104.343750px;}
.h12{height:123.264000px;}
.h10{height:126.720000px;}
.hb{height:135.877288px;}
.h2{height:137.823292px;}
.h7{height:137.823383px;}
.hc{height:139.125104px;}
.h9{height:145.117052px;}
.hd{height:164.352123px;}
.h1{height:165.166835px;}
.h8{height:208.687500px;}
.h6{height:233.136960px;}
.he{height:260.859375px;}
.h11{height:316.800000px;}
.h0{height:5056.500000px;}
.w0{width:3576.000000px;}
.x0{left:0.000000px;}
.xa{left:66.558243px;}
.x5{left:108.793944px;}
.xb{left:141.801773px;}
.xc{left:146.861595px;}
.xe{left:1150.676994px;}
.xd{left:1152.398424px;}
.x11{left:1172.944329px;}
.x12{left:1176.723624px;}
.x17{left:1178.801994px;}
.x10{left:1180.171868px;}
.xf{left:1181.367189px;}
.x6{left:2613.252195px;}
.x15{left:2666.337870px;}
.x13{left:2670.046920px;}
.x16{left:2671.330020px;}
.x19{left:2722.521429px;}
.x1a{left:2737.489185px;}
.x2{left:2825.784255px;}
.x7{left:2848.650145px;}
.x3{left:2868.202076px;}
.x9{left:2891.010332px;}
.x4{left:2899.715420px;}
.x14{left:2901.374985px;}
.x8{left:2971.138036px;}
.x1{left:3026.642852px;}
.x18{left:3232.125117px;}
@media print{
.v3{vertical-align:-41.419520pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:60.418117pt;}
.v2{vertical-align:66.271147pt;}
.ls7{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.010251pt;}
.ls3{letter-spacing:0.013087pt;}
.ls1{letter-spacing:0.033870pt;}
.ls0{letter-spacing:0.033877pt;}
.ls2{letter-spacing:0.137828pt;}
.ls6{letter-spacing:15.530678pt;}
.ls5{letter-spacing:34.474693pt;}
.ws2{word-spacing:-170.666795pt;}
.ws5{word-spacing:-128.000000pt;}
.ws3{word-spacing:-47.274702pt;}
.ws0{word-spacing:-47.274667pt;}
.ws1{word-spacing:-23.864253pt;}
.ws6{word-spacing:0.000000pt;}
.ws4{word-spacing:671.999989pt;}
._11{margin-left:-18.944014pt;}
._0{margin-left:-12.629333pt;}
._3{margin-left:-10.419200pt;}
._10{margin-left:-9.386674pt;}
._8{margin-left:-7.662611pt;}
._6{margin-left:-6.425600pt;}
._4{margin-left:-5.162667pt;}
._5{margin-left:-3.473067pt;}
._2{margin-left:-1.689600pt;}
._7{width:1.976876pt;}
._d{width:3.072002pt;}
._16{width:6.485338pt;}
._14{width:14.677344pt;}
._13{width:15.701345pt;}
._f{width:16.896013pt;}
._9{width:20.309349pt;}
._e{width:22.869350pt;}
._21{width:23.893370pt;}
._1c{width:25.088009pt;}
._1a{width:26.282686pt;}
._24{width:27.776000pt;}
._1f{width:31.061357pt;}
._1e{width:33.280025pt;}
._12{width:34.474693pt;}
._20{width:42.666699pt;}
._a{width:43.690699pt;}
._1d{width:44.714700pt;}
._22{width:50.858705pt;}
._15{width:55.637375pt;}
._18{width:57.173376pt;}
._c{width:58.368044pt;}
._19{width:67.242717pt;}
._1b{width:73.386722pt;}
._23{width:77.440000pt;}
._b{width:78.336059pt;}
._17{width:192.341478pt;}
._1{width:1021.160533pt;}
.fsc{font-size:67.306715pt;}
.fs4{font-size:76.800000pt;}
.fs9{font-size:86.152539pt;}
.fsb{font-size:86.153067pt;}
.fs3{font-size:93.866667pt;}
.fsd{font-size:103.548795pt;}
.fs10{font-size:128.000000pt;}
.fs8{font-size:160.500261pt;}
.fsa{font-size:165.677867pt;}
.fs2{font-size:168.050667pt;}
.fs6{font-size:168.050779pt;}
.fs1{font-size:170.666667pt;}
.fse{font-size:170.666795pt;}
.fs5{font-size:201.661019pt;}
.fs0{font-size:201.661333pt;}
.fs7{font-size:256.000000pt;}
.fsf{font-size:320.000000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:51.671581pt;}
.y15{bottom:63.286385pt;}
.y6{bottom:81.061915pt;}
.y14{bottom:92.562718pt;}
.yc{bottom:105.865879pt;}
.y4{bottom:106.266239pt;}
.y7{bottom:110.452249pt;}
.y13{bottom:121.953052pt;}
.y8{bottom:139.728582pt;}
.y12{bottom:151.286385pt;}
.yb{bottom:158.381748pt;}
.y3{bottom:158.782072pt;}
.y11{bottom:180.619719pt;}
.y10{bottom:209.953052pt;}
.ya{bottom:210.897616pt;}
.y2{bottom:211.297905pt;}
.yf{bottom:239.286385pt;}
.y9{bottom:251.243512pt;}
.y1{bottom:266.748333pt;}
.ye{bottom:268.619719pt;}
.yd{bottom:297.953052pt;}
.y57{bottom:451.307251pt;}
.y43{bottom:474.341411pt;}
.y55{bottom:524.255539pt;}
.y42{bottom:527.778422pt;}
.y5b{bottom:558.204873pt;}
.y41{bottom:581.215433pt;}
.y5a{bottom:602.894815pt;}
.y40{bottom:634.548806pt;}
.y59{bottom:647.584756pt;}
.y58{bottom:692.274697pt;}
.y3f{bottom:714.319661pt;}
.y54{bottom:745.479155pt;}
.y56{bottom:756.150995pt;}
.y3e{bottom:767.653034pt;}
.y3d{bottom:820.986407pt;}
.y31{bottom:928.608351pt;}
.y4e{bottom:1078.812468pt;}
.y3c{bottom:1102.970960pt;}
.y4d{bottom:1121.479156pt;}
.y3b{bottom:1156.304333pt;}
.y3a{bottom:1235.971508pt;}
.y39{bottom:1289.304881pt;}
.y38{bottom:1342.638255pt;}
.y37{bottom:1396.075265pt;}
.y36{bottom:1495.638903pt;}
.y35{bottom:1548.972276pt;}
.y34{bottom:1602.305649pt;}
.y33{bottom:1655.742660pt;}
.y32{bottom:1709.076033pt;}
.y30{bottom:1816.697945pt;}
.y4c{bottom:1906.393243pt;}
.y2e{bottom:1935.887603pt;}
.y4b{bottom:1949.059931pt;}
.y2d{bottom:1989.220976pt;}
.y4a{bottom:1991.726619pt;}
.y2c{bottom:2042.554350pt;}
.y53{bottom:2145.520868pt;}
.y52{bottom:2205.107537pt;}
.y51{bottom:2264.694207pt;}
.y50{bottom:2324.280876pt;}
.y4f{bottom:2383.867545pt;}
.y2b{bottom:2449.075871pt;}
.y2a{bottom:2502.409244pt;}
.y29{bottom:2555.846255pt;}
.y28{bottom:2609.179628pt;}
.y2f{bottom:2716.697941pt;}
.y48{bottom:2813.145600pt;}
.y27{bottom:2834.383933pt;}
.y47{bottom:2855.812352pt;}
.y26{bottom:2893.970604pt;}
.y46{bottom:2898.479104pt;}
.y45{bottom:2941.145792pt;}
.y25{bottom:2953.557273pt;}
.y44{bottom:2983.812480pt;}
.y24{bottom:3013.143943pt;}
.y23{bottom:3106.416531pt;}
.y22{bottom:3159.749904pt;}
.y21{bottom:3213.083277pt;}
.y20{bottom:3266.416651pt;}
.y49{bottom:3282.873053pt;}
.y1f{bottom:3319.750024pt;}
.y1e{bottom:3654.038808pt;}
.y1d{bottom:3705.813141pt;}
.y1c{bottom:3757.587475pt;}
.y1b{bottom:3814.292112pt;}
.y1a{bottom:3846.651112pt;}
.y19{bottom:3879.010111pt;}
.y18{bottom:3939.772139pt;}
.y17{bottom:4013.947268pt;}
.y16{bottom:4077.947268pt;}
.ha{height:49.066858pt;}
.h5{height:67.191667pt;}
.h3{height:68.337500pt;}
.h4{height:68.429167pt;}
.hf{height:92.750000pt;}
.h12{height:109.568000pt;}
.h10{height:112.640000pt;}
.hb{height:120.779812pt;}
.h2{height:122.509592pt;}
.h7{height:122.509674pt;}
.hc{height:123.666759pt;}
.h9{height:128.992935pt;}
.hd{height:146.090776pt;}
.h1{height:146.814965pt;}
.h8{height:185.500000pt;}
.h6{height:207.232853pt;}
.he{height:231.875000pt;}
.h11{height:281.600000pt;}
.h0{height:4494.666667pt;}
.w0{width:3178.666667pt;}
.x0{left:0.000000pt;}
.xa{left:59.162883pt;}
.x5{left:96.705728pt;}
.xb{left:126.046020pt;}
.xc{left:130.543640pt;}
.xe{left:1022.823995pt;}
.xd{left:1024.354155pt;}
.x11{left:1042.617181pt;}
.x12{left:1045.976555pt;}
.x17{left:1047.823995pt;}
.x10{left:1049.041661pt;}
.xf{left:1050.104168pt;}
.x6{left:2322.890840pt;}
.x15{left:2370.078107pt;}
.x13{left:2373.375040pt;}
.x16{left:2374.515573pt;}
.x19{left:2420.019048pt;}
.x1a{left:2433.323720pt;}
.x2{left:2511.808227pt;}
.x7{left:2532.133463pt;}
.x3{left:2549.512957pt;}
.x9{left:2569.786962pt;}
.x4{left:2577.524818pt;}
.x14{left:2578.999987pt;}
.x8{left:2641.011588pt;}
.x1{left:2690.349201pt;}
.x18{left:2873.000104pt;}
}




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