
    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_e2b6901641ef74e3ef5687d2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.933594;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_a076ac5bc3d16429261d4ea4.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_6110d0c7a4a188330f46b47a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_8124a4eabf6de1e854bdb7ca.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_e35c8097239fdaa934a4f73c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.933594;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_6ca070eef69136e4ff3e8538.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_e7876b929d568b06cf10cbb3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.971191;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_26426f844649bd4096d2e5ff.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ff9{font-family:ff9;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;}
.m3{transform:matrix(0.208955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208955,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m2{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;}
.v2{vertical-align:24.120000px;}
.v5{vertical-align:27.000000px;}
.v4{vertical-align:29.880000px;}
.v1{vertical-align:33.120000px;}
.ls17{letter-spacing:-0.413400px;}
.ls15{letter-spacing:-0.346200px;}
.ls16{letter-spacing:-0.270000px;}
.ls4{letter-spacing:-0.220200px;}
.lse{letter-spacing:-0.189600px;}
.lsa{letter-spacing:-0.184800px;}
.ls13{letter-spacing:-0.180000px;}
.lsf{letter-spacing:-0.139800px;}
.ls9{letter-spacing:-0.045360px;}
.ls12{letter-spacing:-0.008640px;}
.ls10{letter-spacing:-0.004320px;}
.ls2{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.012960px;}
.lsb{letter-spacing:0.014040px;}
.ls8{letter-spacing:0.021960px;}
.ls18{letter-spacing:0.090000px;}
.ls3{letter-spacing:0.139800px;}
.ls1{letter-spacing:0.148200px;}
.lsc{letter-spacing:0.170400px;}
.lsd{letter-spacing:0.175200px;}
.ls0{letter-spacing:0.180000px;}
.ls14{letter-spacing:4.770000px;}
.ls5{letter-spacing:36.405360px;}
.ls6{letter-spacing:59.445360px;}
.ls7{letter-spacing:196.290000px;}
.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;}
}
.ws8{word-spacing:-65.880000px;}
.ws1{word-spacing:-21.150000px;}
.ws0{word-spacing:-21.118200px;}
.ws9{word-spacing:-16.650000px;}
.wsc{word-spacing:-16.491960px;}
.wsa{word-spacing:-16.470000px;}
.wsb{word-spacing:-16.424640px;}
.ws3{word-spacing:-15.210000px;}
.ws2{word-spacing:-15.169800px;}
.ws4{word-spacing:-15.030000px;}
.ws12{word-spacing:-14.890200px;}
.ws6{word-spacing:-14.809800px;}
.ws10{word-spacing:-10.705200px;}
.wsf{word-spacing:-10.700400px;}
.wse{word-spacing:-10.544040px;}
.ws16{word-spacing:-10.350000px;}
.wsd{word-spacing:-10.345200px;}
.ws11{word-spacing:-10.340400px;}
.ws17{word-spacing:-10.183800px;}
.ws14{word-spacing:-9.732960px;}
.ws5{word-spacing:-9.720000px;}
.ws13{word-spacing:-9.715680px;}
.ws15{word-spacing:-9.711360px;}
.ws7{word-spacing:0.000000px;}
._1b{margin-left:-7.773840px;}
._8{margin-left:-6.735960px;}
._c{margin-left:-5.643720px;}
._e{margin-left:-4.599000px;}
._3{margin-left:-3.547080px;}
._6{margin-left:-2.479320px;}
._0{margin-left:-1.188000px;}
._1{width:1.207560px;}
._5{width:3.066120px;}
._2{width:4.090440px;}
._a{width:5.769240px;}
._9{width:7.274520px;}
._7{width:9.063720px;}
._4{width:10.220400px;}
._b{width:11.543040px;}
._d{width:13.300920px;}
._1d{width:14.349960px;}
._11{width:15.415920px;}
._24{width:16.953840px;}
._12{width:18.182880px;}
._1c{width:19.434600px;}
._13{width:20.554560px;}
._f{width:21.674520px;}
._10{width:23.692680px;}
._19{width:25.759080px;}
._1a{width:26.966880px;}
._17{width:28.130760px;}
._16{width:29.316600px;}
._28{width:31.107960px;}
._18{width:32.478840px;}
._27{width:34.024440px;}
._20{width:35.293920px;}
._1e{width:36.356400px;}
._1f{width:37.893720px;}
._22{width:43.226280px;}
._23{width:47.134080px;}
._15{width:48.687480px;}
._14{width:52.374600px;}
._26{width:69.438600px;}
._25{width:109.933200px;}
._21{width:847.530000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,128);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:6.120000px;}
.fs8{font-size:18.000000px;}
.fsb{font-size:24.120000px;}
.fsc{font-size:29.880000px;}
.fsa{font-size:30.000000px;}
.fsd{font-size:36.000000px;}
.fs7{font-size:38.880000px;}
.fse{font-size:42.120000px;}
.fs0{font-size:45.000000px;}
.fs5{font-size:47.880000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:60.120000px;}
.fs6{font-size:65.880000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y15d{bottom:3.240000px;}
.y131{bottom:3.330000px;}
.y135{bottom:3.420000px;}
.y133{bottom:3.510000px;}
.y15f{bottom:3.540000px;}
.y12e{bottom:15.580500px;}
.y102{bottom:15.777000px;}
.y75{bottom:16.212000px;}
.y145{bottom:16.363500px;}
.yb1{bottom:16.668000px;}
.y117{bottom:16.929000px;}
.y157{bottom:17.103000px;}
.ya5{bottom:17.668500px;}
.y167{bottom:20.790000px;}
.y38{bottom:28.347000px;}
.y15b{bottom:28.710000px;}
.y12d{bottom:30.580500px;}
.y103{bottom:30.777000px;}
.y9{bottom:31.050000px;}
.y76{bottom:31.212000px;}
.y146{bottom:31.363500px;}
.yb2{bottom:31.668000px;}
.y118{bottom:31.929000px;}
.y158{bottom:32.103000px;}
.ya6{bottom:32.668500px;}
.y37{bottom:43.347000px;}
.y48{bottom:51.120000px;}
.y8{bottom:51.750000px;}
.y47{bottom:69.030000px;}
.y7{bottom:71.820000px;}
.y6{bottom:89.730000px;}
.y74{bottom:91.980000px;}
.y12c{bottom:94.410000px;}
.y101{bottom:98.820000px;}
.yd9{bottom:99.810000px;}
.yb0{bottom:102.240000px;}
.y36{bottom:106.650000px;}
.ya4{bottom:107.460000px;}
.y156{bottom:107.640000px;}
.y73{bottom:110.970000px;}
.y35{bottom:111.420000px;}
.y17c{bottom:112.590000px;}
.y1a1{bottom:117.000000px;}
.y100{bottom:117.810000px;}
.yd8{bottom:118.800000px;}
.yaf{bottom:121.230000px;}
.y155{bottom:122.940000px;}
.ya3{bottom:126.450000px;}
.y144{bottom:128.790000px;}
.y72{bottom:129.960000px;}
.y154{bottom:130.140000px;}
.y17b{bottom:131.580000px;}
.y34{bottom:135.450000px;}
.yff{bottom:136.800000px;}
.yd7{bottom:137.880000px;}
.y1a0{bottom:137.970000px;}
.yae{bottom:141.390000px;}
.y33{bottom:143.550000px;}
.ya2{bottom:145.350000px;}
.y116{bottom:145.440000px;}
.y71{bottom:148.950000px;}
.y143{bottom:149.130000px;}
.y32{bottom:151.110000px;}
.y17a{bottom:151.740000px;}
.yd6{bottom:156.780000px;}
.yfe{bottom:156.960000px;}
.y19f{bottom:159.030000px;}
.yad{bottom:160.380000px;}
.ya1{bottom:164.340000px;}
.y115{bottom:164.430000px;}
.y70{bottom:167.940000px;}
.y142{bottom:168.120000px;}
.y179{bottom:170.730000px;}
.y31{bottom:175.140000px;}
.yd5{bottom:175.770000px;}
.yfd{bottom:175.860000px;}
.y19e{bottom:180.000000px;}
.yac{bottom:180.540000px;}
.ya0{bottom:183.330000px;}
.y114{bottom:183.420000px;}
.y30{bottom:186.300000px;}
.y6f{bottom:186.840000px;}
.y141{bottom:186.930000px;}
.y178{bottom:189.720000px;}
.yd4{bottom:194.760000px;}
.yfc{bottom:194.850000px;}
.yab{bottom:199.530000px;}
.y9f{bottom:202.320000px;}
.y113{bottom:202.410000px;}
.y6e{bottom:205.020000px;}
.y140{bottom:205.920000px;}
.y19d{bottom:207.000000px;}
.y177{bottom:209.790000px;}
.yd3{bottom:213.750000px;}
.yfb{bottom:215.010000px;}
.y2f{bottom:217.890000px;}
.yaa{bottom:218.520000px;}
.y6d{bottom:219.690000px;}
.y9e{bottom:221.310000px;}
.y112{bottom:222.570000px;}
.y13f{bottom:225.000000px;}
.y19c{bottom:227.970000px;}
.y176{bottom:228.780000px;}
.yd2{bottom:232.740000px;}
.yfa{bottom:234.000000px;}
.y2e{bottom:236.880000px;}
.y6c{bottom:238.590000px;}
.y9d{bottom:240.210000px;}
.y111{bottom:241.560000px;}
.y13e{bottom:243.990000px;}
.y175{bottom:247.770000px;}
.y19b{bottom:248.940000px;}
.yd1{bottom:251.640000px;}
.yf9{bottom:252.990000px;}
.y2d{bottom:255.870000px;}
.ya9{bottom:257.490000px;}
.y6b{bottom:257.580000px;}
.y9c{bottom:259.200000px;}
.y110{bottom:260.460000px;}
.y13d{bottom:262.080000px;}
.y174{bottom:266.760000px;}
.yd0{bottom:270.630000px;}
.yf8{bottom:271.980000px;}
.y13c{bottom:274.500000px;}
.y2c{bottom:274.860000px;}
.y19a{bottom:276.030000px;}
.ya8{bottom:276.480000px;}
.y6a{bottom:276.570000px;}
.y9b{bottom:278.190000px;}
.y10f{bottom:279.450000px;}
.y13b{bottom:283.410000px;}
.y173{bottom:285.750000px;}
.ycf{bottom:289.620000px;}
.yf7{bottom:290.880000px;}
.y2b{bottom:293.850000px;}
.y69{bottom:295.560000px;}
.y199{bottom:297.000000px;}
.y9a{bottom:297.180000px;}
.y10e{bottom:298.440000px;}
.y13a{bottom:300.420000px;}
.y172{bottom:304.650000px;}
.yce{bottom:308.610000px;}
.yf6{bottom:309.870000px;}
.y2a{bottom:312.840000px;}
.y68{bottom:314.550000px;}
.y99{bottom:316.170000px;}
.y10d{bottom:317.430000px;}
.y198{bottom:317.970000px;}
.y171{bottom:323.550000px;}
.ycd{bottom:327.600000px;}
.yf5{bottom:328.860000px;}
.y29{bottom:331.650000px;}
.y67{bottom:333.540000px;}
.y98{bottom:335.160000px;}
.y10c{bottom:336.420000px;}
.y170{bottom:342.180000px;}
.y197{bottom:344.970000px;}
.ycc{bottom:347.760000px;}
.yf4{bottom:347.850000px;}
.y28{bottom:351.120000px;}
.y66{bottom:352.470000px;}
.y97{bottom:354.090000px;}
.y10b{bottom:354.720000px;}
.y16f{bottom:358.230000px;}
.y10a{bottom:364.890000px;}
.y196{bottom:366.060000px;}
.ycb{bottom:366.780000px;}
.yf3{bottom:366.870000px;}
.y27{bottom:371.190000px;}
.y65{bottom:371.460000px;}
.y96{bottom:373.080000px;}
.y16e{bottom:377.130000px;}
.y109{bottom:382.170000px;}
.yca{bottom:385.680000px;}
.yf2{bottom:386.940000px;}
.y195{bottom:387.030000px;}
.y12b{bottom:388.020000px;}
.y26{bottom:388.470000px;}
.y64{bottom:390.450000px;}
.y95{bottom:392.070000px;}
.y12a{bottom:395.130000px;}
.y16d{bottom:396.120000px;}
.y129{bottom:400.080000px;}
.yc9{bottom:404.670000px;}
.y25{bottom:405.480000px;}
.yf1{bottom:405.840000px;}
.ya7{bottom:409.350000px;}
.y63{bottom:409.440000px;}
.y94{bottom:411.060000px;}
.y194{bottom:414.030000px;}
.y16c{bottom:415.110000px;}
.y128{bottom:418.080000px;}
.y24{bottom:422.940000px;}
.yc8{bottom:424.830000px;}
.yf0{bottom:424.920000px;}
.y62{bottom:428.430000px;}
.y93{bottom:430.050000px;}
.y16b{bottom:434.100000px;}
.y193{bottom:435.000000px;}
.y127{bottom:436.080000px;}
.y153{bottom:438.150000px;}
.y23{bottom:440.220000px;}
.yc7{bottom:443.820000px;}
.yef{bottom:443.910000px;}
.y152{bottom:445.080000px;}
.y61{bottom:447.330000px;}
.y92{bottom:448.950000px;}
.y16a{bottom:451.200000px;}
.y126{bottom:454.080000px;}
.y151{bottom:454.260000px;}
.y192{bottom:455.970000px;}
.y22{bottom:457.410000px;}
.y169{bottom:461.640000px;}
.yc6{bottom:462.810000px;}
.yee{bottom:462.900000px;}
.y60{bottom:466.320000px;}
.y91{bottom:467.940000px;}
.y125{bottom:472.080000px;}
.y150{bottom:473.250000px;}
.y21{bottom:474.690000px;}
.y168{bottom:478.380000px;}
.yc5{bottom:481.800000px;}
.yed{bottom:481.890000px;}
.y191{bottom:483.060000px;}
.y5f{bottom:485.310000px;}
.y90{bottom:486.930000px;}
.y166{bottom:488.640000px;}
.y124{bottom:490.080000px;}
.y20{bottom:491.970000px;}
.y14f{bottom:492.150000px;}
.yc4{bottom:500.700000px;}
.yec{bottom:500.880000px;}
.y190{bottom:504.030000px;}
.y5e{bottom:504.300000px;}
.y8f{bottom:505.920000px;}
.y123{bottom:508.080000px;}
.y1f{bottom:509.160000px;}
.y14e{bottom:511.140000px;}
.yeb{bottom:518.970000px;}
.yc3{bottom:519.690000px;}
.y5d{bottom:523.290000px;}
.y8e{bottom:524.820000px;}
.y18f{bottom:525.000000px;}
.y122{bottom:526.080000px;}
.y1e{bottom:526.440000px;}
.y14d{bottom:530.130000px;}
.y165{bottom:531.390000px;}
.yea{bottom:533.370000px;}
.yc2{bottom:539.850000px;}
.y5c{bottom:542.280000px;}
.y121{bottom:542.730000px;}
.y8d{bottom:543.000000px;}
.y1d{bottom:543.720000px;}
.y14c{bottom:549.120000px;}
.ye9{bottom:550.560000px;}
.y18e{bottom:552.000000px;}
.y120{bottom:554.340000px;}
.y1b1{bottom:556.410000px;}
.y164{bottom:556.950000px;}
.y8c{bottom:557.670000px;}
.yc1{bottom:558.840000px;}
.y1c{bottom:560.910000px;}
.y5b{bottom:561.180000px;}
.ye8{bottom:565.860000px;}
.y14b{bottom:568.110000px;}
.y11f{bottom:569.460000px;}
.y18d{bottom:573.060000px;}
.y11e{bottom:575.040000px;}
.ye7{bottom:575.400000px;}
.y8b{bottom:576.660000px;}
.y1b0{bottom:577.110000px;}
.yc0{bottom:577.830000px;}
.y1b{bottom:578.190000px;}
.y5a{bottom:580.170000px;}
.y163{bottom:582.420000px;}
.y14a{bottom:585.840000px;}
.y18c{bottom:594.030000px;}
.y1a{bottom:595.380000px;}
.y8a{bottom:595.650000px;}
.ye6{bottom:596.100000px;}
.ybf{bottom:596.820000px;}
.y1af{bottom:598.080000px;}
.y149{bottom:598.890000px;}
.y59{bottom:599.160000px;}
.y162{bottom:607.890000px;}
.y19{bottom:612.660000px;}
.y148{bottom:614.280000px;}
.y18b{bottom:615.000000px;}
.ybe{bottom:615.720000px;}
.y89{bottom:615.810000px;}
.ye5{bottom:616.800000px;}
.y58{bottom:618.150000px;}
.y1ae{bottom:619.050000px;}
.y147{bottom:621.300000px;}
.y18{bottom:629.940000px;}
.y161{bottom:633.450000px;}
.ybd{bottom:634.710000px;}
.y88{bottom:635.880000px;}
.y57{bottom:637.140000px;}
.ye4{bottom:637.500000px;}
.y18a{bottom:642.000000px;}
.y1ad{bottom:646.050000px;}
.y17{bottom:647.130000px;}
.ybc{bottom:653.700000px;}
.y87{bottom:654.870000px;}
.y56{bottom:656.040000px;}
.ye3{bottom:658.200000px;}
.y160{bottom:658.920000px;}
.y189{bottom:663.060000px;}
.y16{bottom:664.410000px;}
.y1ac{bottom:673.140000px;}
.ybb{bottom:673.860000px;}
.y55{bottom:675.030000px;}
.ye2{bottom:678.900000px;}
.y15{bottom:681.690000px;}
.y188{bottom:684.030000px;}
.y15e{bottom:684.390000px;}
.y139{bottom:689.730000px;}
.yba{bottom:692.880000px;}
.y54{bottom:694.050000px;}
.y1ab{bottom:694.140000px;}
.y138{bottom:698.550000px;}
.y14{bottom:698.910000px;}
.ye1{bottom:699.630000px;}
.y15a{bottom:709.980000px;}
.y187{bottom:710.160000px;}
.yb9{bottom:711.870000px;}
.y53{bottom:713.040000px;}
.y1aa{bottom:715.110000px;}
.y137{bottom:715.830000px;}
.y13{bottom:716.190000px;}
.ye0{bottom:720.330000px;}
.y186{bottom:728.070000px;}
.y108{bottom:729.510000px;}
.yb8{bottom:730.860000px;}
.y136{bottom:731.490000px;}
.y52{bottom:732.030000px;}
.y12{bottom:733.470000px;}
.y15c{bottom:735.450000px;}
.ydf{bottom:741.030000px;}
.y1a9{bottom:742.110000px;}
.y134{bottom:743.100000px;}
.y185{bottom:748.590000px;}
.yb7{bottom:749.760000px;}
.y11{bottom:750.480000px;}
.y51{bottom:750.930000px;}
.y159{bottom:759.390000px;}
.yde{bottom:761.730000px;}
.y1a8{bottom:763.170000px;}
.y184{bottom:767.580000px;}
.y10{bottom:768.210000px;}
.y132{bottom:768.570000px;}
.yb6{bottom:768.750000px;}
.y50{bottom:769.920000px;}
.ydd{bottom:782.430000px;}
.y1a7{bottom:784.140000px;}
.y183{bottom:786.570000px;}
.yf{bottom:787.380000px;}
.yb5{bottom:787.740000px;}
.y4f{bottom:788.910000px;}
.y130{bottom:794.040000px;}
.y11d{bottom:802.590000px;}
.ydc{bottom:803.130000px;}
.y182{bottom:805.560000px;}
.y107{bottom:806.730000px;}
.y4e{bottom:807.900000px;}
.ye{bottom:808.080000px;}
.y1a6{bottom:811.140000px;}
.y11c{bottom:811.590000px;}
.y12f{bottom:817.710000px;}
.ydb{bottom:823.830000px;}
.y181{bottom:824.460000px;}
.y106{bottom:825.720000px;}
.y4d{bottom:826.890000px;}
.yd{bottom:828.960000px;}
.y11b{bottom:829.590000px;}
.y1a5{bottom:832.110000px;}
.y180{bottom:843.450000px;}
.yda{bottom:844.530000px;}
.y105{bottom:844.620000px;}
.y4c{bottom:845.880000px;}
.y11a{bottom:847.590000px;}
.yc{bottom:850.020000px;}
.y1a4{bottom:859.110000px;}
.y17f{bottom:862.440000px;}
.y104{bottom:863.610000px;}
.y4b{bottom:864.780000px;}
.y119{bottom:865.590000px;}
.yb{bottom:874.230000px;}
.y1a3{bottom:880.170000px;}
.y17e{bottom:882.600000px;}
.yb4{bottom:883.680000px;}
.y4a{bottom:883.770000px;}
.ya{bottom:898.350000px;}
.y1a2{bottom:901.140000px;}
.y17d{bottom:901.590000px;}
.yb3{bottom:902.670000px;}
.y49{bottom:902.760000px;}
.y46{bottom:942.630000px;}
.y86{bottom:943.440000px;}
.y5{bottom:952.980000px;}
.y45{bottom:962.430000px;}
.y85{bottom:963.330000px;}
.y4{bottom:968.010000px;}
.y44{bottom:978.000000px;}
.y84{bottom:978.270000px;}
.y83{bottom:991.230000px;}
.y43{bottom:993.480000px;}
.y82{bottom:1004.910000px;}
.y42{bottom:1009.050000px;}
.y3{bottom:1016.970000px;}
.y81{bottom:1021.500000px;}
.y41{bottom:1024.560000px;}
.y80{bottom:1034.370000px;}
.y40{bottom:1040.130000px;}
.y7f{bottom:1047.330000px;}
.y3f{bottom:1055.610000px;}
.y7e{bottom:1060.290000px;}
.y2{bottom:1065.870000px;}
.y3e{bottom:1071.180000px;}
.y7d{bottom:1073.250000px;}
.y7c{bottom:1086.120000px;}
.y3d{bottom:1086.660000px;}
.y7b{bottom:1099.080000px;}
.y3c{bottom:1102.230000px;}
.y7a{bottom:1112.040000px;}
.y1{bottom:1114.830000px;}
.y3b{bottom:1117.710000px;}
.y79{bottom:1125.000000px;}
.y3a{bottom:1133.280000px;}
.y78{bottom:1137.870000px;}
.y39{bottom:1148.760000px;}
.y77{bottom:1150.830000px;}
.h1b{height:4.392773px;}
.h10{height:4.455527px;}
.hf{height:13.104492px;}
.h19{height:17.018262px;}
.h1d{height:17.190000px;}
.h1c{height:17.280000px;}
.h23{height:17.302500px;}
.h15{height:17.312695px;}
.h1e{height:19.880156px;}
.h1f{height:21.082324px;}
.h18{height:21.447070px;}
.h13{height:21.855469px;}
.h11{height:22.939453px;}
.h1a{height:25.839844px;}
.hd{height:27.907031px;}
.h2{height:32.299805px;}
.h12{height:34.366992px;}
.h25{height:34.560000px;}
.h20{height:34.716094px;}
.h3{height:38.759766px;}
.h16{height:39.463594px;}
.ha{height:42.418652px;}
.h22{height:42.660000px;}
.h5{height:43.152539px;}
.hc{height:46.482715px;}
.h9{height:47.286914px;}
.h14{height:47.962441px;}
.hb{height:49.552031px;}
.h26{height:50.800781px;}
.h4{height:51.679688px;}
.h17{height:54.299531px;}
.h24{height:54.907031px;}
.h6{height:59.182910px;}
.h21{height:60.112617px;}
.h7{height:66.902520px;}
.he{height:67.272539px;}
.h8{height:74.920781px;}
.h0{height:1043.668500px;}
.h1{height:1044.000000px;}
.w7{width:49.050000px;}
.w6{width:61.650000px;}
.w5{width:111.060000px;}
.w1{width:120.510000px;}
.w3{width:231.240000px;}
.w2{width:249.150000px;}
.w4{width:490.170000px;}
.w0{width:702.000000px;}
.x0{left:0.000000px;}
.x26{left:3.780000px;}
.x21{left:12.420000px;}
.x2f{left:13.590000px;}
.x34{left:15.840000px;}
.x33{left:17.460000px;}
.x32{left:22.050000px;}
.x31{left:23.670000px;}
.x35{left:28.170000px;}
.x25{left:29.970000px;}
.xf{left:32.164500px;}
.x23{left:35.820000px;}
.x1a{left:38.689500px;}
.x10{left:41.929500px;}
.x15{left:45.213000px;}
.x11{left:47.280000px;}
.x1d{left:49.128000px;}
.x6{left:54.030000px;}
.xd{left:55.740000px;}
.xc{left:56.820000px;}
.x1b{left:62.040000px;}
.x18{left:64.740000px;}
.xe{left:68.070000px;}
.x7{left:72.750000px;}
.x8{left:80.940000px;}
.x13{left:85.980000px;}
.x16{left:94.530000px;}
.x1f{left:97.050000px;}
.x2b{left:101.100000px;}
.x28{left:102.420000px;}
.x14{left:107.220000px;}
.x27{left:120.630000px;}
.x29{left:144.390000px;}
.x20{left:145.920000px;}
.x9{left:147.720000px;}
.x12{left:167.700000px;}
.x22{left:170.760000px;}
.x2d{left:186.480000px;}
.x2c{left:197.310000px;}
.x1c{left:217.290000px;}
.xb{left:230.520000px;}
.x19{left:234.660000px;}
.xa{left:272.100000px;}
.x5{left:351.060000px;}
.x2{left:405.780000px;}
.x24{left:420.270000px;}
.x2e{left:540.450000px;}
.x4{left:592.650000px;}
.x30{left:602.460000px;}
.x1e{left:604.170000px;}
.x17{left:612.180000px;}
.x1{left:645.480000px;}
.x2a{left:646.920000px;}
.x3{left:648.090000px;}
@media print{
.v3{vertical-align:-24.000000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.440000pt;}
.v5{vertical-align:24.000000pt;}
.v4{vertical-align:26.560000pt;}
.v1{vertical-align:29.440000pt;}
.ls17{letter-spacing:-0.367467pt;}
.ls15{letter-spacing:-0.307733pt;}
.ls16{letter-spacing:-0.240000pt;}
.ls4{letter-spacing:-0.195733pt;}
.lse{letter-spacing:-0.168533pt;}
.lsa{letter-spacing:-0.164267pt;}
.ls13{letter-spacing:-0.160000pt;}
.lsf{letter-spacing:-0.124267pt;}
.ls9{letter-spacing:-0.040320pt;}
.ls12{letter-spacing:-0.007680pt;}
.ls10{letter-spacing:-0.003840pt;}
.ls2{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.011520pt;}
.lsb{letter-spacing:0.012480pt;}
.ls8{letter-spacing:0.019520pt;}
.ls18{letter-spacing:0.080000pt;}
.ls3{letter-spacing:0.124267pt;}
.ls1{letter-spacing:0.131733pt;}
.lsc{letter-spacing:0.151467pt;}
.lsd{letter-spacing:0.155733pt;}
.ls0{letter-spacing:0.160000pt;}
.ls14{letter-spacing:4.240000pt;}
.ls5{letter-spacing:32.360320pt;}
.ls6{letter-spacing:52.840320pt;}
.ls7{letter-spacing:174.480000pt;}
.ws8{word-spacing:-58.560000pt;}
.ws1{word-spacing:-18.800000pt;}
.ws0{word-spacing:-18.771733pt;}
.ws9{word-spacing:-14.800000pt;}
.wsc{word-spacing:-14.659520pt;}
.wsa{word-spacing:-14.640000pt;}
.wsb{word-spacing:-14.599680pt;}
.ws3{word-spacing:-13.520000pt;}
.ws2{word-spacing:-13.484267pt;}
.ws4{word-spacing:-13.360000pt;}
.ws12{word-spacing:-13.235733pt;}
.ws6{word-spacing:-13.164267pt;}
.ws10{word-spacing:-9.515733pt;}
.wsf{word-spacing:-9.511467pt;}
.wse{word-spacing:-9.372480pt;}
.ws16{word-spacing:-9.200000pt;}
.wsd{word-spacing:-9.195733pt;}
.ws11{word-spacing:-9.191467pt;}
.ws17{word-spacing:-9.052267pt;}
.ws14{word-spacing:-8.651520pt;}
.ws5{word-spacing:-8.640000pt;}
.ws13{word-spacing:-8.636160pt;}
.ws15{word-spacing:-8.632320pt;}
.ws7{word-spacing:0.000000pt;}
._1b{margin-left:-6.910080pt;}
._8{margin-left:-5.987520pt;}
._c{margin-left:-5.016640pt;}
._e{margin-left:-4.088000pt;}
._3{margin-left:-3.152960pt;}
._6{margin-left:-2.203840pt;}
._0{margin-left:-1.056000pt;}
._1{width:1.073387pt;}
._5{width:2.725440pt;}
._2{width:3.635947pt;}
._a{width:5.128213pt;}
._9{width:6.466240pt;}
._7{width:8.056640pt;}
._4{width:9.084800pt;}
._b{width:10.260480pt;}
._d{width:11.823040pt;}
._1d{width:12.755520pt;}
._11{width:13.703040pt;}
._24{width:15.070080pt;}
._12{width:16.162560pt;}
._1c{width:17.275200pt;}
._13{width:18.270720pt;}
._f{width:19.266240pt;}
._10{width:21.060160pt;}
._19{width:22.896960pt;}
._1a{width:23.970560pt;}
._17{width:25.005120pt;}
._16{width:26.059200pt;}
._28{width:27.651520pt;}
._18{width:28.870080pt;}
._27{width:30.243947pt;}
._20{width:31.372373pt;}
._1e{width:32.316800pt;}
._1f{width:33.683307pt;}
._22{width:38.423360pt;}
._23{width:41.896960pt;}
._15{width:43.277760pt;}
._14{width:46.555200pt;}
._26{width:61.723200pt;}
._25{width:97.718400pt;}
._21{width:753.360000pt;}
.fs9{font-size:5.440000pt;}
.fs8{font-size:16.000000pt;}
.fsb{font-size:21.440000pt;}
.fsc{font-size:26.560000pt;}
.fsa{font-size:26.666667pt;}
.fsd{font-size:32.000000pt;}
.fs7{font-size:34.560000pt;}
.fse{font-size:37.440000pt;}
.fs0{font-size:40.000000pt;}
.fs5{font-size:42.560000pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.440000pt;}
.fs6{font-size:58.560000pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y15d{bottom:2.880000pt;}
.y131{bottom:2.960000pt;}
.y135{bottom:3.040000pt;}
.y133{bottom:3.120000pt;}
.y15f{bottom:3.146667pt;}
.y12e{bottom:13.849333pt;}
.y102{bottom:14.024000pt;}
.y75{bottom:14.410667pt;}
.y145{bottom:14.545333pt;}
.yb1{bottom:14.816000pt;}
.y117{bottom:15.048000pt;}
.y157{bottom:15.202667pt;}
.ya5{bottom:15.705333pt;}
.y167{bottom:18.480000pt;}
.y38{bottom:25.197333pt;}
.y15b{bottom:25.520000pt;}
.y12d{bottom:27.182667pt;}
.y103{bottom:27.357333pt;}
.y9{bottom:27.600000pt;}
.y76{bottom:27.744000pt;}
.y146{bottom:27.878667pt;}
.yb2{bottom:28.149333pt;}
.y118{bottom:28.381333pt;}
.y158{bottom:28.536000pt;}
.ya6{bottom:29.038667pt;}
.y37{bottom:38.530667pt;}
.y48{bottom:45.440000pt;}
.y8{bottom:46.000000pt;}
.y47{bottom:61.360000pt;}
.y7{bottom:63.840000pt;}
.y6{bottom:79.760000pt;}
.y74{bottom:81.760000pt;}
.y12c{bottom:83.920000pt;}
.y101{bottom:87.840000pt;}
.yd9{bottom:88.720000pt;}
.yb0{bottom:90.880000pt;}
.y36{bottom:94.800000pt;}
.ya4{bottom:95.520000pt;}
.y156{bottom:95.680000pt;}
.y73{bottom:98.640000pt;}
.y35{bottom:99.040000pt;}
.y17c{bottom:100.080000pt;}
.y1a1{bottom:104.000000pt;}
.y100{bottom:104.720000pt;}
.yd8{bottom:105.600000pt;}
.yaf{bottom:107.760000pt;}
.y155{bottom:109.280000pt;}
.ya3{bottom:112.400000pt;}
.y144{bottom:114.480000pt;}
.y72{bottom:115.520000pt;}
.y154{bottom:115.680000pt;}
.y17b{bottom:116.960000pt;}
.y34{bottom:120.400000pt;}
.yff{bottom:121.600000pt;}
.yd7{bottom:122.560000pt;}
.y1a0{bottom:122.640000pt;}
.yae{bottom:125.680000pt;}
.y33{bottom:127.600000pt;}
.ya2{bottom:129.200000pt;}
.y116{bottom:129.280000pt;}
.y71{bottom:132.400000pt;}
.y143{bottom:132.560000pt;}
.y32{bottom:134.320000pt;}
.y17a{bottom:134.880000pt;}
.yd6{bottom:139.360000pt;}
.yfe{bottom:139.520000pt;}
.y19f{bottom:141.360000pt;}
.yad{bottom:142.560000pt;}
.ya1{bottom:146.080000pt;}
.y115{bottom:146.160000pt;}
.y70{bottom:149.280000pt;}
.y142{bottom:149.440000pt;}
.y179{bottom:151.760000pt;}
.y31{bottom:155.680000pt;}
.yd5{bottom:156.240000pt;}
.yfd{bottom:156.320000pt;}
.y19e{bottom:160.000000pt;}
.yac{bottom:160.480000pt;}
.ya0{bottom:162.960000pt;}
.y114{bottom:163.040000pt;}
.y30{bottom:165.600000pt;}
.y6f{bottom:166.080000pt;}
.y141{bottom:166.160000pt;}
.y178{bottom:168.640000pt;}
.yd4{bottom:173.120000pt;}
.yfc{bottom:173.200000pt;}
.yab{bottom:177.360000pt;}
.y9f{bottom:179.840000pt;}
.y113{bottom:179.920000pt;}
.y6e{bottom:182.240000pt;}
.y140{bottom:183.040000pt;}
.y19d{bottom:184.000000pt;}
.y177{bottom:186.480000pt;}
.yd3{bottom:190.000000pt;}
.yfb{bottom:191.120000pt;}
.y2f{bottom:193.680000pt;}
.yaa{bottom:194.240000pt;}
.y6d{bottom:195.280000pt;}
.y9e{bottom:196.720000pt;}
.y112{bottom:197.840000pt;}
.y13f{bottom:200.000000pt;}
.y19c{bottom:202.640000pt;}
.y176{bottom:203.360000pt;}
.yd2{bottom:206.880000pt;}
.yfa{bottom:208.000000pt;}
.y2e{bottom:210.560000pt;}
.y6c{bottom:212.080000pt;}
.y9d{bottom:213.520000pt;}
.y111{bottom:214.720000pt;}
.y13e{bottom:216.880000pt;}
.y175{bottom:220.240000pt;}
.y19b{bottom:221.280000pt;}
.yd1{bottom:223.680000pt;}
.yf9{bottom:224.880000pt;}
.y2d{bottom:227.440000pt;}
.ya9{bottom:228.880000pt;}
.y6b{bottom:228.960000pt;}
.y9c{bottom:230.400000pt;}
.y110{bottom:231.520000pt;}
.y13d{bottom:232.960000pt;}
.y174{bottom:237.120000pt;}
.yd0{bottom:240.560000pt;}
.yf8{bottom:241.760000pt;}
.y13c{bottom:244.000000pt;}
.y2c{bottom:244.320000pt;}
.y19a{bottom:245.360000pt;}
.ya8{bottom:245.760000pt;}
.y6a{bottom:245.840000pt;}
.y9b{bottom:247.280000pt;}
.y10f{bottom:248.400000pt;}
.y13b{bottom:251.920000pt;}
.y173{bottom:254.000000pt;}
.ycf{bottom:257.440000pt;}
.yf7{bottom:258.560000pt;}
.y2b{bottom:261.200000pt;}
.y69{bottom:262.720000pt;}
.y199{bottom:264.000000pt;}
.y9a{bottom:264.160000pt;}
.y10e{bottom:265.280000pt;}
.y13a{bottom:267.040000pt;}
.y172{bottom:270.800000pt;}
.yce{bottom:274.320000pt;}
.yf6{bottom:275.440000pt;}
.y2a{bottom:278.080000pt;}
.y68{bottom:279.600000pt;}
.y99{bottom:281.040000pt;}
.y10d{bottom:282.160000pt;}
.y198{bottom:282.640000pt;}
.y171{bottom:287.600000pt;}
.ycd{bottom:291.200000pt;}
.yf5{bottom:292.320000pt;}
.y29{bottom:294.800000pt;}
.y67{bottom:296.480000pt;}
.y98{bottom:297.920000pt;}
.y10c{bottom:299.040000pt;}
.y170{bottom:304.160000pt;}
.y197{bottom:306.640000pt;}
.ycc{bottom:309.120000pt;}
.yf4{bottom:309.200000pt;}
.y28{bottom:312.106667pt;}
.y66{bottom:313.306667pt;}
.y97{bottom:314.746667pt;}
.y10b{bottom:315.306667pt;}
.y16f{bottom:318.426667pt;}
.y10a{bottom:324.346667pt;}
.y196{bottom:325.386667pt;}
.ycb{bottom:326.026667pt;}
.yf3{bottom:326.106667pt;}
.y27{bottom:329.946667pt;}
.y65{bottom:330.186667pt;}
.y96{bottom:331.626667pt;}
.y16e{bottom:335.226667pt;}
.y109{bottom:339.706667pt;}
.yca{bottom:342.826667pt;}
.yf2{bottom:343.946667pt;}
.y195{bottom:344.026667pt;}
.y12b{bottom:344.906667pt;}
.y26{bottom:345.306667pt;}
.y64{bottom:347.066667pt;}
.y95{bottom:348.506667pt;}
.y12a{bottom:351.226667pt;}
.y16d{bottom:352.106667pt;}
.y129{bottom:355.626667pt;}
.yc9{bottom:359.706667pt;}
.y25{bottom:360.426667pt;}
.yf1{bottom:360.746667pt;}
.ya7{bottom:363.866667pt;}
.y63{bottom:363.946667pt;}
.y94{bottom:365.386667pt;}
.y194{bottom:368.026667pt;}
.y16c{bottom:368.986667pt;}
.y128{bottom:371.626667pt;}
.y24{bottom:375.946667pt;}
.yc8{bottom:377.626667pt;}
.yf0{bottom:377.706667pt;}
.y62{bottom:380.826667pt;}
.y93{bottom:382.266667pt;}
.y16b{bottom:385.866667pt;}
.y193{bottom:386.666667pt;}
.y127{bottom:387.626667pt;}
.y153{bottom:389.466667pt;}
.y23{bottom:391.306667pt;}
.yc7{bottom:394.506667pt;}
.yef{bottom:394.586667pt;}
.y152{bottom:395.626667pt;}
.y61{bottom:397.626667pt;}
.y92{bottom:399.066667pt;}
.y16a{bottom:401.066667pt;}
.y126{bottom:403.626667pt;}
.y151{bottom:403.786667pt;}
.y192{bottom:405.306667pt;}
.y22{bottom:406.586667pt;}
.y169{bottom:410.346667pt;}
.yc6{bottom:411.386667pt;}
.yee{bottom:411.466667pt;}
.y60{bottom:414.506667pt;}
.y91{bottom:415.946667pt;}
.y125{bottom:419.626667pt;}
.y150{bottom:420.666667pt;}
.y21{bottom:421.946667pt;}
.y168{bottom:425.226667pt;}
.yc5{bottom:428.266667pt;}
.yed{bottom:428.346667pt;}
.y191{bottom:429.386667pt;}
.y5f{bottom:431.386667pt;}
.y90{bottom:432.826667pt;}
.y166{bottom:434.346667pt;}
.y124{bottom:435.626667pt;}
.y20{bottom:437.306667pt;}
.y14f{bottom:437.466667pt;}
.yc4{bottom:445.066667pt;}
.yec{bottom:445.226667pt;}
.y190{bottom:448.026667pt;}
.y5e{bottom:448.266667pt;}
.y8f{bottom:449.706667pt;}
.y123{bottom:451.626667pt;}
.y1f{bottom:452.586667pt;}
.y14e{bottom:454.346667pt;}
.yeb{bottom:461.306667pt;}
.yc3{bottom:461.946667pt;}
.y5d{bottom:465.146667pt;}
.y8e{bottom:466.506667pt;}
.y18f{bottom:466.666667pt;}
.y122{bottom:467.626667pt;}
.y1e{bottom:467.946667pt;}
.y14d{bottom:471.226667pt;}
.y165{bottom:472.346667pt;}
.yea{bottom:474.106667pt;}
.yc2{bottom:479.866667pt;}
.y5c{bottom:482.026667pt;}
.y121{bottom:482.426667pt;}
.y8d{bottom:482.666667pt;}
.y1d{bottom:483.306667pt;}
.y14c{bottom:488.106667pt;}
.ye9{bottom:489.386667pt;}
.y18e{bottom:490.666667pt;}
.y120{bottom:492.746667pt;}
.y1b1{bottom:494.586667pt;}
.y164{bottom:495.066667pt;}
.y8c{bottom:495.706667pt;}
.yc1{bottom:496.746667pt;}
.y1c{bottom:498.586667pt;}
.y5b{bottom:498.826667pt;}
.ye8{bottom:502.986667pt;}
.y14b{bottom:504.986667pt;}
.y11f{bottom:506.186667pt;}
.y18d{bottom:509.386667pt;}
.y11e{bottom:511.146667pt;}
.ye7{bottom:511.466667pt;}
.y8b{bottom:512.586667pt;}
.y1b0{bottom:512.986667pt;}
.yc0{bottom:513.626667pt;}
.y1b{bottom:513.946667pt;}
.y5a{bottom:515.706667pt;}
.y163{bottom:517.706667pt;}
.y14a{bottom:520.746667pt;}
.y18c{bottom:528.026667pt;}
.y1a{bottom:529.226667pt;}
.y8a{bottom:529.466667pt;}
.ye6{bottom:529.866667pt;}
.ybf{bottom:530.506667pt;}
.y1af{bottom:531.626667pt;}
.y149{bottom:532.346667pt;}
.y59{bottom:532.586667pt;}
.y162{bottom:540.346667pt;}
.y19{bottom:544.586667pt;}
.y148{bottom:546.026667pt;}
.y18b{bottom:546.666667pt;}
.ybe{bottom:547.306667pt;}
.y89{bottom:547.386667pt;}
.ye5{bottom:548.266667pt;}
.y58{bottom:549.466667pt;}
.y1ae{bottom:550.266667pt;}
.y147{bottom:552.266667pt;}
.y18{bottom:559.946667pt;}
.y161{bottom:563.066667pt;}
.ybd{bottom:564.186667pt;}
.y88{bottom:565.226667pt;}
.y57{bottom:566.346667pt;}
.ye4{bottom:566.666667pt;}
.y18a{bottom:570.666667pt;}
.y1ad{bottom:574.266667pt;}
.y17{bottom:575.226667pt;}
.ybc{bottom:581.066667pt;}
.y87{bottom:582.106667pt;}
.y56{bottom:583.146667pt;}
.ye3{bottom:585.066667pt;}
.y160{bottom:585.706667pt;}
.y189{bottom:589.386667pt;}
.y16{bottom:590.586667pt;}
.y1ac{bottom:598.346667pt;}
.ybb{bottom:598.986667pt;}
.y55{bottom:600.026667pt;}
.ye2{bottom:603.466667pt;}
.y15{bottom:605.946667pt;}
.y188{bottom:608.026667pt;}
.y15e{bottom:608.346667pt;}
.y139{bottom:613.093333pt;}
.yba{bottom:615.893333pt;}
.y54{bottom:616.933333pt;}
.y1ab{bottom:617.013333pt;}
.y138{bottom:620.933333pt;}
.y14{bottom:621.253333pt;}
.ye1{bottom:621.893333pt;}
.y15a{bottom:631.093333pt;}
.y187{bottom:631.253333pt;}
.yb9{bottom:632.773333pt;}
.y53{bottom:633.813333pt;}
.y1aa{bottom:635.653333pt;}
.y137{bottom:636.293333pt;}
.y13{bottom:636.613333pt;}
.ye0{bottom:640.293333pt;}
.y186{bottom:647.173333pt;}
.y108{bottom:648.453333pt;}
.yb8{bottom:649.653333pt;}
.y136{bottom:650.213333pt;}
.y52{bottom:650.693333pt;}
.y12{bottom:651.973333pt;}
.y15c{bottom:653.733333pt;}
.ydf{bottom:658.693333pt;}
.y1a9{bottom:659.653333pt;}
.y134{bottom:660.533333pt;}
.y185{bottom:665.413333pt;}
.yb7{bottom:666.453333pt;}
.y11{bottom:667.093333pt;}
.y51{bottom:667.493333pt;}
.y159{bottom:675.013333pt;}
.yde{bottom:677.093333pt;}
.y1a8{bottom:678.373333pt;}
.y184{bottom:682.293333pt;}
.y10{bottom:682.853333pt;}
.y132{bottom:683.173333pt;}
.yb6{bottom:683.333333pt;}
.y50{bottom:684.373333pt;}
.ydd{bottom:695.493333pt;}
.y1a7{bottom:697.013333pt;}
.y183{bottom:699.173333pt;}
.yf{bottom:699.893333pt;}
.yb5{bottom:700.213333pt;}
.y4f{bottom:701.253333pt;}
.y130{bottom:705.813333pt;}
.y11d{bottom:713.413333pt;}
.ydc{bottom:713.893333pt;}
.y182{bottom:716.053333pt;}
.y107{bottom:717.093333pt;}
.y4e{bottom:718.133333pt;}
.ye{bottom:718.293333pt;}
.y1a6{bottom:721.013333pt;}
.y11c{bottom:721.413333pt;}
.y12f{bottom:726.853333pt;}
.ydb{bottom:732.293333pt;}
.y181{bottom:732.853333pt;}
.y106{bottom:733.973333pt;}
.y4d{bottom:735.013333pt;}
.yd{bottom:736.853333pt;}
.y11b{bottom:737.413333pt;}
.y1a5{bottom:739.653333pt;}
.y180{bottom:749.733333pt;}
.yda{bottom:750.693333pt;}
.y105{bottom:750.773333pt;}
.y4c{bottom:751.893333pt;}
.y11a{bottom:753.413333pt;}
.yc{bottom:755.573333pt;}
.y1a4{bottom:763.653333pt;}
.y17f{bottom:766.613333pt;}
.y104{bottom:767.653333pt;}
.y4b{bottom:768.693333pt;}
.y119{bottom:769.413333pt;}
.yb{bottom:777.093333pt;}
.y1a3{bottom:782.373333pt;}
.y17e{bottom:784.533333pt;}
.yb4{bottom:785.493333pt;}
.y4a{bottom:785.573333pt;}
.ya{bottom:798.533333pt;}
.y1a2{bottom:801.013333pt;}
.y17d{bottom:801.413333pt;}
.yb3{bottom:802.373333pt;}
.y49{bottom:802.453333pt;}
.y46{bottom:837.893333pt;}
.y86{bottom:838.613333pt;}
.y5{bottom:847.093333pt;}
.y45{bottom:855.493333pt;}
.y85{bottom:856.293333pt;}
.y4{bottom:860.453333pt;}
.y44{bottom:869.333333pt;}
.y84{bottom:869.573333pt;}
.y83{bottom:881.093333pt;}
.y43{bottom:883.093333pt;}
.y82{bottom:893.253333pt;}
.y42{bottom:896.933333pt;}
.y3{bottom:903.973333pt;}
.y81{bottom:908.000000pt;}
.y41{bottom:910.720000pt;}
.y80{bottom:919.440000pt;}
.y40{bottom:924.560000pt;}
.y7f{bottom:930.960000pt;}
.y3f{bottom:938.320000pt;}
.y7e{bottom:942.480000pt;}
.y2{bottom:947.440000pt;}
.y3e{bottom:952.160000pt;}
.y7d{bottom:954.000000pt;}
.y7c{bottom:965.440000pt;}
.y3d{bottom:965.920000pt;}
.y7b{bottom:976.960000pt;}
.y3c{bottom:979.760000pt;}
.y7a{bottom:988.480000pt;}
.y1{bottom:990.960000pt;}
.y3b{bottom:993.520000pt;}
.y79{bottom:1000.000000pt;}
.y3a{bottom:1007.360000pt;}
.y78{bottom:1011.440000pt;}
.y39{bottom:1021.120000pt;}
.y77{bottom:1022.960000pt;}
.h1b{height:3.904687pt;}
.h10{height:3.960469pt;}
.hf{height:11.648438pt;}
.h19{height:15.127344pt;}
.h1d{height:15.280000pt;}
.h1c{height:15.360000pt;}
.h23{height:15.380000pt;}
.h15{height:15.389062pt;}
.h1e{height:17.671250pt;}
.h1f{height:18.739844pt;}
.h18{height:19.064063pt;}
.h13{height:19.427083pt;}
.h11{height:20.390625pt;}
.h1a{height:22.968750pt;}
.hd{height:24.806250pt;}
.h2{height:28.710938pt;}
.h12{height:30.548438pt;}
.h25{height:30.720000pt;}
.h20{height:30.858750pt;}
.h3{height:34.453125pt;}
.h16{height:35.078750pt;}
.ha{height:37.705469pt;}
.h22{height:37.920000pt;}
.h5{height:38.357812pt;}
.hc{height:41.317969pt;}
.h9{height:42.032812pt;}
.h14{height:42.633281pt;}
.hb{height:44.046250pt;}
.h26{height:45.156250pt;}
.h4{height:45.937500pt;}
.h17{height:48.266250pt;}
.h24{height:48.806250pt;}
.h6{height:52.607031pt;}
.h21{height:53.433438pt;}
.h7{height:59.468906pt;}
.he{height:59.797812pt;}
.h8{height:66.596250pt;}
.h0{height:927.705333pt;}
.h1{height:928.000000pt;}
.w7{width:43.600000pt;}
.w6{width:54.800000pt;}
.w5{width:98.720000pt;}
.w1{width:107.120000pt;}
.w3{width:205.546667pt;}
.w2{width:221.466667pt;}
.w4{width:435.706667pt;}
.w0{width:624.000000pt;}
.x0{left:0.000000pt;}
.x26{left:3.360000pt;}
.x21{left:11.040000pt;}
.x2f{left:12.080000pt;}
.x34{left:14.080000pt;}
.x33{left:15.520000pt;}
.x32{left:19.600000pt;}
.x31{left:21.040000pt;}
.x35{left:25.040000pt;}
.x25{left:26.640000pt;}
.xf{left:28.590667pt;}
.x23{left:31.840000pt;}
.x1a{left:34.390667pt;}
.x10{left:37.270667pt;}
.x15{left:40.189333pt;}
.x11{left:42.026667pt;}
.x1d{left:43.669333pt;}
.x6{left:48.026667pt;}
.xd{left:49.546667pt;}
.xc{left:50.506667pt;}
.x1b{left:55.146667pt;}
.x18{left:57.546667pt;}
.xe{left:60.506667pt;}
.x7{left:64.666667pt;}
.x8{left:71.946667pt;}
.x13{left:76.426667pt;}
.x16{left:84.026667pt;}
.x1f{left:86.266667pt;}
.x2b{left:89.866667pt;}
.x28{left:91.040000pt;}
.x14{left:95.306667pt;}
.x27{left:107.226667pt;}
.x29{left:128.346667pt;}
.x20{left:129.706667pt;}
.x9{left:131.306667pt;}
.x12{left:149.066667pt;}
.x22{left:151.786667pt;}
.x2d{left:165.760000pt;}
.x2c{left:175.386667pt;}
.x1c{left:193.146667pt;}
.xb{left:204.906667pt;}
.x19{left:208.586667pt;}
.xa{left:241.866667pt;}
.x5{left:312.053333pt;}
.x2{left:360.693333pt;}
.x24{left:373.573333pt;}
.x2e{left:480.400000pt;}
.x4{left:526.800000pt;}
.x30{left:535.520000pt;}
.x1e{left:537.040000pt;}
.x17{left:544.160000pt;}
.x1{left:573.760000pt;}
.x2a{left:575.040000pt;}
.x3{left:576.080000pt;}
}




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