
    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_b3668cee1af6630a49840463.woff2')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_e18a4c6962d376eb9c3553d7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.986328;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_172aca3fb25b9accb74f1f54.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')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_88b158e6bb4120dd71fb53d3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.986328;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_e8a6dea6ddc53f17e2f3f90c.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_4dc4b2a7bda05f0f0c770744.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_fc4431fc33d36eb1661a9f23.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.783691;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff9{font-family:ff9;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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_6059547d01c8dd4efa5d14e3.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_d01762e7d3fbf43551aca452.woff2')format("woff");}.ffc{font-family:ffc;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;}
.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.000000px;}
.v4{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v5{vertical-align:20.880000px;}
.v2{vertical-align:24.120000px;}
.ls6{letter-spacing:-0.360000px;}
.ls12{letter-spacing:-0.270000px;}
.ls5{letter-spacing:-0.180000px;}
.lsf{letter-spacing:-0.090000px;}
.lse{letter-spacing:-0.018720px;}
.ls16{letter-spacing:-0.009360px;}
.ls4{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.009360px;}
.lsb{letter-spacing:0.013320px;}
.ls3{letter-spacing:0.036000px;}
.ls1{letter-spacing:0.090000px;}
.ls7{letter-spacing:0.139800px;}
.ls15{letter-spacing:0.153600px;}
.ls0{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.198000px;}
.ls17{letter-spacing:0.306600px;}
.lsd{letter-spacing:0.378720px;}
.ls8{letter-spacing:46.286640px;}
.ls10{letter-spacing:114.326640px;}
.ls11{letter-spacing:117.566640px;}
.lsc{letter-spacing:137.726640px;}
.ls14{letter-spacing:140.966640px;}
.lsa{letter-spacing:160.766640px;}
.ls2{letter-spacing:922.530000px;}
.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;}
}
.ws3{word-spacing:-72.000000px;}
.wse{word-spacing:-47.889360px;}
.ws4{word-spacing:-18.000000px;}
.ws1{word-spacing:-15.210000px;}
.ws10{word-spacing:-15.183600px;}
.wsd{word-spacing:-15.043320px;}
.ws7{word-spacing:-15.030000px;}
.ws0{word-spacing:-14.850000px;}
.ws8{word-spacing:-13.500000px;}
.ws9{word-spacing:-13.140000px;}
.wsf{word-spacing:-12.150000px;}
.wsc{word-spacing:-11.979360px;}
.ws2{word-spacing:-11.970000px;}
.wsb{word-spacing:-11.951280px;}
.ws5{word-spacing:-10.530000px;}
.ws6{word-spacing:-9.720000px;}
.wsa{word-spacing:0.000000px;}
._12{margin-left:-6.372000px;}
._0{margin-left:-1.128960px;}
._3{width:1.062120px;}
._c{width:2.144280px;}
._7{width:3.246480px;}
._8{width:4.268520px;}
._a{width:5.651280px;}
._b{width:7.034040px;}
._d{width:8.777520px;}
._9{width:10.340640px;}
._11{width:11.903760px;}
._14{width:13.046040px;}
._13{width:16.330440px;}
._4{width:18.156240px;}
._15{width:19.899720px;}
._18{width:21.402720px;}
._6{width:22.484880px;}
._23{width:23.506920px;}
._f{width:24.649200px;}
._10{width:25.791480px;}
._19{width:27.174240px;}
._5{width:28.617120px;}
._1e{width:30.355920px;}
._1d{width:31.369800px;}
._17{width:32.691960px;}
._16{width:33.847560px;}
._20{width:34.929720px;}
._24{width:35.951760px;}
._25{width:37.033920px;}
._e{width:38.897640px;}
._22{width:40.340520px;}
._26{width:41.783400px;}
._1b{width:43.286400px;}
._1c{width:44.609040px;}
._1f{width:46.252080px;}
._27{width:47.973240px;}
._2b{width:49.541400px;}
._2a{width:60.480720px;}
._29{width:68.777280px;}
._28{width:69.799320px;}
._1a{width:77.494680px;}
._21{width:81.703080px;}
._1{width:302.788920px;}
._2{width:372.032040px;}
.fc7{color:rgb(71,71,71);}
.fc6{color:rgb(118,118,118);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(255,0,0);}
.fc5{color:rgb(5,99,193);}
.fc1{color:rgb(0,32,96);}
.fc4{color:rgb(0,112,192);}
.fc0{color:rgb(192,0,0);}
.fs8{font-size:6.120000px;}
.fsc{font-size:11.880000px;}
.fs3{font-size:29.880000px;}
.fsb{font-size:38.880000px;}
.fsa{font-size:42.120000px;}
.fs2{font-size:47.880000px;}
.fse{font-size:51.120000px;}
.fsd{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:96.120000px;}
.fs9{font-size:108.000000px;}
.fs5{font-size:132.120000px;}
.fs7{font-size:168.120000px;}
.y0{bottom:0.000000px;}
.y20{bottom:0.360000px;}
.y7{bottom:2.610000px;}
.y3f{bottom:2.880000px;}
.y3d{bottom:2.970000px;}
.y23{bottom:3.240000px;}
.y10{bottom:3.870000px;}
.y24{bottom:4.590000px;}
.y5{bottom:8.370000px;}
.yf4{bottom:16.380000px;}
.y6{bottom:16.470000px;}
.y3c{bottom:18.450000px;}
.y34{bottom:20.430000px;}
.yf{bottom:22.320000px;}
.yf3{bottom:30.180000px;}
.ye{bottom:33.210000px;}
.y3b{bottom:34.020000px;}
.y9f{bottom:35.640000px;}
.y33{bottom:37.710000px;}
.yf2{bottom:44.040000px;}
.y8{bottom:49.140000px;}
.y3a{bottom:49.500000px;}
.yd{bottom:51.690000px;}
.y32{bottom:54.990000px;}
.y44{bottom:60.030000px;}
.y39{bottom:65.070000px;}
.yc{bottom:65.820000px;}
.y31{bottom:72.180000px;}
.y4{bottom:73.530000px;}
.y43{bottom:75.600000px;}
.y38{bottom:80.580000px;}
.y30{bottom:89.460000px;}
.y42{bottom:91.080000px;}
.y37{bottom:96.150000px;}
.yb{bottom:103.710000px;}
.y11{bottom:103.980000px;}
.y41{bottom:106.650000px;}
.y2f{bottom:106.740000px;}
.yd8{bottom:110.520000px;}
.y36{bottom:111.630000px;}
.yd7{bottom:115.020000px;}
.y95{bottom:119.520000px;}
.y40{bottom:122.130000px;}
.y2e{bottom:123.930000px;}
.y9e{bottom:124.020000px;}
.yd6{bottom:124.380000px;}
.y51{bottom:127.980000px;}
.yd5{bottom:128.880000px;}
.y94{bottom:133.380000px;}
.ya{bottom:136.200000px;}
.y93{bottom:137.880000px;}
.ye7{bottom:138.150000px;}
.yd4{bottom:139.950000px;}
.y2d{bottom:141.210000px;}
.ye6{bottom:142.650000px;}
.y50{bottom:145.170000px;}
.y92{bottom:147.150000px;}
.y91{bottom:151.650000px;}
.ye5{bottom:151.920000px;}
.y2c{bottom:158.490000px;}
.y90{bottom:160.950000px;}
.y4f{bottom:162.480000px;}
.y8f{bottom:165.450000px;}
.ye4{bottom:165.810000px;}
.yeb{bottom:170.310000px;}
.y8e{bottom:174.810000px;}
.y2b{bottom:175.680000px;}
.yd3{bottom:175.800000px;}
.y9d{bottom:179.310000px;}
.ye3{bottom:179.580000px;}
.y4e{bottom:179.760000px;}
.yea{bottom:181.380000px;}
.ye2{bottom:184.080000px;}
.y8d{bottom:188.580000px;}
.y9c{bottom:190.380000px;}
.y2a{bottom:192.960000px;}
.yd2{bottom:192.990000px;}
.ye1{bottom:193.350000px;}
.y4d{bottom:196.950000px;}
.y8c{bottom:202.350000px;}
.ye0{bottom:207.210000px;}
.y29{bottom:210.240000px;}
.yd1{bottom:210.270000px;}
.ydf{bottom:211.710000px;}
.y4c{bottom:214.230000px;}
.y8b{bottom:216.210000px;}
.y8a{bottom:220.710000px;}
.yde{bottom:220.980000px;}
.y9b{bottom:222.600000px;}
.y28{bottom:227.460000px;}
.y89{bottom:229.980000px;}
.y4b{bottom:231.510000px;}
.ydd{bottom:236.550000px;}
.y9a{bottom:239.790000px;}
.y88{bottom:243.750000px;}
.y27{bottom:244.740000px;}
.y87{bottom:248.250000px;}
.y4a{bottom:248.700000px;}
.y98{bottom:257.070000px;}
.y86{bottom:259.320000px;}
.y26{bottom:262.020000px;}
.y99{bottom:262.290000px;}
.y49{bottom:265.980000px;}
.ydc{bottom:267.240000px;}
.y97{bottom:274.260000px;}
.yd0{bottom:279.210000px;}
.y48{bottom:283.260000px;}
.y85{bottom:291.540000px;}
.ycf{bottom:296.490000px;}
.y47{bottom:300.450000px;}
.y84{bottom:308.820000px;}
.yce{bottom:313.770000px;}
.y46{bottom:317.730000px;}
.y83{bottom:326.010000px;}
.ycd{bottom:330.960000px;}
.y45{bottom:334.560000px;}
.y81{bottom:343.290000px;}
.y25{bottom:347.160000px;}
.ycc{bottom:348.240000px;}
.y82{bottom:348.510000px;}
.y80{bottom:360.570000px;}
.ycb{bottom:365.520000px;}
.y7f{bottom:377.760000px;}
.yca{bottom:382.710000px;}
.y7e{bottom:395.040000px;}
.yc9{bottom:399.990000px;}
.y7d{bottom:412.320000px;}
.yc8{bottom:417.270000px;}
.y7c{bottom:429.510000px;}
.yc7{bottom:434.460000px;}
.y7b{bottom:446.790000px;}
.yc6{bottom:451.740000px;}
.y79{bottom:464.070000px;}
.yc5{bottom:469.020000px;}
.y7a{bottom:469.290000px;}
.y78{bottom:481.260000px;}
.y3e{bottom:482.700000px;}
.yc4{bottom:486.210000px;}
.ydb{bottom:491.430000px;}
.y77{bottom:498.540000px;}
.y35{bottom:498.900000px;}
.yc3{bottom:503.490000px;}
.y76{bottom:515.820000px;}
.yc2{bottom:520.770000px;}
.yef{bottom:528.870000px;}
.y75{bottom:533.010000px;}
.yc1{bottom:537.960000px;}
.yf1{bottom:543.630000px;}
.y73{bottom:550.290000px;}
.yc0{bottom:555.240000px;}
.y74{bottom:555.510000px;}
.y72{bottom:567.570000px;}
.ybf{bottom:572.430000px;}
.yda{bottom:577.680000px;}
.y71{bottom:584.790000px;}
.ybe{bottom:589.740000px;}
.yf0{bottom:599.550000px;}
.y70{bottom:602.070000px;}
.ybd{bottom:607.020000px;}
.y6f{bottom:619.350000px;}
.y22{bottom:623.940000px;}
.ybb{bottom:624.210000px;}
.ybc{bottom:629.430000px;}
.y6e{bottom:636.540000px;}
.yba{bottom:641.490000px;}
.y6d{bottom:653.820000px;}
.y21{bottom:654.720000px;}
.y1f{bottom:657.600000px;}
.yb9{bottom:658.770000px;}
.y1e{bottom:663.360000px;}
.y6c{bottom:671.010000px;}
.yb8{bottom:675.960000px;}
.y1d{bottom:680.550000px;}
.y6b{bottom:688.290000px;}
.yb7{bottom:693.240000px;}
.yd9{bottom:698.460000px;}
.y1c{bottom:700.440000px;}
.y6a{bottom:705.570000px;}
.yb6{bottom:710.520000px;}
.y69{bottom:722.760000px;}
.yb4{bottom:727.710000px;}
.yb5{bottom:732.930000px;}
.y1b{bottom:734.100000px;}
.y68{bottom:740.040000px;}
.yb3{bottom:744.990000px;}
.y1a{bottom:751.740000px;}
.y67{bottom:757.320000px;}
.yb2{bottom:762.270000px;}
.y19{bottom:772.260000px;}
.y66{bottom:774.510000px;}
.yb1{bottom:779.460000px;}
.y18{bottom:784.410000px;}
.y65{bottom:791.790000px;}
.yb0{bottom:796.740000px;}
.yee{bottom:801.960000px;}
.y17{bottom:805.650000px;}
.y64{bottom:809.070000px;}
.yaf{bottom:814.020000px;}
.y63{bottom:826.260000px;}
.yae{bottom:831.210000px;}
.y16{bottom:836.700000px;}
.y62{bottom:843.540000px;}
.yad{bottom:848.490000px;}
.yed{bottom:853.710000px;}
.y61{bottom:860.820000px;}
.yac{bottom:865.770000px;}
.y15{bottom:867.750000px;}
.y60{bottom:878.010000px;}
.yab{bottom:882.960000px;}
.y5f{bottom:895.290000px;}
.y14{bottom:898.800000px;}
.yaa{bottom:900.240000px;}
.y5e{bottom:912.570000px;}
.ya9{bottom:917.430000px;}
.y13{bottom:927.240000px;}
.y5d{bottom:929.760000px;}
.ya8{bottom:934.710000px;}
.ye9{bottom:939.930000px;}
.y5b{bottom:947.040000px;}
.ya7{bottom:951.990000px;}
.y5c{bottom:952.260000px;}
.y12{bottom:953.700000px;}
.y9{bottom:955.860000px;}
.y5a{bottom:964.320000px;}
.ya6{bottom:969.180000px;}
.y59{bottom:981.510000px;}
.ya5{bottom:986.460000px;}
.yec{bottom:991.680000px;}
.y58{bottom:998.820000px;}
.ya4{bottom:1003.770000px;}
.y57{bottom:1016.010000px;}
.ya3{bottom:1020.960000px;}
.ye8{bottom:1026.180000px;}
.y56{bottom:1033.290000px;}
.ya2{bottom:1038.240000px;}
.y55{bottom:1050.570000px;}
.ya1{bottom:1055.520000px;}
.y96{bottom:1055.790000px;}
.y53{bottom:1067.760000px;}
.ya0{bottom:1072.710000px;}
.y54{bottom:1072.980000px;}
.y52{bottom:1085.040000px;}
.y3{bottom:1102.320000px;}
.y2{bottom:1119.510000px;}
.y1{bottom:1137.420000px;}
.h16{height:1.710000px;}
.h10{height:4.318066px;}
.h17{height:4.425645px;}
.h18{height:8.382129px;}
.h2b{height:13.770000px;}
.h1f{height:15.480000px;}
.h19{height:17.190000px;}
.ha{height:21.082324px;}
.hc{height:21.607559px;}
.h27{height:24.627656px;}
.h29{height:27.432422px;}
.h4{height:27.630000px;}
.h14{height:28.115859px;}
.h13{height:30.458848px;}
.h2c{height:33.782520px;}
.h6{height:34.624160px;}
.h22{height:36.068555px;}
.h26{height:36.073652px;}
.h1a{height:38.100586px;}
.h21{height:39.049805px;}
.h7{height:39.082324px;}
.h24{height:39.463594px;}
.h1e{height:41.343750px;}
.h3{height:42.418652px;}
.h5{height:43.475449px;}
.h23{height:43.769004px;}
.h2{height:45.295488px;}
.h25{height:47.622832px;}
.h28{height:48.995859px;}
.h1c{height:49.552031px;}
.h1{height:50.800781px;}
.he{height:52.066406px;}
.h12{height:53.838457px;}
.h2d{height:55.200000px;}
.h2a{height:59.797090px;}
.h8{height:65.526152px;}
.hd{height:72.418535px;}
.h11{height:76.201172px;}
.h15{height:78.099609px;}
.hb{height:93.219434px;}
.hf{height:118.619824px;}
.h1d{height:124.230000px;}
.h20{height:134.730000px;}
.h9{height:143.220000px;}
.h1b{height:275.970000px;}
.h0{height:1188.000000px;}
.w2{width:34.020000px;}
.w5{width:165.900000px;}
.w8{width:228.270000px;}
.wa{width:384.150000px;}
.w7{width:592.530000px;}
.w4{width:648.060000px;}
.w3{width:745.470000px;}
.w6{width:901.530000px;}
.w9{width:917.999973px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.xd{left:-8.820000px;}
.x0{left:0.000000px;}
.x14{left:3.150000px;}
.x4{left:4.320000px;}
.x31{left:6.749986px;}
.x15{left:8.100000px;}
.x19{left:43.650000px;}
.x6{left:45.540000px;}
.x16{left:46.710000px;}
.x32{left:52.110000px;}
.x1{left:53.999986px;}
.x1a{left:59.669986px;}
.x1b{left:60.749986px;}
.x18{left:65.070000px;}
.x38{left:68.309986px;}
.xa{left:70.470000px;}
.x33{left:87.210000px;}
.xe{left:88.289986px;}
.x3{left:99.360000px;}
.x36{left:100.709973px;}
.x9{left:105.480000px;}
.x2{left:107.999986px;}
.x37{left:110.429986px;}
.x4f{left:120.240000px;}
.x5{left:134.460000px;}
.x42{left:136.079973px;}
.x43{left:145.799986px;}
.x11{left:159.869986px;}
.x1c{left:174.989973px;}
.x1d{left:179.849986px;}
.x8{left:200.190000px;}
.x34{left:207.659973px;}
.x35{left:212.519986px;}
.x12{left:228.179986px;}
.xb{left:231.780000px;}
.x46{left:245.279973px;}
.x47{left:254.999986px;}
.x1e{left:259.049973px;}
.x1f{left:263.909986px;}
.x10{left:272.909986px;}
.x26{left:276.779986px;}
.x22{left:300.899973px;}
.x23{left:305.759986px;}
.x24{left:316.919973px;}
.x25{left:321.779986px;}
.x7{left:324.030000px;}
.x44{left:370.649973px;}
.x45{left:380.369986px;}
.x20{left:422.309973px;}
.x21{left:427.169986px;}
.xf{left:464.159986px;}
.x13{left:466.139986px;}
.x27{left:486.059986px;}
.x30{left:489.839986px;}
.x41{left:493.619986px;}
.x4e{left:501.180000px;}
.x2a{left:540.059986px;}
.x48{left:572.729973px;}
.x49{left:582.449986px;}
.x3f{left:595.679973px;}
.x40{left:605.399986px;}
.x28{left:613.229973px;}
.x29{left:618.089986px;}
.x2b{left:637.259973px;}
.x17{left:640.050000px;}
.x2c{left:642.119986px;}
.x2d{left:656.429973px;}
.x2e{left:661.289986px;}
.x4a{left:687.119973px;}
.xc{left:693.600000px;}
.x4b{left:696.839986px;}
.x2f{left:702.059986px;}
.x3b{left:717.629973px;}
.x3c{left:727.349986px;}
.x4c{left:748.229973px;}
.x4d{left:757.949986px;}
.x39{left:764.429973px;}
.x3a{left:774.149986px;}
.x3d{left:863.549973px;}
.x3e{left:873.269986px;}
@media print{
.v3{vertical-align:-24.000000pt;}
.v4{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v5{vertical-align:18.560000pt;}
.v2{vertical-align:21.440000pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls12{letter-spacing:-0.240000pt;}
.ls5{letter-spacing:-0.160000pt;}
.lsf{letter-spacing:-0.080000pt;}
.lse{letter-spacing:-0.016640pt;}
.ls16{letter-spacing:-0.008320pt;}
.ls4{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.008320pt;}
.lsb{letter-spacing:0.011840pt;}
.ls3{letter-spacing:0.032000pt;}
.ls1{letter-spacing:0.080000pt;}
.ls7{letter-spacing:0.124267pt;}
.ls15{letter-spacing:0.136533pt;}
.ls0{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.176000pt;}
.ls17{letter-spacing:0.272533pt;}
.lsd{letter-spacing:0.336640pt;}
.ls8{letter-spacing:41.143680pt;}
.ls10{letter-spacing:101.623680pt;}
.ls11{letter-spacing:104.503680pt;}
.lsc{letter-spacing:122.423680pt;}
.ls14{letter-spacing:125.303680pt;}
.lsa{letter-spacing:142.903680pt;}
.ls2{letter-spacing:820.026667pt;}
.ws3{word-spacing:-64.000000pt;}
.wse{word-spacing:-42.568320pt;}
.ws4{word-spacing:-16.000000pt;}
.ws1{word-spacing:-13.520000pt;}
.ws10{word-spacing:-13.496533pt;}
.wsd{word-spacing:-13.371840pt;}
.ws7{word-spacing:-13.360000pt;}
.ws0{word-spacing:-13.200000pt;}
.ws8{word-spacing:-12.000000pt;}
.ws9{word-spacing:-11.680000pt;}
.wsf{word-spacing:-10.800000pt;}
.wsc{word-spacing:-10.648320pt;}
.ws2{word-spacing:-10.640000pt;}
.wsb{word-spacing:-10.623360pt;}
.ws5{word-spacing:-9.360000pt;}
.ws6{word-spacing:-8.640000pt;}
.wsa{word-spacing:0.000000pt;}
._12{margin-left:-5.664000pt;}
._0{margin-left:-1.003520pt;}
._3{width:0.944107pt;}
._c{width:1.906027pt;}
._7{width:2.885760pt;}
._8{width:3.794240pt;}
._a{width:5.023360pt;}
._b{width:6.252480pt;}
._d{width:7.802240pt;}
._9{width:9.191680pt;}
._11{width:10.581120pt;}
._14{width:11.596480pt;}
._13{width:14.515947pt;}
._4{width:16.138880pt;}
._15{width:17.688640pt;}
._18{width:19.024640pt;}
._6{width:19.986560pt;}
._23{width:20.895040pt;}
._f{width:21.910400pt;}
._10{width:22.925760pt;}
._19{width:24.154880pt;}
._5{width:25.437440pt;}
._1e{width:26.983040pt;}
._1d{width:27.884267pt;}
._17{width:29.059520pt;}
._16{width:30.086720pt;}
._20{width:31.048640pt;}
._24{width:31.957120pt;}
._25{width:32.919040pt;}
._e{width:34.575680pt;}
._22{width:35.858240pt;}
._26{width:37.140800pt;}
._1b{width:38.476800pt;}
._1c{width:39.652480pt;}
._1f{width:41.112960pt;}
._27{width:42.642880pt;}
._2b{width:44.036800pt;}
._2a{width:53.760640pt;}
._29{width:61.135360pt;}
._28{width:62.043840pt;}
._1a{width:68.884160pt;}
._21{width:72.624960pt;}
._1{width:269.145707pt;}
._2{width:330.695147pt;}
.fs8{font-size:5.440000pt;}
.fsc{font-size:10.560000pt;}
.fs3{font-size:26.560000pt;}
.fsb{font-size:34.560000pt;}
.fsa{font-size:37.440000pt;}
.fs2{font-size:42.560000pt;}
.fse{font-size:45.440000pt;}
.fsd{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:85.440000pt;}
.fs9{font-size:96.000000pt;}
.fs5{font-size:117.440000pt;}
.fs7{font-size:149.440000pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:0.320000pt;}
.y7{bottom:2.320000pt;}
.y3f{bottom:2.560000pt;}
.y3d{bottom:2.640000pt;}
.y23{bottom:2.880000pt;}
.y10{bottom:3.440000pt;}
.y24{bottom:4.080000pt;}
.y5{bottom:7.440000pt;}
.yf4{bottom:14.560000pt;}
.y6{bottom:14.640000pt;}
.y3c{bottom:16.400000pt;}
.y34{bottom:18.160000pt;}
.yf{bottom:19.840000pt;}
.yf3{bottom:26.826667pt;}
.ye{bottom:29.520000pt;}
.y3b{bottom:30.240000pt;}
.y9f{bottom:31.680000pt;}
.y33{bottom:33.520000pt;}
.yf2{bottom:39.146667pt;}
.y8{bottom:43.680000pt;}
.y3a{bottom:44.000000pt;}
.yd{bottom:45.946667pt;}
.y32{bottom:48.880000pt;}
.y44{bottom:53.360000pt;}
.y39{bottom:57.840000pt;}
.yc{bottom:58.506667pt;}
.y31{bottom:64.160000pt;}
.y4{bottom:65.360000pt;}
.y43{bottom:67.200000pt;}
.y38{bottom:71.626667pt;}
.y30{bottom:79.520000pt;}
.y42{bottom:80.960000pt;}
.y37{bottom:85.466667pt;}
.yb{bottom:92.186667pt;}
.y11{bottom:92.426667pt;}
.y41{bottom:94.800000pt;}
.y2f{bottom:94.880000pt;}
.yd8{bottom:98.240000pt;}
.y36{bottom:99.226667pt;}
.yd7{bottom:102.240000pt;}
.y95{bottom:106.240000pt;}
.y40{bottom:108.560000pt;}
.y2e{bottom:110.160000pt;}
.y9e{bottom:110.240000pt;}
.yd6{bottom:110.560000pt;}
.y51{bottom:113.760000pt;}
.yd5{bottom:114.560000pt;}
.y94{bottom:118.560000pt;}
.ya{bottom:121.066667pt;}
.y93{bottom:122.560000pt;}
.ye7{bottom:122.800000pt;}
.yd4{bottom:124.400000pt;}
.y2d{bottom:125.520000pt;}
.ye6{bottom:126.800000pt;}
.y50{bottom:129.040000pt;}
.y92{bottom:130.800000pt;}
.y91{bottom:134.800000pt;}
.ye5{bottom:135.040000pt;}
.y2c{bottom:140.880000pt;}
.y90{bottom:143.066667pt;}
.y4f{bottom:144.426667pt;}
.y8f{bottom:147.066667pt;}
.ye4{bottom:147.386667pt;}
.yeb{bottom:151.386667pt;}
.y8e{bottom:155.386667pt;}
.y2b{bottom:156.160000pt;}
.yd3{bottom:156.266667pt;}
.y9d{bottom:159.386667pt;}
.ye3{bottom:159.626667pt;}
.y4e{bottom:159.786667pt;}
.yea{bottom:161.226667pt;}
.ye2{bottom:163.626667pt;}
.y8d{bottom:167.626667pt;}
.y9c{bottom:169.226667pt;}
.y2a{bottom:171.520000pt;}
.yd2{bottom:171.546667pt;}
.ye1{bottom:171.866667pt;}
.y4d{bottom:175.066667pt;}
.y8c{bottom:179.866667pt;}
.ye0{bottom:184.186667pt;}
.y29{bottom:186.880000pt;}
.yd1{bottom:186.906667pt;}
.ydf{bottom:188.186667pt;}
.y4c{bottom:190.426667pt;}
.y8b{bottom:192.186667pt;}
.y8a{bottom:196.186667pt;}
.yde{bottom:196.426667pt;}
.y9b{bottom:197.866667pt;}
.y28{bottom:202.186667pt;}
.y89{bottom:204.426667pt;}
.y4b{bottom:205.786667pt;}
.ydd{bottom:210.266667pt;}
.y9a{bottom:213.146667pt;}
.y88{bottom:216.666667pt;}
.y27{bottom:217.546667pt;}
.y87{bottom:220.666667pt;}
.y4a{bottom:221.066667pt;}
.y98{bottom:228.506667pt;}
.y86{bottom:230.506667pt;}
.y26{bottom:232.906667pt;}
.y99{bottom:233.146667pt;}
.y49{bottom:236.426667pt;}
.ydc{bottom:237.546667pt;}
.y97{bottom:243.786667pt;}
.yd0{bottom:248.186667pt;}
.y48{bottom:251.786667pt;}
.y85{bottom:259.146667pt;}
.ycf{bottom:263.546667pt;}
.y47{bottom:267.066667pt;}
.y84{bottom:274.506667pt;}
.yce{bottom:278.906667pt;}
.y46{bottom:282.426667pt;}
.y83{bottom:289.786667pt;}
.ycd{bottom:294.186667pt;}
.y45{bottom:297.386667pt;}
.y81{bottom:305.146667pt;}
.y25{bottom:308.586667pt;}
.ycc{bottom:309.546667pt;}
.y82{bottom:309.786667pt;}
.y80{bottom:320.506667pt;}
.ycb{bottom:324.906667pt;}
.y7f{bottom:335.786667pt;}
.yca{bottom:340.186667pt;}
.y7e{bottom:351.146667pt;}
.yc9{bottom:355.546667pt;}
.y7d{bottom:366.506667pt;}
.yc8{bottom:370.906667pt;}
.y7c{bottom:381.786667pt;}
.yc7{bottom:386.186667pt;}
.y7b{bottom:397.146667pt;}
.yc6{bottom:401.546667pt;}
.y79{bottom:412.506667pt;}
.yc5{bottom:416.906667pt;}
.y7a{bottom:417.146667pt;}
.y78{bottom:427.786667pt;}
.y3e{bottom:429.066667pt;}
.yc4{bottom:432.186667pt;}
.ydb{bottom:436.826667pt;}
.y77{bottom:443.146667pt;}
.y35{bottom:443.466667pt;}
.yc3{bottom:447.546667pt;}
.y76{bottom:458.506667pt;}
.yc2{bottom:462.906667pt;}
.yef{bottom:470.106667pt;}
.y75{bottom:473.786667pt;}
.yc1{bottom:478.186667pt;}
.yf1{bottom:483.226667pt;}
.y73{bottom:489.146667pt;}
.yc0{bottom:493.546667pt;}
.y74{bottom:493.786667pt;}
.y72{bottom:504.506667pt;}
.ybf{bottom:508.826667pt;}
.yda{bottom:513.493333pt;}
.y71{bottom:519.813333pt;}
.ybe{bottom:524.213333pt;}
.yf0{bottom:532.933333pt;}
.y70{bottom:535.173333pt;}
.ybd{bottom:539.573333pt;}
.y6f{bottom:550.533333pt;}
.y22{bottom:554.613333pt;}
.ybb{bottom:554.853333pt;}
.ybc{bottom:559.493333pt;}
.y6e{bottom:565.813333pt;}
.yba{bottom:570.213333pt;}
.y6d{bottom:581.173333pt;}
.y21{bottom:581.973333pt;}
.y1f{bottom:584.533333pt;}
.yb9{bottom:585.573333pt;}
.y1e{bottom:589.653333pt;}
.y6c{bottom:596.453333pt;}
.yb8{bottom:600.853333pt;}
.y1d{bottom:604.933333pt;}
.y6b{bottom:611.813333pt;}
.yb7{bottom:616.213333pt;}
.yd9{bottom:620.853333pt;}
.y1c{bottom:622.613333pt;}
.y6a{bottom:627.173333pt;}
.yb6{bottom:631.573333pt;}
.y69{bottom:642.453333pt;}
.yb4{bottom:646.853333pt;}
.yb5{bottom:651.493333pt;}
.y1b{bottom:652.533333pt;}
.y68{bottom:657.813333pt;}
.yb3{bottom:662.213333pt;}
.y1a{bottom:668.213333pt;}
.y67{bottom:673.173333pt;}
.yb2{bottom:677.573333pt;}
.y19{bottom:686.453333pt;}
.y66{bottom:688.453333pt;}
.yb1{bottom:692.853333pt;}
.y18{bottom:697.253333pt;}
.y65{bottom:703.813333pt;}
.yb0{bottom:708.213333pt;}
.yee{bottom:712.853333pt;}
.y17{bottom:716.133333pt;}
.y64{bottom:719.173333pt;}
.yaf{bottom:723.573333pt;}
.y63{bottom:734.453333pt;}
.yae{bottom:738.853333pt;}
.y16{bottom:743.733333pt;}
.y62{bottom:749.813333pt;}
.yad{bottom:754.213333pt;}
.yed{bottom:758.853333pt;}
.y61{bottom:765.173333pt;}
.yac{bottom:769.573333pt;}
.y15{bottom:771.333333pt;}
.y60{bottom:780.453333pt;}
.yab{bottom:784.853333pt;}
.y5f{bottom:795.813333pt;}
.y14{bottom:798.933333pt;}
.yaa{bottom:800.213333pt;}
.y5e{bottom:811.173333pt;}
.ya9{bottom:815.493333pt;}
.y13{bottom:824.213333pt;}
.y5d{bottom:826.453333pt;}
.ya8{bottom:830.853333pt;}
.ye9{bottom:835.493333pt;}
.y5b{bottom:841.813333pt;}
.ya7{bottom:846.213333pt;}
.y5c{bottom:846.453333pt;}
.y12{bottom:847.733333pt;}
.y9{bottom:849.653333pt;}
.y5a{bottom:857.173333pt;}
.ya6{bottom:861.493333pt;}
.y59{bottom:872.453333pt;}
.ya5{bottom:876.853333pt;}
.yec{bottom:881.493333pt;}
.y58{bottom:887.840000pt;}
.ya4{bottom:892.240000pt;}
.y57{bottom:903.120000pt;}
.ya3{bottom:907.520000pt;}
.ye8{bottom:912.160000pt;}
.y56{bottom:918.480000pt;}
.ya2{bottom:922.880000pt;}
.y55{bottom:933.840000pt;}
.ya1{bottom:938.240000pt;}
.y96{bottom:938.480000pt;}
.y53{bottom:949.120000pt;}
.ya0{bottom:953.520000pt;}
.y54{bottom:953.760000pt;}
.y52{bottom:964.480000pt;}
.y3{bottom:979.840000pt;}
.y2{bottom:995.120000pt;}
.y1{bottom:1011.040000pt;}
.h16{height:1.520000pt;}
.h10{height:3.838281pt;}
.h17{height:3.933906pt;}
.h18{height:7.450781pt;}
.h2b{height:12.240000pt;}
.h1f{height:13.760000pt;}
.h19{height:15.280000pt;}
.ha{height:18.739844pt;}
.hc{height:19.206719pt;}
.h27{height:21.891250pt;}
.h29{height:24.384375pt;}
.h4{height:24.560000pt;}
.h14{height:24.991875pt;}
.h13{height:27.074531pt;}
.h2c{height:30.028906pt;}
.h6{height:30.777031pt;}
.h22{height:32.060937pt;}
.h26{height:32.065469pt;}
.h1a{height:33.867188pt;}
.h21{height:34.710938pt;}
.h7{height:34.739844pt;}
.h24{height:35.078750pt;}
.h1e{height:36.750000pt;}
.h3{height:37.705469pt;}
.h5{height:38.644844pt;}
.h23{height:38.905781pt;}
.h2{height:40.262656pt;}
.h25{height:42.331406pt;}
.h28{height:43.551875pt;}
.h1c{height:44.046250pt;}
.h1{height:45.156250pt;}
.he{height:46.281250pt;}
.h12{height:47.856406pt;}
.h2d{height:49.066667pt;}
.h2a{height:53.152969pt;}
.h8{height:58.245469pt;}
.hd{height:64.372031pt;}
.h11{height:67.734375pt;}
.h15{height:69.421875pt;}
.hb{height:82.861719pt;}
.hf{height:105.439844pt;}
.h1d{height:110.426667pt;}
.h20{height:119.760000pt;}
.h9{height:127.306667pt;}
.h1b{height:245.306667pt;}
.h0{height:1056.000000pt;}
.w2{width:30.240000pt;}
.w5{width:147.466667pt;}
.w8{width:202.906667pt;}
.wa{width:341.466667pt;}
.w7{width:526.693333pt;}
.w4{width:576.053333pt;}
.w3{width:662.640000pt;}
.w6{width:801.360000pt;}
.w9{width:815.999976pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.xd{left:-7.840000pt;}
.x0{left:0.000000pt;}
.x14{left:2.800000pt;}
.x4{left:3.840000pt;}
.x31{left:5.999988pt;}
.x15{left:7.200000pt;}
.x19{left:38.800000pt;}
.x6{left:40.480000pt;}
.x16{left:41.520000pt;}
.x32{left:46.320000pt;}
.x1{left:47.999988pt;}
.x1a{left:53.039988pt;}
.x1b{left:53.999988pt;}
.x18{left:57.840000pt;}
.x38{left:60.719988pt;}
.xa{left:62.640000pt;}
.x33{left:77.520000pt;}
.xe{left:78.479988pt;}
.x3{left:88.320000pt;}
.x36{left:89.519976pt;}
.x9{left:93.760000pt;}
.x2{left:95.999988pt;}
.x37{left:98.159988pt;}
.x4f{left:106.880000pt;}
.x5{left:119.520000pt;}
.x42{left:120.959976pt;}
.x43{left:129.599988pt;}
.x11{left:142.106655pt;}
.x1c{left:155.546642pt;}
.x1d{left:159.866655pt;}
.x8{left:177.946667pt;}
.x34{left:184.586642pt;}
.x35{left:188.906655pt;}
.x12{left:202.826655pt;}
.xb{left:206.026667pt;}
.x46{left:218.026642pt;}
.x47{left:226.666655pt;}
.x1e{left:230.266642pt;}
.x1f{left:234.586655pt;}
.x10{left:242.586655pt;}
.x26{left:246.026655pt;}
.x22{left:267.466642pt;}
.x23{left:271.786655pt;}
.x24{left:281.706642pt;}
.x25{left:286.026655pt;}
.x7{left:288.026667pt;}
.x44{left:329.466642pt;}
.x45{left:338.106655pt;}
.x20{left:375.386642pt;}
.x21{left:379.706655pt;}
.xf{left:412.586655pt;}
.x13{left:414.346655pt;}
.x27{left:432.053321pt;}
.x30{left:435.413321pt;}
.x41{left:438.773321pt;}
.x4e{left:445.493333pt;}
.x2a{left:480.053321pt;}
.x48{left:509.093309pt;}
.x49{left:517.733321pt;}
.x3f{left:529.493309pt;}
.x40{left:538.133321pt;}
.x28{left:545.093309pt;}
.x29{left:549.413321pt;}
.x2b{left:566.453309pt;}
.x17{left:568.933333pt;}
.x2c{left:570.773321pt;}
.x2d{left:583.493309pt;}
.x2e{left:587.813321pt;}
.x4a{left:610.773309pt;}
.xc{left:616.533333pt;}
.x4b{left:619.413321pt;}
.x2f{left:624.053321pt;}
.x3b{left:637.893309pt;}
.x3c{left:646.533321pt;}
.x4c{left:665.093309pt;}
.x4d{left:673.733321pt;}
.x39{left:679.493309pt;}
.x3a{left:688.133321pt;}
.x3d{left:767.599976pt;}
.x3e{left:776.239988pt;}
}




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