
    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_fb12c59306fb1676d275bdaf.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.015137;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_b824763d288e07bfcebea482.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.015137;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.m2{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:-43.200000px;}
.v3{vertical-align:-2.736000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:2.880000px;}
.v4{vertical-align:6.600000px;}
.v1{vertical-align:43.200000px;}
.ls4{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.290927px;}
.ls3{letter-spacing:-0.276000px;}
.ls5{letter-spacing:-0.216000px;}
.ls2{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.036000px;}
.lsc{letter-spacing:0.064200px;}
.ls6{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.288000px;}
.lsb{letter-spacing:0.301200px;}
.lsa{letter-spacing:0.341400px;}
.ls0{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.480000px;}
.ls8{letter-spacing:367.960080px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(255,0,0),0 0.015em rgb(255,0,0),0.015em 0 rgb(255,0,0),0 -0.015em  rgb(255,0,0);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(255,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.wsf{word-spacing:-95.904000px;}
.ws9{word-spacing:-72.144000px;}
.wse{word-spacing:-64.015920px;}
.wsd{word-spacing:-55.864080px;}
.ws6{word-spacing:-47.999952px;}
.ws7{word-spacing:-47.952000px;}
.wsc{word-spacing:-36.011952px;}
.wsb{word-spacing:-35.964000px;}
.ws1{word-spacing:-31.936032px;}
.ws0{word-spacing:-31.888080px;}
.ws10{word-spacing:-29.569024px;}
.ws12{word-spacing:-28.116120px;}
.ws8{word-spacing:-28.051920px;}
.ws11{word-spacing:-27.691920px;}
.ws5{word-spacing:0.000000px;}
.ws3{word-spacing:782.118720px;}
.ws2{word-spacing:801.294960px;}
.ws4{word-spacing:870.186720px;}
.wsa{word-spacing:2437.033440px;}
._9{margin-left:-4.458480px;}
._6{margin-left:-3.023280px;}
._0{margin-left:-1.872000px;}
._1{width:1.711008px;}
._3{width:524.424000px;}
._5{width:684.257760px;}
._2{width:735.923520px;}
._4{width:867.347040px;}
._7{width:868.498320px;}
._8{width:913.947600px;}
.fc4{color:transparent;}
.fc3{color:rgb(70,120,134);}
.fc1{color:rgb(255,0,0);}
.fc2{color:rgb(116,116,116);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.fs12{font-size:84.384000px;}
.fsd{font-size:88.795869px;}
.fs13{font-size:88.947657px;}
.fs1{font-size:95.760000px;}
.fs2{font-size:95.904000px;}
.fs7{font-size:108.000000px;}
.fs8{font-size:108.144000px;}
.fs0{font-size:144.000000px;}
.fs9{font-size:144.144000px;}
.fse{font-size:167.760000px;}
.fsf{font-size:167.904000px;}
.fs10{font-size:192.240000px;}
.fs11{font-size:192.384000px;}
.fsa{font-size:216.000000px;}
.fsb{font-size:216.144000px;}
.fs6{font-size:288.000000px;}
.fs4{font-size:300.240000px;}
.fs5{font-size:300.384000px;}
.y49{bottom:-12.240000px;}
.y0{bottom:0.000000px;}
.ye{bottom:12.960000px;}
.y12{bottom:31.320000px;}
.y52{bottom:41.832000px;}
.y20{bottom:43.236000px;}
.y62{bottom:75.672000px;}
.y1a{bottom:82.548000px;}
.y23{bottom:91.116000px;}
.y3{bottom:99.324000px;}
.y61{bottom:100.872000px;}
.y34{bottom:106.452000px;}
.y22{bottom:116.316000px;}
.y11{bottom:123.552000px;}
.y51{bottom:131.832000px;}
.y33{bottom:138.852000px;}
.y60{bottom:151.275000px;}
.y4a{bottom:152.130000px;}
.y2{bottom:162.690000px;}
.y32{bottom:171.285000px;}
.y5f{bottom:176.505000px;}
.y36{bottom:182.955000px;}
.y31{bottom:203.685000px;}
.y1{bottom:205.920000px;}
.y21{bottom:209.160000px;}
.y1d{bottom:210.210000px;}
.y10{bottom:210.315000px;}
.y1f{bottom:210.885000px;}
.y19{bottom:212.190000px;}
.y48{bottom:215.025000px;}
.y35{bottom:215.355000px;}
.yd{bottom:217.080000px;}
.y50{bottom:221.865000px;}
.y5e{bottom:226.905000px;}
.y30{bottom:236.085000px;}
.y5d{bottom:252.105000px;}
.y47{bottom:259.170000px;}
.y2f{bottom:268.485000px;}
.y18{bottom:276.990000px;}
.y4f{bottom:279.465000px;}
.y3c{bottom:286.635000px;}
.yf{bottom:295.485000px;}
.y2e{bottom:300.885000px;}
.y5c{bottom:302.505000px;}
.y46{bottom:308.550000px;}
.y14{bottom:310.035000px;}
.y3b{bottom:319.035000px;}
.y7{bottom:325.515000px;}
.y5b{bottom:327.705000px;}
.yc{bottom:329.370000px;}
.y2d{bottom:333.285000px;}
.y45{bottom:364.710000px;}
.y2c{bottom:365.730000px;}
.y4e{bottom:369.510000px;}
.y5a{bottom:378.150000px;}
.y1c{bottom:378.615000px;}
.y1e{bottom:380.265000px;}
.y3a{bottom:385.995000px;}
.y2b{bottom:398.130000px;}
.y59{bottom:403.350000px;}
.y17{bottom:406.620000px;}
.y6{bottom:415.515000px;}
.y44{bottom:418.320000px;}
.y39{bottom:418.425000px;}
.y2a{bottom:430.530000px;}
.yb{bottom:441.690000px;}
.y58{bottom:453.750000px;}
.y4d{bottom:459.510000px;}
.y29{bottom:462.930000px;}
.y16{bottom:471.420000px;}
.y38{bottom:477.750000px;}
.y57{bottom:478.950000px;}
.y28{bottom:495.330000px;}
.y5{bottom:505.545000px;}
.y37{bottom:510.195000px;}
.y4c{bottom:517.110000px;}
.y27{bottom:527.730000px;}
.y56{bottom:529.350000px;}
.y15{bottom:536.220000px;}
.y1b{bottom:549.975000px;}
.ya{bottom:554.040000px;}
.y55{bottom:554.580000px;}
.y26{bottom:560.160000px;}
.y3e{bottom:574.200000px;}
.y40{bottom:577.770000px;}
.y42{bottom:580.785000px;}
.y25{bottom:592.560000px;}
.y4{bottom:595.545000px;}
.y43{bottom:599.145000px;}
.y54{bottom:604.980000px;}
.y4b{bottom:607.140000px;}
.y13{bottom:612.360000px;}
.y3d{bottom:617.400000px;}
.y3f{bottom:620.970000px;}
.y41{bottom:624.030000px;}
.y24{bottom:624.960000px;}
.y53{bottom:630.180000px;}
.y9{bottom:647.970000px;}
.y8{bottom:716.940000px;}
.hd{height:59.617031px;}
.h3{height:64.455117px;}
.h15{height:64.565297px;}
.h10{height:67.335117px;}
.he{height:67.940980px;}
.h16{height:68.057118px;}
.hf{height:71.055117px;}
.h7{height:82.634766px;}
.h8{height:82.744945px;}
.h9{height:110.179688px;}
.ha{height:110.289867px;}
.h1{height:116.469492px;}
.h2{height:116.699672px;}
.h11{height:128.359336px;}
.h12{height:128.469516px;}
.h13{height:147.089883px;}
.h14{height:147.200063px;}
.hb{height:165.269531px;}
.hc{height:165.379711px;}
.h6{height:220.359375px;}
.h4{height:229.724648px;}
.h5{height:229.834828px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.xc{left:10.799979px;}
.x25{left:15.299979px;}
.x23{left:17.387979px;}
.x22{left:23.975979px;}
.x24{left:34.379979px;}
.x2{left:36.683979px;}
.x32{left:68.975979px;}
.xf{left:86.831979px;}
.x7{left:118.799979px;}
.x1{left:126.647979px;}
.x12{left:131.471979px;}
.x2c{left:179.204979px;}
.x3{left:188.069979px;}
.x4{left:193.469979px;}
.x2d{left:213.014979px;}
.x13{left:218.954979px;}
.x10{left:229.214979px;}
.x17{left:253.184979px;}
.x14{left:257.294979px;}
.x1a{left:266.294979px;}
.x5{left:309.029979px;}
.x2e{left:328.064979px;}
.x39{left:361.154979px;}
.x40{left:367.994979px;}
.x3a{left:374.114979px;}
.x41{left:380.594979px;}
.x3b{left:405.614979px;}
.x3c{left:409.754979px;}
.x42{left:412.094979px;}
.x3d{left:422.534979px;}
.x3e{left:433.154979px;}
.x11{left:453.524979px;}
.x33{left:457.994979px;}
.x2f{left:466.199979px;}
.x43{left:483.914979px;}
.x6{left:546.659979px;}
.x27{left:550.544979px;}
.x26{left:570.749979px;}
.x19{left:607.289979px;}
.x30{left:666.749979px;}
.xd{left:686.624979px;}
.xe{left:697.499979px;}
.x44{left:726.944979px;}
.x45{left:740.264979px;}
.x34{left:750.344979px;}
.x35{left:763.124979px;}
.x36{left:794.489979px;}
.x31{left:854.969979px;}
.x28{left:886.859979px;}
.x29{left:917.639979px;}
.x1c{left:939.029979px;}
.x37{left:952.889979px;}
.x1b{left:965.984979px;}
.x1d{left:994.649979px;}
.x18{left:1019.804979px;}
.xb{left:1048.754979px;}
.x8{left:1058.654979px;}
.x9{left:1101.239979px;}
.x1f{left:1105.304979px;}
.xa{left:1134.869979px;}
.x15{left:1175.909979px;}
.x2a{left:1178.204979px;}
.x2b{left:1194.944979px;}
.x1e{left:1197.824979px;}
.x3f{left:1206.539979px;}
.x20{left:1217.264979px;}
.x21{left:1222.124979px;}
.x16{left:1340.999979px;}
.x38{left:1366.949979px;}
@media print{
.v2{vertical-align:-38.400000pt;}
.v3{vertical-align:-2.432000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:2.560000pt;}
.v4{vertical-align:5.866667pt;}
.v1{vertical-align:38.400000pt;}
.ls4{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.258601pt;}
.ls3{letter-spacing:-0.245333pt;}
.ls5{letter-spacing:-0.192000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.032000pt;}
.lsc{letter-spacing:0.057067pt;}
.ls6{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.256000pt;}
.lsb{letter-spacing:0.267733pt;}
.lsa{letter-spacing:0.303467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.426667pt;}
.ls8{letter-spacing:327.075627pt;}
.wsf{word-spacing:-85.248000pt;}
.ws9{word-spacing:-64.128000pt;}
.wse{word-spacing:-56.903040pt;}
.wsd{word-spacing:-49.656960pt;}
.ws6{word-spacing:-42.666624pt;}
.ws7{word-spacing:-42.624000pt;}
.wsc{word-spacing:-32.010624pt;}
.wsb{word-spacing:-31.968000pt;}
.ws1{word-spacing:-28.387584pt;}
.ws0{word-spacing:-28.344960pt;}
.ws10{word-spacing:-26.283577pt;}
.ws12{word-spacing:-24.992107pt;}
.ws8{word-spacing:-24.935040pt;}
.ws11{word-spacing:-24.615040pt;}
.ws5{word-spacing:0.000000pt;}
.ws3{word-spacing:695.216640pt;}
.ws2{word-spacing:712.262187pt;}
.ws4{word-spacing:773.499307pt;}
.wsa{word-spacing:2166.251947pt;}
._9{margin-left:-3.963093pt;}
._6{margin-left:-2.687360pt;}
._0{margin-left:-1.664000pt;}
._1{width:1.520896pt;}
._3{width:466.154667pt;}
._5{width:608.229120pt;}
._2{width:654.154240pt;}
._4{width:770.975147pt;}
._7{width:771.998507pt;}
._8{width:812.397867pt;}
.fsc{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.fs12{font-size:75.008000pt;}
.fsd{font-size:78.929661pt;}
.fs13{font-size:79.064584pt;}
.fs1{font-size:85.120000pt;}
.fs2{font-size:85.248000pt;}
.fs7{font-size:96.000000pt;}
.fs8{font-size:96.128000pt;}
.fs0{font-size:128.000000pt;}
.fs9{font-size:128.128000pt;}
.fse{font-size:149.120000pt;}
.fsf{font-size:149.248000pt;}
.fs10{font-size:170.880000pt;}
.fs11{font-size:171.008000pt;}
.fsa{font-size:192.000000pt;}
.fsb{font-size:192.128000pt;}
.fs6{font-size:256.000000pt;}
.fs4{font-size:266.880000pt;}
.fs5{font-size:267.008000pt;}
.y49{bottom:-10.880000pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:11.520000pt;}
.y12{bottom:27.840000pt;}
.y52{bottom:37.184000pt;}
.y20{bottom:38.432000pt;}
.y62{bottom:67.264000pt;}
.y1a{bottom:73.376000pt;}
.y23{bottom:80.992000pt;}
.y3{bottom:88.288000pt;}
.y61{bottom:89.664000pt;}
.y34{bottom:94.624000pt;}
.y22{bottom:103.392000pt;}
.y11{bottom:109.824000pt;}
.y51{bottom:117.184000pt;}
.y33{bottom:123.424000pt;}
.y60{bottom:134.466667pt;}
.y4a{bottom:135.226667pt;}
.y2{bottom:144.613333pt;}
.y32{bottom:152.253333pt;}
.y5f{bottom:156.893333pt;}
.y36{bottom:162.626667pt;}
.y31{bottom:181.053333pt;}
.y1{bottom:183.040000pt;}
.y21{bottom:185.920000pt;}
.y1d{bottom:186.853333pt;}
.y10{bottom:186.946667pt;}
.y1f{bottom:187.453333pt;}
.y19{bottom:188.613333pt;}
.y48{bottom:191.133333pt;}
.y35{bottom:191.426667pt;}
.yd{bottom:192.960000pt;}
.y50{bottom:197.213333pt;}
.y5e{bottom:201.693333pt;}
.y30{bottom:209.853333pt;}
.y5d{bottom:224.093333pt;}
.y47{bottom:230.373333pt;}
.y2f{bottom:238.653333pt;}
.y18{bottom:246.213333pt;}
.y4f{bottom:248.413333pt;}
.y3c{bottom:254.786667pt;}
.yf{bottom:262.653333pt;}
.y2e{bottom:267.453333pt;}
.y5c{bottom:268.893333pt;}
.y46{bottom:274.266667pt;}
.y14{bottom:275.586667pt;}
.y3b{bottom:283.586667pt;}
.y7{bottom:289.346667pt;}
.y5b{bottom:291.293333pt;}
.yc{bottom:292.773333pt;}
.y2d{bottom:296.253333pt;}
.y45{bottom:324.186667pt;}
.y2c{bottom:325.093333pt;}
.y4e{bottom:328.453333pt;}
.y5a{bottom:336.133333pt;}
.y1c{bottom:336.546667pt;}
.y1e{bottom:338.013333pt;}
.y3a{bottom:343.106667pt;}
.y2b{bottom:353.893333pt;}
.y59{bottom:358.533333pt;}
.y17{bottom:361.440000pt;}
.y6{bottom:369.346667pt;}
.y44{bottom:371.840000pt;}
.y39{bottom:371.933333pt;}
.y2a{bottom:382.693333pt;}
.yb{bottom:392.613333pt;}
.y58{bottom:403.333333pt;}
.y4d{bottom:408.453333pt;}
.y29{bottom:411.493333pt;}
.y16{bottom:419.040000pt;}
.y38{bottom:424.666667pt;}
.y57{bottom:425.733333pt;}
.y28{bottom:440.293333pt;}
.y5{bottom:449.373333pt;}
.y37{bottom:453.506667pt;}
.y4c{bottom:459.653333pt;}
.y27{bottom:469.093333pt;}
.y56{bottom:470.533333pt;}
.y15{bottom:476.640000pt;}
.y1b{bottom:488.866667pt;}
.ya{bottom:492.480000pt;}
.y55{bottom:492.960000pt;}
.y26{bottom:497.920000pt;}
.y3e{bottom:510.400000pt;}
.y40{bottom:513.573333pt;}
.y42{bottom:516.253333pt;}
.y25{bottom:526.720000pt;}
.y4{bottom:529.373333pt;}
.y43{bottom:532.573333pt;}
.y54{bottom:537.760000pt;}
.y4b{bottom:539.680000pt;}
.y13{bottom:544.320000pt;}
.y3d{bottom:548.800000pt;}
.y3f{bottom:551.973333pt;}
.y41{bottom:554.693333pt;}
.y24{bottom:555.520000pt;}
.y53{bottom:560.160000pt;}
.y9{bottom:575.973333pt;}
.y8{bottom:637.280000pt;}
.hd{height:52.992917pt;}
.h3{height:57.293437pt;}
.h15{height:57.391375pt;}
.h10{height:59.853437pt;}
.he{height:60.391982pt;}
.h16{height:60.495216pt;}
.hf{height:63.160104pt;}
.h7{height:73.453125pt;}
.h8{height:73.551063pt;}
.h9{height:97.937500pt;}
.ha{height:98.035438pt;}
.h1{height:103.528438pt;}
.h2{height:103.733042pt;}
.h11{height:114.097187pt;}
.h12{height:114.195125pt;}
.h13{height:130.746563pt;}
.h14{height:130.844500pt;}
.hb{height:146.906250pt;}
.hc{height:147.004187pt;}
.h6{height:195.875000pt;}
.h4{height:204.199687pt;}
.h5{height:204.297625pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.xc{left:9.599981pt;}
.x25{left:13.599981pt;}
.x23{left:15.455981pt;}
.x22{left:21.311981pt;}
.x24{left:30.559981pt;}
.x2{left:32.607981pt;}
.x32{left:61.311981pt;}
.xf{left:77.183981pt;}
.x7{left:105.599981pt;}
.x1{left:112.575981pt;}
.x12{left:116.863981pt;}
.x2c{left:159.293314pt;}
.x3{left:167.173314pt;}
.x4{left:171.973314pt;}
.x2d{left:189.346648pt;}
.x13{left:194.626648pt;}
.x10{left:203.746648pt;}
.x17{left:225.053314pt;}
.x14{left:228.706648pt;}
.x1a{left:236.706648pt;}
.x5{left:274.693314pt;}
.x2e{left:291.613314pt;}
.x39{left:321.026648pt;}
.x40{left:327.106648pt;}
.x3a{left:332.546648pt;}
.x41{left:338.306648pt;}
.x3b{left:360.546648pt;}
.x3c{left:364.226648pt;}
.x42{left:366.306648pt;}
.x3d{left:375.586648pt;}
.x3e{left:385.026648pt;}
.x11{left:403.133314pt;}
.x33{left:407.106648pt;}
.x2f{left:414.399981pt;}
.x43{left:430.146648pt;}
.x6{left:485.919981pt;}
.x27{left:489.373314pt;}
.x26{left:507.333314pt;}
.x19{left:539.813314pt;}
.x30{left:592.666648pt;}
.xd{left:610.333314pt;}
.xe{left:619.999981pt;}
.x44{left:646.173314pt;}
.x45{left:658.013314pt;}
.x34{left:666.973314pt;}
.x35{left:678.333314pt;}
.x36{left:706.213314pt;}
.x31{left:759.973314pt;}
.x28{left:788.319981pt;}
.x29{left:815.679981pt;}
.x1c{left:834.693314pt;}
.x37{left:847.013314pt;}
.x1b{left:858.653314pt;}
.x1d{left:884.133314pt;}
.x18{left:906.493314pt;}
.xb{left:932.226648pt;}
.x8{left:941.026648pt;}
.x9{left:978.879981pt;}
.x1f{left:982.493314pt;}
.xa{left:1008.773314pt;}
.x15{left:1045.253314pt;}
.x2a{left:1047.293314pt;}
.x2b{left:1062.173314pt;}
.x1e{left:1064.733314pt;}
.x3f{left:1072.479981pt;}
.x20{left:1082.013314pt;}
.x21{left:1086.333314pt;}
.x16{left:1191.999981pt;}
.x38{left:1215.066648pt;}
}




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