
    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_6d792e8aa6488a93954d6381.woff')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_4a02fed5a1e9c94aa1a4f2b2.woff')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_aa94f9c3ddb53d7cd9f38196.woff')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_59c517336c79b347652981a6.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_b4feb020e884746ba36338c3.woff')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_bd1d3f1fbbcfaa97f1c6925f.woff')format("woff");}.ff7{font-family:ff7;line-height:0.819824;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_5d123772bb4c8abe91c34807.woff')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_a3b01bf7b8d25e575da22b9d.woff')format("woff");}.ff9{font-family:ff9;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;}
.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;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v2{vertical-align:24.120000px;}
.ls11{letter-spacing:-0.513600px;}
.lse{letter-spacing:-0.413400px;}
.ls8{letter-spacing:-0.270000px;}
.ls9{letter-spacing:-0.216000px;}
.ls12{letter-spacing:-0.180000px;}
.lsf{letter-spacing:-0.153600px;}
.ls10{letter-spacing:-0.053280px;}
.ls1a{letter-spacing:-0.027360px;}
.lsd{letter-spacing:-0.013320px;}
.ls6{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.013320px;}
.ls2{letter-spacing:0.018000px;}
.ls15{letter-spacing:0.054720px;}
.lsb{letter-spacing:0.064800px;}
.ls1{letter-spacing:0.090000px;}
.ls3{letter-spacing:0.108000px;}
.ls7{letter-spacing:0.139800px;}
.ls0{letter-spacing:0.180000px;}
.ls19{letter-spacing:0.305400px;}
.ls16{letter-spacing:0.360000px;}
.ls18{letter-spacing:16.406640px;}
.ls17{letter-spacing:20.907360px;}
.ls5{letter-spacing:36.926640px;}
.ls4{letter-spacing:41.148000px;}
.lsa{letter-spacing:46.286640px;}
.ls14{letter-spacing:49.347360px;}
.lsc{letter-spacing:63.566640px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-60.120000px;}
.ws6{word-spacing:-15.210000px;}
.wsb{word-spacing:-15.169800px;}
.wse{word-spacing:-15.043320px;}
.ws0{word-spacing:-15.030000px;}
.ws7{word-spacing:-15.016680px;}
.wsa{word-spacing:-14.976720px;}
.ws9{word-spacing:-14.876400px;}
.wsd{word-spacing:-14.850000px;}
.wsc{word-spacing:-14.516400px;}
.wsf{word-spacing:-14.220000px;}
.ws10{word-spacing:-14.192640px;}
.ws3{word-spacing:-13.518000px;}
.ws2{word-spacing:-13.500000px;}
.ws8{word-spacing:-12.150000px;}
.ws1{word-spacing:-11.970000px;}
.ws5{word-spacing:0.000000px;}
._0{margin-left:-1.202400px;}
._3{width:1.085760px;}
._d{width:2.256480px;}
._e{width:3.258000px;}
._c{width:4.320000px;}
._7{width:6.156000px;}
._b{width:7.446000px;}
._6{width:8.532000px;}
._8{width:10.422000px;}
._5{width:11.491200px;}
._14{width:12.556800px;}
._16{width:13.966320px;}
._35{width:15.423840px;}
._17{width:16.590000px;}
._a{width:17.988000px;}
._9{width:19.188000px;}
._19{width:20.380680px;}
._33{width:21.402720px;}
._f{width:22.410000px;}
._2e{width:23.423760px;}
._21{width:24.589080px;}
._20{width:25.851600px;}
._27{width:26.933760px;}
._29{width:27.955800px;}
._28{width:29.098080px;}
._22{width:30.841560px;}
._24{width:31.932120px;}
._2c{width:33.530160px;}
._15{width:34.989840px;}
._1b{width:36.492840px;}
._2f{width:37.695240px;}
._11{width:38.718000px;}
._1a{width:39.737880px;}
._25{width:41.290920px;}
._10{width:42.336000px;}
._2a{width:43.406640px;}
._1d{width:44.488800px;}
._1c{width:45.751320px;}
._23{width:47.013840px;}
._32{width:48.336480px;}
._31{width:50.140080px;}
._1e{width:51.522840px;}
._1f{width:52.785360px;}
._13{width:54.486000px;}
._26{width:56.315160px;}
._2b{width:59.759280px;}
._36{width:61.942320px;}
._18{width:63.065880px;}
._30{width:66.673080px;}
._2d{width:71.889480px;}
._12{width:73.008000px;}
._34{width:78.095880px;}
._2{width:130.455480px;}
._37{width:149.878800px;}
._1{width:341.548680px;}
._4{width:977.879040px;}
.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:29.880000px;}
.fs6{font-size:42.120000px;}
.fs2{font-size:47.880000px;}
.fs7{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs0{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y16f{bottom:1.890000px;}
.y167{bottom:2.610000px;}
.y6{bottom:2.700000px;}
.y42{bottom:2.880000px;}
.y176{bottom:2.970000px;}
.y15{bottom:3.240000px;}
.y3b{bottom:6.030000px;}
.y4{bottom:8.460000px;}
.y9{bottom:14.040000px;}
.y16c{bottom:16.380000px;}
.y5{bottom:16.470000px;}
.y41{bottom:18.360000px;}
.y175{bottom:18.450000px;}
.y39{bottom:19.350000px;}
.y31{bottom:20.160000px;}
.y16b{bottom:30.240000px;}
.y40{bottom:33.930000px;}
.y174{bottom:34.050000px;}
.y7{bottom:35.550000px;}
.y30{bottom:35.730000px;}
.y16a{bottom:44.010000px;}
.y3f{bottom:49.410000px;}
.y173{bottom:49.530000px;}
.y2f{bottom:51.210000px;}
.y38{bottom:51.330000px;}
.y169{bottom:57.780000px;}
.y3{bottom:58.140000px;}
.y44{bottom:63.630000px;}
.y3e{bottom:64.980000px;}
.y172{bottom:65.100000px;}
.y2e{bottom:66.780000px;}
.y37{bottom:66.810000px;}
.y3d{bottom:80.460000px;}
.y171{bottom:80.580000px;}
.y2d{bottom:82.260000px;}
.y36{bottom:82.380000px;}
.y170{bottom:96.150000px;}
.y2c{bottom:97.830000px;}
.y35{bottom:97.860000px;}
.y2b{bottom:113.310000px;}
.y34{bottom:113.430000px;}
.y165{bottom:114.750000px;}
.y4b{bottom:118.710000px;}
.yf0{bottom:118.800000px;}
.yb0{bottom:120.780000px;}
.yd4{bottom:121.590000px;}
.y157{bottom:122.940000px;}
.y113{bottom:124.020000px;}
.y2a{bottom:128.880000px;}
.y33{bottom:128.910000px;}
.y16e{bottom:129.510000px;}
.y11c{bottom:131.580000px;}
.y4a{bottom:134.190000px;}
.yef{bottom:135.990000px;}
.yaf{bottom:137.970000px;}
.yd3{bottom:138.780000px;}
.y156{bottom:139.320000px;}
.y112{bottom:141.210000px;}
.y29{bottom:144.360000px;}
.y11b{bottom:147.960000px;}
.y81{bottom:148.770000px;}
.y49{bottom:149.760000px;}
.yee{bottom:153.270000px;}
.yae{bottom:155.250000px;}
.y155{bottom:155.730000px;}
.yd2{bottom:156.090000px;}
.y111{bottom:158.520000px;}
.y28{bottom:159.930000px;}
.y11a{bottom:164.370000px;}
.y48{bottom:165.270000px;}
.y80{bottom:166.080000px;}
.y43{bottom:166.860000px;}
.yed{bottom:170.580000px;}
.y154{bottom:172.110000px;}
.yad{bottom:172.560000px;}
.yd1{bottom:173.370000px;}
.y27{bottom:175.410000px;}
.y110{bottom:175.800000px;}
.y119{bottom:180.750000px;}
.y47{bottom:181.110000px;}
.y7f{bottom:183.360000px;}
.yec{bottom:187.770000px;}
.y153{bottom:188.490000px;}
.yac{bottom:189.750000px;}
.yd0{bottom:190.560000px;}
.y26{bottom:190.980000px;}
.y10f{bottom:192.990000px;}
.y118{bottom:197.130000px;}
.y46{bottom:198.390000px;}
.y7e{bottom:200.550000px;}
.y152{bottom:204.870000px;}
.yeb{bottom:205.050000px;}
.y25{bottom:206.460000px;}
.yab{bottom:207.030000px;}
.ycf{bottom:207.840000px;}
.y10e{bottom:210.270000px;}
.y117{bottom:213.510000px;}
.y45{bottom:215.310000px;}
.y7d{bottom:217.830000px;}
.y151{bottom:221.250000px;}
.y24{bottom:222.030000px;}
.yea{bottom:222.330000px;}
.yaa{bottom:224.310000px;}
.yce{bottom:225.030000px;}
.y10d{bottom:227.460000px;}
.y16{bottom:228.630000px;}
.y116{bottom:229.890000px;}
.y7c{bottom:235.020000px;}
.y23{bottom:237.510000px;}
.y150{bottom:237.720000px;}
.y16d{bottom:238.980000px;}
.ye9{bottom:239.520000px;}
.ya9{bottom:241.500000px;}
.ycd{bottom:242.310000px;}
.y10c{bottom:244.740000px;}
.y115{bottom:246.270000px;}
.y7b{bottom:252.300000px;}
.y22{bottom:253.080000px;}
.y14f{bottom:254.100000px;}
.y168{bottom:255.270000px;}
.ye8{bottom:256.800000px;}
.ya8{bottom:258.780000px;}
.ycc{bottom:259.590000px;}
.y10b{bottom:262.020000px;}
.y114{bottom:262.650000px;}
.y21{bottom:268.560000px;}
.y7a{bottom:269.580000px;}
.y14e{bottom:270.480000px;}
.ye7{bottom:274.080000px;}
.ya7{bottom:276.060000px;}
.ycb{bottom:276.780000px;}
.y10a{bottom:279.210000px;}
.y20{bottom:284.130000px;}
.y79{bottom:286.770000px;}
.y14d{bottom:286.860000px;}
.ye6{bottom:291.270000px;}
.ya6{bottom:293.250000px;}
.yca{bottom:294.060000px;}
.y109{bottom:296.490000px;}
.y1f{bottom:299.610000px;}
.y14c{bottom:303.240000px;}
.y78{bottom:305.130000px;}
.ye5{bottom:308.550000px;}
.ya5{bottom:310.530000px;}
.yc9{bottom:311.340000px;}
.y108{bottom:313.770000px;}
.y1e{bottom:315.180000px;}
.y14b{bottom:319.620000px;}
.y77{bottom:323.490000px;}
.y166{bottom:325.020000px;}
.ye4{bottom:325.830000px;}
.ya4{bottom:327.720000px;}
.yc8{bottom:328.530000px;}
.y1d{bottom:330.660000px;}
.y107{bottom:330.960000px;}
.y14a{bottom:336.000000px;}
.y76{bottom:340.680000px;}
.ye3{bottom:343.020000px;}
.y164{bottom:343.200000px;}
.ya3{bottom:345.000000px;}
.yc7{bottom:345.810000px;}
.y1c{bottom:346.260000px;}
.y106{bottom:348.240000px;}
.y149{bottom:352.380000px;}
.y75{bottom:357.960000px;}
.ye2{bottom:360.300000px;}
.y163{bottom:360.480000px;}
.y1b{bottom:361.740000px;}
.ya2{bottom:362.280000px;}
.yc6{bottom:363.090000px;}
.y105{bottom:365.520000px;}
.y148{bottom:368.760000px;}
.y74{bottom:375.240000px;}
.y1a{bottom:377.310000px;}
.ye1{bottom:377.580000px;}
.y162{bottom:377.760000px;}
.ya1{bottom:379.470000px;}
.yc5{bottom:380.280000px;}
.y104{bottom:382.710000px;}
.y147{bottom:385.140000px;}
.y19{bottom:392.790000px;}
.y73{bottom:393.510000px;}
.ye0{bottom:394.770000px;}
.y161{bottom:394.950000px;}
.ya0{bottom:396.750000px;}
.yc4{bottom:397.560000px;}
.y103{bottom:399.990000px;}
.y146{bottom:401.520000px;}
.y18{bottom:408.360000px;}
.y3c{bottom:408.900000px;}
.y72{bottom:410.790000px;}
.ydf{bottom:412.050000px;}
.y160{bottom:412.230000px;}
.y9f{bottom:414.030000px;}
.yc3{bottom:414.840000px;}
.y102{bottom:417.270000px;}
.y145{bottom:417.900000px;}
.y17{bottom:423.840000px;}
.yde{bottom:428.700000px;}
.y71{bottom:429.060000px;}
.y15f{bottom:429.510000px;}
.y9e{bottom:431.220000px;}
.yc2{bottom:432.030000px;}
.y144{bottom:434.280000px;}
.y101{bottom:434.460000px;}
.ydd{bottom:442.110000px;}
.y70{bottom:446.340000px;}
.y15e{bottom:446.700000px;}
.y9d{bottom:448.500000px;}
.yc1{bottom:449.310000px;}
.y143{bottom:450.660000px;}
.y100{bottom:451.740000px;}
.y6f{bottom:463.620000px;}
.y15d{bottom:463.980000px;}
.y9c{bottom:465.780000px;}
.yc0{bottom:466.590000px;}
.y142{bottom:467.040000px;}
.yff{bottom:469.020000px;}
.y15c{bottom:481.260000px;}
.y6e{bottom:481.890000px;}
.y9b{bottom:482.970000px;}
.y141{bottom:483.510000px;}
.ybf{bottom:483.780000px;}
.yfe{bottom:486.210000px;}
.y15b{bottom:498.450000px;}
.y6d{bottom:499.170000px;}
.y140{bottom:499.890000px;}
.y9a{bottom:500.250000px;}
.ybe{bottom:501.060000px;}
.y3a{bottom:502.770000px;}
.yfd{bottom:503.490000px;}
.y15a{bottom:515.550000px;}
.y13f{bottom:516.270000px;}
.y6c{bottom:517.530000px;}
.ybd{bottom:518.340000px;}
.yfc{bottom:520.770000px;}
.y32{bottom:523.560000px;}
.y159{bottom:531.930000px;}
.y13e{bottom:532.650000px;}
.y99{bottom:534.720000px;}
.ybc{bottom:535.530000px;}
.y6b{bottom:535.800000px;}
.yfb{bottom:537.960000px;}
.y158{bottom:548.310000px;}
.y13d{bottom:549.030000px;}
.y98{bottom:552.000000px;}
.ybb{bottom:552.810000px;}
.y6a{bottom:553.080000px;}
.yfa{bottom:555.240000px;}
.y13c{bottom:565.410000px;}
.y97{bottom:569.280000px;}
.yba{bottom:570.000000px;}
.y69{bottom:570.360000px;}
.yf9{bottom:572.430000px;}
.y13b{bottom:581.820000px;}
.yb9{bottom:587.310000px;}
.y68{bottom:587.580000px;}
.yf8{bottom:589.740000px;}
.y13a{bottom:598.200000px;}
.yb8{bottom:604.590000px;}
.y67{bottom:604.860000px;}
.yf7{bottom:607.020000px;}
.y139{bottom:614.580000px;}
.yb7{bottom:621.780000px;}
.y66{bottom:622.140000px;}
.yf6{bottom:624.210000px;}
.y138{bottom:630.960000px;}
.yb6{bottom:639.060000px;}
.y65{bottom:639.330000px;}
.yf5{bottom:641.490000px;}
.y137{bottom:647.340000px;}
.yb5{bottom:656.340000px;}
.y64{bottom:656.610000px;}
.yf4{bottom:658.770000px;}
.y136{bottom:663.720000px;}
.y14{bottom:665.790000px;}
.yb4{bottom:673.530000px;}
.y63{bottom:673.800000px;}
.yf3{bottom:675.960000px;}
.y135{bottom:680.100000px;}
.yb3{bottom:690.180000px;}
.y62{bottom:691.080000px;}
.yf2{bottom:693.240000px;}
.y134{bottom:696.480000px;}
.y13{bottom:700.440000px;}
.yb2{bottom:704.040000px;}
.y61{bottom:708.360000px;}
.yf1{bottom:710.520000px;}
.y133{bottom:712.950000px;}
.yb1{bottom:717.810000px;}
.y12{bottom:720.330000px;}
.y96{bottom:725.550000px;}
.y60{bottom:726.630000px;}
.ydc{bottom:727.710000px;}
.y132{bottom:729.330000px;}
.y95{bottom:742.830000px;}
.y5f{bottom:743.910000px;}
.ydb{bottom:744.990000px;}
.y131{bottom:745.710000px;}
.y11{bottom:755.880000px;}
.y94{bottom:760.110000px;}
.y5e{bottom:761.190000px;}
.y130{bottom:762.090000px;}
.yda{bottom:762.270000px;}
.y10{bottom:774.780000px;}
.y93{bottom:777.300000px;}
.y5d{bottom:778.380000px;}
.y12f{bottom:778.470000px;}
.yd9{bottom:779.460000px;}
.yf{bottom:787.020000px;}
.y92{bottom:794.580000px;}
.y12e{bottom:794.850000px;}
.y5c{bottom:795.660000px;}
.yd8{bottom:796.740000px;}
.ye{bottom:808.260000px;}
.y12d{bottom:811.230000px;}
.y91{bottom:811.860000px;}
.y5b{bottom:812.940000px;}
.yd7{bottom:814.020000px;}
.y12c{bottom:827.610000px;}
.y90{bottom:829.050000px;}
.y5a{bottom:830.130000px;}
.yd6{bottom:831.210000px;}
.yd{bottom:839.310000px;}
.y12b{bottom:843.990000px;}
.y8f{bottom:846.330000px;}
.y59{bottom:847.410000px;}
.yd5{bottom:848.490000px;}
.y12a{bottom:860.370000px;}
.y8e{bottom:863.610000px;}
.y58{bottom:865.770000px;}
.yc{bottom:870.360000px;}
.y129{bottom:876.750000px;}
.y8d{bottom:880.800000px;}
.y57{bottom:882.960000px;}
.y128{bottom:893.130000px;}
.y8c{bottom:898.080000px;}
.y56{bottom:900.240000px;}
.yb{bottom:901.410000px;}
.y127{bottom:909.510000px;}
.y8b{bottom:915.360000px;}
.y55{bottom:917.430000px;}
.y126{bottom:925.890000px;}
.ya{bottom:930.210000px;}
.y8a{bottom:932.550000px;}
.y54{bottom:934.710000px;}
.y125{bottom:942.270000px;}
.y8{bottom:945.600000px;}
.y89{bottom:949.830000px;}
.y53{bottom:951.990000px;}
.y124{bottom:958.740000px;}
.y88{bottom:967.110000px;}
.y52{bottom:969.180000px;}
.y123{bottom:975.120000px;}
.y87{bottom:984.300000px;}
.y51{bottom:986.460000px;}
.y122{bottom:991.500000px;}
.y86{bottom:1002.690000px;}
.y50{bottom:1003.770000px;}
.y121{bottom:1007.910000px;}
.y85{bottom:1019.880000px;}
.y4f{bottom:1020.960000px;}
.y120{bottom:1024.290000px;}
.y84{bottom:1037.160000px;}
.y4e{bottom:1038.240000px;}
.y11f{bottom:1040.670000px;}
.y83{bottom:1054.440000px;}
.y4d{bottom:1055.520000px;}
.y11e{bottom:1057.050000px;}
.y82{bottom:1071.630000px;}
.y4c{bottom:1072.710000px;}
.y11d{bottom:1073.430000px;}
.y2{bottom:1102.770000px;}
.y1{bottom:1119.960000px;}
.h1d{height:13.770000px;}
.h20{height:15.480000px;}
.he{height:17.280000px;}
.h16{height:19.980000px;}
.h3{height:27.630000px;}
.hc{height:30.458848px;}
.h1e{height:33.782520px;}
.h5{height:34.624160px;}
.h1a{height:36.073652px;}
.h12{height:38.100586px;}
.h11{height:39.049805px;}
.h6{height:39.082324px;}
.h14{height:39.999023px;}
.h1b{height:41.132461px;}
.h1c{height:41.410195px;}
.hf{height:42.418652px;}
.h4{height:43.475449px;}
.h19{height:43.769004px;}
.h15{height:44.532246px;}
.h2{height:45.295488px;}
.h8{height:47.640762px;}
.h9{height:49.635176px;}
.h1{height:50.800781px;}
.hb{height:53.838457px;}
.h1f{height:68.940000px;}
.ha{height:76.201172px;}
.hd{height:78.099609px;}
.h17{height:93.060000px;}
.h21{height:108.750000px;}
.h13{height:141.510000px;}
.h7{height:153.930000px;}
.h18{height:179.460000px;}
.h10{height:436.440000px;}
.h0{height:1188.000000px;}
.w2{width:39.060000px;}
.w8{width:92.430000px;}
.w6{width:220.350000px;}
.w9{width:254.460000px;}
.w7{width:347.610000px;}
.w5{width:588.480000px;}
.w3{width:787.950000px;}
.w4{width:821.790000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x12{left:6.660000px;}
.x3{left:8.640000px;}
.x11{left:20.160000px;}
.x15{left:27.630000px;}
.x13{left:34.110000px;}
.x14{left:36.090000px;}
.x6{left:45.540000px;}
.x2{left:53.999986px;}
.x17{left:59.669986px;}
.x1{left:60.749986px;}
.x16{left:65.429986px;}
.x27{left:77.130000px;}
.x9{left:84.329986px;}
.x23{left:86.669986px;}
.x18{left:88.199986px;}
.x26{left:89.280000px;}
.x4{left:100.890000px;}
.xd{left:102.059986px;}
.x5{left:107.999986px;}
.x24{left:113.669986px;}
.xe{left:129.599986px;}
.xa{left:143.459986px;}
.x1e{left:248.699986px;}
.xc{left:324.839986px;}
.x20{left:385.229986px;}
.x8{left:459.029986px;}
.xb{left:464.159986px;}
.xf{left:465.239986px;}
.x1f{left:473.969986px;}
.x1c{left:475.529986px;}
.x19{left:479.759986px;}
.x1d{left:502.529986px;}
.x21{left:505.229986px;}
.x1a{left:506.759986px;}
.x25{left:509.280000px;}
.x1b{left:526.559986px;}
.x22{left:532.229986px;}
.x28{left:602.430000px;}
.x10{left:642.210000px;}
.x7{left:812.430000px;}
@media print{
.v3{vertical-align:-24.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v2{vertical-align:21.440000pt;}
.ls11{letter-spacing:-0.456533pt;}
.lse{letter-spacing:-0.367467pt;}
.ls8{letter-spacing:-0.240000pt;}
.ls9{letter-spacing:-0.192000pt;}
.ls12{letter-spacing:-0.160000pt;}
.lsf{letter-spacing:-0.136533pt;}
.ls10{letter-spacing:-0.047360pt;}
.ls1a{letter-spacing:-0.024320pt;}
.lsd{letter-spacing:-0.011840pt;}
.ls6{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.011840pt;}
.ls2{letter-spacing:0.016000pt;}
.ls15{letter-spacing:0.048640pt;}
.lsb{letter-spacing:0.057600pt;}
.ls1{letter-spacing:0.080000pt;}
.ls3{letter-spacing:0.096000pt;}
.ls7{letter-spacing:0.124267pt;}
.ls0{letter-spacing:0.160000pt;}
.ls19{letter-spacing:0.271467pt;}
.ls16{letter-spacing:0.320000pt;}
.ls18{letter-spacing:14.583680pt;}
.ls17{letter-spacing:18.584320pt;}
.ls5{letter-spacing:32.823680pt;}
.ls4{letter-spacing:36.576000pt;}
.lsa{letter-spacing:41.143680pt;}
.ls14{letter-spacing:43.864320pt;}
.lsc{letter-spacing:56.503680pt;}
.ws4{word-spacing:-53.440000pt;}
.ws6{word-spacing:-13.520000pt;}
.wsb{word-spacing:-13.484267pt;}
.wse{word-spacing:-13.371840pt;}
.ws0{word-spacing:-13.360000pt;}
.ws7{word-spacing:-13.348160pt;}
.wsa{word-spacing:-13.312640pt;}
.ws9{word-spacing:-13.223467pt;}
.wsd{word-spacing:-13.200000pt;}
.wsc{word-spacing:-12.903467pt;}
.wsf{word-spacing:-12.640000pt;}
.ws10{word-spacing:-12.615680pt;}
.ws3{word-spacing:-12.016000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws8{word-spacing:-10.800000pt;}
.ws1{word-spacing:-10.640000pt;}
.ws5{word-spacing:0.000000pt;}
._0{margin-left:-1.068800pt;}
._3{width:0.965120pt;}
._d{width:2.005760pt;}
._e{width:2.896000pt;}
._c{width:3.840000pt;}
._7{width:5.472000pt;}
._b{width:6.618667pt;}
._6{width:7.584000pt;}
._8{width:9.264000pt;}
._5{width:10.214400pt;}
._14{width:11.161600pt;}
._16{width:12.414507pt;}
._35{width:13.710080pt;}
._17{width:14.746667pt;}
._a{width:15.989333pt;}
._9{width:17.056000pt;}
._19{width:18.116160pt;}
._33{width:19.024640pt;}
._f{width:19.920000pt;}
._2e{width:20.821120pt;}
._21{width:21.856960pt;}
._20{width:22.979200pt;}
._27{width:23.941120pt;}
._29{width:24.849600pt;}
._28{width:25.864960pt;}
._22{width:27.414720pt;}
._24{width:28.384107pt;}
._2c{width:29.804587pt;}
._15{width:31.102080pt;}
._1b{width:32.438080pt;}
._2f{width:33.506880pt;}
._11{width:34.416000pt;}
._1a{width:35.322560pt;}
._25{width:36.703040pt;}
._10{width:37.632000pt;}
._2a{width:38.583680pt;}
._1d{width:39.545600pt;}
._1c{width:40.667840pt;}
._23{width:41.790080pt;}
._32{width:42.965760pt;}
._31{width:44.568960pt;}
._1e{width:45.798080pt;}
._1f{width:46.920320pt;}
._13{width:48.432000pt;}
._26{width:50.057920pt;}
._2b{width:53.119360pt;}
._36{width:55.059840pt;}
._18{width:56.058560pt;}
._30{width:59.264960pt;}
._2d{width:63.901760pt;}
._12{width:64.896000pt;}
._34{width:69.418560pt;}
._2{width:115.960427pt;}
._37{width:133.225600pt;}
._1{width:303.598827pt;}
._4{width:869.225813pt;}
.fs3{font-size:26.560000pt;}
.fs6{font-size:37.440000pt;}
.fs2{font-size:42.560000pt;}
.fs7{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs0{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y16f{bottom:1.680000pt;}
.y167{bottom:2.320000pt;}
.y6{bottom:2.400000pt;}
.y42{bottom:2.560000pt;}
.y176{bottom:2.640000pt;}
.y15{bottom:2.880000pt;}
.y3b{bottom:5.360000pt;}
.y4{bottom:7.520000pt;}
.y9{bottom:12.480000pt;}
.y16c{bottom:14.560000pt;}
.y5{bottom:14.640000pt;}
.y41{bottom:16.320000pt;}
.y175{bottom:16.400000pt;}
.y39{bottom:17.200000pt;}
.y31{bottom:17.920000pt;}
.y16b{bottom:26.880000pt;}
.y40{bottom:30.160000pt;}
.y174{bottom:30.266667pt;}
.y7{bottom:31.600000pt;}
.y30{bottom:31.760000pt;}
.y16a{bottom:39.120000pt;}
.y3f{bottom:43.920000pt;}
.y173{bottom:44.026667pt;}
.y2f{bottom:45.520000pt;}
.y38{bottom:45.626667pt;}
.y169{bottom:51.360000pt;}
.y3{bottom:51.680000pt;}
.y44{bottom:56.560000pt;}
.y3e{bottom:57.760000pt;}
.y172{bottom:57.866667pt;}
.y2e{bottom:59.360000pt;}
.y37{bottom:59.386667pt;}
.y3d{bottom:71.520000pt;}
.y171{bottom:71.626667pt;}
.y2d{bottom:73.120000pt;}
.y36{bottom:73.226667pt;}
.y170{bottom:85.466667pt;}
.y2c{bottom:86.960000pt;}
.y35{bottom:86.986667pt;}
.y2b{bottom:100.720000pt;}
.y34{bottom:100.826667pt;}
.y165{bottom:102.000000pt;}
.y4b{bottom:105.520000pt;}
.yf0{bottom:105.600000pt;}
.yb0{bottom:107.360000pt;}
.yd4{bottom:108.080000pt;}
.y157{bottom:109.280000pt;}
.y113{bottom:110.240000pt;}
.y2a{bottom:114.560000pt;}
.y33{bottom:114.586667pt;}
.y16e{bottom:115.120000pt;}
.y11c{bottom:116.960000pt;}
.y4a{bottom:119.280000pt;}
.yef{bottom:120.880000pt;}
.yaf{bottom:122.640000pt;}
.yd3{bottom:123.360000pt;}
.y156{bottom:123.840000pt;}
.y112{bottom:125.520000pt;}
.y29{bottom:128.320000pt;}
.y11b{bottom:131.520000pt;}
.y81{bottom:132.240000pt;}
.y49{bottom:133.120000pt;}
.yee{bottom:136.240000pt;}
.yae{bottom:138.000000pt;}
.y155{bottom:138.426667pt;}
.yd2{bottom:138.746667pt;}
.y111{bottom:140.906667pt;}
.y28{bottom:142.160000pt;}
.y11a{bottom:146.106667pt;}
.y48{bottom:146.906667pt;}
.y80{bottom:147.626667pt;}
.y43{bottom:148.320000pt;}
.yed{bottom:151.626667pt;}
.y154{bottom:152.986667pt;}
.yad{bottom:153.386667pt;}
.yd1{bottom:154.106667pt;}
.y27{bottom:155.920000pt;}
.y110{bottom:156.266667pt;}
.y119{bottom:160.666667pt;}
.y47{bottom:160.986667pt;}
.y7f{bottom:162.986667pt;}
.yec{bottom:166.906667pt;}
.y153{bottom:167.546667pt;}
.yac{bottom:168.666667pt;}
.yd0{bottom:169.386667pt;}
.y26{bottom:169.760000pt;}
.y10f{bottom:171.546667pt;}
.y118{bottom:175.226667pt;}
.y46{bottom:176.346667pt;}
.y7e{bottom:178.266667pt;}
.y152{bottom:182.106667pt;}
.yeb{bottom:182.266667pt;}
.y25{bottom:183.520000pt;}
.yab{bottom:184.026667pt;}
.ycf{bottom:184.746667pt;}
.y10e{bottom:186.906667pt;}
.y117{bottom:189.786667pt;}
.y45{bottom:191.386667pt;}
.y7d{bottom:193.626667pt;}
.y151{bottom:196.666667pt;}
.y24{bottom:197.360000pt;}
.yea{bottom:197.626667pt;}
.yaa{bottom:199.386667pt;}
.yce{bottom:200.026667pt;}
.y10d{bottom:202.186667pt;}
.y16{bottom:203.226667pt;}
.y116{bottom:204.346667pt;}
.y7c{bottom:208.906667pt;}
.y23{bottom:211.120000pt;}
.y150{bottom:211.306667pt;}
.y16d{bottom:212.426667pt;}
.ye9{bottom:212.906667pt;}
.ya9{bottom:214.666667pt;}
.ycd{bottom:215.386667pt;}
.y10c{bottom:217.546667pt;}
.y115{bottom:218.906667pt;}
.y7b{bottom:224.266667pt;}
.y22{bottom:224.960000pt;}
.y14f{bottom:225.866667pt;}
.y168{bottom:226.906667pt;}
.ye8{bottom:228.266667pt;}
.ya8{bottom:230.026667pt;}
.ycc{bottom:230.746667pt;}
.y10b{bottom:232.906667pt;}
.y114{bottom:233.466667pt;}
.y21{bottom:238.720000pt;}
.y7a{bottom:239.626667pt;}
.y14e{bottom:240.426667pt;}
.ye7{bottom:243.626667pt;}
.ya7{bottom:245.386667pt;}
.ycb{bottom:246.026667pt;}
.y10a{bottom:248.186667pt;}
.y20{bottom:252.560000pt;}
.y79{bottom:254.906667pt;}
.y14d{bottom:254.986667pt;}
.ye6{bottom:258.906667pt;}
.ya6{bottom:260.666667pt;}
.yca{bottom:261.386667pt;}
.y109{bottom:263.546667pt;}
.y1f{bottom:266.320000pt;}
.y14c{bottom:269.546667pt;}
.y78{bottom:271.226667pt;}
.ye5{bottom:274.266667pt;}
.ya5{bottom:276.026667pt;}
.yc9{bottom:276.746667pt;}
.y108{bottom:278.906667pt;}
.y1e{bottom:280.160000pt;}
.y14b{bottom:284.106667pt;}
.y77{bottom:287.546667pt;}
.y166{bottom:288.906667pt;}
.ye4{bottom:289.626667pt;}
.ya4{bottom:291.306667pt;}
.yc8{bottom:292.026667pt;}
.y1d{bottom:293.920000pt;}
.y107{bottom:294.186667pt;}
.y14a{bottom:298.666667pt;}
.y76{bottom:302.826667pt;}
.ye3{bottom:304.906667pt;}
.y164{bottom:305.066667pt;}
.ya3{bottom:306.666667pt;}
.yc7{bottom:307.386667pt;}
.y1c{bottom:307.786667pt;}
.y106{bottom:309.546667pt;}
.y149{bottom:313.226667pt;}
.y75{bottom:318.186667pt;}
.ye2{bottom:320.266667pt;}
.y163{bottom:320.426667pt;}
.y1b{bottom:321.546667pt;}
.ya2{bottom:322.026667pt;}
.yc6{bottom:322.746667pt;}
.y105{bottom:324.906667pt;}
.y148{bottom:327.786667pt;}
.y74{bottom:333.546667pt;}
.y1a{bottom:335.386667pt;}
.ye1{bottom:335.626667pt;}
.y162{bottom:335.786667pt;}
.ya1{bottom:337.306667pt;}
.yc5{bottom:338.026667pt;}
.y104{bottom:340.186667pt;}
.y147{bottom:342.346667pt;}
.y19{bottom:349.146667pt;}
.y73{bottom:349.786667pt;}
.ye0{bottom:350.906667pt;}
.y161{bottom:351.066667pt;}
.ya0{bottom:352.666667pt;}
.yc4{bottom:353.386667pt;}
.y103{bottom:355.546667pt;}
.y146{bottom:356.906667pt;}
.y18{bottom:362.986667pt;}
.y3c{bottom:363.466667pt;}
.y72{bottom:365.146667pt;}
.ydf{bottom:366.266667pt;}
.y160{bottom:366.426667pt;}
.y9f{bottom:368.026667pt;}
.yc3{bottom:368.746667pt;}
.y102{bottom:370.906667pt;}
.y145{bottom:371.466667pt;}
.y17{bottom:376.746667pt;}
.yde{bottom:381.066667pt;}
.y71{bottom:381.386667pt;}
.y15f{bottom:381.786667pt;}
.y9e{bottom:383.306667pt;}
.yc2{bottom:384.026667pt;}
.y144{bottom:386.026667pt;}
.y101{bottom:386.186667pt;}
.ydd{bottom:392.986667pt;}
.y70{bottom:396.746667pt;}
.y15e{bottom:397.066667pt;}
.y9d{bottom:398.666667pt;}
.yc1{bottom:399.386667pt;}
.y143{bottom:400.586667pt;}
.y100{bottom:401.546667pt;}
.y6f{bottom:412.106667pt;}
.y15d{bottom:412.426667pt;}
.y9c{bottom:414.026667pt;}
.yc0{bottom:414.746667pt;}
.y142{bottom:415.146667pt;}
.yff{bottom:416.906667pt;}
.y15c{bottom:427.786667pt;}
.y6e{bottom:428.346667pt;}
.y9b{bottom:429.306667pt;}
.y141{bottom:429.786667pt;}
.ybf{bottom:430.026667pt;}
.yfe{bottom:432.186667pt;}
.y15b{bottom:443.066667pt;}
.y6d{bottom:443.706667pt;}
.y140{bottom:444.346667pt;}
.y9a{bottom:444.666667pt;}
.ybe{bottom:445.386667pt;}
.y3a{bottom:446.906667pt;}
.yfd{bottom:447.546667pt;}
.y15a{bottom:458.266667pt;}
.y13f{bottom:458.906667pt;}
.y6c{bottom:460.026667pt;}
.ybd{bottom:460.746667pt;}
.yfc{bottom:462.906667pt;}
.y32{bottom:465.386667pt;}
.y159{bottom:472.826667pt;}
.y13e{bottom:473.466667pt;}
.y99{bottom:475.306667pt;}
.ybc{bottom:476.026667pt;}
.y6b{bottom:476.266667pt;}
.yfb{bottom:478.186667pt;}
.y158{bottom:487.386667pt;}
.y13d{bottom:488.026667pt;}
.y98{bottom:490.666667pt;}
.ybb{bottom:491.386667pt;}
.y6a{bottom:491.626667pt;}
.yfa{bottom:493.546667pt;}
.y13c{bottom:502.586667pt;}
.y97{bottom:506.026667pt;}
.yba{bottom:506.666667pt;}
.y69{bottom:506.986667pt;}
.yf9{bottom:508.826667pt;}
.y13b{bottom:517.173333pt;}
.yb9{bottom:522.053333pt;}
.y68{bottom:522.293333pt;}
.yf8{bottom:524.213333pt;}
.y13a{bottom:531.733333pt;}
.yb8{bottom:537.413333pt;}
.y67{bottom:537.653333pt;}
.yf7{bottom:539.573333pt;}
.y139{bottom:546.293333pt;}
.yb7{bottom:552.693333pt;}
.y66{bottom:553.013333pt;}
.yf6{bottom:554.853333pt;}
.y138{bottom:560.853333pt;}
.yb6{bottom:568.053333pt;}
.y65{bottom:568.293333pt;}
.yf5{bottom:570.213333pt;}
.y137{bottom:575.413333pt;}
.yb5{bottom:583.413333pt;}
.y64{bottom:583.653333pt;}
.yf4{bottom:585.573333pt;}
.y136{bottom:589.973333pt;}
.y14{bottom:591.813333pt;}
.yb4{bottom:598.693333pt;}
.y63{bottom:598.933333pt;}
.yf3{bottom:600.853333pt;}
.y135{bottom:604.533333pt;}
.yb3{bottom:613.493333pt;}
.y62{bottom:614.293333pt;}
.yf2{bottom:616.213333pt;}
.y134{bottom:619.093333pt;}
.y13{bottom:622.613333pt;}
.yb2{bottom:625.813333pt;}
.y61{bottom:629.653333pt;}
.yf1{bottom:631.573333pt;}
.y133{bottom:633.733333pt;}
.yb1{bottom:638.053333pt;}
.y12{bottom:640.293333pt;}
.y96{bottom:644.933333pt;}
.y60{bottom:645.893333pt;}
.ydc{bottom:646.853333pt;}
.y132{bottom:648.293333pt;}
.y95{bottom:660.293333pt;}
.y5f{bottom:661.253333pt;}
.ydb{bottom:662.213333pt;}
.y131{bottom:662.853333pt;}
.y11{bottom:671.893333pt;}
.y94{bottom:675.653333pt;}
.y5e{bottom:676.613333pt;}
.y130{bottom:677.413333pt;}
.yda{bottom:677.573333pt;}
.y10{bottom:688.693333pt;}
.y93{bottom:690.933333pt;}
.y5d{bottom:691.893333pt;}
.y12f{bottom:691.973333pt;}
.yd9{bottom:692.853333pt;}
.yf{bottom:699.573333pt;}
.y92{bottom:706.293333pt;}
.y12e{bottom:706.533333pt;}
.y5c{bottom:707.253333pt;}
.yd8{bottom:708.213333pt;}
.ye{bottom:718.453333pt;}
.y12d{bottom:721.093333pt;}
.y91{bottom:721.653333pt;}
.y5b{bottom:722.613333pt;}
.yd7{bottom:723.573333pt;}
.y12c{bottom:735.653333pt;}
.y90{bottom:736.933333pt;}
.y5a{bottom:737.893333pt;}
.yd6{bottom:738.853333pt;}
.yd{bottom:746.053333pt;}
.y12b{bottom:750.213333pt;}
.y8f{bottom:752.293333pt;}
.y59{bottom:753.253333pt;}
.yd5{bottom:754.213333pt;}
.y12a{bottom:764.773333pt;}
.y8e{bottom:767.653333pt;}
.y58{bottom:769.573333pt;}
.yc{bottom:773.653333pt;}
.y129{bottom:779.333333pt;}
.y8d{bottom:782.933333pt;}
.y57{bottom:784.853333pt;}
.y128{bottom:793.893333pt;}
.y8c{bottom:798.293333pt;}
.y56{bottom:800.213333pt;}
.yb{bottom:801.253333pt;}
.y127{bottom:808.453333pt;}
.y8b{bottom:813.653333pt;}
.y55{bottom:815.493333pt;}
.y126{bottom:823.013333pt;}
.ya{bottom:826.853333pt;}
.y8a{bottom:828.933333pt;}
.y54{bottom:830.853333pt;}
.y125{bottom:837.573333pt;}
.y8{bottom:840.533333pt;}
.y89{bottom:844.293333pt;}
.y53{bottom:846.213333pt;}
.y124{bottom:852.213333pt;}
.y88{bottom:859.653333pt;}
.y52{bottom:861.493333pt;}
.y123{bottom:866.773333pt;}
.y87{bottom:874.933333pt;}
.y51{bottom:876.853333pt;}
.y122{bottom:881.333333pt;}
.y86{bottom:891.280000pt;}
.y50{bottom:892.240000pt;}
.y121{bottom:895.920000pt;}
.y85{bottom:906.560000pt;}
.y4f{bottom:907.520000pt;}
.y120{bottom:910.480000pt;}
.y84{bottom:921.920000pt;}
.y4e{bottom:922.880000pt;}
.y11f{bottom:925.040000pt;}
.y83{bottom:937.280000pt;}
.y4d{bottom:938.240000pt;}
.y11e{bottom:939.600000pt;}
.y82{bottom:952.560000pt;}
.y4c{bottom:953.520000pt;}
.y11d{bottom:954.160000pt;}
.y2{bottom:980.240000pt;}
.y1{bottom:995.520000pt;}
.h1d{height:12.240000pt;}
.h20{height:13.760000pt;}
.he{height:15.360000pt;}
.h16{height:17.760000pt;}
.h3{height:24.560000pt;}
.hc{height:27.074531pt;}
.h1e{height:30.028906pt;}
.h5{height:30.777031pt;}
.h1a{height:32.065469pt;}
.h12{height:33.867188pt;}
.h11{height:34.710938pt;}
.h6{height:34.739844pt;}
.h14{height:35.554688pt;}
.h1b{height:36.562188pt;}
.h1c{height:36.809062pt;}
.hf{height:37.705469pt;}
.h4{height:38.644844pt;}
.h19{height:38.905781pt;}
.h15{height:39.584219pt;}
.h2{height:40.262656pt;}
.h8{height:42.347344pt;}
.h9{height:44.120156pt;}
.h1{height:45.156250pt;}
.hb{height:47.856406pt;}
.h1f{height:61.280000pt;}
.ha{height:67.734375pt;}
.hd{height:69.421875pt;}
.h17{height:82.720000pt;}
.h21{height:96.666667pt;}
.h13{height:125.786667pt;}
.h7{height:136.826667pt;}
.h18{height:159.520000pt;}
.h10{height:387.946667pt;}
.h0{height:1056.000000pt;}
.w2{width:34.720000pt;}
.w8{width:82.160000pt;}
.w6{width:195.866667pt;}
.w9{width:226.186667pt;}
.w7{width:308.986667pt;}
.w5{width:523.093333pt;}
.w3{width:700.400000pt;}
.w4{width:730.480000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x12{left:5.920000pt;}
.x3{left:7.680000pt;}
.x11{left:17.920000pt;}
.x15{left:24.560000pt;}
.x13{left:30.320000pt;}
.x14{left:32.080000pt;}
.x6{left:40.480000pt;}
.x2{left:47.999988pt;}
.x17{left:53.039988pt;}
.x1{left:53.999988pt;}
.x16{left:58.159988pt;}
.x27{left:68.560000pt;}
.x9{left:74.959988pt;}
.x23{left:77.039988pt;}
.x18{left:78.399988pt;}
.x26{left:79.360000pt;}
.x4{left:89.680000pt;}
.xd{left:90.719988pt;}
.x5{left:95.999988pt;}
.x24{left:101.039988pt;}
.xe{left:115.199988pt;}
.xa{left:127.519988pt;}
.x1e{left:221.066655pt;}
.xc{left:288.746655pt;}
.x20{left:342.426655pt;}
.x8{left:408.026655pt;}
.xb{left:412.586655pt;}
.xf{left:413.546655pt;}
.x1f{left:421.306655pt;}
.x1c{left:422.693321pt;}
.x19{left:426.453321pt;}
.x1d{left:446.693321pt;}
.x21{left:449.093321pt;}
.x1a{left:450.453321pt;}
.x25{left:452.693333pt;}
.x1b{left:468.053321pt;}
.x22{left:473.093321pt;}
.x28{left:535.493333pt;}
.x10{left:570.853333pt;}
.x7{left:722.160000pt;}
}




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