
    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_a544ca275cbb31fd599badaa.woff2')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_67cd4ed426e023e8ca11dd3d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_ece519e4edc31fe7f6085d91.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.935547;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_2d40da504743def29ef1d662.woff2')format("woff");}.ff4{font-family:ff4;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.561616px;}
.ls3{letter-spacing:107.963599px;}
.ls5{letter-spacing:107.972075px;}
.ls4{letter-spacing:107.972093px;}
.ls1{letter-spacing:107.980574px;}
.ls2{letter-spacing:107.980583px;}
.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;}
}
.ws4{word-spacing:-28.254000px;}
.ws2{word-spacing:-24.763799px;}
.ws5{word-spacing:-14.958000px;}
.ws0{word-spacing:0.000000px;}
.ws3{word-spacing:79.807319px;}
.ws1{word-spacing:83.221390px;}
._9{margin-left:-10.656000px;}
._1{margin-left:-9.282000px;}
._7{margin-left:-7.548000px;}
._3{margin-left:-4.690200px;}
._2{margin-left:-3.307800px;}
._0{margin-left:-1.836000px;}
._f{width:1.955575px;}
._5{width:2.966494px;}
._1c{width:4.488000px;}
._13{width:5.814000px;}
._15{width:7.344000px;}
._a{width:8.364000px;}
._1e{width:9.996000px;}
._17{width:11.220000px;}
._6{width:12.444000px;}
._16{width:14.076000px;}
._18{width:15.912000px;}
._19{width:17.850000px;}
._22{width:19.074000px;}
._29{width:20.400000px;}
._24{width:21.420000px;}
._12{width:22.950000px;}
._11{width:24.582000px;}
._10{width:25.704000px;}
._8{width:26.928000px;}
._21{width:29.478000px;}
._25{width:31.516050px;}
._1d{width:33.355950px;}
._1a{width:34.374000px;}
._c{width:35.394000px;}
._d{width:36.488931px;}
._14{width:40.188000px;}
._1b{width:41.191699px;}
._1f{width:42.532200px;}
._20{width:44.268000px;}
._e{width:45.301469px;}
._23{width:53.958000px;}
._b{width:57.936000px;}
._27{width:68.748000px;}
._26{width:74.358000px;}
._28{width:79.866000px;}
._4{width:107.963599px;}
.fc3{color:rgb(96,182,105);}
.fc1{color:rgb(220,0,45);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs4{font-size:54.000002px;}
.fs9{font-size:60.000000px;}
.fsa{font-size:66.000004px;}
.fs2{font-size:84.000000px;}
.fs3{font-size:89.399995px;}
.fs8{font-size:94.350005px;}
.fs6{font-size:102.000000px;}
.fs1{font-size:108.000003px;}
.fs7{font-size:120.000001px;}
.fs5{font-size:144.000005px;}
.fs0{font-size:180.000006px;}
.y0{bottom:0.000000px;}
.y12{bottom:5.225983px;}
.y7f{bottom:98.683510px;}
.ya8{bottom:100.598373px;}
.y3b{bottom:101.732761px;}
.y99{bottom:106.775084px;}
.y5e{bottom:109.830106px;}
.y91{bottom:111.995062px;}
.y52{bottom:115.050106px;}
.y74{bottom:119.811011px;}
.y3a{bottom:128.622512px;}
.y2b{bottom:133.685062px;}
.y7e{bottom:133.873511px;}
.y4c{bottom:133.950129px;}
.ya7{bottom:135.788374px;}
.y98{bottom:141.965074px;}
.y5d{bottom:145.020107px;}
.y5b{bottom:145.020130px;}
.y88{bottom:147.185074px;}
.y51{bottom:150.240107px;}
.y73{bottom:155.001023px;}
.y1f{bottom:165.734030px;}
.y44{bottom:167.430108px;}
.y7d{bottom:169.063523px;}
.ya6{bottom:170.978375px;}
.y27{bottom:173.573064px;}
.y4b{bottom:175.620108px;}
.y97{bottom:177.155075px;}
.y63{bottom:177.600108px;}
.y55{bottom:180.210108px;}
.y5a{bottom:180.210131px;}
.y18{bottom:180.755075px;}
.y87{bottom:182.375075px;}
.y50{bottom:185.430108px;}
.y72{bottom:190.191024px;}
.y11{bottom:191.246544px;}
.y31{bottom:191.375075px;}
.y39{bottom:200.402036px;}
.y43{bottom:202.620109px;}
.y7c{bottom:204.253525px;}
.ya5{bottom:206.168387px;}
.y4a{bottom:210.810109px;}
.y1e{bottom:211.895054px;}
.y62{bottom:212.790109px;}
.y59{bottom:215.400121px;}
.y86{bottom:217.565076px;}
.y10{bottom:219.407568px;}
.y26{bottom:219.734065px;}
.yab{bottom:219.810121px;}
.y4f{bottom:220.620121px;}
.y9f{bottom:224.168388px;}
.y71{bottom:225.381025px;}
.y6{bottom:226.196948px;}
.y38{bottom:227.291798px;}
.y2a{bottom:228.545065px;}
.y2d{bottom:232.145065px;}
.y17{bottom:233.945077px;}
.y42{bottom:237.810121px;}
.y7b{bottom:239.443526px;}
.ya3{bottom:241.358388px;}
.y49{bottom:246.000122px;}
.y5{bottom:246.356947px;}
.yf{bottom:247.568580px;}
.y25{bottom:247.895088px;}
.y61{bottom:247.980133px;}
.y96{bottom:250.145089px;}
.y65{bottom:250.590122px;}
.y85{bottom:252.755077px;}
.y54{bottom:253.200111px;}
.yaa{bottom:255.000122px;}
.y4e{bottom:255.810122px;}
.y23{bottom:256.444695px;}
.y1d{bottom:258.056066px;}
.y9e{bottom:259.358389px;}
.y70{bottom:260.571026px;}
.y4{bottom:266.516945px;}
.y41{bottom:273.000122px;}
.y7a{bottom:274.633527px;}
.ye{bottom:275.729592px;}
.y24{bottom:276.056067px;}
.ya2{bottom:276.548389px;}
.y29{bottom:283.535078px;}
.y95{bottom:285.335090px;}
.y64{bottom:285.780123px;}
.y16{bottom:287.135078px;}
.y84{bottom:287.945079px;}
.y53{bottom:288.390112px;}
.y58{bottom:288.390134px;}
.ya9{bottom:290.190123px;}
.y66{bottom:290.789986px;}
.y4d{bottom:291.000123px;}
.y30{bottom:291.635079px;}
.y6a{bottom:293.271942px;}
.y9d{bottom:294.548390px;}
.y37{bottom:294.825562px;}
.y6f{bottom:295.761028px;}
.y22{bottom:302.605703px;}
.yd{bottom:303.890615px;}
.y1c{bottom:304.217075px;}
.y40{bottom:308.190124px;}
.y79{bottom:309.823528px;}
.y69{bottom:311.271943px;}
.ya1{bottom:311.738391px;}
.y60{bottom:320.970146px;}
.y36{bottom:321.715313px;}
.y83{bottom:323.135080px;}
.y5c{bottom:323.580113px;}
.y57{bottom:323.580135px;}
.y48{bottom:326.190124px;}
.y68{bottom:329.271944px;}
.y9c{bottom:329.738391px;}
.y6e{bottom:330.951029px;}
.yc{bottom:332.051594px;}
.y28{bottom:338.525080px;}
.y15{bottom:340.325080px;}
.y2f{bottom:341.765075px;}
.y3f{bottom:343.380125px;}
.y3{bottom:343.475058px;}
.y78{bottom:345.013529px;}
.y67{bottom:347.271944px;}
.y21{bottom:348.766698px;}
.y1b{bottom:350.378069px;}
.y82{bottom:358.325077px;}
.y56{bottom:358.770136px;}
.yb{bottom:360.212583px;}
.y47{bottom:361.380125px;}
.ya4{bottom:364.928392px;}
.y6d{bottom:366.141026px;}
.y3e{bottom:378.570126px;}
.y2{bottom:380.195059px;}
.y77{bottom:380.203527px;}
.ya{bottom:388.373580px;}
.y35{bottom:389.249065px;}
.y2c{bottom:391.715071px;}
.y2e{bottom:391.895074px;}
.y14{bottom:393.515073px;}
.y5f{bottom:393.960133px;}
.y20{bottom:394.927701px;}
.y1a{bottom:396.539072px;}
.y46{bottom:396.570126px;}
.ya0{bottom:400.118393px;}
.y6c{bottom:401.331022px;}
.y3d{bottom:413.760127px;}
.y6b{bottom:415.102676px;}
.y81{bottom:415.142719px;}
.y76{bottom:415.393522px;}
.y34{bottom:416.138816px;}
.y9{bottom:416.534578px;}
.y9b{bottom:418.118391px;}
.y8c{bottom:427.798970px;}
.y8a{bottom:430.611470px;}
.y45{bottom:431.760124px;}
.y1{bottom:434.195061px;}
.y90{bottom:437.642720px;}
.y8e{bottom:439.048970px;}
.y94{bottom:441.861470px;}
.y33{bottom:443.028569px;}
.y8{bottom:444.695576px;}
.y9a{bottom:453.308386px;}
.y80{bottom:456.542715px;}
.y19{bottom:456.748228px;}
.y3c{bottom:466.950120px;}
.y8b{bottom:469.198965px;}
.y92{bottom:469.404478px;}
.y32{bottom:469.918317px;}
.y89{bottom:472.011466px;}
.y75{bottom:476.435728px;}
.y8f{bottom:479.042716px;}
.y8d{bottom:480.448966px;}
.y93{bottom:483.261466px;}
.y7{bottom:512.620865px;}
.y13{bottom:521.317558px;}
.h5{height:39.313478px;}
.h9{height:39.339845px;}
.hb{height:41.660157px;}
.h3{height:61.195312px;}
.h4{height:65.129293px;}
.ha{height:68.735453px;}
.hc{height:74.258789px;}
.h7{height:74.308594px;}
.h2{height:78.626956px;}
.h8{height:87.363282px;}
.h6{height:104.835941px;}
.h1{height:131.044926px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x9{left:52.875002px;}
.x6{left:64.125002px;}
.x7{left:66.380461px;}
.xd{left:69.868174px;}
.xc{left:71.259558px;}
.x12{left:75.729980px;}
.x11{left:76.887253px;}
.x17{left:79.948731px;}
.xa{left:101.000991px;}
.xf{left:118.125004px;}
.x8{left:120.380460px;}
.x18{left:122.343754px;}
.x13{left:129.729987px;}
.x14{left:172.125006px;}
.x1{left:183.515597px;}
.xe{left:230.664900px;}
.x10{left:280.125009px;}
.x16{left:290.188824px;}
.x15{left:299.622272px;}
.x3{left:337.838355px;}
.x4{left:399.055845px;}
.x2{left:434.849830px;}
.x5{left:459.120435px;}
.xb{left:514.570888px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.499214pt;}
.ls3{letter-spacing:95.967644pt;}
.ls5{letter-spacing:95.975178pt;}
.ls4{letter-spacing:95.975194pt;}
.ls1{letter-spacing:95.982732pt;}
.ls2{letter-spacing:95.982740pt;}
.ws4{word-spacing:-25.114667pt;}
.ws2{word-spacing:-22.012266pt;}
.ws5{word-spacing:-13.296000pt;}
.ws0{word-spacing:0.000000pt;}
.ws3{word-spacing:70.939839pt;}
.ws1{word-spacing:73.974569pt;}
._9{margin-left:-9.472000pt;}
._1{margin-left:-8.250667pt;}
._7{margin-left:-6.709333pt;}
._3{margin-left:-4.169066pt;}
._2{margin-left:-2.940267pt;}
._0{margin-left:-1.632000pt;}
._f{width:1.738289pt;}
._5{width:2.636884pt;}
._1c{width:3.989333pt;}
._13{width:5.168000pt;}
._15{width:6.528000pt;}
._a{width:7.434667pt;}
._1e{width:8.885333pt;}
._17{width:9.973333pt;}
._6{width:11.061333pt;}
._16{width:12.512000pt;}
._18{width:14.144000pt;}
._19{width:15.866667pt;}
._22{width:16.954667pt;}
._29{width:18.133333pt;}
._24{width:19.040000pt;}
._12{width:20.400000pt;}
._11{width:21.850667pt;}
._10{width:22.848000pt;}
._8{width:23.936000pt;}
._21{width:26.202667pt;}
._25{width:28.014267pt;}
._1d{width:29.649733pt;}
._1a{width:30.554667pt;}
._c{width:31.461333pt;}
._d{width:32.434605pt;}
._14{width:35.722667pt;}
._1b{width:36.614844pt;}
._1f{width:37.806400pt;}
._20{width:39.349333pt;}
._e{width:40.267972pt;}
._23{width:47.962667pt;}
._b{width:51.498667pt;}
._27{width:61.109333pt;}
._26{width:66.096000pt;}
._28{width:70.992000pt;}
._4{width:95.967644pt;}
.fs4{font-size:48.000002pt;}
.fs9{font-size:53.333334pt;}
.fsa{font-size:58.666670pt;}
.fs2{font-size:74.666666pt;}
.fs3{font-size:79.466663pt;}
.fs8{font-size:83.866671pt;}
.fs6{font-size:90.666667pt;}
.fs1{font-size:96.000003pt;}
.fs7{font-size:106.666667pt;}
.fs5{font-size:128.000004pt;}
.fs0{font-size:160.000005pt;}
.y0{bottom:0.000000pt;}
.y12{bottom:4.645318pt;}
.y7f{bottom:87.718676pt;}
.ya8{bottom:89.420776pt;}
.y3b{bottom:90.429121pt;}
.y99{bottom:94.911186pt;}
.y5e{bottom:97.626761pt;}
.y91{bottom:99.551166pt;}
.y52{bottom:102.266761pt;}
.y74{bottom:106.498676pt;}
.y3a{bottom:114.331121pt;}
.y2b{bottom:118.831167pt;}
.y7e{bottom:118.998677pt;}
.y4c{bottom:119.066782pt;}
.ya7{bottom:120.700777pt;}
.y98{bottom:126.191177pt;}
.y5d{bottom:128.906762pt;}
.y5b{bottom:128.906782pt;}
.y88{bottom:130.831177pt;}
.y51{bottom:133.546762pt;}
.y73{bottom:137.778687pt;}
.y1f{bottom:147.319137pt;}
.y44{bottom:148.826762pt;}
.y7d{bottom:150.278688pt;}
.ya6{bottom:151.980778pt;}
.y27{bottom:154.287168pt;}
.y4b{bottom:156.106763pt;}
.y97{bottom:157.471178pt;}
.y63{bottom:157.866763pt;}
.y55{bottom:160.186763pt;}
.y5a{bottom:160.186783pt;}
.y18{bottom:160.671178pt;}
.y87{bottom:162.111178pt;}
.y50{bottom:164.826763pt;}
.y72{bottom:169.058688pt;}
.y11{bottom:169.996928pt;}
.y31{bottom:170.111178pt;}
.y39{bottom:178.135143pt;}
.y43{bottom:180.106763pt;}
.y7c{bottom:181.558689pt;}
.ya5{bottom:183.260789pt;}
.y4a{bottom:187.386764pt;}
.y1e{bottom:188.351159pt;}
.y62{bottom:189.146764pt;}
.y59{bottom:191.466774pt;}
.y86{bottom:193.391179pt;}
.y10{bottom:195.028949pt;}
.y26{bottom:195.319169pt;}
.yab{bottom:195.386774pt;}
.y4f{bottom:196.106774pt;}
.y9f{bottom:199.260789pt;}
.y71{bottom:200.338689pt;}
.y6{bottom:201.063954pt;}
.y38{bottom:202.037154pt;}
.y2a{bottom:203.151169pt;}
.y2d{bottom:206.351169pt;}
.y17{bottom:207.951179pt;}
.y42{bottom:211.386774pt;}
.y7b{bottom:212.838690pt;}
.ya3{bottom:214.540790pt;}
.y49{bottom:218.666775pt;}
.y5{bottom:218.983953pt;}
.yf{bottom:220.060960pt;}
.y25{bottom:220.351190pt;}
.y61{bottom:220.426785pt;}
.y96{bottom:222.351190pt;}
.y65{bottom:222.746775pt;}
.y85{bottom:224.671180pt;}
.y54{bottom:225.066765pt;}
.yaa{bottom:226.666775pt;}
.y4e{bottom:227.386775pt;}
.y23{bottom:227.950840pt;}
.y1d{bottom:229.383170pt;}
.y9e{bottom:230.540790pt;}
.y70{bottom:231.618690pt;}
.y4{bottom:236.903951pt;}
.y41{bottom:242.666775pt;}
.y7a{bottom:244.118691pt;}
.ye{bottom:245.092971pt;}
.y24{bottom:245.383171pt;}
.ya2{bottom:245.820791pt;}
.y29{bottom:252.031181pt;}
.y95{bottom:253.631191pt;}
.y64{bottom:254.026776pt;}
.y16{bottom:255.231181pt;}
.y84{bottom:255.951181pt;}
.y53{bottom:256.346766pt;}
.y58{bottom:256.346786pt;}
.ya9{bottom:257.946776pt;}
.y66{bottom:258.479988pt;}
.y4d{bottom:258.666776pt;}
.y30{bottom:259.231181pt;}
.y6a{bottom:260.686171pt;}
.y9d{bottom:261.820791pt;}
.y37{bottom:262.067166pt;}
.y6f{bottom:262.898691pt;}
.y22{bottom:268.982847pt;}
.yd{bottom:270.124991pt;}
.y1c{bottom:270.415177pt;}
.y40{bottom:273.946776pt;}
.y79{bottom:275.398692pt;}
.y69{bottom:276.686172pt;}
.ya1{bottom:277.100792pt;}
.y60{bottom:285.306797pt;}
.y36{bottom:285.969167pt;}
.y83{bottom:287.231182pt;}
.y5c{bottom:287.626767pt;}
.y57{bottom:287.626787pt;}
.y48{bottom:289.946777pt;}
.y68{bottom:292.686172pt;}
.y9c{bottom:293.100792pt;}
.y6e{bottom:294.178692pt;}
.yc{bottom:295.156972pt;}
.y28{bottom:300.911182pt;}
.y15{bottom:302.511182pt;}
.y2f{bottom:303.791177pt;}
.y3f{bottom:305.226777pt;}
.y3{bottom:305.311162pt;}
.y78{bottom:306.678693pt;}
.y67{bottom:308.686173pt;}
.y21{bottom:310.014843pt;}
.y1b{bottom:311.447173pt;}
.y82{bottom:318.511180pt;}
.y56{bottom:318.906788pt;}
.yb{bottom:320.188963pt;}
.y47{bottom:321.226778pt;}
.ya4{bottom:324.380793pt;}
.y6d{bottom:325.458690pt;}
.y3e{bottom:336.506778pt;}
.y2{bottom:337.951164pt;}
.y77{bottom:337.958691pt;}
.ya{bottom:345.220960pt;}
.y35{bottom:345.999169pt;}
.y2c{bottom:348.191174pt;}
.y2e{bottom:348.351177pt;}
.y14{bottom:349.791176pt;}
.y5f{bottom:350.186785pt;}
.y20{bottom:351.046845pt;}
.y1a{bottom:352.479175pt;}
.y46{bottom:352.506779pt;}
.ya0{bottom:355.660794pt;}
.y6c{bottom:356.738686pt;}
.y3d{bottom:367.786779pt;}
.y6b{bottom:368.980157pt;}
.y81{bottom:369.015751pt;}
.y76{bottom:369.238687pt;}
.y34{bottom:369.901170pt;}
.y9{bottom:370.252959pt;}
.y9b{bottom:371.660792pt;}
.y8c{bottom:380.265751pt;}
.y8a{bottom:382.765751pt;}
.y45{bottom:383.786777pt;}
.y1{bottom:385.951165pt;}
.y90{bottom:389.015751pt;}
.y8e{bottom:390.265751pt;}
.y94{bottom:392.765751pt;}
.y33{bottom:393.803172pt;}
.y8{bottom:395.284956pt;}
.y9a{bottom:402.940788pt;}
.y80{bottom:405.815747pt;}
.y19{bottom:405.998425pt;}
.y3c{bottom:415.066773pt;}
.y8b{bottom:417.065747pt;}
.y92{bottom:417.248425pt;}
.y32{bottom:417.705171pt;}
.y89{bottom:419.565747pt;}
.y75{bottom:423.498425pt;}
.y8f{bottom:425.815747pt;}
.y8d{bottom:427.065747pt;}
.y93{bottom:429.565747pt;}
.y7{bottom:455.662991pt;}
.y13{bottom:463.393385pt;}
.h5{height:34.945314pt;}
.h9{height:34.968751pt;}
.hb{height:37.031250pt;}
.h3{height:54.395833pt;}
.h4{height:57.892705pt;}
.ha{height:61.098180pt;}
.hc{height:66.007813pt;}
.h7{height:66.052084pt;}
.h2{height:69.890627pt;}
.h8{height:77.656251pt;}
.h6{height:93.187503pt;}
.h1{height:116.484379pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x9{left:47.000002pt;}
.x6{left:57.000002pt;}
.x7{left:59.004854pt;}
.xd{left:62.105043pt;}
.xc{left:63.341829pt;}
.x12{left:67.315538pt;}
.x11{left:68.344225pt;}
.x17{left:71.065538pt;}
.xa{left:89.778659pt;}
.xf{left:105.000003pt;}
.x8{left:107.004853pt;}
.x18{left:108.750003pt;}
.x13{left:115.315544pt;}
.x14{left:153.000005pt;}
.x1{left:163.124975pt;}
.xe{left:205.035467pt;}
.x10{left:249.000008pt;}
.x16{left:257.945621pt;}
.x15{left:266.330909pt;}
.x3{left:300.300760pt;}
.x4{left:354.716306pt;}
.x2{left:386.533182pt;}
.x5{left:408.107053pt;}
.xb{left:457.396345pt;}
}




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