
    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_ee71635b80a1bf35bd7107d8.woff')format("woff");}.ff1{font-family:ff1;line-height:1.188000;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_d644a13b86bf00838b8660cd.woff')format("woff");}.ff2{font-family:ff2;line-height:1.212000;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_1f9f25502bce3ab9904e2f8a.woff')format("woff");}.ff3{font-family:ff3;line-height:512.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:ff4;src:url('chunks/assets/font_02f5bef42ef8b69970918bf7.woff')format("woff");}.ff4{font-family:ff4;line-height:0.940430;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_457293cf4e211f80e968156a.woff')format("woff");}.ff5{font-family:ff5;line-height:0.952148;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_4ce6a41fefb54d3df9647c18.woff')format("woff");}.ff6{font-family:ff6;line-height:0.719000;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_fe9b9a336270b9b34691a65e.woff')format("woff");}.ff7{font-family:ff7;line-height:0.979980;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_fb9e3263427318c1c1a6bfcf.woff')format("woff");}.ff8{font-family:ff8;line-height:512.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:ff9;src:url('chunks/assets/font_8fad454fecb32623ab302fec.woff')format("woff");}.ff9{font-family:ff9;line-height:512.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;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws2{word-spacing:-20.352000px;}
.wsc{word-spacing:-10.176000px;}
.wsd{word-spacing:-0.229237px;}
.ws1{word-spacing:-0.096000px;}
.wse{word-spacing:-0.072000px;}
.wsf{word-spacing:-0.066000px;}
.ws8{word-spacing:-0.045300px;}
.ws7{word-spacing:-0.037750px;}
.ws3{word-spacing:-0.035958px;}
.wsb{word-spacing:-0.007390px;}
.ws6{word-spacing:-0.007039px;}
.ws0{word-spacing:0.000000px;}
.ws4{word-spacing:4.217336px;}
.ws5{word-spacing:4.217340px;}
.ws9{word-spacing:4.427452px;}
.wsa{word-spacing:4.427456px;}
._18{margin-left:-8.457724px;}
._0{margin-left:-1.689724px;}
._1b{width:2.252254px;}
._14{width:3.275154px;}
._15{width:4.405060px;}
._c{width:5.544000px;}
._3{width:7.721007px;}
._1{width:9.045066px;}
._16{width:14.068116px;}
._f{width:18.356836px;}
._17{width:21.253795px;}
._11{width:22.554709px;}
._10{width:25.402708px;}
._b{width:27.979339px;}
._12{width:36.238111px;}
._19{width:41.731008px;}
._1a{width:44.370984px;}
._4{width:52.587341px;}
._a{width:61.925213px;}
._7{width:66.289733px;}
._5{width:72.425011px;}
._1c{width:81.000000px;}
._6{width:90.161011px;}
._9{width:91.649010px;}
._8{width:110.194018px;}
._13{width:162.116208px;}
._d{width:390.423219px;}
._e{width:425.901240px;}
._2{width:951.009900px;}
.fc9{color:rgb(133,165,217);}
.fc6{color:rgb(40,117,181);}
.fc7{color:rgb(49,196,233);}
.fc5{color:rgb(238,72,119);}
.fc8{color:rgb(252,209,42);}
.fc4{color:rgb(0,33,55);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(57,53,54);}
.fc1{color:rgb(58,87,133);}
.fc0{color:rgb(17,34,52);}
.fs8{font-size:7.039484px;}
.fsb{font-size:7.390205px;}
.fs7{font-size:35.958450px;}
.fs9{font-size:37.749975px;}
.fsa{font-size:45.299908px;}
.fs4{font-size:48.000000px;}
.fs3{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.fs1{font-size:96.000000px;}
.fsc{font-size:108.000000px;}
.fs5{font-size:120.000000px;}
.fs0{font-size:216.000000px;}
.fsd{font-size:229.236571px;}
.fsf{font-size:240.000000px;}
.fse{font-size:300.000000px;}
.y0{bottom:0.000000px;}
.y1a{bottom:11.098143px;}
.y5b{bottom:13.179998px;}
.y2c{bottom:13.581365px;}
.y2b{bottom:15.367241px;}
.y7{bottom:17.029847px;}
.y2a{bottom:20.724870px;}
.y29{bottom:22.510747px;}
.y28{bottom:24.296621px;}
.y27{bottom:29.654252px;}
.y7b{bottom:42.969681px;}
.y26{bottom:69.041664px;}
.y18{bottom:69.895917px;}
.y25{bottom:70.827541px;}
.y15{bottom:71.998644px;}
.y24{bottom:76.185169px;}
.y23{bottom:77.971046px;}
.y22{bottom:79.756921px;}
.y7a{bottom:80.319681px;}
.y21{bottom:85.114551px;}
.y56{bottom:94.623065px;}
.y32{bottom:99.076660px;}
.y31{bottom:100.862536px;}
.y65{bottom:104.318495px;}
.y30{bottom:106.220165px;}
.y2f{bottom:108.006041px;}
.y2e{bottom:109.791916px;}
.y79{bottom:112.419681px;}
.y2d{bottom:115.149546px;}
.y58{bottom:118.713062px;}
.y55{bottom:119.013065px;}
.y6{bottom:119.336610px;}
.y16{bottom:124.246104px;}
.y19{bottom:124.555357px;}
.y48{bottom:129.860700px;}
.y35{bottom:131.654233px;}
.y47{bottom:131.735553px;}
.y64{bottom:136.838495px;}
.y46{bottom:137.360109px;}
.y45{bottom:139.234962px;}
.y44{bottom:141.109813px;}
.y5{bottom:141.578610px;}
.y57{bottom:143.403060px;}
.y54{bottom:143.703062px;}
.y43{bottom:146.734372px;}
.y78{bottom:152.852181px;}
.y10{bottom:158.132825px;}
.y53{bottom:168.093062px;}
.y63{bottom:169.358480px;}
.y42{bottom:173.632220px;}
.y41{bottom:175.507072px;}
.y34{bottom:176.448840px;}
.y4{bottom:178.295610px;}
.y17{bottom:180.263753px;}
.y40{bottom:181.131629px;}
.y3f{bottom:183.006482px;}
.y3e{bottom:184.881333px;}
.y77{bottom:184.952181px;}
.y3d{bottom:190.505891px;}
.y73{bottom:190.544918px;}
.yf{bottom:197.732825px;}
.y20{bottom:204.914256px;}
.y12{bottom:206.294855px;}
.y1f{bottom:206.700133px;}
.y1e{bottom:212.057761px;}
.y1d{bottom:213.843638px;}
.y3c{bottom:215.445930px;}
.y1c{bottom:215.629512px;}
.y76{bottom:217.052181px;}
.y3b{bottom:217.320783px;}
.y14{bottom:218.240069px;}
.y33{bottom:219.491715px;}
.y1b{bottom:220.987143px;}
.y72{bottom:222.896918px;}
.y3a{bottom:222.945339px;}
.y39{bottom:224.820192px;}
.y38{bottom:226.695043px;}
.y37{bottom:232.319601px;}
.y62{bottom:236.338310px;}
.ye{bottom:238.652840px;}
.y13{bottom:243.507601px;}
.y36{bottom:248.383473px;}
.y3{bottom:250.700610px;}
.y71{bottom:255.248918px;}
.y52{bottom:257.370305px;}
.y6a{bottom:262.521980px;}
.y51{bottom:273.630305px;}
.y61{bottom:274.996310px;}
.yd{bottom:278.252839px;}
.y2{bottom:283.220610px;}
.y69{bottom:286.785980px;}
.y50{bottom:289.890305px;}
.y70{bottom:296.168918px;}
.y4f{bottom:306.066290px;}
.y75{bottom:310.188180px;}
.y60{bottom:313.654310px;}
.yc{bottom:319.172825px;}
.y4e{bottom:322.326305px;}
.y1{bottom:322.640610px;}
.y68{bottom:326.385980px;}
.y6f{bottom:328.520918px;}
.y4d{bottom:338.502302px;}
.y5a{bottom:339.948320px;}
.y5f{bottom:341.962325px;}
.y67{bottom:350.775980px;}
.y4c{bottom:354.678305px;}
.yb{bottom:358.772825px;}
.y6e{bottom:360.872918px;}
.y4b{bottom:370.854305px;}
.y66{bottom:375.039980px;}
.y74{bottom:384.652551px;}
.y4a{bottom:387.030300px;}
.ya{bottom:399.692825px;}
.y6d{bottom:401.792918px;}
.y49{bottom:403.290300px;}
.y5e{bottom:406.827170px;}
.y6c{bottom:434.144918px;}
.y9{bottom:439.292824px;}
.y5d{bottom:446.427170px;}
.y6b{bottom:466.496918px;}
.y59{bottom:472.666349px;}
.y5c{bottom:486.027170px;}
.y11{bottom:492.246131px;}
.y8{bottom:543.936605px;}
.hd{height:4.691843px;}
.h11{height:5.012205px;}
.hc{height:23.966447px;}
.hf{height:25.602888px;}
.h10{height:32.253535px;}
.h6{height:43.824000px;}
.h12{height:45.216000px;}
.h14{height:47.459145px;}
.h1b{height:60.258000px;}
.h5{height:62.172000px;}
.ha{height:65.736000px;}
.h17{height:67.824000px;}
.h4{height:76.692000px;}
.h16{height:79.128000px;}
.h3{height:87.648000px;}
.h8{height:90.432000px;}
.h13{height:98.604000px;}
.h7{height:109.560000px;}
.h15{height:171.927428px;}
.h2{height:197.208000px;}
.h1a{height:219.120000px;}
.he{height:256.446852px;}
.hb{height:256.446857px;}
.h19{height:273.900000px;}
.h1{height:607.500000px;}
.h0{height:607.606290px;}
.h1c{height:29568.000000px;}
.h18{height:32256.000000px;}
.h9{height:43008.000000px;}
.w3{width:212.598412px;}
.w2{width:236.338560px;}
.w1{width:302.782952px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x1a{left:12.142196px;}
.xb{left:23.170608px;}
.x3{left:24.507874px;}
.x27{left:42.519686px;}
.x12{left:51.679634px;}
.x13{left:53.791824px;}
.x23{left:61.266452px;}
.x1b{left:66.253451px;}
.x1c{left:68.470874px;}
.xd{left:77.770821px;}
.x1{left:85.039370px;}
.x17{left:96.419492px;}
.xe{left:106.268149px;}
.xf{left:108.380338px;}
.xa{left:112.204016px;}
.x1d{left:115.159844px;}
.x4{left:116.539370px;}
.x7{left:133.256720px;}
.x6{left:134.686942px;}
.x14{left:140.236299px;}
.x15{left:142.348488px;}
.xc{left:143.689118px;}
.x19{left:144.717547px;}
.x1e{left:164.066318px;}
.x1f{left:166.283741px;}
.x18{left:194.016659px;}
.x5{left:207.263625px;}
.x10{left:222.250617px;}
.x11{left:224.362806px;}
.x9{left:233.774224px;}
.x8{left:249.472983px;}
.x25{left:304.724995px;}
.x26{left:367.679995px;}
.x16{left:512.822827px;}
.x21{left:543.161120px;}
.x22{left:741.259862px;}
.x2{left:812.619110px;}
.x20{left:829.984269px;}
.x24{left:897.165319px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws2{word-spacing:-18.090667pt;}
.wsc{word-spacing:-9.045333pt;}
.wsd{word-spacing:-0.203766pt;}
.ws1{word-spacing:-0.085333pt;}
.wse{word-spacing:-0.064000pt;}
.wsf{word-spacing:-0.058667pt;}
.ws8{word-spacing:-0.040267pt;}
.ws7{word-spacing:-0.033556pt;}
.ws3{word-spacing:-0.031963pt;}
.wsb{word-spacing:-0.006569pt;}
.ws6{word-spacing:-0.006257pt;}
.ws0{word-spacing:0.000000pt;}
.ws4{word-spacing:3.748743pt;}
.ws5{word-spacing:3.748746pt;}
.ws9{word-spacing:3.935513pt;}
.wsa{word-spacing:3.935517pt;}
._18{margin-left:-7.517977pt;}
._0{margin-left:-1.501977pt;}
._1b{width:2.002003pt;}
._14{width:2.911248pt;}
._15{width:3.915609pt;}
._c{width:4.928000pt;}
._3{width:6.863118pt;}
._1{width:8.040058pt;}
._16{width:12.504992pt;}
._f{width:16.317187pt;}
._17{width:18.892262pt;}
._11{width:20.048631pt;}
._10{width:22.580185pt;}
._b{width:24.870524pt;}
._12{width:32.211654pt;}
._19{width:37.094229pt;}
._1a{width:39.440875pt;}
._4{width:46.744303pt;}
._a{width:55.044634pt;}
._7{width:58.924207pt;}
._5{width:64.377788pt;}
._1c{width:72.000000pt;}
._6{width:80.143121pt;}
._9{width:81.465787pt;}
._8{width:97.950238pt;}
._13{width:144.103296pt;}
._d{width:347.042861pt;}
._e{width:378.578880pt;}
._2{width:845.342133pt;}
.fs8{font-size:6.257319pt;}
.fsb{font-size:6.569071pt;}
.fs7{font-size:31.963067pt;}
.fs9{font-size:33.555533pt;}
.fsa{font-size:40.266585pt;}
.fs4{font-size:42.666667pt;}
.fs3{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.fs1{font-size:85.333333pt;}
.fsc{font-size:96.000000pt;}
.fs5{font-size:106.666667pt;}
.fs0{font-size:192.000000pt;}
.fsd{font-size:203.765841pt;}
.fsf{font-size:213.333333pt;}
.fse{font-size:266.666667pt;}
.y0{bottom:0.000000pt;}
.y1a{bottom:9.865016pt;}
.y5b{bottom:11.715554pt;}
.y2c{bottom:12.072324pt;}
.y2b{bottom:13.659770pt;}
.y7{bottom:15.137641pt;}
.y2a{bottom:18.422106pt;}
.y29{bottom:20.009552pt;}
.y28{bottom:21.596997pt;}
.y27{bottom:26.359335pt;}
.y7b{bottom:38.195272pt;}
.y26{bottom:61.370368pt;}
.y18{bottom:62.129704pt;}
.y25{bottom:62.957814pt;}
.y15{bottom:63.998795pt;}
.y24{bottom:67.720151pt;}
.y23{bottom:69.307596pt;}
.y22{bottom:70.895041pt;}
.y7a{bottom:71.395272pt;}
.y21{bottom:75.657379pt;}
.y56{bottom:84.109391pt;}
.y32{bottom:88.068142pt;}
.y31{bottom:89.655588pt;}
.y65{bottom:92.727551pt;}
.y30{bottom:94.417924pt;}
.y2f{bottom:96.005370pt;}
.y2e{bottom:97.592814pt;}
.y79{bottom:99.928605pt;}
.y2d{bottom:102.355152pt;}
.y58{bottom:105.522721pt;}
.y55{bottom:105.789391pt;}
.y6{bottom:106.076987pt;}
.y16{bottom:110.440981pt;}
.y19{bottom:110.715873pt;}
.y48{bottom:115.431733pt;}
.y35{bottom:117.025985pt;}
.y47{bottom:117.098269pt;}
.y64{bottom:121.634217pt;}
.y46{bottom:122.097875pt;}
.y45{bottom:123.764411pt;}
.y44{bottom:125.430945pt;}
.y5{bottom:125.847653pt;}
.y57{bottom:127.469387pt;}
.y54{bottom:127.736055pt;}
.y43{bottom:130.430553pt;}
.y78{bottom:135.868605pt;}
.y10{bottom:140.562511pt;}
.y53{bottom:149.416055pt;}
.y63{bottom:150.540871pt;}
.y42{bottom:154.339751pt;}
.y41{bottom:156.006287pt;}
.y34{bottom:156.843414pt;}
.y4{bottom:158.484987pt;}
.y17{bottom:160.234447pt;}
.y40{bottom:161.005892pt;}
.y3f{bottom:162.672428pt;}
.y3e{bottom:164.338962pt;}
.y77{bottom:164.401939pt;}
.y3d{bottom:169.338570pt;}
.y73{bottom:169.373260pt;}
.yf{bottom:175.762511pt;}
.y20{bottom:182.146005pt;}
.y12{bottom:183.373204pt;}
.y1f{bottom:183.733451pt;}
.y1e{bottom:188.495787pt;}
.y1d{bottom:190.083233pt;}
.y3c{bottom:191.507493pt;}
.y1c{bottom:191.670678pt;}
.y76{bottom:192.935272pt;}
.y3b{bottom:193.174029pt;}
.y14{bottom:193.991172pt;}
.y33{bottom:195.103746pt;}
.y1b{bottom:196.433016pt;}
.y72{bottom:198.130593pt;}
.y3a{bottom:198.173635pt;}
.y39{bottom:199.840171pt;}
.y38{bottom:201.506705pt;}
.y37{bottom:206.506312pt;}
.y62{bottom:210.078497pt;}
.ye{bottom:212.135857pt;}
.y13{bottom:216.451201pt;}
.y36{bottom:220.785310pt;}
.y3{bottom:222.844987pt;}
.y71{bottom:226.887927pt;}
.y52{bottom:228.773604pt;}
.y6a{bottom:233.352871pt;}
.y51{bottom:243.226937pt;}
.y61{bottom:244.441164pt;}
.yd{bottom:247.335857pt;}
.y2{bottom:251.751653pt;}
.y69{bottom:254.920871pt;}
.y50{bottom:257.680271pt;}
.y70{bottom:263.261260pt;}
.y4f{bottom:272.058924pt;}
.y75{bottom:275.722827pt;}
.y60{bottom:278.803831pt;}
.yc{bottom:283.709177pt;}
.y4e{bottom:286.512271pt;}
.y1{bottom:286.791653pt;}
.y68{bottom:290.120871pt;}
.y6f{bottom:292.018593pt;}
.y4d{bottom:300.890935pt;}
.y5a{bottom:302.176284pt;}
.y5f{bottom:303.966511pt;}
.y67{bottom:311.800871pt;}
.y4c{bottom:315.269604pt;}
.yb{bottom:318.909177pt;}
.y6e{bottom:320.775927pt;}
.y4b{bottom:329.648271pt;}
.y66{bottom:333.368871pt;}
.y74{bottom:341.913379pt;}
.y4a{bottom:344.026933pt;}
.ya{bottom:355.282511pt;}
.y6d{bottom:357.149260pt;}
.y49{bottom:358.480267pt;}
.y5e{bottom:361.624151pt;}
.y6c{bottom:385.906593pt;}
.y9{bottom:390.482511pt;}
.y5d{bottom:396.824151pt;}
.y6b{bottom:414.663927pt;}
.y59{bottom:420.147865pt;}
.y5c{bottom:432.024151pt;}
.y11{bottom:437.552116pt;}
.y8{bottom:483.499204pt;}
.hd{height:4.170527pt;}
.h11{height:4.455293pt;}
.hc{height:21.303509pt;}
.hf{height:22.758123pt;}
.h10{height:28.669809pt;}
.h6{height:38.954667pt;}
.h12{height:40.192000pt;}
.h14{height:42.185907pt;}
.h1b{height:53.562667pt;}
.h5{height:55.264000pt;}
.ha{height:58.432000pt;}
.h17{height:60.288000pt;}
.h4{height:68.170667pt;}
.h16{height:70.336000pt;}
.h3{height:77.909333pt;}
.h8{height:80.384000pt;}
.h13{height:87.648000pt;}
.h7{height:97.386667pt;}
.h15{height:152.824381pt;}
.h2{height:175.296000pt;}
.h1a{height:194.773333pt;}
.he{height:227.952757pt;}
.hb{height:227.952761pt;}
.h19{height:243.466667pt;}
.h1{height:540.000000pt;}
.h0{height:540.094480pt;}
.h1c{height:26282.666667pt;}
.h18{height:28672.000000pt;}
.h9{height:38229.333333pt;}
.w3{width:188.976366pt;}
.w2{width:210.078720pt;}
.w1{width:269.140402pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:10.793063pt;}
.xb{left:20.596096pt;}
.x3{left:21.784777pt;}
.x27{left:37.795276pt;}
.x12{left:45.937453pt;}
.x13{left:47.814954pt;}
.x23{left:54.459069pt;}
.x1b{left:58.891956pt;}
.x1c{left:60.862999pt;}
.xd{left:69.129619pt;}
.x1{left:75.590551pt;}
.x17{left:85.706215pt;}
.xe{left:94.460577pt;}
.xf{left:96.338078pt;}
.xa{left:99.736903pt;}
.x1d{left:102.364306pt;}
.x4{left:103.590551pt;}
.x7{left:118.450417pt;}
.x6{left:119.721726pt;}
.x14{left:124.654488pt;}
.x15{left:126.531989pt;}
.xc{left:127.723660pt;}
.x19{left:128.637819pt;}
.x1e{left:145.836727pt;}
.x1f{left:147.807770pt;}
.x18{left:172.459252pt;}
.x5{left:184.234333pt;}
.x10{left:197.556104pt;}
.x11{left:199.433605pt;}
.x9{left:207.799310pt;}
.x8{left:221.753763pt;}
.x25{left:270.866663pt;}
.x26{left:326.826663pt;}
.x16{left:455.842513pt;}
.x21{left:482.809884pt;}
.x22{left:658.897655pt;}
.x2{left:722.328097pt;}
.x20{left:737.763795pt;}
.x24{left:797.480284pt;}
}




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