
    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_def979dcbcd2fb21162c1f3a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.991699;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_7ebaa8967e88ac6ce54e9779.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.991699;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_6efa00a6c6fef42ff952ec58.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.850586;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_41517f275889b762198e3d49.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.725586;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_4302d6a015556a721d668431.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.097168;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_cd0ba4583084177c1bfd3eca.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.080566;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_ab884482392dbf30a0fe89b0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_bfae2fd6da67ab400cef545f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.923340;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_d08e3edebcdbdec657af6ad6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.891113;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:32.053252px;}
.ls2{letter-spacing:847.441593px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1{word-spacing:-16.558425px;}
.ws0{word-spacing:0.000000px;}
._2{margin-left:-2.113528px;}
._0{margin-left:-1.078704px;}
._3{width:1.075521px;}
._1e{width:2.541718px;}
._1b{width:4.406611px;}
._1c{width:5.617187px;}
._1d{width:6.992519px;}
._7{width:8.014097px;}
._2a{width:9.754723px;}
._10{width:10.798422px;}
._22{width:12.013914px;}
._21{width:13.503732px;}
._23{width:15.244876px;}
._12{width:18.512578px;}
._11{width:19.664682px;}
._37{width:21.191498px;}
._39{width:22.892281px;}
._33{width:23.968320px;}
._34{width:24.972019px;}
._2b{width:26.182648px;}
._8{width:27.443520px;}
._9{width:29.182154px;}
._2f{width:30.995302px;}
._2d{width:32.204843px;}
._25{width:33.635594px;}
._26{width:34.682656px;}
._2e{width:35.846403px;}
._31{width:37.041714px;}
._6{width:38.883839px;}
._27{width:40.072898px;}
._13{width:41.145715px;}
._32{width:42.588269px;}
._5{width:43.615950px;}
._4{width:45.054416px;}
._e{width:46.282350px;}
._f{width:47.587956px;}
._c{width:49.013973px;}
._d{width:50.638768px;}
._38{width:51.834338px;}
._35{width:53.175571px;}
._47{width:54.979663px;}
._3a{width:56.827997px;}
._24{width:57.956816px;}
._1f{width:59.901396px;}
._20{width:61.078855px;}
._28{width:63.243093px;}
._29{width:64.408133px;}
._2c{width:65.704607px;}
._a{width:67.798471px;}
._b{width:68.909955px;}
._40{width:70.593223px;}
._4a{width:71.633377px;}
._41{width:72.715289px;}
._30{width:74.148886px;}
._46{width:75.154810px;}
._42{width:76.242492px;}
._44{width:77.480751px;}
._43{width:78.673476px;}
._5e{width:79.837222px;}
._45{width:81.187510px;}
._3b{width:82.249837px;}
._4e{width:83.586671px;}
._59{width:85.120654px;}
._48{width:87.137159px;}
._49{width:88.955999px;}
._51{width:90.727750px;}
._18{width:92.596524px;}
._16{width:94.993617px;}
._17{width:96.036534px;}
._5b{width:98.044246px;}
._5a{width:99.294558px;}
._3f{width:100.911777px;}
._3e{width:101.969187px;}
._19{width:105.817132px;}
._1a{width:106.963027px;}
._57{width:108.083049px;}
._56{width:109.111893px;}
._58{width:116.076629px;}
._4f{width:117.587844px;}
._50{width:118.751073px;}
._36{width:120.611568px;}
._65{width:122.588488px;}
._67{width:129.489988px;}
._66{width:130.536532px;}
._3c{width:135.283885px;}
._3d{width:136.615285px;}
._53{width:141.691814px;}
._52{width:142.988468px;}
._4b{width:161.820831px;}
._4c{width:162.951460px;}
._54{width:164.371345px;}
._55{width:165.472481px;}
._61{width:171.431703px;}
._5d{width:179.283501px;}
._64{width:192.022104px;}
._5f{width:197.288977px;}
._60{width:249.701049px;}
._63{width:340.907778px;}
._62{width:342.019702px;}
._5c{width:598.426654px;}
._4d{width:672.007120px;}
._14{width:847.129023px;}
._15{width:897.117746px;}
._1{width:941.037723px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,102,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.235500px;}
.fs2{font-size:53.995050px;}
.fs0{font-size:59.754600px;}
.fs4{font-size:66.233700px;}
.fs3{font-size:84.232350px;}
.y0{bottom:0.000000px;}
.y6{bottom:55.980010px;}
.y5{bottom:71.100013px;}
.y4{bottom:85.860008px;}
.y36{bottom:102.779983px;}
.y5d{bottom:113.220016px;}
.y2e{bottom:114.480010px;}
.y35{bottom:120.779983px;}
.y5e{bottom:130.320030px;}
.y5c{bottom:131.220016px;}
.y2d{bottom:133.379997px;}
.y34{bottom:138.960022px;}
.y5b{bottom:149.399986px;}
.y2c{bottom:152.460022px;}
.y33{bottom:156.960022px;}
.y5a{bottom:167.399986px;}
.y2b{bottom:171.360008px;}
.y32{bottom:174.960022px;}
.y59{bottom:185.399986px;}
.y2a{bottom:190.259994px;}
.y31{bottom:192.960022px;}
.y58{bottom:203.399986px;}
.y29{bottom:209.340018px;}
.y30{bottom:210.960022px;}
.y57{bottom:221.399986px;}
.y28{bottom:228.240005px;}
.y2f{bottom:228.960022px;}
.y56{bottom:239.399986px;}
.y24{bottom:247.139991px;}
.y27{bottom:247.320030px;}
.y55{bottom:257.399986px;}
.y23{bottom:262.620003px;}
.y26{bottom:266.220016px;}
.y54{bottom:275.580024px;}
.y22{bottom:285.300041px;}
.y53{bottom:293.580024px;}
.y21{bottom:304.200027px;}
.y52{bottom:311.580024px;}
.y20{bottom:323.100013px;}
.y51{bottom:329.580024px;}
.y1f{bottom:342.180004px;}
.y50{bottom:347.580024px;}
.y25{bottom:357.480010px;}
.y1e{bottom:361.080024px;}
.y4f{bottom:365.580024px;}
.y1d{bottom:380.160015px;}
.y4e{bottom:383.580024px;}
.y1c{bottom:399.060000px;}
.y4d{bottom:401.580024px;}
.y1b{bottom:417.960022px;}
.y4c{bottom:419.759994px;}
.y1a{bottom:437.040012px;}
.y4b{bottom:437.759994px;}
.y4a{bottom:455.759994px;}
.y19{bottom:455.939998px;}
.y49{bottom:473.759994px;}
.y18{bottom:475.020023px;}
.y48{bottom:491.759994px;}
.y17{bottom:493.920009px;}
.y47{bottom:509.759994px;}
.y16{bottom:512.819996px;}
.y46{bottom:527.759994px;}
.y15{bottom:531.900021px;}
.y5f{bottom:542.520023px;}
.y45{bottom:545.939998px;}
.y14{bottom:550.800006px;}
.y44{bottom:563.939998px;}
.y13{bottom:569.879997px;}
.y43{bottom:581.939998px;}
.y12{bottom:588.780017px;}
.y42{bottom:599.939998px;}
.y11{bottom:607.680004px;}
.y41{bottom:617.940015px;}
.y10{bottom:626.760012px;}
.y40{bottom:635.940015px;}
.yf{bottom:645.660015px;}
.y3f{bottom:653.940015px;}
.ye{bottom:664.740005px;}
.y3e{bottom:672.120003px;}
.yd{bottom:683.640008px;}
.y3d{bottom:690.120003px;}
.yc{bottom:702.540012px;}
.y3c{bottom:708.120003px;}
.yb{bottom:721.620003px;}
.y3b{bottom:726.120003px;}
.ya{bottom:740.520006px;}
.y3a{bottom:744.120003px;}
.y9{bottom:759.600013px;}
.y39{bottom:762.120010px;}
.y8{bottom:778.500008px;}
.y38{bottom:780.120010px;}
.y7{bottom:797.580007px;}
.y37{bottom:798.300006px;}
.y3{bottom:815.940007px;}
.y2{bottom:833.400012px;}
.y1{bottom:848.340010px;}
.h3{height:37.895957px;}
.h4{height:40.651598px;}
.h9{height:46.861636px;}
.h2{height:46.945875px;}
.h8{height:47.588411px;}
.h6{height:57.275333px;}
.h7{height:58.374916px;}
.h5{height:70.988787px;}
.h0{height:892.980015px;}
.h1{height:893.250000px;}
.w1{width:629.250000px;}
.w0{width:629.279985px;}
.x0{left:0.000000px;}
.x6{left:63.899999px;}
.xd{left:66.780001px;}
.x1b{left:74.159998px;}
.x1c{left:79.560001px;}
.x1f{left:81.540003px;}
.x21{left:85.140000px;}
.x14{left:87.659998px;}
.x18{left:98.459997px;}
.x13{left:104.579999px;}
.x12{left:106.739997px;}
.x4{left:112.140000px;}
.x17{left:114.840002px;}
.x7{left:117.000000px;}
.x9{left:127.799998px;}
.x15{left:146.159998px;}
.x8{left:147.419992px;}
.xa{left:158.400003px;}
.x23{left:209.879998px;}
.x22{left:220.500000px;}
.x2{left:240.300007px;}
.x11{left:251.639992px;}
.xe{left:255.780001px;}
.x5{left:297.180005px;}
.x19{left:309.959988px;}
.x3{left:314.639992px;}
.x25{left:325.620002px;}
.x16{left:340.379998px;}
.x24{left:371.339985px;}
.x1e{left:391.500000px;}
.x1d{left:413.279983px;}
.xb{left:415.620002px;}
.x20{left:448.199993px;}
.xc{left:459.720017px;}
.xf{left:496.259994px;}
.x1a{left:511.199993px;}
.x10{left:516.060001px;}
.x1{left:565.560001px;}
.x26{left:571.319996px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:28.491779pt;}
.ls2{letter-spacing:753.281416pt;}
.ws1{word-spacing:-14.718600pt;}
.ws0{word-spacing:0.000000pt;}
._2{margin-left:-1.878691pt;}
._0{margin-left:-0.958848pt;}
._3{width:0.956019pt;}
._1e{width:2.259305pt;}
._1b{width:3.916987pt;}
._1c{width:4.993055pt;}
._1d{width:6.215572pt;}
._7{width:7.123642pt;}
._2a{width:8.670865pt;}
._10{width:9.598597pt;}
._22{width:10.679034pt;}
._21{width:12.003317pt;}
._23{width:13.551001pt;}
._12{width:16.455625pt;}
._11{width:17.479717pt;}
._37{width:18.836887pt;}
._39{width:20.348694pt;}
._33{width:21.305174pt;}
._34{width:22.197350pt;}
._2b{width:23.273465pt;}
._8{width:24.394240pt;}
._9{width:25.939693pt;}
._2f{width:27.551379pt;}
._2d{width:28.626527pt;}
._25{width:29.898306pt;}
._26{width:30.829027pt;}
._2e{width:31.863470pt;}
._31{width:32.925968pt;}
._6{width:34.563412pt;}
._27{width:35.620354pt;}
._13{width:36.573969pt;}
._32{width:37.856239pt;}
._5{width:38.769733pt;}
._4{width:40.048370pt;}
._e{width:41.139867pt;}
._f{width:42.300406pt;}
._c{width:43.567976pt;}
._d{width:45.012239pt;}
._38{width:46.074967pt;}
._35{width:47.267174pt;}
._47{width:48.870812pt;}
._3a{width:50.513775pt;}
._24{width:51.517170pt;}
._1f{width:53.245685pt;}
._20{width:54.292316pt;}
._28{width:56.216083pt;}
._29{width:57.251674pt;}
._2c{width:58.404095pt;}
._a{width:60.265308pt;}
._b{width:61.253294pt;}
._40{width:62.749531pt;}
._4a{width:63.674112pt;}
._41{width:64.635812pt;}
._30{width:65.910121pt;}
._46{width:66.804276pt;}
._42{width:67.771104pt;}
._44{width:68.871779pt;}
._43{width:69.931978pt;}
._5e{width:70.966420pt;}
._45{width:72.166676pt;}
._3b{width:73.110966pt;}
._4e{width:74.299263pt;}
._59{width:75.662803pt;}
._48{width:77.455253pt;}
._49{width:79.071999pt;}
._51{width:80.646889pt;}
._18{width:82.308021pt;}
._16{width:84.438770pt;}
._17{width:85.365808pt;}
._5b{width:87.150440pt;}
._5a{width:88.261830pt;}
._3f{width:89.699357pt;}
._3e{width:90.639278pt;}
._19{width:94.059673pt;}
._1a{width:95.078246pt;}
._57{width:96.073822pt;}
._56{width:96.988350pt;}
._58{width:103.179226pt;}
._4f{width:104.522528pt;}
._50{width:105.556510pt;}
._36{width:107.210282pt;}
._65{width:108.967545pt;}
._67{width:115.102212pt;}
._66{width:116.032473pt;}
._3c{width:120.252342pt;}
._3d{width:121.435809pt;}
._53{width:125.948279pt;}
._52{width:127.100860pt;}
._4b{width:143.840738pt;}
._4c{width:144.845743pt;}
._54{width:146.107863pt;}
._55{width:147.086649pt;}
._61{width:152.383736pt;}
._5d{width:159.363112pt;}
._64{width:170.686315pt;}
._5f{width:175.367979pt;}
._60{width:221.956488pt;}
._63{width:303.029136pt;}
._62{width:304.017513pt;}
._5c{width:531.934804pt;}
._4d{width:597.339662pt;}
._14{width:753.003576pt;}
._15{width:797.437996pt;}
._1{width:836.477976pt;}
.fs1{font-size:42.876000pt;}
.fs2{font-size:47.995600pt;}
.fs0{font-size:53.115200pt;}
.fs4{font-size:58.874400pt;}
.fs3{font-size:74.873200pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:49.760009pt;}
.y5{bottom:63.200011pt;}
.y4{bottom:76.320007pt;}
.y36{bottom:91.359985pt;}
.y5d{bottom:100.640014pt;}
.y2e{bottom:101.760009pt;}
.y35{bottom:107.359985pt;}
.y5e{bottom:115.840026pt;}
.y5c{bottom:116.640014pt;}
.y2d{bottom:118.559997pt;}
.y34{bottom:123.520019pt;}
.y5b{bottom:132.799987pt;}
.y2c{bottom:135.520019pt;}
.y33{bottom:139.520019pt;}
.y5a{bottom:148.799987pt;}
.y2b{bottom:152.320007pt;}
.y32{bottom:155.520019pt;}
.y59{bottom:164.799987pt;}
.y2a{bottom:169.119994pt;}
.y31{bottom:171.520019pt;}
.y58{bottom:180.799987pt;}
.y29{bottom:186.080016pt;}
.y30{bottom:187.520019pt;}
.y57{bottom:196.799987pt;}
.y28{bottom:202.880004pt;}
.y2f{bottom:203.520019pt;}
.y56{bottom:212.799987pt;}
.y24{bottom:219.679992pt;}
.y27{bottom:219.840026pt;}
.y55{bottom:228.799987pt;}
.y23{bottom:233.440002pt;}
.y26{bottom:236.640014pt;}
.y54{bottom:244.960021pt;}
.y22{bottom:253.600036pt;}
.y53{bottom:260.960021pt;}
.y21{bottom:270.400024pt;}
.y52{bottom:276.960021pt;}
.y20{bottom:287.200011pt;}
.y51{bottom:292.960021pt;}
.y1f{bottom:304.160003pt;}
.y50{bottom:308.960021pt;}
.y25{bottom:317.760009pt;}
.y1e{bottom:320.960021pt;}
.y4f{bottom:324.960021pt;}
.y1d{bottom:337.920013pt;}
.y4e{bottom:340.960021pt;}
.y1c{bottom:354.720000pt;}
.y4d{bottom:356.960021pt;}
.y1b{bottom:371.520019pt;}
.y4c{bottom:373.119994pt;}
.y1a{bottom:388.480010pt;}
.y4b{bottom:389.119994pt;}
.y4a{bottom:405.119994pt;}
.y19{bottom:405.279998pt;}
.y49{bottom:421.119994pt;}
.y18{bottom:422.240020pt;}
.y48{bottom:437.119994pt;}
.y17{bottom:439.040008pt;}
.y47{bottom:453.119994pt;}
.y16{bottom:455.839996pt;}
.y46{bottom:469.119994pt;}
.y15{bottom:472.800018pt;}
.y5f{bottom:482.240020pt;}
.y45{bottom:485.279998pt;}
.y14{bottom:489.600005pt;}
.y44{bottom:501.279998pt;}
.y13{bottom:506.559997pt;}
.y43{bottom:517.279998pt;}
.y12{bottom:523.360015pt;}
.y42{bottom:533.279998pt;}
.y11{bottom:540.160003pt;}
.y41{bottom:549.280013pt;}
.y10{bottom:557.120010pt;}
.y40{bottom:565.280013pt;}
.yf{bottom:573.920013pt;}
.y3f{bottom:581.280013pt;}
.ye{bottom:590.880004pt;}
.y3e{bottom:597.440002pt;}
.yd{bottom:607.680007pt;}
.y3d{bottom:613.440002pt;}
.yc{bottom:624.480010pt;}
.y3c{bottom:629.440002pt;}
.yb{bottom:641.440002pt;}
.y3b{bottom:645.440002pt;}
.ya{bottom:658.240005pt;}
.y3a{bottom:661.440002pt;}
.y9{bottom:675.200011pt;}
.y39{bottom:677.440009pt;}
.y8{bottom:692.000007pt;}
.y38{bottom:693.440009pt;}
.y7{bottom:708.960006pt;}
.y37{bottom:709.600005pt;}
.y3{bottom:725.280006pt;}
.y2{bottom:740.800010pt;}
.y1{bottom:754.080009pt;}
.h3{height:33.685295pt;}
.h4{height:36.134754pt;}
.h9{height:41.654788pt;}
.h2{height:41.729666pt;}
.h8{height:42.300810pt;}
.h6{height:50.911407pt;}
.h7{height:51.888814pt;}
.h5{height:63.101144pt;}
.h0{height:793.760013pt;}
.h1{height:794.000000pt;}
.w1{width:559.333333pt;}
.w0{width:559.359987pt;}
.x0{left:0.000000pt;}
.x6{left:56.799999pt;}
.xd{left:59.360001pt;}
.x1b{left:65.919998pt;}
.x1c{left:70.720001pt;}
.x1f{left:72.480003pt;}
.x21{left:75.680000pt;}
.x14{left:77.919998pt;}
.x18{left:87.519997pt;}
.x13{left:92.959999pt;}
.x12{left:94.879997pt;}
.x4{left:99.680000pt;}
.x17{left:102.080002pt;}
.x7{left:104.000000pt;}
.x9{left:113.599998pt;}
.x15{left:129.919998pt;}
.x8{left:131.039993pt;}
.xa{left:140.800003pt;}
.x23{left:186.559998pt;}
.x22{left:196.000000pt;}
.x2{left:213.600006pt;}
.x11{left:223.679993pt;}
.xe{left:227.360001pt;}
.x5{left:264.160004pt;}
.x19{left:275.519989pt;}
.x3{left:279.679993pt;}
.x25{left:289.440002pt;}
.x16{left:302.559998pt;}
.x24{left:330.079987pt;}
.x1e{left:348.000000pt;}
.x1d{left:367.359985pt;}
.xb{left:369.440002pt;}
.x20{left:398.399994pt;}
.xc{left:408.640015pt;}
.xf{left:441.119995pt;}
.x1a{left:454.399994pt;}
.x10{left:458.720001pt;}
.x1{left:502.720001pt;}
.x26{left:507.839996pt;}
}




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