
    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_7eb4a7db108d3e976fe65b9e.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_9f71ed3e2e09f2121c96aaf3.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_330f9760b7cfbb9188e3f282.woff')format("woff");}.ff3{font-family:ff3;line-height:0.691406;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_b8c7199508e1088c1f356520.woff')format("woff");}.ff4{font-family:ff4;line-height:0.706543;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_f2bdcd5f9199f62d649599b7.woff')format("woff");}.ff5{font-family:ff5;line-height:0.708008;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_e2764739f6ad7a84a114bdcb.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_2efa75f2f75e480ae930fc38.woff')format("woff");}.ff7{font-family:ff7;line-height:0.730469;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_19eb69703a16283b53d5eb72.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_d1d612d5a4937bafe638d9a0.woff')format("woff");}.ff9{font-family:ff9;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_f06202cea835e7c5279ed202.woff')format("woff");}.ffa{font-family:ffa;line-height:1.989258;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_e8137b5071df15baa199457c.woff')format("woff");}.ffb{font-family:ffb;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v6{vertical-align:-26.640000px;}
.v1{vertical-align:-14.400000px;}
.v8{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:2.880000px;}
.v2{vertical-align:14.400000px;}
.v9{vertical-align:27.360000px;}
.v5{vertical-align:40.320000px;}
.v3{vertical-align:48.240000px;}
.v4{vertical-align:54.720000px;}
.ls1e{letter-spacing:-0.216000px;}
.ls1d{letter-spacing:-0.025920px;}
.ls8{letter-spacing:-0.017280px;}
.ls9{letter-spacing:-0.008640px;}
.ls7{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.012960px;}
.ls3{letter-spacing:0.017280px;}
.lsa{letter-spacing:0.025920px;}
.ls14{letter-spacing:0.072000px;}
.ls10{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.150000px;}
.ls6{letter-spacing:0.174240px;}
.ls1{letter-spacing:0.180000px;}
.ls1a{letter-spacing:0.216000px;}
.ls1c{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.360000px;}
.ls1b{letter-spacing:0.504000px;}
.ls4{letter-spacing:0.720000px;}
.ls1f{letter-spacing:0.792000px;}
.ls17{letter-spacing:2.088000px;}
.ls12{letter-spacing:2.157120px;}
.ls19{letter-spacing:2.792880px;}
.ls16{letter-spacing:2.801520px;}
.lsb{letter-spacing:2.877120px;}
.ls11{letter-spacing:2.997120px;}
.ls18{letter-spacing:16.056000px;}
.ls15{letter-spacing:16.176000px;}
.lse{letter-spacing:19.656000px;}
.lsc{letter-spacing:19.800000px;}
.ls13{letter-spacing:20.376000px;}
.lsd{letter-spacing:46.296000px;}
.lsf{letter-spacing:89.352000px;}
.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;}
}
.wsc{word-spacing:-88.056000px;}
.ws8{word-spacing:-72.216000px;}
.ws7{word-spacing:-72.000000px;}
.ws9{word-spacing:-32.846400px;}
.wse{word-spacing:-32.544000px;}
.wsb{word-spacing:-32.478480px;}
.wsd{word-spacing:-31.767120px;}
.ws1{word-spacing:-19.457280px;}
.ws2{word-spacing:-19.440000px;}
.ws6{word-spacing:-19.431360px;}
.ws4{word-spacing:-19.422720px;}
.ws10{word-spacing:-18.288000px;}
.wsa{word-spacing:-18.000000px;}
.ws12{word-spacing:-17.784000px;}
.ws5{word-spacing:-15.300000px;}
.ws0{word-spacing:-14.940000px;}
.ws11{word-spacing:-12.060000px;}
.ws3{word-spacing:0.000000px;}
.wsf{word-spacing:174.132000px;}
._1e{margin-left:-286.383600px;}
._1d{margin-left:-15.583920px;}
._1c{margin-left:-9.216000px;}
._13{margin-left:-5.184000px;}
._f{margin-left:-3.888000px;}
._14{margin-left:-2.669280px;}
._4{margin-left:-1.370400px;}
._0{width:1.015920px;}
._1{width:2.551200px;}
._b{width:4.376400px;}
._5{width:5.529120px;}
._c{width:7.263360px;}
._9{width:8.280000px;}
._a{width:9.468000px;}
._10{width:10.476000px;}
._6{width:11.808000px;}
._7{width:12.880080px;}
._8{width:13.883760px;}
._18{width:14.904000px;}
._17{width:16.776000px;}
._15{width:19.800000px;}
._16{width:21.168000px;}
._20{width:22.608000px;}
._19{width:23.904000px;}
._1a{width:25.050480px;}
._23{width:27.936000px;}
._1b{width:29.740800px;}
._d{width:31.104000px;}
._e{width:32.328000px;}
._12{width:38.769360px;}
._11{width:40.865040px;}
._2a{width:42.630960px;}
._24{width:44.208000px;}
._22{width:77.616000px;}
._25{width:78.912000px;}
._27{width:79.920000px;}
._26{width:80.928000px;}
._21{width:91.296000px;}
._1f{width:94.896000px;}
._2f{width:107.712000px;}
._30{width:108.720000px;}
._28{width:110.880000px;}
._29{width:112.032000px;}
._2b{width:122.040000px;}
._2d{width:159.552000px;}
._2e{width:160.992000px;}
._2{width:532.260000px;}
._2c{width:546.624000px;}
._3{width:1523.177520px;}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(84,84,84);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs9{font-size:48.240000px;}
.fs8{font-size:51.120000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.yd6{bottom:4.140000px;}
.yd8{bottom:4.500000px;}
.yc5{bottom:5.040000px;}
.ycd{bottom:5.385000px;}
.yc7{bottom:5.400000px;}
.yf1{bottom:6.285000px;}
.yf8{bottom:6.300000px;}
.y133{bottom:14.760000px;}
.yfe{bottom:14.940000px;}
.yfd{bottom:25.200000px;}
.y7{bottom:39.276000px;}
.y6{bottom:58.536000px;}
.y2e{bottom:131.436000px;}
.y59{bottom:135.936000px;}
.y2d{bottom:136.656000px;}
.y147{bottom:140.616000px;}
.yd1{bottom:143.496000px;}
.y84{bottom:145.296000px;}
.y1a4{bottom:145.656000px;}
.yf6{bottom:145.845000px;}
.y2c{bottom:150.330000px;}
.y58{bottom:156.630000px;}
.y15b{bottom:156.810000px;}
.y121{bottom:159.690000px;}
.y83{bottom:165.990000px;}
.yf5{bottom:169.245000px;}
.ya6{bottom:169.590000px;}
.y57{bottom:177.330000px;}
.y146{bottom:179.130000px;}
.yd0{bottom:179.865000px;}
.y120{bottom:180.390000px;}
.y1a3{bottom:185.070000px;}
.y82{bottom:186.690000px;}
.y2b{bottom:186.870000px;}
.y17c{bottom:187.590000px;}
.yf4{bottom:192.465000px;}
.y15a{bottom:197.490000px;}
.y56{bottom:198.030000px;}
.y11f{bottom:201.090000px;}
.ycf{bottom:203.265000px;}
.y198{bottom:204.510000px;}
.y1a2{bottom:207.210000px;}
.y81{bottom:207.390000px;}
.y2a{bottom:207.570000px;}
.y17b{bottom:208.290000px;}
.ya5{bottom:208.650000px;}
.yf3{bottom:215.685000px;}
.y159{bottom:218.010000px;}
.y145{bottom:218.190000px;}
.ya4{bottom:220.710000px;}
.y11e{bottom:221.790000px;}
.y197{bottom:225.210000px;}
.yce{bottom:226.485000px;}
.y80{bottom:228.090000px;}
.y29{bottom:228.270000px;}
.y17a{bottom:228.990000px;}
.y55{bottom:236.730000px;}
.y158{bottom:238.710000px;}
.y144{bottom:238.890000px;}
.yf2{bottom:238.905000px;}
.y11d{bottom:242.490000px;}
.y196{bottom:245.910000px;}
.y7f{bottom:248.790000px;}
.y28{bottom:248.970000px;}
.y179{bottom:249.690000px;}
.ycc{bottom:249.705000px;}
.y54{bottom:257.430000px;}
.y157{bottom:259.410000px;}
.y143{bottom:259.590000px;}
.yf0{bottom:262.125000px;}
.y11c{bottom:263.190000px;}
.y195{bottom:266.610000px;}
.y7e{bottom:269.490000px;}
.y27{bottom:269.670000px;}
.ya3{bottom:271.290000px;}
.ycb{bottom:272.955000px;}
.y53{bottom:278.175000px;}
.y156{bottom:280.155000px;}
.y142{bottom:280.335000px;}
.y11b{bottom:283.935000px;}
.yef{bottom:285.375000px;}
.y178{bottom:288.435000px;}
.y26{bottom:290.415000px;}
.ya2{bottom:292.035000px;}
.yca{bottom:296.175000px;}
.y52{bottom:298.875000px;}
.y155{bottom:300.855000px;}
.y141{bottom:301.035000px;}
.y11a{bottom:304.635000px;}
.y194{bottom:305.355000px;}
.y7d{bottom:307.875000px;}
.y177{bottom:309.135000px;}
.y25{bottom:311.115000px;}
.yc9{bottom:319.395000px;}
.y51{bottom:319.575000px;}
.y154{bottom:321.555000px;}
.y140{bottom:321.735000px;}
.y119{bottom:325.335000px;}
.y193{bottom:326.055000px;}
.yee{bottom:328.215000px;}
.y176{bottom:329.835000px;}
.ya1{bottom:330.375000px;}
.y24{bottom:331.815000px;}
.y50{bottom:340.275000px;}
.y153{bottom:342.255000px;}
.y13f{bottom:342.435000px;}
.yc8{bottom:342.795000px;}
.y118{bottom:346.035000px;}
.y1a1{bottom:346.755000px;}
.y7c{bottom:348.555000px;}
.y23{bottom:352.515000px;}
.ya0{bottom:356.115000px;}
.y4f{bottom:360.975000px;}
.y152{bottom:362.955000px;}
.y13e{bottom:363.135000px;}
.y192{bottom:364.755000px;}
.yc6{bottom:366.015000px;}
.y117{bottom:366.735000px;}
.y175{bottom:368.535000px;}
.y7b{bottom:369.255000px;}
.yed{bottom:369.795000px;}
.y22{bottom:373.215000px;}
.y4e{bottom:381.675000px;}
.y151{bottom:383.655000px;}
.y13d{bottom:383.835000px;}
.y191{bottom:385.455000px;}
.yc4{bottom:389.235000px;}
.y7a{bottom:389.955000px;}
.yec{bottom:393.555000px;}
.y9f{bottom:393.735000px;}
.y21{bottom:393.915000px;}
.y150{bottom:404.355000px;}
.y13c{bottom:404.535000px;}
.y116{bottom:405.435000px;}
.y1a0{bottom:406.155000px;}
.y174{bottom:409.935000px;}
.y79{bottom:410.655000px;}
.y20{bottom:414.615000px;}
.yeb{bottom:417.495000px;}
.y4d{bottom:420.195000px;}
.y190{bottom:424.155000px;}
.y14f{bottom:425.055000px;}
.y13b{bottom:425.235000px;}
.y115{bottom:426.135000px;}
.y78{bottom:431.355000px;}
.yc3{bottom:431.715000px;}
.y9e{bottom:432.435000px;}
.y1f{bottom:435.315000px;}
.y4c{bottom:440.895000px;}
.y18f{bottom:444.855000px;}
.y14e{bottom:445.755000px;}
.y13a{bottom:445.935000px;}
.y114{bottom:446.835000px;}
.y173{bottom:448.455000px;}
.y77{bottom:452.055000px;}
.y9d{bottom:453.135000px;}
.y1e{bottom:456.015000px;}
.yea{bottom:456.195000px;}
.y4b{bottom:461.595000px;}
.y19f{bottom:465.555000px;}
.y14d{bottom:466.455000px;}
.y139{bottom:466.635000px;}
.y113{bottom:467.535000px;}
.yc2{bottom:470.595000px;}
.y76{bottom:472.755000px;}
.y9c{bottom:473.835000px;}
.y1d{bottom:476.715000px;}
.ye9{bottom:479.955000px;}
.y4a{bottom:482.295000px;}
.y18e{bottom:483.555000px;}
.y19e{bottom:486.255000px;}
.y14c{bottom:487.155000px;}
.y112{bottom:488.235000px;}
.y172{bottom:489.135000px;}
.yc1{bottom:491.295000px;}
.y9b{bottom:494.535000px;}
.y1c{bottom:497.415000px;}
.y49{bottom:502.995000px;}
.y18d{bottom:504.255000px;}
.y138{bottom:505.335000px;}
.y111{bottom:508.935000px;}
.y171{bottom:509.835000px;}
.y75{bottom:511.455000px;}
.yc0{bottom:511.995000px;}
.y9a{bottom:515.235000px;}
.ye8{bottom:519.555000px;}
.y137{bottom:522.255000px;}
.y48{bottom:523.695000px;}
.y18c{bottom:524.955000px;}
.y14b{bottom:525.495000px;}
.y110{bottom:529.635000px;}
.y170{bottom:530.535000px;}
.y74{bottom:532.155000px;}
.ybf{bottom:532.695000px;}
.y1b{bottom:535.755000px;}
.y99{bottom:535.935000px;}
.y14a{bottom:541.155000px;}
.y47{bottom:544.395000px;}
.y136{bottom:545.475000px;}
.y19d{bottom:545.655000px;}
.y10f{bottom:550.335000px;}
.y16f{bottom:551.235000px;}
.y73{bottom:552.855000px;}
.ybe{bottom:553.395000px;}
.ye7{bottom:556.485000px;}
.y98{bottom:556.665000px;}
.y18b{bottom:563.685000px;}
.y149{bottom:564.405000px;}
.y46{bottom:565.125000px;}
.y135{bottom:568.725000px;}
.y10e{bottom:571.065000px;}
.y16e{bottom:571.965000px;}
.y72{bottom:573.585000px;}
.ybd{bottom:574.125000px;}
.y1a{bottom:576.285000px;}
.y97{bottom:577.365000px;}
.y18a{bottom:584.385000px;}
.y45{bottom:585.825000px;}
.y148{bottom:587.625000px;}
.y10d{bottom:591.765000px;}
.y16d{bottom:592.665000px;}
.y71{bottom:594.285000px;}
.ybc{bottom:594.825000px;}
.y96{bottom:597.885000px;}
.ye6{bottom:598.065000px;}
.y19{bottom:599.505000px;}
.y189{bottom:605.085000px;}
.y134{bottom:610.845000px;}
.y10c{bottom:612.465000px;}
.y16c{bottom:613.365000px;}
.y70{bottom:614.985000px;}
.ybb{bottom:615.525000px;}
.y95{bottom:618.585000px;}
.ye5{bottom:618.765000px;}
.y18{bottom:623.445000px;}
.y44{bottom:624.525000px;}
.y188{bottom:625.785000px;}
.y10b{bottom:633.165000px;}
.y16b{bottom:633.885000px;}
.y132{bottom:634.245000px;}
.y6f{bottom:635.685000px;}
.y94{bottom:639.285000px;}
.ye4{bottom:639.465000px;}
.y19c{bottom:643.785000px;}
.y43{bottom:645.225000px;}
.y17{bottom:645.765000px;}
.y187{bottom:646.485000px;}
.y10a{bottom:653.865000px;}
.yba{bottom:654.045000px;}
.y16a{bottom:654.585000px;}
.y6e{bottom:656.385000px;}
.y93{bottom:659.985000px;}
.ye3{bottom:660.165000px;}
.y19b{bottom:664.485000px;}
.y42{bottom:665.925000px;}
.y16{bottom:668.445000px;}
.y109{bottom:674.565000px;}
.y169{bottom:675.285000px;}
.y131{bottom:676.365000px;}
.y6d{bottom:677.085000px;}
.y92{bottom:680.685000px;}
.y186{bottom:685.185000px;}
.y41{bottom:686.625000px;}
.yb9{bottom:694.725000px;}
.y168{bottom:695.985000px;}
.ye2{bottom:698.505000px;}
.y130{bottom:699.585000px;}
.y91{bottom:701.385000px;}
.y185{bottom:705.885000px;}
.y40{bottom:707.325000px;}
.y15{bottom:710.385000px;}
.y108{bottom:713.265000px;}
.ye1{bottom:714.165000px;}
.yb8{bottom:715.425000px;}
.y6c{bottom:715.785000px;}
.y12f{bottom:722.805000px;}
.y19a{bottom:726.585000px;}
.y3f{bottom:728.025000px;}
.y14{bottom:732.885000px;}
.y107{bottom:733.965000px;}
.y167{bottom:734.505000px;}
.ye0{bottom:735.585000px;}
.yb7{bottom:736.125000px;}
.y6b{bottom:736.485000px;}
.y90{bottom:740.445000px;}
.y184{bottom:744.585000px;}
.y12e{bottom:746.025000px;}
.y3e{bottom:748.725000px;}
.y106{bottom:754.665000px;}
.y13{bottom:755.565000px;}
.yb6{bottom:756.825000px;}
.ydf{bottom:757.005000px;}
.y6a{bottom:757.185000px;}
.y183{bottom:765.285000px;}
.y12d{bottom:769.245000px;}
.y3d{bottom:769.425000px;}
.y166{bottom:775.185000px;}
.y105{bottom:775.365000px;}
.yb5{bottom:777.525000px;}
.y69{bottom:777.885000px;}
.yde{bottom:778.425000px;}
.y8f{bottom:780.585000px;}
.y182{bottom:785.985000px;}
.y3c{bottom:790.125000px;}
.y12c{bottom:792.645000px;}
.y165{bottom:795.885000px;}
.y104{bottom:796.065000px;}
.y12{bottom:797.325000px;}
.yb4{bottom:798.225000px;}
.y68{bottom:798.585000px;}
.ydd{bottom:799.845000px;}
.y8e{bottom:801.285000px;}
.y181{bottom:806.685000px;}
.y3b{bottom:810.825000px;}
.y12b{bottom:815.865000px;}
.y164{bottom:816.585000px;}
.y103{bottom:816.765000px;}
.yb3{bottom:818.925000px;}
.y67{bottom:819.285000px;}
.y11{bottom:819.825000px;}
.ydc{bottom:821.445000px;}
.y8d{bottom:821.985000px;}
.y199{bottom:824.685000px;}
.y3a{bottom:831.525000px;}
.y163{bottom:837.285000px;}
.y12a{bottom:839.130000px;}
.yb2{bottom:839.670000px;}
.y66{bottom:840.030000px;}
.yf{bottom:842.550000px;}
.y8c{bottom:842.730000px;}
.ydb{bottom:842.910000px;}
.y180{bottom:845.430000px;}
.y10{bottom:850.110000px;}
.y39{bottom:852.270000px;}
.y162{bottom:858.030000px;}
.y102{bottom:858.390000px;}
.yb1{bottom:860.370000px;}
.y65{bottom:860.730000px;}
.y129{bottom:862.350000px;}
.y8b{bottom:863.430000px;}
.yda{bottom:864.330000px;}
.y17f{bottom:866.130000px;}
.y38{bottom:872.970000px;}
.y101{bottom:875.490000px;}
.y161{bottom:878.730000px;}
.yb0{bottom:881.070000px;}
.y64{bottom:881.430000px;}
.y8a{bottom:884.130000px;}
.ye{bottom:884.490000px;}
.y128{bottom:885.570000px;}
.yd9{bottom:885.750000px;}
.y37{bottom:893.670000px;}
.y100{bottom:898.890000px;}
.y160{bottom:899.430000px;}
.yaf{bottom:901.770000px;}
.y63{bottom:902.130000px;}
.y89{bottom:904.830000px;}
.yd{bottom:906.810000px;}
.yd7{bottom:907.170000px;}
.y127{bottom:908.790000px;}
.y36{bottom:914.370000px;}
.y15f{bottom:920.130000px;}
.yff{bottom:922.110000px;}
.yae{bottom:922.470000px;}
.y62{bottom:922.830000px;}
.y17e{bottom:925.530000px;}
.yd5{bottom:928.590000px;}
.yc{bottom:929.490000px;}
.y35{bottom:935.070000px;}
.y15e{bottom:940.830000px;}
.yad{bottom:943.170000px;}
.y61{bottom:943.530000px;}
.y17d{bottom:946.230000px;}
.y126{bottom:951.630000px;}
.y15d{bottom:961.530000px;}
.yac{bottom:963.870000px;}
.y60{bottom:964.230000px;}
.yd4{bottom:969.630000px;}
.yb{bottom:973.230000px;}
.y34{bottom:973.590000px;}
.y15c{bottom:982.230000px;}
.yab{bottom:984.570000px;}
.y88{bottom:984.930000px;}
.yfc{bottom:987.450000px;}
.y125{bottom:990.330000px;}
.y5f{bottom:1002.930000px;}
.yaa{bottom:1005.270000px;}
.y87{bottom:1005.630000px;}
.ya{bottom:1007.790000px;}
.yd3{bottom:1008.330000px;}
.y33{bottom:1013.550000px;}
.y5e{bottom:1023.630000px;}
.ya9{bottom:1025.970000px;}
.y86{bottom:1026.330000px;}
.y124{bottom:1029.030000px;}
.yfb{bottom:1029.570000px;}
.y32{bottom:1030.650000px;}
.y9{bottom:1042.170000px;}
.y5d{bottom:1044.330000px;}
.ya8{bottom:1046.670000px;}
.yd2{bottom:1046.850000px;}
.y85{bottom:1047.030000px;}
.y31{bottom:1047.930000px;}
.yfa{bottom:1052.790000px;}
.y5c{bottom:1065.030000px;}
.ya7{bottom:1067.190000px;}
.y123{bottom:1067.730000px;}
.yf9{bottom:1076.190000px;}
.y30{bottom:1083.930000px;}
.y5b{bottom:1085.730000px;}
.y8{bottom:1094.730000px;}
.yf7{bottom:1099.410000px;}
.y2f{bottom:1104.630000px;}
.y122{bottom:1106.250000px;}
.y5a{bottom:1106.430000px;}
.y5{bottom:1126.080000px;}
.y4{bottom:1143.720000px;}
.y3{bottom:1160.820000px;}
.y2{bottom:1178.100000px;}
.y1{bottom:1195.380000px;}
.h1b{height:20.685000px;}
.h1e{height:20.700000px;}
.h1d{height:20.722500px;}
.h19{height:22.485000px;}
.h20{height:22.491000px;}
.h24{height:22.500000px;}
.h1f{height:22.521000px;}
.h23{height:22.522500px;}
.h21{height:22.530000px;}
.hf{height:27.945000px;}
.hb{height:37.494141px;}
.h22{height:41.385000px;}
.h25{height:41.400000px;}
.h10{height:41.493516px;}
.h6{height:41.756133px;}
.h4{height:45.184219px;}
.h11{height:50.027344px;}
.h5{height:53.640000px;}
.h2{height:58.651172px;}
.h3{height:60.226875px;}
.h27{height:65.010937px;}
.he{height:70.664062px;}
.h1a{height:72.562500px;}
.h1c{height:74.704922px;}
.h26{height:74.824922px;}
.h12{height:76.279219px;}
.h9{height:76.317188px;}
.hd{height:78.367500px;}
.hc{height:82.635820px;}
.h8{height:82.676953px;}
.h13{height:92.179688px;}
.h18{height:95.059688px;}
.h15{height:118.904063px;}
.h7{height:121.179375px;}
.h17{height:140.419688px;}
.h16{height:146.899688px;}
.h14{height:195.139688px;}
.ha{height:1262.864960px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:46.785000px;}
.w7{width:55.785000px;}
.w8{width:55.821000px;}
.w5{width:59.385000px;}
.wa{width:96.300000px;}
.wc{width:96.501000px;}
.w1a{width:110.505000px;}
.w2{width:125.460000px;}
.w15{width:128.505000px;}
.w16{width:128.721000px;}
.w14{width:128.736000px;}
.w11{width:128.901000px;}
.w10{width:129.225000px;}
.wf{width:129.276000px;}
.w1b{width:133.761000px;}
.wb{width:140.976000px;}
.w9{width:154.455000px;}
.w19{width:165.630000px;}
.w18{width:241.221000px;}
.we{width:246.801000px;}
.w13{width:248.061000px;}
.w4{width:320.460000px;}
.w17{width:387.615000px;}
.w12{width:388.875000px;}
.w1c{width:411.375000px;}
.wd{width:490.770000px;}
.w3{width:892.957500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1b{left:7.725000px;}
.x20{left:10.425000px;}
.x1d{left:11.865000px;}
.x21{left:14.025000px;}
.x26{left:15.120000px;}
.x24{left:16.545000px;}
.x41{left:27.540000px;}
.x29{left:29.880000px;}
.x39{left:32.400000px;}
.x2a{left:34.380000px;}
.x42{left:36.540000px;}
.x36{left:38.145000px;}
.x38{left:39.780000px;}
.x37{left:41.400000px;}
.x40{left:43.905000px;}
.x2d{left:45.165000px;}
.x4b{left:46.650000px;}
.x34{left:49.125000px;}
.x2{left:50.399998px;}
.x3c{left:51.480000px;}
.x4d{left:53.460000px;}
.x4c{left:57.960000px;}
.x32{left:59.760000px;}
.x4a{left:62.460000px;}
.x2c{left:67.530000px;}
.x47{left:77.940000px;}
.x45{left:83.685000px;}
.x30{left:86.385000px;}
.x44{left:119.925000px;}
.x1a{left:123.150000px;}
.x1{left:127.656000px;}
.x11{left:133.056000px;}
.x4{left:138.276000px;}
.x3d{left:146.550000px;}
.x12{left:148.896000px;}
.x3f{left:155.190000px;}
.x7{left:159.690000px;}
.x3b{left:165.090000px;}
.x5{left:166.530000px;}
.x3a{left:171.210000px;}
.x3e{left:174.090000px;}
.x19{left:175.725000px;}
.x2b{left:179.670000px;}
.x10{left:180.750000px;}
.x4e{left:182.370000px;}
.x2f{left:183.990000px;}
.x4f{left:185.430000px;}
.x43{left:186.870000px;}
.x2e{left:198.210000px;}
.x23{left:201.285000px;}
.xc{left:205.770000px;}
.x18{left:220.350000px;}
.xd{left:344.235000px;}
.x6{left:351.075000px;}
.x14{left:354.495000px;}
.x25{left:356.655000px;}
.x46{left:361.875000px;}
.x16{left:371.055000px;}
.x31{left:375.915000px;}
.x13{left:377.715000px;}
.xe{left:381.495000px;}
.x8{left:390.315000px;}
.xf{left:403.275000px;}
.x9{left:410.835000px;}
.x15{left:436.935000px;}
.x17{left:438.735000px;}
.x22{left:446.655000px;}
.x27{left:453.855000px;}
.x3{left:457.275000px;}
.xa{left:496.702500px;}
.xb{left:503.565000px;}
.x33{left:505.920000px;}
.x48{left:528.240000px;}
.x1c{left:557.220000px;}
.x28{left:595.560000px;}
.x1e{left:604.920000px;}
.x35{left:635.880000px;}
.x49{left:639.480000px;}
.x1f{left:661.620000px;}
@media print{
.v6{vertical-align:-23.680000pt;}
.v1{vertical-align:-12.800000pt;}
.v8{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:2.560000pt;}
.v2{vertical-align:12.800000pt;}
.v9{vertical-align:24.320000pt;}
.v5{vertical-align:35.840000pt;}
.v3{vertical-align:42.880000pt;}
.v4{vertical-align:48.640000pt;}
.ls1e{letter-spacing:-0.192000pt;}
.ls1d{letter-spacing:-0.023040pt;}
.ls8{letter-spacing:-0.015360pt;}
.ls9{letter-spacing:-0.007680pt;}
.ls7{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.011520pt;}
.ls3{letter-spacing:0.015360pt;}
.lsa{letter-spacing:0.023040pt;}
.ls14{letter-spacing:0.064000pt;}
.ls10{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.133333pt;}
.ls6{letter-spacing:0.154880pt;}
.ls1{letter-spacing:0.160000pt;}
.ls1a{letter-spacing:0.192000pt;}
.ls1c{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1b{letter-spacing:0.448000pt;}
.ls4{letter-spacing:0.640000pt;}
.ls1f{letter-spacing:0.704000pt;}
.ls17{letter-spacing:1.856000pt;}
.ls12{letter-spacing:1.917440pt;}
.ls19{letter-spacing:2.482560pt;}
.ls16{letter-spacing:2.490240pt;}
.lsb{letter-spacing:2.557440pt;}
.ls11{letter-spacing:2.664107pt;}
.ls18{letter-spacing:14.272000pt;}
.ls15{letter-spacing:14.378667pt;}
.lse{letter-spacing:17.472000pt;}
.lsc{letter-spacing:17.600000pt;}
.ls13{letter-spacing:18.112000pt;}
.lsd{letter-spacing:41.152000pt;}
.lsf{letter-spacing:79.424000pt;}
.wsc{word-spacing:-78.272000pt;}
.ws8{word-spacing:-64.192000pt;}
.ws7{word-spacing:-64.000000pt;}
.ws9{word-spacing:-29.196800pt;}
.wse{word-spacing:-28.928000pt;}
.wsb{word-spacing:-28.869760pt;}
.wsd{word-spacing:-28.237440pt;}
.ws1{word-spacing:-17.295360pt;}
.ws2{word-spacing:-17.280000pt;}
.ws6{word-spacing:-17.272320pt;}
.ws4{word-spacing:-17.264640pt;}
.ws10{word-spacing:-16.256000pt;}
.wsa{word-spacing:-16.000000pt;}
.ws12{word-spacing:-15.808000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws0{word-spacing:-13.280000pt;}
.ws11{word-spacing:-10.720000pt;}
.ws3{word-spacing:0.000000pt;}
.wsf{word-spacing:154.784000pt;}
._1e{margin-left:-254.563200pt;}
._1d{margin-left:-13.852373pt;}
._1c{margin-left:-8.192000pt;}
._13{margin-left:-4.608000pt;}
._f{margin-left:-3.456000pt;}
._14{margin-left:-2.372693pt;}
._4{margin-left:-1.218133pt;}
._0{width:0.903040pt;}
._1{width:2.267733pt;}
._b{width:3.890133pt;}
._5{width:4.914773pt;}
._c{width:6.456320pt;}
._9{width:7.360000pt;}
._a{width:8.416000pt;}
._10{width:9.312000pt;}
._6{width:10.496000pt;}
._7{width:11.448960pt;}
._8{width:12.341120pt;}
._18{width:13.248000pt;}
._17{width:14.912000pt;}
._15{width:17.600000pt;}
._16{width:18.816000pt;}
._20{width:20.096000pt;}
._19{width:21.248000pt;}
._1a{width:22.267093pt;}
._23{width:24.832000pt;}
._1b{width:26.436267pt;}
._d{width:27.648000pt;}
._e{width:28.736000pt;}
._12{width:34.461653pt;}
._11{width:36.324480pt;}
._2a{width:37.894187pt;}
._24{width:39.296000pt;}
._22{width:68.992000pt;}
._25{width:70.144000pt;}
._27{width:71.040000pt;}
._26{width:71.936000pt;}
._21{width:81.152000pt;}
._1f{width:84.352000pt;}
._2f{width:95.744000pt;}
._30{width:96.640000pt;}
._28{width:98.560000pt;}
._29{width:99.584000pt;}
._2b{width:108.480000pt;}
._2d{width:141.824000pt;}
._2e{width:143.104000pt;}
._2{width:473.120000pt;}
._2c{width:485.888000pt;}
._3{width:1353.935573pt;}
.fs7{font-size:34.560000pt;}
.fs9{font-size:42.880000pt;}
.fs8{font-size:45.440000pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.yd6{bottom:3.680000pt;}
.yd8{bottom:4.000000pt;}
.yc5{bottom:4.480000pt;}
.ycd{bottom:4.786667pt;}
.yc7{bottom:4.800000pt;}
.yf1{bottom:5.586667pt;}
.yf8{bottom:5.600000pt;}
.y133{bottom:13.120000pt;}
.yfe{bottom:13.280000pt;}
.yfd{bottom:22.400000pt;}
.y7{bottom:34.912000pt;}
.y6{bottom:52.032000pt;}
.y2e{bottom:116.832000pt;}
.y59{bottom:120.832000pt;}
.y2d{bottom:121.472000pt;}
.y147{bottom:124.992000pt;}
.yd1{bottom:127.552000pt;}
.y84{bottom:129.152000pt;}
.y1a4{bottom:129.472000pt;}
.yf6{bottom:129.640000pt;}
.y2c{bottom:133.626667pt;}
.y58{bottom:139.226667pt;}
.y15b{bottom:139.386667pt;}
.y121{bottom:141.946667pt;}
.y83{bottom:147.546667pt;}
.yf5{bottom:150.440000pt;}
.ya6{bottom:150.746667pt;}
.y57{bottom:157.626667pt;}
.y146{bottom:159.226667pt;}
.yd0{bottom:159.880000pt;}
.y120{bottom:160.346667pt;}
.y1a3{bottom:164.506667pt;}
.y82{bottom:165.946667pt;}
.y2b{bottom:166.106667pt;}
.y17c{bottom:166.746667pt;}
.yf4{bottom:171.080000pt;}
.y15a{bottom:175.546667pt;}
.y56{bottom:176.026667pt;}
.y11f{bottom:178.746667pt;}
.ycf{bottom:180.680000pt;}
.y198{bottom:181.786667pt;}
.y1a2{bottom:184.186667pt;}
.y81{bottom:184.346667pt;}
.y2a{bottom:184.506667pt;}
.y17b{bottom:185.146667pt;}
.ya5{bottom:185.466667pt;}
.yf3{bottom:191.720000pt;}
.y159{bottom:193.786667pt;}
.y145{bottom:193.946667pt;}
.ya4{bottom:196.186667pt;}
.y11e{bottom:197.146667pt;}
.y197{bottom:200.186667pt;}
.yce{bottom:201.320000pt;}
.y80{bottom:202.746667pt;}
.y29{bottom:202.906667pt;}
.y17a{bottom:203.546667pt;}
.y55{bottom:210.426667pt;}
.y158{bottom:212.186667pt;}
.y144{bottom:212.346667pt;}
.yf2{bottom:212.360000pt;}
.y11d{bottom:215.546667pt;}
.y196{bottom:218.586667pt;}
.y7f{bottom:221.146667pt;}
.y28{bottom:221.306667pt;}
.y179{bottom:221.946667pt;}
.ycc{bottom:221.960000pt;}
.y54{bottom:228.826667pt;}
.y157{bottom:230.586667pt;}
.y143{bottom:230.746667pt;}
.yf0{bottom:233.000000pt;}
.y11c{bottom:233.946667pt;}
.y195{bottom:236.986667pt;}
.y7e{bottom:239.546667pt;}
.y27{bottom:239.706667pt;}
.ya3{bottom:241.146667pt;}
.ycb{bottom:242.626667pt;}
.y53{bottom:247.266667pt;}
.y156{bottom:249.026667pt;}
.y142{bottom:249.186667pt;}
.y11b{bottom:252.386667pt;}
.yef{bottom:253.666667pt;}
.y178{bottom:256.386667pt;}
.y26{bottom:258.146667pt;}
.ya2{bottom:259.586667pt;}
.yca{bottom:263.266667pt;}
.y52{bottom:265.666667pt;}
.y155{bottom:267.426667pt;}
.y141{bottom:267.586667pt;}
.y11a{bottom:270.786667pt;}
.y194{bottom:271.426667pt;}
.y7d{bottom:273.666667pt;}
.y177{bottom:274.786667pt;}
.y25{bottom:276.546667pt;}
.yc9{bottom:283.906667pt;}
.y51{bottom:284.066667pt;}
.y154{bottom:285.826667pt;}
.y140{bottom:285.986667pt;}
.y119{bottom:289.186667pt;}
.y193{bottom:289.826667pt;}
.yee{bottom:291.746667pt;}
.y176{bottom:293.186667pt;}
.ya1{bottom:293.666667pt;}
.y24{bottom:294.946667pt;}
.y50{bottom:302.466667pt;}
.y153{bottom:304.226667pt;}
.y13f{bottom:304.386667pt;}
.yc8{bottom:304.706667pt;}
.y118{bottom:307.586667pt;}
.y1a1{bottom:308.226667pt;}
.y7c{bottom:309.826667pt;}
.y23{bottom:313.346667pt;}
.ya0{bottom:316.546667pt;}
.y4f{bottom:320.866667pt;}
.y152{bottom:322.626667pt;}
.y13e{bottom:322.786667pt;}
.y192{bottom:324.226667pt;}
.yc6{bottom:325.346667pt;}
.y117{bottom:325.986667pt;}
.y175{bottom:327.586667pt;}
.y7b{bottom:328.226667pt;}
.yed{bottom:328.706667pt;}
.y22{bottom:331.746667pt;}
.y4e{bottom:339.266667pt;}
.y151{bottom:341.026667pt;}
.y13d{bottom:341.186667pt;}
.y191{bottom:342.626667pt;}
.yc4{bottom:345.986667pt;}
.y7a{bottom:346.626667pt;}
.yec{bottom:349.826667pt;}
.y9f{bottom:349.986667pt;}
.y21{bottom:350.146667pt;}
.y150{bottom:359.426667pt;}
.y13c{bottom:359.586667pt;}
.y116{bottom:360.386667pt;}
.y1a0{bottom:361.026667pt;}
.y174{bottom:364.386667pt;}
.y79{bottom:365.026667pt;}
.y20{bottom:368.546667pt;}
.yeb{bottom:371.106667pt;}
.y4d{bottom:373.506667pt;}
.y190{bottom:377.026667pt;}
.y14f{bottom:377.826667pt;}
.y13b{bottom:377.986667pt;}
.y115{bottom:378.786667pt;}
.y78{bottom:383.426667pt;}
.yc3{bottom:383.746667pt;}
.y9e{bottom:384.386667pt;}
.y1f{bottom:386.946667pt;}
.y4c{bottom:391.906667pt;}
.y18f{bottom:395.426667pt;}
.y14e{bottom:396.226667pt;}
.y13a{bottom:396.386667pt;}
.y114{bottom:397.186667pt;}
.y173{bottom:398.626667pt;}
.y77{bottom:401.826667pt;}
.y9d{bottom:402.786667pt;}
.y1e{bottom:405.346667pt;}
.yea{bottom:405.506667pt;}
.y4b{bottom:410.306667pt;}
.y19f{bottom:413.826667pt;}
.y14d{bottom:414.626667pt;}
.y139{bottom:414.786667pt;}
.y113{bottom:415.586667pt;}
.yc2{bottom:418.306667pt;}
.y76{bottom:420.226667pt;}
.y9c{bottom:421.186667pt;}
.y1d{bottom:423.746667pt;}
.ye9{bottom:426.626667pt;}
.y4a{bottom:428.706667pt;}
.y18e{bottom:429.826667pt;}
.y19e{bottom:432.226667pt;}
.y14c{bottom:433.026667pt;}
.y112{bottom:433.986667pt;}
.y172{bottom:434.786667pt;}
.yc1{bottom:436.706667pt;}
.y9b{bottom:439.586667pt;}
.y1c{bottom:442.146667pt;}
.y49{bottom:447.106667pt;}
.y18d{bottom:448.226667pt;}
.y138{bottom:449.186667pt;}
.y111{bottom:452.386667pt;}
.y171{bottom:453.186667pt;}
.y75{bottom:454.626667pt;}
.yc0{bottom:455.106667pt;}
.y9a{bottom:457.986667pt;}
.ye8{bottom:461.826667pt;}
.y137{bottom:464.226667pt;}
.y48{bottom:465.506667pt;}
.y18c{bottom:466.626667pt;}
.y14b{bottom:467.106667pt;}
.y110{bottom:470.786667pt;}
.y170{bottom:471.586667pt;}
.y74{bottom:473.026667pt;}
.ybf{bottom:473.506667pt;}
.y1b{bottom:476.226667pt;}
.y99{bottom:476.386667pt;}
.y14a{bottom:481.026667pt;}
.y47{bottom:483.906667pt;}
.y136{bottom:484.866667pt;}
.y19d{bottom:485.026667pt;}
.y10f{bottom:489.186667pt;}
.y16f{bottom:489.986667pt;}
.y73{bottom:491.426667pt;}
.ybe{bottom:491.906667pt;}
.ye7{bottom:494.653333pt;}
.y98{bottom:494.813333pt;}
.y18b{bottom:501.053333pt;}
.y149{bottom:501.693333pt;}
.y46{bottom:502.333333pt;}
.y135{bottom:505.533333pt;}
.y10e{bottom:507.613333pt;}
.y16e{bottom:508.413333pt;}
.y72{bottom:509.853333pt;}
.ybd{bottom:510.333333pt;}
.y1a{bottom:512.253333pt;}
.y97{bottom:513.213333pt;}
.y18a{bottom:519.453333pt;}
.y45{bottom:520.733333pt;}
.y148{bottom:522.333333pt;}
.y10d{bottom:526.013333pt;}
.y16d{bottom:526.813333pt;}
.y71{bottom:528.253333pt;}
.ybc{bottom:528.733333pt;}
.y96{bottom:531.453333pt;}
.ye6{bottom:531.613333pt;}
.y19{bottom:532.893333pt;}
.y189{bottom:537.853333pt;}
.y134{bottom:542.973333pt;}
.y10c{bottom:544.413333pt;}
.y16c{bottom:545.213333pt;}
.y70{bottom:546.653333pt;}
.ybb{bottom:547.133333pt;}
.y95{bottom:549.853333pt;}
.ye5{bottom:550.013333pt;}
.y18{bottom:554.173333pt;}
.y44{bottom:555.133333pt;}
.y188{bottom:556.253333pt;}
.y10b{bottom:562.813333pt;}
.y16b{bottom:563.453333pt;}
.y132{bottom:563.773333pt;}
.y6f{bottom:565.053333pt;}
.y94{bottom:568.253333pt;}
.ye4{bottom:568.413333pt;}
.y19c{bottom:572.253333pt;}
.y43{bottom:573.533333pt;}
.y17{bottom:574.013333pt;}
.y187{bottom:574.653333pt;}
.y10a{bottom:581.213333pt;}
.yba{bottom:581.373333pt;}
.y16a{bottom:581.853333pt;}
.y6e{bottom:583.453333pt;}
.y93{bottom:586.653333pt;}
.ye3{bottom:586.813333pt;}
.y19b{bottom:590.653333pt;}
.y42{bottom:591.933333pt;}
.y16{bottom:594.173333pt;}
.y109{bottom:599.613333pt;}
.y169{bottom:600.253333pt;}
.y131{bottom:601.213333pt;}
.y6d{bottom:601.853333pt;}
.y92{bottom:605.053333pt;}
.y186{bottom:609.053333pt;}
.y41{bottom:610.333333pt;}
.yb9{bottom:617.533333pt;}
.y168{bottom:618.653333pt;}
.ye2{bottom:620.893333pt;}
.y130{bottom:621.853333pt;}
.y91{bottom:623.453333pt;}
.y185{bottom:627.453333pt;}
.y40{bottom:628.733333pt;}
.y15{bottom:631.453333pt;}
.y108{bottom:634.013333pt;}
.ye1{bottom:634.813333pt;}
.yb8{bottom:635.933333pt;}
.y6c{bottom:636.253333pt;}
.y12f{bottom:642.493333pt;}
.y19a{bottom:645.853333pt;}
.y3f{bottom:647.133333pt;}
.y14{bottom:651.453333pt;}
.y107{bottom:652.413333pt;}
.y167{bottom:652.893333pt;}
.ye0{bottom:653.853333pt;}
.yb7{bottom:654.333333pt;}
.y6b{bottom:654.653333pt;}
.y90{bottom:658.173333pt;}
.y184{bottom:661.853333pt;}
.y12e{bottom:663.133333pt;}
.y3e{bottom:665.533333pt;}
.y106{bottom:670.813333pt;}
.y13{bottom:671.613333pt;}
.yb6{bottom:672.733333pt;}
.ydf{bottom:672.893333pt;}
.y6a{bottom:673.053333pt;}
.y183{bottom:680.253333pt;}
.y12d{bottom:683.773333pt;}
.y3d{bottom:683.933333pt;}
.y166{bottom:689.053333pt;}
.y105{bottom:689.213333pt;}
.yb5{bottom:691.133333pt;}
.y69{bottom:691.453333pt;}
.yde{bottom:691.933333pt;}
.y8f{bottom:693.853333pt;}
.y182{bottom:698.653333pt;}
.y3c{bottom:702.333333pt;}
.y12c{bottom:704.573333pt;}
.y165{bottom:707.453333pt;}
.y104{bottom:707.613333pt;}
.y12{bottom:708.733333pt;}
.yb4{bottom:709.533333pt;}
.y68{bottom:709.853333pt;}
.ydd{bottom:710.973333pt;}
.y8e{bottom:712.253333pt;}
.y181{bottom:717.053333pt;}
.y3b{bottom:720.733333pt;}
.y12b{bottom:725.213333pt;}
.y164{bottom:725.853333pt;}
.y103{bottom:726.013333pt;}
.yb3{bottom:727.933333pt;}
.y67{bottom:728.253333pt;}
.y11{bottom:728.733333pt;}
.ydc{bottom:730.173333pt;}
.y8d{bottom:730.653333pt;}
.y199{bottom:733.053333pt;}
.y3a{bottom:739.133333pt;}
.y163{bottom:744.253333pt;}
.y12a{bottom:745.893333pt;}
.yb2{bottom:746.373333pt;}
.y66{bottom:746.693333pt;}
.yf{bottom:748.933333pt;}
.y8c{bottom:749.093333pt;}
.ydb{bottom:749.253333pt;}
.y180{bottom:751.493333pt;}
.y10{bottom:755.653333pt;}
.y39{bottom:757.573333pt;}
.y162{bottom:762.693333pt;}
.y102{bottom:763.013333pt;}
.yb1{bottom:764.773333pt;}
.y65{bottom:765.093333pt;}
.y129{bottom:766.533333pt;}
.y8b{bottom:767.493333pt;}
.yda{bottom:768.293333pt;}
.y17f{bottom:769.893333pt;}
.y38{bottom:775.973333pt;}
.y101{bottom:778.213333pt;}
.y161{bottom:781.093333pt;}
.yb0{bottom:783.173333pt;}
.y64{bottom:783.493333pt;}
.y8a{bottom:785.893333pt;}
.ye{bottom:786.213333pt;}
.y128{bottom:787.173333pt;}
.yd9{bottom:787.333333pt;}
.y37{bottom:794.373333pt;}
.y100{bottom:799.013333pt;}
.y160{bottom:799.493333pt;}
.yaf{bottom:801.573333pt;}
.y63{bottom:801.893333pt;}
.y89{bottom:804.293333pt;}
.yd{bottom:806.053333pt;}
.yd7{bottom:806.373333pt;}
.y127{bottom:807.813333pt;}
.y36{bottom:812.773333pt;}
.y15f{bottom:817.893333pt;}
.yff{bottom:819.653333pt;}
.yae{bottom:819.973333pt;}
.y62{bottom:820.293333pt;}
.y17e{bottom:822.693333pt;}
.yd5{bottom:825.413333pt;}
.yc{bottom:826.213333pt;}
.y35{bottom:831.173333pt;}
.y15e{bottom:836.293333pt;}
.yad{bottom:838.373333pt;}
.y61{bottom:838.693333pt;}
.y17d{bottom:841.093333pt;}
.y126{bottom:845.893333pt;}
.y15d{bottom:854.693333pt;}
.yac{bottom:856.773333pt;}
.y60{bottom:857.093333pt;}
.yd4{bottom:861.893333pt;}
.yb{bottom:865.093333pt;}
.y34{bottom:865.413333pt;}
.y15c{bottom:873.093333pt;}
.yab{bottom:875.173333pt;}
.y88{bottom:875.493333pt;}
.yfc{bottom:877.733333pt;}
.y125{bottom:880.293333pt;}
.y5f{bottom:891.493333pt;}
.yaa{bottom:893.573333pt;}
.y87{bottom:893.893333pt;}
.ya{bottom:895.813333pt;}
.yd3{bottom:896.293333pt;}
.y33{bottom:900.933333pt;}
.y5e{bottom:909.893333pt;}
.ya9{bottom:911.973333pt;}
.y86{bottom:912.293333pt;}
.y124{bottom:914.693333pt;}
.yfb{bottom:915.173333pt;}
.y32{bottom:916.133333pt;}
.y9{bottom:926.373333pt;}
.y5d{bottom:928.293333pt;}
.ya8{bottom:930.373333pt;}
.yd2{bottom:930.533333pt;}
.y85{bottom:930.693333pt;}
.y31{bottom:931.493333pt;}
.yfa{bottom:935.813333pt;}
.y5c{bottom:946.693333pt;}
.ya7{bottom:948.613333pt;}
.y123{bottom:949.093333pt;}
.yf9{bottom:956.613333pt;}
.y30{bottom:963.493333pt;}
.y5b{bottom:965.093333pt;}
.y8{bottom:973.093333pt;}
.yf7{bottom:977.253333pt;}
.y2f{bottom:981.893333pt;}
.y122{bottom:983.333333pt;}
.y5a{bottom:983.493333pt;}
.y5{bottom:1000.960000pt;}
.y4{bottom:1016.640000pt;}
.y3{bottom:1031.840000pt;}
.y2{bottom:1047.200000pt;}
.y1{bottom:1062.560000pt;}
.h1b{height:18.386667pt;}
.h1e{height:18.400000pt;}
.h1d{height:18.420000pt;}
.h19{height:19.986667pt;}
.h20{height:19.992000pt;}
.h24{height:20.000000pt;}
.h1f{height:20.018667pt;}
.h23{height:20.020000pt;}
.h21{height:20.026667pt;}
.hf{height:24.840000pt;}
.hb{height:33.328125pt;}
.h22{height:36.786667pt;}
.h25{height:36.800000pt;}
.h10{height:36.883125pt;}
.h6{height:37.116563pt;}
.h4{height:40.163750pt;}
.h11{height:44.468750pt;}
.h5{height:47.680000pt;}
.h2{height:52.134375pt;}
.h3{height:53.535000pt;}
.h27{height:57.787500pt;}
.he{height:62.812500pt;}
.h1a{height:64.500000pt;}
.h1c{height:66.404375pt;}
.h26{height:66.511042pt;}
.h12{height:67.803750pt;}
.h9{height:67.837500pt;}
.hd{height:69.660000pt;}
.hc{height:73.454062pt;}
.h8{height:73.490625pt;}
.h13{height:81.937500pt;}
.h18{height:84.497500pt;}
.h15{height:105.692500pt;}
.h7{height:107.715000pt;}
.h17{height:124.817500pt;}
.h16{height:130.577500pt;}
.h14{height:173.457500pt;}
.ha{height:1122.546631pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:41.586667pt;}
.w7{width:49.586667pt;}
.w8{width:49.618667pt;}
.w5{width:52.786667pt;}
.wa{width:85.600000pt;}
.wc{width:85.778667pt;}
.w1a{width:98.226667pt;}
.w2{width:111.520000pt;}
.w15{width:114.226667pt;}
.w16{width:114.418667pt;}
.w14{width:114.432000pt;}
.w11{width:114.578667pt;}
.w10{width:114.866667pt;}
.wf{width:114.912000pt;}
.w1b{width:118.898667pt;}
.wb{width:125.312000pt;}
.w9{width:137.293333pt;}
.w19{width:147.226667pt;}
.w18{width:214.418667pt;}
.we{width:219.378667pt;}
.w13{width:220.498667pt;}
.w4{width:284.853333pt;}
.w17{width:344.546667pt;}
.w12{width:345.666667pt;}
.w1c{width:365.666667pt;}
.wd{width:436.240000pt;}
.w3{width:793.740000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:6.866667pt;}
.x20{left:9.266667pt;}
.x1d{left:10.546667pt;}
.x21{left:12.466667pt;}
.x26{left:13.440000pt;}
.x24{left:14.706667pt;}
.x41{left:24.480000pt;}
.x29{left:26.560000pt;}
.x39{left:28.800000pt;}
.x2a{left:30.560000pt;}
.x42{left:32.480000pt;}
.x36{left:33.906667pt;}
.x38{left:35.360000pt;}
.x37{left:36.800000pt;}
.x40{left:39.026667pt;}
.x2d{left:40.146667pt;}
.x4b{left:41.466667pt;}
.x34{left:43.666667pt;}
.x2{left:44.799998pt;}
.x3c{left:45.760000pt;}
.x4d{left:47.520000pt;}
.x4c{left:51.520000pt;}
.x32{left:53.120000pt;}
.x4a{left:55.520000pt;}
.x2c{left:60.026667pt;}
.x47{left:69.280000pt;}
.x45{left:74.386667pt;}
.x30{left:76.786667pt;}
.x44{left:106.600000pt;}
.x1a{left:109.466667pt;}
.x1{left:113.472000pt;}
.x11{left:118.272000pt;}
.x4{left:122.912000pt;}
.x3d{left:130.266667pt;}
.x12{left:132.352000pt;}
.x3f{left:137.946667pt;}
.x7{left:141.946667pt;}
.x3b{left:146.746667pt;}
.x5{left:148.026667pt;}
.x3a{left:152.186667pt;}
.x3e{left:154.746667pt;}
.x19{left:156.200000pt;}
.x2b{left:159.706667pt;}
.x10{left:160.666667pt;}
.x4e{left:162.106667pt;}
.x2f{left:163.546667pt;}
.x4f{left:164.826667pt;}
.x43{left:166.106667pt;}
.x2e{left:176.186667pt;}
.x23{left:178.920000pt;}
.xc{left:182.906667pt;}
.x18{left:195.866667pt;}
.xd{left:305.986667pt;}
.x6{left:312.066667pt;}
.x14{left:315.106667pt;}
.x25{left:317.026667pt;}
.x46{left:321.666667pt;}
.x16{left:329.826667pt;}
.x31{left:334.146667pt;}
.x13{left:335.746667pt;}
.xe{left:339.106667pt;}
.x8{left:346.946667pt;}
.xf{left:358.466667pt;}
.x9{left:365.186667pt;}
.x15{left:388.386667pt;}
.x17{left:389.986667pt;}
.x22{left:397.026667pt;}
.x27{left:403.426667pt;}
.x3{left:406.466667pt;}
.xa{left:441.513333pt;}
.xb{left:447.613333pt;}
.x33{left:449.706667pt;}
.x48{left:469.546667pt;}
.x1c{left:495.306667pt;}
.x28{left:529.386667pt;}
.x1e{left:537.706667pt;}
.x35{left:565.226667pt;}
.x49{left:568.426667pt;}
.x1f{left:588.106667pt;}
}




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