
    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_ad54f5006688a8343cfbdf1b.woff')format("woff");}.ff1{font-family:ff1;line-height:0.946289;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_b38b819cbdc08465a64b191c.woff')format("woff");}.ff2{font-family:ff2;line-height:0.958496;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_1cde7e80724cfa3e8a8863b4.woff')format("woff");}.ff3{font-family:ff3;line-height:0.946289;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_a40af56c1d7b3b201af24873.woff')format("woff");}.ff4{font-family:ff4;line-height:0.958496;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_dfbea00e4dc0758c084862b9.woff')format("woff");}.ff5{font-family:ff5;line-height:0.958496;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_4563a32aec4c28fa976c7407.woff')format("woff");}.ff6{font-family:ff6;line-height:0.958496;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_61092310896d2e48e5542f3d.woff')format("woff");}.ff7{font-family:ff7;line-height:0.868164;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:14.414085px;}
.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:-0.072000px;}
.wsa{word-spacing:0.000000px;}
.ws1d{word-spacing:11.928693px;}
.ws9{word-spacing:11.930217px;}
.ws11{word-spacing:11.930360px;}
.ws1e{word-spacing:11.934885px;}
.ws15{word-spacing:14.342028px;}
.ws8{word-spacing:14.342039px;}
.wsf{word-spacing:14.342041px;}
.ws17{word-spacing:14.342049px;}
.ws1a{word-spacing:14.342050px;}
.ws3{word-spacing:14.342052px;}
.ws1c{word-spacing:14.342058px;}
.ws22{word-spacing:14.342060px;}
.ws1{word-spacing:14.342061px;}
.ws6{word-spacing:14.342062px;}
.ws13{word-spacing:14.342063px;}
.wsc{word-spacing:14.342064px;}
.ws18{word-spacing:14.342071px;}
.ws7{word-spacing:14.342074px;}
.ws10{word-spacing:14.342085px;}
.ws20{word-spacing:14.342086px;}
.ws5{word-spacing:14.763934px;}
.ws2{word-spacing:14.763937px;}
.ws1b{word-spacing:16.698807px;}
.ws25{word-spacing:16.698810px;}
.ws16{word-spacing:16.699081px;}
.ws23{word-spacing:16.699084px;}
.ws24{word-spacing:16.701783px;}
.ws19{word-spacing:16.701785px;}
.ws21{word-spacing:16.702011px;}
.ws14{word-spacing:16.702013px;}
.wse{word-spacing:19.101369px;}
.ws1f{word-spacing:19.101390px;}
.ws12{word-spacing:19.106088px;}
.wsd{word-spacing:24.556966px;}
.ws27{word-spacing:24.572164px;}
.ws0{word-spacing:24.572875px;}
.wsb{word-spacing:24.573719px;}
.ws26{word-spacing:24.574042px;}
._5{margin-left:-8.261430px;}
._3{margin-left:-4.921875px;}
._0{margin-left:-3.515625px;}
._2{margin-left:-2.460937px;}
._1{margin-left:-1.406250px;}
._4{width:28.828135px;}
.fc3{color:rgb(67,67,67);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(74,134,232);}
.fc0{color:rgb(0,163,219);}
.fs2{font-size:59.999999px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:83.999997px;}
.fs3{font-size:96.000003px;}
.fs0{font-size:119.999997px;}
.y0{bottom:0.000000px;}
.yc{bottom:12.708978px;}
.y10{bottom:12.708981px;}
.y4{bottom:12.708985px;}
.yb{bottom:34.681638px;}
.yf{bottom:34.681641px;}
.ya{bottom:56.654298px;}
.y15{bottom:56.654301px;}
.y17{bottom:60.774908px;}
.y14{bottom:78.626946px;}
.y16{bottom:81.832028px;}
.y13{bottom:100.599606px;}
.y12{bottom:122.572266px;}
.y60{bottom:166.116578px;}
.y81{bottom:167.712893px;}
.y44{bottom:179.557618px;}
.y5f{bottom:189.087893px;}
.y7b{bottom:205.195318px;}
.y43{bottom:206.770018px;}
.y34{bottom:213.147583px;}
.y7a{bottom:232.760743px;}
.y42{bottom:233.982418px;}
.y33{bottom:240.713203px;}
.y5e{bottom:254.156248px;}
.y79{bottom:260.326168px;}
.y32{bottom:268.278988px;}
.y5d{bottom:281.722048px;}
.y41{bottom:284.605954px;}
.y78{bottom:287.891608px;}
.y31{bottom:295.844608px;}
.y5c{bottom:309.287848px;}
.y77{bottom:315.457768px;}
.y30{bottom:323.410393px;}
.y40{bottom:336.730963px;}
.y5b{bottom:341.911382px;}
.y76{bottom:343.023193px;}
.y2f{bottom:350.976013px;}
.y3f{bottom:361.999513px;}
.y11{bottom:377.226562px;}
.y75{bottom:377.914309px;}
.y2e{bottom:378.541813px;}
.y3e{bottom:387.268063px;}
.y5a{bottom:395.979853px;}
.y2d{bottom:406.107418px;}
.y3d{bottom:412.536628px;}
.y59{bottom:423.192268px;}
.y74{bottom:432.336913px;}
.y3c{bottom:437.805178px;}
.y2c{bottom:443.085938px;}
.y58{bottom:450.405028px;}
.y73{bottom:459.902338px;}
.y3b{bottom:463.073728px;}
.ye{bottom:465.117188px;}
.y57{bottom:477.617068px;}
.y72{bottom:487.468513px;}
.y3a{bottom:488.342278px;}
.y2b{bottom:501.067378px;}
.y56{bottom:504.829468px;}
.y39{bottom:513.610843px;}
.y71{bottom:515.033203px;}
.yd{bottom:525.937503px;}
.y2a{bottom:526.335943px;}
.y55{bottom:532.041868px;}
.y38{bottom:538.879393px;}
.y70{bottom:542.599363px;}
.y37{bottom:564.147943px;}
.y9{bottom:564.785156px;}
.y29{bottom:566.024416px;}
.y6f{bottom:577.490479px;}
.y54{bottom:582.665404px;}
.y8f{bottom:594.749998px;}
.y36{bottom:601.126463px;}
.y8{bottom:608.730468px;}
.y8e{bottom:622.316158px;}
.y6e{bottom:631.913083px;}
.y28{bottom:632.718748px;}
.y53{bottom:637.087273px;}
.y7{bottom:647.578128px;}
.y8d{bottom:649.882318px;}
.y35{bottom:657.752933px;}
.y27{bottom:657.987298px;}
.y6d{bottom:659.478508px;}
.y52{bottom:664.653073px;}
.y26{bottom:683.255863px;}
.y6{bottom:686.425773px;}
.y6c{bottom:687.043948px;}
.y51{bottom:692.218873px;}
.y8c{bottom:700.419433px;}
.y25{bottom:708.524413px;}
.y50{bottom:719.784298px;}
.y6b{bottom:721.935064px;}
.y5{bottom:725.273433px;}
.y8b{bottom:725.687983px;}
.y24{bottom:733.792963px;}
.y4f{bottom:747.350098px;}
.y8a{bottom:750.956548px;}
.y23{bottom:759.061528px;}
.y3{bottom:764.121093px;}
.y4e{bottom:774.915898px;}
.y89{bottom:776.225098px;}
.y6a{bottom:776.357668px;}
.y22{bottom:784.330078px;}
.y4d{bottom:802.481683px;}
.y69{bottom:803.923828px;}
.y21{bottom:809.598628px;}
.y88{bottom:810.420407px;}
.y4c{bottom:830.047123px;}
.y68{bottom:831.489253px;}
.y20{bottom:834.867193px;}
.y2{bottom:835.242193px;}
.y4b{bottom:857.612908px;}
.y67{bottom:859.054693px;}
.y1f{bottom:860.135743px;}
.y1{bottom:874.930667px;}
.y87{bottom:879.411628px;}
.y4a{bottom:885.178708px;}
.y1e{bottom:885.404293px;}
.y66{bottom:886.620118px;}
.y86{bottom:906.977053px;}
.y1d{bottom:910.672858px;}
.y49{bottom:912.744507px;}
.y65{bottom:914.186278px;}
.y85{bottom:934.543213px;}
.y1c{bottom:935.941407px;}
.y64{bottom:941.751709px;}
.y80{bottom:942.416748px;}
.y48{bottom:954.367675px;}
.y1b{bottom:961.209961px;}
.y84{bottom:962.109375px;}
.y63{bottom:969.317871px;}
.y7f{bottom:969.982177px;}
.y1a{bottom:986.478516px;}
.y83{bottom:989.674804px;}
.y62{bottom:996.883300px;}
.y7e{bottom:997.548340px;}
.y47{bottom:1008.436524px;}
.y19{bottom:1011.747070px;}
.y82{bottom:1017.240234px;}
.y7d{bottom:1025.113770px;}
.y61{bottom:1031.879883px;}
.y46{bottom:1035.648925px;}
.y18{bottom:1051.435546px;}
.y7c{bottom:1060.004883px;}
.y45{bottom:1062.861328px;}
.h3{height:37.722657px;}
.h9{height:43.154296px;}
.h4{height:50.906250px;}
.h2{height:51.785156px;}
.hb{height:55.986326px;}
.h6{height:59.695312px;}
.ha{height:69.046877px;}
.h5{height:81.667970px;}
.h1{height:86.308592px;}
.h7{height:147.585938px;}
.h8{height:159.285645px;}
.h0{height:1188.000000px;}
.w1{width:168.750000px;}
.w2{width:532.125000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x4{left:6.750000px;}
.xb{left:14.071289px;}
.x5{left:30.779297px;}
.x6{left:51.697266px;}
.x7{left:55.186524px;}
.x2{left:66.032227px;}
.x9{left:81.606446px;}
.xa{left:97.312500px;}
.x8{left:98.446290px;}
.x1{left:108.000000px;}
.xd{left:122.210060px;}
.xc{left:211.303671px;}
.x3{left:277.875000px;}
.xe{left:387.594776px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:12.812520pt;}
.ws4{word-spacing:-0.064000pt;}
.wsa{word-spacing:0.000000pt;}
.ws1d{word-spacing:10.603283pt;}
.ws9{word-spacing:10.604637pt;}
.ws11{word-spacing:10.604765pt;}
.ws1e{word-spacing:10.608787pt;}
.ws15{word-spacing:12.748470pt;}
.ws8{word-spacing:12.748479pt;}
.wsf{word-spacing:12.748481pt;}
.ws17{word-spacing:12.748488pt;}
.ws1a{word-spacing:12.748489pt;}
.ws3{word-spacing:12.748490pt;}
.ws1c{word-spacing:12.748496pt;}
.ws22{word-spacing:12.748498pt;}
.ws1{word-spacing:12.748499pt;}
.ws6{word-spacing:12.748500pt;}
.ws13{word-spacing:12.748501pt;}
.wsc{word-spacing:12.748502pt;}
.ws18{word-spacing:12.748508pt;}
.ws7{word-spacing:12.748510pt;}
.ws10{word-spacing:12.748520pt;}
.ws20{word-spacing:12.748521pt;}
.ws5{word-spacing:13.123497pt;}
.ws2{word-spacing:13.123500pt;}
.ws1b{word-spacing:14.843384pt;}
.ws25{word-spacing:14.843386pt;}
.ws16{word-spacing:14.843627pt;}
.ws23{word-spacing:14.843630pt;}
.ws24{word-spacing:14.846029pt;}
.ws19{word-spacing:14.846031pt;}
.ws21{word-spacing:14.846232pt;}
.ws14{word-spacing:14.846234pt;}
.wse{word-spacing:16.978995pt;}
.ws1f{word-spacing:16.979013pt;}
.ws12{word-spacing:16.983189pt;}
.wsd{word-spacing:21.828414pt;}
.ws27{word-spacing:21.841924pt;}
.ws0{word-spacing:21.842556pt;}
.wsb{word-spacing:21.843306pt;}
.ws26{word-spacing:21.843593pt;}
._5{margin-left:-7.343493pt;}
._3{margin-left:-4.375000pt;}
._0{margin-left:-3.125000pt;}
._2{margin-left:-2.187500pt;}
._1{margin-left:-1.250000pt;}
._4{width:25.625009pt;}
.fs2{font-size:53.333332pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:74.666664pt;}
.fs3{font-size:85.333336pt;}
.fs0{font-size:106.666664pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:11.296869pt;}
.y10{bottom:11.296872pt;}
.y4{bottom:11.296876pt;}
.yb{bottom:30.828122pt;}
.yf{bottom:30.828125pt;}
.ya{bottom:50.359376pt;}
.y15{bottom:50.359378pt;}
.y17{bottom:54.022141pt;}
.y14{bottom:69.890618pt;}
.y16{bottom:72.739581pt;}
.y13{bottom:89.421872pt;}
.y12{bottom:108.953125pt;}
.y60{bottom:147.659181pt;}
.y81{bottom:149.078128pt;}
.y44{bottom:159.606772pt;}
.y5f{bottom:168.078128pt;}
.y7b{bottom:182.395838pt;}
.y43{bottom:183.795572pt;}
.y34{bottom:189.464518pt;}
.y7a{bottom:206.898438pt;}
.y42{bottom:207.984371pt;}
.y33{bottom:213.967292pt;}
.y5e{bottom:225.916665pt;}
.y79{bottom:231.401038pt;}
.y32{bottom:238.470212pt;}
.y5d{bottom:250.419598pt;}
.y41{bottom:252.983070pt;}
.y78{bottom:255.903652pt;}
.y31{bottom:262.972985pt;}
.y5c{bottom:274.922532pt;}
.y77{bottom:280.406905pt;}
.y30{bottom:287.475905pt;}
.y40{bottom:299.316412pt;}
.y5b{bottom:303.921229pt;}
.y76{bottom:304.909505pt;}
.y2f{bottom:311.978678pt;}
.y3f{bottom:321.777345pt;}
.y11{bottom:335.312500pt;}
.y75{bottom:335.923830pt;}
.y2e{bottom:336.481612pt;}
.y3e{bottom:344.238278pt;}
.y5a{bottom:351.982092pt;}
.y2d{bottom:360.984372pt;}
.y3d{bottom:366.699225pt;}
.y59{bottom:376.170905pt;}
.y74{bottom:384.299478pt;}
.y3c{bottom:389.160158pt;}
.y2c{bottom:393.854167pt;}
.y58{bottom:400.360025pt;}
.y73{bottom:408.802078pt;}
.y3b{bottom:411.621092pt;}
.ye{bottom:413.437500pt;}
.y57{bottom:424.548505pt;}
.y72{bottom:433.305345pt;}
.y3a{bottom:434.082025pt;}
.y2b{bottom:445.393225pt;}
.y56{bottom:448.737305pt;}
.y39{bottom:456.542972pt;}
.y71{bottom:457.807292pt;}
.yd{bottom:467.500003pt;}
.y2a{bottom:467.854172pt;}
.y55{bottom:472.926104pt;}
.y38{bottom:479.003905pt;}
.y70{bottom:482.310545pt;}
.y37{bottom:501.464838pt;}
.y9{bottom:502.031249pt;}
.y29{bottom:503.132815pt;}
.y6f{bottom:513.324870pt;}
.y54{bottom:517.924804pt;}
.y8f{bottom:528.666665pt;}
.y36{bottom:534.334633pt;}
.y8{bottom:541.093749pt;}
.y8e{bottom:553.169918pt;}
.y6e{bottom:561.700518pt;}
.y28{bottom:562.416665pt;}
.y53{bottom:566.299798pt;}
.y7{bottom:575.625003pt;}
.y8d{bottom:577.673172pt;}
.y35{bottom:584.669274pt;}
.y27{bottom:584.877598pt;}
.y6d{bottom:586.203118pt;}
.y52{bottom:590.802732pt;}
.y26{bottom:607.338545pt;}
.y6{bottom:610.156243pt;}
.y6c{bottom:610.705732pt;}
.y51{bottom:615.305665pt;}
.y8c{bottom:622.595052pt;}
.y25{bottom:629.799478pt;}
.y50{bottom:639.808265pt;}
.y6b{bottom:641.720057pt;}
.y5{bottom:644.687496pt;}
.y8b{bottom:645.055985pt;}
.y24{bottom:652.260412pt;}
.y4f{bottom:664.311198pt;}
.y8a{bottom:667.516932pt;}
.y23{bottom:674.721358pt;}
.y3{bottom:679.218749pt;}
.y4e{bottom:688.814132pt;}
.y89{bottom:689.977865pt;}
.y6a{bottom:690.095705pt;}
.y22{bottom:697.182292pt;}
.y4d{bottom:713.317052pt;}
.y69{bottom:714.598958pt;}
.y21{bottom:719.643225pt;}
.y88{bottom:720.373695pt;}
.y4c{bottom:737.819665pt;}
.y68{bottom:739.101558pt;}
.y20{bottom:742.104172pt;}
.y2{bottom:742.437505pt;}
.y4b{bottom:762.322585pt;}
.y67{bottom:763.604172pt;}
.y1f{bottom:764.565105pt;}
.y1{bottom:777.716148pt;}
.y87{bottom:781.699225pt;}
.y4a{bottom:786.825518pt;}
.y1e{bottom:787.026038pt;}
.y66{bottom:788.106772pt;}
.y86{bottom:806.201825pt;}
.y1d{bottom:809.486985pt;}
.y49{bottom:811.328450pt;}
.y65{bottom:812.610025pt;}
.y85{bottom:830.705078pt;}
.y1c{bottom:831.947917pt;}
.y64{bottom:837.112630pt;}
.y80{bottom:837.703776pt;}
.y48{bottom:848.326822pt;}
.y1b{bottom:854.408854pt;}
.y84{bottom:855.208333pt;}
.y63{bottom:861.615885pt;}
.y7f{bottom:862.206380pt;}
.y1a{bottom:876.869792pt;}
.y83{bottom:879.710937pt;}
.y62{bottom:886.118489pt;}
.y7e{bottom:886.709636pt;}
.y47{bottom:896.388021pt;}
.y19{bottom:899.330729pt;}
.y82{bottom:904.213541pt;}
.y7d{bottom:911.212240pt;}
.y61{bottom:917.226563pt;}
.y46{bottom:920.576822pt;}
.y18{bottom:934.609374pt;}
.y7c{bottom:942.226562pt;}
.y45{bottom:944.765625pt;}
.h3{height:33.531251pt;}
.h9{height:38.359374pt;}
.h4{height:45.250000pt;}
.h2{height:46.031250pt;}
.hb{height:49.765623pt;}
.h6{height:53.062500pt;}
.ha{height:61.375002pt;}
.h5{height:72.593751pt;}
.h1{height:76.718748pt;}
.h7{height:131.187500pt;}
.h8{height:141.587240pt;}
.h0{height:1056.000000pt;}
.w1{width:150.000000pt;}
.w2{width:473.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.000000pt;}
.xb{left:12.507812pt;}
.x5{left:27.359375pt;}
.x6{left:45.953125pt;}
.x7{left:49.054688pt;}
.x2{left:58.695313pt;}
.x9{left:72.539063pt;}
.xa{left:86.500000pt;}
.x8{left:87.507813pt;}
.x1{left:96.000000pt;}
.xd{left:108.631165pt;}
.xc{left:187.825485pt;}
.x3{left:247.000000pt;}
.xe{left:344.528690pt;}
}




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