
    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_7befd70546a1ae4814042d9f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.919922;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_9e7f073bd8cb3506a2cbe836.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.181818;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_9c2c27c682690e7e8f8735da.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.181818;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.000000,0.249649,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.249649,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.249649,-0.250000,0.000000,0,0);}
.m2{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);}
.m0{transform:matrix(0.250351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250351,0.000000,0.000000,0.250000,0,0);}
.m3{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;}
.v1{vertical-align:3.211488px;}
.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;}
}
.ws0{word-spacing:-95.780889px;}
.ws1{word-spacing:-94.113769px;}
.ws2{word-spacing:-93.284603px;}
.ws3{word-spacing:-86.695308px;}
.ws4{word-spacing:-70.930484px;}
.ws18{word-spacing:-66.784090px;}
.ws6{word-spacing:-61.552548px;}
.ws7{word-spacing:-60.630492px;}
.ws8{word-spacing:-59.251809px;}
.ws9{word-spacing:-59.191195px;}
.wsb{word-spacing:-52.804303px;}
.wsa{word-spacing:-52.765866px;}
.wsc{word-spacing:-52.489456px;}
.wsd{word-spacing:-48.126616px;}
.wse{word-spacing:-45.697761px;}
.wsf{word-spacing:-43.284673px;}
.ws10{word-spacing:-30.180313px;}
.ws12{word-spacing:-29.325729px;}
.ws11{word-spacing:-29.006588px;}
.ws13{word-spacing:-27.565266px;}
.ws19{word-spacing:-23.616562px;}
.ws14{word-spacing:-18.463515px;}
.ws15{word-spacing:-16.012177px;}
.ws17{word-spacing:-9.638836px;}
.ws16{word-spacing:-9.625316px;}
.ws1a{word-spacing:0.000000px;}
.ws5{word-spacing:258.067786px;}
._0{margin-left:-2.176225px;}
.fc1d{color:rgb(6,6,68);}
.fc4{color:rgb(255,174,0);}
.fc11{color:rgb(202,135,115);}
.fc6{color:rgb(242,147,58);}
.fcc{color:rgb(90,45,2);}
.fc3{color:rgb(255,148,28);}
.fcb{color:rgb(223,105,28);}
.fc1{color:rgb(255,101,0);}
.fc5{color:rgb(219,140,52);}
.fcd{color:rgb(217,174,69);}
.fca{color:rgb(129,75,14);}
.fc9{color:rgb(206,100,0);}
.fc13{color:rgb(189,99,14);}
.fc1b{color:rgb(188,156,34);}
.fc1c{color:rgb(41,116,29);}
.fc2{color:rgb(255,141,51);}
.fce{color:rgb(111,76,10);}
.fc12{color:rgb(66,43,13);}
.fc15{color:rgb(225,176,154);}
.fcf{color:rgb(219,131,13);}
.fc0{color:rgb(255,124,0);}
.fc10{color:rgb(67,40,3);}
.fc14{color:rgb(221,122,11);}
.fc7{color:rgb(255,0,0);}
.fc8{color:rgb(217,114,58);}
.fc16{color:rgb(197,122,51);}
.fc18{color:rgb(200,81,3);}
.fc17{color:rgb(94,23,235);}
.fc19{color:rgb(0,0,0);}
.fc1a{color:rgb(166,25,46);}
.fs16{font-size:19.250633px;}
.fs17{font-size:19.277671px;}
.fs15{font-size:32.024355px;}
.fs14{font-size:36.927030px;}
.fs13{font-size:55.130533px;}
.fs11{font-size:58.013177px;}
.fs12{font-size:58.651457px;}
.fs1b{font-size:59.984997px;}
.fs10{font-size:60.360626px;}
.fs1a{font-size:83.969997px;}
.fsf{font-size:86.569347px;}
.fse{font-size:91.395523px;}
.fsd{font-size:96.253232px;}
.fsc{font-size:104.978912px;}
.fsa{font-size:105.531733px;}
.fsb{font-size:105.608606px;}
.fs9{font-size:118.382390px;}
.fs8{font-size:118.503618px;}
.fs7{font-size:121.260984px;}
.fs6{font-size:123.105096px;}
.fs5{font-size:140.646555px;}
.fs4{font-size:141.860968px;}
.fs3{font-size:173.390616px;}
.fs2{font-size:186.569207px;}
.fs1{font-size:188.227538px;}
.fs0{font-size:191.561777px;}
.fs18{font-size:191.969992px;}
.fs19{font-size:287.999988px;}
.y0{bottom:0.000000px;}
.y1a{bottom:0.000024px;}
.y3b{bottom:6.848784px;}
.y3a{bottom:47.123962px;}
.y39{bottom:76.373961px;}
.y11{bottom:83.488713px;}
.yc{bottom:95.530244px;}
.yf{bottom:101.952932px;}
.y38{bottom:105.623960px;}
.y18{bottom:106.592740px;}
.ye{bottom:116.738161px;}
.y7{bottom:119.212375px;}
.y3{bottom:133.165713px;}
.y37{bottom:134.873958px;}
.y2{bottom:139.281834px;}
.y13{bottom:144.901146px;}
.y15{bottom:158.147057px;}
.y17{bottom:163.365365px;}
.y4{bottom:164.569745px;}
.y16{bottom:176.213765px;}
.y1b{bottom:184.224016px;}
.yd{bottom:194.272120px;}
.ya{bottom:196.680736px;}
.y19{bottom:199.998613px;}
.y5{bottom:201.095776px;}
.y9{bottom:230.292521px;}
.y6{bottom:232.002926px;}
.y10{bottom:245.339638px;}
.y14{bottom:249.109212px;}
.y8{bottom:258.092737px;}
.y2a{bottom:290.948892px;}
.yb{bottom:298.575341px;}
.y12{bottom:318.357495px;}
.y29{bottom:320.198891px;}
.y28{bottom:349.448889px;}
.y27{bottom:378.698888px;}
.y26{bottom:407.948887px;}
.y23{bottom:457.298945px;}
.y32{bottom:560.610697px;}
.y31{bottom:589.860695px;}
.y22{bottom:860.209488px;}
.y36{bottom:1033.587713px;}
.y35{bottom:1062.837712px;}
.y34{bottom:1092.087710px;}
.y33{bottom:1121.337709px;}
.y21{bottom:1261.545751px;}
.y1{bottom:1295.188566px;}
.y30{bottom:1394.592746px;}
.y2f{bottom:1423.842745px;}
.y2e{bottom:1453.092743px;}
.y2d{bottom:1482.342742px;}
.y2c{bottom:1511.592741px;}
.y2b{bottom:1540.842740px;}
.y1c{bottom:1650.388510px;}
.y25{bottom:1757.263506px;}
.y24{bottom:1786.513505px;}
.y20{bottom:1843.738494px;}
.y1f{bottom:1961.263503px;}
.y1e{bottom:2061.388499px;}
.y1d{bottom:2161.513495px;}
.h18{height:13.554401px;}
.h19{height:13.573438px;}
.h17{height:22.548398px;}
.h16{height:26.000379px;}
.h15{height:38.817494px;}
.h13{height:40.847168px;}
.h14{height:41.296583px;}
.h12{height:42.500011px;}
.h1e{height:57.258406px;}
.h11{height:60.953612px;}
.h10{height:64.351730px;}
.hf{height:67.772051px;}
.he{height:73.915816px;}
.hc{height:74.305058px;}
.hd{height:74.359184px;}
.h1d{height:80.153178px;}
.hb{height:83.353226px;}
.ha{height:83.438583px;}
.h9{height:85.380049px;}
.h8{height:99.029459px;}
.h7{height:99.884529px;}
.h6{height:122.084603px;}
.h5{height:131.363670px;}
.h4{height:132.531304px;}
.h3{height:134.878947px;}
.h1b{height:183.244083px;}
.h1c{height:274.909079px;}
.h2{height:325.124986px;}
.h1a{height:2249.999876px;}
.h0{height:2249.999900px;}
.h1{height:2250.000000px;}
.w1{width:421.874939px;}
.w2{width:899.999963px;}
.w0{width:900.000000px;}
.x0{left:0.000000px;}
.xa{left:25.845963px;}
.x1{left:32.470078px;}
.x2b{left:33.540249px;}
.x6{left:62.449206px;}
.x21{left:79.375086px;}
.x20{left:81.449305px;}
.x7{left:91.882800px;}
.x1a{left:97.475402px;}
.x4{left:106.554077px;}
.x12{left:107.635789px;}
.x14{left:122.120029px;}
.xc{left:126.200085px;}
.x1b{left:128.628990px;}
.x8{left:137.152920px;}
.x2c{left:141.965995px;}
.x5{left:148.257965px;}
.x1d{left:151.528893px;}
.x2d{left:158.876150px;}
.x1e{left:170.217766px;}
.x2{left:189.189154px;}
.x18{left:210.937483px;}
.xd{left:222.412414px;}
.x2e{left:236.167162px;}
.x3{left:240.681538px;}
.x13{left:257.564115px;}
.x16{left:261.199048px;}
.x1f{left:262.736135px;}
.x9{left:276.053797px;}
.x17{left:277.661867px;}
.x1c{left:290.875077px;}
.x10{left:292.533906px;}
.xe{left:296.151506px;}
.x15{left:302.984759px;}
.xb{left:312.631610px;}
.xf{left:313.743265px;}
.x11{left:317.658901px;}
.x19{left:324.303758px;}
.x29{left:449.719917px;}
.x2a{left:457.577338px;}
.x25{left:467.167438px;}
.x23{left:468.995562px;}
.x27{left:470.233588px;}
.x24{left:473.425250px;}
.x28{left:484.190618px;}
.x22{left:491.565874px;}
.x26{left:502.868608px;}
.x2f{left:679.534774px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.854656pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-85.138568pt;}
.ws1{word-spacing:-83.656684pt;}
.ws2{word-spacing:-82.919647pt;}
.ws3{word-spacing:-77.062496pt;}
.ws4{word-spacing:-63.049319pt;}
.ws18{word-spacing:-59.363635pt;}
.ws6{word-spacing:-54.713376pt;}
.ws7{word-spacing:-53.893771pt;}
.ws8{word-spacing:-52.668275pt;}
.ws9{word-spacing:-52.614395pt;}
.wsb{word-spacing:-46.937158pt;}
.wsa{word-spacing:-46.902992pt;}
.wsc{word-spacing:-46.657294pt;}
.wsd{word-spacing:-42.779214pt;}
.wse{word-spacing:-40.620232pt;}
.wsf{word-spacing:-38.475265pt;}
.ws10{word-spacing:-26.826945pt;}
.ws12{word-spacing:-26.067314pt;}
.ws11{word-spacing:-25.783634pt;}
.ws13{word-spacing:-24.502459pt;}
.ws19{word-spacing:-20.992499pt;}
.ws14{word-spacing:-16.412013pt;}
.ws15{word-spacing:-14.233047pt;}
.ws17{word-spacing:-8.567854pt;}
.ws16{word-spacing:-8.555837pt;}
.ws1a{word-spacing:0.000000pt;}
.ws5{word-spacing:229.393587pt;}
._0{margin-left:-1.934422pt;}
.fs16{font-size:17.111673pt;}
.fs17{font-size:17.135708pt;}
.fs15{font-size:28.466093pt;}
.fs14{font-size:32.824026pt;}
.fs13{font-size:49.004918pt;}
.fs11{font-size:51.567268pt;}
.fs12{font-size:52.134629pt;}
.fs1b{font-size:53.319997pt;}
.fs10{font-size:53.653890pt;}
.fs1a{font-size:74.639997pt;}
.fsf{font-size:76.950530pt;}
.fse{font-size:81.240465pt;}
.fsd{font-size:85.558429pt;}
.fsc{font-size:93.314589pt;}
.fsa{font-size:93.805985pt;}
.fsb{font-size:93.874316pt;}
.fs9{font-size:105.228791pt;}
.fs8{font-size:105.336550pt;}
.fs7{font-size:107.787542pt;}
.fs6{font-size:109.426752pt;}
.fs5{font-size:125.019160pt;}
.fs4{font-size:126.098639pt;}
.fs3{font-size:154.124992pt;}
.fs2{font-size:165.839295pt;}
.fs1{font-size:167.313367pt;}
.fs0{font-size:170.277135pt;}
.fs18{font-size:170.639993pt;}
.fs19{font-size:255.999989pt;}
.y0{bottom:0.000000pt;}
.y1a{bottom:0.000021pt;}
.y3b{bottom:6.087808pt;}
.y3a{bottom:41.887966pt;}
.y39{bottom:67.887965pt;}
.y11{bottom:74.212189pt;}
.yc{bottom:84.915772pt;}
.yf{bottom:90.624828pt;}
.y38{bottom:93.887964pt;}
.y18{bottom:94.749102pt;}
.ye{bottom:103.767254pt;}
.y7{bottom:105.966556pt;}
.y3{bottom:118.369523pt;}
.y37{bottom:119.887963pt;}
.y2{bottom:123.806075pt;}
.y13{bottom:128.801019pt;}
.y15{bottom:140.575162pt;}
.y17{bottom:145.213658pt;}
.y4{bottom:146.284218pt;}
.y16{bottom:156.634458pt;}
.y1b{bottom:163.754681pt;}
.yd{bottom:172.686329pt;}
.ya{bottom:174.827321pt;}
.y19{bottom:177.776545pt;}
.y5{bottom:178.751801pt;}
.y9{bottom:204.704463pt;}
.y6{bottom:206.224823pt;}
.y10{bottom:218.079678pt;}
.y14{bottom:221.430410pt;}
.y8{bottom:229.415766pt;}
.y2a{bottom:258.621237pt;}
.yb{bottom:265.400303pt;}
.y12{bottom:282.984440pt;}
.y29{bottom:284.621236pt;}
.y28{bottom:310.621235pt;}
.y27{bottom:336.621234pt;}
.y26{bottom:362.621233pt;}
.y23{bottom:406.487951pt;}
.y32{bottom:498.320619pt;}
.y31{bottom:524.320618pt;}
.y22{bottom:764.630656pt;}
.y36{bottom:918.744634pt;}
.y35{bottom:944.744633pt;}
.y34{bottom:970.744632pt;}
.y33{bottom:996.744630pt;}
.y21{bottom:1121.374001pt;}
.y1{bottom:1151.278725pt;}
.y30{bottom:1239.637996pt;}
.y2f{bottom:1265.637995pt;}
.y2e{bottom:1291.637994pt;}
.y2d{bottom:1317.637993pt;}
.y2c{bottom:1343.637992pt;}
.y2b{bottom:1369.637991pt;}
.y1c{bottom:1467.012009pt;}
.y25{bottom:1562.012005pt;}
.y24{bottom:1588.012004pt;}
.y20{bottom:1638.878661pt;}
.y1f{bottom:1743.345336pt;}
.y1e{bottom:1832.345333pt;}
.y1d{bottom:1921.345329pt;}
.h18{height:12.048356pt;}
.h19{height:12.065279pt;}
.h17{height:20.043021pt;}
.h16{height:23.111448pt;}
.h15{height:34.504439pt;}
.h13{height:36.308594pt;}
.h14{height:36.708074pt;}
.h12{height:37.777788pt;}
.h1e{height:50.896361pt;}
.h11{height:54.180989pt;}
.h10{height:57.201538pt;}
.hf{height:60.241823pt;}
.he{height:65.702948pt;}
.hc{height:66.048940pt;}
.hd{height:66.097053pt;}
.h1d{height:71.247270pt;}
.hb{height:74.091756pt;}
.ha{height:74.167629pt;}
.h9{height:75.893376pt;}
.h8{height:88.026186pt;}
.h7{height:88.786248pt;}
.h6{height:108.519647pt;}
.h5{height:116.767707pt;}
.h4{height:117.805603pt;}
.h3{height:119.892397pt;}
.h1b{height:162.883630pt;}
.h1c{height:244.363626pt;}
.h2{height:288.999988pt;}
.h1a{height:1999.999890pt;}
.h0{height:1999.999911pt;}
.h1{height:2000.000000pt;}
.w1{width:374.999946pt;}
.w2{width:799.999967pt;}
.w0{width:800.000000pt;}
.x0{left:0.000000pt;}
.xa{left:22.974190pt;}
.x1{left:28.862291pt;}
.x2b{left:29.813555pt;}
.x6{left:55.510405pt;}
.x21{left:70.555632pt;}
.x20{left:72.399382pt;}
.x7{left:81.673600pt;}
.x1a{left:86.644802pt;}
.x4{left:94.714735pt;}
.x12{left:95.676257pt;}
.x14{left:108.551137pt;}
.xc{left:112.177853pt;}
.x1b{left:114.336880pt;}
.x8{left:121.913707pt;}
.x2c{left:126.191995pt;}
.x5{left:131.784858pt;}
.x1d{left:134.692349pt;}
.x2d{left:141.223245pt;}
.x1e{left:151.304681pt;}
.x2{left:168.168137pt;}
.x18{left:187.499985pt;}
.xd{left:197.699924pt;}
.x2e{left:209.926367pt;}
.x3{left:213.939145pt;}
.x13{left:228.945880pt;}
.x16{left:232.176931pt;}
.x1f{left:233.543231pt;}
.x9{left:245.381153pt;}
.x17{left:246.810548pt;}
.x1c{left:258.555624pt;}
.x10{left:260.030138pt;}
.xe{left:263.245783pt;}
.x15{left:269.319786pt;}
.xb{left:277.894765pt;}
.xf{left:278.882902pt;}
.x11{left:282.363468pt;}
.x19{left:288.270007pt;}
.x29{left:399.751037pt;}
.x2a{left:406.735412pt;}
.x25{left:415.259944pt;}
.x23{left:416.884944pt;}
.x27{left:417.985411pt;}
.x24{left:420.822444pt;}
.x28{left:430.391661pt;}
.x22{left:436.947444pt;}
.x26{left:446.994318pt;}
.x2f{left:604.030910pt;}
}




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