
    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_02038a37fd7e894322a8b2f3.woff')format("woff");}.ff1{font-family:ff1;line-height:1.107422;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_0fd08ffebb5e9b8e8becca1c.woff')format("woff");}.ff2{font-family:ff2;line-height:1.115234;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_744bea61096dd1ff75e92afd.woff')format("woff");}.ff3{font-family:ff3;line-height:0.948242;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_57528940b4972f8f7aa53d62.woff')format("woff");}.ff4{font-family:ff4;line-height:0.745117;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_ba858ab92322883c9b7cdcfb.woff')format("woff");}.ff5{font-family:ff5;line-height:1.001465;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_3f792e5b61f5650d750aa517.woff')format("woff");}.ff6{font-family:ff6;line-height:1.090332;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_e83835eb03cbc25318934999.woff')format("woff");}.ff7{font-family:ff7;line-height:1.087891;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);}
.v2{vertical-align:-57.571862px;}
.v3{vertical-align:-47.480698px;}
.v5{vertical-align:-16.611629px;}
.v4{vertical-align:-9.404445px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:57.571862px;}
.ls6{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.004149px;}
.ls1{letter-spacing:0.066215px;}
.ls5{letter-spacing:0.671043px;}
.ls4{letter-spacing:4.270760px;}
.ls3{letter-spacing:52.537844px;}
.ls2{letter-spacing:148.704313px;}
.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;}
}
.ws7{word-spacing:-139.566137px;}
.wsf{word-spacing:-89.748177px;}
.ws3{word-spacing:-53.250441px;}
.ws15{word-spacing:-49.859871px;}
.ws22{word-spacing:-46.469710px;}
.wsc{word-spacing:-43.847887px;}
.wsa{word-spacing:-42.292769px;}
.ws29{word-spacing:-39.024691px;}
.ws18{word-spacing:-36.497328px;}
.ws4{word-spacing:-35.500294px;}
.ws2c{word-spacing:-29.231925px;}
.ws1d{word-spacing:-26.747139px;}
.ws17{word-spacing:-5.665650px;}
.wse{word-spacing:-4.421517px;}
.ws6{word-spacing:-2.499118px;}
.ws5{word-spacing:-2.378157px;}
.wsd{word-spacing:-0.792719px;}
.ws8{word-spacing:-0.768959px;}
.ws9{word-spacing:-0.576720px;}
.ws20{word-spacing:-0.395278px;}
.ws2d{word-spacing:0.000000px;}
.ws21{word-spacing:0.263519px;}
.ws13{word-spacing:0.576720px;}
.wsb{word-spacing:1.345679px;}
.ws10{word-spacing:1.585438px;}
.ws23{word-spacing:1.849678px;}
.ws1e{word-spacing:2.898705px;}
.ws27{word-spacing:5.190476px;}
.ws1{word-spacing:10.765432px;}
.ws0{word-spacing:14.802469px;}
.ws11{word-spacing:16.724868px;}
.ws14{word-spacing:18.647266px;}
.ws16{word-spacing:27.142417px;}
.ws25{word-spacing:30.181658px;}
.ws2{word-spacing:40.947090px;}
.ws19{word-spacing:42.426497px;}
.ws28{word-spacing:55.172839px;}
.ws1f{word-spacing:56.920020px;}
.ws26{word-spacing:57.095238px;}
.ws12{word-spacing:62.862433px;}
.ws1c{word-spacing:66.143172px;}
.ws1a{word-spacing:67.329005px;}
.ws1b{word-spacing:68.119561px;}
.ws24{word-spacing:74.204585px;}
.ws2b{word-spacing:1864.801215px;}
.ws2a{word-spacing:1982.906037px;}
._1c{margin-left:-1855.785115px;}
._1d{margin-left:-18.496777px;}
._a{margin-left:-15.641812px;}
._2a{margin-left:-14.325962px;}
._1f{margin-left:-11.534391px;}
._3{margin-left:-10.188712px;}
._c{margin-left:-8.741061px;}
._9{margin-left:-7.063192px;}
._e{margin-left:-6.039385px;}
._29{margin-left:-4.753445px;}
._4{margin-left:-3.460317px;}
._b{margin-left:-2.164321px;}
._2{margin-left:-1.153439px;}
._1{width:1.537919px;}
._15{width:2.883598px;}
._22{width:4.140727px;}
._19{width:5.843422px;}
._2f{width:27.932226px;}
._14{width:31.451110px;}
._16{width:33.641975px;}
._2d{width:36.408761px;}
._2c{width:37.622301px;}
._d{width:39.731210px;}
._1a{width:41.685614px;}
._11{width:47.296627px;}
._21{width:49.697248px;}
._12{width:50.701640px;}
._20{width:52.097001px;}
._10{width:53.300123px;}
._1b{width:54.453562px;}
._28{width:55.799241px;}
._7{width:61.324515px;}
._6{width:62.477954px;}
._2b{width:64.957338px;}
._5{width:66.899470px;}
._25{width:67.953545px;}
._26{width:69.461250px;}
._24{width:71.519717px;}
._f{width:73.135731px;}
._1e{width:74.230472px;}
._23{width:76.027941px;}
._31{width:82.578509px;}
._30{width:84.865972px;}
._8{width:92.851851px;}
._2e{width:95.076228px;}
._33{width:107.660810px;}
._34{width:109.924495px;}
._27{width:117.650793px;}
._32{width:125.681674px;}
._13{width:131.075789px;}
._18{width:133.221700px;}
._17{width:135.721340px;}
._0{width:148.024690px;}
.fc3{color:transparent;}
.fc2{color:rgb(70,120,134);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:128.159905px;}
.fs7{font-size:131.759306px;}
.fs8{font-size:143.999628px;}
.fs3{font-size:167.760688px;}
.fs6{font-size:179.999535px;}
.fs0{font-size:192.239858px;}
.fs1{font-size:215.999442px;}
.fs4{font-size:264.239672px;}
.fs5{font-size:324.000638px;}
.y0{bottom:0.000000px;}
.y3d{bottom:247.890838px;}
.yd{bottom:267.850122px;}
.y3c{bottom:287.849277px;}
.yc{bottom:325.431676px;}
.y3b{bottom:327.445671px;}
.y3a{bottom:371.193801px;}
.yb{bottom:383.042736px;}
.y39{bottom:411.142423px;}
.ya{bottom:440.638899px;}
.y38{bottom:450.738817px;}
.y37{bottom:493.220575px;}
.y49{bottom:521.277409px;}
.y36{bottom:532.816969px;}
.y35{bottom:579.621619px;}
.y5f{bottom:680.381523px;}
.y5e{bottom:730.784577px;}
.y50{bottom:888.663901px;}
.y4f{bottom:946.245456px;}
.y4e{bottom:1003.856229px;}
.y4d{bottom:1061.467288px;}
.y4c{bottom:1119.063452px;}
.y4b{bottom:1198.630073px;}
.y53{bottom:1238.013651px;}
.y52{bottom:1288.416706px;}
.y58{bottom:1334.532721px;}
.y51{bottom:1338.819510px;}
.y57{bottom:1392.114276px;}
.y56{bottom:1449.725049px;}
.y55{bottom:1507.321499px;}
.y54{bottom:1577.877719px;}
.y30{bottom:1685.522359px;}
.y4a{bottom:1690.181239px;}
.y2f{bottom:1743.118523px;}
.y2e{bottom:1800.729582px;}
.y2d{bottom:1858.311136px;}
.y2c{bottom:1915.922196px;}
.y2b{bottom:1973.532969px;}
.y2a{bottom:2053.086626px;}
.y5d{bottom:2107.815895px;}
.y29{bottom:2164.145879px;}
.y48{bottom:2286.172495px;}
.y26{bottom:2316.060014px;}
.y47{bottom:2336.575299px;}
.y46{bottom:2386.965604px;}
.y25{bottom:2396.169620px;}
.y45{bottom:2437.368409px;}
.y5c{bottom:2442.428567px;}
.y24{bottom:2476.264902px;}
.y44{bottom:2487.771463px;}
.y59{bottom:2523.975627px;}
.y43{bottom:2538.161518px;}
.y23{bottom:2556.359898px;}
.y42{bottom:2606.560092px;}
.y22{bottom:2636.469504px;}
.y41{bottom:2656.963146px;}
.y5a{bottom:2704.493947px;}
.y40{bottom:2707.378949px;}
.y21{bottom:2716.564643px;}
.y3f{bottom:2775.777274px;}
.y5b{bottom:2782.975602px;}
.y20{bottom:2791.623827px;}
.y3e{bottom:2826.180328px;}
.y1c{bottom:2872.985399px;}
.y1b{bottom:2939.586997px;}
.y1d{bottom:2947.872274px;}
.y1a{bottom:3013.023380px;}
.y61{bottom:3032.090139px;}
.y19{bottom:3081.781017px;}
.y18{bottom:3148.368005px;}
.y17{bottom:3214.969746px;}
.y34{bottom:3228.661562px;}
.y33{bottom:3279.064617px;}
.y16{bottom:3281.571343px;}
.y1f{bottom:3304.981956px;}
.y32{bottom:3329.454672px;}
.y1e{bottom:3369.779185px;}
.y15{bottom:3374.647773px;}
.y31{bottom:3379.857726px;}
.y60{bottom:3402.733205px;}
.y27{bottom:3488.931675px;}
.y14{bottom:3625.562429px;}
.y13{bottom:3675.952609px;}
.y9{bottom:3730.326532px;}
.y8{bottom:3787.914101px;}
.y7{bottom:3863.523998px;}
.y6{bottom:3921.111496px;}
.y5{bottom:3996.721464px;}
.y4{bottom:4054.308962px;}
.y3{bottom:4129.918930px;}
.y2{bottom:4187.529846px;}
.y1{bottom:4245.117345px;}
.y62{bottom:4292.097812px;}
.y28{bottom:4357.784999px;}
.y12{bottom:4596.665316px;}
.y11{bottom:4654.252838px;}
.y10{bottom:4697.462983px;}
.yf{bottom:4806.543353px;}
.ye{bottom:4871.327366px;}
.hd{height:114.195688px;}
.h5{height:116.332540px;}
.h6{height:116.332778px;}
.hc{height:118.184495px;}
.h7{height:123.772656px;}
.h10{height:124.452804px;}
.he{height:150.476750px;}
.hb{height:162.860908px;}
.hf{height:166.614134px;}
.h2{height:172.433896px;}
.h4{height:173.935770px;}
.h9{height:186.679206px;}
.h8{height:194.954172px;}
.h3{height:195.433089px;}
.ha{height:293.150968px;}
.h0{height:5055.659910px;}
.h1{height:5055.750000px;}
.w0{width:3575.879880px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.xd{left:169.910491px;}
.xe{left:172.246084px;}
.x3{left:173.349110px;}
.x1{left:189.189187px;}
.x4{left:227.346158px;}
.x2{left:243.186235px;}
.x15{left:898.928608px;}
.x5{left:1066.312710px;}
.x9{left:1183.857295px;}
.xa{left:1220.032987px;}
.xb{left:1312.553871px;}
.xc{left:1325.873070px;}
.x1f{left:1492.032374px;}
.x6{left:1493.273914px;}
.x16{left:1512.549346px;}
.x20{left:1571.220585px;}
.x8{left:1760.219461px;}
.x7{left:1827.894288px;}
.x1e{left:1885.842383px;}
.x10{left:1932.488637px;}
.x11{left:1956.423001px;}
.x12{left:2016.182166px;}
.xf{left:2020.687483px;}
.x18{left:2031.502743px;}
.x19{left:2107.452676px;}
.x17{left:2119.330364px;}
.x13{left:2122.910161px;}
.x14{left:2165.747397px;}
.x1b{left:2406.239564px;}
.x21{left:2540.352269px;}
.x23{left:2545.911020px;}
.x1c{left:2727.705231px;}
.x1a{left:2780.461371px;}
.x1d{left:3056.225541px;}
.x22{left:3106.972453px;}
@media print{
.v2{vertical-align:-51.174989pt;}
.v3{vertical-align:-42.205065pt;}
.v5{vertical-align:-14.765892pt;}
.v4{vertical-align:-8.359506pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:51.174989pt;}
.ls6{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.003688pt;}
.ls1{letter-spacing:0.058858pt;}
.ls5{letter-spacing:0.596482pt;}
.ls4{letter-spacing:3.796231pt;}
.ls3{letter-spacing:46.700305pt;}
.ls2{letter-spacing:132.181611pt;}
.ws7{word-spacing:-124.058788pt;}
.wsf{word-spacing:-79.776157pt;}
.ws3{word-spacing:-47.333725pt;}
.ws15{word-spacing:-44.319886pt;}
.ws22{word-spacing:-41.306409pt;}
.wsc{word-spacing:-38.975899pt;}
.wsa{word-spacing:-37.593572pt;}
.ws29{word-spacing:-34.688614pt;}
.ws18{word-spacing:-32.442069pt;}
.ws4{word-spacing:-31.555817pt;}
.ws2c{word-spacing:-25.983933pt;}
.ws1d{word-spacing:-23.775235pt;}
.ws17{word-spacing:-5.036133pt;}
.wse{word-spacing:-3.930237pt;}
.ws6{word-spacing:-2.221438pt;}
.ws5{word-spacing:-2.113917pt;}
.wsd{word-spacing:-0.704639pt;}
.ws8{word-spacing:-0.683519pt;}
.ws9{word-spacing:-0.512640pt;}
.ws20{word-spacing:-0.351358pt;}
.ws2d{word-spacing:0.000000pt;}
.ws21{word-spacing:0.234239pt;}
.ws13{word-spacing:0.512640pt;}
.wsb{word-spacing:1.196159pt;}
.ws10{word-spacing:1.409278pt;}
.ws23{word-spacing:1.644158pt;}
.ws1e{word-spacing:2.576626pt;}
.ws27{word-spacing:4.613757pt;}
.ws1{word-spacing:9.569273pt;}
.ws0{word-spacing:13.157750pt;}
.ws11{word-spacing:14.866549pt;}
.ws14{word-spacing:16.575348pt;}
.ws16{word-spacing:24.126593pt;}
.ws25{word-spacing:26.828140pt;}
.ws2{word-spacing:36.397413pt;}
.ws19{word-spacing:37.712441pt;}
.ws28{word-spacing:49.042524pt;}
.ws1f{word-spacing:50.595573pt;}
.ws26{word-spacing:50.751322pt;}
.ws12{word-spacing:55.877719pt;}
.ws1c{word-spacing:58.793930pt;}
.ws1a{word-spacing:59.848005pt;}
.ws1b{word-spacing:60.550721pt;}
.ws24{word-spacing:65.959631pt;}
.ws2b{word-spacing:1657.601080pt;}
.ws2a{word-spacing:1762.583144pt;}
._1c{margin-left:-1649.586769pt;}
._1d{margin-left:-16.441580pt;}
._a{margin-left:-13.903833pt;}
._2a{margin-left:-12.734188pt;}
._1f{margin-left:-10.252792pt;}
._3{margin-left:-9.056633pt;}
._c{margin-left:-7.769832pt;}
._9{margin-left:-6.278393pt;}
._e{margin-left:-5.368342pt;}
._29{margin-left:-4.225284pt;}
._4{margin-left:-3.075838pt;}
._b{margin-left:-1.923841pt;}
._2{margin-left:-1.025279pt;}
._1{width:1.367039pt;}
._15{width:2.563198pt;}
._22{width:3.680646pt;}
._19{width:5.194153pt;}
._2f{width:24.828645pt;}
._14{width:27.956543pt;}
._16{width:29.903978pt;}
._2d{width:32.363343pt;}
._2c{width:33.442045pt;}
._d{width:35.316631pt;}
._1a{width:37.053879pt;}
._11{width:42.041446pt;}
._21{width:44.175332pt;}
._12{width:45.068125pt;}
._20{width:46.308446pt;}
._10{width:47.377887pt;}
._1b{width:48.403166pt;}
._28{width:49.599325pt;}
._7{width:54.510680pt;}
._6{width:55.535959pt;}
._2b{width:57.739856pt;}
._5{width:59.466196pt;}
._25{width:60.403151pt;}
._26{width:61.743333pt;}
._24{width:63.573081pt;}
._f{width:65.009539pt;}
._1e{width:65.982642pt;}
._23{width:67.580392pt;}
._31{width:73.403119pt;}
._30{width:75.436420pt;}
._8{width:82.534979pt;}
._2e{width:84.512203pt;}
._33{width:95.698498pt;}
._34{width:97.710662pt;}
._27{width:104.578483pt;}
._32{width:111.717044pt;}
._13{width:116.511812pt;}
._18{width:118.419289pt;}
._17{width:120.641191pt;}
._0{width:131.577503pt;}
.fs2{font-size:113.919916pt;}
.fs7{font-size:117.119383pt;}
.fs8{font-size:127.999670pt;}
.fs3{font-size:149.120611pt;}
.fs6{font-size:159.999587pt;}
.fs0{font-size:170.879873pt;}
.fs1{font-size:191.999504pt;}
.fs4{font-size:234.879708pt;}
.fs5{font-size:288.000567pt;}
.y0{bottom:0.000000pt;}
.y3d{bottom:220.347411pt;}
.yd{bottom:238.088997pt;}
.y3c{bottom:255.866024pt;}
.yc{bottom:289.272601pt;}
.y3b{bottom:291.062819pt;}
.y3a{bottom:329.950045pt;}
.yb{bottom:340.482432pt;}
.y39{bottom:365.459931pt;}
.ya{bottom:391.679021pt;}
.y38{bottom:400.656726pt;}
.y37{bottom:438.418289pt;}
.y49{bottom:463.357697pt;}
.y36{bottom:473.615084pt;}
.y35{bottom:515.219217pt;}
.y5f{bottom:604.783576pt;}
.y5e{bottom:649.586291pt;}
.y50{bottom:789.923468pt;}
.y4f{bottom:841.107072pt;}
.y4e{bottom:892.316648pt;}
.y4d{bottom:943.526478pt;}
.y4c{bottom:994.723068pt;}
.y4b{bottom:1065.448953pt;}
.y53{bottom:1100.456579pt;}
.y52{bottom:1145.259294pt;}
.y58{bottom:1186.251308pt;}
.y51{bottom:1190.061786pt;}
.y57{bottom:1237.434912pt;}
.y56{bottom:1288.644488pt;}
.y55{bottom:1339.841332pt;}
.y54{bottom:1402.557972pt;}
.y30{bottom:1498.242097pt;}
.y4a{bottom:1502.383324pt;}
.y2f{bottom:1549.438687pt;}
.y2e{bottom:1600.648518pt;}
.y2d{bottom:1651.832121pt;}
.y2c{bottom:1703.041952pt;}
.y2b{bottom:1754.251528pt;}
.y2a{bottom:1824.965890pt;}
.y5d{bottom:1873.614129pt;}
.y29{bottom:1923.685226pt;}
.y48{bottom:2032.153329pt;}
.y26{bottom:2058.720012pt;}
.y47{bottom:2076.955821pt;}
.y46{bottom:2121.747204pt;}
.y25{bottom:2129.928551pt;}
.y45{bottom:2166.549696pt;}
.y5c{bottom:2171.047615pt;}
.y24{bottom:2201.124357pt;}
.y44{bottom:2211.352411pt;}
.y59{bottom:2243.533891pt;}
.y43{bottom:2256.143571pt;}
.y23{bottom:2272.319910pt;}
.y42{bottom:2316.942304pt;}
.y22{bottom:2343.528448pt;}
.y41{bottom:2361.745019pt;}
.y5a{bottom:2403.994620pt;}
.y40{bottom:2406.559066pt;}
.y21{bottom:2414.724127pt;}
.y3f{bottom:2467.357576pt;}
.y5b{bottom:2473.756091pt;}
.y20{bottom:2481.443402pt;}
.y3e{bottom:2512.160291pt;}
.y1c{bottom:2553.764799pt;}
.y1b{bottom:2612.966219pt;}
.y1d{bottom:2620.330910pt;}
.y1a{bottom:2678.243004pt;}
.y61{bottom:2695.191234pt;}
.y19{bottom:2739.360904pt;}
.y18{bottom:2798.549338pt;}
.y17{bottom:2857.750885pt;}
.y34{bottom:2869.921389pt;}
.y33{bottom:2914.724104pt;}
.y16{bottom:2916.952305pt;}
.y1f{bottom:2937.761738pt;}
.y32{bottom:2959.515264pt;}
.y1e{bottom:2995.359276pt;}
.y15{bottom:2999.686910pt;}
.y31{bottom:3004.317979pt;}
.y60{bottom:3024.651737pt;}
.y27{bottom:3101.272600pt;}
.y14{bottom:3222.722159pt;}
.y13{bottom:3267.513430pt;}
.y9{bottom:3315.845806pt;}
.y8{bottom:3367.034757pt;}
.y7{bottom:3434.243554pt;}
.y6{bottom:3485.432441pt;}
.y5{bottom:3552.641301pt;}
.y4{bottom:3603.830189pt;}
.y3{bottom:3671.039049pt;}
.y2{bottom:3722.248752pt;}
.y1{bottom:3773.437640pt;}
.y62{bottom:3815.198055pt;}
.y28{bottom:3873.586666pt;}
.y12{bottom:4085.924726pt;}
.y11{bottom:4137.113634pt;}
.y10{bottom:4175.522652pt;}
.yf{bottom:4272.482980pt;}
.ye{bottom:4330.068770pt;}
.hd{height:101.507278pt;}
.h5{height:103.406702pt;}
.h6{height:103.406914pt;}
.hc{height:105.052884pt;}
.h7{height:110.020138pt;}
.h10{height:110.624714pt;}
.he{height:133.757111pt;}
.hb{height:144.765251pt;}
.hf{height:148.101453pt;}
.h2{height:153.274574pt;}
.h4{height:154.609573pt;}
.h9{height:165.937072pt;}
.h8{height:173.292597pt;}
.h3{height:173.718302pt;}
.ha{height:260.578638pt;}
.h0{height:4493.919920pt;}
.h1{height:4494.000000pt;}
.w0{width:3178.559893pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.xd{left:151.031547pt;}
.xe{left:153.107630pt;}
.x3{left:154.088098pt;}
.x1{left:168.168166pt;}
.x4{left:202.085474pt;}
.x2{left:216.165542pt;}
.x15{left:799.047652pt;}
.x5{left:947.833520pt;}
.x9{left:1052.317596pt;}
.xa{left:1084.473766pt;}
.xb{left:1166.714552pt;}
.xc{left:1178.553840pt;}
.x1f{left:1326.250999pt;}
.x6{left:1327.354590pt;}
.x16{left:1344.488308pt;}
.x20{left:1396.640520pt;}
.x8{left:1564.639521pt;}
.x7{left:1624.794922pt;}
.x1e{left:1676.304341pt;}
.x10{left:1717.767678pt;}
.x11{left:1739.042668pt;}
.x12{left:1792.161925pt;}
.xf{left:1796.166651pt;}
.x18{left:1805.780216pt;}
.x19{left:1873.291268pt;}
.x17{left:1883.849212pt;}
.x13{left:1887.031254pt;}
.x14{left:1925.108798pt;}
.x1b{left:2138.879612pt;}
.x21{left:2258.090906pt;}
.x23{left:2263.032017pt;}
.x1c{left:2424.626872pt;}
.x1a{left:2471.521219pt;}
.x1d{left:2716.644926pt;}
.x22{left:2761.753292pt;}
}




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