
    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_df915f7342c4ccd4c3bf538c.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_90e32b3647b73fc09ac3c788.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_43bf084085d187fd14ca7a0e.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_f7184b865abaf61226629d49.woff')format("woff");}.ff4{font-family:ff4;line-height:1.172852;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_038ab372a8b78e2cbbde1d4e.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_54b6fc8187b9f8b0a494cf02.woff')format("woff");}.ff6{font-family:ff6;line-height:0.944824;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_eaa494c885ba39abc400b7ff.woff')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_ccd924f80c414d3ca97fd19c.woff')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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_cc1be2a88fe9530a50b3814f.woff')format("woff");}.ff9{font-family:ff9;line-height:0.944824;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_0217edb54d422198e0285de8.woff')format("woff");}.ffa{font-family:ffa;line-height:1.172852;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:ffb;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.woff')format("woff");}.ffb{font-family:ffb;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);}
.v3{vertical-align:-27.360000px;}
.v1{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.v4{vertical-align:27.360000px;}
.ls7{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.144000px;}
.lsb{letter-spacing:-0.058320px;}
.ls6{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.060600px;}
.ls5{letter-spacing:0.174240px;}
.ls2{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.720000px;}
.ls10{letter-spacing:15.840000px;}
.ls8{letter-spacing:22.320000px;}
.ls9{letter-spacing:24.480000px;}
.ls3{letter-spacing:45.360000px;}
.ls4{letter-spacing:47.700000px;}
.lsf{letter-spacing:54.144000px;}
.ls1{letter-spacing:77.309760px;}
.ls0{letter-spacing:111.029760px;}
.lse{letter-spacing:169.344000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.856000px;}
.ws2{word-spacing:-13.505760px;}
.ws5{word-spacing:-13.447440px;}
.ws1{word-spacing:-12.060000px;}
.ws3{word-spacing:0.000000px;}
._0{margin-left:-1.188000px;}
._1{width:1.053360px;}
._15{width:2.520000px;}
._3{width:4.068000px;}
._2{width:5.304000px;}
._1b{width:6.384000px;}
._19{width:7.848000px;}
._7{width:9.828000px;}
._6{width:10.944000px;}
._12{width:12.288000px;}
._25{width:13.560000px;}
._4{width:15.192000px;}
._1a{width:16.514640px;}
._22{width:19.073280px;}
._9{width:20.244000px;}
._8{width:21.312000px;}
._1d{width:22.752000px;}
._1e{width:24.336000px;}
._1f{width:25.596000px;}
._20{width:26.640000px;}
._2a{width:27.972000px;}
._16{width:29.280000px;}
._26{width:30.578640px;}
._23{width:31.608000px;}
._24{width:32.616000px;}
._5{width:33.696000px;}
._21{width:35.064000px;}
._14{width:37.728000px;}
._13{width:38.952000px;}
._1c{width:39.998640px;}
._d{width:42.048000px;}
._e{width:43.128000px;}
._a{width:45.048000px;}
._11{width:46.224000px;}
._2c{width:52.272000px;}
._17{width:57.168000px;}
._18{width:58.502640px;}
._c{width:64.440000px;}
._b{width:65.484000px;}
._28{width:69.672000px;}
._29{width:70.872000px;}
._2b{width:77.184000px;}
._f{width:90.576000px;}
._10{width:92.088000px;}
._27{width:99.072000px;}
.fc5{color:rgb(5,99,193);}
.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(31,56,100);}
.fs3{font-size:5.760000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y4c{bottom:3.960000px;}
.y5{bottom:10.260000px;}
.y6{bottom:11.340000px;}
.y4f{bottom:24.660000px;}
.y7{bottom:55.440000px;}
.y4{bottom:57.600000px;}
.y3a{bottom:110.196000px;}
.y39{bottom:115.416000px;}
.y6a{bottom:121.716000px;}
.y38{bottom:128.556000px;}
.y37{bottom:133.776000px;}
.y69{bottom:142.416000px;}
.y36{bottom:146.736000px;}
.y68{bottom:163.110000px;}
.y4a{bottom:165.090000px;}
.y49{bottom:170.310000px;}
.y48{bottom:183.450000px;}
.y67{bottom:183.810000px;}
.y47{bottom:201.810000px;}
.y66{bottom:204.510000px;}
.y46{bottom:219.990000px;}
.y45{bottom:225.210000px;}
.y35{bottom:228.990000px;}
.y44{bottom:238.350000px;}
.y65{bottom:245.910000px;}
.y34{bottom:249.690000px;}
.y64{bottom:266.610000px;}
.y33{bottom:270.390000px;}
.y63{bottom:287.310000px;}
.y32{bottom:291.090000px;}
.y62{bottom:308.010000px;}
.y30{bottom:311.790000px;}
.y31{bottom:318.630000px;}
.y61{bottom:328.710000px;}
.y2f{bottom:332.490000px;}
.y60{bottom:349.455000px;}
.y2d{bottom:353.235000px;}
.y2e{bottom:360.075000px;}
.y5f{bottom:370.155000px;}
.y2c{bottom:373.935000px;}
.y5e{bottom:390.855000px;}
.y2b{bottom:394.635000px;}
.y5d{bottom:411.555000px;}
.y2a{bottom:415.335000px;}
.y5c{bottom:432.255000px;}
.y29{bottom:436.035000px;}
.y5b{bottom:452.955000px;}
.y28{bottom:456.555000px;}
.y5a{bottom:473.655000px;}
.y27{bottom:477.255000px;}
.y59{bottom:494.355000px;}
.y26{bottom:497.955000px;}
.y58{bottom:515.055000px;}
.y25{bottom:518.655000px;}
.y43{bottom:525.495000px;}
.y57{bottom:535.755000px;}
.y24{bottom:539.355000px;}
.y56{bottom:556.455000px;}
.y23{bottom:560.055000px;}
.y55{bottom:577.155000px;}
.y22{bottom:580.755000px;}
.y54{bottom:597.855000px;}
.y21{bottom:601.455000px;}
.y53{bottom:618.585000px;}
.y20{bottom:622.185000px;}
.y52{bottom:639.285000px;}
.y1f{bottom:642.885000px;}
.y42{bottom:649.725000px;}
.y51{bottom:659.985000px;}
.y1e{bottom:663.585000px;}
.y50{bottom:677.445000px;}
.y1d{bottom:684.285000px;}
.y1c{bottom:704.985000px;}
.y4e{bottom:719.565000px;}
.y1b{bottom:725.685000px;}
.y1a{bottom:746.385000px;}
.y41{bottom:753.225000px;}
.y4d{bottom:761.685000px;}
.y19{bottom:767.085000px;}
.y4b{bottom:783.105000px;}
.y18{bottom:787.785000px;}
.y17{bottom:808.485000px;}
.y16{bottom:829.185000px;}
.y15{bottom:849.885000px;}
.y14{bottom:870.630000px;}
.y13{bottom:891.330000px;}
.y12{bottom:912.030000px;}
.y11{bottom:932.730000px;}
.y10{bottom:953.430000px;}
.yf{bottom:974.130000px;}
.y40{bottom:994.830000px;}
.ye{bottom:1001.670000px;}
.yd{bottom:1015.530000px;}
.y3f{bottom:1036.230000px;}
.yc{bottom:1042.170000px;}
.yb{bottom:1056.930000px;}
.y3e{bottom:1077.630000px;}
.ya{bottom:1079.070000px;}
.y3d{bottom:1098.330000px;}
.y9{bottom:1106.610000px;}
.y3c{bottom:1119.030000px;}
.y8{bottom:1134.150000px;}
.y3b{bottom:1139.760000px;}
.y3{bottom:1185.120000px;}
.y2{bottom:1200.780000px;}
.y1{bottom:1216.260000px;}
.h6{height:5.076563px;}
.h10{height:20.700000px;}
.h3{height:27.036000px;}
.h9{height:34.036523px;}
.h2{height:38.100586px;}
.he{height:38.671172px;}
.h11{height:41.400000px;}
.ha{height:42.516211px;}
.h8{height:50.800781px;}
.hc{height:52.171875px;}
.hd{height:59.343750px;}
.hf{height:59.439023px;}
.h4{height:63.457031px;}
.h5{height:65.884219px;}
.h7{height:67.565039px;}
.hb{height:69.876211px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:105.516000px;}
.w7{width:113.616000px;}
.w9{width:233.130000px;}
.w5{width:305.310000px;}
.w3{width:305.355000px;}
.w8{width:392.655000px;}
.w6{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:7.560000px;}
.x26{left:23.796000px;}
.x20{left:39.636000px;}
.x23{left:41.256000px;}
.x25{left:50.976000px;}
.x24{left:54.396000px;}
.x4{left:87.660000px;}
.x9{left:95.795987px;}
.xf{left:97.055987px;}
.x1{left:99.395987px;}
.x19{left:100.655987px;}
.xd{left:104.435987px;}
.x2{left:122.615987px;}
.x12{left:127.655987px;}
.x27{left:138.275987px;}
.x13{left:148.895987px;}
.xa{left:169.049987px;}
.x21{left:202.530000px;}
.x1a{left:293.834973px;}
.x11{left:295.814987px;}
.x5{left:297.795000px;}
.x1b{left:299.954987px;}
.x10{left:304.274987px;}
.x18{left:311.834987px;}
.xb{left:316.154987px;}
.x3{left:378.434987px;}
.x6{left:393.915000px;}
.xe{left:407.234987px;}
.xc{left:446.474987px;}
.x1c{left:461.594973px;}
.x1d{left:467.744987px;}
.x8{left:500.145000px;}
.x22{left:595.905000px;}
.x14{left:642.884973px;}
.x15{left:649.004987px;}
.x1e{left:734.729973px;}
.x1f{left:740.849987px;}
.x16{left:786.929973px;}
.x17{left:793.049987px;}
@media print{
.v3{vertical-align:-24.320000pt;}
.v1{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.v4{vertical-align:24.320000pt;}
.ls7{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:-0.051840pt;}
.ls6{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.053867pt;}
.ls5{letter-spacing:0.154880pt;}
.ls2{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.640000pt;}
.ls10{letter-spacing:14.080000pt;}
.ls8{letter-spacing:19.840000pt;}
.ls9{letter-spacing:21.760000pt;}
.ls3{letter-spacing:40.320000pt;}
.ls4{letter-spacing:42.400000pt;}
.lsf{letter-spacing:48.128000pt;}
.ls1{letter-spacing:68.719787pt;}
.ls0{letter-spacing:98.693120pt;}
.lse{letter-spacing:150.528000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.872000pt;}
.ws2{word-spacing:-12.005120pt;}
.ws5{word-spacing:-11.953280pt;}
.ws1{word-spacing:-10.720000pt;}
.ws3{word-spacing:0.000000pt;}
._0{margin-left:-1.056000pt;}
._1{width:0.936320pt;}
._15{width:2.240000pt;}
._3{width:3.616000pt;}
._2{width:4.714667pt;}
._1b{width:5.674667pt;}
._19{width:6.976000pt;}
._7{width:8.736000pt;}
._6{width:9.728000pt;}
._12{width:10.922667pt;}
._25{width:12.053333pt;}
._4{width:13.504000pt;}
._1a{width:14.679680pt;}
._22{width:16.954027pt;}
._9{width:17.994667pt;}
._8{width:18.944000pt;}
._1d{width:20.224000pt;}
._1e{width:21.632000pt;}
._1f{width:22.752000pt;}
._20{width:23.680000pt;}
._2a{width:24.864000pt;}
._16{width:26.026667pt;}
._26{width:27.181013pt;}
._23{width:28.096000pt;}
._24{width:28.992000pt;}
._5{width:29.952000pt;}
._21{width:31.168000pt;}
._14{width:33.536000pt;}
._13{width:34.624000pt;}
._1c{width:35.554347pt;}
._d{width:37.376000pt;}
._e{width:38.336000pt;}
._a{width:40.042667pt;}
._11{width:41.088000pt;}
._2c{width:46.464000pt;}
._17{width:50.816000pt;}
._18{width:52.002347pt;}
._c{width:57.280000pt;}
._b{width:58.208000pt;}
._28{width:61.930667pt;}
._29{width:62.997333pt;}
._2b{width:68.608000pt;}
._f{width:80.512000pt;}
._10{width:81.856000pt;}
._27{width:88.064000pt;}
.fs3{font-size:5.120000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y4c{bottom:3.520000pt;}
.y5{bottom:9.120000pt;}
.y6{bottom:10.080000pt;}
.y4f{bottom:21.920000pt;}
.y7{bottom:49.280000pt;}
.y4{bottom:51.200000pt;}
.y3a{bottom:97.952000pt;}
.y39{bottom:102.592000pt;}
.y6a{bottom:108.192000pt;}
.y38{bottom:114.272000pt;}
.y37{bottom:118.912000pt;}
.y69{bottom:126.592000pt;}
.y36{bottom:130.432000pt;}
.y68{bottom:144.986667pt;}
.y4a{bottom:146.746667pt;}
.y49{bottom:151.386667pt;}
.y48{bottom:163.066667pt;}
.y67{bottom:163.386667pt;}
.y47{bottom:179.386667pt;}
.y66{bottom:181.786667pt;}
.y46{bottom:195.546667pt;}
.y45{bottom:200.186667pt;}
.y35{bottom:203.546667pt;}
.y44{bottom:211.866667pt;}
.y65{bottom:218.586667pt;}
.y34{bottom:221.946667pt;}
.y64{bottom:236.986667pt;}
.y33{bottom:240.346667pt;}
.y63{bottom:255.386667pt;}
.y32{bottom:258.746667pt;}
.y62{bottom:273.786667pt;}
.y30{bottom:277.146667pt;}
.y31{bottom:283.226667pt;}
.y61{bottom:292.186667pt;}
.y2f{bottom:295.546667pt;}
.y60{bottom:310.626667pt;}
.y2d{bottom:313.986667pt;}
.y2e{bottom:320.066667pt;}
.y5f{bottom:329.026667pt;}
.y2c{bottom:332.386667pt;}
.y5e{bottom:347.426667pt;}
.y2b{bottom:350.786667pt;}
.y5d{bottom:365.826667pt;}
.y2a{bottom:369.186667pt;}
.y5c{bottom:384.226667pt;}
.y29{bottom:387.586667pt;}
.y5b{bottom:402.626667pt;}
.y28{bottom:405.826667pt;}
.y5a{bottom:421.026667pt;}
.y27{bottom:424.226667pt;}
.y59{bottom:439.426667pt;}
.y26{bottom:442.626667pt;}
.y58{bottom:457.826667pt;}
.y25{bottom:461.026667pt;}
.y43{bottom:467.106667pt;}
.y57{bottom:476.226667pt;}
.y24{bottom:479.426667pt;}
.y56{bottom:494.626667pt;}
.y23{bottom:497.826667pt;}
.y55{bottom:513.026667pt;}
.y22{bottom:516.226667pt;}
.y54{bottom:531.426667pt;}
.y21{bottom:534.626667pt;}
.y53{bottom:549.853333pt;}
.y20{bottom:553.053333pt;}
.y52{bottom:568.253333pt;}
.y1f{bottom:571.453333pt;}
.y42{bottom:577.533333pt;}
.y51{bottom:586.653333pt;}
.y1e{bottom:589.853333pt;}
.y50{bottom:602.173333pt;}
.y1d{bottom:608.253333pt;}
.y1c{bottom:626.653333pt;}
.y4e{bottom:639.613333pt;}
.y1b{bottom:645.053333pt;}
.y1a{bottom:663.453333pt;}
.y41{bottom:669.533333pt;}
.y4d{bottom:677.053333pt;}
.y19{bottom:681.853333pt;}
.y4b{bottom:696.093333pt;}
.y18{bottom:700.253333pt;}
.y17{bottom:718.653333pt;}
.y16{bottom:737.053333pt;}
.y15{bottom:755.453333pt;}
.y14{bottom:773.893333pt;}
.y13{bottom:792.293333pt;}
.y12{bottom:810.693333pt;}
.y11{bottom:829.093333pt;}
.y10{bottom:847.493333pt;}
.yf{bottom:865.893333pt;}
.y40{bottom:884.293333pt;}
.ye{bottom:890.373333pt;}
.yd{bottom:902.693333pt;}
.y3f{bottom:921.093333pt;}
.yc{bottom:926.373333pt;}
.yb{bottom:939.493333pt;}
.y3e{bottom:957.893333pt;}
.ya{bottom:959.173333pt;}
.y3d{bottom:976.293333pt;}
.y9{bottom:983.653333pt;}
.y3c{bottom:994.693333pt;}
.y8{bottom:1008.133333pt;}
.y3b{bottom:1013.120000pt;}
.y3{bottom:1053.440000pt;}
.y2{bottom:1067.360000pt;}
.y1{bottom:1081.120000pt;}
.h6{height:4.512500pt;}
.h10{height:18.400000pt;}
.h3{height:24.032000pt;}
.h9{height:30.254687pt;}
.h2{height:33.867188pt;}
.he{height:34.374375pt;}
.h11{height:36.800000pt;}
.ha{height:37.792187pt;}
.h8{height:45.156250pt;}
.hc{height:46.375000pt;}
.hd{height:52.750000pt;}
.hf{height:52.834688pt;}
.h4{height:56.406250pt;}
.h5{height:58.563750pt;}
.h7{height:60.057813pt;}
.hb{height:62.112188pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:93.792000pt;}
.w7{width:100.992000pt;}
.w9{width:207.226667pt;}
.w5{width:271.386667pt;}
.w3{width:271.426667pt;}
.w8{width:349.026667pt;}
.w6{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:6.720000pt;}
.x26{left:21.152000pt;}
.x20{left:35.232000pt;}
.x23{left:36.672000pt;}
.x25{left:45.312000pt;}
.x24{left:48.352000pt;}
.x4{left:77.920000pt;}
.x9{left:85.151988pt;}
.xf{left:86.271988pt;}
.x1{left:88.351988pt;}
.x19{left:89.471988pt;}
.xd{left:92.831988pt;}
.x2{left:108.991988pt;}
.x12{left:113.471988pt;}
.x27{left:122.911988pt;}
.x13{left:132.351988pt;}
.xa{left:150.266655pt;}
.x21{left:180.026667pt;}
.x1a{left:261.186643pt;}
.x11{left:262.946655pt;}
.x5{left:264.706667pt;}
.x1b{left:266.626655pt;}
.x10{left:270.466655pt;}
.x18{left:277.186655pt;}
.xb{left:281.026655pt;}
.x3{left:336.386655pt;}
.x6{left:350.146667pt;}
.xe{left:361.986655pt;}
.xc{left:396.866655pt;}
.x1c{left:410.306643pt;}
.x1d{left:415.773322pt;}
.x8{left:444.573333pt;}
.x22{left:529.693333pt;}
.x14{left:571.453310pt;}
.x15{left:576.893322pt;}
.x1e{left:653.093310pt;}
.x1f{left:658.533322pt;}
.x16{left:699.493310pt;}
.x17{left:704.933322pt;}
}




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