
    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_453a860ec468e2f19ab3d480.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.100098;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_2f83af2ef2eaae0d30d9498f.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e178cf4efcef16bf9efe3d27.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.102051;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_b01b15179a35b79a22a8693a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.100098;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_b6ac7fd0a58bf8d3d56002a2.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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls13{letter-spacing:-0.288000px;}
.ls17{letter-spacing:-0.206400px;}
.ls11{letter-spacing:-0.168600px;}
.ls19{letter-spacing:-0.161400px;}
.lsf{letter-spacing:-0.157200px;}
.lse{letter-spacing:-0.144000px;}
.ls6{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.026280px;}
.lsb{letter-spacing:0.062280px;}
.ls0{letter-spacing:0.062400px;}
.ls4{letter-spacing:0.072000px;}
.ls9{letter-spacing:0.078600px;}
.ls8{letter-spacing:0.090000px;}
.ls18{letter-spacing:0.130200px;}
.ls5{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.151200px;}
.lsd{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.259560px;}
.ls7{letter-spacing:0.432000px;}
.ls1a{letter-spacing:1.020000px;}
.ls14{letter-spacing:1.080000px;}
.ls2{letter-spacing:1.152000px;}
.ls1b{letter-spacing:1.236000px;}
.ls12{letter-spacing:1.344000px;}
.ls3{letter-spacing:5.760000px;}
.lsc{letter-spacing:65.424000px;}
.lsa{letter-spacing:476.490000px;}
.ls15{letter-spacing:846.000000px;}
.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;}
}
.ws3{word-spacing:-19.152000px;}
.wse{word-spacing:-19.080000px;}
.ws7{word-spacing:-18.144000px;}
.wsc{word-spacing:-18.072000px;}
.ws4{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.856000px;}
.wsd{word-spacing:-17.712000px;}
.wsa{word-spacing:-16.621200px;}
.ws6{word-spacing:-16.548600px;}
.ws1{word-spacing:-16.532400px;}
.ws2{word-spacing:-16.470000px;}
.ws9{word-spacing:-16.312800px;}
.wsb{word-spacing:-16.301400px;}
.ws10{word-spacing:-16.050000px;}
.ws0{word-spacing:-15.030000px;}
.wsf{word-spacing:-14.868600px;}
.ws5{word-spacing:0.000000px;}
._0{margin-left:-1.186800px;}
._3{width:1.018920px;}
._9{width:2.221080px;}
._19{width:3.755160px;}
._b{width:5.664000px;}
._12{width:7.336800px;}
._10{width:9.354960px;}
._1a{width:10.606680px;}
._f{width:11.924280px;}
._11{width:13.134240px;}
._1e{width:14.832000px;}
._1d{width:15.912000px;}
._16{width:17.787600px;}
._15{width:18.841680px;}
._21{width:20.592000px;}
._20{width:21.672000px;}
._13{width:23.255640px;}
._14{width:24.344880px;}
._18{width:30.975720px;}
._17{width:32.239440px;}
._c{width:34.632000px;}
._1{width:35.913240px;}
._d{width:39.360000px;}
._1f{width:43.104000px;}
._4{width:109.319760px;}
._1b{width:167.040000px;}
._22{width:186.828960px;}
._1c{width:198.120000px;}
._a{width:322.206360px;}
._23{width:328.564200px;}
._5{width:662.850000px;}
._2{width:743.490000px;}
._7{width:931.050000px;}
._8{width:1147.620000px;}
._e{width:1279.770000px;}
._6{width:1281.210000px;}
.fc6{color:rgb(0,33,248);}
.fc5{color:transparent;}
.fc4{color:rgb(255,102,0);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:42.120000px;}
.fs4{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:60.120000px;}
.fs1{font-size:65.880000px;}
.fs5{font-size:72.000000px;}
.fs3{font-size:83.880000px;}
.fs7{font-size:96.120000px;}
.fs6{font-size:108.000000px;}
.fs9{font-size:141.120000px;}
.y0{bottom:0.000000px;}
.y5c{bottom:4.320000px;}
.yd5{bottom:4.410000px;}
.y2c{bottom:4.770000px;}
.ydd{bottom:10.080000px;}
.ye3{bottom:10.440000px;}
.ye2{bottom:11.340000px;}
.ydc{bottom:11.880000px;}
.yd6{bottom:13.590000px;}
.ye0{bottom:17.730000px;}
.yda{bottom:18.000000px;}
.yd7{bottom:22.860000px;}
.yd4{bottom:22.950000px;}
.ydf{bottom:36.360000px;}
.yd9{bottom:36.540000px;}
.yd3{bottom:41.490000px;}
.yd1{bottom:42.300000px;}
.y4{bottom:58.230000px;}
.yd0{bottom:60.840000px;}
.y1cb{bottom:76.500000px;}
.y3{bottom:76.770000px;}
.ycf{bottom:79.380000px;}
.y2{bottom:95.400000px;}
.yce{bottom:97.920000px;}
.yac{bottom:112.230000px;}
.y5a{bottom:112.680000px;}
.y1ca{bottom:113.040000px;}
.y1{bottom:113.580000px;}
.y147{bottom:114.930000px;}
.ye9{bottom:116.010000px;}
.y161{bottom:121.680000px;}
.yab{bottom:130.770000px;}
.y1c9{bottom:131.400000px;}
.y16a{bottom:131.760000px;}
.y59{bottom:132.480000px;}
.y70{bottom:132.930000px;}
.y146{bottom:135.210000px;}
.ye8{bottom:136.290000px;}
.y134{bottom:138.540000px;}
.y160{bottom:141.960000px;}
.y28{bottom:142.050000px;}
.yf6{bottom:148.710000px;}
.yaa{bottom:149.430000px;}
.y58{bottom:151.050000px;}
.y169{bottom:152.040000px;}
.y6f{bottom:152.760000px;}
.y171{bottom:153.210000px;}
.y57{bottom:154.830000px;}
.y1c8{bottom:155.100000px;}
.y145{bottom:155.460000px;}
.ye7{bottom:156.540000px;}
.y133{bottom:158.790000px;}
.y15f{bottom:162.210000px;}
.y27{bottom:162.300000px;}
.ya9{bottom:167.970000px;}
.yf5{bottom:168.960000px;}
.y9a{bottom:169.680000px;}
.y56{bottom:170.040000px;}
.y6e{bottom:171.300000px;}
.y168{bottom:172.290000px;}
.y170{bottom:173.460000px;}
.y6d{bottom:175.080000px;}
.y144{bottom:175.710000px;}
.ye6{bottom:176.790000px;}
.y108{bottom:177.960000px;}
.y1c7{bottom:178.680000px;}
.y132{bottom:179.040000px;}
.y15e{bottom:182.460000px;}
.y26{bottom:182.550000px;}
.ya8{bottom:186.510000px;}
.y99{bottom:188.220000px;}
.yf4{bottom:189.210000px;}
.y6c{bottom:189.930000px;}
.yb3{bottom:192.000000px;}
.y167{bottom:192.540000px;}
.y16f{bottom:193.710000px;}
.y143{bottom:195.960000px;}
.ye5{bottom:197.040000px;}
.y107{bottom:198.210000px;}
.y131{bottom:199.290000px;}
.y15d{bottom:202.710000px;}
.y25{bottom:202.800000px;}
.ya7{bottom:205.050000px;}
.y98{bottom:206.760000px;}
.y6b{bottom:208.920000px;}
.yf3{bottom:209.460000px;}
.y97{bottom:210.540000px;}
.y166{bottom:212.790000px;}
.y1c6{bottom:213.150000px;}
.y16e{bottom:213.960000px;}
.y142{bottom:216.210000px;}
.y6a{bottom:216.390000px;}
.y186{bottom:217.290000px;}
.y106{bottom:218.460000px;}
.y130{bottom:219.540000px;}
.y15c{bottom:222.960000px;}
.y24{bottom:223.050000px;}
.ya6{bottom:223.680000px;}
.yb2{bottom:225.300000px;}
.y96{bottom:225.750000px;}
.ye4{bottom:226.290000px;}
.ya5{bottom:227.460000px;}
.yb1{bottom:229.080000px;}
.y69{bottom:229.170000px;}
.yf2{bottom:229.710000px;}
.y1c5{bottom:230.070000px;}
.y11d{bottom:231.780000px;}
.y165{bottom:233.040000px;}
.y16d{bottom:234.210000px;}
.y141{bottom:236.460000px;}
.y185{bottom:237.540000px;}
.y105{bottom:238.710000px;}
.ya4{bottom:242.670000px;}
.y15b{bottom:243.210000px;}
.y23{bottom:243.300000px;}
.y12f{bottom:244.020000px;}
.yb0{bottom:244.290000px;}
.y1c4{bottom:246.900000px;}
.yf1{bottom:249.960000px;}
.y11c{bottom:252.030000px;}
.y164{bottom:253.290000px;}
.y68{bottom:254.460000px;}
.y95{bottom:255.540000px;}
.y184{bottom:257.790000px;}
.y104{bottom:258.960000px;}
.y140{bottom:260.940000px;}
.y15a{bottom:263.460000px;}
.y22{bottom:263.550000px;}
.y1c3{bottom:263.820000px;}
.ya3{bottom:265.710000px;}
.y55{bottom:267.960000px;}
.yde{bottom:271.740000px;}
.y11b{bottom:272.280000px;}
.y163{bottom:273.540000px;}
.y67{bottom:274.710000px;}
.y94{bottom:275.790000px;}
.y183{bottom:278.040000px;}
.yf0{bottom:279.210000px;}
.y1c2{bottom:280.650000px;}
.y159{bottom:283.710000px;}
.y21{bottom:283.800000px;}
.ya1{bottom:285.960000px;}
.y54{bottom:288.210000px;}
.y11a{bottom:292.530000px;}
.ya2{bottom:293.430000px;}
.y66{bottom:294.960000px;}
.y93{bottom:296.040000px;}
.y1c1{bottom:297.570000px;}
.y162{bottom:298.020000px;}
.y182{bottom:298.290000px;}
.yef{bottom:299.460000px;}
.ye1{bottom:303.240000px;}
.y158{bottom:303.960000px;}
.y20{bottom:304.050000px;}
.ya0{bottom:306.210000px;}
.y53{bottom:308.460000px;}
.y119{bottom:312.780000px;}
.y1c0{bottom:314.400000px;}
.y65{bottom:315.210000px;}
.y92{bottom:316.290000px;}
.y181{bottom:318.540000px;}
.yee{bottom:319.710000px;}
.y157{bottom:324.210000px;}
.y1f{bottom:324.300000px;}
.y9f{bottom:326.460000px;}
.y51{bottom:328.710000px;}
.y1bf{bottom:331.320000px;}
.y118{bottom:333.750000px;}
.y64{bottom:335.460000px;}
.y52{bottom:336.180000px;}
.yd8{bottom:336.450000px;}
.y91{bottom:336.540000px;}
.y180{bottom:338.790000px;}
.y103{bottom:339.960000px;}
.yed{bottom:344.190000px;}
.y156{bottom:344.460000px;}
.y1e{bottom:344.550000px;}
.y9e{bottom:346.710000px;}
.y1be{bottom:348.150000px;}
.y50{bottom:348.960000px;}
.y63{bottom:355.710000px;}
.y90{bottom:356.790000px;}
.y117{bottom:357.420000px;}
.y17f{bottom:359.040000px;}
.y102{bottom:360.210000px;}
.y155{bottom:364.710000px;}
.y1d{bottom:364.800000px;}
.y1bd{bottom:365.070000px;}
.y9d{bottom:366.960000px;}
.ydb{bottom:367.140000px;}
.y4f{bottom:369.210000px;}
.y62{bottom:375.960000px;}
.y8f{bottom:377.040000px;}
.y17e{bottom:379.290000px;}
.y101{bottom:380.460000px;}
.y116{bottom:381.000000px;}
.y1bc{bottom:381.900000px;}
.y154{bottom:384.960000px;}
.y1c{bottom:385.050000px;}
.y9c{bottom:387.210000px;}
.y4e{bottom:389.460000px;}
.y61{bottom:396.210000px;}
.y8e{bottom:397.290000px;}
.y1bb{bottom:398.820000px;}
.y17d{bottom:399.540000px;}
.y100{bottom:400.710000px;}
.ycd{bottom:401.520000px;}
.y115{bottom:404.670000px;}
.y153{bottom:405.210000px;}
.y1b{bottom:405.300000px;}
.y4d{bottom:410.430000px;}
.y9b{bottom:411.690000px;}
.y1ba{bottom:415.650000px;}
.y60{bottom:416.460000px;}
.y8d{bottom:417.540000px;}
.y17c{bottom:419.790000px;}
.yff{bottom:420.960000px;}
.y152{bottom:425.460000px;}
.y1a{bottom:425.550000px;}
.y114{bottom:428.250000px;}
.y4c{bottom:434.100000px;}
.y5f{bottom:436.710000px;}
.y8c{bottom:437.790000px;}
.y17b{bottom:440.040000px;}
.yfe{bottom:441.210000px;}
.y1b9{bottom:443.100000px;}
.y151{bottom:445.710000px;}
.y19{bottom:445.800000px;}
.y113{bottom:451.920000px;}
.y4b{bottom:456.960000px;}
.y8b{bottom:458.040000px;}
.y17a{bottom:460.290000px;}
.yfd{bottom:461.460000px;}
.y150{bottom:465.960000px;}
.y18{bottom:466.050000px;}
.y112{bottom:474.780000px;}
.y1b8{bottom:475.680000px;}
.y4a{bottom:477.210000px;}
.y8a{bottom:478.290000px;}
.y179{bottom:480.540000px;}
.yfc{bottom:481.710000px;}
.y198{bottom:484.050000px;}
.y14f{bottom:486.210000px;}
.y17{bottom:486.300000px;}
.y111{bottom:495.030000px;}
.yd2{bottom:495.840000px;}
.y197{bottom:496.920000px;}
.y49{bottom:497.460000px;}
.y88{bottom:498.540000px;}
.y178{bottom:500.790000px;}
.yfb{bottom:501.960000px;}
.y89{bottom:506.010000px;}
.y14e{bottom:506.460000px;}
.y16{bottom:506.550000px;}
.y12e{bottom:508.350000px;}
.y110{bottom:515.280000px;}
.y48{bottom:517.710000px;}
.y1b7{bottom:518.070000px;}
.y87{bottom:518.790000px;}
.y177{bottom:521.040000px;}
.yfa{bottom:522.210000px;}
.y14d{bottom:526.710000px;}
.y15{bottom:526.800000px;}
.y12d{bottom:531.210000px;}
.y1b6{bottom:534.900000px;}
.y10f{bottom:535.530000px;}
.y196{bottom:537.690000px;}
.y47{bottom:537.960000px;}
.y86{bottom:539.040000px;}
.y176{bottom:541.290000px;}
.yf9{bottom:542.460000px;}
.y14c{bottom:546.960000px;}
.y14{bottom:547.050000px;}
.y12c{bottom:551.460000px;}
.y1b5{bottom:551.820000px;}
.yec{bottom:553.710000px;}
.y10e{bottom:555.810000px;}
.ycc{bottom:557.070000px;}
.y195{bottom:557.970000px;}
.y46{bottom:558.240000px;}
.y85{bottom:559.320000px;}
.y175{bottom:561.570000px;}
.yf8{bottom:562.740000px;}
.y14b{bottom:567.240000px;}
.y13{bottom:568.140000px;}
.y1b4{bottom:568.680000px;}
.y12b{bottom:571.740000px;}
.yeb{bottom:573.990000px;}
.y10d{bottom:576.060000px;}
.ycb{bottom:577.320000px;}
.y194{bottom:578.220000px;}
.y45{bottom:578.490000px;}
.y84{bottom:579.570000px;}
.y174{bottom:581.820000px;}
.y13f{bottom:582.990000px;}
.y1b3{bottom:585.600000px;}
.yf7{bottom:587.220000px;}
.y14a{bottom:587.490000px;}
.y12{bottom:591.000000px;}
.y12a{bottom:591.990000px;}
.y10c{bottom:596.310000px;}
.yca{bottom:597.570000px;}
.y193{bottom:598.470000px;}
.y44{bottom:598.740000px;}
.y83{bottom:599.820000px;}
.y173{bottom:602.070000px;}
.y1b2{bottom:602.430000px;}
.y13e{bottom:603.240000px;}
.y149{bottom:607.740000px;}
.y11{bottom:611.970000px;}
.y129{bottom:612.240000px;}
.y10b{bottom:616.560000px;}
.y16c{bottom:617.460000px;}
.yc9{bottom:617.820000px;}
.y192{bottom:618.720000px;}
.y43{bottom:618.990000px;}
.y1b1{bottom:619.350000px;}
.y82{bottom:620.070000px;}
.y13d{bottom:623.490000px;}
.y148{bottom:632.220000px;}
.y128{bottom:632.490000px;}
.y1b0{bottom:636.180000px;}
.y10{bottom:636.360000px;}
.y10a{bottom:636.810000px;}
.yc8{bottom:638.070000px;}
.y191{bottom:638.970000px;}
.y42{bottom:639.240000px;}
.y81{bottom:640.320000px;}
.y172{bottom:641.130000px;}
.y13c{bottom:643.740000px;}
.yaf{bottom:646.710000px;}
.y127{bottom:652.740000px;}
.y1af{bottom:653.100000px;}
.yc7{bottom:658.320000px;}
.y190{bottom:659.220000px;}
.y41{bottom:659.490000px;}
.y80{bottom:660.570000px;}
.y109{bottom:661.290000px;}
.yf{bottom:664.260000px;}
.y13b{bottom:668.220000px;}
.y1ae{bottom:669.930000px;}
.y126{bottom:672.990000px;}
.y16b{bottom:677.130000px;}
.yc6{bottom:678.570000px;}
.y18f{bottom:679.470000px;}
.y40{bottom:679.740000px;}
.y7f{bottom:680.820000px;}
.y1ad{bottom:686.850000px;}
.yae{bottom:687.210000px;}
.y125{bottom:693.240000px;}
.ye{bottom:694.590000px;}
.yc5{bottom:698.820000px;}
.y3f{bottom:699.990000px;}
.y7e{bottom:701.070000px;}
.y1ac{bottom:703.680000px;}
.y124{bottom:713.490000px;}
.yc4{bottom:719.070000px;}
.y18e{bottom:720.150000px;}
.y3e{bottom:720.240000px;}
.y1ab{bottom:720.600000px;}
.y7d{bottom:721.320000px;}
.y123{bottom:733.740000px;}
.yd{bottom:734.010000px;}
.y18d{bottom:735.630000px;}
.y1aa{bottom:737.430000px;}
.yc3{bottom:739.320000px;}
.y3d{bottom:740.490000px;}
.y7c{bottom:741.570000px;}
.y122{bottom:753.990000px;}
.y1a9{bottom:754.350000px;}
.yc{bottom:757.230000px;}
.yc2{bottom:759.570000px;}
.y18c{bottom:760.650000px;}
.y3c{bottom:760.740000px;}
.y7b{bottom:761.820000px;}
.y1a8{bottom:771.180000px;}
.yea{bottom:771.990000px;}
.y121{bottom:774.240000px;}
.yb{bottom:775.500000px;}
.y18b{bottom:776.130000px;}
.yc1{bottom:779.820000px;}
.y3b{bottom:780.990000px;}
.y7a{bottom:782.070000px;}
.y1a7{bottom:788.100000px;}
.ya{bottom:790.980000px;}
.y120{bottom:794.490000px;}
.yc0{bottom:800.070000px;}
.y18a{bottom:801.150000px;}
.y3a{bottom:801.240000px;}
.y79{bottom:802.320000px;}
.y1a6{bottom:804.930000px;}
.y9{bottom:807.990000px;}
.y11f{bottom:814.740000px;}
.ybf{bottom:820.320000px;}
.y39{bottom:821.490000px;}
.y1a5{bottom:821.850000px;}
.y189{bottom:822.210000px;}
.y78{bottom:822.570000px;}
.y8{bottom:825.180000px;}
.y1a4{bottom:838.680000px;}
.y11e{bottom:839.220000px;}
.ybe{bottom:840.570000px;}
.y38{bottom:841.740000px;}
.y77{bottom:842.820000px;}
.y188{bottom:844.800000px;}
.y7{bottom:847.590000px;}
.y1a3{bottom:855.600000px;}
.ybd{bottom:860.820000px;}
.y6{bottom:861.810000px;}
.y37{bottom:861.990000px;}
.y76{bottom:863.070000px;}
.y1a2{bottom:873.240000px;}
.ybc{bottom:881.070000px;}
.y36{bottom:882.240000px;}
.y75{bottom:883.320000px;}
.yad{bottom:889.710000px;}
.ybb{bottom:901.320000px;}
.y35{bottom:902.490000px;}
.y1a1{bottom:903.210000px;}
.y74{bottom:903.570000px;}
.yba{bottom:921.570000px;}
.y34{bottom:922.740000px;}
.y73{bottom:923.820000px;}
.y1a0{bottom:925.350000px;}
.y13a{bottom:933.990000px;}
.yb9{bottom:941.820000px;}
.y19f{bottom:942.180000px;}
.y33{bottom:942.990000px;}
.y72{bottom:944.070000px;}
.y5e{bottom:950.460000px;}
.y139{bottom:954.240000px;}
.y19e{bottom:959.100000px;}
.yb8{bottom:962.070000px;}
.y32{bottom:963.240000px;}
.y138{bottom:974.490000px;}
.y19d{bottom:975.930000px;}
.yb7{bottom:982.350000px;}
.y71{bottom:983.160000px;}
.y31{bottom:983.520000px;}
.y19c{bottom:992.880000px;}
.y137{bottom:994.770000px;}
.yb6{bottom:1002.600000px;}
.y30{bottom:1003.770000px;}
.y19b{bottom:1009.710000px;}
.y136{bottom:1015.020000px;}
.yb5{bottom:1022.850000px;}
.y2f{bottom:1024.020000px;}
.y19a{bottom:1026.630000px;}
.y135{bottom:1035.270000px;}
.y199{bottom:1043.460000px;}
.y2e{bottom:1044.270000px;}
.y5d{bottom:1051.740000px;}
.y187{bottom:1059.750000px;}
.yb4{bottom:1061.910000px;}
.y2d{bottom:1064.520000px;}
.y5{bottom:1064.880000px;}
.y2a{bottom:1099.980000px;}
.y2b{bottom:1113.660000px;}
.y5b{bottom:1115.370000px;}
.y29{bottom:1119.780000px;}
.h10{height:18.540000px;}
.hb{height:20.250000px;}
.h18{height:29.970000px;}
.h1b{height:30.780000px;}
.h1a{height:32.490000px;}
.h17{height:33.660000px;}
.he{height:35.250820px;}
.h15{height:37.080000px;}
.h5{height:40.071445px;}
.h3{height:45.193359px;}
.h1{height:50.315273px;}
.h1d{height:50.373984px;}
.h2{height:55.135898px;}
.h12{height:55.200234px;}
.h14{height:55.710000px;}
.hf{height:55.714922px;}
.h6{height:60.257812px;}
.h9{height:60.328125px;}
.ha{height:60.890625px;}
.h19{height:63.990000px;}
.h16{height:64.350000px;}
.h4{height:70.200352px;}
.hc{height:70.282266px;}
.h11{height:74.004654px;}
.h8{height:81.288984px;}
.h7{height:90.492188px;}
.h1c{height:118.105313px;}
.h13{height:150.030000px;}
.hd{height:1187.998996px;}
.h0{height:1188.000000px;}
.w3{width:7.740000px;}
.w1{width:8.460000px;}
.wd{width:15.480000px;}
.wc{width:16.920000px;}
.wb{width:70.110000px;}
.w9{width:102.990000px;}
.w6{width:112.230000px;}
.w8{width:116.280000px;}
.wa{width:116.308500px;}
.w7{width:123.592500px;}
.w4{width:187.138500px;}
.w5{width:457.350000px;}
.w2{width:917.999063px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x29{left:7.650000px;}
.x26{left:8.728500px;}
.x30{left:11.610000px;}
.x36{left:13.860000px;}
.x38{left:15.390000px;}
.x2b{left:16.830000px;}
.x2e{left:18.360000px;}
.x2c{left:21.990000px;}
.x32{left:25.020000px;}
.x3a{left:27.360000px;}
.x34{left:29.100000px;}
.x33{left:33.120000px;}
.x35{left:36.030000px;}
.x27{left:37.558500px;}
.x39{left:41.520000px;}
.x31{left:51.480000px;}
.x25{left:93.538500px;}
.x2{left:108.000000px;}
.x12{left:113.580000px;}
.x4b{left:115.290000px;}
.x1d{left:118.620000px;}
.x4a{left:126.540000px;}
.x7{left:128.790000px;}
.x18{left:135.000000px;}
.x2a{left:151.230000px;}
.xe{left:162.030000px;}
.x22{left:175.169063px;}
.x23{left:180.120000px;}
.x6{left:183.360000px;}
.x49{left:207.030000px;}
.x37{left:225.390000px;}
.x4{left:227.550000px;}
.x13{left:250.139062px;}
.x14{left:255.090000px;}
.x51{left:263.190000px;}
.x57{left:269.310000px;}
.x53{left:271.380000px;}
.x4c{left:275.700000px;}
.x54{left:284.340000px;}
.x28{left:296.310000px;}
.x56{left:298.200000px;}
.x4d{left:299.640000px;}
.x50{left:304.950000px;}
.x58{left:306.840000px;}
.x55{left:310.170000px;}
.x46{left:312.150000px;}
.x5{left:313.860000px;}
.x20{left:321.329062px;}
.x11{left:324.030000px;}
.x21{left:326.280000px;}
.x1e{left:333.209062px;}
.x1f{left:338.160000px;}
.x52{left:343.020000px;}
.x24{left:347.340000px;}
.x9{left:349.230000px;}
.x17{left:355.710000px;}
.xa{left:377.670000px;}
.x4e{left:387.480000px;}
.x48{left:390.360000px;}
.x4f{left:395.760000px;}
.xd{left:403.500000px;}
.x47{left:407.100000px;}
.x8{left:410.340000px;}
.xb{left:433.320000px;}
.x3{left:459.060000px;}
.x1b{left:480.119062px;}
.x1c{left:485.070000px;}
.x2d{left:533.670000px;}
.x44{left:542.310000px;}
.x3c{left:551.310000px;}
.x3b{left:562.560000px;}
.x45{left:565.080000px;}
.x43{left:594.060000px;}
.x41{left:600.810000px;}
.x2f{left:650.670000px;}
.x3d{left:652.560000px;}
.xf{left:679.919062px;}
.x10{left:684.870000px;}
.x40{left:705.390000px;}
.x19{left:720.269063px;}
.x1a{left:725.220000px;}
.x15{left:755.369063px;}
.x16{left:760.320000px;}
.x3f{left:775.080000px;}
.x3e{left:793.170000px;}
.x42{left:794.610000px;}
.xc{left:801.630000px;}
.x1{left:810.090000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls13{letter-spacing:-0.256000pt;}
.ls17{letter-spacing:-0.183467pt;}
.ls11{letter-spacing:-0.149867pt;}
.ls19{letter-spacing:-0.143467pt;}
.lsf{letter-spacing:-0.139733pt;}
.lse{letter-spacing:-0.128000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.023360pt;}
.lsb{letter-spacing:0.055360pt;}
.ls0{letter-spacing:0.055467pt;}
.ls4{letter-spacing:0.064000pt;}
.ls9{letter-spacing:0.069867pt;}
.ls8{letter-spacing:0.080000pt;}
.ls18{letter-spacing:0.115733pt;}
.ls5{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.134400pt;}
.lsd{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.230720pt;}
.ls7{letter-spacing:0.384000pt;}
.ls1a{letter-spacing:0.906667pt;}
.ls14{letter-spacing:0.960000pt;}
.ls2{letter-spacing:1.024000pt;}
.ls1b{letter-spacing:1.098667pt;}
.ls12{letter-spacing:1.194667pt;}
.ls3{letter-spacing:5.120000pt;}
.lsc{letter-spacing:58.154667pt;}
.lsa{letter-spacing:423.546667pt;}
.ls15{letter-spacing:752.000000pt;}
.ws3{word-spacing:-17.024000pt;}
.wse{word-spacing:-16.960000pt;}
.ws7{word-spacing:-16.128000pt;}
.wsc{word-spacing:-16.064000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.872000pt;}
.wsd{word-spacing:-15.744000pt;}
.wsa{word-spacing:-14.774400pt;}
.ws6{word-spacing:-14.709867pt;}
.ws1{word-spacing:-14.695467pt;}
.ws2{word-spacing:-14.640000pt;}
.ws9{word-spacing:-14.500267pt;}
.wsb{word-spacing:-14.490133pt;}
.ws10{word-spacing:-14.266667pt;}
.ws0{word-spacing:-13.360000pt;}
.wsf{word-spacing:-13.216533pt;}
.ws5{word-spacing:0.000000pt;}
._0{margin-left:-1.054933pt;}
._3{width:0.905707pt;}
._9{width:1.974293pt;}
._19{width:3.337920pt;}
._b{width:5.034667pt;}
._12{width:6.521600pt;}
._10{width:8.315520pt;}
._1a{width:9.428160pt;}
._f{width:10.599360pt;}
._11{width:11.674880pt;}
._1e{width:13.184000pt;}
._1d{width:14.144000pt;}
._16{width:15.811200pt;}
._15{width:16.748160pt;}
._21{width:18.304000pt;}
._20{width:19.264000pt;}
._13{width:20.671680pt;}
._14{width:21.639893pt;}
._18{width:27.533973pt;}
._17{width:28.657280pt;}
._c{width:30.784000pt;}
._1{width:31.922880pt;}
._d{width:34.986667pt;}
._1f{width:38.314667pt;}
._4{width:97.173120pt;}
._1b{width:148.480000pt;}
._22{width:166.070187pt;}
._1c{width:176.106667pt;}
._a{width:286.405653pt;}
._23{width:292.057067pt;}
._5{width:589.200000pt;}
._2{width:660.880000pt;}
._7{width:827.600000pt;}
._8{width:1020.106667pt;}
._e{width:1137.573333pt;}
._6{width:1138.853333pt;}
.fs8{font-size:37.440000pt;}
.fs4{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.440000pt;}
.fs1{font-size:58.560000pt;}
.fs5{font-size:64.000000pt;}
.fs3{font-size:74.560000pt;}
.fs7{font-size:85.440000pt;}
.fs6{font-size:96.000000pt;}
.fs9{font-size:125.440000pt;}
.y0{bottom:0.000000pt;}
.y5c{bottom:3.840000pt;}
.yd5{bottom:3.920000pt;}
.y2c{bottom:4.240000pt;}
.ydd{bottom:8.960000pt;}
.ye3{bottom:9.280000pt;}
.ye2{bottom:10.080000pt;}
.ydc{bottom:10.560000pt;}
.yd6{bottom:12.080000pt;}
.ye0{bottom:15.760000pt;}
.yda{bottom:16.000000pt;}
.yd7{bottom:20.320000pt;}
.yd4{bottom:20.400000pt;}
.ydf{bottom:32.320000pt;}
.yd9{bottom:32.480000pt;}
.yd3{bottom:36.880000pt;}
.yd1{bottom:37.600000pt;}
.y4{bottom:51.760000pt;}
.yd0{bottom:54.080000pt;}
.y1cb{bottom:68.000000pt;}
.y3{bottom:68.240000pt;}
.ycf{bottom:70.560000pt;}
.y2{bottom:84.800000pt;}
.yce{bottom:87.040000pt;}
.yac{bottom:99.760000pt;}
.y5a{bottom:100.160000pt;}
.y1ca{bottom:100.480000pt;}
.y1{bottom:100.960000pt;}
.y147{bottom:102.160000pt;}
.ye9{bottom:103.120000pt;}
.y161{bottom:108.160000pt;}
.yab{bottom:116.240000pt;}
.y1c9{bottom:116.800000pt;}
.y16a{bottom:117.120000pt;}
.y59{bottom:117.760000pt;}
.y70{bottom:118.160000pt;}
.y146{bottom:120.186667pt;}
.ye8{bottom:121.146667pt;}
.y134{bottom:123.146667pt;}
.y160{bottom:126.186667pt;}
.y28{bottom:126.266667pt;}
.yf6{bottom:132.186667pt;}
.yaa{bottom:132.826667pt;}
.y58{bottom:134.266667pt;}
.y169{bottom:135.146667pt;}
.y6f{bottom:135.786667pt;}
.y171{bottom:136.186667pt;}
.y57{bottom:137.626667pt;}
.y1c8{bottom:137.866667pt;}
.y145{bottom:138.186667pt;}
.ye7{bottom:139.146667pt;}
.y133{bottom:141.146667pt;}
.y15f{bottom:144.186667pt;}
.y27{bottom:144.266667pt;}
.ya9{bottom:149.306667pt;}
.yf5{bottom:150.186667pt;}
.y9a{bottom:150.826667pt;}
.y56{bottom:151.146667pt;}
.y6e{bottom:152.266667pt;}
.y168{bottom:153.146667pt;}
.y170{bottom:154.186667pt;}
.y6d{bottom:155.626667pt;}
.y144{bottom:156.186667pt;}
.ye6{bottom:157.146667pt;}
.y108{bottom:158.186667pt;}
.y1c7{bottom:158.826667pt;}
.y132{bottom:159.146667pt;}
.y15e{bottom:162.186667pt;}
.y26{bottom:162.266667pt;}
.ya8{bottom:165.786667pt;}
.y99{bottom:167.306667pt;}
.yf4{bottom:168.186667pt;}
.y6c{bottom:168.826667pt;}
.yb3{bottom:170.666667pt;}
.y167{bottom:171.146667pt;}
.y16f{bottom:172.186667pt;}
.y143{bottom:174.186667pt;}
.ye5{bottom:175.146667pt;}
.y107{bottom:176.186667pt;}
.y131{bottom:177.146667pt;}
.y15d{bottom:180.186667pt;}
.y25{bottom:180.266667pt;}
.ya7{bottom:182.266667pt;}
.y98{bottom:183.786667pt;}
.y6b{bottom:185.706667pt;}
.yf3{bottom:186.186667pt;}
.y97{bottom:187.146667pt;}
.y166{bottom:189.146667pt;}
.y1c6{bottom:189.466667pt;}
.y16e{bottom:190.186667pt;}
.y142{bottom:192.186667pt;}
.y6a{bottom:192.346667pt;}
.y186{bottom:193.146667pt;}
.y106{bottom:194.186667pt;}
.y130{bottom:195.146667pt;}
.y15c{bottom:198.186667pt;}
.y24{bottom:198.266667pt;}
.ya6{bottom:198.826667pt;}
.yb2{bottom:200.266667pt;}
.y96{bottom:200.666667pt;}
.ye4{bottom:201.146667pt;}
.ya5{bottom:202.186667pt;}
.yb1{bottom:203.626667pt;}
.y69{bottom:203.706667pt;}
.yf2{bottom:204.186667pt;}
.y1c5{bottom:204.506667pt;}
.y11d{bottom:206.026667pt;}
.y165{bottom:207.146667pt;}
.y16d{bottom:208.186667pt;}
.y141{bottom:210.186667pt;}
.y185{bottom:211.146667pt;}
.y105{bottom:212.186667pt;}
.ya4{bottom:215.706667pt;}
.y15b{bottom:216.186667pt;}
.y23{bottom:216.266667pt;}
.y12f{bottom:216.906667pt;}
.yb0{bottom:217.146667pt;}
.y1c4{bottom:219.466667pt;}
.yf1{bottom:222.186667pt;}
.y11c{bottom:224.026667pt;}
.y164{bottom:225.146667pt;}
.y68{bottom:226.186667pt;}
.y95{bottom:227.146667pt;}
.y184{bottom:229.146667pt;}
.y104{bottom:230.186667pt;}
.y140{bottom:231.946667pt;}
.y15a{bottom:234.186667pt;}
.y22{bottom:234.266667pt;}
.y1c3{bottom:234.506667pt;}
.ya3{bottom:236.186667pt;}
.y55{bottom:238.186667pt;}
.yde{bottom:241.546667pt;}
.y11b{bottom:242.026667pt;}
.y163{bottom:243.146667pt;}
.y67{bottom:244.186667pt;}
.y94{bottom:245.146667pt;}
.y183{bottom:247.146667pt;}
.yf0{bottom:248.186667pt;}
.y1c2{bottom:249.466667pt;}
.y159{bottom:252.186667pt;}
.y21{bottom:252.266667pt;}
.ya1{bottom:254.186667pt;}
.y54{bottom:256.186667pt;}
.y11a{bottom:260.026667pt;}
.ya2{bottom:260.826667pt;}
.y66{bottom:262.186667pt;}
.y93{bottom:263.146667pt;}
.y1c1{bottom:264.506667pt;}
.y162{bottom:264.906667pt;}
.y182{bottom:265.146667pt;}
.yef{bottom:266.186667pt;}
.ye1{bottom:269.546667pt;}
.y158{bottom:270.186667pt;}
.y20{bottom:270.266667pt;}
.ya0{bottom:272.186667pt;}
.y53{bottom:274.186667pt;}
.y119{bottom:278.026667pt;}
.y1c0{bottom:279.466667pt;}
.y65{bottom:280.186667pt;}
.y92{bottom:281.146667pt;}
.y181{bottom:283.146667pt;}
.yee{bottom:284.186667pt;}
.y157{bottom:288.186667pt;}
.y1f{bottom:288.266667pt;}
.y9f{bottom:290.186667pt;}
.y51{bottom:292.186667pt;}
.y1bf{bottom:294.506667pt;}
.y118{bottom:296.666667pt;}
.y64{bottom:298.186667pt;}
.y52{bottom:298.826667pt;}
.yd8{bottom:299.066667pt;}
.y91{bottom:299.146667pt;}
.y180{bottom:301.146667pt;}
.y103{bottom:302.186667pt;}
.yed{bottom:305.946667pt;}
.y156{bottom:306.186667pt;}
.y1e{bottom:306.266667pt;}
.y9e{bottom:308.186667pt;}
.y1be{bottom:309.466667pt;}
.y50{bottom:310.186667pt;}
.y63{bottom:316.186667pt;}
.y90{bottom:317.146667pt;}
.y117{bottom:317.706667pt;}
.y17f{bottom:319.146667pt;}
.y102{bottom:320.186667pt;}
.y155{bottom:324.186667pt;}
.y1d{bottom:324.266667pt;}
.y1bd{bottom:324.506667pt;}
.y9d{bottom:326.186667pt;}
.ydb{bottom:326.346667pt;}
.y4f{bottom:328.186667pt;}
.y62{bottom:334.186667pt;}
.y8f{bottom:335.146667pt;}
.y17e{bottom:337.146667pt;}
.y101{bottom:338.186667pt;}
.y116{bottom:338.666667pt;}
.y1bc{bottom:339.466667pt;}
.y154{bottom:342.186667pt;}
.y1c{bottom:342.266667pt;}
.y9c{bottom:344.186667pt;}
.y4e{bottom:346.186667pt;}
.y61{bottom:352.186667pt;}
.y8e{bottom:353.146667pt;}
.y1bb{bottom:354.506667pt;}
.y17d{bottom:355.146667pt;}
.y100{bottom:356.186667pt;}
.ycd{bottom:356.906667pt;}
.y115{bottom:359.706667pt;}
.y153{bottom:360.186667pt;}
.y1b{bottom:360.266667pt;}
.y4d{bottom:364.826667pt;}
.y9b{bottom:365.946667pt;}
.y1ba{bottom:369.466667pt;}
.y60{bottom:370.186667pt;}
.y8d{bottom:371.146667pt;}
.y17c{bottom:373.146667pt;}
.yff{bottom:374.186667pt;}
.y152{bottom:378.186667pt;}
.y1a{bottom:378.266667pt;}
.y114{bottom:380.666667pt;}
.y4c{bottom:385.866667pt;}
.y5f{bottom:388.186667pt;}
.y8c{bottom:389.146667pt;}
.y17b{bottom:391.146667pt;}
.yfe{bottom:392.186667pt;}
.y1b9{bottom:393.866667pt;}
.y151{bottom:396.186667pt;}
.y19{bottom:396.266667pt;}
.y113{bottom:401.706667pt;}
.y4b{bottom:406.186667pt;}
.y8b{bottom:407.146667pt;}
.y17a{bottom:409.146667pt;}
.yfd{bottom:410.186667pt;}
.y150{bottom:414.186667pt;}
.y18{bottom:414.266667pt;}
.y112{bottom:422.026667pt;}
.y1b8{bottom:422.826667pt;}
.y4a{bottom:424.186667pt;}
.y8a{bottom:425.146667pt;}
.y179{bottom:427.146667pt;}
.yfc{bottom:428.186667pt;}
.y198{bottom:430.266667pt;}
.y14f{bottom:432.186667pt;}
.y17{bottom:432.266667pt;}
.y111{bottom:440.026667pt;}
.yd2{bottom:440.746667pt;}
.y197{bottom:441.706667pt;}
.y49{bottom:442.186667pt;}
.y88{bottom:443.146667pt;}
.y178{bottom:445.146667pt;}
.yfb{bottom:446.186667pt;}
.y89{bottom:449.786667pt;}
.y14e{bottom:450.186667pt;}
.y16{bottom:450.266667pt;}
.y12e{bottom:451.866667pt;}
.y110{bottom:458.026667pt;}
.y48{bottom:460.186667pt;}
.y1b7{bottom:460.506667pt;}
.y87{bottom:461.146667pt;}
.y177{bottom:463.146667pt;}
.yfa{bottom:464.186667pt;}
.y14d{bottom:468.186667pt;}
.y15{bottom:468.266667pt;}
.y12d{bottom:472.186667pt;}
.y1b6{bottom:475.466667pt;}
.y10f{bottom:476.026667pt;}
.y196{bottom:477.946667pt;}
.y47{bottom:478.186667pt;}
.y86{bottom:479.146667pt;}
.y176{bottom:481.146667pt;}
.yf9{bottom:482.186667pt;}
.y14c{bottom:486.186667pt;}
.y14{bottom:486.266667pt;}
.y12c{bottom:490.186667pt;}
.y1b5{bottom:490.506667pt;}
.yec{bottom:492.186667pt;}
.y10e{bottom:494.053333pt;}
.ycc{bottom:495.173333pt;}
.y195{bottom:495.973333pt;}
.y46{bottom:496.213333pt;}
.y85{bottom:497.173333pt;}
.y175{bottom:499.173333pt;}
.yf8{bottom:500.213333pt;}
.y14b{bottom:504.213333pt;}
.y13{bottom:505.013333pt;}
.y1b4{bottom:505.493333pt;}
.y12b{bottom:508.213333pt;}
.yeb{bottom:510.213333pt;}
.y10d{bottom:512.053333pt;}
.ycb{bottom:513.173333pt;}
.y194{bottom:513.973333pt;}
.y45{bottom:514.213333pt;}
.y84{bottom:515.173333pt;}
.y174{bottom:517.173333pt;}
.y13f{bottom:518.213333pt;}
.y1b3{bottom:520.533333pt;}
.yf7{bottom:521.973333pt;}
.y14a{bottom:522.213333pt;}
.y12{bottom:525.333333pt;}
.y12a{bottom:526.213333pt;}
.y10c{bottom:530.053333pt;}
.yca{bottom:531.173333pt;}
.y193{bottom:531.973333pt;}
.y44{bottom:532.213333pt;}
.y83{bottom:533.173333pt;}
.y173{bottom:535.173333pt;}
.y1b2{bottom:535.493333pt;}
.y13e{bottom:536.213333pt;}
.y149{bottom:540.213333pt;}
.y11{bottom:543.973333pt;}
.y129{bottom:544.213333pt;}
.y10b{bottom:548.053333pt;}
.y16c{bottom:548.853333pt;}
.yc9{bottom:549.173333pt;}
.y192{bottom:549.973333pt;}
.y43{bottom:550.213333pt;}
.y1b1{bottom:550.533333pt;}
.y82{bottom:551.173333pt;}
.y13d{bottom:554.213333pt;}
.y148{bottom:561.973333pt;}
.y128{bottom:562.213333pt;}
.y1b0{bottom:565.493333pt;}
.y10{bottom:565.653333pt;}
.y10a{bottom:566.053333pt;}
.yc8{bottom:567.173333pt;}
.y191{bottom:567.973333pt;}
.y42{bottom:568.213333pt;}
.y81{bottom:569.173333pt;}
.y172{bottom:569.893333pt;}
.y13c{bottom:572.213333pt;}
.yaf{bottom:574.853333pt;}
.y127{bottom:580.213333pt;}
.y1af{bottom:580.533333pt;}
.yc7{bottom:585.173333pt;}
.y190{bottom:585.973333pt;}
.y41{bottom:586.213333pt;}
.y80{bottom:587.173333pt;}
.y109{bottom:587.813333pt;}
.yf{bottom:590.453333pt;}
.y13b{bottom:593.973333pt;}
.y1ae{bottom:595.493333pt;}
.y126{bottom:598.213333pt;}
.y16b{bottom:601.893333pt;}
.yc6{bottom:603.173333pt;}
.y18f{bottom:603.973333pt;}
.y40{bottom:604.213333pt;}
.y7f{bottom:605.173333pt;}
.y1ad{bottom:610.533333pt;}
.yae{bottom:610.853333pt;}
.y125{bottom:616.213333pt;}
.ye{bottom:617.413333pt;}
.yc5{bottom:621.173333pt;}
.y3f{bottom:622.213333pt;}
.y7e{bottom:623.173333pt;}
.y1ac{bottom:625.493333pt;}
.y124{bottom:634.213333pt;}
.yc4{bottom:639.173333pt;}
.y18e{bottom:640.133333pt;}
.y3e{bottom:640.213333pt;}
.y1ab{bottom:640.533333pt;}
.y7d{bottom:641.173333pt;}
.y123{bottom:652.213333pt;}
.yd{bottom:652.453333pt;}
.y18d{bottom:653.893333pt;}
.y1aa{bottom:655.493333pt;}
.yc3{bottom:657.173333pt;}
.y3d{bottom:658.213333pt;}
.y7c{bottom:659.173333pt;}
.y122{bottom:670.213333pt;}
.y1a9{bottom:670.533333pt;}
.yc{bottom:673.093333pt;}
.yc2{bottom:675.173333pt;}
.y18c{bottom:676.133333pt;}
.y3c{bottom:676.213333pt;}
.y7b{bottom:677.173333pt;}
.y1a8{bottom:685.493333pt;}
.yea{bottom:686.213333pt;}
.y121{bottom:688.213333pt;}
.yb{bottom:689.333333pt;}
.y18b{bottom:689.893333pt;}
.yc1{bottom:693.173333pt;}
.y3b{bottom:694.213333pt;}
.y7a{bottom:695.173333pt;}
.y1a7{bottom:700.533333pt;}
.ya{bottom:703.093333pt;}
.y120{bottom:706.213333pt;}
.yc0{bottom:711.173333pt;}
.y18a{bottom:712.133333pt;}
.y3a{bottom:712.213333pt;}
.y79{bottom:713.173333pt;}
.y1a6{bottom:715.493333pt;}
.y9{bottom:718.213333pt;}
.y11f{bottom:724.213333pt;}
.ybf{bottom:729.173333pt;}
.y39{bottom:730.213333pt;}
.y1a5{bottom:730.533333pt;}
.y189{bottom:730.853333pt;}
.y78{bottom:731.173333pt;}
.y8{bottom:733.493333pt;}
.y1a4{bottom:745.493333pt;}
.y11e{bottom:745.973333pt;}
.ybe{bottom:747.173333pt;}
.y38{bottom:748.213333pt;}
.y77{bottom:749.173333pt;}
.y188{bottom:750.933333pt;}
.y7{bottom:753.413333pt;}
.y1a3{bottom:760.533333pt;}
.ybd{bottom:765.173333pt;}
.y6{bottom:766.053333pt;}
.y37{bottom:766.213333pt;}
.y76{bottom:767.173333pt;}
.y1a2{bottom:776.213333pt;}
.ybc{bottom:783.173333pt;}
.y36{bottom:784.213333pt;}
.y75{bottom:785.173333pt;}
.yad{bottom:790.853333pt;}
.ybb{bottom:801.173333pt;}
.y35{bottom:802.213333pt;}
.y1a1{bottom:802.853333pt;}
.y74{bottom:803.173333pt;}
.yba{bottom:819.173333pt;}
.y34{bottom:820.213333pt;}
.y73{bottom:821.173333pt;}
.y1a0{bottom:822.533333pt;}
.y13a{bottom:830.213333pt;}
.yb9{bottom:837.173333pt;}
.y19f{bottom:837.493333pt;}
.y33{bottom:838.213333pt;}
.y72{bottom:839.173333pt;}
.y5e{bottom:844.853333pt;}
.y139{bottom:848.213333pt;}
.y19e{bottom:852.533333pt;}
.yb8{bottom:855.173333pt;}
.y32{bottom:856.213333pt;}
.y138{bottom:866.213333pt;}
.y19d{bottom:867.493333pt;}
.yb7{bottom:873.200000pt;}
.y71{bottom:873.920000pt;}
.y31{bottom:874.240000pt;}
.y19c{bottom:882.560000pt;}
.y137{bottom:884.240000pt;}
.yb6{bottom:891.200000pt;}
.y30{bottom:892.240000pt;}
.y19b{bottom:897.520000pt;}
.y136{bottom:902.240000pt;}
.yb5{bottom:909.200000pt;}
.y2f{bottom:910.240000pt;}
.y19a{bottom:912.560000pt;}
.y135{bottom:920.240000pt;}
.y199{bottom:927.520000pt;}
.y2e{bottom:928.240000pt;}
.y5d{bottom:934.880000pt;}
.y187{bottom:942.000000pt;}
.yb4{bottom:943.920000pt;}
.y2d{bottom:946.240000pt;}
.y5{bottom:946.560000pt;}
.y2a{bottom:977.760000pt;}
.y2b{bottom:989.920000pt;}
.y5b{bottom:991.440000pt;}
.y29{bottom:995.360000pt;}
.h10{height:16.480000pt;}
.hb{height:18.000000pt;}
.h18{height:26.640000pt;}
.h1b{height:27.360000pt;}
.h1a{height:28.880000pt;}
.h17{height:29.920000pt;}
.he{height:31.334062pt;}
.h15{height:32.960000pt;}
.h5{height:35.619062pt;}
.h3{height:40.171875pt;}
.h1{height:44.724687pt;}
.h1d{height:44.776875pt;}
.h2{height:49.009687pt;}
.h12{height:49.066875pt;}
.h14{height:49.520000pt;}
.hf{height:49.524375pt;}
.h6{height:53.562500pt;}
.h9{height:53.625000pt;}
.ha{height:54.125000pt;}
.h19{height:56.880000pt;}
.h16{height:57.200000pt;}
.h4{height:62.400312pt;}
.hc{height:62.473125pt;}
.h11{height:65.781915pt;}
.h8{height:72.256875pt;}
.h7{height:80.437500pt;}
.h1c{height:104.982500pt;}
.h13{height:133.360000pt;}
.hd{height:1055.999108pt;}
.h0{height:1056.000000pt;}
.w3{width:6.880000pt;}
.w1{width:7.520000pt;}
.wd{width:13.760000pt;}
.wc{width:15.040000pt;}
.wb{width:62.320000pt;}
.w9{width:91.546667pt;}
.w6{width:99.760000pt;}
.w8{width:103.360000pt;}
.wa{width:103.385333pt;}
.w7{width:109.860000pt;}
.w4{width:166.345333pt;}
.w5{width:406.533333pt;}
.w2{width:815.999167pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x29{left:6.800000pt;}
.x26{left:7.758667pt;}
.x30{left:10.320000pt;}
.x36{left:12.320000pt;}
.x38{left:13.680000pt;}
.x2b{left:14.960000pt;}
.x2e{left:16.320000pt;}
.x2c{left:19.546667pt;}
.x32{left:22.240000pt;}
.x3a{left:24.320000pt;}
.x34{left:25.866667pt;}
.x33{left:29.440000pt;}
.x35{left:32.026667pt;}
.x27{left:33.385333pt;}
.x39{left:36.906667pt;}
.x31{left:45.760000pt;}
.x25{left:83.145333pt;}
.x2{left:96.000000pt;}
.x12{left:100.960000pt;}
.x4b{left:102.480000pt;}
.x1d{left:105.440000pt;}
.x4a{left:112.480000pt;}
.x7{left:114.480000pt;}
.x18{left:120.000000pt;}
.x2a{left:134.426667pt;}
.xe{left:144.026667pt;}
.x22{left:155.705833pt;}
.x23{left:160.106667pt;}
.x6{left:162.986667pt;}
.x49{left:184.026667pt;}
.x37{left:200.346667pt;}
.x4{left:202.266667pt;}
.x13{left:222.345833pt;}
.x14{left:226.746667pt;}
.x51{left:233.946667pt;}
.x57{left:239.386667pt;}
.x53{left:241.226667pt;}
.x4c{left:245.066667pt;}
.x54{left:252.746667pt;}
.x28{left:263.386667pt;}
.x56{left:265.066667pt;}
.x4d{left:266.346667pt;}
.x50{left:271.066667pt;}
.x58{left:272.746667pt;}
.x55{left:275.706667pt;}
.x46{left:277.466667pt;}
.x5{left:278.986667pt;}
.x20{left:285.625833pt;}
.x11{left:288.026667pt;}
.x21{left:290.026667pt;}
.x1e{left:296.185833pt;}
.x1f{left:300.586667pt;}
.x52{left:304.906667pt;}
.x24{left:308.746667pt;}
.x9{left:310.426667pt;}
.x17{left:316.186667pt;}
.xa{left:335.706667pt;}
.x4e{left:344.426667pt;}
.x48{left:346.986667pt;}
.x4f{left:351.786667pt;}
.xd{left:358.666667pt;}
.x47{left:361.866667pt;}
.x8{left:364.746667pt;}
.xb{left:385.173333pt;}
.x3{left:408.053333pt;}
.x1b{left:426.772500pt;}
.x1c{left:431.173333pt;}
.x2d{left:474.373333pt;}
.x44{left:482.053333pt;}
.x3c{left:490.053333pt;}
.x3b{left:500.053333pt;}
.x45{left:502.293333pt;}
.x43{left:528.053333pt;}
.x41{left:534.053333pt;}
.x2f{left:578.373333pt;}
.x3d{left:580.053333pt;}
.xf{left:604.372500pt;}
.x10{left:608.773333pt;}
.x40{left:627.013333pt;}
.x19{left:640.239167pt;}
.x1a{left:644.640000pt;}
.x15{left:671.439167pt;}
.x16{left:675.840000pt;}
.x3f{left:688.960000pt;}
.x3e{left:705.040000pt;}
.x42{left:706.320000pt;}
.xc{left:712.560000pt;}
.x1{left:720.080000pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  