
    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_89352d5cb16c4e8f02107eeb.woff')format("woff");}.ff1{font-family:ff1;line-height:0.733887;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_edb77c1ca521a168e31f832d.woff')format("woff");}.ff2{font-family:ff2;line-height:0.958000;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_d9f2dfe0667574f288e8490d.woff')format("woff");}.ff3{font-family:ff3;line-height:0.965500;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_4f9bf85e607e1199aad5970f.woff')format("woff");}.ff4{font-family:ff4;line-height:0.723000;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_779901e5a203f7d9ebe3c7d9.woff')format("woff");}.ff5{font-family:ff5;line-height:0.918500;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_fb1e82a156789019f26fea9b.woff')format("woff");}.ff6{font-family:ff6;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;}
.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);}
.v2{vertical-align:-47.520002px;}
.v4{vertical-align:-7.125750px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:6.198327px;}
.v1{vertical-align:95.062503px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:28.706536px;}
.ls1{letter-spacing:141.641083px;}
.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;}
}
.ws1{word-spacing:-44.849341px;}
.ws6{word-spacing:-40.773182px;}
.ws0{word-spacing:-36.697022px;}
.ws5{word-spacing:-32.620861px;}
.ws3{word-spacing:-32.617002px;}
.ws4{word-spacing:-23.400962px;}
.ws2{word-spacing:-0.190140px;}
.ws7{word-spacing:0.000000px;}
._0{margin-left:-31.942081px;}
._38{margin-left:-29.088361px;}
._1f{margin-left:-22.814401px;}
._19{margin-left:-20.091738px;}
._14{margin-left:-16.648560px;}
._f{margin-left:-15.021061px;}
._30{margin-left:-13.943161px;}
._24{margin-left:-11.738050px;}
._15{margin-left:-10.690740px;}
._1d{margin-left:-8.872500px;}
._1{margin-left:-7.186968px;}
._17{margin-left:-6.135111px;}
._1e{margin-left:-5.090881px;}
._4{margin-left:-3.422520px;}
._6{margin-left:-2.281680px;}
._16{margin-left:-1.085207px;}
._32{width:1.153915px;}
._10{width:3.612660px;}
._3a{width:4.766520px;}
._2a{width:6.845040px;}
._8{width:9.697140px;}
._9{width:11.598541px;}
._33{width:13.119661px;}
._35{width:14.450641px;}
._25{width:15.781621px;}
._7{width:17.683021px;}
._2c{width:21.485821px;}
._12{width:28.471456px;}
._13{width:29.518921px;}
._36{width:30.708242px;}
._5{width:31.753382px;}
._28{width:34.985762px;}
._22{width:40.688132px;}
._1a{width:41.829972px;}
._18{width:43.098679px;}
._11{width:45.443462px;}
._2b{width:48.105422px;}
._d{width:49.246262px;}
._23{width:51.147662px;}
._2e{width:52.808292px;}
._2d{width:54.050393px;}
._26{width:63.993423px;}
._27{width:65.089024px;}
._29{width:68.830683px;}
._34{width:71.682783px;}
._1b{width:78.337684px;}
._a{width:79.478524px;}
._1c{width:80.999644px;}
._31{width:84.836544px;}
._20{width:87.908352px;}
._21{width:89.252275px;}
._3{width:92.598184px;}
._2{width:97.758680px;}
._2f{width:105.147425px;}
._b{width:116.745966px;}
._c{width:133.858566px;}
._e{width:150.971167px;}
._39{width:1321.303373px;}
._37{width:5784.722797px;}
.fc7{color:transparent;}
.fc6{color:rgb(88,96,102);}
.fc5{color:rgb(31,73,125);}
.fc4{color:rgb(244,125,32);}
.fc2{color:rgb(2,52,82);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(89,89,89);}
.fs8{font-size:84.480007px;}
.fsb{font-size:105.600005px;}
.fs9{font-size:126.720004px;}
.fs7{font-size:169.000010px;}
.fs6{font-size:169.020005px;}
.fs4{font-size:190.140009px;}
.fsc{font-size:192.000012px;}
.fsa{font-size:211.260008px;}
.fs5{font-size:232.380007px;}
.fs0{font-size:253.500002px;}
.fs3{font-size:285.180008px;}
.fs2{font-size:399.276013px;}
.fs1{font-size:760.428069px;}
.y0{bottom:0.000000px;}
.y23{bottom:80.984001px;}
.y1a{bottom:158.831454px;}
.y24{bottom:185.086442px;}
.y19{bottom:215.873445px;}
.y18{bottom:272.915449px;}
.y1{bottom:355.147664px;}
.y22{bottom:653.431307px;}
.y56{bottom:720.821870px;}
.y21{bottom:729.481301px;}
.y55{bottom:778.421849px;}
.y54{bottom:836.021844px;}
.y53{bottom:893.621841px;}
.y47{bottom:968.557644px;}
.y46{bottom:1031.935648px;}
.y48{bottom:1035.254398px;}
.y52{bottom:1040.248390px;}
.y40{bottom:1151.613264px;}
.y43{bottom:1154.021437px;}
.y42{bottom:1217.399442px;}
.y3d{bottom:1477.858548px;}
.y45{bottom:1540.185687px;}
.y3c{bottom:1541.236552px;}
.y44{bottom:1603.563691px;}
.y3b{bottom:1692.080379px;}
.y3a{bottom:1755.458384px;}
.y39{bottom:1863.246662px;}
.y3f{bottom:1886.314673px;}
.y41{bottom:1921.288902px;}
.y3e{bottom:1949.692677px;}
.y51{bottom:1982.114164px;}
.y50{bottom:2037.453591px;}
.y4f{bottom:2094.495592px;}
.y4e{bottom:2151.537594px;}
.y38{bottom:2201.888883px;}
.y4d{bottom:2208.579619px;}
.y37{bottom:2258.930840px;}
.y4c{bottom:2265.621620px;}
.y36{bottom:2315.972819px;}
.y4b{bottom:2322.663611px;}
.y35{bottom:2373.014776px;}
.y4a{bottom:2379.705613px;}
.y34{bottom:2430.056778px;}
.y49{bottom:2442.450010px;}
.y33{bottom:2487.098780px;}
.y32{bottom:2544.140782px;}
.y31{bottom:2601.182784px;}
.y12{bottom:2630.263360px;}
.y30{bottom:2658.224785px;}
.y11{bottom:2687.305305px;}
.y2f{bottom:2715.266787px;}
.y10{bottom:2744.347284px;}
.y2e{bottom:2772.308812px;}
.yf{bottom:2801.389252px;}
.y2d{bottom:2829.350813px;}
.ye{bottom:2858.431254px;}
.y2c{bottom:2886.392804px;}
.yd{bottom:2915.473256px;}
.y2b{bottom:2943.434806px;}
.yc{bottom:2972.515235px;}
.y2a{bottom:3006.179203px;}
.yb{bottom:3029.557260px;}
.ya{bottom:3086.599262px;}
.y9{bottom:3143.641263px;}
.y20{bottom:3165.853748px;}
.y8{bottom:3200.683288px;}
.y1f{bottom:3217.191538px;}
.y7{bottom:3257.725290px;}
.y1e{bottom:3268.529351px;}
.y6{bottom:3314.767280px;}
.y1d{bottom:3319.867164px;}
.y1c{bottom:3371.204954px;}
.y5{bottom:3371.809282px;}
.y1b{bottom:3427.674905px;}
.y4{bottom:3432.842593px;}
.y17{bottom:3631.150838px;}
.y16{bottom:3681.856828px;}
.y15{bottom:3732.562841px;}
.y14{bottom:3783.268838px;}
.y13{bottom:3837.776438px;}
.y28{bottom:4003.649217px;}
.y27{bottom:4041.665213px;}
.y26{bottom:4079.681208px;}
.y25{bottom:4113.424000px;}
.y3{bottom:4240.487548px;}
.y2{bottom:4381.939450px;}
.y29{bottom:4593.216770px;}
.hc{height:61.503755px;}
.h10{height:82.896004px;}
.h8{height:131.075014px;}
.hd{height:132.680704px;}
.ha{height:140.038117px;}
.h6{height:147.453577px;}
.h11{height:148.896009px;}
.h5{height:149.259907px;}
.he{height:163.832136px;}
.h7{height:182.418306px;}
.h1{height:183.564699px;}
.h9{height:198.997502px;}
.h4{height:223.866306px;}
.hb{height:226.122011px;}
.hf{height:230.064633px;}
.h3{height:309.638548px;}
.h2{height:589.711968px;}
.h0{height:4677.000000px;}
.w0{width:3400.500000px;}
.x0{left:0.000000px;}
.x1{left:92.371537px;}
.xb{left:147.301182px;}
.x5{left:154.371031px;}
.x3{left:187.729262px;}
.x1c{left:188.854262px;}
.x17{left:193.135909px;}
.x14{left:200.839608px;}
.x4{left:215.870801px;}
.xa{left:231.851336px;}
.x18{left:270.811037px;}
.x7{left:273.668859px;}
.x2{left:318.956579px;}
.x16{left:335.757526px;}
.x15{left:388.298667px;}
.x19{left:560.020900px;}
.x1a{left:581.565101px;}
.xd{left:747.457512px;}
.x1b{left:1089.778231px;}
.x13{left:1334.961695px;}
.x12{left:1369.941794px;}
.xe{left:1391.598099px;}
.x11{left:1418.422025px;}
.xf{left:1462.541076px;}
.x10{left:1483.873394px;}
.x1e{left:1689.155942px;}
.x1f{left:1696.355245px;}
.x20{left:1748.565517px;}
.x6{left:1838.710184px;}
.xc{left:1852.058084px;}
.x1d{left:1910.278524px;}
.x8{left:2365.252951px;}
.x9{left:2615.507521px;}
@media print{
.v2{vertical-align:-42.240001pt;}
.v4{vertical-align:-6.334000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:5.509624pt;}
.v1{vertical-align:84.500003pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:25.516921pt;}
.ls1{letter-spacing:125.903185pt;}
.ws1{word-spacing:-39.866081pt;}
.ws6{word-spacing:-36.242828pt;}
.ws0{word-spacing:-32.619575pt;}
.ws5{word-spacing:-28.996321pt;}
.ws3{word-spacing:-28.992891pt;}
.ws4{word-spacing:-20.800855pt;}
.ws2{word-spacing:-0.169013pt;}
.ws7{word-spacing:0.000000pt;}
._0{margin-left:-28.392961pt;}
._38{margin-left:-25.856321pt;}
._1f{margin-left:-20.279467pt;}
._19{margin-left:-17.859322pt;}
._14{margin-left:-14.798720pt;}
._f{margin-left:-13.352054pt;}
._30{margin-left:-12.393920pt;}
._24{margin-left:-10.433822pt;}
._15{margin-left:-9.502880pt;}
._1d{margin-left:-7.886667pt;}
._1{margin-left:-6.388416pt;}
._17{margin-left:-5.453432pt;}
._1e{margin-left:-4.525227pt;}
._4{margin-left:-3.042240pt;}
._6{margin-left:-2.028160pt;}
._16{margin-left:-0.964629pt;}
._32{width:1.025702pt;}
._10{width:3.211253pt;}
._3a{width:4.236907pt;}
._2a{width:6.084480pt;}
._8{width:8.619680pt;}
._9{width:10.309814pt;}
._33{width:11.661921pt;}
._35{width:12.845014pt;}
._25{width:14.028107pt;}
._7{width:15.718241pt;}
._2c{width:19.098508pt;}
._12{width:25.307961pt;}
._13{width:26.239041pt;}
._36{width:27.296215pt;}
._5{width:28.225228pt;}
._28{width:31.098455pt;}
._22{width:36.167228pt;}
._1a{width:37.182197pt;}
._18{width:38.309937pt;}
._11{width:40.394189pt;}
._2b{width:42.760375pt;}
._d{width:43.774455pt;}
._23{width:45.464589pt;}
._2e{width:46.940704pt;}
._2d{width:48.044794pt;}
._26{width:56.883042pt;}
._27{width:57.856910pt;}
._29{width:61.182830pt;}
._34{width:63.718030pt;}
._1b{width:69.633497pt;}
._a{width:70.647577pt;}
._1c{width:71.999683pt;}
._31{width:75.410261pt;}
._20{width:78.140758pt;}
._21{width:79.335356pt;}
._3{width:82.309497pt;}
._2{width:86.896605pt;}
._2f{width:93.464378pt;}
._b{width:103.774192pt;}
._c{width:118.985392pt;}
._e{width:134.196593pt;}
._39{width:1174.491887pt;}
._37{width:5141.975819pt;}
.fs8{font-size:75.093339pt;}
.fsb{font-size:93.866671pt;}
.fs9{font-size:112.640004pt;}
.fs7{font-size:150.222231pt;}
.fs6{font-size:150.240005pt;}
.fs4{font-size:169.013341pt;}
.fsc{font-size:170.666677pt;}
.fsa{font-size:187.786674pt;}
.fs5{font-size:206.560007pt;}
.fs0{font-size:225.333335pt;}
.fs3{font-size:253.493340pt;}
.fs2{font-size:354.912011pt;}
.fs1{font-size:675.936062pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:71.985779pt;}
.y1a{bottom:141.183515pt;}
.y24{bottom:164.521282pt;}
.y19{bottom:191.887506pt;}
.y18{bottom:242.591510pt;}
.y1{bottom:315.686812pt;}
.y22{bottom:580.827829pt;}
.y56{bottom:640.730551pt;}
.y21{bottom:648.427823pt;}
.y55{bottom:691.930532pt;}
.y54{bottom:743.130528pt;}
.y53{bottom:794.330526pt;}
.y47{bottom:860.940128pt;}
.y46{bottom:917.276132pt;}
.y48{bottom:920.226132pt;}
.y52{bottom:924.665236pt;}
.y40{bottom:1023.656235pt;}
.y43{bottom:1025.796833pt;}
.y42{bottom:1082.132837pt;}
.y3d{bottom:1313.652042pt;}
.y45{bottom:1369.053944pt;}
.y3c{bottom:1369.988046pt;}
.y44{bottom:1425.389948pt;}
.y3b{bottom:1504.071448pt;}
.y3a{bottom:1560.407452pt;}
.y39{bottom:1656.219255pt;}
.y3f{bottom:1676.724154pt;}
.y41{bottom:1707.812357pt;}
.y3e{bottom:1733.060158pt;}
.y51{bottom:1761.879257pt;}
.y50{bottom:1811.069858pt;}
.y4f{bottom:1861.773860pt;}
.y4e{bottom:1912.477861pt;}
.y38{bottom:1957.234563pt;}
.y4d{bottom:1963.181883pt;}
.y37{bottom:2007.938525pt;}
.y4c{bottom:2013.885885pt;}
.y36{bottom:2058.642506pt;}
.y4b{bottom:2064.589876pt;}
.y35{bottom:2109.346468pt;}
.y4a{bottom:2115.293878pt;}
.y34{bottom:2160.050469pt;}
.y49{bottom:2171.066676pt;}
.y33{bottom:2210.754471pt;}
.y32{bottom:2261.458473pt;}
.y31{bottom:2312.162474pt;}
.y12{bottom:2338.011875pt;}
.y30{bottom:2362.866476pt;}
.y11{bottom:2388.715827pt;}
.y2f{bottom:2413.570478pt;}
.y10{bottom:2439.419808pt;}
.y2e{bottom:2464.274499pt;}
.yf{bottom:2490.123780pt;}
.y2d{bottom:2514.978501pt;}
.ye{bottom:2540.827782pt;}
.y2c{bottom:2565.682492pt;}
.yd{bottom:2591.531783pt;}
.y2b{bottom:2616.386494pt;}
.yc{bottom:2642.235765pt;}
.y2a{bottom:2672.159292pt;}
.yb{bottom:2692.939786pt;}
.ya{bottom:2743.643788pt;}
.y9{bottom:2794.347790pt;}
.y20{bottom:2814.092220pt;}
.y8{bottom:2845.051811pt;}
.y1f{bottom:2859.725812pt;}
.y7{bottom:2895.755813pt;}
.y1e{bottom:2905.359423pt;}
.y6{bottom:2946.459805pt;}
.y1d{bottom:2950.993035pt;}
.y1c{bottom:2996.626626pt;}
.y5{bottom:2997.163806pt;}
.y1b{bottom:3046.822138pt;}
.y4{bottom:3051.415638pt;}
.y17{bottom:3227.689634pt;}
.y16{bottom:3272.761625pt;}
.y15{bottom:3317.833636pt;}
.y14{bottom:3362.905634pt;}
.y13{bottom:3411.356833pt;}
.y28{bottom:3558.799304pt;}
.y27{bottom:3592.591300pt;}
.y26{bottom:3626.383296pt;}
.y25{bottom:3656.376889pt;}
.y3{bottom:3769.322265pt;}
.y2{bottom:3895.057289pt;}
.y29{bottom:4082.859351pt;}
.hc{height:54.670004pt;}
.h10{height:73.685337pt;}
.h8{height:116.511124pt;}
.hd{height:117.938404pt;}
.ha{height:124.478326pt;}
.h6{height:131.069846pt;}
.h11{height:132.352008pt;}
.h5{height:132.675473pt;}
.he{height:145.628566pt;}
.h7{height:162.149605pt;}
.h1{height:163.168621pt;}
.h9{height:176.886668pt;}
.h4{height:198.992272pt;}
.hb{height:200.997343pt;}
.hf{height:204.501896pt;}
.h3{height:275.234265pt;}
.h2{height:524.188416pt;}
.h0{height:4157.333333pt;}
.w0{width:3022.666667pt;}
.x0{left:0.000000pt;}
.x1{left:82.108033pt;}
.xb{left:130.934384pt;}
.x5{left:137.218694pt;}
.x3{left:166.870455pt;}
.x1c{left:167.870455pt;}
.x17{left:171.676363pt;}
.x14{left:178.524096pt;}
.x4{left:191.885156pt;}
.xa{left:206.090077pt;}
.x18{left:240.720922pt;}
.x7{left:243.261208pt;}
.x2{left:283.516959pt;}
.x16{left:298.451135pt;}
.x15{left:345.154371pt;}
.x19{left:497.796356pt;}
.x1a{left:516.946757pt;}
.xd{left:664.406677pt;}
.x1b{left:968.691761pt;}
.x13{left:1186.632618pt;}
.x12{left:1217.726039pt;}
.xe{left:1236.976088pt;}
.x11{left:1260.819577pt;}
.xf{left:1300.036512pt;}
.x10{left:1318.998572pt;}
.x1e{left:1501.471948pt;}
.x1f{left:1507.871329pt;}
.x20{left:1554.280460pt;}
.x6{left:1634.409052pt;}
.xc{left:1646.273853pt;}
.x1d{left:1698.025354pt;}
.x8{left:2102.447067pt;}
.x9{left:2324.895574pt;}
}




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