
    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_a50be1bc1be69c1666220964.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.697000;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_11dd38188174f37cc9d2bfde.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938000;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_ab331bf224c33b25b26ba775.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.953000;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_4c9d078253676ab8ca950eb3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.980000;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_cfd320083d4303d7d546a411.woff2')format("woff");}.ff5{font-family:ff5;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.249832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249832,0.000000,0.000000,0.250000,0,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);}
.m2{transform:matrix(0.295077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295077,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.295078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295078,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.295078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295078,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-10.479600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:10.798800px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:235.930953px;}
.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;}
}
.ws6{word-spacing:-66.150000px;}
.ws7{word-spacing:-64.800000px;}
.ws1{word-spacing:-57.960000px;}
.ws8{word-spacing:-46.920000px;}
.ws0{word-spacing:-41.400000px;}
.ws4{word-spacing:-40.020000px;}
.ws2{word-spacing:-28.980000px;}
.ws5{word-spacing:-20.994525px;}
.ws9{word-spacing:0.000000px;}
.ws3{word-spacing:3410.472000px;}
._b{margin-left:-5740.800000px;}
._c{margin-left:-3649.380000px;}
._8{margin-left:-14.280000px;}
._4{margin-left:-11.760000px;}
._9{margin-left:-10.080000px;}
._11{margin-left:-9.000000px;}
._12{margin-left:-7.920000px;}
._7{margin-left:-6.300000px;}
._6{margin-left:-4.440000px;}
._3{margin-left:-2.940000px;}
._2{margin-left:-1.260000px;}
._13{width:1.260000px;}
._10{width:2.700000px;}
._5{width:3.990000px;}
._14{width:6.480000px;}
._0{width:84.043440px;}
._a{width:467.040000px;}
._e{width:1390.560000px;}
._f{width:1443.300000px;}
._d{width:1484.340000px;}
._1{width:2917.932360px;}
.fce{color:transparent;}
.fcd{color:rgb(74,78,84);}
.fc0{color:rgb(113,194,45);}
.fc1{color:rgb(26,50,81);}
.fc2{color:rgb(224,242,201);}
.fc6{color:rgb(255,255,255);}
.fc4{color:rgb(88,192,55);}
.fc5{color:rgb(63,92,163);}
.fc8{color:rgb(128,136,53);}
.fc3{color:rgb(35,31,32);}
.fc7{color:rgb(66,133,144);}
.fc9{color:rgb(153,156,155);}
.fca{color:rgb(105,109,111);}
.fcb{color:rgb(38,87,40);}
.fcc{color:rgb(86,90,91);}
.fse{font-size:93.309000px;}
.fsa{font-size:126.000000px;}
.fs7{font-size:146.590200px;}
.fsc{font-size:165.318000px;}
.fsd{font-size:174.000000px;}
.fs9{font-size:180.000000px;}
.fs1{font-size:191.880000px;}
.fs13{font-size:204.000000px;}
.fs2{font-size:216.000000px;}
.fsf{font-size:228.000000px;}
.fs11{font-size:232.861200px;}
.fs3{font-size:252.000000px;}
.fs4{font-size:264.000000px;}
.fs5{font-size:288.000000px;}
.fs8{font-size:294.000000px;}
.fsb{font-size:312.000000px;}
.fs0{font-size:324.000000px;}
.fs10{font-size:360.000000px;}
.fs6{font-size:372.000000px;}
.fs12{font-size:444.000000px;}
.y0{bottom:0.000000px;}
.y8{bottom:16.260150px;}
.y2a{bottom:85.703550px;}
.y29{bottom:90.750000px;}
.y55{bottom:276.562950px;}
.y54{bottom:351.583950px;}
.y53{bottom:426.604950px;}
.y25{bottom:505.492650px;}
.y56{bottom:519.679650px;}
.y57{bottom:522.298800px;}
.y10{bottom:557.997000px;}
.y5d{bottom:690.601800px;}
.y5c{bottom:765.622800px;}
.y5b{bottom:840.643800px;}
.y5a{bottom:915.664800px;}
.yc{bottom:985.403250px;}
.y59{bottom:990.685800px;}
.y58{bottom:1065.706800px;}
.y13{bottom:1127.192850px;}
.y5e{bottom:1167.404250px;}
.y5f{bottom:1170.020550px;}
.y12{bottom:1181.192850px;}
.ya{bottom:1186.829550px;}
.y64{bottom:1226.988300px;}
.y11{bottom:1235.192850px;}
.y15{bottom:1341.957750px;}
.y50{bottom:1346.582550px;}
.y14{bottom:1391.553150px;}
.y4f{bottom:1421.603550px;}
.y4e{bottom:1496.624550px;}
.yb{bottom:1556.153250px;}
.y4d{bottom:1571.645550px;}
.y51{bottom:1665.420450px;}
.y63{bottom:1702.291950px;}
.y4a{bottom:1789.614000px;}
.y49{bottom:1864.635000px;}
.y62{bottom:1864.807650px;}
.y48{bottom:1939.656000px;}
.y47{bottom:2014.677000px;}
.y21{bottom:2021.800800px;}
.y20{bottom:2075.800800px;}
.y46{bottom:2089.698000px;}
.y45{bottom:2164.719000px;}
.y28{bottom:2222.264700px;}
.y44{bottom:2239.740000px;}
.y27{bottom:2276.264700px;}
.y43{bottom:2314.761000px;}
.y26{bottom:2330.264700px;}
.y42{bottom:2389.782000px;}
.y24{bottom:2438.322900px;}
.y4c{bottom:2488.117650px;}
.y4b{bottom:2490.735300px;}
.y23{bottom:2526.522900px;}
.y3e{bottom:2610.528750px;}
.y61{bottom:2634.426300px;}
.y3d{bottom:2685.549750px;}
.y3c{bottom:2760.570750px;}
.y3b{bottom:2835.591750px;}
.y3f{bottom:2925.818100px;}
.y40{bottom:2928.439500px;}
.y39{bottom:3052.344900px;}
.y7{bottom:3107.544000px;}
.y38{bottom:3127.365900px;}
.y37{bottom:3202.386900px;}
.y1f{bottom:3204.556650px;}
.y22{bottom:3210.830550px;}
.y60{bottom:3251.062500px;}
.y9{bottom:3257.310750px;}
.y1e{bottom:3258.556650px;}
.y36{bottom:3277.407900px;}
.y35{bottom:3352.428900px;}
.y3a{bottom:3450.458550px;}
.y41{bottom:3453.076200px;}
.y34{bottom:3639.064200px;}
.y52{bottom:3645.648900px;}
.y33{bottom:3714.085200px;}
.y1d{bottom:3760.998600px;}
.y32{bottom:3789.106200px;}
.y31{bottom:3864.127200px;}
.y1c{bottom:3879.663600px;}
.y30{bottom:3939.148200px;}
.y2f{bottom:4014.169200px;}
.y2e{bottom:4089.190200px;}
.yf{bottom:4140.332850px;}
.y18{bottom:4160.416950px;}
.y2d{bottom:4164.211200px;}
.ye{bottom:4178.132850px;}
.y17{bottom:4221.616650px;}
.yd{bottom:4226.732700px;}
.y16{bottom:4231.549800px;}
.y2c{bottom:4239.232200px;}
.y1b{bottom:4244.506050px;}
.y1a{bottom:4272.498750px;}
.y19{bottom:4276.992150px;}
.y2b{bottom:4338.719250px;}
.y4{bottom:4516.316850px;}
.y2{bottom:4610.709300px;}
.y6{bottom:4664.184600px;}
.y5{bottom:4775.784600px;}
.y1{bottom:4965.849600px;}
.y3{bottom:4968.864300px;}
.h7{height:0.000000px;}
.h14{height:68.768733px;}
.hd{height:92.106000px;}
.hc{height:97.272000px;}
.h8{height:102.173369px;}
.h10{height:127.625496px;}
.hf{height:131.580000px;}
.h15{height:132.660000px;}
.h11{height:134.328000px;}
.ha{height:138.960000px;}
.h1b{height:157.488000px;}
.h16{height:168.036000px;}
.h3{height:168.694800px;}
.h18{height:179.768846px;}
.h12{height:184.212000px;}
.h4{height:185.724000px;}
.hb{height:194.544000px;}
.h5{height:210.528000px;}
.h13{height:212.256000px;}
.h9{height:216.678000px;}
.h1c{height:222.336000px;}
.h2{height:225.828000px;}
.he{height:229.944000px;}
.h17{height:263.160000px;}
.h1d{height:271.350399px;}
.h6{height:274.164000px;}
.h1a{height:327.228000px;}
.h19{height:3846.756450px;}
.h0{height:5055.585000px;}
.h1{height:5055.750000px;}
.w3{width:127.315500px;}
.w2{width:453.883500px;}
.w0{width:3575.910000px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.x24{left:53.628000px;}
.x25{left:93.905250px;}
.x23{left:261.592500px;}
.x6{left:310.203300px;}
.x19{left:371.320650px;}
.x11{left:436.466250px;}
.x1e{left:442.065000px;}
.x5{left:490.921500px;}
.xb{left:504.131850px;}
.xd{left:511.260450px;}
.xa{left:513.203550px;}
.xc{left:548.896269px;}
.x2f{left:631.321350px;}
.x4{left:650.630100px;}
.x13{left:994.542450px;}
.xe{left:1037.721750px;}
.xf{left:1044.336750px;}
.x14{left:1057.746150px;}
.x10{left:1059.051750px;}
.x2d{left:1240.122000px;}
.x20{left:1249.576200px;}
.x1f{left:1251.854700px;}
.x8{left:1259.849100px;}
.x1d{left:1304.667450px;}
.x1b{left:1307.885850px;}
.x1a{left:1309.190850px;}
.x1c{left:1311.327450px;}
.x9{left:1408.885950px;}
.x18{left:1458.745650px;}
.x2e{left:1494.010200px;}
.x12{left:1534.214400px;}
.x2c{left:1537.782750px;}
.x7{left:1604.993400px;}
.x2b{left:1653.471750px;}
.x16{left:2062.018800px;}
.x22{left:2084.337900px;}
.x17{left:2094.756013px;}
.x15{left:2205.799050px;}
.x2a{left:2288.170950px;}
.x2{left:2472.360300px;}
.x27{left:2513.414100px;}
.x29{left:2516.657250px;}
.x26{left:2520.185250px;}
.x21{left:2542.846500px;}
.x28{left:2617.547550px;}
.x3{left:3008.601600px;}
.x1{left:3310.440000px;}
@media print{
.v2{vertical-align:-9.315200pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:9.598933pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:209.716403pt;}
.ws6{word-spacing:-58.800000pt;}
.ws7{word-spacing:-57.600000pt;}
.ws1{word-spacing:-51.520000pt;}
.ws8{word-spacing:-41.706667pt;}
.ws0{word-spacing:-36.800000pt;}
.ws4{word-spacing:-35.573333pt;}
.ws2{word-spacing:-25.760000pt;}
.ws5{word-spacing:-18.661800pt;}
.ws9{word-spacing:0.000000pt;}
.ws3{word-spacing:3031.530667pt;}
._b{margin-left:-5102.933333pt;}
._c{margin-left:-3243.893333pt;}
._8{margin-left:-12.693333pt;}
._4{margin-left:-10.453333pt;}
._9{margin-left:-8.960000pt;}
._11{margin-left:-8.000000pt;}
._12{margin-left:-7.040000pt;}
._7{margin-left:-5.600000pt;}
._6{margin-left:-3.946667pt;}
._3{margin-left:-2.613333pt;}
._2{margin-left:-1.120000pt;}
._13{width:1.120000pt;}
._10{width:2.400000pt;}
._5{width:3.546667pt;}
._14{width:5.760000pt;}
._0{width:74.705280pt;}
._a{width:415.146667pt;}
._e{width:1236.053333pt;}
._f{width:1282.933333pt;}
._d{width:1319.413333pt;}
._1{width:2593.717653pt;}
.fse{font-size:82.941333pt;}
.fsa{font-size:112.000000pt;}
.fs7{font-size:130.302400pt;}
.fsc{font-size:146.949333pt;}
.fsd{font-size:154.666667pt;}
.fs9{font-size:160.000000pt;}
.fs1{font-size:170.560000pt;}
.fs13{font-size:181.333333pt;}
.fs2{font-size:192.000000pt;}
.fsf{font-size:202.666667pt;}
.fs11{font-size:206.987733pt;}
.fs3{font-size:224.000000pt;}
.fs4{font-size:234.666667pt;}
.fs5{font-size:256.000000pt;}
.fs8{font-size:261.333333pt;}
.fsb{font-size:277.333333pt;}
.fs0{font-size:288.000000pt;}
.fs10{font-size:320.000000pt;}
.fs6{font-size:330.666667pt;}
.fs12{font-size:394.666667pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:14.453467pt;}
.y2a{bottom:76.180933pt;}
.y29{bottom:80.666667pt;}
.y55{bottom:245.833733pt;}
.y54{bottom:312.519067pt;}
.y53{bottom:379.204400pt;}
.y25{bottom:449.326800pt;}
.y56{bottom:461.937467pt;}
.y57{bottom:464.265600pt;}
.y10{bottom:495.997333pt;}
.y5d{bottom:613.868267pt;}
.y5c{bottom:680.553600pt;}
.y5b{bottom:747.238933pt;}
.y5a{bottom:813.924267pt;}
.yc{bottom:875.914000pt;}
.y59{bottom:880.609600pt;}
.y58{bottom:947.294933pt;}
.y13{bottom:1001.949200pt;}
.y5e{bottom:1037.692667pt;}
.y5f{bottom:1040.018267pt;}
.y12{bottom:1049.949200pt;}
.ya{bottom:1054.959600pt;}
.y64{bottom:1090.656267pt;}
.y11{bottom:1097.949200pt;}
.y15{bottom:1192.851333pt;}
.y50{bottom:1196.962267pt;}
.y14{bottom:1236.936133pt;}
.y4f{bottom:1263.647600pt;}
.y4e{bottom:1330.332933pt;}
.yb{bottom:1383.247333pt;}
.y4d{bottom:1397.018267pt;}
.y51{bottom:1480.373733pt;}
.y63{bottom:1513.148400pt;}
.y4a{bottom:1590.768000pt;}
.y49{bottom:1657.453333pt;}
.y62{bottom:1657.606800pt;}
.y48{bottom:1724.138667pt;}
.y47{bottom:1790.824000pt;}
.y21{bottom:1797.156267pt;}
.y20{bottom:1845.156267pt;}
.y46{bottom:1857.509333pt;}
.y45{bottom:1924.194667pt;}
.y28{bottom:1975.346400pt;}
.y44{bottom:1990.880000pt;}
.y27{bottom:2023.346400pt;}
.y43{bottom:2057.565333pt;}
.y26{bottom:2071.346400pt;}
.y42{bottom:2124.250667pt;}
.y24{bottom:2167.398133pt;}
.y4c{bottom:2211.660133pt;}
.y4b{bottom:2213.986933pt;}
.y23{bottom:2245.798133pt;}
.y3e{bottom:2320.470000pt;}
.y61{bottom:2341.712267pt;}
.y3d{bottom:2387.155333pt;}
.y3c{bottom:2453.840667pt;}
.y3b{bottom:2520.526000pt;}
.y3f{bottom:2600.727200pt;}
.y40{bottom:2603.057333pt;}
.y39{bottom:2713.195467pt;}
.y7{bottom:2762.261333pt;}
.y38{bottom:2779.880800pt;}
.y37{bottom:2846.566133pt;}
.y1f{bottom:2848.494800pt;}
.y22{bottom:2854.071600pt;}
.y60{bottom:2889.833333pt;}
.y9{bottom:2895.387333pt;}
.y1e{bottom:2896.494800pt;}
.y36{bottom:2913.251467pt;}
.y35{bottom:2979.936800pt;}
.y3a{bottom:3067.074267pt;}
.y41{bottom:3069.401067pt;}
.y34{bottom:3234.723733pt;}
.y52{bottom:3240.576800pt;}
.y33{bottom:3301.409067pt;}
.y1d{bottom:3343.109867pt;}
.y32{bottom:3368.094400pt;}
.y31{bottom:3434.779733pt;}
.y1c{bottom:3448.589867pt;}
.y30{bottom:3501.465067pt;}
.y2f{bottom:3568.150400pt;}
.y2e{bottom:3634.835733pt;}
.yf{bottom:3680.295867pt;}
.y18{bottom:3698.148400pt;}
.y2d{bottom:3701.521067pt;}
.ye{bottom:3713.895867pt;}
.y17{bottom:3752.548133pt;}
.yd{bottom:3757.095733pt;}
.y16{bottom:3761.377600pt;}
.y2c{bottom:3768.206400pt;}
.y1b{bottom:3772.894267pt;}
.y1a{bottom:3797.776667pt;}
.y19{bottom:3801.770800pt;}
.y2b{bottom:3856.639333pt;}
.y4{bottom:4014.503867pt;}
.y2{bottom:4098.408267pt;}
.y6{bottom:4145.941867pt;}
.y5{bottom:4245.141867pt;}
.y1{bottom:4414.088533pt;}
.y3{bottom:4416.768267pt;}
.h7{height:0.000000pt;}
.h14{height:61.127763pt;}
.hd{height:81.872000pt;}
.hc{height:86.464000pt;}
.h8{height:90.820773pt;}
.h10{height:113.444885pt;}
.hf{height:116.960000pt;}
.h15{height:117.920000pt;}
.h11{height:119.402667pt;}
.ha{height:123.520000pt;}
.h1b{height:139.989333pt;}
.h16{height:149.365333pt;}
.h3{height:149.950933pt;}
.h18{height:159.794530pt;}
.h12{height:163.744000pt;}
.h4{height:165.088000pt;}
.hb{height:172.928000pt;}
.h5{height:187.136000pt;}
.h13{height:188.672000pt;}
.h9{height:192.602667pt;}
.h1c{height:197.632000pt;}
.h2{height:200.736000pt;}
.he{height:204.394667pt;}
.h17{height:233.920000pt;}
.h1d{height:241.200355pt;}
.h6{height:243.701333pt;}
.h1a{height:290.869333pt;}
.h19{height:3419.339067pt;}
.h0{height:4493.853333pt;}
.h1{height:4494.000000pt;}
.w3{width:113.169333pt;}
.w2{width:403.452000pt;}
.w0{width:3178.586667pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x24{left:47.669333pt;}
.x25{left:83.471333pt;}
.x23{left:232.526667pt;}
.x6{left:275.736267pt;}
.x19{left:330.062800pt;}
.x11{left:387.970000pt;}
.x1e{left:392.946667pt;}
.x5{left:436.374667pt;}
.xb{left:448.117200pt;}
.xd{left:454.453733pt;}
.xa{left:456.180933pt;}
.xc{left:487.907795pt;}
.x2f{left:561.174533pt;}
.x4{left:578.337867pt;}
.x13{left:884.037733pt;}
.xe{left:922.419333pt;}
.xf{left:928.299333pt;}
.x14{left:940.218800pt;}
.x10{left:941.379333pt;}
.x2d{left:1102.330667pt;}
.x20{left:1110.734400pt;}
.x1f{left:1112.759733pt;}
.x8{left:1119.865867pt;}
.x1d{left:1159.704400pt;}
.x1b{left:1162.565200pt;}
.x1a{left:1163.725200pt;}
.x1c{left:1165.624400pt;}
.x9{left:1252.343067pt;}
.x18{left:1296.662800pt;}
.x2e{left:1328.009067pt;}
.x12{left:1363.746133pt;}
.x2c{left:1366.918000pt;}
.x7{left:1426.660800pt;}
.x2b{left:1469.752667pt;}
.x16{left:1832.905600pt;}
.x22{left:1852.744800pt;}
.x17{left:1862.005345pt;}
.x15{left:1960.710267pt;}
.x2a{left:2033.929733pt;}
.x2{left:2197.653600pt;}
.x27{left:2234.145867pt;}
.x29{left:2237.028667pt;}
.x26{left:2240.164667pt;}
.x21{left:2260.308000pt;}
.x28{left:2326.708933pt;}
.x3{left:2674.312533pt;}
.x1{left:2942.613333pt;}
}




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