
    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_ba3b208e33725ef3b4cb619e.woff')format("woff");}.ff1{font-family:ff1;line-height:1.097168;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_79d6a918cc5f6ecbf7ca13ff.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_9515d24a1973eb57e2e8a1e2.woff')format("woff");}.ff3{font-family:ff3;line-height:1.402354;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_c932506b8e98cb98d6cbdb8b.woff')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_032f5d0155d75306693bc54b.woff')format("woff");}.ff5{font-family:ff5;line-height:1.311035;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);}
.v9{vertical-align:-99.540000px;}
.v1{vertical-align:-95.940000px;}
.v2{vertical-align:-40.500000px;}
.v7{vertical-align:-21.480000px;}
.v5{vertical-align:-16.920000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:16.020000px;}
.v4{vertical-align:18.900000px;}
.v8{vertical-align:54.000000px;}
.v3{vertical-align:70.500000px;}
.ls19{letter-spacing:-3.108000px;}
.ls13{letter-spacing:-2.400000px;}
.ls7{letter-spacing:-2.304000px;}
.ls15{letter-spacing:-1.740000px;}
.ls17{letter-spacing:-1.644000px;}
.ls1b{letter-spacing:-1.476000px;}
.ls14{letter-spacing:-1.296000px;}
.ls10{letter-spacing:-1.248000px;}
.lse{letter-spacing:-1.200000px;}
.lsf{letter-spacing:-1.104000px;}
.ls12{letter-spacing:-1.080000px;}
.ls11{letter-spacing:-0.828000px;}
.ls1a{letter-spacing:-0.756000px;}
.ls18{letter-spacing:-0.708000px;}
.ls8{letter-spacing:-0.552000px;}
.ls16{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.372000px;}
.ls6{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.492000px;}
.ls3{letter-spacing:0.552000px;}
.ls1{letter-spacing:0.600000px;}
.lsc{letter-spacing:0.648000px;}
.ls5{letter-spacing:0.732000px;}
.lsb{letter-spacing:42.618000px;}
.ls2{letter-spacing:46.200000px;}
.lsd{letter-spacing:762.750000px;}
.ls0{letter-spacing:920.130000px;}
.lsa{letter-spacing:945.330000px;}
.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:-21.000000px;}
.ws3{word-spacing:-20.628000px;}
.wsc{word-spacing:-20.292000px;}
.wsf{word-spacing:-20.244000px;}
.ws7{word-spacing:-20.172000px;}
.wse{word-spacing:-19.920000px;}
.ws6{word-spacing:-19.896000px;}
.ws5{word-spacing:-19.800000px;}
.ws9{word-spacing:-19.704000px;}
.ws10{word-spacing:-19.524000px;}
.wsb{word-spacing:-19.356000px;}
.wsa{word-spacing:-19.260000px;}
.ws1{word-spacing:-18.696000px;}
.ws8{word-spacing:-18.600000px;}
.wsd{word-spacing:-17.892000px;}
.ws2{word-spacing:0.000000px;}
.ws4{word-spacing:99.120000px;}
._40{margin-left:-5.022000px;}
._31{margin-left:-3.780000px;}
._6{margin-left:-2.436000px;}
._0{margin-left:-1.428000px;}
._1{width:1.260000px;}
._2{width:3.168000px;}
._21{width:4.248000px;}
._3{width:5.712000px;}
._4{width:6.762000px;}
._5{width:7.896000px;}
._e{width:9.072000px;}
._f{width:10.080000px;}
._20{width:12.096000px;}
._25{width:14.022000px;}
._24{width:15.372000px;}
._26{width:16.380000px;}
._c{width:17.808000px;}
._d{width:19.002000px;}
._18{width:22.932000px;}
._3c{width:24.024000px;}
._a{width:25.032000px;}
._b{width:27.018000px;}
._32{width:28.740000px;}
._22{width:30.066000px;}
._33{width:31.152000px;}
._1f{width:32.178000px;}
._28{width:33.264000px;}
._9{width:34.524000px;}
._7{width:35.616000px;}
._8{width:36.708000px;}
._13{width:37.800000px;}
._14{width:38.892000px;}
._23{width:40.284000px;}
._1d{width:41.526000px;}
._27{width:43.176000px;}
._19{width:45.108000px;}
._1a{width:46.200000px;}
._15{width:47.292000px;}
._29{width:48.804000px;}
._2a{width:49.980000px;}
._12{width:51.324000px;}
._10{width:52.416000px;}
._11{width:54.012000px;}
._3b{width:57.048000px;}
._1e{width:59.040000px;}
._3f{width:60.102000px;}
._2b{width:61.656000px;}
._2c{width:62.832000px;}
._30{width:68.376000px;}
._2f{width:69.636000px;}
._3a{width:71.022000px;}
._1b{width:85.158000px;}
._1c{width:86.520000px;}
._2d{width:89.628000px;}
._2e{width:90.858000px;}
._17{width:95.088000px;}
._16{width:96.516000px;}
._3e{width:106.404000px;}
._3d{width:107.868000px;}
._39{width:131.158350px;}
._38{width:184.380000px;}
._35{width:190.800000px;}
._37{width:202.620000px;}
._36{width:211.860000px;}
._34{width:217.800000px;}
._41{width:843.330000px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:60.000000px;}
.fs2{font-size:60.150000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y44{bottom:16.500000px;}
.y2{bottom:53.137500px;}
.y1{bottom:59.137500px;}
.y43{bottom:75.855000px;}
.y38{bottom:87.337500px;}
.y39{bottom:87.600000px;}
.y2d{bottom:120.037500px;}
.y2c{bottom:144.337500px;}
.y3c{bottom:164.430000px;}
.y2b{bottom:168.375000px;}
.y2a{bottom:192.675000px;}
.y3b{bottom:199.800000px;}
.y41{bottom:206.400000px;}
.y3d{bottom:207.405000px;}
.y46{bottom:216.075000px;}
.y29{bottom:216.675000px;}
.y3a{bottom:227.655000px;}
.y3f{bottom:230.970000px;}
.y28{bottom:240.975000px;}
.y42{bottom:252.750000px;}
.y40{bottom:256.770000px;}
.y27{bottom:264.975000px;}
.y3e{bottom:272.595000px;}
.y26{bottom:289.275000px;}
.y25{bottom:313.275000px;}
.y24{bottom:337.620000px;}
.y23{bottom:361.620000px;}
.y22{bottom:385.905000px;}
.y21{bottom:409.905000px;}
.y45{bottom:433.620000px;}
.y20{bottom:434.205000px;}
.y1f{bottom:458.205000px;}
.y1e{bottom:482.505000px;}
.y1d{bottom:506.550000px;}
.y1c{bottom:530.850000px;}
.y1b{bottom:554.850000px;}
.y1a{bottom:579.150000px;}
.y19{bottom:603.150000px;}
.y18{bottom:627.450000px;}
.y17{bottom:651.450000px;}
.y16{bottom:675.195000px;}
.y37{bottom:675.780000px;}
.y15{bottom:699.780000px;}
.y14{bottom:724.080000px;}
.y13{bottom:748.080000px;}
.y12{bottom:772.380000px;}
.y11{bottom:795.795000px;}
.y36{bottom:796.380000px;}
.y10{bottom:820.080000px;}
.y35{bottom:820.695000px;}
.yf{bottom:844.725000px;}
.ye{bottom:869.025000px;}
.yd{bottom:893.025000px;}
.yc{bottom:917.325000px;}
.yb{bottom:940.725000px;}
.y34{bottom:941.325000px;}
.ya{bottom:965.025000px;}
.y33{bottom:965.625000px;}
.y9{bottom:989.625000px;}
.y8{bottom:1013.955000px;}
.y7{bottom:1037.955000px;}
.y32{bottom:1062.255000px;}
.y6{bottom:1085.655000px;}
.y31{bottom:1086.255000px;}
.y5{bottom:1109.955000px;}
.y30{bottom:1110.570000px;}
.y4{bottom:1133.955000px;}
.y2f{bottom:1134.570000px;}
.y3{bottom:1158.255000px;}
.y2e{bottom:1158.870000px;}
.h4{height:59.267578px;}
.h8{height:60.468750px;}
.hd{height:60.619922px;}
.h3{height:61.670545px;}
.h6{height:74.033203px;}
.hb{height:76.639922px;}
.ha{height:79.368750px;}
.h2{height:82.441406px;}
.h5{height:84.656250px;}
.he{height:86.338763px;}
.h9{height:90.468750px;}
.hc{height:114.468750px;}
.h7{height:293.100000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w2{width:701.700000px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:33.900000px;}
.xf{left:44.355000px;}
.xb{left:78.195000px;}
.x2{left:84.937500px;}
.x4{left:123.637500px;}
.x15{left:124.837500px;}
.x6{left:127.537500px;}
.x3{left:157.230000px;}
.xc{left:160.320000px;}
.x16{left:206.775000px;}
.x10{left:211.575000px;}
.x14{left:224.745000px;}
.x9{left:244.275000px;}
.x7{left:265.875000px;}
.x8{left:294.675000px;}
.xd{left:347.880000px;}
.x5{left:380.820000px;}
.x1{left:430.650000px;}
.x11{left:466.275000px;}
.x12{left:546.000000px;}
.xe{left:594.255000px;}
.xa{left:829.755000px;}
@media print{
.v9{vertical-align:-88.480000pt;}
.v1{vertical-align:-85.280000pt;}
.v2{vertical-align:-36.000000pt;}
.v7{vertical-align:-19.093333pt;}
.v5{vertical-align:-15.040000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:14.240000pt;}
.v4{vertical-align:16.800000pt;}
.v8{vertical-align:48.000000pt;}
.v3{vertical-align:62.666667pt;}
.ls19{letter-spacing:-2.762667pt;}
.ls13{letter-spacing:-2.133333pt;}
.ls7{letter-spacing:-2.048000pt;}
.ls15{letter-spacing:-1.546667pt;}
.ls17{letter-spacing:-1.461333pt;}
.ls1b{letter-spacing:-1.312000pt;}
.ls14{letter-spacing:-1.152000pt;}
.ls10{letter-spacing:-1.109333pt;}
.lse{letter-spacing:-1.066667pt;}
.lsf{letter-spacing:-0.981333pt;}
.ls12{letter-spacing:-0.960000pt;}
.ls11{letter-spacing:-0.736000pt;}
.ls1a{letter-spacing:-0.672000pt;}
.ls18{letter-spacing:-0.629333pt;}
.ls8{letter-spacing:-0.490667pt;}
.ls16{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.330667pt;}
.ls6{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.437333pt;}
.ls3{letter-spacing:0.490667pt;}
.ls1{letter-spacing:0.533333pt;}
.lsc{letter-spacing:0.576000pt;}
.ls5{letter-spacing:0.650667pt;}
.lsb{letter-spacing:37.882667pt;}
.ls2{letter-spacing:41.066667pt;}
.lsd{letter-spacing:678.000000pt;}
.ls0{letter-spacing:817.893333pt;}
.lsa{letter-spacing:840.293333pt;}
.ws0{word-spacing:-18.666667pt;}
.ws3{word-spacing:-18.336000pt;}
.wsc{word-spacing:-18.037333pt;}
.wsf{word-spacing:-17.994667pt;}
.ws7{word-spacing:-17.930667pt;}
.wse{word-spacing:-17.706667pt;}
.ws6{word-spacing:-17.685333pt;}
.ws5{word-spacing:-17.600000pt;}
.ws9{word-spacing:-17.514667pt;}
.ws10{word-spacing:-17.354667pt;}
.wsb{word-spacing:-17.205333pt;}
.wsa{word-spacing:-17.120000pt;}
.ws1{word-spacing:-16.618667pt;}
.ws8{word-spacing:-16.533333pt;}
.wsd{word-spacing:-15.904000pt;}
.ws2{word-spacing:0.000000pt;}
.ws4{word-spacing:88.106667pt;}
._40{margin-left:-4.464000pt;}
._31{margin-left:-3.360000pt;}
._6{margin-left:-2.165333pt;}
._0{margin-left:-1.269333pt;}
._1{width:1.120000pt;}
._2{width:2.816000pt;}
._21{width:3.776000pt;}
._3{width:5.077333pt;}
._4{width:6.010667pt;}
._5{width:7.018667pt;}
._e{width:8.064000pt;}
._f{width:8.960000pt;}
._20{width:10.752000pt;}
._25{width:12.464000pt;}
._24{width:13.664000pt;}
._26{width:14.560000pt;}
._c{width:15.829333pt;}
._d{width:16.890667pt;}
._18{width:20.384000pt;}
._3c{width:21.354667pt;}
._a{width:22.250667pt;}
._b{width:24.016000pt;}
._32{width:25.546667pt;}
._22{width:26.725333pt;}
._33{width:27.690667pt;}
._1f{width:28.602667pt;}
._28{width:29.568000pt;}
._9{width:30.688000pt;}
._7{width:31.658667pt;}
._8{width:32.629333pt;}
._13{width:33.600000pt;}
._14{width:34.570667pt;}
._23{width:35.808000pt;}
._1d{width:36.912000pt;}
._27{width:38.378667pt;}
._19{width:40.096000pt;}
._1a{width:41.066667pt;}
._15{width:42.037333pt;}
._29{width:43.381333pt;}
._2a{width:44.426667pt;}
._12{width:45.621333pt;}
._10{width:46.592000pt;}
._11{width:48.010667pt;}
._3b{width:50.709333pt;}
._1e{width:52.480000pt;}
._3f{width:53.424000pt;}
._2b{width:54.805333pt;}
._2c{width:55.850667pt;}
._30{width:60.778667pt;}
._2f{width:61.898667pt;}
._3a{width:63.130667pt;}
._1b{width:75.696000pt;}
._1c{width:76.906667pt;}
._2d{width:79.669333pt;}
._2e{width:80.762667pt;}
._17{width:84.522667pt;}
._16{width:85.792000pt;}
._3e{width:94.581333pt;}
._3d{width:95.882667pt;}
._39{width:116.585200pt;}
._38{width:163.893333pt;}
._35{width:169.600000pt;}
._37{width:180.106667pt;}
._36{width:188.320000pt;}
._34{width:193.600000pt;}
._41{width:749.626667pt;}
.fs1{font-size:53.333333pt;}
.fs2{font-size:53.466667pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y44{bottom:14.666667pt;}
.y2{bottom:47.233333pt;}
.y1{bottom:52.566667pt;}
.y43{bottom:67.426667pt;}
.y38{bottom:77.633333pt;}
.y39{bottom:77.866667pt;}
.y2d{bottom:106.700000pt;}
.y2c{bottom:128.300000pt;}
.y3c{bottom:146.160000pt;}
.y2b{bottom:149.666667pt;}
.y2a{bottom:171.266667pt;}
.y3b{bottom:177.600000pt;}
.y41{bottom:183.466667pt;}
.y3d{bottom:184.360000pt;}
.y46{bottom:192.066667pt;}
.y29{bottom:192.600000pt;}
.y3a{bottom:202.360000pt;}
.y3f{bottom:205.306667pt;}
.y28{bottom:214.200000pt;}
.y42{bottom:224.666667pt;}
.y40{bottom:228.240000pt;}
.y27{bottom:235.533333pt;}
.y3e{bottom:242.306667pt;}
.y26{bottom:257.133333pt;}
.y25{bottom:278.466667pt;}
.y24{bottom:300.106667pt;}
.y23{bottom:321.440000pt;}
.y22{bottom:343.026667pt;}
.y21{bottom:364.360000pt;}
.y45{bottom:385.440000pt;}
.y20{bottom:385.960000pt;}
.y1f{bottom:407.293333pt;}
.y1e{bottom:428.893333pt;}
.y1d{bottom:450.266667pt;}
.y1c{bottom:471.866667pt;}
.y1b{bottom:493.200000pt;}
.y1a{bottom:514.800000pt;}
.y19{bottom:536.133333pt;}
.y18{bottom:557.733333pt;}
.y17{bottom:579.066667pt;}
.y16{bottom:600.173333pt;}
.y37{bottom:600.693333pt;}
.y15{bottom:622.026667pt;}
.y14{bottom:643.626667pt;}
.y13{bottom:664.960000pt;}
.y12{bottom:686.560000pt;}
.y11{bottom:707.373333pt;}
.y36{bottom:707.893333pt;}
.y10{bottom:728.960000pt;}
.y35{bottom:729.506667pt;}
.yf{bottom:750.866667pt;}
.ye{bottom:772.466667pt;}
.yd{bottom:793.800000pt;}
.yc{bottom:815.400000pt;}
.yb{bottom:836.200000pt;}
.y34{bottom:836.733333pt;}
.ya{bottom:857.800000pt;}
.y33{bottom:858.333333pt;}
.y9{bottom:879.666667pt;}
.y8{bottom:901.293333pt;}
.y7{bottom:922.626667pt;}
.y32{bottom:944.226667pt;}
.y6{bottom:965.026667pt;}
.y31{bottom:965.560000pt;}
.y5{bottom:986.626667pt;}
.y30{bottom:987.173333pt;}
.y4{bottom:1007.960000pt;}
.y2f{bottom:1008.506667pt;}
.y3{bottom:1029.560000pt;}
.y2e{bottom:1030.106667pt;}
.h4{height:52.682292pt;}
.h8{height:53.750000pt;}
.hd{height:53.884375pt;}
.h3{height:54.818262pt;}
.h6{height:65.807292pt;}
.hb{height:68.124375pt;}
.ha{height:70.550000pt;}
.h2{height:73.281250pt;}
.h5{height:75.250000pt;}
.he{height:76.745567pt;}
.h9{height:80.416667pt;}
.hc{height:101.750000pt;}
.h7{height:260.533333pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w2{width:623.733333pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:30.133333pt;}
.xf{left:39.426667pt;}
.xb{left:69.506667pt;}
.x2{left:75.500000pt;}
.x4{left:109.900000pt;}
.x15{left:110.966667pt;}
.x6{left:113.366667pt;}
.x3{left:139.760000pt;}
.xc{left:142.506667pt;}
.x16{left:183.800000pt;}
.x10{left:188.066667pt;}
.x14{left:199.773333pt;}
.x9{left:217.133333pt;}
.x7{left:236.333333pt;}
.x8{left:261.933333pt;}
.xd{left:309.226667pt;}
.x5{left:338.506667pt;}
.x1{left:382.800000pt;}
.x11{left:414.466667pt;}
.x12{left:485.333333pt;}
.xe{left:528.226667pt;}
.xa{left:737.560000pt;}
}




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