
    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_c14c6498bb69b04212f33113.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_11b132288ee8db309f41a41c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_6a97efb641c06bd4e5f07208.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_4fec8e0f74f077814a0ba4c7.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_4cfa486af82df74952a3b6ac.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.056641;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_ceab3fccac4c862993f71947.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.056641;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_d72e2550db11125c3ef9276d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.853027;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_23f67e537e837aee57c7a436.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.893555;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_683885cbcca151864e3b8e94.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.977051;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_7b95f21f87fcb5a9063cad0f.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.202148;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);}
.v3{vertical-align:-153.000000px;}
.v2{vertical-align:-85.500000px;}
.v4{vertical-align:-58.500000px;}
.v8{vertical-align:-40.500000px;}
.v6{vertical-align:-27.000000px;}
.va{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:27.000000px;}
.v7{vertical-align:40.500000px;}
.v5{vertical-align:58.500000px;}
.v1{vertical-align:85.500000px;}
.ls1e{letter-spacing:-4.332000px;}
.ls1a{letter-spacing:-4.218000px;}
.ls11{letter-spacing:-1.800000px;}
.ls20{letter-spacing:-1.320000px;}
.ls17{letter-spacing:-1.164000px;}
.ls15{letter-spacing:-1.134000px;}
.ls1c{letter-spacing:-1.128000px;}
.ls10{letter-spacing:-0.972000px;}
.ls19{letter-spacing:-0.954000px;}
.ls21{letter-spacing:-0.321000px;}
.ls13{letter-spacing:-0.279000px;}
.lse{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.150000px;}
.ls14{letter-spacing:0.279000px;}
.lsd{letter-spacing:0.337500px;}
.ls3{letter-spacing:0.375000px;}
.ls9{letter-spacing:0.517500px;}
.ls5{letter-spacing:0.555000px;}
.ls6{letter-spacing:0.576450px;}
.ls2{letter-spacing:0.615000px;}
.ls0{letter-spacing:0.750000px;}
.lsa{letter-spacing:0.785550px;}
.lsb{letter-spacing:0.835500px;}
.ls1{letter-spacing:0.870000px;}
.lsc{letter-spacing:0.903000px;}
.lsf{letter-spacing:1.086000px;}
.ls4{letter-spacing:1.137000px;}
.ls7{letter-spacing:1.264500px;}
.ls1b{letter-spacing:1.542000px;}
.ls16{letter-spacing:2.178000px;}
.ls12{letter-spacing:2.250000px;}
.ls1f{letter-spacing:2.856000px;}
.ls18{letter-spacing:3.054000px;}
.ls8{letter-spacing:33.690000px;}
.sc_{text-shadow:none;}
.sc3{text-shadow:-0.015em 0 rgb(23,55,94),0 0.015em rgb(23,55,94),0.015em 0 rgb(23,55,94),0 -0.015em  rgb(23,55,94);}
.sc2{text-shadow:-0.015em 0 rgb(0,176,80),0 0.015em rgb(0,176,80),0.015em 0 rgb(0,176,80),0 -0.015em  rgb(0,176,80);}
.sc1{text-shadow:-0.015em 0 rgb(102,153,0),0 0.015em rgb(102,153,0),0.015em 0 rgb(102,153,0),0 -0.015em  rgb(102,153,0);}
.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;}
.sc3{-webkit-text-stroke:0.015em rgb(23,55,94);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(0,176,80);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(102,153,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-130.500000px;}
.wsc{word-spacing:-90.000000px;}
.ws1{word-spacing:-70.875000px;}
.ws0{word-spacing:-47.250000px;}
.ws12{word-spacing:-44.679000px;}
.ws10{word-spacing:-41.662500px;}
.wsf{word-spacing:-40.491000px;}
.ws13{word-spacing:-37.629000px;}
.ws14{word-spacing:-34.167000px;}
.wsd{word-spacing:-32.904000px;}
.ws18{word-spacing:-32.662500px;}
.ws4{word-spacing:-32.625000px;}
.wsb{word-spacing:-32.346000px;}
.ws1b{word-spacing:-32.341500px;}
.ws1a{word-spacing:-31.342500px;}
.wsa{word-spacing:-22.537500px;}
.ws6{word-spacing:-22.500000px;}
.ws7{word-spacing:-20.700000px;}
.ws19{word-spacing:-13.699050px;}
.ws9{word-spacing:-4.681500px;}
.ws11{word-spacing:-4.299000px;}
.ws2{word-spacing:-0.874500px;}
.ws3{word-spacing:-0.724950px;}
.ws8{word-spacing:-0.327000px;}
.ws1c{word-spacing:0.000000px;}
.ws17{word-spacing:1.623000px;}
.ws15{word-spacing:1.749000px;}
.ws16{word-spacing:1.864500px;}
.wse{word-spacing:3.091500px;}
._7{margin-left:-24.664500px;}
._3{margin-left:-22.464000px;}
._21{margin-left:-19.938900px;}
._a{margin-left:-18.899550px;}
._4{margin-left:-14.688000px;}
._b{margin-left:-12.817500px;}
._e{margin-left:-11.387400px;}
._11{margin-left:-10.084050px;}
._9{margin-left:-8.528700px;}
._c{margin-left:-6.460200px;}
._8{margin-left:-5.199600px;}
._14{margin-left:-4.176000px;}
._1{margin-left:-3.024000px;}
._6{margin-left:-1.728600px;}
._0{width:1.296000px;}
._12{width:2.306400px;}
._2{width:3.348000px;}
._15{width:4.739100px;}
._16{width:6.582600px;}
._19{width:8.422800px;}
._1c{width:9.656700px;}
._1f{width:11.084400px;}
._23{width:12.177000px;}
._1d{width:13.821900px;}
._1e{width:16.071600px;}
._18{width:30.565500px;}
._1a{width:33.990900px;}
._17{width:35.301450px;}
._1b{width:37.609500px;}
._20{width:41.485350px;}
._13{width:43.388700px;}
._f{width:45.160200px;}
._d{width:46.864800px;}
._10{width:47.928900px;}
._22{width:52.460700px;}
._5{width:106.843500px;}
.fca{color:transparent;}
.fc9{color:rgb(0,112,192);}
.fc8{color:rgb(231,110,10);}
.fc7{color:rgb(255,0,0);}
.fc6{color:rgb(255,102,0);}
.fc4{color:rgb(102,153,0);}
.fc3{color:rgb(60,111,226);}
.fc2{color:rgb(23,55,94);}
.fc5{color:rgb(0,176,80);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,32,96);}
.fsb{font-size:58.500000px;}
.fs9{font-size:90.000000px;}
.fsa{font-size:90.150000px;}
.fs5{font-size:130.500000px;}
.fs8{font-size:130.650000px;}
.fsd{font-size:166.500000px;}
.fsc{font-size:166.650000px;}
.fs3{font-size:189.000000px;}
.fs6{font-size:198.000000px;}
.fse{font-size:265.500000px;}
.fs7{font-size:265.650000px;}
.fs2{font-size:283.500000px;}
.fs4{font-size:283.650000px;}
.fs0{font-size:432.000000px;}
.fs1{font-size:432.150000px;}
.y0{bottom:0.000000px;}
.y1f{bottom:75.450000px;}
.y13{bottom:780.450000px;}
.y12{bottom:819.825000px;}
.y11{bottom:859.200000px;}
.y10{bottom:898.575000px;}
.yf{bottom:937.995000px;}
.ye{bottom:978.495000px;}
.yd{bottom:1017.855000px;}
.yc{bottom:1057.230000px;}
.yb{bottom:1096.650000px;}
.ya{bottom:1136.025000px;}
.y9{bottom:1176.525000px;}
.y8{bottom:1265.925000px;}
.y36{bottom:1869.975000px;}
.y35{bottom:1909.350000px;}
.y34{bottom:1948.725000px;}
.y33{bottom:1989.270000px;}
.y32{bottom:2068.005000px;}
.y31{bottom:2107.395000px;}
.y30{bottom:2146.770000px;}
.y2f{bottom:2187.300000px;}
.y7{bottom:2280.330000px;}
.y2d{bottom:2996.445000px;}
.y2c{bottom:3035.850000px;}
.y2b{bottom:3075.225000px;}
.y2a{bottom:3115.725000px;}
.y29{bottom:3155.100000px;}
.y28{bottom:3194.475000px;}
.y27{bottom:3233.880000px;}
.y26{bottom:3273.255000px;}
.y25{bottom:3313.755000px;}
.y24{bottom:3353.130000px;}
.y23{bottom:3392.550000px;}
.y22{bottom:3431.925000px;}
.y21{bottom:3471.300000px;}
.y20{bottom:3511.800000px;}
.y2e{bottom:3604.575000px;}
.y1e{bottom:3769.905000px;}
.y1d{bottom:3820.530000px;}
.y1c{bottom:3871.155000px;}
.y1b{bottom:3920.700000px;}
.y1a{bottom:3971.325000px;}
.y19{bottom:4021.950000px;}
.y18{bottom:4072.605000px;}
.y17{bottom:4123.230000px;}
.y16{bottom:4172.730000px;}
.y15{bottom:4223.355000px;}
.y14{bottom:4274.025000px;}
.y6{bottom:4442.925000px;}
.y5{bottom:4502.550000px;}
.y4{bottom:4552.080000px;}
.y3{bottom:4636.455000px;}
.y2{bottom:4729.875000px;}
.y1{bottom:4859.250000px;}
.h4{height:104.695313px;}
.h6{height:109.727051px;}
.h7{height:109.853174px;}
.h9{height:109.981934px;}
.h8{height:116.173828px;}
.hb{height:139.996582px;}
.ha{height:140.122705px;}
.hc{height:170.483643px;}
.h3{height:222.174316px;}
.hd{height:223.237793px;}
.h5{height:223.363916px;}
.h1{height:312.398438px;}
.h2{height:312.506909px;}
.h0{height:5017.500000px;}
.w2{width:3571.874947px;}
.w0{width:3571.875000px;}
.w1{width:3572.250000px;}
.x0{left:0.000000px;}
.x3{left:293.069947px;}
.xa{left:301.769947px;}
.x5{left:658.424947px;}
.xb{left:700.874947px;}
.x2{left:734.954947px;}
.x6{left:759.299947px;}
.xd{left:967.199947px;}
.x1{left:969.449947px;}
.xc{left:1205.924947px;}
.x8{left:1303.199947px;}
.x7{left:1319.399947px;}
.x4{left:1352.324947px;}
.xe{left:1354.349947px;}
.x9{left:1446.974947px;}
@media print{
.v3{vertical-align:-136.000000pt;}
.v2{vertical-align:-76.000000pt;}
.v4{vertical-align:-52.000000pt;}
.v8{vertical-align:-36.000000pt;}
.v6{vertical-align:-24.000000pt;}
.va{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:24.000000pt;}
.v7{vertical-align:36.000000pt;}
.v5{vertical-align:52.000000pt;}
.v1{vertical-align:76.000000pt;}
.ls1e{letter-spacing:-3.850667pt;}
.ls1a{letter-spacing:-3.749333pt;}
.ls11{letter-spacing:-1.600000pt;}
.ls20{letter-spacing:-1.173333pt;}
.ls17{letter-spacing:-1.034667pt;}
.ls15{letter-spacing:-1.008000pt;}
.ls1c{letter-spacing:-1.002667pt;}
.ls10{letter-spacing:-0.864000pt;}
.ls19{letter-spacing:-0.848000pt;}
.ls21{letter-spacing:-0.285333pt;}
.ls13{letter-spacing:-0.248000pt;}
.lse{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.133333pt;}
.ls14{letter-spacing:0.248000pt;}
.lsd{letter-spacing:0.300000pt;}
.ls3{letter-spacing:0.333333pt;}
.ls9{letter-spacing:0.460000pt;}
.ls5{letter-spacing:0.493333pt;}
.ls6{letter-spacing:0.512400pt;}
.ls2{letter-spacing:0.546667pt;}
.ls0{letter-spacing:0.666667pt;}
.lsa{letter-spacing:0.698267pt;}
.lsb{letter-spacing:0.742667pt;}
.ls1{letter-spacing:0.773333pt;}
.lsc{letter-spacing:0.802667pt;}
.lsf{letter-spacing:0.965333pt;}
.ls4{letter-spacing:1.010667pt;}
.ls7{letter-spacing:1.124000pt;}
.ls1b{letter-spacing:1.370667pt;}
.ls16{letter-spacing:1.936000pt;}
.ls12{letter-spacing:2.000000pt;}
.ls1f{letter-spacing:2.538667pt;}
.ls18{letter-spacing:2.714667pt;}
.ls8{letter-spacing:29.946667pt;}
.ws5{word-spacing:-116.000000pt;}
.wsc{word-spacing:-80.000000pt;}
.ws1{word-spacing:-63.000000pt;}
.ws0{word-spacing:-42.000000pt;}
.ws12{word-spacing:-39.714667pt;}
.ws10{word-spacing:-37.033333pt;}
.wsf{word-spacing:-35.992000pt;}
.ws13{word-spacing:-33.448000pt;}
.ws14{word-spacing:-30.370667pt;}
.wsd{word-spacing:-29.248000pt;}
.ws18{word-spacing:-29.033333pt;}
.ws4{word-spacing:-29.000000pt;}
.wsb{word-spacing:-28.752000pt;}
.ws1b{word-spacing:-28.748000pt;}
.ws1a{word-spacing:-27.860000pt;}
.wsa{word-spacing:-20.033333pt;}
.ws6{word-spacing:-20.000000pt;}
.ws7{word-spacing:-18.400000pt;}
.ws19{word-spacing:-12.176933pt;}
.ws9{word-spacing:-4.161333pt;}
.ws11{word-spacing:-3.821333pt;}
.ws2{word-spacing:-0.777333pt;}
.ws3{word-spacing:-0.644400pt;}
.ws8{word-spacing:-0.290667pt;}
.ws1c{word-spacing:0.000000pt;}
.ws17{word-spacing:1.442667pt;}
.ws15{word-spacing:1.554667pt;}
.ws16{word-spacing:1.657333pt;}
.wse{word-spacing:2.748000pt;}
._7{margin-left:-21.924000pt;}
._3{margin-left:-19.968000pt;}
._21{margin-left:-17.723467pt;}
._a{margin-left:-16.799600pt;}
._4{margin-left:-13.056000pt;}
._b{margin-left:-11.393333pt;}
._e{margin-left:-10.122133pt;}
._11{margin-left:-8.963600pt;}
._9{margin-left:-7.581067pt;}
._c{margin-left:-5.742400pt;}
._8{margin-left:-4.621867pt;}
._14{margin-left:-3.712000pt;}
._1{margin-left:-2.688000pt;}
._6{margin-left:-1.536533pt;}
._0{width:1.152000pt;}
._12{width:2.050133pt;}
._2{width:2.976000pt;}
._15{width:4.212533pt;}
._16{width:5.851200pt;}
._19{width:7.486933pt;}
._1c{width:8.583733pt;}
._1f{width:9.852800pt;}
._23{width:10.824000pt;}
._1d{width:12.286133pt;}
._1e{width:14.285867pt;}
._18{width:27.169333pt;}
._1a{width:30.214133pt;}
._17{width:31.379067pt;}
._1b{width:33.430667pt;}
._20{width:36.875867pt;}
._13{width:38.567733pt;}
._f{width:40.142400pt;}
._d{width:41.657600pt;}
._10{width:42.603467pt;}
._22{width:46.631733pt;}
._5{width:94.972000pt;}
.fsb{font-size:52.000000pt;}
.fs9{font-size:80.000000pt;}
.fsa{font-size:80.133333pt;}
.fs5{font-size:116.000000pt;}
.fs8{font-size:116.133333pt;}
.fsd{font-size:148.000000pt;}
.fsc{font-size:148.133333pt;}
.fs3{font-size:168.000000pt;}
.fs6{font-size:176.000000pt;}
.fse{font-size:236.000000pt;}
.fs7{font-size:236.133333pt;}
.fs2{font-size:252.000000pt;}
.fs4{font-size:252.133333pt;}
.fs0{font-size:384.000000pt;}
.fs1{font-size:384.133333pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:67.066667pt;}
.y13{bottom:693.733333pt;}
.y12{bottom:728.733333pt;}
.y11{bottom:763.733333pt;}
.y10{bottom:798.733333pt;}
.yf{bottom:833.773333pt;}
.ye{bottom:869.773333pt;}
.yd{bottom:904.760000pt;}
.yc{bottom:939.760000pt;}
.yb{bottom:974.800000pt;}
.ya{bottom:1009.800000pt;}
.y9{bottom:1045.800000pt;}
.y8{bottom:1125.266667pt;}
.y36{bottom:1662.200000pt;}
.y35{bottom:1697.200000pt;}
.y34{bottom:1732.200000pt;}
.y33{bottom:1768.240000pt;}
.y32{bottom:1838.226667pt;}
.y31{bottom:1873.240000pt;}
.y30{bottom:1908.240000pt;}
.y2f{bottom:1944.266667pt;}
.y7{bottom:2026.960000pt;}
.y2d{bottom:2663.506667pt;}
.y2c{bottom:2698.533333pt;}
.y2b{bottom:2733.533333pt;}
.y2a{bottom:2769.533333pt;}
.y29{bottom:2804.533333pt;}
.y28{bottom:2839.533333pt;}
.y27{bottom:2874.560000pt;}
.y26{bottom:2909.560000pt;}
.y25{bottom:2945.560000pt;}
.y24{bottom:2980.560000pt;}
.y23{bottom:3015.600000pt;}
.y22{bottom:3050.600000pt;}
.y21{bottom:3085.600000pt;}
.y20{bottom:3121.600000pt;}
.y2e{bottom:3204.066667pt;}
.y1e{bottom:3351.026667pt;}
.y1d{bottom:3396.026667pt;}
.y1c{bottom:3441.026667pt;}
.y1b{bottom:3485.066667pt;}
.y1a{bottom:3530.066667pt;}
.y19{bottom:3575.066667pt;}
.y18{bottom:3620.093333pt;}
.y17{bottom:3665.093333pt;}
.y16{bottom:3709.093333pt;}
.y15{bottom:3754.093333pt;}
.y14{bottom:3799.133333pt;}
.y6{bottom:3949.266667pt;}
.y5{bottom:4002.266667pt;}
.y4{bottom:4046.293333pt;}
.y3{bottom:4121.293333pt;}
.y2{bottom:4204.333333pt;}
.y1{bottom:4319.333333pt;}
.h4{height:93.062500pt;}
.h6{height:97.535156pt;}
.h7{height:97.647266pt;}
.h9{height:97.761719pt;}
.h8{height:103.265625pt;}
.hb{height:124.441406pt;}
.ha{height:124.553516pt;}
.hc{height:151.541016pt;}
.h3{height:197.488281pt;}
.hd{height:198.433594pt;}
.h5{height:198.545703pt;}
.h1{height:277.687500pt;}
.h2{height:277.783919pt;}
.h0{height:4460.000000pt;}
.w2{width:3174.999953pt;}
.w0{width:3175.000000pt;}
.w1{width:3175.333333pt;}
.x0{left:0.000000pt;}
.x3{left:260.506619pt;}
.xa{left:268.239953pt;}
.x5{left:585.266619pt;}
.xb{left:622.999953pt;}
.x2{left:653.293286pt;}
.x6{left:674.933286pt;}
.xd{left:859.733286pt;}
.x1{left:861.733286pt;}
.xc{left:1071.933286pt;}
.x8{left:1158.399953pt;}
.x7{left:1172.799953pt;}
.x4{left:1202.066619pt;}
.xe{left:1203.866619pt;}
.x9{left:1286.199953pt;}
}




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