
    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_1e7e391fcbe3dd7bd3f4edc7.woff')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_5b6348df9a86770c2fd05065.woff')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_603f82029db59d5dffa07022.woff')format("woff");}.ff3{font-family:ff3;line-height:1.097168;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff4{font-family:ff4;line-height:1.003906;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_6cd3e13249c1a270b8f2a707.woff')format("woff");}.ff5{font-family:ff5;line-height:0.942383;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_6b44a2524bb23b7e58cfda00.woff')format("woff");}.ff6{font-family:ff6;line-height:0.946777;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_eb518559c9925307cc2749fb.woff')format("woff");}.ff7{font-family:ff7;line-height:0.946777;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_6399728f06bd17f9e25028fd.woff')format("woff");}.ff8{font-family:ff8;line-height:1.097168;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_75db79f9d529bade16d4a816.woff')format("woff");}.ff9{font-family:ff9;line-height:0.910156;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:ffa;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.woff')format("woff");}.ffa{font-family:ffa;line-height:0.739746;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;}
.ls4{letter-spacing:-0.360000px;}
.ls3{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.048000px;}
.ls8{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.360000px;}
.ls6{letter-spacing:60.065280px;}
.ls7{letter-spacing:66.186720px;}
.ls2{letter-spacing:77.309760px;}
.ls1{letter-spacing:111.029760px;}
.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;}
}
.ws4{word-spacing:-66.240000px;}
.ws1{word-spacing:-18.000000px;}
.ws2{word-spacing:-16.560000px;}
.ws5{word-spacing:-15.300000px;}
.ws6{word-spacing:-14.940000px;}
.ws0{word-spacing:-13.140000px;}
.ws3{word-spacing:0.000000px;}
._14{margin-left:-16.416000px;}
._11{margin-left:-11.604480px;}
._2{margin-left:-1.391040px;}
._0{width:1.068000px;}
._1{width:2.082240px;}
._d{width:3.245760px;}
._c{width:4.371840px;}
._8{width:5.497920px;}
._9{width:6.955200px;}
._7{width:8.147520px;}
._6{width:9.472320px;}
._b{width:11.393280px;}
._a{width:12.784320px;}
._16{width:13.789440px;}
._e{width:14.837760px;}
._1a{width:16.134480px;}
._3{width:17.961600px;}
._4{width:19.872000px;}
._10{width:21.528000px;}
._f{width:22.587840px;}
._15{width:24.045120px;}
._17{width:25.163040px;}
._13{width:27.953280px;}
._12{width:29.013120px;}
._5{width:30.337920px;}
._1c{width:31.353840px;}
._18{width:34.600320px;}
._19{width:36.095040px;}
._1b{width:43.863120px;}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(112,48,160);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(48,88,236);}
.fs3{font-size:5.760000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:95.760000px;}
.fs5{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y4{bottom:10.260000px;}
.y5{bottom:11.340000px;}
.y7f{bottom:13.320000px;}
.y81{bottom:14.220000px;}
.y6{bottom:55.440000px;}
.y3{bottom:57.600000px;}
.y88{bottom:100.836000px;}
.y5a{bottom:102.276000px;}
.y36{bottom:106.236000px;}
.y87{bottom:122.796000px;}
.y59{bottom:125.136000px;}
.y35{bottom:128.016000px;}
.y86{bottom:144.576000px;}
.y58{bottom:147.096000px;}
.y34{bottom:149.796000px;}
.y85{bottom:166.350000px;}
.y33{bottom:171.570000px;}
.y84{bottom:188.130000px;}
.y57{bottom:193.350000px;}
.y32{bottom:193.530000px;}
.y83{bottom:208.470000px;}
.y56{bottom:215.130000px;}
.y31{bottom:215.310000px;}
.y55{bottom:236.910000px;}
.y30{bottom:237.090000px;}
.y82{bottom:252.030000px;}
.y2f{bottom:258.870000px;}
.y54{bottom:280.650000px;}
.y2e{bottom:280.830000px;}
.y80{bottom:293.790000px;}
.y53{bottom:302.430000px;}
.y2d{bottom:302.610000px;}
.y52{bottom:324.210000px;}
.y2c{bottom:324.390000px;}
.y7e{bottom:337.395000px;}
.y2b{bottom:346.215000px;}
.y2a{bottom:367.995000px;}
.y7d{bottom:384.375000px;}
.y51{bottom:389.775000px;}
.y29{bottom:389.955000px;}
.y7c{bottom:406.155000px;}
.y50{bottom:411.555000px;}
.y28{bottom:411.735000px;}
.y7b{bottom:427.935000px;}
.y4f{bottom:433.335000px;}
.y27{bottom:433.515000px;}
.y7a{bottom:449.895000px;}
.y26{bottom:455.295000px;}
.y79{bottom:471.675000px;}
.y4e{bottom:477.075000px;}
.y25{bottom:477.255000px;}
.y78{bottom:493.455000px;}
.y4d{bottom:495.255000px;}
.y24{bottom:499.035000px;}
.y77{bottom:515.235000px;}
.y23{bottom:520.815000px;}
.y76{bottom:537.015000px;}
.y22{bottom:542.595000px;}
.y75{bottom:558.975000px;}
.y9c{bottom:563.115000px;}
.y21{bottom:564.375000px;}
.y74{bottom:580.755000px;}
.y9b{bottom:584.355000px;}
.y20{bottom:586.335000px;}
.y73{bottom:602.535000px;}
.y9a{bottom:604.185000px;}
.y1f{bottom:608.145000px;}
.y99{bottom:623.985000px;}
.y72{bottom:624.345000px;}
.y1e{bottom:629.925000px;}
.y98{bottom:643.785000px;}
.y71{bottom:646.305000px;}
.y1d{bottom:651.705000px;}
.y97{bottom:663.765000px;}
.y70{bottom:668.085000px;}
.y1c{bottom:673.665000px;}
.y96{bottom:683.565000px;}
.y4c{bottom:685.185000px;}
.y6f{bottom:689.865000px;}
.y1b{bottom:695.445000px;}
.y95{bottom:703.365000px;}
.y4b{bottom:706.965000px;}
.y6e{bottom:711.645000px;}
.y1a{bottom:717.225000px;}
.y94{bottom:723.165000px;}
.y4a{bottom:728.745000px;}
.y6d{bottom:733.425000px;}
.y19{bottom:739.005000px;}
.y93{bottom:742.965000px;}
.y49{bottom:750.525000px;}
.y6c{bottom:755.385000px;}
.y18{bottom:760.785000px;}
.y92{bottom:762.945000px;}
.y48{bottom:772.485000px;}
.y6b{bottom:777.165000px;}
.y17{bottom:782.745000px;}
.y47{bottom:794.265000px;}
.y6a{bottom:798.945000px;}
.y91{bottom:802.545000px;}
.y16{bottom:804.525000px;}
.y46{bottom:816.045000px;}
.y69{bottom:820.725000px;}
.y90{bottom:824.325000px;}
.y15{bottom:826.305000px;}
.y45{bottom:838.005000px;}
.y68{bottom:842.685000px;}
.y8f{bottom:846.105000px;}
.y14{bottom:848.085000px;}
.y44{bottom:861.045000px;}
.y67{bottom:864.465000px;}
.y8e{bottom:867.885000px;}
.y13{bottom:869.865000px;}
.y43{bottom:883.950000px;}
.y66{bottom:886.290000px;}
.y8d{bottom:889.890000px;}
.y12{bottom:891.870000px;}
.y42{bottom:906.990000px;}
.y65{bottom:908.070000px;}
.y8c{bottom:911.670000px;}
.y11{bottom:913.650000px;}
.y64{bottom:929.850000px;}
.y41{bottom:930.030000px;}
.y8b{bottom:933.450000px;}
.y10{bottom:935.430000px;}
.y63{bottom:951.810000px;}
.y40{bottom:953.070000px;}
.y8a{bottom:955.230000px;}
.yf{bottom:957.210000px;}
.y62{bottom:973.590000px;}
.y3f{bottom:976.110000px;}
.y89{bottom:977.190000px;}
.ye{bottom:979.170000px;}
.y61{bottom:995.370000px;}
.y3e{bottom:998.970000px;}
.yd{bottom:1000.950000px;}
.y60{bottom:1017.150000px;}
.y3d{bottom:1020.750000px;}
.yc{bottom:1022.730000px;}
.y5f{bottom:1039.110000px;}
.y3c{bottom:1042.530000px;}
.yb{bottom:1044.510000px;}
.y5e{bottom:1061.970000px;}
.y3b{bottom:1064.310000px;}
.ya{bottom:1066.290000px;}
.y5d{bottom:1083.930000px;}
.y3a{bottom:1086.270000px;}
.y9{bottom:1088.250000px;}
.y5c{bottom:1106.790000px;}
.y39{bottom:1108.050000px;}
.y8{bottom:1113.090000px;}
.y5b{bottom:1128.750000px;}
.y38{bottom:1129.830000px;}
.y7{bottom:1144.800000px;}
.y37{bottom:1151.640000px;}
.y2{bottom:1194.120000px;}
.y1{bottom:1211.940000px;}
.h6{height:5.076563px;}
.h3{height:27.036000px;}
.hd{height:35.820000px;}
.he{height:37.620000px;}
.h2{height:38.100586px;}
.h9{height:46.736719px;}
.hb{height:47.836406px;}
.hc{height:48.418594px;}
.hf{height:52.669336px;}
.ha{height:58.380469px;}
.h4{height:63.457031px;}
.h5{height:65.884219px;}
.h7{height:67.565039px;}
.h8{height:84.837305px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:105.516000px;}
.w6{width:142.596000px;}
.w7{width:238.215000px;}
.w5{width:305.310000px;}
.w3{width:305.355000px;}
.w8{width:331.590000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:1.260000px;}
.x6{left:7.560000px;}
.x14{left:86.580000px;}
.x3{left:87.660000px;}
.x8{left:95.795987px;}
.x1{left:98.675987px;}
.x18{left:127.835987px;}
.x9{left:132.695987px;}
.xa{left:134.855987px;}
.xf{left:148.895987px;}
.x11{left:222.689987px;}
.x16{left:232.950000px;}
.xd{left:248.249987px;}
.x4{left:297.795000px;}
.xe{left:308.234987px;}
.x13{left:324.974987px;}
.xc{left:337.034987px;}
.x2{left:379.514987px;}
.x5{left:393.915000px;}
.xb{left:446.474987px;}
.x17{left:474.945000px;}
.x7{left:500.145000px;}
.x12{left:744.629987px;}
.x10{left:822.929987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.042667pt;}
.ls8{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.320000pt;}
.ls6{letter-spacing:53.391360pt;}
.ls7{letter-spacing:58.832640pt;}
.ls2{letter-spacing:68.719787pt;}
.ls1{letter-spacing:98.693120pt;}
.ws4{word-spacing:-58.880000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws2{word-spacing:-14.720000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.280000pt;}
.ws0{word-spacing:-11.680000pt;}
.ws3{word-spacing:0.000000pt;}
._14{margin-left:-14.592000pt;}
._11{margin-left:-10.315093pt;}
._2{margin-left:-1.236480pt;}
._0{width:0.949333pt;}
._1{width:1.850880pt;}
._d{width:2.885120pt;}
._c{width:3.886080pt;}
._8{width:4.887040pt;}
._9{width:6.182400pt;}
._7{width:7.242240pt;}
._6{width:8.419840pt;}
._b{width:10.127360pt;}
._a{width:11.363840pt;}
._16{width:12.257280pt;}
._e{width:13.189120pt;}
._1a{width:14.341760pt;}
._3{width:15.965867pt;}
._4{width:17.664000pt;}
._10{width:19.136000pt;}
._f{width:20.078080pt;}
._15{width:21.373440pt;}
._17{width:22.367147pt;}
._13{width:24.847360pt;}
._12{width:25.789440pt;}
._5{width:26.967040pt;}
._1c{width:27.870080pt;}
._18{width:30.755840pt;}
._19{width:32.084480pt;}
._1b{width:38.989440pt;}
.fs3{font-size:5.120000pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:85.120000pt;}
.fs5{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:9.120000pt;}
.y5{bottom:10.080000pt;}
.y7f{bottom:11.840000pt;}
.y81{bottom:12.640000pt;}
.y6{bottom:49.280000pt;}
.y3{bottom:51.200000pt;}
.y88{bottom:89.632000pt;}
.y5a{bottom:90.912000pt;}
.y36{bottom:94.432000pt;}
.y87{bottom:109.152000pt;}
.y59{bottom:111.232000pt;}
.y35{bottom:113.792000pt;}
.y86{bottom:128.512000pt;}
.y58{bottom:130.752000pt;}
.y34{bottom:133.152000pt;}
.y85{bottom:147.866667pt;}
.y33{bottom:152.506667pt;}
.y84{bottom:167.226667pt;}
.y57{bottom:171.866667pt;}
.y32{bottom:172.026667pt;}
.y83{bottom:185.306667pt;}
.y56{bottom:191.226667pt;}
.y31{bottom:191.386667pt;}
.y55{bottom:210.586667pt;}
.y30{bottom:210.746667pt;}
.y82{bottom:224.026667pt;}
.y2f{bottom:230.106667pt;}
.y54{bottom:249.466667pt;}
.y2e{bottom:249.626667pt;}
.y80{bottom:261.146667pt;}
.y53{bottom:268.826667pt;}
.y2d{bottom:268.986667pt;}
.y52{bottom:288.186667pt;}
.y2c{bottom:288.346667pt;}
.y7e{bottom:299.906667pt;}
.y2b{bottom:307.746667pt;}
.y2a{bottom:327.106667pt;}
.y7d{bottom:341.666667pt;}
.y51{bottom:346.466667pt;}
.y29{bottom:346.626667pt;}
.y7c{bottom:361.026667pt;}
.y50{bottom:365.826667pt;}
.y28{bottom:365.986667pt;}
.y7b{bottom:380.386667pt;}
.y4f{bottom:385.186667pt;}
.y27{bottom:385.346667pt;}
.y7a{bottom:399.906667pt;}
.y26{bottom:404.706667pt;}
.y79{bottom:419.266667pt;}
.y4e{bottom:424.066667pt;}
.y25{bottom:424.226667pt;}
.y78{bottom:438.626667pt;}
.y4d{bottom:440.226667pt;}
.y24{bottom:443.586667pt;}
.y77{bottom:457.986667pt;}
.y23{bottom:462.946667pt;}
.y76{bottom:477.346667pt;}
.y22{bottom:482.306667pt;}
.y75{bottom:496.866667pt;}
.y9c{bottom:500.546667pt;}
.y21{bottom:501.666667pt;}
.y74{bottom:516.226667pt;}
.y9b{bottom:519.426667pt;}
.y20{bottom:521.186667pt;}
.y73{bottom:535.586667pt;}
.y9a{bottom:537.053333pt;}
.y1f{bottom:540.573333pt;}
.y99{bottom:554.653333pt;}
.y72{bottom:554.973333pt;}
.y1e{bottom:559.933333pt;}
.y98{bottom:572.253333pt;}
.y71{bottom:574.493333pt;}
.y1d{bottom:579.293333pt;}
.y97{bottom:590.013333pt;}
.y70{bottom:593.853333pt;}
.y1c{bottom:598.813333pt;}
.y96{bottom:607.613333pt;}
.y4c{bottom:609.053333pt;}
.y6f{bottom:613.213333pt;}
.y1b{bottom:618.173333pt;}
.y95{bottom:625.213333pt;}
.y4b{bottom:628.413333pt;}
.y6e{bottom:632.573333pt;}
.y1a{bottom:637.533333pt;}
.y94{bottom:642.813333pt;}
.y4a{bottom:647.773333pt;}
.y6d{bottom:651.933333pt;}
.y19{bottom:656.893333pt;}
.y93{bottom:660.413333pt;}
.y49{bottom:667.133333pt;}
.y6c{bottom:671.453333pt;}
.y18{bottom:676.253333pt;}
.y92{bottom:678.173333pt;}
.y48{bottom:686.653333pt;}
.y6b{bottom:690.813333pt;}
.y17{bottom:695.773333pt;}
.y47{bottom:706.013333pt;}
.y6a{bottom:710.173333pt;}
.y91{bottom:713.373333pt;}
.y16{bottom:715.133333pt;}
.y46{bottom:725.373333pt;}
.y69{bottom:729.533333pt;}
.y90{bottom:732.733333pt;}
.y15{bottom:734.493333pt;}
.y45{bottom:744.893333pt;}
.y68{bottom:749.053333pt;}
.y8f{bottom:752.093333pt;}
.y14{bottom:753.853333pt;}
.y44{bottom:765.373333pt;}
.y67{bottom:768.413333pt;}
.y8e{bottom:771.453333pt;}
.y13{bottom:773.213333pt;}
.y43{bottom:785.733333pt;}
.y66{bottom:787.813333pt;}
.y8d{bottom:791.013333pt;}
.y12{bottom:792.773333pt;}
.y42{bottom:806.213333pt;}
.y65{bottom:807.173333pt;}
.y8c{bottom:810.373333pt;}
.y11{bottom:812.133333pt;}
.y64{bottom:826.533333pt;}
.y41{bottom:826.693333pt;}
.y8b{bottom:829.733333pt;}
.y10{bottom:831.493333pt;}
.y63{bottom:846.053333pt;}
.y40{bottom:847.173333pt;}
.y8a{bottom:849.093333pt;}
.yf{bottom:850.853333pt;}
.y62{bottom:865.413333pt;}
.y3f{bottom:867.653333pt;}
.y89{bottom:868.613333pt;}
.ye{bottom:870.373333pt;}
.y61{bottom:884.773333pt;}
.y3e{bottom:887.973333pt;}
.yd{bottom:889.733333pt;}
.y60{bottom:904.133333pt;}
.y3d{bottom:907.333333pt;}
.yc{bottom:909.093333pt;}
.y5f{bottom:923.653333pt;}
.y3c{bottom:926.693333pt;}
.yb{bottom:928.453333pt;}
.y5e{bottom:943.973333pt;}
.y3b{bottom:946.053333pt;}
.ya{bottom:947.813333pt;}
.y5d{bottom:963.493333pt;}
.y3a{bottom:965.573333pt;}
.y9{bottom:967.333333pt;}
.y5c{bottom:983.813333pt;}
.y39{bottom:984.933333pt;}
.y8{bottom:989.413333pt;}
.y5b{bottom:1003.333333pt;}
.y38{bottom:1004.293333pt;}
.y7{bottom:1017.600000pt;}
.y37{bottom:1023.680000pt;}
.y2{bottom:1061.440000pt;}
.y1{bottom:1077.280000pt;}
.h6{height:4.512500pt;}
.h3{height:24.032000pt;}
.hd{height:31.840000pt;}
.he{height:33.440000pt;}
.h2{height:33.867188pt;}
.h9{height:41.543750pt;}
.hb{height:42.521250pt;}
.hc{height:43.038750pt;}
.hf{height:46.817187pt;}
.ha{height:51.893750pt;}
.h4{height:56.406250pt;}
.h5{height:58.563750pt;}
.h7{height:60.057813pt;}
.h8{height:75.410937pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:93.792000pt;}
.w6{width:126.752000pt;}
.w7{width:211.746667pt;}
.w5{width:271.386667pt;}
.w3{width:271.426667pt;}
.w8{width:294.746667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:1.120000pt;}
.x6{left:6.720000pt;}
.x14{left:76.960000pt;}
.x3{left:77.920000pt;}
.x8{left:85.151988pt;}
.x1{left:87.711988pt;}
.x18{left:113.631988pt;}
.x9{left:117.951988pt;}
.xa{left:119.871988pt;}
.xf{left:132.351988pt;}
.x11{left:197.946655pt;}
.x16{left:207.066667pt;}
.xd{left:220.666655pt;}
.x4{left:264.706667pt;}
.xe{left:273.986655pt;}
.x13{left:288.866655pt;}
.xc{left:299.586655pt;}
.x2{left:337.346655pt;}
.x5{left:350.146667pt;}
.xb{left:396.866655pt;}
.x17{left:422.173333pt;}
.x7{left:444.573333pt;}
.x12{left:661.893322pt;}
.x10{left:731.493322pt;}
}




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