
    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_67e1476b3cf2425f510709e0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.982910;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_0d7179f1ecfaa2e8bd9fb5ab.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.940918;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_273e2f02a47f7a4b8b5625e3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_99fffcf88cc4b8084767c214.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.120117;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_835da4dd43da7961ae53c919.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_d7c845f0e6bccbfca8337510.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_34295ffa7761e8b897e2c0a2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_068e9bf4bc14439cbacba9cb.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.120117;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_594f6a71d5e311fe52af6d9b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_ad7f819aae84f35df00973f1.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938477;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);}
.v2{vertical-align:-20.880060px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.lsf{letter-spacing:-1.656000px;}
.ls8{letter-spacing:-1.296000px;}
.ls9{letter-spacing:-1.152000px;}
.lsb{letter-spacing:-0.575940px;}
.ls7{letter-spacing:-0.432060px;}
.ls5{letter-spacing:-0.216000px;}
.ls4{letter-spacing:-0.144000px;}
.ls2{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.143880px;}
.lsa{letter-spacing:0.144000px;}
.lse{letter-spacing:0.144060px;}
.ls1{letter-spacing:0.149940px;}
.ls3{letter-spacing:0.216000px;}
.ls6{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.322587px;}
.ls13{letter-spacing:0.864000px;}
.ls11{letter-spacing:2.376000px;}
.lsd{letter-spacing:5.903940px;}
.ls12{letter-spacing:6.084000px;}
.lsc{letter-spacing:65.664000px;}
.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:-16.704000px;}
.ws1{word-spacing:-16.632000px;}
.ws0{word-spacing:-16.416000px;}
.ws2{word-spacing:-16.272000px;}
.ws6{word-spacing:-16.200000px;}
.ws7{word-spacing:-15.983940px;}
.ws4{word-spacing:-8.786880px;}
.ws5{word-spacing:0.000000px;}
._b{margin-left:-12.813714px;}
._19{margin-left:-5.331332px;}
._c{margin-left:-3.957418px;}
._8{margin-left:-2.360881px;}
._0{margin-left:-1.095119px;}
._1{width:1.115940px;}
._3{width:2.232120px;}
._2{width:3.384000px;}
._5{width:4.680000px;}
._4{width:5.760000px;}
._9{width:6.984000px;}
._a{width:7.991523px;}
._d{width:9.254642px;}
._7{width:10.269358px;}
._6{width:11.376000px;}
._11{width:13.320000px;}
._10{width:15.264000px;}
._18{width:17.424000px;}
._13{width:18.432000px;}
._12{width:20.016000px;}
._14{width:21.648000px;}
._f{width:23.040000px;}
._e{width:24.240000px;}
._17{width:25.488000px;}
._16{width:26.955119px;}
._15{width:28.584000px;}
._1b{width:30.144000px;}
._21{width:42.480000px;}
._20{width:43.632000px;}
._1e{width:85.752000px;}
._1d{width:87.336000px;}
._1f{width:349.272000px;}
._1a{width:555.768000px;}
._1c{width:1964.592000px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:48.239940px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:59.760060px;}
.fs0{font-size:66.239940px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:84.239940px;}
.y0{bottom:0.000000px;}
.y2{bottom:56.520015px;}
.y2d{bottom:63.750000px;}
.y1{bottom:73.980015px;}
.y2c{bottom:110.160000px;}
.y17e{bottom:114.120000px;}
.y120{bottom:117.360015px;}
.y83{bottom:119.880000px;}
.y67{bottom:124.380000px;}
.y2b{bottom:128.340000px;}
.yd6{bottom:128.880000px;}
.y133{bottom:129.240000px;}
.y17d{bottom:134.820000px;}
.y8c{bottom:136.800015px;}
.y11f{bottom:141.120000px;}
.yfa{bottom:143.280000px;}
.y66{bottom:145.080000px;}
.y2a{bottom:146.700000px;}
.y157{bottom:146.880000px;}
.y57{bottom:150.120000px;}
.yaf{bottom:151.920000px;}
.yd5{bottom:152.639985px;}
.y132{bottom:153.000000px;}
.y82{bottom:154.260000px;}
.y17c{bottom:155.520015px;}
.y11e{bottom:164.910000px;}
.y29{bottom:165.090000px;}
.y65{bottom:165.810015px;}
.yf9{bottom:167.070000px;}
.y156{bottom:169.230015px;}
.y56{bottom:170.850015px;}
.yae{bottom:174.270015px;}
.y17b{bottom:176.070000px;}
.yd4{bottom:176.430000px;}
.y131{bottom:176.610015px;}
.y28{bottom:183.270015px;}
.y64{bottom:186.510000px;}
.y81{bottom:188.490000px;}
.y11d{bottom:188.670000px;}
.yf8{bottom:190.830000px;}
.y55{bottom:191.370000px;}
.y155{bottom:191.550015px;}
.yad{bottom:196.590000px;}
.y17a{bottom:196.769985px;}
.yd3{bottom:200.189985px;}
.y27{bottom:206.850015px;}
.y80{bottom:210.809985px;}
.y54{bottom:212.069985px;}
.y11c{bottom:212.430000px;}
.y154{bottom:213.870000px;}
.yf7{bottom:214.590000px;}
.y179{bottom:217.470000px;}
.yac{bottom:218.910000px;}
.y63{bottom:219.090000px;}
.y26{bottom:220.530000px;}
.yd2{bottom:223.950000px;}
.y7f{bottom:233.130000px;}
.y11b{bottom:236.189985px;}
.y178{bottom:238.170000px;}
.yab{bottom:241.050000px;}
.y53{bottom:244.650015px;}
.yd1{bottom:247.710000px;}
.yf6{bottom:250.229985px;}
.y62{bottom:251.670000px;}
.y25{bottom:253.650015px;}
.y7e{bottom:255.450000px;}
.y153{bottom:258.510000px;}
.y177{bottom:258.689985px;}
.y11a{bottom:259.950000px;}
.yaa{bottom:263.370000px;}
.y52{bottom:265.350015px;}
.yd0{bottom:271.470000px;}
.yf5{bottom:273.989985px;}
.y176{bottom:279.389970px;}
.y61{bottom:280.470000px;}
.y152{bottom:280.650015px;}
.y119{bottom:283.710000px;}
.ya9{bottom:285.689985px;}
.y51{bottom:286.050000px;}
.y24{bottom:286.410000px;}
.y7d{bottom:289.650015px;}
.ycf{bottom:295.229985px;}
.yf4{bottom:297.750000px;}
.y175{bottom:300.090000px;}
.y151{bottom:302.970000px;}
.y50{bottom:306.750000px;}
.y118{bottom:307.470000px;}
.ya8{bottom:308.010000px;}
.yce{bottom:318.809970px;}
.y23{bottom:318.989985px;}
.y174{bottom:320.790000px;}
.yf3{bottom:321.510000px;}
.y7c{bottom:324.029985px;}
.y150{bottom:325.290000px;}
.y4f{bottom:327.450000px;}
.y117{bottom:331.229970px;}
.y173{bottom:341.309970px;}
.ya7{bottom:342.210000px;}
.yf2{bottom:345.269970px;}
.y14f{bottom:347.609985px;}
.y4e{bottom:347.970000px;}
.y22{bottom:351.389970px;}
.ycd{bottom:353.189985px;}
.y116{bottom:354.989985px;}
.y7b{bottom:356.609985px;}
.y172{bottom:362.010000px;}
.ya6{bottom:364.529985px;}
.y4d{bottom:368.670000px;}
.yf1{bottom:369.029985px;}
.y14e{bottom:369.930000px;}
.y7a{bottom:377.309970px;}
.y130{bottom:378.750000px;}
.y21{bottom:382.529985px;}
.y171{bottom:382.710000px;}
.ya5{bottom:386.849985px;}
.ycc{bottom:387.389970px;}
.y4c{bottom:389.369985px;}
.y115{bottom:390.629970px;}
.yf0{bottom:392.789985px;}
.y79{bottom:398.010000px;}
.y12f{bottom:402.510000px;}
.y170{bottom:403.410000px;}
.y14d{bottom:404.129970px;}
.ya4{bottom:409.215000px;}
.y114{bottom:414.435015px;}
.y20{bottom:415.334970px;}
.yef{bottom:416.594970px;}
.y78{bottom:418.754970px;}
.ycb{bottom:421.814985px;}
.y4b{bottom:421.994985px;}
.y16f{bottom:423.974985px;}
.y12e{bottom:426.314985px;}
.ya3{bottom:431.535000px;}
.y14c{bottom:438.555000px;}
.y77{bottom:439.275015px;}
.y4a{bottom:442.695000px;}
.yca{bottom:444.135000px;}
.y16e{bottom:444.674970px;}
.y1f{bottom:447.914985px;}
.y113{bottom:450.254970px;}
.yee{bottom:452.414985px;}
.ya2{bottom:453.855015px;}
.y76{bottom:459.974985px;}
.y12d{bottom:461.955000px;}
.y49{bottom:463.394985px;}
.y16d{bottom:465.375000px;}
.yc9{bottom:466.455000px;}
.y1e{bottom:468.615000px;}
.y112{bottom:474.014970px;}
.y14b{bottom:474.195000px;}
.ya1{bottom:475.994985px;}
.y75{bottom:480.674970px;}
.y48{bottom:483.914985px;}
.y12c{bottom:485.715000px;}
.y16c{bottom:486.074985px;}
.yc8{bottom:488.594970px;}
.y1d{bottom:489.314985px;}
.y111{bottom:497.775015px;}
.y14a{bottom:497.955000px;}
.ya0{bottom:498.314985px;}
.yed{bottom:499.754970px;}
.y47{bottom:504.615000px;}
.y16b{bottom:506.594970px;}
.y12b{bottom:509.474985px;}
.y1c{bottom:510.014970px;}
.yc7{bottom:510.914985px;}
.y74{bottom:513.254970px;}
.y110{bottom:521.535000px;}
.y149{bottom:521.715000px;}
.yec{bottom:523.514970px;}
.y46{bottom:525.314985px;}
.y16a{bottom:527.295000px;}
.y1b{bottom:530.715000px;}
.y9f{bottom:532.695000px;}
.yc6{bottom:533.234985px;}
.y73{bottom:533.955000px;}
.y10f{bottom:545.295000px;}
.y148{bottom:545.474985px;}
.y45{bottom:546.014970px;}
.yeb{bottom:547.275015px;}
.y169{bottom:547.994985px;}
.y1a{bottom:551.234985px;}
.y72{bottom:554.654985px;}
.y9e{bottom:554.834970px;}
.y12a{bottom:556.994985px;}
.y194{bottom:561.314985px;}
.y44{bottom:566.535000px;}
.yc5{bottom:567.615000px;}
.y168{bottom:568.514970px;}
.y10e{bottom:569.055000px;}
.y147{bottom:569.234985px;}
.yea{bottom:571.035000px;}
.y19{bottom:571.934970px;}
.y71{bottom:575.354970px;}
.y9d{bottom:577.154985px;}
.y129{bottom:580.754970px;}
.y193{bottom:582.014970px;}
.y43{bottom:587.234985px;}
.y167{bottom:589.215000px;}
.yc4{bottom:589.754970px;}
.y18{bottom:592.635000px;}
.y10d{bottom:592.814985px;}
.y146{bottom:592.994985px;}
.ye9{bottom:594.795000px;}
.y9c{bottom:599.474985px;}
.y192{bottom:602.535000px;}
.y128{bottom:604.514970px;}
.y42{bottom:607.934970px;}
.yc3{bottom:612.074985px;}
.y17{bottom:613.334970px;}
.y10c{bottom:616.574985px;}
.ye8{bottom:618.555000px;}
.y191{bottom:623.234985px;}
.y166{bottom:623.414985px;}
.y127{bottom:628.274970px;}
.y41{bottom:628.635000px;}
.y145{bottom:628.814985px;}
.y16{bottom:633.854970px;}
.yc2{bottom:634.394985px;}
.y10b{bottom:640.334970px;}
.y190{bottom:643.934970px;}
.y165{bottom:645.734985px;}
.y40{bottom:649.154985px;}
.y60{bottom:649.695000px;}
.y144{bottom:652.604970px;}
.ye7{bottom:654.404985px;}
.yc1{bottom:656.744985px;}
.y10a{bottom:664.125000px;}
.y18f{bottom:664.664985px;}
.y15{bottom:666.465000px;}
.y9b{bottom:668.084925px;}
.y70{bottom:669.885000px;}
.y143{bottom:676.365000px;}
.ye6{bottom:678.164985px;}
.yc0{bottom:679.064985px;}
.y3f{bottom:681.945000px;}
.y5f{bottom:682.305000px;}
.y18e{bottom:685.184970px;}
.y109{bottom:687.885000px;}
.y164{bottom:690.404985px;}
.y6f{bottom:690.584925px;}
.y14{bottom:699.224940px;}
.y142{bottom:700.125000px;}
.ybf{bottom:701.385000px;}
.ye5{bottom:701.924970px;}
.y9a{bottom:702.465000px;}
.y3e{bottom:702.644985px;}
.y5e{bottom:703.004970px;}
.y18d{bottom:705.885000px;}
.y6e{bottom:711.285000px;}
.y108{bottom:711.644985px;}
.y3d{bottom:723.164985px;}
.ybe{bottom:723.524970px;}
.y5d{bottom:723.705000px;}
.y141{bottom:723.885000px;}
.y99{bottom:724.604970px;}
.ye4{bottom:725.684970px;}
.y18c{bottom:726.584925px;}
.y13{bottom:731.805000px;}
.y107{bottom:735.404985px;}
.y3c{bottom:743.865000px;}
.y5c{bottom:744.404985px;}
.y18b{bottom:747.285000px;}
.y140{bottom:747.644940px;}
.ye3{bottom:749.444910px;}
.y6d{bottom:752.504925px;}
.ybd{bottom:757.904985px;}
.y98{bottom:758.984985px;}
.y106{bottom:759.164985px;}
.y126{bottom:759.344970px;}
.y12{bottom:764.564985px;}
.y5b{bottom:764.924970px;}
.y18a{bottom:767.805000px;}
.y13f{bottom:771.404940px;}
.y6c{bottom:773.204955px;}
.ybc{bottom:780.224940px;}
.y97{bottom:781.305000px;}
.y105{bottom:782.745030px;}
.y125{bottom:783.105015px;}
.y11{bottom:785.265015px;}
.y189{bottom:788.504970px;}
.y163{bottom:793.184970px;}
.y6b{bottom:793.904940px;}
.y13e{bottom:795.164985px;}
.ye2{bottom:796.965000px;}
.y5a{bottom:797.324985px;}
.ybb{bottom:802.544955px;}
.y96{bottom:803.625000px;}
.y10{bottom:805.785000px;}
.y124{bottom:806.864955px;}
.y188{bottom:809.204955px;}
.y162{bottom:815.504970px;}
.y104{bottom:818.564940px;}
.ye1{bottom:820.724940px;}
.y59{bottom:824.864955px;}
.yba{bottom:825.044955px;}
.y95{bottom:825.765015px;}
.yf{bottom:826.484985px;}
.y187{bottom:829.904940px;}
.y123{bottom:830.625000px;}
.y13d{bottom:830.805000px;}
.y161{bottom:837.824985px;}
.y103{bottom:842.324985px;}
.ye0{bottom:844.484985px;}
.ye{bottom:847.184970px;}
.yb9{bottom:847.364955px;}
.y94{bottom:848.085015px;}
.y186{bottom:850.425015px;}
.y122{bottom:854.384955px;}
.y13c{bottom:854.564940px;}
.y3b{bottom:859.064940px;}
.y160{bottom:860.144985px;}
.yd{bottom:867.884955px;}
.yb8{bottom:869.684970px;}
.y93{bottom:870.404940px;}
.y185{bottom:871.125000px;}
.y102{bottom:878.144985px;}
.y13b{bottom:878.324985px;}
.y3a{bottom:879.765015px;}
.ydf{bottom:880.125000px;}
.y15f{bottom:882.465000px;}
.yc{bottom:888.404940px;}
.y184{bottom:891.824985px;}
.yb7{bottom:892.004970px;}
.y92{bottom:892.724940px;}
.y39{bottom:900.509955px;}
.y121{bottom:901.949985px;}
.y13a{bottom:902.129970px;}
.yde{bottom:903.930000px;}
.y15e{bottom:904.829955px;}
.yb{bottom:909.150060px;}
.y183{bottom:912.570000px;}
.y101{bottom:913.829955px;}
.yb6{bottom:914.550015px;}
.y91{bottom:915.090000px;}
.y38{bottom:921.210015px;}
.y139{bottom:925.890015px;}
.y15d{bottom:926.969970px;}
.ydd{bottom:927.689940px;}
.ya{bottom:929.850030px;}
.y182{bottom:933.090000px;}
.yb5{bottom:936.869940px;}
.y8b{bottom:937.410000px;}
.y100{bottom:937.590000px;}
.y37{bottom:941.730015px;}
.y138{bottom:949.650060px;}
.y9{bottom:950.550015px;}
.ydc{bottom:951.449985px;}
.y181{bottom:953.789985px;}
.yb4{bottom:959.189940px;}
.y90{bottom:959.550015px;}
.yff{bottom:961.350030px;}
.y36{bottom:962.430000px;}
.y8{bottom:971.070000px;}
.y8a{bottom:971.609985px;}
.y137{bottom:973.410000px;}
.y180{bottom:974.489955px;}
.ydb{bottom:975.210015px;}
.yb3{bottom:981.689940px;}
.y8f{bottom:981.869940px;}
.y35{bottom:983.129970px;}
.y15c{bottom:983.669955px;}
.yfe{bottom:985.109985px;}
.y89{bottom:993.930000px;}
.y17f{bottom:995.189940px;}
.y136{bottom:997.169955px;}
.y7{bottom:1003.829955px;}
.yb2{bottom:1004.009955px;}
.y8e{bottom:1004.189940px;}
.y15b{bottom:1005.989955px;}
.yfd{bottom:1008.869940px;}
.y34{bottom:1015.710015px;}
.y88{bottom:1016.250000px;}
.yda{bottom:1018.230015px;}
.y135{bottom:1020.930000px;}
.y6a{bottom:1024.350030px;}
.y8d{bottom:1026.509955px;}
.y15a{bottom:1028.129970px;}
.yfc{bottom:1032.629970px;}
.y33{bottom:1036.410000px;}
.y6{bottom:1038.029940px;}
.y87{bottom:1038.570000px;}
.y134{bottom:1044.689940px;}
.y69{bottom:1045.050015px;}
.yd9{bottom:1049.189940px;}
.y159{bottom:1050.449985px;}
.y32{bottom:1057.109985px;}
.y86{bottom:1060.710015px;}
.y68{bottom:1065.750000px;}
.yfb{bottom:1068.449985px;}
.y5{bottom:1072.410000px;}
.y158{bottom:1072.769985px;}
.y31{bottom:1077.809970px;}
.y85{bottom:1083.029940px;}
.y58{bottom:1087.709925px;}
.yd8{bottom:1092.209925px;}
.yb1{bottom:1095.090000px;}
.y30{bottom:1098.329955px;}
.y84{bottom:1105.350030px;}
.y4{bottom:1108.949985px;}
.yd7{bottom:1115.969970px;}
.yb0{bottom:1117.410000px;}
.y2f{bottom:1119.029940px;}
.y3{bottom:1136.489955px;}
.y2e{bottom:1139.730015px;}
.h9{height:31.286250px;}
.h4{height:43.453125px;}
.ha{height:48.088173px;}
.hc{height:48.256831px;}
.he{height:52.417969px;}
.h6{height:52.453125px;}
.h3{height:53.302452px;}
.h5{height:64.249407px;}
.h7{height:65.496094px;}
.h8{height:68.084220px;}
.hb{height:70.664062px;}
.hd{height:74.004654px;}
.h2{height:1262.879970px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979970px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.655970px;}
.x2{left:153.389955px;}
.xa{left:154.649985px;}
.xb{left:181.649985px;}
.x3{left:361.514940px;}
.x6{left:433.050015px;}
.x4{left:571.244955px;}
.x5{left:604.724955px;}
.x7{left:708.269955px;}
.x8{left:766.769910px;}
.x9{left:800.429970px;}
@media print{
.v2{vertical-align:-18.560053pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.lsf{letter-spacing:-1.472000pt;}
.ls8{letter-spacing:-1.152000pt;}
.ls9{letter-spacing:-1.024000pt;}
.lsb{letter-spacing:-0.511947pt;}
.ls7{letter-spacing:-0.384053pt;}
.ls5{letter-spacing:-0.192000pt;}
.ls4{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.127893pt;}
.lsa{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.128053pt;}
.ls1{letter-spacing:0.133280pt;}
.ls3{letter-spacing:0.192000pt;}
.ls6{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.286744pt;}
.ls13{letter-spacing:0.768000pt;}
.ls11{letter-spacing:2.112000pt;}
.lsd{letter-spacing:5.247947pt;}
.ls12{letter-spacing:5.408000pt;}
.lsc{letter-spacing:58.368000pt;}
.ws3{word-spacing:-14.848000pt;}
.ws1{word-spacing:-14.784000pt;}
.ws0{word-spacing:-14.592000pt;}
.ws2{word-spacing:-14.464000pt;}
.ws6{word-spacing:-14.400000pt;}
.ws7{word-spacing:-14.207947pt;}
.ws4{word-spacing:-7.810560pt;}
.ws5{word-spacing:0.000000pt;}
._b{margin-left:-11.389968pt;}
._19{margin-left:-4.738962pt;}
._c{margin-left:-3.517705pt;}
._8{margin-left:-2.098561pt;}
._0{margin-left:-0.973439pt;}
._1{width:0.991947pt;}
._3{width:1.984107pt;}
._2{width:3.008000pt;}
._5{width:4.160000pt;}
._4{width:5.120000pt;}
._9{width:6.208000pt;}
._a{width:7.103576pt;}
._d{width:8.226349pt;}
._7{width:9.128318pt;}
._6{width:10.112000pt;}
._11{width:11.840000pt;}
._10{width:13.568000pt;}
._18{width:15.488000pt;}
._13{width:16.384000pt;}
._12{width:17.792000pt;}
._14{width:19.242667pt;}
._f{width:20.480000pt;}
._e{width:21.546667pt;}
._17{width:22.656000pt;}
._16{width:23.960106pt;}
._15{width:25.408000pt;}
._1b{width:26.794667pt;}
._21{width:37.760000pt;}
._20{width:38.784000pt;}
._1e{width:76.224000pt;}
._1d{width:77.632000pt;}
._1f{width:310.464000pt;}
._1a{width:494.016000pt;}
._1c{width:1746.304000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:42.879947pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.120053pt;}
.fs0{font-size:58.879947pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:74.879947pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:50.240013pt;}
.y2d{bottom:56.666667pt;}
.y1{bottom:65.760013pt;}
.y2c{bottom:97.920000pt;}
.y17e{bottom:101.440000pt;}
.y120{bottom:104.320013pt;}
.y83{bottom:106.560000pt;}
.y67{bottom:110.560000pt;}
.y2b{bottom:114.080000pt;}
.yd6{bottom:114.560000pt;}
.y133{bottom:114.880000pt;}
.y17d{bottom:119.840000pt;}
.y8c{bottom:121.600013pt;}
.y11f{bottom:125.440000pt;}
.yfa{bottom:127.360000pt;}
.y66{bottom:128.960000pt;}
.y2a{bottom:130.400000pt;}
.y157{bottom:130.560000pt;}
.y57{bottom:133.440000pt;}
.yaf{bottom:135.040000pt;}
.yd5{bottom:135.679987pt;}
.y132{bottom:136.000000pt;}
.y82{bottom:137.120000pt;}
.y17c{bottom:138.240013pt;}
.y11e{bottom:146.586667pt;}
.y29{bottom:146.746667pt;}
.y65{bottom:147.386680pt;}
.yf9{bottom:148.506667pt;}
.y156{bottom:150.426680pt;}
.y56{bottom:151.866680pt;}
.yae{bottom:154.906680pt;}
.y17b{bottom:156.506667pt;}
.yd4{bottom:156.826667pt;}
.y131{bottom:156.986680pt;}
.y28{bottom:162.906680pt;}
.y64{bottom:165.786667pt;}
.y81{bottom:167.546667pt;}
.y11d{bottom:167.706667pt;}
.yf8{bottom:169.626667pt;}
.y55{bottom:170.106667pt;}
.y155{bottom:170.266680pt;}
.yad{bottom:174.746667pt;}
.y17a{bottom:174.906653pt;}
.yd3{bottom:177.946653pt;}
.y27{bottom:183.866680pt;}
.y80{bottom:187.386653pt;}
.y54{bottom:188.506653pt;}
.y11c{bottom:188.826667pt;}
.y154{bottom:190.106667pt;}
.yf7{bottom:190.746667pt;}
.y179{bottom:193.306667pt;}
.yac{bottom:194.586667pt;}
.y63{bottom:194.746667pt;}
.y26{bottom:196.026667pt;}
.yd2{bottom:199.066667pt;}
.y7f{bottom:207.226667pt;}
.y11b{bottom:209.946653pt;}
.y178{bottom:211.706667pt;}
.yab{bottom:214.266667pt;}
.y53{bottom:217.466680pt;}
.yd1{bottom:220.186667pt;}
.yf6{bottom:222.426653pt;}
.y62{bottom:223.706667pt;}
.y25{bottom:225.466680pt;}
.y7e{bottom:227.066667pt;}
.y153{bottom:229.786667pt;}
.y177{bottom:229.946653pt;}
.y11a{bottom:231.066667pt;}
.yaa{bottom:234.106667pt;}
.y52{bottom:235.866680pt;}
.yd0{bottom:241.306667pt;}
.yf5{bottom:243.546653pt;}
.y176{bottom:248.346640pt;}
.y61{bottom:249.306667pt;}
.y152{bottom:249.466680pt;}
.y119{bottom:252.186667pt;}
.ya9{bottom:253.946653pt;}
.y51{bottom:254.266667pt;}
.y24{bottom:254.586667pt;}
.y7d{bottom:257.466680pt;}
.ycf{bottom:262.426653pt;}
.yf4{bottom:264.666667pt;}
.y175{bottom:266.746667pt;}
.y151{bottom:269.306667pt;}
.y50{bottom:272.666667pt;}
.y118{bottom:273.306667pt;}
.ya8{bottom:273.786667pt;}
.yce{bottom:283.386640pt;}
.y23{bottom:283.546653pt;}
.y174{bottom:285.146667pt;}
.yf3{bottom:285.786667pt;}
.y7c{bottom:288.026653pt;}
.y150{bottom:289.146667pt;}
.y4f{bottom:291.066667pt;}
.y117{bottom:294.426640pt;}
.y173{bottom:303.386640pt;}
.ya7{bottom:304.186667pt;}
.yf2{bottom:306.906640pt;}
.y14f{bottom:308.986653pt;}
.y4e{bottom:309.306667pt;}
.y22{bottom:312.346640pt;}
.ycd{bottom:313.946653pt;}
.y116{bottom:315.546653pt;}
.y7b{bottom:316.986653pt;}
.y172{bottom:321.786667pt;}
.ya6{bottom:324.026653pt;}
.y4d{bottom:327.706667pt;}
.yf1{bottom:328.026653pt;}
.y14e{bottom:328.826667pt;}
.y7a{bottom:335.386640pt;}
.y130{bottom:336.666667pt;}
.y21{bottom:340.026653pt;}
.y171{bottom:340.186667pt;}
.ya5{bottom:343.866653pt;}
.ycc{bottom:344.346640pt;}
.y4c{bottom:346.106653pt;}
.y115{bottom:347.226640pt;}
.yf0{bottom:349.146653pt;}
.y79{bottom:353.786667pt;}
.y12f{bottom:357.786667pt;}
.y170{bottom:358.586667pt;}
.y14d{bottom:359.226640pt;}
.ya4{bottom:363.746667pt;}
.y114{bottom:368.386680pt;}
.y20{bottom:369.186640pt;}
.yef{bottom:370.306640pt;}
.y78{bottom:372.226640pt;}
.ycb{bottom:374.946653pt;}
.y4b{bottom:375.106653pt;}
.y16f{bottom:376.866653pt;}
.y12e{bottom:378.946653pt;}
.ya3{bottom:383.586667pt;}
.y14c{bottom:389.826667pt;}
.y77{bottom:390.466680pt;}
.y4a{bottom:393.506667pt;}
.yca{bottom:394.786667pt;}
.y16e{bottom:395.266640pt;}
.y1f{bottom:398.146653pt;}
.y113{bottom:400.226640pt;}
.yee{bottom:402.146653pt;}
.ya2{bottom:403.426680pt;}
.y76{bottom:408.866653pt;}
.y12d{bottom:410.626667pt;}
.y49{bottom:411.906653pt;}
.y16d{bottom:413.666667pt;}
.yc9{bottom:414.626667pt;}
.y1e{bottom:416.546667pt;}
.y112{bottom:421.346640pt;}
.y14b{bottom:421.506667pt;}
.ya1{bottom:423.106653pt;}
.y75{bottom:427.266640pt;}
.y48{bottom:430.146653pt;}
.y12c{bottom:431.746667pt;}
.y16c{bottom:432.066653pt;}
.yc8{bottom:434.306640pt;}
.y1d{bottom:434.946653pt;}
.y111{bottom:442.466680pt;}
.y14a{bottom:442.626667pt;}
.ya0{bottom:442.946653pt;}
.yed{bottom:444.226640pt;}
.y47{bottom:448.546667pt;}
.y16b{bottom:450.306640pt;}
.y12b{bottom:452.866653pt;}
.y1c{bottom:453.346640pt;}
.yc7{bottom:454.146653pt;}
.y74{bottom:456.226640pt;}
.y110{bottom:463.586667pt;}
.y149{bottom:463.746667pt;}
.yec{bottom:465.346640pt;}
.y46{bottom:466.946653pt;}
.y16a{bottom:468.706667pt;}
.y1b{bottom:471.746667pt;}
.y9f{bottom:473.506667pt;}
.yc6{bottom:473.986653pt;}
.y73{bottom:474.626667pt;}
.y10f{bottom:484.706667pt;}
.y148{bottom:484.866653pt;}
.y45{bottom:485.346640pt;}
.yeb{bottom:486.466680pt;}
.y169{bottom:487.106653pt;}
.y1a{bottom:489.986653pt;}
.y72{bottom:493.026653pt;}
.y9e{bottom:493.186640pt;}
.y12a{bottom:495.106653pt;}
.y194{bottom:498.946653pt;}
.y44{bottom:503.586667pt;}
.yc5{bottom:504.546667pt;}
.y168{bottom:505.346640pt;}
.y10e{bottom:505.826667pt;}
.y147{bottom:505.986653pt;}
.yea{bottom:507.586667pt;}
.y19{bottom:508.386640pt;}
.y71{bottom:511.426640pt;}
.y9d{bottom:513.026653pt;}
.y129{bottom:516.226640pt;}
.y193{bottom:517.346640pt;}
.y43{bottom:521.986653pt;}
.y167{bottom:523.746667pt;}
.yc4{bottom:524.226640pt;}
.y18{bottom:526.786667pt;}
.y10d{bottom:526.946653pt;}
.y146{bottom:527.106653pt;}
.ye9{bottom:528.706667pt;}
.y9c{bottom:532.866653pt;}
.y192{bottom:535.586667pt;}
.y128{bottom:537.346640pt;}
.y42{bottom:540.386640pt;}
.yc3{bottom:544.066653pt;}
.y17{bottom:545.186640pt;}
.y10c{bottom:548.066653pt;}
.ye8{bottom:549.826667pt;}
.y191{bottom:553.986653pt;}
.y166{bottom:554.146653pt;}
.y127{bottom:558.466640pt;}
.y41{bottom:558.786667pt;}
.y145{bottom:558.946653pt;}
.y16{bottom:563.426640pt;}
.yc2{bottom:563.906653pt;}
.y10b{bottom:569.186640pt;}
.y190{bottom:572.386640pt;}
.y165{bottom:573.986653pt;}
.y40{bottom:577.026653pt;}
.y60{bottom:577.506667pt;}
.y144{bottom:580.093307pt;}
.ye7{bottom:581.693320pt;}
.yc1{bottom:583.773320pt;}
.y10a{bottom:590.333333pt;}
.y18f{bottom:590.813320pt;}
.y15{bottom:592.413333pt;}
.y9b{bottom:593.853267pt;}
.y70{bottom:595.453333pt;}
.y143{bottom:601.213333pt;}
.ye6{bottom:602.813320pt;}
.yc0{bottom:603.613320pt;}
.y3f{bottom:606.173333pt;}
.y5f{bottom:606.493333pt;}
.y18e{bottom:609.053307pt;}
.y109{bottom:611.453333pt;}
.y164{bottom:613.693320pt;}
.y6f{bottom:613.853267pt;}
.y14{bottom:621.533280pt;}
.y142{bottom:622.333333pt;}
.ybf{bottom:623.453333pt;}
.ye5{bottom:623.933307pt;}
.y9a{bottom:624.413333pt;}
.y3e{bottom:624.573320pt;}
.y5e{bottom:624.893307pt;}
.y18d{bottom:627.453333pt;}
.y6e{bottom:632.253333pt;}
.y108{bottom:632.573320pt;}
.y3d{bottom:642.813320pt;}
.ybe{bottom:643.133307pt;}
.y5d{bottom:643.293333pt;}
.y141{bottom:643.453333pt;}
.y99{bottom:644.093307pt;}
.ye4{bottom:645.053307pt;}
.y18c{bottom:645.853267pt;}
.y13{bottom:650.493333pt;}
.y107{bottom:653.693320pt;}
.y3c{bottom:661.213333pt;}
.y5c{bottom:661.693320pt;}
.y18b{bottom:664.253333pt;}
.y140{bottom:664.573280pt;}
.ye3{bottom:666.173253pt;}
.y6d{bottom:668.893267pt;}
.ybd{bottom:673.693320pt;}
.y98{bottom:674.653320pt;}
.y106{bottom:674.813320pt;}
.y126{bottom:674.973307pt;}
.y12{bottom:679.613320pt;}
.y5b{bottom:679.933307pt;}
.y18a{bottom:682.493333pt;}
.y13f{bottom:685.693280pt;}
.y6c{bottom:687.293293pt;}
.ybc{bottom:693.533280pt;}
.y97{bottom:694.493333pt;}
.y105{bottom:695.773360pt;}
.y125{bottom:696.093347pt;}
.y11{bottom:698.013347pt;}
.y189{bottom:700.893307pt;}
.y163{bottom:705.053307pt;}
.y6b{bottom:705.693280pt;}
.y13e{bottom:706.813320pt;}
.ye2{bottom:708.413333pt;}
.y5a{bottom:708.733320pt;}
.ybb{bottom:713.373293pt;}
.y96{bottom:714.333333pt;}
.y10{bottom:716.253333pt;}
.y124{bottom:717.213293pt;}
.y188{bottom:719.293293pt;}
.y162{bottom:724.893307pt;}
.y104{bottom:727.613280pt;}
.ye1{bottom:729.533280pt;}
.y59{bottom:733.213293pt;}
.yba{bottom:733.373293pt;}
.y95{bottom:734.013347pt;}
.yf{bottom:734.653320pt;}
.y187{bottom:737.693280pt;}
.y123{bottom:738.333333pt;}
.y13d{bottom:738.493333pt;}
.y161{bottom:744.733320pt;}
.y103{bottom:748.733320pt;}
.ye0{bottom:750.653320pt;}
.ye{bottom:753.053307pt;}
.yb9{bottom:753.213293pt;}
.y94{bottom:753.853347pt;}
.y186{bottom:755.933347pt;}
.y122{bottom:759.453293pt;}
.y13c{bottom:759.613280pt;}
.y3b{bottom:763.613280pt;}
.y160{bottom:764.573320pt;}
.yd{bottom:771.453293pt;}
.yb8{bottom:773.053307pt;}
.y93{bottom:773.693280pt;}
.y185{bottom:774.333333pt;}
.y102{bottom:780.573320pt;}
.y13b{bottom:780.733320pt;}
.y3a{bottom:782.013347pt;}
.ydf{bottom:782.333333pt;}
.y15f{bottom:784.413333pt;}
.yc{bottom:789.693280pt;}
.y184{bottom:792.733320pt;}
.yb7{bottom:792.893307pt;}
.y92{bottom:793.533280pt;}
.y39{bottom:800.453293pt;}
.y121{bottom:801.733320pt;}
.y13a{bottom:801.893307pt;}
.yde{bottom:803.493333pt;}
.y15e{bottom:804.293293pt;}
.yb{bottom:808.133387pt;}
.y183{bottom:811.173333pt;}
.y101{bottom:812.293293pt;}
.yb6{bottom:812.933347pt;}
.y91{bottom:813.413333pt;}
.y38{bottom:818.853347pt;}
.y139{bottom:823.013347pt;}
.y15d{bottom:823.973307pt;}
.ydd{bottom:824.613280pt;}
.ya{bottom:826.533360pt;}
.y182{bottom:829.413333pt;}
.yb5{bottom:832.773280pt;}
.y8b{bottom:833.253333pt;}
.y100{bottom:833.413333pt;}
.y37{bottom:837.093347pt;}
.y138{bottom:844.133387pt;}
.y9{bottom:844.933347pt;}
.ydc{bottom:845.733320pt;}
.y181{bottom:847.813320pt;}
.yb4{bottom:852.613280pt;}
.y90{bottom:852.933347pt;}
.yff{bottom:854.533360pt;}
.y36{bottom:855.493333pt;}
.y8{bottom:863.173333pt;}
.y8a{bottom:863.653320pt;}
.y137{bottom:865.253333pt;}
.y180{bottom:866.213293pt;}
.ydb{bottom:866.853347pt;}
.yb3{bottom:872.613280pt;}
.y8f{bottom:872.773280pt;}
.y35{bottom:873.893307pt;}
.y15c{bottom:874.373293pt;}
.yfe{bottom:875.653320pt;}
.y89{bottom:883.493333pt;}
.y17f{bottom:884.613280pt;}
.y136{bottom:886.373293pt;}
.y7{bottom:892.293293pt;}
.yb2{bottom:892.453293pt;}
.y8e{bottom:892.613280pt;}
.y15b{bottom:894.213293pt;}
.yfd{bottom:896.773280pt;}
.y34{bottom:902.853347pt;}
.y88{bottom:903.333333pt;}
.yda{bottom:905.093347pt;}
.y135{bottom:907.493333pt;}
.y6a{bottom:910.533360pt;}
.y8d{bottom:912.453293pt;}
.y15a{bottom:913.893307pt;}
.yfc{bottom:917.893307pt;}
.y33{bottom:921.253333pt;}
.y6{bottom:922.693280pt;}
.y87{bottom:923.173333pt;}
.y134{bottom:928.613280pt;}
.y69{bottom:928.933347pt;}
.yd9{bottom:932.613280pt;}
.y159{bottom:933.733320pt;}
.y32{bottom:939.653320pt;}
.y86{bottom:942.853347pt;}
.y68{bottom:947.333333pt;}
.yfb{bottom:949.733320pt;}
.y5{bottom:953.253333pt;}
.y158{bottom:953.573320pt;}
.y31{bottom:958.053307pt;}
.y85{bottom:962.693280pt;}
.y58{bottom:966.853267pt;}
.yd8{bottom:970.853267pt;}
.yb1{bottom:973.413333pt;}
.y30{bottom:976.293293pt;}
.y84{bottom:982.533360pt;}
.y4{bottom:985.733320pt;}
.yd7{bottom:991.973307pt;}
.yb0{bottom:993.253333pt;}
.y2f{bottom:994.693280pt;}
.y3{bottom:1010.213293pt;}
.y2e{bottom:1013.093347pt;}
.h9{height:27.810000pt;}
.h4{height:38.625000pt;}
.ha{height:42.745043pt;}
.hc{height:42.894961pt;}
.he{height:46.593750pt;}
.h6{height:46.625000pt;}
.h3{height:47.379957pt;}
.h5{height:57.110584pt;}
.h7{height:58.218750pt;}
.h8{height:60.519307pt;}
.hb{height:62.812500pt;}
.hd{height:65.781915pt;}
.h2{height:1122.559973pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759973pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.471973pt;}
.x2{left:136.346627pt;}
.xa{left:137.466653pt;}
.xb{left:161.466653pt;}
.x3{left:321.346613pt;}
.x6{left:384.933347pt;}
.x4{left:507.773293pt;}
.x5{left:537.533293pt;}
.x7{left:629.573293pt;}
.x8{left:681.573253pt;}
.x9{left:711.493307pt;}
}




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