
    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_b45f2ac76888442f750b087f.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_0258425c37034c935aaf4913.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_57ed79bbf2c4a1147c80d02b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_7e259e6880715c22cba55ed6.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_a8e375368a7ca658d6a3c9d8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.402354;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_bebd578a6b6258ad0ab21d25.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_7e64b89a363d2e96da3da8c9.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.088379;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_97cef48006e4f910183cf4c1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.850586;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);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls22{letter-spacing:-0.444600px;}
.ls21{letter-spacing:-0.244200px;}
.ls10{letter-spacing:-0.186600px;}
.ls8{letter-spacing:-0.135000px;}
.lsb{letter-spacing:-0.121200px;}
.ls15{letter-spacing:-0.101400px;}
.ls7{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls1c{letter-spacing:-0.011160px;}
.ls9{letter-spacing:-0.008400px;}
.ls18{letter-spacing:-0.007560px;}
.ls5{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.041760px;}
.ls11{letter-spacing:0.045360px;}
.ls16{letter-spacing:0.048960px;}
.ls12{letter-spacing:0.060600px;}
.lsd{letter-spacing:0.064800px;}
.ls3{letter-spacing:0.065520px;}
.lsc{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls17{letter-spacing:0.105600px;}
.ls19{letter-spacing:0.111000px;}
.ls1e{letter-spacing:0.143400px;}
.ls6{letter-spacing:0.144000px;}
.ls1a{letter-spacing:0.160800px;}
.ls14{letter-spacing:0.170400px;}
.lsf{letter-spacing:0.173400px;}
.ls1d{letter-spacing:0.181200px;}
.ls0{letter-spacing:0.360000px;}
.ls4{letter-spacing:1.893600px;}
.ls1b{letter-spacing:8.013600px;}
.ls20{letter-spacing:47.726640px;}
.lse{letter-spacing:63.566640px;}
.ls1f{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws5{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.ws16{word-spacing:-13.407600px;}
.ws7{word-spacing:-13.399800px;}
.wsb{word-spacing:-13.396800px;}
.ws12{word-spacing:-13.387200px;}
.ws14{word-spacing:-13.369800px;}
.ws11{word-spacing:-13.337400px;}
.wsf{word-spacing:-13.332000px;}
.wsa{word-spacing:-13.287000px;}
.wse{word-spacing:-13.275360px;}
.wsc{word-spacing:-13.268160px;}
.ws3{word-spacing:-13.226400px;}
.ws10{word-spacing:-13.218840px;}
.ws13{word-spacing:-13.215240px;}
.wsd{word-spacing:-13.125000px;}
.ws8{word-spacing:-13.039800px;}
.ws15{word-spacing:-12.982200px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-8.553600px;}
.ws6{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._a{margin-left:-3.636841px;}
._2{margin-left:-2.632440px;}
._0{margin-left:-1.104000px;}
._1{width:1.223400px;}
._4{width:2.573520px;}
._3{width:3.766800px;}
._b{width:4.804555px;}
._6{width:6.012000px;}
._7{width:7.154400px;}
._9{width:8.586000px;}
._8{width:9.619200px;}
._d{width:10.641240px;}
._c{width:12.024000px;}
._e{width:14.368680px;}
._f{width:15.450840px;}
._5{width:17.104320px;}
._10{width:18.313200px;}
._15{width:20.380680px;}
._14{width:21.943800px;}
._13{width:23.206320px;}
._11{width:25.009920px;}
._12{width:39.017880px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs8{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y9c{bottom:7.830000px;}
.y9e{bottom:7.920000px;}
.yee{bottom:13.050000px;}
.ye9{bottom:13.140000px;}
.y145{bottom:18.360000px;}
.y101{bottom:25.470000px;}
.y9b{bottom:29.970000px;}
.ye8{bottom:35.190000px;}
.y144{bottom:40.410000px;}
.y13d{bottom:50.940000px;}
.y143{bottom:62.460000px;}
.y13c{bottom:72.990000px;}
.y14b{bottom:73.020000px;}
.y2{bottom:73.380000px;}
.y27{bottom:74.190000px;}
.y13b{bottom:95.130000px;}
.y14a{bottom:95.160000px;}
.y1{bottom:101.640000px;}
.y15d{bottom:112.440000px;}
.yca{bottom:115.680000px;}
.y13a{bottom:117.180000px;}
.y149{bottom:117.210000px;}
.y12d{bottom:119.550000px;}
.ya5{bottom:122.430000px;}
.y1a3{bottom:126.030000px;}
.y1d1{bottom:127.110000px;}
.y132{bottom:127.710000px;}
.y15c{bottom:130.080000px;}
.y110{bottom:131.430000px;}
.y153{bottom:132.930000px;}
.y12c{bottom:137.100000px;}
.yec{bottom:137.190000px;}
.y83{bottom:141.960000px;}
.y59{bottom:142.590000px;}
.yc9{bottom:143.040000px;}
.y1a2{bottom:143.580000px;}
.y1d0{bottom:144.750000px;}
.y185{bottom:145.920000px;}
.ya4{bottom:149.790000px;}
.y131{bottom:149.850000px;}
.yeb{bottom:152.130000px;}
.y12b{bottom:154.650000px;}
.y152{bottom:155.070000px;}
.y15b{bottom:156.990000px;}
.y25{bottom:158.340000px;}
.y10f{bottom:158.790000px;}
.y82{bottom:159.510000px;}
.y58{bottom:160.230000px;}
.y184{bottom:163.470000px;}
.yc8{bottom:170.400000px;}
.y1a1{bottom:170.490000px;}
.y1cf{bottom:171.300000px;}
.y130{bottom:171.900000px;}
.y24{bottom:175.980000px;}
.y81{bottom:177.060000px;}
.y151{bottom:177.120000px;}
.ya3{bottom:177.150000px;}
.y57{bottom:177.780000px;}
.ye7{bottom:179.490000px;}
.y183{bottom:181.110000px;}
.y10e{bottom:186.150000px;}
.y1ce{bottom:188.850000px;}
.y12a{bottom:190.290000px;}
.y23{bottom:193.530000px;}
.y56{bottom:195.420000px;}
.yc7{bottom:197.760000px;}
.y182{bottom:198.660000px;}
.y150{bottom:199.260000px;}
.y14f{bottom:202.620000px;}
.ya2{bottom:204.420000px;}
.yea{bottom:206.850000px;}
.y1a0{bottom:207.570000px;}
.y129{bottom:207.840000px;}
.y22{bottom:211.170000px;}
.y80{bottom:212.700000px;}
.y55{bottom:212.970000px;}
.y10d{bottom:213.510000px;}
.y1cd{bottom:215.490000px;}
.y181{bottom:216.300000px;}
.yc6{bottom:225.030000px;}
.y19f{bottom:225.120000px;}
.y128{bottom:225.480000px;}
.y21{bottom:228.720000px;}
.y15a{bottom:229.980000px;}
.y7f{bottom:230.250000px;}
.y54{bottom:230.520000px;}
.ya1{bottom:231.780000px;}
.y1cc{bottom:233.040000px;}
.y180{bottom:233.850000px;}
.y10c{bottom:240.780000px;}
.y19e{bottom:242.670000px;}
.y20{bottom:246.270000px;}
.y7e{bottom:247.890000px;}
.y1cb{bottom:250.680000px;}
.y17f{bottom:251.400000px;}
.yc5{bottom:252.390000px;}
.ye6{bottom:255.540000px;}
.y159{bottom:257.340000px;}
.y127{bottom:258.420000px;}
.ya0{bottom:259.140000px;}
.y19d{bottom:260.310000px;}
.y1f{bottom:263.910000px;}
.y7d{bottom:265.440000px;}
.y53{bottom:266.070000px;}
.y10b{bottom:268.140000px;}
.ye5{bottom:273.090000px;}
.y1ca{bottom:277.230000px;}
.yc4{bottom:279.750000px;}
.y7c{bottom:282.990000px;}
.y52{bottom:284.520000px;}
.y158{bottom:284.610000px;}
.y126{bottom:285.780000px;}
.y9f{bottom:286.410000px;}
.y17e{bottom:286.950000px;}
.y19c{bottom:287.220000px;}
.y1e{bottom:290.820000px;}
.y1c9{bottom:294.780000px;}
.y10a{bottom:295.500000px;}
.y51{bottom:302.880000px;}
.y17d{bottom:305.400000px;}
.yc3{bottom:307.020000px;}
.ye4{bottom:308.730000px;}
.y7b{bottom:309.900000px;}
.y157{bottom:311.970000px;}
.y125{bottom:313.050000px;}
.y9d{bottom:313.770000px;}
.y50{bottom:321.330000px;}
.y1c8{bottom:321.420000px;}
.y109{bottom:322.770000px;}
.y17c{bottom:322.950000px;}
.y19b{bottom:324.210000px;}
.yc2{bottom:334.380000px;}
.y1c7{bottom:338.970000px;}
.y156{bottom:339.330000px;}
.y1d{bottom:339.420000px;}
.y4f{bottom:339.780000px;}
.y9a{bottom:341.130000px;}
.y17b{bottom:341.400000px;}
.ye3{bottom:344.280000px;}
.y108{bottom:350.130000px;}
.y19a{bottom:351.120000px;}
.y7a{bottom:358.230000px;}
.y17a{bottom:359.040000px;}
.yc1{bottom:361.740000px;}
.ye2{bottom:361.830000px;}
.y1c6{bottom:365.610000px;}
.y155{bottom:366.690000px;}
.y79{bottom:375.780000px;}
.y4e{bottom:376.230000px;}
.y1c{bottom:376.410000px;}
.y179{bottom:376.590000px;}
.y107{bottom:377.490000px;}
.y124{bottom:379.380000px;}
.ye1{bottom:379.470000px;}
.y199{bottom:388.110000px;}
.yc0{bottom:389.100000px;}
.y1c5{bottom:392.160000px;}
.y4d{bottom:393.780000px;}
.y154{bottom:393.960000px;}
.y1b{bottom:394.050000px;}
.y78{bottom:394.140000px;}
.y106{bottom:404.850000px;}
.y198{bottom:405.750000px;}
.y1c4{bottom:409.710000px;}
.y99{bottom:411.870000px;}
.y77{bottom:412.590000px;}
.ye0{bottom:414.300000px;}
.y123{bottom:414.930000px;}
.ybf{bottom:416.370000px;}
.y148{bottom:421.320000px;}
.y197{bottom:423.300000px;}
.ydf{bottom:426.450000px;}
.y4c{bottom:429.330000px;}
.y1a{bottom:429.600000px;}
.y76{bottom:430.140000px;}
.y178{bottom:430.230000px;}
.y105{bottom:432.120000px;}
.y122{bottom:432.570000px;}
.y1c3{bottom:436.350000px;}
.ybe{bottom:443.730000px;}
.y4b{bottom:446.970000px;}
.y19{bottom:447.150000px;}
.y98{bottom:447.510000px;}
.y177{bottom:447.780000px;}
.y75{bottom:448.590000px;}
.y14e{bottom:448.680000px;}
.y196{bottom:450.210000px;}
.yde{bottom:453.810000px;}
.y1c2{bottom:453.900000px;}
.y104{bottom:459.480000px;}
.y18{bottom:464.790000px;}
.y176{bottom:465.330000px;}
.y74{bottom:466.140000px;}
.y121{bottom:468.120000px;}
.ybd{bottom:471.120000px;}
.y14d{bottom:475.980000px;}
.y1c1{bottom:480.480000px;}
.ydd{bottom:481.200000px;}
.y17{bottom:482.370000px;}
.y4a{bottom:482.550000px;}
.y97{bottom:483.090000px;}
.y120{bottom:485.700000px;}
.y103{bottom:486.870000px;}
.y195{bottom:487.590000px;}
.ybc{bottom:498.480000px;}
.y16{bottom:499.920000px;}
.y49{bottom:500.190000px;}
.y96{bottom:500.730000px;}
.y175{bottom:501.810000px;}
.y73{bottom:502.620000px;}
.y11f{bottom:503.340000px;}
.y1c0{bottom:507.120000px;}
.ydc{bottom:508.560000px;}
.y102{bottom:514.230000px;}
.y15{bottom:517.560000px;}
.y48{bottom:517.740000px;}
.y95{bottom:518.280000px;}
.y72{bottom:520.260000px;}
.y1bf{bottom:524.670000px;}
.ybb{bottom:525.750000px;}
.y14c{bottom:530.700000px;}
.y47{bottom:535.290000px;}
.y11e{bottom:535.560000px;}
.y94{bottom:535.830000px;}
.y174{bottom:537.360000px;}
.y100{bottom:541.500000px;}
.y1be{bottom:542.310000px;}
.y46{bottom:552.840000px;}
.y14{bottom:553.110000px;}
.y93{bottom:553.470000px;}
.y173{bottom:555.000000px;}
.y71{bottom:555.810000px;}
.y142{bottom:558.060000px;}
.ydb{bottom:563.190000px;}
.y1bd{bottom:568.860000px;}
.y13{bottom:570.750000px;}
.y92{bottom:571.020000px;}
.y45{bottom:571.290000px;}
.y172{bottom:572.550000px;}
.y70{bottom:573.360000px;}
.yba{bottom:580.470000px;}
.y147{bottom:585.330000px;}
.y12{bottom:588.300000px;}
.y91{bottom:588.660000px;}
.y44{bottom:588.930000px;}
.yff{bottom:589.830000px;}
.y171{bottom:590.190000px;}
.yda{bottom:590.550000px;}
.y6f{bottom:591.810000px;}
.y1bc{bottom:595.410000px;}
.y90{bottom:606.210000px;}
.y43{bottom:606.480000px;}
.yb9{bottom:607.740000px;}
.y146{bottom:612.690000px;}
.y1bb{bottom:613.050000px;}
.yfe{bottom:616.380000px;}
.yd9{bottom:617.910000px;}
.y8f{bottom:623.760000px;}
.y11{bottom:623.850000px;}
.y42{bottom:624.030000px;}
.y170{bottom:625.290000px;}
.y6e{bottom:628.260000px;}
.y1ba{bottom:630.600000px;}
.yfd{bottom:634.020000px;}
.yb8{bottom:635.100000px;}
.y139{bottom:640.050000px;}
.y8e{bottom:641.400000px;}
.y10{bottom:641.490000px;}
.y194{bottom:641.760000px;}
.y41{bottom:642.480000px;}
.y16f{bottom:642.930000px;}
.yd8{bottom:645.180000px;}
.y1b9{bottom:657.240000px;}
.yfc{bottom:657.960000px;}
.yf{bottom:659.040000px;}
.y193{bottom:659.400000px;}
.y40{bottom:660.030000px;}
.yb7{bottom:662.460000px;}
.y6d{bottom:663.810000px;}
.y141{bottom:667.410000px;}
.yd7{bottom:672.540000px;}
.y1b8{bottom:674.790000px;}
.ye{bottom:676.680000px;}
.y8d{bottom:676.950000px;}
.y3f{bottom:678.480000px;}
.y6c{bottom:681.360000px;}
.yfb{bottom:685.320000px;}
.yb6{bottom:689.820000px;}
.yd{bottom:694.230000px;}
.y192{bottom:694.590000px;}
.y140{bottom:694.680000px;}
.y3e{bottom:696.030000px;}
.y16e{bottom:696.120000px;}
.y6b{bottom:699.000000px;}
.yd6{bottom:699.900000px;}
.y1b7{bottom:701.340000px;}
.y191{bottom:712.140000px;}
.y8c{bottom:712.590000px;}
.y16d{bottom:713.670000px;}
.y3d{bottom:714.480000px;}
.y6a{bottom:716.550000px;}
.yb5{bottom:717.090000px;}
.y1b6{bottom:718.980000px;}
.yc{bottom:721.140000px;}
.y13f{bottom:722.040000px;}
.yd5{bottom:727.170000px;}
.y190{bottom:729.690000px;}
.y8b{bottom:730.140000px;}
.y3c{bottom:732.120000px;}
.y69{bottom:734.190000px;}
.yb4{bottom:744.450000px;}
.y1b5{bottom:745.530000px;}
.y8a{bottom:747.690000px;}
.y16c{bottom:749.220000px;}
.y13e{bottom:749.400000px;}
.y3b{bottom:749.670000px;}
.y68{bottom:751.740000px;}
.yd4{bottom:754.530000px;}
.yfa{bottom:761.280000px;}
.y1b4{bottom:763.170000px;}
.y18f{bottom:765.330000px;}
.y16b{bottom:766.860000px;}
.y3a{bottom:767.220000px;}
.y67{bottom:769.290000px;}
.yb{bottom:769.380000px;}
.yb3{bottom:771.810000px;}
.y89{bottom:774.600000px;}
.y12f{bottom:776.670000px;}
.yf9{bottom:778.920000px;}
.yd3{bottom:781.890000px;}
.y18e{bottom:782.880000px;}
.y16a{bottom:784.410000px;}
.y39{bottom:784.860000px;}
.y1b3{bottom:789.720000px;}
.yb2{bottom:799.170000px;}
.y18d{bottom:800.520000px;}
.y38{bottom:802.410000px;}
.y138{bottom:804.030000px;}
.y66{bottom:804.930000px;}
.ya{bottom:805.200000px;}
.y1b2{bottom:807.270000px;}
.yd2{bottom:809.250000px;}
.yf8{bottom:814.470000px;}
.y18c{bottom:818.070000px;}
.y169{bottom:819.960000px;}
.y37{bottom:820.770000px;}
.y65{bottom:822.480000px;}
.y88{bottom:822.930000px;}
.y1b1{bottom:824.910000px;}
.yb1{bottom:826.440000px;}
.y137{bottom:831.390000px;}
.yf7{bottom:832.110000px;}
.y18b{bottom:835.620000px;}
.yd1{bottom:836.520000px;}
.y168{bottom:837.600000px;}
.y36{bottom:839.220000px;}
.y64{bottom:840.030000px;}
.y87{bottom:840.480000px;}
.y9{bottom:841.200000px;}
.yf6{bottom:849.660000px;}
.y1b0{bottom:851.460000px;}
.y18a{bottom:853.260000px;}
.yb0{bottom:853.800000px;}
.y167{bottom:855.150000px;}
.y35{bottom:856.770000px;}
.y63{bottom:857.670000px;}
.y86{bottom:858.030000px;}
.y136{bottom:858.750000px;}
.yd0{bottom:863.880000px;}
.y1af{bottom:869.100000px;}
.y62{bottom:875.220000px;}
.y85{bottom:875.670000px;}
.y8{bottom:880.980000px;}
.yaf{bottom:881.160000px;}
.yf5{bottom:882.600000px;}
.y11d{bottom:883.140000px;}
.y135{bottom:886.020000px;}
.y1ae{bottom:886.650000px;}
.y189{bottom:888.810000px;}
.y166{bottom:890.790000px;}
.ycf{bottom:891.240000px;}
.y34{bottom:893.220000px;}
.y7{bottom:895.200000px;}
.y11c{bottom:900.780000px;}
.y188{bottom:906.450000px;}
.y165{bottom:908.340000px;}
.yae{bottom:908.430000px;}
.yf4{bottom:909.960000px;}
.y61{bottom:910.860000px;}
.y84{bottom:911.220000px;}
.y1ad{bottom:913.200000px;}
.y134{bottom:913.380000px;}
.y6{bottom:916.980000px;}
.y11b{bottom:918.330000px;}
.yce{bottom:918.600000px;}
.y187{bottom:924.000000px;}
.y60{bottom:928.410000px;}
.y33{bottom:928.860000px;}
.y1ac{bottom:930.840000px;}
.yad{bottom:935.790000px;}
.y11a{bottom:935.880000px;}
.yf3{bottom:937.320000px;}
.y133{bottom:940.740000px;}
.y164{bottom:943.890000px;}
.ycd{bottom:945.870000px;}
.y5f{bottom:945.960000px;}
.y32{bottom:946.410000px;}
.y5{bottom:949.290000px;}
.y186{bottom:950.910000px;}
.y119{bottom:953.520000px;}
.y1ab{bottom:957.390000px;}
.y163{bottom:961.440000px;}
.yac{bottom:963.150000px;}
.y5e{bottom:963.600000px;}
.y31{bottom:963.960000px;}
.yf2{bottom:964.680000px;}
.y12e{bottom:968.100000px;}
.y118{bottom:971.070000px;}
.y1aa{bottom:975.030000px;}
.y162{bottom:979.890000px;}
.y5d{bottom:981.150000px;}
.y30{bottom:981.600000px;}
.y4{bottom:987.630000px;}
.y117{bottom:988.710000px;}
.yab{bottom:990.510000px;}
.yf1{bottom:991.950000px;}
.ycc{bottom:994.560000px;}
.y161{bottom:997.440000px;}
.y2f{bottom:999.150000px;}
.y1a9{bottom:1001.580000px;}
.y116{bottom:1006.260000px;}
.y3{bottom:1012.320000px;}
.y5c{bottom:1016.820000px;}
.yaa{bottom:1017.810000px;}
.y1a8{bottom:1019.160000px;}
.yf0{bottom:1019.340000px;}
.y115{bottom:1023.840000px;}
.ycb{bottom:1030.230000px;}
.y160{bottom:1033.920000px;}
.y5b{bottom:1034.370000px;}
.y2e{bottom:1034.820000px;}
.y114{bottom:1041.480000px;}
.ya9{bottom:1045.170000px;}
.y1a7{bottom:1046.070000px;}
.yed{bottom:1046.700000px;}
.y5a{bottom:1051.920000px;}
.y2d{bottom:1052.370000px;}
.y113{bottom:1059.030000px;}
.y15f{bottom:1069.560000px;}
.y2c{bottom:1069.920000px;}
.ya8{bottom:1072.530000px;}
.yef{bottom:1073.970000px;}
.y112{bottom:1076.670000px;}
.y15e{bottom:1087.110000px;}
.y2b{bottom:1087.560000px;}
.y111{bottom:1094.220000px;}
.y1a6{bottom:1094.400000px;}
.y1d2{bottom:1096.110000px;}
.ya7{bottom:1099.890000px;}
.y2a{bottom:1105.110000px;}
.y1a5{bottom:1111.950000px;}
.y29{bottom:1122.750000px;}
.ya6{bottom:1127.160000px;}
.y1a4{bottom:1138.860000px;}
.y28{bottom:1140.300000px;}
.y26{bottom:1194.300000px;}
.hf{height:26.550000px;}
.h10{height:26.580000px;}
.he{height:26.640000px;}
.h12{height:26.670000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.h13{height:41.661211px;}
.h15{height:44.190000px;}
.hd{height:48.690000px;}
.h11{height:50.667539px;}
.h7{height:50.902383px;}
.h8{height:52.311445px;}
.h14{height:53.910000px;}
.h9{height:55.779258px;}
.h5{height:57.323320px;}
.ha{height:60.960938px;}
.hb{height:61.793886px;}
.hc{height:68.582109px;}
.h4{height:72.985430px;}
.h18{height:81.180000px;}
.h17{height:135.900000px;}
.h19{height:135.930000px;}
.h16{height:190.620000px;}
.h1a{height:217.980000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w11{width:25.290000px;}
.w17{width:36.270000px;}
.wa{width:37.080000px;}
.w1e{width:42.750000px;}
.w2f{width:43.470000px;}
.wd{width:43.560000px;}
.we{width:43.590000px;}
.w16{width:44.820000px;}
.w7{width:48.420000px;}
.wb{width:48.510000px;}
.w6{width:51.750000px;}
.w4{width:53.910000px;}
.w2e{width:56.430000px;}
.wf{width:58.680000px;}
.w23{width:60.030000px;}
.w20{width:60.120000px;}
.w25{width:62.370000px;}
.w1c{width:63.270000px;}
.w1f{width:63.300000px;}
.w10{width:63.630000px;}
.w28{width:65.790000px;}
.w13{width:66.990000px;}
.w24{width:68.400000px;}
.w27{width:69.120000px;}
.w8{width:73.110000px;}
.w5{width:82.350000px;}
.w3{width:88.320000px;}
.w2d{width:94.590000px;}
.w19{width:97.140000px;}
.w2b{width:100.260000px;}
.w30{width:100.620000px;}
.w32{width:101.790000px;}
.w21{width:105.390000px;}
.w15{width:120.150000px;}
.w26{width:123.510000px;}
.w9{width:124.920000px;}
.w18{width:131.760000px;}
.w22{width:134.760000px;}
.w1d{width:141.570000px;}
.w29{width:146.550000px;}
.wc{width:159.600000px;}
.w12{width:165.690000px;}
.w14{width:168.750000px;}
.w2a{width:183.690000px;}
.w1a{width:249.120000px;}
.w1b{width:266.520000px;}
.w33{width:291.360000px;}
.w34{width:294.060000px;}
.w2c{width:322.950000px;}
.w31{width:586.140000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:7.650000px;}
.x1{left:68.040000px;}
.x33{left:71.909987px;}
.x39{left:74.970000px;}
.x32{left:88.919987px;}
.x4{left:95.039987px;}
.x3c{left:111.239987px;}
.x5{left:122.039987px;}
.x2b{left:131.850000px;}
.x6{left:139.500000px;}
.x10{left:145.170000px;}
.x1b{left:170.220000px;}
.x34{left:174.359987px;}
.x2{left:202.799987px;}
.x8{left:228.630000px;}
.x22{left:237.360000px;}
.x35{left:254.640000px;}
.x2c{left:256.080000px;}
.x9{left:283.260000px;}
.x1c{left:294.060000px;}
.x23{left:301.440000px;}
.x11{left:305.580000px;}
.x1d{left:320.070000px;}
.x2d{left:325.920000px;}
.x1a{left:329.699987px;}
.x27{left:335.280000px;}
.x12{left:349.860000px;}
.xa{left:366.330000px;}
.x2e{left:392.430000px;}
.x13{left:394.230000px;}
.x28{left:399.360000px;}
.x36{left:407.100000px;}
.xb{left:418.890000px;}
.x14{left:438.510000px;}
.x20{left:440.940000px;}
.x24{left:443.730000px;}
.x37{left:451.380000px;}
.xc{left:468.030000px;}
.x15{left:482.880000px;}
.x1e{left:486.570000px;}
.x16{left:527.190000px;}
.x29{left:534.930000px;}
.x2f{left:539.790000px;}
.xd{left:541.860000px;}
.x25{left:551.310000px;}
.x1f{left:554.280000px;}
.x17{left:571.560000px;}
.x38{left:586.860000px;}
.x21{left:591.270000px;}
.x2a{left:595.680000px;}
.x18{left:615.840000px;}
.x19{left:660.210000px;}
.x3a{left:661.830000px;}
.xe{left:667.500000px;}
.x26{left:693.600000px;}
.xf{left:705.300000px;}
.x30{left:724.200000px;}
.x31{left:735.809987px;}
.x3b{left:764.340000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls22{letter-spacing:-0.395200pt;}
.ls21{letter-spacing:-0.217067pt;}
.ls10{letter-spacing:-0.165867pt;}
.ls8{letter-spacing:-0.120000pt;}
.lsb{letter-spacing:-0.107733pt;}
.ls15{letter-spacing:-0.090133pt;}
.ls7{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls1c{letter-spacing:-0.009920pt;}
.ls9{letter-spacing:-0.007467pt;}
.ls18{letter-spacing:-0.006720pt;}
.ls5{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.037120pt;}
.ls11{letter-spacing:0.040320pt;}
.ls16{letter-spacing:0.043520pt;}
.ls12{letter-spacing:0.053867pt;}
.lsd{letter-spacing:0.057600pt;}
.ls3{letter-spacing:0.058240pt;}
.lsc{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls17{letter-spacing:0.093867pt;}
.ls19{letter-spacing:0.098667pt;}
.ls1e{letter-spacing:0.127467pt;}
.ls6{letter-spacing:0.128000pt;}
.ls1a{letter-spacing:0.142933pt;}
.ls14{letter-spacing:0.151467pt;}
.lsf{letter-spacing:0.154133pt;}
.ls1d{letter-spacing:0.161067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4{letter-spacing:1.683200pt;}
.ls1b{letter-spacing:7.123200pt;}
.ls20{letter-spacing:42.423680pt;}
.lse{letter-spacing:56.503680pt;}
.ls1f{letter-spacing:71.863680pt;}
.ws5{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.ws16{word-spacing:-11.917867pt;}
.ws7{word-spacing:-11.910933pt;}
.wsb{word-spacing:-11.908267pt;}
.ws12{word-spacing:-11.899733pt;}
.ws14{word-spacing:-11.884267pt;}
.ws11{word-spacing:-11.855467pt;}
.wsf{word-spacing:-11.850667pt;}
.wsa{word-spacing:-11.810667pt;}
.wse{word-spacing:-11.800320pt;}
.wsc{word-spacing:-11.793920pt;}
.ws3{word-spacing:-11.756800pt;}
.ws10{word-spacing:-11.750080pt;}
.ws13{word-spacing:-11.746880pt;}
.wsd{word-spacing:-11.666667pt;}
.ws8{word-spacing:-11.590933pt;}
.ws15{word-spacing:-11.539733pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-7.603200pt;}
.ws6{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._a{margin-left:-3.232748pt;}
._2{margin-left:-2.339946pt;}
._0{margin-left:-0.981333pt;}
._1{width:1.087467pt;}
._4{width:2.287573pt;}
._3{width:3.348267pt;}
._b{width:4.270716pt;}
._6{width:5.344000pt;}
._7{width:6.359467pt;}
._9{width:7.632000pt;}
._8{width:8.550400pt;}
._d{width:9.458880pt;}
._c{width:10.688000pt;}
._e{width:12.772160pt;}
._f{width:13.734080pt;}
._5{width:15.203840pt;}
._10{width:16.278400pt;}
._15{width:18.116160pt;}
._14{width:19.505600pt;}
._13{width:20.627840pt;}
._11{width:22.231040pt;}
._12{width:34.682560pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs8{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y9c{bottom:6.960000pt;}
.y9e{bottom:7.040000pt;}
.yee{bottom:11.600000pt;}
.ye9{bottom:11.680000pt;}
.y145{bottom:16.320000pt;}
.y101{bottom:22.640000pt;}
.y9b{bottom:26.640000pt;}
.ye8{bottom:31.280000pt;}
.y144{bottom:35.920000pt;}
.y13d{bottom:45.280000pt;}
.y143{bottom:55.520000pt;}
.y13c{bottom:64.880000pt;}
.y14b{bottom:64.906667pt;}
.y2{bottom:65.226667pt;}
.y27{bottom:65.946667pt;}
.y13b{bottom:84.560000pt;}
.y14a{bottom:84.586667pt;}
.y1{bottom:90.346667pt;}
.y15d{bottom:99.946667pt;}
.yca{bottom:102.826667pt;}
.y13a{bottom:104.160000pt;}
.y149{bottom:104.186667pt;}
.y12d{bottom:106.266667pt;}
.ya5{bottom:108.826667pt;}
.y1a3{bottom:112.026667pt;}
.y1d1{bottom:112.986667pt;}
.y132{bottom:113.520000pt;}
.y15c{bottom:115.626667pt;}
.y110{bottom:116.826667pt;}
.y153{bottom:118.160000pt;}
.y12c{bottom:121.866667pt;}
.yec{bottom:121.946667pt;}
.y83{bottom:126.186667pt;}
.y59{bottom:126.746667pt;}
.yc9{bottom:127.146667pt;}
.y1a2{bottom:127.626667pt;}
.y1d0{bottom:128.666667pt;}
.y185{bottom:129.706667pt;}
.ya4{bottom:133.146667pt;}
.y131{bottom:133.200000pt;}
.yeb{bottom:135.226667pt;}
.y12b{bottom:137.466667pt;}
.y152{bottom:137.840000pt;}
.y15b{bottom:139.546667pt;}
.y25{bottom:140.746667pt;}
.y10f{bottom:141.146667pt;}
.y82{bottom:141.786667pt;}
.y58{bottom:142.426667pt;}
.y184{bottom:145.306667pt;}
.yc8{bottom:151.466667pt;}
.y1a1{bottom:151.546667pt;}
.y1cf{bottom:152.266667pt;}
.y130{bottom:152.800000pt;}
.y24{bottom:156.426667pt;}
.y81{bottom:157.386667pt;}
.y151{bottom:157.440000pt;}
.ya3{bottom:157.466667pt;}
.y57{bottom:158.026667pt;}
.ye7{bottom:159.546667pt;}
.y183{bottom:160.986667pt;}
.y10e{bottom:165.466667pt;}
.y1ce{bottom:167.866667pt;}
.y12a{bottom:169.146667pt;}
.y23{bottom:172.026667pt;}
.y56{bottom:173.706667pt;}
.yc7{bottom:175.786667pt;}
.y182{bottom:176.586667pt;}
.y150{bottom:177.120000pt;}
.y14f{bottom:180.106667pt;}
.ya2{bottom:181.706667pt;}
.yea{bottom:183.866667pt;}
.y1a0{bottom:184.506667pt;}
.y129{bottom:184.746667pt;}
.y22{bottom:187.706667pt;}
.y80{bottom:189.066667pt;}
.y55{bottom:189.306667pt;}
.y10d{bottom:189.786667pt;}
.y1cd{bottom:191.546667pt;}
.y181{bottom:192.266667pt;}
.yc6{bottom:200.026667pt;}
.y19f{bottom:200.106667pt;}
.y128{bottom:200.426667pt;}
.y21{bottom:203.306667pt;}
.y15a{bottom:204.426667pt;}
.y7f{bottom:204.666667pt;}
.y54{bottom:204.906667pt;}
.ya1{bottom:206.026667pt;}
.y1cc{bottom:207.146667pt;}
.y180{bottom:207.866667pt;}
.y10c{bottom:214.026667pt;}
.y19e{bottom:215.706667pt;}
.y20{bottom:218.906667pt;}
.y7e{bottom:220.346667pt;}
.y1cb{bottom:222.826667pt;}
.y17f{bottom:223.466667pt;}
.yc5{bottom:224.346667pt;}
.ye6{bottom:227.146667pt;}
.y159{bottom:228.746667pt;}
.y127{bottom:229.706667pt;}
.ya0{bottom:230.346667pt;}
.y19d{bottom:231.386667pt;}
.y1f{bottom:234.586667pt;}
.y7d{bottom:235.946667pt;}
.y53{bottom:236.506667pt;}
.y10b{bottom:238.346667pt;}
.ye5{bottom:242.746667pt;}
.y1ca{bottom:246.426667pt;}
.yc4{bottom:248.666667pt;}
.y7c{bottom:251.546667pt;}
.y52{bottom:252.906667pt;}
.y158{bottom:252.986667pt;}
.y126{bottom:254.026667pt;}
.y9f{bottom:254.586667pt;}
.y17e{bottom:255.066667pt;}
.y19c{bottom:255.306667pt;}
.y1e{bottom:258.506667pt;}
.y1c9{bottom:262.026667pt;}
.y10a{bottom:262.666667pt;}
.y51{bottom:269.226667pt;}
.y17d{bottom:271.466667pt;}
.yc3{bottom:272.906667pt;}
.ye4{bottom:274.426667pt;}
.y7b{bottom:275.466667pt;}
.y157{bottom:277.306667pt;}
.y125{bottom:278.266667pt;}
.y9d{bottom:278.906667pt;}
.y50{bottom:285.626667pt;}
.y1c8{bottom:285.706667pt;}
.y109{bottom:286.906667pt;}
.y17c{bottom:287.066667pt;}
.y19b{bottom:288.186667pt;}
.yc2{bottom:297.226667pt;}
.y1c7{bottom:301.306667pt;}
.y156{bottom:301.626667pt;}
.y1d{bottom:301.706667pt;}
.y4f{bottom:302.026667pt;}
.y9a{bottom:303.226667pt;}
.y17b{bottom:303.466667pt;}
.ye3{bottom:306.026667pt;}
.y108{bottom:311.226667pt;}
.y19a{bottom:312.106667pt;}
.y7a{bottom:318.426667pt;}
.y17a{bottom:319.146667pt;}
.yc1{bottom:321.546667pt;}
.ye2{bottom:321.626667pt;}
.y1c6{bottom:324.986667pt;}
.y155{bottom:325.946667pt;}
.y79{bottom:334.026667pt;}
.y4e{bottom:334.426667pt;}
.y1c{bottom:334.586667pt;}
.y179{bottom:334.746667pt;}
.y107{bottom:335.546667pt;}
.y124{bottom:337.226667pt;}
.ye1{bottom:337.306667pt;}
.y199{bottom:344.986667pt;}
.yc0{bottom:345.866667pt;}
.y1c5{bottom:348.586667pt;}
.y4d{bottom:350.026667pt;}
.y154{bottom:350.186667pt;}
.y1b{bottom:350.266667pt;}
.y78{bottom:350.346667pt;}
.y106{bottom:359.866667pt;}
.y198{bottom:360.666667pt;}
.y1c4{bottom:364.186667pt;}
.y99{bottom:366.106667pt;}
.y77{bottom:366.746667pt;}
.ye0{bottom:368.266667pt;}
.y123{bottom:368.826667pt;}
.ybf{bottom:370.106667pt;}
.y148{bottom:374.506667pt;}
.y197{bottom:376.266667pt;}
.ydf{bottom:379.066667pt;}
.y4c{bottom:381.626667pt;}
.y1a{bottom:381.866667pt;}
.y76{bottom:382.346667pt;}
.y178{bottom:382.426667pt;}
.y105{bottom:384.106667pt;}
.y122{bottom:384.506667pt;}
.y1c3{bottom:387.866667pt;}
.ybe{bottom:394.426667pt;}
.y4b{bottom:397.306667pt;}
.y19{bottom:397.466667pt;}
.y98{bottom:397.786667pt;}
.y177{bottom:398.026667pt;}
.y75{bottom:398.746667pt;}
.y14e{bottom:398.826667pt;}
.y196{bottom:400.186667pt;}
.yde{bottom:403.386667pt;}
.y1c2{bottom:403.466667pt;}
.y104{bottom:408.426667pt;}
.y18{bottom:413.146667pt;}
.y176{bottom:413.626667pt;}
.y74{bottom:414.346667pt;}
.y121{bottom:416.106667pt;}
.ybd{bottom:418.773333pt;}
.y14d{bottom:423.093333pt;}
.y1c1{bottom:427.093333pt;}
.ydd{bottom:427.733333pt;}
.y17{bottom:428.773333pt;}
.y4a{bottom:428.933333pt;}
.y97{bottom:429.413333pt;}
.y120{bottom:431.733333pt;}
.y103{bottom:432.773333pt;}
.y195{bottom:433.413333pt;}
.ybc{bottom:443.093333pt;}
.y16{bottom:444.373333pt;}
.y49{bottom:444.613333pt;}
.y96{bottom:445.093333pt;}
.y175{bottom:446.053333pt;}
.y73{bottom:446.773333pt;}
.y11f{bottom:447.413333pt;}
.y1c0{bottom:450.773333pt;}
.ydc{bottom:452.053333pt;}
.y102{bottom:457.093333pt;}
.y15{bottom:460.053333pt;}
.y48{bottom:460.213333pt;}
.y95{bottom:460.693333pt;}
.y72{bottom:462.453333pt;}
.y1bf{bottom:466.373333pt;}
.ybb{bottom:467.333333pt;}
.y14c{bottom:471.733333pt;}
.y47{bottom:475.813333pt;}
.y11e{bottom:476.053333pt;}
.y94{bottom:476.293333pt;}
.y174{bottom:477.653333pt;}
.y100{bottom:481.333333pt;}
.y1be{bottom:482.053333pt;}
.y46{bottom:491.413333pt;}
.y14{bottom:491.653333pt;}
.y93{bottom:491.973333pt;}
.y173{bottom:493.333333pt;}
.y71{bottom:494.053333pt;}
.y142{bottom:496.053333pt;}
.ydb{bottom:500.613333pt;}
.y1bd{bottom:505.653333pt;}
.y13{bottom:507.333333pt;}
.y92{bottom:507.573333pt;}
.y45{bottom:507.813333pt;}
.y172{bottom:508.933333pt;}
.y70{bottom:509.653333pt;}
.yba{bottom:515.973333pt;}
.y147{bottom:520.293333pt;}
.y12{bottom:522.933333pt;}
.y91{bottom:523.253333pt;}
.y44{bottom:523.493333pt;}
.yff{bottom:524.293333pt;}
.y171{bottom:524.613333pt;}
.yda{bottom:524.933333pt;}
.y6f{bottom:526.053333pt;}
.y1bc{bottom:529.253333pt;}
.y90{bottom:538.853333pt;}
.y43{bottom:539.093333pt;}
.yb9{bottom:540.213333pt;}
.y146{bottom:544.613333pt;}
.y1bb{bottom:544.933333pt;}
.yfe{bottom:547.893333pt;}
.yd9{bottom:549.253333pt;}
.y8f{bottom:554.453333pt;}
.y11{bottom:554.533333pt;}
.y42{bottom:554.693333pt;}
.y170{bottom:555.813333pt;}
.y6e{bottom:558.453333pt;}
.y1ba{bottom:560.533333pt;}
.yfd{bottom:563.573333pt;}
.yb8{bottom:564.533333pt;}
.y139{bottom:568.933333pt;}
.y8e{bottom:570.133333pt;}
.y10{bottom:570.213333pt;}
.y194{bottom:570.453333pt;}
.y41{bottom:571.093333pt;}
.y16f{bottom:571.493333pt;}
.yd8{bottom:573.493333pt;}
.y1b9{bottom:584.213333pt;}
.yfc{bottom:584.853333pt;}
.yf{bottom:585.813333pt;}
.y193{bottom:586.133333pt;}
.y40{bottom:586.693333pt;}
.yb7{bottom:588.853333pt;}
.y6d{bottom:590.053333pt;}
.y141{bottom:593.253333pt;}
.yd7{bottom:597.813333pt;}
.y1b8{bottom:599.813333pt;}
.ye{bottom:601.493333pt;}
.y8d{bottom:601.733333pt;}
.y3f{bottom:603.093333pt;}
.y6c{bottom:605.653333pt;}
.yfb{bottom:609.173333pt;}
.yb6{bottom:613.173333pt;}
.yd{bottom:617.093333pt;}
.y192{bottom:617.413333pt;}
.y140{bottom:617.493333pt;}
.y3e{bottom:618.693333pt;}
.y16e{bottom:618.773333pt;}
.y6b{bottom:621.333333pt;}
.yd6{bottom:622.133333pt;}
.y1b7{bottom:623.413333pt;}
.y191{bottom:633.013333pt;}
.y8c{bottom:633.413333pt;}
.y16d{bottom:634.373333pt;}
.y3d{bottom:635.093333pt;}
.y6a{bottom:636.933333pt;}
.yb5{bottom:637.413333pt;}
.y1b6{bottom:639.093333pt;}
.yc{bottom:641.013333pt;}
.y13f{bottom:641.813333pt;}
.yd5{bottom:646.373333pt;}
.y190{bottom:648.613333pt;}
.y8b{bottom:649.013333pt;}
.y3c{bottom:650.773333pt;}
.y69{bottom:652.613333pt;}
.yb4{bottom:661.733333pt;}
.y1b5{bottom:662.693333pt;}
.y8a{bottom:664.613333pt;}
.y16c{bottom:665.973333pt;}
.y13e{bottom:666.133333pt;}
.y3b{bottom:666.373333pt;}
.y68{bottom:668.213333pt;}
.yd4{bottom:670.693333pt;}
.yfa{bottom:676.693333pt;}
.y1b4{bottom:678.373333pt;}
.y18f{bottom:680.293333pt;}
.y16b{bottom:681.653333pt;}
.y3a{bottom:681.973333pt;}
.y67{bottom:683.813333pt;}
.yb{bottom:683.893333pt;}
.yb3{bottom:686.053333pt;}
.y89{bottom:688.533333pt;}
.y12f{bottom:690.373333pt;}
.yf9{bottom:692.373333pt;}
.yd3{bottom:695.013333pt;}
.y18e{bottom:695.893333pt;}
.y16a{bottom:697.253333pt;}
.y39{bottom:697.653333pt;}
.y1b3{bottom:701.973333pt;}
.yb2{bottom:710.373333pt;}
.y18d{bottom:711.573333pt;}
.y38{bottom:713.253333pt;}
.y138{bottom:714.693333pt;}
.y66{bottom:715.493333pt;}
.ya{bottom:715.733333pt;}
.y1b2{bottom:717.573333pt;}
.yd2{bottom:719.333333pt;}
.yf8{bottom:723.973333pt;}
.y18c{bottom:727.173333pt;}
.y169{bottom:728.853333pt;}
.y37{bottom:729.573333pt;}
.y65{bottom:731.093333pt;}
.y88{bottom:731.493333pt;}
.y1b1{bottom:733.253333pt;}
.yb1{bottom:734.613333pt;}
.y137{bottom:739.013333pt;}
.yf7{bottom:739.653333pt;}
.y18b{bottom:742.773333pt;}
.yd1{bottom:743.573333pt;}
.y168{bottom:744.533333pt;}
.y36{bottom:745.973333pt;}
.y64{bottom:746.693333pt;}
.y87{bottom:747.093333pt;}
.y9{bottom:747.733333pt;}
.yf6{bottom:755.253333pt;}
.y1b0{bottom:756.853333pt;}
.y18a{bottom:758.453333pt;}
.yb0{bottom:758.933333pt;}
.y167{bottom:760.133333pt;}
.y35{bottom:761.573333pt;}
.y63{bottom:762.373333pt;}
.y86{bottom:762.693333pt;}
.y136{bottom:763.333333pt;}
.yd0{bottom:767.893333pt;}
.y1af{bottom:772.533333pt;}
.y62{bottom:777.973333pt;}
.y85{bottom:778.373333pt;}
.y8{bottom:783.093333pt;}
.yaf{bottom:783.253333pt;}
.yf5{bottom:784.533333pt;}
.y11d{bottom:785.013333pt;}
.y135{bottom:787.573333pt;}
.y1ae{bottom:788.133333pt;}
.y189{bottom:790.053333pt;}
.y166{bottom:791.813333pt;}
.ycf{bottom:792.213333pt;}
.y34{bottom:793.973333pt;}
.y7{bottom:795.733333pt;}
.y11c{bottom:800.693333pt;}
.y188{bottom:805.733333pt;}
.y165{bottom:807.413333pt;}
.yae{bottom:807.493333pt;}
.yf4{bottom:808.853333pt;}
.y61{bottom:809.653333pt;}
.y84{bottom:809.973333pt;}
.y1ad{bottom:811.733333pt;}
.y134{bottom:811.893333pt;}
.y6{bottom:815.093333pt;}
.y11b{bottom:816.293333pt;}
.yce{bottom:816.533333pt;}
.y187{bottom:821.333333pt;}
.y60{bottom:825.253333pt;}
.y33{bottom:825.653333pt;}
.y1ac{bottom:827.413333pt;}
.yad{bottom:831.813333pt;}
.y11a{bottom:831.893333pt;}
.yf3{bottom:833.173333pt;}
.y133{bottom:836.213333pt;}
.y164{bottom:839.013333pt;}
.ycd{bottom:840.773333pt;}
.y5f{bottom:840.853333pt;}
.y32{bottom:841.253333pt;}
.y5{bottom:843.813333pt;}
.y186{bottom:845.253333pt;}
.y119{bottom:847.573333pt;}
.y1ab{bottom:851.013333pt;}
.y163{bottom:854.613333pt;}
.yac{bottom:856.133333pt;}
.y5e{bottom:856.533333pt;}
.y31{bottom:856.853333pt;}
.yf2{bottom:857.493333pt;}
.y12e{bottom:860.533333pt;}
.y118{bottom:863.173333pt;}
.y1aa{bottom:866.693333pt;}
.y162{bottom:871.013333pt;}
.y5d{bottom:872.133333pt;}
.y30{bottom:872.533333pt;}
.y4{bottom:877.893333pt;}
.y117{bottom:878.853333pt;}
.yab{bottom:880.453333pt;}
.yf1{bottom:881.733333pt;}
.ycc{bottom:884.053333pt;}
.y161{bottom:886.613333pt;}
.y2f{bottom:888.133333pt;}
.y1a9{bottom:890.293333pt;}
.y116{bottom:894.453333pt;}
.y3{bottom:899.840000pt;}
.y5c{bottom:903.840000pt;}
.yaa{bottom:904.720000pt;}
.y1a8{bottom:905.920000pt;}
.yf0{bottom:906.080000pt;}
.y115{bottom:910.080000pt;}
.ycb{bottom:915.760000pt;}
.y160{bottom:919.040000pt;}
.y5b{bottom:919.440000pt;}
.y2e{bottom:919.840000pt;}
.y114{bottom:925.760000pt;}
.ya9{bottom:929.040000pt;}
.y1a7{bottom:929.840000pt;}
.yed{bottom:930.400000pt;}
.y5a{bottom:935.040000pt;}
.y2d{bottom:935.440000pt;}
.y113{bottom:941.360000pt;}
.y15f{bottom:950.720000pt;}
.y2c{bottom:951.040000pt;}
.ya8{bottom:953.360000pt;}
.yef{bottom:954.640000pt;}
.y112{bottom:957.040000pt;}
.y15e{bottom:966.320000pt;}
.y2b{bottom:966.720000pt;}
.y111{bottom:972.640000pt;}
.y1a6{bottom:972.800000pt;}
.y1d2{bottom:974.320000pt;}
.ya7{bottom:977.680000pt;}
.y2a{bottom:982.320000pt;}
.y1a5{bottom:988.400000pt;}
.y29{bottom:998.000000pt;}
.ya6{bottom:1001.920000pt;}
.y1a4{bottom:1012.320000pt;}
.y28{bottom:1013.600000pt;}
.y26{bottom:1061.600000pt;}
.hf{height:23.600000pt;}
.h10{height:23.626667pt;}
.he{height:23.680000pt;}
.h12{height:23.706667pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.h13{height:37.032187pt;}
.h15{height:39.280000pt;}
.hd{height:43.280000pt;}
.h11{height:45.037812pt;}
.h7{height:45.246562pt;}
.h8{height:46.499062pt;}
.h14{height:47.920000pt;}
.h9{height:49.581562pt;}
.h5{height:50.954062pt;}
.ha{height:54.187500pt;}
.hb{height:54.927899pt;}
.hc{height:60.961875pt;}
.h4{height:64.875937pt;}
.h18{height:72.160000pt;}
.h17{height:120.800000pt;}
.h19{height:120.826667pt;}
.h16{height:169.440000pt;}
.h1a{height:193.760000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w11{width:22.480000pt;}
.w17{width:32.240000pt;}
.wa{width:32.960000pt;}
.w1e{width:38.000000pt;}
.w2f{width:38.640000pt;}
.wd{width:38.720000pt;}
.we{width:38.746667pt;}
.w16{width:39.840000pt;}
.w7{width:43.040000pt;}
.wb{width:43.120000pt;}
.w6{width:46.000000pt;}
.w4{width:47.920000pt;}
.w2e{width:50.160000pt;}
.wf{width:52.160000pt;}
.w23{width:53.360000pt;}
.w20{width:53.440000pt;}
.w25{width:55.440000pt;}
.w1c{width:56.240000pt;}
.w1f{width:56.266667pt;}
.w10{width:56.560000pt;}
.w28{width:58.480000pt;}
.w13{width:59.546667pt;}
.w24{width:60.800000pt;}
.w27{width:61.440000pt;}
.w8{width:64.986667pt;}
.w5{width:73.200000pt;}
.w3{width:78.506667pt;}
.w2d{width:84.080000pt;}
.w19{width:86.346667pt;}
.w2b{width:89.120000pt;}
.w30{width:89.440000pt;}
.w32{width:90.480000pt;}
.w21{width:93.680000pt;}
.w15{width:106.800000pt;}
.w26{width:109.786667pt;}
.w9{width:111.040000pt;}
.w18{width:117.120000pt;}
.w22{width:119.786667pt;}
.w1d{width:125.840000pt;}
.w29{width:130.266667pt;}
.wc{width:141.866667pt;}
.w12{width:147.280000pt;}
.w14{width:150.000000pt;}
.w2a{width:163.280000pt;}
.w1a{width:221.440000pt;}
.w1b{width:236.906667pt;}
.w33{width:258.986667pt;}
.w34{width:261.386667pt;}
.w2c{width:287.066667pt;}
.w31{width:521.013333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:6.800000pt;}
.x1{left:60.480000pt;}
.x33{left:63.919988pt;}
.x39{left:66.640000pt;}
.x32{left:79.039988pt;}
.x4{left:84.479988pt;}
.x3c{left:98.879988pt;}
.x5{left:108.479988pt;}
.x2b{left:117.200000pt;}
.x6{left:124.000000pt;}
.x10{left:129.040000pt;}
.x1b{left:151.306667pt;}
.x34{left:154.986655pt;}
.x2{left:180.266655pt;}
.x8{left:203.226667pt;}
.x22{left:210.986667pt;}
.x35{left:226.346667pt;}
.x2c{left:227.626667pt;}
.x9{left:251.786667pt;}
.x1c{left:261.386667pt;}
.x23{left:267.946667pt;}
.x11{left:271.626667pt;}
.x1d{left:284.506667pt;}
.x2d{left:289.706667pt;}
.x1a{left:293.066655pt;}
.x27{left:298.026667pt;}
.x12{left:310.986667pt;}
.xa{left:325.626667pt;}
.x2e{left:348.826667pt;}
.x13{left:350.426667pt;}
.x28{left:354.986667pt;}
.x36{left:361.866667pt;}
.xb{left:372.346667pt;}
.x14{left:389.786667pt;}
.x20{left:391.946667pt;}
.x24{left:394.426667pt;}
.x37{left:401.226667pt;}
.xc{left:416.026667pt;}
.x15{left:429.226667pt;}
.x1e{left:432.506667pt;}
.x16{left:468.613333pt;}
.x29{left:475.493333pt;}
.x2f{left:479.813333pt;}
.xd{left:481.653333pt;}
.x25{left:490.053333pt;}
.x1f{left:492.693333pt;}
.x17{left:508.053333pt;}
.x38{left:521.653333pt;}
.x21{left:525.573333pt;}
.x2a{left:529.493333pt;}
.x18{left:547.413333pt;}
.x19{left:586.853333pt;}
.x3a{left:588.293333pt;}
.xe{left:593.333333pt;}
.x26{left:616.533333pt;}
.xf{left:626.933333pt;}
.x30{left:643.733333pt;}
.x31{left:654.053322pt;}
.x3b{left:679.413333pt;}
.x3{left:704.053322pt;}
}




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