
    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_2814838b2567c675397b21a1.woff')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_0110ecc37b3857b7abdd178a.woff')format("woff");}.ff2{font-family:ff2;line-height:0.948000;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_df2ee51f5c8f27e8249fae01.woff')format("woff");}.ff3{font-family:ff3;line-height:0.948000;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_692db32dcf641afd9fe74750.woff')format("woff");}.ff4{font-family:ff4;line-height:0.940918;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_c88889aa322344c1439d0e7f.woff')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_71b5375c50cc94d0923b3cd1.woff')format("woff");}.ff6{font-family:ff6;line-height:0.926758;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_7973b87d40bd550b37a0e867.woff')format("woff");}.ff7{font-family:ff7;line-height:0.727000;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_305bf15f27a5b388d6ee14ea.woff')format("woff");}.ff8{font-family:ff8;line-height:0.940918;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_fd077eb49a488f8940fec42d.woff')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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;}
.v1{vertical-align:91.429293px;}
.v2{vertical-align:315.021340px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:107.972506px;}
.ls4{letter-spacing:107.974533px;}
.ls1{letter-spacing:107.992444px;}
.ls2{letter-spacing:108.001479px;}
.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:-132.960001px;}
.ws9{word-spacing:-121.344007px;}
.ws8{word-spacing:-104.706003px;}
.wsb{word-spacing:-77.414402px;}
.ws6{word-spacing:-64.568706px;}
.wsa{word-spacing:-58.170004px;}
.ws4{word-spacing:-56.508000px;}
.ws3{word-spacing:-48.198003px;}
.wsc{word-spacing:-40.951681px;}
.wse{word-spacing:-34.303662px;}
.ws5{word-spacing:-29.916001px;}
.wsd{word-spacing:-0.147840px;}
.ws1{word-spacing:0.000000px;}
.ws2{word-spacing:370.605837px;}
.ws7{word-spacing:1947.546611px;}
._4{margin-left:-46.080000px;}
._10{margin-left:-26.712001px;}
._5{margin-left:-22.560000px;}
._c{margin-left:-21.012000px;}
._e{margin-left:-18.642000px;}
._d{margin-left:-17.166000px;}
._f{margin-left:-13.338000px;}
._0{margin-left:-12.279601px;}
._6{margin-left:-11.040000px;}
._11{margin-left:-9.692193px;}
._3{margin-left:-8.640000px;}
._8{margin-left:-7.308000px;}
._1{margin-left:-5.912401px;}
._a{margin-left:-4.002000px;}
._b{margin-left:-2.502214px;}
._2{margin-left:-1.432200px;}
._9{width:2.088000px;}
._7{width:3.809333px;}
.fc4{color:transparent;}
.fc2{color:rgb(63,84,208);}
.fc5{color:rgb(51,51,51);}
.fc3{color:rgb(25,25,25);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:108.000003px;}
.fs16{font-size:123.839936px;}
.fs15{font-size:147.840003px;}
.fs6{font-size:174.000012px;}
.fs5{font-size:186.059994px;}
.fs7{font-size:192.000012px;}
.fs8{font-size:204.000001px;}
.fs2{font-size:204.599990px;}
.fs13{font-size:210.000013px;}
.fs1{font-size:227.400024px;}
.fsf{font-size:233.100021px;}
.fs14{font-size:240.000002px;}
.fs0{font-size:252.000008px;}
.fs4{font-size:276.059997px;}
.fsb{font-size:299.999998px;}
.fs12{font-size:302.400010px;}
.fsc{font-size:346.800008px;}
.fs10{font-size:378.000012px;}
.fs9{font-size:420.000025px;}
.fsa{font-size:432.000014px;}
.fs11{font-size:474.000027px;}
.fs3{font-size:480.000003px;}
.fse{font-size:504.000016px;}
.y0{bottom:0.000000px;}
.y12{bottom:30.295998px;}
.y11{bottom:105.895990px;}
.y26{bottom:184.536237px;}
.ya{bottom:209.393473px;}
.y3b{bottom:219.417954px;}
.y25{bottom:245.736228px;}
.y2{bottom:268.633556px;}
.y3a{bottom:292.844468px;}
.y24{bottom:306.936218px;}
.y10{bottom:315.084031px;}
.y1{bottom:344.233547px;}
.y18{bottom:352.940170px;}
.y9{bottom:353.393477px;}
.y47{bottom:356.636853px;}
.y1b{bottom:358.272783px;}
.y15{bottom:363.020159px;}
.y39{bottom:366.270970px;}
.y23{bottom:368.136209px;}
.yf{bottom:370.902022px;}
.y17{bottom:414.140161px;}
.y1a{bottom:419.472773px;}
.y14{bottom:420.620154px;}
.ye{bottom:426.720024px;}
.y51{bottom:426.862122px;}
.y22{bottom:429.336203px;}
.y38{bottom:439.697484px;}
.y3d{bottom:443.099518px;}
.y16{bottom:475.340155px;}
.y50{bottom:477.866901px;}
.y13{bottom:478.220151px;}
.y19{bottom:480.672767px;}
.yd{bottom:482.538025px;}
.y8{bottom:497.393482px;}
.y46{bottom:508.736835px;}
.y3f{bottom:511.739950px;}
.y37{bottom:513.123986px;}
.y2e{bottom:524.267989px;}
.y4f{bottom:528.871703px;}
.yc{bottom:538.356016px;}
.y4{bottom:545.481676px;}
.y1d{bottom:568.619991px;}
.y3c{bottom:573.509522px;}
.y20{bottom:576.287984px;}
.y4e{bottom:579.876471px;}
.y45{bottom:581.186837px;}
.y36{bottom:586.550500px;}
.y3{bottom:608.229678px;}
.y30{bottom:625.164169px;}
.yb{bottom:627.939802px;}
.y2d{bottom:628.307981px;}
.y4d{bottom:630.881261px;}
.y7{bottom:641.393487px;}
.y44{bottom:653.636828px;}
.y3e{bottom:653.939978px;}
.y35{bottom:659.977002px;}
.y4c{bottom:681.886029px;}
.y43{bottom:726.086808px;}
.y4b{bottom:732.890808px;}
.y34{bottom:733.403527px;}
.y2f{bottom:776.364162px;}
.y4a{bottom:783.895610px;}
.y6{bottom:785.393491px;}
.y42{bottom:798.536799px;}
.y33{bottom:806.830029px;}
.y49{bottom:834.900412px;}
.y41{bottom:870.986801px;}
.y32{bottom:880.256509px;}
.y48{bottom:885.905202px;}
.y5{bottom:929.393503px;}
.y2c{bottom:942.254991px;}
.y31{bottom:953.683005px;}
.y2b{bottom:985.994993px;}
.y1c{bottom:987.700976px;}
.y40{bottom:1015.924989px;}
.y2a{bottom:1029.734983px;}
.y1f{bottom:1049.551172px;}
.y1e{bottom:1049.552275px;}
.y29{bottom:1073.474984px;}
.y28{bottom:1117.214990px;}
.y21{bottom:1148.044132px;}
.y27{bottom:1160.954998px;}
.h10{height:78.943362px;}
.h19{height:108.064690px;}
.hf{height:127.186532px;}
.h6{height:135.547613px;}
.h9{height:140.343759px;}
.ha{height:149.115235px;}
.h17{height:153.500986px;}
.h3{height:153.859193px;}
.h12{height:170.386099px;}
.h2{height:171.004818px;}
.h18{height:175.429689px;}
.h1{height:183.462896px;}
.h7{height:189.504006px;}
.h5{height:200.979226px;}
.h8{height:218.615825px;}
.hd{height:225.599998px;}
.h16{height:227.404807px;}
.he{height:260.793606px;}
.h14{height:276.301767px;}
.hb{height:302.400018px;}
.hc{height:324.864010px;}
.h4{height:350.859377px;}
.h15{height:356.448020px;}
.h11{height:379.008012px;}
.h13{height:591.323107px;}
.h0{height:1215.000000px;}
.w0{width:2160.000000px;}
.x0{left:0.000000px;}
.x20{left:28.125001px;}
.x1d{left:39.422166px;}
.x21{left:61.125005px;}
.x2c{left:90.301799px;}
.x1b{left:95.004926px;}
.x22{left:100.161777px;}
.x1e{left:135.793667px;}
.x25{left:137.170096px;}
.x18{left:149.796354px;}
.x29{left:151.282102px;}
.x3{left:153.358576px;}
.x19{left:186.624382px;}
.xb{left:217.433516px;}
.x1a{left:227.718469px;}
.x1c{left:255.606722px;}
.x24{left:264.276436px;}
.x26{left:295.867089px;}
.xe{left:344.298184px;}
.xd{left:350.706820px;}
.xc{left:375.181268px;}
.x2{left:381.998870px;}
.x1{left:414.311481px;}
.x17{left:434.916295px;}
.x2a{left:442.027083px;}
.xa{left:549.140080px;}
.x16{left:579.677419px;}
.x10{left:719.428394px;}
.xf{left:738.750402px;}
.x23{left:743.008319px;}
.x11{left:770.273181px;}
.x1f{left:804.097488px;}
.x13{left:1128.969245px;}
.x12{left:1145.228599px;}
.x2b{left:1158.107743px;}
.x27{left:1179.989901px;}
.x8{left:1185.859302px;}
.x28{left:1242.186115px;}
.x7{left:1248.283997px;}
.x6{left:1260.411948px;}
.x4{left:1282.733794px;}
.x9{left:1359.747854px;}
.x5{left:1411.598183px;}
.x15{left:1593.710848px;}
.x14{left:1663.255088px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:81.270483pt;}
.v2{vertical-align:280.018969pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:95.975561pt;}
.ls4{letter-spacing:95.977363pt;}
.ls1{letter-spacing:95.993284pt;}
.ls2{letter-spacing:96.001315pt;}
.ws0{word-spacing:-118.186667pt;}
.ws9{word-spacing:-107.861340pt;}
.ws8{word-spacing:-93.072003pt;}
.wsb{word-spacing:-68.812802pt;}
.ws6{word-spacing:-57.394405pt;}
.wsa{word-spacing:-51.706670pt;}
.ws4{word-spacing:-50.229333pt;}
.ws3{word-spacing:-42.842670pt;}
.wsc{word-spacing:-36.401494pt;}
.wse{word-spacing:-30.492144pt;}
.ws5{word-spacing:-26.592001pt;}
.wsd{word-spacing:-0.131413pt;}
.ws1{word-spacing:0.000000pt;}
.ws2{word-spacing:329.427411pt;}
.ws7{word-spacing:1731.152543pt;}
._4{margin-left:-40.960000pt;}
._10{margin-left:-23.744001pt;}
._5{margin-left:-20.053333pt;}
._c{margin-left:-18.677333pt;}
._e{margin-left:-16.570666pt;}
._d{margin-left:-15.258667pt;}
._f{margin-left:-11.856000pt;}
._0{margin-left:-10.915201pt;}
._6{margin-left:-9.813333pt;}
._11{margin-left:-8.615283pt;}
._3{margin-left:-7.680000pt;}
._8{margin-left:-6.496000pt;}
._1{margin-left:-5.255467pt;}
._a{margin-left:-3.557334pt;}
._b{margin-left:-2.224190pt;}
._2{margin-left:-1.273067pt;}
._9{width:1.856000pt;}
._7{width:3.386073pt;}
.fsd{font-size:96.000003pt;}
.fs16{font-size:110.079944pt;}
.fs15{font-size:131.413336pt;}
.fs6{font-size:154.666677pt;}
.fs5{font-size:165.386661pt;}
.fs7{font-size:170.666677pt;}
.fs8{font-size:181.333334pt;}
.fs2{font-size:181.866658pt;}
.fs13{font-size:186.666678pt;}
.fs1{font-size:202.133354pt;}
.fsf{font-size:207.200019pt;}
.fs14{font-size:213.333335pt;}
.fs0{font-size:224.000007pt;}
.fs4{font-size:245.386664pt;}
.fsb{font-size:266.666665pt;}
.fs12{font-size:268.800009pt;}
.fsc{font-size:308.266674pt;}
.fs10{font-size:336.000011pt;}
.fs9{font-size:373.333356pt;}
.fsa{font-size:384.000012pt;}
.fs11{font-size:421.333357pt;}
.fs3{font-size:426.666670pt;}
.fse{font-size:448.000014pt;}
.y0{bottom:0.000000pt;}
.y12{bottom:26.929776pt;}
.y11{bottom:94.129768pt;}
.y26{bottom:164.032211pt;}
.ya{bottom:186.127531pt;}
.y3b{bottom:195.038182pt;}
.y25{bottom:218.432202pt;}
.y2{bottom:238.785383pt;}
.y3a{bottom:260.306194pt;}
.y24{bottom:272.832194pt;}
.y10{bottom:280.074694pt;}
.y1{bottom:305.985375pt;}
.y18{bottom:313.724595pt;}
.y9{bottom:314.127535pt;}
.y47{bottom:317.010536pt;}
.y1b{bottom:318.464696pt;}
.y15{bottom:322.684586pt;}
.y39{bottom:325.574196pt;}
.y23{bottom:327.232186pt;}
.yf{bottom:329.690686pt;}
.y17{bottom:368.124587pt;}
.y1a{bottom:372.864687pt;}
.y14{bottom:373.884581pt;}
.ye{bottom:379.306688pt;}
.y51{bottom:379.432998pt;}
.y22{bottom:381.632181pt;}
.y38{bottom:390.842208pt;}
.y3d{bottom:393.866238pt;}
.y16{bottom:422.524582pt;}
.y50{bottom:424.770579pt;}
.y13{bottom:425.084579pt;}
.y19{bottom:427.264682pt;}
.yd{bottom:428.922689pt;}
.y8{bottom:442.127540pt;}
.y46{bottom:452.210520pt;}
.y3f{bottom:454.879956pt;}
.y37{bottom:456.110210pt;}
.y2e{bottom:466.015990pt;}
.y4f{bottom:470.108180pt;}
.yc{bottom:478.538681pt;}
.y4{bottom:484.872601pt;}
.y1d{bottom:505.439992pt;}
.y3c{bottom:509.786242pt;}
.y20{bottom:512.255986pt;}
.y4e{bottom:515.445752pt;}
.y45{bottom:516.610522pt;}
.y36{bottom:521.378222pt;}
.y3{bottom:540.648603pt;}
.y30{bottom:555.701483pt;}
.yb{bottom:558.168713pt;}
.y2d{bottom:558.495983pt;}
.y4d{bottom:560.783343pt;}
.y7{bottom:570.127544pt;}
.y44{bottom:581.010514pt;}
.y3e{bottom:581.279980pt;}
.y35{bottom:586.646224pt;}
.y4c{bottom:606.120915pt;}
.y43{bottom:645.410496pt;}
.y4b{bottom:651.458496pt;}
.y34{bottom:651.914246pt;}
.y2f{bottom:690.101478pt;}
.y4a{bottom:696.796098pt;}
.y6{bottom:698.127548pt;}
.y42{bottom:709.810488pt;}
.y33{bottom:717.182248pt;}
.y49{bottom:742.133699pt;}
.y41{bottom:774.210490pt;}
.y32{bottom:782.450230pt;}
.y48{bottom:787.471291pt;}
.y5{bottom:826.127558pt;}
.y2c{bottom:837.559992pt;}
.y31{bottom:847.718227pt;}
.y2b{bottom:876.439993pt;}
.y1c{bottom:877.956424pt;}
.y40{bottom:903.044434pt;}
.y2a{bottom:915.319985pt;}
.y1f{bottom:932.934375pt;}
.y1e{bottom:932.935355pt;}
.y29{bottom:954.199986pt;}
.y28{bottom:993.079991pt;}
.y21{bottom:1020.483673pt;}
.y27{bottom:1031.959998pt;}
.h10{height:70.171877pt;}
.h19{height:96.057502pt;}
.hf{height:113.054695pt;}
.h6{height:120.486767pt;}
.h9{height:124.750008pt;}
.ha{height:132.546875pt;}
.h17{height:136.445321pt;}
.h3{height:136.763727pt;}
.h12{height:151.454310pt;}
.h2{height:152.004283pt;}
.h18{height:155.937501pt;}
.h1{height:163.078130pt;}
.h7{height:168.448005pt;}
.h5{height:178.648201pt;}
.h8{height:194.325178pt;}
.hd{height:200.533332pt;}
.h16{height:202.137606pt;}
.he{height:231.816539pt;}
.h14{height:245.601570pt;}
.hb{height:268.800016pt;}
.hc{height:288.768009pt;}
.h4{height:311.875002pt;}
.h15{height:316.842685pt;}
.h11{height:336.896011pt;}
.h13{height:525.620539pt;}
.h0{height:1080.000000pt;}
.w0{width:1920.000000pt;}
.x0{left:0.000000pt;}
.x20{left:25.000001pt;}
.x1d{left:35.041925pt;}
.x21{left:54.333338pt;}
.x2c{left:80.268266pt;}
.x1b{left:84.448823pt;}
.x22{left:89.032691pt;}
.x1e{left:120.705482pt;}
.x25{left:121.928974pt;}
.x18{left:133.152314pt;}
.x29{left:134.472979pt;}
.x3{left:136.318734pt;}
.x19{left:165.888339pt;}
.xb{left:193.274236pt;}
.x1a{left:202.416416pt;}
.x1c{left:227.205975pt;}
.x24{left:234.912388pt;}
.x26{left:262.992968pt;}
.xe{left:306.042830pt;}
.xd{left:311.739396pt;}
.xc{left:333.494461pt;}
.x2{left:339.554551pt;}
.x1{left:368.276872pt;}
.x17{left:386.592262pt;}
.x2a{left:392.912963pt;}
.xa{left:488.124516pt;}
.x16{left:515.268816pt;}
.x10{left:639.491905pt;}
.xf{left:656.667024pt;}
.x23{left:660.451839pt;}
.x11{left:684.687272pt;}
.x1f{left:714.753323pt;}
.x13{left:1003.528218pt;}
.x12{left:1017.980977pt;}
.x2b{left:1029.429105pt;}
.x27{left:1048.879912pt;}
.x8{left:1054.097158pt;}
.x28{left:1104.165435pt;}
.x7{left:1109.585776pt;}
.x6{left:1120.366176pt;}
.x4{left:1140.207816pt;}
.x9{left:1208.664759pt;}
.x5{left:1254.753940pt;}
.x15{left:1416.631865pt;}
.x14{left:1478.448967pt;}
}




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