
    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_5d0cd06690fa2aa9091b3a8e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_3a99844cc96096eb09d95adf.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_b8c39097da0eb8b2d62c317f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.942383;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_e6585ca9a4ddd89011ededbe.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.172852;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_d5643dc3437e7a9c291ec5fc.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.202148;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_9ecc814c4a18b2c6b3dbd46e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.933105;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_af3b957eb623816f4b712949.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.202148;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_1adcd5966bba92de6476f571.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.942383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_40c49a63c490ff73debce1c1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.759766;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;}
.ls4{letter-spacing:-1.440000px;}
.ls3{letter-spacing:-0.864000px;}
.ls6{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.576000px;}
.ls11{letter-spacing:-0.504000px;}
.ls5{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.144000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.216000px;}
.lsd{letter-spacing:0.288000px;}
.lsb{letter-spacing:0.360000px;}
.lsc{letter-spacing:8.064000px;}
.lsa{letter-spacing:33.240000px;}
.ls8{letter-spacing:44.760000px;}
.lse{letter-spacing:65.640000px;}
.ls12{letter-spacing:830.729280px;}
.ls10{letter-spacing:837.534720px;}
.ls9{letter-spacing:845.741280px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8{word-spacing:-27.174240px;}
.ws2{word-spacing:-19.038240px;}
.ws4{word-spacing:-16.632000px;}
.ws3{word-spacing:-16.488000px;}
.ws0{word-spacing:-16.272000px;}
.ws6{word-spacing:-16.056000px;}
.ws7{word-spacing:-15.768000px;}
.ws5{word-spacing:-14.970240px;}
.ws1{word-spacing:0.000000px;}
._a{margin-left:-4.497840px;}
._9{margin-left:-3.096000px;}
._0{margin-left:-1.406160px;}
._4{width:1.152000px;}
._8{width:3.024000px;}
._7{width:4.032000px;}
._6{width:5.294160px;}
._3{width:6.336000px;}
._5{width:7.680000px;}
._10{width:8.712000px;}
._11{width:10.440000px;}
._18{width:11.448000px;}
._12{width:12.456000px;}
._c{width:13.615680px;}
._b{width:15.230160px;}
._f{width:17.288640px;}
._e{width:18.648000px;}
._15{width:19.876320px;}
._2{width:20.880000px;}
._1{width:22.320000px;}
._13{width:23.544000px;}
._1b{width:25.369920px;}
._d{width:27.144000px;}
._14{width:34.488000px;}
._20{width:35.712000px;}
._1f{width:36.792000px;}
._16{width:44.568000px;}
._17{width:45.830160px;}
._25{width:49.934160px;}
._24{width:51.336000px;}
._1d{width:52.848000px;}
._1c{width:53.928000px;}
._22{width:58.502160px;}
._21{width:59.688000px;}
._19{width:64.872000px;}
._1a{width:66.134160px;}
._23{width:68.040000px;}
._1e{width:240.840000px;}
.fc5{color:rgb(33,37,41);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(17,85,204);}
.fc4{color:rgb(102,102,102);}
.fc3{color:rgb(67,67,67);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.fs3{font-size:120.240000px;}
.fs2{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y89{bottom:7.380000px;}
.y80{bottom:7.560000px;}
.y173{bottom:15.840000px;}
.y82{bottom:30.600000px;}
.y8e{bottom:30.630000px;}
.y87{bottom:53.820000px;}
.y8d{bottom:53.850000px;}
.y1{bottom:61.920000px;}
.y94{bottom:76.860000px;}
.y8c{bottom:76.890000px;}
.y86{bottom:77.040000px;}
.y93{bottom:100.080000px;}
.y8b{bottom:100.110000px;}
.y85{bottom:100.260000px;}
.y11f{bottom:113.076000px;}
.y92{bottom:123.300000px;}
.y84{bottom:123.345000px;}
.y14b{bottom:123.516000px;}
.yfc{bottom:126.036000px;}
.y76{bottom:126.396000px;}
.y3f{bottom:127.296000px;}
.yca{bottom:127.836000px;}
.yb0{bottom:133.416000px;}
.y97{bottom:136.476000px;}
.y12c{bottom:137.196000px;}
.y11e{bottom:138.276000px;}
.yd4{bottom:144.216000px;}
.y165{bottom:145.656000px;}
.y91{bottom:146.340000px;}
.y96{bottom:146.520000px;}
.y1cc{bottom:148.536000px;}
.y14a{bottom:148.896000px;}
.y1a4{bottom:149.076000px;}
.yfb{bottom:151.230000px;}
.y75{bottom:151.590000px;}
.y3e{bottom:152.490000px;}
.yc9{bottom:153.030000px;}
.y62{bottom:155.550000px;}
.yaf{bottom:158.610000px;}
.y95{bottom:161.130000px;}
.y12b{bottom:162.570000px;}
.y11d{bottom:163.650000px;}
.yd3{bottom:169.410000px;}
.y90{bottom:169.560000px;}
.y164{bottom:170.850000px;}
.y1a3{bottom:172.830000px;}
.y1cb{bottom:173.910000px;}
.y149{bottom:174.090000px;}
.y74{bottom:176.970000px;}
.y187{bottom:177.510000px;}
.y3d{bottom:177.690000px;}
.yc8{bottom:178.410000px;}
.y61{bottom:178.770000px;}
.yfa{bottom:183.810000px;}
.yae{bottom:183.990000px;}
.y12a{bottom:187.770000px;}
.y11c{bottom:188.850000px;}
.yd2{bottom:194.610000px;}
.y163{bottom:196.050000px;}
.y1a2{bottom:198.030000px;}
.y1ca{bottom:199.110000px;}
.y148{bottom:199.290000px;}
.y60{bottom:201.810000px;}
.y73{bottom:202.170000px;}
.y186{bottom:202.710000px;}
.y3c{bottom:203.070000px;}
.yc7{bottom:203.610000px;}
.yad{bottom:209.190000px;}
.y129{bottom:212.970000px;}
.y11b{bottom:214.050000px;}
.yd1{bottom:219.990000px;}
.y1a1{bottom:223.410000px;}
.y1c9{bottom:224.310000px;}
.y5f{bottom:225.750000px;}
.y72{bottom:227.370000px;}
.y185{bottom:228.090000px;}
.y3b{bottom:228.270000px;}
.yc6{bottom:228.810000px;}
.y147{bottom:232.050000px;}
.yac{bottom:234.570000px;}
.y128{bottom:238.350000px;}
.y11a{bottom:239.430000px;}
.yd0{bottom:245.190000px;}
.yf9{bottom:247.890000px;}
.y1a0{bottom:248.610000px;}
.y5e{bottom:250.950000px;}
.y71{bottom:252.750000px;}
.y184{bottom:253.290000px;}
.y3a{bottom:253.650000px;}
.yc5{bottom:254.190000px;}
.y1a{bottom:258.330000px;}
.yab{bottom:259.770000px;}
.y127{bottom:263.550000px;}
.y119{bottom:264.630000px;}
.ycf{bottom:270.570000px;}
.yf8{bottom:273.270000px;}
.y19f{bottom:273.990000px;}
.y5d{bottom:276.150000px;}
.y70{bottom:277.950000px;}
.y183{bottom:278.490000px;}
.y39{bottom:278.850000px;}
.yc4{bottom:279.390000px;}
.y162{bottom:280.830000px;}
.y19{bottom:283.530000px;}
.yaa{bottom:284.970000px;}
.y126{bottom:288.930000px;}
.y1c8{bottom:290.010000px;}
.yce{bottom:295.770000px;}
.y118{bottom:297.390000px;}
.yf7{bottom:298.470000px;}
.y19e{bottom:299.190000px;}
.y5c{bottom:301.530000px;}
.y6f{bottom:303.330000px;}
.y182{bottom:303.870000px;}
.y38{bottom:304.050000px;}
.yc3{bottom:304.770000px;}
.y146{bottom:307.290000px;}
.y18{bottom:308.730000px;}
.ya9{bottom:310.350000px;}
.y161{bottom:312.150000px;}
.y125{bottom:314.130000px;}
.y1c7{bottom:315.210000px;}
.ycd{bottom:321.015000px;}
.yf6{bottom:323.895000px;}
.y19d{bottom:324.435000px;}
.y5b{bottom:326.775000px;}
.y6e{bottom:328.575000px;}
.y181{bottom:329.115000px;}
.y37{bottom:329.475000px;}
.yc2{bottom:330.015000px;}
.yda{bottom:330.195000px;}
.y145{bottom:332.535000px;}
.y17{bottom:334.155000px;}
.ya8{bottom:335.595000px;}
.y160{bottom:337.395000px;}
.y1b3{bottom:338.295000px;}
.y124{bottom:339.375000px;}
.y8f{bottom:339.915000px;}
.y1c6{bottom:340.455000px;}
.ycc{bottom:346.395000px;}
.yf5{bottom:349.095000px;}
.y117{bottom:349.455000px;}
.y19c{bottom:349.815000px;}
.y5a{bottom:352.155000px;}
.y6d{bottom:353.775000px;}
.y180{bottom:354.315000px;}
.y36{bottom:354.675000px;}
.yc1{bottom:355.215000px;}
.yd9{bottom:355.395000px;}
.y144{bottom:357.915000px;}
.y16{bottom:359.355000px;}
.ya7{bottom:360.795000px;}
.y15f{bottom:362.595000px;}
.y1b2{bottom:363.495000px;}
.y123{bottom:364.755000px;}
.y1c5{bottom:365.835000px;}
.yf4{bottom:374.295000px;}
.y116{bottom:374.655000px;}
.y19b{bottom:375.015000px;}
.y59{bottom:377.355000px;}
.ycb{bottom:378.975000px;}
.y6c{bottom:379.155000px;}
.y17f{bottom:379.695000px;}
.y35{bottom:380.055000px;}
.yc0{bottom:380.595000px;}
.y143{bottom:383.115000px;}
.y15{bottom:384.735000px;}
.ya6{bottom:386.175000px;}
.y1b1{bottom:388.875000px;}
.y122{bottom:389.955000px;}
.y1c4{bottom:391.035000px;}
.yf3{bottom:399.675000px;}
.y115{bottom:400.035000px;}
.y19a{bottom:400.215000px;}
.y58{bottom:402.555000px;}
.y6b{bottom:404.355000px;}
.y17e{bottom:404.895000px;}
.y34{bottom:405.255000px;}
.ybf{bottom:405.795000px;}
.yd8{bottom:405.975000px;}
.y142{bottom:408.495000px;}
.y14{bottom:409.935000px;}
.ya5{bottom:411.375000px;}
.y1b0{bottom:414.075000px;}
.y15e{bottom:414.615000px;}
.y1c3{bottom:416.235000px;}
.yf2{bottom:424.875000px;}
.y114{bottom:425.235000px;}
.y199{bottom:425.595000px;}
.y57{bottom:427.935000px;}
.y6a{bottom:429.555000px;}
.y33{bottom:430.455000px;}
.ybe{bottom:430.995000px;}
.yd7{bottom:431.175000px;}
.y121{bottom:431.535000px;}
.y13{bottom:435.135000px;}
.ya4{bottom:436.755000px;}
.y1af{bottom:439.275000px;}
.y141{bottom:441.075000px;}
.y17d{bottom:445.215000px;}
.yf1{bottom:449.535000px;}
.y113{bottom:450.435000px;}
.y56{bottom:453.135000px;}
.y69{bottom:454.935000px;}
.y32{bottom:455.835000px;}
.ybd{bottom:456.375000px;}
.y1c2{bottom:456.555000px;}
.y198{bottom:458.175000px;}
.y12{bottom:460.515000px;}
.ye6{bottom:461.055000px;}
.ya3{bottom:461.955000px;}
.yd6{bottom:463.755000px;}
.y1ae{bottom:464.655000px;}
.yf0{bottom:472.575000px;}
.y15d{bottom:472.755000px;}
.y112{bottom:475.815000px;}
.y55{bottom:478.335000px;}
.y68{bottom:480.135000px;}
.y31{bottom:481.035000px;}
.ybc{bottom:481.575000px;}
.y1c1{bottom:481.935000px;}
.y120{bottom:483.015000px;}
.y11{bottom:485.715000px;}
.ye5{bottom:486.435000px;}
.ya2{bottom:487.155000px;}
.y1ad{bottom:489.855000px;}
.y17c{bottom:491.475000px;}
.y140{bottom:492.555000px;}
.yd5{bottom:493.095000px;}
.yef{bottom:495.795000px;}
.y15c{bottom:497.955000px;}
.y111{bottom:501.015000px;}
.y54{bottom:503.715000px;}
.y67{bottom:505.515000px;}
.y30{bottom:506.235000px;}
.ybb{bottom:506.955000px;}
.y1c0{bottom:507.135000px;}
.y197{bottom:510.375000px;}
.y10{bottom:511.095000px;}
.ye4{bottom:511.635000px;}
.ya1{bottom:512.535000px;}
.y1ac{bottom:515.235000px;}
.y13f{bottom:516.315000px;}
.yee{bottom:519.015000px;}
.y15b{bottom:523.155000px;}
.y110{bottom:526.395000px;}
.y53{bottom:528.915000px;}
.y66{bottom:530.715000px;}
.y2f{bottom:531.615000px;}
.y17b{bottom:531.795000px;}
.yba{bottom:532.155000px;}
.y196{bottom:535.575000px;}
.yf{bottom:536.295000px;}
.ye3{bottom:537.015000px;}
.ya0{bottom:537.735000px;}
.y1ab{bottom:540.075000px;}
.y13e{bottom:541.515000px;}
.y8a{bottom:541.695000px;}
.yed{bottom:542.055000px;}
.y1bf{bottom:547.455000px;}
.y15a{bottom:548.535000px;}
.y10f{bottom:551.595000px;}
.y52{bottom:554.295000px;}
.y2e{bottom:556.815000px;}
.y17a{bottom:556.995000px;}
.yb9{bottom:557.355000px;}
.y171{bottom:559.155000px;}
.y195{bottom:560.775000px;}
.ye{bottom:561.495000px;}
.ye2{bottom:562.215000px;}
.y9f{bottom:562.935000px;}
.y65{bottom:563.655000px;}
.yec{bottom:565.275000px;}
.y13d{bottom:566.895000px;}
.y1be{bottom:572.685000px;}
.y159{bottom:573.765000px;}
.y10e{bottom:576.825000px;}
.y51{bottom:579.525000px;}
.y179{bottom:581.685000px;}
.y2d{bottom:582.225000px;}
.y170{bottom:582.405000px;}
.yb8{bottom:582.765000px;}
.y194{bottom:586.185000px;}
.yd{bottom:586.905000px;}
.ye1{bottom:587.445000px;}
.y64{bottom:588.345000px;}
.yeb{bottom:588.525000px;}
.y1aa{bottom:590.505000px;}
.y13c{bottom:592.125000px;}
.y1bd{bottom:597.885000px;}
.y158{bottom:598.965000px;}
.y10d{bottom:602.205000px;}
.y50{bottom:604.725000px;}
.y16f{bottom:606.345000px;}
.y2c{bottom:607.425000px;}
.yb7{bottom:607.965000px;}
.y63{bottom:611.385000px;}
.yea{bottom:611.745000px;}
.yc{bottom:612.105000px;}
.ye0{bottom:612.825000px;}
.y9e{bottom:613.545000px;}
.y1a9{bottom:615.885000px;}
.y13b{bottom:617.505000px;}
.y157{bottom:624.345000px;}
.y10c{bottom:627.405000px;}
.y4f{bottom:630.105000px;}
.y16e{bottom:631.545000px;}
.y2b{bottom:632.625000px;}
.yb6{bottom:633.345000px;}
.ye9{bottom:634.785000px;}
.y193{bottom:636.765000px;}
.yb{bottom:637.305000px;}
.ydf{bottom:638.025000px;}
.y1bc{bottom:638.205000px;}
.y9d{bottom:638.925000px;}
.y1a8{bottom:641.085000px;}
.y13a{bottom:642.705000px;}
.y156{bottom:649.545000px;}
.y10b{bottom:652.785000px;}
.y4e{bottom:655.305000px;}
.y16d{bottom:656.745000px;}
.y2a{bottom:658.005000px;}
.yb5{bottom:658.545000px;}
.y192{bottom:661.965000px;}
.yde{bottom:663.405000px;}
.y9c{bottom:664.125000px;}
.y1a7{bottom:666.285000px;}
.y139{bottom:667.905000px;}
.y88{bottom:674.025000px;}
.y155{bottom:674.925000px;}
.ya{bottom:676.905000px;}
.y10a{bottom:677.985000px;}
.y4d{bottom:680.505000px;}
.ye8{bottom:681.225000px;}
.y16c{bottom:682.125000px;}
.y29{bottom:683.205000px;}
.yb4{bottom:683.745000px;}
.y191{bottom:687.165000px;}
.ydd{bottom:687.885000px;}
.y1bb{bottom:688.785000px;}
.y9b{bottom:689.325000px;}
.y1a6{bottom:691.665000px;}
.y178{bottom:692.385000px;}
.y138{bottom:693.285000px;}
.ye7{bottom:699.765000px;}
.y154{bottom:700.125000px;}
.y109{bottom:703.185000px;}
.y16b{bottom:707.325000px;}
.y28{bottom:708.405000px;}
.yb3{bottom:709.125000px;}
.ydc{bottom:711.105000px;}
.y190{bottom:712.545000px;}
.y83{bottom:713.625000px;}
.y9a{bottom:714.705000px;}
.y137{bottom:718.485000px;}
.y4c{bottom:720.105000px;}
.y1a5{bottom:722.265000px;}
.y153{bottom:725.325000px;}
.y108{bottom:728.565000px;}
.y1ba{bottom:729.105000px;}
.y177{bottom:731.985000px;}
.y16a{bottom:732.525000px;}
.y27{bottom:733.785000px;}
.yb2{bottom:734.325000px;}
.y18f{bottom:737.745000px;}
.y79{bottom:737.925000px;}
.y9{bottom:743.145000px;}
.y136{bottom:743.685000px;}
.y99{bottom:747.285000px;}
.y152{bottom:750.705000px;}
.ydb{bottom:752.865000px;}
.y107{bottom:753.765000px;}
.y1b9{bottom:754.305000px;}
.y169{bottom:757.905000px;}
.y26{bottom:758.985000px;}
.yb1{bottom:759.525000px;}
.y78{bottom:760.965000px;}
.y18e{bottom:762.945000px;}
.y8{bottom:766.905000px;}
.y135{bottom:769.065000px;}
.y176{bottom:771.585000px;}
.y151{bottom:775.905000px;}
.y106{bottom:778.965000px;}
.yfd{bottom:779.145000px;}
.y1b8{bottom:779.505000px;}
.y168{bottom:783.105000px;}
.y25{bottom:784.365000px;}
.y77{bottom:784.905000px;}
.y4b{bottom:786.345000px;}
.y18d{bottom:788.325000px;}
.y7{bottom:792.285000px;}
.y134{bottom:794.265000px;}
.y150{bottom:801.285000px;}
.y98{bottom:802.005000px;}
.y1b7{bottom:804.885000px;}
.y167{bottom:808.485000px;}
.y24{bottom:809.565000px;}
.y4a{bottom:810.105000px;}
.y105{bottom:811.725000px;}
.y18c{bottom:813.525000px;}
.y6{bottom:817.485000px;}
.y133{bottom:819.690000px;}
.y14f{bottom:826.530000px;}
.y23{bottom:834.810000px;}
.y49{bottom:835.530000px;}
.y18b{bottom:838.950000px;}
.y166{bottom:839.670000px;}
.y175{bottom:844.350000px;}
.y132{bottom:844.890000px;}
.y1b6{bottom:845.070000px;}
.y14e{bottom:851.730000px;}
.y5{bottom:857.130000px;}
.y22{bottom:860.190000px;}
.y48{bottom:860.730000px;}
.y104{bottom:863.790000px;}
.y18a{bottom:864.150000px;}
.y81{bottom:869.190000px;}
.y131{bottom:870.090000px;}
.y1b5{bottom:870.450000px;}
.y14d{bottom:877.110000px;}
.y21{bottom:885.390000px;}
.y47{bottom:885.930000px;}
.y103{bottom:889.170000px;}
.y130{bottom:895.470000px;}
.y1b4{bottom:895.650000px;}
.y189{bottom:896.730000px;}
.y14c{bottom:909.690000px;}
.y20{bottom:910.770000px;}
.y46{bottom:911.310000px;}
.y102{bottom:914.190000px;}
.y12f{bottom:920.670000px;}
.y174{bottom:930.390000px;}
.y7f{bottom:932.010000px;}
.y4{bottom:933.450000px;}
.y1f{bottom:935.970000px;}
.y45{bottom:936.510000px;}
.y188{bottom:948.210000px;}
.y101{bottom:954.690000px;}
.y1e{bottom:961.170000px;}
.y44{bottom:961.710000px;}
.y12e{bottom:962.250000px;}
.y172{bottom:969.990000px;}
.y7e{bottom:971.610000px;}
.y100{bottom:979.890000px;}
.y1d{bottom:986.550000px;}
.y43{bottom:987.090000px;}
.y3{bottom:988.170000px;}
.y7d{bottom:994.830000px;}
.y1c{bottom:1011.750000px;}
.y42{bottom:1012.290000px;}
.y12d{bottom:1013.730000px;}
.y7c{bottom:1018.050000px;}
.yff{bottom:1020.210000px;}
.y41{bottom:1037.670000px;}
.y7b{bottom:1041.090000px;}
.y2{bottom:1042.890000px;}
.y1b{bottom:1051.350000px;}
.yfe{bottom:1057.110000px;}
.y40{bottom:1062.870000px;}
.y7a{bottom:1064.310000px;}
.he{height:23.040000px;}
.hb{height:23.220000px;}
.h16{height:31.500000px;}
.hc{height:46.260000px;}
.h4{height:50.585625px;}
.h18{height:54.000000px;}
.h5{height:54.984375px;}
.h7{height:65.884219px;}
.h8{height:67.824844px;}
.ha{height:68.084282px;}
.h17{height:69.480000px;}
.h1{height:71.613281px;}
.h6{height:73.722656px;}
.h9{height:74.004654px;}
.h13{height:83.787539px;}
.h14{height:86.585445px;}
.h12{height:95.245664px;}
.h15{height:98.426190px;}
.hf{height:115.776000px;}
.h3{height:119.594180px;}
.h19{height:123.587773px;}
.hd{height:138.996000px;}
.h2{height:155.400820px;}
.h11{height:162.210000px;}
.h10{height:185.220000px;}
.h0{height:1188.000000px;}
.w5{width:180.930000px;}
.w2{width:184.530000px;}
.w7{width:194.430000px;}
.w8{width:239.250000px;}
.w9{width:264.090000px;}
.w3{width:502.995000px;}
.w6{width:518.295000px;}
.w4{width:700.665000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x6{left:7.560000px;}
.x10{left:28.440000px;}
.x12{left:46.980000px;}
.xc{left:64.254000px;}
.xe{left:70.914000px;}
.x2{left:108.035986px;}
.xb{left:109.476000px;}
.x4{left:135.035986px;}
.x5{left:162.029986px;}
.xd{left:194.970000px;}
.x7{left:292.575000px;}
.xf{left:305.355000px;}
.x11{left:546.045000px;}
.x3{left:741.209986px;}
.xa{left:783.509986px;}
.x9{left:784.949986px;}
.x8{left:791.969986px;}
.x1{left:800.969986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-1.280000pt;}
.ls3{letter-spacing:-0.768000pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.512000pt;}
.ls11{letter-spacing:-0.448000pt;}
.ls5{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.192000pt;}
.lsd{letter-spacing:0.256000pt;}
.lsb{letter-spacing:0.320000pt;}
.lsc{letter-spacing:7.168000pt;}
.lsa{letter-spacing:29.546667pt;}
.ls8{letter-spacing:39.786667pt;}
.lse{letter-spacing:58.346667pt;}
.ls12{letter-spacing:738.426027pt;}
.ls10{letter-spacing:744.475307pt;}
.ls9{letter-spacing:751.770027pt;}
.ws8{word-spacing:-24.154880pt;}
.ws2{word-spacing:-16.922880pt;}
.ws4{word-spacing:-14.784000pt;}
.ws3{word-spacing:-14.656000pt;}
.ws0{word-spacing:-14.464000pt;}
.ws6{word-spacing:-14.272000pt;}
.ws7{word-spacing:-14.016000pt;}
.ws5{word-spacing:-13.306880pt;}
.ws1{word-spacing:0.000000pt;}
._a{margin-left:-3.998080pt;}
._9{margin-left:-2.752000pt;}
._0{margin-left:-1.249920pt;}
._4{width:1.024000pt;}
._8{width:2.688000pt;}
._7{width:3.584000pt;}
._6{width:4.705920pt;}
._3{width:5.632000pt;}
._5{width:6.826667pt;}
._10{width:7.744000pt;}
._11{width:9.280000pt;}
._18{width:10.176000pt;}
._12{width:11.072000pt;}
._c{width:12.102827pt;}
._b{width:13.537920pt;}
._f{width:15.367680pt;}
._e{width:16.576000pt;}
._15{width:17.667840pt;}
._2{width:18.560000pt;}
._1{width:19.840000pt;}
._13{width:20.928000pt;}
._1b{width:22.551040pt;}
._d{width:24.128000pt;}
._14{width:30.656000pt;}
._20{width:31.744000pt;}
._1f{width:32.704000pt;}
._16{width:39.616000pt;}
._17{width:40.737920pt;}
._25{width:44.385920pt;}
._24{width:45.632000pt;}
._1d{width:46.976000pt;}
._1c{width:47.936000pt;}
._22{width:52.001920pt;}
._21{width:53.056000pt;}
._19{width:57.664000pt;}
._1a{width:58.785920pt;}
._23{width:60.480000pt;}
._1e{width:214.080000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.fs3{font-size:106.880000pt;}
.fs2{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y89{bottom:6.560000pt;}
.y80{bottom:6.720000pt;}
.y173{bottom:14.080000pt;}
.y82{bottom:27.200000pt;}
.y8e{bottom:27.226667pt;}
.y87{bottom:47.840000pt;}
.y8d{bottom:47.866667pt;}
.y1{bottom:55.040000pt;}
.y94{bottom:68.320000pt;}
.y8c{bottom:68.346667pt;}
.y86{bottom:68.480000pt;}
.y93{bottom:88.960000pt;}
.y8b{bottom:88.986667pt;}
.y85{bottom:89.120000pt;}
.y11f{bottom:100.512000pt;}
.y92{bottom:109.600000pt;}
.y84{bottom:109.640000pt;}
.y14b{bottom:109.792000pt;}
.yfc{bottom:112.032000pt;}
.y76{bottom:112.352000pt;}
.y3f{bottom:113.152000pt;}
.yca{bottom:113.632000pt;}
.yb0{bottom:118.592000pt;}
.y97{bottom:121.312000pt;}
.y12c{bottom:121.952000pt;}
.y11e{bottom:122.912000pt;}
.yd4{bottom:128.192000pt;}
.y165{bottom:129.472000pt;}
.y91{bottom:130.080000pt;}
.y96{bottom:130.240000pt;}
.y1cc{bottom:132.032000pt;}
.y14a{bottom:132.352000pt;}
.y1a4{bottom:132.512000pt;}
.yfb{bottom:134.426667pt;}
.y75{bottom:134.746667pt;}
.y3e{bottom:135.546667pt;}
.yc9{bottom:136.026667pt;}
.y62{bottom:138.266667pt;}
.yaf{bottom:140.986667pt;}
.y95{bottom:143.226667pt;}
.y12b{bottom:144.506667pt;}
.y11d{bottom:145.466667pt;}
.yd3{bottom:150.586667pt;}
.y90{bottom:150.720000pt;}
.y164{bottom:151.866667pt;}
.y1a3{bottom:153.626667pt;}
.y1cb{bottom:154.586667pt;}
.y149{bottom:154.746667pt;}
.y74{bottom:157.306667pt;}
.y187{bottom:157.786667pt;}
.y3d{bottom:157.946667pt;}
.yc8{bottom:158.586667pt;}
.y61{bottom:158.906667pt;}
.yfa{bottom:163.386667pt;}
.yae{bottom:163.546667pt;}
.y12a{bottom:166.906667pt;}
.y11c{bottom:167.866667pt;}
.yd2{bottom:172.986667pt;}
.y163{bottom:174.266667pt;}
.y1a2{bottom:176.026667pt;}
.y1ca{bottom:176.986667pt;}
.y148{bottom:177.146667pt;}
.y60{bottom:179.386667pt;}
.y73{bottom:179.706667pt;}
.y186{bottom:180.186667pt;}
.y3c{bottom:180.506667pt;}
.yc7{bottom:180.986667pt;}
.yad{bottom:185.946667pt;}
.y129{bottom:189.306667pt;}
.y11b{bottom:190.266667pt;}
.yd1{bottom:195.546667pt;}
.y1a1{bottom:198.586667pt;}
.y1c9{bottom:199.386667pt;}
.y5f{bottom:200.666667pt;}
.y72{bottom:202.106667pt;}
.y185{bottom:202.746667pt;}
.y3b{bottom:202.906667pt;}
.yc6{bottom:203.386667pt;}
.y147{bottom:206.266667pt;}
.yac{bottom:208.506667pt;}
.y128{bottom:211.866667pt;}
.y11a{bottom:212.826667pt;}
.yd0{bottom:217.946667pt;}
.yf9{bottom:220.346667pt;}
.y1a0{bottom:220.986667pt;}
.y5e{bottom:223.066667pt;}
.y71{bottom:224.666667pt;}
.y184{bottom:225.146667pt;}
.y3a{bottom:225.466667pt;}
.yc5{bottom:225.946667pt;}
.y1a{bottom:229.626667pt;}
.yab{bottom:230.906667pt;}
.y127{bottom:234.266667pt;}
.y119{bottom:235.226667pt;}
.ycf{bottom:240.506667pt;}
.yf8{bottom:242.906667pt;}
.y19f{bottom:243.546667pt;}
.y5d{bottom:245.466667pt;}
.y70{bottom:247.066667pt;}
.y183{bottom:247.546667pt;}
.y39{bottom:247.866667pt;}
.yc4{bottom:248.346667pt;}
.y162{bottom:249.626667pt;}
.y19{bottom:252.026667pt;}
.yaa{bottom:253.306667pt;}
.y126{bottom:256.826667pt;}
.y1c8{bottom:257.786667pt;}
.yce{bottom:262.906667pt;}
.y118{bottom:264.346667pt;}
.yf7{bottom:265.306667pt;}
.y19e{bottom:265.946667pt;}
.y5c{bottom:268.026667pt;}
.y6f{bottom:269.626667pt;}
.y182{bottom:270.106667pt;}
.y38{bottom:270.266667pt;}
.yc3{bottom:270.906667pt;}
.y146{bottom:273.146667pt;}
.y18{bottom:274.426667pt;}
.ya9{bottom:275.866667pt;}
.y161{bottom:277.466667pt;}
.y125{bottom:279.226667pt;}
.y1c7{bottom:280.186667pt;}
.ycd{bottom:285.346667pt;}
.yf6{bottom:287.906667pt;}
.y19d{bottom:288.386667pt;}
.y5b{bottom:290.466667pt;}
.y6e{bottom:292.066667pt;}
.y181{bottom:292.546667pt;}
.y37{bottom:292.866667pt;}
.yc2{bottom:293.346667pt;}
.yda{bottom:293.506667pt;}
.y145{bottom:295.586667pt;}
.y17{bottom:297.026667pt;}
.ya8{bottom:298.306667pt;}
.y160{bottom:299.906667pt;}
.y1b3{bottom:300.706667pt;}
.y124{bottom:301.666667pt;}
.y8f{bottom:302.146667pt;}
.y1c6{bottom:302.626667pt;}
.ycc{bottom:307.906667pt;}
.yf5{bottom:310.306667pt;}
.y117{bottom:310.626667pt;}
.y19c{bottom:310.946667pt;}
.y5a{bottom:313.026667pt;}
.y6d{bottom:314.466667pt;}
.y180{bottom:314.946667pt;}
.y36{bottom:315.266667pt;}
.yc1{bottom:315.746667pt;}
.yd9{bottom:315.906667pt;}
.y144{bottom:318.146667pt;}
.y16{bottom:319.426667pt;}
.ya7{bottom:320.706667pt;}
.y15f{bottom:322.306667pt;}
.y1b2{bottom:323.106667pt;}
.y123{bottom:324.226667pt;}
.y1c5{bottom:325.186667pt;}
.yf4{bottom:332.706667pt;}
.y116{bottom:333.026667pt;}
.y19b{bottom:333.346667pt;}
.y59{bottom:335.426667pt;}
.ycb{bottom:336.866667pt;}
.y6c{bottom:337.026667pt;}
.y17f{bottom:337.506667pt;}
.y35{bottom:337.826667pt;}
.yc0{bottom:338.306667pt;}
.y143{bottom:340.546667pt;}
.y15{bottom:341.986667pt;}
.ya6{bottom:343.266667pt;}
.y1b1{bottom:345.666667pt;}
.y122{bottom:346.626667pt;}
.y1c4{bottom:347.586667pt;}
.yf3{bottom:355.266667pt;}
.y115{bottom:355.586667pt;}
.y19a{bottom:355.746667pt;}
.y58{bottom:357.826667pt;}
.y6b{bottom:359.426667pt;}
.y17e{bottom:359.906667pt;}
.y34{bottom:360.226667pt;}
.ybf{bottom:360.706667pt;}
.yd8{bottom:360.866667pt;}
.y142{bottom:363.106667pt;}
.y14{bottom:364.386667pt;}
.ya5{bottom:365.666667pt;}
.y1b0{bottom:368.066667pt;}
.y15e{bottom:368.546667pt;}
.y1c3{bottom:369.986667pt;}
.yf2{bottom:377.666667pt;}
.y114{bottom:377.986667pt;}
.y199{bottom:378.306667pt;}
.y57{bottom:380.386667pt;}
.y6a{bottom:381.826667pt;}
.y33{bottom:382.626667pt;}
.ybe{bottom:383.106667pt;}
.yd7{bottom:383.266667pt;}
.y121{bottom:383.586667pt;}
.y13{bottom:386.786667pt;}
.ya4{bottom:388.226667pt;}
.y1af{bottom:390.466667pt;}
.y141{bottom:392.066667pt;}
.y17d{bottom:395.746667pt;}
.yf1{bottom:399.586667pt;}
.y113{bottom:400.386667pt;}
.y56{bottom:402.786667pt;}
.y69{bottom:404.386667pt;}
.y32{bottom:405.186667pt;}
.ybd{bottom:405.666667pt;}
.y1c2{bottom:405.826667pt;}
.y198{bottom:407.266667pt;}
.y12{bottom:409.346667pt;}
.ye6{bottom:409.826667pt;}
.ya3{bottom:410.626667pt;}
.yd6{bottom:412.226667pt;}
.y1ae{bottom:413.026667pt;}
.yf0{bottom:420.066667pt;}
.y15d{bottom:420.226667pt;}
.y112{bottom:422.946667pt;}
.y55{bottom:425.186667pt;}
.y68{bottom:426.786667pt;}
.y31{bottom:427.586667pt;}
.ybc{bottom:428.066667pt;}
.y1c1{bottom:428.386667pt;}
.y120{bottom:429.346667pt;}
.y11{bottom:431.746667pt;}
.ye5{bottom:432.386667pt;}
.ya2{bottom:433.026667pt;}
.y1ad{bottom:435.426667pt;}
.y17c{bottom:436.866667pt;}
.y140{bottom:437.826667pt;}
.yd5{bottom:438.306667pt;}
.yef{bottom:440.706667pt;}
.y15c{bottom:442.626667pt;}
.y111{bottom:445.346667pt;}
.y54{bottom:447.746667pt;}
.y67{bottom:449.346667pt;}
.y30{bottom:449.986667pt;}
.ybb{bottom:450.626667pt;}
.y1c0{bottom:450.786667pt;}
.y197{bottom:453.666667pt;}
.y10{bottom:454.306667pt;}
.ye4{bottom:454.786667pt;}
.ya1{bottom:455.586667pt;}
.y1ac{bottom:457.986667pt;}
.y13f{bottom:458.946667pt;}
.yee{bottom:461.346667pt;}
.y15b{bottom:465.026667pt;}
.y110{bottom:467.906667pt;}
.y53{bottom:470.146667pt;}
.y66{bottom:471.746667pt;}
.y2f{bottom:472.546667pt;}
.y17b{bottom:472.706667pt;}
.yba{bottom:473.026667pt;}
.y196{bottom:476.066667pt;}
.yf{bottom:476.706667pt;}
.ye3{bottom:477.346667pt;}
.ya0{bottom:477.986667pt;}
.y1ab{bottom:480.066667pt;}
.y13e{bottom:481.346667pt;}
.y8a{bottom:481.506667pt;}
.yed{bottom:481.826667pt;}
.y1bf{bottom:486.626667pt;}
.y15a{bottom:487.586667pt;}
.y10f{bottom:490.306667pt;}
.y52{bottom:492.706667pt;}
.y2e{bottom:494.946667pt;}
.y17a{bottom:495.106667pt;}
.yb9{bottom:495.426667pt;}
.y171{bottom:497.026667pt;}
.y195{bottom:498.466667pt;}
.ye{bottom:499.106667pt;}
.ye2{bottom:499.746667pt;}
.y9f{bottom:500.386667pt;}
.y65{bottom:501.026667pt;}
.yec{bottom:502.466667pt;}
.y13d{bottom:503.906667pt;}
.y1be{bottom:509.053333pt;}
.y159{bottom:510.013333pt;}
.y10e{bottom:512.733333pt;}
.y51{bottom:515.133333pt;}
.y179{bottom:517.053333pt;}
.y2d{bottom:517.533333pt;}
.y170{bottom:517.693333pt;}
.yb8{bottom:518.013333pt;}
.y194{bottom:521.053333pt;}
.yd{bottom:521.693333pt;}
.ye1{bottom:522.173333pt;}
.y64{bottom:522.973333pt;}
.yeb{bottom:523.133333pt;}
.y1aa{bottom:524.893333pt;}
.y13c{bottom:526.333333pt;}
.y1bd{bottom:531.453333pt;}
.y158{bottom:532.413333pt;}
.y10d{bottom:535.293333pt;}
.y50{bottom:537.533333pt;}
.y16f{bottom:538.973333pt;}
.y2c{bottom:539.933333pt;}
.yb7{bottom:540.413333pt;}
.y63{bottom:543.453333pt;}
.yea{bottom:543.773333pt;}
.yc{bottom:544.093333pt;}
.ye0{bottom:544.733333pt;}
.y9e{bottom:545.373333pt;}
.y1a9{bottom:547.453333pt;}
.y13b{bottom:548.893333pt;}
.y157{bottom:554.973333pt;}
.y10c{bottom:557.693333pt;}
.y4f{bottom:560.093333pt;}
.y16e{bottom:561.373333pt;}
.y2b{bottom:562.333333pt;}
.yb6{bottom:562.973333pt;}
.ye9{bottom:564.253333pt;}
.y193{bottom:566.013333pt;}
.yb{bottom:566.493333pt;}
.ydf{bottom:567.133333pt;}
.y1bc{bottom:567.293333pt;}
.y9d{bottom:567.933333pt;}
.y1a8{bottom:569.853333pt;}
.y13a{bottom:571.293333pt;}
.y156{bottom:577.373333pt;}
.y10b{bottom:580.253333pt;}
.y4e{bottom:582.493333pt;}
.y16d{bottom:583.773333pt;}
.y2a{bottom:584.893333pt;}
.yb5{bottom:585.373333pt;}
.y192{bottom:588.413333pt;}
.yde{bottom:589.693333pt;}
.y9c{bottom:590.333333pt;}
.y1a7{bottom:592.253333pt;}
.y139{bottom:593.693333pt;}
.y88{bottom:599.133333pt;}
.y155{bottom:599.933333pt;}
.ya{bottom:601.693333pt;}
.y10a{bottom:602.653333pt;}
.y4d{bottom:604.893333pt;}
.ye8{bottom:605.533333pt;}
.y16c{bottom:606.333333pt;}
.y29{bottom:607.293333pt;}
.yb4{bottom:607.773333pt;}
.y191{bottom:610.813333pt;}
.ydd{bottom:611.453333pt;}
.y1bb{bottom:612.253333pt;}
.y9b{bottom:612.733333pt;}
.y1a6{bottom:614.813333pt;}
.y178{bottom:615.453333pt;}
.y138{bottom:616.253333pt;}
.ye7{bottom:622.013333pt;}
.y154{bottom:622.333333pt;}
.y109{bottom:625.053333pt;}
.y16b{bottom:628.733333pt;}
.y28{bottom:629.693333pt;}
.yb3{bottom:630.333333pt;}
.ydc{bottom:632.093333pt;}
.y190{bottom:633.373333pt;}
.y83{bottom:634.333333pt;}
.y9a{bottom:635.293333pt;}
.y137{bottom:638.653333pt;}
.y4c{bottom:640.093333pt;}
.y1a5{bottom:642.013333pt;}
.y153{bottom:644.733333pt;}
.y108{bottom:647.613333pt;}
.y1ba{bottom:648.093333pt;}
.y177{bottom:650.653333pt;}
.y16a{bottom:651.133333pt;}
.y27{bottom:652.253333pt;}
.yb2{bottom:652.733333pt;}
.y18f{bottom:655.773333pt;}
.y79{bottom:655.933333pt;}
.y9{bottom:660.573333pt;}
.y136{bottom:661.053333pt;}
.y99{bottom:664.253333pt;}
.y152{bottom:667.293333pt;}
.ydb{bottom:669.213333pt;}
.y107{bottom:670.013333pt;}
.y1b9{bottom:670.493333pt;}
.y169{bottom:673.693333pt;}
.y26{bottom:674.653333pt;}
.yb1{bottom:675.133333pt;}
.y78{bottom:676.413333pt;}
.y18e{bottom:678.173333pt;}
.y8{bottom:681.693333pt;}
.y135{bottom:683.613333pt;}
.y176{bottom:685.853333pt;}
.y151{bottom:689.693333pt;}
.y106{bottom:692.413333pt;}
.yfd{bottom:692.573333pt;}
.y1b8{bottom:692.893333pt;}
.y168{bottom:696.093333pt;}
.y25{bottom:697.213333pt;}
.y77{bottom:697.693333pt;}
.y4b{bottom:698.973333pt;}
.y18d{bottom:700.733333pt;}
.y7{bottom:704.253333pt;}
.y134{bottom:706.013333pt;}
.y150{bottom:712.253333pt;}
.y98{bottom:712.893333pt;}
.y1b7{bottom:715.453333pt;}
.y167{bottom:718.653333pt;}
.y24{bottom:719.613333pt;}
.y4a{bottom:720.093333pt;}
.y105{bottom:721.533333pt;}
.y18c{bottom:723.133333pt;}
.y6{bottom:726.653333pt;}
.y133{bottom:728.613333pt;}
.y14f{bottom:734.693333pt;}
.y23{bottom:742.053333pt;}
.y49{bottom:742.693333pt;}
.y18b{bottom:745.733333pt;}
.y166{bottom:746.373333pt;}
.y175{bottom:750.533333pt;}
.y132{bottom:751.013333pt;}
.y1b6{bottom:751.173333pt;}
.y14e{bottom:757.093333pt;}
.y5{bottom:761.893333pt;}
.y22{bottom:764.613333pt;}
.y48{bottom:765.093333pt;}
.y104{bottom:767.813333pt;}
.y18a{bottom:768.133333pt;}
.y81{bottom:772.613333pt;}
.y131{bottom:773.413333pt;}
.y1b5{bottom:773.733333pt;}
.y14d{bottom:779.653333pt;}
.y21{bottom:787.013333pt;}
.y47{bottom:787.493333pt;}
.y103{bottom:790.373333pt;}
.y130{bottom:795.973333pt;}
.y1b4{bottom:796.133333pt;}
.y189{bottom:797.093333pt;}
.y14c{bottom:808.613333pt;}
.y20{bottom:809.573333pt;}
.y46{bottom:810.053333pt;}
.y102{bottom:812.613333pt;}
.y12f{bottom:818.373333pt;}
.y174{bottom:827.013333pt;}
.y7f{bottom:828.453333pt;}
.y4{bottom:829.733333pt;}
.y1f{bottom:831.973333pt;}
.y45{bottom:832.453333pt;}
.y188{bottom:842.853333pt;}
.y101{bottom:848.613333pt;}
.y1e{bottom:854.373333pt;}
.y44{bottom:854.853333pt;}
.y12e{bottom:855.333333pt;}
.y172{bottom:862.213333pt;}
.y7e{bottom:863.653333pt;}
.y100{bottom:871.013333pt;}
.y1d{bottom:876.933333pt;}
.y43{bottom:877.413333pt;}
.y3{bottom:878.373333pt;}
.y7d{bottom:884.293333pt;}
.y1c{bottom:899.333333pt;}
.y42{bottom:899.813333pt;}
.y12d{bottom:901.093333pt;}
.y7c{bottom:904.933333pt;}
.yff{bottom:906.853333pt;}
.y41{bottom:922.373333pt;}
.y7b{bottom:925.413333pt;}
.y2{bottom:927.013333pt;}
.y1b{bottom:934.533333pt;}
.yfe{bottom:939.653333pt;}
.y40{bottom:944.773333pt;}
.y7a{bottom:946.053333pt;}
.he{height:20.480000pt;}
.hb{height:20.640000pt;}
.h16{height:28.000000pt;}
.hc{height:41.120000pt;}
.h4{height:44.965000pt;}
.h18{height:48.000000pt;}
.h5{height:48.875000pt;}
.h7{height:58.563750pt;}
.h8{height:60.288750pt;}
.ha{height:60.519362pt;}
.h17{height:61.760000pt;}
.h1{height:63.656250pt;}
.h6{height:65.531250pt;}
.h9{height:65.781915pt;}
.h13{height:74.477812pt;}
.h14{height:76.964840pt;}
.h12{height:84.662813pt;}
.h15{height:87.489947pt;}
.hf{height:102.912000pt;}
.h3{height:106.305937pt;}
.h19{height:109.855798pt;}
.hd{height:123.552000pt;}
.h2{height:138.134062pt;}
.h11{height:144.186667pt;}
.h10{height:164.640000pt;}
.h0{height:1056.000000pt;}
.w5{width:160.826667pt;}
.w2{width:164.026667pt;}
.w7{width:172.826667pt;}
.w8{width:212.666667pt;}
.w9{width:234.746667pt;}
.w3{width:447.106667pt;}
.w6{width:460.706667pt;}
.w4{width:622.813333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x6{left:6.720000pt;}
.x10{left:25.280000pt;}
.x12{left:41.760000pt;}
.xc{left:57.114667pt;}
.xe{left:63.034667pt;}
.x2{left:96.031988pt;}
.xb{left:97.312000pt;}
.x4{left:120.031988pt;}
.x5{left:144.026655pt;}
.xd{left:173.306667pt;}
.x7{left:260.066667pt;}
.xf{left:271.426667pt;}
.x11{left:485.373333pt;}
.x3{left:658.853321pt;}
.xa{left:696.453321pt;}
.x9{left:697.733321pt;}
.x8{left:703.973321pt;}
.x1{left:711.973321pt;}
}




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