
    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_eb442c1ae6192a3fd5163720.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_234dcd14ac192a49ae5e9e48.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_7adbad1a515f0297e329b3a2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172363;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_0a28a251a92b50157a0d4bb4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.941406;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_9e7db456c2f60dd6ff6cc35d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_7abf2273ae959e18f0e78d23.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.945312;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_81742972cbb04d4972a05ff9.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.378906;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_7e76766beae2735d224a9c7c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.716000;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_b42728119dc0f0adf2c0f736.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;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:ffa;src:url('chunks/assets/font_953ae6f461e3b6370c8bf2e0.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-0.756000px;}
.ls10{letter-spacing:-0.277800px;}
.ls1{letter-spacing:-0.216000px;}
.ls9{letter-spacing:-0.114600px;}
.ls3{letter-spacing:-0.064800px;}
.ls5{letter-spacing:-0.037440px;}
.ls0{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.018720px;}
.ls4{letter-spacing:0.028080px;}
.lsc{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.306000px;}
.lsb{letter-spacing:30.384000px;}
.lse{letter-spacing:41.760000px;}
.ls8{letter-spacing:127.858944px;}
.ls7{letter-spacing:127.945920px;}
.lsa{letter-spacing:129.623040px;}
.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;}
}
.wsd{word-spacing:-41.633280px;}
.wsa{word-spacing:-40.032000px;}
.ws2{word-spacing:-35.068032px;}
.ws1{word-spacing:-35.028000px;}
.wse{word-spacing:-31.347480px;}
.ws7{word-spacing:-23.458752px;}
.ws9{word-spacing:-23.446800px;}
.wsc{word-spacing:-23.437440px;}
.ws6{word-spacing:-23.418720px;}
.ws8{word-spacing:-23.381280px;}
.wsf{word-spacing:-20.016000px;}
.ws4{word-spacing:-13.505760px;}
.ws5{word-spacing:-13.440960px;}
.ws3{word-spacing:0.000000px;}
.ws0{word-spacing:0.342000px;}
.wsb{word-spacing:5.436000px;}
._5{margin-left:-3.551904px;}
._0{margin-left:-2.190240px;}
._1{margin-left:-1.135296px;}
._2{width:1.292832px;}
._3{width:2.598336px;}
._4{width:3.658896px;}
.fc7{color:rgb(23,28,36);}
.fc5{color:rgb(0,151,167);}
.fc3{color:rgb(152,0,0);}
.fc2{color:transparent;}
.fc1{color:rgb(5,99,193);}
.fc8{color:rgb(33,33,33);}
.fc6{color:rgb(255,255,255);}
.fc4{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:59.760000px;}
.fs13{font-size:72.000000px;}
.fse{font-size:77.904000px;}
.fs3{font-size:84.240000px;}
.fs8{font-size:84.384000px;}
.fs11{font-size:108.000000px;}
.fs18{font-size:113.760000px;}
.fs2{font-size:126.000000px;}
.fs1{font-size:126.144000px;}
.fsf{font-size:138.240000px;}
.fs10{font-size:138.384000px;}
.fs9{font-size:144.000000px;}
.fsa{font-size:144.144000px;}
.fs12{font-size:149.760000px;}
.fs14{font-size:149.904000px;}
.fsb{font-size:155.520000px;}
.fsc{font-size:155.664000px;}
.fs7{font-size:167.760000px;}
.fsd{font-size:180.000000px;}
.fs15{font-size:185.760000px;}
.fs16{font-size:185.904000px;}
.fs17{font-size:239.760000px;}
.fs0{font-size:243.360000px;}
.fs5{font-size:288.000000px;}
.fs6{font-size:288.144000px;}
.y0{bottom:0.000000px;}
.y1d{bottom:12.852000px;}
.y1a{bottom:17.928000px;}
.y1b{bottom:21.708000px;}
.y32{bottom:25.092000px;}
.y7{bottom:29.772000px;}
.y19{bottom:30.312000px;}
.y37{bottom:30.708000px;}
.y4e{bottom:31.104000px;}
.y2b{bottom:37.296000px;}
.yb{bottom:37.908000px;}
.y1c{bottom:54.972000px;}
.y18{bottom:55.512000px;}
.ya{bottom:55.908000px;}
.y15{bottom:60.444000px;}
.y16{bottom:71.280000px;}
.y9{bottom:73.908000px;}
.y36{bottom:80.100000px;}
.y29{bottom:82.656000px;}
.y33{bottom:85.644000px;}
.y8{bottom:91.908000px;}
.y28{bottom:117.216000px;}
.y35{bottom:132.336000px;}
.yf{bottom:151.560000px;}
.y4d{bottom:155.955000px;}
.y50{bottom:164.085000px;}
.y3f{bottom:168.810000px;}
.y27{bottom:175.710000px;}
.y34{bottom:184.530000px;}
.y26{bottom:216.795000px;}
.y3e{bottom:220.110000px;}
.y6{bottom:222.480000px;}
.y4c{bottom:229.395000px;}
.y46{bottom:232.455000px;}
.y3d{bottom:245.850000px;}
.y25{bottom:257.835000px;}
.y31{bottom:264.060000px;}
.y5{bottom:268.560000px;}
.y3c{bottom:271.590000px;}
.y48{bottom:280.950000px;}
.y24{bottom:298.875000px;}
.y3b{bottom:302.040000px;}
.y45{bottom:305.895000px;}
.y4{bottom:314.460000px;}
.y47{bottom:315.150000px;}
.y3a{bottom:327.270000px;}
.y23{bottom:339.915000px;}
.y39{bottom:352.470000px;}
.y30{bottom:359.100000px;}
.y3{bottom:360.540000px;}
.y4b{bottom:376.305000px;}
.y38{bottom:377.670000px;}
.y4f{bottom:379.365000px;}
.y22{bottom:380.985000px;}
.y43{bottom:394.770000px;}
.ye{bottom:395.355000px;}
.y2{bottom:406.650000px;}
.y2f{bottom:406.800000px;}
.y21{bottom:422.025000px;}
.y49{bottom:427.215000px;}
.y42{bottom:444.990000px;}
.y44{bottom:452.805000px;}
.y2e{bottom:454.320000px;}
.y20{bottom:463.065000px;}
.y17{bottom:468.720000px;}
.yd{bottom:473.145000px;}
.y41{bottom:495.255000px;}
.y2d{bottom:502.020000px;}
.y1{bottom:512.790000px;}
.y4a{bottom:523.230000px;}
.y1f{bottom:528.090000px;}
.y40{bottom:545.475000px;}
.y14{bottom:546.480000px;}
.yc{bottom:550.905000px;}
.y1e{bottom:569.130000px;}
.y12{bottom:576.255000px;}
.y13{bottom:624.270000px;}
.y11{bottom:654.015000px;}
.y2c{bottom:661.710000px;}
.y2a{bottom:733.470000px;}
.y10{bottom:735.195000px;}
.h12{height:50.976000px;}
.h5{height:59.439023px;}
.h19{height:75.093750px;}
.he{height:81.251437px;}
.h4{height:87.859687px;}
.h9{height:88.009875px;}
.hc{height:106.242188px;}
.h13{height:117.731250px;}
.h14{height:117.844453px;}
.h18{height:118.648125px;}
.h3{height:131.414062px;}
.h2{height:131.564250px;}
.hf{height:144.180000px;}
.h10{height:144.330188px;}
.ha{height:150.187500px;}
.hb{height:150.337688px;}
.h11{height:165.262500px;}
.h8{height:174.968437px;}
.hd{height:187.734375px;}
.h15{height:193.741875px;}
.h16{height:193.892063px;}
.h17{height:250.062187px;}
.h1{height:253.816875px;}
.h6{height:300.375000px;}
.h7{height:300.525188px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x29{left:26.387979px;}
.xd{left:48.959979px;}
.x27{left:53.459979px;}
.x10{left:55.259979px;}
.x1{left:59.003979px;}
.x24{left:82.115979px;}
.x17{left:83.339979px;}
.x19{left:93.239979px;}
.x28{left:106.739979px;}
.xe{left:136.439979px;}
.x1a{left:145.439979px;}
.x13{left:161.279979px;}
.x16{left:163.619979px;}
.x1c{left:171.899979px;}
.x20{left:190.829979px;}
.x1e{left:206.129979px;}
.x3c{left:232.844979px;}
.x30{left:237.164979px;}
.x2e{left:249.044979px;}
.xf{left:274.859979px;}
.x3a{left:276.404979px;}
.x33{left:280.289979px;}
.x3e{left:281.729979px;}
.x9{left:287.744979px;}
.x2f{left:288.869979px;}
.xb{left:300.164979px;}
.x1d{left:343.829979px;}
.x3{left:375.149979px;}
.x2c{left:379.259979px;}
.x3d{left:390.419979px;}
.x3b{left:391.604979px;}
.x1b{left:405.929979px;}
.x38{left:485.174979px;}
.x14{left:489.809979px;}
.xa{left:510.449979px;}
.x39{left:531.509979px;}
.x15{left:534.884979px;}
.x31{left:545.399979px;}
.x1f{left:550.589979px;}
.x18{left:554.249979px;}
.x11{left:568.289979px;}
.x3f{left:615.134979px;}
.x40{left:616.529979px;}
.x34{left:621.794979px;}
.x21{left:627.554979px;}
.x32{left:630.074979px;}
.xc{left:631.979979px;}
.x22{left:644.114979px;}
.x6{left:672.914979px;}
.x23{left:699.584979px;}
.x2{left:710.174979px;}
.x2d{left:730.904979px;}
.x36{left:778.754979px;}
.x35{left:787.574979px;}
.x2a{left:823.244979px;}
.x4{left:831.314979px;}
.x12{left:845.609979px;}
.x5{left:851.294979px;}
.x37{left:885.494979px;}
.x26{left:892.109979px;}
.x8{left:1140.689979px;}
.x7{left:1163.234979px;}
.x2b{left:1226.519979px;}
.x25{left:1384.814979px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.672000pt;}
.ls10{letter-spacing:-0.246933pt;}
.ls1{letter-spacing:-0.192000pt;}
.ls9{letter-spacing:-0.101867pt;}
.ls3{letter-spacing:-0.057600pt;}
.ls5{letter-spacing:-0.033280pt;}
.ls0{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.016640pt;}
.ls4{letter-spacing:0.024960pt;}
.lsc{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.272000pt;}
.lsb{letter-spacing:27.008000pt;}
.lse{letter-spacing:37.120000pt;}
.ls8{letter-spacing:113.652395pt;}
.ls7{letter-spacing:113.729707pt;}
.lsa{letter-spacing:115.220480pt;}
.wsd{word-spacing:-37.007360pt;}
.wsa{word-spacing:-35.584000pt;}
.ws2{word-spacing:-31.171584pt;}
.ws1{word-spacing:-31.136000pt;}
.wse{word-spacing:-27.864427pt;}
.ws7{word-spacing:-20.852224pt;}
.ws9{word-spacing:-20.841600pt;}
.wsc{word-spacing:-20.833280pt;}
.ws6{word-spacing:-20.816640pt;}
.ws8{word-spacing:-20.783360pt;}
.wsf{word-spacing:-17.792000pt;}
.ws4{word-spacing:-12.005120pt;}
.ws5{word-spacing:-11.947520pt;}
.ws3{word-spacing:0.000000pt;}
.ws0{word-spacing:0.304000pt;}
.wsb{word-spacing:4.832000pt;}
._5{margin-left:-3.157248pt;}
._0{margin-left:-1.946880pt;}
._1{margin-left:-1.009152pt;}
._2{width:1.149184pt;}
._3{width:2.309632pt;}
._4{width:3.252352pt;}
.fs4{font-size:53.120000pt;}
.fs13{font-size:64.000000pt;}
.fse{font-size:69.248000pt;}
.fs3{font-size:74.880000pt;}
.fs8{font-size:75.008000pt;}
.fs11{font-size:96.000000pt;}
.fs18{font-size:101.120000pt;}
.fs2{font-size:112.000000pt;}
.fs1{font-size:112.128000pt;}
.fsf{font-size:122.880000pt;}
.fs10{font-size:123.008000pt;}
.fs9{font-size:128.000000pt;}
.fsa{font-size:128.128000pt;}
.fs12{font-size:133.120000pt;}
.fs14{font-size:133.248000pt;}
.fsb{font-size:138.240000pt;}
.fsc{font-size:138.368000pt;}
.fs7{font-size:149.120000pt;}
.fsd{font-size:160.000000pt;}
.fs15{font-size:165.120000pt;}
.fs16{font-size:165.248000pt;}
.fs17{font-size:213.120000pt;}
.fs0{font-size:216.320000pt;}
.fs5{font-size:256.000000pt;}
.fs6{font-size:256.128000pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:11.424000pt;}
.y1a{bottom:15.936000pt;}
.y1b{bottom:19.296000pt;}
.y32{bottom:22.304000pt;}
.y7{bottom:26.464000pt;}
.y19{bottom:26.944000pt;}
.y37{bottom:27.296000pt;}
.y4e{bottom:27.648000pt;}
.y2b{bottom:33.152000pt;}
.yb{bottom:33.696000pt;}
.y1c{bottom:48.864000pt;}
.y18{bottom:49.344000pt;}
.ya{bottom:49.696000pt;}
.y15{bottom:53.728000pt;}
.y16{bottom:63.360000pt;}
.y9{bottom:65.696000pt;}
.y36{bottom:71.200000pt;}
.y29{bottom:73.472000pt;}
.y33{bottom:76.128000pt;}
.y8{bottom:81.696000pt;}
.y28{bottom:104.192000pt;}
.y35{bottom:117.632000pt;}
.yf{bottom:134.720000pt;}
.y4d{bottom:138.626667pt;}
.y50{bottom:145.853333pt;}
.y3f{bottom:150.053333pt;}
.y27{bottom:156.186667pt;}
.y34{bottom:164.026667pt;}
.y26{bottom:192.706667pt;}
.y3e{bottom:195.653333pt;}
.y6{bottom:197.760000pt;}
.y4c{bottom:203.906667pt;}
.y46{bottom:206.626667pt;}
.y3d{bottom:218.533333pt;}
.y25{bottom:229.186667pt;}
.y31{bottom:234.720000pt;}
.y5{bottom:238.720000pt;}
.y3c{bottom:241.413333pt;}
.y48{bottom:249.733333pt;}
.y24{bottom:265.666667pt;}
.y3b{bottom:268.480000pt;}
.y45{bottom:271.906667pt;}
.y4{bottom:279.520000pt;}
.y47{bottom:280.133333pt;}
.y3a{bottom:290.906667pt;}
.y23{bottom:302.146667pt;}
.y39{bottom:313.306667pt;}
.y30{bottom:319.200000pt;}
.y3{bottom:320.480000pt;}
.y4b{bottom:334.493333pt;}
.y38{bottom:335.706667pt;}
.y4f{bottom:337.213333pt;}
.y22{bottom:338.653333pt;}
.y43{bottom:350.906667pt;}
.ye{bottom:351.426667pt;}
.y2{bottom:361.466667pt;}
.y2f{bottom:361.600000pt;}
.y21{bottom:375.133333pt;}
.y49{bottom:379.746667pt;}
.y42{bottom:395.546667pt;}
.y44{bottom:402.493333pt;}
.y2e{bottom:403.840000pt;}
.y20{bottom:411.613333pt;}
.y17{bottom:416.640000pt;}
.yd{bottom:420.573333pt;}
.y41{bottom:440.226667pt;}
.y2d{bottom:446.240000pt;}
.y1{bottom:455.813333pt;}
.y4a{bottom:465.093333pt;}
.y1f{bottom:469.413333pt;}
.y40{bottom:484.866667pt;}
.y14{bottom:485.760000pt;}
.yc{bottom:489.693333pt;}
.y1e{bottom:505.893333pt;}
.y12{bottom:512.226667pt;}
.y13{bottom:554.906667pt;}
.y11{bottom:581.346667pt;}
.y2c{bottom:588.186667pt;}
.y2a{bottom:651.973333pt;}
.y10{bottom:653.506667pt;}
.h12{height:45.312000pt;}
.h5{height:52.834688pt;}
.h19{height:66.750000pt;}
.he{height:72.223500pt;}
.h4{height:78.097500pt;}
.h9{height:78.231000pt;}
.hc{height:94.437500pt;}
.h13{height:104.650000pt;}
.h14{height:104.750625pt;}
.h18{height:105.465000pt;}
.h3{height:116.812500pt;}
.h2{height:116.946000pt;}
.hf{height:128.160000pt;}
.h10{height:128.293500pt;}
.ha{height:133.500000pt;}
.hb{height:133.633500pt;}
.h11{height:146.900000pt;}
.h8{height:155.527500pt;}
.hd{height:166.875000pt;}
.h15{height:172.215000pt;}
.h16{height:172.348500pt;}
.h17{height:222.277500pt;}
.h1{height:225.615000pt;}
.h6{height:267.000000pt;}
.h7{height:267.133500pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x29{left:23.455981pt;}
.xd{left:43.519981pt;}
.x27{left:47.519981pt;}
.x10{left:49.119981pt;}
.x1{left:52.447981pt;}
.x24{left:72.991981pt;}
.x17{left:74.079981pt;}
.x19{left:82.879981pt;}
.x28{left:94.879981pt;}
.xe{left:121.279981pt;}
.x1a{left:129.279981pt;}
.x13{left:143.359981pt;}
.x16{left:145.439981pt;}
.x1c{left:152.799981pt;}
.x20{left:169.626648pt;}
.x1e{left:183.226648pt;}
.x3c{left:206.973314pt;}
.x30{left:210.813314pt;}
.x2e{left:221.373314pt;}
.xf{left:244.319981pt;}
.x3a{left:245.693314pt;}
.x33{left:249.146648pt;}
.x3e{left:250.426648pt;}
.x9{left:255.773314pt;}
.x2f{left:256.773314pt;}
.xb{left:266.813314pt;}
.x1d{left:305.626648pt;}
.x3{left:333.466648pt;}
.x2c{left:337.119981pt;}
.x3d{left:347.039981pt;}
.x3b{left:348.093314pt;}
.x1b{left:360.826648pt;}
.x38{left:431.266648pt;}
.x14{left:435.386648pt;}
.xa{left:453.733314pt;}
.x39{left:472.453314pt;}
.x15{left:475.453314pt;}
.x31{left:484.799981pt;}
.x1f{left:489.413314pt;}
.x18{left:492.666648pt;}
.x11{left:505.146648pt;}
.x3f{left:546.786648pt;}
.x40{left:548.026648pt;}
.x34{left:552.706648pt;}
.x21{left:557.826648pt;}
.x32{left:560.066648pt;}
.xc{left:561.759981pt;}
.x22{left:572.546648pt;}
.x6{left:598.146648pt;}
.x23{left:621.853314pt;}
.x2{left:631.266648pt;}
.x2d{left:649.693314pt;}
.x36{left:692.226648pt;}
.x35{left:700.066648pt;}
.x2a{left:731.773314pt;}
.x4{left:738.946648pt;}
.x12{left:751.653314pt;}
.x5{left:756.706648pt;}
.x37{left:787.106648pt;}
.x26{left:792.986648pt;}
.x8{left:1013.946648pt;}
.x7{left:1033.986648pt;}
.x2b{left:1090.239981pt;}
.x25{left:1230.946648pt;}
}




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