
    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_c27fabbabe3d12dc4cb6d008.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_88c95a788fb036b7d224f70e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_a59162daeafa0ab8fa67d075.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c76098ae173c61c3fed3a1df.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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_588262599381b1d94fcded7c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.402354;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:-95.040000px;}
.v1{vertical-align:-74.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:30.240000px;}
.ls2{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.020160px;}
.ls5{letter-spacing:0.178800px;}
.ls7{letter-spacing:0.305400px;}
.ls9{letter-spacing:0.357000px;}
.ls3{letter-spacing:0.460800px;}
.ls0{letter-spacing:0.720000px;}
.ls4{letter-spacing:41.581440px;}
.ls8{letter-spacing:44.605440px;}
.ls1{letter-spacing:3021.696000px;}
.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;}
}
.ws6{word-spacing:-21.237000px;}
.ws3{word-spacing:-21.058800px;}
.ws0{word-spacing:-20.880000px;}
.ws4{word-spacing:-16.560000px;}
.ws5{word-spacing:-15.120000px;}
.ws1{word-spacing:-13.680000px;}
.ws2{word-spacing:0.000000px;}
._28{margin-left:-5.716800px;}
._8{margin-left:-3.678240px;}
._1{margin-left:-1.837440px;}
._0{width:1.837440px;}
._2{width:3.587520px;}
._6{width:4.684800px;}
._d{width:5.796000px;}
._b{width:7.227360px;}
._a{width:8.587680px;}
._c{width:9.870240px;}
._e{width:11.776320px;}
._f{width:13.645440px;}
._5{width:14.783040px;}
._4{width:16.501920px;}
._9{width:18.207360px;}
._7{width:19.209600px;}
._19{width:21.965760px;}
._10{width:22.968000px;}
._1b{width:24.137280px;}
._27{width:25.139520px;}
._1a{width:26.141760px;}
._15{width:27.227520px;}
._14{width:28.229760px;}
._13{width:29.482560px;}
._29{width:30.484800px;}
._21{width:31.654080px;}
._23{width:32.659680px;}
._22{width:36.080640px;}
._20{width:38.669760px;}
._18{width:40.340160px;}
._2c{width:42.926640px;}
._2a{width:43.928880px;}
._2b{width:45.356640px;}
._1d{width:50.362560px;}
._1c{width:51.531840px;}
._11{width:58.965120px;}
._12{width:60.134400px;}
._26{width:61.721280px;}
._2d{width:66.533760px;}
._2e{width:67.559040px;}
._2f{width:69.202560px;}
._1f{width:76.838400px;}
._1e{width:79.093440px;}
._24{width:112.501440px;}
._25{width:114.422400px;}
._16{width:140.898240px;}
._17{width:142.234560px;}
._3{width:1619.290080px;}
.fc3{color:rgb(128,100,162);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(95,73,122);}
.fs4{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs2{font-size:54.720000px;}
.fs5{font-size:60.480000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y3c{bottom:5.040000px;}
.y24{bottom:16.560000px;}
.y26{bottom:16.920000px;}
.y3b{bottom:29.160000px;}
.y50{bottom:36.360000px;}
.y3a{bottom:53.280000px;}
.y8{bottom:57.600000px;}
.y4f{bottom:60.480000px;}
.y7{bottom:76.356000px;}
.y39{bottom:77.400000px;}
.y4e{bottom:84.600000px;}
.y79{bottom:95.436000px;}
.y38{bottom:101.520000px;}
.y23{bottom:104.076000px;}
.y4d{bottom:108.720000px;}
.y74{bottom:109.836000px;}
.y78{bottom:114.516000px;}
.y77{bottom:121.356000px;}
.y4c{bottom:132.870000px;}
.y76{bottom:133.236000px;}
.y59{bottom:140.436000px;}
.y73{bottom:145.836000px;}
.y37{bottom:146.550000px;}
.y7f{bottom:152.310000px;}
.y22{bottom:157.710000px;}
.y4b{bottom:158.430000px;}
.y7e{bottom:159.150000px;}
.y36{bottom:171.030000px;}
.y58{bottom:176.430000px;}
.y72{bottom:182.190000px;}
.y4a{bottom:182.550000px;}
.y7d{bottom:188.670000px;}
.y21{bottom:194.115000px;}
.y35{bottom:195.150000px;}
.y49{bottom:206.670000px;}
.y57{bottom:212.835000px;}
.y71{bottom:218.595000px;}
.y20{bottom:230.475000px;}
.y48{bottom:231.150000px;}
.y34{bottom:240.150000px;}
.y56{bottom:248.835000px;}
.y80{bottom:254.235000px;}
.y70{bottom:254.595000px;}
.y47{bottom:256.740000px;}
.y33{bottom:264.300000px;}
.y1f{bottom:266.835000px;}
.y46{bottom:280.860000px;}
.y55{bottom:285.195000px;}
.y32{bottom:288.420000px;}
.y6f{bottom:290.955000px;}
.y7c{bottom:298.515000px;}
.y1e{bottom:302.835000px;}
.y45{bottom:304.980000px;}
.y31{bottom:312.540000px;}
.y54{bottom:321.585000px;}
.y6e{bottom:326.985000px;}
.y44{bottom:330.540000px;}
.y30{bottom:336.660000px;}
.y1d{bottom:339.225000px;}
.y43{bottom:354.660000px;}
.y53{bottom:357.585000px;}
.y2f{bottom:360.780000px;}
.y6d{bottom:363.345000px;}
.y7b{bottom:370.905000px;}
.y1c{bottom:375.585000px;}
.y42{bottom:378.825000px;}
.y2e{bottom:384.945000px;}
.y52{bottom:393.945000px;}
.y6c{bottom:399.705000px;}
.y41{bottom:403.305000px;}
.y2d{bottom:409.425000px;}
.y1b{bottom:411.585000px;}
.y40{bottom:428.865000px;}
.y51{bottom:430.305000px;}
.y2c{bottom:433.545000px;}
.y6b{bottom:435.705000px;}
.y1a{bottom:447.990000px;}
.y28{bottom:450.150000px;}
.y3f{bottom:452.985000px;}
.y6a{bottom:472.110000px;}
.y3e{bottom:477.105000px;}
.y2b{bottom:478.545000px;}
.y19{bottom:483.990000px;}
.y3d{bottom:501.255000px;}
.y2a{bottom:502.695000px;}
.y69{bottom:508.110000px;}
.y18{bottom:520.350000px;}
.y29{bottom:526.815000px;}
.y68{bottom:544.470000px;}
.y17{bottom:556.710000px;}
.y67{bottom:580.860000px;}
.y16{bottom:592.740000px;}
.y66{bottom:616.860000px;}
.y15{bottom:629.100000px;}
.y65{bottom:653.220000px;}
.y14{bottom:665.100000px;}
.y64{bottom:689.580000px;}
.y13{bottom:701.490000px;}
.y63{bottom:725.610000px;}
.y12{bottom:737.850000px;}
.y62{bottom:761.970000px;}
.y11{bottom:773.850000px;}
.y61{bottom:797.970000px;}
.y10{bottom:810.210000px;}
.y60{bottom:834.375000px;}
.y7a{bottom:841.935000px;}
.yf{bottom:846.615000px;}
.y81{bottom:850.575000px;}
.y5f{bottom:870.735000px;}
.y75{bottom:878.295000px;}
.ye{bottom:906.375000px;}
.y5e{bottom:906.735000px;}
.yd{bottom:930.855000px;}
.y5d{bottom:943.095000px;}
.yc{bottom:955.005000px;}
.yb{bottom:978.765000px;}
.y5c{bottom:979.125000px;}
.y27{bottom:996.765000px;}
.ya{bottom:1015.125000px;}
.y5b{bottom:1015.485000px;}
.y25{bottom:1033.845000px;}
.y9{bottom:1051.485000px;}
.y5a{bottom:1051.845000px;}
.y6{bottom:1074.525000px;}
.y5{bottom:1093.650000px;}
.y4{bottom:1131.450000px;}
.y3{bottom:1150.890000px;}
.y2{bottom:1169.610000px;}
.y1{bottom:1189.410000px;}
.h7{height:36.000000px;}
.h8{height:36.360000px;}
.hf{height:38.158594px;}
.hd{height:40.985156px;}
.hc{height:53.704687px;}
.he{height:58.380469px;}
.h10{height:59.357813px;}
.h3{height:65.010937px;}
.h4{height:66.757500px;}
.ha{height:73.610156px;}
.h5{height:81.970312px;}
.h6{height:83.944687px;}
.h2{height:84.172500px;}
.hb{height:85.845399px;}
.h9{height:545.910000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:358.350000px;}
.w4{width:893.159973px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:7.560000px;}
.xa{left:60.870000px;}
.x7{left:77.436000px;}
.x2{left:84.995987px;}
.xd{left:90.035987px;}
.x15{left:106.235987px;}
.x5{left:138.311987px;}
.x12{left:205.274973px;}
.x1{left:209.954987px;}
.x13{left:212.114987px;}
.xb{left:300.704973px;}
.xc{left:307.544987px;}
.x14{left:419.219987px;}
.x9{left:436.500000px;}
.x10{left:449.459973px;}
.x11{left:456.299987px;}
.x16{left:459.539987px;}
.x4{left:463.859987px;}
.x3{left:615.494987px;}
.x6{left:784.049987px;}
.xe{left:831.929973px;}
.xf{left:838.769987px;}
@media print{
.v2{vertical-align:-84.480000pt;}
.v1{vertical-align:-66.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:26.880000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.017920pt;}
.ls5{letter-spacing:0.158933pt;}
.ls7{letter-spacing:0.271467pt;}
.ls9{letter-spacing:0.317333pt;}
.ls3{letter-spacing:0.409600pt;}
.ls0{letter-spacing:0.640000pt;}
.ls4{letter-spacing:36.961280pt;}
.ls8{letter-spacing:39.649280pt;}
.ls1{letter-spacing:2685.952000pt;}
.ws6{word-spacing:-18.877333pt;}
.ws3{word-spacing:-18.718933pt;}
.ws0{word-spacing:-18.560000pt;}
.ws4{word-spacing:-14.720000pt;}
.ws5{word-spacing:-13.440000pt;}
.ws1{word-spacing:-12.160000pt;}
.ws2{word-spacing:0.000000pt;}
._28{margin-left:-5.081600pt;}
._8{margin-left:-3.269547pt;}
._1{margin-left:-1.633280pt;}
._0{width:1.633280pt;}
._2{width:3.188907pt;}
._6{width:4.164267pt;}
._d{width:5.152000pt;}
._b{width:6.424320pt;}
._a{width:7.633493pt;}
._c{width:8.773547pt;}
._e{width:10.467840pt;}
._f{width:12.129280pt;}
._5{width:13.140480pt;}
._4{width:14.668373pt;}
._9{width:16.184320pt;}
._7{width:17.075200pt;}
._19{width:19.525120pt;}
._10{width:20.416000pt;}
._1b{width:21.455360pt;}
._27{width:22.346240pt;}
._1a{width:23.237120pt;}
._15{width:24.202240pt;}
._14{width:25.093120pt;}
._13{width:26.206720pt;}
._29{width:27.097600pt;}
._21{width:28.136960pt;}
._23{width:29.030827pt;}
._22{width:32.071680pt;}
._20{width:34.373120pt;}
._18{width:35.857920pt;}
._2c{width:38.157013pt;}
._2a{width:39.047893pt;}
._2b{width:40.317013pt;}
._1d{width:44.766720pt;}
._1c{width:45.806080pt;}
._11{width:52.413440pt;}
._12{width:53.452800pt;}
._26{width:54.863360pt;}
._2d{width:59.141120pt;}
._2e{width:60.052480pt;}
._2f{width:61.513387pt;}
._1f{width:68.300800pt;}
._1e{width:70.305280pt;}
._24{width:100.001280pt;}
._25{width:101.708800pt;}
._16{width:125.242880pt;}
._17{width:126.430720pt;}
._3{width:1439.368960pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs2{font-size:48.640000pt;}
.fs5{font-size:53.760000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y3c{bottom:4.480000pt;}
.y24{bottom:14.720000pt;}
.y26{bottom:15.040000pt;}
.y3b{bottom:25.920000pt;}
.y50{bottom:32.320000pt;}
.y3a{bottom:47.360000pt;}
.y8{bottom:51.200000pt;}
.y4f{bottom:53.760000pt;}
.y7{bottom:67.872000pt;}
.y39{bottom:68.800000pt;}
.y4e{bottom:75.200000pt;}
.y79{bottom:84.832000pt;}
.y38{bottom:90.240000pt;}
.y23{bottom:92.512000pt;}
.y4d{bottom:96.640000pt;}
.y74{bottom:97.632000pt;}
.y78{bottom:101.792000pt;}
.y77{bottom:107.872000pt;}
.y4c{bottom:118.106667pt;}
.y76{bottom:118.432000pt;}
.y59{bottom:124.832000pt;}
.y73{bottom:129.632000pt;}
.y37{bottom:130.266667pt;}
.y7f{bottom:135.386667pt;}
.y22{bottom:140.186667pt;}
.y4b{bottom:140.826667pt;}
.y7e{bottom:141.466667pt;}
.y36{bottom:152.026667pt;}
.y58{bottom:156.826667pt;}
.y72{bottom:161.946667pt;}
.y4a{bottom:162.266667pt;}
.y7d{bottom:167.706667pt;}
.y21{bottom:172.546667pt;}
.y35{bottom:173.466667pt;}
.y49{bottom:183.706667pt;}
.y57{bottom:189.186667pt;}
.y71{bottom:194.306667pt;}
.y20{bottom:204.866667pt;}
.y48{bottom:205.466667pt;}
.y34{bottom:213.466667pt;}
.y56{bottom:221.186667pt;}
.y80{bottom:225.986667pt;}
.y70{bottom:226.306667pt;}
.y47{bottom:228.213333pt;}
.y33{bottom:234.933333pt;}
.y1f{bottom:237.186667pt;}
.y46{bottom:249.653333pt;}
.y55{bottom:253.506667pt;}
.y32{bottom:256.373333pt;}
.y6f{bottom:258.626667pt;}
.y7c{bottom:265.346667pt;}
.y1e{bottom:269.186667pt;}
.y45{bottom:271.093333pt;}
.y31{bottom:277.813333pt;}
.y54{bottom:285.853333pt;}
.y6e{bottom:290.653333pt;}
.y44{bottom:293.813333pt;}
.y30{bottom:299.253333pt;}
.y1d{bottom:301.533333pt;}
.y43{bottom:315.253333pt;}
.y53{bottom:317.853333pt;}
.y2f{bottom:320.693333pt;}
.y6d{bottom:322.973333pt;}
.y7b{bottom:329.693333pt;}
.y1c{bottom:333.853333pt;}
.y42{bottom:336.733333pt;}
.y2e{bottom:342.173333pt;}
.y52{bottom:350.173333pt;}
.y6c{bottom:355.293333pt;}
.y41{bottom:358.493333pt;}
.y2d{bottom:363.933333pt;}
.y1b{bottom:365.853333pt;}
.y40{bottom:381.213333pt;}
.y51{bottom:382.493333pt;}
.y2c{bottom:385.373333pt;}
.y6b{bottom:387.293333pt;}
.y1a{bottom:398.213333pt;}
.y28{bottom:400.133333pt;}
.y3f{bottom:402.653333pt;}
.y6a{bottom:419.653333pt;}
.y3e{bottom:424.093333pt;}
.y2b{bottom:425.373333pt;}
.y19{bottom:430.213333pt;}
.y3d{bottom:445.560000pt;}
.y2a{bottom:446.840000pt;}
.y69{bottom:451.653333pt;}
.y18{bottom:462.533333pt;}
.y29{bottom:468.280000pt;}
.y68{bottom:483.973333pt;}
.y17{bottom:494.853333pt;}
.y67{bottom:516.320000pt;}
.y16{bottom:526.880000pt;}
.y66{bottom:548.320000pt;}
.y15{bottom:559.200000pt;}
.y65{bottom:580.640000pt;}
.y14{bottom:591.200000pt;}
.y64{bottom:612.960000pt;}
.y13{bottom:623.546667pt;}
.y63{bottom:644.986667pt;}
.y12{bottom:655.866667pt;}
.y62{bottom:677.306667pt;}
.y11{bottom:687.866667pt;}
.y61{bottom:709.306667pt;}
.y10{bottom:720.186667pt;}
.y60{bottom:741.666667pt;}
.y7a{bottom:748.386667pt;}
.yf{bottom:752.546667pt;}
.y81{bottom:756.066667pt;}
.y5f{bottom:773.986667pt;}
.y75{bottom:780.706667pt;}
.ye{bottom:805.666667pt;}
.y5e{bottom:805.986667pt;}
.yd{bottom:827.426667pt;}
.y5d{bottom:838.306667pt;}
.yc{bottom:848.893333pt;}
.yb{bottom:870.013333pt;}
.y5c{bottom:870.333333pt;}
.y27{bottom:886.013333pt;}
.ya{bottom:902.333333pt;}
.y5b{bottom:902.653333pt;}
.y25{bottom:918.973333pt;}
.y9{bottom:934.653333pt;}
.y5a{bottom:934.973333pt;}
.y6{bottom:955.133333pt;}
.y5{bottom:972.133333pt;}
.y4{bottom:1005.733333pt;}
.y3{bottom:1023.013333pt;}
.y2{bottom:1039.653333pt;}
.y1{bottom:1057.253333pt;}
.h7{height:32.000000pt;}
.h8{height:32.320000pt;}
.hf{height:33.918750pt;}
.hd{height:36.431250pt;}
.hc{height:47.737500pt;}
.he{height:51.893750pt;}
.h10{height:52.762500pt;}
.h3{height:57.787500pt;}
.h4{height:59.340000pt;}
.ha{height:65.431250pt;}
.h5{height:72.862500pt;}
.h6{height:74.617500pt;}
.h2{height:74.820000pt;}
.hb{height:76.307021pt;}
.h9{height:485.253333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:318.533333pt;}
.w4{width:793.919976pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:6.720000pt;}
.xa{left:54.106667pt;}
.x7{left:68.832000pt;}
.x2{left:75.551988pt;}
.xd{left:80.031988pt;}
.x15{left:94.431988pt;}
.x5{left:122.943988pt;}
.x12{left:182.466643pt;}
.x1{left:186.626655pt;}
.x13{left:188.546655pt;}
.xb{left:267.293310pt;}
.xc{left:273.373322pt;}
.x14{left:372.639988pt;}
.x9{left:388.000000pt;}
.x10{left:399.519976pt;}
.x11{left:405.599988pt;}
.x16{left:408.479988pt;}
.x4{left:412.319988pt;}
.x3{left:547.106655pt;}
.x6{left:696.933322pt;}
.xe{left:739.493310pt;}
.xf{left:745.573322pt;}
}




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