
    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_3247496e5f3cc83089561bde.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.926000;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_09e6b084fe5a1f71cb914b60.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.998000;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_2eda453f82846f9de2a9d888.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.920000;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_2fd2ea7842e296c03fbb1c65.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.835000;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_4a7892966f0cce1c57939526.woff2')format("woff");}.ff5{font-family:ff5;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;}
.m1{transform:matrix(0.245145,0.000000,-0.049029,0.245145,0,0);-ms-transform:matrix(0.245145,0.000000,-0.049029,0.245145,0,0);-webkit-transform:matrix(0.245145,0.000000,-0.049029,0.245145,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(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:74.250002px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:7.800000px;}
.ls1{letter-spacing:42.018948px;}
.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:-76.896002px;}
.ws0{word-spacing:-60.720000px;}
.ws3{word-spacing:-51.264003px;}
.ws5{word-spacing:-39.840000px;}
.ws7{word-spacing:-35.244003px;}
.ws2{word-spacing:-32.040000px;}
.ws1{word-spacing:-30.360000px;}
.ws4{word-spacing:0.000000px;}
._4{margin-left:-41.661517px;}
._18{margin-left:-27.407371px;}
._47{margin-left:-22.464001px;}
._3{margin-left:-19.200000px;}
._3b{margin-left:-14.280000px;}
._19{margin-left:-12.336000px;}
._5{margin-left:-11.040000px;}
._46{margin-left:-9.951024px;}
._20{margin-left:-8.928000px;}
._22{margin-left:-7.632000px;}
._3d{margin-left:-6.504001px;}
._6{margin-left:-5.040000px;}
._1a{margin-left:-3.984001px;}
._0{margin-left:-2.880000px;}
._7{margin-left:-1.584000px;}
._16{width:1.008000px;}
._d{width:2.160000px;}
._24{width:3.312000px;}
._13{width:4.320000px;}
._1c{width:5.328000px;}
._15{width:6.336000px;}
._10{width:7.776000px;}
._f{width:9.504000px;}
._2a{width:10.704001px;}
._14{width:11.760000px;}
._1e{width:14.112000px;}
._a{width:15.984000px;}
._b{width:17.136001px;}
._1f{width:18.288000px;}
._43{width:19.344000px;}
._35{width:21.744001px;}
._41{width:23.472001px;}
._25{width:25.200001px;}
._26{width:26.640001px;}
._28{width:28.224001px;}
._1b{width:29.232001px;}
._31{width:30.240001px;}
._8{width:31.920001px;}
._9{width:32.928002px;}
._12{width:34.848001px;}
._27{width:37.104001px;}
._11{width:40.176001px;}
._2e{width:41.808001px;}
._2c{width:46.176002px;}
._2b{width:49.824002px;}
._42{width:53.712002px;}
._c{width:54.864002px;}
._e{width:55.968002px;}
._17{width:58.608002px;}
._2d{width:59.760002px;}
._32{width:61.776002px;}
._30{width:63.936002px;}
._34{width:72.816002px;}
._33{width:75.072004px;}
._23{width:76.080002px;}
._2f{width:77.424003px;}
._21{width:79.632003px;}
._38{width:91.152001px;}
._39{width:92.976001px;}
._3c{width:98.328001px;}
._37{width:99.672000px;}
._36{width:100.968001px;}
._3a{width:102.168001px;}
._3f{width:122.112001px;}
._3e{width:124.968001px;}
._40{width:126.072001px;}
._45{width:202.104034px;}
._44{width:220.320029px;}
._2{width:401.280003px;}
._1{width:408.720003px;}
._1d{width:706.176023px;}
._29{width:2052.288066px;}
.fc5{color:rgb(0,0,0);}
.fc6{color:rgb(255,0,0);}
.fc3{color:rgb(56,118,29);}
.fc2{color:rgb(180,95,6);}
.fc1{color:rgb(0,0,255);}
.fc4{color:transparent;}
.fc0{color:rgb(7,42,84);}
.fs2{font-size:120.000001px;}
.fs5{font-size:128.495296px;}
.fsa{font-size:132.000011px;}
.fs1{font-size:144.000005px;}
.fsb{font-size:156.000011px;}
.fs4{font-size:167.999999px;}
.fs3{font-size:192.000012px;}
.fs0{font-size:240.000002px;}
.fs9{font-size:288.000009px;}
.fs8{font-size:420.000025px;}
.fs7{font-size:480.000003px;}
.fs6{font-size:624.000035px;}
.y0{bottom:0.000000px;}
.y40{bottom:165.864931px;}
.y3f{bottom:210.864932px;}
.y3e{bottom:246.864934px;}
.y3d{bottom:291.864935px;}
.y3c{bottom:327.864936px;}
.y3b{bottom:372.864938px;}
.y3a{bottom:417.864939px;}
.y39{bottom:453.864940px;}
.y70{bottom:484.180541px;}
.y38{bottom:498.864942px;}
.y6f{bottom:528.685543px;}
.y37{bottom:534.864943px;}
.y6e{bottom:564.685544px;}
.y63{bottom:579.863819px;}
.y36{bottom:579.864944px;}
.y6d{bottom:600.685545px;}
.y62{bottom:615.863820px;}
.y35{bottom:615.864945px;}
.y6c{bottom:636.685546px;}
.y61{bottom:659.063822px;}
.y34{bottom:659.064947px;}
.y6b{bottom:715.210549px;}
.y59{bottom:804.369614px;}
.y58{bottom:840.369615px;}
.y67{bottom:987.575532px;}
.y79{bottom:995.018427px;}
.y66{bottom:1023.575533px;}
.y78{bottom:1031.018428px;}
.y65{bottom:1059.575535px;}
.y5f{bottom:1063.289727px;}
.y77{bottom:1071.698425px;}
.y5e{bottom:1101.089727px;}
.y64{bottom:1102.775536px;}
.y7d{bottom:1208.174884px;}
.y7c{bottom:1244.174885px;}
.y55{bottom:1276.497367px;}
.y7b{bottom:1284.854882px;}
.y54{bottom:1334.097335px;}
.y53{bottom:1404.393333px;}
.y5d{bottom:1460.142264px;}
.y52{bottom:1479.297354px;}
.y5c{bottom:1497.942265px;}
.y51{bottom:1533.441345px;}
.y50{bottom:1574.913335px;}
.y4f{bottom:1635.993333px;}
.y4e{bottom:1680.921346px;}
.y4d{bottom:1722.393340px;}
.y4c{bottom:1797.297346px;}
.y5b{bottom:1811.684526px;}
.y5a{bottom:1849.484526px;}
.y25{bottom:1897.111061px;}
.y24{bottom:1946.790951px;}
.y23{bottom:1996.470840px;}
.y22{bottom:2046.150729px;}
.y21{bottom:2095.830730px;}
.y20{bottom:2145.510676px;}
.y1f{bottom:2195.190621px;}
.y1e{bottom:2244.870623px;}
.y1d{bottom:2294.550590px;}
.ye{bottom:2323.471000px;}
.y33{bottom:2327.970888px;}
.y1c{bottom:2344.230558px;}
.y7a{bottom:2355.297701px;}
.yd{bottom:2375.311002px;}
.y32{bottom:2379.810811px;}
.y1b{bottom:2393.910515px;}
.yc{bottom:2427.150891px;}
.y31{bottom:2431.650779px;}
.y1a{bottom:2443.590516px;}
.yb{bottom:2478.990893px;}
.y30{bottom:2483.490724px;}
.y19{bottom:2493.270473px;}
.ya{bottom:2530.830827px;}
.y2f{bottom:2535.330703px;}
.y18{bottom:2542.950441px;}
.y9{bottom:2582.670783px;}
.y2e{bottom:2587.170694px;}
.y17{bottom:2592.630409px;}
.y8{bottom:2634.510729px;}
.y2d{bottom:2639.010673px;}
.y16{bottom:2642.310388px;}
.y7{bottom:2686.350719px;}
.y2c{bottom:2690.850674px;}
.y15{bottom:2691.990389px;}
.y6{bottom:2738.190710px;}
.y14{bottom:2741.670413px;}
.y2b{bottom:2742.690654px;}
.y5{bottom:2790.030678px;}
.y13{bottom:2791.350415px;}
.y2a{bottom:2794.530644px;}
.y12{bottom:2841.030417px;}
.y4{bottom:2841.870679px;}
.y29{bottom:2846.370646px;}
.y11{bottom:2890.710418px;}
.y3{bottom:2893.710681px;}
.y28{bottom:2898.210647px;}
.y27{bottom:2950.050649px;}
.y10{bottom:2957.670420px;}
.y2{bottom:2957.670645px;}
.y26{bottom:3014.010651px;}
.yf{bottom:3029.670423px;}
.y1{bottom:3029.670648px;}
.y57{bottom:3147.111876px;}
.y60{bottom:3150.175364px;}
.y56{bottom:3183.111878px;}
.y76{bottom:3407.005954px;}
.y75{bottom:3506.365957px;}
.y4b{bottom:3577.835341px;}
.y74{bottom:3626.725942px;}
.y4a{bottom:3629.675321px;}
.y49{bottom:3681.515311px;}
.y73{bottom:3726.085956px;}
.y48{bottom:3733.355290px;}
.y47{bottom:3785.195292px;}
.y46{bottom:3837.035271px;}
.y72{bottom:3846.445930px;}
.y45{bottom:3888.875261px;}
.y44{bottom:3940.715263px;}
.y71{bottom:3945.805933px;}
.y43{bottom:3992.555265px;}
.y42{bottom:4044.395266px;}
.y41{bottom:4108.355268px;}
.y6a{bottom:4391.291908px;}
.y69{bottom:4520.891934px;}
.y68{bottom:4673.531928px;}
.h3{height:85.680001px;}
.h4{height:93.360001px;}
.h8{height:105.494638px;}
.hf{height:111.384008px;}
.h2{height:112.032004px;}
.h6{height:130.704000px;}
.h5{height:137.088009px;}
.h7{height:149.376009px;}
.h1{height:171.360001px;}
.he{height:176.946011px;}
.hd{height:205.632007px;}
.hc{height:224.064007px;}
.hb{height:326.760020px;}
.ha{height:342.720002px;}
.h9{height:445.536025px;}
.h0{height:5055.000000px;}
.w0{width:3574.500000px;}
.x0{left:0.000000px;}
.x14{left:73.350888px;}
.x16{left:90.265750px;}
.x3{left:322.600398px;}
.x5{left:328.311044px;}
.x10{left:344.999205px;}
.x11{left:373.623942px;}
.x7{left:431.289126px;}
.x8{left:551.436576px;}
.x6{left:922.311063px;}
.x15{left:1353.980526px;}
.x12{left:1371.986256px;}
.x1{left:1405.582807px;}
.xb{left:1439.811016px;}
.xe{left:1658.364394px;}
.x9{left:1688.010804px;}
.xa{left:1704.919105px;}
.xf{left:1810.062452px;}
.xd{left:1821.307783px;}
.x13{left:2420.521615px;}
.x4{left:2486.659017px;}
.x2{left:2488.565217px;}
.xc{left:2490.460617px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:66.000002pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:6.933333pt;}
.ls1{letter-spacing:37.350176pt;}
.ws6{word-spacing:-68.352002pt;}
.ws0{word-spacing:-53.973334pt;}
.ws3{word-spacing:-45.568003pt;}
.ws5{word-spacing:-35.413334pt;}
.ws7{word-spacing:-31.328003pt;}
.ws2{word-spacing:-28.480000pt;}
.ws1{word-spacing:-26.986667pt;}
.ws4{word-spacing:0.000000pt;}
._4{margin-left:-37.032460pt;}
._18{margin-left:-24.362108pt;}
._47{margin-left:-19.968001pt;}
._3{margin-left:-17.066667pt;}
._3b{margin-left:-12.693334pt;}
._19{margin-left:-10.965333pt;}
._5{margin-left:-9.813333pt;}
._46{margin-left:-8.845355pt;}
._20{margin-left:-7.936000pt;}
._22{margin-left:-6.784000pt;}
._3d{margin-left:-5.781334pt;}
._6{margin-left:-4.480000pt;}
._1a{margin-left:-3.541334pt;}
._0{margin-left:-2.560000pt;}
._7{margin-left:-1.408000pt;}
._16{width:0.896000pt;}
._d{width:1.920000pt;}
._24{width:2.944000pt;}
._13{width:3.840000pt;}
._1c{width:4.736000pt;}
._15{width:5.632000pt;}
._10{width:6.912000pt;}
._f{width:8.448000pt;}
._2a{width:9.514668pt;}
._14{width:10.453333pt;}
._1e{width:12.544000pt;}
._a{width:14.208000pt;}
._b{width:15.232001pt;}
._1f{width:16.256000pt;}
._43{width:17.194667pt;}
._35{width:19.328001pt;}
._41{width:20.864001pt;}
._25{width:22.400001pt;}
._26{width:23.680001pt;}
._28{width:25.088001pt;}
._1b{width:25.984001pt;}
._31{width:26.880001pt;}
._8{width:28.373334pt;}
._9{width:29.269335pt;}
._12{width:30.976001pt;}
._27{width:32.981334pt;}
._11{width:35.712001pt;}
._2e{width:37.162667pt;}
._2c{width:41.045335pt;}
._2b{width:44.288001pt;}
._42{width:47.744002pt;}
._c{width:48.768001pt;}
._e{width:49.749335pt;}
._17{width:52.096002pt;}
._2d{width:53.120002pt;}
._32{width:54.912002pt;}
._30{width:56.832002pt;}
._34{width:64.725335pt;}
._33{width:66.730670pt;}
._23{width:67.626668pt;}
._2f{width:68.821336pt;}
._21{width:70.784002pt;}
._38{width:81.024001pt;}
._39{width:82.645334pt;}
._3c{width:87.402667pt;}
._37{width:88.597334pt;}
._36{width:89.749334pt;}
._3a{width:90.816001pt;}
._3f{width:108.544001pt;}
._3e{width:111.082668pt;}
._40{width:112.064001pt;}
._45{width:179.648031pt;}
._44{width:195.840025pt;}
._2{width:356.693336pt;}
._1{width:363.306669pt;}
._1d{width:627.712020pt;}
._29{width:1824.256058pt;}
.fs2{font-size:106.666667pt;}
.fs5{font-size:114.218041pt;}
.fsa{font-size:117.333343pt;}
.fs1{font-size:128.000004pt;}
.fsb{font-size:138.666676pt;}
.fs4{font-size:149.333333pt;}
.fs3{font-size:170.666677pt;}
.fs0{font-size:213.333335pt;}
.fs9{font-size:256.000008pt;}
.fs8{font-size:373.333356pt;}
.fs7{font-size:426.666670pt;}
.fs6{font-size:554.666698pt;}
.y0{bottom:0.000000pt;}
.y40{bottom:147.435494pt;}
.y3f{bottom:187.435496pt;}
.y3e{bottom:219.435497pt;}
.y3d{bottom:259.435498pt;}
.y3c{bottom:291.435499pt;}
.y3b{bottom:331.435500pt;}
.y3a{bottom:371.435501pt;}
.y39{bottom:403.435502pt;}
.y70{bottom:430.382703pt;}
.y38{bottom:443.435504pt;}
.y6f{bottom:469.942705pt;}
.y37{bottom:475.435505pt;}
.y6e{bottom:501.942706pt;}
.y63{bottom:515.434506pt;}
.y36{bottom:515.435506pt;}
.y6d{bottom:533.942707pt;}
.y62{bottom:547.434507pt;}
.y35{bottom:547.435507pt;}
.y6c{bottom:565.942708pt;}
.y61{bottom:585.834508pt;}
.y34{bottom:585.835508pt;}
.y6b{bottom:635.742710pt;}
.y59{bottom:714.995212pt;}
.y58{bottom:746.995213pt;}
.y67{bottom:877.844918pt;}
.y79{bottom:884.460824pt;}
.y66{bottom:909.844919pt;}
.y78{bottom:916.460825pt;}
.y65{bottom:941.844920pt;}
.y5f{bottom:945.146424pt;}
.y77{bottom:952.620822pt;}
.y5e{bottom:978.746424pt;}
.y64{bottom:980.244921pt;}
.y7d{bottom:1073.933230pt;}
.y7c{bottom:1105.933231pt;}
.y55{bottom:1134.664326pt;}
.y7b{bottom:1142.093228pt;}
.y54{bottom:1185.864297pt;}
.y53{bottom:1248.349629pt;}
.y5d{bottom:1297.904235pt;}
.y52{bottom:1314.930982pt;}
.y5c{bottom:1331.504235pt;}
.y51{bottom:1363.058973pt;}
.y50{bottom:1399.922964pt;}
.y4f{bottom:1454.216296pt;}
.y4e{bottom:1494.152307pt;}
.y4d{bottom:1531.016303pt;}
.y4c{bottom:1597.597641pt;}
.y5b{bottom:1610.386245pt;}
.y5a{bottom:1643.986245pt;}
.y25{bottom:1686.320944pt;}
.y24{bottom:1730.480845pt;}
.y23{bottom:1774.640746pt;}
.y22{bottom:1818.800648pt;}
.y21{bottom:1862.960649pt;}
.y20{bottom:1907.120601pt;}
.y1f{bottom:1951.280552pt;}
.y1e{bottom:1995.440553pt;}
.y1d{bottom:2039.600525pt;}
.ye{bottom:2065.307556pt;}
.y33{bottom:2069.307456pt;}
.y1c{bottom:2083.760496pt;}
.y7a{bottom:2093.597957pt;}
.yd{bottom:2111.387557pt;}
.y32{bottom:2115.387387pt;}
.y1b{bottom:2127.920458pt;}
.yc{bottom:2157.467459pt;}
.y31{bottom:2161.467359pt;}
.y1a{bottom:2172.080459pt;}
.yb{bottom:2203.547460pt;}
.y30{bottom:2207.547310pt;}
.y19{bottom:2216.240420pt;}
.ya{bottom:2249.627402pt;}
.y2f{bottom:2253.627292pt;}
.y18{bottom:2260.400392pt;}
.y9{bottom:2295.707363pt;}
.y2e{bottom:2299.707283pt;}
.y17{bottom:2304.560363pt;}
.y8{bottom:2341.787314pt;}
.y2d{bottom:2345.787265pt;}
.y16{bottom:2348.720345pt;}
.y7{bottom:2387.867306pt;}
.y2c{bottom:2391.867266pt;}
.y15{bottom:2392.880346pt;}
.y6{bottom:2433.947297pt;}
.y14{bottom:2437.040368pt;}
.y2b{bottom:2437.947248pt;}
.y5{bottom:2480.027269pt;}
.y13{bottom:2481.200369pt;}
.y2a{bottom:2484.027239pt;}
.y12{bottom:2525.360370pt;}
.y4{bottom:2526.107270pt;}
.y29{bottom:2530.107241pt;}
.y11{bottom:2569.520372pt;}
.y3{bottom:2572.187272pt;}
.y28{bottom:2576.187242pt;}
.y27{bottom:2622.267243pt;}
.y10{bottom:2629.040374pt;}
.y2{bottom:2629.040574pt;}
.y26{bottom:2679.120578pt;}
.yf{bottom:2693.040376pt;}
.y1{bottom:2693.040576pt;}
.y57{bottom:2797.432779pt;}
.y60{bottom:2800.155879pt;}
.y56{bottom:2829.432780pt;}
.y76{bottom:3028.449736pt;}
.y75{bottom:3116.769739pt;}
.y4b{bottom:3180.298081pt;}
.y74{bottom:3223.756393pt;}
.y4a{bottom:3226.378063pt;}
.y49{bottom:3272.458054pt;}
.y73{bottom:3312.076406pt;}
.y48{bottom:3318.538036pt;}
.y47{bottom:3364.618037pt;}
.y46{bottom:3410.698019pt;}
.y72{bottom:3419.063049pt;}
.y45{bottom:3456.778010pt;}
.y44{bottom:3502.858012pt;}
.y71{bottom:3507.383052pt;}
.y43{bottom:3548.938013pt;}
.y42{bottom:3595.018015pt;}
.y41{bottom:3651.871349pt;}
.y6a{bottom:3903.370584pt;}
.y69{bottom:4018.570608pt;}
.y68{bottom:4154.250602pt;}
.h3{height:76.160001pt;}
.h4{height:82.986667pt;}
.h8{height:93.773011pt;}
.hf{height:99.008007pt;}
.h2{height:99.584003pt;}
.h6{height:116.181333pt;}
.h5{height:121.856008pt;}
.h7{height:132.778675pt;}
.h1{height:152.320001pt;}
.he{height:157.285343pt;}
.hd{height:182.784006pt;}
.hc{height:199.168006pt;}
.hb{height:290.453351pt;}
.ha{height:304.640002pt;}
.h9{height:396.032022pt;}
.h0{height:4493.333333pt;}
.w0{width:3177.333333pt;}
.x0{left:0.000000pt;}
.x14{left:65.200789pt;}
.x16{left:80.236223pt;}
.x3{left:286.755909pt;}
.x5{left:291.832039pt;}
.x10{left:306.665960pt;}
.x11{left:332.110171pt;}
.x7{left:383.368112pt;}
.x8{left:490.165846pt;}
.x6{left:819.832056pt;}
.x15{left:1203.538246pt;}
.x12{left:1219.543339pt;}
.x1{left:1249.406940pt;}
.xb{left:1279.832014pt;}
.xe{left:1474.101683pt;}
.x9{left:1500.454048pt;}
.xa{left:1515.483648pt;}
.xf{left:1608.944401pt;}
.xd{left:1618.940252pt;}
.x13{left:2151.574769pt;}
.x4{left:2210.363571pt;}
.x2{left:2212.057971pt;}
.xc{left:2213.742771pt;}
}




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