
    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_c1738eb7f418a558e00a46fb.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a44a840f889deceab3f7a2de.woff2')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_8edc6721d43e9c33cacb03a5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_b55c4c9094f4bcfa56ec3a17.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914062;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_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_b2095fd874f257e33e749dcb.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.265137;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_826173e6c32e56933d4c9d2e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.976562;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v3{vertical-align:20.880000px;}
.v2{vertical-align:23.760000px;}
.ls16{letter-spacing:-0.540000px;}
.ls7{letter-spacing:-0.269400px;}
.ls12{letter-spacing:-0.053280px;}
.ls5{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.012960px;}
.ls0{letter-spacing:0.053280px;}
.lsf{letter-spacing:0.090600px;}
.ls15{letter-spacing:0.106800px;}
.ls6{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.lsc{letter-spacing:0.298800px;}
.ls1{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.474600px;}
.lsa{letter-spacing:0.504000px;}
.ls14{letter-spacing:0.900000px;}
.lse{letter-spacing:5.940000px;}
.ls11{letter-spacing:6.660000px;}
.ls10{letter-spacing:6.804000px;}
.ls4{letter-spacing:37.386720px;}
.ls3{letter-spacing:41.868000px;}
.ls9{letter-spacing:46.026720px;}
.lsb{letter-spacing:64.026720px;}
.lsd{letter-spacing:123.210720px;}
.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;}
}
.wsd{word-spacing:-60.234600px;}
.wse{word-spacing:-59.850600px;}
.ws8{word-spacing:-59.760000px;}
.ws6{word-spacing:-54.000000px;}
.ws1{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.238800px;}
.wsa{word-spacing:-15.199800px;}
.ws0{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.886720px;}
.ws7{word-spacing:-13.500000px;}
.wsf{word-spacing:-12.420000px;}
.ws3{word-spacing:-12.060000px;}
.ws2{word-spacing:-11.790600px;}
.ws5{word-spacing:-9.732960px;}
.ws9{word-spacing:0.000000px;}
._3{margin-left:-1.170720px;}
._0{width:1.135440px;}
._a{width:2.270880px;}
._9{width:3.354000px;}
._6{width:4.613760px;}
._5{width:5.677200px;}
._19{width:6.812640px;}
._7{width:7.828560px;}
._8{width:8.844480px;}
._c{width:10.386720px;}
._f{width:11.653200px;}
._17{width:13.147200px;}
._b{width:16.194960px;}
._1d{width:17.439120px;}
._1c{width:18.476640px;}
._12{width:19.710000px;}
._24{width:20.769120px;}
._20{width:21.872160px;}
._18{width:22.888080px;}
._e{width:24.143040px;}
._11{width:25.380000px;}
._10{width:26.784000px;}
._1a{width:27.788400px;}
._1b{width:29.521440px;}
._26{width:30.895920px;}
._d{width:31.911840px;}
._2a{width:32.987520px;}
._25{width:34.063200px;}
._21{width:35.676720px;}
._28{width:37.350000px;}
._29{width:39.262320px;}
._1e{width:41.592960px;}
._1f{width:43.734240px;}
._16{width:45.811440px;}
._15{width:46.911600px;}
._23{width:48.047040px;}
._27{width:49.780080px;}
._14{width:52.409520px;}
._2c{width:55.283040px;}
._22{width:78.514560px;}
._2b{width:87.309360px;}
._13{width:125.928000px;}
._2{width:131.442960px;}
._1{width:342.981120px;}
._4{width:1010.718240px;}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,0,0);}
.fc4{color:rgb(5,99,193);}
.fc0{color:rgb(0,32,96);}
.fs3{font-size:30.240000px;}
.fs9{font-size:36.000000px;}
.fs7{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y12b{bottom:1.440000px;}
.y6{bottom:2.520000px;}
.y91{bottom:2.565000px;}
.y3a{bottom:2.880000px;}
.y14{bottom:3.240000px;}
.y33{bottom:5.940000px;}
.y4{bottom:8.316000px;}
.yc0{bottom:9.360000px;}
.y9{bottom:14.040000px;}
.y128{bottom:16.200000px;}
.y5{bottom:16.236000px;}
.yc1{bottom:16.380000px;}
.y131{bottom:16.425000px;}
.y39{bottom:18.540000px;}
.y31{bottom:19.440000px;}
.y127{bottom:30.060000px;}
.y130{bottom:30.105000px;}
.y38{bottom:34.020000px;}
.y7{bottom:35.460000px;}
.y30{bottom:35.850000px;}
.y126{bottom:43.920000px;}
.y12f{bottom:43.965000px;}
.y37{bottom:49.500000px;}
.y2f{bottom:51.330000px;}
.y28{bottom:51.345000px;}
.y12e{bottom:57.825000px;}
.y3{bottom:58.140000px;}
.y36{bottom:64.980000px;}
.y2e{bottom:66.810000px;}
.y27{bottom:68.625000px;}
.y12d{bottom:71.505000px;}
.y35{bottom:80.640000px;}
.y2d{bottom:82.470000px;}
.y12c{bottom:85.365000px;}
.y26{bottom:85.725000px;}
.y2c{bottom:97.950000px;}
.y25{bottom:103.005000px;}
.y3b{bottom:106.245000px;}
.yef{bottom:112.716000px;}
.y2b{bottom:113.430000px;}
.y9d{bottom:118.656000px;}
.ya0{bottom:119.736000px;}
.y24{bottom:120.285000px;}
.y46{bottom:124.056000px;}
.ye0{bottom:126.756000px;}
.y2a{bottom:128.910000px;}
.yee{bottom:129.996000px;}
.y9c{bottom:135.756000px;}
.y9f{bottom:136.836000px;}
.y23{bottom:137.565000px;}
.y45{bottom:139.896000px;}
.y104{bottom:141.156000px;}
.ydf{bottom:144.036000px;}
.yed{bottom:147.276000px;}
.y9b{bottom:153.030000px;}
.y9e{bottom:154.110000px;}
.y22{bottom:154.845000px;}
.y111{bottom:156.630000px;}
.y44{bottom:157.170000px;}
.y103{bottom:158.430000px;}
.yde{bottom:161.310000px;}
.yec{bottom:164.550000px;}
.y9a{bottom:171.390000px;}
.y21{bottom:172.125000px;}
.y43{bottom:174.450000px;}
.y102{bottom:175.710000px;}
.y110{bottom:176.430000px;}
.ydd{bottom:178.590000px;}
.yeb{bottom:181.830000px;}
.y99{bottom:188.670000px;}
.y20{bottom:189.225000px;}
.y42{bottom:191.730000px;}
.y101{bottom:192.990000px;}
.ydc{bottom:195.690000px;}
.y10f{bottom:196.410000px;}
.yea{bottom:198.930000px;}
.y1f{bottom:206.505000px;}
.y98{bottom:207.030000px;}
.y41{bottom:208.830000px;}
.y100{bottom:210.090000px;}
.ydb{bottom:212.970000px;}
.ye9{bottom:216.210000px;}
.y1e{bottom:223.785000px;}
.y97{bottom:224.310000px;}
.y40{bottom:226.110000px;}
.yff{bottom:227.370000px;}
.yda{bottom:230.250000px;}
.ye8{bottom:233.490000px;}
.y10e{bottom:236.010000px;}
.y1d{bottom:241.065000px;}
.y96{bottom:242.490000px;}
.y3f{bottom:243.390000px;}
.yfe{bottom:244.650000px;}
.yd9{bottom:247.530000px;}
.ye7{bottom:250.770000px;}
.y10d{bottom:255.810000px;}
.y95{bottom:257.250000px;}
.y1c{bottom:258.345000px;}
.y3e{bottom:260.670000px;}
.yfd{bottom:261.930000px;}
.yd8{bottom:264.810000px;}
.ye6{bottom:268.050000px;}
.y94{bottom:271.830000px;}
.y10c{bottom:275.610000px;}
.y1b{bottom:275.655000px;}
.y3d{bottom:277.950000px;}
.yfc{bottom:279.210000px;}
.yd7{bottom:282.090000px;}
.ye5{bottom:285.330000px;}
.y93{bottom:286.410000px;}
.y1a{bottom:292.755000px;}
.y3c{bottom:294.870000px;}
.y10b{bottom:295.590000px;}
.yfb{bottom:296.490000px;}
.yd6{bottom:299.190000px;}
.y92{bottom:300.990000px;}
.ye4{bottom:302.430000px;}
.y15{bottom:308.190000px;}
.y19{bottom:310.035000px;}
.yfa{bottom:313.590000px;}
.y10a{bottom:315.390000px;}
.y90{bottom:315.570000px;}
.yd5{bottom:316.470000px;}
.ye3{bottom:319.755000px;}
.y18{bottom:327.315000px;}
.y8f{bottom:330.195000px;}
.yf9{bottom:330.915000px;}
.yd4{bottom:334.875000px;}
.y109{bottom:335.235000px;}
.ye2{bottom:337.035000px;}
.y17{bottom:344.595000px;}
.y8e{bottom:346.755000px;}
.yf8{bottom:348.195000px;}
.yd3{bottom:353.235000px;}
.ye1{bottom:354.315000px;}
.y108{bottom:355.035000px;}
.y8d{bottom:357.555000px;}
.y16{bottom:361.875000px;}
.yf7{bottom:365.475000px;}
.y8c{bottom:371.415000px;}
.yd2{bottom:371.595000px;}
.y107{bottom:374.835000px;}
.yf6{bottom:382.755000px;}
.y8b{bottom:385.815000px;}
.yd1{bottom:388.695000px;}
.y106{bottom:394.815000px;}
.yf5{bottom:399.855000px;}
.y8a{bottom:403.095000px;}
.yd0{bottom:405.975000px;}
.y105{bottom:414.615000px;}
.yf4{bottom:417.135000px;}
.y89{bottom:417.855000px;}
.ycf{bottom:423.255000px;}
.y34{bottom:427.755000px;}
.y88{bottom:432.435000px;}
.yf3{bottom:434.415000px;}
.yce{bottom:440.535000px;}
.y87{bottom:447.015000px;}
.yf2{bottom:451.695000px;}
.ycd{bottom:457.815000px;}
.y86{bottom:461.415000px;}
.yf1{bottom:468.975000px;}
.ycc{bottom:475.095000px;}
.y85{bottom:478.155000px;}
.yf0{bottom:486.255000px;}
.y84{bottom:488.955000px;}
.ycb{bottom:492.195000px;}
.y83{bottom:503.355000px;}
.yca{bottom:509.475000px;}
.y67{bottom:520.635000px;}
.y32{bottom:521.715000px;}
.yc9{bottom:526.755000px;}
.y82{bottom:530.355000px;}
.y66{bottom:537.915000px;}
.y29{bottom:542.415000px;}
.yc8{bottom:544.035000px;}
.y81{bottom:547.635000px;}
.y65{bottom:555.195000px;}
.yc7{bottom:561.315000px;}
.y80{bottom:564.915000px;}
.y64{bottom:572.505000px;}
.y123{bottom:573.765000px;}
.yc6{bottom:578.625000px;}
.y7f{bottom:582.225000px;}
.y63{bottom:589.785000px;}
.y122{bottom:591.045000px;}
.yc5{bottom:593.385000px;}
.y7e{bottom:599.505000px;}
.y62{bottom:606.885000px;}
.yc4{bottom:607.785000px;}
.y121{bottom:608.325000px;}
.y7d{bottom:617.685000px;}
.yc3{bottom:622.365000px;}
.y61{bottom:624.165000px;}
.y120{bottom:625.605000px;}
.y7c{bottom:634.965000px;}
.yc2{bottom:636.945000px;}
.y60{bottom:641.445000px;}
.y11f{bottom:642.885000px;}
.ybf{bottom:651.525000px;}
.y7b{bottom:653.325000px;}
.y5f{bottom:658.725000px;}
.y11e{bottom:660.165000px;}
.y7a{bottom:670.605000px;}
.y5e{bottom:676.005000px;}
.y11d{bottom:677.265000px;}
.ybe{bottom:679.785000px;}
.y13{bottom:684.825000px;}
.y79{bottom:687.885000px;}
.y5d{bottom:693.285000px;}
.ybd{bottom:694.365000px;}
.y11c{bottom:694.545000px;}
.y78{bottom:704.985000px;}
.y5c{bottom:710.385000px;}
.ybc{bottom:711.465000px;}
.y11b{bottom:711.825000px;}
.y12{bottom:719.385000px;}
.y77{bottom:722.265000px;}
.ybb{bottom:725.325000px;}
.y5b{bottom:727.665000px;}
.y11a{bottom:729.105000px;}
.y11{bottom:739.185000px;}
.y76{bottom:739.545000px;}
.yb4{bottom:739.725000px;}
.y5a{bottom:744.945000px;}
.y119{bottom:746.385000px;}
.y75{bottom:756.825000px;}
.yb3{bottom:757.005000px;}
.y59{bottom:762.225000px;}
.y118{bottom:763.665000px;}
.y10{bottom:768.165000px;}
.y74{bottom:774.105000px;}
.yba{bottom:774.285000px;}
.yb2{bottom:775.365000px;}
.y58{bottom:779.505000px;}
.y117{bottom:780.765000px;}
.yf{bottom:787.065000px;}
.y73{bottom:791.385000px;}
.yb9{bottom:791.565000px;}
.yb1{bottom:793.725000px;}
.y57{bottom:796.605000px;}
.y116{bottom:798.045000px;}
.ye{bottom:808.125000px;}
.yb8{bottom:808.845000px;}
.y72{bottom:809.565000px;}
.yb0{bottom:811.005000px;}
.y12a{bottom:812.805000px;}
.y56{bottom:813.885000px;}
.y71{bottom:826.890000px;}
.yb7{bottom:827.070000px;}
.yaf{bottom:828.150000px;}
.y55{bottom:831.210000px;}
.yd{bottom:839.310000px;}
.yb6{bottom:844.350000px;}
.y70{bottom:845.250000px;}
.yae{bottom:845.430000px;}
.y54{bottom:848.490000px;}
.yb5{bottom:861.630000px;}
.y6f{bottom:862.530000px;}
.yad{bottom:862.710000px;}
.y53{bottom:865.770000px;}
.yc{bottom:870.270000px;}
.yac{bottom:879.990000px;}
.y6e{bottom:880.890000px;}
.y52{bottom:883.050000px;}
.yab{bottom:894.750000px;}
.y6d{bottom:897.990000px;}
.y51{bottom:900.150000px;}
.yb{bottom:901.410000px;}
.yaa{bottom:909.330000px;}
.y129{bottom:910.230000px;}
.y6c{bottom:916.350000px;}
.y50{bottom:917.430000px;}
.ya9{bottom:923.910000px;}
.y125{bottom:924.810000px;}
.ya{bottom:930.210000px;}
.y6b{bottom:933.630000px;}
.y4f{bottom:934.710000px;}
.ya8{bottom:938.310000px;}
.y8{bottom:945.510000px;}
.y6a{bottom:950.910000px;}
.y4e{bottom:951.990000px;}
.ya7{bottom:952.890000px;}
.y69{bottom:968.190000px;}
.y4d{bottom:969.270000px;}
.ya6{bottom:969.990000px;}
.y124{bottom:980.790000px;}
.ya5{bottom:983.850000px;}
.y68{bottom:985.470000px;}
.y4c{bottom:986.550000px;}
.ya4{bottom:998.250000px;}
.y4b{bottom:1003.650000px;}
.y115{bottom:1013.190000px;}
.ya3{bottom:1015.530000px;}
.y4a{bottom:1020.930000px;}
.y114{bottom:1032.990000px;}
.ya2{bottom:1033.350000px;}
.y49{bottom:1038.210000px;}
.y113{bottom:1052.790000px;}
.ya1{bottom:1053.330000px;}
.y48{bottom:1055.490000px;}
.y112{bottom:1072.620000px;}
.y47{bottom:1072.800000px;}
.y2{bottom:1102.680000px;}
.y1{bottom:1119.960000px;}
.h1d{height:13.680000px;}
.h1e{height:13.716000px;}
.h1c{height:13.860000px;}
.h1f{height:13.860150px;}
.he{height:17.100000px;}
.h14{height:19.980000px;}
.h1b{height:25.400391px;}
.h21{height:27.540000px;}
.h3{height:27.576000px;}
.h5{height:33.683203px;}
.h1a{height:34.036523px;}
.h16{height:37.705078px;}
.h17{height:38.100586px;}
.h6{height:39.336328px;}
.h12{height:39.999023px;}
.h4{height:41.726953px;}
.hd{height:42.164648px;}
.h19{height:43.506914px;}
.h13{height:44.265586px;}
.h2{height:45.024258px;}
.h22{height:45.461953px;}
.h8{height:46.251562px;}
.h10{height:48.027656px;}
.h9{height:49.906406px;}
.h1{height:50.800781px;}
.hb{height:53.224453px;}
.h23{height:55.080000px;}
.h20{height:64.487109px;}
.hc{height:75.410156px;}
.ha{height:76.201172px;}
.h15{height:93.240000px;}
.h24{height:96.696000px;}
.h18{height:118.836000px;}
.h11{height:141.516000px;}
.h7{height:153.930000px;}
.hf{height:375.735000px;}
.h0{height:1188.000000px;}
.w2{width:39.096000px;}
.w7{width:45.900000px;}
.w14{width:76.176000px;}
.wa{width:77.040000px;}
.w8{width:101.340000px;}
.w9{width:107.136000px;}
.wd{width:115.920000px;}
.wc{width:181.470000px;}
.wb{width:200.910000px;}
.w10{width:213.870000px;}
.w6{width:220.170000px;}
.w15{width:284.070000px;}
.w11{width:305.130000px;}
.w13{width:360.975000px;}
.w12{width:411.735000px;}
.wf{width:502.995000px;}
.w5{width:588.345000px;}
.we{width:600.945000px;}
.w3{width:788.190000px;}
.w4{width:821.850000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x11{left:6.480000px;}
.x3{left:8.460000px;}
.x1a{left:10.260000px;}
.x1c{left:12.414000px;}
.x22{left:14.400000px;}
.x20{left:15.660000px;}
.x10{left:19.980000px;}
.x24{left:23.040000px;}
.x44{left:25.020000px;}
.x2e{left:26.100000px;}
.x14{left:27.360000px;}
.x27{left:30.954000px;}
.x12{left:34.065000px;}
.x13{left:35.865000px;}
.x30{left:37.260000px;}
.x23{left:40.005000px;}
.x48{left:41.220000px;}
.x6{left:45.540000px;}
.x45{left:48.780000px;}
.x2{left:53.999986px;}
.x1{left:60.659986px;}
.x3d{left:63.894000px;}
.x15{left:65.519986px;}
.x49{left:74.910000px;}
.x46{left:77.574000px;}
.x29{left:79.605000px;}
.x3c{left:82.845000px;}
.x26{left:84.465000px;}
.x3a{left:86.985000px;}
.x3e{left:88.199986px;}
.x28{left:89.490000px;}
.x25{left:94.350000px;}
.x35{left:96.695986px;}
.x4{left:100.836000px;}
.x33{left:102.645000px;}
.x9{left:105.335986px;}
.x43{left:106.914000px;}
.x5{left:108.035986px;}
.x32{left:113.985000px;}
.xa{left:120.275986px;}
.x40{left:128.514000px;}
.x1b{left:146.916000px;}
.x3b{left:159.294000px;}
.x4a{left:163.830000px;}
.x42{left:185.790000px;}
.x34{left:195.705000px;}
.xd{left:196.769986px;}
.x47{left:199.830000px;}
.x19{left:207.569986px;}
.x31{left:210.285000px;}
.x2c{left:216.930000px;}
.x38{left:227.379000px;}
.x1d{left:248.970000px;}
.x2f{left:280.335000px;}
.x2d{left:285.375000px;}
.x2b{left:315.434986px;}
.x1e{left:356.835000px;}
.x37{left:360.074986px;}
.xc{left:403.814986px;}
.x41{left:406.155000px;}
.x1f{left:434.595000px;}
.x8{left:459.074986px;}
.x2a{left:461.954986px;}
.xb{left:464.294986px;}
.xe{left:465.374986px;}
.x16{left:478.334986px;}
.x17{left:479.804986px;}
.x18{left:506.804986px;}
.x3f{left:526.604986px;}
.x36{left:580.604986px;}
.x39{left:604.005000px;}
.x21{left:636.405000px;}
.xf{left:642.345000px;}
.x7{left:812.490000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v3{vertical-align:18.560000pt;}
.v2{vertical-align:21.120000pt;}
.ls16{letter-spacing:-0.480000pt;}
.ls7{letter-spacing:-0.239467pt;}
.ls12{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.011520pt;}
.ls0{letter-spacing:0.047360pt;}
.lsf{letter-spacing:0.080533pt;}
.ls15{letter-spacing:0.094933pt;}
.ls6{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.lsc{letter-spacing:0.265600pt;}
.ls1{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.421867pt;}
.lsa{letter-spacing:0.448000pt;}
.ls14{letter-spacing:0.800000pt;}
.lse{letter-spacing:5.280000pt;}
.ls11{letter-spacing:5.920000pt;}
.ls10{letter-spacing:6.048000pt;}
.ls4{letter-spacing:33.232640pt;}
.ls3{letter-spacing:37.216000pt;}
.ls9{letter-spacing:40.912640pt;}
.lsb{letter-spacing:56.912640pt;}
.lsd{letter-spacing:109.520640pt;}
.wsd{word-spacing:-53.541867pt;}
.wse{word-spacing:-53.200533pt;}
.ws8{word-spacing:-53.120000pt;}
.ws6{word-spacing:-48.000000pt;}
.ws1{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.545600pt;}
.wsa{word-spacing:-13.510933pt;}
.ws0{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.wsc{word-spacing:-13.232640pt;}
.ws7{word-spacing:-12.000000pt;}
.wsf{word-spacing:-11.040000pt;}
.ws3{word-spacing:-10.720000pt;}
.ws2{word-spacing:-10.480533pt;}
.ws5{word-spacing:-8.651520pt;}
.ws9{word-spacing:0.000000pt;}
._3{margin-left:-1.040640pt;}
._0{width:1.009280pt;}
._a{width:2.018560pt;}
._9{width:2.981333pt;}
._6{width:4.101120pt;}
._5{width:5.046400pt;}
._19{width:6.055680pt;}
._7{width:6.958720pt;}
._8{width:7.861760pt;}
._c{width:9.232640pt;}
._f{width:10.358400pt;}
._17{width:11.686400pt;}
._b{width:14.395520pt;}
._1d{width:15.501440pt;}
._1c{width:16.423680pt;}
._12{width:17.520000pt;}
._24{width:18.461440pt;}
._20{width:19.441920pt;}
._18{width:20.344960pt;}
._e{width:21.460480pt;}
._11{width:22.560000pt;}
._10{width:23.808000pt;}
._1a{width:24.700800pt;}
._1b{width:26.241280pt;}
._26{width:27.463040pt;}
._d{width:28.366080pt;}
._2a{width:29.322240pt;}
._25{width:30.278400pt;}
._21{width:31.712640pt;}
._28{width:33.200000pt;}
._29{width:34.899840pt;}
._1e{width:36.971520pt;}
._1f{width:38.874880pt;}
._16{width:40.721280pt;}
._15{width:41.699200pt;}
._23{width:42.708480pt;}
._27{width:44.248960pt;}
._14{width:46.586240pt;}
._2c{width:49.140480pt;}
._22{width:69.790720pt;}
._2b{width:77.608320pt;}
._13{width:111.936000pt;}
._2{width:116.838187pt;}
._1{width:304.872107pt;}
._4{width:898.416213pt;}
.fs3{font-size:26.880000pt;}
.fs9{font-size:32.000000pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y12b{bottom:1.280000pt;}
.y6{bottom:2.240000pt;}
.y91{bottom:2.280000pt;}
.y3a{bottom:2.560000pt;}
.y14{bottom:2.880000pt;}
.y33{bottom:5.280000pt;}
.y4{bottom:7.392000pt;}
.yc0{bottom:8.320000pt;}
.y9{bottom:12.480000pt;}
.y128{bottom:14.400000pt;}
.y5{bottom:14.432000pt;}
.yc1{bottom:14.560000pt;}
.y131{bottom:14.600000pt;}
.y39{bottom:16.480000pt;}
.y31{bottom:17.280000pt;}
.y127{bottom:26.720000pt;}
.y130{bottom:26.760000pt;}
.y38{bottom:30.240000pt;}
.y7{bottom:31.520000pt;}
.y30{bottom:31.866667pt;}
.y126{bottom:39.040000pt;}
.y12f{bottom:39.080000pt;}
.y37{bottom:44.000000pt;}
.y2f{bottom:45.626667pt;}
.y28{bottom:45.640000pt;}
.y12e{bottom:51.400000pt;}
.y3{bottom:51.680000pt;}
.y36{bottom:57.760000pt;}
.y2e{bottom:59.386667pt;}
.y27{bottom:61.000000pt;}
.y12d{bottom:63.560000pt;}
.y35{bottom:71.680000pt;}
.y2d{bottom:73.306667pt;}
.y12c{bottom:75.880000pt;}
.y26{bottom:76.200000pt;}
.y2c{bottom:87.066667pt;}
.y25{bottom:91.560000pt;}
.y3b{bottom:94.440000pt;}
.yef{bottom:100.192000pt;}
.y2b{bottom:100.826667pt;}
.y9d{bottom:105.472000pt;}
.ya0{bottom:106.432000pt;}
.y24{bottom:106.920000pt;}
.y46{bottom:110.272000pt;}
.ye0{bottom:112.672000pt;}
.y2a{bottom:114.586667pt;}
.yee{bottom:115.552000pt;}
.y9c{bottom:120.672000pt;}
.y9f{bottom:121.632000pt;}
.y23{bottom:122.280000pt;}
.y45{bottom:124.352000pt;}
.y104{bottom:125.472000pt;}
.ydf{bottom:128.032000pt;}
.yed{bottom:130.912000pt;}
.y9b{bottom:136.026667pt;}
.y9e{bottom:136.986667pt;}
.y22{bottom:137.640000pt;}
.y111{bottom:139.226667pt;}
.y44{bottom:139.706667pt;}
.y103{bottom:140.826667pt;}
.yde{bottom:143.386667pt;}
.yec{bottom:146.266667pt;}
.y9a{bottom:152.346667pt;}
.y21{bottom:153.000000pt;}
.y43{bottom:155.066667pt;}
.y102{bottom:156.186667pt;}
.y110{bottom:156.826667pt;}
.ydd{bottom:158.746667pt;}
.yeb{bottom:161.626667pt;}
.y99{bottom:167.706667pt;}
.y20{bottom:168.200000pt;}
.y42{bottom:170.426667pt;}
.y101{bottom:171.546667pt;}
.ydc{bottom:173.946667pt;}
.y10f{bottom:174.586667pt;}
.yea{bottom:176.826667pt;}
.y1f{bottom:183.560000pt;}
.y98{bottom:184.026667pt;}
.y41{bottom:185.626667pt;}
.y100{bottom:186.746667pt;}
.ydb{bottom:189.306667pt;}
.ye9{bottom:192.186667pt;}
.y1e{bottom:198.920000pt;}
.y97{bottom:199.386667pt;}
.y40{bottom:200.986667pt;}
.yff{bottom:202.106667pt;}
.yda{bottom:204.666667pt;}
.ye8{bottom:207.546667pt;}
.y10e{bottom:209.786667pt;}
.y1d{bottom:214.280000pt;}
.y96{bottom:215.546667pt;}
.y3f{bottom:216.346667pt;}
.yfe{bottom:217.466667pt;}
.yd9{bottom:220.026667pt;}
.ye7{bottom:222.906667pt;}
.y10d{bottom:227.386667pt;}
.y95{bottom:228.666667pt;}
.y1c{bottom:229.640000pt;}
.y3e{bottom:231.706667pt;}
.yfd{bottom:232.826667pt;}
.yd8{bottom:235.386667pt;}
.ye6{bottom:238.266667pt;}
.y94{bottom:241.626667pt;}
.y10c{bottom:244.986667pt;}
.y1b{bottom:245.026667pt;}
.y3d{bottom:247.066667pt;}
.yfc{bottom:248.186667pt;}
.yd7{bottom:250.746667pt;}
.ye5{bottom:253.626667pt;}
.y93{bottom:254.586667pt;}
.y1a{bottom:260.226667pt;}
.y3c{bottom:262.106667pt;}
.y10b{bottom:262.746667pt;}
.yfb{bottom:263.546667pt;}
.yd6{bottom:265.946667pt;}
.y92{bottom:267.546667pt;}
.ye4{bottom:268.826667pt;}
.y15{bottom:273.946667pt;}
.y19{bottom:275.586667pt;}
.yfa{bottom:278.746667pt;}
.y10a{bottom:280.346667pt;}
.y90{bottom:280.506667pt;}
.yd5{bottom:281.306667pt;}
.ye3{bottom:284.226667pt;}
.y18{bottom:290.946667pt;}
.y8f{bottom:293.506667pt;}
.yf9{bottom:294.146667pt;}
.yd4{bottom:297.666667pt;}
.y109{bottom:297.986667pt;}
.ye2{bottom:299.586667pt;}
.y17{bottom:306.306667pt;}
.y8e{bottom:308.226667pt;}
.yf8{bottom:309.506667pt;}
.yd3{bottom:313.986667pt;}
.ye1{bottom:314.946667pt;}
.y108{bottom:315.586667pt;}
.y8d{bottom:317.826667pt;}
.y16{bottom:321.666667pt;}
.yf7{bottom:324.866667pt;}
.y8c{bottom:330.146667pt;}
.yd2{bottom:330.306667pt;}
.y107{bottom:333.186667pt;}
.yf6{bottom:340.226667pt;}
.y8b{bottom:342.946667pt;}
.yd1{bottom:345.506667pt;}
.y106{bottom:350.946667pt;}
.yf5{bottom:355.426667pt;}
.y8a{bottom:358.306667pt;}
.yd0{bottom:360.866667pt;}
.y105{bottom:368.546667pt;}
.yf4{bottom:370.786667pt;}
.y89{bottom:371.426667pt;}
.ycf{bottom:376.226667pt;}
.y34{bottom:380.226667pt;}
.y88{bottom:384.386667pt;}
.yf3{bottom:386.146667pt;}
.yce{bottom:391.586667pt;}
.y87{bottom:397.346667pt;}
.yf2{bottom:401.506667pt;}
.ycd{bottom:406.946667pt;}
.y86{bottom:410.146667pt;}
.yf1{bottom:416.866667pt;}
.ycc{bottom:422.306667pt;}
.y85{bottom:425.026667pt;}
.yf0{bottom:432.226667pt;}
.y84{bottom:434.626667pt;}
.ycb{bottom:437.506667pt;}
.y83{bottom:447.426667pt;}
.yca{bottom:452.866667pt;}
.y67{bottom:462.786667pt;}
.y32{bottom:463.746667pt;}
.yc9{bottom:468.226667pt;}
.y82{bottom:471.426667pt;}
.y66{bottom:478.146667pt;}
.y29{bottom:482.146667pt;}
.yc8{bottom:483.586667pt;}
.y81{bottom:486.786667pt;}
.y65{bottom:493.506667pt;}
.yc7{bottom:498.946667pt;}
.y80{bottom:502.146667pt;}
.y64{bottom:508.893333pt;}
.y123{bottom:510.013333pt;}
.yc6{bottom:514.333333pt;}
.y7f{bottom:517.533333pt;}
.y63{bottom:524.253333pt;}
.y122{bottom:525.373333pt;}
.yc5{bottom:527.453333pt;}
.y7e{bottom:532.893333pt;}
.y62{bottom:539.453333pt;}
.yc4{bottom:540.253333pt;}
.y121{bottom:540.733333pt;}
.y7d{bottom:549.053333pt;}
.yc3{bottom:553.213333pt;}
.y61{bottom:554.813333pt;}
.y120{bottom:556.093333pt;}
.y7c{bottom:564.413333pt;}
.yc2{bottom:566.173333pt;}
.y60{bottom:570.173333pt;}
.y11f{bottom:571.453333pt;}
.ybf{bottom:579.133333pt;}
.y7b{bottom:580.733333pt;}
.y5f{bottom:585.533333pt;}
.y11e{bottom:586.813333pt;}
.y7a{bottom:596.093333pt;}
.y5e{bottom:600.893333pt;}
.y11d{bottom:602.013333pt;}
.ybe{bottom:604.253333pt;}
.y13{bottom:608.733333pt;}
.y79{bottom:611.453333pt;}
.y5d{bottom:616.253333pt;}
.ybd{bottom:617.213333pt;}
.y11c{bottom:617.373333pt;}
.y78{bottom:626.653333pt;}
.y5c{bottom:631.453333pt;}
.ybc{bottom:632.413333pt;}
.y11b{bottom:632.733333pt;}
.y12{bottom:639.453333pt;}
.y77{bottom:642.013333pt;}
.ybb{bottom:644.733333pt;}
.y5b{bottom:646.813333pt;}
.y11a{bottom:648.093333pt;}
.y11{bottom:657.053333pt;}
.y76{bottom:657.373333pt;}
.yb4{bottom:657.533333pt;}
.y5a{bottom:662.173333pt;}
.y119{bottom:663.453333pt;}
.y75{bottom:672.733333pt;}
.yb3{bottom:672.893333pt;}
.y59{bottom:677.533333pt;}
.y118{bottom:678.813333pt;}
.y10{bottom:682.813333pt;}
.y74{bottom:688.093333pt;}
.yba{bottom:688.253333pt;}
.yb2{bottom:689.213333pt;}
.y58{bottom:692.893333pt;}
.y117{bottom:694.013333pt;}
.yf{bottom:699.613333pt;}
.y73{bottom:703.453333pt;}
.yb9{bottom:703.613333pt;}
.yb1{bottom:705.533333pt;}
.y57{bottom:708.093333pt;}
.y116{bottom:709.373333pt;}
.ye{bottom:718.333333pt;}
.yb8{bottom:718.973333pt;}
.y72{bottom:719.613333pt;}
.yb0{bottom:720.893333pt;}
.y12a{bottom:722.493333pt;}
.y56{bottom:723.453333pt;}
.y71{bottom:735.013333pt;}
.yb7{bottom:735.173333pt;}
.yaf{bottom:736.133333pt;}
.y55{bottom:738.853333pt;}
.yd{bottom:746.053333pt;}
.yb6{bottom:750.533333pt;}
.y70{bottom:751.333333pt;}
.yae{bottom:751.493333pt;}
.y54{bottom:754.213333pt;}
.yb5{bottom:765.893333pt;}
.y6f{bottom:766.693333pt;}
.yad{bottom:766.853333pt;}
.y53{bottom:769.573333pt;}
.yc{bottom:773.573333pt;}
.yac{bottom:782.213333pt;}
.y6e{bottom:783.013333pt;}
.y52{bottom:784.933333pt;}
.yab{bottom:795.333333pt;}
.y6d{bottom:798.213333pt;}
.y51{bottom:800.133333pt;}
.yb{bottom:801.253333pt;}
.yaa{bottom:808.293333pt;}
.y129{bottom:809.093333pt;}
.y6c{bottom:814.533333pt;}
.y50{bottom:815.493333pt;}
.ya9{bottom:821.253333pt;}
.y125{bottom:822.053333pt;}
.ya{bottom:826.853333pt;}
.y6b{bottom:829.893333pt;}
.y4f{bottom:830.853333pt;}
.ya8{bottom:834.053333pt;}
.y8{bottom:840.453333pt;}
.y6a{bottom:845.253333pt;}
.y4e{bottom:846.213333pt;}
.ya7{bottom:847.013333pt;}
.y69{bottom:860.613333pt;}
.y4d{bottom:861.573333pt;}
.ya6{bottom:862.213333pt;}
.y124{bottom:871.813333pt;}
.ya5{bottom:874.533333pt;}
.y68{bottom:875.973333pt;}
.y4c{bottom:876.933333pt;}
.ya4{bottom:887.333333pt;}
.y4b{bottom:892.133333pt;}
.y115{bottom:900.613333pt;}
.ya3{bottom:902.693333pt;}
.y4a{bottom:907.493333pt;}
.y114{bottom:918.213333pt;}
.ya2{bottom:918.533333pt;}
.y49{bottom:922.853333pt;}
.y113{bottom:935.813333pt;}
.ya1{bottom:936.293333pt;}
.y48{bottom:938.213333pt;}
.y112{bottom:953.440000pt;}
.y47{bottom:953.600000pt;}
.y2{bottom:980.160000pt;}
.y1{bottom:995.520000pt;}
.h1d{height:12.160000pt;}
.h1e{height:12.192000pt;}
.h1c{height:12.320000pt;}
.h1f{height:12.320133pt;}
.he{height:15.200000pt;}
.h14{height:17.760000pt;}
.h1b{height:22.578125pt;}
.h21{height:24.480000pt;}
.h3{height:24.512000pt;}
.h5{height:29.940625pt;}
.h1a{height:30.254687pt;}
.h16{height:33.515625pt;}
.h17{height:33.867188pt;}
.h6{height:34.965625pt;}
.h12{height:35.554688pt;}
.h4{height:37.090625pt;}
.hd{height:37.479688pt;}
.h19{height:38.672812pt;}
.h13{height:39.347188pt;}
.h2{height:40.021563pt;}
.h22{height:40.410625pt;}
.h8{height:41.112500pt;}
.h10{height:42.691250pt;}
.h9{height:44.361250pt;}
.h1{height:45.156250pt;}
.hb{height:47.310625pt;}
.h23{height:48.960000pt;}
.h20{height:57.321875pt;}
.hc{height:67.031250pt;}
.ha{height:67.734375pt;}
.h15{height:82.880000pt;}
.h24{height:85.952000pt;}
.h18{height:105.632000pt;}
.h11{height:125.792000pt;}
.h7{height:136.826667pt;}
.hf{height:333.986667pt;}
.h0{height:1056.000000pt;}
.w2{width:34.752000pt;}
.w7{width:40.800000pt;}
.w14{width:67.712000pt;}
.wa{width:68.480000pt;}
.w8{width:90.080000pt;}
.w9{width:95.232000pt;}
.wd{width:103.040000pt;}
.wc{width:161.306667pt;}
.wb{width:178.586667pt;}
.w10{width:190.106667pt;}
.w6{width:195.706667pt;}
.w15{width:252.506667pt;}
.w11{width:271.226667pt;}
.w13{width:320.866667pt;}
.w12{width:365.986667pt;}
.wf{width:447.106667pt;}
.w5{width:522.973333pt;}
.we{width:534.173333pt;}
.w3{width:700.613333pt;}
.w4{width:730.533333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x11{left:5.760000pt;}
.x3{left:7.520000pt;}
.x1a{left:9.120000pt;}
.x1c{left:11.034667pt;}
.x22{left:12.800000pt;}
.x20{left:13.920000pt;}
.x10{left:17.760000pt;}
.x24{left:20.480000pt;}
.x44{left:22.240000pt;}
.x2e{left:23.200000pt;}
.x14{left:24.320000pt;}
.x27{left:27.514667pt;}
.x12{left:30.280000pt;}
.x13{left:31.880000pt;}
.x30{left:33.120000pt;}
.x23{left:35.560000pt;}
.x48{left:36.640000pt;}
.x6{left:40.480000pt;}
.x45{left:43.360000pt;}
.x2{left:47.999988pt;}
.x1{left:53.919988pt;}
.x3d{left:56.794667pt;}
.x15{left:58.239988pt;}
.x49{left:66.586667pt;}
.x46{left:68.954667pt;}
.x29{left:70.760000pt;}
.x3c{left:73.640000pt;}
.x26{left:75.080000pt;}
.x3a{left:77.320000pt;}
.x3e{left:78.399988pt;}
.x28{left:79.546667pt;}
.x25{left:83.866667pt;}
.x35{left:85.951988pt;}
.x4{left:89.632000pt;}
.x33{left:91.240000pt;}
.x9{left:93.631988pt;}
.x43{left:95.034667pt;}
.x5{left:96.031988pt;}
.x32{left:101.320000pt;}
.xa{left:106.911988pt;}
.x40{left:114.234667pt;}
.x1b{left:130.592000pt;}
.x3b{left:141.594667pt;}
.x4a{left:145.626667pt;}
.x42{left:165.146667pt;}
.x34{left:173.960000pt;}
.xd{left:174.906655pt;}
.x47{left:177.626667pt;}
.x19{left:184.506655pt;}
.x31{left:186.920000pt;}
.x2c{left:192.826667pt;}
.x38{left:202.114667pt;}
.x1d{left:221.306667pt;}
.x2f{left:249.186667pt;}
.x2d{left:253.666667pt;}
.x2b{left:280.386655pt;}
.x1e{left:317.186667pt;}
.x37{left:320.066655pt;}
.xc{left:358.946655pt;}
.x41{left:361.026667pt;}
.x1f{left:386.306667pt;}
.x8{left:408.066655pt;}
.x2a{left:410.626655pt;}
.xb{left:412.706655pt;}
.xe{left:413.666655pt;}
.x16{left:425.186655pt;}
.x17{left:426.493321pt;}
.x18{left:450.493321pt;}
.x3f{left:468.093321pt;}
.x36{left:516.093321pt;}
.x39{left:536.893333pt;}
.x21{left:565.693333pt;}
.xf{left:570.973333pt;}
.x7{left:722.213333pt;}
}




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