
    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_72f02ef05ff5af6648b65f1d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.041000;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_9073f35725632dcc63b210b1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.971500;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_04cd52c63d2d26a55480e970.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.927000;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_94b7b930a5bb6ffe196243b2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.731000;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_42c4c9cbfec0e111d8489ece.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.969000;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_eaac089fb1162233df62b611.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942000;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_d0a2cd2c4af1b5963de51c14.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.180117;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_2a9342b5d9bd1cd832f4c14d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.942000;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_5a84cc221c6f7691fd5656ce.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.958000;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-131.275941px;}
.ws5{word-spacing:-46.081453px;}
.ws0{word-spacing:-41.581312px;}
.ws3{word-spacing:-40.861289px;}
.ws4{word-spacing:-30.713289px;}
.ws6{word-spacing:0.000000px;}
.ws2{word-spacing:2363.708105px;}
._6{margin-left:-16.229457px;}
._7{margin-left:-15.004590px;}
._5{margin-left:-12.906317px;}
._18{margin-left:-11.815675px;}
._8{margin-left:-10.809455px;}
._d{margin-left:-9.605663px;}
._a{margin-left:-7.532676px;}
._9{margin-left:-6.006874px;}
._4{margin-left:-4.860269px;}
._13{margin-left:-3.735746px;}
._0{margin-left:-2.701701px;}
._1{margin-left:-1.439190px;}
._10{width:1.577991px;}
._3{width:2.701752px;}
._11{width:3.732958px;}
._17{width:6.663575px;}
._23{width:7.845746px;}
._16{width:9.008429px;}
._b{width:10.776551px;}
._12{width:13.860505px;}
._1e{width:15.163992px;}
._1d{width:16.192952px;}
._19{width:26.095198px;}
._1a{width:27.273625px;}
._1c{width:33.509056px;}
._1b{width:34.603283px;}
._e{width:64.963893px;}
._14{width:66.859482px;}
._15{width:67.862552px;}
._20{width:71.550159px;}
._22{width:73.361900px;}
._21{width:82.854295px;}
._1f{width:118.495187px;}
._25{width:178.742825px;}
._c{width:247.352544px;}
._24{width:278.730354px;}
._f{width:2667.029955px;}
._2{width:5781.355887px;}
.fc3{color:transparent;}
.fc1{color:rgb(255,146,0);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:108.003407px;}
.fs7{font-size:119.973784px;}
.fs0{font-size:180.005678px;}
.fs1{font-size:239.992579px;}
.fs3{font-size:299.979480px;}
.fs6{font-size:389.982319px;}
.fs2{font-size:600.003934px;}
.fs4{font-size:659.990835px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000119px;}
.y11{bottom:69.752217px;}
.y1e{bottom:125.027027px;}
.y1d{bottom:179.028730px;}
.y34{bottom:413.379781px;}
.y45{bottom:416.754887px;}
.y41{bottom:439.812942px;}
.y33{bottom:449.380916px;}
.y44{bottom:470.756591px;}
.y40{bottom:475.814077px;}
.y32{bottom:485.382052px;}
.y3f{bottom:511.815213px;}
.y3e{bottom:547.816348px;}
.y43{bottom:548.995122px;}
.y3d{bottom:583.817484px;}
.y42{bottom:602.996825px;}
.y3c{bottom:619.818619px;}
.y3b{bottom:655.819755px;}
.y3a{bottom:691.820890px;}
.y39{bottom:727.822026px;}
.y51{bottom:737.351155px;}
.y50{bottom:791.352858px;}
.y38{bottom:803.400324px;}
.y37{bottom:839.401459px;}
.y4f{bottom:845.354561px;}
.y36{bottom:875.402595px;}
.y4e{bottom:899.356265px;}
.y35{bottom:911.403730px;}
.y4d{bottom:1045.595468px;}
.y4c{bottom:1099.597171px;}
.y4b{bottom:1153.598874px;}
.y4a{bottom:1299.838495px;}
.y49{bottom:1353.840199px;}
.y48{bottom:1407.841902px;}
.y47{bottom:1461.843605px;}
.y46{bottom:1563.709819px;}
.y61{bottom:1919.250316px;}
.y5{bottom:1919.250379px;}
.y2f{bottom:1923.324040px;}
.y9{bottom:1923.324162px;}
.y60{bottom:1973.252019px;}
.y4{bottom:1973.252082px;}
.y2e{bottom:1977.325743px;}
.y8{bottom:1977.325865px;}
.y5f{bottom:2027.253723px;}
.y3{bottom:2027.253786px;}
.y2d{bottom:2031.327447px;}
.y7{bottom:2031.327568px;}
.y5e{bottom:2081.255426px;}
.y2c{bottom:2085.329150px;}
.y6{bottom:2085.329271px;}
.y5d{bottom:2135.257129px;}
.y2b{bottom:2139.330853px;}
.y10{bottom:2142.211130px;}
.y53{bottom:2225.259867px;}
.yc{bottom:2249.033765px;}
.y2a{bottom:2261.122178px;}
.yf{bottom:2276.034628px;}
.yb{bottom:2303.035469px;}
.y29{bottom:2315.123881px;}
.y5c{bottom:2325.388093px;}
.ye{bottom:2330.036332px;}
.ya{bottom:2357.037172px;}
.y28{bottom:2369.125584px;}
.y5b{bottom:2379.389796px;}
.yd{bottom:2384.038035px;}
.y27{bottom:2423.127288px;}
.y5a{bottom:2433.391499px;}
.y26{bottom:2477.128991px;}
.y59{bottom:2487.393203px;}
.y31{bottom:2524.667480px;}
.y58{bottom:2571.919057px;}
.y30{bottom:2578.669183px;}
.y25{bottom:2598.919978px;}
.y57{bottom:2625.920760px;}
.y24{bottom:2652.921682px;}
.y56{bottom:2679.922464px;}
.y23{bottom:2706.923385px;}
.y55{bottom:2733.924167px;}
.y22{bottom:2760.925088px;}
.y54{bottom:2787.925870px;}
.y21{bottom:2814.926791px;}
.y20{bottom:2868.928495px;}
.y52{bottom:2877.632220px;}
.y1c{bottom:3378.644686px;}
.y16{bottom:3408.960193px;}
.y1b{bottom:3485.523057px;}
.y1f{bottom:3806.038227px;}
.y19{bottom:3880.290600px;}
.y1a{bottom:3899.416203px;}
.y17{bottom:3954.842241px;}
.y18{bottom:3973.967844px;}
.y14{bottom:4054.220324px;}
.y15{bottom:4086.846353px;}
.y13{bottom:4266.436347px;}
.y12{bottom:4445.316989px;}
.y2{bottom:4905.872565px;}
.hc{height:90.938868px;}
.hf{height:93.039670px;}
.ha{height:133.744218px;}
.h5{height:134.734250px;}
.he{height:139.594403px;}
.h4{height:142.744502px;}
.h3{height:151.564781px;}
.h7{height:173.514634px;}
.h6{height:184.505792px;}
.h10{height:190.314115px;}
.h9{height:222.884753px;}
.hd{height:314.362310px;}
.h8{height:444.002911px;}
.hb{height:532.014487px;}
.h2{height:5055.749789px;}
.h0{height:5055.749908px;}
.h1{height:5055.750000px;}
.w3{width:184.505792px;}
.w2{width:3576.374851px;}
.w0{width:3576.375000px;}
.w1{width:3576.750000px;}
.x0{left:0.000000px;}
.x10{left:4.447361px;}
.x1{left:226.122377px;}
.x21{left:283.031596px;}
.x1e{left:284.683992px;}
.x1c{left:292.436189px;}
.x32{left:295.881610px;}
.x26{left:297.182434px;}
.x1b{left:303.581072px;}
.x1d{left:306.446397px;}
.x24{left:315.868570px;}
.x1a{left:320.122609px;}
.x22{left:334.414076px;}
.x34{left:337.244244px;}
.x36{left:340.425984px;}
.x37{left:342.060801px;}
.x25{left:345.664432px;}
.x20{left:349.566898px;}
.x31{left:429.567468px;}
.x35{left:440.009205px;}
.x23{left:456.251903px;}
.x15{left:471.721225px;}
.x16{left:481.266448px;}
.x17{left:486.926782px;}
.x12{left:489.450995px;}
.x2f{left:491.532398px;}
.x33{left:535.953636px;}
.x1f{left:568.474193px;}
.x13{left:580.877713px;}
.x30{left:587.810825px;}
.x38{left:627.380353px;}
.x11{left:666.978085px;}
.x2d{left:1345.653916px;}
.x27{left:1348.941129px;}
.x2{left:1356.095652px;}
.x28{left:1359.084027px;}
.x9{left:1362.757971px;}
.x3{left:1369.455448px;}
.xa{left:1390.479549px;}
.xb{left:1396.262934px;}
.x4{left:1422.173908px;}
.x2a{left:1563.904044px;}
.x2b{left:1576.261856px;}
.x14{left:1631.572957px;}
.x29{left:1650.257274px;}
.xf{left:1695.948517px;}
.x6{left:1927.098807px;}
.x18{left:1939.246269px;}
.x2e{left:1942.233831px;}
.xd{left:1944.220222px;}
.xc{left:1954.661957px;}
.x8{left:1957.984547px;}
.x5{left:1982.999008px;}
.xe{left:1984.528134px;}
.x7{left:2002.950809px;}
.x19{left:2313.109629px;}
.x2c{left:2409.199172px;}
.x46{left:2410.693359px;}
.x3f{left:2412.152390px;}
.x43{left:2423.543374px;}
.x3d{left:2443.161180px;}
.x40{left:2444.462003px;}
.x45{left:2455.642043px;}
.x3e{left:2462.146154px;}
.x44{left:2466.523245px;}
.x47{left:2468.755738px;}
.x39{left:2478.424011px;}
.x3b{left:2493.629569px;}
.x3a{left:2544.951753px;}
.x41{left:2601.545082px;}
.x3c{left:2623.307487px;}
.x42{left:2752.493208px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-116.689725pt;}
.ws5{word-spacing:-40.961292pt;}
.ws0{word-spacing:-36.961166pt;}
.ws3{word-spacing:-36.321146pt;}
.ws4{word-spacing:-27.300701pt;}
.ws6{word-spacing:0.000000pt;}
.ws2{word-spacing:2101.073871pt;}
._6{margin-left:-14.426184pt;}
._7{margin-left:-13.337413pt;}
._5{margin-left:-11.472282pt;}
._18{margin-left:-10.502822pt;}
._8{margin-left:-9.608404pt;}
._d{margin-left:-8.538367pt;}
._a{margin-left:-6.695712pt;}
._9{margin-left:-5.339443pt;}
._4{margin-left:-4.320239pt;}
._13{margin-left:-3.320663pt;}
._0{margin-left:-2.401512pt;}
._1{margin-left:-1.279280pt;}
._10{width:1.402659pt;}
._3{width:2.401557pt;}
._11{width:3.318185pt;}
._17{width:5.923178pt;}
._23{width:6.973997pt;}
._16{width:8.007492pt;}
._b{width:9.579157pt;}
._12{width:12.320449pt;}
._1e{width:13.479104pt;}
._1d{width:14.393735pt;}
._19{width:23.195731pt;}
._1a{width:24.243223pt;}
._1c{width:29.785828pt;}
._1b{width:30.758474pt;}
._e{width:57.745683pt;}
._14{width:59.430651pt;}
._15{width:60.322268pt;}
._20{width:63.600142pt;}
._22{width:65.210578pt;}
._21{width:73.648263pt;}
._1f{width:105.329055pt;}
._25{width:158.882511pt;}
._c{width:219.868928pt;}
._24{width:247.760315pt;}
._f{width:2370.693293pt;}
._2{width:5138.983011pt;}
.fs5{font-size:96.003028pt;}
.fs7{font-size:106.643364pt;}
.fs0{font-size:160.005047pt;}
.fs1{font-size:213.326737pt;}
.fs3{font-size:266.648426pt;}
.fs6{font-size:346.650950pt;}
.fs2{font-size:533.336830pt;}
.fs4{font-size:586.658520pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000106pt;}
.y11{bottom:62.001971pt;}
.y1e{bottom:111.135135pt;}
.y1d{bottom:159.136649pt;}
.y34{bottom:367.448694pt;}
.y45{bottom:370.448789pt;}
.y41{bottom:390.944837pt;}
.y33{bottom:399.449703pt;}
.y44{bottom:418.450303pt;}
.y40{bottom:422.945846pt;}
.y32{bottom:431.450713pt;}
.y3f{bottom:454.946856pt;}
.y3e{bottom:486.947865pt;}
.y43{bottom:487.995664pt;}
.y3d{bottom:518.948874pt;}
.y42{bottom:535.997178pt;}
.y3c{bottom:550.949884pt;}
.y3b{bottom:582.950893pt;}
.y3a{bottom:614.951903pt;}
.y39{bottom:646.952912pt;}
.y51{bottom:655.423249pt;}
.y50{bottom:703.424763pt;}
.y38{bottom:714.133621pt;}
.y37{bottom:746.134630pt;}
.y4f{bottom:751.426277pt;}
.y36{bottom:778.135640pt;}
.y4e{bottom:799.427791pt;}
.y35{bottom:810.136649pt;}
.y4d{bottom:929.418193pt;}
.y4c{bottom:977.419707pt;}
.y4b{bottom:1025.421221pt;}
.y4a{bottom:1155.411996pt;}
.y49{bottom:1203.413510pt;}
.y48{bottom:1251.415024pt;}
.y47{bottom:1299.416538pt;}
.y46{bottom:1389.964283pt;}
.y61{bottom:1706.000281pt;}
.y5{bottom:1706.000337pt;}
.y2f{bottom:1709.621369pt;}
.y9{bottom:1709.621477pt;}
.y60{bottom:1754.001795pt;}
.y4{bottom:1754.001851pt;}
.y2e{bottom:1757.622883pt;}
.y8{bottom:1757.622991pt;}
.y5f{bottom:1802.003309pt;}
.y3{bottom:1802.003365pt;}
.y2d{bottom:1805.624397pt;}
.y7{bottom:1805.624505pt;}
.y5e{bottom:1850.004823pt;}
.y2c{bottom:1853.625911pt;}
.y6{bottom:1853.626019pt;}
.y5d{bottom:1898.006337pt;}
.y2b{bottom:1901.627425pt;}
.y10{bottom:1904.187671pt;}
.y53{bottom:1978.008771pt;}
.yc{bottom:1999.141125pt;}
.y2a{bottom:2009.886380pt;}
.yf{bottom:2023.141892pt;}
.yb{bottom:2047.142639pt;}
.y29{bottom:2057.887894pt;}
.y5c{bottom:2067.011638pt;}
.ye{bottom:2071.143406pt;}
.ya{bottom:2095.144153pt;}
.y28{bottom:2105.889408pt;}
.y5b{bottom:2115.013152pt;}
.yd{bottom:2119.144920pt;}
.y27{bottom:2153.890922pt;}
.y5a{bottom:2163.014666pt;}
.y26{bottom:2201.892436pt;}
.y59{bottom:2211.016180pt;}
.y31{bottom:2244.148871pt;}
.y58{bottom:2286.150273pt;}
.y30{bottom:2292.150385pt;}
.y25{bottom:2310.151092pt;}
.y57{bottom:2334.151787pt;}
.y24{bottom:2358.152606pt;}
.y56{bottom:2382.153301pt;}
.y23{bottom:2406.154120pt;}
.y55{bottom:2430.154815pt;}
.y22{bottom:2454.155634pt;}
.y54{bottom:2478.156329pt;}
.y21{bottom:2502.157148pt;}
.y20{bottom:2550.158662pt;}
.y52{bottom:2557.895307pt;}
.y1c{bottom:3003.239721pt;}
.y16{bottom:3030.186838pt;}
.y1b{bottom:3098.242717pt;}
.y1f{bottom:3383.145090pt;}
.y19{bottom:3449.147200pt;}
.y1a{bottom:3466.147736pt;}
.y17{bottom:3515.415325pt;}
.y18{bottom:3532.415861pt;}
.y14{bottom:3603.751399pt;}
.y15{bottom:3632.752314pt;}
.y13{bottom:3792.387864pt;}
.y12{bottom:3951.392879pt;}
.y2{bottom:4360.775613pt;}
.hc{height:80.834550pt;}
.hf{height:82.701929pt;}
.ha{height:118.883750pt;}
.h5{height:119.763778pt;}
.he{height:124.083914pt;}
.h4{height:126.884002pt;}
.h3{height:134.724249pt;}
.h7{height:154.235231pt;}
.h6{height:164.005148pt;}
.h10{height:169.168102pt;}
.h9{height:198.119781pt;}
.hd{height:279.433164pt;}
.h8{height:394.669254pt;}
.hb{height:472.901766pt;}
.h2{height:4493.999813pt;}
.h0{height:4493.999919pt;}
.h1{height:4494.000000pt;}
.w3{width:164.005148pt;}
.w2{width:3178.999868pt;}
.w0{width:3179.000000pt;}
.w1{width:3179.333333pt;}
.x0{left:0.000000pt;}
.x10{left:3.953210pt;}
.x1{left:200.997668pt;}
.x21{left:251.583641pt;}
.x1e{left:253.052437pt;}
.x1c{left:259.943279pt;}
.x32{left:263.005876pt;}
.x26{left:264.162164pt;}
.x1b{left:269.849842pt;}
.x1d{left:272.396797pt;}
.x24{left:280.772062pt;}
.x1a{left:284.553431pt;}
.x22{left:297.256956pt;}
.x34{left:299.772662pt;}
.x36{left:302.600875pt;}
.x37{left:304.054046pt;}
.x25{left:307.257273pt;}
.x20{left:310.726131pt;}
.x31{left:381.837749pt;}
.x35{left:391.119293pt;}
.x23{left:405.557247pt;}
.x15{left:419.307755pt;}
.x16{left:427.792398pt;}
.x17{left:432.823807pt;}
.x12{left:435.067551pt;}
.x2f{left:436.917687pt;}
.x33{left:476.403232pt;}
.x1f{left:505.310394pt;}
.x13{left:516.335745pt;}
.x30{left:522.498511pt;}
.x38{left:557.671425pt;}
.x11{left:592.869409pt;}
.x2d{left:1196.136814pt;}
.x27{left:1199.058781pt;}
.x2{left:1205.418357pt;}
.x28{left:1208.074691pt;}
.x9{left:1211.340419pt;}
.x3{left:1217.293731pt;}
.xa{left:1235.981821pt;}
.xb{left:1241.122608pt;}
.x4{left:1264.154585pt;}
.x2a{left:1390.136928pt;}
.x2b{left:1401.121650pt;}
.x14{left:1450.287073pt;}
.x29{left:1466.895354pt;}
.xf{left:1507.509793pt;}
.x6{left:1712.976717pt;}
.x18{left:1723.774461pt;}
.x2e{left:1726.430072pt;}
.xd{left:1728.195753pt;}
.xc{left:1737.477296pt;}
.x8{left:1740.430708pt;}
.x5{left:1762.665785pt;}
.xe{left:1764.025008pt;}
.x7{left:1780.400719pt;}
.x19{left:2056.097448pt;}
.x2c{left:2141.510375pt;}
.x46{left:2142.838542pt;}
.x3f{left:2144.135458pt;}
.x43{left:2154.260777pt;}
.x3d{left:2171.698827pt;}
.x40{left:2172.855113pt;}
.x45{left:2182.792927pt;}
.x3e{left:2188.574359pt;}
.x44{left:2192.465107pt;}
.x47{left:2194.449545pt;}
.x39{left:2203.043566pt;}
.x3b{left:2216.559617pt;}
.x3a{left:2262.179336pt;}
.x41{left:2312.484518pt;}
.x3c{left:2331.828878pt;}
.x42{left:2446.660630pt;}
}




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